date
stringlengths 12
12
⌀ | text
stringlengths 98
60.4k
| topic
stringlengths 15
36k
| url
stringlengths 37
226
| root_topic
stringclasses 63
values | heading
stringlengths 1
148
| related_topics
stringlengths 7
36.6k
| author
stringclasses 1
value | vector
stringlengths 44.7k
45.8k
⌀ |
---|---|---|---|---|---|---|---|---|
06 Jun, 2024 | What are Diffusion Models?
06 Jun, 2024
Diffusion models are a powerful class of generative models that have gained prominence in the field of machine learning and artificial intelligence. They offer a unique approach to generating data by simulating the diffusion process, which is inspired by physical processes such as heat diffusion. This article delves into the diffusion model, exploring its architecture, working principles, applications, and advantages.
Table of Content
Understanding Diffusion ModelsKey Components of Diffusion ModelsArchitecture of Diffusion ModelsWorking Principle of Diffusion ModelsTraining Diffusion ModelsApplications of Diffusion ModelsAdvantages of Diffusion ModelsLimitations of Diffusion ModelsConclusionUnderstanding Diffusion ModelsDiffusion models are generative models that learn to reverse a diffusion process to generate data. The diffusion process involves gradually adding noise to data until it becomes pure noise. Through this process, a simple distribution is transformed into a complex data distribution in a series of small, incremental steps. Essentially, these models operate as a reverse diffusion phenomenon, where noise is introduced to the data in a forward manner and removed in a reverse manner to generate new data samples. By learning to reverse this process, diffusion models start from noise and gradually denoise it to produce data that closely resembles the training examples.
Key Components of Diffusion ModelsForward Diffusion Process: This process involves adding noise to the data in a series of small steps. Each step slightly increases the noise, making the data progressively more random until it resembles pure noise.Reverse Diffusion Process: The model learns to reverse the noise-adding steps. Starting from pure noise, the model iteratively removes the noise, generating data that matches the training distribution.Score Function: This function estimates the gradient of the data distribution concerning the noise. It helps guide the reverse diffusion process to produce realistic samples.Architecture of Diffusion ModelsThe architecture of diffusion models typically involves two main components:
Forward Diffusion ProcessIn this process, noise is incrementally added to the data over a series of steps. This is akin to a Markov chain where each step slightly degrades the data by adding Gaussian noise.
Mathematically, this can be represented as:
q(x_t | x_{t-1}) = \mathcal{N}(x_t; \sqrt{\alpha_t} x_{t-1}, (1 - \alpha_t)I)
where,
x_t is the noisy data at step t,\alpha_t controls the amount of noise added.Reverse Diffusion ProcessThe reverse process aims to reconstruct the original data by denoising the noisy data in a series of steps, reversing the forward diffusion.
This is typically modelled using a neural network that predicts the noise added at each step:
p_\theta(x_{t-1} | x_t) = \mathcal{N}(x_{t-1}; \mu_\theta(x_t, t), \sigma_\theta(x_t, t))
where,
\mu_\theta and \sigma_\theta are learned parameters.Working Principle of Diffusion ModelsThe core idea behind diffusion models is to train a neural network to reverse the diffusion process. During training, the model learns to predict the noise added at each step of the forward process. This is done by minimizing a loss function that measures the difference between the predicted and actual noise.
Forward Process (Diffusion)The forward process involves gradually corrupting the data x_0 with Gaussian noise over a sequence of time steps. Let x_t represent the noisy data at time step t. The process is defined as:
x_t = \sqrt{1 - \beta_t} x_{t-1} + \sqrt{\beta_t} \epsilon
where:
\beta_t is the noise schedule, a small positive number that controls the amount of noise added at each step.\epsilon is is Gaussian noise. As t increases, x_t becomes more noisy until it approximates a Gaussian distribution.
Reverse Process (Denoising)The reverse process aims to reconstruct the original data x_0 from the noisy data x_T at the final time step T. This process is modelled using a neural network to approximate the conditional probability p_\theta(x_{t-1} | x_t). The reverse process can be formulated as:
x_{t-1} = \frac{1}{\sqrt{1 - \beta_t}} \left( x_t - \frac{\beta_t}{\sqrt{1 - \beta_t}} \epsilon_\theta(x_t, t) \right)
where,
\epsilon_\theta is a neural network parameterized by \theta that predicts the noise.Training Diffusion ModelsThe training objective for diffusion models involves minimizing the difference between the true noise \epsilon added in the forward process and the noise predicted by the neural network \epsilon_\theta. The score function, which estimates the gradient of the data distribution concerning the noise, plays a crucial role in guiding the reverse process. The loss function is typically the mean squared error (MSE) between these two quantities:
L(\theta) = \mathbb{E}_{x_0, \epsilon, t} \left[ \| \epsilon - \epsilon_\theta(x_t, t) \|^2 \right]
This encourages the model to accurately predict the noise and, consequently, to denoise effectively during the reverse process.
Applications of Diffusion ModelsDiffusion models have shown great promise in various applications, particularly in generative tasks. Some notable applications include:
Image Generation: Diffusion models can generate high-quality, realistic images from random noise. They have been used to create diverse datasets for training other machine learning models.Speech Synthesis: These models can generate human-like speech by modelling the distribution of audio signals.Data Augmentation: Diffusion models can be used to augment existing datasets with new, synthetic samples, improving the performance of machine learning models.Anomaly Detection: By modelling the normal data distribution, diffusion models can help identify anomalies that deviate from this distribution.Advantages of Diffusion ModelsFlexibility: They can model complex data distributions without requiring explicit likelihood estimation.High-Quality Generation: Diffusion models generate high-quality samples, often surpassing other generative models like GANs.Stable Training: Unlike GANs, diffusion models avoid issues like mode collapse and unstable training dynamics.Theoretical Foundations: Based on well-understood principles from stochastic processes and statistical mechanics.Scalability: Can be effectively scaled to high-dimensional data and large datasets.Robustness: More robust to hyperparameter changes compared to GANs.Limitations of Diffusion ModelsComputationally Intensive: Requires significant computational resources due to the large number of iterative steps.Slow Sampling: Generating samples can be slow because of the many steps needed for the reverse diffusion process.Complexity: The architecture and training process can be complex, making them challenging to implement and understand.Memory Usage: High memory consumption during training due to the need to store multiple intermediate steps.Fine-Tuning: Requires careful tuning of noise schedules and other hyperparameters to achieve optimal performance.Resource Demand: High demand for GPUs or TPUs, making them less accessible for small-scale research or applications with limited resources.ConclusionDiffusion models represent a significant advancement in the field of generative modelling. Their ability to generate high-quality data through a well-defined, stable process makes them a valuable tool for various applications. As research in this area continues to evolve, diffusion models are expected to play an increasingly important role in the development of sophisticated AI systems. | NLP/Natural Language Processing (NLP) Tutorial/AI ML DS - Projects/30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated]/Does Artificial Intelligence Require Coding?/Artificial Intelligence – Boon or Bane/Artificial Intelligence Examples/Agents in Artificial Intelligence/What are Diffusion Models? | https://www.geeksforgeeks.org/what-are-diffusion-models/?ref=lbp | NLP | What are Diffusion Models? | Artificial Intelligence – Boon or Bane, Natural Language Processing (NLP) Tutorial, AI ML DS - Projects, Artificial Intelligence Examples, NLP, Agents in Artificial Intelligence, What are Diffusion Models?, 30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated], Does Artificial Intelligence Require Coding? | GeeksforGeeks | [-0.0253891367, -0.0231480692, -0.0223094746, 0.000372306531, 0.0403103158, -0.00826303661, -0.00699430238, 0.00336341, -0.0160344839, 0.0270663239, 0.0062786066, -0.00682802964, 0.0229890253, -0.0182466358, 0.00168712693, 0.0201840755, 0.0189551022, 0.00651355693, 0.0385463797, 0.00420742529, -0.0163381118, 0.00435562525, -0.0469323099, 0.00709189754, -0.0223239344, 0.00136723253, -0.00111872691, -0.0032278616, -0.0493902564, 0.0703261718, 0.0459202155, 0.0011476439, 0.00300736935, -0.0339485742, -0.0183623023, -0.0238854531, 0.0304496139, 0.0104245832, 0.000808320881, 0.018015299, 0.0122246668, -0.00545085687, 0.00230251718, -0.0132873673, -0.0431441814, -0.0145235695, 0.00032170178, -0.00153531262, 0.0030182132, -0.0164971557, -0.0264590662, -0.0334280655, 0.0199961141, 0.0268783625, -0.0266036522, 0.0317219645, 0.0159043577, -0.0095353853, 0.0325605571, 0.0124560036, 0.03088337, -0.0261988137, -0.0180442166, -0.02206368, 0.00659307884, 0.00482914131, -0.00291158166, 0.0121089993, 0.00793772, -0.00476407772, -0.0464985557, 0.00836424623, 0.00434839586, -0.0142488582, 0.0145669449, -0.00208744686, 0.0151669728, 0.0179719236, -0.000419974414, 0.0200539492, 0.0233938638, 0.038748797, -0.0353076719, -0.016179068, 0.0214853399, 0.00952092651, 0.00904379599, -0.0348739177, 0.0725238696, -0.0278326254, -0.0120728528, 0.00049023371, 0.0246228371, -0.0344979949, -0.0228155237, 0.00199888856, 0.0269361977, -0.000464931334, -0.0442430303, 0.013894625, -0.0135765374, -0.000615842, 0.028237462, 0.0245071687, -0.0198226124, -0.0416404977, 0.0122969598, 0.0273121186, 0.0231769849, 0.0873872116, 0.0032875028, -0.0189117268, -0.0248830896, 0.0275289956, -0.0196924862, 0.0126078175, -0.0190707706, -0.0343823284, 0.0032278616, -0.0425369255, 0.020444328, 0.0507782735, -0.0292784758, 0.0641379356, -0.0289025549, 0.062634252, 0.00461226329, -0.0216443837, -0.0038712651, -0.00265855785, -0.011689702, 0.0165116135, -0.0208636243, 0.0292061828, -0.000830008648, -0.0293073915, 0.0176538359, 0.04074407, -0.0260108523, 0.00386403571, 0.00584123656, -0.00879800133, -0.00499179913, -0.0293507688, 0.00562797347, -0.0125282956, -0.0223094746, 0.0358281769, -0.0196635686, -0.0107282121, -0.0329943113, -0.00717141898, 0.0127162561, 0.00550869107, 0.00372306537, -0.00671597617, -0.010005286, 0.00258626533, 0.0439538583, -0.0435201041, 0.00333991507, -0.0145235695, 0.0301315282, 0.0467009768, 0.0183044691, 0.0165405311, 0.0225552693, -0.0240011197, -0.0438671075, 0.0249553826, -0.0230613183, 0.000816453772, -0.0141548775, 0.00918115117, -0.0307677016, 0.0229745675, -0.0146030914, 0.0250276737, -0.00941248797, 0.0300158598, -0.0360595137, -0.0125282956, 0.0228878148, 0.018752683, 0.049332425, 0.0419875, 0.0748372301, 0.0173212904, 0.00858112331, 0.00572918309, -0.0025808434, 0.0219190959, 0.0656416193, 0.0181454252, 0.00651355693, -0.011104133, -0.0245360844, -0.00220130756, -0.0182177182, -0.00359655335, -0.0347293317, -0.0447057, 0.0221215151, 0.00946309231, 0.00764132058, 0.0089136688, -0.00532434508, 0.00829195324, 0.0226709377, -0.0439538583, 0.0132584507, 0.00672682, -0.0320111327, -0.0205310788, 0.0132873673, -0.0103233736, -0.00965105277, -0.017581543, -0.00467371196, -0.0216588434, -0.00321701774, 0.00697261468, 0.053901311, -0.0218612608, -0.0185936391, -0.0315195434, -0.017277915, 0.0147621352, -0.0316062942, -0.00328208087, 0.0374475308, 0.042421259, 0.0167284925, -0.0291338898, 0.0068316441, -0.00999082811, 0.003842348, 0.00294049876, -0.00520144776, 0.0201840755, -0.0444165319, -0.00520867668, -0.0357125103, -0.0134319523, 0.0159911085, -0.00316099101, 0.0354811735, 0.00350076589, 0.00441345898, 0.0238709934, 0.00663284, -0.00973057467, -0.00423995685, -0.00378451403, -0.051038526, 0.0403392315, 0.0133885769, -0.00668705907, -0.0108655673, -0.0422188379, 0.0346714966, 0.0265313592, 0.00262602628, 0.00636174297, -0.0241023302, -0.00537856435, 0.068880327, 0.0029892961, 0.031693045, 0.0112125715, -0.0259674769, -0.00356402178, -0.0161935277, -0.0270518661, -0.0204154104, -0.0138151031, 0.0161646102, -0.0011476439, 0.0640801, 0.0077136131, 0.0301026106, -0.0191286039, 0.000740546617, 0.00318810064, -1.3103021e-05, -0.0195189845, -0.00477492157, -0.0374764502, -0.0496505126, -0.00440622959, 0.00140247517, -0.00427248841, -0.0313460417, 0.0118198292, 0.0373896956, -0.00960044842, -0.00632198201, -0.0199961141, -0.00314653246, -0.0122463545, -0.0394717231, 0.0185791813, 0.0196057353, 0.0128319245, -0.0038676504, -0.0093257362, 0.0278326254, 0.0267337784, 0.0170899536, -0.0246228371, 0.0227287728, 0.0134247234, -0.00855220668, -0.0258662682, -0.00562435901, 0.030738784, 0.0275000799, -0.0289170127, 0.0208347067, -0.0158320647, 0.00487251673, -0.00421465468, -0.0665091276, 0.0370426923, 0.0224685185, -0.0132656796, 0.0046954, 0.0448792055, -0.0100414325, 0.0266470276, -0.0131427823, -0.0606100596, -0.0160200242, 0.0142054828, 0.0167574082, -0.0047496194, 0.0170321204, 0.0383150429, -0.0164393224, -0.00121541822, 0.0232781954, -0.00534964725, -0.0550001599, -0.0111981127, 0.00755456975, -0.0394717231, -0.0318954661, 0.0476263203, -0.0173212904, 0.00978840888, 0.0014205483, 0.0222661, -0.0185647216, 0.0307098683, -0.000534061051, -0.00294772792, 0.0153260166, -0.0271964502, 0.00152085419, 0.0217455942, -0.00821243133, -0.0110101523, -0.00858112331, 0.00412428891, -0.0696321651, -0.00799555425, -0.0508939438, -0.0426525921, -0.00628945045, 0.0326183885, 0.0141693363, 0.0414959118, -0.0260831453, 0.0427104272, -0.021904638, 0.00232601212, -0.0059569045, -0.0342666619, -0.0195623599, 0.0344112441, 0.00347184879, 0.0362619348, 0.0176104605, 0.0354522578, -0.017277915, -0.00527012534, 0.00410621567, 0.0132945962, -0.0226564799, 0.0294664353, 0.0178851727, -0.0479154885, 0.00111872691, -0.04412736, 0.0388644636, -0.00949201, -0.009853472, -0.0325894728, 0.0153115578, 0.000701689394, 0.00839316286, 0.0232492778, 0.00418212311, 0.0150079299, -0.0179863814, 0.0301893614, -0.00708466815, -0.0348739177, -0.010583627, -0.0368981063, -0.0110896742, -0.00981009658, -0.0332545638, -0.0208491664, -0.0167863257, -0.000904108456, -0.028815804, 0.0399922282, -0.00961490627, -0.00257903617, 0.0369559415, 0.0174080413, 0.0570821837, 0.0251867175, -0.0216010083, 0.00784373935, 0.0087112505, -0.00299110357, 0.0206033718, -0.0219624713, 0.00467732688, -0.00545085687, 0.0233215708, -0.0371583626, -0.0317797959, -0.0295098107, -0.00218323455, 0.0389512144, -0.00722563872, -0.00344654638, 0.0102293929, 0.0262132715, 0.0170032028, 0.0103378324, -0.0608413965, -0.0175960027, -0.0410043225, -0.0153838508, -0.0284687988, -0.0317219645, -0.0275289956, 0.0287868865, -0.0447346196, -0.0105691683, 0.0481468253, -0.0127813192, 0.0142777748, -0.0165549889, 0.0366378538, -0.00851606, -0.0143645257, 0.0374764502, 0.016685117, -0.0159332734, 0.0241023302, 0.00263506267, -0.0387198813, 0.00814013928, -0.0252734683, 0.0137355812, -0.00584485102, -0.00904379599, -0.0137283513, 0.0214564241, 0.022801064, 0.0376788676, -0.00795217883, -0.0402814, 0.0276302062, -0.0230757762, 0.0235529076, 0.0132656796, 0.038228292, -0.0506047718, -0.0246806704, 0.00218142709, 0.0357125103, 0.0186659321, 0.0295965616, -0.0120656239, -0.0205310788, -0.000366432767, -0.0338039882, 0.000103638122, -0.00867510401, -0.0408308208, -0.000454087451, 0.000695363793, 0.03088337, 0.0528313816, -0.00449298089, -0.0487251654, 0.00479299482, 0.00656416174, -0.00592075847, -0.0194033161, -0.0104824174, 0.00513999909, -0.011400532, -0.00679188315, -0.0125282956, 0.0159621909, -0.0141765652, -0.00268928218, 0.0153549341, 0.00391102582, -0.0417272486, -0.00616655312, 0.0101426421, 0.00698707299, 0.0263433978, -0.00160399056, -0.00983178429, 0.0258807261, -0.053901311, 0.0301893614, 0.0285989251, -0.00893535651, 0.0217022188, -0.0212250873, -0.0163381118, 0.0138440197, 0.016251361, -0.00405561086, -0.0108944848, 0.0127234859, 0.00306881801, 0.00934742391, -0.0053388034, 0.0236685742, -0.00344112446, 0.0176538359, -0.0326183885, 0.00612679217, 0.030738784, -0.00753288204, 0.00615209434, -0.014407902, -0.00989684742, 0.0161646102, 0.00413874723, 0.0132873673, 0.0245794617, -0.0131283235, -0.0632125884, 0.00702683395, -0.0167863257, -0.00660030823, -0.0185068883, -0.00594244618, 0.000264997303, 0.00285374769, 0.000642499886, 0.00590268523, 0.00991853513, -0.0296110213, 0.0251288842, -0.000715244212, -0.0199961141, 0.0293363091, -0.00969442818, 0.00297845225, -0.0190852284, -0.00157597719, 0.0340064056, 0.00662199594, 0.0125282956, -0.013157241, 0.00275434554, 0.0131789288, -0.00348811457, -0.00517976, -0.00789434463, 0.0314327925, 0.0267916117, -0.0117258485, 0.00367607526, -0.0138873952, -0.00970165804, -0.016685117, 0.0171044134, 0.0333702341, 0.00920283888, -0.00640511839, -0.0233938638, -0.00526651088, 0.0382572077, -0.0057581, -0.00876908377, -0.0398765616, -0.00863895752, 0.0231480692, 0.0391825512, -0.00232420489, -0.0287145935, 0.00386042125, 0.000127302628, -0.00169977813, 0.00207118108, -0.0227432307, 0.0026440993, -0.00884860568, 0.0396741405, 0.00478215097, 0.00719310669, 0.0106053147, -0.00478576543, 0.000608612725, -0.0283386726, 0.00659307884, 0.00365800201, 0.00811845157, 0.0354522578, 0.000478486181, 0.0146175502, 0.00170791103, -0.00962936506, -0.0161212347, -0.0139669171, -0.0084799137, -0.0177116711, 0.0230034832, -0.0205310788, 0.00584846595, 0.0288447198, -0.00226637092, -0.00821243133, -0.00104101247, 0.0127596315, -0.0184490532, -0.0123909395, 0.0282085463, -0.0111113619, 0.0592798777, -0.0169019941, 0.00899319071, -0.00174225, 0.0160634015, 0.0218757205, 0.0294375196, -0.00766300829, 0.037216194, -0.0120945405, 0.0482914113, -0.00890644, -0.0246517528, 0.0329075605, -0.013012656, 0.0253891367, -0.00137898, 0.00947032124, 0.00240011211, 0.0388066322, 0.0205021612, -0.00174134632, -0.0120222485, 0.0329364762, -0.0220347643, -0.0138512487, 0.0235529076, 0.00597136328, -0.0366378538, -0.00848714355, 0.0458334647, 0.0214419644, -0.0277603325, 0.0306520332, 0.0203142017, 0.0182610936, -0.0467588082, -0.0379680395, -0.0254180543, -0.00489420444, 0.0299291089, -0.0287145935, -0.0113282399, -0.00379535789, -0.0141765652, 0.00658223499, -0.0185358059, -0.0177984219, -0.0254469719, 0.008971503, 0.00619546976, 0.00126963761, -0.0150946807, -0.0410621576, -0.0129909683, -0.000422007666, 0.0345558301, 0.0215720907, 0.00807507616, -0.00412067445, -0.00438815681, 0.00563520286, -0.0105257928, 0.000858021958, -0.0164248627, -0.0427104272, -0.00528096966, -0.000247827847, 0.00544724241, -0.00799555425, 0.00337967579, 0.00552314939, 0.0174514167, -0.00882691797, -0.00851606, 0.000556200685, 0.00819074363, 0.0108944848, 0.0288302619, 0.0381415412, -0.0415537469, 0.0176538359, 0.0366378538, -0.016685117, -0.00938357, -0.0193743985, 0.0061340211, 0.0247385036, -0.0370426923, 0.0137138935, 0.00897873286, -0.0137861855, 0.001231684, -0.015369392, 0.0254180543, 0.0128319245, -0.0214275066, 0.0177261289, -0.0158609822, -0.00789434463, 0.00320075173, -0.0226420201, -0.00673766388, -0.0202274509, 0.0338618234, -0.0403103158, 0.0032278616, 0.0299580246, -0.002260949, 0.0258518085, -0.0312014576, 0.00187599123, 0.00326220039, 0.0122318966, 0.00746781845, -0.0104245832, -0.0041315183, 0.00449298089, 0.0349317528, 0.00468817074, 0.00271458458, 0.0142199406, -0.0101209544, -0.0399633124, 0.0120222485, -0.00652078632, -0.0165839065, 0.0473371483, 0.0226709377, 0.019041853, -0.0276591219, -0.0123692518, -0.0271241572, 0.0333702341, -0.037881285, -0.00708466815, 0.0123764817, -0.0201117825, 0.037216194, 0.0161212347, 0.0182610936, -0.00124252785, -0.00261156773, 0.0119499555, -0.0175960027, 0.00809676386, 0.010294457, -0.0105691683, -0.00568580767, -0.0128608411, -0.000583762187, 0.00442068838, 0.0246083774, 0.00671597617, 0.0155284358, 0.00820520241, -0.0317219645, 0.0210515857, -0.0162079856, -0.00713888742, -0.00265313592, -0.0216010083, -0.0274711624, -0.00857389439, -0.0355968438, 0.0262711067, -0.000900493877, 0.0222661, 0.0207045805, -0.000934381, -0.00612317724, -0.0141115021, -0.0123764817, -0.0120511651, 0.00355317793, -0.0437803566, -0.0460648, -0.0171333309, -0.0371872783, 0.00438092742, 0.000781211187, -0.0227287728, -0.000464027689, 0.000349263282, -0.00439900067, 0.0523397923, 0.00937634148, 0.0130271139, -0.00489059, -0.0410621576, 0.0289893057, -0.0307677016, 0.0337461531, -1.84967212e-05, 0.0104028955, 0.0293073915, 0.009557073, -0.039558474, -0.0137789566, 0.0182032604, -0.0203286596, 0.00253385329, -0.000876095146, -0.000241502232, 0.00135096663, 0.00779313501, 0.0115306592, 0.0147838229, -0.0249553826, 0.008971503, 0.00934742391, -0.0181020498, 0.00507132104, 0.00615932373, -0.000761782576, -0.000345422741, -0.00854497682, 0.0201551579, 0.0119716432, -0.0123331062, 0.0193165652, 0.00562797347, 0.0147115299, -0.0113933031, -0.0342088267, 0.000119960423, -0.0301315282, -0.00840039179, 0.00636174297, 0.0049556531, 0.0463828892, 0.0153115578, 0.0412645787, 0.00640873285, 0.00126692664, 0.0265313592, -0.0435201041, 0.0440984443, 0.0251578018, -0.00793772, -0.012282501, 0.0205166209, -0.00538217882, -0.0132873673, -0.0133596603, 0.0156730209, -0.0116607854, -0.00311580813, 0.0217455942, -0.0139018539, -0.0122102089, 0.0140319802, 0.0137211224, 0.00470624398, 0.0211527944, 0.011761995, -0.0127596315, 0.00918115117, 0.00248144125, -0.000753649627, -0.0129475929, 0.0196201932, -0.0333991498, 0.0128825288, -0.0233938638, -0.0153838508, 0.00819797348, -0.0305074491, 0.00371583621, 0.0223962255, -0.0135042453, 0.0249842983, 0.0278904587, -0.00676296651, 0.00123439496, 0.033688318, 0.0118270582, 0.0115523469, 0.0223817676, -0.0115089715, 0.0196635686, 0.00145759818, -0.00579786114, -0.00981732551, 0.0245794617, -0.000470805127, 0.015224807, -0.0142994625, 0.0234950725, 0.0366667733, 0.00825580675, 0.0147259887, -0.0143934432, -0.0196491107, 0.0357992612, -0.0243770424, -0.00927513186, 0.0135548497, 0.0206033718, -0.00538940821, 0.0189551022, -0.00699430238, -0.0152826412, 0.00652801571, 0.0412356593, 0.00409898674, 0.024781879, -0.0359727629, 0.0104318121, 0.00631836709, -0.0050749355, 0.00336160278, -0.016988745, -0.0160344839, -0.0068894783, 0.0265024416, 0.0408597402, 0.0190852284, -0.00557013974, -0.00772084249, 0.00563520286, 0.0243770424, 0.0256060138, -0.00471708784, -0.00839316286, -0.0453418754, 0.0112198014, -0.0272253677, -0.0387777127, -0.0161646102, 0.0178273376, 0.0292206407, -0.0202129912, 0.00874739606, -0.013533162, -0.00342305144, -0.0227576885, 0.00746058905, -0.00419296697, 0.0295965616, -0.0202129912, 0.0241167881, -0.00834978744, -0.00289170118, -0.0340064056, -0.0282519218, 0.0315195434, 0.00870402064, -0.00049023371, 0.0309701208, -0.0119644143, -0.0445032828, 0.00669428846, -0.00970888697, -0.000274937542, 0.0090293372, 0.0154561428, 0.00185249618, -0.0480311587, -0.021398589, 0.0308255348, 0.0381415412, 0.0470479801, 0.0339196548, -0.0240878724, -0.0375053659, 0.00708466815, -0.00435201032, -0.0301893614, -0.0264735259, 0.00996191055, -0.0212684628, -0.0167429503, -0.0450816229, -0.0116752442, -0.000126286017, -0.0374475308, 0.0331388973, -0.0154850604, -0.0193599407, -0.00855943561, 0.0202129912, 0.0149211781, -0.00512915524, -0.0110824453, -0.00455804402, -0.00767023768, -0.0038712651, -0.0238420777, 0.0211238787, -0.00298025971, 0.013012656, 0.0119571844, -0.00509300875, -0.104679585, -0.0090944, 0.0101426421, -0.0484359972, 0.00857389439, 0.0302471947, -0.00755456975, -0.00674489327, -0.0025519263, 0.0181598831, 0.0231336094, 0.0122102089, -0.00464118039, 0.0199238211, 0.0153404754, 0.0333991498, 0.00294230599, -0.0404838175, 0.0260542277, 0.00740275532, 0.00957153086, 0.0181165077, 0.0317508802, -0.0101571009, -0.00054400129, 0.0253023859, -0.003253164, -0.0325605571, 0.0209359173, 0.0175237097, 0.0115306592, 0.00701599, 0.0153260166, -0.0332256481, 0.0112848645, -0.0161935277, -0.0034302806, -0.00925344415, 0.0147187598, 0.00689670769, -0.0305942, -0.0405705683, -0.000798380643, -0.00421826914, -0.00156694057, 0.0215576328, 0.0272542853, -0.00505686272, -0.0290760566, 0.00626414781, -0.00984624308, 0.00381343113, -0.0329653956, -0.010439042, 0.010663148, 0.00665091304, 0.0272542853, 0.00137175084, -0.0201407, 0.0209214594, 0.0779602677, 0.0136054549, -0.0223673098, -0.00814736821, 0.0111836549, 0.00519783283, -0.00350618782, 0.0240589548, 0.0118776625, 0.0141259609, 0.0116463266, -0.00462310761, 0.00568942213, -0.0210805014, -0.00920283888, 0.0326183885, -0.0118415169, 0.00570749538, -0.00400139159, -0.00428694719, -0.00491589215, 0.0121523747, -0.011400532, -0.027644664, -0.0145669449, 0.00834978744, 0.000637981575, 0.00786542706, -0.0115017416, -0.00740998471, 0.0242179986, 0.0169309117, -0.000447535946, 0.00981009658, -0.00191033015, 0.00571833923, 0.00749673555, 0.000768108177, -0.0239432864, 0.0186370146, -0.01558627, -0.000361688581, 0.00136994349, 0.0250999667, 0.00899319071, 0.00827026553, 0.00708466815, -0.0431152657, -0.00831364095, 0.0234372392, -0.0108366506, -0.00895704422, 0.00395801617, -0.0183333866, -0.0138729373, 0.0319243819, 0.0304206982, 0.0113282399, 0.0031067715, 0.00354594877, 0.00849437248, 0.000692652829, 0.00572918309, -0.0193743985, -0.0147259887, 0.000413422909, -0.00283567444, 0.000283070432, -0.0241167881, 0.00430502044, -0.0117330775, -0.000222073621, -0.0185068883, -0.0051038526, 0.0068894783, 0.00446767826, 0.00612317724, -0.00272904313, 0.0122318966, -0.0160055663, 0.0218323451, 0.0247674212, 0.0289603882, -0.0162224434, -0.00156242237, -0.0203431193, -0.0235818233, -0.00842930935, -0.0189840198, 0.000294592057, -0.00514722848, -0.0290182214, -0.0350763351, -0.0110969041, -0.0181020498, -0.0141476486, 0.0345269144, 0.000260479021, 0.0237408672, 0.00961490627, 0.0097956378, 0.000390605594, 0.00945586339, 0.00778590562, 0.0129837384, -0.0107932752, -0.0138151031, -0.00861727, -0.010735441, -0.00917392224, 0.0158320647, -0.0230324, 0.0102004763, 6.09403469e-05, 0.0386042111, -0.010735441, 0.0521662906, -0.00396524556, 0.00917392224, 0.0271530747, -0.0174080413, 0.025591556, 0.0216154661, -0.00426164456, 0.00529904244, 0.0472793169, 0.00703406334, 0.00631475262, 0.0118559748, -0.0167140327, -0.000289621967, 0.00778590562, -0.00530265737, 0.0111330496, -0.00868956186, -0.00371222151, -0.00999805704, 0.0167574082, 0.0119065801, 0.000933477306, -0.00606172858, 0.0113282399, 0.00557736866, -0.0175670851, 0.0192298125, -0.0267337784, -0.0348160826, 0.0151380561, -0.00582316332, -0.0053388034, -0.0203431193, 0.0155284358, 0.00583039271, 0.000820972084, 0.0155573525, -7.9126432e-05, -0.0020223835, 0.0242902916, 0.00931850728, -0.00463756593, -0.00298568164, 0.0334569849, 0.0199527387, -0.0273121186, -0.00587015366, 0.00309592765, -0.00293869153, 0.000469901453, -0.00902210828, -0.000745064928, -0.0350185037, 0.0237264093, 0.0139307706, 0.0105763972, 0.0628655851, -0.00046154263, -0.0109812357, 0.00583400717, -0.00111330498, -0.0120945405, -0.00158411008, -0.0202708263, 0.0078003644, 0.0220492221, 0.0111836549, -0.00274350168, 0.0034845, 0.0170321204, 0.0215576328, 0.00293326937, -0.00587376812, 0.0188394338, 0.0236830339, -0.00418212311, 0.0020802177, 0.0275579132, -0.0142054828, -0.0185791813, 0.00405922579, -0.000326220063, -0.0203286596, -0.014118731, 0.00376644102, -0.00751119386, 0.0304785315, -0.014415131, -0.0118198292, 0.0255337227, 0.0195912756, -0.0222950168, 0.00739191147, -0.00679911254, -0.00222480274, 0.00957153086, -0.0040736841, -0.00982455537, 0.00627137721, -0.0244059581, -0.00206756638, 0.0050134873, -0.00662199594, -0.00703044888, 0.00164104044, 0.00332726375, 0.0193165652, 0.00154163828, 0.0248107966, -0.004337552, 0.0127596315, 0.00521229161, -0.0465563908, 0.0381993726, 0.0211961698, 0.00881245919, 0.00840039179, -0.0155428946, 0.0181165077, -0.0251288842, -0.0390958, 0.00694369758, -0.00176935969, 0.0178128798, -0.00981732551, 0.0204154104, -0.00717864837, 8.46613329e-05, 0.00174405728, -0.0397030599, -0.0178562552, -0.00317002763, -0.0127307149, -0.00923175644, 0.00908717141, -0.0188538916, -0.000610420073, 0.00238926825, 0.0172923729, 0.00584485102, -0.0333702341, 0.00295314984, -0.00265132869, 6.16180841e-05, 0.00450743921, 0.00257903617, 0.000834075094, -0.0186659321, 0.0269940309, -0.021904638, -0.00495926756, 0.00251939474, 0.00390379666, 0.00842930935, -0.0249409229, -0.00676658098, -0.0172923729, -0.0064268061, 0.00874739606, -0.0252300929, 0.0210949611, -0.00574002694, -0.0183623023, 0.0556074157, -0.00487974612, -0.00984624308, -0.0293796845, -0.00657862052, -0.0132439919, -0.0347871669, 0.0282519218, -0.00325135654, 0.00890644, -0.0423634239, 0.0145524871, -0.00393271353, -0.0262277313, 0.0195768178, -0.00965828262, 0.0133958058, -0.00831364095, -0.0018073133, 0.01896956, -0.00173682813, -0.00250674365, 0.0102366228, -0.0136849759, 0.00553399324, -0.00623161625, 0.00936911255, 0.00187237654, -0.0181454252, 0.00621354301, -0.00519783283, 0.00380258728, -0.0254614297, -0.00803170074, -0.0097378036, 0.0211527944, 0.0121740624, 0.0135403909, -0.0106197726, -0.0492456742, 0.00634728419, 0.0167574082, 0.0165839065, -0.0113354689, -0.00263867737, -0.0030182132, 0.0117981415, -0.0102799982, 0.00583039271, -0.00720033608, -0.0157742295, -0.0114655951, -0.00995468162, 0.0297266897, 0.0142127117, 0.00393271353, 0.0137355812, 0.00130578387, -0.00742444303, -0.0401657298, 0.00869679172, -0.00944863353, 0.0164826978, 0.0121740624, -0.00699791685, -0.00109252089, 0.0103016859, -0.00365980947, -0.01103184, -0.00617739698, 0.0469612293, 0.00544724241, -0.00119463413, -0.00314653246, 0.0116680143, 0.00465202425, 0.0117258485, -0.00895704422, 0.0151235973, -0.0150368465, 0.00169345259, -0.0125789009, -0.022425143, -0.0155718112, -0.0156151867, -0.0276591219, 0.00125156448, 0.0160634015, -0.0217745099, -0.0123981694, 0.0165983662, 0.00356944371, 0.00893535651, -0.00837147515, -0.0145163406, 0.000948839472, 0.0231914446, 0.00145307987, -0.0115668047, 0.00394717231, 0.0223962255, -0.00811845157, -0.0152103491, -0.00732684787, -0.0368691906, -0.0165405311, -0.00827026553, -0.0163381118, 0.0053388034, 0.000928959053, 0.00878354255, 0.0170321204, 0.00121722545, 0.00799555425, -0.0103522902, -0.0232059024, 0.0158609822, -0.0354233421, 0.0153260166, 0.013938, -0.00830641203, -0.00156603695, 0.0130777191, -0.000873384124, 0.0142705459, 0.000472160609, 0.00892812759, -0.00359474611, -0.0320111327, 0.0228733569, -0.0235529076, -0.0051616868, -0.0222661, 0.0112125715, 0.00796663668, 0.0450237878, -0.000805609918, -0.0129186753, 0.0219480135, -0.00702321948, 0.0077714473, 0.0351052545, -0.00147386396, -0.0139163127, 2.52600275e-05, 0.0114511373, -0.00181454257, -0.0140970433, -0.0372451134, 0.0213552136, -0.0105402507, -0.00715696067, 0.0278326254, -0.0376499519, 0.00461587822, 0.0108944848, 0.00275976746, -0.00794494897, 0.000868865871, 0.00742444303, -0.0134753278, -0.0200539492, -0.00772084249, -0.0104968753, 0.00741721364, 0.00337244663, -0.00895704422, 0.00283567444, 0.00696538528, 0.000628945, 0.00334714423, 0.0108944848, -0.00270554796, -0.0195334423, -0.00433032261, 0.0059279874, -0.00876185484, -0.00352787552, 0.000304080459, -0.0114800539, 0.0110246111, -0.00728708738, 0.0146175502, 0.0116969319, -0.00077759655, 0.0226998553, 0.00509300875, 0.014191024, 0.0172923729, -0.0147187598, -0.0100848079, 0.0013030729, -0.00502794562, 0.0102149351, -0.0151958903, 0.00545085687, -0.00146121276, 0.0233215708, -0.0197358616, -0.00213443697, 0.0191864371, 0.00721118, 0.013012656, 0.0315484591, 0.062634252, -0.0211817119, 0.0184924304, -0.0065966933, 0.0193310231, 0.00923898537, -0.00531711569, -0.0114511373, 0.0186225567, 0.00700514624, 0.00226817816, 0.00407729857, 0.000651988259, -0.0262132715, 0.00332726375, 0.0113860741, 0.0016012796, 0.0132295331, 0.00283567444, -0.00206395169, -0.00224649045, -3.17127e-05, 0.00465563918, -0.00653524464, -0.00487251673, -0.00392548461, -0.0084799137, 0.00522313546, 0.0177116711, 0.0195623599, 1.44161477e-05, -0.00144404336, -0.0102799982, 0.00154344551, 0.000966008927, 0.00958599, -0.001773878, -0.00420381082, -0.00773530081, -7.698025e-05, -0.0143500678, -0.00609064568, 0.0267048609, -0.00574364187, -0.00866787415, 0.0129114464, -0.0129981972, -0.00219407841, -0.0225841869, 0.000942513871, -0.00129132532, -0.00409898674, -0.00877631363, -0.0227287728, -0.00846545584, -0.0225408114, 0.0401079, -0.00332003459, -0.0145018818, -0.0215720907, 0.00737745268, -0.00197539339, 0.00936188269, -0.0152537245, -0.0132945962, 0.00419658143, -0.00369595573, 0.00785096921, 0.0191575214, 0.00244890945, -0.00982455537, -0.0231914446, 0.00776421791, -0.0187816, 0.0113137811, -0.00241999258, -0.0143645257, 0.0103450613, 0.00256457762, 0.0127813192, -0.00560990069, 0.000300239917, 0.00426525949, 0.00487974612, -0.0127885491, -0.0183623023, 0.00679911254, 0.00212901505, 0.020733498, -0.0166272819, -0.0110969041, -0.0156151867, 0.00714250235, 0.00313207391, 0.00816182699, 0.011545117, -0.00888475217, -0.0117981415, -0.00690032216, 0.0133958058, 0.0126005886, 0.0153983096, 0.00359113142, -0.0151380561, 0.0190563109, -0.00256277015, 0.00934742391, 0.000970527239, 0.000472160609, -0.00952092651, 0.0163091943, -0.0171333309, 0.00773530081, 0.00408814289, 0.0128030069, 0.00963659491, -0.00628222106, 0.00159224297, -0.0169598274, 0.00306158862, -0.0106270025, -0.00528096966, 0.00841485057, -0.0367824398, -0.00362185575, 0.00307062524, -0.0249553826, 0.00409537181, -0.0117113898, 0.0093257362, 0.00244529499, -0.0090654837, 0.0104607297, 0.0132801384, -0.0182032604, -0.00827749446, 0.00145940552, 0.000408000982, -0.0115523469, 0.00546531519, 0.0105041051, -0.00828472432, -0.00376644102, -0.0127813192, -0.0178128798, 0.00854497682, 0.0123764817, 0.0274422448, 0.00958599, -0.0064484938, 0.0111402795, -0.0400211439, -0.00528458413, -0.00529904244, 0.000420426251, -0.00682802964, 0.00811122172, -0.00297845225, -0.0181309674, -0.0193310231, 0.0066545275, 0.000218459, 0.0119210389, 0.0156874787, -0.0191286039, 0.0160344839, 0.0129475929, 0.0306809507, 0.00145850179, 0.00737745268, -0.00907994155, -0.00764132058, 0.00316279824, 0.00307243271, -0.0134319523, 0.0099113062, -0.00911608804, -0.00647379644, 0.00325858593, -0.00503517501, 0.0204587858, 0.0254325122, 0.00155338575, -0.006969, 0.0208202489, -0.00123891328, -0.00842930935, -0.00228444394, 0.0144585064, -0.00806061737, 0.00684610289, 0.0163525715, -0.00423272792, -0.0405705683, 0.0156007288, -0.00861727, -0.0210515857, 0.00279410626, 0.0102872271, 0.0157886893, -0.0244204178, -0.00847268477, -0.0102799982, 0.0141042732, 0.0048689018, 0.00960767735, -0.0228299815, -0.0182755515, 0.00963659491, 0.0139596881, -0.0368981063, -0.0113499276, 0.00851606, -0.0174514167, -0.00341401482, 0.0310568716, 0.00317725679, -0.012275272, -0.00693646865, 0.00112776353, -0.00807507616, 0.00187779847, 0.00930404849, 0.00802447088, 0.0273121186, 0.00400500605, 0.0202274509, 0.0102077052, 0.0177261289, -0.0148633448, -0.0275145378, 0.0116029512, 0.0165260732, 0.0213841312, 0.00185791811, 0.0046628681, -0.0149500957, -0.0108583383, -0.00216516131, 0.0113210101, -0.0104462709, -0.00571111, -0.00918115117, 0.000103073333, -0.00902210828, -0.0078003644, 0.0243192073, 0.00553037878, 0.00170520006, -1.69012037e-05, 0.00562435901, 0.0105402507, -0.00339413434, -0.0236541163, 0.0315484591, 0.000170000407, -0.00689309277, 0.01161741, 0.0156296454, -0.0221648905, 0.00972334575, 0.0117113898, -0.0123909395, -0.0137861855, 0.0224540606, 0.0198226124, -0.0126150465, -0.00290796719, 0.00861727, 0.00894258637, 0.0280784201, 0.0184201375, 0.00866787415, -0.00528819859, 0.00487974612, -0.0185502637, 0.0119716432, 0.0104245832, 0.00705936551, 0.00303086429, -0.00349715119, 0.00553760771, 0.00156513334, -0.00707382429, -0.0137934154, 0.00764855, -0.00687863445, 0.0161646102, -0.0188972671, 0.00851606, 0.000544904964, -0.0103522902, -0.000563429901, 0.00502433116, 0.00649548415, 0.0127234859, 0.004926736, -0.00433032261, 0.00855943561, -0.0110535277, -0.002555541, 0.000352652016, 0.0196057353, 0.0058376221, 0.011248718, -0.0110246111, 0.0193599407, 0.0129186753, 0.00472793169, -0.00359293888, 2.07841022e-05, -0.0183333866, 0.00879077148, -0.000319894461, -0.00605449965, 0.0180442166, -0.0105041051, -0.00665091304, -0.0116680143, 0.0148922615, -0.0154995192, 0.0119716432, -0.00586653873, -0.0108583383, -0.013460869, 0.00443153223, 0.0190273952, -0.00562074455, 0.00605088472, -0.0216010083, 0.0194177739, 0.00142958481, -0.0143645257, 0.0328208096, -0.0162079856, 0.00704129273, -0.0250132158, -0.00936911255, 0.001921174, -0.000245568692, -0.00261337496, -0.0139452294, -0.00734130666, -0.011913809, 0.0153838508, 0.0093908, 0.00388933811, -0.00838593394, -0.0152971, 0.0108438795, -0.0137717277, 0.0115306592, 0.00444237608, -0.0027832624, -0.00398693327, 0.0140319802, -0.00695454143, 0.0183478445, 0.010880026, -0.0045146686, 0.0223528501, -0.00251216558, 0.000337741658, 0.00619546976, 0.00761240348, 0.00942694582, 0.0236251988, -0.0105402507, -0.00478576543, 0.00396886, 0.00668705907, -0.00773530081, -0.0201407, -0.0127596315, -0.00573279755, 0.00374113861, -0.017422501, 0.00199527387, 0.0162369031, -0.0026061458, 0.000346100482, -0.000100757716, -0.0166417416, -0.0276735816, 0.0349895842, -0.00355859986, -0.00567134889, 0.00752565265, 0.0162802786, 0.00245613884, -0.01403921, 0.00457973173, 0.00309773488, -0.0181165077, 0.0226853956, 0.020372035, 0.016916452, 0.0094775511, 0.00898596179, 0.015658563, -0.00903656613, -0.0081835147, 0.0448213704, -0.014632008, -0.0254180543, 0.00335618085, 0.0123186475, 0.00493396539, -0.0206178296, 0.0150079299, -0.00438815681, 0.0211383365, -0.0124415448, -0.0142127117, 0.0134897865, 0.000343615451, 0.0202274509, 0.00721479487, -0.0120873116, -0.0189406425, 0.00559182744, -0.00952092651, -0.00794494897, 0.0179719236, -0.00557736866, -0.00177026342, 0.0324738063, -0.00276157469, -0.00416766433, -0.0171044134, -0.0067412788, 0.0242179986, 0.00513638416, 0.0030218279, -0.0171767063, 0.0109956944, 0.0157742295, 0.00276880385, -0.00614486542, 0.00399054773, -0.0235673655, 0.00764132058, 0.0119210389, 0.0361462645, 0.00480022421, 0.0154561428, -0.00585208042, 0.0229890253, 0.00738829654, -0.00124072062, -0.0044568344, 0.0252879281, -0.0237408672, 0.0281940866, -0.00730877509, -0.0147910519, -0.0291628074, -5.9302467e-05, -0.000740546617, 0.00147838227, -0.0134102646, 0.00379174319, -0.00681357132, -0.0132584507, 0.00585931, -0.00846545584, -0.00733769219, 0.00373390922, 0.00146482745, -0.0208491664, 0.0141837951, 0.0107426699, -0.0108149629, 0.00541832531, 0.0104101244, -0.00597136328, 0.00289170118, -0.00988238864, 0.0135114742, 0.0221648905, -0.0026694017, -0.00535326218, -0.00291700359, -0.00365258, 0.0067412788, -0.00956430193, 0.00329292472, 0.00369234104, -0.0105474805, 0.0148922615, -0.00117927196, -0.0161212347, -0.00354956323, 0.0232781954, -0.00785819814, -0.0109956944, 0.0108438795, -0.00586292427, -0.0151958903, -0.00406645471, -0.00658946438, 0.00905102491, 0.00399054773, 0.00456527341, 0.00915223453, -0.00703406334, -0.0158031471, 0.00121451449, 0.0332545638, -0.00821243133, -0.0016139308, 0.0214275066, 0.00948478, -0.0149067203, -0.00347546348, 0.00994022284, -0.00488336058, 0.00898596179, 0.00260253111, 0.0171767063, -0.00210732734, -0.015369392, 0.00300917658, -0.00148470781, 0.0297556054, -0.0111619672, -0.00155338575, -0.00321521028, -0.00295676454, -0.0162802786, 0.00163742586, 0.0155428946, 0.0171911642, -0.0108294217, 0.00300194742, -0.040078979, 0.0134391813, 0.00723286765, 0.0163814873, -0.0145669449, -0.00254650437, 0.018015299, 0.00156061503, 0.0211383365, -0.00187779847, 0.0141548775, -0.0136632882, -0.0113137811, -0.0187816, -0.00422549853, 0.00452912692, 0.0266470276, -0.00139705313, 0.00774253, 0.017943006, 0.00343570253, 0.00871847942, -0.0108727971, -0.000905463938, 0.00108709896, 0.012275272, 0.0146175502, 0.0088919811, -0.00171062199, 0.0116246389, 0.00473877555, 0.000837237865, -0.00960044842, -0.00400500605, 0.0143500678, -0.0110173821, -0.00256457762, -0.0057581, 0.00114583666, -0.00518337451, 0.00338329049, -0.000240372668, -0.00344835385, 0.00130488025, 0.0106920656, -0.00502071623, -0.0175960027, -0.0123331062, -0.0169309117, 0.0234806146, 0.0234372392, 0.0089136688, -0.0179719236, 0.021326296, -0.00741721364, 0.00866064522, 0.0010129991, -0.0148055106, 0.000786633114, 0.0019464764, 0.0167140327, 0.00500987237, 0.00350799505, -0.00720756548, -0.00142597023, -0.00714973127, 0.0132945962, 0.00690032216, 0.0104607297, 0.00440984452, 0.0102799982, 0.000406871404, 0.0139452294, -0.0162224434, -0.0193021055, 0.00920283888, -0.0128463833, 0.00222299527, -0.000947032182, 0.00161573803, -0.00335979532, -0.00944863353, 0.0272398256, 0.00681718579, 0.0253891367, -0.0153404754, -0.00567496382, -0.0112414891, -0.00283567444, 0.0160055663, 0.00329292472, -0.0118487459, 0.00320978835, 0.0215142574, -0.0301026106, 0.0329364762, 0.0147693641, -0.000351748342, -0.0117186196, 0.00140699337, 0.011913809, -0.0117547661, 0.00456527341, 0.000919470622, 0.0110173821, 0.00760517456, 0.000482100819, -0.0237987023, -0.019706944, 0.012499379, 0.012795778, -0.00401223544, -0.0241167881, 0.0320400484, 0.0026097605, -0.0286278427, 0.00560990069, -0.0169309117, -0.000487974583, -0.00323870545, -0.00888475217, -0.0218468029, 0.0143211503, 0.00497372635, -0.0154561428, 0.0127451736, -0.0247095879, 0.0110969041, 0.0295531861, -0.0266470276, -0.00471347291, 0.00788711477, -0.00855220668, -0.0158609822, -0.0205599964, 0.0195479, -0.0215287153, 0.0120945405, 0.0145958625, -0.0041098306, 0.00417850818, -0.0157453138, 0.0176249184, -0.00165821, -0.00721479487, 0.00155067479, 0.011761995, 0.0106125437, 0.00154796382, -1.52350867e-05, 0.0165116135, 0.0226275623, -0.00531711569, 0.0132006165, 0.00493758, 0.00371583621, -0.00936911255, -0.0285844672, -0.00368691911, 0.00043782164, -0.00423634239, 0.00051960256, -0.0176538359, 0.0167718679, 0.0010383015, -0.0131500112, 0.0143645257, -0.0282085463, 0.00256819208, -0.0190273952, 0.00840762164, -0.00592437293, -0.0118342871, 0.026025312, 0.0168875363, 0.00555568095, -0.0224396028, -0.00458696112, 0.0105547095, -0.0172200818, 0.00443514669, -0.0119354967, 0.0121885212, -0.0228299815, 0.023596283, 0.00353691215, -0.0124053983, 0.0106920656, -0.00892812759, -0.0038459627, 0.0153115578, -0.0040809135, -0.0122174378, -0.00344835385, 0.00893535651, 0.00714611681, -0.00444960548, 0.00552676385, 0.0251722597, -0.00739552593, 0.0060147387, -0.0157453138, 0.0281073358, -0.0221793484, 0.0108727971, -0.0174947921, -0.0135693084, 0.00503878947, -0.0124560036, 0.0324159712, 0.00388572365, -0.00928959064, 0.0126295052, -0.0330810621, 0.0131716989, 0.0209359173, -0.0196201932, 0.0360884331, -0.010149871, -0.0035513707, -0.0364643522, -0.00124794978, -0.00748950616, -0.01161741, 0.0106703779, 0.0161067769, -0.0107209822, 0.00276880385, -0.00729431631, -0.0249120072, 0.00251758751, 0.000319442624, 0.00541471085, 0.0162947364, -0.00541471085, 0.0191430617, 0.0112559469, 0.00266036508, -0.00997636933, 0.00883414783, -0.0157019384, 0.00286639878, 0.0232781954, 0.00561351515, -0.00941248797, 0.0146826133, 0.0184924304, 0.00320255919, -0.00321882498, -0.00820520241, 0.00994745269, 0.00616655312, 0.00807507616, 0.00620269915, 0.0230757762, 0.0190852284, -0.00140066782, 0.00306339609, -0.020299742, -0.00433393707, -0.00791603234, 0.00630029431, -0.00635089912, -0.0178851727, -0.00975949224, -0.00714611681, 0.0186225567, 0.0173212904, -0.00239830464, 0.0173791237, 0.0205455367, -5.09718811e-05, 0.0142777748, -0.0247240458, -0.00101119175, -0.0085955821, 0.00769192539, 0.00970888697, 0.0117330775, 0.0287579689, -0.000523669, 0.0174947921, 0.0142850047, -0.00728347246, -0.00665814197, -0.013533162, 0.00428694719, 0.00335618085, -0.00330557604, -0.028454341, -0.00841485057, -0.00223745382, 0.0282519218, 0.00467009749, -0.0243770424, -0.0130054262, -0.0008282013, 0.0115884924, 0.0107065244, -0.0348739177, -0.0104028955, -0.000545808638, -0.000971430913, -0.00748227723, 0.00655693281, 0.0236974917, 0.0183189269, -0.001084388, 0.0159188155, -0.01375004, 0.0123403352, 0.0141548775, 0.0233938638, 0.0176827535, -0.0239432864, 0.00589184137, -0.00540748145, 0.00376282632, -0.0163381118, -0.0168730766, -0.00933296606, 0.00350799505, 0.0151669728, -0.015513977, -0.0262277313, -0.0117113898, 0.00283567444, -0.00276880385, 0.0053677205, 0.0106414603, -0.00926790293, -0.0291338898, -0.0232926533, -0.0188249759, -0.0107571287, -0.00204226398, 0.000582406705, -0.0109740067, 0.0353944227, -0.00197539339, 0.00720395101, 0.004044767, 0.00367246056, -0.00682080025, -0.00182357908, -0.0175092518, -0.00705213659, -0.0132295331, -0.000550326891, -0.0226420201, 0.00857389439, -0.00160670152, -0.00387849426, 0.000140744523, 0.0135909962, -0.00410621567, -0.00326942978, 0.00563881733, -0.0127596315, 0.00491950661, 0.0188105162, 0.00294230599, -0.0360884331, 0.00232781959, -0.00875462592, 0.00545808626, 0.0109740067, -0.0109234015, -0.000645662658, -0.0181309674, -0.00634728419, -0.0559544191, -0.00605088472, -0.0118848924, 0.0344401635, -0.0104028955, -0.0104824174, -0.0105113341, 0.00325677847, -0.00533518894, 0.0208202489, 0.00918115117, -0.00370860682, 0.00574725633, -0.00438454188, -0.0042797178, -9.97975803e-05, 0.0211527944, 0.00043036649, 0.0202563666, -0.00687140506, -0.00312303728, -0.00313207391, 0.0160634015, -0.00201153965, -0.00179104751, -0.00854497682, 0.00568580767, 0.00589545583, 0.00176213041, -0.0085955821, 0.0121668335, -0.0262421891, 0.00500987237, -0.008971503, 0.00326039316, -0.0064195767, 0.0333413146, 0.00159224297, -0.0058376221, 0.0201262403, 0.00388572365, -0.0132729085, 0.0111330496, -0.0139235416, 0.00993299391, -0.0127234859, 0.000485715456, 0.00490143383, -0.0217022188, 0.00816182699, -0.0360016823, 0.00372306537, -0.00356944371, -0.0153983096, 0.0273410361, 0.00105637463, 0.009557073, -0.0222661, 0.00608703122, -0.00740998471, -0.0195189845, 0.000502433104, -0.0175960027, 0.00480745314, -0.00488697505, 0.0126873394, -0.000119395634, 0.0217889696, 0.00645210827, 0.0270807818, -0.0101860175, -0.0239577442, 0.00446044933, 0.0223673098, -0.0133162839, 0.0066545275, 0.00548338844, 0.00174044271, 0.0029929108, -0.000695363793, 0.00962213613, -0.0100775789, 0.00312484475, -0.0025266239, -0.00819074363, -0.021543175, 0.0126295052, -0.00672682, 0.0264012329, 0.0112920934, 0.0084799137, -0.0102077052, 0.0121523747, 0.013938, 0.00596051943, 0.00411344506, -0.0239143688, 0.0125282956, 0.00719310669, -0.00961490627, -0.00900042057, 0.00661838148, -0.00290615973, -0.00222118804, 0.00587376812, -0.0184056778, -0.00353871938, -0.00887029339, 0.00182538643, 0.0176682957, 0.0201840755, -0.00977395, 0.0182755515, 0.0226564799, 0.0268928222, 0.0103306025, 0.00876908377, -0.000520506233, -0.00837870408, -0.0179285482, -0.00603281194, -0.0384596251, -0.00487974612, -0.0229745675, 0.019706944, -0.0216154661, 0.00505686272, 0.000758167938, -0.0228589, -0.0139813758, -0.0156441033, -0.0173646659, 0.00874739606, 0.0246951282, -0.0108221918, -0.00294411345, 0.00352606829, -0.0220347643, 0.00338690518, 0.00521590607, 0.0248686317, 0.00868233293, 0.00283025252, -0.0036652314, -0.0186225567, 0.0123981694, -0.00116752437, 0.00819074363, -0.00327665894, -0.00722563872, -0.00137536542, 0.00644126441, 0.00342847337, 0.0185791813, 0.000968719949, -0.00704129273, 0.0264446083, -0.00358932419, 0.00423634239, 0.00117927196, -0.00910163, 0.00350618782, -0.0104173534, -0.000454087451, -0.0236541163, 0.00297664502, -0.0206901226, 0.002555541, -0.00315376162, -0.0138657074, 0.0193743985, 0.00379174319, 0.0108727971, 0.00181454257, 0.0145669449, 0.00408452796, -0.00793772, -0.0168730766, 0.0161067769, -0.0103812078, 0.00189044967, -0.00190490822, 0.00285555492, -0.00427248841, 0.0083281, -0.0317797959, 0.0124053983, 0.0137283513, -0.0127668614, 0.0153838508, -0.0182032604, 0.00984624308, -0.00501710176, -0.00141512626, 0.00695454143, 0.0176538359, 0.00243083644, 0.00614486542, 0.023162527, 0.0094775511, 0.0132873673, 0.000839045213, -0.0219480135, -0.0220203046, 0.00459780497, -0.0174369588, -0.0173791237, -0.00381343113, -0.000658765668, 0.0090293372, 0.00958599, -0.00774975959, 0.00127505953, 0.00631836709, -0.0166417416, -0.00885583553, -0.0263867732, -0.00884860568, 0.00379535789, -0.0102872271, 0.00759071577, -6.0770908e-05, 0.00425441563, 5.8229376e-05, 0.0156730209, -0.019114146, 0.0162802786, 0.0298423562, 0.0147982808, -0.00443153223, 0.00751119386, 0.000544904964, 0.0210949611, -0.0142343994, 0.00787988584, 0.0105402507, 0.0140319802, 0.00254289, -0.0105547095, 0.00900042057, 0.00959321856, -0.00484359963, -0.00537856435, -0.0196201932, -0.00141151168, 0.0168007836, 0.0170465782, 0.0190273952, 0.0126728807, -0.0124053983, 0.0204877034, -0.00530627184, 0.0186370146, -0.00717141898, 0.00388933811, 0.0425947607, -0.000128432206, 0.00862449873, 0.00751842326, 0.0436936058, 0.000189993807, -0.0166995749, -0.00201334711, 0.0107209822, -0.00103378319, -0.00704129273, 0.00215973938, -0.0137644978, -0.00168893428, 0.00782205164, 0.00608703122, -0.0189406425, -0.0132295331, -0.0231914446, -0.000675031508, -0.0125933588, -0.00309412042, -0.0192587301, -0.00373029453, 0.00164736609, -0.00317364209, -0.00506770657, 0.00155067479, 0.0045725028, -0.00888475217, 0.00056026713, -0.0089498153, -0.00821243133, -0.00769915478, 0.00412428891, 0.0159188155, -0.0113210101, 0.0159188155, -0.0232781954, -0.0281796288, -0.00159495394, 0.00759071577, 0.010005286, 0.0144729652, 0.00211636396, -0.016179068, -0.00673043448, -0.00583400717, -0.0153549341, -0.0265602767, -0.0150368465, -0.0327918939, -0.011761995, -0.0064557232, 0.00168080139, -0.00337786856, 0.0169309117, 0.0170032028, 0.0159188155, -0.000823683047, -0.0101281833, 0.00781482272, -0.00790157355, -0.0115017416, 0.00324593461, -0.00114854763, -0.00375921163, 0.0124849202, 0.0035513707, -0.00503878947, -0.00244348752, 0.0309122857, -0.00750396494, 0.00200611772, 0.00798832439, -0.0205166209, -0.0106776068, -0.0109450892, -0.0142705459, -0.00223022467, 0.0066256104, 0.0118921213, -0.0153260166, -0.00974503346, -0.0153260166, -0.00790157355, -0.00210913457, 0.00690032216, -0.0149500957, -0.0102004763, -0.0109017137, 0.00438815681, 0.0140247513, 0.0236830339, -0.00954984315, -0.0109884646, 0.0038712651, 0.0155718112, 0.00217419793, -0.023090234, -0.000673224218, -0.000589184114, 0.0156441033, -0.00663645426, 0.0197647773, 0.00737383822, -0.00984624308, -0.0460069664, -0.0176393781, -0.0198370703, 0.0237842426, 0.0183912199, 0.0222371835, 4.21047516e-05, -0.00366703863, -0.00324593461, -0.0192153547, -0.0110462988, 0.0729865432, -0.00344112446, 0.0034845, -0.0125644421, 0.0101643298, -0.0106125437, 0.00756902806, 0.0423345082, -0.00432670815, -0.0132512208, 0.00108980993, -0.00115125859, -0.0115740346, 0.00528458413, -0.0102004763, -0.0240155794, 0.013533162, -0.00986070093, -0.0110969041, 0.00976672117, -0.00574364187, -0.00470624398, 0.00369595573, -0.0147838229, 0.0094992388, -0.000656506571, 0.0189551022, 0.0193310231, -0.00977395, 0.00839316286, -0.0202274509, 0.0130343437, 0.010222164, 0.000478938018, -0.0237119496, 0.00710635586, 0.012571671, 0.0132150752, 0.0202274509, 0.0113716153, -0.0206901226, 0.00534603279, 0.0150368465, 0.0152681824, 0.00404838193, 0.0115089715, 0.0259096436, -0.0090654837, 0.0112776347, -0.0347293317, 0.00519783283, -0.0211817119, -0.00844376814, -0.0068316441, 0.0208491664, 0.00773530081, 0.0342377424, -0.0262277313, 0.000867058581, 0.0132078454, -0.010735441, 0.0220781397, 0.0137355812, -3.99020901e-05, 0.0102872271, -0.0128174657, 0.0128174657, -0.00793049112, 0.000796121487, 0.000642499886, 0.016988745, 0.00751842326, -0.00505686272, -0.0261988137, 0.00817628577, 0.0117403073, -0.0229745675, 0.027427787, 0.00528096966, -0.0115884924, 0.0121089993, 0.000522313523, -0.00485805795, -0.0270663239, 0.00473154616, 0.00645210827, -0.0138440197, -0.000966912601, -0.0280784201, 0.00915946346, -0.0111908838, 0.00362727768, -0.033688318, -0.00525928149, 0.0125066079, 0.00714250235, -0.00169977813, -0.00130488025, -0.00405922579, 0.0153404754, 0.0315195434, 0.0148199694, -0.00453635631, -0.0151380561, -0.00180279498, 0.0107209822, 0.0090076495, -0.00649186922, 0.0112631768, -0.0193021055, 0.000106066698, 0.0106270025, 0.00285555492, 0.025360221, 0.00460141944, -0.00300917658, -0.00228082947, 0.00604004087, 0.00729431631, -0.0114222197, 0.00614848, 0.0205021612, -0.0186948478, -0.0103522902, 0.0182610936, 0.0193599407, 0.00787988584, -0.00296037924, 0.0108149629, -0.00229167333, 0.0101137254, -0.0112920934, 0.00745336, 0.00640150346, 0.0202563666, 0.0130704893, -0.0177116711, 0.0145452572, -0.0130198849, 0.021398589, 0.0087112505, -0.00319171534, 0.0103812078, -0.00605449965, -0.00814736821, -0.00307966187, -0.000185814395, -0.0120294774, 0.0195479, 0.00345196831, 0.0254035965, -0.00661838148, 0.00524120871, -0.0123114185, 0.00959321856, -0.0242324565, -0.0176972114, 0.0033417223, 0.0167284925, 0.00199346663, 0.00976672117, -0.000304080459, 0.0120873116, -0.0253313035, 0.0134030357, -0.00952092651, -0.00552676385, 4.59170551e-05, 0.0104896463, 0.0197503194, -0.00200792518, 0.00566050503, 0.0104173534, 0.0303050298, -0.00153983093, 0.00910163, 0.015658563, 0.0256060138, -0.00404115254, -0.0151091395, -0.0165260732, -0.00808953401, 0.0201840755, 0.0456888787, -0.00358209503, 0.007095512, -0.0156007288, -0.0106920656, -0.00362547045, 0.0163091943, 0.00135096663, 0.0231336094, -0.0168007836, -0.0133958058, 0.0127668614, -0.00264952122, 0.00920283888, 0.00957153086, 0.00729431631, -0.0087112505, 0.00130216917, -0.00122806942, -0.0115523469, -0.0150513053, 0.0170321204, -0.0229311902, -0.00519783283, -0.00453997077, 0.00295134261, 0.00310315704, -0.0118342871] |
08 Oct, 2024 | ML | Common Loss Functions
08 Oct, 2024
Loss functions are a fundamental aspect of machine learning algorithms, serving as the bridge between model predictions and the actual outcomes. They quantify how well or poorly a model is performing by calculating the difference between predicted values and actual values. This difference, or “loss,” guides the optimization process to improve model accuracy. In this article, we will explore various common loss functions used in machine learning, categorized into regression and classification tasks.
Table of Content
Importance of Loss Functions in Machine LearningCategories of Loss FunctionsRegression Loss Functions in Machine LearningClassification Loss Functions in Machine LearningChoosing the Right Loss FunctionImportance of Loss Functions in Machine LearningLoss functions are integral to the training process of machine learning models. They provide a measure of how well the model’s predictions align with the actual data. By minimizing this loss, models learn to make more accurate predictions.
The choice of a loss function can significantly affect the performance of a model, making it crucial to select an appropriate one based on the specific task at hand.
Categories of Loss FunctionsThe loss function estimates how well a particular algorithm models the provided data. Loss functions are classified into two classes based on the type of learning task
Regression Models: predict continuous values.Classification Models: predict the output from a set of finite categorical values.By selecting the right loss function, you optimize the model to meet the task’s specific needs, whether it’s a regression or classification problem.
Regression Loss Functions in Machine LearningRegression tasks involve predicting continuous values, such as house prices or temperatures. Here are some commonly used loss functions for regression:
1. Mean Squared Error (MSE) It is the Mean of Square of Residuals for all the datapoints in the dataset. Residuals is the difference between the actual and the predicted prediction by the model.
In machine learning, squaring the residuals is crucial to handle both positive and negative errors effectively. Since normal errors can be either positive or negative, summing them up might result in a net error of zero, misleading the model to believe it is performing well, even when it is not. To avoid this, we square the residuals, converting all values to positive, which gives a true representation of the model’s performance.
Squaring also has the added benefit of assigning more weight to larger errors, meaning that when the cost function is far from its minimal value, the model is penalized more heavily for larger mistakes, helping it converge to the minimal value faster.
The Mean Squared Error (MSE) is a common loss function in machine learning where the mean of the squared residuals is taken rather than just the sum. This ensures that the loss function is independent of the number of data points in the training set, making the metric more reliable across datasets of varying sizes. However, MSE is sensitive to outliers, as large errors have a disproportionately large impact on the final result.
This squaring process is essential for most regression loss functions, ensuring that models can minimize error and improve performance. The formula is:
[Tex]\begin{equation} M S E=\frac{\sum_{i=1}^{n}\left(y_{i}-\hat{y}_{i}\right)^{2}}{n} \end{equation}[/Tex]
Python implementation:
Python
import numpy as np
# Mean Squared Error
def mse( y, y_pred ) :
return np.sum( ( y - y_pred ) ** 2 ) / np.size( y )
where,
i – ith training sample in a datasetn – number of training samplesy(i) – Actual output of ith training sampley-hat(i) – Predicted value of ith training sample2. Mean Absolute Error (MAE) / La LossThe Mean Absolute Error (MAE) is a commonly used loss function in machine learning that calculates the mean of the absolute values of the residuals for all datapoints in the dataset.
The absolute value of the residuals is taken to convert any negative differences into positive values, ensuring that all errors are treated equally.Taking the mean makes the loss function independent of the number of datapoints in the training set, allowing it to provide a consistent measure of error across datasets of different sizes.One key advantage of MAE is that it is robust to outliers, meaning that extreme values do not disproportionately affect the overall error calculation. However, despite this robustness, MAE is often less preferred than Mean Squared Error (MSE) in practice. This is because it is harder to calculate the derivative of the absolute function, as it is not differentiable at the minima. This makes MSE a more common choice when working with optimization algorithms that rely on gradient-based methods.
This loss function example illustrates how the choice of a loss function can significantly impact model performance and training efficiency.
Source: WikipediaThe formula:
[Tex]\begin{equation} M A E=\frac{\sum_{i=1}^{n}\left|y_{i}-\hat{y}_{i}\right|}{n} \end{equation}[/Tex]
Python implementation:
Python
# Mean Absolute Error
def mae( y, y_pred ) :
return np.sum( np.abs( y - y_pred ) ) / np.size( y )
3. Mean Bias ErrorIt is similar to Mean Squared Error (MSE) but provides less accuracy. However, it can help in determining whether the model has a positive bias or negative bias. By analyzing the loss function results, you can assess whether the model consistently overestimates or underestimates the actual values. This insight allows for further refinement of the machine learning model to improve prediction accuracy. Such loss function examples are useful in understanding model performance and identifying areas for optimization, making them an essential part of the machine learning process.
The formula:
[Tex]\begin{equation} M B E=\frac{\sum_{i=1}^{n}\left(y_{i}-\hat{y}_{i}\right)}{n} \end{equation}[/Tex]
Python implementation:
Python
# Mean Bias Error
def mbe( y, y_pred ) :
return np.sum( y - y_pred ) / np.size( y )
4. Huber Loss / Smooth Mean Absolute ErrorThe Huber loss function is a combination of Mean Squared Error (MSE) and Mean Absolute Error (MAE), designed to take advantage of the best properties of both loss functions. It is commonly used in machine learning when training models because it is less sensitive to outliers than MSE and is still differentiable at its minimum, unlike MAE.
When the error is small, the MSE component of the Huber loss is applied, making the model more sensitive to small errors. Conversely, when the error is large, the MAE part of the loss function is utilized, reducing the impact of outliers.A new hyper-parameter, typically called “delta,” is introduced to determine the threshold where the Huber loss switches from MSE to MAE. This delta value allows the loss function to balance the transition between the two. Additional terms involving this hyper-parameter are also incorporated to smooth the shift between MSE and MAE, ensuring a seamless transition within the loss function.
This is a powerful loss function example that demonstrates the flexibility and effectiveness of loss functions in machine learning, especially when dealing with datasets containing outliers.
Loss FunctionsThe formula:
[Tex]\begin{equation} \text { Loss }= \begin{cases}\frac{1}{2} *(x-y)^{2} & \text { if }(|x-y| \leq \delta) \\ \delta *|x-y|-\frac{1}{2} * \delta^{2} & \text { otherwise }\end{cases} \end{equation}[/Tex]
Python implementation:
Python
def Huber(y, y_pred, delta):
condition = np.abs(y - y_pred) < delta
l = np.where(condition, 0.5 * (y - y_pred) ** 2,
delta * (np.abs(y - y_pred) - 0.5 * delta))
return np.sum(l) / np.size(y)
Classification Loss Functions in Machine Learning1. Cross-Entropy LossCross-Entropy Loss, also known as Negative Log Likelihood, is a commonly used loss function in machine learning for classification tasks. This loss function measures how well the predicted probabilities match the actual labels.
The cross-entropy loss increases as the predicted probability diverges from the true label. In simpler terms, the farther the model’s prediction is from the actual class, the higher the loss. This makes cross-entropy loss an essential tool for improving the accuracy of classification models by minimizing the difference between the predicted and actual labels.
A loss function example using cross-entropy would involve comparing the predicted probabilities for each class against the actual class label, adjusting the model to reduce this error during training.
Python implementation:
Python
# Binary Loss
def cross_entropy(y, y_pred):
return - np.sum(y * np.log(y_pred) + (1 - y) * np.log(1 - y_pred)) / np.size(y)
The formula:
[Tex]\begin{equation} \text { CrossEntropyLoss }=-\left(y_{i} \log \left(\hat{y}_{i}\right)+\left(1-y_{i}\right) \log \left(1-\hat{y}_{i}\right)\right) \end{equation}[/Tex]
2. Hinge LossHinge Loss, also known as Multi-class SVM Loss, is a type of loss function used for maximum-margin classification tasks, most commonly applied in support vector machines (SVMs). This loss function in machine learning is particularly effective in ensuring that the decision boundary is as far away as possible from any data points. Hinge Loss is a convex function, making it suitable for optimization using a convex optimizer.
This type of loss function is widely used in classification tasks as it encourages models to achieve a larger margin between different classes, leading to better generalization. A common loss function example involving Hinge Loss can be seen in SVM models.
The formula:
[Tex]\begin{equation} \text { SVMLoss }=\sum_{j \neq y_{i}} \max \left(0, s_{j}-s_{y_{i}}+1\right) \end{equation}[/Tex]
Python implementation:
Python
# Hinge Loss
def hinge(y, y_pred):
l = 0
size = np.size(y)
for i in range(size):
l = l + max(0, 1 - y[i] * y_pred[i])
return l / size
3. Kullback-Leibler Divergence (KL Divergence)Kullback-Leibler Divergence (KL Divergence) is a widely used loss function in machine learning that measures how one probability distribution differs from a reference probability distribution. This divergence quantifies the “distance” between the two distributions, making it a crucial tool when comparing them.
In machine learning, especially in models involving neural networks, KL Divergence is often applied in tasks where the model outputs are probabilities, such as in classification tasks using the softmax function. By minimizing KL Divergence, the model ensures that its predicted probability distribution closely aligns with the true distribution, making it a valuable loss function example for applications requiring precise probabilistic outputs.
The KL divergence formula:
[Tex]D_{\text{KL}}(P \parallel Q) = \sum_{i} P(i) \log\left(\frac{P(i)}{Q(i)}\right)
[/Tex]
Python Implementation:
Python
import numpy as np
def kl_divergence(P, Q):
"""
Calculate the Kullback-Leibler (KL) Divergence between two distributions P and Q.
Parameters:
P (array-like): The true probability distribution.
Q (array-like): The estimated probability distribution.
Returns:
float: The KL divergence between P and Q.
"""
# Ensure P and Q are numpy arrays
P = np.asarray(P, dtype=np.float32)
Q = np.asarray(Q, dtype=np.float32)
# Add a small epsilon to avoid division by zero or log of zero
epsilon = 1e-10
P = np.clip(P, epsilon, 1)
Q = np.clip(Q, epsilon, 1)
return np.sum(P * np.log(P / Q))
Choosing the Right Loss FunctionThe choice of a loss function in machine learning is influenced by several key factors:
Nature of the Task: Determine whether you are dealing with regression or classification problems.Presence of Outliers: Consider how outliers in your dataset may impact your decision; some loss functions (e.g., Mean Absolute Error (MAE) and Huber loss) are more robust to outliers than others.Model Complexity: Simpler models may benefit from more straightforward loss functions, such as Mean Squared Error (MSE) or Cross-Entropy.Interpretability: Some loss functions provide more intuitive explanations than others, making them easier to understand in practice.ConclusionUnderstanding and selecting the appropriate loss function is critical for building effective machine learning models. Whether you are handling regression or classification tasks, each type of loss function has its strengths and weaknesses, making it suitable for specific scenarios. By carefully considering these factors, practitioners can optimize their models’ performance and achieve better predictive accuracy, ensuring the success of their machine learning endeavors.
Loss Functions in Machine Learning – FAQsHow can I implement custom loss functions in machine learning frameworks?Most machine learning frameworks (like TensorFlow and PyTorch) allow you to define and implement custom loss functions by creating a function that calculates the loss based on the model’s predictions and the actual values. You can then integrate this custom function into your training loop as you would with standard loss functions.
Are there loss functions for imbalanced datasets?Yes, specific loss functions are designed to handle imbalanced datasets. For example, Focal Loss is an adaptation of Cross-Entropy Loss that puts more focus on hard-to-classify examples, making it effective for cases where some classes are significantly underrepresented.
Can loss functions affect model training speed?Yes, the choice of a loss function can influence the training speed of a model. Some loss functions may provide smoother gradients, which can lead to faster convergence during optimization, while others may present challenges like local minima that slow down the training process. | NLP/Natural Language Processing (NLP) Tutorial/AI ML DS - Projects/30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated]/Does Artificial Intelligence Require Coding?/Artificial Intelligence – Boon or Bane/Artificial Intelligence Examples/Agents in Artificial Intelligence/What are Diffusion Models?/ML | Common Loss Functions | https://www.geeksforgeeks.org/ml-common-loss-functions/ | NLP | ML | Common Loss Functions | Artificial Intelligence – Boon or Bane, Natural Language Processing (NLP) Tutorial, ML | Common Loss Functions, AI ML DS - Projects, Artificial Intelligence Examples, NLP, Agents in Artificial Intelligence, What are Diffusion Models?, 30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated], Does Artificial Intelligence Require Coding? | GeeksforGeeks | [-0.0120146647, 0.00505727576, -0.0211468451, 0.0153172435, 0.01676495, -0.00344799552, 0.00758752925, -0.00197282224, -0.0282561127, 0.0141151305, 0.00112455711, -0.0227884389, 0.0042558671, -0.0202678796, -0.0134688336, 0.00497972, 0.0382607952, -0.0175922103, 0.0345122702, -0.0166873932, -0.0172432084, -0.0392948687, -0.0058877673, -0.00818212237, -0.0144124273, 0.010896571, 0.00974616129, 0.0167261716, -0.0634922385, 0.0211209916, 0.0506955534, -0.0172819868, -0.0205005463, -0.00760691799, -0.0467402115, -0.0467660651, 0.0221292153, 0.00568095222, -0.0218189936, 0.0377437547, 0.022853069, 0.0317719691, 0.00115929556, 0.0340727866, -0.00694769481, -0.00637895335, -0.0243654046, 0.00839540083, 0.0264594071, -0.0377954617, -0.0261879619, -0.045706138, 0.0152913919, -0.00414922787, 0.0408201292, 0.0195440277, 0.0311773773, -0.0235898476, 0.0104118474, -0.00444652466, -0.00587807316, 0.00735486206, -0.0299881902, -0.0132878702, 0.0212373268, -0.0171139501, 0.00696708355, 0.0159118362, 0.0258906651, -0.0370199047, -0.039346572, 0.0311515257, -0.00440451549, -0.0182902105, -0.0443876907, 0.00492155319, -0.0365028642, 0.0424746536, -0.0191562492, 0.00407167245, 0.0227625873, -0.00896414183, -0.00201967871, 0.00333166216, 0.0210175849, 0.0211080667, -0.000260336587, -0.0149811693, 0.0300657451, -0.0133395744, -0.0183031373, 0.0280751511, 0.00897060521, -0.00320401834, -0.0344347134, 0.0284887813, 0.000479067792, 0.0130487401, -0.00727730663, 0.011956498, 0.0029083374, 0.058373563, 0.00898999441, -0.0241585895, 0.0171010233, -0.0392173156, 0.00415892247, 0.0132103143, 0.0370457545, 0.0631303117, -0.0183419138, -0.0125510916, -0.0303759687, -0.0352878273, -0.0101662548, -0.0269118156, -0.0237191077, -0.0272220373, 0.0485239923, 0.00562601723, 0.0364253111, 0.0758494362, 0.02957456, 0.0573394857, -0.0504111797, 0.067990467, -0.0133395744, 0.0150328726, 0.0217672903, -0.00235736906, 0.018393619, 0.0259423703, 0.0272737425, -0.000572376943, -0.0211080667, 0.0106768301, 0.0119177205, 0.0346932337, -0.00910632778, 0.00527055375, 0.00635633292, -0.0613723807, -0.00411045039, 0.0069412319, -0.0216251034, -0.0217155851, -0.00406844076, 0.0267567039, -0.0074582696, 0.00192596565, -0.012208554, 0.0183031373, 0.0116462754, -0.0033187361, 0.0369940512, 0.00185002573, -0.0384417586, 0.00631109206, 0.0111421635, 0.00853758585, 0.0368130878, 0.0013798445, -0.0308671538, 0.006508213, 0.0292384848, 0.0401738323, 0.00253186934, 0.00121261517, -0.0745568424, 0.0482913256, -0.00847295579, -0.01054757, -0.00814334489, 0.030427672, -0.00288248551, 0.0105411075, 0.0475933254, 0.0230081808, -0.0179541353, 0.0183548406, 0.00496679405, -0.00491509028, 0.00703171361, -0.000943593914, -0.0226979572, -0.0281268544, 0.0214053635, -0.0139212413, 0.011213256, 0.00585545273, 0.0109935151, 0.0293677449, 0.0301950052, 0.0196603611, -0.00434311712, -0.0130228885, -0.0501785129, 0.0148906875, 0.00343830115, 0.0160023179, 0.0275064092, -0.0626649782, -0.0168554317, 0.0323148593, 0.0011722215, -0.0246756263, 0.0337108634, -0.0244429596, 0.00510251615, 0.00434958, -0.052789554, 0.0313066356, -0.0156403929, -0.000566721836, -0.00528994249, -0.00457901554, 0.00663100928, 0.00953934621, -0.0253865533, -0.00589423, -0.0119694239, 0.0208495483, 0.0222972538, -0.0276098158, -0.0197766945, -0.0142443907, 0.00864745677, -0.0167908017, 0.0101274773, -0.0253219251, 0.0164030232, -0.0051509887, 0.00852466, -0.0232149959, 0.0131392218, 0.0414147228, -0.0148131317, -0.0239000712, -0.011891868, -8.98757062e-05, -0.0087314751, -0.00906754937, 0.0121956281, -0.0255545918, -0.0416473895, -0.0072449916, 0.0148389833, 0.0147097241, -0.0156403929, 0.0110193668, -0.016273763, -0.0283595212, 0.0149165392, 0.0215863269, -0.0530997775, 0.00533518335, 0.0183419138, -0.0158084296, 0.0174370985, -0.0508506633, 0.0106574409, 0.00937131, -0.022995254, 0.0320304893, 0.0340469368, -0.0221292153, 0.0428882837, -0.0113166636, 0.0247919597, 0.0176439136, 0.0626132712, -0.0027225269, -0.0115945721, -0.0199059527, 0.00352555118, -0.0050023403, 0.00735486206, 0.00251086452, 0.0194793977, 0.0123572024, 0.0103407549, 0.00418477412, 0.0554264486, 0.0359082706, 0.0415439829, -0.0547543, 0.00582636939, -0.0480586588, -0.0440516174, -0.0177731737, -0.0187426191, 0.00105265656, 0.024404183, 0.0146063166, 0.0452666543, -0.0044012838, -0.028799003, -0.0203583613, 0.0266532972, -0.0343830101, -0.00346092158, -0.00499587739, 0.0400187224, -0.0161962081, -0.0408718362, -0.0234218109, 0.0706273541, 0.0283336695, -0.0179929137, -0.0148002058, -0.00628524041, 0.00981079135, 0.00950056873, -0.0297038183, -0.0131392218, 0.0482137725, 0.0320821926, 0.00908693857, -0.000123604332, -0.0194664709, 0.0266274437, 0.0175146535, -0.0265240371, 0.0444652475, -0.0192984343, -0.0341503434, -0.0529963709, 0.0103666075, -0.00251248037, -0.029083373, -0.0185875073, -0.0282819662, -0.0313066356, 0.00562278554, 0.0110129043, 0.0042655617, -0.0198025461, 0.00729023246, -0.0296004117, -0.020306658, -0.00813041907, -0.0261621103, -0.0379247181, -0.0151104284, 0.000156121168, -0.0032072498, -0.037511088, 0.0122537948, 0.00816273317, 0.0217285119, 0.00127805269, 0.0288507063, 0.000801408547, 0.0177214686, 0.00506050698, -0.0255028866, -0.000606711488, 0.0257743318, -0.0202549547, 0.0349000469, 0.00639834208, 0.0270669274, -0.0456027314, -0.0215992518, -0.041388873, -0.0131327594, -0.011814313, -0.0191174708, 0.0212244, -0.00256741559, -0.0199059527, -0.00134349032, 0.0220904388, 0.028514633, -0.0161962081, 0.0299623385, 0.0175405052, -0.0293160416, -0.0473865122, 0.0281785578, -0.0104958666, 0.0430692434, 0.00561632263, 0.0304018203, 0.0223618839, -0.00346415304, -0.0218448453, -0.014502909, 0.0282302611, 0.00457255263, -0.0152655402, -0.00169814588, 0.0308413021, -0.0342796035, -0.00770386262, -0.000270031043, -0.0289282631, 0.0083630858, -0.0393724255, -0.00549998926, 0.00646297215, 0.00905462354, 0.0238742176, 0.019595731, -0.0459129512, 0.0282044094, 0.0126351099, -0.032754343, 0.000840186374, 0.0204617698, 0.023563996, 0.0134171294, -0.0333489366, 0.0233054776, 0.00327349524, 0.0133395744, -0.0435345806, -0.00481814565, -0.00793006644, 0.00317331916, -0.0184065439, -0.000766266137, 0.0684040934, 0.00909340195, 0.00950056873, 0.00830491912, -0.00278554088, 0.00655668508, 0.0305310804, -0.0126544992, 0.00352878263, 0.0102502732, 0.0214699935, 0.011497627, -0.0138049079, -0.0297296718, 0.00633048126, 0.0161574297, 0.00825321488, -0.00950056873, 0.0308154505, 0.0232667, 0.0292384848, 0.0486015491, -0.0105087925, -0.011071071, 0.00397149613, -0.0105281817, -0.0237191077, -0.0025658, -0.0535134077, 0.00587161025, -0.0155757628, -0.00502496073, 0.0378988683, -0.00570680434, 0.0732642487, -0.0217543636, 0.0606485307, -0.0506955534, 0.00755521422, 0.0204100646, 0.0368130878, -0.0183419138, 0.0103989216, 0.00301497639, -0.0139987972, -0.0119823497, -0.0204100646, -0.00151556695, -0.00778141804, -0.0302208569, 0.0449047275, 0.0196086578, 0.0469470285, 0.0284112245, -0.000145315891, -0.0336591564, -0.0261491854, -0.0333230831, 0.0596144535, -0.00319270813, 0.0352878273, -0.0490668826, 0.00905462354, 0.0117367571, 0.0551679283, 0.0321080461, 0.018613359, -0.0128871659, -0.0246627014, 0.00405874662, -0.0269893706, -0.0141797606, 0.00446914509, -0.0264981855, -0.0113360528, -0.0450339876, 0.018613359, -0.00514775701, 0.00933253113, -0.00327995839, -0.0289024115, 0.0334264897, 0.000494417327, -0.0100563848, 0.0152913919, -0.00928729, 0.00829845574, -0.0282561127, 0.00988188386, -0.0155240586, -0.0064144996, 0.0138953896, -0.016842505, 0.00675380556, 0.0159376897, 0.00886719767, 0.0347190872, -0.00159393041, 0.00654699048, 0.028514633, 0.0250763316, 0.0348224938, -0.00510574784, -0.00321532856, 0.0255028866, 0.000391413749, 0.0453183576, -0.00730315829, -0.00103973062, 0.0306861904, -0.0374852382, -0.0202161763, 0.00359664392, -0.0163513198, -0.00942947622, 0.0506697, -0.0135205369, 0.0057520452, -0.0142185381, 0.0233184025, -0.000131784036, -0.00732254703, -0.0177473202, -0.00486661773, 0.014296094, -0.0228659939, 0.00761984382, 0.0289282631, -0.0178507287, 0.00544182258, 0.033193823, 0.00688952813, -0.0135205369, 0.0118207755, -0.000477452064, -0.00739364, -0.0169717651, -0.00368066248, -0.0189882126, 0.00416215416, 0.0183289889, 0.0440516174, 0.0111744786, -0.0457319878, -0.00425909832, -0.00242038304, -0.0243137013, 0.0258518886, -0.00698001, -0.0127062025, 0.0156920962, -0.020229103, 0.00869916, 0.0234476626, 0.0129324067, -0.0126738884, 0.00516714621, 0.0144899832, -0.000260740519, 0.0110904602, -0.00456932141, 0.0181997288, 0.00539658172, -0.032263156, -0.00372590334, -0.00308445329, 0.0101468656, 0.00447883969, -0.00481168274, 0.0277907792, 0.00967506878, -0.030350117, -0.00431403378, 0.00920973532, 0.00649205549, -0.00858929, 0.00816273317, -0.0223101787, 0.0132878702, -0.00688952813, 0.0435345806, 0.011846628, -0.00478583062, -0.0206427332, 0.00990127306, 0.0126544992, -0.00361926435, -0.0112584969, 0.0200610645, -0.000878964202, 0.0142185381, -0.011213256, 0.00362895872, -0.0125510916, -0.0307895988, -0.00110516825, 0.0114200711, 0.0229047723, 0.00962982792, 0.0420093164, 0.0178248771, 0.0135463895, 0.0241198111, 0.0385193117, 0.0196991377, -0.0129776476, -0.00665039802, -0.0412854664, 0.000862806744, 0.0006713412, 0.0120792948, -0.0153172435, -0.00798177067, 0.0220128819, -0.0119629614, 0.00756814, -0.0130099626, -0.0291350782, 0.0142056122, 0.0352878273, -0.00147678913, 0.0896543488, 0.00438835798, 0.0173853952, -0.0401996858, 0.0123636657, 0.0284370761, -0.0114717754, -0.00415569078, 0.0351585671, 0.0134688336, 0.0402513891, -0.000337488309, -0.0259165168, 0.0418025032, 0.00609135116, -0.0030586014, -0.00168360421, 0.0453442112, -0.00862806756, 0.00487954402, 0.00666332431, 0.000319311221, -0.016842505, 0.0181868039, 0.00816919655, 0.0073742508, 0.0162866898, -0.0138178337, -0.0381056815, 0.00573265599, 0.0430433936, -0.0096169021, -0.0261621103, 0.00981079135, 0.0327801928, 0.0447237678, -0.0154465027, -0.0326767862, -0.0229564756, 0.0213278066, 0.00528024789, -0.0489376225, -0.00618829578, 0.00635956461, -0.0112520345, -0.028799003, -0.011213256, 0.00241230428, -0.0368130878, 0.00579728605, -0.0148906875, 0.0146450941, -0.00593624, -0.00937777199, -0.00675380556, 0.00367419957, -0.0125640174, 0.0170880985, -0.00747765834, -0.00261750375, 0.00178862747, -0.018677989, -0.0232149959, -0.00277423067, -0.00222326233, -0.0279200394, 0.00414276496, 0.00968153216, 0.0105928108, -0.00169491442, 0.012984111, -0.00488277525, 0.0212244, 0.0155499103, 0.0156274661, -0.0289541148, 0.0133783519, 0.0289799664, 0.0248307381, 0.0442325808, -0.0340469368, -0.0412079096, 0.0394758321, 0.00286471238, 0.0112972753, -0.0451373979, -0.00121261517, 0.0232020691, 0.0257097017, 0.0162220597, -0.00504111825, -0.00451438595, -0.0139470939, -0.010011144, 0.0272737425, -0.0160281714, -0.00985603221, 0.00941655, -0.0253607016, 0.00517360913, -0.0335816033, -0.000244785071, 0.0109224226, 0.0305569321, 0.00352231972, 0.00368389394, 0.0259294435, 0.0204746947, -0.0231245141, 0.0526344441, -0.0264464822, -0.0114847012, -0.0167390965, -0.0225816239, -0.00958458707, -0.013442982, -0.0290058181, -0.00543212797, 0.039837759, -0.0110258302, -0.0136756487, -0.0155886887, -0.0100628473, -0.0385451652, 0.0184970256, 0.0110516818, -0.0162996147, 0.0250504799, 0.0596661568, 0.0181350987, -0.0337108634, -0.0172173567, 0.019311361, 0.0199576579, 0.0139083154, -0.0150457984, 0.0234476626, -0.0198025461, 0.0214699935, -0.0036645052, 0.0369164944, -0.00683782436, -0.0086797718, -0.00278069358, 0.000163593984, -0.00645327754, 0.0295228567, -0.0207590666, 0.000632967334, -0.0168683566, 0.00165128929, -0.0180963222, 0.0271444824, -0.0130745927, 0.010327829, -0.0199964345, -0.0188718773, -0.00130713603, 0.0100176064, -0.0130034992, -0.011355442, -0.00513806287, 0.00782019645, -0.00950056873, -0.0116915163, -0.00318139791, -0.00293742074, 0.00843417831, 0.00534487795, -0.0209012516, -0.0154594285, -0.00703171361, -0.0170880985, 0.0231762175, 0.00118595536, -0.0115881087, -0.00727084326, 0.0112584969, 0.00300689763, -0.0243912563, -0.018820174, -0.0196991377, 0.0120922206, -0.00518330373, -0.00633694418, 0.0467919186, -0.00917742, 0.0158213545, 0.0262913704, -0.00599763822, 0.013158611, -0.0226462539, 0.0119629614, 0.00736132497, -0.0115622571, 0.0141539089, 0.0151104284, -0.0174112469, -0.0295487083, 0.0106832925, -0.00714804698, 0.0367355309, 0.00584899, 0.0406908728, 0.0332713798, 0.00412983913, -0.0185487289, -0.013727352, 0.0410786495, 0.0257872585, 0.00707049156, -0.021999957, -0.026705, 0.0148519091, 0.0349000469, -0.0159118362, 0.0291609298, -0.00537396129, 0.0258001834, 0.0115945721, 0.0145675391, 0.0175792836, -0.0112649603, 0.02561922, -0.0202678796, -0.0220645871, -0.0400445759, 0.010896571, -0.00508312741, 0.0182385072, 0.0190528408, 0.000209036749, 0.00116171921, -0.016842505, 0.0197766945, 0.0163900964, -0.0498682931, 0.0368389413, 0.017126875, -0.00110759179, -0.011465312, 0.0105217183, 0.009267902, -0.0205522515, -0.0140505014, -0.0466885082, -0.0222843271, 0.00353524578, 0.00975262467, -0.0265757404, -0.00815627072, -0.0079946965, -0.015278466, 0.00966214295, 0.00192919711, 0.0118272388, -0.00615921244, 0.0132038519, 0.00833077077, -0.0182902105, -0.0180963222, 0.0356239, -0.0226204023, -0.00233313278, -0.00621414743, -0.00289217988, 0.000351222145, 0.00386808882, -0.0157696512, 0.0139083154, -0.051729627, 0.0187167674, 0.0117561463, -0.00203583622, 0.00760045508, 0.0314358957, -0.0116656646, 0.0178895071, -0.0184194706, -0.00210046582, 0.0359858274, -0.0212244, 0.0236674026, -0.0156145403, -0.00355140306, -0.0297555234, -0.011213256, -0.0194147676, 0.0155240586, 0.0448788777, -0.0027693836, -0.00748412171, 0.0109741259, -0.0115687195, 0.0167908017, -0.059924677, -0.0123248873, -0.00811103, 0.0415439829, -0.000431403372, -0.000889466493, -0.0109030334, -0.0367355309, 0.0295487083, 0.00293257344, 0.00339306029, 0.0229564756, -0.00109628157, 0.000556219544, 0.00665039802, -0.0217414368, -0.00663747219, -0.00351262535, -0.0243137013, 0.0149423908, -0.022077512, 0.030634487, 0.0174370985, -0.012841925, 0.00410075579, 0.00256095268, 0.0105863484, 0.0218189936, -0.0286438912, -0.0199059527, -0.012273184, -0.00652760174, 0.0164418016, 0.0152913919, 0.00534487795, 0.0276356675, -0.00237191073, 0.0024187672, 0.0139729455, -0.0394499823, 7.18500742e-05, 0.0068766023, -0.00942947622, 0.0129647218, 0.0193630643, -0.017760247, -0.00872501172, -0.0266532972, -0.00886073429, -0.00836954825, -0.0344605669, 0.0157050211, 0.0096362913, -0.00165613659, 0.0012093836, -0.0317202657, -0.0254382584, 0.0195828043, 0.00774910348, 0.0219611786, -0.0100369956, 0.0155369844, -0.0146063166, -0.0118337013, 0.00648559257, 0.00847941916, 0.00891243853, 0.0328060463, 0.0126157217, -0.0316427089, -0.00349646783, -0.00747765834, 0.0162349865, -0.0311515257, -0.0309447106, 0.000454023771, -0.00807871483, -0.00822736323, -0.0136497971, -0.0241585895, -0.00111405482, -0.0404840559, 0.0102632, -0.0185228772, -0.0301174503, 0.00939069781, 0.0244300347, -0.00345122698, 0.00449499721, -0.00997236557, -0.0174112469, 0.00828553, 0.0192079525, 0.0188977309, -0.00796238147, -0.0323924161, 0.0275839642, 0.000794541615, 0.0139600197, -0.0662842393, -0.03425375, 0.00831138156, -0.032469973, -0.00900938269, 0.0373042747, -0.0157567263, -0.00915156864, -0.0127126658, 0.0234347358, -0.0115040904, 0.00524147041, 0.00455639511, 0.0111292377, -0.00161655084, 0.0171915051, -0.000814334489, -0.008382475, 0.0374852382, 0.00997882895, 0.00643712, 0.00396826491, 0.0035481716, -0.0269118156, -0.0125317024, 0.0236415509, -0.0113037378, -0.00139519409, 0.0341503434, 0.0180316921, 0.0111615527, 0.00969445799, 0.0184323955, -0.00196151203, 0.0152655402, -0.00192919711, 0.0124799991, 0.0027645363, -0.00482460856, -0.0106962183, -0.0112649603, -0.0155886887, -0.00807225239, 0.0236803293, -0.0126415733, 0.0678353533, 0.00419446873, -0.00366127351, -0.0121956281, 0.0257097017, 0.0159506146, -0.0136627229, -0.0103859957, 0.00698647276, -0.00144689786, -0.0225169938, 0.0336591564, -0.0122990357, -0.0287473, 0.0103342924, 0.0628200844, -0.000826856471, -0.019246731, -0.0120405164, -0.00154626602, 0.013016426, 0.0224006604, 0.0194147676, 0.017682692, 0.00265305, 0.00752289919, 0.0202678796, 0.0119629614, 0.0392690189, -0.0319529325, 0.012415369, 0.00156403927, 0.00289379572, 0.0102696624, -0.0147355758, 0.0224265121, -0.00240422552, 0.00829199329, -0.0143090198, -0.00845356751, 0.0349000469, 0.0118724797, 0.00740656583, -0.0221033636, 0.00583929522, 0.00712219533, -0.0205651764, 0.00459194137, -0.00335105089, 0.0077620293, 0.0193501376, 0.0150975026, -0.00930667948, 0.00441420963, 0.00296812, -0.013727352, 0.00248824409, -0.010295514, 0.0191174708, -0.00559693389, 0.00486015482, -0.0169200599, -0.0101274773, 0.00593947107, 0.0172302835, -0.0233701058, 0.0135593154, -0.00476321, 0.0111292377, 0.00493124779, 0.019246731, 0.00677965768, -0.00524793332, 0.0132749444, -0.00342860655, -0.00935192, 0.0105863484, -0.00552584091, -0.0447496176, 0.00316685624, -0.00161897449, -0.00663100928, -0.014502909, -0.0217285119, -0.00307960622, 0.0124024432, 0.0171527285, 0.00133864302, 0.00265466585, 0.0162220597, 0.00370328291, 0.011529942, -0.00923558697, 0.000165411693, -0.028514633, 0.0140892789, 0.0116204238, -0.0175922103, -0.0186650623, -0.00487631233, 0.00609781407, 0.00368066248, -0.0109676635, 0.0260457769, -0.0354429372, 0.037071608, -0.0298330784, -0.00936484616, 0.0111874044, 0.000614790188, -0.0147355758, 0.0264206287, 0.00690245396, 0.00155999989, 0.00847941916, -0.0308413021, 0.00129340228, 0.0115881087, -0.00515745161, -0.0217543636, -0.00483430317, 0.0156274661, -0.0126351099, 0.00407167245, -0.00583929522, 0.0225299206, -0.0191303976, -0.00707695447, -0.00515745161, 0.036580421, -0.00244300347, 0.040897686, 0.0102114957, 0.027170334, 0.0140892789, -0.0480069555, 0.0144253531, -0.00624323077, -0.00678612059, 0.000807871518, -0.00276292046, -0.00149940955, 0.00925497618, -0.00188234064, 0.000660838909, -0.0206556581, 0.0155369844, -0.0214829184, 0.00452731177, -0.0167908017, 0.000407167245, -0.0226721056, 0.00300043472, 0.0280751511, 0.0369164944, -0.0325216763, 0.00629816623, 0.000460890675, 0.0136627229, -0.00251409621, 0.0174888019, -0.00284532341, 0.0231891442, -0.00066528219, -0.0215475485, -0.0346415304, -0.0219094753, 0.0213407334, 0.0128742401, 0.0118078496, -0.0255545918, 0.000720621378, -0.00148244423, 0.00719328783, -0.00510574784, 0.00484722899, 0.0254382584, 0.00309414789, -0.00586837856, -0.00603318447, -0.0220645871, -0.00897706766, -0.00886719767, -0.0256709252, -0.0040328945, -0.0174241718, 0.0228013657, 0.00641126838, 0.00474705314, 0.024481738, -0.0128677776, -0.0264335554, 0.0162996147, 9.739901e-05, -0.0129259443, -0.00379699608, 0.0170880985, -0.00404905202, 0.00760045508, -0.00147759693, 0.00907401275, -0.00411045039, 0.00618829578, -0.00697354693, 0.0115234787, -0.00125785591, 0.0119500356, 0.00155676831, 0.00569064682, 0.00374206086, 0.0156920962, -0.0142702423, -0.0303242654, 0.000887042901, -0.000491993735, -0.0366579778, 0.011387757, -0.0134042036, -0.021366585, -0.0108513301, -0.0205781031, -0.0096362913, -0.00063821848, 0.0058231377, 0.000331227318, 0.015498207, -0.0222714022, -0.033038713, 0.0169459116, 0.00363219017, -0.000925012864, -0.00880903099, -0.0263818521, 0.000108153799, 0.00396180199, -0.0030586014, -0.0341503434, 0.0233313292, 0.00684428727, 0.0298847817, 0.000101286889, 0.0199705828, 0.00480522, -0.00563571136, -0.000639430305, -0.00355786597, -0.0119629614, 0.00600733235, 0.0270410739, -0.0166615415, -0.00188234064, 0.0221938454, -0.0226333272, -0.0120275905, 0.013585167, -0.0074582696, 0.0114847012, -0.0104829408, 0.00289702718, -0.01704932, 0.000129360429, 0.0283853728, -0.0241844412, -0.0222584754, 0.0125123141, -0.0149940951, -0.0158989113, 0.0115751829, -0.0015503054, 0.0105023291, -0.00462748809, -0.000676188443, 0.0116139604, -0.0126738884, -0.0362443477, -0.0040232, -0.00794299226, 0.0158601329, 0.008382475, -0.00302628661, 0.000676996307, -0.0103924591, -0.024908293, 0.0121827023, -0.00749704754, 0.00729669537, 0.0218189936, -0.0296779666, 0.0115105528, -0.00160443282, 0.00813041907, 0.0168683566, -0.00706402818, -0.002759689, -0.0111098485, -0.0121051464, 0.0288765579, 0.0390105, -0.00525439624, -0.0245205164, -0.0234088842, -0.00139923347, -0.0184453223, 0.0291609298, -0.0320821926, 0.00133379584, 0.00165048148, -0.0124282949, 0.00725791743, -0.0102308849, 0.00129905739, -0.0111809419, -0.014502909, 0.00173369225, -0.027945891, -0.00790421478, -0.0110775344, -0.024481738, -0.00721267657, 0.00672795391, 0.00158262032, 0.0104247741, 0.011432997, 0.014360724, 0.0119047947, -0.00771678844, -0.0482137725, 0.0119952764, 0.0021683271, -0.00869916, 0.000721025339, 0.000165613659, -0.00427202461, 0.0131715368, 0.00211985479, -0.0330645628, -0.00503465533, -0.0172949135, 0.0319012292, -0.000705271843, -0.0215346217, -0.036011681, -0.0363994576, -0.0162608381, -0.0044659134, 0.0117884604, -0.021999957, -0.0216509569, 0.00438835798, 0.0282302611, -0.00414276496, -0.0198930278, 0.0190011375, 0.00225557713, -0.00847941916, -0.0051412941, -0.00252540619, 0.00429141335, -0.00348031032, -0.00351585681, -0.00855697505, -0.0190140642, -0.00017086482, -0.00305213849, -0.00291641615, -0.00367096812, 0.0111098485, -0.000747685088, -0.0141539089, -0.00198736391, 0.0392173156, -0.00401996868, 0.038622722, -0.0125769433, 0.000215095788, -0.00775556639, 0.00375821814, -0.0112197194, -0.00786543731, 0.024339553, -0.00645974046, -0.0231503658, -0.0116592012, 0.0374076813, -0.00614628615, -0.0189494342, 0.0194793977, -0.0016197823, 0.00373236625, 0.0107026817, 0.00830491912, 0.00740656583, 0.00327026378, 0.0163771715, 0.00087250123, 0.0012142309, -0.00113586732, -0.0157050211, 0.011323127, -0.00593624, -0.0237578843, -0.0136497971, 0.0104764774, 0.00214570668, -0.00718682492, -0.00954581, 0.0109418118, 0.0317461193, 0.00653406465, 0.00470181229, 0.0085828267, -0.0264464822, 0.0175405052, 0.000153495581, 0.0170751717, 0.023770811, 0.00693476899, -0.015278466, 0.0134171294, -0.0155757628, 0.00533195166, 0.0056680264, -0.0329094529, -0.0157438, -0.0207849182, -0.0121503873, 0.012984111, -0.0313841924, 0.00539335, 0.0227238089, 0.00924205, 0.0218836237, -0.00885427184, -0.0163513198, 0.0159506146, -0.00506697, -0.0105281817, 0.00307475892, 0.0189365074, -0.0155628361, 0.0136239445, 0.00764569594, 0.00238322094, -0.0168683566, -0.0142185381, 0.0179670621, 0.00313938875, 7.71896e-06, 0.0142056122, -0.00992712472, 0.00976555049, -0.00261265645, -0.0030214393, 0.00113586732, -0.0010389227, 0.00619799, -0.00559047097, -0.0199447311, 0.00305213849, -0.0172432084, -0.00562278554, 0.0133912778, 0.0173078384, -0.00381638505, -0.00868623424, 0.00525439624, 0.0104894033, 0.00449499721, -0.0022006419, -0.037511088, -0.0150587251, 0.0251021832, 0.00835662242, 0.00379053317, 0.00592977693, -0.0175405052, -0.0188072491, -0.0192855075, -0.00582636939, 0.00649528671, -0.0119306464, 0.0308413021, 0.0132167777, -0.0236932561, -0.00802054815, 0.00794945564, 0.0248178132, 0.00388101465, -0.00829845574, 0.0328318961, -0.0183031373, 0.00973323546, -0.00178862747, -0.00153818738, -0.00508959033, -0.00511867367, 0.00628524041, -0.00111324689, 0.01698469, 0.0155628361, 0.0297555234, -0.0127579067, 0.00290510594, 0.0121116098, -0.00600086944, 0.0159247629, -0.00282755028, -0.0306861904, -0.00966214295, -0.0147355758, -0.000923397136, -0.00377437565, 0.0178248771, 0.0016036249, -0.0107802376, 0.00275807339, 0.00669563888, -0.00347707886, 0.0032444119, 0.0127579067, -0.0070898803, -0.014929465, -0.0094682537, -0.000687498657, -0.00152768497, -0.00254479516, -0.0160152446, 0.0226333272, -0.00295680971, 0.0235510692, -0.0051509887, 0.012350739, -0.0207332149, 0.0268601123, 0.0118272388, 0.0176568385, -0.00835016, 0.0101145515, -0.0111550894, 0.00446914509, -0.00465010852, -0.0108060893, 0.0103342924, -0.0259423703, 0.00522208121, 0.0278941877, 0.0096169021, -0.00551614678, 0.0102567365, -0.0171398018, -0.00312161539, 0.00326541648, 0.00232505426, 0.00711573195, 0.0220645871, -0.00259649893, 0.0240810327, -0.0246756263, -0.0153043177, -0.0125123141, 0.00738717709, 0.0122279432, -0.0122344056, -0.0136110187, 0.0070898803, -0.00421708915, -0.00363865332, -0.00891243853, 0.0143219456, -0.00715451, -4.87499965e-05, -0.000721025339, 0.00884780847, -0.0272995941, 0.0158601329, -0.019246731, -0.00193242857, -0.00356432912, -0.0275581125, -0.00666332431, 0.00134187459, 0.0145546133, 0.0153689478, -0.00698001, -0.00753582548, -0.00549675757, -0.0170880985, 0.00170137733, 0.00838893745, -0.0228401423, 0.0131392218, 0.0125058508, 0.0099335881, -0.000351626077, 0.0184323955, -0.00984310638, -0.0138307596, -0.0135076111, -0.0125317024, 0.0159635413, 0.0164547265, -0.00632724958, 0.0243912563, -0.017760247, -0.0079946965, 0.00279038819, 0.0293418933, 0.000521885, 0.0129324067, -0.0212890301, -0.000305173453, -0.00208915561, 0.013869538, -0.0160410963, -0.0240551811, 0.00511221075, -0.0125058508, -0.0071609728, -0.0184582472, 0.00813041907, 0.00265628146, -0.00400381116, 0.00256903144, -0.0346415304, -0.00168683566, -0.0268601123, -0.0288248546, -0.0103859957, -0.00157696521, -0.0082144374, -0.00443036715, -0.0122667206, -0.0010066079, -0.0071738991, -0.0173724685, -0.0112197194, -0.00385193131, -0.000210450526, 0.00481491396, 0.00774910348, -0.00621414743, -0.000572780904, -0.0103989216, -0.00955227297, -0.0363477543, 0.00443359884, 0.00688952813, 0.00254317955, 0.0313841924, -0.00901584607, -0.022568699, -0.00869269762, -0.0217414368, -0.00587807316, 0.0145546133, -0.00594270276, -0.00393271865, 0.000314262026, -0.00813688152, -0.0112908119, -0.00358371786, -0.00133137219, 0.0126221841, 0.00200998434, 0.00333812507, 0.0364511609, 0.025477035, 0.0251926649, -0.00970092136, 0.0202808063, -0.0149940951, -0.00151395123, 6.9363341e-06, -0.0123313507, -0.0100305323, 0.00511867367, -0.0087314751, -0.0115881087, 0.00505081238, 0.00856990088, 0.00546767423, 0.00608488824, 0.00654699048, -0.00624323077, 0.0123119615, -0.0201256946, -0.00565186888, -0.00316685624, 0.00327995839, -0.00584252644, 0.0125898691, 0.004633951, -0.0183548406, -0.0196215827, 0.0256579984, -0.0172302835, 0.0054806, 0.00148406, 0.00968153216, -9.19458762e-05, -0.00346738449, 0.0111744786, 0.0122473314, -0.00586191565, -0.00661808345, -0.00139923347, 0.00604934199, -0.00665039802, 0.0033607455, 0.00368389394, -0.0294711515, -0.0201773979, 0.0032072498, -0.0259423703, -0.00726438034, -0.00546444301, -0.00745180668, -0.00844064169, -0.0139470939, -0.00243977201, -0.0116915163, 0.00509282202, 0.0143736498, -0.00560985971, 0.0165581349, -0.0092485128, 0.0130616659, 0.00397472782, 0.00809810404, -0.0111615527, 0.00187103043, 0.00504111825, 0.0185487289, 0.00837601162, 0.0198283978, -0.00270475377, 0.000208026904, -0.00520592369, -0.0159764662, -0.00520915538, -0.00252863788, -0.00342214364, -0.0365028642, 0.0139470939, -0.00112778856, 0.000431403372, 0.00158504385, 0.0140505014, 0.00509605324, -9.87749172e-06, 0.0167003199, 0.0019017295, 0.0042461725, 0.00691538, -0.00216024835, -0.00890597515, -0.00330257858, 0.0282302611, 0.0195052493, -8.86134058e-06, -0.000360714621, -0.00232666987, -0.0069412319, -0.0134946853, 0.0354429372, 0.00473089563, -0.0277132243, -0.00561632263, -0.00907401275, 0.0223489571, 0.0214441419, 0.016209133, 0.0259552952, 0.0186521374, 0.00997882895, -0.00213439646, -0.00344799552, -0.00330904173, 0.018677989, 1.48951303e-05, 0.00773617765, -0.0174500234, -0.00880256761, 0.0019017295, 0.0102825882, 0.00625615707, -0.0247144047, -0.0090804752, -0.0123248873, -0.00352878263, 0.0201256946, -0.00794299226, -0.0169200599, 0.00181609509, 0.0159506146, 0.00477936771, -0.00364834769, -0.0198283978, 0.00444329344, -0.0192596558, -0.00734193623, -0.021857772, 0.00701232441, 0.00379376463, 0.0113748303, -0.00710926903, 0.0155757628, 0.0166356899, 0.00435281172, 0.0273512974, 0.00236706343, -0.0221679937, -0.00885427184, -0.00645004585, -0.00941008702, 0.0115364054, -0.00198251661, -0.0129453326, -0.008951216, 0.0229823291, -0.0305827837, 0.0150328726, -0.00146709464, -0.0225945506, -0.0138307596, 0.0192855075, 0.00829845574, 0.0236932561, 0.00750351045, -0.000549352611, 0.00516391452, -0.000115525625, -0.019311361, -0.00187749334, 0.0203971397, -0.00119241828, -0.00614305492, -0.00864745677, -0.00676673185, -0.00939069781, -0.016066948, 0.009836643, -0.000905623951, 0.0108901076, 0.0021263177, 0.00580374897, -0.00719975075, -0.0206168797, -0.00405551493, -0.0018274053, 0.00289056427, 0.00276292046, -0.00340921781, 0.00869916, -0.00588130439, 0.00928082783, 0.0218189936, 0.0156016145, 0.00391332945, -0.0169588383, 0.00570034143, 0.0131004443, 0.00378407, 0.00479552522, 0.017126875, 0.0241456628, 0.0129065551, -0.0155499103, -0.0182385072, -0.00761338091, 0.0214441419, -0.031203229, -0.00772325136, -0.022710884, 0.00216671126, 0.00316362479, -0.00997236557, 0.00549998926, -0.0044012838, -0.00743888086, -0.0173595436, 0.00581021188, -0.00301012909, -0.0122473314, 0.0153430952, 0.00305213849, 0.00509605324, 0.00749704754, 0.00059701706, 0.0190269891, -0.00170945609, 0.00385193131, 0.00838893745, -0.0227884389, -0.00986895803, -0.000977524556, 0.0171139501, 0.0166227631, -0.00133702729, -0.00593300816, 0.00288410136, 0.00565510057, 0.0217672903, -0.00245431368, -0.0158084296, 0.0107931634, 0.0262267403, 0.017760247, -0.00677965768, 0.0248953681, 0.00681843562, 0.00684428727, -0.00478583062, -0.0209788065, 0.0262138136, 0.0180833954, 0.00910632778, 0.00237998948, -0.0158859845, -0.00950056873, -0.00765215885, 0.00809164066, 0.00249955431, 0.00137176574, 0.0244429596, 0.0203583613, 0.01698469, -0.00261427206, 0.0105152559, -0.0035481716, -0.0112455711, -0.0108060893, 0.00412337622, 0.00617860118, -0.0149036134, -0.00883488264, 0.0235252175, -0.00346092158, 0.00849880837, 0.0184841, -0.00407490367, 0.0207719915, 0.00294549949, 0.0266791489, 0.0284629278, 0.0240939595, 0.00887366, 0.0046985806, 0.00142104598, -0.0142056122, -0.0101597924, 0.0107673109, -0.00430110795, 0.00707049156, -0.00997236557, 0.00397472782, -0.0312290806, -0.0182514321, 0.0235898476, 0.00845356751, -0.0137532046, 0.0150457984, -0.00184679427, -0.00178378029, 0.0127579067, 0.044155024, 0.00156807853, 0.00615921244, 0.0198413245, -0.0412337594, -0.0148131317, 0.0185487289, 0.0134559078, 0.00511544244, 0.0132620186, 0.00897706766, 0.0126027949, -0.00397472782, -0.00765862176, 0.0179799888, -0.0144899832, -0.0143865757, -0.00990127306, 0.00294711511, -0.000708907261, -0.0231632907, -0.00340598612, 0.0140246488, -0.0137144262, 0.00535780378, -0.0129776476, -0.0203712881, 0.00443359884, 0.00271121669, -0.0214570668, 0.00878317934, 0.0103019774, -0.0101791807, -0.0133395744, -0.00601056404, -0.00556461886, -0.0160798747, 0.0258131102, -0.00205199351, -0.0120922206, 0.00669563888, -0.0213924367, -0.0179541353, 0.0112908119, -0.0504370332, -0.00309414789, -0.0144124273, -0.0144899832, 0.00598794362, 0.0100240698, -0.00305052288, 0.00810456648, -0.00835016, 0.000704463921, 0.0178507287, -0.00701232441, -0.0152396876, 0.0138049079, -0.00463071931, 0.0101791807, 0.000451196218, 0.0195698794, 0.0251280349, 0.00357079203, 0.0211209916, -0.00422678376, -0.00697354693, 0.00396503322, 0.0166356899, 0.00796884485, -0.00816273317, -0.0127579067, 0.00273868442, 0.000117343334, -0.00734839914, -0.018044617, 0.0249341466, 0.00534164626, 0.00833077077, -0.00762630673, 0.00598794362, -0.0085634375, -0.0132620186, -0.0173466168, 0.00479552522, 0.00907401275, 0.0229177, 0.00965568051, 0.0200869162, 0.024766108, 0.0145804649, -0.00231859111, -0.0152267618, -0.00835662242, -0.0254641101, 0.0263818521, 0.0155111328, -0.00477613648, 0.0306086354, -8.59373322e-05, -0.00272414275, 0.0104764774, -0.00763277, 0.00240422552, -0.0104635516, 0.0273254458, -0.0169200599, 0.000381921243, 0.0104312366, 0.00162543741, -0.00193242857, 0.00175146537, -0.00217640586, 0.0140505014, 0.0207590666, -0.00941655, -0.0123636657, -0.0300398935, -0.0297555234, 0.0270669274, 0.00569710974, 0.0184323955, -0.0170234684, 0.0130875185, -0.0314876, -0.00757460296, 0.0223360304, -0.0056033968, 0.0194664709, -0.00617860118, -0.00273060566, 0.00150102528, 0.0245722197, -0.0169588383, -0.010153329, -0.0156403929, -0.00328803691, 0.0143995015, -0.0063401754, 0.0209917333, -0.00536103547, 0.00658576842, 0.00333489361, -0.0191045459, -0.0116850529, -0.0080464, 0.00896414183, 0.00332196755, 0.0213407334, -0.00559693389, -0.0124670733, -0.0127126658, 0.0226462539, -0.00221518357, 0.0346415304, 0.00154303457, 0.00254964246, -0.0226979572, 0.0272220373, 0.0134946853, 0.0248048864, -0.00890597515, -0.00482137688, 0.00619799, -0.0103342924, 0.0242878478, 0.0264594071, 0.00248501264, -0.0198801011, 0.0265240371, -0.00075818738, -0.00235090614, 0.00533841504, 0.00805286318, 0.00748412171, 0.0215734, -0.0101791807, -0.0170880985, -0.00417831121, 0.00844064169, 0.0085828267, 0.00392625527, -0.0290316697, 0.00076061103, 0.0190528408, -0.00723206578, 0.0230857357, -0.0130293518, 0.000422112847, -0.00896414183, -0.00718036201, -0.0174629502, 0.010579885, 0.00225073, 0.0171010233, -0.0130293518, -0.030634487, 0.0104312366, 0.0251926649, -0.000252055906, 0.00414276496, 0.0130228885, -0.0126221841, -0.0123572024, 0.0121503873, 0.0168554317, -0.00645004585, -0.00323310168, 0.0223618839, 0.00926143862, -0.0160410963, 0.00231535966, 0.0111744786, 0.0354429372, 0.0179799888, 0.0146063166, 0.0278683342, 0.0111744786, -0.00367743103, -1.66244808e-05, -0.00950056873, 0.0264594071, 0.0125640174, 0.0146838725, -0.00366773666, -0.00100822363, -0.00902877189, -0.0166227631, -0.00109062647, -0.00107770052, -0.00532872044, -0.0150070209, 0.00275807339, 0.0157825779, -0.0101791807, -0.017902432, 0.0144124273, -0.0199447311, -0.00341568072, -0.00964921713, 0.00586191565, -0.0304793753, -0.0184323955, -0.0111550894, -0.00083937851, 0.00897706766, -0.0268084072, 0.0245334413, -0.00515422, -0.0343571603, -0.00318462937, -0.0187038407, 0.0137402788, 0.00465980265, 0.00346415304, 0.00107689272, -0.0277132243, -0.017902432, -0.013178, -0.0232796259, 0.00933899451, -0.00613659201, 0.0119435722, 0.0233959593, -0.0131973885, 0.0163900964, 0.00356109766, 0.00389070902, 0.0188460257, -0.00927436445, 0.000372428767, -0.0155499103, -0.0032492592, -0.00405551493, -0.0132167777, -0.019531101, 0.00112294138, 0.00298589305, 0.0017530811, 0.0394241288, -0.0294711515, -0.0117044421, 0.022077512, -0.0249987748, 0.0044659134, -0.0144641316, -0.0134171294, -0.00539658172, 0.0215604752, -0.0161962081, -0.0125963325, 0.0120728314, -0.00470504351, 0.0117367571, 0.0157567263, 0.0284112245, -0.0254382584, -0.0115881087, -0.00474058976, -0.000386364554, -0.026032852, -0.0030586014, 0.0133654261, -0.00476321, 0.00368066248, 0.0203583613, 0.0026158879, 0.0284370761, 0.00984956883, -0.0127579067, -0.00807871483, 0.0235898476, 0.010754385, 0.0090804752, 0.00939069781, -0.00794945564, -0.00791714061, -0.00315069873, 0.0148002058, 0.000676592404, -0.000544101465, 0.00141296722, 0.00922912359, 0.0116656646, 0.05079896, 0.00432372838, 0.0140763531, 0.00625615707, -0.00644035172, 0.00764569594, -0.00249309139, 0.0055096834, -0.021935327, -0.0315134525, 0.00576497102, 0.0241715144, 0.00864745677, 0.00111001544, 0.0284112245, -0.00783958472, 0.0122344056, -0.036580421, 0.0117884604, -0.0219611786, 0.00176600704, -0.0141539089, 0.0181868039, -0.00727084326, -0.0100176064, 0.0150457984, -0.0128936293, -0.00654375926, 0.0159635413, -0.00552584091, -0.00137499731, -0.00723852869, -0.0126092583, 0.0288248546, 0.00251086452, 0.00465980265, 0.00619152701, 0.000729104038, -0.00364511623, -0.0227755141, -0.0168942083, -0.00883488264, -0.0116850529, 0.0221679937, 0.00983018056, -0.0165193565, -0.00862160418, -0.0205781031, 0.00443359884, 0.0105669592, 0.0313583389, 0.00766508467, -0.0101016248, 0.0111938678, 0.0052964054, -0.00519299787, 0.00514775701, 0.00928082783, 0.00687013939, -0.00256741559, -0.00945532788, -0.0141797606, 0.0099852914, -0.00453054346, 0.00889304932, -0.011956498, 0.00383254234, -0.00305213849, -0.00707695447, 0.0099335881, -0.0147614283, 0.00909340195, 0.00109870522, 0.0134171294, 0.0194664709, -0.000332035183, -0.0107867, -0.0115751829, -0.00741949165, -0.0111357011, -0.00670210179, 0.0111098485, 0.0171010233, -0.0198671762, 0.02568385, -0.0173853952, 0.0248178132, 0.0155240586, 0.0182643589, 0.0124476841, -0.0210692883, -0.0137402788, -0.00741949165, -0.0115040904, -0.00267243898, -0.0145287607, 0.030350117, 0.00196959078, -0.0262396671, 0.0175792836, 0.00663100928, 0.00178701174, 0.00767154759, -0.00844710413, -0.00743241794, 0.0101597924, 0.00142023806, -0.0017207663, -0.0024236145, 0.00445621926, -0.0217672903, 0.0143219456, 0.0273512974, -0.00293095782, -0.00865391921, -0.0191691741, -0.0086797718, -0.0365545712, 0.013585167, 0.00845356751, 0.0226979572, -0.000483107142, -0.00518653495, -0.0126415733, 0.0117044421, 0.0130034992, 0.00574235059, 0.00743241794, 0.0182902105, 0.00022680992, -0.0120534431, -0.0134171294, -0.0141280564, 0.0147097241, 0.0194664709, 0.0106509775, 0.017126875, 0.00423970958, -0.00740010291, -0.00402643159, -0.00315877749, 0.00632401789, -0.0090804752, 0.00534810917, -0.00554523, -0.00156969437, 0.0199964345, 0.00885427184, -0.0144899832, 7.62428754e-05, -0.00632724958, -0.00155919197, -0.00345122698, 0.00745180668, -0.0316168591, -0.0160023179, 0.00614305492, 0.00254156371, -0.00490862736, -0.0286955964, -0.0107220709, 0.00241715158, 0.0236674026, 0.0139858713, 0.000649932597, -0.00346415304, -0.0131198335, -0.0344347134, 0.00245108223, -0.0182643589, 0.00449499721, 0.0109999785, -0.00984310638, 0.0167778749, -0.0157179479, 0.0129711851, 0.00178216456, -0.000813526625, 0.00571649848, -0.00910632778, -0.0106962183, 0.0210046582, 0.0229564756, -0.0130358143, 0.0154465027, 0.0263301469, -0.00937777199, 0.00289702718, -0.00045806315, 0.00123685121, -0.00876379, -0.00752289919, 0.0146321682, -0.000776768429, -0.015498207, 0.00126512675, -0.00376468129, 0.0230728108, -0.00691538, 0.0179153588, 0.009267902, 0.00911279, -0.0073742508, 0.00149537018, -0.0192079525, 0.00208915561, 0.00157938874, -0.0114200711, 0.00511221075, 0.0109935151, 0.0414147228, -0.00870562345, 0.00836954825, -0.0119629614, -0.0027920038, 0.0396309458, 0.0185875073, -0.00503142364, 0.0141668348, -0.0107285334, 0.00616244366, 0.0196345095, -0.0199059527, -0.0103666075, -0.0126932766, -0.0127902217, 0.0198801011, 0.0245334413, -0.0141280564, 0.0040232, 0.00486015482, 0.0354687907, 0.000432211236, -0.006508213, -0.00474382145, -0.0242232196, 0.0200481396, -0.0264594071, -0.0459388047, -0.000508151192, 0.00595886027, 0.0138824638, 0.0209141765, -0.00576173933, -0.00486338651, -0.018755544, -0.0139600197, 0.00363865332, 0.00785897393, 0.00577143393, -0.017475877, -0.0242102928, -0.0172173567, -0.00191142398, -0.0266015921, 0.00438512629, 0.00406520953, 0.0190140642, -0.00763923302, 0.0101662548, 0.0180833954, 0.00644681463, 0.0207461398, -0.0211985484, 0.0217672903, -0.00203583622, -0.0128225368, -0.0125704808, 0.01698469, -0.00510897953, 0.021935327, -0.0238095894, 0.0116656646, 0.0158859845, 0.0154465027, 0.00222487818, -0.0220128819, -0.000451600179, -0.0118401647, -0.00833077077, -0.00507020159, 0.00922912359, 1.93258e-05, -0.00252055912, 0.0058231377, 0.00537719252, -0.0211339183, 0.0207461398, 0.0073290104, -0.00139357836, 0.00990127306, 0.013178, 0.00964921713, 0.000331025338, -0.0203454364, -0.00793006644, -0.00550645217, -0.00882195681, 0.0035481716, -0.00032335057, 0.011956498, 0.0257872585, -0.0192338042, 0.0196991377, 0.00664393511, -0.0130616659, 0.0205522515, 0.00471796934, 0.0114459237, -0.000670533336, 0.0235898476, -0.00182578957, 0.0136239445, 0.000969445799, 0.00200190558, 0.00786543731, 0.0261362586, 0.0106768301, -0.0156274661, -0.00214732252, -0.0138436863, -0.0017902432, 0.00207138248, -0.00636602752, 0.014011723, 0.00115121691, -0.00895767938, 0.00572619308, 0.00433665421, 0.00319432397, -0.00450146, -0.00781373307, -0.00438512629, -0.00953934621, -0.0207202882, -0.0113360528, -0.00283078174, 0.0200739913, -0.0131909261, 0.0117884604, -0.0250375532, 0.011213256, -0.00877025258, -0.00921619777, 0.000920165621, 0.00105265656, 0.0021634798, 0.0044853026, 0.000314060046, 0.0133266486, -0.0047082752, 0.000120574819, 0.00645650877, 0.0163771715, -0.00190011377, 0.016415948, 0.0414922796, 0.0299881902, -0.00390686654, -0.0079946965, -0.0129582584, -0.00954581, 0.0266015921, 0.00904169772, 0.0163383931, 0.000705271843, -0.00732254703, -0.00669563888, -0.0165064298, 0.00406520953, 0.0105604958, 0.0100499215, 0.000379699602, -0.0107414592, -0.00560662802, -4.93811458e-05, 0.0476191789, 0.00838893745, 0.00425263541, 0.00661162054, 0.00936484616, 0.0154852811, -0.00800115895, -0.00220872066, -0.018535804, 0.00880256761, -0.00414599665, 0.0126738884, 0.00318301376, 0.012984111, -0.0243524779, -0.000124715167, -0.0165710598, -0.0103407549, -0.00186618313, -0.0067925835, -0.00803347398, -0.0172432084, 0.0219224, -0.0126415733, 0.0122150173, -0.00472766394, -0.00951995794, 0.00695415772, 0.00190011377, 0.00816273317, 0.0125317024, -0.00056995335, 0.00250117015, 0.0164547265, -0.00159069896, -0.0510833301, -0.0102890516, 0.0167778749, 0.0281010028, 0.00477936771, -0.0054353592, 0.00215216959, -0.011956498, -0.00564217474, 0.00429464504, -0.0163900964, -0.00253510079, -0.00642096251, -0.0129711851, -0.012208554, 0.00854404923, -0.0146321682, 0.0155369844, 0.022853069, -0.0165581349, -0.0211080667, 0.00461133057, 0.0136756487, -0.00908693857, -0.0172690619, 0.0118724797, 0.0153818736, -0.0278683342, -0.0032864213, -0.00601379527, 0.00752289919, -0.011814313, 0.00101953384, 0.018755544, 0.00654699048, -0.00709634321, -0.0246497747, -0.000214287909, -0.000475432375, -0.001118902, 0.0160023179, 0.00125300873, 0.00308768474, -0.00308930059, 0.0163513198, -0.00741949165, 0.00450469134, -0.00664393511, -0.00996590313, -0.0273254458, 0.00794945564, 0.00133621949, -0.0252702199, 0.009836643, 0.0178378019, -0.012098684, -0.0269893706, -0.0304018203, -0.0143995015, 0.0168683566, -0.0146967983, -0.00208430854, -0.00814980734, 0.00338659738, 0.0114200711, -0.0032945, 0.00756814, -0.0222584754, -0.0125769433, -0.0133137219, 0.0121827023, 0.0131521476, 0.017682692, 3.03709185e-05, -0.00843417831, 0.00999821723, -0.0123895174, 0.005677721, -0.0135722412, 0.0752806962, -0.000115424642, 0.0195698794, -0.0278941877, 0.0102438107, -0.0067085647, 0.00185164146, 0.0284112245, 0.0224523637, -0.0181997288, -8.35010906e-06, 0.000637410616, -0.0117238313, 0.0076780105, -0.0147743542, -0.0193759892, 0.00186295167, -0.0157696512, -0.00589099899, -0.0181480255, 0.0132878702, -0.0138566121, 0.00477290479, -0.0189623591, -0.0023864524, -0.00586191565, 0.00323471753, -0.00986895803, -0.0289024115, 0.00753582548, 0.00808517821, 0.0126415733, 0.000285582588, 0.00389070902, -0.0230469573, 0.0230986625, -0.02094003, 0.0108577926, 0.0225169938, 0.00461779349, -0.00902877189, -0.00475997897, 0.00620122161, 0.0195181761, 0.00289702718, 0.000261750363, 0.0172949135, -0.00541273924, 0.0083630858, 0.0239259228, -0.00138549961, -0.0195698794, 0.0216638818, -0.0104053849, 0.0216121785, 0.0153172435, 0.00184841, -0.0163771715, 0.00692184316, 0.018820174, 0.0210305117, -0.00478583062, -0.000126532876, -0.00124412205, -0.00426233, -0.0073742508, 0.00768447388, -0.0143090198, -0.0172302835, 0.00659223134, 0.0209529549, 0.00797530729, -0.0155111328, -0.0167390965, 0.0247790348, 0.0223489571, -0.0150975026, 0.0136497971, -0.00238968385, -0.00741302874, 0.00325733796, 0.000703656056, -0.0168037266, -0.0142443907, 0.0166356899, -0.00557108177, -0.0265240371, -0.00521885, -0.0288507063, 0.0251409616, 0.00786543731, -0.00370974583, 0.00376468129, 0.0191950276, -0.000705271843, 0.0248048864, -0.0193242859, 0.0032541065, 0.018393619, 0.0310222656, 0.00311030517, 0.0017579284, -0.00390686654, -0.00284693926, -0.0114459237, 0.011387757, -0.01704932, -0.0182643589, -0.00109789742, 0.000647105044, 0.00978494, 0.00644358294, 0.0116656646, 0.0165193565, 0.00755521422, -0.00604934199, 0.0192596558, 0.000215095788, 0.0174888019, -0.0106768301, -0.00491185859, 0.013585167, -0.0316168591, -0.0284112245, 0.00832430832, 0.00288571697, 0.00943593867, 0.00316685624, 0.017618062, -0.0204100646, -0.00301497639, -0.0131004443, 0.00439158967, -0.0141151305, -0.00475997897, 0.0273771491, -0.0337367132, -0.0129000917, -0.0161703564, 0.00593624, -0.0114394603, 0.00503788656, 0.0167390965, -0.00162705325, -0.00802054815, -0.0064241942, -0.0158989113, -0.0143219456, 0.0049183215, 0.000793329789, 0.00103165186, -0.000716582, -0.00539335, -0.00311192102, 0.00934545789, -0.00486984942, 0.0132878702, -0.00435604295, 0.00109062647, -0.00178701174, -0.0319012292, 0.0123119615, 0.0155886887, -0.0129130175, 0.00710926903, -0.00242523034, 0.0147485016, 0.0134688336, 0.0204100646, 0.0115687195, 0.00446268218, -0.00822090078, 0.014438279, 0.00813041907, -0.0186392106, 0.00810456648, 0.000832915539, 0.000735567, -0.00229273923, -0.00735486206, -0.00297619868, 0.00748412171, -0.00639511086, 0.0346415304, 0.00437220046, -0.00189041928, 0.00557108177, -0.0196862128, 0.00497002527, 0.0102696624, 0.00648236088, -0.0272995941, 0.00473735854, -0.0014598238, -0.00510251615, 0.00379699608, 0.0167520232, -0.0120857572, 0.0155886887, -0.0125058508, 0.00521238707, -0.00569064682, -0.00584899, 0.00662454637, -0.00120130496, 0.0137144262, -0.0237578843, 0.00944886543, 0.00405551493, -0.000878156337, 0.00518976664] |
18 Dec, 2024 | Loss Functions in Deep Learning
18 Dec, 2024
Deep learning has revolutionized fields ranging from computer vision to natural language processing, largely due to the sophisticated architectures and algorithms that power these technologies. At the heart of most deep learning models is the concept of the loss function. This article aims to demystify loss functions, exploring their types, roles, and significance in training deep learning models.Table of ContentWhat is a Loss Function?How Loss Functions Work?Types of Loss FunctionsHow to Choose the Right Loss Function?What is a Loss Function?A loss function is a mathematical function that measures how well a model's predictions match the true outcomes. It provides a quantitative metric for the accuracy of the model's predictions, which can be used to guide the model's training process. The goal of a loss function is to guide optimization algorithms in adjusting model parameters to reduce this loss over time.Why are Loss Functions Important?Loss functions are crucial because they:Guide Model Training: The loss function is the basis for the optimization process. During training, algorithms such as Gradient Descent use the loss function to adjust the model's parameters, aiming to reduce the error and improve the model’s predictions.Measure Performance: By quantifying the difference between predicted and actual values, the loss function provides a benchmark for evaluating the model's performance. Lower loss values generally indicate better performance.Influence Learning Dynamics: The choice of loss function affects the learning dynamics, including how fast the model learns and what kind of errors are penalized more heavily. Different loss functions can lead to different learning behaviors and results.How Loss Functions Work?Prediction vs. True Value:The model produces a prediction based on its current parameters.The loss function computes the error between the prediction and the actual value.Error Measurement:The error is quantified by the loss function as a real number representing the "cost" or "penalty" for incorrect predictions.This error can then be used to adjust the model's parameters in a way that reduces the error in future predictions.Optimization:Gradient Descent: Most models use gradient descent or its variants to minimize the loss function. The algorithm calculates the gradient of the loss function with respect to the model parameters and updates the parameters in the opposite direction of the gradient.Objective Function: The loss function is a key component of the objective function that algorithms aim to minimize.Types of Loss FunctionsLoss functions come in various forms, each suited to different types of problems. Here are some common categories and examples:1. Regression Loss FunctionsIn machine learning, loss functions are critical components used to evaluate how well a model's predictions match the actual data. For regression tasks, where the goal is to predict a continuous value, several loss functions are commonly used. Each has its own characteristics and is suitable for different scenarios. Here, we will discuss four popular regression loss functions: Mean Squared Error (MSE) Loss, Mean Absolute Error (MAE) Loss, Huber Loss, and Log-Cosh Loss.1. Mean Squared Error (MSE) LossThe Mean Squared Error (MSE) Loss is one of the most widely used loss functions for regression tasks. It calculates the average of the squared differences between the predicted values and the actual values.\text{MSE} =\frac{1}{n}\sum_{i=1}^{n}(y_i−\widehat{y}_i)^2Advantages:Simple to compute and understand.Differentiable, making it suitable for gradient-based optimization algorithms.Disadvantages:Sensitive to outliers because the errors are squared, which can disproportionately affect the loss.2. Mean Absolute Error (MAE) LossThe Mean Absolute Error (MAE) Loss is another commonly used loss function for regression. It calculates the average of the absolute differences between the predicted values and the actual values.\text{MAE}= \frac{1}{n}\sum_{i=1}^{n} ∣y_i − \widehat{y_i}∣Advantages:Less sensitive to outliers compared to MSE.Simple to compute and interpret.Disadvantages:Not differentiable at zero, which can pose issues for some optimization algorithms.3. Huber LossHuber Loss combines the advantages of MSE and MAE. It is less sensitive to outliers than MSE and differentiable everywhere, unlike MAE. Huber Loss is defined as:\begin{cases}\frac{1}{2} (y_i - \hat{y}_i)^2 & \quad \text{for } |y_i - \hat{y}_i| \leq \delta \\\delta |y_i - \hat{y}_i| - \frac{1}{2} \delta^2 & \quad \text{for } |y_i - \hat{y}_i| > \delta\end{cases}Advantages: Robust to outliers, providing a balance between MSE and MAE. Differentiable, facilitating gradient-based optimization. Disadvantages: Requires tuning of the parameter \delta.4. Log-Cosh Loss Log-Cosh Loss is another smooth loss function for regression, defined as the logarithm of the hyperbolic cosine of the prediction error. It is given by: \text{Log-Cosh} = \sum_{i=1}^{n} \log (\cosh (\hat{y}_i - y_i)) where \cosh(x) = \frac{e^x + e^{-x}}{2}Advantages:Combines the benefits of MSE and MAE. Smooth and differentiable everywhere, making it suitable for gradient-based optimization. Disadvantages:More complex to compute compared to MSE and MAE.2. Classification Loss FunctionsClassification loss functions are essential for evaluating how well a classification model's predictions match the actual class labels. Different loss functions cater to various classification tasks, including binary, multiclass, and imbalanced datasets. Here, we will discuss several widely used classification loss functions: Binary Cross-Entropy Loss (Log Loss), Categorical Cross-Entropy Loss, Sparse Categorical Cross-Entropy Loss, Kullback-Leibler Divergence Loss (KL Divergence), Hinge Loss, Squared Hinge Loss, and Focal Loss.1. Binary Cross-Entropy Loss (Log Loss)Binary Cross-Entropy Loss, also known as Log Loss, is used for binary classification problems. It measures the performance of a classification model whose output is a probability value between 0 and 1.\text{Binary Cross-Entropy} = - \frac{1}{n} \sum_{i=1}^{n} [y_i \log(\hat{y}_i) + (1 - y_i) \log(1 - \hat{y}_i)]where n is the number of data points, y_i is the actual binary label (0 or 1), and \hat{y}_i is the predicted probability.Advantages:Suitable for binary classification.Differentiable, making it useful for gradient-based optimization.Disadvantages:Can be sensitive to imbalanced datasets.2. Categorical Cross-Entropy LossCategorical Cross-Entropy Loss is used for multiclass classification problems. It measures the performance of a classification model whose output is a probability distribution over multiple classes.\text{Categorical Cross-Entropy} = - \sum_{i=1}^{n} \sum_{j=1}^{k} y_{ij} \log(\hat{y}_{ij})where n is the number of data points, k is the number of classes, y_{ij} is the binary indicator (0 or 1) if class label j is the correct classification for data point i, and \hat{y}_{ij} is the predicted probability for class j.Advantages:Suitable for multiclass classification.Differentiable and widely used in neural networks.Disadvantages:Not suitable for sparse targets.3. Sparse Categorical Cross-Entropy LossSparse Categorical Cross-Entropy Loss is similar to Categorical Cross-Entropy Loss but is used when the target labels are integers instead of one-hot encoded vectors.\text{Sparse Categorical Cross-Entropy} = - \sum_{i=1}^{n} \log(\hat{y}_{i, y_i})where y_i is the integer representing the correct class for data point iii.Advantages:Efficient for large datasets with many classes.Reduces memory usage by using integer labels instead of one-hot encoded vectors.Disadvantages:Requires integer labels.4. Kullback-Leibler Divergence Loss (KL Divergence)KL Divergence measures how one probability distribution diverges from a second, expected probability distribution. It is often used in probabilistic models.\text{KL Divergence} = \sum_{i=1}^{n} \sum_{j=1}^{k} y_{ij} \log\left(\frac{y_{ij}}{\hat{y}_{ij}}\right)Advantages:Useful for measuring divergence between distributions.Applicable in various probabilistic modeling tasks.Disadvantages:Sensitive to small differences in probability distributions.5. Hinge LossHinge Loss is used for training classifiers, especially for support vector machines (SVMs). It is suitable for binary classification tasks.\text{Hinge Loss} = \frac{1}{n} \sum_{i=1}^{n} \max(0, 1 - y_i \cdot \hat{y}_i)where y_i is the actual label (-1 or 1), and \hat{y}_i is the predicted value.Advantages:Effective for SVMs.Encourages correct classification with a margin.Disadvantages:Not differentiable at zero, posing challenges for some optimization methods.6. Squared Hinge LossSquared Hinge Loss is a variation of Hinge Loss that squares the hinge loss term, making it more sensitive to misclassifications.\text{Squared Hinge Loss} = \frac{1}{n} \sum_{i=1}^{n} \max(0, 1 - y_i \cdot \hat{y}_i)^2Advantages:Penalizes misclassifications more heavily.Encourages larger margins.Disadvantages:Similar challenges as Hinge Loss regarding differentiability at zero.7. Focal LossFocal Loss is designed to address class imbalance by focusing more on hard-to-classify examples. It introduces a modulating factor to the standard cross-entropy loss.\text{Focal Loss} = - \frac{1}{n} \sum_{i=1}^{n} (1 - \hat{y}_i)^\gamma \log(\hat{y}_i)where γ\gammaγ is a focusing parameter.Advantages:Effective for addressing class imbalance.Focuses on hard-to-classify examples.Disadvantages:Requires tuning of the focusing parameter γ\gammaγ.3. Ranking Loss FunctionsRanking loss functions are used to evaluate models that predict the relative order of items. These are commonly used in tasks such as recommendation systems and information retrieval.1. Contrastive LossContrastive Loss is used to learn embeddings such that similar items are closer in the embedding space, while dissimilar items are farther apart. It is often used in Siamese networks.\text{Contrastive Loss} = \frac{1}{2N} \sum_{i=1}^{N} \left( y_i \cdot d_i^2 + (1 - y_i) \cdot \max(0, m - d_i)^2 \right)where d_i is the distance between a pair of embeddings, y_i is 1 for similar pairs and 0 for dissimilar pairs, and mmm is a margin.2. Triplet LossTriplet Loss is used to learn embeddings by comparing the relative distances between triplets: an anchor, a positive example, and a negative example.\text{Triplet Loss} = \frac{1}{N} \sum_{i=1}^{N} \left[ \|f(x_i^a) - f(x_i^p)\|_2^2 - \|f(x_i^a) - f(x_i^n)\|_2^2 + \alpha \right]_+where f(x) is the embedding function, x_i^a is the anchor, x_i^p is the positive example,x_i^n is the negative example, and \alpha is a margin.3. Margin Ranking LossMargin Ranking Loss measures the relative distances between pairs of items and ensures that the correct ordering is maintained with a specified margin.\text{Margin Ranking Loss} = \frac{1}{N} \sum_{i=1}^{N} \max(0, -y_i \cdot (s_i^+ - s_i^-) + \text{margin})where s_i^+ and s_i^- are the scores for the positive and negative samples, respectively, and y_i is the label indicating the correct ordering.4. Image and Reconstruction Loss FunctionsThese loss functions are used to evaluate models that generate or reconstruct images, ensuring that the output is as close as possible to the target images.1. Pixel-wise Cross-Entropy LossPixel-wise Cross-Entropy Loss is used for image segmentation tasks, where each pixel is classified independently.\text{Pixel-wise Cross-Entropy} = - \frac{1}{N} \sum_{i=1}^{N} \sum_{c=1}^{C} y_{i,c} \log(\hat{y}_{i,c})where N is the number of pixels, C is the number of classes, y_{i,c} is the binary indicator for the correct class of pixel i, and\hat{y}_{i,c} is the predicted probability for class c.2. Dice LossDice Loss is used for image segmentation tasks and is particularly effective for imbalanced datasets. It measures the overlap between the predicted segmentation and the ground truth.\text{Dice Loss} = 1 - \frac{2 \sum_{i=1}^{N} y_i \hat{y}_i}{\sum_{i=1}^{N} y_i + \sum_{i=1}^{N} \hat{y}_i}where y_i is the ground truth label and \hat{y}_i is the predicted label.3. Jaccard Loss (Intersection over Union, IoU)Jaccard Loss, also known as IoU Loss, measures the intersection over union of the predicted segmentation and the ground truth.\text{Jaccard Loss} = 1 - \frac{\sum_{i=1}^{N} y_i \hat{y}_i}{\sum_{i=1}^{N} y_i + \sum_{i=1}^{N} \hat{y}_i - \sum_{i=1}^{N} y_i \hat{y}_i}4. Perceptual LossPerceptual Loss measures the difference between high-level features of images rather than pixel-wise differences. It is often used in image generation tasks.\text{Perceptual Loss} = \sum_{i=1}^{N} \| \phi_j(y_i) - \phi_j(\hat{y}_i) \|_2^2where \phi_j is a layer in a pre-trained network, and y_i and \hat{y}_i are the ground truth and predicted images, respectively.5. Total Variation LossTotal Variation Loss encourages spatial smoothness in images by penalizing differences between adjacent pixels.\text{Total Variation Loss} = \sum_{i,j} \left( (y_{i,j+1} - y_{i,j})^2 + (y_{i+1,j} - y_{i,j})^2 \right)5. Adversarial Loss FunctionsAdversarial loss functions are used in generative adversarial networks (GANs) to train the generator and discriminator networks.1. Adversarial Loss (GAN Loss)The standard GAN loss function involves a minimax game between the generator and the discriminator.\min_G \max_D \mathbb{E}_{x \sim p_{data}(x)} [\log D(x)] + \mathbb{E}_{z \sim p_z(z)} [\log (1 - D(G(z)))]2. Least Squares GAN LossLeast Squares GAN Loss aims to provide more stable training by minimizing the Pearson χ2\chi^2χ2 divergence.\min_D \frac{1}{2} \mathbb{E}_{x \sim p_{data}(x)} [(D(x) - 1)^2] + \frac{1}{2} \mathbb{E}_{z \sim p_z(z)} [D(G(z))^2]\min_G \frac{1}{2} \mathbb{E}_{z \sim p_z(z)} [(D(G(z)) - 1)^2]minG21Ez∼pz(z)[(D(G(z))−1)2]6. Specialized Loss FunctionsSpecialized loss functions cater to specific tasks such as sequence prediction, count data, and cosine similarity.1. CTC Loss (Connectionist Temporal Classification)CTC Loss is used for sequence prediction tasks where the alignment between input and output sequences is unknown.\text{CTC Loss} = - \log(p(y | x))where p(y∣x) is the probability of the correct output sequence given the input sequence.2. Poisson LossPoisson Loss is used for count data, modeling the distribution of the predicted values as a Poisson distribution.\text{Poisson Loss} = \sum_{i=1}^{N} (\hat{y}_i - y_i \log(\hat{y}_i))3. Cosine Proximity LossCosine Proximity Loss measures the cosine similarity between the predicted and target vectors, encouraging them to point in the same direction.\text{Cosine Proximity Loss} = - \frac{1}{N} \sum_{i=1}^{N} \frac{y_i \cdot \hat{y}_i}{\|y_i\| \|\hat{y}_i\|}4. Log LossLog Loss, or logistic loss, is used for binary classification tasks. It measures the performance of a classification model whose output is a probability value between 0 and 1.\text{Log Loss} = - \frac{1}{N} \sum_{i=1}^{N} [y_i \log(\hat{y}_i) + (1 - y_i) \log(1 - \hat{y}_i)]5. Earth Mover's Distance (Wasserstein Loss)Earth Mover's Distance measures the distance between two probability distributions and is often used in Wasserstein GANs.\text{Wasserstein Loss} = \mathbb{E}_{x \sim p_r} [D(x)] - \mathbb{E}_{z \sim p_z} [D(G(z))]How to Choose the Right Loss Function?Choosing the right loss function is crucial for the success of your deep learning model. Here are some guidelines to help you make the right choice:1. Understand the Task at HandRegression Tasks: If your task is to predict continuous values, you generally use loss functions like Mean Squared Error (MSE) or Mean Absolute Error (MAE).Classification Tasks: If your task involves predicting discrete labels, you typically use loss functions like Binary Cross-Entropy for binary classification or Categorical Cross-Entropy for multi-class classification.Ranking Tasks: If your task involves ranking items (e.g., recommendation systems), loss functions like Contrastive Loss or Triplet Loss are appropriate.Segmentation Tasks: For image segmentation, Dice Loss or Jaccard Loss are often used to handle class imbalances.2. Consider the Output TypeContinuous Outputs: Use regression loss functions (e.g., MSE, MAE).Discrete Outputs: Use classification loss functions (e.g., Cross-Entropy, Focal Loss).Sequence Outputs: For tasks like speech recognition or handwriting recognition, use CTC Loss.3. Handle Imbalanced DataIf your dataset is imbalanced (e.g., rare events), consider loss functions that focus on difficult examples, like Focal Loss for classification tasks.4. Robustness to OutliersIf your data contains outliers, consider using loss functions that are robust to them, such as Huber Loss for regression tasks.5. Performance and ConvergenceChoose loss functions that help your model converge faster and perform better. For example, using Hinge Loss for SVMs can sometimes lead to better performance than Cross-Entropy for classification.ConclusionLoss functions are fundamental to the training and evaluation of deep learning models. They serve as the metric for error measurement and the foundation for optimization algorithms. Understanding the different types of loss functions and their applications is crucial for designing effective deep learning models and achieving high performance on your tasks. | NLP/Natural Language Processing (NLP) Tutorial/AI ML DS - Projects/30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated]/Does Artificial Intelligence Require Coding?/Artificial Intelligence – Boon or Bane/Artificial Intelligence Examples/Agents in Artificial Intelligence/What are Diffusion Models?/ML | Common Loss Functions/Loss Functions in Deep Learning | https://www.geeksforgeeks.org/loss-functions-in-deep-learning/?ref=ml_lbp | NLP | Loss Functions in Deep Learning | Artificial Intelligence – Boon or Bane, Natural Language Processing (NLP) Tutorial, ML | Common Loss Functions, AI ML DS - Projects, Artificial Intelligence Examples, NLP, Loss Functions in Deep Learning, Agents in Artificial Intelligence, What are Diffusion Models?, 30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated], Does Artificial Intelligence Require Coding? | GeeksforGeeks | [0.00311059714, -0.00328082871, -0.0139486808, -0.00340463361, 0.0192585327, 0.00247609708, 0.0117201935, -0.00159828633, -0.018832095, 0.0222436059, 0.01493912, -0.0197124854, 0.00208748737, -0.0223261435, -0.00247781677, -0.00823990069, 0.0275534596, -0.0133090224, 0.0373615548, -0.0283925813, -0.0186119974, -0.0324093625, -0.0160946324, -0.00472178, -0.0175940469, 0.0214319974, 0.0262741428, 0.0158057529, -0.0412132628, 0.0208129715, 0.0566751137, 0.00173584733, -0.0109085841, -0.0060079745, -0.0473759919, -0.0674598888, 0.0395625308, 0.0163697544, -0.024513362, 0.0390397981, 0.0428639948, 0.000281570072, 0.000195379544, 0.0283925813, -0.00933351088, -0.0161221437, -0.0154480953, -0.00440882845, 0.0100075593, -0.0389297493, -0.0209092647, -0.0407180414, 0.0266318, -0.00469082873, 0.0325469226, 0.00852877926, 0.0472109206, -0.0338675082, 0.00669577951, 0.00699153543, -0.00461860886, 0.00316390186, -0.0435793102, -0.0166173633, 0.00923721772, -0.0352706276, 0.0185019486, 0.0139693152, 0.026164094, -0.0446522869, -0.0596464314, 0.0216108263, 0.000251693564, 0.00290081673, -0.0433317, -0.000201182891, -0.0129582416, 0.0519705266, -0.00461173104, 0.0242107287, 0.0196024366, 0.0289153121, 0.00611458439, 0.00154068263, 0.050677456, 0.0286401901, 0.000737240713, -0.0288878, 0.0500171632, -0.0184469242, -0.017525265, 0.0454501398, 0.0109979985, 0.0159158017, -0.00395487761, 0.0249673128, 0.024582142, 0.00904463232, -0.0116995592, 0.012703754, -0.00366256037, 0.0499621369, -0.011018632, -0.0252837036, 0.027264582, -0.055602137, 0.00962238852, 0.0209092647, 0.0194098502, 0.0549968705, -0.00613865769, -0.00616273051, -0.0413508229, -0.0206341427, -0.0117477058, -0.034115117, -0.0249673128, -0.0398651659, 0.0412957966, -0.006214316, 0.023687996, 0.0585459433, 0.0360409692, 0.0380218476, -0.0819863304, 0.0774193, -0.0174152162, 0.0184331685, -0.000879960251, 0.00579819409, 0.0268381424, 0.0245408751, 0.013047656, 0.0351880938, 0.0179792158, 0.00378292613, 0.0112662418, 0.00918219332, -0.017181363, 0.00704999873, 0.00890707131, -0.0536487736, -0.00689868163, 0.00643785251, -0.0100075593, -0.00904463232, 0.00635875529, 0.0229176544, -0.00420936523, 0.0117545836, -0.0310612638, 0.0211843867, 0.0109498519, -0.00254659727, 0.038351994, -0.00595982838, -0.03780175, 0.0156269241, 0.00771029154, -0.00236432883, 0.037251506, -0.00754521834, -0.0251186304, 0.0187770706, 0.0291904341, 0.0454501398, 0.0370038971, -0.00775843766, -0.0738977417, 0.0438819453, -0.00454982836, -0.00763463276, -0.017800387, 0.0453676023, -0.00130854861, -0.00299023115, 0.0425613597, 0.0557947233, -0.0208817534, 0.030263409, 0.00797165744, -0.00322580431, 0.0103514614, -0.00175648148, -0.0248435084, -0.0312538482, 0.0267280936, -0.0124355098, 0.0279386304, 0.00417497475, 0.00112799986, 0.0187908262, 0.0379393101, 0.000658573059, 0.00191725581, -0.0393149219, -0.0396725796, 0.013013266, -0.0114588272, 0.0174702406, 0.0202214606, -0.0603617467, 0.00815048628, 0.0406079926, 0.00515509676, 0.00037463865, 0.0406630188, -0.0259302408, 0.00213219482, -0.00900336448, -0.0466331616, 0.011568876, -0.0124079976, -0.0126762418, -0.0173601918, -0.00264460943, 0.00481807254, 0.0263841916, -0.0098080961, -0.00923034, 0.00259474339, 0.0159433149, 0.0415158942, -0.0163284857, -0.0316665322, -0.0153793143, -0.00189834111, -0.0201114118, -0.00872136466, -0.021101851, 0.018900875, -0.0130201438, 0.0160808749, -0.0370864347, 0.00055583223, 0.0154756075, -0.019657461, -0.0176353138, -0.0326019451, 0.0255588256, -0.00916843768, -0.0242795087, 0.013322778, -0.00977370609, -0.0344177522, 0.00262913364, -0.0118990224, 0.00568470638, -0.0141550219, 0.00112885959, -0.0181580465, -0.0124217542, 0.0060217306, 0.0225599967, -0.04055297, 0.0110599007, 0.0261916053, -0.0169475097, 0.00491780415, -0.0239493623, 0.0245408751, 0.0289703365, -0.0200838987, 0.0329871178, 0.0251461416, -0.0169612654, 0.0574454553, 0.00241247518, 0.0187770706, 0.00685741333, 0.0452300422, 0.00551619427, -0.0253937524, -0.0184469242, -0.0288327765, -0.0207579471, 0.0300708245, -0.0126074618, 0.0149941444, 0.0196437035, 0.0062968526, -0.0119402912, 0.0359859467, 0.0240456555, 0.0157094616, -0.0430565774, 0.00116410956, -0.0318040922, -0.061077062, -0.017869167, -0.0108191688, 0.00686773052, 0.0085975593, 0.0139211686, 0.0289428253, 0.00463236496, -0.0232615564, -0.0331246778, 0.0268931668, -0.0259990208, 0.0117201935, -0.00259990199, 0.00656165741, -0.0101313647, -0.0341701396, -0.0119402912, 0.0670196936, 0.026439216, -0.0173189249, -0.0258064345, -0.00303493859, 0.00638626749, 0.00729760854, -0.0406079926, -0.0272508245, 0.0439094566, 0.0405804813, 0.0216245819, 0.00185535336, -0.0218309239, 0.0204140451, -0.00371758477, -0.0506224297, 0.025957752, -0.0172226317, -0.0241006799, -0.0291629229, 0.0175115094, 0.00221645087, -0.0221748259, -0.0179517046, -0.0198500454, -0.0263566785, 0.00590824289, 0.0168237053, 0.00885892566, -0.0189971682, 0.0148978513, -0.0333172642, -0.0363986269, -0.0190109238, -0.0260540452, -0.0503198, -0.0107022421, -0.000808600511, -0.0236329716, -0.0401127748, -0.012291071, 0.00207201182, 0.0361785293, 0.00130424974, 0.0171951186, 0.0106403399, 0.0221748259, -0.00136185344, -0.00731136464, 0.00414402364, 0.0277735572, -0.0162597056, 0.0262191184, 0.00393424323, 0.0314189233, -0.053951405, -0.00742829172, -0.0351880938, -0.021101851, -0.0113694128, -0.0159433149, 0.0210055579, 0.00181408506, -0.00993877929, 0.011156193, 0.0206341427, 0.0158057529, -0.0150354123, 0.0114175593, 0.0204690695, -0.0338675082, -0.0764838904, 0.0346103348, -0.0144163882, 0.0279523861, 0.0153242899, 0.0400852636, 0.00808858406, -0.00409931643, -0.0322718, -0.0116926813, 0.0366737507, 0.0116376569, 0.00103600591, -0.020345265, 0.0114450715, -0.0333722867, 0.0272233132, 0.00999380369, -0.0117820958, 0.0224774592, -0.025407508, 0.000737240713, -0.00531329168, 0.0222298503, 0.0329045802, 0.0293279961, -0.0641034, 0.0267693624, 0.0106197055, -0.0264254585, -0.00293864589, 0.0265217517, 0.0238530692, 0.000268888689, -0.0382694565, -0.00511726737, 0.00970492512, 0.0205103382, -0.0331246778, 0.00824677944, -0.0063106087, 0.0101107303, -0.0286677033, -0.00938165747, 0.0476511158, 0.0014211766, 0.0141962906, 0.0015424022, 0.00878326688, 0.00399614591, 0.0289978497, -0.0298507269, 0.0208817534, 0.0370589197, 0.0271132644, 0.0136598032, 0.00555058429, -0.0473484807, 0.00506568234, 0.0194373634, 0.00247609708, 0.00522387726, 0.0393699445, 0.0143200951, 0.00246406067, 0.0485865287, -0.0230001919, -0.0211293623, -0.0190797038, -0.0226700455, -0.0194786303, -0.00472178, -0.0545841865, 0.00348373107, -0.0326569714, -0.00276153604, 0.0359309204, 0.00392736541, 0.0691106245, -0.0213494599, 0.0430290662, -0.0570052601, 0.00749707222, 0.0341976546, 0.0156681929, -0.0238943379, 0.0149941444, 0.011431315, -0.020826729, 0.000495649292, -0.0195611678, -0.00322064594, -0.0141275097, -0.0270719957, 0.0451750159, 0.0105302911, 0.0234678984, 0.0239080936, -0.034665361, -0.0138317542, -0.025338728, -0.0230414607, 0.0497970656, 0.013322778, 0.0144026317, -0.0434967726, 0.0209918022, 0.00187254848, 0.0602516979, 0.0299882889, 0.0253524836, -0.0298782401, -0.0327945314, 0.0163972657, -0.0494394079, -0.0132815102, -8.43635571e-05, -0.0350230187, -0.0091478033, -0.0499896519, 0.0173326805, 0.00594263338, 0.00777219376, -0.0099181449, -0.0211568754, 0.0343352146, 0.0242519956, -0.030400971, 0.0113694128, -0.011981559, 0.00649631582, -0.0161496568, 0.00829492509, -0.0254212637, -0.0108329253, 0.0161359, 3.04138666e-05, -0.00417497475, 0.0209505334, 0.0204140451, 0.0296581425, 0.00704312092, 0.00962238852, 0.0196024366, 0.0175802894, 0.0340600908, -0.011018632, 0.00649287691, 0.0274158977, -0.0115413638, 0.0167411678, -0.0167686809, 0.00251392648, 0.0174702406, -0.0220785327, -0.0183919, 0.00430909684, -0.0258614589, -0.026164094, 0.0411857478, -0.00316562154, 0.00457734056, -0.0313914083, 0.0248022396, -0.00495219417, -0.0109979985, -0.00049135054, 0.00269103609, 0.0151592167, -0.0252974592, 0.0198225342, 0.0349679962, -0.0109017054, 0.00423343852, 0.02430702, 0.00589104788, -0.025957752, 0.00497282855, -0.0181030221, -0.0161359, -0.00197743881, 0.0135428756, -0.0233165808, -0.0184469242, 0.00489029195, 0.0326294601, 0.0162597056, -0.0570052601, 0.0129719982, -0.00361097511, -0.0121466322, 0.0168099478, -0.0173877049, -0.00340807275, -0.00390673103, -0.0205791183, 0.0324093625, 0.0270719957, 0.00219409727, 0.00925097428, 0.00793726742, 0.0172226317, -0.00428502355, 0.000388179818, -0.00148565834, 0.0272783376, 0.00523763336, -0.0352981426, -0.000833533413, 0.00662356, 0.00714629143, 0.00937477872, -0.00099645718, 0.0384345315, -0.00680582831, -0.0337574594, -0.0222160947, -0.000802152324, 0.0182268266, -0.00459453603, 0.00425751135, -0.0234541427, 0.00826741289, -0.00727009634, 0.0393424332, 0.0291904341, 0.0152004855, -0.0200976562, 0.0154618509, 0.0240043867, -0.0102826813, 0.0112043396, 0.0133778024, 0.00101451203, 0.00498658465, -0.0140724853, 0.00980121829, -0.0145814614, -0.0390122868, 4.41699631e-05, -0.00233681663, 0.0146915102, 0.015764486, 0.0432491638, 0.0315839946, -0.00490748696, 0.0145126805, 0.0292179473, 0.00479056034, -0.0183643866, 0.00261881668, -0.0403603837, 0.000126706538, -0.00436756, 0.00570534077, -0.0205791183, 0.00312779215, 0.0252424348, 0.00509663345, 0.00302978, -0.00122343272, -0.0249673128, 0.0182543378, 0.0258064345, 0.011947169, 0.0986036882, -0.0101657547, 0.0323543362, -0.0204553138, 0.0183231197, 0.0193960946, -0.0104615102, 0.0128550716, 0.0286126789, 0.0189421438, 0.0426438972, -0.00462892605, -0.0320517, 0.0467432104, 0.00818487722, -0.00318797515, -0.00733887684, 0.0371414572, -0.00712565752, 0.00808858406, -0.00117700594, 0.00457734056, -0.0177591201, 0.0163009726, -0.00400646264, 0.0088726813, 0.00214079232, -0.00200495101, -0.0448448695, -0.00142289617, 0.0423962846, -0.00505192624, -0.0184606798, 0.0222298503, 0.0367562883, 0.0322993137, -0.0098080961, -0.0367287733, -0.0168787297, 0.0352981426, 0.0188045818, -0.0556571633, -0.00269103609, 0.00753834, 0.00836370606, -0.0361235067, -0.0184469242, -0.000914780365, -0.0165210702, 0.0207029227, -0.0184056554, 0.0223674104, -0.000691243797, -0.0093679009, -0.0160258505, 0.00449136505, -0.00890707131, 0.00907902326, -0.0166036077, -0.0150766801, 0.0178141426, 0.000747557788, -0.0219272152, -0.00755209615, 0.0209642891, -0.0325469226, -0.00195164606, 0.00637251139, 0.0115619982, 0.00930599868, 0.0152555099, 0.00391704822, 0.0324918963, 0.00608707219, 0.00907902326, -0.0259439964, 0.0164110214, 0.0319966786, 0.0215558019, 0.0560148209, -0.041653458, -0.0391223356, 0.034115117, 0.000818487664, 0.00743516954, -0.0241694599, -0.00581882847, 0.00929912087, 0.00212703622, -0.00584977958, -0.000336164579, -0.0226425324, -0.00576724298, -0.00121913396, -0.00112885959, -0.0159295592, -0.006489438, 0.0221473128, -0.0267005805, 0.00734575512, -0.00652382802, -0.000495219429, 0.00974619389, 0.0173051674, 0.0122635588, 0.00176765828, 0.00382763357, 0.0229864363, -0.0117545836, 0.0491918, -0.0324368738, -0.0256688744, 0.0107366322, -0.0183231197, -0.0125937052, -0.0155306319, -0.0385720916, -0.0108329253, 0.0344177522, -0.0156544372, -0.00172295095, -0.00187770708, 0.00782721862, -0.0204690695, 0.0230277032, 0.00542678, -0.0142650707, 0.0279661417, 0.0579957, 0.0272370689, -0.0155856563, -0.00995941274, 8.60293294e-05, 0.02698946, 0.0118508758, -0.0205103382, 0.0195336547, -0.0187908262, 0.0146915102, -0.00212703622, 0.0318316035, -0.0135566322, -0.000107738168, 0.00383795053, -0.00430909684, -0.00354219461, 0.0180204846, -0.0246921908, -0.0112524861, -0.0314464346, 8.55994513e-05, -0.012187901, 0.0033461703, -0.0168649722, 0.00545429206, -0.0209367778, -0.0145401927, -0.00308308494, 0.00882453565, -0.00677831611, 0.000425364269, -0.00848751049, 0.0119609246, -0.0153105343, -0.00941604748, 0.0111149251, -0.00537863327, 0.0177453626, -0.000874371792, -0.0377467275, 0.00688492553, -0.00834307168, -0.00903087668, 0.0198225342, 0.000615585246, -0.0231790207, -0.00753146224, 0.00813673064, 0.00423687743, -0.0120640956, -0.0258201919, -0.033014629, 0.0212531667, -0.00992502272, -0.011156193, 0.0376366787, 0.0165073145, 0.00133949984, 0.0282825325, -0.0140587296, 0.0281312149, -0.0110874129, 0.0178141426, 0.00453951163, -0.0118371202, 0.0145539492, 0.015764486, -0.0228351187, -0.0100281937, 0.0279386304, 0.00588073069, 0.0268243868, 0.0230414607, 0.0287777521, 0.0255863369, 0.0137629732, -0.013116437, -0.00763463276, 0.034665361, 0.00328426785, 0.00853565708, -0.0230964851, -0.0294105317, 0.00680926722, 0.0367287733, -0.0238943379, 0.0278973617, 0.0113487784, 0.030813653, 0.0107297543, 0.0064997552, 0.019244777, -0.0144163882, 0.0197537523, -0.0181305334, -0.0192998014, -0.0536762848, 0.00128791446, -0.0099456571, 0.00580163347, 0.0368113108, -0.00256551174, 0.0120640956, -0.0208404846, 0.00676456, 0.0192998014, -0.0381869227, 0.0221748259, 0.0183919, -0.00142203632, -0.00583946239, 0.00977370609, 0.000161741584, -0.0157094616, -0.035078045, -0.0324368738, -0.0281724837, 0.00142805465, 0.0100144371, -0.0207441915, -0.00582570629, -0.00206169486, -0.00508631626, 0.00984248612, -0.00534080388, 0.00772404764, 0.00235573133, 0.00919595, -0.00230242638, -0.0224637035, -0.0231515095, 0.0240594111, -0.0247747283, 0.00410275534, -0.0135979, -0.0092853643, -0.000861905341, 0.0144301439, -0.0274158977, 0.0116376569, -0.0388747267, 0.0174014606, 0.0273058489, -0.0243482888, 0.00305041415, 0.0233165808, 0.0103377057, 0.017250143, -0.0299332645, 0.00813673064, 0.0477886759, -0.0208817534, 0.00864570588, -0.0282275081, 0.0102826813, -0.0268656537, 0.00132402417, -0.0229864363, 0.0144576561, 0.0428089686, 0.0134190712, 0.0250773616, 0.0244308263, -0.00376573112, 0.0291904341, -0.0385445803, -0.00144524977, 0.00241419463, 0.0381043851, 0.00867321808, 0.0150766801, 0.00530985277, -0.0270307269, 0.0246234108, 0.0089001935, 0.0169887785, 0.00905151106, -0.0139005342, 0.0155443875, 0.014663998, -0.022037264, -0.0216658507, -0.00142633519, -0.0262878984, -0.00225943862, -0.0164385345, 0.0438544303, 0.0296856537, -0.0164522901, 0.00781346206, 0.00510695064, 0.0118852668, 0.0310062394, -0.0221610703, -0.00808170624, -0.0105646811, 0.00442946283, 0.00279764598, 0.0136185344, 0.00219753617, 0.0245408751, -0.0116170226, -0.00732512074, 0.0100350715, -0.0282825325, -0.0125799496, 0.00790287647, -0.0135497544, 0.0137492176, 0.000485332246, -0.0192172658, 0.000277486251, -0.0494118929, 0.00848751049, -0.0172914118, -0.0320241898, 0.00757960835, 0.00402021874, -0.00666826731, -0.00255003618, -0.0133502902, -0.0395900421, 0.0326294601, -0.00317421905, 0.00380699942, 0.00819175504, 0.016631119, -0.0158057529, -0.0175115094, 0.0162046812, 0.014801559, 0.0207579471, 0.0363711156, 0.0230689719, -0.0358208716, -0.00966365729, -0.00123632909, 0.0109979985, -0.0348579474, -0.0325744338, 0.019244777, -0.00408212142, -0.0109292176, -0.0138317542, -0.00834307168, -0.00704312092, -0.0397826284, 0.00412338972, -0.0219684839, -0.00933351088, 0.00480431644, 0.025063606, -0.00661668181, 0.00956736412, -0.00793726742, -0.0215833131, -0.000280925247, 0.0174427293, 0.0221748259, -0.00555402366, -0.0273471177, 0.0201526806, -0.00407524314, 0.011259364, -0.0803355947, -0.0352981426, -0.00419217, -0.0364811644, -0.0100281937, 0.0318316035, 0.00372446282, -0.0163972657, -0.000560990768, 0.0299882889, 0.00918219332, 0.0065685357, -0.00734575512, 0.0131714614, -0.00519636506, 0.0206341427, -0.00342870667, -0.0100213159, 0.0364536531, -0.00563999917, -0.0008537377, 0.00859068148, 0.00302978, -0.0156544372, -0.011706437, 0.0105302911, -0.00937477872, -0.00923034, 0.040938139, 0.00919595, 0.00297819474, 0.0131026804, 0.00288534095, 0.00111940224, 0.0107366322, -0.0165623389, 0.00494531635, -0.00165331073, -0.0132333636, -0.00632780371, -0.020620387, -0.0242795087, -0.00868697464, 0.0139486808, -0.0174702406, 0.0507324785, 0.00749707222, -0.000777219364, -0.00658916961, 0.0196299478, -0.00228523137, -0.0101795103, -0.00230758497, -0.0034510605, -0.00346137746, -0.0236467272, 0.027608484, -0.012497413, -0.0187633149, -0.00293176784, 0.0609119907, 0.00529609667, -0.0264254585, -0.0148565834, 0.00852877926, 0.00701904763, 0.0112868762, 0.0269206781, 0.0222298503, 0.000932835217, 0.0234678984, 0.00883829128, 0.018900875, 0.030263409, -0.0344727747, 0.021101851, -0.0121741444, 0.0108879497, 0.0133778024, -0.0142100463, 0.0103445835, 0.0086800959, 0.00323956041, -0.0114725837, -0.011568876, 0.0367562883, 0.00718755974, 0.0124148764, -0.0390948243, 0.0164798014, 0.013632291, -0.0125593152, 0.0027959263, -0.00161548145, 0.0139005342, 0.0228076056, 0.0095604863, 0.0170988273, 0.00362129207, 0.00883141346, -0.00652038911, 0.00929224212, -0.00687804772, 0.0108948275, -0.0106403399, -0.00482151145, -0.0196299478, -0.0275534596, 0.00277701183, 0.0203039963, -0.0162321925, 0.0107779009, -0.00151145097, 0.00822614506, 0.000461259071, 0.0258064345, 0.0123460954, -0.0124836564, 0.0061180233, -0.00399614591, -0.0168237053, 0.00434348732, 0.00580851128, -0.0410757, 0.00109618891, 0.00374853611, -0.0185019486, -0.0152142411, -0.0196161922, -0.0116582904, -0.00449824333, 0.0085150227, -0.00360065792, 0.00608363329, 0.0200151186, -0.000121010649, 0.0144714126, 0.000604838307, -0.00552651146, -0.0199600942, 0.0120090712, 0.013976193, 0.00066158222, -0.00612146268, -0.0112662418, 0.00283891428, 0.00318797515, 0.00347685302, 0.0125868274, -0.0258477032, 0.0484214574, -0.0279248729, -0.00766214496, 0.00456702383, 0.00261365809, -0.00246234098, 0.0323543362, 0.0189146306, -0.00225256057, 0.00684021832, -0.0309237018, -0.00230586552, 0.00611114549, -0.00991126709, -0.00842560828, -0.00123460952, 0.00630029151, -0.00100333523, -0.00082751509, -0.0130201438, 0.027333362, -0.0149941444, -0.00487309694, -0.0139830709, 0.0413508229, 0.00148135948, 0.0363436043, 0.0367838, 0.0161359, 0.0176765826, -0.0373340435, 0.0132402414, 0.00204621931, -0.0132058514, -0.006472243, 0.0118371202, -0.00103686564, -0.00335820671, -0.0127106318, -0.00780658424, -0.0130545348, 0.0225324836, -0.0207992159, 0.0064584869, -0.0217621438, -0.0157919973, -0.0245683864, -0.00195852411, 0.0304835066, 0.0342801884, -0.0257789232, -0.000686945, 0.00656509632, 0.019451119, 0.0058153891, 0.0232202895, -0.00801980402, 0.0160808749, 0.00257926784, -0.00907902326, -0.0177591201, -0.0175115094, 0.0218309239, 0.0176903382, -0.00545085268, -0.0194786303, -0.000698981574, 0.00397895044, 0.0091202911, -0.0128138028, -0.00274434104, 0.0318316035, 0.0032223654, 0.000390329194, -0.00767590106, -0.00545429206, 0.00247093872, -0.00546804769, -0.0159708261, 0.0015647558, -0.00984248612, 0.0173739493, 0.0064997552, 0.00482151145, 0.0288052633, -0.00687804772, -0.0203865338, 0.0250498503, -0.0015286461, -0.00716004753, -0.00573629187, 0.00826741289, -0.00412682863, -0.00169715832, -0.0095054619, 0.00535456, -0.00572597468, -0.0061180233, -0.00580851128, 0.00370038976, 0.00423687743, 0.0110323885, -0.0008537377, -0.0059942184, 0.00675768172, 0.0138799, -0.00706375483, -0.0206891671, 0.00386890187, 0.000895005942, -0.0366462395, 0.00622119429, -0.0142650707, -0.0138661442, -0.0159295592, -0.0160946324, -0.00728385244, -0.00590824289, 0.0085975593, -0.00361097511, 0.000243310933, -0.026439216, -0.0211293623, 0.0129032172, -0.000538637105, 0.0144989248, -0.00358002377, -0.0209367778, -0.00199979241, -0.00493499916, -0.00724258414, -0.0288878, 0.0181030221, 0.00673016952, 0.0200838987, -0.000899304752, 0.0180617534, -0.0105646811, -0.0126212174, 0.0127794128, -0.00957424194, -0.0108673153, -0.00405117031, 0.0206066314, -0.00366599951, -0.00392392604, 0.0217483863, -0.0107779009, -0.014251315, 0.0140862418, -0.0133640468, 0.0164385345, -0.00489717, 0.0167824365, -0.0156957041, 0.000140462624, 0.0216108263, -0.0325469226, -0.0114657059, 0.0161771681, -0.00912716892, -0.0295480937, 0.01631473, -0.0170300454, 0.0154068265, -0.0088451691, -0.0063106087, 0.0120297056, -0.0162321925, -0.0291078985, -0.0152967777, -0.00192757288, 0.0162597056, -0.00210296316, 0.00263429224, 0.00222332892, -0.0142925829, -0.0138867786, 0.0132746324, -0.00697777933, 0.00893458351, 0.0230552163, -0.0352706276, -0.00435380405, -0.00832931604, 0.0127587784, 0.0127450228, -0.00861131586, 0.00239012158, -0.0158607773, -0.0143476073, 0.0432216525, 0.0269344356, -0.0089001935, -0.0203177538, -0.0106816078, -0.0105096567, -0.035078045, 0.0403328724, -0.0187082905, -0.00751082832, 0.00740765734, -0.019107217, -0.00247953623, -0.012669364, -0.0106334621, 0.000617304759, -0.0131095592, -0.0251736548, -0.0252699479, 0.00852877926, -0.000764323049, -0.0249122884, -0.00386202382, 0.00291113369, -0.0184744354, 0.00292488979, 0.00883829128, -0.00257582893, 0.02430702, -0.000818057801, -0.0401127748, -0.00248813373, -0.00664419401, -0.00751082832, 0.0137698511, 0.00490404805, 0.0121947788, 0.0147052659, 0.00704999873, -0.0521631129, -0.00128877419, -0.00795790087, 0.0234541427, 0.000494359701, -0.025132386, -0.0332347266, -0.0284751169, -0.0219547283, 5.42989619e-05, 0.00272886548, -0.0154068265, -0.00589104788, 0.00468395045, 0.0204278026, 0.018419411, -0.00841185264, 0.0158882905, 0.0143338516, -0.0138179976, -0.00157765218, -0.00241591432, -0.00220957282, -0.00439163344, 0.00430909684, -0.0102207791, -0.00886580348, 0.00345621887, 0.00325675565, 0.00347341411, -0.00604580389, 0.0189834125, 0.0166861434, 0.00684709661, 0.00565375527, 0.0455051623, 0.00389985298, 0.0396450683, -0.0126968762, 0.0132746324, 0.00567782857, 0.003107158, -0.014526437, -0.0189421438, 0.0187770706, 0.00487309694, -0.000272542646, -0.0118852668, 0.0227113143, -0.0255175568, -0.00515165785, 0.018556973, -0.0187495574, 0.0060354867, 0.0237017516, 0.014251315, -0.000636649318, 0.00365568232, 0.0159295592, 0.00984936394, 0.00916156, -0.00548868207, -0.0198087767, 0.00450168224, -0.0103583401, -0.0314189233, -0.0166448746, 0.00993190054, 0.00746268174, -0.000130360495, -0.0147052659, -0.00340291415, 0.0273883864, -0.00247437763, 0.0109292176, 0.0030572922, -0.017525265, 0.00538551155, 0.00172123138, 0.00775156, 0.0351330675, -0.0166448746, -0.0193135571, 0.0120778522, -0.0123117054, 0.00440195063, -0.00388953602, -0.0260678, 0.000432672183, -0.019244777, -0.00438475562, 0.0178966802, -0.0428639948, -0.000747127924, 0.0115895104, -0.000991298584, 0.0296856537, -0.011843998, 0.00106781686, 0.0135841444, -0.00477680424, -0.0115757547, 0.00815048628, 0.0064859991, -0.01070912, 0.0148428269, 0.0148290712, 0.00512758456, -0.00337196281, -0.00609395048, 0.0255863369, 0.00146330462, -0.0090927789, 0.00541302375, -0.0107985353, 0.0102070225, 0.00417841412, -0.00625902321, -0.00425063353, -0.00638626749, 0.00989751052, -0.000226975579, -0.0208817534, 0.00975994952, -0.0150216566, -0.00976682734, 0.00786848646, 0.0196437035, -0.00635875529, -0.0137148267, 0.0061042672, 0.0100557059, 0.00264117029, 0.00275809714, -0.0408005789, -0.00822614506, 0.0168924853, -0.00233509718, -0.000355724042, -0.00649287691, -0.017525265, -0.0096430229, -0.0274158977, 0.00370382867, 0.00927848648, -0.00709814532, 0.0191209726, -0.00696402323, -0.00779970596, -0.00938165747, 0.00269619469, 0.020482827, -0.00306417025, -0.00991126709, 0.0239218492, -0.0150354123, 0.00781346206, 0.0100900959, 0.00265492639, -0.0104615102, -0.00850126706, 0.017731607, -0.00158453023, 0.00834994949, 0.0271407757, 0.042753946, -0.00245546293, -0.00450856, 0.0112731205, -0.000271682889, 0.0179517046, -0.00338915805, -0.0243758019, -0.00332209701, -0.0173189249, 0.0002099954, -0.000356583798, 0.0163009726, -0.00176078023, -0.0160120949, -0.00347685302, 0.00390673103, 0.00336680445, -0.00375197502, -0.000455240777, 0.00881077908, -0.00804731622, -0.00491436524, -0.00687460881, 0.00313295075, -0.011947169, -0.012600583, 0.0143476073, 0.0031346702, 0.0331797, -0.00620399881, 0.0153380465, -0.0255863369, 0.0258477032, 0.0170713142, 0.0205791183, -0.0100213159, 0.0103927301, -0.0138592664, 0.00370382867, -0.00613521878, -0.00616617, 0.0154618509, -0.0123323398, 0.00354219461, 0.0161496568, 0.00203074352, -0.00510007236, 0.00671297451, -0.0206754114, 0.00273402384, -0.00275465799, -0.000490920676, 0.000741109659, 0.019175997, -0.0125868274, 0.0206066314, -0.0282825325, -0.0185019486, -0.0143063394, 0.0116307782, 0.0170025341, -0.00256551174, -0.0092578521, 0.0090927789, 0.00357314572, -0.000554972503, -0.0140518518, 0.0153518021, -0.00892082788, 0.00837058388, -0.00120623759, 0.00728385244, -0.0197675098, 0.0126074618, -0.0105302911, -0.00923721772, -0.00478024315, -0.0136804366, -0.00229898747, 0.0116239, 0.0101932669, 0.0173739493, -0.00846687704, -0.0142788272, -0.00927160867, -0.0286952145, 0.00870073, 0.00615241379, -0.0126212174, 0.0179104358, 0.0144439, 0.00775843766, -0.00159914605, 0.0086800959, -0.0197675098, -0.0120228278, -0.012291071, -0.0244308263, 0.0160946324, 0.0204965826, -0.00281828013, 0.0243207775, -0.0323543362, -0.0121741444, -0.00288706063, 0.0329871178, 0.00264117029, 0.0101519981, -0.0240181424, -0.00358002377, -0.00764838886, 0.0129032172, -0.010571559, -0.0302083846, 0.00646880409, -0.0338950194, -0.00215798756, -0.0173601918, 0.000249759119, 0.00351124327, -0.0121466322, 0.00312779215, -0.0341701396, 0.00143579242, -0.021652095, -0.0279386304, -0.00591856, -0.00821926724, -0.00303149945, -0.00229898747, -0.0261228252, -0.00918219332, 0.00103600591, -0.0159570705, -0.00844624266, 0.00494875526, 0.000725634047, -0.00109103031, 0.0114038028, -0.0124492664, -0.000735951122, -0.00738014514, 0.000391833775, -0.0228213631, 0.0100281937, 0.00805419404, -0.00317421905, 0.0187770706, -0.00943668187, -0.0158195104, -0.00799229182, -0.0199050698, -0.0158332661, 0.0110392664, -0.0125799496, 0.0104615102, -0.000429877982, -0.00751770614, -0.00916156, -0.0108604375, -0.00366256037, 0.00581882847, 0.00780658424, 0.0179654602, 0.0342526771, 0.0259164833, 0.0219959971, -0.00493499916, 0.0195749234, -0.0132608758, -0.00175046315, 0.0186395086, -0.00492124306, -0.00719443802, 0.0143338516, -0.00347341411, -0.0090102423, 0.0105578033, 0.010433998, -0.00465643825, 0.013425949, 0.0205791183, -0.000269318552, 0.0222573616, -0.0163972657, -0.0151041923, 0.00331006036, 0.00711190142, 0.00103342661, 0.00762775494, 0.0111424373, -0.0165073145, -0.0157232173, 0.0323818475, -0.0132677536, -0.00186910946, 0.00361097511, -0.00414402364, -0.00587729178, -0.00792351086, 0.00512070674, 0.0136735588, -0.00220957282, -0.00731824292, -0.00725634024, -0.00141687784, -0.00905838888, 0.0127106318, 0.00973931514, -0.0367287733, -0.0211156067, 0.00587729178, -0.0196024366, 0.00146760338, 0.00226287777, -0.0113900471, -0.0061180233, 0.00116324984, 0.0126280952, -0.00974619389, 0.00300054834, 0.00580507237, -0.00228523137, 0.0121603888, -0.0274984352, 0.00690212101, 0.00722882804, 0.013391559, -0.0150766801, 0.00452231616, 0.00715316972, 0.0185707286, 0.0208404846, 0.019107217, -0.00697777933, -0.00327395066, 0.00818487722, -0.0178141426, -0.00255347532, 0.000260935922, -0.00497282855, -0.0370038971, 0.0142100463, 0.00248297513, 0.00488341367, 0.0031759385, 0.013150827, -0.000785387063, -1.74503584e-05, 0.0150079, 0.00346137746, 0.00187082903, 0.0178279, 0.00749019394, 0.00515853567, -0.00625902321, 0.0128481928, 0.0132608758, -0.00125438394, 0.00377604808, -0.00224568252, -0.00516885286, -0.00873512, 0.0320517, 0.0087901447, -0.0229451675, 0.00354907266, 0.00103514618, 0.030813653, 0.00728385244, 0.0198638011, 0.0222573616, 0.016039608, 0.00283375569, 0.00932663307, -0.00398239, 0.00544053596, 0.0236192159, 0.00671641342, 0.00599077949, -0.0124836564, -0.00108243281, 0.00998004712, 0.0116376569, -0.00036367678, -0.0196437035, -0.00285267038, -0.0154893631, -0.00495563354, 0.0188871194, -0.00507599907, -0.0124561442, 0.00449136505, 0.00754521834, 0.00262741419, -0.00337024336, -0.0207854602, -0.00415090192, -0.0158332661, -0.00826741289, -0.0102414135, 0.0204278026, 0.000314025878, 0.00839809608, -0.0170850698, 0.0117820958, 0.0112249739, -0.00601485278, 0.016424777, -0.000419560907, -0.027264582, -0.0140587296, -0.00361785316, -0.0128206806, 0.00476648705, -0.00788912084, -0.00864570588, -0.0102414135, 0.0250085816, -0.033564873, 0.0159570705, -0.00451199943, -0.0209780447, -0.00273402384, 0.0179792158, 0.019519899, 0.0096430229, 0.0137629732, -0.0146777537, 0.00709814532, -5.89470183e-05, -0.0142650707, 0.00336164585, 0.00155701803, 0.00540614547, -0.0113487784, -0.00560904806, -0.00563656026, 0.0058979257, -0.0156406797, 0.00885204785, -0.000214186701, 0.00698465761, -0.00254831673, 0.00442258455, -0.00456014555, -0.01070912, -0.0096155107, -0.00270995079, 0.0029420848, 0.00910653546, -0.000216658504, 0.00657197461, -0.00703624263, -0.00217690202, 0.0222023372, 0.0154343387, 0.00545773096, -0.011740827, -0.00297991419, -0.00333069451, 0.00227147527, 0.00769653544, 0.0130682904, 0.00203418266, 0.00552995037, -0.0219134595, -0.0132127292, -0.00845999829, 0.0162321925, -0.0258614589, -0.0108604375, -0.0205240939, -0.0103789736, 0.00804731622, -0.0104546323, 0.00170145708, -0.00325159705, 9.05430497e-05, -0.0204002894, 0.0204002894, -0.0157369729, 0.0028234385, 0.0119678034, 0.00149511558, 0.00525826728, -0.00280280435, -0.00236776797, 0.0120021934, -0.0032773898, 0.00399958482, -0.00517573068, -0.0228076056, -0.00828804728, -0.00575004797, 0.0236192159, 0.00341838971, 0.000899304752, -0.0131989736, -0.00348373107, 0.012394242, 0.0339225307, 0.00231446302, -0.0229038987, 0.0135772666, 0.00743516954, 0.0178416558, -0.013150827, 0.0208129715, -0.00114605471, 0.0111011686, 0.00143407297, -0.0144989248, 0.0179517046, 0.0139349243, 0.0103239492, -0.00304525555, -0.0134121934, -0.00806107186, 0.00360065792, 0.0159708261, 0.0095329741, 0.0138248755, 0.0227663387, 0.02568263, 0.0226700455, -0.00136271317, 0.0154343387, -0.0165623389, -0.00926473, -0.0090927789, 0.00587385288, -8.54382452e-05, -0.0090652667, -0.0031896946, 0.0100625837, -0.00343386526, 0.0137836076, 0.0283650681, -0.0145814614, 0.0154480953, 0.000551103556, 0.0239356067, 0.0142375585, 0.0148153147, 0.00735263294, 0.000493499916, 0.00208576792, -0.0249535572, -0.0110461442, 0.00923721772, 0.00795790087, 0.0104408767, -0.0153655587, -0.00925097428, -0.0260815565, -0.0141687784, 0.0226700455, 0.0150629245, 0.00118302426, 0.0152279977, 0.00242623128, -0.000774210261, 0.0139968274, 0.0316940434, 0.00488685304, -0.00195680466, 0.0106197055, -0.0314464346, -0.02430702, 0.0135428756, 0.00649631582, 0.00938165747, 0.0215420462, -0.00446041394, 0.00580507237, 0.00355595071, 0.00445353566, 0.0159570705, -0.0206066314, -0.0178966802, -0.013460339, 0.00636907201, -0.0112456083, -0.0253662392, -0.00879702345, 0.0129651204, -0.0179104358, 0.00142891437, -0.00720819412, -0.0252286792, 0.00416809693, -0.00124406687, -0.0209505334, 0.000419345975, 0.00792351086, -0.00893458351, -0.0161496568, -0.000425149337, -0.000100913858, -0.0171951186, 0.00741453562, -0.00119935954, -0.0135772666, 0.0123460954, -0.0268518981, -0.0164935589, 0.0227938499, -0.0491092615, -0.00178657286, -0.0143063394, -0.0220922884, 0.00127587782, 0.00923034, -0.00315014576, -0.000642667583, -0.0101451203, 0.0106197055, 0.0147465346, -0.00504504796, -0.00675080391, -0.000239012152, -0.0103308279, 0.0108329253, -0.00279936544, 0.0123392176, 0.0194786303, 0.00703624263, 0.0196712166, 0.00447417, -0.0186670218, 0.0104615102, 0.0161359, 0.0106403399, 0.00299882889, -0.00883829128, 0.00189490209, 0.00543365767, -0.00393768214, -0.0195474122, 0.018694533, 0.0092028277, 0.00658916961, -0.00982185174, -0.000573887082, -0.00733887684, -0.0151041923, -0.0202489719, 0.0017599205, 0.00415777974, 0.0269757025, 0.00348888966, 0.0153105343, 0.0251874104, 0.00117012789, 0.0067060967, -0.0296306293, -0.013185217, -0.0210055579, 0.020001363, 0.0167961922, -0.0062830965, 0.0205791183, 0.00815736502, 0.000358518242, 0.0155168753, -0.00762775494, 0.00271167024, -0.0200426318, 0.0208679959, -0.0209918022, 0.00684365723, 0.0107297543, -0.0061317794, -0.00465299934, 0.00657197461, -0.0061455355, 0.00500034075, 0.0361235067, -0.00509663345, -0.0176628269, -0.0237017516, -0.0258752163, 0.0294380449, 0.0102689248, 0.0144026317, -0.0149666322, 0.0258752163, -0.0238668248, -0.00110048766, 0.0249673128, 0.00059022248, 0.0128275594, -0.00441914564, 0.000151639455, 0.00345449941, 0.0279936548, -0.0228076056, -0.0146089736, -0.00955360848, -0.00918907207, 0.013322778, -0.00122171326, 0.0208404846, -0.00187254848, 0.0227938499, 0.0110667786, -0.0202902406, 0.00258614589, 0.000174637928, 0.00716692582, 0.00392736541, 0.016699899, -0.00931975432, -0.00655134, -0.00182440213, 0.0121259978, 0.00118990231, 0.0417084806, -0.0063897064, 0.00702936482, -0.0238118, 0.00572941359, 0.0178966802, 0.027264582, -0.0124011198, -0.00556434039, 0.0124148764, -0.0166861434, 0.0170850698, 0.0203039963, -0.00100333523, -0.0121328766, 0.00595295, -0.00247953623, -0.00550587708, -0.00610082829, -0.012256681, -0.00180548755, 0.0218721908, -0.0110255107, -0.0246921908, 0.00663043791, 0.00578787737, 0.0060492428, 0.00171521318, -0.0291904341, 0.00117270718, 0.0220922884, -0.017869167, 0.0139486808, -0.0218859483, -0.00830868166, -0.00584634067, 9.57015873e-05, -0.0150766801, 0.00524795055, 0.00697434042, 0.0139624365, -0.0163697544, -0.0241832156, 0.0101726325, 0.0144026317, -0.0145126805, 0.0130407782, 0.00812297408, -0.020482827, -0.00642409641, -0.00284923124, -0.000274047226, -0.00940917, -0.0137079488, 0.0106265834, 0.00786160864, -0.0286677033, 0.0061180233, 0.0158470217, 0.0392598957, 0.0246096551, 0.0157782417, 0.019382339, 0.0114932181, -0.000828804739, -1.27082676e-05, -0.0097255595, 0.0294380449, 0.0175802894, 0.0198362898, 0.000173885637, -0.00481119426, -0.0114863394, -0.0162734613, -0.00982873049, -0.00257754838, -0.00478024315, -0.00106437784, -0.00368319452, 0.0131989736, -0.0126487296, -0.0115482425, 0.0136598032, -0.0155719, -0.00771029154, -0.00265148748, -0.00354907266, -0.0349404812, -0.0226700455, -0.0110805351, 0.00241935323, 0.00479743816, -0.0243207775, 0.0139486808, 0.0133709246, -0.0230414607, -0.00193101191, -0.0242657531, 0.0137698511, -0.00347685302, 0.00908590108, 0.000540356617, -0.0285851657, -0.0109223397, -0.0159708261, -0.0299332645, 0.00866634, -0.0111286808, 0.00792351086, 0.0255450699, -0.0129857538, 0.0127175106, -0.00701217, 0.00535456, 0.0187770706, 0.00265836553, -0.00314326771, -0.0280074105, -0.00475617, 0.00182784116, -0.00470802374, -0.00499002356, 0.00625214539, 0.017800387, -0.0015123107, 0.0342251658, -0.0273196064, -0.0168649722, 0.0188045818, -0.0249398015, -0.00244342652, -0.0189834125, -0.00908590108, -0.00118302426, 0.0155719, -0.0122635588, -0.0182405822, 0.012566193, 0.00366943842, 0.00416809693, 0.0159983393, 0.0377742387, -0.0099456571, 0.00203418266, -0.0059254379, 0.00276153604, -0.00872136466, -0.00390329212, 0.0135428756, -0.00197228021, -0.00122773147, 0.0176078025, 0.0114175593, 0.0106128277, 0.0149116078, -0.00171263388, -0.00831555948, 0.0132815102, 0.00779282814, 0.0088451691, 0.00208576792, -0.00305385329, 0.00776531594, -0.00595638948, 0.00262569473, -0.00716692582, 0.0119678034, 0.00275809714, 0.0109498519, 0.0107297543, 0.0471008718, 0.000658143195, 0.0158057529, 0.0194236059, -0.0185707286, 0.000851588266, -0.000190650884, 0.0107228765, -0.0202352162, -0.02705824, 0.00735263294, 0.0178141426, 0.00995253492, -0.00273574353, 0.0217346307, -0.00193445093, 0.0188045818, -0.0399752147, 0.00826741289, -0.0201801918, -0.00501065794, -0.011947169, 0.0215695575, -0.00421624305, -0.00903087668, 0.0190384369, -0.0106609743, -0.0113212662, 0.00736638904, -0.00978746172, -0.00502097467, 0.00379668223, -0.0160120949, 0.0178279, -0.0145126805, 0.0147327781, 0.00243826793, 0.00556434039, -0.00246062153, -0.0166723877, -0.0224637035, -0.00740765734, -0.0146227293, 0.0226838011, 0.00999380369, -0.0135566322, -0.00713253533, -0.0138111198, 0.000356583798, 0.00879702345, 0.0346378498, 0.000231059414, -0.0117133148, 0.00795790087, 0.00191725581, -0.00608019438, -0.000128640982, 0.0101863891, 0.0137698511, -0.00669577951, -0.0143200951, -0.0116101447, 0.0106884865, 0.0157507285, 0.00307620689, -0.014251315, 0.0141275097, -0.00753146224, -0.00517229177, 0.00411651144, -0.0191209726, 0.0148840956, 0.00217518257, 0.0216383375, 0.0192998014, 0.00467707263, -0.0115757547, -0.0161496568, -0.00124234741, -0.0245683864, -0.00547148706, 0.0172088761, 0.0175527781, -0.0180892646, 0.018625753, -0.012669364, 0.0219822396, 0.00200667046, -0.00299538975, 0.0146502415, -0.00999380369, -0.0117270714, -0.00374509697, 0.00220441422, 0.00173068873, -0.0200976562, 0.0345828235, -0.00270307274, -0.0367287733, 0.00534424325, -0.0032086093, 0.00475273095, 0.00930599868, -0.00563656026, -0.019726241, -0.00506224297, 0.00417153584, -0.00786848646, -0.01070912, 0.00702936482, -0.0192722902, 0.00725634024, 0.0237155091, -0.000837832165, 0.00727009634, -0.0214319974, -0.0107572665, -0.0389297493, -0.0104821445, 0.00878326688, 0.0291904341, 0.00109360961, -0.00480431644, -0.0138936564, 0.0176903382, 0.0086525837, -0.00873512, 0.00053949689, 0.0182268266, 0.00460829213, -0.0139349243, -0.00809546188, -0.00940917, 0.0204415582, 0.0149803879, 0.00668546231, 0.0156269241, 0.00319829211, -0.0167274121, -0.0133434124, -0.00136013399, 0.00432285294, 0.00221645087, -0.0063209259, -0.000313166121, -0.00294896285, 0.0062830965, 0.012806925, -0.0177178513, 0.0090102423, -0.00484214537, -0.0145952171, -0.012222291, 0.0128550716, -0.0151867289, -0.0102070225, 0.0095604863, 0.00383107248, -0.00478024315, -0.00777907204, -0.00926473, -0.00694682822, 0.0201939475, 0.0105784377, -0.00480087707, -0.0131233148, -0.00235057273, -0.0345278, 0.00101021328, -0.019244777, 0.00503473077, 0.00281656045, -0.0181030221, 0.0127175106, -0.0235366784, 0.00355251157, -0.00231446302, -0.00171263388, 0.00219581672, -0.0122154132, 0.00128533517, 0.0197675098, 0.0167686809, -0.00689868163, 0.0094504375, 0.0103101935, -0.00650663301, 0.000796134, -0.0090652667, 0.00723570632, -0.014388876, -0.013391559, 0.0096705351, -0.00189662166, -0.0104821445, -0.00139022537, -0.00709814532, 0.0158607773, -0.000736381, 0.012222291, 0.000735091337, 0.00410963362, -0.00470802374, -0.0088726813, -0.00523419445, -0.00105320103, -0.000392908463, -0.00620056, 0.0103445835, 0.01070912, 0.0305110198, -0.00731824292, 0.012187901, -0.0116032669, 0.0094504375, 0.0354081914, 0.0130270226, -0.000621603569, 0.0229589231, 0.00014615852, 0.00806107186, 0.0260540452, -0.0153380465, -0.0163972657, -0.0196299478, -0.00365224341, 0.0228076056, 0.0253799967, -0.017456485, -0.00322064594, 0.00238152407, 0.0307586286, 0.0124836564, -0.00669921841, -0.00384482858, -0.0298507269, 0.0105027789, -0.02561385, -0.0381869227, 0.00803356, -0.000901024265, 0.0190246794, 0.0153793143, -0.0149941444, -0.00725634024, -0.0214595087, -0.00687116943, 0.00982185174, 7.14134803e-05, 0.00327395066, -0.018281851, -0.0204278026, -0.0110323885, 0.00424719462, -0.0242795087, 0.00665451121, 0.0105509255, 0.0206341427, -0.00233509718, 0.000352285017, 0.0154618509, -0.00617648661, 0.014388876, -0.0156681929, 0.0098356083, 0.00543709658, -0.0114450715, 0.00888643786, 0.0207717046, -0.00836370606, 0.0138936564, -0.0209230203, 0.016039608, 0.0200838987, 0.0236742403, 0.00271854829, -0.0218721908, -0.000515853579, -0.011740827, 0.00120193884, -0.00203418266, -0.0113350227, -0.0102620469, -0.00942980312, 0.000462118827, 0.00152520707, -0.0150354123, 0.0244720932, -0.00259130448, 0.0134121934, 0.0109911198, 0.00502441404, 0.00506224297, -0.000400431338, -0.0262466297, -0.0147878025, -0.000579475542, -0.00718755974, -0.00476304814, -0.00742141344, 0.00350780436, 0.0175390225, -0.031088775, 0.0149941444, 0.00658916961, -0.00902399886, 0.0114725837, -0.000211177554, 0.00443634065, 0.00502097467, 0.0108122909, -0.00836370606, 0.0219547283, -0.0060629989, -0.00148909737, 0.0111424373, 0.0262191184, 0.00711190142, -0.0109979985, -0.00152004859, -0.0169199966, 0.003167341, -0.00100333523, -0.0101244859, 0.0181993134, 0.00484558474, -0.00380699942, 0.0149803879, 0.0105440468, 0.0113281449, -0.0150766801, -0.00812297408, 0.000666310894, -0.00970492512, -0.013047656, -0.00474585313, 0.00466331653, 0.019107217, -0.00898273, 0.00908590108, -0.0148978513, 0.00764838886, -0.0123392176, -0.0028096824, 0.0207166802, 0.0141550219, -0.000350780436, 0.00575348688, 0.00181064603, 0.0158057529, -0.00273918244, -0.00447073113, 0.010433998, 0.00944356, -0.00776531594, 0.0210193135, 0.0296856537, 0.0271270201, -0.00582226738, -0.00243826793, -0.0124079976, 0.00800604746, 0.006472243, 0.0156131685, 0.00509663345, -0.00443978, -0.00254315813, -0.00222676783, -0.00502097467, 0.00858380366, 0.0113487784, 0.0143200951, 0.00681958441, -0.0165348258, -0.00753146224, -0.00248469482, 0.0544741377, 0.000925957167, 0.00554370647, 0.00410275534, 0.0147052659, 0.012669364, -0.0065272674, -0.0093403887, -0.00565719418, 0.00192585331, 0.00118818274, 0.0146777537, -0.000145406229, 0.00490748696, -0.0136185344, -0.00267728, -0.00758648664, -0.0183643866, 0.00279764598, -0.00125008519, -0.0176490713, -0.0145952171, 0.0204965826, -0.00279076793, 0.0122016566, -0.00322924345, -0.00361785316, -0.00870073, 0.00257926784, 0.00975994952, 0.00401678, -0.00430909684, 0.00270995079, 0.0119402912, -0.006472243, -0.0603067204, -0.0180892646, 0.0174152162, 0.0206754114, 0.0154480953, -0.00207029236, 0.00464612106, -0.00868697464, -0.005939194, 0.00721507194, -0.0175390225, 0.00464268215, -0.0139074121, -0.00328770676, -0.0172639, 0.00240731658, -0.0119884368, 0.017800387, 0.0180479977, -0.0225187279, -0.0155168753, 0.00198087771, 0.012428632, -0.0110805351, -0.0122704376, 0.0089277057, 0.0117133148, -0.0237980448, -0.00612490159, -0.000653844385, 0.00466331653, -0.0104546323, 0.0100144371, 0.0182680953, 0.00930599868, 0.00279764598, -0.014113754, -0.00134293886, 0.00267212163, -0.00514134066, 0.0131233148, 0.00458421884, 0.00160688395, 0.00397895044, 0.014113754, -0.000688664499, 0.0166448746, -0.00612146268, -0.013047656, -0.0228488743, 0.0105990712, -0.00671297451, -0.0152142411, 0.0170988273, 0.0116651691, -0.016699899, -0.0283100437, -0.0201251674, -0.0191209726, 0.017525265, -0.0216796063, -0.00751770614, -0.00456358446, 0.0159158017, 0.0171400942, 0.0109154619, 0.00374165806, -0.0284476057, -0.0212394111, -0.0102345347, 0.00598734058, 0.0227250699, 0.0233578496, -0.00947795, -0.00457390165, 0.00669921841, -0.00666138902, 0.013357169, -0.00198431686, 0.0795102343, -0.0122016566, 0.0085700471, -0.0247472152, 0.00249329233, -0.00595295, -0.00795790087, 0.0363986269, 0.0239493623, 0.00292317034, -0.0115551203, 0.0064997552, -0.0111699495, -0.00439851172, -0.00385514577, -0.0193548258, 0.0061592916, -0.00848063268, -0.00912716892, -0.0106884865, -0.00382075552, -0.0162459482, -0.00203590211, -0.0206616558, -0.00115723151, 0.000582054781, 0.00847375486, -0.00440882845, -0.0200563874, 0.00818487722, 0.011706437, 0.00503129186, -0.00267384108, -0.00100333523, -0.0286126789, 0.0230414607, -0.00805419404, 0.00109274988, 0.0218034107, 0.00573285297, -0.00301430444, -0.000977542484, 0.0158470217, 0.0244170688, 0.00385170663, -0.00289737759, 0.0228763875, -0.00801292527, 0.0106472177, 0.00219925586, 0.00034454721, -0.0190797038, 0.0147327781, -0.0135428756, 0.0155306319, 0.0176628269, 0.00579475518, -0.00541646266, 0.0128138028, 0.0170162898, 0.0208129715, -0.0097530717, 0.00843248609, -0.00716692582, 0.00188286556, -0.0143200951, 0.00664763292, -0.010433998, -0.023412874, -0.00232993858, 0.0243345331, 0.00635531591, -0.0156681929, -0.0224499479, 0.0169337541, 0.0178966802, -0.0219272152, 0.00834994949, 0.000768191938, -0.00353531656, 0.0154618509, 0.00481463317, -0.0155856563, -0.0148290712, 0.016906241, 0.000490060891, -0.0145401927, 0.00431941403, -0.0332347266, 0.0153105343, 0.00900336448, -0.00505536515, 0.00028135514, 0.0173877049, 0.00265492639, 0.0202627294, 0.000412467925, 0.0130751682, 0.025063606, 0.0128619494, 0.0102826813, 0.00378636527, 0.00577756, 0.00250532897, -0.00469426764, 0.00381731638, -0.0172363874, 0.00257754838, -0.00173670705, -0.00209436542, -0.00304697524, 0.00577412127, 0.0111768274, 0.0211981423, 0.00539238937, 0.00364536536, 0.0246921908, -0.00693995, 0.0302083846, -0.00488341367, -0.00365568232, 0.0159570705, -0.0145539492, -0.0170438029, 0.00299882889, 0.00779970596, 0.00268931664, -0.013838632, 0.00314670685, -0.0151867289, 0.00623151101, -0.0135016078, 0.00722195, -0.00605268218, 0.000874801714, 0.0224224348, -0.0304284822, 0.00154670095, -0.0184744354, -0.0017048961, -0.0139005342, 0.00210468262, 0.0113900471, -0.00724258414, 0.00537863327, -0.0188871194, -0.00445009675, -0.0139899487, 0.0376917, 0.00231274357, 0.00462548714, -0.00480087707, -0.0113762906, -0.00643785251, -0.00855629146, -0.012634974, 0.000598820043, -0.00549556, 0.0167824365, -0.00721507194, -0.0224637035, 0.00530985277, 0.0176490713, -0.0145814614, 0.013735461, -0.00298679224, 0.0186532661, 0.0137698511, 0.031914141, 0.0117820958, -0.000250833808, -0.019175997, 0.0105165346, 0.00728385244, -0.0181855578, 0.01208473, 0.000432242319, 0.00727697462, -0.014251315, -0.00366599951, -0.0066923406, 0.00269447523, -0.00619024271, 0.0316665322, 0.0059804623, 0.000444063946, 0.00993190054, -0.00215798756, 0.00130081072, 0.0060629989, 0.00734575512, -0.0259164833, -0.00212187762, 0.000131757595, -0.00808170624, 0.0064034625, 0.0122841932, -0.0164110214, -0.00503817, 0.000641377934, 0.0106953643, -0.00594951119, -0.00483870646, 0.00591856, -0.013288388, 0.00235917047, -0.0141412662, 0.00506912125, 0.00905151106, 0.00502785295, 0.000398926757] |
27 Dec, 2023 | Kaiming Initialization in Deep Learning
27 Dec, 2023
Kaiming Initialization is a weight initialization technique in deep learning that adjusts the initial weights of neural network layers to facilitate efficient training by addressing the vanishing or exploding gradient problem. The article aims to explore the fundamentals of Kaiming initialization and it's implementation.
What is Kaiming Initialization?The Kaiming initialization method, also known as Kaiming He initialization or He normal initialization, is a technique for initializing the weights of artificial neural networks. This method was introduced in the paper titled "Delving Deep into Rectifiers: Surpassing Human-Level Performance on ImageNet Classification" by Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun.
The motivation behind Kaiming initialization is to address the vanishing or exploding gradient problem that can occur during the training of deep neural networks. In deep networks, especially those using rectified linear unit (ReLU) activation functions, traditional weight initialization methods such as random normal or Xavier initialization may lead to gradients that vanish or explode as they are propagated through the layers during backpropagation.
The Kaiming initialization method is calculated as a random number with a Gaussian probability distribution (G) with a mean of 0.0 and a standard deviation of sqrt(2/n), where n is the number of inputs to the node.
W \rightarrow\Nu(0,\frac{2}{n})
The factor of 2 in the variance is specific to the ReLU activation function. For other activation functions, such as sigmoid or hyperbolic tangent, different initialization strategies might be more appropriate.
Derivation of Kaiming InitializationWe will use the below assumption to derive kaiming initialization.
The output of neural network at any layer is given as y = Wx + b. Here W is the weight matrixX is the inputb is the biasAll elements in W share the same distribution and are independent of each other. All elements in X are mutually independent and share the same distribution.We assume Weight in each layer has zero mean.Independence of Weights and Inputs: The initialization assumes that the weights and inputs are independent of each other.Bias Initialization: The derivation does not explicitly consider biases. In practice, biases are often initialized to zero or small constant values separately from the weight.We will use the below properties of variance.
Var(XY) = Var(X)Var(Y) + (E[X])^2Var(Y) + (E[Y])^2Var(X)
Var(X) = E(X^2) - [E(X)]^2
Let us consider two layers 'k-1'and 'k'. The output of the 'k-1' layer is being feed into layer 'k'. Now the output of ith neuron in layer k can be written as
y_i = ∑W_{ij}X_{j} + b_i
Here
Xj is the jth input to the neuron in layer k from the k-1 layer. The summation is over the length of the neuron in k-1 layerWij represents the weight associated with the ith row and jth column in the Weight matrix. The row matrix has size 1*(number of neurons in the k-1 layer)Now we can write.
Var(y_i) = Var(∑W_{ij}X_j)
Since we are assuming that each element in weight and input are independent and coming from the same distribution and also weight and inputs are independent of each other, we can simplify the above equation as
Var(y_i) = n* Var(W_{ij}X_j)
where we assume n is the number of neurons in layer k-1:
Using the first property,
Var(y_i) = n *(Var(W_{ij})Var(X_j) + (E[W_{ij}])^2Var(X_j) + Var(W_{ij})(E[X_j])^2)
Assuming zero mean for weight,
Var(y_i) = n *(Var(W_{ij})Var(X_j) + 0*Var(X_j) + Var(W_{ij})(E[X_j])^2)
Var(y_i) = n *Var(W_{ij}) *(Var(X_j) +(E[X_j])^2)
Using property 2, we get,
Var(y_i) = n *Var(W_{ij}) * E[X_j^2] \; ...(1)
Now for a continuous variable, the expected value is the sum of the product of all the possible values of the variable and its probability.
E[X^2] = ∫_{-\infty}^\infty x^2p(x)dx
Since the input to the current layer is equal to the Relu of the output of the previous layer(yl-1) i.e x = max(0,yl-1)
E[X^2] = ∫_0^\infty y_{l-1}^2p(y_{l-1})dy_{l-1}
(here we are taking integration from 0 instead of -inf as y gets activated only for positive values)
E[X^2] = 0.5*∫_{-\infty}^\infty y_{l-1}^2p(y_{l-1})dy_{l-1}
E[X^2] = 0.5 * Var(y_{l-1})
Substituting this value in Eq (1)
Var(y_i) = 0.5 * n * Var(w_{ij}) * Var*(y_{l-1})
We drop the index and write the above equation for a particular layer as each element in the weight matrix and input is independent and comes from same distribution as per our assumption.
Var(y^l) = 0.5 * n * Var(W^l) * Var*(y^{l-1})
Now considering L (1 to L) layers we can write this as
Var(y^L) = Var(y^1)\Pi_{l=2}^{L} 0.5*n^lVar(w^l)
This product is the key to the initialization design. A proper initialization method should avoid reducing or magnifying the magnitudes of input signals exponentially. So, we expect the above product to take a proper scalar (e.g., 1). A sufficient condition is:
\frac{n}{2}Var(W^l) = 1
This gives us
W \rightarrow\Nu(0,\frac{2}{n})
Note that:
We derived the initialization solely through the forward pass. The same outcomes can be achieved when employing the backpropagation process.The formula holds exclusively in the case of employing ReLU as the activation function in each layer. Should a different activation function be employed, the initialization can be derived by incorporating the specific activation function into the integral of the term E[X2]Advantages Through a meticulous analysis of the properties of ReLU and the challenges posed by vanishing and exploding gradients, Kaiming He and his colleagues devised an initialization method that has become a cornerstone for initializing weights in deep neural networks. The advantages of Kaiming initialization technique are:
Mitigation of Vanishing and Exploding Gradients: Kaiming He initialization helps mitigate the vanishing and exploding gradient problems that can impede the training of deep networks. Preservation of Variance: The initialization method is designed to preserve the variance of weights, particularly during the forward pass. This helps maintain an appropriate scale of activations across layers, preventing issues like overly small or large values.Efficient Training of Deeper Networks: Kaiming He initialization has been shown to contribute to more efficient training of deeper networks. Deep neural networks with many layers can benefit from this initialization method to ensure that information and gradients are propagated effectively through the network.Adaptability to ReLU Activation: Kaiming He initialization is tailored for ReLU activation functions, which are widely used in deep learning. It takes into account the characteristics of ReLU, such as non-saturation for positive inputs, to set appropriate initial weights.Empirical Success Across Tasks: Empirical studies have consistently demonstrated the effectiveness of Kaiming He initialization across various computer vision and natural language processing tasks. It has become a go-to initialization strategy for practitioners working with deep neural networks.Implementation torch.nn.init.kaiming_uniform_ is a PyTorch initialization method designed for initializing weights in a neural network. It follows the Kaiming He initialization strategy, which is specifically tailored for the rectified linear unit (ReLU) activation functions.
Python3
import torch
import torch.nn.init as init
weight_tensor = torch.empty(3, 3) # Example weight tensor
init.kaiming_uniform_(weight_tensor, mode='fan_in', nonlinearity='relu')
Parameters:
tensor: The PyTorch tensor represents the weights to be initialized.mode: Specifies the mode for computing the fan. It can be 'fan_in' or 'fan_out'.'fan_in':Choosing 'fan_in' as the mode for computing the fan in weight initialization means that the scaling factor is based on the number of input units (fan-in) to a neuron in the current layer.This choice preserves the magnitude of the variance of the weights during the forward pass. In other words, it ensures that the variance of the weights entering a neuron in the current layer is maintained.'fan_out':Choosing 'fan_out' as the mode means that the scaling factor is based on the number of output units (fan out) from a neuron in the current layer.This choice is motivated by the desire to preserve the magnitudes during the backward pass, specifically during backpropagation. It helps in maintaining the variance of the gradients as they are propagated backward through the network.nonlinearity: Specifies the nonlinearity function. For ReLU, it should be set to 'relu'.ConclusionThe core principle behind Kaiming initialization is to set the initial weights in a way that facilitates stable and efficient training. In this article we saw the mathematical details behind the initialization technique, its advantages and how it can be implemented in python. | NLP/Natural Language Processing (NLP) Tutorial/AI ML DS - Projects/30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated]/Does Artificial Intelligence Require Coding?/Artificial Intelligence – Boon or Bane/Artificial Intelligence Examples/Agents in Artificial Intelligence/What are Diffusion Models?/ML | Common Loss Functions/Loss Functions in Deep Learning/Kaiming Initialization in Deep Learning | https://www.geeksforgeeks.org/kaiming-initialization-in-deep-learning/?ref=ml_lbp | NLP | Kaiming Initialization in Deep Learning | Artificial Intelligence – Boon or Bane, Natural Language Processing (NLP) Tutorial, ML | Common Loss Functions, AI ML DS - Projects, Artificial Intelligence Examples, NLP, Loss Functions in Deep Learning, Agents in Artificial Intelligence, What are Diffusion Models?, Kaiming Initialization in Deep Learning, 30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated], Does Artificial Intelligence Require Coding? | GeeksforGeeks | [-0.0179283265, -0.0196524989, -0.0120081641, -0.00852930639, 0.0221548341, 0.00302111381, 0.024123136, 0.0100856377, -0.00727813784, 0.0422955938, 0.0104060583, -0.00830806326, 0.034636002, -0.0177299716, -0.00687761139, 0.0468730405, 0.0231923889, 0.000648948248, 0.0134042855, -0.0225362889, 0.0220938027, -0.00403578067, -0.052243907, -0.0131906709, 0.00120539393, 0.0292651337, 0.025603177, 0.0234517772, -0.00272167264, 0.00415021693, 0.0251912065, -0.0020674793, 0.00220671, 0.00367912161, -0.0186759755, -0.00885735638, 0.0202017911, 0.0702485219, -0.0559363812, 0.0032957606, 0.030913014, -0.0153878452, 0.0224905144, -0.0161888972, -0.0238790065, -0.0232229047, -0.00870477501, -0.00432568556, -0.0120920846, -0.031462308, 0.0421735272, -0.0239705555, 0.0556007, 0.0411970057, -0.00518777128, 0.0443096682, 0.00955923181, 0.0158837344, 0.0435772799, -0.037535049, 0.0307146572, -0.00456218701, -0.0650607571, 0.00782743096, 0.0322862454, -0.0035685, -0.00714844372, 0.0249318182, 0.00177089905, 0.00165169477, -0.0394880921, 0.034086708, 0.0204154048, -0.0305620749, -0.0131983, -0.0119242445, 0.0393965431, 0.0479105935, 0.0080944486, 0.0550819226, 0.0107875122, 0.00862848386, -0.0109019484, -0.0164940599, 0.0382979587, 0.0459880643, 0.007865577, -0.0169975795, -0.0037802069, -0.0230245497, -0.0013398563, 0.0210715067, -0.0320726335, -0.0127329268, -0.0135568669, 0.0435772799, 0.0151742306, 0.00685853884, -0.00401670812, 0.0303179454, -0.0303484611, 0.0245351065, 0.0104442043, -0.000310884818, -0.0138009973, -0.0231313556, 0.03390361, 0.0286242906, 0.000138515403, 0.0497720875, -0.00602696929, -0.00641605211, -0.0323472805, 0.0351852961, -0.0197287891, -0.00626728544, -0.0150292786, -0.0409528762, 0.0250233673, -0.0279529318, 0.0113825807, 0.0528237186, -0.00307642459, 0.0454387739, -0.0714081451, 0.0320421159, 0.00955923181, -0.0176384225, 0.0116114523, 0.000974614348, 0.0155251678, 0.0194541421, 0.00847590249, 0.00275409617, -0.0127863307, -0.00135034637, 0.0341477394, 0.0137094483, -0.014525759, 0.011458871, -0.0113673219, -0.0269458946, 0.00850641914, 0.0043104277, 0.00842249952, 0.0105052367, -0.00283992337, 0.027937673, -0.000973660732, 0.0302874297, -0.0532814637, 0.000601266511, -0.0189658813, 0.049436409, 0.0474223308, -0.015364958, -0.000243653587, -0.000670881825, 0.00968892593, 0.0200797264, -0.00374587602, 0.0134042855, -0.0273578633, 0.066952765, 0.00964315142, 0.0595067888, 0.017882552, -0.00179664721, -0.0668307, 0.0400984213, 0.0184165873, 0.00859796815, 0.0173637755, 0.00382788852, -0.0327439904, 0.0043562022, 0.00234784791, 0.0113444347, 0.00117010938, 0.00544716, -0.0373214372, -0.0136255287, -0.00372489612, 0.0551429577, 0.025709983, -0.00233068247, 0.0628635809, 0.0263966, -0.00374206156, -0.0187064931, 0.047666464, 0.0433331467, 0.015731154, 0.0405256487, 0.0144189522, -0.00116724847, -0.00840724073, -0.0490091816, -0.00181476632, 0.0204916969, 0.000296818704, -0.0167381912, -0.0149987619, -0.01443421, -0.0117106307, -0.0180046186, -0.00317369541, -0.0173942912, 0.0191337205, -0.017501099, -0.0287463553, 0.00118536758, 0.00758711528, -0.0306841414, -0.00681657856, 0.0225820635, -0.0151208276, -0.00107188511, 0.00495889876, 0.0296160709, -0.0433941819, 0.0158684775, 0.0523049422, -0.00674410257, -0.0013522536, -0.0153725864, 0.00484064827, -0.0621922202, 0.0199118871, 7.77212044e-05, -0.000482777425, 0.0202780813, 0.0232534222, -0.01410616, 0.0113291768, -0.0059125335, -0.0274799298, -0.0301958807, -0.0199576616, -0.00584387174, -0.0143655492, 0.0134042855, -0.0260609221, 0.00676317513, -0.0303179454, 0.00843775738, -0.0114512425, 0.0327134766, -0.0176231638, -0.00775876967, -0.0418988802, 0.0310655944, 0.0019311097, 0.00741927559, -0.0373214372, 0.0391829312, 0.00437527476, -0.0151284561, 0.00641605211, -0.00704545109, 0.0267933123, 0.0500162169, 0.0067517315, 0.0185081363, -0.0188743323, 0.00295817386, 0.0512979031, 0.033812061, 0.017226452, -0.013541609, 0.0552039891, -0.0041006282, 0.0637180358, -0.0290667769, 0.01187847, -0.0165398344, -0.00120253302, 0.0192557853, 0.000205746619, -0.0122217787, 0.00341401109, -0.0126184905, 0.0402204841, -0.00969655439, 0.0064961575, -0.0475443974, -0.0285327416, -0.0254048202, -0.0659762397, 0.0075565991, -0.0311113689, 0.00365432701, -0.0348801315, 0.0416242331, 0.0419904292, 0.0163719952, -0.0235738419, -0.0392744802, 0.000919303566, -0.0136255287, -0.0211477969, -0.0256642085, 0.0190269146, -0.000502565352, -0.034086708, 0.0179893598, 0.0158379599, 0.0301653631, 0.00310884812, 0.00228872267, 0.00345597113, 0.0381148607, 0.0144876139, -0.0377791822, -0.0337510295, -0.00625965651, 0.0164940599, -0.00681657856, -0.0291125514, -0.00212279032, 0.012755814, 0.0111384504, -0.00570273399, 0.0435162447, -0.0206290204, -0.032408312, -0.00237073516, 0.0213156361, -0.00906334165, -0.0419293977, -0.018996397, -0.0378402136, -0.0332017355, -0.0397932567, -0.0261829868, -0.0445538, -0.0119776484, -0.000981289777, -0.0477885269, -0.0071331854, -0.0225210302, -0.0175773893, -0.0226888694, -0.0266254731, -0.0139078042, -0.0445232838, -0.0456829034, -0.0114893876, 0.0348801315, 0.0305925924, 0.00139612076, 0.0479105935, -0.0195151754, -0.0273883808, 0.00269115623, -0.000516869826, 0.0106578181, 0.0324693434, 0.0169670638, 0.0153954737, 0.0183860715, -0.0194999166, -0.0205985028, -0.0304705277, -0.00363334711, -0.0130075738, 0.00207892293, -0.0275104456, 0.011825067, 0.0139764659, 0.00853693485, -0.023467036, -0.000409824395, 0.0211783126, 0.017882552, -0.0140909022, -0.0163109638, 0.00745742116, -0.0507180914, 0.0434552133, -0.00201789034, 0.0016145031, 0.0460491, 0.00920829363, 0.0337205119, -0.0148232933, -0.00518395659, -0.0184318461, 0.000431757973, 0.00850641914, -0.0250081085, -0.0601476282, 0.00638553593, -0.0146325668, 0.0103221387, 0.00721329078, -0.032316763, -0.0374740176, 0.0232686792, -0.0179435853, -0.0332017355, 0.00389464293, 0.00176708458, -0.0157158952, -0.00474147033, 0.0223837066, -0.0185233951, 0.0187370088, 0.0556617342, -0.0513589345, 0.0182334892, 0.0174553245, -0.0380538292, 0.000240196663, -0.0127787013, 0.00187293801, -0.0284869671, 0.0110087553, 0.0130457189, 0.00039814238, 0.00958211813, -0.0048482772, 0.0421735272, 0.0375960842, -0.0408308096, -0.024855528, -0.00535942521, -0.0106349308, 0.0375045352, -0.00626728544, 0.0160363168, -0.00278842705, 0.0355514921, 0.0125574581, -0.0344834216, -0.0614903457, 0.000883065455, 0.0311418846, -0.0176841971, -0.017134903, 0.0187370088, 0.00948294066, 0.00365242, -0.00665636826, -0.0303026866, -0.00538231246, -0.00695390208, -0.00221052463, -0.0489481464, -0.0019644869, -0.0563941263, -0.0258167908, -0.0421124958, -0.0296313278, 0.0304400101, -0.0149758747, 0.0100703798, -0.0279224161, -0.0122904405, -0.0243672673, -0.0218191557, 0.0283343848, 0.0291888416, -0.0467204563, 0.0520302951, -0.0226888694, -0.0436688289, -0.0301348474, -0.00432568556, -0.00666781189, 0.00138372357, -0.00600026781, 0.0533424951, 0.0196830146, 0.0516641, 0.0243825242, -0.0387862176, -0.0268390868, -0.00259579299, -0.0702485219, 0.0367111117, -0.00183097809, 0.025038626, -0.034178257, -0.0204764381, 0.00857508089, 0.0147775188, 0.0161888972, -0.00580954086, 0.0127710719, -0.0173942912, 0.031370759, -0.0113902092, 0.0121607464, -0.0113902092, -0.0345749706, -0.0194236264, 0.00771681, 0.0498636365, 0.00788083486, -0.0167076755, -0.0220175106, -0.00699586188, 0.0261829868, 0.00917777792, 0.0115733072, -0.00307451724, 0.024489332, 0.0166924167, -0.0332932845, 0.017501099, 0.000870668213, -0.0111994827, -0.000874482736, 0.0299364924, 0.0128244758, -0.00972707104, 0.00212088297, 0.0145944208, 0.00621388201, 0.0299822651, -0.01410616, 0.00471858308, 0.0200492106, -0.00222769, 0.0337815471, 0.0133279944, -0.0103602847, -0.00534798158, 0.0094219083, -0.00151913962, 0.00121397665, -0.00121493021, -0.0208884086, 0.00744216284, -0.00863611326, -0.0102839936, 0.000394566247, -0.0125879738, 0.00325761526, -0.00346741476, 0.00124640018, 0.00165550935, -0.00610326044, 0.00620243838, 0.00743453391, 0.0140222404, -0.00697297463, 0.00102134247, 0.00318132434, -0.0101619279, -0.0113291768, -0.0100322338, 0.0404646173, -0.00193492428, -0.00798001233, -0.0308672395, -0.00176899182, -0.0152962962, -0.0474528484, 0.00624058349, -0.0204154048, 0.0205374714, 0.00974995829, 0.0023879006, -0.0375960842, 0.0215292498, 0.0118403248, -0.000984150684, 0.0200492106, 0.00252331677, 0.00426846743, 0.00476054288, 0.0295855533, 0.0171501618, 0.0139688365, 0.0296008121, 0.0184623618, 0.00837672502, 0.0394270606, 0.00803341623, -0.0121683748, 0.00855219364, -0.000429612293, -0.00998645928, -0.0259693731, 0.00091405859, -0.0127252974, -0.000212183659, -0.0372298881, -0.00539757079, 0.0405256487, -5.20028771e-05, 0.000535465719, -0.00462322, -0.00408918457, 0.01410616, 0.0382064097, 0.0368942097, -0.0439434722, -0.0235891, -0.00839961227, 0.0248402692, -0.0023421261, -0.0123056984, -0.00344834197, 0.00634739082, -0.00448208163, 0.0403730683, -0.0209952146, 0.00330911134, -0.0199271441, 0.0321946964, 0.000644180051, 0.00771299517, -0.00328813144, -0.0121912621, 0.00592397712, -0.0290515181, 0.0174553245, 0.00866663, 0.0178672951, 0.0269916691, 0.00440960564, 0.0234822929, 0.0137247061, -0.0192557853, 0.0146020502, -0.0021533065, -0.0147927767, -0.0144494688, -0.0389998332, -0.0159600247, -0.000298249157, 0.047941111, -0.00727432314, 0.0170586128, 0.00222578272, 0.00568366097, -0.0238027144, 0.018813299, 0.0134348013, 0.00279605621, 0.0572180636, -0.0111765955, 0.0119395033, 0.0123591023, 0.0225362889, 0.0122828111, -0.00440960564, -0.0208426341, 0.0147241149, 0.0100703798, 0.0293566827, 0.0255726613, -0.018996397, 0.0178978108, -0.00288188318, 0.0112834023, -0.0101390406, 0.00101562066, 0.00129026733, 0.0269306358, 0.0183708128, 0.0415326878, -0.0154870227, 0.0143350326, 0.016570352, 0.0422040448, 0.0246571712, 0.00824703, -0.0405256487, 0.00360473804, 0.0260151476, 0.0300280396, -0.0137475934, 0.0172569677, 0.0390913822, 0.0181724578, -0.0131906709, 0.000628921902, -0.0155327972, 0.023924781, -0.0278308671, -0.0227041282, -0.026350826, 0.0141366767, -0.0115046455, -0.0116877435, -0.0176231638, -0.00706833834, -0.00813259464, 0.00802578684, -0.0136026414, 0.00901756715, 0.0207816, -0.022719387, 0.00190345431, 0.0122370366, 0.00717896, 0.00174324366, -0.016295705, -0.0150063913, 0.0208273754, -0.0061642928, 0.0163567383, -0.00113291771, -0.00653048838, -0.0296771023, -0.0248860437, 0.00594304968, 0.00372108142, -0.00395949, 0.0344223864, 0.0080029, 0.0319810845, -0.0330186374, -0.0206747949, 0.00751082459, 0.0119929062, -0.025603177, 0.0327134766, 0.0413801037, -0.0529457815, 0.0165093187, 0.0117106307, 0.00839198288, -0.00040457939, -0.034452904, 0.0140374983, 0.00516106933, -0.03390361, -7.83768264e-05, 0.0163262207, 0.000233163621, -0.0165093187, -0.00904808287, 0.0376571156, -0.000680895, 0.0120310513, 0.00563788647, 0.00310312631, 0.0109477229, 0.0198508538, -0.0167839658, -0.00315462262, -0.0132059297, 0.0420209467, 0.00770155154, -0.00839961227, 0.0146630825, 0.0090404544, 0.0295702964, -0.0171959363, -0.0361007862, -0.0194541421, 0.0231466144, -0.0315233395, 0.017607905, -0.00293147215, -0.0172417108, 0.0256642085, -0.0298296846, 0.00994831417, 0.0381453782, 0.00292193587, -0.0236959085, 0.0202475656, -0.0100169759, -0.0342087746, 0.0304705277, 0.000668974535, 0.0254963692, -0.0134729473, -0.00601934036, 0.0104365749, 0.0080944486, -0.016570352, 0.0331712179, 0.0132288169, -0.0327134766, 0.0129617993, 0.0127024101, 0.027006926, -0.00458507426, 0.00337586575, -0.0177299716, -0.00556922518, 0.0161583815, 0.0212698616, 0.0108180288, 0.0110850465, -0.00217237929, 0.0179283265, 0.0209494401, 0.017134903, -0.00617192173, -0.0068051354, -0.0204001479, -0.0106349308, 0.0130686061, -0.004470638, -0.000594591082, 0.000385983527, -0.0384505391, -0.00270069274, -0.00932273, -0.0148690678, -0.0076023736, 0.0163262207, 0.0106654475, 0.0101695573, -0.0357040726, 0.0235280674, -0.00413877331, -0.00796475448, -0.0150216492, -0.00241269497, -0.0164330285, -0.0296313278, -0.0194388833, 0.0151360855, -0.0263203103, -0.0134958345, -0.0284106769, -0.011916616, -0.0102839936, 0.0113596935, 0.0189353656, -0.0306078494, 0.00968892593, 0.013030461, -0.0326219276, 0.0411054567, -0.00312982826, 0.0113062896, -0.00039814238, -0.0297839101, -0.0102687357, 0.0110850465, -0.0177299716, -0.0127939591, -0.0211630557, 0.0202475656, -0.0111079337, 0.00448589632, 0.0159752835, 0.0128778787, 0.0136255287, 0.00422650762, 0.00287997583, 0.0259998888, -0.0073429849, 0.00247944938, 0.0351242609, 0.0112452572, -0.00651904475, -0.00449352525, -0.0105738984, -0.00646564132, -0.00829280447, 0.0248860437, -0.00121397665, -0.0240621027, 0.00300776283, 0.0138238845, -0.00122828118, -0.00630543055, 0.0178367775, -0.0222616419, 0.0140374983, -0.00624058349, 0.0192405283, 0.022810936, -0.006122333, 0.00947531126, -0.0261524711, -0.00918540638, -0.00891838875, -0.0213156361, 0.0191032048, 0.0104213171, -0.00782743096, 0.00389082846, 0.00040887075, -0.0102077024, -0.0059544933, -0.0112681445, 0.000337109755, -0.0249013025, 0.0253743045, -0.0032957606, 0.0137323355, -0.0109782396, 0.0231313556, 0.00242223148, 0.0208273754, 0.0380233116, 0.016478803, 0.00471858308, -0.00370391598, -0.00551963598, -0.0247182045, -0.00813259464, 0.0475138798, -0.00730102509, 0.0116267111, -8.9045614e-05, -0.00603841292, -0.0303637199, -0.0227499027, -0.00495127, -0.0100169759, -0.0381453782, 0.0180351343, 0.0535866246, -0.000504472584, 0.0199729186, 0.00617192173, 0.0299670082, 0.0129312826, 0.0576452948, 0.00545478892, -0.00155442406, -0.00120730116, -0.0231618732, -0.0444622524, -0.0015839868, -0.026350826, 0.0336594805, -0.0182029735, 0.0135339797, -0.000357374491, 0.0016049667, 0.00148671609, 0.00610707467, -0.0460796133, 0.0451946408, -0.0362838805, -0.0127329268, -0.0204916969, 0.0181266833, 0.0165856089, 0.00229062978, 0.0125574581, -0.0531288795, 0.00621388201, -0.0163414795, 0.00460414682, 0.0360702686, 0.0221395772, 0.0121226, 0.0209036656, -0.022810936, 0.012481167, 0.0105052367, -0.0202323087, -0.017318001, 0.00113482494, 0.0226583537, 0.0130991219, -0.00868951716, -0.00736587215, -0.0202780813, -0.0205374714, 0.0202323087, 0.0355514921, -0.0241841692, -0.0556617342, 0.00259960745, 0.00211325381, -0.0202933401, 0.00694627315, -0.00912437402, 0.018813299, -0.000578379259, 0.0223531909, -0.0248097535, -0.0217123479, -0.00168888655, 0.0171196442, 0.0185996853, 0.0250081085, -0.0168144815, 0.0118174376, -0.027937673, 0.00554633792, -0.0292193592, -0.0335679315, 0.0304552689, -0.000472049025, 0.016021058, 0.0132440748, -0.0176231638, -0.00968892593, 0.00543953059, 0.0218954459, -0.0289599691, -0.00573706441, -0.0185081363, -0.00888787303, -0.000506379874, 0.00744979223, 0.0536171421, 0.00383170298, 0.0221853517, 0.0519997776, -0.0174248088, -0.00621006731, 0.00508859335, 0.00571036292, -0.0177147128, -0.0137933679, 0.0107875122, 0.00999408867, -0.0282733534, -0.00847590249, -0.0103755426, 0.026533924, -0.00930747204, 0.033049155, 0.0172111932, -0.0160973482, -0.0032919459, 0.0106501896, -0.00376685592, -0.0383895077, -0.027190024, -0.00427228212, -0.0285022259, -0.0172417108, -0.0218954459, -3.49268594e-05, -0.0182945225, 0.0178367775, -0.011405468, 0.00126928743, -0.0579199381, -0.0189201068, 0.0268085711, -0.0141443061, 0.0226888694, 0.0164940599, 0.00281703612, -0.0153878452, -0.0097347, 0.0181419402, -0.000123376449, -0.00101848156, 0.011733518, 0.0279681906, -0.0319505669, 0.00162022491, 0.0203848891, -0.0126261199, 0.0190269146, -0.0128855081, 0.0056951046, 0.00625202712, -0.0205374714, -0.0195914656, 0.0260304045, 0.0166161265, -0.0147698894, -0.0111384504, 0.036039751, -0.00130266463, -0.00463084877, 0.000404817809, 0.0124353925, 0.00105471967, 0.00744979223, -0.0337815471, 0.00901756715, 0.00378211401, 0.0259388555, 0.00134176365, 0.00169556204, -0.0107035926, -0.0150826816, -7.90324557e-05, 0.00476817228, 0.00949057, 0.0222463831, 0.00405866792, -0.0274341553, 0.0147851482, 0.0128626209, -0.00125402922, -0.0166466422, -0.00318132434, -0.0131906709, -0.0145791629, -0.000256527652, -0.000958402583, -0.00580954086, 0.0086208554, 0.0722626, 0.000595067861, 0.00135606818, -0.00152581511, 0.0334153511, -0.015601459, 0.00459270319, 0.0219259616, 0.0199881773, 0.00741927559, 0.0299059749, 0.0165856089, 0.00910911616, 0.034452904, -0.0286548063, 0.00897942204, 0.0348496176, -0.00833857898, 0.0266407318, -0.0371993706, 0.00431424193, 0.0139764659, 0.0106196729, 0.016860256, -0.0236653909, 0.0232686792, 0.0185233951, -0.000812496524, 0.0055310796, -0.0144570973, 0.00201979768, -0.0097881034, 0.0307756905, 0.00287425402, 0.00521065854, 0.0069195712, 0.0118479542, -0.00900230929, -0.0128244758, 0.023467036, 0.00949819852, 0.00801052898, -0.000297057122, 0.00532128, -0.0161888972, 0.0238942634, -0.00400526449, -0.0154412482, 0.0161583815, 0.0162499305, -0.0177757461, -0.0109553523, 0.0284106769, 0.00716370158, -0.0273120888, 0.0144265816, 0.0394880921, -0.00260914373, 0.0199881773, -0.00743453391, -0.00464229239, -0.0302111376, -0.0017604091, 0.00648471387, 0.00747267948, -0.0274188966, -0.00242986041, 0.0172722265, -0.0248860437, 0.0195151754, -0.00984913576, 0.00917014852, 0.0160515737, -0.00131220091, -0.00980336219, -0.0313402414, 0.0267170221, -0.012847363, 0.00538612716, -0.0182334892, 0.0056951046, 0.0314012729, 0.0290820356, -0.0149301, -0.0273883808, 0.0230245497, -0.000874482736, 0.0143884365, 0.0157616697, -0.00291239959, 0.0102229612, -0.0149758747, -0.0190421715, 0.0139993532, -0.016768707, -0.0223226752, 0.0240773614, 0.0170586128, -0.00231923885, 0.0166008677, -0.00984913576, 0.0131220091, 0.00453548506, 0.0143655492, 0.00679369178, -0.0183860715, 0.00952871516, 0.00292002852, -0.00589346047, 0.00719803246, -0.00560355559, -0.0212393459, -0.0300890729, -0.0208884086, 0.0443707034, 0.00916251913, 0.0128092179, -0.00169460836, -0.00783506, 0.0188895911, -0.0217276067, 0.00842249952, 0.00986439455, -0.00155728497, -0.00108237506, -0.00152867602, -0.00127024099, -0.0143960649, 0.0117640337, -0.00646564132, -0.00863611326, 0.0267627966, 0.00376685592, 0.00125021476, -0.00355514907, -0.00914726127, 0.00875054952, 0.0215292498, 0.0143579198, 0.00395186106, -0.035856653, 0.00531365117, 0.0351547785, -0.0178520363, -0.00791898, -0.006377907, -0.0323777944, 0.0069653457, 0.00105090509, -0.00735061429, -0.0163567383, -0.0151284561, 0.00626728544, 0.0164635442, -0.00605748594, 0.00115771219, 0.0147546316, -0.00895653479, -0.0344223864, -0.00120444025, 0.0122599239, 0.0389082842, 0.0116724856, -0.016860256, 0.0207816, 0.00499704434, 0.0187522676, -0.0143731777, 0.00592779135, 0.00210371753, -0.00481394632, 0.0290972926, 0.00256527658, 0.00830806326, 0.0420514643, 0.00650378689, 0.034636002, -0.010802771, 0.00277316896, -0.0127863307, -0.0136331571, 0.0178520363, 0.00650760112, 0.0128397336, -0.008193627, 0.0238179732, -0.00406629732, 0.0303484611, 0.0317064375, 0.0353683941, 0.00661059376, 0.0204459224, 0.0210562479, -0.00323091331, 0.000334010459, 0.0148232933, -0.014014611, -0.00784269, -0.00550056342, -0.0209341832, -0.00716370158, -0.0131220091, -0.0119852778, -0.00102706428, 0.0163567383, -0.0289599691, 0.00601552567, 0.0102382191, 0.0364669785, 0.00506570609, -0.000796284759, -0.0185539108, -0.0308824964, 0.0217123479, -0.00517632766, -0.00362762529, 0.0232991967, -0.0130914934, 0.015036907, 0.0132440748, -0.015914252, -0.0112299984, 0.00784269, -0.0102687357, 0.0186759755, -0.0113902092, 0.0192252696, 0.00563025754, 0.0221243184, 0.0192557853, -0.0133432532, 0.0102992514, -8.52310768e-05, 0.00685472414, -0.00465373602, -0.0133508816, 0.0292956494, 0.00238027144, -0.0281360298, 0.00854456425, -0.0055348943, 0.0241383947, -0.00218573, 0.0192710441, -0.00992542692, -8.77939674e-05, 0.00660296483, -0.0352768451, -0.011970019, 0.00183097809, -0.0234365202, 0.0175316148, 0.00916251913, -0.0174248088, -0.00547004677, 0.00320421159, 0.00157731131, -0.012519313, -0.0280139651, -0.0142968874, -0.0109934974, -0.00465373602, 0.0133432532, 0.0043027983, -0.0103450259, 0.00278079789, -0.0197745636, -0.0157464109, -0.00508477865, -0.00399382086, 0.0106044151, 0.00875054952, -0.019744046, -0.00696153101, -0.00813259464, -0.000195971879, 0.00803341623, 0.00627491437, -0.0160363168, -0.00942953676, -0.0116648562, 0.045713421, 0.024870785, -0.0213156361, -0.00723617803, 0.012755814, -0.00136083632, -0.00828517601, 0.0249775928, 0.00788846426, 0.00791135151, -0.0104136877, 0.00444012182, -0.0200797264, -0.0297533944, 0.00365623436, -0.0161583815, -0.00268543442, -0.0051076659, -0.0123972474, 0.0186759755, 0.00207510847, -0.0170128383, 0.026259277, 0.00349793094, -0.000486830366, 0.0212088302, -0.0125956032, -0.00444393652, 0.0111003043, 0.016661901, -0.00350556, 0.00270069274, -0.00343308388, 0.0193320774, 0.0226583537, 0.00912437402, 0.00532128, -0.00528313452, 0.00686235307, -0.024214685, -0.00486735, 0.0193168186, 0.026533924, 0.0069195712, -0.0018548189, -0.0147241149, -0.0355514921, -0.03259141, 0.0105815278, -0.0217123479, -0.0114359837, 0.0188590735, -0.00706833834, 0.000579809712, -0.0108714327, -0.0101542994, -0.0125574581, -0.0073887594, 0.0053670546, -0.0126337484, -0.000515439373, -0.011039272, -0.0144952433, 0.00752608292, -0.0552039891, -0.00622532563, -0.0151131982, 0.00687379669, 0.0176231638, -0.00656863395, 0.0176231638, 0.0141137894, 0.00300394837, 0.00576758105, 0.0186149441, -0.0138315139, 0.0366500765, -0.00562644284, -0.0249013025, 0.00706070941, 0.00348839466, 0.00726669421, -0.0138544012, -0.00517251296, 0.0123056984, -0.0341477394, 0.0171806775, 0.0477885269, -0.0126566356, -0.0146020502, 0.00589727517, 0.0137399649, 0.0183097813, 0.0107264798, 0.002979154, -0.0223531909, 0.00263584545, 0.00730484, -0.0241689105, -0.017592648, 0.00907097, -0.00790372211, 0.00233640429, 0.00190345431, 0.00260342192, -0.00668306975, 0.00943716615, 0.0134729473, 0.0150140198, 0.00864374265, 0.0075604138, 0.00406629732, 0.0287005808, -0.0154946521, 0.0101848152, -0.00884209853, 0.0186607186, -0.00194255332, 0.0126947816, 0.00840724073, -0.0274341553, -0.0297228768, 0.0231618732, -0.00228490797, 0.0026587327, -0.0190421715, -0.0104594622, -0.00663729571, -0.0149835041, -0.000913581753, -0.0129846865, -0.0366805941, 0.0172569677, 0.000115270559, -0.0189506225, 0.00199691043, 0.0268543456, -0.00369247235, 0.0226125792, -0.0121378591, 0.000627014611, -0.00512673846, -0.00165646302, -0.028548, 0.000704735809, -0.000666113629, -0.00307451724, -0.0302111376, -0.0184776206, 0.00845301524, 0.0401899703, 0.00952108577, 0.00419980614, -0.00198165234, 0.0200797264, 0.00781217311, 0.0161736403, -0.0178367775, -0.0145410178, -0.0176841971, 0.00867425837, -0.0282733534, 0.00977284554, -0.0127634434, -0.0129465405, 0.017699454, -0.0094676828, 0.0118479542, -0.00996357203, 0.0299517494, 0.00849116128, -0.00452785613, 0.000564074784, -0.0182792637, 0.000140422664, -0.0104213171, -0.000237931788, -0.0153878452, -0.0192710441, -0.00908622891, -0.0110850465, -0.000409824395, 0.00263584545, 0.0109477229, 0.0114207258, 0.00821651425, 0.00737731578, 0.00155728497, -0.0142358541, -0.0080944486, 0.0134882051, 0.00661059376, 0.00649234327, 0.0208273754, -0.0180809088, -0.00658770651, -0.00427991105, 0.0157921854, -0.00437527476, -0.00635883445, 0.00437527476, 0.00852930639, 0.00492075365, 0.0120157935, 0.0359176882, -0.0307299159, -0.0104136877, 0.0219259616, 0.025893081, 0.00556159578, -0.000289904856, -0.0223226752, 0.0152352639, -0.00975758769, -0.0100627504, -0.00094838941, 0.000790086109, 0.0182334892, 0.00763289, 0.0122522954, 0.00477580121, 0.00240888051, -0.0142358541, 0.0082394015, 0.032774508, -0.00203505578, 0.00603078399, 0.00859796815, -0.00596593693, 0.00522591639, -0.00388510665, 0.00838435348, -0.00740401773, 0.02598463, 0.00710266922, 0.00436383113, -0.0101390406, -0.00259197829, -0.00330148241, 0.0167992245, 0.00348648732, -0.00561118498, -0.0133508816, 0.0172111932, 0.0126184905, 0.00116915582, 0.0153420707, 0.00962789264, -0.0111918533, 0.00934561715, -0.000215044565, -0.0109706102, 0.0172111932, -0.0137018189, -0.0107646249, -0.00137990899, -0.00117869209, -0.00197402318, 0.0116648562, -0.00930747204, 0.0281970631, 0.000300394837, 0.000998455216, -0.00576376636, 0.006122333, -0.0140451277, -0.0201712754, -0.00722473441, 0.00201216852, -0.00747267948, 0.0144494688, 0.0301195886, -0.00310312631, 0.00878869463, -0.00879632402, -0.00558448303, 0.00355705642, -0.0085140476, 0.0246419124, 0.00527932029, -0.00325380056, -0.00925406814, 0.0236959085, 0.00420362037, 0.00361618167, -0.00376113411, -0.00139802811, 0.00829280447, -0.025420079, -0.00871240441, 0.0116495984, 0.00272167264, 0.0208121166, -0.0106120436, 0.00723999226, -0.0222311262, 0.00241841679, 0.0069653457, -0.00434475858, 0.0333848335, -0.00873529166, -0.028548, -0.033140704, -0.0100322338, 0.00747267948, 0.024306234, 0.00838435348, 0.0118708415, 0.0128931375, -0.000585531525, 0.00140470348, -0.00365814171, -0.000233640429, -0.0147393737, -0.00469951052, -0.00989491, 0.00576758105, 0.0161431227, 0.00526024727, -0.0210409891, -0.0185081363, 0.0159447677, 0.00579428254, 0.000613663753, -0.0145562757, -0.00259388564, -0.00590109, -0.0153496992, 0.0191184636, -0.00597356586, -0.0497110561, -0.00529457815, -0.00412351498, -0.00751082459, 0.00355705642, -0.0167839658, -0.00764051871, 0.00228490797, -0.0115275327, -0.015364958, 0.0128397336, -0.0138391424, -0.0208273754, -0.00202742685, 0.0036733998, 0.0061185183, -0.015822703, -0.00993305631, -0.00101180607, 0.0170128383, 0.00958974753, -0.000264871953, 0.00826991722, -0.0103297681, 0.00773969712, -0.0193778519, -0.0273731221, -0.0238942634, 0.00214377022, -0.00230779522, 0.00136369723, 0.00363143976, -0.0152581502, -0.000700921286, -0.00859796815, -0.00369247235, 0.00499704434, 0.025145432, -0.014274, 0.0276019946, 0.0162499305, 0.0383589901, -0.00700349128, -0.00103373965, -0.0208578911, 0.0320726335, 0.00582861342, -1.02441199e-05, -0.00579046831, 0.00378592871, -0.00517251296, -0.00481013209, 0.00911674462, 0.00659915, -0.00989491, 0.0169823226, 0.00612996193, 0.00151818595, -0.00432187133, -0.0102992514, 0.00426465319, 0.00336442213, 0.00777402753, 0.0019644869, -0.0133127365, -0.00134653179, -0.0101161543, -0.013175413, 0.0167229325, -0.0148232933, -0.0128778787, 0.00900230929, -0.00226774253, -0.00156872859, -0.0125956032, 0.00563407224, -0.00631687418, 0.0131372679, 0.0106654475, -0.0312029179, -0.00394041743, -0.00347885839, 0.0102153318, 0.0138391424, -0.0301958807, -0.0221853517, 0.00700730551, -0.00222387537, 0.00677843345, 0.000977475313, -0.00929984264, -0.0288073886, 0.00106520962, -0.00652667414, 0.00213995553, -0.0214377, 0.015929509, 0.00106234872, 0.00395567575, -0.00495127, 0.0116877435, -0.000282037392, 0.0130991219, -0.0240468457, -0.00283610867, 0.0247029457, 0.0166924167, 0.0295245219, -0.00750319567, 0.00679750601, -0.0295245219, 0.00564551586, -0.0141671924, -0.0224142224, -0.00846064463, 0.000975091185, -0.0254658535, 0.0206595361, 0.00112910313, 0.00177376, 0.0165245775, 0.000627968286, -0.0169975795, -1.55859616e-05, 0.00799527112, 0.00981099065, -0.00688142609, 0.00471858308, 0.00568747567, 0.000431996392, -0.0194694, 0.0121912621, 0.0147088571, -0.00595067861, -0.00197974499, 0.0186607186, -0.00316034444, -0.0147698894, 0.0420819782, 0.008193627, -0.0195151754, -0.00264538196, -0.00334153487, -0.0146935992, 0.00968129653, 0.00351318927, 0.0187980421, 0.0145486463, -0.00158780126, 0.00826991722, 0.000343785214, -0.0220480282, 0.00752989715, -0.0166313834, 0.0133356238, -0.0212088302, -0.017882552, 0.00501993159, -0.0146020502, -0.00807919074, -0.000176660775, 0.0269916691, -0.0138772884, 0.00325570791, 0.0146325668, -0.00416166056, -0.0271747671, 0.00946005341, -0.00302874297, 0.0256642085, -0.000667544082, -0.00390990125, -0.0052716909, 0.00510003697, -0.0144494688, 0.0101008955, -0.000617955113, 0.0180961657, 0.00621769624, -0.0082394015, 0.0420819782, 0.0214071851, -0.00697297463, 0.00578283891, 0.0055272649, 0.0140069826, 0.017043354, 0.000850165088, -0.0128855081, 0.00135034637, 0.00402433705, -0.0265491828, -0.0272663143, 0.0159752835, 0.0027903344, 0.0202628244, 0.0179588441, -0.00210181018, 0.00364669808, 0.0174705833, 0.000713318528, -0.00599645311, 0.0131220091, -0.00919303577, -0.00570273399, -0.0169975795, -0.025053883, 0.0401594527, 2.10246581e-05, -0.00864374265, -0.0223379321, -0.00865900051, -0.00249852217, -0.00839961227, -0.0141443061, 0.0097881034, 0.00921592303, -0.00784269, 0.0251149163, -0.00971181318, -0.017318001, -0.0130380895, -0.0237874575, 0.00499322964, 0.0211325381, 0.0253132712, -0.00304590841, -0.00276744715, -0.032682959, 0.0035417981, 0.0181419402, 0.0159905422, 0.00117964577, 0.0116343396, 0.0144494688, 0.00219717366, -0.00883446913, -0.0127405562, -0.00582098449, -0.0178520363, 0.00435238751, -0.0121454876, -0.00457744533, -0.0139383208, 0.00299059763, -0.0190116558, -0.023375487, -0.0212393459, -0.0210104734, 0.00625584181, -0.00580954086, 0.0194541421, 0.00478343, 0.0106883347, -0.000162117853, 0.00425320957, -0.00461177621, 0.0158379599, 0.0225973204, 0.0140680149, 0.00557303941, 0.0156090884, 0.00826228876, 0.000959356199, -0.0156853795, 0.0136789316, 0.00624821289, -0.00715225795, 3.14401332e-05, 0.0130380895, 0.00329003879, 0.000291812117, -0.0226125792, 0.0203696303, 0.00432950025, 0.0158532187, 0.0225210302, -0.0161278658, -0.0161888972, -0.0129999444, 0.00770155154, -0.00436383113, -0.0356430411, 0.0178520363, 0.0073467996, 0.00783506, -0.00349602383, 0.0102992514, 0.0150140198, 0.0270374436, -0.0111079337, 0.00626728544, 0.0137170777, -0.0196372401, 0.0117182601, 0.00890313089, 0.0231160987, 0.0205832459, 0.0178520363, 0.0312181767, 0.0339646451, -0.00740020303, 0.0085140476, -0.018630201, -0.0109248357, 0.00132555189, -0.00474528503, 0.0104060583, -0.0233449712, -0.00398237724, 0.0231923889, -0.0129083954, 0.001635483, 0.0126795229, -0.0107951416, 0.0112147406, 0.0137247061, 0.0191184636, 0.0078198025, 0.0109553523, 0.00653048838, 0.0107722543, 0.0185081363, 0.00769010792, 0.0149301, -0.000745742116, -0.00665255357, 0.00271785818, -0.00632450357, -0.0202780813, -0.00955923181, 0.0102382191, 0.00608418742, 0.0106044151, -0.00751082459, 0.00524117472, -0.0192863028, 0.00273693074, 0.0213156361, 0.0140985316, -0.00643512513, 0.0146478247, -0.00348267285, -0.00394041743, -0.00533653796, 0.00923118088, -0.0238790065, 0.00565314479, 0.0310655944, -0.0105510112, 0.0350327156, -0.000284898269, 0.00266826898, 0.030913014, -0.0174248088, -0.00269306358, 0.00150388142, 0.0070149349, 0.00867425837, 0.00592016242, -0.0247792359, -0.00965840928, -0.00191680517, -0.00264728907, -0.0137018189, -0.0111231916, -0.0207053106, 0.0128244758, -0.00600026781, 0.00852930639, -0.0014008889, 0.00324426428, 0.00098701159, 0.00731246872, -0.000205985038, -0.000319229119, -0.0113520641, 0.00955160242, -0.00073429849, 0.0267017633, -0.00200263225, 0.0082394015, 0.00841487, -0.00258244202, 0.00443249289, 0.0106120436, 0.00889550149, -0.0100017181, 0.0194846578, 0.0224599969, -0.00157921854, 0.0103755426, 0.010055121, 0.00534416735, -0.0105281239, -0.0188285578, 0.0081478525, -0.0231008399, 0.00467280857, -0.024214685, -0.00190154708, 0.00534035265, 0.0148995845, -0.00543190166, -0.00397474831, 0.00557303941, 0.0148232933, -0.00496271346, 0.000210634, 0.0129999444, 0.00323091331, 0.0193778519, 0.0267017633, 0.00827754661, -0.0100322338, 0.0198966283, -0.000689954497, 0.0324693434, 0.0121149719, 0.0159752835, 8.7853572e-05, -0.0106273023, 0.00237264251, -0.00648471387, -0.0119318739, 0.013686561, 0.00171368103, 0.0154031031, 0.028029222, 0.00871240441, -0.00486353552, -0.016295705, 0.0054814904, -0.0117030013, 0.0189658813, 0.0222158674, 0.00442486349, 0.0160058, 0.0148156639, 0.00625584181, 0.00332818413, 0.016112607, 0.00691194227, -0.00868951716, -0.00459651789, 0.0195762068, 0.0222463831, 0.0128168464, -0.00469569582, 0.00415784586, -0.0188438166, -0.00949057, 0.0145867923, 0.0174705833, -0.00807156134, 0.0163719952, -0.011039272, -0.00991016906, 0.00299441209, 0.0137399649, 0.0118021797, -0.00259579299, -0.000230541118, -0.00722091971, -0.0142358541, 0.0249318182, -0.012298069, 0.0156548619, -0.0218038969, 0.00674791727, -0.008941276, 0.00920066517, -0.0261372123, -0.0162499305, -0.00217047194, -0.0142129669, 0.00290477043, 0.0184776206, -0.000473241089, -0.00145429245, 0.0112834023, 0.0105128661, -0.011313919, -0.0114359837, -0.00259579299, 0.00323854247, -0.00820888486, 0.0225210302, 0.00548912, -0.0150445364, -0.0103602847, 0.0111003043, 0.0118708415, -0.00423795125, -0.0162499305, -0.00336251501, -0.0172111932, 0.00765577704, 0.0172417108, -0.0207816, -0.0202323087, -0.00749556627, 0.00833857898, -0.0164177697, -0.00629780162, 0.0103984298, 0.00242604595, 0.00974995829, 0.00570273399, -0.00712174177, 2.67315645e-05, -0.0162194148, -0.00696153101, 0.00868188776, 0.0170128383, 0.000705212646, -0.0114283552, -0.00617192173, -0.00769773684, 0.00810970739, 0.00662966631, -0.0157769285, 0.026732279, -2.88921419e-05, -0.0268085711, 0.00469951052, -0.0145105012, -0.0175163578, -0.0271442495, -0.0105052367, 0.00073858985, 0.000316606631, 0.0177299716, 0.00436383113, 0.00985676516, -0.00706452364, 0.032408312, -0.00270832167, -0.012427764, -0.00790372211, 0.0326524414, -0.0105281239, -0.0241383947, -0.00902519654, -0.00202933396, 0.00256146211, -0.0032499861, -0.0073467996, -0.0182945225, -0.0176689383, -0.0228567105, 0.00372108142, 0.00667925552, 0.000823463313, -0.00627491437, 0.00778547116, -0.00282847974, -0.00656863395, -1.84021646e-05, -0.0114359837, 0.00799527112, -0.00132364454, 0.00444775075, -0.01740955, -0.0254505947, -0.00608800212, -0.00109000411, -0.00910911616, -0.00645419769, -0.00410825713, -0.00315462262, -0.00419599144, 0.0195304323, 0.00120730116, -0.0115656778, -0.00522973109, -0.0283801593, 0.00415784586, -0.00518014235, 0.0122751826, 0.00343689835, -0.00445919437, 0.0072972104, -0.0189201068, 0.00401289342, -0.0297686514, 0.00550056342, -0.000369294925, 0.00502374629, -0.00610707467, -0.013358511, -0.0115046455, -0.00653048838, 0.0126184905, 0.0172111932, -0.0270527, 0.0268085711, -0.0128244758, -0.0138009973, -0.00549674872, -0.00175754819, -0.00852930639, 0.00264728907, -0.0240773614, 0.00243367511, 0.00345406379, -0.00238217879, 0.00870477501, -0.000696629926, -0.00647327024, -0.0100856377, -0.00648089964, -0.00292575033, 0.00103373965, -0.0185081363, -0.00717514521, -0.00333009148, 0.0114436131, 0.0304094944, -0.000714749, -0.00112052041, 0.00679369178, -0.0108485455, -0.00253857486, -0.0123667307, -0.00648852857, -0.00402815174, 0.00878869463, -0.0185539108, -0.0107264798, 0.0179283265, -0.00450878358, -0.00425320957, 0.0119318739, 0.0164025128, -0.0042608385, 0.006541932, -0.00132078363, 0.00502756052, 0.00710266922, -3.34889592e-06, 0.0180503931, -0.000268924894, 0.0157616697, 0.0261066966, 0.00563407224, -0.0128855081, 0.00763289, -0.0110240141, -0.00899468, -0.0105510112, 0.0248860437, 0.0155022815, 0.00564551586, 0.00378783583, 0.0103908, -0.00584387174, -0.0107646249, -0.00344452751, 0.00365051255, -0.0187827833, -0.0101390406, -0.00144857063, 0.054013852, 0.0216055419, 0.00189296436, 0.0104289455, -0.00864374265, -0.0109172072, -0.0159905422, 0.0214224439, -0.0139078042, 0.00757567165, 0.0120081641, 0.0157158952, 0.00488260807, -0.00314508635, 0.000865900074, 0.00690431334, 0.00940664951, -0.00120062567, 0.00589727517, -0.00177757454, 0.0272205416, -0.00777784223, 0.0109172072, -0.0164025128, -0.01377811, -0.000964601233, -0.027190024, 0.0107188504, 0.0246113967, -0.00143617345, -0.00662203738, 0.000148409352, -0.00925406814, 0.0195609499, -0.0187064931, -0.0289294533, -0.00386603386, 0.00916251913, 0.0127176689, 0.00262440182, 0.000953157607, -0.0221853517, 7.78404064e-05, 0.00445538, -0.00129885, -0.0250081085, -0.00608418742, 0.00543953059, 0.0252217222, 0.000943144434, 0.0183860715, 0.0102229612, -0.00178997184, -9.64958817e-05, 0.0055348943, 0.0145333884, 0.016570352, 0.0195151754, 0.00770918047, -0.00918540638, -0.00255955476, -0.00292765768, 0.0172722265, 0.00890313089, 0.0104289455, -0.0120386807, 0.0119852778, -0.00648471387, -0.0123133278, -0.0139154335, -0.0435467623, 0.00122828118, -0.0189658813, 0.000635597331, 0.0225820635, 0.0290972926, -0.0100703798, -0.0059087188, 0.00796475448, -0.0228261929, 0.00450115465, 0.0117716631, -0.0111155631, 0.0114970161, 0.0166161265, 0.00927695539, 0.0133127365, 0.0220327694, 0.0154793942, -0.0106883347, -0.00299631944, -0.0183860715, -0.00478724483, -0.00107665325, 0.00417691888, 0.0122065209, 0.0432110839, 0.00716751628, -0.0372298881, -0.00997120142, -0.000795807922, 0.00465755025, 0.00540901441, 0.000811066071, 0.00101180607, 0.0121073425, 0.000431757973, -0.00418073311, 0.00294863759, 0.0026587327, 0.017592648, 0.00790372211, -0.00555015216, 0.00812496524, -0.00910148676, -0.0198966283, -0.00178806449, -0.0743987411, 0.00181095174, 0.0239400379, 0.0180503931, -0.0164635442, 0.00478724483, -0.000796284759, 0.00609563105, -0.0247487202, 0.0346054845, 0.0272052828, 0.0108790612, 0.0147317443, -0.00703019276, -0.0311266277, 0.00562644284, 0.012572716, 0.00653048838, 0.0115580494, -0.0112986602, 0.0372909196, -0.0106730759, 0.0226430949, 0.0127481846, -0.0197135303, -0.00749175204, -0.00802578684, 0.00892601814, -0.0199118871, 0.000767198915, 0.00383170298, -0.00361427432, -0.00113482494, 0.00280368514, 0.00908622891, -0.0191947538, 0.00604222761, -0.0160058, 0.0145791629, -0.00241650967, -0.0073925741, -0.017791003, 0.000692815403, -0.00529457815, 0.000884019129, 0.0105738984, 0.00778928585, -0.00971181318, -0.0115122749, 0.0125498287, -0.012298069, -0.0167229325, -0.0405561626, -0.00410825713, 0.0302111376, 0.00587438792, -0.00127310189, -0.0104976073, 0.00788846426, 0.0103526553, 0.00848353188, -0.00710648345, -0.0297228768, -0.00308977556, -0.00438290369, 0.011733518, 0.00594304968, 0.0126184905, -0.000979382545, 0.0026797126, -0.0128702503, 0.0104670916, -0.00708741089, -0.00442104926, 0.00712555647, 0.00705308, 0.00837672502, -0.017699454, -0.00540901441, 0.000537373, 0.0171196442, -0.0033567932, 0.0132440748, 0.00398619194, -0.00135320728, 0.00188056706, -0.0165245775, 0.00244130404, 0.014525759, -0.00578283891, -0.00695771677, -0.0113291768, -0.0146707119, 0.025801532, 0.00479105907, -0.00868188776, -0.0134882051, -0.0047338414, 0.00396711938, 0.0227499027, 0.0153878452, 0.00457744533, 0.00920829363, -0.0131067513, 0.00419599144, -0.0142587414, -0.0218191557, -0.028029222, 0.00846827403, 0.0263355672, 0.0107569965, -0.00392515911, 0.0175468735, 0.0179130696, 0.0176384225, 0.000899754057, -0.00690049864, -0.000439625466, 0.00549674872, -0.00273311627, 0.00567984674, -0.0317064375, -5.82611028e-05, 0.00110335497, 0.00428372575, 0.0148461806, 0.0151437148, 0.00589346047, 0.000800099282, -0.00522973109, 0.0040472243, -0.0098415073, 0.0335679315, -0.0180961657, -0.0118632121, -0.00347122923, 0.00332246232, -0.00375159783, 0.00230207341, 0.0143350326, 0.0133203659, 0.0013703726, -0.0139535787, 0.00794949662, 0.00432950025, -0.0203848891, -0.00653811777, 0.0036943797, 0.00820125639, 0.00501611689, -0.0125574581, 0.019087946, -0.00583624281, 0.000125402919, -0.0110545298, 0.00256718392, -0.00316034444, 0.00110049406, 0.00472621201, -0.0121607464, -0.0215597674, 0.0104136877, 0.012427764, -0.00897942204, -0.0337510295, 0.0144265816, 0.0181114245, -0.0201712754, -0.00283610867, -0.0111003043, 0.027190024, -0.00617573643, -0.00257290574, 0.0163262207, 0.0150979403, 0.000410301203, 0.00240125135, -0.0164482873, -0.0231618732, -0.00564170117, -0.00580954086, 0.0147927767, -0.0272205416, -0.0031641589, 0.0101314122, -0.00885735638, 0.0214682184, -0.000954111223, -0.0126108611, 0.00802578684, -0.0010232497, -0.0156853795, 0.0161888972, 0.0207663439, 0.00744597754, 0.00231351703, -0.00240697316, 0.025420079, -0.00224867, 0.000560260203, 0.014274, -0.00686235307, -0.00826228876, 0.00959737692, -0.0164025128, -0.00245274766, 0.00955160242, 0.00177089905, -0.0222769, 0.0109706102, 0.00670214277, 0.0136789316, 0.00994068477, -0.00955923181, -0.00993305631, 0.00505807716, -0.0185233951, -0.00566840312, 0.025511628, -0.0247944947, 0.0241383947, 0.0155175393, 0.0140985316, -0.00933798775, 0.0295855533, -0.008193627, 0.00275600352, 0.0194541421, 0.0112071112, -0.0117640337, -0.00550056342, 0.00686235307, 0.0142587414, -0.00126547285, -0.0274494123, 0.0236348752, 0.0155175393, 0.0130609768, 0.00204840675, -0.0089870505, -0.0139306914, 0.016860256, -0.00107188511, -0.0211630557, 0.000891648175, 0.0214987341, 0.015822703, 0.00124926108, -0.00188056706, -0.0116572268, -0.0156167168, -0.00544716, 0.0153344413, 0.0102458484, 0.0122294081, 0.0296618454, -0.00396711938, 0.00904808287, -0.00173942919, 0.0409528762, -0.00173752184, -0.00659915, -0.0032499861, -0.00284945965, -0.00598500948, -0.0163719952, -0.0148080355, -0.0280902553, -0.0117182601, -0.0245503653, -0.000234594059, -0.0296618454, -0.0103297681, 0.00369628705, 0.00560355559, -0.00162594672, 0.00365814171, -0.0119395033, -0.0032499861, 0.00215902831, -0.00741927559, -0.014014611, -0.0140069826, 0.00466136495, -0.0125345709, -0.00374015421, -0.017134903, -0.0271595083, -0.00784269, 0.0148385512, -0.000493982632, 0.0156243462, 0.00963552203, -0.01550991, -0.0289752278, -0.00620625261, 0.000891648175, 0.00606511487, 0.0208578911, 0.00764051871, -0.0161888972, -0.0165550932, -0.0197745636, 0.000637027784, 0.004470638, 0.00322137703, -0.0216818321, -0.0191794951, -0.00962026417, 0.0121912621, 0.00651904475, 0.0046804375, 0.00450496888, 0.016768707, 0.00493982621, -0.0117869209, 0.000453214743, -0.0116877435, -0.0204154048, 0.0185844284, -0.00125212199, -0.0240468457, 0.0104594622, 0.000769583, 0.0167992245, 0.00780072948, 0.0149987619, -0.00363716157, 0.00993305631, 0.01122237, -0.00204459229, -0.00179283274, -0.00603841292, 0.0291278102, -0.00253666751, 0.0204916969, 0.00537468353, -0.012481167, 0.00331674051, 0.00399382086, -0.0035417981, -0.00596593693, -0.0086208554, -0.0186759755, 0.0102382191, 0.00982624944, -0.0108561739, 0.000268209667, 0.0162194148, 0.00179187907, -0.00426846743, 0.00455837231, 0.0159905422, 0.00872003287, -0.0196830146, 0.0151131982, 0.0051572551, -0.00186626252, 0.00923881, 9.50058311e-05, 0.0123285856, -0.0439739898, -0.00550819235, -0.0159752835, -0.00672884425, 0.01740955, 0.0190726891, 0.018630201, -0.0213156361, -0.0063321325, -0.00601552567, -0.0122828111, -0.00884209853, 0.0790982544, 0.00865900051, 0.00421124976, 0.000680418161, -0.000620339182, -0.0111537082, -0.0144265816, 0.0506265424, 0.00129598915, 0.0179130696, 0.00287043955, -0.00812496524, -0.0150674237, 0.000633213262, 0.00209418125, -0.00888787303, 0.0120310513, -0.0249165595, -0.00519158598, -0.0100474926, -0.00461940514, -0.0119929062, 0.0153725864, 0.00501230266, -0.00610326044, -0.0121073425, 0.0128778787, 0.00896416325, -0.0246419124, -0.002235319, 0.00260723638, 0.0213919263, 0.00415784586, 0.00208845944, -0.0292956494, -0.0125345709, -0.0184318461, 0.0100322338, 0.00818599761, 0.033049155, -0.0102305897, 0.0012883601, 0.0080029, 0.0154793942, 0.0118937287, -0.0212698616, 0.00214949204, -0.0196524989, 0.0196219813, -0.0176384225, -0.00727813784, 0.0189353656, -0.00305353734, -0.0121454876, -0.00250424398, 0.0124048768, 0.0224142224, -0.0215597674, 0.0100246053, 0.000766245241, 0.0191489793, 0.015731154, -0.0117564052, 0.0135721248, -0.018996397, -0.0103602847, -0.0116572268, 0.0053670546, -0.0175621305, 0.00321565522, -0.00940664951, 0.00226583541, -0.012755814, -0.0164940599, 0.00937613379, 0.0216055419, -0.0346970335, -0.00479105907, 0.0109095778, -0.0160363168, 0.00966603868, 0.00756804273, -0.0199881773, 0.000655623677, -0.0075527844, -0.0023211462, -0.0193320774, 0.0134958345, -0.016021058, -0.0105815278, -0.00148194784, 0.0197593048, 0.0025977, 0.0182792637, 0.014014611, 0.00811733585, 0.00319467532, 0.000767198915, 0.0104823494, 0.00158494036, 0.0217428654, 0.00382788852, -0.0151589727, 0.0200034361, -0.0135339797, 0.0251759477, 0.0278308671, -0.0118021797, 0.000920734, -0.00966603868, -0.0200492106, -0.00394423213, 0.0133203659, 0.00617955113, -0.00718658883, -0.0189353656, -0.00733917067, -0.0188590735, 0.0149529874, -0.0060613, 0.00897179265, 0.016112607, -0.0184928793, -0.0191794951, 0.0105815278, 0.0263355672, 0.00102801796, 3.06355068e-05, 0.0164635442, -0.0100246053, 0.00486735, 0.00244702585, 0.0152581502, -0.0105967857, -0.00576376636, 0.0108561739, -0.013503463, 0.0180046186, 0.00206938665, -0.0115427906, 0.0139917238, -0.0090404544, -0.0166924167, -0.000704735809, 0.0029181214, 0.00273120892, 0.0261066966, -0.0394575782, 0.0209494401, 0.00299250474, 9.29793532e-05, 0.00103946147, -0.0078198025, -0.00574850803, 0.0061681075, -0.00127500924, 0.0080944486, 0.00955160242, 0.0145944208, -0.0223379321, -0.000750987092, -0.00448971102, -0.00672121532, -0.003143179, 0.00158875494, 0.00885735638, -0.00667925552, -0.00717514521, 0.0128702503, 0.0235433262, -0.00481394632, 0.00630924525, 0.00113577861, 0.0210715067, -0.0161736403, 0.00408537, 0.0103450259, -0.00252140942, -0.000868760922, -0.0229635164, -0.00923118088, 0.0103221387, 0.00348839466, 0.0449505113, 0.0302111376, -0.0205527283, -0.00658770651, -0.00258053467, 0.0151971178, 0.0182334892, -0.0101085249, 0.00317941722, -0.0110240141, 0.00964315142, -0.00285899593, -0.00324807875, 0.00484446296, 0.0104670916, 0.0284717083, -0.00855219364, -0.00230588811, 0.00144094159, -0.00619862368, 0.00212088297, -0.00918540638, 0.0199729186, -0.0184928793, 0.0115809366, -0.00235166238, 0.0136941904, -0.00171558827] |
10 Jan, 2024 | Swift - Initialization
10 Jan, 2024
Swift also supports object-oriented programming language. A class is a blueprint and an object is nothing but it is defined as an instance of a class. A class can be defined in the class using the class keyword in Swift. We can initialize the values for the stored properties or the data members in the particular class. The keyword to create initialization for the data members and properties of a particular class is init(). This article focuses on discussing initialization in Swift.
INIT () For Stored Data MembersThe init() responsibility is to initialize the instance of a class that is an object. The initialization in Swift is used for assigning the values for the stored properties. The other feature of Swift is that it provides the deinitializer that takes the functionality of memory management after the deallocation of the particular class instances. The main important thing that the initializer is used for the classes is
The init() is used to create a default value for the stored properties that are present in the class and structures.The init() is also used to assign the default value for the property.The init() can have parameters or it can be created without the parameters.To initialize an instance the init() is used.Role of INIT() in a ClassSyntax:
class class_name { init() { // initialization of the members }}
Example 1:
Program to initialize the data members by passing the parameters in the init() in a class:
Swift
// Program to initialize the data members
// by passing the parameters in the init()
class Geeks
{
// Members in the class
var name : String
var roll : Int
// Initializer in the class
init(name : String , roll : Int)
{
self.name = name
self.roll = roll
}
}
// Created an instance of type Geeks named gfg
var gfg = Geeks(name : "Geek",roll : 404)
print(gfg.name,gfg.roll,separator:" ",terminator:".")
OutputGeek 404.Explanations:
In this first we create a class named Geeks and with the data members name and rollno.In the class, we create the init() function with the parameters passed so that we can assign the values to the data members in the class.we created an instance for the class named Geeks with the variable named gfg and passed a string and int.we printed the name and roll no that were assigned by us.Another important thing is that we use self which is nothing but the reference of that particular instance.Example 2:
Program to initialize the data member without passing the parameters in the init:
Swift
// Program to initialize the data member
// without passing the parameters in the init
class Student
{
// Data Members
var name : String
var roll : Int
// No parameters are passed here in the init
init()
{
name = "Prateek"
roll = 66
}
}
// The instance of class student with the name 'instance'
var instance = Student()
// Printing the name and roll for the object named instance
print(instance.name,instance.roll,separator : " ",terminator : ".")
OutputPrateek 66.Explanation:
In the above program, we have first created a class with the name Student and with the data members' name and roll no.In this, we initialized the init() with no parameters passed in it and so we have assigned the default values in the init() with the values prateek and 66 After that, we created a variable with the name instance of the type Student class.Now we have printed the data members' values with the help of the created variable of type student.Role of INIT() in the StructureExample 1:
Program to initialize the data members in the structure by using the init() along with the parameters and without using the init():
Swift
// Structure Without having the init function
struct Area
{
// DATA MEMBERS by having the default values
// in the structure
var length = 4
var breadth = 5
}
// Another structure by having the init function
struct Area_Rect
{
var length : Int
var breadth : Int
// DATA MEMBERS
init()
{
// Assigning the values with the help of
// the init() function
length = 2
breadth = 3
}
}
var obj1 = Area()
var obj2 = Area_Rect()
print("Without init function the values ", obj1.length,
obj1.breadth, separator:" ", terminator:"\n")
print("With Passing the init function the values ", obj2.length,
obj2.breadth, separator : " ", terminator: ".")
OutputWithout init function the values 4 5
With Passing the init function the values 2 3.Explanation:
First, we created two structures in the above program one with the name Area and one with the name Area_Rect both structures contain the members named length and breadth.In the structure Area there is no init() function initialized we have passed the default values for the member's length and breadth.In the structure Area_Rect we have created an init() function and we have not passed the values in the init() we will assign the values for length and breadth.Then we have to print the values of the data members present in both the structures. This program is similar to the above program.Example 2:
Program to initialize the variables in the structure by passing the parameters into the init function:
Swift
// Program to initialize the variables in the
// structure by passing the parameters into the init function
struct Car
{
// DataMembers of the class
var speed : Double
var name : String
// Assigning the values from the init
init(speed : Double , name : String)
{
self.speed = speed
self.name = name
}
}
// Instance named 'type' of type Car
var type = Car(speed : 223.45,name : "Ferrari")
print("The car speed is \(type.speed) KMPH.",
"The car name is \(type.name)",
separator: "\n", terminator: ".")
OutputThe car speed is 223.45 KMPH.
The car name is Ferrari. | NLP/Natural Language Processing (NLP) Tutorial/AI ML DS - Projects/30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated]/Does Artificial Intelligence Require Coding?/Artificial Intelligence – Boon or Bane/Artificial Intelligence Examples/Agents in Artificial Intelligence/What are Diffusion Models?/ML | Common Loss Functions/Loss Functions in Deep Learning/Kaiming Initialization in Deep Learning/Swift - Initialization | https://www.geeksforgeeks.org/swift-initialization/?ref=ml_lbp | NLP | Swift - Initialization | Artificial Intelligence – Boon or Bane, Natural Language Processing (NLP) Tutorial, ML | Common Loss Functions, AI ML DS - Projects, Artificial Intelligence Examples, NLP, Loss Functions in Deep Learning, Agents in Artificial Intelligence, What are Diffusion Models?, Kaiming Initialization in Deep Learning, 30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated], Does Artificial Intelligence Require Coding?, Swift - Initialization | GeeksforGeeks | [-0.0406024754, 0.01505988, -0.00561677199, 0.0306395646, -0.0224237721, 0.0232756734, 0.0111035937, -0.00556984544, -0.0145039782, 0.00509335846, 0.0161861219, 0.0143668083, 0.000753535482, -0.0455983728, 0.00399599411, 0.0139625156, -0.0306395646, 0.0288346894, -0.0324011222, 0.00933481567, 0.0191461183, 0.00893774256, -0.0675167814, -0.0139047597, 0.0217451379, 0.025282694, -0.0129951024, 0.0330075622, -0.0477064662, -0.0256003514, -0.00579725951, 0.00268745935, 0.00416565221, -0.0232034773, 0.00700291665, 0.00822301209, -0.00610408839, 0.0222216249, -0.0290945917, 0.0178610459, -0.00329209259, -0.00716535514, 0.0147422217, 0.0258602537, -0.00932037644, -0.00921208411, 0.0092987176, -0.0265822038, -0.0310727339, -0.00248711836, 0.00110729109, -0.0118977381, 0.0365306772, 0.0382344797, 0.0109880809, 0.0406313539, 0.00261345948, -0.00504282163, -0.049237, -0.0494102687, 0.0285170302, -0.0491503663, -0.0186696313, -0.00263331318, 0.0164171457, 0.0173701197, -0.023131283, 0.0324588791, -0.00183285098, -0.00774652511, 0.0354621932, 0.00942144915, 0.0211964566, 0.0394184776, 0.00817247573, -0.0131972488, 0.0487460755, 0.0579870343, -0.00669608777, 0.0505365096, 0.000494084612, -0.0146844657, -0.000583877205, 0.00750828162, 0.0103527652, 0.0297732241, 0.00386965275, -0.0419886224, 0.0419597439, -0.006634722, -0.0107714962, -0.01028057, 0.0240986962, 0.0264811311, -0.021340847, 0.018467484, 0.01028057, -0.00515111443, -0.0262645464, 0.00958027877, -0.00913988892, 0.0590555221, 0.0419308655, 0.00864896271, -0.028329324, 0.00496340729, 0.0238099154, 0.0263078641, 0.0312460028, 0.00473238342, 0.0251671821, -0.00875003543, -0.0299753696, 0.0106054479, -0.0296288338, 0.0134282727, -0.0131828096, -0.0460893, 0.0199547019, 0.0195792876, 0.022467088, 0.00228677713, -0.00576116238, -0.00598857645, -0.0592576675, 0.0258458145, 0.0437501781, -0.01216486, 0.00439667655, 0.0210665055, 0.00748662325, -0.00893774256, 0.00907491334, 0.0151465144, 0.0263223033, -0.0152764656, 0.018467484, -0.0326899029, 0.00415843306, 0.0084035, -0.0104249604, -0.00370360422, 0.0300908815, 0.0261057168, 0.0496412925, -0.00179224124, 0.0248928405, 0.0327187814, 0.0246906951, 0.0178466085, -0.0350290202, -0.0443854965, 0.0278961547, 0.0540307499, 0.0168936327, -0.0227269903, -0.0336717553, 0.0330941938, 0.00249975245, 0.0356932171, 0.00049769436, -0.015839586, -0.0359819941, 8.64084068e-05, -0.0253693275, 0.0436057895, -0.00924096163, 0.0046493588, -0.0187851433, 0.0347691178, 0.000380603102, -0.0092987176, 0.0220194794, -0.0139913941, -0.0265677664, -0.0336717553, 0.014106906, 0.0346536078, 0.030957222, -0.0032830683, -0.0399960391, -0.0110602761, -0.00256472779, 0.0271742027, 0.0159117822, 0.00698125781, 0.0196370445, 0.00731696468, 0.0283582024, -0.0584779605, 0.0388409197, 0.0339027792, 0.0158973429, 0.0576405, -0.00964525435, 0.00353575079, -0.042681694, -0.0401115492, -0.049063731, 0.0317080505, 0.0187562648, 0.0101650581, 0.0181353875, 0.030957222, -0.00672135595, -0.00996291172, -0.0515472405, -0.0301486384, 0.0303507838, 0.0143884663, -0.012792957, 0.0442699827, -0.00940701086, 0.00136448583, 0.043634668, 0.00351228751, -0.0123309083, 0.0281849336, -0.00691989204, -0.0406024754, 0.00297623943, 0.0236222092, 0.0304374192, 0.0136953946, -0.0448475443, -0.0183086563, -0.0471577831, -0.0189150944, -0.0122081768, -0.00959471706, 0.00560594304, 0.0503921211, 0.00787647627, 0.00997735094, -0.0013022176, -8.39831046e-05, 0.0182797778, -0.0257736202, -0.037599165, 0.0342781916, 0.0139769549, -2.40274039e-05, -0.0480818786, -0.012280372, -0.0268276669, 0.00750106201, 0.0173701197, 0.0489771, -0.00320184883, 0.0276073739, -2.65091076e-05, 0.00810028054, 0.0337872654, 0.0313903913, -0.0266544, 0.0441255942, -0.00554818707, 0.000519352907, 0.0112552028, 0.0129878828, 0.00154948549, 0.0121432012, -0.0146916853, 0.0121865189, 0.0158829037, -0.0255281571, 0.0329498053, -0.0171824135, -0.0118688606, -0.0228136256, 0.049237, -0.0359531157, 0.0307261981, 0.0288924444, -0.00322892214, 0.0189006552, -0.0423640348, 0.000888901122, -0.00390936, 0.0348846316, 0.0164027065, 0.0260046441, 0.00662750239, -0.00527745578, 0.0194348972, -0.0625497624, -0.0223371368, -0.0263223033, -0.0288491286, -0.00193482637, 0.00782594, 0.017572267, -0.0313615128, 0.0402559415, 0.0381478444, 0.0166337322, -0.000892059645, -0.0339605361, -0.0315925367, -0.0186840706, 0.0130745173, -0.0500455834, 0.0240553785, -0.034364827, -0.00169207063, 0.0381478444, 0.0125474939, -0.00775374472, 0.00795589108, 0.0203589946, 0.0159695372, -0.0118255438, -0.00885832869, -0.0183230955, 0.0106920814, 0.00317477575, 0.0475909524, 0.00154316844, -0.070577845, 0.0308994669, -0.000648852671, -0.0130456388, -0.0211964566, -0.00108112034, 0.0273041539, 0.00752994, -0.0139408577, -0.0317658074, -0.00884388946, -0.0502188541, -0.0565720126, -0.0246040616, -0.00936369319, 0.0363862887, 0.0105115939, -0.0172401704, 0.0078909155, 0.0274052285, -0.0650910288, 0.00768876914, 0.00056312111, -0.0204889458, -0.0400826707, -0.00209546043, -0.00232828921, -0.0186551921, 0.0039562867, 8.77620623e-05, -0.00645423448, 0.0116017386, 0.00126431521, -0.000174170476, 0.0160128549, -0.0570051856, 0.0153775383, -0.00186082651, 0.00540740648, 0.0044797007, 0.0288635679, -0.00926984, 0.0188140217, 0.0152042704, 0.0226259176, -0.0254992787, -0.00320906844, -0.0195504092, 0.0132983215, 0.0220483579, 0.00438945694, 0.0023824356, 0.0156951956, -0.000914169359, 0.00483706594, 0.00330292201, -0.00563843083, -0.0204745065, -0.00260985, -0.0060716006, -0.0204023104, 0.0311016124, 0.00403931132, 0.0125619322, -0.00835296325, 0.0150165632, -0.0207488481, -0.0167059265, -0.0239976235, -0.00717979437, -0.0156951956, 0.00900271814, -0.0245607439, -0.00283906888, 0.00409706729, -0.0172401704, 0.0305529311, -0.000990876579, -0.0174423158, -0.0549548455, 0.00601745443, -0.0175000709, -0.0017624608, 0.0103166681, -0.00583335711, -0.0293833707, -0.00857676752, -0.0255281571, -0.0394762345, 0.0245174263, 0.0514606051, 0.0199547019, 0.0275784954, 0.0142007591, -0.0232901126, 0.0111252517, 0.0285747871, -0.0111469105, -0.031852439, 0.0254704021, 0.00210448471, 0.0395917445, 0.0217018221, -0.00622682, -0.0245607439, 0.0524135791, 0.00443277415, 0.03358512, -0.042854961, -0.00771764712, 0.0111108124, 0.00173719251, -0.0269576181, -0.0116883731, 0.0324877575, 0.00710398937, -0.0230157711, -0.0404869653, -0.00310258078, -0.00248711836, 0.00485511497, -0.0286181048, -0.0250227917, 0.0207488481, -0.00884388946, 0.0112407636, -0.01317559, 0.0365595557, -0.0203878731, -0.0110747153, -0.00855511, -0.015781831, -0.0143523691, -0.0402559415, -0.0251960605, 0.00472877361, 0.0358376056, -0.0030195564, 0.00312784896, -0.0268854238, -0.0419597439, 0.0106848618, 0.00125709572, 0.00613657618, 0.0268565454, 0.0204456281, 0.0443854965, -0.000976437586, -0.0495257787, -0.0446742736, -0.018048754, 0.00750106201, 0.00183555821, -0.0242142081, 0.0296288338, 0.0208354816, 0.00224346016, 0.00202507013, -0.0178610459, 0.00719423313, 0.0102372533, -0.0377435535, 0.0412089154, -0.00559511362, -0.00646506343, -0.0395051129, -0.0140780276, -4.81112074e-05, 0.0414688177, 0.0416132063, -0.0330653153, 0.0217451379, 0.00398877449, 0.0384077467, -0.0111035937, -0.0189872887, 0.0163593907, -0.0626652762, -0.0399960391, 0.00908935256, 0.00739998883, 0.0359531157, 0.006634722, -0.0341626815, -0.00268926425, 0.0369349681, -0.0156807564, -0.00174260722, -0.00542184571, 0.017456755, 0.037165992, 0.00368555542, -0.0140347108, 0.00230482593, 0.014374027, 0.0206477735, 0.029830981, -0.017153535, -0.00240228907, 0.0128290541, -0.0240986962, 0.0021351676, 0.00851901155, -0.00342204375, 0.0322567336, -0.0281416159, -0.0410934, 0.034538094, 0.0379168205, -0.0216296259, -0.0460604206, 0.0110386182, -0.00457716407, 0.00338414125, 0.00878613349, -0.0142007591, 0.00361155556, -0.0135076875, -0.00556984544, 0.00267843506, -0.0149732465, 0.0144534418, -0.0213119686, 0.0138686625, -0.029166786, -0.04040033, 0.0162294395, 0.00033503, -0.0142079787, 0.000336609257, 0.0153775383, -0.0099340342, 0.00381550658, 0.03358512, 0.0263656192, 0.0137387114, -0.00230302103, -0.0101145217, -0.0249650367, 0.0310727339, -0.0147855394, -0.0171824135, 0.0287480541, -0.0185541194, 0.0218895283, -0.000210944811, 0.00343467784, -0.00195648498, -0.0290223956, 0.0143595887, -0.0154497335, 0.0203445554, 0.0195070934, -0.0258169379, 0.00598135684, -0.00654086843, 0.0245463047, 0.00527023617, 0.00954418071, 0.00822301209, 0.0270442534, 0.0388697945, -0.0211387, -0.0035429704, 0.0120493481, 0.0151320752, -0.0306106862, -0.0156374406, -0.0291812252, -0.00711842859, -0.0116378367, -0.00600301567, 0.0212975293, -0.0075371596, 0.00271814223, 0.0173701197, 0.00738194026, 0.0259902049, 0.00256111822, 0.00175072916, -0.0118544213, -0.0205755793, 0.00493452931, 0.0219184067, 0.00399599411, -0.023131283, -0.0222360641, 0.0124969576, -0.000107559295, 0.0135004679, 0.0277373251, 0.0118977381, 0.0124031035, -0.00490926113, 0.0168503169, -0.00598857645, 0.0122875916, 0.0040681893, 0.0138036869, 0.0259180106, -0.0121576404, -0.00933481567, -0.0138903204, 0.00369638484, 0.0212686509, 0.0183086563, -0.000129951033, 0.0135293454, -0.00912545, -0.00497423671, -0.0194637757, -0.0251383036, -0.0139119793, -0.050623145, -0.00694155088, 0.00588389393, 0.0104971556, 0.00682603847, 0.0262212288, 0.0193193853, -0.00320004392, -0.0199402627, 0.021153139, 0.0164171457, 0.0123092504, 0.0914277658, -0.00416565221, 0.0155219287, -0.00372165302, 0.0318235643, 0.00116594951, 0.00454106648, -0.013269444, -0.0216007493, -0.000786925666, 0.0030737028, 0.0280405432, -0.00190594839, 0.0292678587, -0.00340399495, 0.0177744124, -0.00754437922, -0.0247051343, 0.00397433573, 0.0298598576, -0.00882223062, 0.011118032, 0.0122731524, 0.00890886504, 0.00792701263, 0.00700652599, 0.0222505033, -0.01505988, -0.0169080719, 0.0130817369, 0.00377940899, 0.00199619215, -0.00587667432, -0.0264811311, 0.00277409353, 0.0304085407, 0.00981130265, 0.0156374406, -0.0123020308, 0.0257736202, -0.0175145101, 0.00672857556, -0.0177888516, -0.00636399072, 0.00380106759, 0.00740720844, -0.0340471677, -0.0341049246, 0.00327584869, 0.0301775169, 0.000859571912, 0.0144317839, -0.00836740248, -0.00844681635, 0.00259360601, 0.0166048538, 0.0131394928, 0.031736929, -0.0198103115, -0.0225970391, 0.00765989115, -0.00661667297, 0.0573517196, -0.00394184794, 0.0081075, 0.0148577336, 0.00781150069, -0.00820857286, 0.0215285532, 0.000240725247, 0.0461759306, 0.0253693275, 0.0108870082, -0.0116378367, -0.0157673918, -0.00530994358, 0.00401043287, -0.0120493481, 0.00583696691, 0.0133344196, -0.024806207, 0.000121716286, -0.00562038179, -0.00723033072, -0.0102589112, -0.0570340604, 0.00508974865, -0.0178032909, -0.0232034773, 0.0510563143, -0.00407540845, -0.0211675782, -0.0136376387, 0.0247917678, -0.0135582238, -0.0130239809, -0.0107498374, 0.0224093329, 0.020979872, 0.0238965508, 0.0200702138, -0.0307261981, -0.00759491557, -0.0151898311, 0.0111541301, 0.000104795574, 0.027491862, 0.0150310025, -0.0258024987, 0.050623145, -0.0023968746, -0.013745931, -0.0179621205, 0.0159839764, -0.00109826669, 0.0105043743, 0.00849735364, 0.0169080719, 0.024921719, -0.0119554941, 0.0354621932, 0.00870671868, -0.0260768402, 0.0151898311, 0.00355018978, -0.00953696109, -0.0202723611, 0.0253404509, 0.0135437846, 0.0268132277, -0.00771764712, 0.00231746, -0.00438584713, -0.0128362738, 0.0228858199, 0.0285170302, -0.0134210531, -0.026899863, -0.00361516536, 0.00415121345, -0.0245174263, 0.0384077467, -0.0104249604, -0.0112046665, 0.00172636332, 0.00941423, -0.0180631932, 0.0238821115, 0.0200990923, -0.00300692231, 0.0421907678, 0.0353466794, -0.00909657218, -0.0219617244, -0.0134354923, -0.0173701197, -0.0221205521, -0.0169080719, -0.0140635893, 0.000508072437, 0.00434613973, 0.021817334, -0.00523413857, 0.00283726398, -0.053077776, -0.0379457, 0.00241131359, 0.00141411985, 0.0178032909, -0.0261634737, 0.00715091638, -0.00157565624, 0.0102661308, 0.000759852526, 0.047042273, -0.00808584131, 0.0185252409, 0.0126702255, 0.0104827164, -0.00568535738, 0.00549765024, -0.00675745355, 0.0115512023, 0.0268854238, 0.0296577122, 0.035260044, 0.0127712982, -0.0268854238, 0.0257447418, -0.0192183126, 0.00736389169, -0.00438223733, 0.00680077029, 0.0100856433, 0.00223263074, -0.025224939, 0.00241492316, 0.000475584675, 0.0118255438, -0.0133921755, 0.0115295434, 0.00391297, 0.0520092882, -0.0087933531, 0.0193049479, 0.00539657753, -0.0161283668, 0.0101000825, 0.0148866121, -0.010338326, 0.0497856811, 0.0296865907, 0.0271164477, 0.00991959497, -0.0269431788, 0.0158973429, -0.00348340953, 0.00929149799, 0.0294988826, -0.00868506, 0.00731335487, -0.0160128549, -0.010071205, -0.00423062779, 0.00809306093, 0.00582252815, -0.0147855394, 0.0170235839, -0.0259324498, 0.0158829037, 0.0284881536, -0.00503560249, -0.0104610575, 0.0201568473, 0.00153053435, 0.00917598605, 0.014013052, 0.00259902049, 0.0310149789, -0.0457138829, -0.0339894146, 0.00049769436, 0.017456755, 0.00866340194, -0.0225826, 0.00791979302, -0.0128434934, 0.00551930908, 0.0131683704, 0.030004248, -0.0176011454, 0.0327187814, 0.00211170409, 0.00648311246, 0.0210665055, -0.000533340673, -0.00578643056, -0.00235897209, 0.024387477, 0.0157240741, 0.029830981, 0.041901987, 6.33398449e-05, 0.0197525565, 0.00653364882, -0.0265533272, 0.0249794759, -0.00447609089, 0.0388409197, -0.033411853, -0.0439523235, 0.0311304908, 0.0308705885, -0.00430282298, 0.0213986021, 0.04040033, 0.0140563697, -0.0187418256, 0.0264233761, -0.0190306064, 0.00964525435, 0.00409706729, -0.0305818077, -0.0550703593, -0.0250661094, -0.0158973429, 0.00445804233, -0.018467484, 0.00258999621, 0.036646191, 0.0125258351, 0.00129770534, -0.00510418741, 0.00336428778, 0.0272175204, -0.042854961, 0.0136592966, -0.00440028636, 0.0270009357, 0.00422340818, -0.0219328459, -0.0270875692, -0.0357509702, -0.0181498267, 0.016619293, -0.0230302103, -0.0152764656, -0.000924998603, 0.00545794331, -0.014222418, -0.0202146042, 0.0434036441, 0.00267843506, -0.0189006552, 0.00611852761, -0.0133993952, 0.0136737358, 0.00715813553, -0.0164171457, 0.0160272941, -0.0236222092, 0.0303796623, 0.011118032, 0.0204167496, -0.00625930773, -0.00188789959, -0.0108942278, 0.0113923736, -0.000923645, 0.0193049479, 0.00364765315, 0.00467101764, 0.00506809028, -0.0178321693, -0.0121937385, -0.0159406587, 0.0221494306, 0.0211964566, -0.0044038957, 0.0183664113, -0.00889442582, 0.00695598964, -0.0304951742, -0.0017877291, -0.0354910679, -0.0328631699, 0.0507964119, 0.00654447824, -0.00833130442, 0.0125619322, -0.016619293, -0.0305240527, -0.0315059051, 0.0223227, 0.0308128316, -4.33170098e-05, 0.00573950354, 0.0160561707, -0.00102426682, -0.0206044577, 0.00802808534, -0.00271092285, -0.00921208411, 0.0494680256, -0.00842515845, -0.020503385, -0.00877169427, -0.000971022935, -0.0391008183, -0.00634955149, -0.0152620263, -0.000877169427, -0.012222616, -0.0386965275, -0.00536769954, 0.00543267466, -0.000786925666, 0.0285747871, -0.00971744861, -0.0263367407, 0.00738194026, 0.00578643056, 0.00473238342, -0.00479013938, 0.000121377867, -0.00730252592, 0.0236510877, -0.0120637873, 0.0173845589, 0.00385160395, 0.0153197823, 0.0269287415, 0.0226981118, 0.00736028189, -0.0336428769, 0.00479374919, 0.0190017279, 0.0378013104, 0.0242864024, -0.000961096142, -0.00910379179, 0.00755159836, -0.00934203528, 0.0139841745, -0.00727003813, -0.00890886504, 0.0254704021, -0.00851179194, -0.0140563697, -0.00397433573, 0.000690816, -0.0131033948, 0.0130312005, -0.00985461939, -0.00438223733, 0.0137675898, -0.0161283668, -0.00801364705, 0.0255714748, 0.0229002591, -0.0225104056, 0.0141502228, 0.0298598576, -0.00201424095, -0.0275929347, -0.0152764656, 0.00949364435, -0.00150526606, 0.0228569414, -0.0152475871, -0.00997013133, -0.00426672539, 0.0107353991, 0.0222360641, 0.0123597868, -0.0204023104, -0.0161861219, -0.0112768617, 0.015117636, 0.0167492442, -0.0175289493, 0.00950808357, -0.022654796, 0.00128507125, -0.0292678587, 0.0054146261, -0.0253837667, 0.000485962693, 0.00161536341, -0.0110025201, -0.0204167496, 0.0109592034, 0.0189150944, 0.00571423536, 0.103903063, -0.00532438233, -0.0186263137, 0.0429415964, 6.62727689e-05, -0.0153630991, 0.00981852226, 0.00029848126, -0.000983657083, 0.0262789857, 0.02014241, 0.012792957, 0.0296865907, 0.00535687, 0.00327223912, 0.0259468891, 0.00661306316, -0.0032794585, 0.00456994446, -0.0572939627, -0.0440389588, -0.00103058387, 0.00570701575, 0.0172979254, -0.0267699119, 0.0261345953, -0.00370721403, -0.00685130712, -0.0232034773, 0.00610408839, 0.00109646178, -0.0096163759, 0.0461759306, 0.00386604294, 0.026538888, 0.00952974241, 0.0131539321, 0.00589833269, -0.0147999777, -0.00847569481, 0.0172979254, -0.0216585044, -0.0218028948, -0.00128507125, 0.00193663128, -0.0163593907, -0.00205214322, -0.00542906532, -0.00424145721, 0.00188068009, 0.0137098329, -0.0045157983, 0.00208463101, 0.00906769373, -0.0586223528, 0.0505076312, 0.0167636834, -0.0095225228, 0.0122731524, -0.00615462521, 0.0006465966, -0.0357220918, 0.0146050518, -0.00658779498, 0.017745534, -0.0238821115, 0.000634413678, -0.00284628849, 0.00663111219, 0.0196514837, -0.0105115939, 0.00965247396, 0.00141141249, 0.00930593722, -0.026062401, 0.00489843171, 0.0291379075, -0.00147368072, -0.00237341109, -0.00567813776, 0.0276795682, -0.0265533272, 0.0209365543, -0.00334443408, -0.00473599276, -0.00533160195, 0.0212108959, 0.0297732241, 0.00908935256, 0.0144751007, 0.0017552413, -0.00157746102, 0.00405375, 0.0288346894, -0.00494174892, -0.0210665055, 0.0303219054, 0.0189728495, -0.0255570356, -0.00939257164, 0.00776818348, 0.0232179165, 0.00553013803, 0.0293978099, 0.0125763714, -0.0116883731, 0.0129590053, 0.017153535, 0.0142657347, 0.0560233332, -0.00994125381, -0.0176877789, -0.0425950587, 0.0100784237, 0.0114934463, -0.00323433662, 0.00483706594, 0.0115728611, 0.00953696109, -0.0137675898, -0.00661306316, 0.00598496664, 0.0131900292, 0.0054182359, -0.00279575191, -0.0263367407, 0.00396711612, 0.0476487093, 0.0140996864, -0.0248639639, -0.0293978099, 0.00781150069, -0.006111308, 0.0255570356, -0.00443638349, 0.00693072146, 0.018770704, 0.0126124695, 0.0252393764, -0.0358376056, -0.0114501296, 0.00613296637, 0.00137260777, -0.0014132174, -0.018770704, 0.0239398666, -0.00233550882, -0.0173268039, 0.0157385133, -0.0254559629, 0.0143379299, -0.0178177301, 0.0129301269, 0.0117172506, 0.00930593722, 0.0158829037, -0.00532438233, -0.0286469813, -0.030783955, -0.0112479832, 0.032805413, 0.0263367407, 0.033238586, 0.0177022181, 0.0199691411, 0.0101578385, -0.017630022, 0.00204672874, -0.0143307103, 0.00236799638, -0.00439667655, -0.00745774526, 0.0155508062, -0.00725920871, 0.0240120627, 0.00215863087, 0.0232901126, -0.00849735364, -0.00716174534, -0.00991237536, -0.00816525612, -0.00494174892, 0.00903881621, 0.0214996748, -0.0150887584, 0.0214419197, -0.0179476812, 0.0304662958, 0.0122731524, 0.0310438573, -0.0101073021, 0.0195504092, 0.00890886504, -0.000684499, 0.00623042975, 0.0154930502, -0.00305204419, -0.041180037, -0.00856954791, -0.0165182203, -0.0351156555, 0.00679716049, -0.000887096219, 0.0222793818, 0.000962901, -0.000645694148, -0.0223660152, -0.0110169593, 0.0304951742, 0.0185108017, 0.0209076758, -0.00682603847, -0.00668886816, 0.0127785178, 0.00964525435, -0.0329786837, 0.00664916076, -0.00097734, 0.00675384374, 0.0106776431, 0.0122442748, 0.0124464203, -0.00607882, -0.00128507125, 0.00522691896, -0.00503921183, 0.0173268039, -0.00573589373, -0.00111360813, 0.0132622244, -0.0131250536, 0.0143523691, 0.0127207618, -0.00430282298, -0.0110458368, 0.00729530631, 0.00263692299, -0.0211242605, -0.0155796846, 0.0206188969, -0.020503385, -0.0168503169, 0.00465296861, 0.0180920716, -0.00137441256, -0.000110492212, 0.02737635, -0.0147999777, -0.0180920716, -0.00174170476, -0.0229580142, -0.0217162613, 0.00416926201, 0.0173845589, 0.00174170476, 2.72000361e-05, -0.000339993392, -0.00730252592, -0.0138542233, -0.00715091638, 0.000393011607, -0.0157240741, -0.00724477, 0.0187273864, -0.0290223956, 0.0109953005, -0.020979872, -0.0103888623, -0.00250155735, 0.0155508062, 0.0147494413, 0.0151898311, -0.00522330916, 0.0208932366, -0.00559150381, -0.0063567711, 0.0236799642, 0.0193482637, -0.0310149789, -0.0155941229, -0.0302063935, 0.0387254059, 0.0398516469, -0.00136538828, -0.00765989115, -0.00484067574, 0.0229146983, 0.0119699333, 0.0429127179, 0.00941423, 0.0213697236, 0.000618169841, 0.0158251468, -0.0179476812, -0.00697042886, 0.0343070701, -0.00468184659, -0.0202434827, -0.00397072593, 0.0112479832, -0.00521248, -0.0152475871, 0.0140347108, 0.0329209268, 0.00671413634, -0.00781150069, -0.00677550212, -0.00901715737, -0.00100080343, -0.00438584713, -0.00936369319, -0.0310149789, -0.00785481744, -0.00554457726, -0.0126630059, 0.00265497179, 0.0137892477, -0.0144462222, -0.0179188028, -0.014583393, -0.00780428108, 0.00162348535, -0.0173268039, 0.0176011454, 0.011233544, -0.0231601615, 0.00192760688, -0.0365884341, 0.00354838488, -0.012641347, -0.0208354816, -0.0213841628, -0.0194926541, 0.0106054479, 0.000384889659, -0.00575033296, -0.0168214384, 0.00747940363, 0.00111270568, 0.00122460793, -0.0220194794, 0.00778262271, 0.00188970449, 0.00664916076, 0.0146194901, 0.0131322732, 0.0096885711, -0.0144534418, 0.00717618456, 0.0253548902, 0.00159641227, -0.00170921697, 0.0193915814, 0.0217306986, -0.000711572124, -0.0130745173, -0.0198103115, 0.0306684431, -0.0207777247, -0.0269864965, 0.0277950801, -0.0177599732, 0.0220916737, -0.00546516245, -0.0191172399, -0.012756859, -0.0313326381, 0.00682603847, 0.02086436, 0.00794145186, -0.0188140217, -0.0277084466, 0.00270550814, 0.0203012377, 0.0135654435, 0.0185396802, -0.0167059265, -0.00356462877, 0.0167059265, -0.016316073, -0.0262789857, 0.00780428108, -0.0171390958, 0.00176155835, -0.0216873828, 0.00935647357, -0.0033191659, 0.0160128549, 0.0115728611, -0.00517999241, 0.00102787651, -0.00357545819, 0.0210087486, 0.0285747871, -0.0246473774, -3.2854372e-05, 0.00267843506, 0.0348268747, -0.0154352942, -0.00474682217, -0.00156753429, 0.000836559746, -0.0377435535, 0.00972466823, 0.00268024, 0.0164893419, 0.00467462745, -0.00221638707, -0.00499228528, -0.0220050402, 0.010071205, -0.0170091446, -0.0182942171, 0.0158829037, 0.000706608698, -0.00975354668, -0.0382633582, 0.0293689314, -0.00490926113, -0.0251816213, -0.00507530943, 0.00242936215, -0.0128579326, -0.00220916746, -0.0122948112, -0.00107299839, 0.0173989981, -0.0164749026, -0.018770704, 0.0343070701, 0.00367833604, 0.0132261263, 0.00413316442, 0.0114790071, 0.0229580142, 0.0234633796, 0.0137531506, 0.00130492495, -0.0281560551, -0.00810028054, -0.00917598605, 0.0130961761, 0.00363140926, 0.0193482637, 0.00168665603, -0.0138397841, -0.0010766082, -0.0128723709, -0.0100856433, 0.00222180155, 0.0145617342, -0.0110097397, -0.0204745065, -0.0048948219, -0.00515833404, -0.0134210531, -0.00848291442, 0.0182653386, 0.0191749968, 0.0111035937, -0.0100062294, -0.0328920484, -0.00454106648, -0.0164460242, 0.0406313539, 0.00805696379, 0.0128579326, -0.00203950913, -0.00615823455, -0.0125113958, -0.00942866877, -0.0181642659, 0.0111252517, -0.0106198872, 0.0345669724, -0.00110368128, 0.0032776536, 0.00201063114, -0.0132333459, -0.00543989427, -0.0181498267, 0.00589472288, 0.0179621205, 0.0132044684, 0.00319462945, 0.0366750658, -0.00781150069, 0.000216585046, -0.0104610575, 0.00919764489, -0.0163738299, 0.00698125781, -0.00703540398, -0.00579365, 0.00562760141, 0.00420175, 0.00268384977, 0.00601384463, 0.00824467093, -1.85140725e-05, -0.00789813418, -0.0090532545, 0.00363682397, 0.0141863208, 0.00539296772, 0.0213264078, -0.0393896, -0.00441833492, 0.0102083748, -0.00630262494, -0.00657335622, -0.000720145297, -0.0125186155, 0.0257158652, 0.0254415236, 7.76942488e-06, -0.00222180155, -0.00620877137, 0.00612935657, 0.0101145217, 0.0123092504, -0.00092409621, 0.0136737358, -0.0377146751, 0.00362058, 0.0287191775, 0.0102083748, -0.000490023638, 0.0134499315, -0.0123309083, 0.00594525971, 0.0120349089, -0.0068440875, 0.00894496217, -0.00545072369, -0.0178032909, -0.000758498849, 0.00516916299, -0.0113995932, 0.0134354923, 0.00763823278, 0.0382344797, -0.0128795905, 0.0083240848, -0.012222616, -0.00275243493, -0.0187273864, -0.0183664113, 0.0138758821, 0.0066708196, 0.00169748534, 0.00133199804, 0.00570340641, 0.00225609425, 0.0170235839, 0.0275207404, 0.0225248449, 0.00627013715, 0.00690906309, 0.00266038626, 0.0108653493, 0.00326862931, -0.00901715737, 0.0155074894, 0.0145039782, 0.0105260331, -0.0067682825, 0.0207055304, 0.00299067842, -0.0232756734, -0.00216404558, 0.0176011454, 0.00547238206, 0.0200413354, -0.0118905194, -0.00463492, 0.00144029059, 0.00321087334, 0.0123814447, 0.0112552028, 0.0330075622, -0.00039549332, -0.00479013938, -0.0177022181, -0.0045194081, 0.0121359816, 0.0192183126, 0.0028300446, -0.0049273097, 0.0212108959, -0.012735201, -0.00171102188, -0.0142296376, -0.0190017279, -0.0450785682, 0.00013570406, -0.00796311, -0.0044038957, 0.0234345011, 0.00967413187, 0.00226331363, -0.00196731417, 0.0115800807, 0.0292534195, -0.00240228907, 0.00124446151, -0.0140274912, 0.00991959497, -0.00568896718, -0.018048754, 0.0172257312, -0.0264089368, -0.00519082136, -0.00495979749, -0.0170669015, 0.00887998659, -0.0135004679, -0.0244741105, 0.0160272941, -0.0116739338, -0.0120637873, 0.00316214166, -0.0169080719, -0.0168791953, -0.00120655925, 0.0266399607, -0.0132477852, -0.0158251468, -0.00157836347, -0.0049309195, 0.017630022, -0.00806418341, -0.0175867062, -0.00331014139, -0.0142873935, -0.00580086932, -0.00614379579, -0.0113634951, 0.0160706099, 0.00266941078, 0.00729530631, 0.0174278766, 0.00433170097, -0.0277806409, 0.00697403867, -0.0103455456, 0.00191497279, 0.0215429924, 0.0168791953, -0.0184819233, 0.00802086573, 0.0203589946, 0.0100567658, -0.0104466183, -0.00547960168, -0.0183086563, 0.0143523691, -0.0136592966, 0.0122081768, -0.0154064158, 0.0169080719, 0.00521609, 0.015536367, 0.0211387, 0.00703901378, 0.0153775383, 0.0218462124, -0.0050031147, -0.00290043466, -0.00103148632, 0.0133705167, -0.00564565, -0.0181787051, -0.00222902116, -0.00315131247, 0.0186263137, 0.0035068728, -0.0162727572, -0.00235716719, 0.0238676723, -0.00521609, -0.0135871014, 0.0265677664, -0.011652275, -0.000971022935, -0.0460026637, 0.00760213519, -0.00438584713, 0.0146555882, 0.0338450223, -0.0238821115, -0.0114212511, 0.0102950092, 0.00771764712, -0.0038046774, -0.0246185, -0.0243008416, 0.00476487121, -0.00789813418, 0.017630022, 0.00405014027, 0.00309897098, -0.00184368016, -0.00358989718, -0.0033318, -0.0106848618, 0.00894496217, 0.0151031967, 0.00166680245, 0.00359711656, -0.00449774927, 0.00336789736, 0.00066238927, 0.00157204643, -0.018770704, 0.012280372, -0.0052197, 0.0206910912, 0.0219328459, 0.00359531166, 0.0155796846, -0.00851901155, 0.00469628582, 0.0104177408, -0.0157096349, -0.0088655483, -0.00329570239, -0.0211387, 0.00236619171, -0.00471794419, 0.000193460073, 0.0236222092, 0.029946493, 0.00105585204, -1.2627077e-05, 0.0250516701, 0.0147711, 0.0049309195, 0.0211387, 0.0112118861, 0.00649033207, 0.0102300337, 0.00643618545, 0.0150887584, -0.0100278873, 0.00668525835, 0.0140419304, -0.00528106513, -0.00882223062, 0.0364729203, 0.000650657574, -0.0161572453, -0.00662389258, -0.00856232923, 0.0191172399, 0.000748572056, -0.00502838288, 0.0204456281, -0.0175000709, -0.0196226053, 0.00699208723, 0.0102733504, -0.028026104, 0.0056600892, 0.0104033016, -0.000860925531, -0.0068801851, -9.5601994e-05, 0.0092987176, -0.000753986707, 0.00799920782, -0.00934925489, 0.0081508169, -0.00484067574, 0.000544169918, -0.00366750685, -0.0245318655, -0.00614379579, -0.0136448583, -0.00241311849, 0.018943971, -0.0219184067, -0.0130528584, 0.00536769954, -0.0081075, 0.00675023394, 0.022654796, -0.000636669807, 0.0169947073, -0.000772486674, 0.00775374472, 0.0288202502, 0.0170380231, -0.00390936, 0.0119988117, -1.30923963e-05, 0.0184241682, 0.0149299288, 0.00216765539, 0.0018662411, -0.0155796846, -0.00939979125, 0.00237702089, 0.000103385515, 0.0227847472, -0.0156085622, 0.00153233914, 0.024748452, 0.00721950131, 0.0146989049, 0.00337511697, 0.00616545416, 0.0056997966, 0.00873559713, -0.0172257312, -0.00185541192, -0.016619293, -0.00775374472, 0.0312460028, 0.0145111978, 0.000617267389, -0.0149154905, -0.010908667, -0.00109104719, 0.00657335622, -0.00301053212, 0.0155219287, -0.0128868101, -0.00149624166, 0.00210267981, -0.0102083748, -0.0325743891, -0.00791979302, -0.00501033384, -0.0127063226, 0.000564926, 0.00320365373, 0.0127279814, -0.0135871014, -0.0189584102, 0.0215285532, 0.0168936327, 0.0129806641, -0.0162727572, 0.0134860286, 0.0118183242, 0.0211098231, 0.0134210531, -0.00305023929, -0.0164171457, 0.00490204152, 0.00196370436, 0.00292209326, -0.019247191, -0.032805413, 0.0202290434, -0.0365018, 0.0035050679, -0.0190594848, -0.0131033948, 0.0203012377, 0.0134860286, 0.0178754851, 0.0230735261, 0.00279575191, 0.0271597654, -0.00653003901, 0.0156807564, 0.00529189454, 0.0129373465, 0.0326610245, 0.00530272396, -0.00524135819, 0.00161716831, -0.00480457814, 0.00963081513, 0.00231204531, -0.0199113842, -0.0324011222, -0.0275640562, 0.0153053431, 0.0017606559, 0.00103509601, -0.0135004679, 0.025224939, 0.00737472065, -0.00199799705, -0.00967413187, -0.00828076806, 0.00386243337, -0.0136231994, 0.000333450735, 0.00947920512, 0.00236799638, -0.000240499648, 0.00149804656, -0.0227847472, 0.00289682508, 0.0113707148, 0.0025863864, 0.00467101764, -0.0256869867, 0.00376497, -0.0163593907, -0.0197958723, 0.00210448471, 0.0084035, 0.00722311111, 0.00391297, 0.00555901602, 0.0173268039, 0.0198103115, 0.0227125511, 0.0140852472, -0.0170235839, -0.0235500131, -0.00634233188, -0.00458077388, 0.0258891322, -0.00687657529, 0.00989071745, 0.00728447689, -0.00560594304, -0.021514114, 0.000983657083, -0.00124716887, 0.00767433, 0.0310727339, 0.0206477735, 0.00710398937, 0.00847569481, -0.00696681906, 0.001651461, 0.013594321, -0.0125474939, 0.0110819349, -0.018943971, -0.0122370552, 0.00172546087, 0.000635767356, -0.00754437922, -0.0108075934, -0.0112840813, 0.00602467405, 0.00554096745, -0.0135582238, 0.0160850491, -0.0289935172, -0.0206477735, -0.00485511497, 0.0202290434, 0.00224887463, 0.0158540253, 0.00418009143, -0.00357184839, -0.000899730367, 0.00369277503, -0.0127712982, 0.00673940452, -0.0063567711, 0.00352853141, 0.0222793818, -0.00195828988, 0.0122731524, 0.00329209259, 0.0160850491, 0.012431982, 0.00595969846, 0.0164171457, 0.0287769325, -0.00299067842, -0.0113707148, -0.00691267289, -0.0073675015, 0.000693523383, -0.0138542233, 0.0149010513, -0.00821579248, 0.022828063, -0.0020972651, 0.00568174757, -0.0037324822, -0.00775374472, 0.00629901513, -0.00162348535, -0.0336428769, -0.00203950913, -0.0196226053, 0.00209004572, -0.0138109066, -0.00775374472, -0.0083024269, 0.0333540961, -0.00284087379, -0.0149010513, 0.0133777363, -0.0125113958, -0.000615913712, 0.00182202167, 0.0106415451, 0.0363285318, -0.0226836745, 0.0197381172, -0.00659501459, 0.0289935172, 0.00774652511, -0.0359531157, 0.0122514945, -0.0037866286, 0.0109375445, 0.00031653003, -0.0179765578, -0.00567813776, 0.00412594527, -0.011175788, -0.0407179892, 0.0423640348, 0.00438945694, -0.00621238118, 0.0191172399, 0.0225826, 0.0217884555, 0.0277084466, 0.00986905862, -0.0116739338, 0.00490565132, 0.00946476683, 0.0118544213, 0.0189295337, 0.00311160507, 0.0215285532, 0.00797754899, -0.0259757657, -0.0072916965, 0.0117244702, -0.0170235839, 0.0226836745, 0.013594321, 0.0155074894, 0.0227269903, 0.0304085407, -0.00216946029, -0.0174278766, 0.0061835032, -0.00576477172, 0.00939257164, 0.0190161671, 0.00198536296, 0.03084171, 0.00201243605, -0.00890164543, 0.00129770534, -0.00315672695, -0.0165470969, 0.00833852403, 0.0254559629, 0.0128434934, 0.0381478444, 0.0177022181, 0.00344370212, 0.000541913847, -0.0128795905, -0.006634722, 0.00203950913, 0.0166337322, -0.0110602761, 0.0142512964, 0.0186696313, -0.00510418741, 0.00337331207, 0.0132622244, 0.0131033948, -0.0173845589, -0.0032830683, -0.00754437922, 0.027910592, -0.0099556921, 0.0163305122, 0.0210231878, -0.0205322616, -0.00171463157, -0.000826181727, -0.00671774615, -0.00266941078, -0.0226259176, 0.00755159836, -0.0100062294, 0.000269377662, 0.011385154, -0.00241131359, -0.00825189054, 0.000861376757, 0.0125691518, -0.00771042751, -0.00193663128, -0.00548321148, 0.0127424197, 0.00263872789, 0.0142729543, -0.0165470969, -0.0354910679, -0.00153414404, 0.00160814391, 0.0109736426, -0.00945754722, -0.0184241682, -0.00502477307, 0.011118032, 0.0106343254, -0.00456272485, -0.0125330547, -0.00580447912, -0.00411511585, 0.0311593693, 0.00594165, 0.00686574588, 0.0298887361, 0.00575033296, -0.0209654327, -0.00394906709, -0.0153342215, -0.0212397743, -0.00501394365, -0.0161283668, 0.0297154672, -0.00918320566, -0.0108220326, -0.00643618545, -0.00405014027, 0.0245607439, 0.020503385, 0.00327043422, 0.00318019046, 0.0171968527, 0.000609145442, -0.0050067245, 0.0013094371, -0.00705706282, 0.00325599522, -0.00986905862, -0.0144751007, -0.00755881798, 0.00645423448, -0.0214852355, 0.0144751007, 0.0134354923, -0.0220916737, 0.00662028277, 0.009861839, -0.0165470969, -0.0111252517, 0.0146339294, 0.0149154905, -0.0109158866, 0.0152475871, -0.0055842842, -0.0110169593, 0.0168791953, -0.00567091862, 0.00313326367, 0.00102155947, -0.00782594, -0.0254126452, -0.00697764801, -0.0107209599, 0.00707872119, 0.0387542844, 0.00157024153, -0.00237341109, -1.79218478e-05, -0.00370360422, 0.00350867771, -0.00242755748, -0.00029780445, 0.00239867927, -0.0194637757, 0.00271453266, -0.00279033743, 0.00521248, -0.00210989942, -0.00309716607, -0.0174134374, 0.0168358777, -0.00167943654, 0.024445232, -0.0105043743, 0.00133741263, -0.0070101358, -0.00122912019, -0.0171102192, -0.00763823278, -0.00745052565, -0.0156230014, -0.00357906776, -0.00422340818, 0.00744330604, -0.011118032, 0.00617989339, 0.000460468844, -0.000950266898, -0.00303219073, -0.0174423158, 0.00544711389, 0.0260335226, -0.00159641227, 0.0225826, -0.014164662, 0.010396082, 0.000383536, 0.00193663128, 0.0251238644, 0.00099538872, 0.00244380115, -0.00926984, -0.00134824193, -0.022654796, -0.0107281795, 0.00412594527, 0.0145328566, 0.00294736144, -0.00679716049, -0.00623042975, 0.0154064158, -0.0268709846, 0.00288238586, -0.00883667, 0.00540018734, -0.0163882691, 0.0105404723, 0.0198247507, 0.0106704235, 0.0075732572, -0.0134210531, -0.00336067798, -0.0133127607, -0.00180307054, -0.0175145101, 0.00971023, 0.00248170365, -0.00178411929, -0.0261634737, 0.0231168438, 0.0240698177, 0.01201325, -0.0113418372, -0.00342384866, -0.0172401704, -0.00673940452, 0.00786925666, -0.00199258234, -0.000745413534, 0.00519082136, 0.0152909039, -0.00944310799, 0.0110747153, 0.0187129471, 0.0170091446, 0.000353078736, 0.0119988117, 0.000645242922, -0.0138614429, 0.0116450563, 0.00150797341, -0.00353936059, 0.00180487533, -0.00737833045, -0.00716896495, 0.000716986717, -0.0059019425, 0.0044399933, 0.00451218849, -0.0237521604, 0.00319101964, -0.00637842948, 0.0272608381, 0.016807, 0.00810028054, -0.000125664446, -0.00885110907, -0.00790535379, -0.00219292357, 0.0107859354, -0.0224815272, -0.0243730377, 0.000911462063, 0.0154497335, 0.0051366752, 0.0071256482, -0.0112479832, -0.0070462334, 0.0100856433, 0.0263656192, -0.00385521376, -0.0285314694, 0.00781872, -0.00963803474, -0.00184999721, -0.0011984373, -0.000336383644, 0.0115078855, -0.00778262271, -0.0135004679, -0.00942144915, 0.0104394, -0.00151970505, -0.0149154905, 0.0144317839, 0.0373681411, -0.00538574811, -0.00240409398, 0.018886216, 0.0142079787, 0.0208066031, -0.00572145497, -0.0101939365, -0.0118111046, 0.000609596667, 0.0109014474, 0.00610408839, -0.0146628078, 0.00726642832, -0.00431365194, 0.0209509935, 0.000203950913, 0.0185252409, -0.0128434934, -0.00251780124, -0.00627374696, -0.0196803603, 0.0111035937, 0.0292101037, -0.00421618903, 0.00799920782, 0.0187995825, 0.0133993952, -0.0219328459, 0.00598496664, 0.012735201, 0.0295133218, -0.0163738299, 0.0150743192, 0.00848291442, 0.00353936059, -0.0136376387, -0.0141285649, 0.00116865686, -0.0289213229, 0.0090532545, 0.0248928405, 0.0290945917, -0.0143307103, 0.0143668083, 0.0177310966, -0.00745052565, -0.000886645052, 0.00302677602, -0.00697403867, -0.0275063012, -0.00696320925, -0.00992681459, -8.31370708e-05, 0.0277950801, 0.0150887584, 0.00446165213, 0.00367292133, -0.0100639854, 0.0112840813, 0.0035592143, -0.00927706, 0.0172112919, 0.0165759753, -0.00543989427, -0.0395051129, -0.00156843674, -0.00835296325, 0.0237954762, -0.00338233635, -0.0192760695, 0.0223804545, 0.015478611, -0.0139047597, 0.00903159659, -0.00514389481, -0.00769598875, -0.00198897277, 0.0075732572, 0.00693433126, 0.00734223286, 0.00171192433, -0.0117822262, -0.0110169593, -0.0468690023, 0.0059055523, 0.037165992, 0.0073277941, -0.0113995932, 0.023131283, 0.0125908107, -0.00550126, 0.00759491557, 0.026120156, 0.0246040616, 0.0144751007, 0.0160272941, 0.0127785178, -0.010071205, -0.0058694547, 0.00184999721, 0.00877169427, -0.0114573492, -0.00456994446, 0.0169947073, -0.0316791721, 0.000570791832, 5.78688159e-05, 0.0184819233, 0.00571784517, 0.00956584, 0.000755340327, 0.00578282075, -0.0053821383, -0.00248531345, -0.00522330916, 0.00241672806, 0.00755881798, 0.00122099824, -0.0190883614, -0.00820135325, -0.037772432, -0.0100784237, -0.0133921755, -0.00804252457, -0.000996291172, 0.00657696603, -0.00800642744, 0.0177166574, 0.00523413857, -0.0118833, 0.0018915094, 0.0147422217, 0.00742886681, -0.00113346172, -0.00544711389, -0.0075371596, -0.00608243, -0.00588750327, 0.00212614308, -0.0142512964, 0.0231168438, 0.0102011552, -0.0158684645, 0.00353214121, -0.010966423, -0.0211387, 0.00536408974, -0.00446526147, -0.00114158366, -0.00121468108, 0.00221999665, 0.010699301, 0.0156374406, -0.0304085407, -0.0104177408, -0.015536367, -0.00734945247, 0.00594525971, 0.00801364705, 0.018048754, 0.00275243493, 0.00472877361, -0.00534965051, 0.0357509702, -0.00250516692, -0.00797032937, 0.0252393764, -0.00945032761, -0.00278853253, -0.00547960168, -0.00200160686, -0.0242864024, -0.013269444, -0.00263331318, -0.0107787158, 0.00285350787, 0.0141430032, 0.0178032909, 0.0127063226, -0.000380377489, 0.0126052499, -0.00131485169, 0.0175145101, -0.0129878828, 0.00162529026, 0.0194204599, -0.0125258351, -0.00875725504, -0.00880057272, 0.00386604294, -0.0164604634, 0.00748662325, 0.0283726417, 0.000958388846, -0.00866340194, 0.00855511, 0.0367039442, 0.000299609324, -0.00302136131, -0.00246185, -0.0155508062, -0.0131250536, 0.00554818707, 0.0101939365, -0.0238676723, 0.000179472292, 0.00105494971, -0.00672857556, -0.00761657394, 0.000764815952, -0.00313867838, 0.0127785178, -0.00966691226, 0.0099556921, -0.00210448471, 0.0168936327, -0.0275784954, -0.00121377874, -0.0257736202, 0.00320726354, -0.0061510154, 0.00620877137, -0.0106343254, -0.0188428983, -0.0219328459, -0.0160417315, -0.00742886681, -0.0235066973, -0.0126846638, -0.00484067574, 0.0284159575, 0.00958027877, -0.0188717768, -0.0115151051, -8.85517e-05, -0.00999901, 0.0222793818, -0.00799198821, -0.0313326381, 0.0250661094, -0.0105549116, 0.00387326255, 0.0114501296, -0.0102877896, -0.00745052565, -0.00174892426, 0.0176589, -0.0293689314, 0.0265244488, 0.00279755681, -0.00424506702, 0.00692711165, -0.00087446213, 0.0119482754, 0.00605716184, -0.0016568756, 0.0247773286, -0.0222505033, 0.00733501371, -0.00882945, -0.00299428822, -0.000461822492, 0.0124392007, 0.0075371596, 0.00607882, 0.00907491334, 0.015839586, 0.00482262718, -0.0102589112, -5.21439761e-05, 0.000826181727, -0.0054904311, -0.00286794687, 0.0150165632, 0.0137170525, -0.0087139383, 0.0137892477, -0.00388048217, -0.0014222418, -0.00938535202, 0.014106906, -0.016258318, 0.0141935395, 0.00357545819, -0.00458077388, 0.0209076758, -0.00393101852, -0.00857676752, 0.0095514, 0.0106343254, -0.00616184436, -0.0173845589, 0.00322350743, 0.0117533486, -0.00763101317, 0.0246040616, -0.0175578278, -0.00939257164, 0.00103058387, -0.00323433662, -0.00859120674, -0.00696320925, 0.00950808357, 0.0202290434, 0.0077032079, 0.00997013133, 0.00599579606, 0.0287047382, -0.0215429924, 0.0235355757, 0.000391432346, -0.0032794585, -0.00398877449, 0.00643979525, 0.00601745443, -0.000183646072, -0.00629901513, -0.0147205638, 0.00231385021, 0.0311882459, -0.00483706594, -0.00422701798, -0.0143956859, -0.00723755034, 0.00055184064, 0.0187851433, -0.00365487253, -0.00131665659, 0.0237810388, 0.00467462745, -0.00866340194, 0.00220916746, -0.000120137018, -0.0238965508, -0.0180631932, -0.0096163759, -0.0174278766, 0.0264522526, -0.00573950354, 0.0129445661, 0.00317658065, 0.0043100426, 0.021817334, 0.0151320752, -0.00578282075, 0.00767433, 0.0122514945, -0.00731696468, 0.00087446213, -0.00744330604, -0.0277662035, -0.00292750797, -0.0266832784, 0.00826632883, -0.0439523235, 0.00181480218, -0.0145472959, 0.00875725504, -0.0138614429, 0.0128651513, 0.012699103, -0.00181299727, -0.00145653437, -0.00576477172, -0.0125113958, -0.0193771422, 0.0023788258, 0.000522060203, -0.000598316197, -0.00444721291, -0.0208066031, -0.0087933531, 0.0138109066, 0.000839267042, -0.013269444, -0.00678633153, 0.00322170253, -0.0401981845, -0.00106487644, 0.018582996, -0.0106704235, 0.00237521599, 0.00434974954, 0.0164893419, -0.011652275, -0.00817969535, 0.00553374784, -0.00135365652, 0.0147061246, -0.0246040616, -0.00289321528, 0.00175794866, -0.000491377315, 0.000298255647, 0.00552652823, 0.0168936327, 0.016807, -0.00123904692, -0.00949364435, 0.00703179464, -0.0196081661, -0.0156663191, 0.0258458145, -0.0125474939, -0.0152764656, -0.0103166681, -0.00427755481, 0.00887276698, 0.00651921, 0.00670691673, -0.0252393764, -0.0102155944, 0.0060716006, -0.0040681893, 0.00301594683, -0.026712155, -0.0116233975, -0.0133488579, 0.0154352942, 0.0124825183, -0.0200124588, 0.000889803574, 0.00238424027, -0.0179188028, 0.0211387, -0.0111252517, 0.000705706247, 0.0017805096, -0.0033011171, -0.00439306675, -0.000550938188, 0.0202723611, -0.0135510042, -0.0111252517, 0.00856954791, 0.00467823679, -0.00462409062, -0.00438584713, 0.0178032909, -0.00143848569, -0.00728808669, 0.00445443252, 0.00826632883, 0.00347438501, -0.0204167496, -0.0162294395, -0.0112552028, -0.0106920814, -0.0160272941, 0.00890886504, -0.00367653114, -0.0182220209, -0.0198103115, -0.00738555, 0.00122912019, -0.00107029115, 0.0635316148, 0.0136087602, 0.0154497335, -0.00689462386, 0.0108436914, -0.000785572, -0.00434974954, 0.0408623777, 0.00943588838, 0.015478611, 0.00527384598, -0.00756603759, -0.00915432815, 0.00766711077, 0.00364765315, -0.00238424027, 0.0250661094, 0.000762559823, -0.0192183126, -0.0104249604, -0.0142007591, -0.00739276968, 0.00124355918, -0.0131106144, 0.00156302203, 0.0149876848, 0.00326682441, 0.00653003901, 0.00446526147, -0.00682603847, 0.00245463056, 0.0227269903, -0.0124247624, -0.00162168057, 0.00575394277, -0.00656613661, 0.00336067798, 0.00471794419, 0.0114862267, 0.0236222092, 0.0370216034, 0.015955098, -0.00927706, 0.00289502018, -0.00180307054, 0.00934203528, -0.0364151672, -0.0245607439, -0.000844681694, -0.000197408241, 0.0278383978, -0.0202434827, -0.018409729, -0.0118327625, -0.00914710853, 0.00225248444, 0.00890164543, -0.00662389258, 0.0097679859, 0.00540740648, -0.00124807132, 0.0188428983, -0.0123958839, -0.0129229072, -0.0099556921, -0.0101361806, 0.010489936, 0.00338053168, 0.0113418372, 0.0118327625, -0.00295999553, 0.000862730434, 0.0136448583, 0.0079125734, -0.00953696109, 0.000937632751, -0.0179621205, 0.0117894458, 0.00217667967, 0.00121107139, -0.0130528584, 0.0130889565, -0.00647589285, -0.0221349914, -0.00367472623, 0.010222814, -0.0228425022, -0.0181209482, -0.00651921, -0.00219653337, 0.00511140702, 0.00673579471, 0.0169947073, 0.0065625268, -0.000520706526, 0.00479735853, -0.0167636834, 0.0248495247, 0.0105837891, 0.00746496441, 0.0189006552, 0.00686935568, -0.00553735765, 0.0128651513, -0.0018662411, 0.0189584102, 0.0240120627, -0.00723755034, 0.0139913941, -0.00918320566, -0.012735201, -0.00363501906, 0.0219761617, 0.0182075836, 0.00286794687, -0.00298345904, -0.0176011454, -0.00192219228, 0.00341121457, -0.00454106648, 0.0166914873, 0.0217884555, -0.0177310966, 0.0189006552, 0.0149876848, -8.64084068e-05, -0.0109303249, -0.00421618903, -0.0014312662, -0.0353466794, 0.0032632146, 0.0021153139, -0.00661306316, -0.00582613749, -0.00877891388, 0.0248350855, 0.0196948, 0.0051727728, 0.0130023221, 0.0185685586, -0.0169513896, 0.00230302103, -0.00891608465, 0.00529550435, -0.022293821, 0.0157529525, -0.00846847519, 0.0025881913, 0.0363862887, 0.0126341274, -0.017630022, 0.00314409286, -0.00490565132, -0.00308453199, 0.00737472065, 0.00683325808, 0.00844681635, -0.00570701575, 0.009861839, -0.00495618768, 0.00766711077, 0.00781150069, -0.00794867147, -0.00787647627, -0.00443277415, -0.0269720573, 0.00872837752, -0.0118688606, 0.00801364705, 0.0233911853, 0.0134643707, 0.0314192697, 0.0156518798, 0.00794867147, -0.0220194794, 0.0162871946, 0.0121504208, -0.00777540309, 0.0179765578, -0.0152909039, -0.00245282566, 0.00277409353, 0.0270586908, 0.0399382822, -0.0175578278, -0.0297732241, 0.000804974406, 0.0313615128, 0.021514114, 0.0118472017, -0.00176607061, 0.00681881933, -0.0028138007, 0.00284448359, 0.0155796846, -0.0126630059, 0.00989793614, -0.00752994, -0.00375414081, 0.0149010513, 0.017269047, 0.0241853297, 0.0182364602, -0.00254487433, 0.00841793884, 0.0105043743, 0.0240120627, -0.00190594839, -0.00160092441, 0.00700291665, -0.00994125381] |
12 Sep, 2022 | Swift – If Statement
12 Sep, 2022
Just like other programming languages in Swift language also if statement is used to execute the program based on the evaluation of one or more conditions or in other words if statement is used to run a piece of code only when the given condition is true. There are also known as branch statement. For example, let us consider a case where you’re going to go to the market, and your father tells you, “if they have the plastic container on sale, buy 2 containers”. This is a conditional statement states that you’ll perform some action, i.e., “buy 2 containers” only if the given condition, i.e., “they have the plastic container on sale” is true. Such type of statement is very useful in programming because they allow programmers to implement conditional behavior into their programs.
Syntax:
if (condition) {
// body of if statement
}
The if statement evaluates the condition inside the parenthesis() and the code inside curly braces{ } is the body of the if statement. Here,
If the condition is fulfilled i.e. evaluated to true, then the code present in the body of the if statement is executed.
If the condition is not fulfilled i.e. evaluated to false, the code present in the body of the if statement is skipped and the control moves to the next statement present after the if statement.
It can be better understood via visual diagram as follows :
Example 1:
// Swift program of if statement
let val = 30
// Checking if number is greater than zero
if (val > 0)
{
// Code i.e. body of if statement
print(“The given number is positive.”)
}
// Statement just after if statement
// (This statement is always executed)
print(“Learning if statement in Swift.”)
Output:
The given number is positive.
Learning if statement in Swift.
Explanation: In the above example, we have declared a variable named “val”. Observe the test condition, “val > 0”. Here, 30 > 0 which means the condition is true so the control flow of the program enters inside the body of the if statement and executes code/statements written inside it, i.e., “The given number is positive.”. Now if we set val = -20 and run the above program then the output will be “Learning if statement in Swift”. This happens because the value of a val variable is less than 0 so the condition is false. Hence, the body of if block is skipped and the control flow of the program executes code/statements written outside/after the if statement.
Example 2:
// Swift program of if statement
let number = 30
// Checking if number is greater than equal to 18
if (number >= 18)
{
// Code i.e. body of if statement
print(“This person is eligible for voting”)
}
// Statement just after if statement
// (This statement is always executed)
print(“Only 18+ peoples are eligible for voting”)
Output :
This person is eligible for voting
Only 18+ peoples are eligible for voting
Example 3: Lot of you might have a question like can we use multiple if statements instead of if-else statements. Here is an answer for you!
// Swift Program to use Multiple If Statementslet number = 9// When the condition is True then it will print the statement else it will skip the condition// 1st if statementif(number%2 == 0){ print(“\(number) is an even number”)}// 2nd if statementif(number%2 != 0){ print(“\(number) is an odd number”)}// 3rd if statementif(number == 9){ print(“Given number \(number) is equal to the given condition number”)}
Output:
9 is a odd number
Given number 9 is equal to the given condition number | NLP/Natural Language Processing (NLP) Tutorial/AI ML DS - Projects/30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated]/Does Artificial Intelligence Require Coding?/Artificial Intelligence – Boon or Bane/Artificial Intelligence Examples/Agents in Artificial Intelligence/What are Diffusion Models?/ML | Common Loss Functions/Loss Functions in Deep Learning/Kaiming Initialization in Deep Learning/Swift - Initialization/Swift – If Statement | https://www.geeksforgeeks.org/swift-if-statement/?ref=ml_lbp | NLP | Swift – If Statement | Artificial Intelligence – Boon or Bane, Natural Language Processing (NLP) Tutorial, ML | Common Loss Functions, AI ML DS - Projects, Artificial Intelligence Examples, NLP, Loss Functions in Deep Learning, Agents in Artificial Intelligence, What are Diffusion Models?, Kaiming Initialization in Deep Learning, 30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated], Does Artificial Intelligence Require Coding?, Swift - Initialization, Swift – If Statement | GeeksforGeeks | [-0.0475950949, 0.0133520588, -0.0145847565, 0.0477248505, -0.0082850242, 0.0157525744, 0.0279238392, 0.0155579383, -0.0271452945, -0.0128265405, 0.0493857488, -0.0214489345, -0.00454476057, -0.0444809124, -0.0568338372, 0.00531357434, 0.0132871801, 0.0245890692, -0.0172577631, -0.00967991818, 0.0055763335, 0.0220847465, -0.0672663525, 0.00457071234, 0.0155190108, -0.00211991509, 0.00604670495, -0.00577097, -0.0672663525, -0.0279757418, -0.000286885974, 0.016167799, -0.0100951428, -0.023304468, -0.0197880361, -0.00469722599, -0.0243295543, -0.000755838118, -0.0246799, 0.00537520926, -0.0104584638, 0.00873917527, -0.0140527505, -0.0106920274, -0.0223572385, 0.00847966, -0.00990050659, -0.0294030756, -0.0348528959, 0.0073442813, 0.00504757138, 0.0280535966, 0.0589099601, -0.00169333688, 0.0399653465, 0.0284688212, -0.0118403826, -0.0150389085, 0.00117836136, -0.0395241715, -0.0416262448, -0.0231747106, 0.0100821666, -0.0304930396, -0.0364878438, -0.021760352, 0.0030298403, 0.0134428889, -0.00958908815, -0.00407114532, 0.0164532661, 0.0129498104, -0.00307849958, 0.0430276282, -0.011561404, 0.0274048094, 0.014364168, 0.0203978978, 0.0218252316, 0.0241608694, -0.00298766908, 0.0219679642, -0.0152465198, -0.00756486924, 0.0513840169, 0.033866737, 0.00783736, -0.0357092954, 0.0386158675, 0.0530708656, 0.0220458191, -0.0276902765, 0.0289359484, 0.00458693178, 0.0144290468, -0.00597533816, 0.0382525474, 0.00964099076, -0.0137543073, -0.00298929121, -0.00370782404, 0.0313753933, -0.0362283289, -0.0055730897, 0.0252378564, -0.0285207238, 0.00763623603, 0.00720154773, -0.0159342363, 0.00664034626, -0.034593381, -0.00254811533, -0.0109515432, 0.0197101831, -0.0185034368, 0.00541089289, -0.010030264, -0.0543424897, -0.00977723673, -0.00189608324, 0.0391348973, 0.00471668923, 0.0264575779, 0.00533952611, -0.00547577161, 0.00970586948, 0.00320501323, -0.0218511838, 0.00287088729, -0.0309861191, 0.00863536913, -0.0049989121, -5.78333747e-05, 0.000120735407, 0.0245112143, 0.0177378673, 0.00705232657, 0.0232266132, 0.000480914168, -0.0133261075, -0.0167776607, -0.0303373318, 0.0258347411, 0.0318165682, 0.037318293, 0.00988753047, 0.0240830146, 0.0272231493, 0.00212153699, 0.0151427137, -0.00112970232, -0.0413148254, 0.0250302441, 0.0103806099, 0.00679929927, 0.0345674306, 0.00456746807, 0.00798009336, 0.0206963401, 0.00944635458, -0.0192819815, -0.0199048184, -0.0010818541, 0.0067473962, -0.00379541027, 0.0384342074, -0.000926145, 0.0218771342, -0.0373701937, 0.0261591356, 0.0132352775, -0.0176470354, -0.00878459122, -0.0271712448, -0.00976426061, 0.0159601867, 0.0145847565, 0.0185553394, 0.0416262448, 0.000888028706, -0.0491521843, -0.000367173518, -0.0253157113, -0.0146626113, 0.0350864604, -0.000641894701, -0.0185423642, -0.0152205685, 0.0272750519, -0.0311418287, 0.00459990744, -0.00339316181, 0.05294111, 0.0209039524, -0.00972533319, 0.0260553304, -0.054031074, -0.018737, -0.000189365019, 0.0325172581, -0.00399653474, -0.0106271487, 0.00528762303, 0.0271712448, 0.0165700484, 0.00910898484, -0.0093685, -0.0243036021, 0.00886244513, -0.00470695784, -0.0172188357, 0.0538234599, -0.0068836417, 0.0102703152, 0.00488537457, -0.00960855186, 0.0191911515, 0.0407957956, -0.0128524918, -0.0201124307, 0.0314792, 0.0667473227, -0.000293576624, 0.01472749, -0.0387975276, 0.00927767, -0.0154541321, 0.0099718729, -0.0170371756, -0.0101081189, 0.0272750519, 0.0232655406, -0.012424292, 0.00144841941, -0.0020274627, -0.00461288355, 0.0196453035, -0.00820068177, -0.0118014552, 0.0144030955, 0.0363580845, -0.0140397744, -0.0279757418, 0.00220912346, -0.0218511838, 0.0342819616, -0.00123837427, 0.0287023857, 0.0188278314, 0.00818121806, -0.0220847465, -0.0349307507, 0.0215397645, 0.0489186235, -0.013728356, -0.0122231673, -0.0207222924, -0.00351318764, -0.0027395077, 0.00335099059, -0.0239662323, 0.0234601777, -0.0404584259, 0.00168360514, 0.0238883775, -0.0619722381, 0.00945284218, -0.0351643153, -0.00826556049, -0.0171280056, 0.0367214046, -0.0139748957, 0.0217084493, 0.0304670893, -0.00296171755, 0.0346971862, -0.0263797231, -0.00330557534, -0.0204368252, 0.0348009951, 0.025562251, 0.0402767658, -0.00527789118, 0.0317387134, 0.0413926803, -0.0267560203, 0.0149351023, 0.0144809503, -0.017063126, -9.72675261e-05, -0.0022545387, -0.0111851068, 0.00910249725, -0.0123075098, 0.0068836417, 0.0201383829, -0.0191132966, -0.0376556627, -0.0174004976, 0.0195544735, -0.0119960923, -0.0549653284, -0.00898571499, -0.0487369634, -0.00500215637, 0.0227205586, 0.0185553394, -0.0115743792, 0.0257179607, 0.0156876966, 0.0215786919, 0.0118857976, -0.0320501328, -0.0263278205, -0.0130341528, -0.0341781564, 0.0649307147, -0.0125929769, -0.0286504831, 0.0127681494, -0.0112240342, 0.0159731638, 0.0556919686, 0.0110099344, 0.0338926911, -0.00216370821, -0.000647571636, -0.0319982283, -0.00788926333, -0.0430535786, -0.00375972711, -0.0406660363, -0.0168555155, 0.0335812718, 0.0110229095, -0.0411331654, -0.0202811155, -0.00387975271, -0.0295847375, -0.016621951, 0.0208131224, 0.0226427037, -0.0349826552, -0.00247512665, -0.0194766186, -0.0447404273, -0.000522274408, -0.00875215139, -0.0428459644, 0.0472836755, 0.000634595868, 0.0188667569, 0.0459082462, -0.0104649523, -0.00668900507, -0.00604670495, -0.0439359285, -0.0461677611, 0.0320501328, -0.0120025799, 0.0293252226, -0.000411777699, -0.00823312066, -0.00592343509, -0.0188667569, -0.0444030575, 0.0014467974, -0.00657546753, 0.0266262628, -0.00591045944, 0.0050054, 0.0283909664, 0.0365137942, 0.00421063462, -0.00542386854, 0.0151037872, -0.0348528959, 0.0258606933, -0.0342819616, 0.0233304203, -0.0183736794, 0.0534601398, 0.0205795579, 0.0327508226, -0.0439359285, -0.0402508117, 0.000940742728, 0.0103676338, -0.00866132136, 0.0274048094, -0.0198010132, 0.0406919904, 0.0192041267, -0.0269895848, 0.0324653573, -0.0148961749, -0.0180363096, -0.0036040179, -0.0181401148, -0.0367473587, 0.0419895649, -0.0451297, -0.00784384832, -0.0205276553, -0.0503459573, -0.017166933, -0.0267819725, 0.00435336819, 0.0512802117, 0.0386937223, 0.0145198777, 0.021410007, -0.017517278, -0.0108542247, 0.0412110202, 0.0267560203, -0.0114381341, 0.0104130488, 0.0257828385, 0.0411591157, 0.0235510077, 0.0232395902, -0.00512542576, -0.00295360782, 0.0129238591, 0.0269376822, 0.0181401148, -0.0107179796, -0.0146236839, -0.00910249725, -0.0361504741, -0.00556335784, 0.0258866455, -0.00313851237, -0.00195771805, -0.00200151117, -0.00686417799, 0.00484969094, 0.0189446118, -0.0297923498, 0.0156876966, 0.0225648507, -0.0321020335, 0.0477508046, 0.0162326787, 0.0414705351, -0.00377270277, 0.00336721027, 0.0172577631, -0.0113602793, 0.00381811801, 0.0322577432, 0.0143511929, 0.00672144443, 0.0588061512, -0.0165440962, -0.0174783505, -0.0375518538, -0.0416781455, 0.016440291, 5.39305111e-05, 0.0251600016, -0.00413602404, -0.00907654501, 0.0394463167, 0.0257828385, -0.0278978888, -0.00138191867, -0.00460963929, -0.0362542793, -0.00317257387, -0.00264218962, -0.0374221, -0.0236418378, 0.00634514773, -0.0343338661, 0.024653947, -0.0367992595, 0.00806443579, -0.00340613746, 0.0459082462, -0.0105038788, 0.0159212593, -0.00625756104, 0.0348009951, -0.0485293493, 0.0448182821, 0.0106206611, -0.0436764136, -0.0347231403, -0.0177638177, 0.0120674586, 0.0303113796, -0.0170890782, 0.00452854112, -0.0239143297, -0.0568338372, -0.0207482427, 0.00569635956, 0.0376037583, 0.0151816411, 0.00139408337, -0.025198929, 0.0403027162, -0.0251729786, -0.0315570533, -0.00842775777, 0.0226427037, -0.0101081189, 0.024563117, -0.0314013436, 0.00946581829, 0.019411739, -0.000907492358, 0.016440291, -0.0160639938, 0.00814229064, -0.0115549164, 0.0248485841, 0.0097967, 0.025289759, 0.0202811155, 0.0160510167, -0.020955855, -0.00394787546, 0.0076881391, 0.0319982283, -0.0364359394, -0.0269636326, -0.00144193158, 0.0333217569, 0.0125410743, -0.00219614781, -0.00261948188, 0.00692256913, -0.0150389085, -0.0234212503, 0.0180492848, -0.0176729877, 0.0251470264, 0.0144420229, -0.00820716936, -0.0373442434, -0.0208001472, 0.0166868307, -0.0103092426, -0.00388948456, 0.00728589, -0.00177930132, -0.00910898484, -0.000652843039, 0.0218252316, 0.0237456448, 0.00058836973, 0.0133390836, -0.00804497208, -0.0407957956, 0.00871322397, 0.021319177, -0.00973182172, 0.0158174541, -0.0271452945, 0.0195285212, 0.00685120234, -0.00105103676, -0.000991834793, -0.0339445919, 0.0310899261, 0.0258347411, 0.0052000368, -0.0142603619, -0.00351967546, -0.000612699252, -0.0219290368, -0.0189316366, 0.0239532571, 0.0128849316, -0.0280795489, 0.00261786, -0.0173096657, -0.0369809195, 0.00458044372, -0.0039349, 0.00684471428, -0.00371106784, -0.0242517, 0.007091254, -0.00077124685, -0.0152594959, 0.0260293782, 0.0172966905, 0.0223312862, -0.011924725, 0.00935552455, -0.0165959988, -0.00203070673, 0.00981616415, -0.0156747196, -0.0179844052, -0.00365267694, -0.00662088254, 0.00705232657, 0.0170501508, -0.0235250555, 0.0240959898, 0.0191652011, -0.0177508425, 0.00799955707, 0.0508130826, 0.0249913167, 0.000413602422, -0.0209818073, 0.0142992893, 0.00243619923, -0.00238105236, -0.0233563706, -0.0110488608, 0.00298442529, -0.0220587943, -0.00676037185, 0.000284453039, -0.0128654679, 0.0148183201, 0.0158953089, -0.033866737, 0.00435012439, -0.0181141645, 0.00842126925, -0.0213451274, -0.0305449441, -0.00251891976, -0.0368252136, -0.0126383919, -0.0307266042, -0.0291435607, 0.0127876131, 0.0162456539, -0.00472642109, -0.0100172879, -0.000170712374, 0.0173485931, 0.0176600125, 0.000855589285, 0.0943597406, 0.00300551089, 0.00918684, -0.021773329, 0.0637888461, -0.00932957325, -0.0056833839, 0.0376297086, -0.0118144313, 0.00202421891, 0.00352940732, 0.0188667569, -0.0219290368, -0.0295328349, 0.00610185182, 0.00615051109, -0.0213321522, -0.0127097592, 0.00245241891, -0.00235023489, -0.0485812537, -0.0287802406, 0.0128524918, 0.0226427037, -0.0370068736, -0.0210337099, 0.0210856125, -0.0331141427, 6.97954092e-05, 0.0129043953, 0.0391089469, 0.013001713, -0.00308823143, -0.0139748957, 0.0140267983, 0.0271452945, 0.0414445847, 0.013637526, -0.00458044372, 0.0263018701, 0.00363970129, 0.00132109481, -0.00463883486, 0.0214489345, -0.0209299047, 0.00159682974, -0.00300064497, -0.0378373228, 0.0294030756, 0.0373442434, 0.011470574, 0.0071172053, -0.0243165772, 0.0163235087, -0.00491132587, 0.00472642109, 0.0181660671, 0.0037986543, -0.00417170767, -0.00975777302, -0.00829799939, -0.0161418486, 0.0637888461, -0.0109710069, -0.0104065612, -0.00859644264, 0.00190581498, 0.0218122564, 0.0211634673, 0.000634595868, 0.0418079048, 0.021760352, -0.00957611203, -0.0141565558, -0.0340224467, -0.0182958245, -0.00549847912, 0.0349567, -0.00608563237, -0.0342041068, 0.0394982174, 0.00168198312, -0.0316608585, -0.038667772, -0.0190094914, -0.0182698723, 0.00406141346, -0.0109126158, -0.0179584548, 0.00808389951, -0.0102249, -0.0413926803, 0.00509947445, 0.024744777, -0.00837585423, -0.0114575978, -0.0362283289, 0.0264316276, -0.0160510167, -0.0010875311, 0.0253157113, -0.0131120076, 0.0120285312, 0.0197361335, 0.00653005205, 0.0398096368, 0.0339964963, -0.00095209654, -0.000281411834, 0.0453632623, -0.0328027271, -0.0171799082, 0.0106011974, 0.0266781673, 0.00134704623, 0.00829799939, 0.0337110311, 0.00486915465, 0.0232525654, -0.0107309548, -0.00160899444, 0.0269636326, -0.00846668426, -0.0229930505, 0.0376816131, 0.0238494501, 0.0200735033, 0.0427681096, 0.00174199603, -6.84268671e-05, -0.0168425385, -0.0193079337, -0.0203849226, -0.0307785068, 0.0248356089, 0.00567689585, 0.0169074181, 0.0111267157, -0.0123594133, 0.0309861191, -0.0423009843, 0.0103676338, -0.0145977326, 0.0177767929, -0.016076969, 0.0406660363, -0.0222534314, 0.0289878529, 0.0142992893, -0.0273010023, 0.0325951129, 0.0250691716, -0.0352940708, -0.04733558, -0.0277421791, -0.00809687562, -0.0275864694, -0.0343338661, -0.0333996117, -0.00276383734, -0.0240051597, 0.0196063761, 0.0170890782, 0.00546603976, -0.01178848, -0.02366779, -0.00517732883, 0.00421063462, -0.0107569071, -0.0276902765, 0.0253935661, 0.0208260976, 0.0494376533, -0.0128395166, 0.0387715772, -0.000859644206, 0.00653654, 0.00086207717, 0.00517732883, 0.0107958335, 0.015986139, -0.0304151867, 0.0024881023, 0.00938796345, 0.00700691156, 0.035501685, 0.0182828493, 0.00689661736, 0.0146236839, -0.0290916581, -0.00487888651, -0.00921279099, -0.00751945423, -0.0108996397, -0.0018717536, -0.0114900367, 0.0243425295, 0.0195544735, 0.023395298, -0.0301297195, 0.00960855186, -0.00847317278, 0.0127746379, -0.0082915118, 0.0483217388, 0.00494052144, -0.000636217825, -0.00884298142, -0.0324394032, 0.0398874916, 0.0558995828, -0.00358131039, 0.00621539, 0.037941128, -0.0271971971, 0.0184645094, -0.000244309253, -0.00234536896, -0.0203978978, 0.0225388985, 0.00536872167, 0.00303308433, 0.00682525057, -0.0174394231, 0.013637526, -0.0132677164, -0.0307525564, -0.0294809304, -0.00175983773, 0.0116003314, 0.0207222924, -0.0107309548, -0.0107439309, -0.00157979899, 0.011152667, -0.0107763698, 0.0263278205, 0.0382525474, -0.00443122257, -0.0432352386, -0.00912196096, -0.00147680391, 0.0305449441, 0.0247966815, -0.0557438731, 0.0166868307, 0.00193501054, 0.0036624088, 0.016440291, 0.00315797608, -0.0250432212, 0.0142344106, 0.0379930325, 0.0118079437, -0.0118014552, -0.009485282, -0.0277162269, 0.0171539579, 0.0201513581, 0.0139748957, 0.0192171037, 0.0238624252, -0.0206055101, 0.0103935851, 0.0112045705, 0.00788277574, 0.0126643432, 0.0189316366, -0.0106336372, -0.0152075933, -0.012333462, 0.027456712, -0.00951123331, -0.00352940732, 0.00639380654, 0.0050054, 0.0487110093, -0.037941128, 0.0109126158, -0.0272231493, 0.0235639829, 0.00875215139, -0.0334515125, -0.0220847465, 0.0157396, -0.0331660472, 0.00274437363, -0.000591208169, 0.0106855398, 0.0337888822, -0.000188452672, -0.0189575888, -0.0230449531, -0.0092646936, 0.0348009951, -0.0332179517, -0.00253351755, 0.00835639052, 0.0244722869, 0.0123594133, -0.0171280056, -0.033970546, 0.00866132136, 0.00602399744, 0.0163624361, 9.01714084e-05, 0.0105947098, 0.0183866546, 0.0133261075, -0.00282709417, -0.0239921845, 1.08912764e-05, -0.00758433295, -0.00919981487, -0.0101340702, -0.0129043953, 0.0103870975, -0.00261948188, -0.0277681313, 0.0417819545, 0.00453502871, 0.0245112143, -0.0233304203, 0.0124502433, 0.0015141092, 0.0218122564, -0.0243555047, 0.0116911614, -0.0113862315, 0.011243498, -8.30752906e-05, -0.0380968377, 0.00515137753, -0.0152984234, -0.0247058515, -0.0161288716, 0.0198399406, 0.0163364839, 0.000119417557, 0.0166608784, 0.0224221162, 0.00747403875, -0.0125086345, -0.0212153699, -0.0167906359, 0.00231779553, 0.029351173, -0.0072339871, -0.0263797231, -0.00349048, -0.0256920084, -0.00366565282, -0.00224318495, 0.0152205685, -0.00268760463, -0.0293252226, 0.000285466755, -0.0134818163, -0.00938147586, -0.0410293601, 0.00956962444, -0.00430795318, 0.0096864067, -0.0380708836, 0.0633217171, -0.00831097551, -0.00892083626, 0.0195025709, -0.0444030575, -0.00883649383, 0.00890786, -0.003545627, -0.0122815585, -0.00357806636, 0.00229671, -0.00487888651, 0.0178806, -0.00224480685, -0.00412953645, -0.0277940817, 0.0062900004, -0.00249134633, -0.0145977326, 0.0112499855, 0.0110229095, 0.0318944231, 0.0013705648, 0.00725345081, 0.0050897426, 0.0121777523, 0.0178157203, -0.00468749413, -0.0308304094, 0.0053460137, -0.0439099781, 0.0116587216, 0.0150778349, 0.024744777, -0.010075679, 0.00595263066, -0.0152854472, 0.00158466492, 0.017530255, -0.0124437558, -0.00567040779, -0.0291176103, 0.0227075834, -0.0158174541, 0.00842126925, -0.0070004235, -0.00251081, 0.0319722779, 0.0366695039, 0.00621863408, 0.00705881463, -0.00733130565, -0.00606292486, 0.00559255341, -0.0240311101, 0.0110229095, -0.000585936767, 0.000520247, 0.0146885626, -0.0145588052, -0.014182508, -0.0085185878, 0.0255103484, -0.0137543073, -0.00143787661, -0.0250561964, 0.00328124571, -0.0160639938, 0.0104000736, 0.00195934, 0.000862888177, 0.00988753047, 0.000353386771, -0.0174004976, 0.0168684907, -0.000906681351, 0.0233174432, -0.00682525057, -0.0199956484, -0.00560877286, -0.00251891976, 0.0109515432, 0.00150843232, -0.0230709054, 0.0209818073, -0.0189316366, 0.00940094, 0.00858346652, -0.00798009336, 0.0015887199, 0.0431833342, -0.0102638276, -0.0156357922, 0.0212413222, -0.0261331853, -0.00346128456, -0.00323258666, 0.0294290278, 0.0113732554, 0.0153762782, 0.0309342165, 0.018970564, 0.00520976819, 0.00320987916, 0.0199307706, 0.011334328, -0.0284688212, -0.0146107078, 0.00193987635, -0.0154152047, -0.00406790152, -0.0122166798, -0.00350669958, 0.0137413321, -0.0148961749, 0.00519030495, -0.0102378763, -0.00288710697, -0.0271712448, -0.00664034626, 0.00312878052, 0.0176729877, 0.011334328, 0.00309796305, 0.0116716977, 0.00731832953, 0.0114121828, 0.0103222188, -0.016985273, -0.000355414231, -0.00779194478, -0.0271452945, -0.019956721, 0.0160380416, 0.00303308433, -0.0182958245, 0.0137802595, 0.0205925349, -0.0243555047, -0.0011759284, 0.0101535339, -0.0108088097, 0.00419765897, 0.00189283921, -0.0353200249, 0.0139748957, 0.013228789, -0.0109126158, 0.00423334213, 0.00202421891, -0.013728356, -0.0125021469, 0.00814229064, -0.0205665827, -0.00285304571, -0.00847966, 0.0101859728, 0.00178741117, -0.0274826642, 0.0182568971, -0.0163235087, 0.0050864988, 0.0120804347, 0.00070799, 0.0111915944, 0.0136894286, -0.000403059617, 0.00345804053, 0.0183607023, -0.000604589412, 0.0261461604, 1.44456726e-05, 0.00492105773, -0.0142992893, -0.00933606084, 0.00840829406, -8.93984361e-06, 0.015986139, -0.00664359, -0.0202811155, -0.0221236739, -0.0191132966, 0.00757135684, 0.0137413321, -0.0229281709, -0.00317906169, -0.0163754113, 0.0173226427, -0.0208131224, -0.0183088, 0.0118014552, 7.83614378e-05, 0.0377854183, 0.00960206334, 0.00112159248, -0.000727859151, 0.0140657257, 0.000678389042, 0.011061837, 0.0049989121, -0.00435336819, -0.0202940907, -0.0222664066, 0.00610834, -0.00412629219, -0.0246020444, -0.00345804053, 0.0118403826, 0.0214359593, -0.0255882032, 0.0109126158, 0.024653947, -0.00810336322, 0.0191003215, -0.00678632362, -0.00430470891, 0.035683345, 0.0238105226, 0.0137153799, 0.0172577631, -0.0272231493, 0.0111202281, -0.00565094408, 0.0208131224, -0.00435661199, 0.0159472115, 0.0190743692, -0.0166608784, -0.0127746379, -0.00898571499, 0.0260423534, -0.0239013527, -0.0206184853, 0.0179454796, -0.0268598273, 0.00977723673, -0.00297631533, -0.00757135684, 0.00310607301, -0.0181790423, -0.00303795026, 0.00154817058, 0.0246409718, -0.0187759269, 0.00196745, -0.0046031517, 0.0142603619, -0.0135985985, 0.0131509351, 0.00307525555, -0.0125670256, 0.0169074181, 0.0036851163, 0.0190873463, -0.025289759, -0.0268857777, -0.00744808745, 0.0570414476, 0.00890137255, 0.0154411569, 0.0118987737, -0.0149091501, -0.0127616618, 0.00666954182, -0.00213126885, 0.0358390547, 0.0183607023, -0.00138516258, 0.00718857208, -0.00503459573, -0.0176989399, 0.0122556072, -0.0122361435, -0.00104941474, -0.0227075834, 0.00765569974, 0.00447015, 0.0056866277, -0.00995889679, 0.0161937512, 0.00789575092, 0.0263667479, -0.00048213065, 0.00183931424, 0.01187931, 0.0244203843, -0.0133261075, -0.0211504921, 0.00821365695, 0.0332958065, 0.000456990121, -0.0156098418, -0.00452529686, -0.0207352675, -0.00844073296, 0.00346128456, -0.005712579, 0.0214748867, 0.00240375986, 0.00574501837, 0.000288710697, 0.000637028832, -0.00148004782, 0.0170242, 0.0167776607, -0.00962152705, -0.00681227492, -0.0113148643, 0.0238883775, 0.014000847, 0.000974804105, 0.0110293971, -0.0259125959, -0.00526815932, 0.014000847, -0.0294809304, -0.00372404372, 0.00548550347, -0.00123026443, 0.00701988721, -0.0078308722, 0.0154152047, 0.00230481965, 0.00596560631, -0.00676686, -0.00447015, 0.00285304571, -0.0243036021, -0.0082850242, 0.0416002944, -0.00703935092, -0.00522274431, -0.00539791677, 0.0123853646, 0.0252378564, -0.000278776133, 0.0412110202, -0.019969698, -0.0138581134, -0.0101665091, -0.0178676248, -0.0257828385, 0.00204206049, -0.0106855398, 0.00532979425, -0.0261591356, -0.0137543073, -0.00395436352, 0.00289846072, -0.0133390836, 0.018970564, -0.00853805151, 0.0166738536, -0.0232395902, -0.00889488496, -0.00338991778, -0.0121582886, -0.0197880361, -0.0130082015, -0.0342819616, -0.0185293872, 0.0255233236, 0.0238754023, 0.040198911, -0.00702637527, -0.0195414983, 0.0362283289, 0.0178546477, -0.00694203284, -0.00737672066, -0.0155190108, -0.00280763046, -0.0159601867, 0.0155579383, -0.00589424, -0.011515989, 0.0277940817, 0.0127162468, 0.0015725001, -0.0192949586, -0.00493078958, 0.00801902078, 0.0078308722, -0.0102378763, 0.023213638, 0.0491262339, -0.0237196926, 0.0128589803, 0.0332958065, -0.0127811255, -0.00296333968, -0.0111332033, -0.0371366292, 0.0205795579, 0.0383563526, -0.0244593117, -0.011016422, -0.0176859628, -0.0049729608, -0.0284688212, 0.0121582886, -0.0459861, -0.00810336322, -0.0101405578, -0.0409255512, 0.00743511133, -0.00111997046, -0.0171799082, -0.0133261075, 0.0230060257, -0.00847317278, 0.00956313685, 0.0242646746, 0.0148961749, 0.00255135912, -0.0236937404, 0.0073442813, -0.0288580935, -0.00896625128, -0.010075679, -0.0248485841, -0.0153113995, -0.0196323283, -0.00848614797, 0.00906357, -0.0373442434, -0.0192171037, 0.0180363096, -0.00601750938, 0.00324718445, 0.016985273, 0.0116846738, -0.000967505272, -0.00124648411, 0.00399004668, 0.00778545719, 0.00260812812, -0.00755189359, -0.0020031333, 0.011379743, -0.0165440962, 0.0024864804, 0.00177930132, -0.00538169732, -0.00445068628, 0.00244593108, -0.0227465108, 0.0146755865, -0.00157898804, 0.00701339915, 0.00306876772, 0.00890786, 0.0124502433, 0.00982913934, -0.00622187788, -0.0280276462, -0.0301816221, 0.0125475619, 0.0151427137, 0.0165570714, 0.0207612198, -0.0238235, 0.00438580755, 0.0188018791, -0.0158693567, -0.0354497805, -0.00960855186, -0.00873917527, -0.00927118212, -0.0379670784, -0.00404843781, -0.00668900507, -0.00621539, -0.00748052681, -0.0204887278, 0.00982265174, -0.0116457464, 0.014364168, 0.00175659382, 0.0200345758, 0.00731832953, 0.0288580935, -0.00297307153, -0.0046323468, 0.0168684907, 0.0087781027, 0.0164792184, -0.00690310542, -0.0199048184, 0.00374999526, -0.00142084598, -0.00213126885, 0.0130860554, 0.00886244513, 0.0097967, -0.011515989, -0.0229541231, -0.00181660661, -0.0398615412, -0.0201254059, 0.00701988721, 0.0172058605, 0.00363645726, 0.0156876966, -0.0215267893, -0.00701339915, -0.0128395166, 0.0151946172, -0.0201254059, -0.00980967563, 0.00897922739, -0.00168522703, -0.0295587853, 0.00572231086, 0.00775950542, 0.0367214046, -0.0173485931, 0.00964747928, 0.017063126, 0.0093685, -0.0123853646, 0.00277843513, 0.00493727718, 0.00434039254, 0.000163920369, 0.0113667678, -0.00235185679, -0.0194766186, -0.00726642646, -0.0188667569, 0.00240051583, 0.00178416725, 0.0141046531, -0.0163105335, -0.00324231852, -0.011833895, 0.00169495889, 0.009485282, -0.0151037872, 0.0234212503, 0.00230319775, -0.026107233, -0.0152465198, 0.00387002109, -0.01197014, 0.00310931704, 0.00193987635, -0.00168360514, 0.00138759555, 0.0195544735, -0.0112370094, -0.0262369905, 0.00369484816, -0.00553091848, 0.0365916491, 0.00931011, 0.00674090814, -0.00969938189, 0.0303632822, 0.0141695319, 0.00445717433, 0.0078568235, 0.00950474571, 0.00543035613, 0.0223702136, 0.00346452836, -0.00255946908, 0.0097447969, 0.00823312066, 0.00182147254, -0.00654627196, 0.0232266132, 0.0134688411, -0.0118987737, 0.00185715593, 0.0555881634, 0.00564121269, 0.0123399496, -0.0181011874, -0.0149610536, -0.0238494501, 0.0041457559, 0.00967991818, 0.000167873921, -0.0175043028, -0.00160737254, 0.000784222619, 0.020774195, -0.0163883865, 0.0188667569, -0.021228347, 0.00388299674, 0.0130211767, 0.0276124217, 0.0143122654, -0.00890137255, -0.0277681313, -0.00351967546, 0.00511245, -0.0141695319, 0.0119766286, -0.00347101642, -0.0127227344, 0.0181920175, 0.0382525474, 0.0159342363, 0.0174913276, 0.0292733181, 0.0356573947, 0.0175691824, 0.0213840548, -0.0123723885, 0.0263018701, -0.0278459843, 0.00510271825, 0.0139878709, -0.0022561606, -0.00989401806, -0.015531987, -0.00681876298, 0.0128589803, 0.00527464738, 0.0013300156, -0.00721452339, 0.00569960335, -0.00719506, -0.000986157916, 0.0131574227, 0.0165440962, 0.00393165601, 0.00501837581, 0.0145717803, -0.0294030756, 0.00725993887, 0.012106386, -0.0225388985, -0.0142863141, -0.0155838896, -0.00630946411, -0.0127032707, 0.00798658188, -0.0239143297, -0.026561385, -0.00676037185, 0.000513759092, 0.0115484279, 0.00375323906, 0.0237067174, -0.00736374501, 0.0049762046, 0.0089986911, 0.00602724124, 0.011470574, 0.00149302359, -0.0069744722, 0.000596074038, -0.0115808677, 0.00251243194, -0.0257568881, 0.00687066605, -0.000410155713, 0.0208520498, -0.0114965253, -0.00657222327, 0.00190581498, -0.00707827788, -0.0104909036, 0.00761677232, -0.0124307796, 0.0137802595, 0.00543035613, 0.00949177, -0.0133780101, -0.0173226427, 0.00501188822, 0.0266781673, 0.0150129562, -0.0110683246, -0.0144679742, 0.0220977217, 0.00257893256, 0.00040630353, -0.00398355909, -0.0354497805, -0.033970546, -0.00881703, 0.00387650891, -0.00332503906, 0.00956962444, 0.016621951, -0.00262759184, 0.031531103, 0.00686417799, 0.0374480486, 0.00132677169, -0.0257698633, 0.00264218962, 0.00934254844, -0.0363321342, -0.0111591555, 0.037318293, -0.00532330619, 0.00342884497, -0.00255135912, -0.00205503637, 0.0215397645, 0.0025464932, 0.00895327609, 0.0013705648, -0.00959557574, -0.00657871133, -0.0078698, -0.0119831162, 0.00365267694, 0.00750647811, 0.00638407469, 0.011470574, -0.0168036111, -0.0218252316, -0.00710422965, -0.00596560631, -0.00693554478, -0.000571744516, 0.000888839713, -0.00592667935, 0.00956962444, 0.000366159773, -0.0165181458, -0.0140657257, 0.0284428708, -0.0149740288, -0.00962801557, 0.0103481701, -0.00943337847, -0.00206639012, 0.00983562786, -0.00949825812, 0.0100237764, 0.00696798414, -0.00511893816, 0.0206055101, 0.0259515233, -0.00328286784, 0.00173713011, 0.0169593208, -0.00868078507, 0.0203330182, -0.0113992067, -0.015350326, -0.0174524, 0.0187759269, 0.000277356914, 0.0107893459, -0.00438905135, -0.0113408156, 0.000706773542, 0.00797360577, 0.0131444465, -0.0162845813, -0.0300259124, 0.0225129463, 0.00524545182, -0.0224350914, -0.0198010132, -0.0117236013, 0.03612452, 0.0256920084, 0.00061756518, 0.0055471384, 0.00831097551, -0.0187240243, -0.0190873463, 0.0322058424, -0.000917224155, 0.0192949586, -0.0168165881, -0.00342235714, -0.00170793466, 0.020955855, -0.017517278, -0.0182828493, 0.013728356, -0.00532330619, 0.0199826732, 0.0195674486, -0.0146496352, -0.0197361335, -0.00382136181, -0.0136894286, 0.0174264479, 0.00666954182, 0.027638372, 0.00720803579, 0.00636785524, -0.011833895, 0.0018133627, 0.0422750339, 0.00254973723, 0.0120544825, 0.00394138787, 0.00863536913, 0.00106239051, -0.00932308473, 0.0139619196, -0.0103416825, 0.0149610536, -0.011924725, -0.0059137037, 0.00938147586, 0.0293252226, 0.0240830146, -0.00677983556, -0.0093685, 0.0074870144, -0.00843424536, 0.00708476594, 0.00904410612, -0.0202940907, -0.0232266132, -0.00530059868, 0.00505081518, 0.0218252316, 0.0116716977, 8.66740374e-05, -1.86146426e-05, 0.0145717803, 0.00822014548, -0.0153243747, 0.0313234888, 0.00435012439, -0.0108088097, -0.00680578733, 0.000756649126, -0.0010591466, -0.0136245498, 0.00244268728, 0.0163754113, -0.0171409808, -0.0119441887, 0.0175432302, -0.0166608784, -0.00806443579, -0.0205536075, -0.0105168549, 0.023122808, 0.00601750938, -0.013274204, -0.00512867, 0.0106401248, -0.00574177457, -0.00827853568, -0.00351643143, 0.00191230292, 0.00867429655, 0.00975128543, -0.0270674396, -0.00749350246, -0.00393814361, 0.00427226955, 0.00720154773, 0.00410358468, -0.00556011405, 0.00914142467, -0.0118533587, -0.013728356, -0.0160899442, -0.0190484188, -0.016167799, -0.00751296617, -0.00716262078, -0.0009358768, -0.0273529068, -0.00809687562, -0.00471020164, -0.00619592611, -0.0202421881, 0.0288321432, -0.00048415811, 0.0223831888, 0.026016403, -0.00345155271, 0.0106206611, 0.0186461695, -0.00481076352, 0.0154671082, 0.0176340602, 0.00196745, 0.0224480685, 0.0148312962, 0.00256271288, -0.0183088, -0.0364878438, 0.0054595517, -0.0227465108, 0.0021977697, -0.00901815481, -0.00232914928, 0.0176600125, 0.0131055191, -0.00135353417, -0.00975128543, 0.00392516796, 0.0129433228, -0.0262240153, -0.000261339941, -0.0173226427, -0.00177605741, -0.00670198118, 0.00617646286, 0.00175010588, 0.0257179607, 0.00235672272, -0.00745457504, 0.0145717803, 0.0128849316, 0.00765569974, 0.00751296617, -0.0180233326, 0.0175562054, -0.00966694299, -0.0318944231, -0.0367473587, -0.00121161179, 0.0054563079, -0.0190484188, -0.00800604466, 0.0104260249, -0.00568013964, -0.00672793249, -0.0129108829, 0.0188278314, 0.00984211545, -0.00730535388, -0.0127486857, -0.00703935092, 0.0208001472, -0.00579367764, 0.0177119151, -0.000210045138, -0.0113408156, -0.011833895, 0.0119896038, -0.00295036379, -0.0193209089, -0.0321798883, -0.00919981487, -0.0206703879, 0.0158563815, -0.000667846238, 0.0184904598, 0.0266262628, 0.00081463455, -0.00958908815, 0.0423269346, -0.0202421881, 0.00625431724, -0.00991348177, -0.00691608107, -0.0100497277, -0.0118857976, 0.0182568971, -0.0230968557, 0.00261461595, -0.00873268768, -0.00395436352, -0.00121891068, 0.00220750156, -0.0268338751, -0.00621863408, -0.0217214245, 0.0061699748, 0.0282093063, -0.00194312038, -0.00396409538, 0.00674090814, 0.0124113159, 0.00318879355, -0.00350021175, 0.00320339133, 0.0139748957, 0.000340005499, 0.00138759555, 0.000587153248, 0.004969717, 0.00525193941, -0.034593381, -0.0193857886, -0.000794359948, 0.00480751973, 0.00758433295, 0.00196745, -0.00461288355, -0.00467451802, 0.00257082283, 0.0008004423, 0.00622187788, 0.01187931, -0.00148004782, -0.0268857777, -0.0141176293, -0.00692256913, -0.00120106898, 0.0262888931, 0.0339964963, 0.00878459122, -0.0343598165, 0.00635163533, 0.001360022, 0.0145717803, -0.00197069393, -0.00470047, 0.00613104738, 0.00165440969, -0.00515462132, 0.00696798414, 0.0281055011, 0.0080319969, 0.0300518647, 0.00112078141, 0.0243944321, -0.0205406304, 0.00710422965, -0.0163883865, 0.00441500312, -0.0159212593, -0.0236418378, -0.00910898484, -0.00415224396, -0.00620890222, -0.0129627865, 0.00546928355, 0.00649761269, -0.00944635458, 0.0196972061, 0.000643111183, -0.013728356, 0.0176470354, -0.00241997954, -0.0198529158, -0.00629648846, 0.00359753, -0.000779356691, -0.0143511929, -0.0114640854, -0.00386028923, -0.0077140904, 0.00244917511, -0.00520652439, -0.0175562054, -0.00423334213, 0.00593965501, 0.00182147254, 0.0234472025, 0.00679281121, -0.0158823319, 0.000978859, 0.00661115069, 0.0223572385, -0.02375862, 0.0121193612, -0.00467127422, 0.0163754113, -0.000883162778, 0.010607685, -0.0171409808, -0.015622817, -0.00632892782, -0.022772463, -0.00901815481, -0.000562012661, -0.0105557824, -0.00417819526, -0.0268598273, 0.00407763338, 0.0150908111, -0.0404584259, -0.00170306873, -0.0153113995, -0.0251729786, -0.012424292, 0.00166251953, -0.000714072376, 0.0172318127, 0.00767516298, -0.0244593117, -0.00324394042, 0.00159277476, 0.00638407469, 0.0367214046, 0.00145490735, 0.0160250664, -0.0276902765, 0.0103806099, 0.0180882122, 0.0125216106, 0.0205146801, -0.00607590051, -0.00905708224, 0.000122458747, 0.0118533587, 0.00262759184, 0.00420090277, 0.0135856224, 0.0168555155, -0.00327800191, -0.021682499, 0.00182796048, -0.000843424525, -0.00563796842, 0.0215657167, -0.000158648967, -0.00180687488, 0.0114900367, 0.0156098418, -0.015350326, -0.00549523532, 0.0188927092, -0.000888839713, 0.0269117299, -0.0125345858, 0.0136505011, -0.00196745, 0.0112175457, -0.00845370907, 0.0134688411, 0.00502162, 0.0232914928, 0.000962639344, 0.0033136853, -0.00760379666, 0.0245112143, 0.00072056026, -0.0312196836, 0.0146366591, -0.00690310542, 0.0022545387, -0.0121907284, 0.0158823319, 0.0149870049, -0.00680578733, -0.0123010222, 0.0013705648, -0.0299999621, -0.013910017, 0.00573204271, 0.00373377558, 0.0113018882, 0.0167387333, 0.00979021192, -0.00375972711, -0.00521301245, -0.0141435806, -0.00479454407, -0.0201902855, 0.0213970318, -0.00517084124, -0.0277681313, 0.00194474228, -0.0170112234, 0.00943986699, -0.00211018324, 0.0282093063, -0.0259125959, 0.0239662323, -0.0136505011, -0.00344830868, -0.0354497805, -0.0044896137, -0.00669549312, 0.00383109367, 0.00117268448, 0.00800604466, -0.00781789608, -0.00100562151, -0.00972533319, -0.0134428889, -0.00220750156, 0.00258217659, 0.0229800735, 0.0230060257, -0.0113083767, -0.0193079337, 0.00290170475, -6.71090165e-05, -0.00892732386, 0.0125021469, -0.00766218733, 0.0277681313, 0.0189835392, -0.0276124217, -0.0311418287, 0.0131898616, -0.000602561922, 0.0189056844, -0.00381163, 0.0106920274, -0.00586180063, 0.0101470454, 0.0153892534, -0.00472317729, 0.00200962112, 0.00370782404, 0.0023729424, 0.0240440872, 0.0106466124, 0.0181920175, 0.00941391569, -0.0262629427, -0.0143382167, -0.0319463275, -0.0251210742, -0.0445847176, -0.00677983556, -0.0138970409, 0.0338148363, -0.0119960923, 0.00866780896, -0.00744159939, 0.00184255815, 0.00846668426, 0.00496322894, -0.0114056943, 0.0096864067, 0.000793143467, 0.0111851068, -0.00211180514, 0.0119831162, -0.00796711817, 0.00694852043, 0.00166414143, 0.00894678757, -0.031531103, 0.011470574, -0.0164143387, -0.00118403824, 0.0126967831, 0.00891434867, -0.00287899724, 0.00886893366, -0.00589748379, -0.00669549312, -0.00917386357, -0.00209882949, -0.0217214245, 0.00140300428, -0.0158434045, -0.0228243656, -0.00621539, 0.0198399406, -0.00111429358, 0.0130082015, 0.0162067264, 0.00383433769, 0.0178806, -0.0372144841, 0.0053168186, 0.0443252027, 0.0105752461, -0.00237943023, -1.41668961e-05, 0.000181964788, 0.00180687488, 0.00449934555, -0.0125345858, -0.00817472953, 0.0232525654, 0.00890137255, -0.0310639739, -0.0144030955, 0.0186850969, -0.00759082055, -0.00153519481, 0.00540440483, 0.00476859231, -0.000275734928, -0.00460639549, 0.0107114911, -0.000579854357, 0.00849263649, 0.0229541231, 0.00319528137, -0.00865483284, -0.00703935092, -0.00887542125, -0.00109482987, 0.0186461695, -0.0091544, 0.00860941783, -0.000864510133, 0.00355860265, -0.000267016847, -0.00602399744, 0.0179065522, 0.0220068917, 0.00655924762, 0.00538818492, -0.00108023221, -0.0085121, -0.00585855637, -0.00165684265, -0.00190581498, 0.0158953089, 0.0126578556, 0.0158174541, -0.0174783505, -0.0214619096, -0.0111396918, 0.0122620948, -0.0159082841, 0.015350326, -0.0263667479, 0.0114121828, 0.00241997954, -0.0192560311, 0.0144809503, 0.00811633933, -0.00969289429, 0.0121777523, 0.00535574555, 0.0113148643, 0.00952420942, 0.00484320335, 0.0173096657, 0.0116262827, -0.000298442523, -0.0017728135, -0.0186850969, 0.011107252, 0.0170890782, 0.00195934, -0.0319982283, -0.00326664816, 0.00272328802, -0.0182179697, -0.015986139, -0.0103611462, -0.00327800191, -0.0190224666, 0.0046258592, 0.0164792184, -0.018607242, -0.00224642875, 0.0169203933, -0.0115484279, 0.0298183, 0.013910017, 0.00884298142, -0.0200605281, 0.00427875761, 0.00388299674, 0.0113992067, -0.00137299777, -0.000134420785, -0.0111980829, 0.0171928853, -0.0138710896, -0.0243295543, -0.0135985985, 0.00423983, -0.0173875205, 0.0160899442, 0.00284980168, 0.00423658639, -0.0174134728, -0.0131963501, 0.00419117091, 0.00996538531, -0.0256141536, -0.0139878709, -0.013546695, 0.00695500849, 0.0188148543, -0.0251340512, -0.000171726104, 0.0125864893, 0.00117998337, 0.00860293, -0.00912844855, -0.0092646936, 0.0104065612, -0.0165830236, 0.0110293971, 0.0135596711, -0.0158434045, -0.0251340512, -0.00106725644, -0.00962152705, -0.0172188357, -0.0110358857, -0.00662412634, -0.0158563815, -0.0108477371, 0.000431849563, -0.0131314714, -0.00518381689, 0.0134299137, 0.0215786919, 0.0259125959, 0.00740267197, -0.00966694299, -0.00115727575, -0.00287899724, 0.0309601687, -0.0018879734, 0.0205276553, 0.00467127422, -0.00447663805, -0.00497944839, 0.00273301988, 0.0153892534, -0.00776599348, 0.000975615112, 0.00912844855, -0.00822663307, 0.0178806, -0.0321020335, 0.0100108, -0.032621067, -0.0322577432, 0.00616024295, -0.0137802595, -0.0118987737, -0.0125994645, 0.00694852043, -0.0240311101, -0.00535574555, -0.00265029934, 0.0145069016, -0.00355211482, 0.0137543073, 0.0161288716, 0.011288913, 0.0100562153, -0.0163883865, -0.022214504, -0.0102249, 0.0080319969, -0.0124113159, 0.00816175435, 0.00325367227, -0.000680011, -0.0275864694, 0.0294809304, -0.00174037402, 0.00980318803, 0.00660141883, -0.00573528698, -0.0211115647, -0.0188278314, -0.00937498827, 0.00348399207, 0.000473209802, 0.00822014548, -0.0128654679, 0.00796063, -0.00809687562, -0.00619917037, -0.00129757624, -0.0076881391, 0.00905708224, 0.0104000736, 0.0198918432, -0.0205406304, -0.00537520926, 0.00100724353, -0.00395760732, 0.00587153248, -0.00941391569, -0.00547577161, 0.0024881023, -0.00627378095, -0.00158790883, 0.0118857976, -0.00760379666, -0.0111007644, 0.00812931452, 0.0301556699, -0.0142344106, 0.0357352495, -0.00805146061, 0.00148004782, -0.0070004235, 0.00864185765, 0.0120285312, 0.00657871133, -0.000426172686, 0.0248096567, 0.00350669958, 0.0055471384, 0.00556660164, 0.00629973225, 0.0179195274, 0.0184385572, 0.00065487047, 0.0119896038, 0.00199177954, -0.00516110938, 0.0158304293, 0.0153762782, -0.000963450293, -0.00171117857, 0.00826556049, -0.0151556898, -0.011379743, -0.0134039624, -0.00367538445, -0.00188472937, -0.00837585423, 0.00816824194, -0.0074610631, -0.0178546477, -0.0224869959, -0.00314824423, 0.0133261075, 0.0182828493, 0.00119539211, 0.0210596621, -0.010211925, -0.0339445919, 0.0115289642, 0.0117300889, 0.00428848946, 0.0179325026, 0.00810336322, 0.0152075933, 0.0105298311, 0.0130276652, -0.0186721217, -0.00781140849, 0.00610509608, -0.00190094917, 0.00833043922, -0.00284169195, 0.0189835392, 0.0229411479, -0.011924725, 0.00794765446, -0.0272231493, 0.0323875025, 0.00943337847, -0.00733779324, 0.0154022295, -0.0222015288, 0.00156601227, 0.00856400281, -0.00536223361, -0.00344506488, -0.0123139983, -0.0387196727, -0.0206184853, 0.00690959301, -0.0215657167, -0.00488537457, -0.0206444375, 0.0106141735, 0.00767516298, 0.00421387888, 0.00888839643, 0.00194798619, -0.0118857976, -0.000113740665, 0.022214504, 0.0106336372, -0.00990050659, 0.0313494392, 0.00166089751, -0.00814229064, 0.00638731895, 0.0157915018, -0.0182309449, -0.0106336372, -0.00970586948, -0.000167367049, -0.0289359484, -0.0151297385, 0.00040224861, 0.00498269266, 0.00570284715, 0.00846019667, 0.031531103, 0.0133780101, -0.0117300889, -1.06441794e-05, 0.0102832913, 0.0107050035, 0.0182958245, -0.00630622031, 0.0349048, 0.00472317729, 0.00579043385, 0.0215527397, 0.0134039624, -0.00371106784, 0.00327475788, -0.0078698, 0.0133909862, -0.0050864988, 0.016076969, 0.00703286286, 0.0013405584, 0.00788926333, 0.0121193612, -0.0239402801, -0.00185229, 0.00287899724, 0.00927767, -0.0097447969, 0.013546695, -0.00409060903, -0.0169203933, -0.00276870327, 0.0124307796, 0.0132677164, 0.021410007, -0.0150908111, -0.0157655515, -0.0180492848, -0.00868078507, -0.00598507, 0.0228892434, -0.00583260506, -0.00783736, -0.000995078706, -0.003432089, -0.00652680825, 0.00205828017, -0.0118144313, -0.0137024047, 0.00737672066, -0.0325691625, 0.0154930595, -0.0146366591, -0.00526167126, -0.0106531009, 0.00352291926, -0.0182958245, -0.011743065, 0.0130536165, 0.00739618437, 0.00268598273, 0.0121907284, 0.0236807652, 0.0108412495, 0.0104000736, 0.00525193941, -0.0177119151, 0.0016398119, 0.0148053439, -0.00227075838, -0.0172577631, -0.0213581044, 0.00547901541, 0.0141046531, 0.0133390836, 0.00209882949, -0.00355860265, -0.00239889394, -0.00934903603, -0.013819186, -0.0114186704, 0.0049762046, -0.0229930505, 0.0162197016, 0.00885595754, 0.0199048184, 0.0085185878, -0.00829799939, 0.00473290915, -0.0074610631, -0.00315473205, 0.000210653379, 0.0133261075, 0.00504108332, -0.00484644715, 0.015531987, 0.00870673638, -0.00172902027, -0.00501513202, -0.0012253985, -0.0197101831, 0.0280276462, -0.012106386, -0.0228762683, 0.0111721307, -0.00985509157, -0.000948041619, 0.00395760732, 0.00873917527, 0.0147404652, 0.00559579721, 0.00804497208, 0.0207871702, 0.00207936577, 0.00578070199, -0.00562823657, -0.00380189833, 0.00297307153, -0.00611807173, -0.00768165104, 0.00477508036, 0.00760379666, 0.0297404453, 0.016076969, 0.00544657605, 0.0201124307, 0.0176470354, -0.000740429386, 0.00772057846, -0.00810985081, -0.00463559106, -0.00914791226, -0.0124437558, -0.0245501418, -0.00562823657, -0.026016403, 0.0173485931, -0.00120998977, 0.00868727267, 0.0114900367, 0.0113083767, 0.00447663805, 0.0223831888, 0.0164532661, 0.0109255919, 0.00341262529, -0.00868078507, 0.000604994886, 0.0193987638, -0.00947230589, 0.0188278314, 0.00474912906, 0.000604994886, 0.00281087449, 0.0160120893, -0.0239143297, 0.00217668409, -0.00511893816, 0.0139229922, 0.00144598645, 0.00781140849, 0.00822663307, 0.00847966, 0.00173064228, 0.0143122654, 0.00675388426, -0.0134299137, -0.00348399207, -0.00259515247, -0.0290397555, -0.00596236251, -0.0149480775, 0.00160575053, -0.0171409808, -0.00324231852, -0.0192949586, -0.00129352126, -0.00958908815, -0.0247318018, -0.0225518737, 0.014000847, -0.00178254524, -0.0268598273, 0.0133390836, -0.0236288626, -0.00796711817, 0.0012610819, -0.00473290915, 0.00201773108, -0.0094593307, -0.00232914928, 0.0173745453, 0.00908303354, -0.0206314605, 0.00459017558, -0.00556335784, -0.00901166629, 0.0215397645, -0.00614402303, -0.0299480576, -0.018516412, -0.00408087717, 0.000541332585, -0.00673442055, 0.00071163947, -0.000393733266, -0.0087716151, 0.0192300789, -0.0197620858, -0.00738969631, 0.00263894559, -0.0132158138, 0.0152854472, 0.0288580935, 0.00351318764, 0.00801253319, -0.0119636524, -0.0121323373, -0.00822014548, -0.0251600016, -0.0142344106, 0.000637839781, -0.00919332728, -0.025198929, 0.0124502433, -0.00199988927, -0.00988753047, -0.00875863899, 0.00293414411, 0.0128979078, -0.00424956204, -0.00312553672, 0.0120025799, 0.0187629517, -0.0172577631, -0.0129043953, -0.022850316, 0.00329259969, 0.0191132966, 0.00364618911, -0.00999133661, -0.0191652011, -0.00282222824, 0.0158693567, -0.0346971862, -0.0229281709, 0.0169203933, 0.00616348675, -0.0290397555, 0.0236548148, 0.00188635138, 0.00376621494, -0.000745700789, -0.00232914928, 0.0213321522, 0.000999133685, -0.00696149608, -0.000908303307, 0.0261721108, -0.000280803593, 0.00209396356, 0.00564121269, -0.0120220436, 0.000112524183, -0.00312391459, 0.0118533587, -0.00983562786, -0.0114121828, -0.0125475619, 0.0136634773, -0.0169722959, -0.00568013964, -0.0186331943, 0.00532655045, 0.00471668923, 0.00196096208, 0.00751296617, 0.0246928744, 0.00610834, 0.0103546577, 0.0142863141, 0.00170144683, 0.03612452, 0.00425280584, 0.0389013328, 0.00121728866, 0.00277843513, -0.0111851068, -0.00290657068, -0.0087781027, 0.0155449631, -0.00984860305, 0.0111786192, -0.00895327609, -0.0217084493, -0.00432417262, 0.000791521452, -0.0138840657, -0.0133001562, -0.024666924, 0.00362996943, 0.00644246582, -0.0100627029, 0.0236807652, -0.0122491196, -0.00742862374, 0.0275086146, 0.0175043028, -0.00905708224, -0.0104260249, 0.0052259881, 0.0114965253, -0.00286764349, 0.0130925439, 0.003432089, 0.0213970318, 0.00834990293, 0.013910017, -0.0109191034, 0.00672793249, 0.0213710796, -0.017608108, -0.0221885536, 0.00764921168, -0.00589099573, 0.0385380127, -0.0129108829, -0.0047458848, -0.0102832913, -0.00888190884, 0.00187986356, -0.00937498827, -0.0182698723, -0.0065430277, 0.0032585382, -0.00221398938, 0.00685769, 0.000659330923, 0.00500864396, 0.00162034831, -0.00691608107, 0.00544982, -0.00699393544, 0.0113278404, 0.00280600856, 0.00347426021, -0.00907654501, 0.00303470623, 0.00289359479, -0.00945284218, -0.00871322397, -0.0139229922, 0.022850316, -0.0137024047, -0.00459990744, -0.0153243747, 0.00338991778, -0.00602075364, -0.0107569071, -0.0208131224, 0.000940742728, 0.0118468702, 0.0129368342, 0.0134688411, 0.00975777302, 0.0130601041, 0.00262434781, 0.025653081, 0.0168555155, 0.00943986699, 0.00589424, -0.000678794517, -0.0140657257, -0.0037402634, 0.0116197951, 0.016440291, 0.00491781393, 0.000699069176, 0.0125021469, -0.0235510077, -0.00699393544, 0.02945498, -0.0181011874, 0.0141435806, -0.00419765897, -0.00286115543, -0.00134866824, 0.0025464932, 0.0283390637, -0.00192041276, 0.0144809503, -0.00884298142, 0.0011743065, -0.0149870049, -0.00726642646, 0.0132677164, 0.0234601777, -0.00471344544, -0.00536547741, 0.0213970318, 0.0309342165, -0.00699393544, -0.00401924225, -0.000682038488, -0.0103416825, 0.0173875205, -0.000158040726, -0.00553091848, 0.0127746379, -0.00553091848, 0.0315051489, 0.0248096567, -0.0199048184, 0.016985273, 0.0273529068, -0.0240051597, 0.00223507499, 0.0110748131, 0.000237618646, -0.00126351486, 0.00165846455, 0.00215073256, 0.0120155551, 0.0318684727, -0.00821365695, -0.00855102669, -0.0146755865, -0.0184126068, -0.019969698, -0.0143511929, -0.017166933, 0.0209818073, -0.0470760651, 0.0235380325, -0.0367733091, 0.0093685, 0.0205536075, 0.00581638515, 0.00632892782, 0.00265192124, -0.0127616618, 0.00430146512, 0.0258347411, 0.00711071771, 0.0017549718, 0.0200086255, 0.0221106987, 0.0129108829, 0.0118987737, -0.00653005205, 0.00817472953, 0.0201773103, -0.000536466658, 0.00857697893, -0.00822014548, -0.0105882213, -0.0105752461, 0.0252767839, -0.00259353034, -0.0132158138, -0.00685120234, -0.0106855398, -0.00474912906, 0.0178416725, -0.00735076889, 0.0106466124, 0.0224610437, -0.0267041177, -0.00465829857, 0.0065138326, -0.0230838805, 0.000192913081, 0.00698096, 0.00883649383, 0.00468749413, 0.00136326603, 0.00626404909, -0.00258704252, -0.0137672834, -0.00431444077, 0.00921279099, 0.0041457559, -0.00988104288, -0.0191522241, 0.0107179796, 0.00983562786] |
23 Sep, 2024 | 6 Best iOS Project Ideas For Beginners
23 Sep, 2024
If you have decided to start working on some fascinating project ideas then you need to think first before getting started. However, it’s not an easy task to find new project ideas for learning and improving any new programming language. Those who are trying their hands-on experience with an iOS app development can go with certain programming languages such as React Native, Flutter, Swift, Objective C, and so on. However, Apple adopted Swift as their official language for developing iOS apps for different platforms (Mac, iPhone, etc.) and swift is heavily used among developers throughout the world.
In the past few years, we’ve witnessed the enormous growth of the digitized market, especially in app development and the way people have accepted it with wide arms is quite extinguishing. Be it business (from small to medium), healthcare, or education, in fact, we’re surrounded by this trend all across the Internet. Interestingly, recently, as per a survey, iOS is moving every year with a growth of 6% (above 25% as of now) in India, and that’s the main reason why the company has started rolling out affordable iPhones.
In this field of opportunities, now is the best time to enter into the World of iOS app development and that’s why we thought to bring up something to uplift your skills. In this article, we are going to discuss some of the Best iOS Project Ideas that you can start right away.
6 Project Ideas for iOS app Development:
1. Doctor Appointment App
This app can allow patients to connect with their doctors over the platform. This has been the best solution so for to get a consultation in this digital world and will also enable patients to connect as per their suitable timing. This iOS app is an efficient way of overseeing the arrangements more adequately. It will generally consist of two major units i.e. patient and doctor. On one side, the patient will open the application and with a few clicks, s/he can schedule an appointment without making any inquiry calls or waiting. Whereas on the other hand, doctors will also save a lot of time which usually takes (like filing up basic details, time slots, staff management) and so on. However, this could be a game-changing project idea for you to give a kickstart in the iOS development and you’ll have to consider some of the below pointers will starting this project:
As per a survey, there are billions of active individuals that are using health-related services and at this pace, it is expected to increase somewhere around $230 Billion in the next couple of years.
This app will not only save time but will also focus on eliminating human errors
It becomes easy to manage and track records, especially when data is stored in the central DB
For Example: Practo
2. Money Management App
The next one on this list is a budgeting app that can help users to manage the flow of money in their day-to-day lives. You can categorize users into two large segments, where one is those who are money-minded people and always takes a path towards saving whereas the other one is the spenders who want to control their expenditures and have no control over their expenses. This app can be a life safer and can teach its users how they can control their expenditures. Recently, a report suggested that 20% of Americans exhausted their wallet during the pandemic and that it all happened due to mismanagement of the budget. On the other hand, there are countries like London, where people seek help with money management tools (under the age of 30) for spending wisely. Thus, this app can work like a charm and it will easily track all the user’s expenditures by pulling out all the necessary details from the bank and other sources of investments and will keep them parallel to maintain the graph. Besides this, there are certain things to consider for you as a developer before hopping into this project idea:
This app idea can also be helpful in tracking and updating real-time transactions.
The money management app will provide full insight and will also provide various options for investments.
The opportunities are huge in fintech in 2022 and it is expected to be somewhere between $310 Billion at a CAGR of 25%
For Example: Mint
3. Compare – Car App
With the advancement of technology, today people have become so reliable with technology that they want everything under their thumb. Earlier like people used to visit showrooms, but with the change of time and pandemics, most things are now becoming digital. Just like “Car”, Yes, today people are eager to look into every specification before stepping out of their house. This app can be built in such a way that users would be able to select 2 cars and an automatic report will pop up right in front of them by which they can compare all of the specifications on a single screen. However, this app can have solidified other functions too that you can consider if you’re planning to get started with this iOS application:
If the user will request a detailed report, a brief report will be generated along with all the information and can be sent to the user’s mail address.
It can be helpful in saving customers’ time.
An admin panel will be created by which user accounts can be handled and any unauthorized activity or comment will be monitored and will be removed from the admin’s end.
For Example: CarDekho
4. Sleep Tracking App
As we are moving forward and surrounded by technology, people are becoming more and more tech-friendly and they are trying to do everything they can which is tech-built. However, today users have been curious about maintaining and analyzing the data of their sleep records to check for any irregularities. This has never been an easy task but machine learning and artificial intelligence and advancement in hardware capabilities have made it possible in today’s time. The requirement arises when a survey was conducted where it was observed that people do face challenges in their sleep patterns. This app will help in collecting data on wake-up time, sleep duration, and any unusual distraction. Besides this, users would be getting an option to customize their tracking requirements. This can be a challenging and a perfect project idea for iOS app development, however, you need to focus on a few things before processing ahead:
For creating this app, all entries are required to be stored over the server that can be called anytime whenever the user asks for
The signup feature can be added to social accounts so that it can sound more appealing
This project can be implemented using React
For Example: SleepCycle
5. Notebook
This is one of the best apps to work on for those who are trying to brush up their skills. It’s a basic app that you can create for writing, editing, and saving notes. This also allows users to share those notes across the platform and they will also have the facility to modify the contents whenever required. Besides this, being a developer, you can do some modifications to UI, add cool color contrasts, and add themes so that it can look beyond simple. You can also design in two patterns either in a short notepad with a word limit of up to 900-1000 words or the notepad can be crafted beyond these limits. However, being a clean and simple app, there are certain things to consider while working on this project:
This app is light weighted and can easily run with minimum requirements
Data can be centralized and can easily share with anyone as per the requirement
Suitable for beginners to get hands-on experience
For Example: Notebook-Notes
6. Online Store – Furniture
Following the trend, online stores have now become a game-changer in business for attracting customers. That’s why we bought the last iOS project as an online store for furniture apps. This app will enable opportunities and will open doors to showcase their business on a broad platform. However, online stores are not new in the trend but creating something for any specific industry can make a real impact. Not just this, if you’ll see the graph, the figures for online furniture stores have been booming from $509 Billion (2020) to $607 Billion (2025) *worldwide. So, you see the figures and opportunities that can be looked into beforehand, right? Now there are a few pointers to see before you actually try your hands-on:
Since furniture is considered a premium product so it is a must to have a nice and intuitive UI & UX for a rich experience.
AR can also be implemented for more clarity before buying
The app will be divided into 3 major divisions, first one would be the user panel, then the store owner, and at last admin panel.
For Example: UrbanLadder
The app development market is vast and with the growing pace and advancement iOS has become a pioneer. Even if you’re at an early stage, this article will definitely provide you with some additional guidance to enhance your development skills. However, the projects do not end here but we have carefully picked the 6 best iOS project ideas for you to enter into the development field. | NLP/Natural Language Processing (NLP) Tutorial/AI ML DS - Projects/30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated]/Does Artificial Intelligence Require Coding?/Artificial Intelligence – Boon or Bane/Artificial Intelligence Examples/Agents in Artificial Intelligence/What are Diffusion Models?/ML | Common Loss Functions/Loss Functions in Deep Learning/Kaiming Initialization in Deep Learning/Swift - Initialization/Swift – If Statement/6 Best iOS Project Ideas For Beginners | https://www.geeksforgeeks.org/6-best-ios-project-ideas-for-beginners/?ref=lbp | NLP | 6 Best iOS Project Ideas For Beginners | Artificial Intelligence – Boon or Bane, Natural Language Processing (NLP) Tutorial, ML | Common Loss Functions, 6 Best iOS Project Ideas For Beginners, AI ML DS - Projects, Artificial Intelligence Examples, NLP, Loss Functions in Deep Learning, Agents in Artificial Intelligence, What are Diffusion Models?, Kaiming Initialization in Deep Learning, 30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated], Does Artificial Intelligence Require Coding?, Swift - Initialization, Swift – If Statement | GeeksforGeeks | [-0.0499666594, 0.0262507144, -0.0115332054, 0.0118579725, 0.0326034836, 0.0235733632, -0.00568343047, 0.0046695224, 0.00269517372, -0.00495468406, 0.0217673406, -0.0399226323, 0.0456892364, -0.00557649462, -0.0128481174, -0.000727261242, 0.0116203381, -0.0219732895, -0.0179493427, -0.0259338692, 0.000670327921, -0.0345996134, -0.0356452093, -0.0244288482, 0.0147333527, 0.0134105189, 0.00564778503, 0.00899843499, -0.016095791, 0.0249674879, 0.0353917293, 0.00354471779, 0.0206108503, -0.0256170221, -0.0263140835, 0.0100836335, -0.0284211114, -0.0162383728, 0.00482002413, 0.0072518196, 0.0410315953, -0.00142382807, -0.00227337214, 0.0297677089, 0.00912517309, 0.0112480437, -0.0238743685, -0.0317796841, -0.0190899894, -0.0498399213, -0.0105668241, -0.00210504746, 0.0352966785, 0.0317004696, 0.000416850904, -0.00225554942, -0.029102331, -0.0299895015, -0.00407543546, 0.0302112941, 0.00513291, -0.0365006924, -0.00883209053, -0.0266626161, 0.0163967963, 0.00447545387, -0.0274705738, 0.0344728753, -0.0329203308, -0.0029466704, -0.0154541777, 0.0259021837, -0.0069230916, 0.0336173922, 0.00182285637, -0.00750529673, -0.000352739036, 0.0352333076, 0.000429722772, 0.0595037341, 0.032983698, 0.00127035554, -0.0281201079, -0.018266188, 0.00933112297, 0.0401127413, 0.0387819856, -0.0665377229, 0.0344411917, 0.0122777941, -0.0259021837, -0.00314073893, -0.0152878333, 0.0116757862, 0.0146699836, 0.014258083, 0.03574026, 0.0158819202, -0.0146699836, -0.00677655, 0.0181869771, 0.049459707, 0.00662604813, -0.00780630065, -0.00579432631, -0.0130144609, 0.0219099205, 0.0145036392, 0.0093469657, -0.0665377229, 0.020626694, 0.000878753373, -0.0306548793, 0.00883209053, -0.0378948152, -0.00250704633, 0.0188681968, -0.0629890412, 0.0269953031, 0.00717260782, 0.0632108375, 0.0108123794, -0.0143372947, 0.0174740721, -0.0668545663, 0.00597255258, 0.0395741, -0.0192800965, 0.0399543159, 0.0343144536, 0.015176937, 0.0245239027, 0.012285715, 0.0281201079, 0.0398592651, -0.000930240902, 0.0353283621, 0.0319539495, -0.0111767529, 0.00489131454, 0.0265834033, -0.0235892069, 0.014384822, -0.00491903862, 0.00738647906, 0.0229396708, 0.0259655528, 0.0314945206, 0.0121035287, 0.0171889104, -0.0417920239, 0.00378235267, 0.0365640633, 0.0434396267, 0.0309558827, -0.00735479454, 0.0147016682, -0.0133867562, 0.000132060537, 0.0233040452, 0.0163492691, -0.0263616107, 0.00553688873, -0.0168720651, -0.0183770843, -0.0169671196, 0.0367858559, 0.0014317492, -0.0785145089, 0.0380532406, 0.0022832735, -0.0272963084, -0.0381799787, 0.0259021837, -0.0334272832, 0.000195677334, 0.00962420646, -0.030147925, -0.0100123426, -0.0128718801, -0.0324767455, 0.0355184674, -0.00266943, 0.0118975779, 0.0366591141, 0.00624187198, 0.0412217, 0.000418831187, -0.00486359047, -0.0357085764, 0.00611909386, -0.0597572103, 0.00681219529, 0.0289755929, 0.0169671196, -0.0581729785, -0.0217831824, 0.017347334, -0.0109153548, 0.0268368814, 0.00267933146, -0.0258388147, 0.00584581401, 0.0491428599, 0.02114949, -0.0114619145, -0.00847563799, -0.0190741476, 0.0239377376, -0.0221475549, -0.0422989801, 0.0383384, -0.0115728108, -0.00394473644, 0.000291597593, 0.0114539936, 0.00755678397, 0.0209910665, 0.00343184127, -0.000929250789, 0.0178859737, 0.0338391848, 0.0485091656, 0.0010327209, -0.0227970909, 0.000204712414, 0.00675278669, 0.0626405105, 0.00122084841, 0.0221633986, 0.0415068641, 0.000945093052, -0.00775481295, -0.0224485602, 0.00647554593, 0.0185355078, -0.00146739441, -0.00335262972, -0.0375462845, 0.00924399, 0.0253793877, -0.0309717245, -0.0297360253, -0.0394473635, 0.0458793417, -0.0185671933, 0.00548540149, 0.0496815, 0.0228446182, 0.051107306, -0.0260764491, -0.0155096259, 0.00275062188, 0.0266150888, -0.0349164605, 0.0283577424, 0.019185042, -0.0149313817, 0.0229713563, 0.0164601654, 0.0026634892, -0.0284527969, -0.0346946679, 0.0364690088, 0.0275814701, 0.0223376639, 0.0694527104, -0.0243654791, 0.00632900465, -0.0619434491, 0.0616899729, -0.0210227519, 0.0240011066, 0.00563590322, -0.00695081567, 0.0326985382, -0.00670525944, 0.0058260113, 0.0213237554, 0.0541807152, 0.00895882864, -0.0169988032, 0.0771837533, 0.0481606349, -0.0119292624, -0.0158502348, -0.00297439448, -0.0288013276, -0.0273438357, 0.00830929354, -0.0100202635, -0.0167611688, 0.00624583242, -0.00425762217, 0.0389404073, -0.0146145355, -0.00624187198, 0.0259338692, -0.0272012539, 0.00738251861, 0.019121673, -0.042108871, -0.00168720644, -0.0211970173, -0.0300687123, 0.0310350936, 0.0112955701, -0.0220366586, -0.0181711353, -0.0148204854, 0.0587749854, -0.0270111468, -0.0318113677, -0.0383067168, -0.00643594, 0.0355184674, 0.0542757697, 0.0249516461, -0.0247140098, -0.0187414587, 0.0083489, -0.0170463305, -0.0176483393, 0.0243179519, 0.0128560383, -0.000262140791, 0.0187414587, 0.0185355078, 0.0168720651, -0.0138382614, 0.0125708766, -0.0506637208, -0.00163472886, 0.0135847842, 0.0517093129, -0.0109391185, -0.0128243538, 0.0235416796, -0.00636464963, 0.0175532848, -0.0195652582, -0.00309717259, -0.0142184775, -0.0213079136, 0.00262784399, -0.0443584807, -0.0252368078, 0.0419187658, -0.00161888648, 0.0262982417, 0.00158819207, -0.0323341638, 0.00988560449, -0.0307657756, -0.0296568125, -0.015826473, 0.0268844068, -0.0328569598, -0.00911725219, 0.0207059048, 0.0408414863, -0.0339976065, -0.0286587477, 0.0269953031, 0.00611909386, 0.0116124162, 0.0168562233, -0.0192008857, 0.00436059712, -0.000445317564, 0.0335857086, 0.00362392934, -0.00314271916, -0.00508142216, -0.0542124, 0.0198028926, 0.0139491577, 0.0265200343, -0.0598205812, 0.0270903576, -0.00522796391, 0.0172681231, 0.0126817729, 0.0370710157, -0.0124679012, -0.0148204854, -0.0011970849, -0.0188998803, 0.013663996, 0.0243337955, -0.00422197673, -0.00647950685, -0.0152244642, 0.00307340897, 0.000336401659, -0.0111054629, 0.0167136416, -0.00577848405, -0.00161987671, -0.0466714576, -0.0062141479, 0.0311618336, 0.0117153917, 0.0375462845, -0.0150264353, 0.00594086805, -0.0227654055, 0.00629335921, 0.00849940162, 0.0181394499, -0.0143531365, -0.00987768266, -0.0272170957, 0.0228921436, 0.00361204776, 0.0304330867, -0.0117866816, 0.0521845855, 0.0101786871, 0.0317479968, 0.0266784579, 0.0280408971, -0.00855485, 0.00394275598, -0.0347263552, 0.0175057575, -0.00345956534, -0.011232201, -0.00598443439, -0.0181711353, -0.0420138165, 0.0143769, 0.0592185706, -0.0256328657, -0.00372096361, -0.00560421869, 0.0160482638, 0.0236050487, -0.0156680495, -0.0384334549, -0.0127768265, -0.0148204854, -0.0164760072, 0.0221317131, -0.0286112204, 0.00489527499, -0.0396057852, 0.0218307097, -0.00842019, -0.0246506408, 0.000752014865, -0.0153274396, -0.0359620526, 0.0338074975, 0.0265358761, -0.0273438357, -0.00844395347, 0.0112559646, 0.00970341731, -0.0106777204, -0.0174582303, 0.0468615666, 0.0126659302, 0.00609929115, -0.00398632232, -0.0193276238, -0.0577610806, -0.038370084, 0.00354669825, 0.0410949625, -0.0426791944, 0.0103371106, 0.0436297357, -0.00250704633, 0.012943171, 0.0171572268, -0.00771916797, 0.0137194442, -0.020167267, -0.0203890596, 0.0432178341, 0.0449604876, -0.00872119423, -0.0364056379, 0.00254863244, 0.0222584512, 0.0195018891, 0.0227970909, 0.0180127118, 0.0310192518, -0.0149472235, 0.00465764059, -0.00616266, -0.0116361799, 0.00100499683, -0.0959410593, -0.0102816625, -0.0210702792, -0.0272170957, 0.0341243446, 0.00176542788, 0.00725974049, -0.0142184775, 0.0357719474, -0.0246823262, -0.0149076181, -0.013331308, 0.0074300454, 0.0354234166, 0.00779441884, -0.0046695224, 0.00448337523, 0.00737459725, 0.0167136416, 0.0177592337, 0.0244130064, -0.0115332054, 0.0278191045, -0.0277715772, 0.0274547301, 0.00325955614, 0.000189860235, 0.0102578988, -0.0188998803, -0.0236367341, 0.0218782369, 0.00515271258, -0.0259180274, 0.0232406761, -0.0153274396, -0.00918854214, -0.00634088647, -0.0020595009, -0.014321452, -0.0107410895, 0.0120718433, 0.0230822526, 0.0204999559, -0.00153175381, -0.00672506262, -0.0422039255, 0.0252209641, -0.00189711712, -0.0214346517, -0.0073112282, 0.024238741, 0.00567550911, -0.016681958, 0.00885585416, 0.0111133838, -0.00596463121, 0.0512023605, 0.0259180274, 0.00939449295, -0.00931528118, 0.000540618959, -0.037831448, -0.0131808054, -0.024634799, -0.0321123712, -0.00412692316, -0.00607552752, 0.0353917293, 0.00581412949, 0.0253001768, -0.021086121, -0.00732311, 0.0361838453, -0.00384176127, -0.0142263984, 0.0127292993, -0.0123966113, -0.0104400851, -0.0215613898, 0.0186147187, 0.0375462845, 0.0215772316, -0.0146858254, 0.0038199781, -0.0182028189, 0.00104955339, 0.00758450804, -0.0222426094, 0.0228921436, 0.00699438201, 0.0135134943, -0.00602404028, -0.00879248418, -0.000246422249, 0.000206073863, 0.00861029793, 0.013600627, -0.0138065768, -0.00562798232, -0.01787013, 0.00494280225, 0.0161670819, 0.016087871, 0.0150264353, -0.0309875663, -0.0111213047, -0.00405959319, -0.0111529892, 0.0207692739, -0.0236684177, 0.00246942067, 0.0156838913, 0.000705478073, 0.0264566652, 0.00340609765, 0.0123807685, -0.0318747386, 0.0245872717, 0.0189315658, 0.009592521, -0.000721320393, -0.0115965744, 0.00408731727, -0.0535787083, 0.000562402187, -0.0140204486, 0.0148917753, -0.0332371742, -0.0314945206, -0.00361996889, 0.0163017418, -0.00867366698, 0.000838652544, 0.00159116241, -0.0251575951, 0.000429227715, 0.00745380903, 0.00782610383, -0.0105668241, -0.00408335635, -0.0150739625, -0.00453090202, 0.0148363272, -0.00281003048, -0.0269160923, 0.0294667054, 0.0199137889, -0.00163472886, 0.152466431, -0.0110658566, 0.013465967, 0.000387889158, 0.0131253572, 0.0185038242, 0.00245555886, -0.0109391185, -0.0146382982, 0.0134105189, 0.0160799492, -0.0281201079, -0.0194068346, -0.0044081239, -0.0174265467, -0.0175691266, 0.00510518579, 0.0302905049, -0.000943607884, 0.0142343193, -0.0360887907, 0.0290072784, -0.0219732895, 0.0377680771, -0.00238030776, 0.00247734203, 0.0173790194, -0.0086974306, -0.040461272, 0.00907764584, 0.0263774544, -0.00581412949, -0.0384017713, -0.00849940162, 0.00750133581, 0.0139016313, 0.00294865086, -0.0110500148, -0.0146224564, 0.0437881574, 0.00484774821, -0.0306865629, 0.0107331676, -0.00771124661, -0.0139174731, -0.00783402473, -0.0159294475, -0.00815087091, 0.0187889859, 0.0193909928, 0.00253279, 0.0194702037, -0.0111925956, -0.00303182285, -0.0354867838, 0.00882417, 0.00559629779, 0.00376651017, -0.0347263552, -0.0259813964, -0.00493884133, 0.0192959383, 0.0299895015, 0.000343085121, 0.000743103563, -0.013925394, 0.0265200343, 0.0240011066, -0.0130778309, -0.0289439093, -0.0163967963, 0.00712508103, 0.0020892052, -0.00752509944, 0.000905982335, -0.017537443, 0.0418553948, 0.0201038979, 0.00726370141, 0.0172364376, -0.00819047634, -0.0402077958, -0.0236842595, -0.00967965461, -0.0176483393, -0.00807562, -0.0121114496, 0.0178542882, -0.00795680285, 0.021545548, 0.000280210952, -0.0145274028, 0.00126540486, 0.0363422707, -0.00551312556, -0.0355184674, 0.0211019628, 0.0146699836, -0.0129669346, -0.0270111468, 0.00609137, 0.00841226894, -0.030417243, 0.000464625395, 0.00578640541, 0.0144640328, -0.0179810263, -0.00245753909, -0.0116124162, 0.0373878628, -0.0354234166, -0.00631316239, -0.0112242801, -0.00276646414, 0.0085706925, 0.000140971839, 0.00415068632, 0.00813502818, 0.00156739901, 0.0142501621, 0.0498716049, 0.0327302217, -0.0266150888, -0.0517093129, 0.00516459439, 0.0172998067, -0.00495864451, 0.0296092853, 0.00166443316, 0.0511389896, -0.0114143873, -0.0128718801, -0.0408414863, -0.00679635303, -0.0148600908, -0.0258863419, -0.0243813228, 0.0286112204, 0.0278507881, 0.00943409838, -0.0345679298, -0.0138382614, 0.016951276, -0.010772774, -0.0114777572, 0.0262824, 0.00315064029, 0.0379581861, -0.000780234, -0.00688744616, 0.0212920699, 0.0330787525, -0.0276131537, -0.00885585416, -0.0100994753, -0.0101311598, -0.0233990978, 0.0121272914, -0.029894447, 0.000789640355, 0.00287934067, -0.000781719224, -0.0304330867, 0.0028872618, -0.0260922927, -0.0225277711, -0.00233080052, 0.00063963345, -0.0183770843, -0.0128639592, 0.0237476286, 0.000739638053, 0.0159136057, 0.00804789551, 0.0117787607, -0.0031625221, 0.0203573741, 0.00100103626, -0.0218307097, 0.0126659302, -0.0186622459, -0.0123728476, 0.0292132273, 0.00177037867, -0.00237436686, 0.0275339428, 0.00192880176, -0.00851524435, -0.0215613898, -0.0126025612, 0.0120797651, 0.0148600908, 0.0150898043, 0.0257754456, 0.0399543159, 0.012808511, 0.0216722861, -0.00922022667, 0.0103054252, -0.017806761, 0.0180127118, 0.00200603297, 0.0213395972, -0.00721221371, 0.0346946679, 0.00552500738, -0.000669337809, 0.00750529673, -0.00723597733, -0.0177275501, 0.0486042202, 0.0070419088, 0.00635276828, 0.00892714411, -0.0084677171, 0.0166978, 0.0243654791, 0.0335223377, 0.00192385109, 0.000120983299, 0.00838058442, -0.000694586488, -0.00794492103, -0.0355818383, -0.00653099408, -0.00822216086, -0.0152640697, 0.000985193881, 0.0164601654, 0.0218782369, 0.0236050487, -0.0192959383, -0.0296409708, 0.000561907073, 0.0497765504, 0.0269002505, 0.000599037507, 0.0254744422, 0.0137590505, -0.0263616107, 0.0205633249, 0.00861029793, -0.00636861054, -0.0150105935, -0.0278507881, -0.0156838913, -0.00346352602, 0.0258388147, 0.0116599435, -0.00237436686, -0.0148125645, 0.0309083555, 0.0118658934, 0.0167136416, 0.0144640328, -0.0196286272, 0.0329520144, 0.0202623196, 0.0120084742, -0.0392889418, -0.0159769747, 0.0165869035, -0.000844593393, -0.00308529078, 0.0030516258, -0.00667753536, 0.0129035655, -0.0107014831, -0.0213079136, -0.0149630662, -0.0303380322, 0.0332371742, -0.0145670082, 9.31973627e-05, 0.00370710157, 0.0416019186, -0.0199137889, 0.0122065032, 0.015374966, -0.0213079136, 0.0244605336, -0.00357838278, 0.0208168011, -0.0201989505, -0.00199514139, -0.0196444709, -0.000546064752, 0.0129114864, 0.0225436129, 0.00348134851, 0.000728251413, -0.00340609765, 0.0087053515, -0.0475269444, 0.0458159745, -0.0222109258, 0.000121540259, 0.0469249338, 0.021086121, -0.0257754456, -0.00326945772, -0.0441683717, -0.0224802438, 0.00665773265, 0.0306390356, 0.0122461095, -0.0261715036, -0.00421405584, -0.0261398181, 0.0396374725, -0.0109866448, 0.0116757862, -0.00600819755, -0.0265041925, -0.0047883396, -0.0127292993, 0.0306231938, -0.0185513496, 0.0125233494, 0.0151531743, 0.00718448963, 0.0226861946, 0.0266309306, -0.0152482279, 0.004728931, 0.00552896783, 0.00207732338, 0.00805185642, -0.00364769297, 0.0283577424, 0.0204682704, -0.000575274054, -0.0193434656, -0.00617850246, -0.0345045626, -0.0227812491, 0.00361996889, -0.00651119137, 0.00854692888, -0.00826176722, -0.0283577424, 0.00348332897, -0.0269636195, -0.00603988254, -0.0123411631, -0.0178226046, 0.0259021837, 0.0163175836, 0.0142976893, 0.00518043665, 0.00362392934, -0.0371660702, -0.0175849684, 0.0094657829, 0.0319539495, -0.0118342089, 0.000433930894, -0.00205554022, -0.0147333527, -0.011232201, 0.0119609479, 0.00125154282, 0.042900987, 0.0238743685, 0.0152323851, -0.0144402701, -0.0106301932, -0.00031808397, -0.026203189, -0.0311459899, -0.00729538593, 0.0249674879, -0.00187731429, -0.00756074442, -0.00333282701, 0.0132996226, -0.0324767455, -0.00924399, -0.0164760072, 0.0287062731, -0.0201038979, 0.0150818834, 0.00351699372, -0.00563194277, 0.0189632513, 0.00318430527, 0.00331698451, 0.0155333895, 0.0062220688, 0.00665773265, -0.018725615, 0.0183454, -0.0275022574, 0.00102876034, -0.0743321404, 0.0161116347, -0.00611117296, 0.0180919226, 0.00937865, 0.0142422412, -0.00103074056, -0.0315737315, -0.0372928083, -0.00798848737, 0.029625129, -0.0281359497, 0.00275062188, 0.0140996603, 0.00675278669, -0.0162542146, -0.00906972494, 0.011628259, -0.00747757265, 0.00227733282, -0.00464575877, 0.0143056102, 0.0187097732, 0.000742608507, -0.0161116347, 0.0205157977, 0.00327737886, 0.000403731479, 0.016681958, 0.004400203, -0.0375462845, -0.00918854214, -0.00215257448, -0.016024502, -0.000658941281, 0.0181869771, -0.0177117083, 0.00402790867, -0.0195652582, -0.00460219244, -0.00879248418, -0.0188365113, -0.00425762217, -0.00127530633, 0.00486359047, 0.0433445722, 0.0330470689, -0.0129986191, -0.0284527969, -0.0114381509, -0.017078016, 0.00375462859, -0.000561907073, -0.00629335921, 0.000915388751, -0.0221158713, 0.016491849, -0.0121748187, -0.0222267676, 0.00129807962, 0.0636544228, -0.0144085847, -0.0196919963, -0.0203573741, 0.0102341352, -0.0120718433, 0.00580620812, 0.00216049561, 0.0141155021, -0.0139412368, 0.0209435392, 0.00932320207, 0.00549332239, -0.00267537078, -0.0131808054, 0.00372096361, -0.00147531554, 0.00293082814, 0.00899051316, -0.00350511214, 0.00308925123, -0.0183770843, 0.0105589023, 0.00932320207, 0.00145353237, -0.00433287304, -0.00765975891, 0.00142184773, -0.0137669714, -0.012547113, 0.0159928165, 0.026203189, 0.0542124, 0.0107252467, 0.0200563706, 0.0375146, 0.0174899157, -0.00514479168, -0.017141385, -0.0164284799, -0.0024179332, -0.000557946507, -0.00597651303, 0.0163017418, -0.0325401127, -0.0171097, 0.0047368519, -0.00408731727, -0.00863406155, 0.0173156504, -0.0003066973, -0.0239535794, -0.0137115233, -0.0087608, 0.00337045244, 0.014384822, 0.0215930752, -0.00483982731, 0.0169354342, -0.00651515182, -0.0111925956, -0.015826473, 0.0254427567, 0.00537846563, 0.00546163786, 0.00503785582, -0.00606760662, 0.00407543546, -0.0212445445, 0.0119530261, -0.00377245108, 0.00420613447, 0.00721617416, 0.0137511287, -0.0141313449, -0.00541015062, 0.0117629189, 0.0291815437, 0.0226386674, -0.0150581198, 0.00510914624, 0.0230664108, -0.0103450315, 0.0122777941, -0.0232565179, -0.000530222489, -0.00450317794, -0.00186345226, -0.00350313191, -0.0467348285, 0.0153432814, 0.0100757116, -0.0110500148, 0.011232201, 0.0139808422, 0.00230307644, -0.00353283621, -0.00180206331, 0.0112718064, 0.0241912138, -0.00301003968, 0.0207534321, 0.029625129, -0.0161987673, 0.00811918639, -0.00796472374, 0.0229079872, 0.018456297, -0.00628939876, 0.0124520594, 0.0227020364, -0.00289320271, -0.00267141033, 0.000241471527, 0.00307934987, -0.00684388, 0.0211336482, -0.0183454, 0.0136323115, 0.0177909192, -0.00367541704, 0.0225911401, 0.0148046426, -0.0101786871, -0.00313677825, 0.0145670082, 0.0120243169, 0.0302905049, 0.0311935171, 0.0273596775, -5.22920163e-05, -0.00177037867, -0.0112797283, 0.0167611688, -0.0222267676, -0.0255378112, -0.0280725807, 0.0143769, 0.0178859737, 0.00868951, -0.0105826659, 0.0192167275, -0.0249833297, 0.000211890962, 0.00969549641, 0.0189949349, -0.0331421234, 0.00357640255, 0.00991728902, -0.0162859, -0.00187335373, -0.0260447655, 0.00474873371, -0.0139491577, 0.0258229729, 0.0188365113, 0.0104559278, -0.0104321642, 0.00240209093, -0.0185513496, 0.0284527969, 0.0178226046, 0.0371027, 0.00574679952, -0.0195811, 0.00595671032, -0.00188919599, 0.0203732159, 0.0204999559, 0.00120500603, 0.00615077838, -0.00805581734, -0.0209910665, -0.0202464778, -0.0126104821, -0.028642904, 0.0213079136, 0.027518101, -0.00464575877, 0.0110816993, -0.0147412736, 0.00232683984, -0.00644386141, 0.00178919139, 0.000697061827, -0.00765579846, -0.00215059426, 0.00431703078, -0.0107094049, 0.0400493704, -0.0181077663, 0.0181394499, 0.00563986413, -0.0185988769, 0.0171255413, 0.0226545092, -0.0280250553, -0.0120956069, 0.018060239, 0.0384651385, -0.00172780245, 0.0149393026, 0.00669337809, 0.0127134575, -0.00831721537, -0.00497448677, 0.00919646397, -0.0179493427, 0.0239218958, -0.0084597962, -0.0104321642, 0.0191533584, 0.00888753869, 0.00141689705, 0.0339659229, -0.0141551085, 0.0101311598, 0.00118223275, -0.00619038427, 0.000815384148, 0.00392097281, 0.0063844528, 0.000563887355, -0.00211098837, -0.015501705, -0.00110005075, 0.0263299271, 0.0281042662, -0.0120163951, 0.00826968811, -0.038560193, 0.0450555421, 0.0120401587, -0.0207692739, 0.0252684914, 0.0033862947, 0.0273913611, -0.0288963821, -0.0152719915, 0.000832711637, 0.0216564443, -0.00517251575, 0.00515667349, 0.00491903862, 0.0175057575, 4.11219444e-05, 0.0421405584, -0.00863406155, -0.0188048277, -0.0122302668, -0.0165076926, -0.0334906541, 0.0125391921, 0.000799541827, 0.0126421666, -0.0227812491, 0.00268329191, -0.0238426831, -0.00734291272, -0.00306152739, -0.00319024618, 0.0123886904, -0.0120956069, -0.0201197397, -0.014978908, -0.00309915282, -0.0227812491, -0.000625771412, -0.00706567243, -0.0119292624, 0.000489379, 0.0255378112, -0.0247456953, 0.0278983153, -0.00407939591, 0.00695477612, 0.0297360253, 0.00154264539, -0.00802809279, -0.00833305717, -0.018725615, 0.0124758231, -0.00742608495, -0.0106618777, 0.020690063, 0.00530717522, -0.0109311966, 0.00932320207, 0.022464402, 0.00339817652, 0.0063923737, -0.00103074056, -0.0251734369, 0.0105034541, -0.00581412949, 0.00636068918, -0.00741024269, 0.00868951, -0.0015258129, -0.00516063394, 0.0139808422, -0.0140362903, -0.0144798756, 0.0121035287, -0.0139095522, -0.0125154285, 0.00971926, -0.0251892805, 0.0106381141, 0.018519666, 0.0172205959, -0.0391938873, -0.00210306724, -0.00569531228, -0.011168832, 0.0140046058, 0.0211970173, 0.00668545673, -0.0100361062, 0.0116995489, 0.000638148224, 0.0155333895, 0.0307816174, 9.58583769e-05, 0.000660426507, -0.00692705205, -0.00127728656, -0.0173948612, 0.00815087091, -0.0044081239, -0.029229071, -0.0234149415, -0.00652703363, -0.010772774, 0.0325401127, -0.0180285536, 0.0138382614, -0.0225277711, 0.014978908, -0.0152244642, -0.0274705738, 0.00461011333, 0.00285359682, 0.0001686959, 0.013204569, -0.0277398918, 0.00281003048, 0.0161116347, -0.000793600921, 0.000774788205, -0.00518835802, -0.00784194563, 0.0195652582, 0.00565966684, 0.00402196776, 0.0215772316, 0.00457842881, 0.017014645, -0.0322074257, 0.0136402324, -0.00395859824, 0.00536262337, 0.00943409838, -0.0285003241, -0.0121589759, 0.00764787756, -0.00806769822, 0.00777461566, 0.0434713103, 0.0216406025, -0.0158423148, -0.00257239584, 0.0166344307, 0.0234941524, -0.00763599575, 0.00335857063, 0.0119371843, 0.0181394499, -0.00718052918, -0.0437564738, -0.0195969436, -0.032049004, -0.0158898421, 0.00386552466, -0.0391622, 0.0461328216, -0.00728350412, 0.0116361799, 0.00466556149, -0.0159136057, -0.00135946856, 0.0127689056, 0.0176958647, 0.0244288482, -0.00787759107, 0.00333480723, -0.00978262909, 0.00403186912, 0.00345758512, -0.00267933146, -0.0031565812, 0.0205316395, 0.00180503377, -0.00860237703, 0.0148996972, 0.0169037487, 0.0141075812, -0.0171889104, -0.0187414587, -0.0262507144, 0.0119292624, -0.00399622368, -0.0188998803, -0.0104717696, -0.00670922035, 0.0128877228, -0.031066779, -0.00786174834, 0.0176483393, -0.000606958696, -0.00784194563, 0.00474081282, 0.0132837808, -0.0256803911, 0.00572303589, 0.00898259226, 0.0248565916, -0.0169195924, 0.0149709871, -0.0216881279, 0.0204524286, 0.0214821789, 0.00902219769, -0.00677655, -0.0123807685, 0.0226228256, 0.0285003241, 0.0132758599, -0.010646035, -0.0027228978, 0.0100361062, 0.0146303773, -0.00545767741, 0.00413484406, 0.0069825, -0.00491111772, -0.00368135795, 0.0126104821, 6.86294e-05, 0.00319618685, 0.0107014831, -0.00406751409, -0.0140204486, -0.0195018891, -0.018456297, -0.00179117173, -0.00215653516, -0.00942617748, 0.00150601007, -0.00829345174, -0.025094226, -0.0309558827, -0.0124758231, -0.00518439757, 0.0201989505, 0.0103450315, 0.0197236817, -0.0051170676, 0.0020595009, 0.017806761, -0.00275656278, -0.0198662616, -0.00102479977, 0.00121094694, -0.0102341352, -0.0235099941, 0.00811918639, 0.0173948612, 0.00800829, -0.00311301486, -0.00884793233, 0.0161750037, -0.0129748555, -0.00645970367, 0.0341243446, 0.0256487075, -0.0101707662, 0.0117470762, 0.017014645, 0.0220525023, 0.0199296325, -0.0110183293, -0.031066779, -0.013402598, -0.00281795161, 0.0184404533, -0.0142184775, -0.000720330223, -0.00968757551, 0.00260408036, -0.0116837071, -0.0183929279, 0.00191791018, 0.0286587477, -0.0134580461, 0.00779045839, -0.0225277711, 0.010376716, 0.017078016, -0.00103173079, 0.0180127118, -0.0328252763, -0.0262824, -0.00823008269, 0.000118941127, 0.0112480437, 0.00873703603, 0.0182345044, -0.0024179332, -0.00658644224, 0.0176166538, 0.000213004867, 0.00154759607, -0.0338391848, -0.0105272178, 0.0040140464, 0.0117946034, 0.0313677825, 0.00634484692, 0.00496260496, 0.00829345174, -0.00506954081, 0.0020951461, 0.00550124375, -0.00661416631, -0.0205633249, -0.0118104452, 0.0169195924, 0.011168832, 0.0177275501, -0.00584581401, 0.0207375903, -0.0195018891, -0.00376849063, -0.0136956805, -0.0149234599, 0.000565867696, 0.0076993648, -0.00180503377, -0.00623791153, 0.00443980843, -0.0070933965, -0.0153591242, -0.0071013174, -0.0020357375, 0.0372611247, -0.00734687317, 0.00980639271, -0.0157947876, 0.0190583039, 0.00708547514, 0.00729538593, -0.00419029221, -0.000706468185, -0.00153571437, -0.00304370467, -0.000201618212, 0.0173314922, -0.00718845, -0.0059448285, 0.00293478882, 0.0253477041, 0.00753302034, 0.00592502579, 0.00562798232, 0.0259338692, -0.000241100221, 0.000948063505, 0.013529337, 0.00120995683, -0.0056161005, -0.00279220799, -0.00550916465, -0.0203256886, 0.0103212679, 0.0253001768, -0.000776768487, 0.0262507144, -0.0227337219, 0.0198504198, -0.00967965461, 0.0306390356, -0.0102420561, -0.0127292993, -0.00666961446, -0.00129312894, -0.0122302668, 0.00676862895, 0.0110262511, -0.00803601369, 0.00763995619, -0.00553292828, 0.00074112328, 0.0136243906, 0.0184087697, -0.0122302668, -0.0091727, -0.0104796914, -0.0148917753, -0.0195652582, 0.00462991651, -0.0230980944, 0.000838652544, -0.0116678644, 0.00886377506, -0.00690724934, -0.00216643652, 0.000339619612, 0.018060239, -0.0248565916, -0.0034457033, -0.00535074156, 0.000509429432, -0.0165076926, 0.0189949349, -0.016951276, -0.00131194165, -0.0148284063, -0.0226228256, 0.0158898421, -0.00156739901, -0.00252684928, -0.020896012, 0.000343332649, -0.017347334, -0.00741816359, -0.0315420479, -0.0341877155, 0.00213277154, 0.0217831824, 0.00495468406, -0.00611909386, -0.0101073971, -0.0134818098, -0.0123094786, 0.000424276979, -0.010115318, 0.00518439757, -0.00074112328, -0.00702210609, 0.0361838453, 0.00502201356, 0.0163175836, -0.017014645, 0.0206425358, -0.0158185512, 0.0187414587, -0.00465367967, 0.00374274678, -0.00367541704, 0.0186622459, 0.00528737251, 0.000559431734, 0.0113430973, -0.0196286272, -0.00108915917, 0.00281003048, -0.00251298724, -0.00598047394, 0.00106539566, 0.00570323318, -0.0254110731, -0.0076993648, 0.0151610952, -0.0201038979, 0.00965589099, 0.0221475549, -0.0133154653, -0.0168879069, 0.0223376639, 0.0107410895, -0.0143689793, -0.000316103688, -0.0318747386, 0.0316371024, -0.0473051518, -0.00891130231, -0.00512894941, 0.00399622368, 0.000222163711, 0.00258031697, -0.0042972276, 0.00830929354, 0.0189790931, -0.00183770852, -0.0252051223, -0.028183477, 0.0139333159, 0.00798452646, 0.00255061267, 0.00868158881, 0.0279616844, 0.0067725894, 0.00188820588, 0.00990936812, 0.0187731422, 0.00292092678, 0.00739836087, 0.0181552917, 0.000212262254, -0.0321757421, -0.0083489, -0.00427742489, -0.00268131169, 0.00710527785, 0.00400216458, 0.00619434519, 0.0129510919, 0.0283577424, 0.00814295, -0.00755678397, 0.00106341532, -0.00277636573, 0.0113351764, -0.0201038979, -0.0045586261, 0.00175552652, -0.00347540784, 0.0115648899, -0.00483190594, -0.00930735935, 0.0170938578, -0.0083489, -0.00660624495, -1.94006461e-05, -0.00213277154, -0.00777461566, 0.00807958, 0.015176937, -2.5898471e-05, 0.00167532475, 0.0152719915, 0.00560025824, 0.0115965744, -0.00793303922, -0.0010951, 0.00750925718, 0.00458238926, -0.0151610952, 0.0215930752, 0.000398533215, -0.0373244919, 0.011826288, -0.000509924488, 0.0232089907, 0.00825384632, 0.000237510947, 0.0332371742, 0.0128639592, -0.00655079726, 0.00469724648, -0.00439624209, -0.00885585416, 0.00258427765, 0.00436059712, -0.0274864156, -0.0110816993, -0.0019426638, 0.0170463305, -0.00849940162, -0.00721221371, -0.00316846301, 0.0213079136, -0.00734291272, -0.00724389823, 0.00990144629, 0.00743400631, 0.00390315033, -0.00120797649, 0.016555218, 0.00710527785, -0.0208643284, -0.0169671196, -0.0051170676, -0.0148996972, -0.00933112297, 0.0121352132, 0.0205791667, 0.00840434805, -0.00852316525, -0.00876872148, 0.0182978734, 0.0115332054, 0.0042298981, 0.0168245379, -0.0157947876, 0.00860237703, 0.0127372211, 0.0165710617, 0.0136243906, -0.00354075735, -0.0119530261, -0.00260606082, -0.0231297798, -0.000807462959, -0.0378948152, 0.00159215264, 0.000558441563, 0.00745776948, 0.00154264539, -0.00865782518, 0.00547351968, -0.00808750186, -0.00405167183, -0.0232723597, 0.00475665508, -0.00629732, -0.00286151795, -0.00723597733, -0.000675773714, 0.0352333076, -0.0102262143, 0.0179493427, 0.000535668281, -0.00502993492, 0.00634484692, -0.00191394961, -0.00597255258, 0.00743796676, 0.00706567243, -0.00313677825, -0.00983807724, 0.00326747727, -0.0136719178, -0.00580224767, 0.0112797283, 0.00952123106, 0.000820334826, 0.00763599575, 0.0391622, -0.00722805597, 0.0124916648, 0.000413632923, -0.0143531365, 0.00221990421, 0.0195335746, 0.0124599803, -0.0213237554, -0.00675278669, 0.00453486247, 0.0161274765, 0.0196444709, -0.0198187362, -0.00240803184, -0.0160086583, 0.0047368519, -0.0279616844, -0.0218623932, -0.0102024507, 0.000141219381, 0.0120322378, 5.45817238e-05, 0.0106856413, -0.00303380331, -0.0170304887, -0.00453486247, 0.0339976065, -0.0200563706, -0.0106301932, 0.00413484406, -0.0230822526, 0.0222109258, 0.00134263618, 0.00458635, -0.00995689444, -0.0122065032, 0.0105430605, -0.0322391093, -0.0102024507, -0.00164562045, 0.00799640827, 0.010574745, 0.0106064295, -0.00694289431, 0.00410315953, 2.43977829e-05, 0.00616266, 0.00903804, 0.00334272836, -0.00193573278, -0.0108044585, 0.000407197, -0.00070003228, -0.00438832119, 0.00662208768, 0.0157234967, -0.0112559646, 0.00168720644, -0.0504102446, -0.00971926, -0.00815087091, -0.0117074708, 0.0172047541, -0.00347936829, -0.00819839817, -0.0205791667, 0.00418633176, -0.00434475485, 0.00442396617, 0.0293874927, 0.0119847106, 0.0037605695, 0.0114619145, 0.00703002699, -0.0327302217, -0.0236050487, -0.0154224932, 0.00726766186, -0.00215653516, 0.00506558, 0.00356650096, -0.00618246337, -0.0150898043, 0.00056438247, 0.00340807787, -0.000956479751, 0.00199514139, -0.00227733282, 0.0174265467, 0.0115252836, -0.0117946034, 0.0119134206, 0.00553292828, -0.00741024269, -0.0159611311, -0.000152358509, -0.000394325121, 0.0170463305, 0.0366274305, -0.00177136878, 0.013925394, -4.62196431e-06, 0.0168245379, 0.0218465514, -0.00194365392, -0.011034172, 3.79039739e-05, 0.0214663353, -0.0146145355, 0.011691628, 0.0226861946, 0.00480418187, -0.000987669337, 0.00855485, -0.00752906, -0.00546955923, 0.0123094786, 0.00480814232, -0.00670922035, 0.00199217116, 0.00852316525, 0.00368927908, 0.00889546, 0.0156522077, 0.000746569072, -0.0224485602, -0.0014258083, 0.00794096, -0.000913408468, 0.003744727, 3.45931803e-05, 0.00277636573, 0.00359224482, -0.0234941524, -0.0337124467, -0.0215772316, -0.00956083648, 0.00427346444, 0.0135768633, -0.0133154653, -0.0104400851, 0.00699834246, -0.0315420479, -0.00658248179, -0.0116441008, -0.0374195464, 0.00746173, -0.0222901367, -0.0116361799, -0.0165235344, 0.0049467627, -0.0132204117, -0.00763203483, 0.0327619053, -0.032191582, 0.0261239763, 0.000891130185, 0.00698646065, 0.0297993943, 0.00796472374, 0.0248407498, -0.00518835802, 0.00255061267, 0.00536262337, 0.0117153917, -0.00826176722, -0.0102182925, 0.0148996972, -0.0074221245, -0.00216445629, 0.00433287304, 0.0141551085, -0.0109787239, 0.00117035094, 0.0166661143, 0.0120956069, 0.0136798387, 0.00636464963, 0.00745776948, -0.0166344307, 0.0101945298, 0.000145551268, 0.0195018891, 0.00175255607, -0.00578244496, 0.012087686, 0.000732212, 0.0141392658, 0.0260289218, -0.00415464677, 0.0106935622, 0.00467348285, -0.00132976426, 0.00415068632, -0.00587749854, 0.00967965461, 0.0280567389, 0.0221950822, 0.00750925718, 0.0135134943, 0.00246546022, -0.000686665298, -0.0213079136, -0.0115965744, -0.00622602971, -0.00673694443, -0.00915685762, -0.0120084742, 0.0236842595, 0.0179810263, 0.00428534625, 0.0219574478, -0.00941825565, -0.0130619882, 0.00579432631, 0.0112559646, 0.00927567482, 0.0140283694, -0.00215455471, -0.00998857897, -0.0127292993, 0.00217831833, -0.00613493612, 0.0148125645, 0.0322707929, -0.0259021837, -0.00529925432, -0.0168562233, -0.0129114864, 0.0130382245, 0.0197395235, 0.00658248179, -0.0101945298, 0.0179176573, -0.00884001143, 0.00447545387, 0.00955291558, 0.0118500516, 0.0259972382, -0.000496805063, -0.000699537224, 0.00163472886, 0.0216406025, -0.00836474169, -0.0232089907, -0.0130936727, -0.00878456328, 0.0128956437, 0.0121668978, 0.00570323318, 0.0179493427, -0.0137352869, 0.00402790867, -0.0205791667, 0.000494824781, 0.000941132486, -0.0115094418, 0.0132917017, 0.0114619145, -0.0124362167, -0.0171889104, 0.0132204117, 0.0110500148, 0.00116936082, 0.00335262972, -0.00690724934, 0.00450317794, -0.00153175381, 0.0243813228, 0.00804393552, 0.0100677907, -0.00943409838, 0.0156522077, 0.021608917, -0.0172998067, 0.00878456328, 0.0107490104, -0.0156680495, -0.000963905826, -0.00843603257, -0.0192800965, -0.00875287876, 0.0226069819, -0.0205157977, 0.00745776948, 0.019185042, -0.0037962147, -0.0249991715, -0.0153670451, 0.0243971646, 0.00918854214, 0.00253873086, -0.0248724334, 0.0212603863, -0.00324173365, -0.00319024618, -0.0042893067, -0.00873703603, -0.011232201, -0.0100281853, -0.00802413188, -0.00269517372, 0.0265041925, 0.00415068632, 0.00157433, 0.014060054, -0.0234149415, -0.00277636573, 0.00579828722, 0.0185671933, -0.00651119137, 0.0085706925, 0.0165710617, -0.0151452525, -0.00151789177, -0.00230901735, -0.00657852087, -0.0141630294, 0.0105668241, 0.00913309399, -0.00813502818, 0.00215455471, -0.0147016682, -0.0110104084, 0.0100044217, 0.0116995489, 0.0153591242, 0.0284052696, -0.00176938856, -1.667775e-05, 0.0244288482, 0.016222531, 0.00146046339, 0.00988560449, -0.0153828878, 0.00942617748, 0.0181869771, 0.00514083123, -0.00839642715, 0.00990936812, -0.0037605695, -0.00304568489, -0.00149313814, 0.0124599803, 0.00575868133, -0.0173790194, -0.00861029793, 2.93794492e-05, 0.0108599067, -0.00424970081, -0.0132837808, -0.0148759335, -0.00750529673, -0.00728746457, 0.00388136716, -0.0171730686, -0.0114777572, 0.00481606368, -0.0021189095, -0.00655871816, -0.000483685668, -0.0240644757, 0.00948954653, 0.00860237703, 0.0234941524, 0.0223693475, -0.0141788712, 0.0162700564, -0.00405563274, -0.00837266352, -0.0071528051, -0.00598443439, -0.0066022845, 0.0313836262, -0.00326747727, -0.0134818098, -0.00496260496, -0.0120163951, 0.0107569313, 0.000966381165, -0.0020595009, -0.00274864165, -0.00394671643, -0.00504181674, -0.00987768266, -0.00396453915, 0.00851524435, -0.0265358761, 0.0114777572, 0.0263299271, 0.00803601369, -0.00498636859, 0.000334916433, -0.019834578, -0.00877664238, 0.00652307319, -0.0061032516, 0.0100519489, 0.0126817729, -0.0170463305, -0.0417920239, -0.00581016904, -0.00826176722, 0.00529925432, 0.000125377061, -0.0169037487, 0.00399424369, -0.000398285687, 0.00721617416, 0.0118658934, 0.0132917017, -0.00733103091, 0.016222531, -0.00551708601, 0.000779738941, 0.00369720021, -0.00895882864, -0.00510518579, -0.0260764491, -0.0133233862, 0.00612701522, 0.0167611688, 0.000275260216, -0.00930735935, -0.00577848405, -0.0158502348, -0.0258229729, -0.0154224932, 0.00898259226, -0.0298469197, 0.0182345044, -0.00442792708, 0.00586957764, -0.003087271, 0.0143056102, 0.00576264178, 0.00501409266, 0.0176641811, 0.0136798387, -0.0226228256, 0.00971133914, 0.0196286272, -0.0145511655, -0.0201038979, -0.00799244735, 0.00131788256, -0.00221396354, 0.0116203381, -0.00106935622, 0.0208009593, 0.0142976893, 0.00676070759, -0.00501013175, -0.00915685762, 0.0148284063, -0.0271854121, 0.0109391185, -0.00160205411, 0.00133075437, 0.0119371843, -0.00151591143, -0.0182978734, 0.0106539568, 0.00272091758, -0.00230703712, -0.00497052632, 0.0170621723, 0.00470120693, -0.017600812, -0.0157472603, 0.0190266203, -0.00377839198, 0.000403483951, 0.0195652582, -0.0207851175, -0.00136639958, 0.00948162563, 0.0031110344, 0.0168879069, -0.0167770106, -0.00670525944, 0.00429326715, 0.00586561672, -0.00775481295, 0.00605968526, -0.00587749854, -0.00872911513, -0.00919646397, -0.00108915917, 0.00292884791, -0.00293082814, -0.00288528157, 0.0192008857, -0.0164126381, -0.028579535, -0.0174582303, 0.00779045839, -0.0109153548, 0.0070933965, -0.0150977261, 1.82557924e-05, -0.00546955923, -0.0245555881, -0.00506558, -0.0102737406, -0.015105647, -0.00388334738, 0.00523984572, 0.0317321569, 0.0233515725, 0.0205316395, -0.0070933965, 0.00789739378, 0.00872119423, -0.0213237554, 0.010574745, -0.00454278383, -0.0190107767, 0.00374670746, -0.00539034745, 0.0143531365, 0.0266309306, 0.0066616931, 0.00119312434, 0.00192286097, -0.0037150227, 0.0100994753, 0.00989352539, 0.0114698354, 0.0129510919, 0.00718448963, 0.00321995048, -0.0236684177, -0.00368729862, 0.00103569136, -0.0244288482, 0.0186147187, -0.00413880451, 0.00670129899, 0.0223693475, -0.00896675, -0.0044081239, 0.00520420028, 0.0202464778, 0.0191375166, 0.0110183293, 0.0336807594, -0.0145670082, 0.00975886546, -0.0156046795, -0.00260210014, -0.0420138165, 0.00237634708, 6.08010705e-05, -0.00184166909, 0.0044081239, 0.0109153548, -0.00183176761, 0.0203890596, 0.0174899157, 0.00361006754, 0.00513687031, -0.00154660596, 0.0036259098, 0.00517251575, 0.0227970909, -0.0150026716, 0.0259180274, -0.00524380617, -0.00762015348, -0.00167532475, -0.00370908179, -0.0249674879, -0.0103846369, 0.00227733282, 0.0195018891, 0.00159017229, -0.00725974049, 0.00546955923, -0.0152007006, -0.03599374, -0.00529925432, 0.00832513627, 0.00937865, 0.00506161945, 0.00889546, -0.00830137264, -0.0196127854, -0.0163809527, 0.00547748, 0.00919646397, 0.00881624781, -0.0192008857, -0.000812413695, -0.00480814232, -0.0179176573, 0.0187573, -0.00748549355, 0.00724785868, 0.0128798019, 0.00860237703, -0.00971133914, 0.00849940162, -0.0146224564, 0.00120401592, 0.00281003048, 0.00746569084, -0.0200722124, -0.00115648902, 0.0254585985, -0.00775481295, 0.00451902, -0.00346550625, -0.00758450804, 0.00308133, -0.00180899433, 0.00215059426, -0.00339223561, -0.00154561584, 0.00165354158, 0.0139808422, 0.00502201356, -0.00367937749, 0.0220208168, -0.00172780245, -0.00965589099, -0.0118025243, 0.00864990335, -0.00481606368, 0.0085865343, 0.00241199229, 0.019834578, 0.000198524009, -0.000727756298, -0.00842811167, -0.0100757116, -0.0011149029, -0.0161987673, 0.0104638487, -0.0179810263, -0.0157314185, 0.00276448391, -0.00708151469, 0.00295063108, 0.00459823199, 0.00195751595, 0.0108915912, -0.00661416631, 0.020896012, 0.0147571163, -0.000238501088, 0.00888753869, 0.000120240693, 0.00515271258, 0.00127134577, 0.0136243906, -0.00201197388, 0.0139808422, -0.00260606082, 0.0104400851, 0.0157314185, 0.00176146731, -0.00339421583, 0.00192781165, -0.0118025243, 0.00550124375, 0.0100044217, -0.0110896202, -0.000706963299, -0.0144323483, -0.00124263158, -0.014186793, -0.0150977261, 0.0145590873, -0.0239852648, 0.00336055085, 0.00370512134, -0.0138303405, 0.00654683635, -0.00258427765, -0.0139412368, -0.000125624603, 0.00572699681, 0.0122461095, -0.0263774544, -0.0366908, 0.0026634892, 0.000268824282, -0.00492696, 0.0111213047, 0.00103668147, 0.00114559731, -0.00181394501, -0.0120322378, 0.0100836335, -0.0244446918, -0.00744192721, -0.00875287876, 0.0163967963, -0.00496260496, -0.00201593456, -0.0125391921, 0.00213871244, -0.0128005901, 0.0087608, -0.0162700564, -0.0131808054, 0.00464971922, -0.020230636, -0.00436059712, 0.0231614634, -0.0131015945, -0.00726766186, -0.0134184407, -0.00506558, -0.00791719649, 0.00445961161, -0.0013267938, -0.00277636573, 0.00529925432, -0.013862025, 0.0417920239, 0.01799687, 0.00922022667, 0.0152086215, 0.0126817729, -0.0215613898, -0.0125075076, -0.0252051223, -0.000326005131, 0.0194385201, -0.000751519809, 0.0136323115, -0.00382195832, 0.00433287304, -0.00594086805, -0.00845187437, 0.00165849226, -0.00404573092, -0.013862025, 0.0104717696, 0.0128877228, 0.0180443954, -0.0284211114, 0.0161750037, 0.0184087697, -0.0216564443, -0.0226545092, -0.00603988254, 0.00310113304, 0.0202464778, -0.0107173258, -0.00473289145, -0.0107569313, -0.00148620713, 0.00349719101, -0.000439871772, 0.00802809279, 0.013529337, -0.0139412368, -0.0130223827, 0.00860237703, 0.0120797651, -0.0225911401, -0.0116678644, -0.0113351764, 0.00172978267, -0.0279933698, -0.00578244496, -0.0114619145, 0.00830137264, -0.000780234, -0.00956083648, 0.00311499508, 0.016745327, 0.0202147942, -0.0111371474, 0.0248565916, 0.022004975, -0.00964796916, -7.28994e-05, 0.00198028935, 0.0126896938, 0.0188998803, -0.0254110731, 0.0209276974, -0.00157928071, 0.0106697986, 0.0235733632, -0.00129312894, 0.00548540149, 0.000304717018, 0.00655871816, 0.00778649747, -0.018266188, -0.00986976177, -0.00680031348, 0.0206108503, -0.000508934376, 0.00126540486, -0.0169988032, 0.00433287304, 0.000243699353, 0.00610721204, -0.0191692, 0.0148046426, 0.00380611606, -0.0124282958, -0.0119767897, 0.00906972494, 0.0203415323, 0.00581412949, -0.00414672587, -0.00260408036, 0.0258863419, 0.00181097456, 0.00176641811, -0.00242981501, -0.0319381058, 0.0215613898, -0.0142660039, 0.00918062124, -0.00301796081, 0.00407543546, -0.0191692, 0.0119530261, -0.0224802438, -0.00377641176, -0.00964796916, 0.0171255413, -0.0139333159, -0.0103054252, -0.00224960875, 0.0069310125, -0.0110500148, -0.00760827167, -0.00111886347, 0.00221792399, -0.00337045244, -0.00165948248, 0.00301003968, 0.0114619145, 0.0125391921, 0.000227114433, -0.00979847182, -0.0212445445, -0.00885585416, 0.00880040601, -0.00568343047, -0.0152799124, 0.00253279, 0.004566547, -0.0209752247, -0.000503241, 0.00137828139, -0.0217514969, -0.013465967, -0.0186305624, 0.0222742949, -0.0183612425, -0.0178384464, -0.00838058442, 0.00944201928, 0.00573887862, -0.0168086961, -0.0122936359, 0.0118025243, 0.00914893672, -0.0232089907, -0.00961628463, -0.0134976516, -0.0268844068, -0.00260012, 0.00122579909, 0.000296548329, -0.00646366412, -0.00301796081, 0.0213712826, -0.00910140947, -0.00246348, 0.00433683349, 0.00364769297, 0.00659040269, 0.0117470762, -0.0073112282, -0.011691628, -0.00982223544, 0.0104717696, 0.00145947328, -0.00235258369, -0.00138026162, 0.00386750512, 0.0172998067, -0.00487943273, -0.00252288859, 0.0180285536, -0.0160007384, -0.0287379585, 0.0109549602, 0.0167770106, -0.00895882864, -0.00159314275, 0.00746173, 0.0214504935, -0.00474081282, 0.0141392658, 0.00398632232, 0.0113510182, 0.00411504135, 0.0211653318, -0.00345956534, 0.00177334913, -0.0135134943, -0.01799687, -0.014844249, -0.00868951, 0.0087053515, 0.0143293738, -0.00578640541, -0.0124758231, -0.0203732159, 0.00482794549, -0.0145036392, 0.00970341731, 0.0757896304, -0.0010951, 0.0201038979, 0.00621810835, 0.013600627, -0.00826176722, -0.0111450683, 0.0508221462, 0.00307934987, 0.0362155326, -0.00158324128, 0.0101866079, -0.00496260496, 0.0208643284, -0.0121114496, -0.015176937, 0.0166978, -0.00215059426, -0.000632702431, -0.0170304887, -0.00231495826, -0.0150977261, 0.00372492429, -0.0211811736, -0.00929151755, 0.00983807724, -0.012547113, 0.00596067077, -0.00177037867, 0.00745776948, -0.0192484129, 0.00906180404, -6.22862863e-05, -0.00985392, -9.75911316e-05, 0.0143610584, 0.0360254236, -0.0147571163, 0.0249833297, -0.0129590137, 0.0196286272, 0.0228129327, 0.01787013, -0.00421801629, 0.0076914439, 0.00514479168, -0.0148917753, -0.0103608733, 0.0131649636, -0.000844098337, 0.0197553653, -0.00956875831, 0.0108836703, -0.0332371742, -0.0159769747, 0.0094657829, 0.0102341352, 0.00167730509, 0.01143023, 0.0132441754, 0.00605968526, -0.00670525944, 0.00253873086, -0.00463387696, -0.0122936359, -0.00751321763, 0.0114143873, -0.00635276828, 0.00092578528, 0.00152878335, -0.0180760808, -0.0163651109, 0.00819047634, -0.00391305191, -0.0156680495, 0.00649138819, -0.0154700205, 0.00428534625, 0.0206108503, -0.0187097732, -0.0307182483, 0.00435663667, -0.00855485, -0.0178384464, 0.0133788344, -0.0100677907, -0.0183612425, 0.00462595606, 0.00152680301, 0.0111292256, 0.00853900798, 0.00710527785, 0.0113351764, 0.0102895834, -0.0109628821, 0.00267339055, 0.00679239212, 0.00461011333, 0.000815879204, -0.0063329651, 0.0233990978, 0.0267576687, -0.013465967, -0.000342590065, -0.0183612425, 0.0176166538, 0.0107410895, 0.00145056192, 0.0230505671, 0.00738251861, 0.00392493326, 0.0249991715, -0.0119055, 0.00349719101, -0.0242704265, 0.00424574036, 0.0146541409, 0.0131174363, 0.00525172707, -0.00327341817, -0.0062735565, 0.0113114128, -0.000780234, -0.00770728616, 0.0149393026, -0.0150026716, 0.00619038427, 0.015105647, 0.0203415323, 0.00728350412, 0.00902219769, -0.00697853975, -0.0069230916, 0.0115965744, 0.00112084381, 0.0252368078, 0.00113668607, -0.00613493612, -0.00528737251, 0.0189949349, -0.00447545387, 0.0224485602, 0.0226069819, 0.00813502818, -0.0101945298, 0.00325757591, 0.00596859213, -0.0116441008, -0.0332688615, 0.0171730686, -0.0158027094, -0.011232201, -0.00838850532, 0.00215455471, 0.00638049236, 0.00661416631, 0.00974302366, -0.0114539936, -0.00689140661, -0.018456297, -0.00850732252, 0.00410712, 0.0292132273, -0.00204959954, -0.00344768376, -0.000379472942, -0.0083489, 0.0128005901, -0.00319816731, 0.0131966481, 0.0336807594, 0.0204841122, 0.0166185871, 0.00788947288, -0.0101707662, -0.015374966, 0.00955291558, -0.0113668609, 0.0108123794, -0.0103054252, 0.00160106388, 0.00442792708, 0.00463387696, 0.0445169024, -0.0105905868, -0.00525568798, -0.0111529892, 0.000383681065, 0.00991728902, 0.00550916465, -0.00939449295, 0.0230980944, -0.012483744, -0.010448006, 0.00425762217, -0.00498240814, 0.00153274392, 0.00830929354, -0.0148759335, -0.00534282066, 0.00678447122, 0.00926775392, -0.0240169484, 0.000991134788, 0.00142184773, 0.0214821789, 0.0201038979, -0.00926775392, -0.0294825472, -0.0254585985, -0.00145056192] |
19 Sep, 2023 | Swift Programming Language
19 Sep, 2023
Swift is a general-purpose, multi-paradigm, object-oriented, functional, imperative, and block-structured language. Swift is the result of the latest research on programming languages and is built using a modern approach to safety, and software design patterns by Apple Inc. for iOS applications, macOS applications, watchOS applications, tvOS applications.
Swift is easy to learn, easy to implement, safe, fast, and expressive. Developing Swift in the open has its exciting aspects as it is now free to be ported across a wide range of platforms, devices, and use cases.
The features of Swift are designed to work together to create a powerful language. Additional features of Swift include:
Closures (similar to lambda functions in other languages) unified with function pointers
Tuples and multiple return values
Concise and fast iteration over a range or collection
Structs and Classes that support methods, extensions, and protocols
Functional programming patterns, e.g., map and filter
Powerful error handling built-in
Advanced control flow with do, guard, defer, and repeat keywords
Optionals and force-unwrap
Type Inference and type annotation
Memory Management: Automatic reference counting is a system which tracks the number of references to an object in memory. When an object is no longer needed in the future , ARC automatically deallocates the memory used by that object. This helps to prevent memory leaks, which can occur when an object is no longer needed but its memory is not released, and can help to improve the performance of the program.Swift is managed as a collection of projects, each with its repositories. The current list of projects include:
The Swift compiler command-line tool
The Standard library bundled as part of the language
Core libraries that provide higher-level functionality
The Swift REPL included LLDB debugger
Xcode playground support to enable playgrounds in Xcode.
The Swift package manager for distributing and building Swift source code
Example:
Swift
// Basic Swift Program
import Foundation // This functionality provides basic functionality to apps
var str1 = "Hello geeks!"
let str2 = "How are you?"
print (str1)
print (str2)
Output:
Hello geeks!
How are you?
Run: Code can be tested on Online IDE for Swift
Note: Import statement is used to import any objective-C framework or library directly into Swift program. var keyword is used for variable and let keyword is used for constant. There is no need for”;” for termination, in case the programmer uses it compiler won’t show an error.
Advantages –
Swift is open-sourced and easy to learn as it has a very simple and easy syntax
Swift is approachable and familiar. It is Interoperable with objective-C as well which means that developers can use Swift and Objective-C together in the same project, and can even call Swift code from Objective-C and vice versa
Swift is a statically typed language, which means that the type of each variable is checked at compile-time rather than at runtime. This can help to improve the performance of Swift code, as the compiler can optimize the code more effectively. Additionally, Swift uses modern optimization techniques, such as automatic reference counting and protocol-oriented programming, to help improve the efficiency of the code.
Swift is enterprise-ready.
Disadvantages:
The language is still quite young and the talent pool is limited : Swift is considered a “moving target” as it is a new language and the number of swift programmers is few.
Poor interoperability with third-party tools and IDEs : There are very less tools and IDEs that can support Swift and the language is proprietary to Apple and is primarily used on Apple platforms. Example : Xcode
Lack of support for earlier iOS versions : One of the main disadvantages of Swift is that it is not backwards compatible with earlier versions. This means that if you are using an older version of Swift and want to update to a newer version, you may have to rewrite some of your code to make it compatible with the new version.
Steep Learning curve : Despite the fact that Swift has a relatively easier syntax , there are a number of advanced concepts and features that take time to learn. | NLP/Natural Language Processing (NLP) Tutorial/AI ML DS - Projects/30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated]/Does Artificial Intelligence Require Coding?/Artificial Intelligence – Boon or Bane/Artificial Intelligence Examples/Agents in Artificial Intelligence/What are Diffusion Models?/ML | Common Loss Functions/Loss Functions in Deep Learning/Kaiming Initialization in Deep Learning/Swift - Initialization/Swift – If Statement/6 Best iOS Project Ideas For Beginners/Swift Programming Language | https://www.geeksforgeeks.org/swift-programming-language/ | NLP | Swift Programming Language | Artificial Intelligence – Boon or Bane, Natural Language Processing (NLP) Tutorial, ML | Common Loss Functions, 6 Best iOS Project Ideas For Beginners, AI ML DS - Projects, Artificial Intelligence Examples, NLP, Loss Functions in Deep Learning, Swift Programming Language, Agents in Artificial Intelligence, What are Diffusion Models?, Kaiming Initialization in Deep Learning, 30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated], Does Artificial Intelligence Require Coding?, Swift - Initialization, Swift – If Statement | GeeksforGeeks | [-0.0633854046, 0.0260959622, -0.0086543411, 0.0265346617, -0.012256993, 0.0316661149, 0.0123633444, 0.00523448037, -0.0504371263, -0.0163249318, 0.0325435102, -0.0117717646, 0.00644090353, -0.00301107252, -0.0508891195, 0.0575360768, 0.000780186849, 0.011379594, -0.026734069, -0.0038319719, 0.0121439947, -0.016856689, -0.0660973638, -0.0168699827, 0.010289493, 0.00334674399, 0.0300708432, -0.000427067134, -0.0651933774, -0.0101166721, -0.0195154715, -0.00113330653, -0.0120309964, -0.0121307, 0.00685966201, 0.0291668568, 0.000492290419, -0.019449003, -0.0121772289, 0.0120309964, -0.0176410303, 0.00110754953, 0.0216956753, 0.0264947787, 0.0127555141, 0.00189105992, 0.00532089081, -0.0419290178, -0.0124630481, -0.0110007171, -0.00758418, 0.0324371606, 0.0199009962, -0.00559341628, 0.0345110111, 0.0071787159, 0.00739806565, -0.0203662831, -0.0133072119, -0.0423810109, -0.0248064511, -0.0377015509, 0.0161919929, -0.0429925323, -0.0131809199, -0.00452657929, -0.0184785463, 0.000448254315, -0.00178304676, -0.0087806331, -0.00843499135, -0.00014872571, -0.000291219883, 0.0295390859, -0.000356650911, 0.0129349828, 0.0122038173, 0.0354681723, -0.0109940702, 0.0513145253, -0.0213633273, 0.00805611443, -0.0249925666, -0.00816911273, 0.0141580226, -0.00497857248, 0.00741800619, -0.0464223623, 0.0412111469, 0.0127355736, 0.00179135543, -0.0121705821, 0.0268670097, 0.00341653707, -0.00967797264, -0.00366579788, -0.0155405905, -0.000596564554, -0.0115790032, -0.00398152834, 0.0125760464, 0.0230782423, 0.0101166721, -0.00731830206, -0.0134733859, -0.0327030383, -0.0185981914, 0.0584932417, -0.0197946448, 0.0255110282, 0.0129549233, -0.0291136801, -0.0128884539, 0.00458640186, -0.065937832, 0.0263352524, -0.0127089862, -0.0792849287, 0.0235701166, 0.0159128197, 0.0255376175, 0.0152880056, -0.0163781065, -0.0201137, -0.0144903706, 0.0114261229, 0.0365582742, -0.0388980061, 0.0127754556, 0.0231048297, 0.00665692938, 0.0335538499, -0.0093323309, -0.000688375731, 0.0238359962, 0.0185450166, 0.0126026347, 0.064927496, -0.00145983836, 0.0252717379, 0.031081181, -0.0393765867, 0.0273854714, 0.0028448985, 0.0469541177, -0.000800958602, 0.0201934613, 0.0203396957, 0.0193027686, -0.00187444245, -0.0139984963, -0.0483898632, 0.0261491369, 0.0169231575, 0.0429127663, -0.000896508631, -0.0109143071, 0.0186779555, 0.016231874, 0.0341121927, -0.0112466551, 0.00222008443, 0.0240221098, 0.0163249318, -0.0222673137, 0.0281299315, 0.00870751683, -0.0061750249, -0.0307887141, 0.0400146954, -0.00796970446, 0.0273057073, -0.00314235, -0.00270531233, -0.0123101687, -0.00395494048, 0.0171890371, -0.00343647785, 0.0521919243, 0.00480907504, -0.0290073305, -0.010455667, -0.0175080895, 0.0202200506, -0.00792982243, 0.0138256745, 0.0466616526, 0.0277311131, 0.0252584442, -0.0381269567, -0.016524341, 0.00913956854, 0.00971785467, 0.017361857, 0.0265878364, -0.0131011568, -0.0344844237, 0.0123234624, -0.015394357, 0.0339526683, 0.0291402694, -0.027545, 0.00215361477, 0.00401476352, -0.00248762453, 0.017614441, -0.0087673394, 0.00168998935, 0.0603012145, 0.00779023627, -0.00303267501, 0.074765, -0.0285819247, 0.0105354302, 0.0100701433, -0.00922597945, 0.0186912492, 0.00656719552, -0.022214137, -0.0217621438, 0.0142776677, 0.0384194255, 0.0293529723, 0.00969126634, -0.0461564846, 0.0117917052, -0.0165509284, 0.0129615702, 0.0184120759, 0.0149024827, 0.0371963829, 0.0307089519, 0.00586594129, -0.00733159576, -0.000967963424, 0.00774370739, 0.0245538671, -0.021376621, -0.0465818904, 0.0363987498, 0.0326764509, -0.0420619585, -0.0163249318, -0.023091536, 0.00333511177, 0.0133470939, 0.0237429384, 0.065937832, -0.0126225753, 0.0273854714, -0.0220413171, -0.0301506072, 0.0178271439, 0.0554090515, -0.0701387152, 0.0171624478, 0.00763070909, -0.0201668739, 0.0392702334, 0.0138788503, -0.00186779548, -0.00306923338, -0.0372495577, 0.0198478196, 0.000863273803, -0.00174482679, 0.0381003693, -0.0213500336, -0.0141447289, -0.0380206071, 0.0377547294, -0.0153145939, 0.0327296257, -0.00062065979, 0.00047858106, 0.043045707, -0.0138389692, -0.0101432595, 0.0118515277, 0.0033068622, 0.0485493876, 0.012509577, 0.023716351, 0.0433913507, 0.0771047249, -0.0633854046, -0.0411313847, -0.0286616869, 0.0332347974, 0.013719324, 0.00269700377, -0.00235136179, -0.0117052952, 0.0414238498, 0.0292200316, -0.0231181234, 0.0109874234, -0.000378461235, -0.0248197448, 0.000322377513, -0.00148559536, -0.0257237311, 0.00828875788, -0.0526705049, -0.00838181563, 0.00167254114, 0.0241151676, 0.00793646928, 0.0108877188, 0.00568647357, 0.0490013845, -0.0456247292, -0.0257503204, 0.0128286313, 0.0494002, 0.0316661149, 0.0373027362, 0.0119578792, -0.0346439518, 0.010834543, 0.0156868231, 0.0214829724, -0.00793646928, -0.0321712829, 0.0226661302, -0.00521786278, -0.00629467051, -0.0570043214, -0.0243810453, -0.0258167889, -0.0325169228, -0.0181329045, -0.0184785463, 0.0420087799, 0.0693942532, -0.0085413428, -0.0103825498, 0.0184253715, -0.00629134662, 0.0137326177, 0.0126159284, 0.0057230317, -0.0394563489, 0.00146814715, -0.00154541805, -0.0298315529, -0.0303898975, 0.00927915517, 0.00139087625, 0.0469009429, 0.000833777944, 0.0108744251, 0.0416897275, -0.0372495577, 0.0266676, -0.0267074816, -0.0111735379, -0.0423012488, -0.00161105674, 0.0124032255, 0.0360265188, 0.0101698479, 0.0189704206, -0.00173651811, -0.0207252186, -0.0534947254, -0.0252185632, -0.0107016042, 0.0029994403, 0.0288478024, 0.0207783934, -0.00384194241, 0.0198877025, 0.0129549233, -0.0239157584, 6.0393857e-05, -0.0271195937, -0.0065638721, -0.00208049826, 0.0518728681, -0.0400412828, 0.0470338836, 0.0104889013, 0.00265878369, 0.011505886, -0.0302303694, 0.00886704307, -0.0133936228, 0.00190103031, -0.017654324, -0.0121905226, 0.0132208019, -0.0159925837, -0.0158729386, 0.015899526, 0.00290804473, -0.0188374817, 0.00903321709, -0.00352953537, -0.0145568401, 0.0160856415, 0.00481239846, 0.0157931745, 0.0242481064, -0.0264283102, -0.00808270276, -0.0514740497, -0.0158596449, 0.0363189839, 0.00609526131, 0.00209046854, -0.00449334458, -0.025019154, 0.00836187415, 0.039243646, 0.0152215362, -0.00524112722, 0.0391904712, 0.0344046615, 0.0340590179, 0.0271993559, -0.00192429463, 0.00915286317, 0.0191964172, 0.0018993686, 0.033846315, -0.0185317229, -0.0141181415, -0.00654393109, 0.0147296619, 0.00025092272, 0.0154608274, 0.0546114147, -0.048443038, -0.0108146025, -0.031081181, -0.000173444088, 0.0248330384, 0.0169364512, 0.0086344, -0.0282096937, 0.0125959879, -0.0357340537, 0.0185450166, -0.0258832593, 0.0374090858, 0.0127887493, 0.0125760464, 0.0328891538, -0.035973344, 0.0174815021, 0.0328625664, 0.0138655566, 0.00846157875, 0.0501712486, -0.0186513681, 0.00861445908, 0.00538736, 0.0027319002, -0.00802287925, 0.034590777, 0.0145967221, 0.0437635779, 0.00335006742, 0.00724518532, 0.0178803205, -0.036106281, -0.0207385123, -0.0200339351, 0.0169896279, 0.00520456908, -0.0286882762, -0.00992391, 0.0188374817, -0.0115258275, 0.00242946367, 0.0329423286, -0.0420885459, 0.00213201204, 0.00526771508, 0.0570574962, 0.0234238841, -0.0121705821, -0.0647679716, -0.00242281659, -0.024846334, -0.0167104546, 0.0344844237, 0.0143308435, -0.000685467676, -0.0271993559, 0.00561668025, 0.0601416864, -0.0388980061, 0.0219482593, -0.0307355393, -0.0395627022, -0.0252318569, 0.0157798808, 0.0411047935, -0.0166705735, 0.00182292855, -0.01401179, 0.0272525325, -0.0425671265, -0.0162983444, -0.048948206, 0.0422746614, -0.02476657, 0.00180298765, -0.0243012831, -0.0119113503, -0.00139586139, -0.00513477577, 0.0139054386, -0.00115324743, -0.00048647431, 0.00428728852, -0.00295623508, 0.000229735524, 0.00996379182, 0.0161255226, 0.0140250837, -0.00516136363, -0.0198345259, 0.00222340785, 0.0283426344, -0.0336867906, -0.019701587, -0.0181329045, 0.00925921369, -0.0158064682, -0.0208714511, -0.0108810719, -0.0133404471, -0.00502842478, -0.00270863576, 0.0149822459, -0.0258167889, 0.0106019, -0.0115391212, 0.0374356732, -0.0184785463, -0.0151816551, 0.020206755, -0.0365848616, -0.0283160452, -0.0273057073, -0.00496860174, 0.0182658434, -0.0197813511, 0.0498521924, 0.035095945, -0.0026189019, 0.0039948225, 0.00508492393, -0.0346705392, -0.00574961957, -0.00198577903, -0.00969791319, -0.000148414139, 0.0200605225, 0.0327030383, 0.00479245745, 0.00671675242, -0.0223603714, -0.00133271527, -0.00633122865, -0.00870086905, 0.0161919929, -0.0045099617, -0.00277012028, -0.0102828462, -0.0123500498, -0.010834543, 0.0197813511, 0.000809682708, 0.00177473808, 0.0134933274, -0.0134002697, -0.0466084778, 0.0236498807, -0.013971908, 0.0150088333, -0.000487720623, 0.0110007171, -0.0238625836, -0.00523780379, -0.00979097094, 0.00373226753, 0.000765646633, 0.00546380039, -0.00495530805, -0.00670013484, -0.0264681913, 0.00890027825, 0.0307355393, -0.0229718909, 0.0005134776, -0.012635869, 0.0236897618, 0.0190235972, 0.0165110473, -0.0305494238, -0.0237296447, 0.0121373469, 0.00166589417, -0.00424740696, 0.0261624306, 0.0172156245, -0.00194589724, -0.00131360535, 0.0258832593, 0.012217111, -0.00510818791, -0.00443684543, -0.00357938744, 0.0151151847, -0.0269999485, 0.00425737724, -0.00308418903, 0.0228123646, -0.0168301, 0.0113131246, 0.00945197605, 0.0152348299, -0.0116986483, -0.0266277175, -0.00444016885, -0.0256971437, -0.00806940813, -0.0105354302, -0.0084283445, 0.000812590763, -0.0291402694, 0.0147296619, 0.00311077689, 0.0187178366, -0.0168035123, -0.00992391, 0.0230649486, 0.0198611133, 0.0185848977, 0.0884311423, 0.00559673971, 0.0103426687, -0.00505168876, 0.0447473302, 0.0229718909, 0.00493204361, -0.0053375084, -0.0181860793, -0.00214530597, 0.0230516549, -0.00350627094, -0.00743794721, 0.021881789, 0.0133138588, -0.0058858823, 0.00678322185, -0.00965138432, 0.00819570106, 0.0083419336, 0.0103360219, -0.00208049826, 0.0085413428, 0.0229984783, -0.0103227273, -0.0086942222, 0.0314268209, -0.0421151333, -0.0223869588, -0.000392170594, -0.00168832764, 0.00228655385, -0.00574297272, 0.00627140608, 0.0301771946, 0.00908639282, 0.0365316868, 0.0059490283, -0.0197148807, 0.0111868326, -0.0271727685, -0.0144106075, -0.0140383774, 0.00321380468, -0.0424076, -0.00172488589, -0.00956497435, -0.033846315, -0.0106351348, 0.0199940521, 0.0158862323, 0.02361, -0.0332082063, 1.885036e-05, -0.0111403037, 0.000353327428, 0.022586368, 0.0399615169, -0.00780353, -0.0106151933, -0.00272857677, 0.00026463205, 0.0479644574, -0.00470272359, -0.0251919758, -0.0261757243, 0.0133470939, 0.00804946758, 0.00725183263, -0.0196085293, 0.0292732082, 0.0155671779, 0.0262421947, 0.0245272797, 0.00196417631, -0.0265213661, 0.0294061471, 0.00892686564, -0.00832199305, -0.00679651555, 0.0157665871, 0.00013418548, -0.015101891, -0.0384194255, -0.0156203536, -0.0134069165, -0.012343403, 0.0141580226, -0.0332082063, 0.0172422118, 0.00770382583, -0.0159527026, 0.000481073657, 0.0186779555, -0.0132008605, -0.0018993686, -0.0201402865, 0.0193559453, -0.0353086479, -0.0235302355, 0.0249526855, -0.0160457585, 0.000607781345, 0.0243810453, -0.00288976543, 0.0170560963, 0.0290073305, 0.00525774481, -0.0266277175, 0.0204726346, -0.034351483, -0.00709895231, 0.0231447108, -0.00674998714, -0.00446675671, -0.0031622909, 0.0286882762, 0.0165908094, 0.0139586143, 0.0241816379, 0.0116454726, 0.0203928705, -0.0226262491, -0.0181860793, 0.0314268209, 0.013719324, 0.00961815, 0.0354149975, -0.016484458, 0.0338994898, 0.0196882933, 0.0112267137, 0.0063877278, -0.01574, 0.00103858742, 0.00991726294, 0.00980426464, -0.0228921268, 0.0231048297, -0.00260394625, -0.0241550487, 0.00476254616, -0.0106484285, 0.00494201388, 0.00919274427, 0.0211772118, 0.00143158878, 0.0179999657, 0.0167902187, 0.00562332757, 0.032968916, 0.0281565189, -0.00817576, -0.0223869588, -0.0148758944, -0.0283958092, -0.0200206414, -0.0250856243, 0.0214563832, -0.00701254187, -0.0123168156, 0.0298315529, -0.0143042561, 0.0119844675, -0.0246735122, -0.02961885, 0.0158197619, -0.00721195061, 0.0124165192, 0.00481239846, 0.0306557752, -0.00867428165, 0.0323042199, 0.00216026162, 0.039748814, -0.00725847948, 0.0206321608, 0.0058227363, -0.00753765181, 0.0143840192, 0.0297783762, -0.0235568229, 0.0325966887, 0.0337931402, 0.0262953695, 0.016524341, 0.0159128197, -0.0252185632, -0.0255243238, -0.0498787798, 0.0107016042, -0.0325701, -0.00198245561, 0.0201004036, 0.0064508738, -0.0203131065, 0.0172820929, -0.0035328588, 0.0021984817, -0.0333145596, 0.00392502919, 0.02225402, 0.032968916, -0.0200339351, 0.0390841179, 0.00819570106, -0.00848816708, 0.0191964172, -0.0251919758, 0.0446675643, 0.0544253029, 0.00246934523, 0.00620825961, 0.00253249146, -0.0367709771, 0.0193559453, -0.00120309961, 0.0175080895, 0.0139054386, 0.00562665099, 0.00943203457, 0.00201236689, -0.00699924817, -0.0277311131, 0.00803617388, 0.0130612748, -0.00713883387, -0.0154475328, -0.018571604, 0.00873410422, 0.0385523625, 0.00566985598, -0.00248928624, 0.00662037125, -0.00754429866, 0.0205125157, -0.00338662579, 0.0438433439, -0.0259630214, -0.0362658091, -0.00690619042, 0.0244342219, 0.0206853375, -0.0210176855, -0.0209645089, -0.00897339452, 0.0177606754, 0.0152348299, 0.0112400083, -0.0155405905, -0.00763735594, 0.00043953018, 0.0238758773, -0.00777029525, 0.00820899475, -0.0121373469, -0.0316129364, 0.0110073639, 0.0120177018, -0.0116521195, 0.000869089912, 0.0245006923, -0.00807605498, 0.00413108524, 0.0281299315, 0.0039948225, -0.00215527648, 0.00866098795, -0.0103825498, 0.00100784516, -0.054717768, 0.0313470587, 0.00897339452, -0.00330187683, 0.0127821025, 0.0355479382, 0.015062009, -0.0119711738, 0.019874407, -0.0291668568, 0.0239822287, 0.00116986479, 0.00257071154, -0.00574297272, -0.0299644917, -0.0171757415, -0.0144504895, -0.00368241547, 0.0319851674, 0.0706704706, -0.0155272968, 0.00190269202, -0.0244076345, -0.0329157412, 0.0262953695, -0.0411047935, -0.00434378767, -0.0150088333, 0.00242614, -0.0231048297, -0.0403869227, -0.035601113, -0.0250324477, 0.0296454374, 0.0184120759, -0.0184386652, -0.000979595585, -0.000819237728, -0.00415434968, 0.000218103349, -0.0141048469, -0.0231713, -0.015062009, -0.0203396957, -0.0172555055, -0.0249260962, 0.0299644917, 0.00820899475, 0.0241550487, 0.0446675643, 0.0144106075, 0.0321181081, 0.0232377686, -0.00903986488, -0.00484230975, 0.00654393109, -0.00432384713, 0.0307621267, -0.00301938108, 0.0313736461, -0.00177639979, 0.000401310157, -0.0359999314, -0.0204460472, -0.0223204885, 0.0185848977, -0.0158064682, 0.0251122117, -0.0218020268, -0.0238758773, 0.011087128, -0.0122769335, -0.0365582742, -0.00586594129, -0.000719117874, -0.0432318226, 0.0564193875, 0.0141447289, -0.0158862323, 0.00785005838, -0.0304430723, -0.0230782423, -0.0229054205, -0.0101632, 0.0155405905, -0.0384991877, -0.00969791319, 0.0169630405, -0.00469607674, -0.0432584099, -0.0056598857, -0.00731830206, 0.0272259451, 0.00258899061, 0.0425405391, -0.0531490855, -0.00356277, 0.0227060132, -0.0376749635, -0.00436040526, -0.0262953695, 0.0195021778, 0.00596564589, -0.0217887312, -0.0369305052, 0.0064010215, -0.0147961313, -0.0101166721, -0.0060620266, -0.024513986, -0.0408655033, 0.0162717551, -0.00414105551, 0.0177606754, 0.0126558105, 0.00893351343, 0.0421417207, 0.011798352, 0.00624481821, 0.0111934794, -0.022759188, 0.00441358099, -0.0209246278, 0.0173086822, -0.0149024827, 0.00633455208, 0.0111137154, 0.00163681363, -0.0062115835, 0.0135199148, -0.0134202102, -0.00718536275, -0.00495198462, 0.00773706054, 0.023091536, -0.0281033423, 0.00703912973, 0.012549459, 0.00862110592, -0.0172023308, -0.0234238841, 0.0196882933, -0.00800958555, 0.00581941288, 0.00366912154, 0.00339825777, 0.0168965701, 0.00215361477, 0.0184652526, 0.0242614, 0.00677325157, -0.00904651172, 0.0173485633, -0.00340324314, -0.00627805293, -0.0013044657, -0.0249393899, 0.0125826932, 0.0130612748, 0.00145069882, -0.00925921369, -0.0330752693, 0.00263551925, 0.00257569668, -0.00299777859, -0.0182791371, -0.0157532934, -0.0157931745, 0.0146631915, -0.00503174821, -0.00335339084, -0.0355479382, -0.0422746614, -0.0103160804, -0.00634784577, 0.00915951, -0.0100767901, -0.0168035123, 0.0232776515, -0.0207252186, -0.00465619471, 0.000814667903, 0.00799629185, 0.00196417631, 0.0707768202, -0.000778525078, -0.0107880151, 0.00571970828, -0.00174482679, 2.07328e-05, 0.0173219759, 0.0131210973, 0.0111469505, 0.00333677349, 0.00719865691, 0.0155937662, 0.00330520049, -0.0284223966, -0.00202898425, 0.0107148979, -0.00119312911, 0.00683307415, -0.00508492393, -0.039615877, -0.0202998128, 0.00969126634, 0.00672339927, -0.00853469595, -0.00390508841, 0.00394164678, -0.0161255226, -0.0300708432, -0.036478512, -0.0133936228, 0.0106218411, -0.00182625197, 0.0373293236, 0.00436705211, 0.0121506415, 0.00714548118, 0.00539733097, 0.00702583557, -0.00380870746, -0.0295656733, 0.00379541377, -0.0220147278, -0.0142244929, 0.00950515177, -0.0093323309, -0.0101366127, 0.0181727856, 0.00638108095, -0.0150354216, 0.015062009, 0.0327562131, -0.00856128335, 0.00412776181, 0.0164046958, -0.0336336121, 0.0249128025, 0.00746453507, 0.00746453507, -0.00600220403, 0.0260294918, 0.00236299401, 0.00294460286, 0.0240088161, -0.026189018, -0.00638108095, -5.94591256e-05, 0.0189305395, 0.0207651, -0.0219482593, 0.00767723797, 0.0109807765, 0.0154076517, 0.0141846109, 0.00813587755, -0.0152880056, -0.00571970828, -0.0143973138, 0.0142111983, 0.000866597285, 0.00979097094, 0.0273322966, -0.0124098724, -0.000408787979, 0.00452990271, -0.0143042561, -0.010668369, 0.019449003, 0.0177473817, 0.0115258275, -0.00405464508, 0.00564326812, -0.0247532763, -0.00380870746, 0.0291668568, -0.000771462684, -0.00975108892, 0.0153013, 0.0215760302, -0.0206853375, 0.00117983529, -0.0123699913, 0.0304430723, 0.019874407, -0.0221210793, 0.00337997871, -0.0275184102, 0.0300974306, -0.0064508738, -0.00649075536, 0.0390309431, 0.00780353, -0.0236764681, -0.000297243707, 0.00262222532, 0.0280767549, -0.0465021245, 0.0145036653, -0.010960836, 0.016484458, -0.0224401336, -0.0339526683, 0.00769053167, 0.00572635513, -0.00204227818, -0.0129881585, 0.00611520233, 0.00691948459, 0.0521121584, 0.00366579788, 0.0176676176, -0.00394164678, 0.0055601811, -0.00633455208, 0.00430722954, -0.0208847448, -0.00148642622, 0.010375903, 0.012090819, 0.00728506735, 0.00403138064, 0.0191964172, 0.00911298115, 0.00701254187, -0.00338164042, -0.0350693576, 0.021336738, 0.0124696949, 0.00047650389, 0.0023613323, -0.0429393575, -0.0161919929, -0.00749777, 0.00648410851, -0.00854799, 0.0267207753, -0.0106351348, -0.00390841207, -0.0443751, 0.00583603, -0.032091517, 0.0134069165, 0.00360929873, 0.0145834284, -0.0234371778, 2.55362665e-05, -0.0152215362, -0.0243810453, -0.0083552273, -0.00575959031, 0.00142826536, -0.00390841207, 0.000878229446, -0.0100900838, 0.00199408783, -0.00647081481, 0.0039948225, 0.0203264, 0.00883380882, 0.0123699913, 0.0123500498, -0.00585264759, -0.00999702606, 0.00681313314, 0.00656719552, -0.00296288193, -0.00347968307, -0.00182957551, 0.00615176046, -0.0111868326, 0.0442421585, -0.00917945057, -0.0018179433, 0.0107016042, -0.00511483522, 0.0258034952, 0.0151683604, -0.000566237839, -0.0375420265, -0.00432384713, 0.0061617312, -0.0149157764, 0.0178670269, -0.0072917142, -0.0281831063, 0.00139586139, -0.00931903627, -0.0318788178, -0.0114394166, 0.00625811191, -0.00680648629, -0.00130612752, 0.00302270474, 0.000851641642, 0.0154342391, 0.0217355564, -0.0189039521, 0.0274918228, -0.00346306572, 0.0217222627, 0.00374556147, -0.00421417225, 0.00211040955, -0.0164711643, -0.000388016226, 0.0151949488, -0.016524341, -0.00773706054, 0.00171159196, -0.000344187865, 0.0268537141, -0.00784341153, 0.0038319719, 0.0112001263, -0.0190900657, 0.00870086905, -0.00580279529, 0.0160058774, -0.0461298972, -0.00342983101, 0.0146631915, -0.000758168753, -0.00769053167, 0.00108013081, -0.00479578087, 0.00734489, -0.000151945336, 0.0280501675, -0.0174416211, -0.0138389692, -0.0120509369, -0.0175080895, -0.0126624573, -0.0042839651, 0.00140832446, 0.0139984963, 0.00265546027, -0.00348633016, -0.0107281916, -0.0137459114, -0.0040579685, 0.0233574137, 0.00636446336, 0.0122835804, 0.00357274059, -0.0163382255, -0.00735818362, -0.014809425, -0.0103626093, -0.023091536, -0.0186114851, -0.0137990871, 0.00890027825, 0.0132340956, 0.0142510803, -0.0128818071, -0.00117817346, 0.0455183759, -0.00108594692, -0.0204859283, -0.00718536275, -0.0182658434, 0.0316927023, -0.00440693367, -0.00491210259, -0.0125361653, -0.0201535802, 0.0259497277, 0.0175878536, 0.010834543, -0.00267041591, 0.0184785463, 0.00443019811, -0.00677325157, -0.0192495938, 0.00240952265, 0.0188640691, -0.0101366127, -0.0205523968, 0.0232377686, -0.0149024827, 0.0108810719, -0.0138522629, 0.00135681056, 0.00548041798, -0.00545383, -0.00129864959, 0.0123699913, -0.00629799394, 0.00988402776, -0.0167503376, 0.0121971704, -0.0321446955, -0.0233707074, -0.0117917052, -0.0235036481, -0.00896674767, 0.00825552363, -0.0352820605, -0.0402008072, 0.00385523634, 0.00607864419, 0.0276779383, 0.0215361472, 0.0202732254, -0.00166506332, -0.0278374646, 0.0145036653, -0.00608529104, -0.00252418267, -0.00440028682, -0.0224401336, -0.0177473817, -0.0204593409, -0.023968935, 0.00980426464, -0.00153295498, -0.0157665871, -0.0121572884, -0.00515139336, -0.0172156245, 0.000833777944, 0.0335538499, -0.0127555141, 0.0124829896, 0.0112333605, -0.00339161092, 0.00317558483, 0.0209512152, -0.00752435764, 0.00673336955, -0.0160457585, 0.00697266031, 0.0111801857, -0.0143840192, 0.0237828195, 0.0116587663, 0.0025158741, -0.0124497544, -0.0245405734, -0.018239256, 0.00409785053, -0.0103692561, -0.0121838758, 0.00640434492, -0.0105354302, -0.0308418907, -0.0570043214, 0.00309415953, 0.030203782, 0.00987738091, 0.00121223915, -0.0395892896, 0.0125428122, 0.00941209402, -0.0127422204, -0.0103094336, 0.0015761602, -0.0111735379, -0.00591247, -0.0210575666, -0.0106617222, -0.00481572188, -0.0300708432, -0.0148891881, 0.00220679049, 0.0124564013, -0.0125029301, 0.0200206414, -0.030124018, -0.00924592, 0.0334740877, 0.00373891462, 0.0229187142, 0.0176809113, -0.0179334953, -0.0179999657, -0.0150221279, 0.00549038826, -0.00238958187, 0.00226661307, -0.027438648, 0.00577953085, -0.00903986488, -0.000855796, 0.0212303866, -0.00851475447, -0.00961150322, -0.0215627346, -0.0226927176, -0.0181860793, -0.0136528537, -0.00616505463, -0.0221742559, -0.00298448466, 0.0123965787, 0.00486889761, -0.0093988, 0.0290870927, -0.0144106075, -0.0108478377, 0.0037588554, -0.0181993749, -0.0125694, -0.00632790523, 0.0145302527, 0.0126026347, 0.0105287833, -0.00828875788, 0.0267606582, -0.00991061609, 0.0149822459, 0.00555685768, 0.0239556413, -0.016524341, -0.0226794239, 0.020751806, 0.00458307844, 0.00947191659, -0.023889171, 0.00903321709, 0.00748447608, 0.000436206697, -0.00476586958, 0.00555685768, -0.00569644384, 0.00491210259, 0.00265878369, 0.00900663, -0.0125228707, 0.0147828367, 0.0144637832, 0.00747118192, -0.0189970098, -0.0101299658, -0.019954171, 0.0184120759, 0.00550700584, -0.00615508435, 0.0212170929, 0.00263884268, -0.0239290521, -0.0268271267, -0.0085812239, -0.00852804817, 0.0220280234, 0.00248928624, 0.0195686482, -0.00699924817, 0.00540065439, 0.00825552363, 0.00794976298, -0.00131194352, 0.0166838672, -0.0013501636, 0.0189172458, -0.0320649296, -0.00486557418, 0.00924592, 0.0111469505, -0.00480907504, -0.00882051513, 0.00804282073, 0.00954503287, 0.0231713, 0.0255509112, 0.0394297615, -0.0143973138, 0.00731830206, -0.00189770688, -0.00228821579, -0.00531756738, 0.00085995032, -8.6981694e-05, 0.00241118437, -0.00351624144, 0.0123301093, -0.00583603, 0.025059035, -0.00476254616, 0.00572635513, -0.0219748467, -0.0157665871, 0.00948521, 0.0331284441, 0.0264017209, -0.00872745737, -0.0220944919, -0.00272192969, 0.0174283274, -0.000540065404, 0.0157532934, 0.00408123294, -0.0325169228, 0.00977767725, 0.0128951008, -0.00363256317, 0.00547044724, 0.0342451334, -0.00704577658, 0.0301771946, 0.00919939112, -0.00208880682, 0.0212835632, -0.0185848977, 0.00552029954, 0.0141181415, 0.0392170586, 0.00189438334, 0.00440028682, 0.0146631915, -0.0082023479, 0.012635869, -0.000326116424, 0.00330520049, 0.00273356191, -0.0331018567, -0.0133670345, -0.00450331485, -0.000136470378, 0.0299644917, -0.0117651178, 0.0388980061, -0.0135199148, 0.00508492393, -0.00319552561, -0.0148227187, -0.00182957551, -0.0185981914, -0.0166439861, -0.00208880682, 0.00725183263, -0.0144637832, -0.0136927357, -0.00314068818, 0.0209512152, 0.00615176046, 0.00527103851, 0.0322776325, -0.0131676262, 0.00336834649, 0.00826217048, -0.0105487239, 0.0040579685, -0.00460634287, 0.00325701, -0.0092193326, -0.013094509, 0.00249260967, -0.00501845405, -0.00769053167, 0.000874075107, 0.0128552187, -0.0117850583, -0.0026687542, 0.000318846316, 0.00289142714, -0.00659378339, 0.00649075536, -0.000580362626, 0.00545050669, -0.00620493619, 0.00195586774, -0.00403802749, -0.00541727152, 0.0084682256, 0.0173485633, 0.015899526, 0.0126491636, -0.0160856415, 0.0208980404, -0.0270930063, 0.00721195061, -0.0227857754, -0.0085812239, -0.0287946276, 0.00282163406, 0.00330353878, 0.0147030735, 0.0147828367, 0.0115524149, -0.00725183263, 0.0196882933, 0.0017464885, 0.0346705392, -0.0224002525, -0.0213633273, 0.0027817525, -0.0160856415, -0.0162584614, -0.00342318392, 0.00954503287, -0.023716351, 0.00964473747, -0.0195952356, -0.011711942, -0.0167636313, 0.00694607245, -0.0156735294, 0.0199940521, 0.00796970446, -0.0118714692, -0.0047991043, 0.0218020268, -0.00750441663, 0.00963809062, 0.0149024827, 0.0298049655, -0.00648410851, -0.0214829724, 0.00182957551, 0.0125361653, -0.00481572188, -0.0243411642, -0.00989067554, -0.0259231403, -0.0108478377, -0.0282096937, -0.014769543, -0.00413773209, 0.0164711643, -0.0103360219, 0.00907974597, 0.00908639282, -0.0242746938, -0.00586926471, -0.0168699827, -0.00924592, 0.00804946758, 0.0140516711, -0.0276779383, 0.0193160623, 0.00786335301, 0.0087673394, -0.00523115695, 0.0237695258, -0.00856128335, 0.00487886788, 0.00441358099, -0.0051115118, -0.023968935, 0.0184120759, 0.00257071154, 0.00943868235, 0.00403802749, -0.00587923545, 0.00179135543, 0.0055601811, -0.0087673394, -0.0204859283, -0.00762406224, 0.00206221896, -0.0163648129, -0.00112749042, -0.00455649057, -0.0092193326, 0.0195686482, 0.0263352524, -0.0343780741, 0.00265546027, 0.0112798894, -0.0167237483, -0.00390176498, 0.0220280234, -0.0168433953, 0.0117052952, -0.0237429384, 0.00192761817, -0.0171624478, 0.0276247617, 0.00211040955, 0.00377547275, -0.0128286313, -0.00596232247, 0.00843499135, 0.00177473808, -0.055728104, -0.0385789499, 0.0135465031, 0.00376550225, 0.00838181563, 0.0114460634, 0.0121174064, 0.00225165742, 0.00680648629, -0.0145701347, 0.0088072205, 0.0140250837, 0.0123965787, 0.0183987822, 0.0107547799, -0.00244109565, -0.00864104647, -0.0164711643, 0.00948521, -0.0010468961, -0.00608196761, -0.0295656733, -0.0115524149, 0.0186779555, 0.0191033613, 0.0202333443, -0.00633122865, -0.0146100158, 0.00909304, -0.02083157, 0.00982420519, 0.0140649658, -0.00386853027, -0.00724518532, -0.0221077856, 0.00682642683, 0.0340324305, 0.0344046615, 0.00999702606, -2.43548729e-05, -0.00894016, -0.000904817309, -0.0158064682, 0.0175745599, 0.000344187865, -0.0132208019, 0.0104290787, 0.00593905803, 0.0188640691, -0.00852804817, -0.00216358528, -0.00379873719, 0.0241816379, -0.0059855869, 0.0240885802, -0.00109841, -0.011964526, -0.0141181415, 0.00463957759, 0.0271195937, 0.0157532934, 0.000658048957, 0.0244475156, -0.00539400754, 0.00749112293, 0.0204061642, 0.0277311131, -0.0135797374, -0.0106816636, 0.0112665957, -0.021881789, -0.0110671865, 0.000217687906, -0.0141447289, -0.00568647357, -0.000351042516, -0.0183456074, 0.00886704307, 0.00324703963, 0.00278341421, 0.00114327692, -0.00943868235, -0.000383446459, 0.00323208398, 0.00369903282, 0.00638440438, -0.0216424987, -0.00582605973, 0.0138522629, 0.00289807422, 0.000973779534, 0.0114061823, -0.00137841317, 0.00497857248, 5.21111215e-05, 0.00468943, 0.0105753122, 0.0229187142, 0.00688625, 0.0168699827, 0.00844828505, 0.00997043867, 0.0115922969, 0.0171757415, 0.00937221199, -0.0205656923, -0.00965138432, 0.0322244577, -0.0143574318, 0.0199408773, -0.00707236445, 0.000686298532, 0.0143707255, -0.0008346088, 0.0151284793, -0.00741135934, -0.00207717484, 0.0135996779, -0.0194622967, -0.00593905803, -0.00198910246, 0.00124215044, -0.00481572188, 0.0171890371, -0.0121572884, 0.0266144238, 0.00894016, 0.0218950827, 0.0134135634, 0.0131809199, -0.0069527193, -0.00949185807, -0.00416099653, -0.000364336447, 0.00314899697, -0.0223736651, -0.018744424, -0.00405464508, -0.0249925666, -0.0224401336, -0.0166306924, -0.005709738, 0.0239556413, -0.0132075073, 0.00139835407, 0.0204726346, 0.0105287833, 0.0201801676, -0.00350627094, 0.0100568496, 0.0195686482, 0.023011772, -0.0167104546, -0.00905315857, -0.00695936615, 0.0156602357, -0.00110339525, 0.000640185259, -0.0208714511, -0.00290970644, 0.0070657176, -0.0157931745, -0.00635449309, -0.0147163672, 0.00697930716, 0.0286882762, -0.0271594748, -0.0101366127, 0.0116920015, -0.0263352524, 0.00938550662, -0.00485228, 0.00351956487, -0.0119844675, -0.00657716626, -0.0100701433, 0.00213699741, -0.000452408654, 0.0161919929, -0.00317724654, 0.00432717055, -0.00449334458, -0.0200738162, -0.0144371949, -0.0100900838, -0.00959156174, 0.0148360124, 0.00154707977, -0.00481572188, 0.0296720248, 0.00881386735, 0.00688625, -0.00406793877, 0.00356277, 0.00600220403, -0.003935, 0.00300608715, 0.0244076345, 0.0103027867, 6.87544816e-05, -0.00608529104, -0.0162185803, 0.000250299548, -0.0260427855, -0.00613846676, -0.00409452664, 0.00886039622, 0.00759082753, 0.00581941288, 0.00317226117, 0.00398817565, 0.00614179, -0.0215228535, -0.00423743622, 0.00506498292, -0.0091329217, -0.00435375841, 0.00755759235, 0.0228522457, -0.00770382583, -0.0208182763, -0.0140383774, 0.00618831906, 0.000913956901, 0.0006352, 0.00803617388, -0.00447340356, -0.021708969, -0.00292466208, 0.00326698041, -0.00898004137, -0.00471934117, 0.0296720248, 0.00257735839, 0.017361857, -0.00680648629, 0.00631461106, 0.00809599645, -0.00651402, -0.0179069079, -0.00599223375, 0.00691283727, 0.00693942513, -0.0158862323, 0.00559673971, 0.0108013088, -0.0100236144, -0.0152348299, 0.0108079556, -0.00636114, -0.0137459114, 0.0104290787, -0.00712554, -0.00965138432, 0.00238127308, 0.0234371778, -0.0054471828, 0.0354415849, -0.0116654132, 0.00102529349, -0.008993336, -0.00687960256, 0.00189438334, -0.0105354302, 0.0056598857, 0.00624481821, 0.00488883862, 0.0141713172, 0.0185450166, 0.0174549147, -0.00693942513, -0.00654393109, 0.0208980404, 0.0100103207, -0.0042208191, -0.00371232675, -0.0134135634, 0.00373891462, 0.00841505, -0.00676328084, -0.0104024913, 0.0019525442, -0.00880057365, 0.00458307844, -0.0161388163, 0.00587923545, 0.0112732425, -0.00562332757, 0.00368241547, 0.00661040097, -0.0441358089, 0.00745124137, -0.0179733783, 0.0021353357, -0.00399814593, -0.0111668911, -0.00513477577, 0.00860781223, 0.011964526, -0.0236498807, 0.0205258094, 0.00140417006, 1.85647496e-05, 0.0180265531, 0.00415434968, 0.0285287481, -0.0093988, 0.0190235972, 0.0139054386, 0.0112001263, 0.0246602185, -0.00773706054, 0.0066137244, 0.0231181234, -0.00294626458, 0.0130812153, -0.000730334606, 0.00271362113, 0.0134800328, 0.00577953085, -0.0218286142, 0.000212702696, 0.000920603867, 0.00220679049, 0.0122769335, 0.00542059494, 0.0100169675, 0.00180132594, 0.0274918228, -0.0178005565, 0.00459637213, -0.00945197605, 0.0098375, 0.0303101335, -0.0158463512, 0.0125694, 0.0216026176, 0.011505886, -0.0195686482, 0.0101698479, 0.013513268, 0.0188374817, 0.012968217, 0.00890027825, 0.0142111983, 0.0111602442, 0.00222839299, -0.0265080724, 0.00955168065, 0.00716542173, -0.00196417631, -0.0297252014, -0.011339712, 0.024513986, 0.00208714511, 0.000352288829, 0.0141314352, -0.0228256583, -0.0134069165, -0.0106218411, 0.0210176855, 0.0174150337, 0.0325169228, 0.0166838672, -0.00930574257, -0.0166439861, -0.0169231575, -0.00222673127, -0.00727842, 0.0153544759, -0.0220546108, -0.0166705735, -0.0157798808, -0.00850810762, -0.000212183397, -0.00654725451, 0.00762406224, -0.0257503204, 0.0206454545, 0.016524341, 0.00471601728, -0.0230383612, 0.0208448637, 0.0177872628, 0.0112333605, -0.00506498292, 0.00708565861, -0.01121342, -0.00836187415, -0.0225597788, -0.00668019382, -0.00648410851, 0.0127688088, 0.00489216205, 0.00512148207, 0.0141447289, -0.0345641859, 0.0172289182, -0.0143308435, -0.0150221279, -0.00348965358, -0.0038319719, 0.00248263916, 0.0131742731, -0.0166971609, -0.0243810453, 0.0151284793, -0.0119911144, 0.00158446888, 0.00989067554, -0.00190103031, -0.0138522629, 0.00517798122, 0.0196085293, -0.0127621619, -0.00259231403, -0.00291967671, 0.0128485719, 0.0158197619, -0.000528017816, 0.0204460472, -2.63022248e-05, -0.0229187142, 0.00475922273, -0.0119844675, -0.0146498978, -0.0132540362, -0.00213865913, -0.0194357093, 0.0155804725, 0.0105354302, -0.000923096435, -0.016524341, -0.0184785463, 0.00619164249, 0.000162850498, 0.0132075073, -0.020578986, 0.0278906412, 0.0019675, -0.0191831235, -0.0101632, -0.00402141036, -0.00169414375, 0.0255110282, -0.0163781065, -0.027066417, 0.0243145768, -0.000871582539, -0.00406461535, 0.00024510661, -0.0177872628, 0.00123218, 0.0112067731, -0.0192097127, -0.00161022588, -0.0135996779, 0.00971120689, -0.0131011568, 0.000525940617, -0.0106883105, -0.0349895917, 0.00271860627, -0.00321546639, -0.00290305936, -0.000324039254, 0.0209910963, -0.00479245745, 0.0109475413, -0.00809599645, -0.00206720433, 0.0390043557, 0.0200073477, 0.00688625, -1.49037287e-05, -0.0087673394, 0.0160723478, -0.00608861446, -0.00894680712, -0.0166572798, 0.00613846676, 0.0168035123, -0.0127754556, -0.00267872447, 0.00325036305, 0.0156735294, -0.0103825498, 0.00279836985, 0.0121506415, 0.0193027686, -0.0303633101, -0.00139586139, -0.00432052324, -0.00727842, 0.00931903627, -0.00823558215, -0.0126292221, -0.0272791199, -0.0171757415, 0.00328193605, -0.00809599645, -0.00382864848, 0.0160058774, -0.000533833925, -0.0102562578, -0.0125361653, 0.0103360219, 0.00540397782, 0.0158197619, -0.00188939809, 0.0310280044, -0.000452408654, 0.013971908, 0.011419476, -0.0205922797, -0.00672339927, 0.00593905803, 0.00830869935, 0.0147296619, 0.0132075073, -0.0145568401, -0.00337333186, 0.0142244929, 0.00366579788, 0.00991061609, -0.0162451677, -0.0162185803, 0.0227857754, -0.00925256684, 0.0110671865, 0.00886039622, -0.0093456246, 0.00634119892, 0.010581959, 0.0027235914, -0.00221842271, 0.00506498292, -0.00613182, -0.0131410379, 0.00084416382, 0.0042341128, -0.0106949573, 0.0133803291, 0.0320649296, 0.0119977612, -0.0169098638, 0.0173485633, -0.000146856255, -0.00569644384, -0.0058725886, -0.000381784717, -0.00842169765, -0.00896674767, 0.0216956753, 0.0040579685, -0.0197414681, 0.00408455636, 0.00578285428, 0.000648493937, 0.0206853375, 0.00530427322, 0.00624481821, 0.00289641251, -0.00052137085, 0.00765065, 0.0154874148, 0.0175612662, 0.013971908, -0.0171890371, -0.00209046854, -0.0189305395, -0.0096713258, 0.00285985414, 0.00705242343, -0.0176809113, -0.00282828114, -0.0115391212, -0.00424408354, -0.0231845938, -0.00737147778, -0.000784341188, -0.0158197619, 0.000394040049, -0.00291302986, -0.0079032341, 0.00079555792, 0.00119063654, -0.00976438262, -0.0222806074, 0.0160856415, 0.00646416796, -0.000340864382, -0.0046096663, -0.00817576, -0.00586926471, 0.016816806, 0.027358884, 0.00995714497, -0.020499222, 0.00445013912, -0.0169763342, -0.000404010498, 0.0139852017, 0.0036558276, -0.00843499135, 0.00511483522, -0.0145967221, -0.00458972529, -0.00872081053, -0.000253830745, -0.0118315872, 0.00659046, 0.0275715869, -0.00389179448, -0.008242229, -0.0143042561, -0.00232809735, 0.00208049826, 0.00461963657, -0.0239423476, -0.00209545391, 0.00426734798, 0.00197747024, -0.00280169328, -0.00990396924, -0.00265546027, 0.00566320913, -0.00709230546, -0.00803617388, 0.00338662579, -0.00578950159, 0.00705242343, -0.0126956915, -0.0388182402, -0.0131277442, -0.00499851303, -0.0182791371, 0.0147163672, 0.00424740696, -0.0245937482, -0.0199275836, -0.00111835089, 0.0161122289, -0.00397155806, -0.022586368, 0.00503839506, -0.0148626007, 0.00121473183, -0.0135996779, -0.0203264, -0.0241018739, -0.00693942513, 0.00760412123, 0.0177340861, -0.000601549807, -0.00378544326, 0.0188640691, 0.0152215362, 0.00542724226, 0.0182924308, 0.00122387137, -0.0179334953, -0.0394031741, -0.0175878536, -0.0218552016, 0.000394040049, 0.0117784115, 0.0059357346, 0.0227326, 0.0155405905, -0.0282096937, 0.0271993559, -0.00562332757, -0.0174416211, 0.00150138186, 0.0334740877, 0.00319220219, -0.0187843069, 0.000421874196, 0.00678322185, -0.00941874087, -0.00278009055, 0.000991227804, 0.00162518153, 0.00954503287, -0.00783676468, -0.00749112293, 0.00943868235, -0.012509577, -0.0143308435, 0.00630464079, 0.00860781223, 0.00121057744, 0.0110605396, 0.00731830206, 0.00059698004, -0.00738477148, -0.00908639282, 0.0145435464, 0.015726706, 0.00433049398, 0.0125428122, -0.00747118192, 0.00647413824, 0.0263884272, 0.014516959, 0.0211639181, 0.0260826685, 0.0192230064, 0.00075276813, 0.00118066615, 0.00617170148, 0.00572967855, -0.00702583557, -0.0359999314, 0.00828211103, -0.0148227187, -0.0214165021, -0.00996379182, -0.0161919929, 0.0146233104, 0.00609526131, -0.00663366541, -0.000901493826, 0.01401179, -0.0149822459, -0.0126890447, -0.00742465351, 0.0108544845, 0.0147030735, 0.0206986312, -0.00329523, 0.00301771937, -0.00493869046, -0.00122470222, 0.00964473747, 0.0127621619, 0.0120110549, 0.00548706483, 0.00442687469, 0.0109143071, 0.00400146935, 0.0122237578, 0.0102562578, 0.0142776677, 0.00771047268, -0.00503174821, 0.00788994, -0.00997043867, 0.0183323137, 0.00254412368, -0.00250756531, -0.019449003, -0.00165426196, 0.00759082753, -0.0180930234, 0.00774370739, -0.00817576, 0.0126624573, 0.0166041031, -0.00370567967, -0.0030808656, -0.000418550713, -0.0160324648, -0.0140782595, 0.00203563133, -0.00721195061, -0.0193958264, -0.00697930716, -0.0088936314, 0.00953838602, -0.0146100158, 0.0310545936, 0.00248596282, -0.0027003272, 0.0148626007, 0.0143441381, -0.00722524477, -0.0171358604, 0.0165642221, -0.00773041369, 0.00864769425, 0.00207385118, -0.00493204361, -0.0141846109, -0.0131410379, 0.00423078937, 0.000837101426, 0.0126425158, 0.00729836104, 0.00084250205, -0.00664695911, 0.00264715147, 0.0223337822, 0.0194888841, 0.0193825327, 0.00253581489, -0.0060121743, 0.00908639282, 0.0223204885, 0.00379209, -0.0104490202, 0.0130679216, -0.0165376347, 0.00628137635, 0.0212303866, -0.0107747205, 0.0059490283, -0.00392502919, 0.0123367561, 0.0240885802, -0.0118182935, -0.00386853027, 0.000723272213, 0.0161388163, -0.00454984372, -0.00252584438, -0.00829540472, 0.00286483928, -0.0098375, 0.0146100158, 0.00983085297, -0.0149689522, -0.0218684953, -0.00848816708, -0.0154741211, -0.0119578792, 0.00122054783, 0.0143308435, -0.0180265531, -0.0255774986, -0.0200472288, 0.00554356398, -0.0103692561, 0.0240088161, 0.00807605498, -0.0102629047, -0.0160191711, 0.00812258385, 0.0161255226, -0.00413108524, 0.0113131246, -0.00368241547, 0.0452790856, -0.0249925666, -0.0085413428, -0.015394357, -0.0160856415, 0.00206554262, 0.00886704307, -0.0164977517, -0.00390176498, 0.0188374817, -0.0140250837, -0.0109010134, 0.0213101506, 0.0163914021, -0.0122503461, -0.0106484285, 0.00453987299, -0.00963809062, 0.0154076517, 0.000773124455, 0.00122054783, 0.000829208177, -0.0161654055, 0.0185051337, 0.00245438959, 0.0136262663, -0.0139453206, -0.0133338, 0.0166173987, -0.00360929873, -0.00925921369, 0.0157134105, 0.0181461982, -0.00536077237, 0.00991726294, -0.00610523205, -0.00342650735, 0.0124165192, -0.0182658434, -0.0157134105, 0.00593241118, 0.0086942222, 0.00037451461, 0.00935227145, 0.0138522629, -0.0111801857, 0.0129017476, 0.00693942513, -0.00965138432, -0.00796970446, -0.00378544326, -0.0124497544, 0.0101831416, -0.00567650329, -0.0237695258, -0.0108677782, -0.00705907075, -0.00955168065, -0.00308418903, 0.0235435292, -0.00315232039, -0.0174549147, 0.00966467895, 0.0226262491, 0.0189039521, 0.00382864848, -0.00383861898, -0.0114859454, 0.00355612324, 0.00612849649, 0.0113530066, -0.00976438262, 0.00702583557, 0.0123699913, -0.00884710252, -0.00803617388, 0.0139984963, 0.0160723478, -0.00435375841, 0.0222008433, 0.0285287481, 0.00303599867, 0.0089069251, -0.00241949316, -0.00828875788, 0.013719324, -0.000116321782, 0.00876069255, -0.00413108524, 0.00287314807, 0.0376749635, 0.00997043867, 0.00673004612, 0.00128951, 0.00515139336, 0.00120476133, 0.00180132594, -0.00752435764, 0.01615211, 0.013008099, 0.008115937, 0.023091536, -0.0252584442, -0.0012072539, -0.00488883862, -0.0135597968, -0.0144903706, 0.00535412552, -0.00285985414, 0.0117252357, 0.00359932845, 0.00627805293, 0.00999702606, 0.000214364438, -0.0165110473, 0.0119445855, -0.0056731794, 0.00130612752, 0.00965138432, 0.00619164249, -0.00472598802, -0.00668351725, -0.0124896364, 0.00612184918, -0.000845410104, -0.00627805293, -0.031453412, 0.00462296, -0.0216026176, -0.00575294299, 0.00327861262, 0.00432717055, -0.0233972967, -0.0271461811, 0.00312407082, 0.000901493826, 0.000506830635, -0.00363921, -0.00267706276, -0.00983085297, -0.0042341128, -0.00753765181, 0.00234139129, -0.00740471249, 0.00673004612, 0.00441690441, -0.0015761602, -0.0455981381, 0.00443019811, -0.0017664294, -0.00130695838, -0.0137592051, 0.0102163758, 0.00342983101, -0.00920603797, -0.0012014379, -0.0205922797, -0.0185450166, 0.000680067, -0.000439945608, -0.00942538772, -0.0121240532, -0.00673669297, -0.0262687821, 0.011339712, 0.0222806074, -0.0110671865, 0.00104191084, -0.0214962661, -0.00274851755, -0.0201137, 0.00172987115, 0.00359932845, -0.00730500789, 0.000550866709, 0.00499851303, -0.0178670269, -0.00804282073, 0.00303766038, 0.00578950159, 0.0169630405, -0.00259896112, 0.0157532934, 0.00218020263, 0.00763735594, -0.0118581755, -0.021629205, -0.023091536, -0.00705242343, 0.0194091201, -0.0141048469, -0.00973779522, -0.00315398211, -0.0092326263, 0.0244076345, 0.00626475876, -0.00243278709, 0.00142577279, -0.00693277828, -0.0225331914, 0.0198079385, 0.0229585972, -0.00636446336, -0.0027817525, 0.00847487245, -0.0119445855, -0.00613182, 0.000360389822, 0.0137459114, 0.0100236144, 0.00892686564, 0.0156868231, 0.0146764861, -0.00726512633, -0.00524445064, -0.0130280396, -0.00135099445, 0.00515139336, -0.00488883862, 0.030203782, 0.00546047697, -0.0015204919, 0.00620493619, -0.00395494048, 0.00781017682, -0.00981091149, 0.00957826804, 0.00303932209, 0.000803866598, 0.00249593309, 0.0163781065, -0.0135066211, -0.000920603867, 0.0380206071, 0.0116521195, 0.0397754051, -0.0010884396, 0.0173884444, 0.00451993244, -0.0020539104, -0.0141979046, -0.00618167222, -0.0134268571, 0.014809425, -0.00276513491, -0.018239256, -0.00540065439, 0.00323540741, -0.00561668025, -0.00887369085, 0.00737812463, 0.011339712, -0.0078766467, -0.00749112293, -0.0145967221, -0.00405464508, -0.00511815865, 0.0323574, 0.0229187142, -0.0108744251, 0.00226328964, 0.0121905226, 0.0118116466, 0.00318223168, 0.0172023308, -0.00146731618, 0.0166705735, 0.0247266889, -0.00744459406, 0.026561249, 0.0191698298, 0.0264283102, -0.027943816, -0.0138921449, 0.00662369467, -0.00410449738, 0.00804282073, -0.0089202188, -0.01597929, -0.0145701347, 0.0115125328, -0.00193426514, 5.21111215e-05, -0.00650404952, 0.0137592051, 0.0124763427, -0.0125428122, 0.00825552363, 0.00734489, -0.0172820929, -0.0100701433, 0.00298780808, 0.0118249403, -0.00489548547, -0.0035428293, 0.00581941288, -0.000357689481, -0.0110538928, 0.00381203112, -0.0184386652, -0.00829540472, 0.00723853847, -0.0109342476, 0.033341147, 0.00577620743, -0.00451328512, -0.0244342219, -3.33386561e-05, -0.0126691042, -0.0169364512, -0.01849184, 0.00369903282, -0.0139453206, 0.0188906584, -0.00122387137, -0.00722524477, 0.0083552273, -0.0127821025, 0.0126159284, -0.00204394, -0.00615508435, -0.00970456, 0.00279338448, 0.0205656923, 0.00371232675, 0.0138522629, 0.0108810719, -0.000400063844, -0.00838846248, -9.63809071e-05, -0.00334674399, 0.00988402776, 0.0247532763, -0.0199940521, 0.0152348299, 0.00848816708, -0.0088803377, 0.0218153205, 0.00293297064, 0.01615211, -0.00888698455, -0.0154076517, -0.00711224647, 0.0297252014, 0.00771047268, 0.000746121164, 0.0211373307, 0.0253116209, -0.01849184, 0.0107281916, 0.0258832593, 0.01615211, 0.0149423638, 0.00404135138, 0.000109155531, 0.00707901129, 0.0132274488, -0.00411114423, -0.000127642386, 0.0166041031, 0.02961885, 0.0199142899, 0.0303633101, -0.0211639181, -0.0205125157, 0.0136528537, -0.015062009, -0.00305760116, 0.0129549233, -0.0078766467, -0.0134069165, -0.011964526, -0.00362591632, 0.00957162119, 0.0224800166, 0.0187045429, 0.0037588554, -0.0316661149, -0.00730500789, -0.0183854885, 0.022838952, 0.00447672699, -0.00239622872, -0.00659710681, 0.032968916, -0.020246638, 0.0141846109, 0.00900663, -0.00605205633, -0.0111668911, -0.00597561616, -0.0228522457, 0.0119379386, 0.00385191292, -0.00809599645, 0.0231580064, 0.0134467985, 0.00753765181, 0.0186247788, 0.00677989842, -0.0222407244, 0.0121705821, -0.013094509, -0.0203529894, 0.0212170929, -0.00647746166, 0.00284822192, 0.000650571135, 0.0269733593, 0.0127555141, -0.0121506415, -0.00992391, -0.00189272163, 0.00257071154, 0.00764400279, 0.00604540948, 0.00819570106, 0.0445878021, -0.0128751602, -0.00677325157, 0.013094509, 0.00229984778, -0.00860781223, 0.0149290701, 0.00116321782, 0.00577620743, -0.00132773013, -0.00932568405, -0.0021984817, -0.00682642683, -0.00366579788, 0.0042208191, 0.0312141199, -0.0158729386, -0.0155804725, -0.0173352696, -0.00203895476] |
09 Jun, 2022 | Introduction to Visual Programming Language
09 Jun, 2022
Any language that uses the graphics or blocks that are already defined with the code and you just need to use those blocks without worrying about the lines of code is known as a visual programming language. In today’s era majority of the programming languages are text-based i.e. we have to write the lines of code to perform the specific task like in C or C++. programming if you want to print a table of 2 then you have to write the complete text using syntax and functions of that language but in visual programming language this task is replaced by graphics or blocks like components then can be joined logically to perform the task.
Visual Programming language lets the user think in a logical manner unlike in regular programming language the user has to think about that how he/she can explain the program to the computer, to do this let’s take one small analogy like if you have to code multiplication table of 2 then in regular programming language what you will do is you will take the loop and with the help of it you can print the multiplication table but in the visual basic language you just have to add the block which has the inbuilt code in it of loop and you just specify the value and you just have to think logically and your work is done without worrying about the semicolon, syntax, functions, etc.
Examples of Visual Programming Language:
There are n numbers of visual programming languages and the few which are in the top list is given below
Scratch: With the help of this language users can create, stories, games, and animations without writing any lines of code in this you just have to create the logic and assemble the blocks.
Blockly: Used to create block-based programming language and editors, and also to generate code from blocks to javascript lua dart python and PHP, etc.
mBlock language: It is used in programming robots.
Bubble language: It is used to create web applications.
Minibloq language: It is used as a graphical programming environment for Arduino.
Examples of Visual Programming Language Interface:
You just have to choose/create and join the blocks and your applications are ready without writing any lines of code and also in all the visual programming languages, one thing is common that it will have the graphic blocks like in the given image below.
Figure: Example of the interface of Scratch visual programming language
Figure: Example of Blockly language used by kodular to create apps
Applications of Visual Programming language:
VPL can be used in multiple domains like multimedia, educational purpose, video games, automation. Let’s see them in brief:
Multimedia:- VPL helps users create multimedia without worrying about the real code or other complex features. It narrows down to specific functions and with the help of those functions, multimedia is created.
Educational Purpose:-Scratch VPL, etc are used to help students in their projects and make them familiar with the coding.
VideoGames:-VPL helps to create the videogames without writing lines of codes Ex- Scratch VPL is used to make videogames.
Advantages of visual programming language:
Easy to convert ideas into reality for example you don’t know how to code so you can start with VPL(Visual Programming Language). and then switch to actual coding.
Visuals are easy to grasp i.e. to develop something in visual programming language requires less efforts.
It includes a variety of built in objects that are required while creating something using VPL.
It is a beginner-friendly also anyone will be able to derive the logic without worrying about writing lines of code.
Adding a user-specific code is also available and simple as it allows to create of blocks as per the convenience of the user.
Disadvantages of visual programming language:
These languages require more memory as they use graphics, as a result, their execution is also slow and a large amount of memory is occupied by them.
They can only work in an operating system like windows, mac, or any other operating system which supports graphics.
As the inbuilt functions are not sufficient so you have to add your custom code as a result it is cumbersome.
Only limited functions are present in these languages.
Adding our custom code as a block requires coding knowledge or else you have to work with limited functions which are provided with the language.
As a computer engineer, it is not a good idea to use VPL as most of the tech giants like FAANG or other tech companies work on textual languages like JAVA, HTML, etc, rather than VPL.
For the long run VPL might not be that much useful as in a regular language you can explore more in it but in VPL at one point you will get bored by using the same it.
Difference between regular programming languages and visual programming languages:
Sr. No
Regular Languages
Visual Programming Language
1.
It is a programming language that only uses text.
It is a programming language that uses graphics or blocks in place of text.
2.
It is not beginner-friendly language
It is a beginner-friendly language
3.
Customization and flexible applications can be created using regular languages
There are not that much customizable as the blocks or graphics that contain the codes are limited and after that, we need to add our custom code as a block.
4.
These are quite fast and efficient
This is not fast and efficient as every block has some code with it so it takes time and also it has graphics with it.
5.
The interface is not good i.e. only text and syntax of language we have to get familiar with it.
The interface is great as the user has to just join the blocks and frame the logic without writing the code
6
requires time to learn as the user has to get familiar with the language syntax then code in it
any school student will be able to grasp the VPL and create the applications
7.
Requires lot of efforts as a beginner to start with the language
Doesn’t require a lot of effort and also the main targeted user of VPL is school level students so that they can love the coding
8.
These are quite fast as compared to VPL as they don’t have graphics.
These are slow as compared to regular languages as it has graphics.
9.
These require less memory as compared to VPL
This requires more memory as it has graphics so to store them more memory is used.
10.
Examples: Javascript, C, C++, Java, Python Etc.
Examples: Mblock, Blockly, Scratch Etc.
Although both Regular and Visual Programming Language is in the trend in their respective categories the only difference that lies between them is that regular languages are written first and with the help of visual programming languages the parts of regular language are taken in according to its functions and the blocks and with the help of block programming is made simpler. | NLP/Natural Language Processing (NLP) Tutorial/AI ML DS - Projects/30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated]/Does Artificial Intelligence Require Coding?/Artificial Intelligence – Boon or Bane/Artificial Intelligence Examples/Agents in Artificial Intelligence/What are Diffusion Models?/ML | Common Loss Functions/Loss Functions in Deep Learning/Kaiming Initialization in Deep Learning/Swift - Initialization/Swift – If Statement/6 Best iOS Project Ideas For Beginners/Swift Programming Language/Introduction to Visual Programming Language | https://www.geeksforgeeks.org/introduction-to-visual-programming-language/?ref=ml_lbp | NLP | Introduction to Visual Programming Language | Artificial Intelligence – Boon or Bane, Natural Language Processing (NLP) Tutorial, ML | Common Loss Functions, 6 Best iOS Project Ideas For Beginners, AI ML DS - Projects, Artificial Intelligence Examples, NLP, Loss Functions in Deep Learning, Swift Programming Language, Agents in Artificial Intelligence, What are Diffusion Models?, Kaiming Initialization in Deep Learning, 30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated], Does Artificial Intelligence Require Coding?, Swift - Initialization, Introduction to Visual Programming Language, Swift – If Statement | GeeksforGeeks | [-0.0188673139, 0.0128671806, -0.0253657531, 0.0207649674, 0.00933809206, 0.0232633166, -0.0112903537, -0.00655646, -0.00976131, -0.0106213968, 0.0378711522, 0.0024386209, -0.0270176679, -0.0557282045, -0.0436869822, 0.0330382809, 0.0166010521, 0.00192325108, -0.0221711434, -0.00486358954, 0.000778601, 0.0102118319, -0.0487382896, -0.0268811453, -0.0125395283, 0.00251712091, 0.00444037188, -0.00830052607, -0.0140890516, 0.0182256624, 0.0208741855, 0.000851128192, -0.00385332829, -0.0106145712, -0.0076383953, -0.00622880785, 0.0143074859, -0.0273453202, -0.0211335775, 0.0248196665, 0.0130514856, -0.0182802714, -0.0041024806, 0.00517417677, -0.0307993218, 0.00995244, -0.0301167127, -0.0335570611, -0.00937904883, -0.0305535812, -0.00179014227, 0.0186352283, 0.074431695, 0.0226216651, 0.01571366, 0.0110036582, -0.0177478362, -0.0139457034, 0.00321508874, 0.00265364279, -0.00828004815, -0.0182666183, 0.00416391529, -0.0522332452, 0.00271507748, 0.0243691448, -0.0309358425, 0.010785223, -0.00170822919, 0.020123316, 0.00633119931, 0.00906504877, 0.0228947084, 0.0157682691, -0.0317276679, 0.0435504578, -0.00028946891, 0.0250244495, -0.0123347463, 0.0256114919, -0.0282054078, 0.016232444, -0.0116453106, -0.0178707056, -0.00627659028, -0.00339427358, 0.0182120092, -0.0361236706, 0.0378165431, 0.00633461215, -0.00651891669, 0.0158911385, 0.0363967158, -0.0232906211, -0.00694896048, -0.00613665534, -0.000479959504, -0.013563442, 0.00386698032, 0.0628000349, 0.0144849643, 0.00662472099, -0.00114337017, -0.0300621036, 0.0596873388, -0.037598107, 0.000932614668, 0.00622198172, 0.0047100028, 0.0068192645, -0.0421852395, -0.0259118397, 0.0163689647, 0.0128535284, 0.0157819223, 0.0484106354, 0.000428763829, -0.068916209, 0.0112016145, 0.0204509683, 0.0178297497, 0.01727001, -0.00629706867, 0.0220073164, -0.0504857674, 0.0257480145, 0.00398985, -0.0133177033, 0.0275501013, 0.0441511534, -0.00228162087, 0.0340485424, 0.00390452379, 0.0407654122, 0.0549363792, 0.00567248138, -0.0184167922, -0.00955652725, 0.0178570542, 0.0277275797, -0.00446426356, -0.0344308019, -0.0428678505, -0.0253794044, -0.000665543834, 0.00333795836, 0.0106213968, 0.0613802075, -0.032628715, 0.0162051395, -0.0354410633, -0.0440146327, 0.0388541073, 0.0197820105, 0.00474754628, 0.00467245933, 0.0114200497, 0.00752917817, -0.0267582759, 0.00337379542, -0.0159320962, -0.0332840197, 0.00402739365, -0.00685680797, -0.0188536625, -0.0252428837, 0.0113517884, 0.00245227315, -0.0661857724, 0.019809315, -0.0581036843, 0.0413388051, 0.000693274837, 0.00692848209, -0.0170515738, 0.0316457562, -0.0076657, -0.00610252516, -0.0240961, -0.0260620136, -0.0302532334, -0.0425948054, 0.0165191405, -0.00353250187, -0.0254067089, 0.0239868835, 0.0422125459, -0.0189628806, -0.013119746, -0.0133723114, -0.00694213435, -0.0101845274, 0.0264442749, 0.00154525624, 0.0307993218, -0.0320007131, -0.0448337644, 0.0337481909, 0.00770665659, 0.0250790566, -0.0142801814, -0.0158501826, -0.00489772, 0.0358506292, 0.0193860978, 0.000424070895, 0.00280552334, -0.00524926372, 0.0338574089, 0.0274408851, -0.0115360934, 0.0748685598, -0.0266627111, 0.0133245289, 0.00825274363, -0.0313181058, -0.000545660616, -0.0139047466, -0.0358506292, -0.0365332365, 0.0229902733, -0.00433456758, 0.0105121797, -0.00849848334, -0.039727848, -0.0379530638, -0.00260415371, 0.0341577567, -0.0127920937, -0.0103483535, -0.00588409044, 0.0196181852, 0.01908575, -0.0441238508, -0.0235090572, -0.00472365459, 0.00871009193, 0.00480215484, -0.0257480145, 0.0288334079, 0.0210653152, -0.00347959972, -0.0316184536, -0.0240551438, -0.00825957, 0.0192086194, 0.0344854109, -0.0123142675, 0.0341031477, -0.00535506802, 0.0118978759, -0.01871714, -0.0103688315, 0.0359871499, -0.0457348078, 0.00415367633, 0.0476188101, -0.00705817761, -0.00180038146, 0.0112903537, -0.0272907112, 0.036041759, -0.0102732666, 0.0117545286, 0.0275774058, -0.020642098, 0.0471819378, -0.0315911472, 0.0285603628, -0.0234134905, 0.0239595789, -0.0507861152, -0.00393865444, -0.0166829657, 0.00439600227, 0.0277412329, -0.0143620949, 0.019604532, 0.0547452495, 0.0285876673, 0.0136590078, -0.0367243662, 0.0214612298, 0.0607249029, 0.0160959214, -0.0353864543, -0.00723565603, -0.0143074859, -0.0349768884, 0.00387039338, -0.0140480949, 0.00618102495, -0.0164645314, 0.00800700486, 0.0502946377, 0.00608887291, -0.018048184, -0.0119661372, -0.00102050055, -0.00792509131, 0.00141385407, -0.0410930663, 0.000887391798, -0.00406493712, -0.0123552242, -0.0115907025, 0.00278333854, 0.0169150531, 0.00669980794, -0.0392363705, 0.000169905659, 0.00598648144, -0.0188673139, -0.0274135806, 0.0179526191, 0.0258026235, 0.0185533147, -0.00695237331, -0.0443695895, -0.0113313105, 0.00510932878, -0.00133108767, -0.0386902839, 0.012730659, 0.0458167195, -0.0182393137, -0.00614006864, -0.0570115112, 0.00757013448, -0.0290245377, -0.017010618, -0.0448610671, -0.0157819223, 0.00675100368, 0.0715374276, -0.0201369673, -0.0169969667, 0.0343761928, -0.0126214419, -0.0244101, -0.00426289346, -0.00498645939, -0.0245875791, -0.023700187, -0.0116453106, -0.0814216137, -0.0133723114, 0.00725613441, 0.00197785976, 0.0259391442, 0.00104865816, 0.0235227086, 0.00907187443, -0.0122801373, 0.0138706164, -0.0186488796, 0.0325468, -0.0288061034, -0.0102869188, 0.0442057624, 0.0465812422, 0.0196864456, 0.00257855584, 0.0184850544, -0.0172836613, -0.0514414199, -0.017010618, -0.0206967071, 0.0125463549, -0.00725613441, 0.00852578692, -0.0203007944, -0.0132835722, -0.0289699286, -0.0145668779, 0.0453525484, -0.0152085302, -0.0187444445, -0.0121572679, 0.00852578692, -0.0137750506, 0.0875377879, -0.00935174432, 0.021570446, -0.00892852712, 0.00432774145, -0.000530301942, -0.022198448, 0.040246632, 0.00795922149, 0.000869473326, 0.0270995796, -0.00737217814, 0.0164918359, 0.0286422763, 0.0210380107, -0.00838926528, -0.00883296132, 0.0159320962, -0.0189765319, 0.0297071468, -0.000547793752, -0.0197410546, 0.0083483085, -0.0673871711, 0.0131880073, -0.020846881, -0.0122323548, 0.00170652266, -0.0197137501, -0.00751552591, -0.0549090728, -0.0214612298, 0.0054369811, 0.00810257, 0.000381834456, 0.0265125372, 0.0585405529, 0.00470317667, 0.00242326222, 0.0756876916, 0.0301440172, -0.00372021948, 0.00641993852, -0.00147614209, 0.0147853121, -0.00390111096, -0.00181744667, -0.0185260102, 0.0163553134, 0.00458713295, 0.0142938336, -0.0161368791, -0.0181300975, -0.00296593644, -0.023386186, 0.0279050581, 0.034594629, -0.00954287499, 0.00945413578, -0.0214612298, 0.00714009069, 0.0199594889, 0.0144030517, -0.0582129024, 0.028314624, -0.024478361, 0.0199048799, -0.00148808782, -0.034021236, -0.000701807439, -0.023809405, -0.0533254221, -0.0107988752, 0.0432228073, -0.0190174896, 0.0173109658, -0.0119115282, -0.0101845274, -0.0480010696, -0.0131265726, 0.0120480498, 0.0241370574, -0.00572709, 0.0179116614, 0.00741313444, -0.0253111441, 0.00248128409, -0.00566906855, -0.00919474382, -0.0270449705, -0.0418848917, 0.0081435265, 0.0116794417, 0.00063184, -0.00761109125, 0.0445334166, -0.0181847066, 0.018102793, -0.0387448892, 0.0348403677, 0.0299255811, 0.0149354869, -0.0482741147, 0.0185806192, 0.00708548212, 0.0513322, 0.000259818073, 0.0395640209, -0.000726978644, -0.0221711434, 0.029406799, -0.0183894876, -0.00392841501, 0.00767252594, -0.0299255811, -0.0345127136, 0.0011612887, 0.0175020974, 0.0464993306, -0.0217752289, 0.0225943606, -0.0395094119, 0.00514345942, -0.0121504413, 0.00359734986, -0.033447843, -0.00469293725, 0.0130719636, -0.0163826179, -0.00941317901, -0.0464174151, -0.0217888821, 0.0229629688, 0.00918791816, -0.00497963326, 0.0203007944, -0.00545745948, 0.00760426512, -0.0102391364, -0.00303761032, 0.0344581045, 0.0245739259, 0.0220892299, -0.00649161218, -0.0066076559, 0.0264715794, -0.024478361, 0.0190720968, -0.0169833135, -0.0246831439, -0.0088670915, -0.0170925315, -0.0175430533, -0.00836196076, 0.00608887291, 0.0195089672, 0.0324375816, -0.00830735266, 0.0216114037, -0.0356868021, 0.0261029713, -0.0120343976, -0.000746177044, 0.00526291598, -0.00351543678, 0.00714691682, -0.012655572, -0.0141027039, 0.00450522, -0.0286149718, 0.0449702851, 0.00639263401, 0.0125736594, -0.00229356647, 0.0205465332, -0.0295706242, -0.0061946772, -0.0240961, -0.021160882, 0.00350861065, 0.00467245933, 0.039099846, 0.0206147935, -0.00135753874, -0.0142528778, 0.00778174354, 0.000985516817, -0.00730391685, -0.00244374038, 0.0165600963, -0.00989100523, -0.0122460071, -0.00928348303, 0.0133859636, 0.0261166226, 0.0219527073, -0.0408746302, 0.00273214281, 0.00434480654, -0.00479532871, 0.0121231368, 0.00484652445, 0.0171880964, 0.0251200143, 0.0014044682, 0.00241984916, 0.0266763624, -0.0386083685, -0.0130992681, -0.00821861345, 0.0264033191, 0.0271268841, 0.00337550184, 0.000459054601, 0.000118070035, 0.0277685374, -0.0171198361, 0.011877398, -0.0307993218, 0.0186898373, 0.0299801901, 0.0406015888, 0.0283965375, -0.0112220934, 0.0110787451, -0.0103005711, -0.0365605429, 0.058758989, -0.0291064512, -0.0349222794, -0.0360690616, 0.00470317667, 0.0292156674, 0.0164781827, -0.0417210683, 0.0123620499, 0.0185260102, -0.0125668328, -0.00132852793, -0.0375161953, -0.0308539309, 0.00119712565, -0.0249425359, 0.0120480498, 0.00720835198, -0.00555985095, -0.0144440075, 0.00358028454, -0.0327652358, 0.00780222192, -0.0106145712, -0.0256934054, -0.0139730079, -0.0069728517, 0.0119593106, -0.0071673952, 0.0282327104, 0.0103005711, -0.0365878455, -0.00514687225, 0.00776809128, 0.0129217897, 0.110582672, -0.0104575707, 0.0397824571, -0.0128193982, 0.0168877486, 0.00910600461, 0.0229356643, -0.00694554718, 0.000539687811, 0.011358615, 0.0154406177, -0.00817083102, -0.00668274285, 0.0400828049, -0.0251473188, -0.017324619, 0.0351134092, 0.0122187026, 0.0117272241, 0.0121913981, -0.0139388768, -0.0249288827, -0.0209151413, -0.00202393602, 0.00217069685, 0.0255978405, 0.0171880964, -0.0429497622, -0.0130651379, 0.00986370072, 0.0187580977, 0.0194407068, -0.0288334079, 0.0304716695, 0.0329017565, 0.0213656649, 0.0143620949, -0.000408712192, -0.0137204425, 0.0306901038, 0.00176113145, 0.00268947985, 0.00411954569, 0.00958383176, -0.0361236706, -0.0213793162, 0.0251882747, -0.00652574282, 0.0303624514, 0.0347857587, 0.0158228781, 0.0572845526, -0.00821861345, 0.018307576, -0.0296252333, 0.00193690322, -0.0162597485, 0.00629706867, -0.00808891747, -0.0450248942, 0.00638580788, -0.010321049, 0.019604532, -0.00334307784, -0.0148399211, -0.0351953246, -0.000848568394, 0.0209151413, 0.0203554034, -0.00302907778, 0.011228919, 0.00220482727, -0.0212427936, 0.0162734, -0.00453593722, 0.00770665659, 0.0372158475, 0.0440146327, 0.00987052731, 0.0145941824, 0.019031141, -0.0319188, -0.00333283888, 0.00263828412, 0.0104917018, 0.00845752656, -0.0106760059, 0.0205601845, -0.00408882834, 0.00909917895, -0.0163007043, 0.000628426962, -0.0103688315, 0.0220209695, 0.000438576331, -0.0039488934, -0.0245602746, 0.0413388051, 0.0264169704, -0.022198448, 0.00190106628, -0.00897631, -0.0141846165, 0.0246012304, 0.0102050053, 0.00188058801, 0.00330041489, 0.0183485318, -0.0431682, 0.00976813585, -0.0418302827, 0.0125395283, 0.00267412094, 0.0156590529, -0.000764522178, 0.00806844, 0.00754965656, 0.025515927, 0.0266354065, -0.00624928623, 0.0363421068, -0.00687387353, -0.0216114037, -0.0112220934, -0.00996609218, 0.00918109156, 0.00377824111, 0.0473184623, -0.00130293006, 0.0607249029, -0.00701039517, -0.011304006, 0.0196591411, -0.0168740954, -0.0315365382, -0.003993263, 0.00864865724, -0.0409292392, 0.0296252333, 0.0140890516, 0.00429019798, -0.00563835073, -0.017010618, 0.0265671443, -0.011488311, 0.0259118397, -0.00381919765, 0.0198366195, 0.0221028812, 0.00187376188, 0.0337754972, 0.00837561302, -0.0187580977, -0.0172563568, -0.0100684837, -0.0307993218, -0.0390452407, 0.00355980638, -0.00383967604, 0.000819130859, -0.019754706, 0.0135702686, -0.0104575707, -0.0109012667, -0.0152221825, -0.00510932878, -0.00218946859, 0.0188946184, -0.0249288827, -0.0364240184, 0.0185806192, -0.00232940353, -0.0140071381, 0.0239322744, 0.0173519235, 0.0283419285, 0.0255022757, 0.00790461339, 0.00305808871, 0.0180072282, 0.014416704, -0.0126214419, -0.00437211106, 0.0323829763, 0.0269494057, 0.00628341641, 0.027331667, 0.028260015, 0.00486700283, -0.0122801373, 0.00952239614, -0.0342669748, 0.00675441697, 0.0233179256, -0.0148672257, 0.0488202, -0.00105292455, -0.04543446, 0.00639604684, 0.000474839937, -0.00586702488, 0.00438576331, 0.0205192287, -0.00209219684, 0.0261029713, -0.00856674369, -0.0153860087, 0.0163962692, -0.0052219592, 0.0205738377, 0.0386629775, -0.015249487, 0.0257343613, 0.00851896126, -0.0258845352, 0.0039488934, -0.00622539455, -0.00323386048, -0.00751552591, 0.0115565713, 0.0253657531, 0.00821178686, -0.00379189337, -0.0194134023, 0.0242872313, -0.0237684473, -0.0124985725, -0.00934491865, 0.012785268, -0.0078227, 0.028314624, 0.033966627, 0.00777491741, 0.0146487905, 6.43145759e-05, 0.0209697504, 0.00350861065, 0.0122460071, 0.00536530744, -0.0114063974, -0.0151539212, -0.0168877486, 0.0169833135, -0.0234134905, -0.0544722043, 0.0104848752, -0.0156317484, 0.00886026584, -0.0122323548, -0.00569637259, -0.00652574282, 0.0321918428, 0.00338403438, 0.00320143648, 0.0104370927, 0.00180038146, 0.0214475766, 0.0150583563, 0.0142665301, 0.000753429777, -0.0169969667, 0.0271405373, 0.0295706242, 0.0130310068, -0.00142665301, -0.000795666187, 0.00890804827, -0.00462467643, -0.00561104668, -0.0230585337, -0.0398916751, 0.0240824483, 0.0241097528, -0.00303761032, -0.0243281871, 0.0079933526, -0.00316901272, 0.0284511466, 0.0241234042, -0.0129490942, 0.0042560678, -0.0206284467, 0.0110036582, -0.0258708838, 0.000796092849, -0.001338767, -0.0247514043, 0.0179253146, 0.0188400112, 0.0389633253, -0.0231131427, 0.0264169704, -0.00382261071, -0.0258026235, 0.0366151519, -0.0254476666, -0.0229083598, -0.00672711246, 0.0110446149, 0.00263657747, -0.0378438458, -0.0383353271, -0.000557179679, -0.00944730919, -0.00915378798, 0.0252701882, 0.00168775092, 0.006559873, 0.0063482644, -0.00221506646, -0.0359871499, -0.0137204425, -0.0210653152, -0.0285330601, -0.0247104485, -0.034594629, 0.0300894082, 0.0390452407, -0.0122596594, 0.0273453202, 0.0113927452, 0.0254886225, 0.00877835229, -0.00803430844, -0.0139525291, 0.0156727042, 0.00746774347, 0.030908538, -0.00599330757, 0.0242053177, 0.00578169897, 0.00981591828, -0.0339939333, -0.0377073251, -0.0342669748, -0.00187034882, -0.0122187026, 0.0228674039, -0.0248879269, -0.0117750065, 0.0166829657, 0.0103620058, -0.0247104485, 0.0404104553, 0.0125873117, -0.00633461215, 0.0447791554, -0.00573391607, 0.00939270109, -7.3273819e-05, -6.25013927e-05, -0.0109627014, -0.00875787437, -0.00268436014, 0.025570536, -0.0296252333, -0.0208605342, -0.0263760146, 0.0025597841, -0.0217206199, 0.0077953958, 0.036150977, 0.0357414111, 0.0187307931, 0.0368608907, -0.0348130614, 0.0366970636, 0.00576804671, -0.0445880257, -0.00944048353, 0.0105394842, 0.0339120179, 0.00567930751, -0.020177925, 0.00228844699, 0.00905822217, -0.000897630933, 0.0129286163, 0.00569637259, -0.00215363153, 0.00482263323, 0.0217615776, 0.016751226, -0.00830735266, -0.0196591411, 0.043304719, 0.010505354, -0.00106231042, 0.0243827961, -3.17306549e-05, 0.00328676263, 0.0100275269, 0.0137545727, -0.00243008835, -0.0534346364, -0.0166283567, 0.00444037188, -0.00134047354, -0.00189082709, -0.00392158935, 0.027277058, 0.0142392255, -0.00111862563, 0.000998315751, 0.00411271956, -0.00910600461, 0.0013379138, 0.0351407155, 0.0271678418, -0.00121333764, -0.0227854904, 0.000404019258, -0.0312908, -0.00465880707, 0.00675783, 0.0067168735, 0.0268538408, -0.00973400567, -0.0166283567, 0.00491819857, -0.023754796, -0.0111947889, 0.019754706, 0.0109080933, 0.0172973145, 0.0181983579, 0.0143757472, 0.00327140396, -0.0165054873, -0.00612300355, 0.000832783058, -0.0108330064, 0.00122357672, -0.011822789, 0.0069728517, -0.0178024452, -0.00566224242, -0.0208195765, -0.0176795758, 0.0115975281, 0.00609569903, -0.0430316776, -0.038226109, -0.00351884984, -0.02453297, 0.00847800449, -0.0108330064, -0.0250517521, 0.0338574089, -0.00572709, -6.03149128e-05, 0.00377141521, -0.000391220325, -0.00922204833, 0.0771621317, -0.0060479166, 0.00641652523, -0.0139798336, -0.000113803733, -0.0149218347, -0.019140359, -0.0106213968, 0.0248333178, -0.0165737476, 0.0254886225, 0.00637898175, -0.0118637457, 0.0153860087, -0.0145395733, 0.00587385101, 0.0110446149, -0.0060445033, 0.00449156761, -0.00797287375, -0.00882613566, 0.0210653152, 0.0255432315, -0.0265944488, 0.0192632284, 0.00874422211, -0.0231677517, -0.0300348, -0.0335024521, 0.00473730685, 0.010191353, -0.0112903537, 0.0203690547, 0.00354274106, -0.0030751538, 0.00134132686, -0.00438917615, 0.00438235, -0.035522975, -0.0235636644, -0.00886026584, -0.0141300075, -0.0100889625, 0.00688069966, 0.00527656823, 0.00548817683, -0.0227035768, -0.0076861782, -0.0121231368, 0.0160140097, 0.0230175778, 0.00625269907, -0.0120617021, -0.00539261149, 0.00520830741, 0.00304273, 0.011433702, -0.00346253463, -0.00665885163, -0.0182666183, -0.0312361903, 0.0241370574, 0.00647796, -0.0412568934, 0.0155225303, 0.00735169975, -0.0120275719, -0.00121248432, 0.00425948063, 0.015249487, -0.0105940932, 0.0220346209, 0.00161778345, 0.0110582672, 0.0245193187, -0.00200857711, -0.00948144, 2.83976042e-05, 0.0125190504, -0.0168604441, 0.00855991803, 0.0249561872, -0.0131333983, 0.00127477245, -0.0053311768, -0.0166556612, 0.0145259211, 0.0161095746, -0.0275637545, 0.00680902554, -0.00496256817, 0.00576804671, -0.0159320962, -0.0138910944, 0.00749504752, 0.00758378673, 0.0246421881, 0.0122801373, 0.0397824571, -0.0163007043, 0.00258026225, 0.0113244848, -0.0205055773, -0.015973052, 0.0190584455, -0.0288061034, 0.0127579635, -0.00534141622, -0.00607180782, 0.0141846165, 0.0238913167, 0.00209390325, -0.00631413376, 0.00450522, -0.00563152507, -0.024478361, 0.0188400112, -0.0160413124, 0.0178570542, 0.00987735298, -0.0138160074, 0.0326833241, 0.010839832, -0.013563442, -0.00856674369, 0.0120275719, 0.0228127949, 0.0446972437, -0.0010947343, 0.00475437241, -0.00600354699, -0.0112630501, 0.0142392255, 0.00870326534, -0.0389360227, 0.00555643765, 0.00024851237, -0.0176932272, -0.0044506113, 0.0106623536, 0.0213520117, 0.0144713121, -0.00939952675, 5.7328496e-05, -0.0153860087, 0.0594689026, -0.0252428837, -8.04198789e-05, 0.00665543834, -0.0239049699, 0.0144576598, 0.0136726601, 0.011433702, -0.0128193982, 0.0222530551, -0.0218161866, 0.0111333542, 0.00639263401, 0.0122391805, -0.0288061034, -0.00172956078, 0.01727001, 0.0111265276, 0.00385332829, -0.0230994914, -0.000709486776, 0.00929713529, 0.00646089483, -0.0212974027, 0.0226489697, 0.00722883, -0.0199458376, -0.0183758363, -0.0212564468, -0.00464174151, -0.00172017491, 0.0115156155, -0.0128125725, 0.00993878767, -0.000323172746, -0.0152085302, -0.000598562823, 0.00308027351, 0.0313454084, 0.00534482906, 0.00973400567, -0.00596259, -0.00586702488, -0.00588750327, 0.0231950562, 0.0204782728, 0.000890804862, 0.0129559198, -0.0164508782, -0.00695919944, -0.00914696138, 3.99432975e-05, 0.00137033768, -0.00303249084, -0.00855991803, -0.0164508782, -0.00427654572, -0.0128193982, -0.00142153341, -0.0178434011, -0.00940635335, -0.0224987958, 0.0109217456, -0.0071673952, -0.00846435223, -0.00626293803, -0.00754283043, -0.0254476666, -0.00924935285, 0.0342396721, -0.0225670561, 0.00620832946, -0.00430385023, 0.0261166226, 0.0184850544, -0.0183758363, -0.0163962692, -0.0232223608, 0.00762474351, 0.0180891398, -0.0367243662, -0.00795922149, 0.000143987854, -0.00704452582, 0.0213656649, 0.00673052529, 0.0206557512, 0.0344581045, -0.0269357543, 0.0075769606, -0.0174611397, 0.00657352526, -0.0405196734, -0.0279869717, 0.0426767208, 0.0158365313, 0.0256387964, -0.0181710534, -0.00432091532, 0.0219254028, -3.68502224e-05, 0.00998657104, 0.00823909137, -0.0255568828, -0.00227308832, -0.00496939383, -0.00256490358, -0.00196420751, -0.0160822701, 0.0210516639, 0.00776126515, 0.00804113504, -0.00281064282, 0.000633546559, -0.0191540103, 0.00136863114, 0.00531069841, 0.0134132681, 0.00934491865, -0.00743361283, -0.021160882, -0.0187990535, 0.0231677517, -0.0114473542, -0.000143347905, -0.00931761414, 0.0252974927, 0.00387380645, 0.0137067903, 0.0271678418, 0.00157256064, 0.014211921, 0.0116521372, -0.0142665301, -0.00263487105, -0.0197000969, 0.0315092355, -0.00861452613, -0.00385332829, 0.00970670115, 0.0133245289, -0.00547452457, -0.000798226, 0.00985004846, -0.0160003565, -0.00325263222, 0.00769983046, 0.00703769969, -0.00365537149, -0.0193178374, 0.0374888889, -0.00668615568, 0.0208195765, 0.00508202473, 0.00219458807, 0.02935219, -0.00206489256, 0.00421169819, -0.0103005711, 0.00149662036, -0.00364513253, 0.0304716695, -0.00729709119, 0.0223759245, -0.0132357897, 0.011433702, -0.0207103584, 0.0191267058, -0.00737900427, 0.00623222068, -0.0143893994, 0.0211199243, 0.0164645314, -0.0240687951, 0.00149491383, -0.00206318591, 0.0152631393, 0.0139388768, -0.0172973145, -0.00169372372, 0.00587385101, -0.0140890516, 0.00614006864, -0.0130583113, -0.00530728558, -0.0184714012, -0.00489430688, -0.0197000969, 0.0125122247, 0.0201096628, -0.0116726151, 0.0312361903, 0.00262975134, -0.010061658, -0.00139593554, -0.031891495, 0.030389756, -0.00767252594, 0.0234817527, 0.00714009069, -0.0019744467, 0.0130173555, 0.00985687505, -0.00112715818, 0.00339939329, -0.0115633979, 0.00770665659, -0.000457348069, 0.0183758363, 0.0204100106, 0.016751226, -0.0147580085, -0.0167648792, -0.0094746137, 0.0120617021, 0.0161641836, -0.00329017569, -0.00163314224, -0.0309358425, 0.00182939228, -0.0365878455, -0.0242326222, -0.00154440303, 0.0160822701, 0.00607863395, -0.0197956637, -0.0154952258, 0.0298163649, 0.0216523595, -0.00345741492, -0.0118364412, 0.0219254028, 0.0171198361, -0.0254067089, -0.0060479166, -0.0137272682, -0.0057851118, -0.00672711246, -0.0303624514, -0.00679537328, 0.0215021856, -0.00977496151, -0.0208059251, -0.0104848752, 0.0193178374, -0.00627659028, 0.0148535734, 0.00845752656, 0.0111743109, -0.0231131427, -0.0176113136, -0.00160839758, -0.0179389659, 0.00394206727, 0.00237377314, -0.00647796, -0.0165327918, -0.00255466439, -0.000440282864, 0.0265671443, -0.0065632863, -0.0288061034, -0.0321099311, -0.023386186, -0.00326287141, 0.00705817761, -0.0189901851, -0.00637556892, -0.0145805301, -0.0277275797, 0.00825274363, -0.00969304889, -0.000852408062, 0.0134473983, -0.0152631393, 0.018102793, -0.00160498463, -0.0389906317, 0.0233725347, -0.00993878767, -0.00980226602, 0.0205192287, -0.000580644351, 0.0121845724, -0.0145259211, 0.0026109796, 0.00504106795, -0.00596259, -0.00493185036, -0.0305535812, 0.015508878, 0.0312908, -0.00455300231, -0.00465880707, -0.00868961308, -0.0202734899, -0.00546087278, -0.00400691526, -0.00262292544, 0.00572026381, -0.00577828567, 0.00752235204, 0.000971864676, -0.0313454084, 0.00549841626, -0.000148254156, 0.00190106628, -0.0022014142, -0.0163280088, 8.14597934e-06, -0.0142801814, 0.00313829514, -0.0127716158, 0.0193724446, -0.0236182734, 0.00561445951, -0.00980226602, -0.000195290195, -0.00588750327, -0.000957359211, -0.00840974413, 0.012655572, -0.00832100492, -0.00504448125, -0.00211096858, -0.0076861782, -0.00312634953, 0.00564859, -0.0100684837, 0.0179526191, -0.00825274363, -0.00417415425, 0.0105190054, -0.00975448359, 0.0114200497, -0.00100258202, 0.025256535, -0.00643700361, 0.00795239583, 0.0200140979, 0.0825683922, 0.00195908803, 0.0237957519, 0.00187376188, 0.000456068199, 0.0127374856, -0.0147853121, -0.00892852712, -0.0235227086, 0.0185806192, -0.0105190054, -0.00142068008, -0.00155208237, 0.00172358786, 0.0146624427, -0.0178570542, -0.00313488208, -0.0221711434, 0.0263077542, 0.0294341035, -0.0202871412, -0.0217206199, -0.0106896581, 0.0141709642, 0.00600696, 0.00939952675, -0.0174747929, -0.0132289641, 0.00919474382, 0.006105938, -0.00792509131, -0.00576804671, 0.00641311239, 0.0383353271, 0.0168740954, 0.0279460158, -0.00126794633, 0.00775443902, 0.011358615, -9.39654055e-05, 0.00703087356, 0.00311269728, 0.0127033545, -0.0226899255, -2.32913681e-05, 0.00336526264, 0.00951557048, 0.00067322317, 0.0031297626, -0.0289699286, -0.0069694384, 0.00306491484, -0.00825274363, -0.00425948063, -0.000291175442, -0.00185840321, 0.0220892299, -0.0331474952, -0.014990095, -0.00307003432, 0.0118910503, 0.0161505304, 0.00995926652, -0.000319333049, -0.0179116614, 0.0108466586, -0.0165191405, -0.0228401, -0.00483287219, 0.0104166148, 0.0124303112, -0.00164423464, -0.00744726509, -0.0291610602, 0.0176659226, 0.00961113535, -0.0173382703, 0.0086623095, -0.00792509131, -0.00354274106, 0.01727001, -0.0146487905, -0.00822543912, -0.00997974444, -0.0110377884, -0.0090172654, 0.00856674369, 0.0124780936, 0.0150310518, 0.0110241361, 0.00422876328, -0.0175567046, -0.0116316583, -0.0111333542, -0.000517503, -0.0035939368, -0.0163143575, -0.0251063611, 0.00213827286, 0.0227581859, 0.0220892299, 0.00467245933, 0.00875787437, -0.0100684837, 0.02271723, -0.00416391529, -0.00606156839, -0.0256661, -0.0181437489, -0.0232633166, -0.000306320813, -0.0236728825, 0.022662621, -0.000338958082, -0.00466222, -0.00758378673, -0.0151266167, -0.00279357773, 0.018307576, -0.00905139651, -0.0202598367, -0.0154815735, -0.00856674369, -0.0213383604, 0.00317071914, -0.0208059251, -0.00178331626, 0.0012884246, 0.00791143905, 0.00837561302, 0.00854626577, -0.0099933967, 0.00410930673, -0.0117750065, 0.00786365662, -0.00363148027, -0.00697626453, 0.00529704662, 0.0133518334, -0.00705135195, 0.0130651379, 0.0446699373, -0.0163007043, -0.0129695721, 0.0106077446, 0.0210516639, 0.000287122442, -0.00737217814, 0.00882613566, -0.00438576331, -0.00281917537, -0.0303078424, -7.76467787e-05, -0.0211062729, 0.00714691682, 0.00256831665, 0.00586361205, -0.00925617944, -0.0260893181, 0.000722285709, -0.00136436487, -0.0168331396, -0.010894441, 0.0167239215, -0.00409565447, 0.00692848209, 0.0138569642, -0.0013933758, 0.00355298026, 0.0105872666, -0.0270040147, -0.0168467928, 0.0295160171, -0.0126623986, -0.0174065307, -0.0254886225, 0.0105736144, 0.0169014, 4.33030145e-05, 0.00977496151, 0.00847800449, -0.0222530551, -0.00144713128, -0.023754796, -0.0110582672, 0.00973400567, -0.0239459258, -0.0166147053, -0.0074267867, 0.000373088522, 0.00576122059, 0.0207240116, -0.0202325322, -0.0181983579, 0.00576122059, -0.00806844, 0.0195772275, -0.00985687505, -0.0281781033, 0.00372363254, -0.00380554562, -0.00714691682, 0.00699674292, 0.0134200947, -0.00119200605, -0.00505472, 0.00954970066, -0.000410845329, 0.019031141, 0.0141300075, -0.0420214161, -0.0178707056, 0.00907870103, -0.00879883114, 0.00503082899, 0.0330109745, 0.00343864318, 0.00802065618, -0.00853261352, 0.00667932956, 0.00837561302, 0.00416732859, 0.0276047103, 0.00460761134, 0.00607863395, -0.0120480498, 0.00853261352, -0.0185260102, 0.0128808329, -0.0142938336, -0.00392500218, 0.0250381, 0.00805478729, 0.00173553359, -0.011413224, -0.0019744467, 0.0128876595, 0.00759743899, 0.0172427054, -0.00385332829, -0.00747456914, 0.00877152663, -0.020587489, -0.0101777017, -0.0129695721, -0.00734487362, 0.0200823583, 0.00363489334, -0.0115907025, -2.5264535e-05, -0.000179718176, -0.0143074859, 0.00941317901, 0.0248742737, -0.0186898373, 0.00795922149, 0.0078227, -0.0121299634, 0.00622539455, 0.00389428483, 0.00713326503, 0.0120617021, 0.000390153757, -0.0175840091, 0.00930396188, -0.00331406714, -0.0220482722, -0.00763156964, -0.0178434011, 0.00141982688, 0.0116043538, 0.00735852588, 0.0122255282, -0.000581070955, -0.0102937445, 0.020123316, 0.0289153196, -0.00624928623, -0.0108330064, 0.00890122261, -0.00219629472, -0.00680219941, 0.00632437319, -0.0141982688, -0.00402398035, 0.00733804749, -0.0191130545, 0.00804113504, -0.00675100368, 0.011822789, 0.0306081902, -0.0124303112, -0.00369974109, -0.00273555587, -0.00785683, 0.0124576157, -0.016232444, 0.00375093683, 0.0161778349, 0.00594211183, -0.00259562093, -0.00855309144, 0.0221711434, -0.000216515065, -0.000883125467, 0.000653171563, 0.00746091735, 0.023440795, -0.00114507671, -0.00455300231, 0.00167324545, -0.00143006595, 0.00670322124, 0.00567589421, -0.0142801814, -0.0125804851, -0.0290518422, 0.00270313188, -0.0259391442, 0.00398302404, -0.0198502727, -0.0152358348, 0.0111265276, 0.00749504752, -0.00828687381, -0.0194543581, 0.0135566164, 0.0174747929, -0.0129559198, -0.00922204833, 0.0061980905, 0.0156317484, 0.00345912157, -0.0030017735, -0.00601719879, 0.033966627, 0.00623222068, 0.00927665737, 0.00722883, 0.0231131427, -0.0132426163, 0.0211062729, 0.0162734, 0.00183963147, 0.00280893641, -0.0100821359, -0.00288061029, 0.00370998029, 0.0106896581, -0.0029693495, -0.0168740954, 0.00809574407, -0.00372704561, 0.00374069763, -0.00827322155, 0.020177925, 0.0100138756, 0.0128740072, -0.00347618666, -0.00678854715, 0.0120753543, 0.00680219941, -0.010710136, 0.011618006, 0.0170788784, 0.00439258944, 0.0115224412, -0.0069694384, -0.0263623632, 0.0196864456, 0.0190447923, -0.0191676635, 0.00408882834, 0.0011664083, -0.00120053871, 0.017734183, -0.0163280088, 0.00420487206, 0.0162187908, 0.00445743743, 0.00867596176, 0.0181164443, -0.00592504675, -0.00597965531, -0.0122596594, 0.00605474226, -0.0238913167, -0.000292668643, -0.00165191398, 0.0132221375, 0.00529704662, -0.0209697504, -0.00289084949, -0.00993878767, -0.0105667887, 0.00474754628, -0.00974765792, 0.00187546841, -0.0013490062, 0.0201642718, -0.00955652725, 0.0147853121, -0.00150685955, 0.00603767717, -0.00763156964, 0.0212564468, -0.00358028454, 0.0178570542, -0.0109831803, 0.000814864587, 0.00181062054, 0.0160003565, -0.00020414278, -0.0357141085, 0.00870326534, -0.0051810029, -0.00329700182, 0.0116248326, 0.0187990535, -0.0053311768, -0.0133927902, 0.00430726307, -0.0350588, 0.00386698032, -0.013194833, 0.00262975134, 0.00248811, 0.0348676704, 0.0246148836, -0.00376800215, -0.0124439634, -0.0444242, -0.0180345308, -0.0156863574, 0.0253657531, -0.00808209181, 0.0168331396, 0.00685680797, 0.00209561, 0.00959065743, 0.00408200221, -0.0033345453, 0.00933809206, 0.0229493175, 0.000149534055, -0.0047100028, 0.00631754706, 0.00587043818, -0.011488311, -0.00341304531, 0.0117613543, -0.0068670474, -0.00672028633, -0.00565541629, -0.00889439601, 0.00991148409, -0.020177925, 0.000619894359, 0.0288607124, 0.00877835229, -0.0250654053, 0.0011996855, -0.00832100492, 0.000109857399, 0.0164508782, 0.00618443824, -0.00488748075, 0.0378984548, 0.00535848131, 0.00386015442, 0.00380895869, -0.0253247973, 0.0122187026, 0.00509226369, 0.0109900059, 0.00245056651, 0.0107374405, 0.00601719879, 0.012211876, 0.0244101, -0.00748139527, -0.0171334874, 0.00772713451, -0.0233725347, -0.0103005711, 0.0010896147, -0.0109490491, -0.00347959972, -0.0111333542, 0.0141300075, 0.00760426512, -0.00648478605, -0.00484652445, 0.0105872666, -0.0116384849, -0.0184987057, -0.00129269098, -0.00185840321, 0.00571685098, -9.71118061e-05, -0.0267719273, 0.000824250455, -0.000351330353, -0.0141300075, -0.00380895869, -0.0105394842, 0.00359052373, 0.00166812597, 0.0163553134, -0.0297890604, -0.00734487362, -0.0124849202, -0.0118023111, 0.0162187908, 0.00767935207, 0.0233998392, -0.000932614668, 0.00223895768, 0.0202598367, -0.00594211183, -0.00408200221, -0.0074882214, 0.0110309627, -0.00718787359, -0.00159389223, -0.000741910713, -0.00497280713, 0.0282054078, -0.00181232707, 0.00332259969, -0.01871714, 0.0148535734, 0.0332840197, 0.0138774421, 0.0148399211, 0.0150583563, 0.00248469692, 0.0109353969, 0.0119047025, 0.00252736, -0.0139798336, 0.00280381669, -0.0134132681, 0.012341572, -0.00247787102, -0.0259391442, 0.00754283043, -0.0109490491, -0.00849165674, -0.00986370072, 0.00922887493, 0.020846881, 0.0219663605, -0.0267173182, 0.0136180511, -0.00909917895, -0.00424924167, -0.0258435793, -0.00451887213, -0.0181300975, 0.00778856967, -0.0148535734, -0.015249487, 0.0288061034, -0.0161368791, -0.00549841626, 0.0151812257, -0.00943365693, -0.0288061034, 0.00347448024, 0.0140207903, -0.0233042743, 0.0170379225, 0.000715033, -0.0306354947, -0.0201506205, -0.00939952675, -0.0134200947, -0.00892852712, 0.00381919765, -0.00743361283, -0.00315024098, -0.0128262248, -0.030908538, -0.00334478449, -0.00724248216, 0.00805478729, -0.0160822701, 0.00423900224, 0.00868961308, -0.00691824313, -0.000591736753, -0.0131129203, 0.00145310408, 0.0327106267, 0.00573732937, 0.00794556923, 0.00129610393, -0.0183348805, 0.00723565603, -0.0118637457, 0.0146897472, -0.00800017826, -0.000801212387, -0.00690117758, 0.0110650929, -0.00155720196, -0.00576804671, -0.00560763339, -0.0213929676, -0.00171932159, -0.00769983046, 0.00466222, 0.0128125725, -0.0184304453, -0.0338028, 0.00134559313, -0.00509226369, 0.0104575707, 0.00801383052, -0.00523219863, 0.00906504877, 0.0137750506, 0.0185123589, 0.000279443077, 0.000716312905, 0.0015981585, 0.00617078599, -0.00588067714, 0.00035367682, 0.0109900059, 0.00573732937, -0.0140207903, -0.00782952644, 0.0240824483, -0.00237547955, 0.00256831665, 0.0231814049, -0.0051810029, -0.00858722255, 0.00855991803, -0.0109422235, -0.027222449, -0.0339939333, 0.00557691604, 0.0198229682, -0.00735169975, -0.021570446, 0.0412022844, 0.0162187908, -0.0214748811, -1.76918402e-05, -0.00948826596, 0.00859404821, 0.0270859282, -0.000521342678, 0.000888245064, -0.00198639231, 0.00520489411, 0.0071264389, -0.0213383604, -0.0111060496, 0.00531752454, 0.0157000087, -0.00467928499, -0.00196762057, 0.0218707938, 0.00894900504, -0.0172563568, -0.0315092355, -0.00432432862, -0.0110514406, -0.0112562235, 0.00542674214, -0.019809315, -0.0156863574, 0.00767935207, -0.0121094845, 0.0093312664, -0.00606156839, -0.0152904429, 0.0110173104, 0.0080479607, -0.00415367633, -1.442545e-05, -0.00514345942, 0.00714009069, 0.00746091735, -0.0328471474, -0.0194270536, -0.00675100368, -0.00113825058, -0.00858039595, -0.0136999637, 0.00126538659, 0.0109490491, 0.0109831803, 0.00328676263, 0.0224714912, 0.0165054873, -0.0254749712, 0.00258367532, -0.00375435, -0.00787048228, -0.0186761841, 0.0138160074, -0.0160686169, -0.0395913273, -0.0189355761, -0.0108739622, -0.00923570059, -0.0220346209, -0.00123893551, 0.0011664083, -0.0113313105, 0.00401374139, 0.0218161866, 0.0261848848, 0.00851896126, 0.010894441, -0.0131607028, 0.00986370072, 0.0274408851, -0.00322362129, -0.0110446149, -0.0151129644, 0.00711961277, 0.00048209267, 0.01727001, 0.007986526, 0.00617078599, -0.00546769844, 0.0185669661, 0.017010618, 0.00067066343, -0.0259118397, -0.0289699286, 0.0169423576, -0.0121640936, -0.00485335058, 0.0165191405, -0.00664178608, -0.0236592311, 0.0115429191, 0.00628682971, 3.27972339e-05, 0.00567248138, -0.00663837325, -0.0250381, -0.00729709119, 0.010710136, 0.00859404821, 0.00853943918, 0.0125327026, -0.0138910944, -0.00168689771, 0.0261712316, -0.00227479474, -0.00473389402, -0.00760426512, 0.00795922149, -0.0199594889, 0.00620832946, 0.0151675735, 0.0055291336, 0.00743361283, 0.00226114248, 0.0118364412, 0.00333283888, 0.000170652274, -0.00737900427, 0.00584996, 0.0191676635, 0.00268094707, 0.0117886588, 0.00969304889, 0.00760426512, 0.0109285712, -0.00622880785, 0.0152358348, -0.00545745948, -0.00480556767, 0.00651209056, -0.00134218007, 0.00749504752, -0.00408882834, -0.0173792262, 0.0147170518, -0.0110650929, -0.00292156683, 0.0133586591, 0.007986526, 0.00928348303, -0.00601378595, -0.0286968853, -0.0202871412, -0.000408498861, 0.0135293119, -0.0110104848, 0.0202598367, 0.0297617558, 0.0074267867, -0.0110104848, -0.0165327918, 0.00388404564, 0.0137955295, -0.00370315416, 0.014621486, 0.0129422676, 0.00827322155, -0.0127511378, 0.0231541, 0.00412295898, -0.00586361205, 0.00714691682, -0.00196932722, 0.00254442543, 0.0247787088, -0.00307686045, 0.00239254488, -0.00720835198, -0.00928348303, 0.0209424458, -0.012860355, -0.0173792262, 0.00389428483, 0.0204236638, -0.014211921, 0.00299324072, -0.0239868835, -0.0123552242, -0.018771749, 0.015249487, -0.00106231042, -0.0179662704, -0.00696602557, -0.000179718176, -0.00320826261, -0.0189901851, 0.0143074859, -0.00343864318, -0.00905822217, 0.020956099, -0.0444242, -0.0142665301, -0.00873057, -0.0180072282, 0.0181164443, -0.0209424458, -0.00382261071, -0.0160959214, -0.00371680642, 0.0134747028, -0.0139252255, -0.0183348805, -0.000531155209, 0.00508543756, -0.00118603325, -0.00579876406, -0.0184304453, 0.00535848131, -0.00901044, -0.00722200377, 0.0134951817, -0.00757013448, 0.00270313188, -0.00689435145, -0.00230551208, -0.00491137244, 0.00187546841, 0.0232769698, 0.00224407739, -0.003682676, 0.0047680242, -0.0135429641, 0.00121845724, -0.019031141, 0.0134405727, 0.00723565603, -0.00315877353, -0.00763156964, 0.00495915487, 0.0156454, 0.00343864318, -0.00415026303, 0.0182256624, -0.00861452613, -0.00568954647, 0.00782952644, 0.00495232875, 0.00653256895, -0.0105190054, -0.0120685287, -0.0327925384, 0.0263760146, -0.00365195842, -0.00336184958, 0.0158774871, -0.00860087387, -0.0212837514, 0.00922887493, 0.0135566164, -0.0194816627, -0.00385674136, -0.0166283567, 0.00159389223, -0.010914919, 0.00458030682, 0.0121231368, 0.00944730919, -0.0188536625, -0.00691483, 0.0121504413, 0.0216660127, -0.00118091365, 0.0225397516, 0.00590115553, 0.00639604684, 0.0106213968, 0.000543954084, -0.0030973386, 0.007078656, 0.0150583563, -0.0101367449, -0.0202871412, -0.010580441, -0.0224714912, -0.00838244, 0.00542674214, -0.00342669757, 0.0235773176, -0.00449839374, -0.0117203975, -0.00201369682, 0.00866913516, 0.00713326503, -0.0161778349, 0.00339768664, -0.000505130738, -0.0172290523, 0.00767252594, 0.0240961, -0.0359325409, 0.000194650245, 0.00130890287, 0.0107988752, -0.0119661372, -0.00864865724, 0.00194372935, -0.0193314888, 0.000811878184, 0.00954970066, 0.0296525378, -0.00809574407, -0.00299665378, 0.00515711168, -0.0192222707, 0.0367243662, -0.000190703911, 0.0106691802, -0.00275091454, -0.000449242099, -0.0180345308, -0.0103893103, -0.0176386181, -0.0101230927, -0.0099933967, 0.00156317477, -0.008505309, -0.013822834, -0.00588409044, 0.00939270109, -0.00269801239, 0.00502400286, 0.00555643765, 0.00667932956, 0.00523219863, 0.00801383052, -0.0151129644, -0.00360417599, 0.0224714912, -0.00107766909, -0.0053311768, 0.00781587418, 0.00029906811, 0.0174338352, 0.00379530643, 0.000441562734, -0.00229186, 0.00357687147, 0.00972717907, 0.00432091532, -0.0248333178, -0.000168945742, 0.0109353969, -0.00620491663, 0.0303624514, -0.0190994013, 0.0176659226, 0.031891495, 0.0116043538, 0.00405128486, 0.0118296156, 0.00237036, 0.0169014, 0.00260074064, -0.00270654494, -0.0112357456, 0.00923570059, -0.00121589738, -0.00352567597, -0.0104302671, -0.0137750506, 0.00337720849, 0.00883978792, 0.0310996696, -0.00280893641, 0.00661106873, -0.00459054578, -0.00534824189, 0.00581241632, 0.017010618, 0.00467928499, 0.00506837247, -0.0109900059, -0.016751226, -0.0139388768, -0.00425948063, 0.0122869629, -0.0119047025, 0.0239732303, 0.00526632881, 0.014676095, -0.0248060133, 0.00449839374, -0.0128467027, 0.0107374405, 0.023495404, -0.00519124186, -0.00703087356, -0.0135020074, 0.00576122059, 0.00907870103, 0.0166693144, -0.0053755464, 0.00800017826, -0.0168877486, -0.00554619869, -0.010450745, -0.0115975281, 0.00443013292, 0.000123509584, -0.000276030041, 0.0189492274, -0.0100548314, -0.000873313, -0.00156744104, -0.0134883551, 0.00667250389, 0.0193314888, -0.0174065307, 0.0187444445, 0.0209424458, -0.0219527073, 0.00523561146, -0.00442671962, 0.000951386406, -0.00116384844, -0.0116999196, -0.00513322, -0.00599330757, -0.00299324072, -0.00228332728, -0.00563152507, -0.00182597921, -0.00485676341, 0.0179116614, -0.0137750506, 0.0138433119, -0.0222530551, -0.0113859195, -0.00800700486, -0.006911417, -0.00667932956, 0.0266900156, 0.0193041842, 0.0139183989, 0.0212974027, -0.0189628806, 0.00170481612, -0.000309733878, -0.0182256624, 0.00345058879, -0.0139798336, 0.00758378673, 0.00772030884, 0.0054813507, -0.00530728558, -0.00675783, -0.00482945936, 0.0225261, 0.0167239215, -0.00838244, 0.0168467928, -0.0115360934, 0.00502058957, -0.00497963326, -0.00951557048, -0.0120275719, -0.0165054873, 0.0132835722, -0.0252019279, 0.00336014316, 0.0199321844, -0.0030461431, 0.00568613363, 0.00171164225, 0.00369974109, -0.0182256624, -0.00262121879, -0.0157955736, 0.0104029626, -0.0187034886, 0.0181574021, -0.0232769698, 0.00637898175, -0.0202052277, -0.00673735142, 0.000601549225, 0.0175430533, -0.00677489489, 0.00840974413, 0.00343181705, 0.0505949855, 0.0228127949, -0.00576463342, 0.0195089672, -0.028314624, 0.00951557048, -0.0420760214, 0.00122272351, -0.0116043538, -0.00400691526, 0.0228537526, 0.0123825287, 0.0138160074, 0.00695919944, 0.0210380107, -0.0241643619, -0.0184304453, 0.0027201972, 0.0216387082, 0.023809405, -0.0103824837, 0.00576463342, -0.00190277281, -0.00176283799, 0.0112698758, -0.0235773176, -0.0102596143, -0.00254442543, -0.0155907916, -0.00485676341, 0.0142528778, -0.0156180952, 0.0279187113, -0.00415708916, -0.000458201335, 0.0106828324, 0.00401032809, 0.00223213178, 0.0158365313, 0.0134064425, -0.012471268, 0.0243691448, 0.00403080648, 0.00405811099, 0.00490454631, -0.0254749712, -0.0198912285, -0.00443354575, -0.0160686169, -0.0314000174, 0.000553766615, 0.0140617471, -0.0128740072, -0.0237821, 0.00662813429, 0.0110719195, -0.00562811177, -0.00213827286, -0.00103500602, -0.00772713451, -0.0102050053, 0.0115156155, 0.00660083, -0.00599672087, -0.00536189415, 0.00722883, 0.00489089405, -0.0477553308, 0.0043584588, -0.0085121356, -0.0191130545, -0.00437893718, -0.00295057776, -0.00707183, 1.76518442e-05, -0.0107988752, -0.00849165674, 0.0122460071, -0.00572709, 0.00910600461, 0.00247616437, -0.019549923, -0.0135566164, -0.0342669748, 0.0290245377, 0.00183280534, 0.0187990535, -0.0180208795, -0.000951386406, 0.00431067636, -0.0105394842, 0.016751226, -0.028314624, 0.0101367449, 0.00900361408, -0.0076657, -0.0193041842, 0.0231267959, -0.00674417755, 0.0272634067, 0.0228264481, -0.0108193541, 0.0141300075, 0.00533459, -0.00185157708, -0.00208878377, -0.0254340135, 0.00907187443, -0.00900361408, -0.00382943684, -0.00194031629, 0.00322532794, -0.00790461339, -0.0211472288, 0.0178843569, 0.00241131661, 0.000465027435, -0.00692165596, -0.011932007, -0.0197274014, 0.0103415279, 0.0220482722, -0.0278231464, -0.00307686045, 0.0150447041, -0.00375435, -0.0122937895, -0.00175089226, 0.00596259, 0.0108125275, 0.00235670782, 0.00676806876, -0.0139593557, -0.00427313289, -0.00805478729, 0.0094200056, -0.0150037473, 0.000466733967, 0.0153450519, 0.00957017951, -0.012211876, -0.0133654857, -0.000893364602, 0.00786365662, -0.0127101811, -0.0341850631, 0.0156044438, 0.0143074859, 0.0140207903, -0.0216523595, -0.00370656722, -0.0107920496, -0.00595235126, 0.0408200212, 0.0196727943, 0.0264169704, 0.00698650395, -0.00791826565, -0.0159457475, 0.0163826179, -0.0282327104, -0.0241097528, -0.0269221012, 0.0112357456, -0.0033789149, -0.013304051, -0.00943365693, -0.00266388198, 0.014211921, -0.0047714375, 0.00457006786, 0.00983639713, -0.00353250187, -0.0202871412, -0.0178024452, 0.00115275604, 0.0218025334, 0.0230585337, 0.0236728825, 0.000321466214, -0.0175976623, -0.00378165417, 0.0198912285, 0.00493867649, 0.0131538771, -0.0108261798, 0.017788792, 0.0200960115, 0.00849848334, 0.0170515738, 0.00771348272, 0.0130105289, 0.00987052731, -0.0201369673, -0.0130992681, -0.0006855955, 0.00360076292, -0.0103415279, -0.01026644, -0.0163280088, 0.0157409646, -0.022608012, 0.00059003022, -0.0255432315, 0.0160686169, 0.0103893103, 0.00795239583, -0.0133313555, -0.0118296156, -0.00433798088, -0.00267241453, 0.00549159, 0.0183348805, 0.00405811099, 0.00468611112, -0.0154815735, 0.00214680564, -0.00298812124, -0.00879883114, -0.0166829657, -0.00208537071, 0.0101367449, -0.0144303562, 0.00769983046, -0.00837561302, -0.000708633568, -0.015973052, 0.0166556612, -0.0178843569, -0.017065227, -0.0113176582, 0.00209219684, 0.00116384844, 0.0023840121, -0.000478252972, 0.00695919944, 0.00140958768, 0.0256524496, -0.0341577567, 0.00939952675, -0.00372021948, 0.00140958768, -0.00958383176, -0.0192086194, -0.0023550014, 0.00726296054, 0.0123006152, 0.00286183855, -0.0137067903, 0.000354316784, -0.00278163189, 0.00478850259, 0.010525832, -0.0138637898, -0.00529704662, 0.0212154891, -0.00375093683, 0.00823226571, -0.0172154009, 0.020642098, 0.00675783, -0.0121709201, -0.0163553134, 0.00231233821, 0.0075360043, -0.0101572229, 0.0187990535, 0.00930396188, -0.00337550184, -0.00169116398, 0.000110923975, 0.0264033191, 0.000581497618, 0.0223486219, 0.0204373151, 0.00858039595, -0.00382261071, -0.00125429418, 0.0104097882, -0.0117135718, 0.0088124834, 0.00463832868, -0.0122323548, -0.0193041842, -0.0154952258, 0.00890122261, -0.0161232259, -0.000958212477, 0.00931761414, 0.00284989295, 0.0119797895, 0.019140359, -0.00553937256, 0.00107596256, 0.00659059081, 0.00513322, 0.00321508874, 0.0079797, 0.0123757022, -0.0075360043, 0.00332942582, -0.00280381669, 0.00112033216, -0.0015597617, 0.0248333178, -0.000639092759, -0.0128467027, -0.00587726431, -0.0131060937, -0.0147853121, 0.0116862673, -0.00536189415, 0.0262531452, 0.00652574282, 0.000655304699, 0.0113995718, 0.0163007043, 0.00951557048, 0.0122596594, 0.00392158935, 0.00178160972, 0.00535165519, 0.00273896893, 0.00890122261, 0.00976813585, 0.0110104848, -0.0139388768, -0.0043618721, 0.034021236, 0.018102793, 0.00207683817, 0.00127221271, -0.0137955295, -0.00239766436, 0.0229902733, 0.0212837514, 0.00741313444, 0.00998657104, -0.00236353395, -0.00569637259, -0.0273726247, 0.00720152585, 0.00541650318, -0.00651891669, -0.012266485, 0.0192222707, -0.0113995718, -0.00380213256, -0.0105394842, -0.0196318366, 0.00737217814, -0.00328846928, -0.00177649013, -0.0153723564, -0.000995756, -0.0153314, 0.00752235204] |
30 Jul, 2024 | What is D Programming Language: Usage and Applications
30 Jul, 2024
The D programming language is another powerful high-performance language designed for effective programming of system-level and application software. Combining the efficiency of C++ with the simplicity of modern languages like Python, D attempts to provide a productive experience without applying any kind of optimization wizardry. This article elaborates to the length of the detail on the different aspects of D: features, syntax, benefits, and real-world applications.Table of ContentHistory and Development of D Programming LanguageKey Features of D Programming LanguageSyntax and Basics of D Programming LanguageAdvantages of Using D Programming LanguageReal-World Applications of D Programming LanguageGetting Started with D Programming Language1. Installation2. Writing Your First ProgramHistory and Development of D Programming LanguageThe D programming language was designed by Walter Bright, creator of Digital Mars, in 2001. The language aimed to eliminate many of the C++ limitations while being endowed with all of the powerful features of that language. After that, D added many crucial features in such a way that turned it into a modern language of the community. Indeed, features such as garbage collection, contract programming, and multi-paradigm support have led D to become a general-purpose, multiparadigm language: quite versatile and robust.Key Features of D Programming Language 1. High performanceD has competitive performance to that of C and C++, and, at the same time, offers much higher-level abstractions. All that makes it fit for not only system-level programming but also for performance-critical applications. The D compiler, DMD, creates mean, lean, and highly optimized machine code.2. Clarity and ReadabilityD's design and syntax are supposed to carry out a lot of readability, minimizing lots of the complexity associated with languages such as C++. This philosophy of design emphasizes minimalism and lucidity, making the language accessible to both beginners and experienced software developers.3. Memory SafetyD offers memory safety features, like garbage collection, which ensures that common programming mistakes regarding memory fail to occur, whereby common classes of memory bugs like memory leaks and buffer overflows are avoided. For those cases in which manual memory management must be done for parts of programs that negatively affect performance, developers are free to control garbage collection.4. MetaprogrammingD supports strong metaprogramming, which allows developers to easily write code that writes other code, to maximize output while minimizing verbosity. This is done using templates and mixins, as well as CTFE(Compile Time Function Evaluation).5. ConcurrencyD is endowed with support for concurrent programming, thereby making inclusion in a multi-threaded application easy to program. Built-in support features like fibers, message-passing, and shared data are good ways to manage the concurrency.6. CompatibilityD is compatible with C and C++ code very extensively; this interoperability stretches from linking with C libraries to using C++ classes and templates.Syntax and Basics of D Programming Language1. Variables and Data TypesBecause D is strongly typed, it natively supports data types of a wide degree, going from plain primitives—like int, float, char—to more compound ones, including arrays and structures. The type system of D is designed to be strong while still being extremely flexible for advanced manipulations of the types within the program.int a = 10;float b = 20.5;char c = 'D';string s = "Hello, D!";2. Control StructuresD includes the standard control structures if-else, loops (for, while, do-while) and switch statements. These control structures have been enhanced further by facilities such as scope guards and labels, among others, for more controlled structures of managing flow.for (int i = 0; i < 10; i++) { writeln(i);}if (a > b) { writeln("a is greater than b");} else { writeln("a is not greater than b");}3. FunctionsFunctions are defined using the void keyword, in case a function does not return a value, or the return type for those that do. D supports function overloading and provides means for default and named arguments, through which more meaning can be encoded in—interfaces.void greet() { writeln("Hello, D!");}int add(int x, int y) { return x + y;}4. Object-Oriented ProgrammingIt supports object-oriented principles like classes and polymorphism through inheritance and, additionally, multiple inheritance and interfaces together make it quite a powerful way to design large-scale software. It also supports other object-oriented characteristics, such as interfaces, abstract classes, and provides power for multiple inheritance, although not through the class, through the interfaces.class Animal { void makeSound() { writeln("Some sound"); }}class Dog : Animal { override void makeSound() { writeln("Bark"); }}Advantages of Using D Programming Language1. Performance and EfficiencyD's high performance makes it a very good language with which to do system-level programming and game development, as well as several other performance-critical applications. Its ability to produce highly optimized machine code ensures that applications run efficiently.2. Contemporary FeaturesFurthermore, D has all the other features that garbage collection, type inference, and metaprogramming—common to many new programming languages—have. These features altogether tend to make D coding very intuitive, as opposed to coding with old languages like C++.3. Easy to LearnWith its syntax simple and actually quite usual for those acquainted with C or C++, this language is relatively easy to grasp. At the same time, the language is based on readability and simplicity, which helps new developers acquire the basics rather swiftly.4. Strong Community and EcosystemD is strongly community-based and vibrant, offering a lot of libraries, tools, and frameworks for support during development. This kind of community development will make sure the language grows to meet the needs of users.5. Platform Compatibility Being cross-platform, D can be used on Windows, Linux, and macOS, which makes it flexible for different development environments. More so, it ensures that D application developments can easily run across several systems with minor modifications.Real-World Applications of D Programming Language1. System ProgrammingD's ability to produce more efficient and high-performing code makes it suitable for developing operating systems, drivers, and, in general, low-level coding in the system. It provides compatibility with C to leverage existing system libraries.2. Game DevelopmentIt being high in performance makes D ideal for game development, where most demands are on speed and efficiency. Game engines, as well as performance-critical game logic, can be effectively implemented in D.3. Computing in ScienceD's high-performance computing and numerical analysis libraries make it suitable for scientific applications. Equally, D provides lengthy numerical computation and data manipulation libraries.4. Web DevelopmentD can be used for the development of any kind of web with frameworks like Vibe.d while offering great performance for server-side applications. Vibe.d enables asynchronous I/O and as such is well suited for high-concurrency web services.5. ScriptingThis compact and readable mainstream language means that D can also serve well in scripting and automation operations. Compiling scripts down to native code gives a speed advantage over interpreted scripting languages.Getting Started with D Programming Language1. InstallationFirst of all, to program in D, you need to install the D compiler. The most used are DMD, which stands for D Digital Mars D.a) Installation on Windows:choco install dmdb) Installation on Linux:sudo apt-get install dmd2. Writing Your First Programa) Create a file named hello.d with the following content:import std.stdio;void main() { writeln("Hello, D!");}b) Compile and run the program:dmd hello.d./helloConclusionThe D programming language unifies together functionality with high performance and modern features in a way that it becomes versatile and competent for diverse applications: concerns of writing system-level software, games of high performance, complex scientific calculations, and generally everything else. D gives you the tools and power you need to succeed, and growing strong communities with growing ecosystems allow D to be available from more and more different places.Also Read:Top Programming Languages For Competitive Programming Top 10 Fastest Programming Languages 10 Best Coding Games to Advance Your Programming Skills What is D Programming Language: Usage and Applications - FAQsWhat is the D programming language and why is it important?D is a high-performance system programming and application language. It is kind of important since it possesses the ability to combine qualities of C++ efficiency with the modern ease of a language needed to be important in writing efficient and buildable software.How can I structure my D project for better maintainability?Structuring a D project involves properly keeping the code files into a clear and logical directory structure. Use a separate folder for each component, module, and utility. Consistent naming and absolute imports may be another technique for maintainingWhat are the best practices for creating reusable components in D? D offers reusability of components by keeping the size of the components very small and thematically focused, templating for generic programming, and not hardcoding the components. The individual component would be made up of separate modules where, inside each of them, documentation is necessary to do.What is the role of metaprogramming in D? Metaprogramming in D is the ability for developers to use the language to write code that can write code. Developers can write a code generator, which allows them to decrease redundancy and thus improve the efficiency of the code. Rather importantly, it is key for template programming and for. Can I use C and C++ libraries in D?Sure, D can interact with C and C++ code. This actually implies a compatible use with an already developed library or codebase, making transitioning to D—in this regard—rather easy. What are some popular frameworks and libraries in D?Some of the common frameworks and libraries for D include Vibe.d for web development, Mir for scientific computing, and GtkD for GUI applications. These libraries enhance functionalities for easy programming in the respective areas of their application general. | NLP/Natural Language Processing (NLP) Tutorial/AI ML DS - Projects/30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated]/Does Artificial Intelligence Require Coding?/Artificial Intelligence – Boon or Bane/Artificial Intelligence Examples/Agents in Artificial Intelligence/What are Diffusion Models?/ML | Common Loss Functions/Loss Functions in Deep Learning/Kaiming Initialization in Deep Learning/Swift - Initialization/Swift – If Statement/6 Best iOS Project Ideas For Beginners/Swift Programming Language/Introduction to Visual Programming Language/What is D Programming Language: Usage and Applications | https://www.geeksforgeeks.org/what-is-d-programming-language/?ref=ml_lbp | NLP | What is D Programming Language: Usage and Applications | Artificial Intelligence – Boon or Bane, Natural Language Processing (NLP) Tutorial, ML | Common Loss Functions, 6 Best iOS Project Ideas For Beginners, AI ML DS - Projects, Artificial Intelligence Examples, NLP, Loss Functions in Deep Learning, Swift Programming Language, Agents in Artificial Intelligence, What are Diffusion Models?, What is D Programming Language: Usage and Applications, Kaiming Initialization in Deep Learning, 30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated], Does Artificial Intelligence Require Coding?, Swift - Initialization, Introduction to Visual Programming Language, Swift – If Statement | GeeksforGeeks | [-0.0272592064, -0.0110936845, -0.0257882196, 0.0295729451, 0.0237043239, 0.0419537425, -0.00728214579, -0.0165792368, -0.0101743182, 0.0634362623, 0.0201341193, 0.0115457065, 0.0141199315, -0.0435473099, -0.0177744124, 0.0481747873, 0.00385367638, 0.015529626, -0.0122045856, 0.00783759635, 0.00704464316, 0.0316874869, -0.0443747379, 0.0132312113, 0.0115840137, 0.0251599867, 0.00688375393, -0.00868801, -0.0307221524, 0.00193545723, 0.0171155334, 0.00392071344, -0.0186324865, -0.0331584737, -0.0138134761, -0.0112315901, 0.00689524598, -0.023060767, -0.00770352222, 0.0296955258, 0.0292818118, 0.019842986, -0.00514462, 0.0292664897, -0.0106493244, 0.0350278504, -0.00630915025, -0.0177284442, 0.0135529889, -0.0151925255, -0.0173606966, -0.0267995223, 0.00740855886, 0.0294656847, 0.0304310191, 0.0013752185, 0.034905266, -0.0240261015, 0.00572305406, -0.0235357732, 0.0101973033, -0.0238575507, 0.0294963308, -0.027366465, 0.0357939899, 0.0532925911, -0.037540786, 0.0330665372, 0.0349665582, -0.0345375203, -0.00956906937, 0.0377246588, -0.023076091, 0.0262938719, -0.00115974213, 0.0165179446, -0.00742388144, 0.0134993596, -0.0153993824, 0.0310286079, 0.0195978209, -0.0137445237, -0.0123807974, -0.033434283, 0.0145719536, -0.018969588, 0.00619806023, -0.0419843867, 0.0673588961, 0.0166864954, 0.00124114426, -0.0134074232, 0.0430876277, -0.0236890018, -0.0275963079, 0.0113465106, -0.0420456789, -0.0102969008, -0.00426356029, 0.0124727339, 0.00252442621, 0.0130166924, 0.0183566771, -0.0578894205, 0.00481518032, -0.0180042535, 0.0277801808, 0.0287301913, -0.00216434104, 0.0413408317, -0.024562398, -0.0293584261, -0.0186171643, 0.0410650223, -0.0143114664, 0.0200881511, -0.009186, -0.0858688, 0.00387283, -0.0231527034, 0.0147711495, 0.00559664145, -0.0150776049, 0.0106723085, -0.0275809839, 0.0161348749, 0.00621721335, -0.0336488, 0.0201494414, 0.0304310191, -0.0102279484, 0.0109557798, -0.00297070178, 0.0187244229, 0.0383375697, 0.0321778134, 0.00744303502, 0.0251599867, -0.0214825217, 0.00945414882, 0.0133614549, -0.026523713, -0.0141429156, 0.00606015511, 0.00598737178, -0.0154989809, -0.0106340013, 0.0753880218, 0.0243785251, -0.00680714, -0.00343613094, -0.0204252508, 0.0394101627, -0.0450182967, 0.0487570502, -0.00343421567, 0.0209615473, -0.00530550862, -0.0240720697, 0.0101513341, 0.0143191274, -0.013575973, -0.0296648815, -0.0199962128, -0.00902511086, 0.0387972519, 0.0197816957, -0.0328213722, -0.0702395737, 0.0270293653, 0.0125646703, 0.0139437197, 0.00973762, 0.0293124579, -0.0466731563, 0.0260640308, -0.0273817889, 0.000756561698, 0.0105190808, 0.00966100581, -0.0270140413, 0.00391496764, 0.0443747379, 0.0193986259, 0.0314729661, 0.0163340718, 0.0591458902, -0.00837389287, 0.0166098811, -0.00459683081, -0.0175905395, 0.0101973033, 0.0290366467, 0.0100823818, 0.00122869457, 0.0173760206, -0.0710976496, 0.0157824513, 0.0055200276, 0.0473780036, -0.0141659, -0.016839724, 0.0127485441, 0.028040668, 0.00925495289, -0.00862671901, 0.00375216315, 0.0116836112, 0.0482667238, -0.00658112951, 0.0102585936, 0.0409117937, -0.0294197164, -0.00509865163, 0.00610995432, -0.00157058379, -0.0167324636, -0.00377131649, -0.0247309487, -0.0626088306, -0.0194752403, 0.00776864402, 0.0025014421, -0.00329822605, -0.0358246341, -0.030829411, -0.0112928804, -0.00287876534, 0.00250910339, 0.00334610976, 0.0484199487, 0.0375714302, -0.0103045618, -0.00745835761, 0.00786058, -0.0187397469, -0.00166730885, -0.00722085498, -0.044221513, 0.0815784261, 0.00465046056, -0.000187105368, -0.0313503854, -0.00906341802, -0.00890252925, 0.0132925017, 0.0233519, 0.0368052907, 0.00592991151, -0.00327524194, 0.0254817642, -0.0117449025, 0.0533538833, 0.0353649519, -0.0535377562, 0.0218502693, -0.002208394, 0.00471941289, -0.00131201209, -0.0528635532, 0.00511397421, -0.00577285327, 0.0104424674, 0.0214672, -0.0391956419, 0.00301092421, 0.0287148692, 0.0160889067, 0.00313159102, 0.000981614925, 0.0229381844, -0.0405134, 0.00130626606, -0.00156196475, 0.0101973033, 0.0224631801, 0.00693355314, 0.0177744124, 0.049799, 0.000485540251, 0.0143650956, 0.0139973499, 0.0148937311, 0.0210534856, 0.00974528119, -0.0413714759, -0.0118751461, -0.0436392464, -0.0212526806, 0.000429037522, -0.010358192, 0.00159165263, -0.00295729446, 0.0398698449, 0.0498296432, 0.0254204739, -0.013798154, -0.0184179675, -0.0193679798, 0.0135683119, -0.0177897345, -0.010794891, 0.034905266, 0.00282130484, -0.0138211381, 0.000394800707, 0.00222371682, -0.00247462722, 0.0235664193, -0.0125416862, 0.0190462023, -0.00357786659, -0.0543345399, -0.0220801104, 0.00233289157, 0.0290826149, 0.00676500238, 0.0342004187, 7.42795164e-05, 0.00701782806, 0.0462747626, -0.00743154297, -0.064662084, 0.0284390599, 0.0368665829, -0.0111090075, -0.0326068513, 0.0037291788, -0.00451255543, -0.0249454677, -0.00839687698, -0.00233672233, -0.0359165706, 0.00695653725, 0.00236545247, -0.0500135198, -0.0372036844, -0.0113158645, -0.00143459428, -0.00570007, -0.0242252983, 0.027151946, 0.00376940123, -0.0218962375, 0.00714424113, -0.0634975582, -0.0242252983, 0.0227543116, -0.00148630864, -0.00966866687, 0.00153514987, 0.0395021, 0.010994087, -0.0104807736, 0.0127562052, -0.0293124579, 0.00230416143, -0.075694479, 0.0137215396, 0.0179582853, 0.0467344448, 0.00323501951, -0.00058896892, -0.00265083904, -0.0216663945, -0.0223559197, -0.0118981302, -0.0290060025, 0.00102758314, 0.0404827558, -0.00350891403, -0.0177284442, 0.0256349929, 0.00156866852, -0.0507490113, 0.00985254068, 0.0191228166, -0.00468876725, -0.0242712665, 0.0182800628, 0.00573071558, 0.0522199981, -0.0038919833, 0.0223405976, 0.0118751461, -0.0189082976, 0.0169316605, -0.0125570092, 0.0284850281, -0.013591296, -0.0250067599, 0.0207623523, -0.00393029, 0.0237809382, 0.00252442621, 0.0146179218, 0.00635511847, -0.00719404, 0.0383682139, -0.0101130279, 0.00694887573, -0.0325455628, 0.00820534304, -0.0144723551, -0.00504885241, -0.0132695176, -0.0124114426, -0.0127485441, 0.0358246341, 0.00204942026, -0.0441602208, -0.0303544048, -0.0343842953, 0.0337100923, -0.013805815, 0.0107412608, -0.00966866687, 0.0801687241, -0.0191534609, 8.81657761e-05, 0.0188163612, 0.00851179846, -0.00737791322, 0.0127562052, 0.00787590351, 0.0353036597, -0.0215744581, 0.00164240936, -0.0153227691, -0.00566176325, -0.00724766962, 0.0153610762, 0.0158437435, -0.0128098354, 0.0104577895, -0.0506570749, 0.0226623751, 0.0417085774, -0.00359702, 0.0292818118, -0.0256196707, -0.0555910058, 0.0255737, -0.0239035189, -0.0562039167, 0.0169010144, -0.037111748, 0.018555874, -0.00127562054, -0.019184107, -0.00404904177, 0.0131316129, -0.0247462727, 0.00218541, 0.0480522029, -0.0316568427, 0.000776672852, 0.00535530783, 0.0194599163, -0.0255277324, 0.00248995, 0.0240261015, 0.0053514773, 0.0105880331, -0.00591075793, 0.0299866591, -0.0259720944, -0.0217123646, -0.0364988372, 0.00936987344, -0.01488607, -0.0262325797, 0.0536603369, 0.0171308555, -0.00690290751, -0.00401456561, 0.0268454906, -0.0192453973, -0.0301552098, -0.0209002569, 0.036008507, 0.0503199734, 0.0263704862, -0.0606781654, 0.00191151549, 0.00417545438, 0.0292818118, 0.0393795148, 0.00890252925, 0.0316568427, -0.00887954421, 0.0166252051, -0.0341084823, -0.0369585194, -0.00909406319, 0.0262785498, -0.0399924256, 0.00815937482, -0.00757710915, 0.0703621581, -0.023719646, 0.000386181666, -0.0472860634, -0.00107163622, 0.00153131923, 0.0323923342, -0.0429650433, 0.0210994538, -0.0411569588, -0.0306608602, 0.00990617, -0.0295116529, -0.00581882149, 0.0231527034, -0.0167784318, -0.0149090542, -0.0202413779, 0.0140279951, -0.0097682653, 0.025236601, 0.0240720697, 0.023520451, -0.00767287659, 0.0165026225, -0.00900978781, -0.00735109858, -0.00802913122, -0.0256196707, -0.00519058807, 0.0040528723, -0.0106493244, 0.00961503759, 0.0105114197, -0.00981423352, -0.0153380921, 0.0286076106, -0.0109098116, 0.010572711, -0.00107833988, 0.0405746922, -0.0393795148, 0.0502893291, -0.0307221524, 0.0228768941, -0.00438997336, -0.0169776287, -0.00479602674, -0.022218015, 0.015529626, 0.0153610762, -0.0158743896, 0.0307221524, -0.0025014421, 0.00346677657, -0.00881825387, -0.0327294357, -0.0467038, -0.0265083909, -0.00372343278, -0.00971463602, 0.0131929042, 0.00150450435, 0.0191381387, 0.021145422, -0.00831260253, -0.0118904691, -0.00124210201, -0.00805211533, 0.00113196962, 0.00554301171, 0.0252978913, -0.0112775583, 0.00778779713, -0.0100747207, -0.0106263403, 0.0124037815, 0.0206397697, -0.0188010372, -0.00650834618, 0.0130933058, -0.00153993827, 0.00556216529, 0.0164413303, 0.00462747645, 0.0120360348, 0.00427122181, -0.0235970635, 0.00325800385, 0.00617507612, 0.0177437663, -0.0045087249, -0.00423674565, 0.00869567133, -0.00707911933, 0.0160276163, 0.0256196707, 0.0113694947, -0.00360468146, 0.00100172602, -0.0288374517, 0.00539361453, 0.000176211848, 0.0226010848, 0.00972229708, -0.0432102084, 0.0162881035, -0.0171615016, -0.0317794234, 0.0100057684, -0.017682476, -0.0172687601, -0.0020398437, 0.0538442098, 0.0234744828, -0.0197816957, -0.0263858084, -0.00188086985, 0.0152308326, -0.0095077781, 0.00709444191, -0.0254204739, -0.00925495289, -0.00786058, -0.0171308555, -0.00188470061, 0.0221107565, -0.010779568, -0.0169163365, -0.0121509554, -0.0271213017, 0.0126719298, 0.00548555143, -0.0152308326, -0.00298985536, -0.00330014131, 0.0185099058, 0.00646237796, -0.00023139776, -0.0196437892, -0.00649685413, -0.0200268589, 0.0255124103, 0.00339973927, 0.101130277, -0.0131929042, 0.0456005596, -0.0216817185, 0.0372343287, 0.0137828309, 0.0098985089, 0.00220264797, -0.0248228852, 0.00469642878, 0.0279487316, 0.019842986, -0.00339973927, 0.0572765097, -0.0395021, -0.00184352067, 0.00661560567, 0.00483433343, -0.00525571, 0.0143957417, -0.00100459903, 0.0124574108, -0.0405746922, 0.0263704862, 0.00826663431, 0.0114537701, 0.054303892, -0.00796784, -0.0236890018, -0.0069450452, -0.0244704615, -0.00448574079, -0.00678032544, 0.0256043468, 0.0272898525, -0.00684927776, 0.029113261, -0.000984487939, 0.0035050835, 0.00542042963, 0.0193373337, -0.00981423352, -0.0149780065, -0.0141352545, -0.0376940109, -0.0312431268, 0.00619422924, -0.00522506423, -0.00850413647, 0.0402682386, 0.0173300523, 0.016839724, -0.029113261, -0.0248075631, -0.0272132382, -0.00661560567, -0.013353793, 0.0379698202, -0.0287455153, -0.00515228091, -0.0203486364, 0.00908640213, -0.00590309687, 0.0106340013, -0.0123501522, -0.0284697041, -0.0134304073, 0.00452787848, -0.000544437149, 0.0151925255, 0.00946181, 0.0127791893, 0.0275350157, 0.00193928799, 0.0095077781, -0.0319632962, 0.0165179446, 0.0135300048, -0.0150163136, 0.0100210905, -0.0134533914, 0.00684161624, 0.00192492281, -0.0314116776, -0.0266156495, -0.026309194, -0.00533615425, 0.00958439242, -0.0300326273, 0.0166252051, 0.00287301908, -0.0328520164, -0.0243478809, 0.0254817642, 0.0328213722, -0.014457033, -0.0301552098, 0.0192300752, -0.00864970312, -0.00092798518, 0.0156445466, -0.001455663, -0.0125953164, 0.0108868275, 0.0140663022, -0.0136066191, 0.00981423352, -0.0108868275, -0.000604770554, 0.0274584014, -0.0546409935, -0.018755069, 0.0134687144, 0.0128174964, 0.0184026454, 0.0116299819, 0.0427505262, 0.0182953868, -0.0102202874, -0.0333117, 0.0332810543, 0.0285309963, -0.0433940813, -0.0245930441, 0.0134457294, -0.00796017889, -0.00600652536, 0.0286995471, 0.0204558969, 0.0131392749, 0.0107719069, 0.0127945123, -0.0201647636, -0.0037943006, -0.0330665372, -0.00812106766, 0.0169163365, -0.036744, 0.0217430089, 0.00530167809, -0.0189849101, 0.0113924788, -0.0120053897, 0.0203639604, 0.0252825692, 0.0168856923, 0.00483433343, -0.00178031425, 0.0189082976, 0.00404138025, 0.0138517832, 0.0241946522, -0.0298027862, -0.00168742, -0.00953076221, -0.033832673, -0.0382456332, 0.0192147531, 0.00318905129, -0.00335951708, -0.00494542392, 0.030201178, -0.0282705091, -0.0159816481, -0.0352117233, -0.0140892863, 0.0459070168, -0.00151503878, 0.0093775345, -0.0173453745, 0.0366520621, 0.0210688077, -0.0136908945, 0.00266999239, 0.0301552098, 0.00803679228, 0.0246849805, -0.0124727339, 0.0116989342, -0.00320437411, -0.00766521506, -0.0250067599, 0.0338633209, 0.0355488248, 0.026324518, 0.0302471463, 0.00849647541, 0.00842752308, -0.020930903, -0.0448957123, 0.000769490318, -0.0201187953, 0.0196437892, 0.0406053364, -0.0214365534, 0.00568091683, 0.0476538129, -0.00742388144, 0.000607643567, 0.0179123171, -0.0343842953, 0.00146523979, 0.0225091483, -0.000126891682, 0.0268301684, 0.00475388905, 0.0283624455, 0.0187244229, -0.0212526806, 0.0110936845, 0.0568781197, 0.000820247, 0.00631298078, -0.0146409059, -0.0260333847, 0.0119364373, -0.00166156271, 0.00882591493, 0.0173606966, -0.00598354125, -0.00395710533, 0.0235817414, 0.0186631326, 0.000554013881, -0.00579200685, 0.036835935, -0.0196897574, -0.022861572, 0.0153763983, 0.0254970882, 0.023719646, 0.00582648301, -0.0235970635, -0.0244244933, -0.0238728747, 0.00677649444, 0.00704464316, 0.0273817889, -0.0171921477, -0.00579200685, -0.020486543, -0.00380004663, -0.00504885241, -0.0213292949, -0.0163340718, 0.0108178752, -0.0145336464, -0.00517143449, -0.00476921163, -0.00689907698, -0.0064279018, 0.0163187496, 0.00248420401, 0.00615592254, 0.0226164069, 0.00207431987, -0.00894083548, 0.00699101342, -0.00697186, -0.0185252279, -0.00959971454, 0.0203486364, 0.00874164, -0.00125934009, 0.0262479037, 0.00245164311, -0.0208696108, -0.0123041831, -0.00553151965, -0.00168167392, -0.0225704387, -0.00417545438, 0.0131392749, -0.0248841774, -0.0101666572, 0.031503614, 0.00372726354, -0.0154530127, 0.0059337425, -0.0169316605, 0.0307834428, -0.000414672424, -0.000181119918, -0.0454166867, 0.0204099286, -0.0113082035, 0.0018818276, -0.00634362642, 0.0160122942, 0.0314423218, -0.0178203806, -0.0178663488, -0.00189044664, -0.0503812656, 0.0223865658, -0.0462441184, -0.021344617, 0.0139207356, 0.0210841298, 0.00341697759, -0.0235357732, -0.019383302, -0.013162259, 0.00617124513, 0.0112239281, -0.00154951506, 0.0129937083, -0.0106033562, -0.00609846227, -0.00204367423, 0.00622104434, -0.00429037539, -0.0269680731, -0.0230914131, -0.00308179203, 0.0174219888, 0.0174066648, -0.00378855458, 0.0124191046, 0.0261253212, -0.00227926183, 0.0120360348, 0.0211607441, 0.00743154297, -0.031503614, -0.00656197593, 0.0062976582, 0.0199502446, -0.0150776049, 0.0226930212, -0.0223865658, -0.00233097631, 0.0114997383, -0.0132618565, -0.0324229784, 0.0132158883, -0.0262172576, -0.0164566543, 0.0221720468, -0.0170542412, 0.016180845, 0.00442444952, -0.00459683081, 0.0299406908, 0.00646237796, -0.00127370516, 0.0377246588, -0.0107029546, -0.00822066516, 0.00178222952, -0.0207163841, -0.0188623294, -0.0257728975, -0.00700250547, 0.00882591493, 0.0062938272, -0.00996746123, 0.00268723071, -0.0132235494, -0.0263398401, -0.00333461771, 0.0359778628, 0.022631729, 0.0260180626, 0.0362230279, -0.0335875079, -0.000240495647, 0.00741622038, -0.0592991151, -0.0159356799, 0.00207623513, 0.0137751689, -0.00960737653, -0.0210841298, 0.00211645756, -0.0076307389, -0.0195978209, 0.00634745695, 0.00479985727, -0.0115150614, 0.0145183234, 0.00822066516, 0.0268454906, 0.00835857075, -0.00447424874, 0.00995213818, 6.31465664e-05, 0.00115878438, -0.00141448306, 0.0109634409, -0.00551619707, -0.0213599391, -0.0373262651, 0.000104326507, -0.0870333314, -0.00815937482, 0.0195058845, -0.00831260253, 0.0126489457, 0.00281938957, 0.00900212675, -0.00541659864, -0.0253591835, 0.00104482134, -0.00148535089, 0.00421376154, -0.00676117186, 0.00874164, 0.0205784794, 0.0166711733, -0.00284428895, -0.0131775811, -0.0114767542, 0.0108025521, 0.00297836331, -0.0187857151, 0.0167324636, -0.00886422209, -0.0118904691, 0.0265390351, 0.013583635, -0.00803679228, 0.027366465, -0.0062287054, -0.00504885241, 0.0207623523, -0.000875313184, -8.42453e-06, 0.00437465077, -0.0149703454, -0.00254932581, 0.0193373337, -0.0105956951, -0.0144800171, -0.00641257875, 0.00178318727, 0.00753880246, -0.010358192, -0.0139207356, -0.00561196404, 0.026309194, -0.0124344267, -0.0150622819, 0.00719787087, -0.0166098811, -0.00453170901, -0.0386746675, -0.00864204206, -0.00962269865, 0.0147405034, -0.0173760206, -0.0105497269, 0.00797550101, 0.000258811138, 0.075694479, -0.00802913122, -0.00131775811, -0.0176211838, -0.00914003141, -0.00161559449, -0.00210113474, -0.0114078019, -0.00975294225, 0.0395940356, 0.0267995223, 0.0120973261, -0.00750815682, 0.00092367566, -0.0289753564, -0.0117142573, 0.0209462252, -0.0182340946, 0.0044436031, -0.031503614, -0.0126336226, 0.00408734847, 0.00424057618, -0.00674584927, 0.00855010469, -0.0050258683, -0.0109021505, -0.0283164773, -0.0349972062, -0.00884123798, 0.0226164069, 0.00196706038, -0.000930858194, -0.0137751689, 0.00142693287, 0.0120666809, -0.0025972093, 0.00732045295, -0.0226623751, 0.0123348292, -0.00748134218, -0.0119211143, -0.028040668, 0.0120207127, 0.0141199315, 0.00693355314, -0.00634362642, 0.00525187887, 0.0220647883, 0.024148684, 0.00270446879, -0.0187091, 0.0148401018, 0.00394561281, -0.0264011305, 0.0261559673, -0.00464662956, -0.000602855172, 0.0140433181, -0.0115380455, -0.00633213436, 0.0179736074, 0.0148017947, -0.0133461319, 0.00336526311, -0.00363724236, -0.0164260082, 0.00297453254, 0.00810574461, 0.0259874165, 0.00263551623, 0.0115610296, -0.00434783567, 0.00368321058, 0.00953842327, 0.00171806547, 0.0145719536, 0.00581882149, -0.0029860246, -0.00839687698, 0.0200115368, 0.0352423675, 0.014020334, 0.0127638662, -0.00345528452, 0.00938519649, 0.00522506423, 0.00550853554, -0.0277648568, -0.0268761367, -0.0015581341, 0.00189906568, -0.0138364602, 0.00474622753, -0.00560047198, -0.000914098928, 0.0246390123, 0.0251906328, 0.0170542412, 0.0151465572, -0.0131699201, 0.0185099058, -0.00239035208, -0.00729746884, 0.0275656618, 0.0115380455, 0.0153993824, -0.00982189458, -0.0162881035, 0.0182800628, 0.0396553278, 0.00106397481, 0.0266003273, -0.0256349929, 0.0319939405, -0.00175924541, 0.0275963079, -7.18853335e-05, -0.000453937042, 0.00519058807, -0.016839724, 0.0221567247, 0.00645471644, -0.0142654981, -0.000948096334, 0.019429272, 0.0164873, 0.0227543116, 0.00732428348, -0.0048075188, -0.0179123171, 0.00293622562, -0.00658112951, -0.0227849577, -0.00611761538, 0.00259146327, 0.00501820678, 0.0301398858, -0.0278414711, 0.0146025987, -0.00584946712, 0.00023522845, -0.00738557475, -0.0173300523, -0.00498756114, -0.00413714768, 0.0154223675, -0.0185865182, -0.00389964483, -0.0271366239, -0.00292856432, -0.0126412846, 0.0173760206, -0.00886422209, 0.00653899182, 0.00203409768, 0.0261866115, -0.0302471463, 0.0263704862, -0.00364107289, 0.0145106623, 0.0212373585, 0.0348746218, 0.00452787848, -0.0277955029, -0.00620189076, -0.0147634884, 0.0279027633, -0.0061674146, -0.0105880331, 0.0007302257, 0.00770352222, -0.00574986916, -0.0221720468, 0.0189082976, -0.0161195528, 0.00647003902, 0.00326374988, -0.000644992804, 0.00845816825, -0.00867268723, -0.0236890018, -0.00374833238, 0.0166864954, -0.0133997612, 0.0148247788, 0.00401456561, 0.00279832073, 0.0164566543, -0.00828195643, -0.00489179417, 0.0108561823, 0.0246390123, -0.0276422761, 0.0174832791, 0.0036008507, 0.0130013693, -0.0279640537, -0.00039982851, -0.00643173233, -0.0205171872, -0.014648567, -0.00805211533, 3.43265929e-05, -0.0320245884, 0.0106569855, -0.0373569094, -0.000802051218, -0.000209850114, -0.0226010848, 0.00289791869, 0.00930092111, 0.00278682867, -0.0118291778, 0.0101896413, 0.00130339304, 0.0125187021, -0.0324229784, 0.0140892863, 0.00636278, -0.0139667038, -0.0137598468, -0.00391879817, 0.000321538741, 0.0164566543, -0.0465812162, -0.0152155096, 0.013154597, 0.0147634884, 0.0291285831, -0.028025344, 0.0173300523, 0.0122045856, 0.0285922866, 0.0257116072, -0.021559136, 0.0042482377, -0.0284084138, -0.0239035189, 0.00735492911, -0.00550470455, 0.0191994291, 0.0141505776, -0.0105190808, -0.0138824284, 4.99785638e-05, 0.0205018651, 3.59426667e-05, -0.00657729851, 0.0164873, 0.00846583, -0.0178510267, 0.0256043468, -0.0247003045, 0.00665391237, -0.00133786933, 0.012288861, -0.00866502617, -0.00699867494, -0.00791421067, -0.0141505776, 0.0017965947, -0.00268914597, 0.0178969949, -0.0122658769, -0.00529401656, -0.000148080202, -0.0121739404, -0.0167171415, -0.0087339785, 0.00648153108, 0.00938519649, -0.00475388905, 0.00969165098, -0.00271979161, -0.0142808212, 0.0151618803, 0.00955374632, 0.00895615853, -0.0039226287, -0.0320552327, 0.0365907736, -0.00125359406, 0.0041179941, -0.046795737, 0.00295537896, 0.0100517366, 0.00751964888, 0.0106493244, -0.0148017947, 0.00632064231, -0.0107029546, 0.00974528119, -0.00527869398, -0.0037943006, 0.0398085527, 0.012717898, -0.00490711676, -0.00457001571, 0.010986425, -0.000952405855, -0.0125493482, 0.00574603816, -0.00825131126, -0.01854055, -0.00779162813, 0.0122352308, -0.00216434104, 0.0171615016, -0.0275963079, -0.00394178228, -0.0189389419, 0.00625552051, -0.00820534304, -0.00577285327, 0.00511014368, 0.0128864488, -0.00526337139, -0.00710976496, -0.00676500238, -0.00551236607, 0.00640108669, -0.0149320383, -0.00567708584, -0.00137330312, 0.00846583, -0.028454382, 0.000442684366, -0.00587245123, 0.0235970635, 0.00530933961, -0.0221414, 0.00333844824, 0.00187991222, 0.0124344267, 0.00844284613, 0.00676883338, -0.0193986259, -0.00786824152, -0.00948479399, -0.00856542774, 0.0134763755, -0.014012672, 0.0154836578, 0.0342310667, -0.0003813933, 0.00817469694, 0.0306761842, -0.000636373763, 0.0340471938, 0.00589160481, -0.0166405272, -0.011637643, 0.0141735617, 0.0026834, 0.00850413647, -0.0179736074, -0.0216663945, -0.0172227919, 0.00537829194, -0.0091170473, 0.00637810258, 0.00153898064, -0.0268148463, -0.00667689648, -0.0288527738, -0.0258035436, 0.0157058388, 0.0327294357, 0.00779162813, -0.0197050814, -0.00402222667, 0.0470102541, 0.0233978685, 0.00618656818, 0.00214135693, 0.0199655686, 0.00327524194, 0.00251868018, 0.00595672661, -0.0148324408, -0.0152078485, -0.012296522, -0.0232139956, -0.0061022928, 0.00383069227, -0.0091476934, 0.0407279208, -0.0252978913, 0.00742005091, 0.0364988372, 0.00417928537, 0.0141352545, 0.0224938244, 0.00620955229, -0.00881825387, -0.0191074926, 0.023275286, -0.0152844619, 0.0119594214, -0.0146792131, -0.00815171283, 0.00717488676, 0.0173147283, 0.00601801742, -0.0116606271, 0.00120666809, -0.0275196936, 0.0119440984, -0.022647053, 0.0114997383, -0.00388815254, -0.00464662956, -0.0156368855, 0.00647387, 0.0125799933, 0.030614892, 0.00546639785, 0.0104960967, 0.00120283733, 0.0100440755, 0.00826663431, -0.00917067751, -0.00683012418, 0.00867268723, -0.0227389894, 0.0309673157, -0.00921664573, 0.0173453745, -0.0278721172, 0.00454320107, -0.00889486726, -0.00049655349, 0.0245011076, -0.0522506423, 0.005064175, 0.0128864488, -0.00141831383, 0.00514078885, 0.0142501751, 0.00524804834, -0.000691439956, -0.0128481416, -0.00658112951, -0.00401456561, 0.0239648111, 0.00388623727, 0.00914003141, 0.00354913645, 0.0188929737, 0.0299253687, 0.0097682653, 0.0135529889, -0.00686460035, -0.00877994671, -0.00193833024, 0.00367171853, -0.0184639376, 0.0052212337, -0.015092928, 0.00720553193, -0.0106569855, -0.0148477629, -0.0181881264, 0.0152384937, -0.00815171283, 0.0125187021, -0.0014403403, 0.00617124513, 0.0101513341, 0.00589926587, -0.00770352222, 0.0113388496, -0.0129017718, 0.0290979389, -0.0221567247, -0.00417928537, 0.0057805148, 0.0138134761, -0.00244589709, -0.0089868037, 0.0450489409, -0.0130933058, 0.0124880569, 0.0206704158, 0.0401763022, -0.0143804187, 0.0138671063, 0.00338633195, 0.0322391056, 0.0103888372, 0.0053668, -0.0101513341, -0.0186171643, -0.00720936293, 0.00584946712, -0.0155832563, 0.00758094, -0.00279640546, -0.0103811761, -0.0173913427, 0.00149780069, 0.0180808678, 0.0180349, 0.0186018422, 0.00683012418, -0.0100210905, -0.00617507612, 0.0058456366, 0.00746985, 0.0178203806, -0.0232599638, -0.0167171415, 0.0191074926, 0.0122428928, 0.0145413075, -0.000271739729, 0.00903277192, 0.0145642916, 0.010794891, 0.0291285831, 0.00269297673, 0.00884889904, -0.0133154867, -0.00153610762, 0.0118904691, -0.000583701709, 0.0251753088, -0.000980657176, 0.00720553193, 0.00615209155, -0.000969644, 0.00156196475, 0.00473090494, -0.024776917, 0.000309089, 0.0139513817, -0.0084734913, 0.00576902274, 0.0206091236, -0.0167477857, 0.038184341, -0.00247654249, -0.00331737939, -0.00527869398, -0.0160122942, 0.0101743182, 0.0117985317, -0.01854055, 0.00996746123, -0.00114058866, 0.0115840137, 0.00619039871, 0.00758860121, 0.00836623181, -0.00566176325, 0.000429755775, 0.00871865544, -0.0203639604, 0.0253132153, -0.00609080074, 0.00216434104, 0.000636373763, -0.0132082272, -0.00454320107, -0.00509099, -0.00152174255, -0.00763457, -0.0106569855, -0.0189082976, 0.00362575031, 0.0305995699, 0.00919366162, 0.0197357256, 0.0203486364, -0.0098678628, 0.00592991151, -0.00594906509, 0.0120590189, -0.00564260967, 0.000223137831, -0.0108868275, -0.0163953621, 0.0068148016, 0.0164566543, -0.0110783624, 0.0210381616, 0.0342923589, -0.00889486726, -0.00247271196, -0.0149780065, -0.015521965, -0.0118138548, -0.0087569626, -0.0154683357, 0.00564644, -0.0216970406, 0.0134227453, -0.0229994766, 0.0111090075, 0.00645854697, 0.000118691605, 0.00768053811, 0.00882591493, -0.0132465335, -0.0271366239, -0.00633596489, -0.00521740271, -0.0207929984, 0.000223257535, 0.00148152024, -0.0335568637, -0.00141639845, 0.00887188315, -0.00542042963, -0.000771405641, 0.00227734656, -0.0164873, 0.0100364136, 0.00281555881, -0.000333988486, -0.0126412846, 0.000510439742, 0.0185252279, 0.00323501951, -0.0158284213, 0.00522889476, -0.00969931297, -0.00128040893, -0.0124191046, 0.000541564135, 0.00838921592, 0.0169623047, 0.000666061591, -0.0214825217, 0.0279334076, -0.00245164311, -0.0266309734, -0.00612910744, 0.0114384471, 0.00776481302, 0.0145642916, -0.00916301552, -0.0182800628, -0.000771884515, -0.0138747673, 0.00402988819, -0.0103045618, 0.0289906785, 0.0163647179, 0.00867268723, 0.00551619707, 0.00786824152, -0.00560430298, 0.00699867494, -0.0108944885, -0.000101453494, 0.00107163622, -0.00736259064, -0.0081134066, 0.0182034504, 0.00653516082, -0.0107336, 0.0156445466, -0.0076958607, 0.00697952136, 0.0134916985, 4.82727082e-05, -0.0101130279, -0.00197855267, -0.00368129532, -0.020272024, -0.00142693287, 0.00466961367, -0.00129573164, 0.0151235731, 0.0237502921, -0.00285961176, -0.0132082272, 0.000362000428, -0.0162421353, 0.00966866687, 0.0175292473, -0.0384295061, 0.0146255828, -0.0233519, -0.00276959059, 0.00836623181, 0.0178510267, -0.0038268615, 0.00526337139, 6.32662777e-05, -0.0110323941, -0.0206397697, 0.0110094091, -0.0501054563, -0.0118138548, 0.01638004, 0.00509099, 0.000190816354, 0.0224172119, -0.00126029772, 0.0163187496, 0.00056502712, 0.00294197164, -0.00468110573, 0.00337100914, 0.014242514, -0.00331546413, 0.00610612333, -0.00997512229, 0.000537733431, -0.00607547769, -0.00524038682, -0.0205784794, -0.0173760206, 0.00466195261, 0.0187397469, 0.0293124579, -0.00922430679, 0.0212680027, -0.00578434533, 0.00190672709, -0.00240950543, -0.00546639785, -0.00789122563, 0.00631681131, -0.00760009326, -0.00113580027, -0.00506034447, 0.00436315825, 0.0402682386, 0.0226164069, -0.0135683119, -1.78216978e-05, 0.00280598202, -0.00281172805, 0.0139283966, 0.0157058388, 0.0150622819, 0.00868801, 0.00727065373, 0.00492243934, 0.00600269483, -0.00337100914, -0.00591075793, 0.00261444738, 0.0145642916, -0.00627084309, 0.0209768713, -0.0141888838, -0.0294043943, 0.00390922138, -0.0191074926, 0.031503614, 0.00261444738, 0.00041610896, -0.0125187021, 0.00509865163, 0.0151465572, 0.0132388724, -0.00372151751, 0.0113388496, 0.00591458892, 0.0102509325, -0.00316606718, -0.00404904177, -0.000100495818, -0.010572711, 0.00111185841, 0.0131162899, -0.012089665, 0.015529626, -0.0158743896, -0.0129017718, 0.0134840365, -0.0141659, 0.000194407636, 0.0101973033, 0.0193066895, 0.00531700067, -0.00925495289, -0.0158590656, 0.00167497015, -0.00205899705, 0.00525571, -0.00298219384, 0.0357939899, 0.0211913902, 0.00197280641, -0.0199962128, 0.0218349453, 0.0291285831, -0.00442061899, 0.00212220359, 0.0111856218, 0.00784525741, 0.00388432201, -0.00850413647, -0.00533232372, -0.00640491769, -0.00729363784, 0.0156445466, -0.0154070444, 0.00515228091, 0.00107355148, 0.0124114426, 0.00390347536, -0.0262019355, -0.0172381159, -0.0251906328, 0.00335377106, 0.00345528452, 0.0025972093, 0.00264892378, -0.0183107089, -5.57246021e-05, 0.00952310115, 0.0203026682, -0.0190768465, -0.0109327957, -0.0106952926, 0.00961503759, 0.0326068513, 0.012495718, -0.00219690194, 0.00244589709, -0.0160122942, -0.00123348285, 0.0175445713, -0.0155679332, -0.0225397926, -0.013591296, -0.0135453278, -0.0271059778, -0.00822832715, 0.000963419094, 0.00250335736, -0.000437417184, 0.0163647179, -0.00448574079, 0.00803679228, 0.00871099439, -0.0175752155, 0.0136372643, 0.0149856685, 0.0171615016, 1.85848421e-05, -0.00702548958, 0.0142195299, 0.0228309259, 0.0173300523, -0.00560047198, -0.0203792825, 0.0131929042, -0.00588394329, -0.00723617757, -0.00701782806, -0.0182647407, -0.00157632981, 0.0202567, -0.0259108022, -0.0154376896, 0.00199579075, -0.000492243969, -0.00315649039, 0.0163187496, -0.00486114854, -0.0308907032, -0.0022409549, -0.0134304073, -0.00498373061, 0.00272362214, 0.0121049872, 0.00331354886, 0.00553918118, -0.0339246094, -0.0020072828, -0.0232293177, 0.00157537218, -0.000244446041, -0.00733960653, 0.0154913198, 0.0275043696, 0.013353793, 0.00115974213, 0.0213905852, 0.0135376668, 0.0134687144, -0.0276882444, 0.00426739128, 0.00209347322, 0.0110323941, -0.00732045295, -0.00243057427, 0.00117506483, 0.000492243969, -0.00421759207, -0.0237809382, 0.0114844153, 0.00741622038, 0.00493776239, 0.0305995699, -0.0129094329, -0.00751964888, 0.00221988605, 0.012932417, -0.0196437892, -0.0110553782, 0.0068148016, -0.0154453516, 0.0268761367, 0.00299751665, -0.00291898753, -0.0149780065, -0.00717105577, 0.00214901846, 0.00284620444, -0.00293814088, 0.0157211609, 0.00460832287, 0.0333729908, -0.0104501285, -0.00723234704, 0.0245930441, -0.00865736417, 0.0143038053, 0.0144953392, 0.0244704615, 0.00462364545, 0.00691823, 0.00239035208, -0.00140490639, -0.0133078247, -0.00302050076, 0.00482667238, 0.00400690408, -0.00443594158, 0.00241716672, -0.00376748573, -0.0196744353, 0.00606398564, 0.00684927776, 0.0148554249, 0.009277937, -0.0144876782, 0.00181191741, -0.0170848873, -0.00172285386, 0.0227543116, 0.00665774336, -0.00801380817, 0.00180042535, -0.00728597678, -0.0406972729, -0.00568857789, 0.00669221953, 0.0243019108, 0.00392071344, 0.0102585936, -0.0137521848, 0.00488030212, 0.011423124, 0.0140663022, 0.0530167818, -0.0104424674, -0.00842752308, -0.0140892863, -0.0039915815, -0.00856542774, 0.00965334475, -0.00526337139, -0.0238575507, -0.00103524455, 0.00159835629, 0.00428654486, -0.0113082035, -0.00228117732, 0.018372, -0.0207317062, -0.02197285, 0.0154300286, -0.00250718812, -0.0110477163, 0.00132829254, -0.0220188182, 0.0191074926, -0.0147481654, 0.0185711961, -0.00196322985, -0.000420657889, -0.00710210344, 0.0210075155, 0.0117525635, -0.0345681682, -0.00365448045, 0.0192760434, -0.011423124, -0.00963036064, -0.00766521506, 0.0339246094, 0.0161501989, 0.0207929984, 0.011216267, 0.0181881264, -0.00698335189, -0.0213599391, 0.0100287525, 0.00619806023, 0.018326031, 0.00329631078, 0.00283662765, -0.00440912694, 0.0107182767, 0.00702165905, 0.0030511464, 5.03676165e-05, 0.013162259, 0.0124803958, -0.0213752631, -0.00999044534, 0.0146025987, 0.0095077781, 0.0148401018, -0.00355488248, 0.022631729, 0.00144895934, -0.00966100581, 0.0171615016, 0.00502969883, -0.00241716672, -0.0258341879, 0.0119594214, -0.00848881435, -0.000991191599, 0.00459683081, 0.0229228623, 0.000537254615, -0.00407202588, 0.00519824959, 0.0120973261, -0.0117678866, -0.0148017947, 0.00607164716, -0.0120207127, -0.00287493458, -0.00864204206, -0.0146025987, 0.0175905395, 0.00751581835, 0.0105420649, 0.0155602721, -0.00944648683, -0.00993681606, -0.00172093848, 0.0194445942, -0.00990617, 0.0108178752, 0.00448191, -0.0465505719, -0.00542809116, 0.00130722369, 0.00861139596, 0.0101819802, 0.0260793529, -0.0188163612, -0.0121203102, -0.0175752155, -0.0285156723, 0.0178663488, -0.00402605766, -0.00299177063, -0.0210994538, 0.0202260558, -0.00177169521, 0.00250718812, -0.0136372643, -0.017667152, 0.0152691398, 0.00945414882, 0.012940078, 0.00217200257, 0.017038919, -0.0230914131, -0.0103198849, -0.00897914264, 0.0142654981, -0.000974432332, 0.015951002, -0.00809042249, 0.00475771958, 0.00204367423, -0.00968399, -0.0236583557, -0.00199196, 0.00310094538, -0.0107029546, 0.0267995223, 0.00186746253, -0.00658879057, -0.00582265202, 0.00815171283, -0.00607164716, 0.0105880331, -0.0157058388, -0.00584946712, -0.0160276163, 0.0034706071, 0.00190576934, 0.00992149301, -0.00658112951, 0.014870747, -0.000755125191, 0.0208083205, -0.0106646474, 0.0189849101, -0.00822832715, -0.0143727576, -0.0123578133, -0.00827429537, -0.00186842016, -0.0121049872, 0.0207010601, 0.00677266391, 0.0200115368, -0.00107067847, -0.0382456332, -0.0203486364, -0.0110860234, -0.00556982635, 0.0149397, 0.00691823, -0.0106646474, 0.000349550683, 0.00799848512, -0.0189542659, -0.00545107527, -0.0282245409, 0.00147864723, 0.0137292007, 0.00622104434, -0.0208236426, 0.0367133543, -0.00270638405, 0.0132618565, -0.00853478257, -0.0127715282, 0.00796784, 0.00432485156, -0.00196897588, 0.00209921924, 0.0151082501, -0.00598354125, 0.00952310115, -0.00180138298, 0.00421376154, -0.0325455628, -0.00822066516, 0.0115993358, 0.00627467409, 0.00362191955, 0.010358192, -0.00412565563, 0.0104807736, -0.00588777382, -0.00115878438, 0.0100057684, 0.00723234704, -0.00274469098, -1.80910429e-05, 0.0101053659, 0.0098985089, 0.00596438767, 0.000347395893, 0.00361808878, 0.00471558236, 0.013591296, -0.011859823, -0.0027925747, -0.00779545866, 0.00161942514, 0.000470935716, -0.00377706252, 0.00684544723, 0.0150392978, -0.0198276639, -0.0187397469, 4.53697612e-05, 0.00895615853, -0.0106340013, -0.0144187259, -0.00627850462, -0.0231833495, 0.00916301552, 0.0140433181, -0.00936987344, -0.0191534609, 0.00709827291, -0.015751807, -0.0328826606, -0.0148094567, 0.00312776025, 0.0178357027, 0.00961503759, 0.00853478257, -0.000893987832, -0.00427888334, 0.0232446399, 0.0114614312, -0.000949532841, -0.0118291778, 0.00792187173, 0.00868801, 0.0150699429, 0.0128251575, -0.00273702969, 0.013154597, -0.00835857075, 0.0228002798, -0.00214135693, 0.00592225045, -0.00337100914, 0.0269680731, -0.00204942026, -0.0144876782, 0.0128558036, -0.0133231478, 0.00789888762, 0.0119824056, 0.0149473613, -0.0217430089, 0.0136525873, 0.0022409549, -0.0182647407, 0.01638004, 0.0268301684, 0.0160889067, 0.00948479399, -0.0259261243, -0.0390730612, -0.0207623523, 0.0176518299, -0.0148401018, 0.00727448473, -0.00561196404, -0.00509865163, -0.0305995699, 0.00226010848, 0.00148247788, -0.000363436935, -0.0168090779, -0.00531317, 0.00390922138, 0.00747751119, 0.00557365734, 0.0100517366, 0.0126183005, 0.0266769417, -0.0119287753, 0.0279180855, -0.00636278, 0.0192913655, 0.0247156266, -0.003503168, 0.00185501273, -0.00735492911, 0.0153993824, -0.00287493458, -0.00598354125, -0.0167784318, -0.0139130745, -0.0296342354, 0.00261253212, 0.00601035636, 0.0150239747, 0.034506876, 0.00253591826, -0.0111396527, 0.00370044867, -0.00947713293, 0.00600269483, 0.00690290751, 0.000837006257, -0.0216970406, 0.021559136, -0.0020149441, -0.00782993529, -0.0208083205, -0.00340357, 0.00477687316, 0.0224478561, 0.0188929737, 0.0100900438, -0.0110630393, 0.0335875079, -0.00369087211, -0.00449723285, 0.00281172805, -0.0294350386, -0.0199962128, 0.00816703588, -0.000321059895, 0.00938519649, 0.00364681892, -0.0173147283, -0.0129554011, -0.00108121289, 0.0092472909, -0.00475388905, -0.0153763983, 0.00539361453, 0.0161348749, -0.00969931297, 0.0190308783, -0.0362536721, -0.00825131126, -0.0055813184, 0.0149320383, 0.0049990532, -0.00504502188, -0.0103045618, -0.0119211143, 0.00143363653, -0.00596055714, 0.00214710296, 0.00136468408, -0.0079525169, 0.0141352545, -0.00690290751, -0.0164719764, 0.0115993358, 0.00291707227, 0.00653516082, 0.00499522267, -0.0291592292, -0.0238115825, 0.0114690922, 0.0121662784, 0.0088872062, -0.017667152, -0.0259567704, -0.0139283966, -0.00668072747, -0.0277035665, -0.0213752631, 0.00939285755, -0.0115150614, 0.0274277572, -0.00273894495, 0.0156828538, -0.0222793054, -0.00190960011, 0.00828195643, -0.0118215159, -0.0200728271, -0.00246313517, -0.00501820678, -0.0166098811, -0.0106569855, -0.0185099058, 0.0193526577, 0.00702932, -0.00532849273, 0.00699484395, -0.00414097821, -0.0137062166, 0.00194407627, 0.0154453516, 0.014457033, -0.0119900666, -6.81593883e-06, -0.00470025931, 0.00667689648, -0.00381920021, -0.0111319916, -0.00366980326, 0.0135683119, 0.000172859989, -0.00423291512, -0.00692589162, -0.0183873232, -0.0010888743, -0.0114614312, -0.0119287753, -0.00589926587, 0.00243248953, -0.00681097107, -0.00475771958, -0.0123884585, -0.00776098249, 0.0154376896, -0.0482667238, -0.00760392426, 0.0274430793, 0.0223712437, 0.00156579551, 0.0265390351, 0.00870333239, -0.00291324151, 0.0128481416, 0.0273511428, 0.0169623047, 0.0028251356, 0.0124574108, 0.00647387, -0.00646237796, -0.00633979589, 0.00930858217, 0.00509865163, -0.0212220345, -0.0147634884, -0.0145259853, -0.0212067124, 0.00743920449, -0.0179429632, 0.0115303835, 0.0210688077, 0.00727831526, 0.00588011276, 0.000260965899, 0.00864204206, -0.0059720492, -0.0114767542, 0.023934165, 0.00282322, 0.0317794234, 0.00569623942, 0.0034706071, 0.0101666572, -0.0140663022, 0.00409884052, 0.010994087, 0.0078529194, -0.0129554011, -0.0102969008, -0.00643939385, 0.0121816015, 0.00364681892, 0.00619039871, -0.00773416786, 0.00721702399, -0.0259567704, 0.0239188429, 0.00254166429, -0.00867268723, -0.0123501522, 1.09234588e-05, -0.000925591041, -0.00488413265, 0.0025665639, -0.015299785, 0.0120130507, -0.00864204206, -0.0139054125, 0.0177131202, -0.0065543144, -0.00540893758, -0.000693834154, 0.00247654249, -0.00412565563, 0.0171155334, -0.0178969949, -0.03276008, -0.00716722524, 0.0118828071, -0.00852712058, 0.0119287753, -0.00357212056, -0.000433825888, 0.0184639376, -0.00321012014, 0.0109174727, 0.00636661053, 0.0132158883, 0.00689524598, 0.00914003141, 0.0195365306, -0.000897818478, -0.0140356561, 0.0150469588, 0.00482284138, 0.0198736321, -0.00503353, -0.0100823818, 0.0180808678, 0.0292051975, 0.00217200257, -0.0161348749, -0.00155047269, 0.00230224594, 0.00594140356, 0.00561962556, 0.0106416633, 0.015736483, 0.00772650633, 0.019842986, -0.00483816443, 0.0136908945, -0.00296495575, 0.0115073994, 0.0140586402, 0.0287608374, -0.00234246836, -0.0106799696, 0.00891785137, 0.0109787639, 0.00103428692, 0.00332312542, 0.0100670597, -0.00504502188, -0.0116146589, -0.00185980112, -0.00959205348, 0.0133308088, -0.0119134532, 0.0273051746, -0.00511780474, -0.0225857608, -0.0189236198, 0.00303773885, -0.0273817889, 0.0123654744, 0.00536296936, -0.0190768465, -0.00555833429, 0.0146562289, -0.0199808907, -0.0138287991, 0.0217583328, -0.0168703683, -0.007983163, -0.00520208, 0.0120820031, -0.003503168, -0.0127868503, -0.015751807, -0.0104577895, 0.00046614735, 0.0080827605, -0.00274852174, 0.00199579075, -0.00625935104, 0.0172074698, -0.00183107087, 0.00230990746, -0.000209371268, -0.00988318585, 0.0297874622, -0.0229841527, -0.0087339785, 0.0131086288, 0.01035053, -0.0138671063, -0.0180808678, 0.0106186792, -0.00447041774, 0.00341314683, -0.0100210905, -0.00235012965, 0.0050258683, -0.0195058845, 0.0324842706, -0.0182647407, -0.0105956951, 0.0140509792, 0.00619806023, 0.0128711257, -0.0161961671, -0.016594559, 0.0184332915, 0.00451638596, 0.0137445237, 0.00717105577, -0.0146102607, -0.0193220116, 0.00326566515, -0.0157671291, -0.00804445334, 0.00666157389, 0.00264317775, 0.00727831526, -0.00542042963, 0.00187225081, -0.00447807927, -0.0114690922, 0.000503736, -0.00237311376, -0.00485731801, 0.0195978209, -0.006358949, -0.00176116079, 0.0135146827, -0.0087263165, -0.000480033632, 0.00596055714, 0.00959971454, -0.0186937787, -0.00763840042, 0.00272553763, 0.00052911439, -0.0103122238, 0.0194752403, -0.0025991248, -0.0125646703, -0.00946947094, -0.0153763983, -0.010794891, 0.000185908284, 0.0102202874, -0.00659645209, -0.0178663488, 0.00920132268, -0.000852329, 0.0120207127, 0.0191687848, 0.00397625845, -0.0189849101, -0.000903564563, 0.0320858769, 0.0126336226, -0.00394178228, -0.00312776025, -0.00113292725, 0.0214978456, 0.00897148158, -0.0109098116, -0.000357930316, 0.0166864954, 0.0101896413, 0.00897148158, 0.0015255732, 0.0216817185, 0.0373569094, -0.0195518527, -0.0199502446, -0.00571922353, 0.0288068056, 0.0214825217, -0.00051618577, -0.00314116757, -0.00535530783, 0.0049799, -0.00380579266, 0.0235510953, 0.0108255362, -0.00350699876, -0.00869567133, 0.00976060424, 0.00982189458, -0.0117678866, 0.018126836, -0.00354147493, -0.0147864725, 0.0365907736, -0.0186937787, 0.00492243934, 0.00258380198, -0.011645304, -0.00312392949, 0.00614826102, -0.000157537215, -0.00559664145, -0.0180655438, -0.0168244, -0.0013675571, 0.0154376896, -0.0237809382, -0.00796784, 0.00552768912, -0.00182340946, 0.00159165263, -0.0215438139, 0.000564548245, -0.00340165477, -0.00589926587, 0.00305306166, -0.0137675079, 0.00441295747, -0.0250374041, -0.000588011288, 0.0084734913, -0.00117602258, -0.00855776668, 0.0193373337, -0.0183873232, -0.0300326273, -0.00825131126, 0.00762690837, -0.00174200733, -0.0190155562, -0.000965813291, 0.00791421067, 0.00871099439, -0.00864970312, -0.000249713252, -0.00857309, -0.0111319916, -0.000238340886, -0.000516664644, -0.023275286, -0.00196322985, 0.00171423482, 0.00179946772, 0.0170695651, -0.00570007, -0.00355679775, 0.00287110382, -0.0109098116, -0.021145422, 0.00224861642, -0.00515994243, -0.00916301552, -0.000386899919, -0.0154300286, -0.00939285755, 0.0217430089, 0.0175445713, 0.0125876544, -0.00447041774, -0.0118368389, 0.0323923342, -0.00969165098, -0.00135319203, -0.00583031354, -0.0167784318, -0.0201800875, 0.00659645209, -0.00121911778, -0.0227849577, 0.00134457299, -0.0108638434, -0.0136832325, 0.00705996575, -0.0143267894, -0.000840836961, -0.0133997612, -0.0191534609, 0.00561962556, -0.00473473547, 0.0264624227, -0.0370504558, -0.0107642449, 0.0106952926, -0.0106876316, 0.000985445571, -0.00569623942, -0.00192588056, 0.014020334, -0.0223559197, 0.0156751927, 0.0264011305, 0.00900978781, -0.0043133595, -0.0131699201, -0.00130626606, 0.00051714346, 0.00236736774, 0.0114154629, 0.000399589073, -0.00180617138, -0.0157977752, 0.00236736774, -0.00857309, -0.0192300752, 0.0857462138, 0.0282092169, 0.0180349, -0.0214825217, -0.0100670597, -0.0188929737, 0.00224861642, 0.0444666743, -0.00111568917, 0.0110094091, 0.00406053383, 0.0166252051, -0.000814500963, 0.0148401018, -0.0125416862, -0.0175292473, 0.0131929042, -0.0141735617, -0.0392262898, 0.00593757303, -0.017881671, -0.0160889067, 0.00874164, 0.00295729446, -0.00475388905, -0.00587628176, -0.00128711259, -0.00901745, -0.018770393, -0.00176977983, -0.00787590351, 0.0188623294, 0.0115686907, 0.00886422209, -0.0119977286, 0.00606015511, -0.00731279142, 0.00422908412, 0.0193986259, -0.00699101342, 0.00879527, 0.0125187021, 0.0172227919, 0.0100823818, 0.00755795604, 0.00751198735, 0.00610995432, -0.0190462023, 0.00637427205, -0.0290366467, 0.0210075155, -5.91961652e-05, -0.0120820031, -0.0266156495, 0.0389811248, 0.00415247027, 0.0361310877, -0.0105803721, -0.00270829932, -0.00102949853, -2.03355885e-05, -0.00540893758, 0.0235510953, -0.0175445713, 0.00257422519, 0.00524421781, -0.014234852, -0.0211913902, -0.00225053169, -0.010794891, 0.0148630859, -0.00325608836, 0.0179276392, -0.0119977286, -0.0209768713, 0.021145422, -0.00518292654, 0.0228309259, -0.00173530355, -0.0261406433, -0.0120666809, 0.00902511086, -0.0320245884, -0.0149013931, -8.39161e-05, 0.000581786386, -0.034506876, 0.0147711495, -0.0232446399, 0.019429272, 0.00346294581, 0.00636661053, -0.00607547769, -0.0161961671, -0.00755412504, 0.00953076221, -0.0179736074, 0.0222639833, 0.0250833724, 0.00574220764, 0.0259874165, 0.0284390599, 0.00110898539, -0.0123118451, -0.0108715044, 0.0235510953, 0.0165179446, -0.0145106623, 0.0150622819, 0.00379047, 0.00864204206, 0.0012622131, -0.00341889285, 0.0265696812, 0.00674584927, 0.000691439956, -0.0103275459, 0.0136755714, 0.0178357027, -0.00715573318, 0.0250374041, 0.0130549995, -0.014020334, 0.00845816825, 0.00716339471, 0.0198736321, 0.0158743896, 0.0179123171, 0.0155909173, 0.0064891926, 0.0139743658, -0.00536296936, 0.0207163841, 0.00288068061, 0.00559664145, 0.0303544048, -0.0124574108, -0.00152940385, -0.0209462252, 0.0116299819, 0.00836623181, -0.0154913198, 0.020272024, 0.00621721335, -0.0121356333, 0.00181766343, -0.0155832563, -0.012281199, -6.14107848e-05, 0.0160582624, 0.00253591826, -0.01444171, 0.0174986031, -0.00740855886, 0.0103045618, 0.00498756114, 0.004742397, -0.0071365796, 0.0286535788, -0.00830494054, -0.00428271387, 0.00432485156, 0.00813639071, 0.000686172745, 0.00803679228, -0.00829727948, 0.0162574574, -0.021145422, -0.0158284213, 0.00974528119, 0.00544341374, 0.0151235731, -0.0199042764, 0.0196591131, -0.00638576411, 0.0127868503, 0.00134074234, -0.00600652536, -0.0181881264, -0.00399541203, -0.00184735132, 0.0113694947, 0.00839687698, 0.0375714302, 0.00538212247, 0.00361234276, -0.0148630859, -0.00440529594, 0.00131584285, 0.0121203102, 0.00387857598, -0.00651983824, -0.011652966, -0.00316606718, 0.0146025987, 0.00893317442, 0.00339973927, 0.00556599582, -0.00217966386, 0.00362766557, -0.010994087, -0.0135606509, -0.0209615473, 0.00534764631, -0.0129094329, 0.00178606028, -0.00823598821, -0.0127485441, 0.000672765309, -0.00709061138, -0.00581499096] |
22 Jul, 2024 | Best Programming Languages for Data Science in 2024
22 Jul, 2024
In today’s data-rich world, data science plays a crucial role in unlocking valuable insights from vast amounts of data. With an exponential increase in data production, the need for skilled data scientists proficient in programming languages tailored for data analysis and machine learning has never been more critical.
This article compiles the top programming languages essential for data science, offering a comprehensive overview of their features and applications. Whether you’re an aspiring data scientist or a seasoned professional looking to expand your skill set, understanding these languages is key to thriving in the data-driven landscape.
Table of Content
What is Data Science?
Best Programming Languages for Data Science
1. Python
2. R
3. SQL
4. MATLAB
5. Java
6. Scala
7. Julia
8. Perl
What is Data Science?
Data science is a field that involves using scientific methods, algorithms, and systems to extract insights and knowledge from structured and unstructured data. It combines various disciplines such as statistics, machine learning, data analysis, and programming to analyze and interpret complex data sets. The goal of data science is to uncover patterns, trends, and relationships in data that can be used to make informed decisions and predictions.
Master data science and machine learning with our “Complete Machine Learning & Data Science Program“! Learn from industry experts, gain hands-on experience, and advance your career. Enroll now!
Best Programming Languages for Data Science
Now, let’s explore the top and best-suited programming languages for data science, essential for mastering this dynamic field. These languages are carefully curated to provide a comprehensive understanding of data analysis, statistical modeling, machine learning, and data visualization. Each language offers unique advantages, empowering data scientists to tackle diverse challenges and unlock the full potential of data-driven insights. Whether you’re a beginner seeking a solid foundation or an experienced professional aiming to enhance your skills, mastering these Best Programming Languages for Data Science is crucial for success in the rapidly evolving field of data science.
1. Python
Python is one of the best programming languages for data science because of its capacity for statistical analysis, data modeling, and easy readability. Another reason for this huge success of Python in Data Science is its extensive library support for data science and analytics. There are many Python libraries that contain a host of functions, tools, and methods to manage and analyze data. Each of these libraries has a particular focus with some libraries managing image and textual data, data mining, neural networks, data visualization, and so on. For example, Pandas is a free Python software library for data analysis and data handling, NumPy for numerical computing, SciPy for scientific computing, Matplotlib for data visualization, etc.
2. R
When talking about Data Science, it is impossible not to talk about R. In fact, it can be said that R is one of the best languages for Data Science as it was developed by statisticians for statisticians! It is also very popular (despite getting stiff competition from Python!) with an active community and many cutting edge libraries currently available. In fact, there are many R libraries that contain a host of functions, tools, and methods to manage and analyze data. Each of these libraries has a particular focus with some libraries managing image and textual data, data manipulation, data visualization, web crawling, machine learning, and so on. For example, dplyr is a very popular data manipulation library, ggplot2 is a data visualization library, etc.
3. SQL
SQL or Structured Query Language is a language specifically created for managing and retrieving the data stored in a relational database management system. This language is extremely important for data science as it deals primarily with data. The main role of data scientists is to convert the data into actionable insights and so they need SQL to retrieve the data to and from the database when required. There are many popular SQL databases that data scientists can use such as SQLite, MySQL, Postgres, Oracledb, and Microsoft SQL Server. BigQuery, in particular, is a data warehouse that can manage data analysis over petabytes of data and enable super fats SQL queries.
4. MATLAB
MATLAB is a very popular programming language for mathematical operations which automatically makes it important for Data Science. And that’s because Data Science also deals a lot in math. MATLAB is so popular because it allows mathematical modeling, image processing, and data analysis. It also has a lot of mathematical functions that are useful in data science for linear algebra, statistics, optimization, Fourier analysis, filtering, differential equations, numerical integration, etc. In addition to all these, MATLAB also has built-in graphics that can be used for creating data visualizations with a variety of plots.
5. Java
Java is one of the oldest programming languages and it is pretty important in data science as well. Most of the big data and data science tools are written in Java such as Hive, Spark, and Hadoop. Since Hadoop runs on the Java virtual machine, it is important to fully understand Java for using Hadoop. Moreover, there are many Data science libraries and tools that are also in Java such as Weka, MLlib, Java-ML, Deeplearning4j, etc.
6. Scala
Scala is a programming language that is an extension of Java as it was originally built on the Java Virtual Machine (JVM). So it can easily integrate with Java. However, the real reason that Scala is so useful for Data Science is that it can be used along with Apache Spark to manage large amounts of data. So when it comes to big data, Scala is the go-to language. Many of the data science frameworks that are created on top of Hadoop actually use Scala or Java or are written in these languages. However, one downside of Scala is that it is difficult to learn and there are not as many online community support groups as it is a niche language.
7. Julia
Julia is an extremely fast programming language and it can work with data even faster than Python, R, MATLAB, or JavaScript. Julia is also great for numerical analysis which makes it an optimal language for data science. Julia has mathematical libraries and data manipulation tools that are a great asset for data analytics but it also has packages for general-purpose computing. All in all, Julia has a total of 1900 packages available. It is also able to integrate with other programming languages like R, Python, Matlab, C, C++ Java, Fortran, etc. either directly or through packages.
8. Perl
Perl can handle data queries very efficiently as compared to some other programming languages as it uses lightweight arrays that don’t need a high level of focus from the programmer. It is also quite similar to Python and so is a useful programming language in Data Science. In fact, Perl 6 is touted as the ‘big-data lite’ with many big companies such as Boeing, Siemens, etc. experimenting with it for Data Science. Perl is also very useful in quantitative fields such as finance, bioinformatics, statistical analysis, etc.
Conclusion
Now that you know the top programming languages for data science, its time to go ahead and practice them! Each of these programming languages has its own importance and there is no such language that can be called a “correct language” for Data Science. For example, you may use Python for data analytics and also SQL data management. So, it is upon you to make the correct choice of language on the basis of your objectives and preferences for each individual project. And always remember, whatever your choice, it will only expand your skillset and help you grow as a Data Scientist!
Must Read:
Top 10 Data Science Job Profiles
Top 10 Python Skills For Data Scientists
Top 10 VS Code Extensions For Data Science
Best Programming Languages for Data Science in 2024 – FAQs
Why are programming languages important in data science?
Programming languages are essential in data science for data manipulation, analysis, visualization, and machine learning model implementation.
Which programming languages are best for data science?
Python, R, SQL, MATLAB, Java, Scala, Julia, and Perl are among the top programming languages for data science, each offering unique strengths and applications in data analysis and machine learning.
Can I use multiple programming languages for data science projects?
Yes, it’s common to use multiple programming languages in data science projects based on the specific requirements and strengths of each language for different tasks.
What skills are essential for a career in data science?
A career in data science requires a combination of technical skills such as programming, statistics, and machine learning, as well as soft skills like problem-solving, critical thinking, and effective communication. | NLP/Natural Language Processing (NLP) Tutorial/AI ML DS - Projects/30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated]/Does Artificial Intelligence Require Coding?/Artificial Intelligence – Boon or Bane/Artificial Intelligence Examples/Agents in Artificial Intelligence/What are Diffusion Models?/ML | Common Loss Functions/Loss Functions in Deep Learning/Kaiming Initialization in Deep Learning/Swift - Initialization/Swift – If Statement/6 Best iOS Project Ideas For Beginners/Swift Programming Language/Introduction to Visual Programming Language/What is D Programming Language: Usage and Applications/Best Programming Languages for Data Science in 2024 | https://www.geeksforgeeks.org/programming-languages-for-data-science/?ref=ml_lbp | NLP | Best Programming Languages for Data Science in 2024 | Artificial Intelligence – Boon or Bane, AI ML DS - Projects, Swift - Initialization, 6 Best iOS Project Ideas For Beginners, ML | Common Loss Functions, Artificial Intelligence Examples, What is D Programming Language: Usage and Applications, 30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated], Swift – If Statement, Natural Language Processing (NLP) Tutorial, Loss Functions in Deep Learning, Does Artificial Intelligence Require Coding?, Best Programming Languages for Data Science in 2024, NLP, Swift Programming Language, Agents in Artificial Intelligence, What are Diffusion Models?, Kaiming Initialization in Deep Learning, Introduction to Visual Programming Language | GeeksforGeeks | [-0.0219449401, 0.0142420931, -0.0137997326, 0.0455054604, 0.0134246871, -0.027272502, -0.026926307, 0.00527467113, 0.0168289412, 0.0210794527, 0.0120399063, -0.0409279875, 0.0387931168, -0.0131746577, -0.018261807, 0.0154345436, -0.000427635445, 0.0231950898, -0.037081372, -0.0123284021, -0.0057795397, -0.024195211, -0.0519677736, 0.00650077965, -0.00580838928, 0.0239451807, 0.0284072533, -0.00922226068, -0.0374660343, -0.00363505143, 0.0311191175, -0.0236951504, 0.0324846655, -0.0290034786, -0.0401202, -0.00918860268, 0.00676042633, 0.00200745231, 0.0324846655, 0.0178482942, 0.0073758848, 0.00684697507, 0.0401586629, -0.0108089894, -0.0133862216, -0.00318307406, -0.0346195363, -0.00613054307, 0.0107320566, -0.0151748974, -0.0186368506, -0.0211179182, 0.028561119, 0.0253876615, 0.0147613864, -0.00779901259, 0.000828825403, -0.0195408054, 0.0103473952, -0.0101839136, -0.00404135, -0.00380574493, 0.0110205533, -0.0115494626, -0.00547181023, -0.0124149509, -0.0247722026, -0.0136074014, -0.00975117, -0.0282726232, 0.000904555607, 0.00753455795, 0.0219449401, 0.0449669324, -0.0273109693, 0.0194446407, -0.0494674742, 0.00602476113, -0.0112705827, 0.0173097681, -0.0100012, -0.0115398457, 0.0282726232, 0.010289696, 0.00569779892, 0.0244260076, -0.00600072, -0.0333309211, 0.0408510529, -0.00033597782, -0.000275123137, 0.0307152234, 0.0301766973, -0.0126649812, -0.0348503329, -0.0122610861, -0.0149344839, -0.00282485806, -0.0153960781, 0.0379468612, -0.010635891, 0.0261377506, 0.0305805914, -0.0342348777, 0.00601033634, -0.060122598, -0.0341964103, 0.0417742431, -0.00330808922, 0.00406779582, -0.0314653143, -0.0210794527, -0.0220411066, 0.00215891283, -0.0114917634, -0.0364082158, 0.0051400396, -0.0400048, 0.0440052785, 0.0099435, 0.0202908963, 0.042543564, 0.00109868951, 0.0185983852, -0.0231373906, 0.0430436246, -0.0113571314, -0.0111167179, 0.034081012, 0.0134727703, 0.0187234, 0.00738550117, -0.0331385918, 0.00476018665, -0.000766918936, -0.00666426122, 0.0168289412, 0.0362158827, 0.0220988058, 0.00377208716, -0.0438898802, -0.0139439804, -0.00947709847, -0.0323115699, -0.00876547489, 0.00600072, 0.0250414666, 0.0652001277, -0.0064623137, -0.00161197223, -0.0265993457, -0.0170212723, 0.0192523096, 0.0192523096, 0.0193292424, 0.0178482942, 0.0413126498, 0.0240413453, -0.0272917356, 0.0277148634, 0.00333213061, 0.00375525816, 0.00561605813, -0.00846736226, -0.0107609062, -0.00031494163, 0.0353696272, -0.00324558164, -0.0297535695, 0.0141266948, -0.0251760967, -0.0136747174, -0.0282726232, -0.00676042633, -0.00828945637, -0.0126457475, -0.0110013196, -0.0191561449, -0.0243106093, 0.0143190259, -0.0448515341, -0.0120783718, -0.00405817898, 0.0181079414, 0.0326000638, -0.0220795721, 0.0365236141, 0.0059574456, 0.0241759773, -0.0129053947, -0.016088469, -0.0265224129, 0.0183002725, 0.00874624122, -0.0365620777, 0.00377929956, -0.00655847928, 0.0180213936, 0.00028323711, 0.0279648937, -0.0243683085, -0.0682004914, -0.0484288856, 0.0419281051, 0.0151652806, -0.0249068346, -0.000321553, 0.0339079127, 0.0429282263, 0.00258925301, -0.00390912266, 0.0454285257, -0.0129823266, 0.0165212136, -0.00272869272, -0.00871739164, -0.0209832862, -0.00945786573, -0.00171414798, -0.0213294812, -0.0201947298, -0.0159057546, 0.00789517816, -4.66928e-05, -0.0414280482, -0.00618824223, -0.0528909601, 0.0309844855, -0.0219641738, -0.0260800514, 0.0686620846, 0.013838199, -0.0226757973, -0.0236374512, 0.00730376085, 0.0197908357, 0.00114076189, -0.00405577524, -0.0803173259, 0.0130111761, 0.0314076133, -0.0305805914, -0.0158384386, -0.0183195062, -0.0334270857, 0.0156557243, 0.0369659737, 0.0127899963, 0.0432359576, 0.0663925782, 0.00833753869, -0.0557374544, 0.0179733094, 0.0215025805, -0.0497752, -0.00545738544, 0.000834234699, 0.0130592594, 0.00267099356, 0.00425291387, -0.00776535459, -0.0240798127, 0.00948671531, 0.0269647725, -0.00741915917, -0.00099711481, 0.0352926962, -0.0241375118, 0.0363120474, -0.0248876, 0.0155210923, -0.0185310692, 0.0110974852, -0.0141170779, -0.0068037007, -0.00739030959, 0.00671234354, -0.00294025661, 0.0186272338, 0.00249549164, 0.0054814266, 0.0297535695, 0.0269070733, 0.0402355976, 0.0200985651, 0.0175213329, 0.00912128668, -0.0436206162, -0.0302151628, -0.0412741825, 0.00837600511, -0.0224642325, -0.0189638138, 0.0305036586, 0.0365236141, -0.0366197787, -0.028772682, 0.00840004627, -0.0295035392, 0.0290034786, -0.0221372712, -0.0217333771, 0.0114148306, 0.0295035392, -0.000152286899, -0.0276956297, -0.00428897608, 0.0188868809, -0.011039786, -0.025906954, 0.00796249416, 0.00694314064, -0.0100588994, 0.000448972132, 0.013703567, 0.0754321292, 0.00984733552, 0.00649116328, -0.019627355, -0.0334078558, -0.00854429416, 0.0142036267, -0.0551604629, 0.0185022205, 0.0409664549, -0.0250414666, -0.0293689072, 7.033972e-06, 0.0064959717, -0.0057122237, -0.00267820596, -0.042466633, -0.0583916195, 0.0420819707, 0.0358504541, -0.0370429046, -0.06258443, 0.0291381106, 0.00692390744, -0.0184829868, -0.000558961299, 0.0115590794, 0.0326000638, -0.0296189375, 0.0204447601, -0.0160500016, -0.0426589623, 0.0340617783, 0.00193172216, 0.0387931168, 0.000523199793, -0.00051087857, 0.0215025805, -0.00847697817, -0.00114436809, -0.0123957181, -0.00689505786, -0.0221180376, -0.0230219923, 0.0318884403, 0.0158288218, -0.0308498554, -0.0323115699, -0.008553911, -0.0266955104, -0.0207524896, -0.00390431448, -0.00984733552, 0.0324269682, -0.0141747771, -0.00669791875, -0.0180694759, 0.0321192369, -0.0102608465, -0.0461209193, -0.0194638744, -0.0205409266, -0.00947229, -0.00566894934, 0.00307969633, 0.0143959578, 0.0556220561, -0.0253299624, 0.0406202562, 0.00174900785, -0.0248491354, 0.0168481749, -0.00357013987, -0.0288496148, 0.0109243877, -0.0270417053, 0.0345810726, 0.0352349952, -0.0177328959, -0.00746724196, 0.0142517099, 0.0304459594, 0.0440822132, -0.0061545847, -0.0119822063, -0.021541046, 0.0159346033, 0.00198220904, -0.00839042943, -0.0176463481, -0.0155691756, -0.00229835254, -0.0152325965, 0.0175405666, 0.00592859602, -0.0175501816, 0.0435436852, -0.00405577524, -0.00567375775, -0.0119533567, 0.0061209267, 0.00837119669, 0.0236566849, -0.00359177706, 0.0568914413, 0.0202139635, 0.015540326, 0.0228296611, -0.00256521162, 0.00314701209, 0.0245029386, -0.0087222, 0.0146652209, 0.00955883879, -0.0251183975, -0.0144055746, 0.012539966, 0.0114629138, -0.00767399743, 0.0526216961, -0.056852974, 0.00570260733, 0.0147710023, 0.00856352691, -0.000459490228, 0.00117261661, -0.0199639332, -0.00546700181, 0.00776535459, -0.0551604629, 0.0263877809, 0.00828464795, -0.0077172718, -0.0127707627, -0.0197139028, 0.0404663943, 0.00104099023, -0.0107224397, 0.0270224717, 0.0504291281, 0.00836158, -0.00590455439, 0.0418511741, 0.044928465, -0.0156941898, 0.0134150712, 0.0193580911, 0.015751889, 0.022695031, -0.01022238, 0.000230346137, -0.0309267864, -0.0122803198, -0.00731818564, -0.0054814266, 0.015674958, -0.0410049185, 0.00770284701, 0.019771602, -0.0074432008, 0.0165019799, 0.030811388, -7.45657371e-06, -0.0394278057, -0.0128573114, 0.0716239735, 0.0371390693, 0.00281524169, -0.0147998529, 0.0355619602, 0.0142805595, 0.0265416466, 0.00624113344, 0.0124630332, -0.00876066647, 7.29128951e-05, -0.0100973649, 0.0116071617, -0.00348599511, 0.0127515299, 0.0329847261, -0.0317730419, -0.0119918231, -0.0279264264, 0.00446207356, 0.00366390101, 0.0161077, -0.0214448795, 0.00571703212, -0.0198100694, 0.00798653532, -0.0121937701, -0.0111648012, -0.0296574049, 0.00159874954, 0.00513042323, -0.0257146228, 0.0166462269, 0.0305421259, -0.011107102, 0.0382930562, 0.0156268738, 0.024272142, -0.0369852073, -0.0468133092, 0.00817405712, 0.029715104, 0.0148479352, 0.0351965316, 0.0185118355, -0.00468085, 0.00621709181, -0.0187618658, 0.00501983287, 0.0164154302, 0.00695275702, 0.0205601584, -0.0221949704, 0.00687582465, -0.00240293262, 0.00515446439, 0.0234066546, 0.0152422134, 0.037158303, 0.00545257702, -0.028426487, 0.0214256477, 0.00345474132, 0.0199447, 0.032677, -0.00766918948, -0.0259261876, -0.037216004, -0.000172947432, 0.01172256, -0.00411107, 0.0244260076, 0.0472364351, 0.0252722632, 0.00211323425, 0.0142613258, 0.0190118961, -0.0253107287, -0.0118764248, -0.0370621383, 0.0117129432, -0.0107320566, -0.00491405092, 0.019560039, 0.0152133638, -0.0167327765, 0.0328116268, -0.00796730164, -0.0431205593, 0.000251682824, 0.000687582477, 0.000207056088, -0.0100300498, -0.021675678, -0.00541411107, 0.0117033273, 0.0388315804, -0.0476210974, -0.0119629735, 0.0062315166, 0.0127226803, 0.0357927568, 0.00424810592, 0.0062651746, 0.00979925226, -0.0415049791, -0.00692390744, 0.0153479949, -0.0169539563, -0.0233297218, -0.0222526696, 0.0192907751, -0.0150402663, -0.0189445801, 0.00766438106, 0.0309075546, 0.0137420334, -0.0180502422, 0.00236807251, -0.00604880275, 0.0132419728, 0.0224065334, 0.0391777754, -0.00306527154, -0.00893376395, 0.00849621184, -0.0186464675, -0.00207356596, 0.0282533895, -0.0103473952, -0.036542844, -0.0365043804, 0.015751889, 0.00958288, 0.00544776907, -0.021060219, 0.0236182176, 0.0176271144, -0.00285611185, -0.00503425766, -0.0079817269, -0.00195696554, -0.0155499429, -0.0120591391, 0.0425051, 0.0489674136, 0.00890972279, -0.00714508817, 0.00025003, -0.0131265745, -0.00544296065, -0.00733741885, 0.0217910763, -0.0149248671, 0.0132996729, -0.0162327159, 0.00444524502, 0.0238297824, 0.0160788521, -0.00853467733, -0.0054044947, -0.00568818254, 0.00940497406, 0.0957807228, 0.00676042633, 0.0374275669, -0.0538141467, 0.00579396449, 0.0373891, -0.0135400863, 0.00786152, -0.0251376312, 0.021675678, 0.0391008444, -0.00529871276, -0.00133910298, 0.034215644, -0.0241567437, -0.00221541012, 0.0181464069, -0.0191561449, -0.00162759912, -0.00105601607, -0.017319385, 0.00764033943, 0.00758264028, 0.0275417659, 0.0109147709, 0.0172616858, 0.0185503028, -0.00123812933, -0.0221372712, 0.00639980612, 0.0396970697, 0.00426493492, -0.0156364907, -0.00483952276, 0.0304459594, 0.0273109693, 0.0063180658, 0.0155980252, -0.0123572517, -0.0102800792, -0.000569178839, -0.0118379584, 0.0150402663, -0.00954441447, -0.0110013196, -0.018271422, -0.0141363116, -0.0268109087, 0.0102031473, -0.00223344099, 0.0104050944, 0.0133862216, -0.0162231009, -0.00668830238, 0.0118860416, -0.0133669879, -0.0064623137, -0.00477220723, -0.00723644486, -0.0182041079, -0.00450054, -0.0165981445, 0.0197331365, 0.00289457804, 0.00665464438, -0.0285226516, -0.00349561172, 0.0187907163, 0.0118764248, -0.0202524289, 0.00746243354, 0.00176463474, 0.0151941301, 0.0316576436, -0.0012074766, 0.00410145335, 0.0038682525, 0.00853467733, 0.0187234, -0.00161317433, 0.00521697197, -0.039466273, -0.00960211363, -0.00359898945, -0.0127611468, -0.0182521902, -0.00247145025, 0.0362351164, -0.0324269682, 0.0378314629, -0.0159634538, -0.00570260733, -0.0359658524, 0.0151171982, 0.0269070733, -0.00569779892, -0.0143382587, 0.0210025199, -0.0124534173, -0.00435388787, 0.0333116874, -0.0180117767, 0.000619665661, 0.0145979049, 0.0117802592, -0.0102993129, 0.00501502492, -0.00635172334, -0.0288688485, 0.0331962891, -0.0400432646, 0.0162615664, 0.0114629138, -0.00280081667, -0.0276571643, -0.000373241899, 0.0185791515, 0.0315422453, 0.0176751968, -0.000396081159, -0.0336963497, 0.0365236141, -0.021541046, -0.0328116268, 0.00259646541, 0.0142997922, -0.0167423934, 0.0202139635, -0.0133285224, 0.0407741219, 0.039812468, -0.0239451807, 0.000834234699, 0.00884721521, -0.0465825126, -0.00324077345, 0.0263300817, -0.00511599844, 0.0105974255, -0.0297728032, -0.00284409127, -0.0461593829, 0.0096982792, 0.0277725626, -0.0116937105, 0.0320038386, 0.015607642, 0.0049765585, 0.0331770554, -0.0091260951, 0.0201370306, 0.0250799321, -0.046005521, -0.0126938308, -0.00384180713, -0.0262723826, -0.0486596823, 0.000413511152, 0.000821011956, 0.000614256365, -0.0289265476, 0.0179636944, -0.0441976115, 0.00766438106, -0.0583531559, 0.00983771868, 0.000254086975, -0.0138670485, -0.0320615396, -0.0365236141, 0.0359273888, 0.0138093494, -0.0107993726, 0.0107993726, 0.0220988058, -0.000332071097, 0.00914051943, -0.00349561172, -0.0279071946, -0.0176944304, 0.0105974255, -0.00701526459, 0.0163865816, -0.00228272588, 0.0140786124, 0.0506983884, 0.0105878087, 0.00143286423, 0.00653924607, -0.0246568043, 0.0212333165, -0.0152902957, 0.0124534173, 0.0451592654, -0.0132131232, -0.012270703, 0.0457747206, 0.00918860268, -0.01472292, 0.00953479763, -0.00271186372, 0.0464286469, 0.00430340087, -0.00159273914, -0.0223103687, -0.00830388069, 0.0350234322, 0.0133189056, -0.0289265476, -0.0167231597, 0.0422743037, -0.0324269682, 0.0118091088, 0.0266570449, -0.0381584242, 0.016021153, 0.0140209133, 0.0201947298, -0.00643346412, 0.00632768217, 0.0100396657, -0.0168577917, -0.0295035392, 0.00416396093, -0.00956845563, -0.00339463796, -0.0291958097, 0.00617862586, 0.0428512953, 0.0280610584, 0.0257915556, -0.00340665877, -0.0140978452, -0.0262531489, 0.00480586523, -0.0173001532, 0.0125784324, 0.0425051, -0.0198100694, 0.0237528495, 0.0211371519, -0.00444524502, 0.000962855876, 0.0027839879, -0.00549104344, -0.0302920956, -0.0040702, -0.00523139676, 0.018684933, -0.0291573443, -0.0207717232, 0.0401586629, -0.00382257393, 0.0046351715, 0.00955883879, -0.00876547489, 0.0189157315, 0.00502944971, 0.00755859911, 0.009270343, -0.0206370912, 0.0238874815, -0.0239644125, 0.00364947622, -0.00557759218, 0.0143574914, 0.0327731632, 0.017386701, 0.00139079185, -0.000277827814, -6.25826287e-05, 0.0388892815, -0.0117994929, 0.00748647517, -0.0223873015, -0.000745882746, -0.017319385, 0.0313306823, 0.0165212136, 0.00357735227, -0.00549585186, -0.0311191175, 0.00556316739, -0.0486981496, -0.019906234, -0.00603918592, -0.0084096631, -0.00125495822, 0.0130977249, -0.013905514, -0.0241567437, -0.00551989302, -0.0112321163, -0.0289842468, 0.0468133092, -0.02944584, 0.0022202183, -0.00426974287, 0.00567375775, -0.0188772641, 0.00714027975, -0.0549296662, -0.00714027975, 0.0157807395, -0.0010938812, -0.000617261569, 0.0242529102, 0.0201370306, 0.017175138, 0.00355811906, -0.0120206727, 0.0104916431, -0.00964538753, -0.0303305611, -0.0114148306, -0.0195888877, -0.00569779892, -0.00510157365, 0.0104147112, 0.0424281657, 0.0098761851, 0.0238490142, -0.00859237742, -0.00565933296, -0.00293064, -0.0126745971, -0.0292535089, 0.0406587236, -0.00305325096, 0.00443562819, -0.0101358313, -0.00479624839, -0.020175498, -0.0358696878, -0.0291958097, 0.00313018332, -0.0220795721, -0.0152133638, -0.0152614461, -0.010087749, -0.00786152, 0.0027912003, -0.0733934194, 0.0283687878, -0.00608246028, 0.0269647725, 0.0143478755, 0.00799615122, -0.01547301, 0.0230027605, 0.00794326048, -0.0226180982, -0.0401202, -0.00275513832, 0.00570260733, -0.0256184582, -0.012203387, -0.00564490817, -0.00979444385, -0.0104531767, -0.000290599768, 0.0573530346, 0.0390046798, 0.00746243354, 0.0181464069, -0.00759225711, 0.0331193581, -0.0111455675, -0.055122, -0.0534294881, -0.0323692672, 0.0225988645, 0.0105685759, 0.00287053664, 0.00173578516, 0.0265031792, -0.0240221135, 0.0128573114, -0.0103858616, -0.00098689727, 0.0080153849, 0.0107801398, 0.00436590845, -0.000604639819, 0.0329077952, -0.00644308049, -0.0126553643, -0.0145305898, -0.000350703136, 0.00422166, -0.00193292415, 0.00612573465, -0.00640461454, -0.0102608465, -0.0449669324, -0.0290611796, 0.0109628532, -0.00306527154, -0.0239451807, 0.0322154, 0.0226373319, 0.0463517159, -0.0291381106, 0.0340617783, -0.00354369427, -0.00523620518, 0.00925111, 0.0163385, 0.0215987451, 0.00873662531, -0.00320471148, -0.000958047633, 0.00288496143, -0.00232960633, 0.0314460807, -0.00728933606, 0.0265608784, -0.0123187853, -0.00607284391, 0.0258877203, 0.0150114158, 0.0108955381, 0.00693833223, 0.0140209133, -0.00453900592, -0.0185118355, 0.0230027605, -0.00700564822, -0.011385981, -0.0285034198, 0.00263493159, 0.0403894596, 0.0175405666, -0.019906234, 0.0118764248, 0.00747205038, 0.00664983643, 0.0295227729, -0.0158288218, 0.00576992286, 0.00589974644, -0.00384661532, -0.0313883796, -0.00689986628, -0.0198485348, 0.00637095654, 0.0230219923, -0.0148190856, 0.00952037331, 0.0202139635, 0.00751532475, -0.0141363116, 0.0136843342, -0.000242667331, 0.0417357758, -0.0336963497, 0.000908762857, -0.0130688753, -0.0161846336, 0.0379468612, 0.0220026392, 0.0209448207, 0.00934246648, 0.00238850759, 0.00282004988, 0.0165404454, 0.0193869416, 0.0319076739, -0.0196658205, 0.00146171381, 0.0163096488, -0.00329126022, 0.00311816251, -0.0042769555, -0.0145594394, -0.00855871942, 0.00164202391, -0.00482750218, 0.0306959897, 0.00825099, -0.0135208527, 0.00339944637, -0.0114148306, -0.0115783121, 0.00722682849, -0.0214833468, 0.0195696559, -0.00927515142, 0.0128284618, 0.0210986845, 0.00398365082, 0.00785671175, -0.0229835268, 0.00126096862, -0.0271571036, 0.0051400396, -0.011453297, 0.0243683085, 0.0152518293, -0.00813078322, -0.0173674673, 0.00959730521, -0.0046520005, 0.00249068346, -0.00757783232, -0.000366630527, -0.00883759838, -0.0106070414, -0.0115686953, 0.00248587504, -0.000387065666, 0.0113475155, 0.00420242734, -0.00155066676, 0.00196658215, 0.000860680186, 0.0352926962, -0.0471210368, 0.00303401775, 0.00962134637, -0.00574107328, 0.00576992286, 0.00957326405, 0.00409183698, -0.00662579481, 0.0183579717, 0.00294266082, 0.000557759195, 0.00847697817, 0.00543815224, -0.0258877203, 0.00551027665, -0.000808390265, -0.0228296611, 0.0220795721, 0.0246952698, -0.00555835897, -0.0188676473, 0.00608246028, 0.00293064, 0.0218295418, -0.0142901763, 0.00177545333, -0.00272388454, -0.0302920956, 0.00634691538, 0.00377449137, 0.0269840062, -0.000902752508, 0.00506791566, 0.00991465058, 0.0263108481, -0.00164563011, 0.028291855, 0.0161365513, 0.0178867616, -0.0298497342, -0.0232912563, 0.00181391952, -0.0273879, -0.00419761892, 0.019771602, -0.0221180376, 0.00728452764, 0.0248876, 0.0256184582, -0.00271186372, 0.00418559834, 0.0226373319, -0.0154537773, 0.0311768167, -0.0172136035, 0.00467844587, 0.0147036873, -0.00698641501, 0.0284649525, 0.017252069, -0.0155210923, -0.0107993726, 0.00967904553, 0.021406414, 0.0310037192, 0.00245942967, 0.00201947312, 0.0141170779, 0.0029450648, -0.00761629827, 0.0103762448, -0.0166654605, -0.0255799927, -0.0102319969, 0.00231518154, 0.0218680073, -0.00433705887, -0.00477701519, 0.0128284618, -0.00299795577, 0.0055150846, -0.00549585186, 0.0224065334, -0.000935809396, 0.0118860416, -0.00871258322, -0.00635653175, -0.0244452395, -0.000747685845, 0.024406774, -0.00654886244, -0.00531313755, -0.0201947298, 0.0329654925, -0.0146363713, 0.0134054543, -0.00300516817, 0.00472412445, -0.00321432785, 0.00982329343, 0.0140689956, -0.029715104, 0.00336098019, -0.0118379584, 0.000247325341, 0.0156172579, 0.00425051, -0.0155691756, 0.00985695142, -0.00874624122, 0.00566414092, -0.00828464795, 0.0310998857, 0.0212910157, -0.0303497948, 0.0323500335, 0.0215025805, 0.0073422268, -0.0205601584, 0.00533237029, 0.0221757367, -0.0148479352, -0.011385981, 0.0048154816, 0.0104243271, -0.00738069322, 0.00773650501, 0.00746724196, 0.00507753203, 0.0165308286, 0.00885202363, 0.00339704216, 0.0178482942, 0.0192715432, -0.017252069, -0.00720759528, 0.0161942504, -0.0108955381, -0.00802980922, 0.0124630332, -0.0220603384, -0.0323308, 0.0144055746, 0.0112898163, -0.0044212034, -0.025003, -0.00868373364, 0.00723644486, -0.0401202, 0.00220819749, -0.00220098509, 0.008587569, -0.0120206727, -0.013636251, -0.0179829262, -0.00891453121, 0.0108186053, -0.0144825066, 0.0204832274, -0.00424089329, 0.0143478755, 0.00893376395, -0.037292935, -0.0114821466, -0.000915374258, 0.0107993726, 0.0266955104, -0.0154826269, 0.0204447601, -0.009236685, 0.00873662531, 0.0221757367, 0.00480826898, 0.000857675, -0.022445, -0.0107609062, -0.0154537773, 0.00644788891, 0.0212910157, -0.0137420334, -0.012136071, -0.00361341424, 0.000102701626, 0.00720759528, -0.0118283425, -0.00766918948, 0.00495251734, 0.00455102697, 0.00965019595, -0.00446447777, -0.00289938622, 0.0033032808, 0.00681331754, 0.00739511801, -0.000506671378, -0.0144728897, -0.00162880123, 0.00341387116, 0.0204832274, 0.0334655531, 0.0187714826, 0.0208678879, 0.00708258059, 0.00648635486, -0.00533237029, -0.039774, 0.0224834662, -0.0143094091, 0.0225219335, -0.0150594991, 0.0157230403, 0.0124438, -0.0165692959, 0.00254838262, 0.025291495, -0.0359273888, 0.00277196709, -0.00507272407, 0.0262723826, 0.0120399063, -0.022560399, 0.00853467733, -0.00589974644, 0.0178290624, 0.0183195062, 0.0217718426, -0.0380430259, 0.0209063534, 0.0295612384, -0.00771246385, -0.0066065616, -0.0168193262, 0.0132804392, -0.0033128974, -0.00181031332, 0.00754898274, 0.0100492826, 0.000587209885, -0.0012922223, 0.0152999125, -0.021060219, 0.00273109693, -0.0165308286, 0.0313691497, -0.00926072616, 0.0065296297, -0.00288736564, 0.00244981307, -0.0247722026, 0.0270994045, -0.0111936508, -0.0268493742, -0.015607642, -0.0101839136, 0.0201562643, 0.00238369941, -0.0117610265, 0.011107102, -0.00482509797, 0.0348503329, -0.00174059346, 0.000852866739, 0.0108955381, -0.0117033273, -0.0201177988, -0.0117514096, 0.0214448795, -0.0208486542, -0.0166366119, -0.00514965644, 0.00232239394, 0.0300228316, 0.0111648012, 0.00461353408, -0.0180117767, 0.0214448795, 0.000133579728, -0.00899627153, -0.00187762908, -0.00731818564, 0.0228873603, 0.0328116268, 0.000723043457, 0.00498617487, 0.0238490142, 0.0022021872, -0.00201105862, -0.00905397069, -0.00793364365, -0.00358696887, -0.00599591155, 0.00362062664, 0.00996273383, 0.0147421528, 0.0171847548, -0.0193196256, 0.00772208, 0.0172713026, -0.00494770892, 0.0105878087, -0.0157230403, -0.00771246385, -0.00496694213, -0.0158288218, -0.0284841862, 0.0233104881, 0.00840004627, 0.0252722632, -0.0176078808, 0.0360235535, 0.0187234, -0.00164563011, -0.0207717232, 0.0298305023, -0.00260127359, 0.0234258864, 0.00432744203, -0.0075009, 0.00777497143, -0.0253684279, 0.00378891616, -0.0118956575, 0.0246952698, -0.00550066, 0.00691909948, -0.0144728897, 0.034292575, 0.015819205, -0.000867892581, 0.0266762767, 0.00229594857, -0.019771602, -0.0046183425, -0.040350996, -0.0055824006, -0.00365668861, -0.0175309498, -0.0136458678, -0.0097319372, 0.00481307739, -0.00984733552, -0.0166750774, 0.0149056343, -0.0238490142, -0.0466594435, -0.026714744, -0.00524582155, -0.00705373101, -0.0112705827, -0.0097319372, -0.00999158341, -0.0131265745, -0.00336578838, -0.0178194456, -0.00557759218, 0.00751532475, 0.00736146, -0.0275994651, -0.00193172216, -0.0154441604, -0.00928476732, -0.00827983953, 0.0235797521, 0.0337155834, 0.00230195886, 0.00394037645, -0.0378314629, 0.0205024593, 0.0139632132, -0.00889529753, 0.00551027665, -0.00254838262, 0.0121745374, 0.00767399743, -0.021271782, -0.00222142041, 0.0123187853, 0.00361822243, 0.00498136692, -0.0150691159, 0.0178771447, 6.04790112e-05, 0.00253876601, 0.00891934, 0.00187762908, -0.0183483548, 0.015405694, -0.00394518487, 0.0286188181, 0.0120399063, -0.0263300817, -0.019887, 0.00124293752, -0.0274840668, 0.0248106681, 0.0053516035, -0.0171847548, -0.0270032398, -0.0163385, -0.00465440471, 0.000202247815, 0.0135112358, -0.00516408123, 0.0146363713, 0.0268301424, 0.0148383183, 0.0190888289, 0.00252914964, 0.00422887271, -0.010905154, -3.33620619e-06, 0.0392162427, -0.0248876, -0.00257482822, 0.00951075647, 0.022425767, -0.00917898584, -0.00292102341, 0.0283880215, -0.0220795721, 0.0256376918, 0.0257915556, 0.0356773585, 0.00258444459, -0.00458708871, 0.0329077952, 0.0156172579, 0.0110013196, -0.0193388592, -0.0254838262, -0.020040866, -0.0135208527, -0.00191008486, -0.0233297218, 0.00249549164, -0.0172136035, 0.00901550427, -0.0066065616, 0.00403173361, -0.00268541835, 0.0171943698, 0.00829907227, -0.0161269344, -0.00251712883, -0.0129630938, 0.0132612064, -0.00250270404, 0.0198100694, -0.00978001952, -0.0080490429, 0.0096982792, 0.00549104344, -0.00945786573, 0.0109628532, 0.00874143373, 0.0187811, 0.013905514, 0.0389277488, 0.00921264384, -0.00935208332, 0.00699603138, 0.0208294224, -0.0139439804, 0.0195408054, -0.00152662548, -0.0174924824, -0.00106563268, -0.0134246871, 0.00609688507, -0.00120146631, -0.00265176035, -0.0127611468, -0.0212910157, -0.0016648632, -0.008486595, 0.00367351761, -0.0050102165, -0.0156268738, 0.0206755567, -0.0130592594, 0.00326241064, -0.000119680823, 0.0184829868, 0.027060939, 0.0150883486, 0.00475057, 0.00800096, -0.0137612661, -0.0240798127, 0.00326000643, -0.000359117606, 0.0214448795, -0.0071787457, 0.00689986628, 0.0111455675, -0.0178290624, 0.0230027605, -0.00616900949, 0.000437853, -0.00385623192, -0.0273494348, -0.0111359516, -0.0183772054, -0.0172905363, -0.00524101313, -0.0104050944, -0.0119245071, -0.0167135429, 0.0152806789, 0.0096646212, 0.0086981589, 0.0119148912, 0.0129727097, -0.00533237029, -0.00927515142, 0.00240052841, -0.0112513499, 0.0159634538, -0.00419761892, -0.0175405666, -0.00717393775, 0.0192811601, 0.00787594449, 0.0186945498, 0.0057458817, 0.0109628532, 0.00785190333, -0.00910205394, 0.009236685, -0.00187402288, -0.00882317405, -0.0212140828, -0.00416636514, -0.0288303811, 0.0306575242, 0.000943021791, 0.007871137, 0.0104243271, 0.00218896451, -0.0105878087, 0.00226469478, 0.0116937105, -0.0402355976, -0.0341771767, -0.0192715432, -0.0170308892, -0.013155424, -0.00156629365, -0.0233104881, -0.0123091694, -0.0103377784, -0.0255992245, -0.00842408743, -0.00239331601, -0.00515446439, 0.0183675885, 0.0211756174, -0.00928957574, -0.00131025328, -0.00249789585, 0.0072652949, -0.000235454936, 0.0166462269, 0.0268109087, -0.0150691159, -0.0139247477, 0.000769323087, -0.0181175582, -0.0111455675, -0.00919821858, 0.00157470815, -0.00593340397, 0.0192523096, -0.00677485112, -0.00899146311, -0.0098088691, 0.0115109961, 0.00414232397, -0.0154153109, -0.0186368506, -0.0216564443, 0.0138189653, 0.00026084861, -0.0300228316, -0.00236687041, 0.0168000925, -0.0135593191, 0.0204832274, 0.0107993726, 0.00850582775, 0.00644308049, 0.0104531767, -0.0328500941, -0.0121456878, -0.00544776907, -0.0219641738, 0.00482509797, -0.0141555443, -0.0010319748, -0.0082029067, -0.00777016301, -0.00753936591, 0.00844812859, -0.0044212034, -0.00661137, -0.00725086965, 0.0166750774, -0.000802980969, -0.021675678, -0.0122418534, 0.00356533146, -0.00457025971, 0.015405694, 0.0401586629, -0.00363264745, -0.0219449401, 0.0139535973, -0.00714989612, -0.000743478595, 0.00304603856, -0.0131458081, 0.0114148306, -0.0073758848, 0.0115494626, -0.0153576117, 0.0170308892, -0.0187041666, 0.000914773205, -0.00579396449, 0.000228543038, 0.00885683205, 0.0234835856, -0.037485268, -0.025560759, 0.0244837068, -0.00176583685, 0.00985695142, 0.0104050944, 0.0201370306, 0.0198677685, -0.0170982052, -0.0166366119, 0.0129053947, -0.00475778244, 0.0114821466, 0.0203101281, 0.0160788521, -0.0169251077, -0.0039187395, 0.00363264745, -0.0266185775, -0.0155595588, -0.0218680073, 0.0114436802, -0.00139079185, 0.00842408743, -7.80592454e-05, -0.0124149509, 0.00587089639, -0.0146171385, -0.00222502649, -0.0180790927, 0.00196898612, -0.00632768217, -0.010020433, 0.000772328232, -0.00913090352, 0.0086645009, 0.00506791566, -0.00885683205, -0.00407260377, -1.31006555e-05, 0.0246183388, 0.0042072353, 0.0159826875, 0.0196754374, 0.00688063307, 0.00827022269, 0.00400048, -0.00539487787, 0.00582281407, 0.0135593191, 0.00206274749, 0.011587929, -0.0086308429, 0.00162399292, 0.0018427691, 0.00536122, -0.0221372712, -0.0145402057, -0.0212910157, 0.00448371097, 0.025003, -0.0118860416, 0.00673157675, -0.00928476732, 0.0298882015, 0.0113282818, 0.0222334359, 0.00627479143, 0.00502464129, 0.0341771767, 0.00443562819, 0.00998196658, -0.00486116, -0.0307921562, 4.42135388e-05, 0.00890972279, -0.0103762448, -0.0403894596, -0.00547181023, 0.0201562643, 0.0120206727, -0.00191248907, 0.034157943, 0.00993388426, 0.0215025805, 0.00463757571, -0.00833273, -0.0198293012, 0.00414713193, 0.0275032986, -0.0162615664, -0.00545738544, 0.0130688753, 0.00398124708, -0.0111455675, -0.0238874815, 0.0160692353, 0.012953477, -0.000527106517, 0.0322923362, 0.0016600549, -0.00625555823, 0.00510157365, 0.013290056, -0.0166750774, -0.00106743572, -0.0141747771, -0.00281524169, -0.0127996122, 0.00394518487, -0.00971270353, -0.00237768912, 0.00079035922, -0.00783267058, -0.020040866, -0.0101069817, -0.00468325429, -0.00785190333, -0.0191080607, -0.010087749, -0.0281956904, 0.00810674205, -0.00484433118, 0.0270417053, -0.0305036586, 0.00785671175, 0.00636134, -0.000264755334, 0.0013018389, 0.00258444459, -0.027195571, -0.000301117863, 0.000955643482, 0.00375525816, -0.00611131, 0.00588532165, -0.0183291212, -0.019771602, 0.0024329843, -0.0125976652, -0.0291573443, 0.00560163334, -0.000122310346, -0.0086308429, 0.0126265148, -0.00433225045, -0.0136843342, 0.00666906917, -0.0153672285, 0.0191369113, -0.0107897557, 0.0157038067, -0.0130784921, -0.00985695142, 0.00195696554, -0.00390912266, 0.00261329417, -0.00473133661, -0.0158576723, 0.0228488948, 0.0130977249, -0.0246568043, -0.00909724552, -0.00288015325, -0.0198677685, -0.00299795577, -0.0297343358, 0.000457086076, 0.00231878785, -0.0140882283, -0.00684697507, 0.0049765585, -0.0226373319, -0.00874143373, 0.0026036778, 0.0013138596, -0.0109340036, 0.0194254071, 0.00460632192, 0.00212285086, -0.000481728464, 0.00228272588, 0.00548623502, 0.00899627153, -0.00851544458, -0.0130784921, -0.0139920628, -0.00181512162, -0.00400048, 0.00131025328, -0.000844452239, 0.011039786, 0.0221757367, 0.0125111165, -0.000298863975, 0.00206875778, -0.00873662531, 0.0187234, -0.00511119, 0.0027407133, 0.00480105681, -0.00772688864, -0.0115783121, -0.0290227123, 0.00713066291, 0.0215602797, -0.00306527154, 0.0355042592, -0.0181175582, -0.0146459881, 0.00370957959, 0.0126265148, -0.0273494348, 0.0106070414, 0.00755859911, 0.00881836563, 0.00318788248, -0.00353167369, -0.00349320751, 0.00312297069, -0.00284889946, -0.0139824469, -0.00829907227, -0.00193412625, -0.00288496143, 0.00200384622, 0.021194851, 0.0046015135, -0.013357372, -0.00153504, 0.00212765904, -0.000720038312, 0.0244644731, -0.00919821858, 0.0180310085, -0.0181079414, 0.013636251, -0.0150691159, -0.0059237876, 0.0154441604, -0.00232720235, 0.0100492826, -0.0246375706, 0.0151075814, 0.00218295422, -0.00739030959, -0.0117706433, 0.00788075291, 0.0132323569, 0.0111840339, -0.0101742977, 0.00430820929, -0.00096165383, -0.0162711833, 0.0121745374, -0.00714508817, -0.00335857598, 0.023175858, 0.00567375775, -0.000739271403, -0.037216004, 0.021271782, 0.0325616, 0.0173290018, -0.00796249416, 0.00550546823, 0.00491405092, 0.000565272116, 0.012203387, 0.0290996451, -0.0198485348, 0.00256761583, -0.0143286418, -0.00858276058, -0.000810794358, -0.0215795115, 0.000795768516, 0.00189205387, 0.00445005298, 0.0293304417, -0.0168097094, -0.0124245677, 0.0160692353, 0.00254357443, -0.0252530295, 0.00266618514, -0.00326721882, -0.0125688156, 0.00647673849, 0.0170693547, -0.0275032986, 0.0125111165, 0.0125495829, -0.00251953304, 0.000864887435, 0.00827022269, -0.00943863206, -0.00989541784, 0.00576030649, -0.0350042, 0.0110013196, 0.00152422127, 0.0033201098, 0.00611131, 0.0104243271, 0.0125688156, 0.00109508331, 0.00369275059, 0.0215987451, 0.0246568043, 0.000425832346, -0.0305421259, -0.0134823862, 0.010087749, 0.00416876934, 0.0187137835, 0.000484733639, 0.0143671082, 0.00514965644, -0.00586608844, -0.0136554847, -0.00218175212, -0.00940497406, -0.010020433, 0.0033369388, 0.0172809195, -0.00468085, 0.0199254677, 0.00296429801, -0.0112609668, -0.0103858616, -0.0181560237, 0.00509676524, 0.0131361913, 0.00426493492, -0.0134343039, -0.00118583941, 0.0108666886, -0.0265801121, -0.00353648188, 0.00946748164, 0.00635172334, 0.039812468, 0.027407134, -0.00602956954, -0.00450534839, -0.00656328723, -0.015136431, -0.00133549678, -0.00827503111, -0.0132131232, -0.00588051323, -0.00694794906, 0.0331962891, -0.0260031186, 0.00624113344, 0.00598629517, -0.0232143234, 0.0114052147, -0.00242096349, 0.016905874, -0.00577473128, 0.0367736407, 0.0033297264, -0.015607642, -0.00389950629, -0.010770523, -0.0129246274, 0.015338379, 0.0181848742, -0.0107993726, 0.00536602829, -0.0229835268, -0.00900588837, -0.00739992643, 0.00911647826, 0.0102127632, -0.0191176776, 0.0196850542, -0.00746724196, 0.00958768837, -0.00110530085, 0.0153672285, 0.0103473952, 0.00387065671, -0.00674119312, 0.00653443765, 0.00353888609, 0.0114340642, -0.0301574636, -0.0163000319, 0.0143094091, -0.0102608465, 0.00996273383, -0.000944223837, 0.0177521296, -0.0134535367, 0.00606322754, -0.0117802592, -0.00328885601, 0.0269070733, -0.0245991051, -0.00920783542, 0.0323885, 0.000753095141, -0.00370717561, 0.0106070414, 0.00927515142, 0.00472893286, 0.01322274, 0.0194350239, 0.000699603173, 0.00935689174, -0.00150258408, -0.0163192656, -0.024541406, 0.00142444973, 0.0200985651, 0.020040866, -0.0103954775, 0.0169924237, 0.00332732219, -0.00361341424, -0.0235797521, 0.0199254677, -0.00980406068, 0.00010217572, 0.0046688295, -0.012405334, 0.0110494029, 0.0123476349, -0.0334078558, -0.0279456601, -0.0180310085, 0.00601514475, -0.00182353612, 0.0239836462, 0.000292252604, 0.0101165986, 0.00764033943, -0.0160692353, 0.00527467113, 0.00126096862, 0.0177328959, 0.0355811901, 0.01022238, -0.0193388592, 0.0312345158, -0.00446928618, 0.000902752508, 0.0026036778, 0.0180310085, -0.0124149509, 0.0237528495, -0.0036879424, -0.0181560237, 0.00895299669, 0.00459670508, -0.0159730706, -0.0252530295, 0.00231758575, -0.00926072616, -0.0197908357, 0.0179829262, 0.00613054307, 0.00712585496, -0.00670272717, 0.012136071, 0.00250510825, 0.0162519496, 0.00635653175, 0.0062315166, 0.0278302617, -0.00276956311, -1.19643255e-05, 0.0160019193, 0.0275802314, -0.00443562819, -0.0145498225, -0.012953477, 0.0278110281, -0.0157999732, -0.00831349753, -0.0114629138, -0.0157807395, -0.00216732733, 0.0101646809, -0.0163385, 0.0214641131, -0.00263733556, -0.00314701209, -0.00198701723, 0.0189061146, 0.00839523785, -0.00334174698, 0.00019713903, -0.011107102, -0.00460872613, 0.00517850602, 0.00282726227, -0.00722202, -0.0142709427, 0.0056929905, 0.0107128238, -0.012270703, 0.0196465869, -0.0150594991, -0.00693352427, -0.00122550759, -0.00650558807, 0.00488279713, 0.00403173361, 0.0118764248, 0.0229258277, 0.00219737901, -0.0247914363, 0.00682293391, -0.00214328594, 0.0133766048, 0.00526986318, -0.0156557243, -0.0222526696, -0.00295708561, 0.022906594, 0.00418559834, 0.00568818254, -0.0114340642, -0.000186170175, 0.00190407457, -0.00743839238, -0.00463276729, -0.0168674085, -0.00142204564, -0.0116360113, 0.028772682, 0.00979925226, -0.00234282925, -0.00363505143, -0.0136170182, -0.0107801398, -0.0183098894, 0.00116360118, 0.00490203034, -0.0061209267, -0.0160596184, -0.021541046, -0.0142709427, -0.0291188788, 0.00784228742, 0.00255799922, 0.00515446439, -0.00735665159, 0.00273590512, 0.00917898584, 0.0176078808, -0.0225219335, 0.00544776907, -0.0139824469, -0.0136939501, -0.00483711855, 0.0203870609, 0.0155787924, 0.00944344047, 0.0148767848, 0.0118860416, 0.0237720832, -0.0194734894, -0.00128020172, 0.0117994929, -0.00532756234, -0.00663541164, 0.00482750218, 0.000526204938, -0.0025531908, -0.00790479407, -0.0116937105, -0.00293304422, -0.00689025, -0.00287774904, 0.00111972564, -0.00762591464, 0.00118764245, -0.0160500016, 0.00412068656, -0.0165404454, 0.0164635144, 0.00915013626, 0.0318692066, -0.00117141462, -0.00484433118, 0.00278639188, -0.00488520134, -0.0135689359, 0.0238874815, -0.0152806789, 0.0205601584, -0.00645750528, -0.00312056672, 0.00775093, 0.0263685472, -9.99969707e-05, 0.00843370426, 0.00690948265, -0.0423897021, -0.00377449137, 0.015953837, 0.00285851606, -0.0136554847, -0.00382257393, -0.0145786721, 0.00134391128, -0.0192330759, 0.0145786721, -0.0355234928, -0.0062651746, -0.0149921831, 0.00741915917, -0.00937131699, 0.00945786573, -0.00419521471, -0.0202524289, 0.0193965584, 0.00288015325, 0.0261954498, -0.00613535149, -0.0107512902, -0.0214256477, 0.003697559, -0.00912128668, -0.00701045664, 0.00470008329, 0.0162231009, -0.000718836265, -0.00279600848, -0.00882798247, 0.0130111761, -0.00190287246, 0.019906234, -0.0111840339, -0.013088109, 0.000683976279, 0.000159123651, 0.0142613258, 0.000934006297, 0.00954922289, -0.0190118961, -0.0057795397, 0.010905154, 0.00539968628, -0.0164923631, -0.00239451812, 0.0120110568, 0.00732299406, 0.0212140828, -0.00705373101, -0.00019503542, -0.00501983287, -0.00786632858, -0.0234643538, 0.0248299018, -0.0144921234, -0.00242697378, -0.0158576723, 0.00498617487, -0.0130015593, -0.00813559163, 0.0124245677, -0.0182041079, 0.00125976652, 0.0040629874, -0.00243538828, 0.00846736226, 0.0079817269, 0.019887, 0.00475778244, 0.0178290624, -0.0170789715, -0.0262916163, 0.00250991643, -0.00094061764, -0.00538526149, -0.00154826266, -0.0105012599, -0.0268878415, 0.00992426742, -0.0068373587, 0.00442601182, -0.00832311343, -0.00815963279, -0.0079144109, 0.00336098019, 0.0155691756, -0.0125591988, -0.0260992851, -0.0320230722, 0.0121553047, -0.00700564822, -0.00551989302, 0.00216612522, 0.0245221723, 0.00529871276, 0.00739030959, 0.0381391905, 0.0193388592, 0.0281572249, 0.00616900949, 0.0230027605, 0.00536122, 0.00277196709, -0.0105685759, -0.00330808922, -0.00906358752, 0.010357012, 0.00591417123, -0.0257530902, 0.0122803198, 0.00900588837, 0.00735665159, 0.027060939, -0.0171462875, 0.0186176188, -0.0127899963, 0.0146267544, 0.00691909948, 0.00359177706, -0.00208198046, -0.00707296375, -0.0269840062, 0.0057122237, 0.00401971303, 0.026714744, 0.020175498, 0.0012122849, 0.00161197223, -0.000333573669, 0.0049765585, 0.00363745564, -0.00621228386, -0.0118956575, -0.00971270353, 0.00874624122, 0.023041226, 0.0169347245, 0.0123957181, 0.0160788521, 0.000381656369, -0.00752494112, 0.0174155515, -0.00850582775, 0.00108306261, -0.025772322, -0.00138357945, -0.00713066291, 0.00451496476, 0.011385981, -0.0233297218, -0.0296958704, -0.000598629529, -0.0150979655, 0.00301238056, 0.00119305181, 0.00589493802, -0.0109628532, 0.0180502422, 0.0199447, 0.000210662285, -0.0077845878, 0.0165019799, 0.00716912933, 0.0176944304, 0.00580358086, 0.0160980858, 0.0313306823, -0.0176078808, 0.0249260664, 0.00213487144, 0.0094145909, 0.00761629827, 0.00914532784, 0.00922226068, 0.0142420931, -0.000829426455, 0.0115686953, -0.0105012599, -0.00527467113, -0.00889529753, 0.017386701, -0.00218776241, 0.000840245048, 0.0202908963, -0.0098761851, -0.00522658834, -0.00370717561, -0.0289457794, 0.0107993726, -0.0031494163, -0.000490443432, 0.00162880123, -0.0194157902, 0.0179348439, 0.00643346412, 0.0106070414, -0.00049555226, -0.0114629138, -0.00877989922, 0.0144632738, 0.00399326766, 0.00628440781, 0.00137516495, 0.00965019595, 0.00166726729, 0.00199302752, -0.0042601265, -0.00457506813, -0.0211756174, -0.0195408054, 0.0104243271, -0.0106743574, -0.013020793, -0.000683976279, 0.0263685472, 0.000840846042, -0.0103281625, -0.0102608465, -0.0230796915, -0.00880394, 0.00432744203, 0.024272142, 0.00251712883, -0.0251568649, -0.000436951465, -0.0153672285, -0.00936650857, -0.00931842532, -0.0391777754, 0.0148767848, -0.0144632738, 0.0116360113, -0.00663060322, -0.000903353561, -0.00626998302, -0.00245822757, -0.00380574493, 0.0118283425, -0.00977040268, 0.00484433118, 0.00634210696, -0.0045846845, -0.000330869021, 0.0178867616, -0.0164827462, 0.00258444459, -0.0184926037, -0.00639499817, 0.0010115396, 0.0153768444, -0.00721721211, -0.0242144428, -0.0244837068, -0.0249068346, -0.00827983953, -0.00328645203, 0.0167904757, 0.00505349087, -0.0145594394, 0.0122899357, 0.0228681285, -0.00176102854, 0.0165596791, 0.00969347078, 0.00100372615, 0.015607642, -0.0156172579, -0.00505829928, 0.0143286418, -3.12349657e-05, -0.0133189056, 0.00876547489, -0.0242529102, 0.0129727097, 0.0211179182, -0.023175858, -0.00645269733, -0.00518812239, -0.00902031269, 0.00637576496, 0.0146075217, 0.00122851273, -0.0160980858, 0.0149344839, 1.24620574e-05, -0.00638057338, -0.00884240679, 0.0106551247, -0.014386341, 0.0129150106, -0.00239451812, -0.0158288218, -0.00730856927, -0.00898665469, 0.00586128, 0.00207476807, 0.0113282818, -0.0104243271, -0.00871739164, 0.0042937845, -0.0143094091, 0.0137228, 0.00871258322, -0.0174828675, -0.0223873015, -0.0132612064, -0.0409279875, 0.0020411103, -0.00525063, -0.000804784067, -0.0040125004, -0.0114148306, 0.00721721211, -0.0204447601, 5.70981956e-06, -0.0148671679, 0.000966462074, 0.0465055779, 0.0134631535, -0.00309892953, 0.0149729503, -0.0193677079, 0.00111371535, -0.00338502158, -0.0202524289, 0.0137805, 0.0087750908, 0.0178675279, -0.0270032398, 0.0111936508, 0.00691909948, 0.0240798127, -0.0127130635, -0.0140978452, -0.00526986318, 0.00595263718, 0.00102716649, -0.00355571508, 0.00390431448, 0.0065296297, 0.000934607291, 0.000495852728, 0.0244260076, -0.00545738544, 0.023041226, 0.00797211, 0.00939535815, 0.00727491127, -0.00320951967, 0.0248299018, 0.00352205709, -0.00765476469, 0.0216949098, -0.000768121, -0.00482990639, -0.0051736976, 0.00684216712, 0.000956845586, 0.0243298411, 0.00233201054, 0.000308330258, -0.00739030959, 0.0100300498, 0.000510578102, 0.00190287246, -0.0373314023, -0.0158095881, -0.00281524169, 0.00705373101, 0.00165043841, -0.0295035392, 0.00857795216, 0.0127996122, -0.00690467469, 0.0131458081, 0.00860199332, -0.00238850759, 0.0281764567, 0.0145017393, 0.0150787318, 0.0164442807, 0.015136431, 0.0147710023, 0.0147613864, -0.0543142073, -0.0189349633, 0.0128573114, -0.00790960249, -0.0141170779, -5.30787838e-05, 0.0111648012, -0.00484673539, -0.00133429468, 0.000813799561, 0.0182810389, 0.00894338079, -0.00256521162, -0.0150114158, -0.0227334965, -0.0101646809, -0.0309267864, 0.0216179788, 0.00625555823, -0.000922586652, 0.00404856261, 0.0166462269, -0.00471450808, -0.00792883616, 0.00970789511, -0.0172232203, 0.000841447094, -0.0048154816, -0.0050006, -0.00968385395, -0.00504387449, 0.0156557243, 0.000695395924, 0.0252722632, 0.0109147709, 0.0272340365, 0.00131506159, -0.00384901953, 0.00259886938, 0.0121264551, -0.00860680174, 0.00297391438, 0.0290996451, -0.00677485112, -0.0225219335, -0.0177617464, 0.0116360113, -0.00102596439, -0.0182233397, -0.0022118038, 0.0084096631, -0.0210986845, -0.00585166365, -0.014107462, 0.0173097681, -0.0160307698, -0.011655244, 0.00132227398, 0.0167135429, 0.00169010658, 0.000323656626, 0.00752974954, 0.00366390101, -0.0154537773, -0.0156557243, -0.00900588837, -0.015540326, -0.00470729545, 0.00212044665, -0.0211756174, -0.00163240742, 0.0261762179, 0.00257963641, -0.00336098019, -0.00466642529, 0.0188580323, -0.0270994045, 0.00641903933, -0.0231566243, 0.0112225, 0.0102512296, 0.00598148676, -0.0358312204, 0.0103377784, 0.0013054451, 0.00421685213, 0.0221565049, -0.0268686078, 0.0185791515, 0.00852987, 0.000670152484, -0.0268109087, 0.0142997922, 0.00893857237, -0.0163769647, -0.00618824223, 0.0024077408, -0.0159442201, -0.0110974852, 0.00282485806, -0.0235797521, -0.0102416137, 0.00860680174, -0.0103185456, 0.00227671536, -0.00342589174, 0.008520253, -0.0188099481, 0.00177785754, -0.00382257393, -0.00632768217, 0.0082029067, 0.0192138441, -0.0309844855, 0.0111744171, -0.00357494806, 0.0230219923, 0.0160788521, -0.0127803795, 0.00161678053, -0.0107320566, 0.0132035073, 0.00345233735, 0.0033201098, 0.00206274749, 0.0154633932, -0.00577473128, 0.00633249059, -0.0178194456, 0.0171655212, 0.018194491, 0.00398365082, -0.00357975648, 0.0262531489, -0.00723644486, 0.0107801398, -0.0178867616, 0.00706334738, 0.00962134637, -0.00123332103, -0.0128476955, -0.0172328372, 0.00672196038, -0.00394758908, 0.00383940293, -0.0137612661, -0.00829907227, -0.00144849112, -0.00212525507, 0.0182906557, -0.0082365647, 0.0178675279, 0.00251712883, 0.00496213371, 0.00317345769, -0.0138766645, 0.0285803527, -0.00214929623, -0.0131265745, -0.0176848136, 0.0169828068, -0.0422743037, -0.0228488948, 0.00849621184, -0.0131073417, -0.0299074333, -0.0110205533, 0.00132828439, -0.00527947955, -0.00391633529, 0.0109820869, -0.017175138, 0.010635891, 0.000982089, -0.000745882746, -0.00168890448, -0.0140786124, -0.00542372745, 0.0135304695, 0.0223488342, -3.64752304e-05, -0.0188868809, -0.00825579837, -0.0097319372, -5.5032142e-05, -0.0145979049, -0.000909363909, 0.00581800565, 0.00581319723, 0.0101454481, 0.00216372102, 0.00623632502, 0.0192330759, -0.00366870943, 0.010087749, -0.00269263075, 0.0404663943, 0.0228296611, 0.00085106364, 0.013155424, -0.00797211, -0.00369275059, 0.000289247429, 0.0213294812, 0.0113475155, 0.0257530902, -0.0130977249, 0.00960211363, 0.0263493154, 0.00465440471, 0.00322394446, 0.0268301424, -0.0104339439, -0.000139064156, 0.0223296024, -0.00368073, -0.0174251664, 0.00537564512, 0.00524101313, 0.0038850815, -0.00210962817, 0.0206178576, -0.00225387607, -0.00354129029, -0.00133790087, 0.00230316096, -0.0012898182, 0.00119004666, 0.00999158341, 0.0010163479, -0.0300997645, 0.00233321264, -0.0172809195, 0.0335232541, 0.022291135, -0.00469287066, -0.0115302298, -0.00502464129, -0.00470248703, -0.0165789127, 0.0100396657, 0.0210409854, -0.00268782256, -0.0188003331, -0.00214809435, -0.00181632373, -0.00335617177, 0.00283207046, 0.0112225, 0.0295612384, -0.0139824469, 0.0119918231, -0.00752494112, 0.000549945806, -0.0198100694, 0.00490924297, 0.010905154, -0.00925591774, -0.00395239703, -0.0110013196, 0.00175021, -0.0283495542, 0.00908282, 0.0151652806, -0.023791315, -0.00613535149, -0.0180021599, 0.000481127441, 0.0323308, 0.00202067499, 0.0031590329, -0.0266955104, 0.0020399082, 0.00939055, 0.00617862586, 0.020175498, -0.00402692519, -0.0196465869, 0.00701526459, -0.0290419459, -0.0112898163, 0.0109436205, 0.000577292813, 0.008486595, -0.0140112964, -0.0112609668, -0.00506791566, -0.013905514, -0.00932323374, 0.016838558] |
11 May, 2022 | 5 Best Languages for Competitive Programming
11 May, 2022
Needless to say, Competitive Programming is one of the most crucial and popular aspects of a programmer’s journey. Though, all the programmers are strongly recommended to participate in such coding challenges to enhance their coding skills and to get various ravishing prizes, rewards, and other career opportunities. Meanwhile, there’s a question that often comes to the mind of individuals before getting into the Competitive Programming world — Which is the best programming language for Competitive Programming? And truly, as there are numerous preferred programming languages available, it becomes quite difficult to find out the relevant and worthwhile one!!
Before moving further, let’s take a brief introduction to Competitive Programming. Competitive Programming concerns with the coding competitions or challenges where you’re required to showcase your programming skills under different specified constraints such as minimum time, reduced complexity, etc. Indeed, Competitive Programming is the best way to analyze your programming skills through competing with the various other profound programmers across the world & gain the utmost exposure to real-time programming. Moreover, there are numerous renowned platforms that organize various coding challenges for competitive programming such as TopCoder, CodeChef, and many more.
https://www.youtube.com/watch?v=deaQG10LWR8
Now, let’s get back to the main concern — how to figure out the best language for Competitive Programming? Here, in this article, we’ll let you know about these 5 most recommended programming languages that you can consider to start your Competitive Programming journey:
1. C++
Indeed, C++ is one of the most recommended and widely used programming languages for Competitive Programming. C++, developed by Bjarne Stroustrup, is a relatively faster programming language in comparison to various other renowned languages. Meanwhile, as the execution time plays a crucial role in Competitive Programming, hence C++ is the most preferred language by the programmers. The general-purpose programming language consists of a rich library known as Standard Template Library that makes it easier for the programmers to do efficient & effective programming. The Standard Template Library includes C++ template classes that offer various data structures such as lists, trees, stacks, graphs, arrays, etc. Moreover, the language supports OOPS (Object-Oriented Programming) features as well to help you out while solving real-time problems in coding challenges.
2. JAVA
Here comes another most recommended programming language for Competitive Programming — JAVA. The object-oriented language, developed in 1995, works on Write Once, Run Anywhere concept which implies that the compiled Java code can be executed on any platform, that supports Java, without recompilation. Meanwhile, JAVA comes up with a rich library set such as BigInteger class used for calculation based on large integers or Regular Expressions, Geometry Library to handle geometrical problems, and many more. Furthermore, various other worthwhile features supported by JAVA such as better exception handling, Java Containers, etc. make it one of the most preferred languages for Competitive Programming. Moreover, the language is easy to learn and you can start to learn JAVA from various online & offline resources.
3. Python
Python gives you numerous reasons to pick it up for your next Competitive Programming contest. The high-level programming language is quite easy to learn and implement with having a very simple syntax. Moreover, the language has an extensive library & function support which somehow increases the efficiency of programmers in coding competitions. Furthermore, the language has several other worthwhile features as well such as no limit on the integer value, functions can return more than one value, code indentation, robust input statements, flexible number of arguments to a function, etc. makes Python a suitable language for Competitive Programming. Also, the language has wide use in various trending domains such as Machine Learning, Artificial Intelligence, Data Science, and many more.
4. Ruby
Ruby is also one of the most sought-after programming languages in the competitive programming world. It is an object-oriented programming language that is very user-friendly, flexible, and easy to learn. Meanwhile, Ruby is a dynamic programming language and is based on several other programming languages such as Perl, Smalltalk, Lisp, Ada, Smalltalk, and Eiffel. Though, Ruby is an interpreted scripting language so it is quite slow in comparison to other compiled languages and this aspect gives the upper hand to other languages while considering the best programming language for competitive language. Moreover, apart from competitive programming, Ruby is also used in a wide range of domains such as Web Applications, Database Solutions, Data Science, and many more.
5. Kotlin
Last but not least — Kotlin. Kotlin, introduced in 2011, is a general-purpose programming language that supports object-oriented programming paradigms along with functional programming features. The language is easy to learn and provides access to a rich library including various data structures, collections, etc. Moreover, while programming in Kotlin, you can use existing Java Frameworks & Libraries as well. The languages offer various crucial features that can be beneficial during competitive programming such as Type Inference, Smart Casts, avoids the Null Pointer Exception, and many more. Furthermore, as Kotlin emphasizes more readable syntax, so it makes it easier to review the code, and also you can easily learn and understand the language efficiently through various online and offline resources.
So, these are several best programming languages for competitive programming that can be taken into consideration. Although, apart from opting for a relevant & worthwhile programming language, you’re required to emphasize more on Algorithm building and Data Structures as well. Though, you can easily get command over Data Structures & Algorithms through various prominent online resources such as GeeksforGeeks, etc. Now, what are you waiting for? Choose a relevant programming language, prepare yourself, and participate in the upcoming prestigious Coding Challenges!! | NLP/Natural Language Processing (NLP) Tutorial/AI ML DS - Projects/30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated]/Does Artificial Intelligence Require Coding?/Artificial Intelligence – Boon or Bane/Artificial Intelligence Examples/Agents in Artificial Intelligence/What are Diffusion Models?/ML | Common Loss Functions/Loss Functions in Deep Learning/Kaiming Initialization in Deep Learning/Swift - Initialization/Swift – If Statement/6 Best iOS Project Ideas For Beginners/Swift Programming Language/Introduction to Visual Programming Language/What is D Programming Language: Usage and Applications/Best Programming Languages for Data Science in 2024/5 Best Languages for Competitive Programming | https://www.geeksforgeeks.org/5-best-languages-for-competitive-programming/?ref=ml_lbp | NLP | 5 Best Languages for Competitive Programming | Artificial Intelligence – Boon or Bane, AI ML DS - Projects, Swift - Initialization, 6 Best iOS Project Ideas For Beginners, ML | Common Loss Functions, Artificial Intelligence Examples, What is D Programming Language: Usage and Applications, 30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated], Swift – If Statement, Natural Language Processing (NLP) Tutorial, Loss Functions in Deep Learning, Does Artificial Intelligence Require Coding?, Best Programming Languages for Data Science in 2024, NLP, 5 Best Languages for Competitive Programming, Swift Programming Language, Agents in Artificial Intelligence, What are Diffusion Models?, Kaiming Initialization in Deep Learning, Introduction to Visual Programming Language | GeeksforGeeks | [0.00161008071, -0.0187961496, -0.0136869894, 0.0187683441, 0.0223829895, 0.0243293364, 0.00503269676, 0.0108439326, -0.0105936881, 0.0205061547, -0.00893234182, -0.0245378725, 0.0284305662, -0.0324205793, -0.000583035173, 0.0300015472, 0.0359518081, 0.00134940923, -0.0293620322, -0.0414293818, -0.0191020034, -0.00689910445, -0.023356162, 0.0118032033, -0.000919301354, 0.0291395932, 0.0213820096, 0.0181844402, -0.0379537642, -0.0244127512, 0.0561938137, -0.010350395, 0.0201585926, -0.0376479104, -0.00145194, -0.0139789414, -7.68980826e-05, -0.0143056493, 0.000942761777, 0.000454002788, 0.0454332978, 0.0015770623, 0.037675716, -0.0375644937, -0.0310025252, 0.0191159062, -0.0044487929, -0.00378147396, 0.0190324914, -0.0472962297, 0.0115043, 0.0240651891, 0.0670099407, 0.0282776393, 0.0387044959, -0.00593288243, -0.00655154279, -0.0317532606, 0.00791746099, 0.00647855457, 0.0131239388, -0.0155012626, -0.00975258835, -0.0315308198, 0.0313917957, -0.0337274112, -0.0484640375, 0.0217434745, 0.00826502312, -0.00660020113, -0.0478523262, 0.00440013409, -0.0235925037, -0.000432931847, -0.0241347011, 0.0205756668, 0.00572434533, 0.0111914948, -0.00276137958, 0.0302517917, -0.0271237344, 0.0095371, 0.0120464964, -0.0364522971, 0.0249132402, -0.0103434436, 0.0367025398, -0.0356737562, 0.0226749405, 0.0270264167, -0.0264286101, 0.0304186214, 0.00984990504, 0.0195051767, -0.0317810625, -0.00466428138, -0.00273705018, 0.00373629085, -0.0308635011, 0.0851943791, 0.00484153768, 0.000756816124, 0.0161268748, -0.0302239861, 0.035896197, -0.0328932628, 0.00260671461, 0.0311137456, -0.00279961154, 0.00521342922, -0.0553596653, -0.0126512544, -0.0103990529, 0.0197137129, -0.0121299122, -0.00585989421, -0.0141388196, -0.0521899, 0.022633234, 0.000625177054, -0.00498403842, 0.0412069447, -0.00944673363, -0.00732660573, -0.0620606616, 0.0144029669, -0.00638471264, 0.0276520271, 0.0206173752, 0.0413181633, 0.0184207819, -0.0118588135, -0.0134297935, 0.0156541895, 0.0118796667, 0.0184207819, 0.0137982089, 0.0284305662, 0.00870990194, 0.00345824123, -0.00412556, -0.0246490929, -0.0221466459, -0.0128945475, 0.000154230613, 0.00702770241, 0.0341444835, 0.0402893797, 0.00877941493, -0.00950929429, -0.0312249642, -0.019129809, 0.0252469, 0.00385793764, 0.0112679582, -0.00862648711, 0.00845965743, 0.022424696, -0.0138190631, 0.00477897655, -0.0317254551, -0.0381205939, -0.00419854838, -0.00425068242, -0.00853612088, -0.00342522282, 0.0170861445, 0.0153483357, -0.103656873, 0.0380093753, 0.00713197095, 0.00905051269, -0.00733355712, -0.00455653714, -0.0472962297, 0.00939112343, 0.00335918623, -0.0223273784, 0.0051161116, 0.0233005527, -0.0197415184, -0.0187266376, 0.00178299274, 0.00332616782, 0.013541013, -0.00314196, 0.0572225973, 0.00937027, 0.0284583718, 0.0180593189, -0.00748648401, -0.0281803217, -0.00253546424, 0.0239122622, 0.0226749405, -0.0119908871, -0.0287225191, 0.0395664498, 0.00547062512, 0.0737387389, -0.0129432064, -0.0350620486, -0.00649593258, 0.0305854511, 0.0363688804, -0.00650983537, -0.00675660418, 0.00722928857, 0.0338664353, 0.0126512544, -0.0421245061, 0.0551372245, -0.0220493302, 0.000311067939, -0.00768111879, -0.0200195685, -0.0119769843, 0.000887151866, -0.0548591763, -0.030946916, -0.00132247317, 0.022355184, 0.0173224863, -0.0067983116, -0.0279856883, -0.0486308672, -0.0204783492, -0.00769502157, 0.0278466623, -0.0142500391, 0.0546923466, 0.00295775221, -0.0136730867, -0.0212846939, 0.0129223531, 0.0152371153, 0.00496318471, -0.0242320187, -0.0541362464, 0.0542196631, 0.0264981221, -0.0268456843, -0.0413737744, -0.00841099862, -0.0127624748, -0.00774368, 0.0279856883, 0.00969002675, -0.000288041949, 0.0457947627, -0.0134158907, -0.0096205147, 0.0184346847, 0.0380371772, -0.059669435, 0.0234673824, 0.0191159062, -0.0278049558, 0.00730575202, 0.0112401536, 0.00837624259, 0.0177951716, 0.00737526454, 0.0227166489, 0.00590160163, 0.0212151799, 0.0504659936, -0.00940502621, -0.0114625925, -0.0412625521, 0.0378981531, -0.0268734898, 0.0155151654, -0.0193800535, 0.0178785864, -0.00189942599, -0.0011156738, -0.00343912537, 0.0456557348, 0.0243432391, 0.0112610068, 0.0150702856, 0.04298646, 0.043848414, 0.010781371, -0.0426528, -0.0207842048, -0.0163771193, -0.0370640047, -0.0252608024, -0.0142778447, 0.00356598548, -0.000371022383, 0.00977344159, 0.0117962519, 0.0420967, -0.0302239861, -0.024927143, -0.00580776, 0.00843880419, -0.00130335731, -0.0394830368, 0.00665233564, -0.00713892234, -0.0303630102, -0.0100445403, -0.00650635967, -0.0105033219, -0.017906392, -0.0472962297, 4.46671402e-05, -0.0384820588, 0.0120882047, 0.00851526763, 0.0159600452, 0.0297791064, 0.0264425129, 0.00697556837, -0.0208537169, -0.0060753827, 0.0282915421, 0.0192827359, -0.0315030143, 0.0377035178, 0.05071624, -0.0179341957, -0.00301336194, -0.01267906, -0.00832063239, -0.0126860105, -0.0244822633, -0.012713816, -0.0477133021, -0.0017612701, 0.0268873908, -0.0136244278, -0.0236898214, 0.0123801567, 0.0233283583, -0.0152788227, -0.0322815515, 0.0135479644, 0.0424581654, 0.000855871302, 0.0135479644, -0.0501323342, -0.0174198039, -0.00461909827, 0.0220910367, 0.0208259113, 0.0014137082, 0.0280273948, 0.0301127657, 0.00528294127, -0.00290735555, -0.00434104865, -0.0244405549, -0.0259420238, -0.0137147941, 0.0391771831, 0.0389547423, -0.000348648085, -0.0364244916, -0.000659064332, 0.014111015, -0.0279161744, 0.0177951716, -0.0302239861, 0.0235368945, -0.0105172247, 0.00655849371, -0.0072362395, 0.0237176269, 0.0199222509, -0.0495484285, 0.0126651572, -0.0371474214, -0.00793136377, -0.0441542678, 0.00949539244, -0.00151623902, 0.0458503701, 0.0355625376, 0.026289586, -0.0195329804, -0.00254415348, 0.0321147218, -0.04298646, 0.00297860592, 0.0218825, -0.0325039923, 0.0163215082, -0.0133533301, 0.0157097988, -0.00286738598, 0.0387323, 0.0307522807, 0.0274295881, 0.00623873668, -0.0455167107, 0.0212985948, 0.0206173752, 0.00396220619, 0.00862648711, -0.0163493138, -0.0246908, -0.0341722891, -0.0112262508, 0.022925185, -0.00877246354, -0.0241486039, -0.000971435627, -0.0481303781, 0.0336439945, 0.00415336527, 0.00698251929, 0.0144307716, 0.0470459834, -0.000272618898, -0.00882112235, 0.0111011285, -0.00263278163, -0.00369805912, -0.026373, 0.00673922617, -0.00787575357, 0.0441264622, 0.0319200903, -0.00644379854, -0.0302517917, -0.00555056427, 0.0216600597, 0.0204088371, 0.0205061547, 0.0042124507, -0.0497986749, 0.00450440263, 0.0250661671, 0.000233952625, 0.0283332486, 0.0124427173, -0.023787139, 0.0169471204, -0.010677103, -0.0211595707, 0.0088906344, -0.00719453208, 0.0163215082, 0.00214967062, -0.0243432391, -0.0107049076, -0.0102600288, -0.0209649354, 0.0019932678, 0.0516894124, 0.0108369812, -0.0508830696, 0.0430698767, 0.0235368945, -0.0235368945, 0.0243988484, 0.0154317506, 0.0200334694, 0.00881417096, -0.0241207983, 0.0406786501, -0.029584473, -0.0366469324, -0.00475117192, -0.0202976167, -0.0357849784, -0.0488811098, 0.0440708548, -0.0147366263, 0.00800087582, 0.00550885685, 0.0343113132, -0.0185041968, -0.0492703803, -0.0121299122, 0.0370918103, 0.0205478612, 0.00727794692, -0.0488811098, 0.032670822, 0.000195069137, 0.0322259441, -0.00838319398, 0.0375088863, 0.0241625067, 0.00257195835, 0.0431254841, 0.0118101547, -0.0276937354, -0.0086890487, 0.0203949343, -0.0402893797, -0.0440986603, -0.00605452899, 0.0144446744, 0.00958575867, -2.01341554e-05, -0.0533577092, 0.0433757305, 0.000394917268, -0.02822203, -0.0107883224, 0.0612821206, -0.0391215719, -0.0138051603, 0.0189907849, 0.000405344123, -0.0221605487, 0.0247464105, 0.00787575357, 0.0375088863, 0.00737526454, 0.0405952334, -0.0369805917, -0.0174476095, -0.00438275607, 0.0161685813, 0.00835538935, 0.0276798327, 0.00285348343, 0.0128528401, 0.020130787, -0.0276520271, 0.0150841884, -0.0205895696, -0.0157237016, -0.00567916222, -0.0204505436, -0.00244509825, -0.0111080799, -0.0298625212, 0.01604346, 0.00108960667, -0.00672879908, 0.0375923, -0.029445447, 0.0276798327, -0.00884892698, 0.0232032351, 0.000986207, 0.00354686962, -0.0164327286, -0.000791137863, 0.00950929429, 0.0403449908, 0.00132160424, 0.0495762341, 0.0293620322, 0.0193939563, -0.0431810953, -0.0149451634, -0.00149451639, -0.0508274585, -0.0238844566, -0.0261922684, -0.0067739822, 0.00892539, 0.0347283892, 0.0109412502, 0.0165300462, -0.0391771831, 0.0499377, -0.0194078591, -0.00913392752, -0.00294732535, 0.011678081, -0.00324622844, 0.0173502918, -0.0051126359, 0.000967091124, 0.0269012935, 0.00119995757, -0.00406995043, -0.0105380779, -0.00125469861, -0.00820941292, 0.00472336682, 0.0124635715, -0.00322711258, 0.0407064557, -0.00306202075, -0.00218790234, 0.0138746724, -0.0166412648, -0.00203845068, -0.0266093425, 0.018406881, -0.0337274112, -0.016974926, -0.000414250389, 0.00296122767, 0.0186154172, -0.000513957231, -0.0243571401, -0.0110316155, -8.15141393e-05, 0.0244822633, 0.0412347503, -0.0116363736, -0.00351211336, 0.0122897904, -0.0128736943, 0.00727794692, 0.00273183687, -0.00795221701, -0.00978039298, -0.0306132548, 0.0191159062, 0.00391007168, -0.00676008, -0.0228278674, -0.000507440418, 0.0202976167, -0.00518562412, 0.00752819143, -0.00262409262, 0.00188726129, -0.0499933101, 0.00451830542, 0.0302795954, 0.0707914159, 0.00348257064, -0.0444323197, -0.00552623486, -0.0203810316, -0.0113722263, -0.0278188568, -0.000802433642, -0.00616227323, -0.0127624748, -0.00559227169, 0.000951450784, 0.028444469, -0.000858043553, -0.00143195514, -0.024718605, -0.00841795, -0.00362159545, 0.112832509, -0.00458781747, 0.0280412976, -0.0390103534, 0.0408732854, 0.0349786319, -0.0218685977, 0.00993332, -0.015834922, 0.0330044813, 0.0347561948, -0.00975258835, -0.0116919838, 0.0131934509, -0.0272766612, -0.00921039097, 0.021423718, -0.00571044255, 0.0107327132, 0.0305020362, -0.0209371317, -0.0119144237, -0.0190742, 0.0186849292, -0.00421940209, -0.009418929, 0.0249549467, -0.00137373852, -0.0399835259, 0.0109899081, 0.0174893159, -0.00332964328, -0.00866124313, 0.000125665363, 0.0308913048, 0.00939112343, 0.0290283728, -0.00326708215, -0.00871685334, 0.0354513191, -0.0186710283, -0.0188517589, -0.0144446744, -0.00937722158, -0.0158071164, -0.0230781119, -0.0113027142, 0.00146323582, 0.0198666397, 0.00946758687, 0.0273044668, -0.00821636431, 0.00934246462, 0.0110385669, -0.00280830055, -0.012574791, -0.0144168697, 0.0341166817, -0.00825112, -0.0223829895, 0.00140675693, 0.00152492803, 0.0280830041, 0.000366895081, 0.0113305189, -0.0365357101, -0.011247104, 0.0166690703, 0.0276520271, -0.00148408953, -0.00396568188, -0.00328967371, 0.00840404816, 0.00704855612, -0.00127381447, 0.00934941601, 0.00434104865, 0.0146810161, -0.0150146754, 0.00251113507, 0.00126860105, -0.0299181323, -0.020061275, 0.00903661083, 0.0177395623, 0.00391007168, -0.00282394071, 0.0271376371, -0.00752819143, -0.00636733463, -0.00647855457, 0.00408732845, -0.0253025088, 0.0161824841, 0.00775063131, -0.00545672234, -0.0100584421, 0.0283471514, 0.000712502, 0.00801477861, 0.0347283892, -0.00192549312, -0.0168776084, 0.0240651891, 0.0148895532, -0.0132768657, -0.000881069514, 0.00110003352, -0.00055566465, 0.0255944617, -0.0368693694, -0.0107327132, -0.00477897655, -0.00067383569, -0.0124288145, 0.00529336836, 0.0236342121, 0.0262200721, 0.041484993, -0.00407690136, 0.00203671306, 0.0183651727, -0.0154178478, -0.0336161926, 0.0151397977, -0.0012911926, -0.0220771339, 0.011747594, -0.00367720542, 0.0557767414, 0.021632256, -0.0178507809, -0.0142013812, 0.00773672899, -0.0113930805, 0.0158488248, 0.01554297, -0.0276103206, 0.0252608024, -0.0105519807, 0.00966222212, -0.0198944453, -0.00721538579, 0.03208692, 0.00640556635, 0.0288059339, 0.0162241906, 0.00866124313, 0.0310025252, 0.00174736767, 0.0354513191, 0.00355903432, -0.0491313562, -0.00615184614, -0.0170166325, -0.0223134775, -0.0411791392, 0.0142500391, 0.014541992, 0.00899490342, -0.00202802382, 0.0278466623, -0.0291117877, -0.00893929321, -0.0355625376, -0.00706245843, 0.0114347879, -0.00658282312, -0.0426806062, -0.0188656617, 0.0313361846, 0.0151119931, 0.0140136974, 0.0193661507, 0.0039517791, 0.0146949189, 0.0280830041, -0.000113283473, -0.00253546424, 0.0137704043, -0.00936331879, -0.0299737416, 0.0285834931, 0.0313361846, 0.0232588444, 0.0247464105, 0.00290040439, 0.0053767832, -0.019630298, 0.00435842667, 0.0254832413, -0.00855697505, 0.00866124313, 0.0256222654, -0.00323927728, 0.0252608024, 0.0226888433, 0.0044453172, -0.00580776, 0.00455306144, 0.0194217619, 0.0348952189, 0.0306132548, -0.0317532606, 0.0183373671, 0.0116016176, 0.00328272255, 0.0140971122, -0.0132212564, -0.0299737416, 0.0402059667, -0.00145107112, 0.00720843486, -0.0219103042, -0.0481581837, -0.00348083279, 0.00577300368, 0.0201446898, 0.000717280956, -0.0185737107, 0.00143369299, 0.00967612397, -0.00197588955, -0.00809124205, 0.00307070976, 0.011351373, -0.0155012626, -0.0090991715, 0.0193800535, 0.00632215152, 0.0432089, -0.0177951716, -0.0110524697, -0.0140206488, 0.0150146754, 0.0106006395, 0.032670822, 0.0452108569, -0.0136244278, -0.00872380473, 0.0243154336, -0.0267205611, 0.00137808314, -0.0215210356, -0.00662800623, -0.002328665, 0.00165178813, 0.0265398305, 0.0122550344, -0.0293064229, -0.0204505436, 0.0205895696, -0.0165300462, -0.000991420471, 0.0169888269, -0.0093563674, 0.0196859092, -0.00572782056, -0.0137565015, -0.0178924892, -0.00417769467, 0.0188656617, -0.0168219972, 0.0025823852, 0.0102739306, 0.0252051912, 0.023787139, 0.0109899081, 0.0155290673, 0.00316281361, -0.0171973649, 0.0385654718, 0.0125261322, -0.00962746609, -0.00827892497, 0.0277910531, 0.00934246462, 0.035034243, 0.0238427483, 0.0167107787, 0.0235786028, -0.00862648711, 0.0249132402, -0.0616713911, -0.00627349317, -0.0148756513, -0.0115807634, 0.00516824611, 0.0117336912, 0.0184346847, -0.0107674692, -0.0171556566, -0.0240790918, -0.00355555862, 0.0279856883, -0.0498820879, -0.0331991166, 0.0125817424, 0.0135549158, 0.0204505436, 0.00314369774, 0.00357641233, -0.00233387854, 0.0138955265, 0.00202454836, 0.0218546949, 0.0063082492, 0.00740306918, 0.00756294793, 0.0293620322, -0.0137356482, 0.0229390878, -0.00295948982, -0.0395664498, -0.0117545445, 0.00631172489, 0.0068017873, 0.00706245843, -0.00253894, 0.0306410603, 0.00477897655, 0.0277076382, -0.000758988375, 0.00712501956, -0.0169471204, -0.00959270913, 0.00144498877, 0.0310859401, -0.01526492, 0.0169193149, 0.00754904514, 0.0141805271, -0.00491800159, -0.0243988484, -0.0439874381, 0.0402615741, 0.0104477117, -0.0124635715, -0.00288823969, -0.0450718328, 0.0102669802, 0.000344303553, -0.0365913212, 0.0456001274, 0.0114764953, 0.000336700643, 0.0393718183, 0.025719583, 0.000123493097, 0.0337830223, -0.0126373526, -0.0290561784, 0.0188517589, -0.0176422447, 0.0152371153, -0.0228139665, -0.014111015, -0.00825112, -0.00797307119, -0.0254137293, 0.0174476095, 0.0559157655, 0.034784, 0.0035173269, 0.0286391042, -0.0189351737, 0.0119769843, -0.0215766449, -0.0388991311, -0.0319478922, -0.0129154017, 0.034533754, -0.00309851463, -0.0116224717, 0.0041881213, 0.00124340283, -0.0273739789, 0.0141944299, -0.0221883543, -0.00387531566, -0.0201585926, 0.0204644464, 0.018198343, -0.0222161599, 0.00953014847, 0.00152145245, 0.01554297, 0.00351037551, -0.0105589321, 0.0144029669, -0.0103364922, -0.00866819452, -0.0347005837, 0.000208863, -0.0506884344, -0.0144585771, -0.00160921179, 0.0170305353, 0.00391702307, 0.0206729844, 0.0276103206, 0.00473379344, -0.0316698439, -0.0253025088, 0.00559574738, -0.0111219818, 0.00687825074, 0.0125261322, 0.00431671925, -0.00471293973, 0.019560786, 0.00193939568, -0.0289171543, -0.0126860105, 0.00572434533, -0.0113791777, 0.0247603133, -0.00959966052, -0.0285000782, 0.02535812, -0.00381970569, 0.0047059888, 0.0186849292, 0.00971088093, -0.00797307119, 0.00268317829, 0.000798958, 0.0157376043, -0.0060997121, -0.00197588955, -0.0176422447, 0.0181288309, -0.000349951442, -0.00240512867, 0.00062257034, 9.6122596e-05, -0.0120882047, -0.0122272288, 0.000845444447, 0.0217712801, -0.00114000321, -0.0192688331, -0.0477689132, -0.00658977451, -0.0024555251, 0.0079591684, 0.00243467139, -0.00687825074, -0.00950234383, -0.0025736962, 0.00247985451, -0.0023529944, 0.00292647164, -0.00679136, 0.0739611834, -0.0171834622, -0.0161268748, -0.0259281211, 0.004348, 0.00135375373, 0.0167941935, -0.00972478278, 0.01060759, -0.00750733772, 0.0357293673, 0.00105224375, 0.00663148193, 0.0375923, -0.0146949189, 0.00652373768, 0.0222161599, -8.64017275e-05, 0.00787575357, -0.00697556837, -0.0142778447, 0.00477202563, 0.0199222509, -0.0227583554, 0.0374810807, -0.00878636539, -0.0158071164, 0.00324970414, -0.0194356628, -0.00482415967, 0.0216183532, -0.0187961496, 0.0232588444, -0.00516129471, 0.012470522, 0.0123732053, -0.0188100524, 0.00681916531, -0.0205339603, -0.0298069119, -0.0121577168, -0.0107188104, -0.0134575982, 0.00825807173, -0.00973173417, -0.019838836, -0.0217295717, 0.011316617, -0.0225359164, 0.00281003839, -0.000617791375, -0.00506745325, 0.0219381098, -0.0081677055, -0.00718758069, 0.0129918652, 0.0197415184, 0.0184485875, 0.00538721029, 0.0165856555, -0.00652373768, -0.00706941, 0.0127555234, -0.0260393415, 0.00624568807, 0.0170305353, -0.0217295717, -0.00913392752, -0.00380580314, 0.0133116227, -0.0114486907, 0.015403945, 0.0235368945, -0.00444184151, 0.016335411, 0.00334702153, -0.0179480985, 0.00400043791, 0.00319409417, -0.0209093262, 0.0119630815, 0.0236203093, 0.0124496687, -0.00140849478, -0.00435842667, -0.0072640446, 0.0125122294, 0.0118866181, 0.00437580468, -0.0192966387, -0.00815380272, -0.0170027297, -0.00612404151, 0.00885587838, 0.00250244606, 0.0148756513, 0.0197971277, 0.0360352211, 0.00408385275, 0.00964831933, -0.00853612088, 0.0282359328, -0.000970566703, -0.0299737416, -0.00924514793, -0.0185459051, 0.0259281211, 0.00247985451, -0.00264842203, 0.00766721647, 0.0365079045, 0.0191020034, 0.0216461569, -0.00221223175, 0.0354235135, -0.0175449271, 0.0400113314, 0.0095579531, -0.00066645, 0.00761855766, -0.0239400659, 0.0104685659, 0.00718758069, -0.0222439636, -0.0158905312, -0.00742392289, 0.00527251465, 0.0281664189, 0.00322016142, 0.00466775708, 0.0108091766, 0.00380580314, -0.00557836937, 0.0253025088, -0.0249688495, -0.0101905158, -0.0027005563, 0.0253303144, -0.00188726129, 0.014903456, -0.00785489939, 0.0171973649, -0.00751428911, 0.000554795726, -0.0114764953, 0.00239122612, -0.0112262508, -0.00685044564, 0.0156958979, -0.0029455875, 0.000839362096, -0.0223273784, 0.00487281848, -0.011281861, 0.011142836, -0.0109273475, 0.016974926, -0.0183929782, 0.010816128, -0.012644303, 0.00288302638, 0.00800087582, 0.011608569, 0.0221049394, -0.033171311, -0.00925905, -0.0180871226, 0.0187544432, -0.0146810161, 0.00423678, -0.0232449435, -0.0171973649, -0.00600239448, 0.0010009784, 0.000474856497, 0.00860563386, 0.0203532279, 6.03345798e-05, 0.0198944453, 0.0118866181, -0.0101488084, -0.0070589832, -0.00604062667, 0.0116363736, -0.00504312385, 0.00482763536, -0.037675716, -0.0136313792, 0.00211491436, 0.0413737744, -0.0120464964, 0.0113722263, 0.0118657649, 0.00211839, 0.00218790234, 0.0310025252, 0.00942587946, -0.012574791, -0.0246073846, 0.0183651727, -0.0126860105, -0.0244822633, -0.0183234662, 0.00607885839, -0.0326152109, -0.0128597915, -0.0209093262, 0.00844575558, -0.0119839357, -0.0270681232, 0.00141631486, -0.0175588299, -0.0159739461, -0.00890453719, 0.0167246796, -0.0170861445, 0.000634300523, 0.0069998973, 0.00814685225, -0.00191680412, -0.00606148038, 0.0151954079, -0.00823026709, 0.00748648401, 0.0197971277, -0.0585572347, 0.011316617, 0.0261366572, 0.0120603992, 0.024788117, -0.0363410749, 0.0163076054, 0.0136383306, -0.00971783139, 0.0298903268, -0.00886978116, 0.0119839357, -0.0255527534, -0.0256083645, 0.0321147218, 0.00899490342, 0.0166968759, -0.000490496808, -0.00850136485, 0.0118588135, 4.58075774e-05, 0.0122619849, 0.0187683441, -0.000401216821, 0.00791746099, -0.0198805425, -0.0314474031, 0.00242250669, -0.0140901608, 0.0056131254, 0.00653068908, 0.0100028329, 0.00208710949, -0.0107883224, -0.0122758877, 0.0168637056, 0.00992636941, 0.0014588912, 0.0186015144, -0.00189073698, 0.000879766187, -0.0193244442, -0.00412556, -0.0095649045, 0.0133741833, -0.000871077122, 0.0555543, -6.57652345e-05, 0.0224385988, 0.00722233718, -0.0119213741, 0.00741697196, 0.0311137456, -0.00701727578, -0.00788965635, -0.0115738129, 0.00847356, 0.00951624569, -0.0101071009, 0.00933551416, -0.00964831933, 0.0174198039, 0.00157880015, 0.0144307716, -0.00379885198, 0.0149173588, -0.0136661353, -0.000586076349, -0.0183651727, -0.00429586554, 0.0190463942, -0.000169110601, 0.00364592485, -0.00600587, 0.00676008, -0.0142500391, -0.00179341959, -0.0109621035, -0.0117406426, 0.00782709476, -0.0114834467, 0.0115182027, -0.0170166325, 0.000416857103, 0.000793310115, 0.00788965635, -0.0348952189, -0.00566178421, 0.00616922462, -0.00606148038, 0.0134506468, 0.000825025141, -0.0105033219, -0.012282839, -0.00804258324, 0.0160156544, -0.000336917845, 0.0225359164, -0.00283262972, -0.000267839932, 0.00916173309, -0.000852395664, -0.0103086876, -0.0104477117, 0.015042481, -0.0228834786, -0.0109899081, 0.00832063239, -0.00208189595, 0.0242042132, -0.00083241082, 0.0204366427, 0.0004392314, 0.0288615432, -0.0208537169, -0.0333659463, 0.00507788, -0.0051473924, 0.022563722, 0.0270681232, -0.0150841884, -0.0193105415, 0.0209371317, -0.0129918652, 0.0286112987, 0.00580428448, -0.0248854347, -0.00967612397, 0.00461562257, 0.00606148038, 0.0441820733, -0.00551928347, 0.0162241906, -0.0184207819, -0.00322189927, -0.0106701516, 0.0039795842, 0.0236481149, -0.0162241906, -0.0041881213, -0.0139302826, -0.0115668615, -0.0156263839, 0.0378147401, 0.0204366427, 0.0142500391, -0.0141666243, 0.0137356482, 0.00913392752, -0.0079591684, -0.00484153768, 0.0114556411, 0.0116016176, 0.00560269831, -0.00525166094, -0.026790075, -0.012609547, -0.0114834467, -0.0107188104, -0.00404562103, 0.0111914948, 6.10405623e-05, 0.0329210684, -0.02070079, -0.0116016176, 0.00718062976, -0.00804258324, 0.0260671452, 0.0120117404, -0.0148200411, 0.00991941802, -0.0265398305, -0.0081677055, -0.0070068487, -0.000552623475, -0.00185424299, -0.00187683443, 0.0122689363, 0.00279266015, 0.00945368502, 0.0158905312, -0.0123732053, -0.033949852, -0.00991246663, -0.0101905158, -0.00919648912, -0.00818160828, -0.0132421097, -0.00793136377, 0.00788965635, 0.00917563494, -0.00116085692, -0.00766026508, 0.0204783492, 0.00532464869, -0.0126860105, -0.0239817742, -0.0198110305, -0.0192827359, -0.021423718, -0.00724319089, -0.00546019804, 0.00282915425, -0.0022191829, -0.0198249333, 0.00734050805, 0.0103712482, -0.0126651572, -0.0120325945, 0.00104355474, 0.0226054285, 0.0203254223, -0.00995417405, 0.0042437315, 0.00377452257, -0.0044487929, 0.00331574096, -0.0262339748, -0.00379885198, 0.00573824765, -0.0127416207, 0.01267906, 0.00629434688, -0.0177395623, 0.00106353953, 0.00902270805, 0.0119422283, 0.00155620859, -0.00377452257, -0.0101974672, 0.0167246796, -0.0199361537, -0.00107309746, 0.0292508136, -0.0212985948, -0.0119700329, -0.018837858, -0.00277180644, 0.00862648711, 0.0208398141, 0.00832758378, 0.00425415812, -0.00623178575, 0.00101574976, 0.0144168697, 0.0175449271, -0.00503964815, 0.0132282078, -0.00550190546, 0.0345893651, -0.0156680923, 0.00799392443, 0.0140206488, 0.0222578663, 0.0119491797, -0.00309503917, 0.0245795809, -0.00825112, 0.0290561784, 0.0227444526, 0.0385932773, -7.02183752e-05, 0.0148061384, 0.0266093425, 0.0224664044, 0.01217857, -0.013179549, -0.0212846939, -0.0312805735, -0.00336787524, 0.00599544356, 0.00153796154, -0.00210622535, 0.00501184305, 0.00361116859, -0.000632997195, -0.00373976654, 0.0128111327, 0.00748648401, 0.0196163952, -0.00325839315, 0.0153205302, 0.0149590662, 0.0221188422, -0.00200369465, 0.00775063131, -0.0128528401, -0.0190881025, -0.00523775863, 0.0088350242, -0.00725014228, -0.0072362395, 0.00477550086, 0.0190602969, -0.00113131409, 0.0346727781, 0.00745867938, 0.0320591144, -0.018837858, 0.00241207983, -0.00664190855, 0.0277493447, 0.0170722418, 0.000908005575, -0.00214619492, -0.00550538115, 0.0117197884, -0.00161094964, 0.00603715098, -0.0152093107, -0.0166690703, 0.010246126, 0.00589812594, 0.000141740107, -0.0112957628, 0.00134245795, 0.00136591843, -0.0226054285, 0.00946758687, -0.0147227235, 0.00144759542, 0.022424696, 0.0162380934, 0.00124166498, 0.00115738122, -0.00807733927, -0.012609547, -0.00669751875, -0.00862648711, 0.00940502621, 0.00368763227, -0.00557836937, -0.00684349472, 0.0058668456, 0.0242459215, 0.00265189749, 0.00261714146, 0.000956664211, -0.0139163798, 0.00325491768, -0.0134645496, -0.00566178421, 0.00501531875, -0.00756989885, -0.00720843486, 0.00779233873, 0.0145836994, 0.0129432064, 0.00968307536, 0.010746615, 0.00898100063, 0.00266232435, 0.0106979562, 0.0058390405, -0.00733355712, -0.00966222212, -0.00671489676, -0.0212568883, -0.0137982089, 0.0220910367, 0.00708678784, 0.0250383615, 0.00802173, -0.0130891828, 0.00428196322, -0.00818856, -0.00232692715, -0.00946063641, -0.0119352769, -0.00336439954, -0.00365982717, -0.0252608024, 0.0281942245, 0.00926600117, 0.0210344493, 0.000971435627, -0.0161824841, 0.00197588955, 0.0104477117, 0.00202802382, -0.0422357284, 0.0090991715, 0.00256500719, -0.0116711296, -0.00708331214, 0.00463300059, -0.0137495501, -0.00113565859, 0.00254762894, -0.0255944617, -0.00357641233, 0.0181566365, 0.01088564, 0.00497361133, 0.0189351737, -0.00835538935, -0.00693038525, -0.0127972309, -0.0110177137, 0.0161268748, -0.0175449271, 0.0282637365, -0.0135827204, -0.0193800535, 0.0074656303, 0.00485196477, 0.0098221, -0.0211734734, 0.00764636276, -0.0236898214, 0.0121577168, -0.0133255245, -0.00242772023, -0.0122897904, 0.00984295458, 0.0011643325, 0.00718062976, -0.0157237016, -0.00361811975, -0.00677745789, -0.0247464105, -0.0193939563, -0.0315030143, 0.0234117731, -0.000495710236, 0.0151119931, 0.0193939563, 0.00725709321, -0.00324275298, 0.0247464105, -0.030084962, 0.00300641079, 0.018267855, -0.013680038, -0.0039517791, -0.00138590322, -0.00642989576, -0.00964831933, 0.0165717527, -0.000690344896, -0.00141892163, -0.00153796154, 0.00355382077, -0.000358206016, -0.00285522128, -0.00573129626, -0.0113444217, -0.0157237016, -0.00456696376, 0.00416726759, 0.0243015308, 0.0270959288, -0.00711806864, -0.0129432064, 0.0159878489, -0.0141249169, 7.39655225e-05, 0.0237315297, -0.0255249497, 0.00646117656, -0.00872380473, -0.00522385584, -0.00708678784, 0.00994027127, -0.0113096656, -0.0130266212, 0.00698947068, -0.0198527388, 0.00947453827, 0.0077575827, -0.0197415184, -0.0290561784, 0.005140441, 0.00396220619, -0.000480938848, 0.0244544577, 0.029083984, -0.00111741165, -0.0126582058, -0.00626654178, 0.000198653375, -0.0147644309, 0.01862932, 0.0132977199, -0.00768111879, 0.00019376578, 0.000189529877, -0.0143056493, -0.0142639419, -0.00631172489, -0.0226749405, -0.00103225897, 0.0159739461, 0.0141040636, -0.00643337145, -0.00384403509, 0.00265884888, 0.015834922, 0.00161181844, -0.0030637586, -0.00185771857, -0.0120395459, -0.016335411, -1.46763459e-05, -0.0126234498, -0.007003373, 0.0259420238, -0.0151258959, -0.00410470646, -7.80656683e-06, 0.0038683645, 0.0104894191, 0.0193939563, 0.00640556635, -0.00312110619, 0.0213124976, 0.0199917629, -0.0231198203, -0.00155273301, 0.012609547, -0.00613794383, 0.0136313792, 0.00966917351, -0.0153344329, 0.0288337395, 0.00596416276, -0.0121577168, -0.0026849159, -0.0125330836, 0.00916173309, 0.0053733075, 0.000108504493, 0.0165717527, -0.00969697814, 0.0180176105, 0.00884892698, 0.00679483591, -0.00624568807, -0.00566873513, 0.0166690703, -0.0161685813, -0.00295948982, 0.00641599344, -6.57652345e-05, 0.0044175121, 0.0295010582, -0.020561764, 0.0234534796, -0.0032966251, 0.00442793919, 0.0189907849, -0.00764636276, -0.00812599808, 0.0244544577, 0.0248576291, 0.00836234, -0.0168359, -0.0226749405, -0.00979429577, -0.000695558323, -0.000980993616, -0.0125608882, 0.0264842194, 0.00486239139, -0.0151119931, -0.00616227323, 0.0256778765, 0.0155707747, 0.00757685024, 0.00939807482, -0.0176283419, 0.00329314941, -0.00246073864, 0.00211143889, 0.00144411984, -0.0094119776, -0.00614837091, 0.00978734437, -0.00593635812, 0.000475290959, -0.0247603133, 0.0128180841, 0.0216461569, -0.0167524852, -0.0137286969, -0.0134923542, 0.00933551416, -0.00321494788, -0.0113027142, -0.00741002057, -0.0197832249, 0.00766026508, 0.0137634529, 0.025650071, -0.0228973813, 0.0110802744, 0.0094119776, 0.0134367449, -0.024496166, -0.00839709677, -0.0191715173, 0.00165787048, -0.0148895532, 0.0113722263, 0.000745085883, 0.00119908864, -0.0168637056, -0.00985685643, -0.00131030846, -0.0302517917, -0.0213542059, 0.0272071492, 0.00277528213, -0.00671837246, 0.00910612289, 0.0103434436, -0.000241338319, -0.00298729492, -0.0292230081, 0.0219103042, 0.0175588299, 0.0264564157, 0.0062804441, -0.0154595552, -0.00615879754, 0.0113861291, 0.00783404615, -0.00978734437, -0.0190602969, 0.0366191268, 0.0122619849, -0.00494928192, -0.00761855766, -0.0140832094, -0.00138416537, 0.00773672899, -0.0199222509, -0.00575910136, 0.00429934124, 0.00195677369, 0.000256544154, 0.00991246663, -0.0291117877, -0.023356162, -0.00105571945, 0.00680873822, -0.0086890487, 0.00683654333, 0.00518562412, 0.0228695758, 0.00728489831, -0.00634995662, -0.00873075612, -0.0279856883, -0.00295253866, 0.00590160163, -0.00782709476, 0.014972968, -0.00732660573, 0.00213924376, 0.00177256588, 0.0207146909, 0.0106145414, 0.00715282466, -0.0113235684, 0.0135201598, 0.0139163798, 0.00346693024, -0.00449397601, 0.0190046877, 0.00882807281, -0.020492252, 0.00137460744, -0.0219103042, 0.00652721338, 0.0227861609, 0.0121924728, 0.0195329804, -0.00446269521, -0.0235229917, -0.0107257618, 0.0110663725, -0.00601629727, 0.0110455183, 0.0192410294, 0.0058425162, 0.0107327132, 0.0061727, 0.0032722957, -0.00303247804, -0.0248020198, -0.0159878489, -0.008953196, 0.0011808417, 0.00412903586, -0.0137565015, 0.0224664044, -0.0143751614, -0.0113374703, 0.00787575357, 0.00510916067, 0.00212707906, 0.00655154279, 0.0201585926, 0.00594330905, -0.00845965743, 0.00853612088, -0.0107952738, -0.0109342989, 0.00839709677, 0.00672184769, 0.0038405594, -0.00660715252, 0.0197415184, -0.0201724954, -0.00353991846, -0.0148061384, -0.00396915758, 0.00363897346, 0.0130196707, -0.00864734128, 0.0113861291, -0.00303421565, -0.0186849292, 0.0101279551, 0.0183234662, -0.0288615432, 0.0227027461, 0.00204192637, -0.0044175121, -0.0259003155, -0.00392397447, 0.0210761558, -0.00340610696, -0.00403519394, -0.00332443, 0.00446964661, 0.00473726913, 0.00963441655, 0.0215071328, -0.0113096656, 0.00169349555, 0.0101210037, -0.0135340616, -0.00565830851, 0.00111046038, -0.0163910203, -0.0158210192, -0.010385151, -0.000949713, -0.0179202929, -0.0151537005, -0.000515695, 0.0134993056, -0.0210900586, -0.00582166249, 0.0150007736, 0.00645422516, -0.00476855, -0.00774368, -0.0204505436, 0.00214445707, -0.00750733772, -0.000339307357, -0.00893234182, 0.0145002846, -0.0217712801, -0.00188726129, 0.0152788227, -0.0316976495, 0.00950234383, 0.0074725817, 0.0028065627, 0.014006746, -0.0109829577, 0.0304464251, -0.0114764953, -0.011177592, 0.0127694253, -0.00240165298, -0.0115738129, -0.00438623177, 0.00541849062, -0.0104407603, -0.00741002057, 0.0196998101, -0.00199500564, -0.00703812949, 0.0137425987, 0.00957185589, -0.000112740403, 0.00381970569, 0.0134297935, 0.0339776538, 0.00801477861, -0.00655849371, -0.00778538734, 0.0168219972, 0.00938417204, -0.00153014145, 0.00668709166, -0.00434452435, -0.00621440727, 0.0161685813, -0.00513001438, 0.00177951716, -0.00515781902, -0.011608569, -0.00886978116, -0.00213055476, 0.0342279, 0.0200195685, 0.00522385584, -0.00191854197, 0.0118866181, 0.00802173, 6.07690345e-05, -0.0291395932, -0.0132768657, -0.00426806044, -0.00970393, 0.00314543559, -0.0129640605, 0.00322016142, -0.0016422302, 0.000320191437, 0.0185320023, -0.00820941292, -0.00392049877, -0.0164049231, 0.0241068956, -0.01526492, 0.0296956915, 0.000399913464, -0.0178229772, -0.00912002567, -0.000745085883, -0.0290283728, 0.00791746099, 0.0342000946, -0.0124913761, -0.00102096319, -0.018406881, -0.0326986276, 0.00355034531, -0.00143890642, -0.00310720364, 9.19953e-05, 0.0166412648, 0.000941892853, 0.00907831825, 0.00491800159, 0.00543239294, 0.0144446744, 0.0104894191, -0.00416379189, -0.000124905069, 0.00900880527, -0.00558879599, -0.0223273784, -0.0113722263, 0.00819551, 0.00356250978, 0.0106145414, 0.00624916377, 0.0103225894, -0.00512306299, 0.00722928857, -0.0237454325, -0.00827197451, 0.0172529742, -0.0056374548, 0.00412208447, 0.0313361846, -0.0104755173, -0.00738221547, -0.00377104711, 0.00770892389, 0.00934246462, -0.00660020113, -0.00777843641, -0.000414684851, 0.00658629881, 0.00925209839, -0.00793831516, 0.00326534454, 0.00830673054, -0.00281177601, 0.0111845434, -0.0375366881, 0.0124010099, -0.0179341957, -0.0333103351, -0.00820246153, 0.0212429855, -0.00606843131, -0.0150007736, 0.0150007736, -0.00220354274, 0.000894103083, -0.00125469861, -0.028152518, -0.0192827359, -0.00479287934, 0.00789660681, 0.021632256, 0.0181288309, 0.00176300795, 0.0230781119, 0.00307244761, -0.00898795202, 0.00237384811, -0.013575769, -0.00361116859, 0.0145002846, 0.0119769843, 0.00303247804, 0.0138329649, 0.0067705065, 0.00763941137, -0.0267066602, 0.0212985948, 0.00902270805, 0.0235368945, -0.0170722418, -0.00154578174, 0.0051126359, -0.00287955068, -0.0179620013, -0.010385151, 0.00893929321, -0.0236481149, -0.023356162, 0.0203393251, 0.0024398847, -0.00331400312, 0.0145002846, -0.0189768821, 0.0276659299, -0.00937722158, 0.0247047022, 0.02070079, 0.0259281211, 0.000279352913, -1.72423297e-05, 0.00343912537, 0.0171556566, 0.020992741, 0.0199083481, -0.014041502, 0.0206590816, 0.00555056427, -0.00516129471, -0.0222995747, -0.00825807173, 0.0129710119, 0.0184207819, -0.00707983691, 0.0144029669, 0.0173780974, -0.00195156026, 0.0055818446, 0.0164049231, 0.000941892853, -0.0139302826, 0.00209753634, -0.0140971122, -0.0300571565, 0.00870295055, -0.00704508042, 0.001871621, -0.00968307536, -0.000158140683, -0.00944673363, -0.0217990857, 0.00428196322, -0.0111636892, 0.00653764, 0.00635343231, 0.0268039759, 0.025219094, -0.0101627111, 0.0275269058, 0.00743087428, -0.0115529587, -0.0119839357, 0.00817465689, -0.00998893, 0.0341166817, 0.00990551524, -0.00126599439, -0.0154595552, 0.00188031013, 0.0285556894, 0.00174649875, -0.00370501028, 0.00255631795, 0.0142013812, -0.00427153613, -0.030307401, -0.00463995198, -0.00450092694, -0.0208120085, 0.000653850904, 0.0110246651, -0.00663148193, 0.00166221499, -0.0172112677, -0.0259281211, -0.0193800535, 0.0155012626, 0.00510220928, 0.00177604146, 0.0338942409, -0.0285834931, 0.00458781747, -0.0121924728, -0.0120882047, -9.56338408e-05, 0.000582600711, -0.00716672698, 0.00459129317, -0.00285695912, -0.0205061547, 0.0188934673, -2.19262711e-05, 0.0160295572, 0.0031541246, 0.00613099243, -0.00086499477, -0.000288693642, 0.0139372339, 0.00772282621, -0.00439318269, 0.0171417557, -0.0123245465, -0.00499446504, 0.0203949343, 0.000124144775, 0.00845965743, -0.000199087823, -0.00337830209, -0.00242772023, -0.0058147111, -0.0350620486, -0.00169262663, -0.00655154279, 0.00756294793, 0.0126304012, 0.0016874132, 0.00641946914, 0.0135827204, -0.0192271266, -0.00221744529, -0.0123106437, 0.00121125334, 0.00383708393, -0.00399696222, -0.0108091766, 0.0259142183, 0.0116989352, 0.0106423469, -0.0084249014, 0.0183234662, -0.0146810161, 0.0323927738, 0.000251330726, -0.000730314525, -0.00577647937, 0.0143056493, -0.00975258835, 0.0200473722, -0.0130127193, -0.0385654718, -0.0159600452, -0.00852917, -0.0120812533, 0.00320452102, -0.0108717373, 0.00224351231, 0.0105589321, -0.00636733463, 0.0135966232, -0.0238010418, -0.00341653381, 0.00371196144, 0.00983600318, -0.0174059011, 0.0191576146, -0.027221052, -0.0208815206, -0.0044140364, 0.0129988166, 0.0154317506, -0.0173502918, -0.0147783337, -0.013144793, 0.00878636539, -0.0185737107, 0.005606174, -0.0014667114, -0.0184346847, -0.015042481, -0.00661757914, -0.0114486907, 0.000946237356, -0.010315638, 0.00953014847, -0.0109829577, -0.0181149282, -0.0054045883, 0.0022070182, 0.0106840543, 0.0193105415, 0.00216009747, -0.0164744351, -0.0154456524, -0.0173641946, -0.00272141, -0.0371196158, 0.0128875971, 0.000781579933, 0.00549147883, 0.0174198039, 0.0347561948, 0.011247104, -0.00332443, 0.000304985588, -0.00345824123, 9.86207e-05, 0.0154456524, 0.0145697966, -0.0111289332, 0.00217226218, -0.00268665375, -0.0035138512, 0.0150563829, -0.0127972309, -0.00440013409, 0.00444184151, -0.00810514484, 0.0259420238, 0.00819551, 0.0179480985, 0.0137912575, 0.0249132402, 0.0174476095, -0.0101279551, -0.00393440109, -0.0060753827, -0.0102183213, 0.00831368193, -0.00722233718, -0.0220354274, -0.0102252718, 0.00564788142, -0.0172251705, 0.00904356129, -0.0175588299, 0.00588422362, 0.00827197451, 0.0149590662, -0.00762550905, 0.00539763691, -0.010850884, 0.00172216946, -0.0648411587, -0.00238079927, 0.00779233873, 0.0238288473, 0.0104755173, 0.0145836994, 0.00538721029, 0.0261366572, 0.0177951716, 0.000804605894, 0.0301127657, 0.00631172489, 0.00502574584, -0.00323753944, 0.000169870895, 0.00989161246, 0.0103364922, 0.00327055785, -0.00993332, 0.00263451948, -0.00779929, -0.0144307716, 0.00680526299, -0.0163910203, 0.00413598726, -0.00681916531, 0.00124948518, -0.000848051161, -0.0056409305, -0.0229668934, -0.0201446898, -0.00887673162, 0.018698832, 0.00597806554, 0.0143890642, 0.0112679582, 0.00602324819, -0.0167524852, -0.00078679336, 0.0137773557, 0.0131586948, 0.008487463, -0.0100931991, -0.0126304012, -0.00809124205, 0.034533754, 0.0146532115, -0.00291604479, 0.0156124821, -0.00031693303, -0.00247464096, 0.0250244588, -0.0122689363, 0.0111358846, -0.0137286969, -0.00950929429, -0.00148235168, -0.008953196, 0.00278223329, 0.00170044682, -0.0111219818, 0.00496318471, 0.00543586863, 0.00340089365, 0.0155707747, 0.0124010099, -0.00494580623, 0.0117406426, 0.0228834786, 0.00307939877, -0.0104963705, -0.0261366572, 0.0104824677, 0.0147366263, 0.0118935695, 0.00699294638, 0.00568611315, -0.00685044564, 0.00998893, 0.00797307119, 0.0285278838, 0.00943283085, 0.0100931991, 0.000241338319, 0.0241486039, -0.000296079321, 0.00130596396, -0.00767416786, -0.00871685334, -0.0170027297, 0.026581537, -0.00590507733, 0.0249410439, 0.0223690867, 0.0204088371, 0.0141874785, -0.01217857, -0.012748572, 0.0148895532, 0.00559574738, 0.00161181844, -0.00991246663, -8.78137e-05, 0.0194217619, 0.015904434, -0.0115877148, -0.0159461424, -0.0100514917, 0.00243640924, -0.00263451948, 0.00529336836, 0.000532638689, 0.00295775221, -0.0106214928, 0.00986380782, 0.0223690867, -0.00344781438, 0.0024590008, 0.00273878803, -0.0046538543, 0.000368415669, -0.0116989352, 0.00314022205, -0.00455653714, 0.0361186378, 0.0164049231, -0.00978734437, -0.0188934673, -0.005873797, -0.0107396636, 0.0222022571, 0.032670822, 0.00689562876, -0.0250244588, 0.0190046877, 0.00230259774, -0.00671837246, 0.0106423469, 0.000170196741, 0.0120256431, -0.00879331678, -0.00305854506, 0.00969697814, -0.00411860878, -0.0131378416, -9.50907779e-05, -0.0120325945, 0.0158766303, -0.00900880527, -0.002704032, -0.0123036923, -0.00241729338, 0.0222439636, 0.00597459, -0.0158071164, 0.01604346, 0.00187335885, -0.0107327132, 0.0129154017, 0.000785055512, -0.00721538579, -0.0216739625, -0.0107257618, -0.00621093204, -0.00567568652, 0.00211839, 0.00526903896, 0.000921908068, -0.00373976654, -0.0169471204, 0.0165161435, 0.00318888086, -0.00035516487, -0.0124218641, 0.00218268903, 0.0165856555, -0.00785489939, -0.019560786, 0.00383708393, 0.0053489781, 0.00329488725, 0.00552623486, -0.0193661507, 0.00212881691, -0.00201759697, -0.00188378571, -0.0010418169, -0.00443489058, -0.00506745325, 0.0168637056, 0.0320035033, -0.00461909827, -0.0146810161, 0.0200751778, -0.00295080082, -0.0215905476, -0.0101488084, 0.024496166, -0.0249827523, 0.00310025248, -0.0179480985, -0.0132351583, 0.00185424299, -0.00552971056, 0.00299250823, 0.00797307119, -0.00256500719, 0.0248993374, -0.0169471204, -0.0103434436, -0.0215766449, 0.0138607705, -0.011817106, 0.00203845068, -0.0070311781, -0.0164327286, -0.0203115195, -0.0120256431, -0.0261088535, -0.0190881025, -0.0139024779, -0.0172390714, 0.0150285782, -0.0170166325, 0.0171417557, 0.00548800314, 0.0166412648, 0.0387879126, 0.0123801567, -0.00949539244, -0.00644379854, -0.0196998101, 0.0212707911, -0.00969697814, -0.00502227, -0.00946063641, 0.00602324819, 0.0384542532, -0.000987075851, 0.0169610232, 0.0095649045, 0.0372864455, -0.0122341802, 0.00384403509, -0.0026883916, -0.0102600288, 0.00399696222, -0.00606495608, -0.00522385584, -0.0104477117, -0.00483806198, -0.0013320311, 0.00310546602, -0.012074302, 0.0197971277, -0.0049145259, -0.00792441238, 0.0120464964, 0.00438623177, 0.0175171215, -0.0132838171, -0.00215140847, 0.0168776084, 0.00768111879, 0.00901575666, 0.00702075101, -0.00159270258, -0.00713197095, 0.0086890487, 0.00738916686, 0.00436885376, -0.0107674692, -0.00198457879, 0.00106875296, 0.0192827359, -0.0253025088, -0.0284027625, 0.000223960218, 0.00855002366, -0.00490409881, -0.0296678878, -0.00843880419, 0.00570349162, 0.00564440573, 0.00827892497, -0.0152927255, 0.012143814, 0.0089462446, 0.00609276071, 0.0277771503, 0.0186710283, 0.00506397756, 0.0155151654, -0.00285174581, -0.010816128, -0.00908526871, -0.00312110619, -0.0135132084, -0.00766721647, -0.00393092539, 0.00715282466, -0.0194356628, -0.00665233564, 0.0162241906, -0.0125330836, -0.016335411, -0.00182296243, -0.0189351737, -0.0185876116, -0.0133533301, -0.0158766303, 0.0196720064, 0.00163527892, 0.0028065627, -0.00796612, 0.000762898475, 0.00476855, -0.0105172247, 0.0122758877, -0.0294732526, -0.005140441, -0.00246421411, -0.0112540554, -0.00889758579, 0.0100167347, -0.00489367219, 0.00605452899, 0.0157515071, 0.0163910203, 0.0181010254, 0.0130613782, 0.00204887753, 0.01862932, -0.00969697814, -0.00994027127, -0.0140136974, 0.0105033219, -0.0250522643, -0.0194773711, -0.0122341802, 0.00503269676, 0.0125678396, -0.0106910048, -0.0129918652, -0.00321321, -0.00670099398, -0.0231754296, -0.0155290673, 0.0311415493, -0.0148200411, -0.00765331369, -0.00655501802, -0.00570349162, 0.00280830055, -0.00457739085, 0.00199848111, 0.0093007572, -0.0145002846, 0.01862932, 0.00781319197, -0.0209649354, -0.00971783139, -0.010246126, -0.0111497873, 0.0109760063, -0.00424720673, 0.000804171432, -0.00403519394, -0.00763246, 6.44075699e-05, -0.0164883379, -0.0112192994, -0.0168219972, 0.0684558, 0.0248437282, 0.0190324914, -0.0157376043, 0.0046538543, -0.01862932, -0.0149173588, 0.0422079228, 0.0206590816, 0.00674270187, 0.0118449107, 0.00652373768, -0.0208537169, 0.0186849292, -0.00596068706, -0.005140441, -0.0123245465, -0.0151537005, -0.00981514901, -0.00954405125, 0.00591550441, -0.0155985802, 0.00194808468, 0.00839709677, 0.00194287125, 0.00946063641, -0.0235786028, -0.0131934509, -0.00328272255, -0.0063082492, -0.00687825074, 0.00948844105, 0.00633953, 0.0101071009, -0.0173085853, 0.00212881691, -0.00966917351, 0.00608233409, 0.0148061384, -0.0196581036, -0.00707636122, -0.000159552656, 0.00799392443, -0.000894972, 0.0175310243, -0.0114695439, 0.009418929, -0.00539416121, 0.00923124515, -0.0225776229, -0.00393092539, 0.00943283085, -0.000497013563, -0.0273461733, 0.0223273784, -0.00923819654, 0.0126234498, 0.0124149127, 0.0171139501, 0.0174893159, 0.0167524852, -0.00374324201, -0.00509873359, -0.0116641792, -0.00462952489, 0.00383013254, -0.0266649518, 0.0118032033, -0.0120673506, -0.0267483667, -0.0129432064, -0.00925209839, 0.00378842512, -0.0157515071, -0.0162102897, 0.00242945785, -0.00825807173, 0.00991941802, 0.00196372485, -0.0142639419, -0.0204366427, -0.00350863789, -0.0370362, -0.00896709785, 0.00778538734, 0.00375366886, -0.0130891828, 0.010280882, -0.0260115359, 0.0137008913, -0.00227826857, 0.0348118022, 0.000454871682, 0.0256917793, 0.0146810161, 0.0134158907, -0.00404909672, 0.00336092385, 0.0117684472, 0.00813990086, 0.0239400659, 0.0130613782, -0.00931466, 0.00595026044, -0.0095649045, 0.0236759186, 0.00291952025, 0.00866819452, 0.0144585771, 0.00665581133, 0.00544282, 0.011281861, 0.000335397286, 0.011539056, 0.0137982089, 0.0161824841, -0.00467470801, 0.0200195685, 0.0322537497, -0.00466428138, 0.0264425129, 0.00258064736, -0.0144168697, 0.00409428, 0.00195851154, 0.0230920147, 0.00884892698, 0.00166916626, -0.0056409305, 0.0278744679, 0.017697854, 0.013040524, 0.0257751942, -0.00619007833, 0.014333454, 0.0208259113, -0.0105589321, -0.013645282, -0.00929380581, 0.0135896718, 0.0183095634, 0.00164483686, 0.0153900431, -0.00818160828, 0.00828587636, -0.0126721086, -0.000675139076, 0.00211665221, 0.000747692597, 0.00461214688, 0.00706941, 0.0038405594, -0.00972478278, -0.00219137804, -0.00193070655, 0.00901575666, -0.00501879444, -0.0157097988, 0.0114208851, -0.0184902959, -0.0135688186, 0.00277702, 0.0221744515, 0.012143814, 0.0044487929, 0.011351373, 0.0166829731, 0.00715977605, 0.011817106, 0.00823721755, 0.0273183677, -0.00759075256, -0.000582166249, 0.00298208138, -0.0153344329, -0.00590855302, 0.00330183841, 0.0122689363, 0.00125382969, -0.00178125489, -0.00289171538, -0.000285000802, 0.00350863789, 0.0444879271, 0.0077019725, -0.0142639419, -0.0204366427, -0.00548800314, 0.0182817578, 0.0216461569, -0.0133324759, -0.00474422053, 0.000566091505, -0.0190046877, -0.012248083, -0.0103086876, 0.0219659153, -0.0049075745, -0.00594678475, 0.00454263436, -0.00195156026, -0.00274921488, -0.00289692869, 0.0194773711, -0.0204783492, 0.0100236861, -0.00657587172, -0.00785489939, -0.00486934278, -0.00969697814, -0.0107674692] |
14 Feb, 2025 | MEX (Minimum Excluded) in Competitive Programming
14 Feb, 2025
MEX of a sequence or an array is the smallest non-negative integer that is not present in the sequence.Note: The MEX of an array of size N cannot be greater than N since the MEX of an array is the smallest non-negative integer not present in the array and array having size N can only cover integers from 0 to N-1. Therefore, the MEX of an array with N elements cannot be greater than N itself.ExamplesInput: S[] = {1, 2, 0, 4, 5}Output: 3Explanation: The given sequence contains 0, 1, 2, 4, and 5. The smallest non-negative integer missing from the sequence is 3, as all numbers before it are present.Input: S[] = {2, 0, 3, 10}Output: 1Explanation: The given sequence contains 0, 2, 3, and 10. The smallest non-negative integer missing from the sequence is 1, as 0 is present but 1 is not.Input: S[] = {1, 2, 3, 4, 5}Output: 0Explanation: The given sequence contains 1, 2, 3, 4, and 5, but 0 is missing. Since 0 is the smallest non-negative integer not present in the sequence, it is the MEX.How to Find MEX of an array (Without Updates) ?The idea is to use a map to store frequency of each element of an array. Then, iterate through non-negative integers from 0 to N, and return the first integer with a frequency of 0 in the map. This integer represents the smallest non-negative integer not present in the array, which is the MEX.
C++
#include <bits/stdc++.h>
using namespace std;
// Function to find the MEX of the array
int mex(vector<int>& arr, int N)
{
// Create a map to store the frequency of each element
map<int, int> mp;
for (int i = 0; i < N; i++) {
mp[arr[i]]++;
}
// Initialize MEX to 0
int mex = 0;
// Iterate through non-negative integers from 0 to N
for (int i = 0; i <= N; i++) {
// Find the first integer with a frequency of 0 in the map
if (mp[i] == 0) {
mex = i;
break;
}
}
// Return MEX as the answer
return mex;
}
int main()
{
// Example array
vector<int> arr = { 1, 0, 2, 4 };
int N = arr.size();
// Call the mex function and print the result
cout << "MEX of the array: " << mex(arr, N) << endl;
return 0;
}
Java
import java.util.HashMap;
public class MinimumExcludedValue {
// Function to find the MEX of the array
static int mex(int[] arr, int N) {
// Create a map to store the frequency of each element
HashMap<Integer, Integer> mp = new HashMap<>();
for (int i = 0; i < N; i++) {
mp.put(arr[i], mp.getOrDefault(arr[i], 0) + 1);
}
// Initialize MEX to 0
int mex = 0;
// Iterate through non-negative integers from 0 to N
for (int i = 0; i <= N; i++) {
// Find the first integer with a frequency of 0 in the map
if (!mp.containsKey(i)) {
mex = i;
break;
}
}
// Return MEX as the answer
return mex;
}
public static void main(String[] args) {
// Example array
int[] arr = {1, 0, 2, 4};
int N = arr.length;
// Call the mex function and print the result
System.out.println("MEX of the array: " + mex(arr, N));
}
}
Python
# Function to find the MEX of the array
def mex(arr):
# Create a dictionary to store the frequency of each element
freq_map = {}
for num in arr:
freq_map[num] = freq_map.get(num, 0) + 1
# Initialize MEX to 0
mex_val = 0
# Iterate through non-negative integers from 0 to N
N = len(arr)
for i in range(N + 1):
# Find the first integer with a frequency of 0 in the dictionary
if i not in freq_map:
mex_val = i
break
# Return MEX as the answer
return mex_val
# Main function
if __name__ == "__main__":
# Example array
arr = [1, 0, 2, 4]
# Call the mex function and print the result
print("MEX of the array:", mex(arr))
C#
using System;
using System.Collections.Generic;
using System.Linq;
class MexAlgorithm
{
static int Mex(int[] arr, int N)
{
Dictionary<int, int> freqMap = new Dictionary<int, int>();
// Store the frequency of each element in the array
for (int i = 0; i < N; i++)
{
if (freqMap.ContainsKey(arr[i]))
{
freqMap[arr[i]]++;
}
else
{
freqMap[arr[i]] = 1;
}
}
int mex = 0;
// Iterate through non-negative integers from 0 to N
for (int i = 0; i <= N; i++)
{
// Find the first integer with a frequency of 0 in the dictionary
if (!freqMap.ContainsKey(i) || freqMap[i] == 0)
{
mex = i;
break;
}
}
return mex;
}
static void Main()
{
// Example array
int[] arr = { 1, 0, 2, 4 };
int N = arr.Length;
// Call the Mex function and print the result
Console.WriteLine("MEX of the array: " + Mex(arr, N));
}
}
JavaScript
// Function to find the MEX of the array
function mex(arr, N) {
// Create a map to store the frequency of each element
const mp = new Map();
for (let i = 0; i < N; i++) {
if (mp.has(arr[i])) {
mp.set(arr[i], mp.get(arr[i]) + 1);
} else {
mp.set(arr[i], 1);
}
}
// Initialize MEX to 0
let mex = 0;
// Iterate through non-negative integers from 0 to N
for (let i = 0; i <= N; i++) {
// Find the first integer with a frequency of 0 in the map
if (!mp.has(i) || mp.get(i) === 0) {
mex = i;
break;
}
}
// Return MEX as the answer
return mex;
}
// Main function
function main() {
// Example array
const arr = [1, 0, 2, 4];
const N = arr.length;
// Call the mex function and print the result
console.log("MEX of the array:", mex(arr, N));
}
// Call the main function
main();
OutputMEX of the array: 3Time Complexity: O(N log N) due to insertions in the map and an additional O(N) iteration for finding the MEX, making it effectively O(N log N).Auxiliary Space : O(N) for storing the frequency map.Further Optimization: We can use a Set instead of map to optimize the space used. However time and space complexity remain the same.How to Find MEX of an array (With Updates) ?Given an array arr of size N, and q queries. In each query you are given two numbers (idx, val), you have to update the element at index idx with value val. The task is to determine the MEX of the array after each query.Approach:The idea is to use a map to store frequency of each element of an array. Then insert all the numbers in the set from 0 to N which are not present in the array. For each query, update the array and maintain the map and set accordingly. The MEX for each query is determined by selecting the smallest element from the set and added to the result. Step-by-step approach:Create a map to store the frequency of array elements and a set to store the elements(from 0 to N) which are not present in the array. For each query.Decrement the frequency of the element which is being replaced. If the frequency becomes 0, that element is added to set since it is not present in the array.Increment the frequency of the updated element. Remove the updated element from the set if the set contains it, since the updated element will be present in the set. The MEX for each query is determined by selecting the smallest element from the set and added to the result. Below is the implementation of above approach:
C++
#include <bits/stdc++.h>
using namespace std;
// Function to calculate the MEX of an array after a series
// of queries
vector<int> mex(vector<int>& arr, int N,
vector<vector<int> > queries, int q)
{
// Initialize a map to store element frequencies
map<int, int> mp;
// Initialize a set to store non-present elements
set<int> st;
// Populate the map for the initial array
for (int i = 0; i < N; i++) {
mp[arr[i]]++;
}
// Add the elements to set which are not present in the
// array.
for (int i = 0; i <= N; i++) {
if (mp[i] == 0)
st.insert(i);
}
// Initialize a vector to store MEX values after each
// query
vector<int> mex;
// Process each query
for (int i = 0; i < q; i++) {
int idx = queries[i][0];
int val = queries[i][1];
// Update the frequency of element which being
// replaced.
mp[arr[idx]]--;
// If the frequency of element which is being
// replaced becomes 0, add it to set.
if (mp[arr[idx]] == 0) {
st.insert(arr[idx]);
}
arr[idx] = val;
mp[arr[idx]]++;
// If the updated element is in the set, remove it
if (st.find(arr[idx]) != st.end())
st.erase(arr[idx]);
// Calculate the MEX and add it to the result vector
int ans = *st.begin();
mex.push_back(ans);
}
return mex;
}
// Driver Code
int main()
{
// Example array
vector<int> arr = { 1, 0, 2, 4, 7 };
int N = arr.size();
// Example queries
vector<vector<int> > queries
= { { 1, 3 }, { 0, 0 }, { 4, 1 }, { 2, 10 } };
int q = queries.size();
// Call the 'mex' function to calculate MEX values after
// each query
vector<int> ans = mex(arr, N, queries, q);
// Print the results
for (int i = 0; i < q; i++) {
cout << "MEX of the array after query " << i + 1
<< " : " << ans[i] << endl;
}
return 0;
}
Java
import java.util.*;
public class Main {
// Function to calculate the MEX of an array after a series
// of queries
static List<Integer> mex(List<Integer> arr, int N,
List<List<Integer>> queries, int q) {
// Initialize a map to store element frequencies
Map<Integer, Integer> mp = new HashMap<>();
// Initialize a set to store non-present elements
TreeSet<Integer> st = new TreeSet<>();
// Populate the map for the initial array
for (int i = 0; i < N; i++) {
mp.put(arr.get(i), mp.getOrDefault(arr.get(i), 0) + 1);
}
// Add the elements to set which are not present in the array
for (int i = 0; i <= N; i++) {
if (!mp.containsKey(i))
st.add(i);
}
// Initialize a list to store MEX values after each query
List<Integer> mex = new ArrayList<>();
// Process each query
for (int i = 0; i < q; i++) {
int idx = queries.get(i).get(0);
int val = queries.get(i).get(1);
// Update the frequency of element which is being replaced
mp.put(arr.get(idx), mp.get(arr.get(idx)) - 1);
// If the frequency of the element which is being replaced becomes 0, add it to set
if (mp.get(arr.get(idx)) == 0) {
st.add(arr.get(idx));
}
arr.set(idx, val);
mp.put(val, mp.getOrDefault(val, 0) + 1);
// If the updated element is in the set, remove it
if (st.contains(arr.get(idx)))
st.remove(arr.get(idx));
// Calculate the MEX and add it to the result list
int ans = st.first();
mex.add(ans);
}
return mex;
}
// Driver Code
public static void main(String[] args) {
// Example array
List<Integer> arr = new ArrayList<>(Arrays.asList(1, 0, 2, 4, 7));
int N = arr.size();
// Example queries
List<List<Integer>> queries = new ArrayList<>(
Arrays.asList(
Arrays.asList(1, 3),
Arrays.asList(0, 0),
Arrays.asList(4, 1),
Arrays.asList(2, 10)
)
);
int q = queries.size();
// Call the 'mex' function to calculate MEX values after each query
List<Integer> ans = mex(arr, N, queries, q);
// Print the results
for (int i = 0; i < q; i++) {
System.out.println("MEX of the array after query " + (i + 1) + " : " + ans.get(i));
}
}
}
Python
def mex(arr, N, queries, q):
# Initialize a dictionary to store element frequencies
mp = {}
# Initialize a set to store non-present elements
st = set()
# Populate the dictionary for the initial array
for num in arr:
mp[num] = mp.get(num, 0) + 1
# Add the elements to set which are not present in the array.
for i in range(N + 1):
if i not in mp:
st.add(i)
mex = [] # Initialize a list to store MEX values after each query
# Process each query
for i in range(q):
idx, val = queries[i]
# Update the frequency of the element being replaced.
mp[arr[idx]] -= 1
# If the frequency of the element being replaced becomes 0, add it to the set.
if mp[arr[idx]] == 0:
st.add(arr[idx])
arr[idx] = val
# Update the frequency of the new element.
mp[val] = mp.get(val, 0) + 1
# If the updated element is in the set, remove it.
if arr[idx] in st:
st.remove(arr[idx])
# Calculate the MEX and add it to the result list
ans = min(st)
mex.append(ans)
return mex
# Example array
arr = [1, 0, 2, 4, 7]
N = len(arr)
# Example queries
queries = [
[1, 3],
[0, 0],
[4, 1],
[2, 10]
]
q = len(queries)
# Call the 'mex' function to calculate MEX values after each query
ans = mex(arr, N, queries, q)
# Print the results
for i in range(q):
print(f"MEX of the array after query {i + 1}: {ans[i]}")
C#
using System;
using System.Collections.Generic;
using System.Linq;
class Program
{
// Function to calculate the MEX of an array after a series
// of queries
static List<int> Mex(List<int> arr, int N, List<List<int>> queries, int q)
{
// Initialize a dictionary to store element frequencies
Dictionary<int, int> mp = new Dictionary<int, int>();
// Initialize a HashSet to store non-present elements
HashSet<int> st = new HashSet<int>();
// Populate the dictionary for the initial array
foreach (int num in arr)
{
if (mp.ContainsKey(num))
mp[num]++;
else
mp[num] = 1;
}
// Add the elements to set which are not present in the array.
for (int i = 0; i <= N; i++)
{
if (!mp.ContainsKey(i))
st.Add(i);
}
// Initialize a list to store MEX values after each query
List<int> mex = new List<int>();
// Process each query
foreach (List<int> query in queries)
{
int idx = query[0];
int val = query[1];
// Update the frequency of element which is being replaced.
mp[arr[idx]]--;
// If the frequency of element which is being replaced becomes 0, add it to set.
if (mp[arr[idx]] == 0)
st.Add(arr[idx]);
arr[idx] = val;
if (mp.ContainsKey(val))
mp[val]++;
else
mp[val] = 1;
// If the updated element is in the set, remove it
if (st.Contains(val))
st.Remove(val);
// Calculate the MEX and add it to the result list
int ans = st.Min();
mex.Add(ans);
}
return mex;
}
// Driver Code
static void Main(string[] args)
{
// Example array
List<int> arr = new List<int> { 1, 0, 2, 4, 7 };
int N = arr.Count;
// Example queries
List<List<int>> queries = new List<List<int>>
{
new List<int> { 1, 3 },
new List<int> { 0, 0 },
new List<int> { 4, 1 },
new List<int> { 2, 10 }
};
int q = queries.Count;
// Call the 'Mex' function to calculate MEX values after each query
List<int> ans = Mex(arr, N, queries, q);
// Print the results
for (int i = 0; i < q; i++)
{
Console.WriteLine($"MEX of the array after query {i + 1} : {ans[i]}");
}
}
}
JavaScript
function calculateMex(arr, N, queries, q) {
// Initialize a dictionary to store element frequencies
let mp = new Map();
// Initialize a Set to store non-present elements
let st = new Set();
// Populate the dictionary for the initial array
arr.forEach((num) => {
mp.set(num, (mp.get(num) || 0) + 1);
});
// Add the elements to set which are not present in the array
for (let i = 0; i <= N; i++) {
if (!mp.has(i)) {
st.add(i);
}
}
// Initialize a list to store MEX values after each query
let mex = [];
// Process each query
for (let i = 0; i < q; i++) {
let idx = queries[i][0];
let val = queries[i][1];
// Update the frequency of element which is being replaced
mp.set(arr[idx], mp.get(arr[idx]) - 1);
// If the frequency of element which is being replaced becomes 0, add it to set
if (mp.get(arr[idx]) === 0) {
st.add(arr[idx]);
}
arr[idx] = val;
if (mp.has(val)) {
mp.set(val, mp.get(val) + 1);
} else {
mp.set(val, 1);
}
// If the updated element is in the set, remove it
if (st.has(val)) {
st.delete(val);
}
// Calculate the MEX and add it to the result list
let ans = Math.min(...Array.from(st));
mex.push(ans);
}
return mex;
}
// Example array
let arr = [1, 0, 2, 4, 7];
let N = arr.length;
// Example queries
let queries = [
[1, 3],
[0, 0],
[4, 1],
[2, 10]
];
let q = queries.length;
// Call the 'calculateMex' function to calculate MEX values after each query
let ans = calculateMex(arr, N, queries, q);
// Print the results
for (let i = 0; i < q; i++) {
console.log(`MEX of the array after query ${i + 1} : ${ans[i]}`);
}
OutputMEX of the array after query 1 : 0
MEX of the array after query 2 : 1
MEX of the array after query 3 : 5
MEX of the array after query 4 : 2Time Complexity: O(N + Q log N), O(N) for initialization, O(log N) for each query due to set operations.Auxiliary Space: O(N), for the frequency map and set.How to solve MEX related problems in Competitive Programming ?MEX Related tasks usually involves finding MEX of the array while updating its elements. Some of the common characteristics of MEX related tasks include:Array Updates - In general we are generally given queries in which we have either add, remove or update the values of array and the task involves finding the MEX after each such query.Data Structures- To optimally compute MEX after each query, set and maps are generally used because both provide fast lookup time for the elements (log n), also they keep elements sorted making it easier to find the minimum non-present element (MEX).Let us consider few problems involving MEX:Problem 1: Given an empty array arr[] and a integer m. You are given q queries. In ith query you add a element yi to the array. After each query you can perform the following operation any number of times: Choose an element arrj and set arrj to arrj +m or arrj -m. The task is maximize the value of MEX of array arr after each query. The problem can be solved in following way:Observation: We need to firstly observe that after applying the operation: arrj +m or arrj -m on an element arrj, its modulo with m still remains the same after the operation.Keep the track of Frequency: We keep track of frequency of remainders when divided by m, i.e., for each number [0,m-1] keep track of its frequency with each query. Let freq0 , freq1 ,......, freqm-1 be the frequency of remainders 0, 1, ..... m-1.Query Updates: During each query, we update the frequency of the remainder, by keeping the set sorted based on frequency and remainder. For example, if the query adds an element y, we calculate y % m to determine its remainder when divided by m and then update its frequency.MEX Calculation: In each query after updating the frequency of remainder we will find the minimum of {freq0 , freq1 ,......, freqm-1 }. If frqj is remainder with minimum frequency the maximum MEX will be equal to: j*frqj + j.For example:- Suppose m=5 and frequency of remainders 0, 1, 2, 3, 4 are 3, 4, 4, 2 ,5 respectively. The minimum frequency is of remainder 3 with frequency 2. Since frequency of remainder 3 is 2, elements 3 and 8 will be present in the array by performing the operations. So the MEX will be 13 (2*10+3) in this case.Problem 2: Given an array of n integers each integer lies in range [0,N]. The task is to make the array exactly {0, 1, 2,... , N-1} in almost 2*n operations. In one operation you can pick any element of the array and replace it with MEX of the array.The problem can be solved in following way:Observation: MEX of the array after each operation will lie between [0,N] and in the final array for each index i, arri = i. Let cnt be the number of indexes such that arri is not equal to i. Thus the cnt represents number of indexes for which we have to change the value of that index to its correct value.Perform the Operations: In each operation we will firstly find the MEX of the array. Now we have 2 cases:Case 1: When Mex of the array is between [0,N-1]: In this case we will simply put the MEX of the array in its correct index, i.e., if min_exc represents the MEX of the array then we will put min_exc in the index min_exc, this will decrease the value of cnt by 1.Case 2: When Mex of the array is N: In this case, we will put the MEX of the array in any of the index for which arri is not equal to i. The value of cnt will remain the same.Correctness: The above approach will convert array arr to {0,1,2, .... , N-1} in almost 2*N operations. The maximum value of cnt can be N, and the above approach decreases the value of cnt will by 1 in almost 2 operations because each time we encounter Case 2(MEX of the array is N), next time we perform the operation, we will get Case 1(MEX of the array is not N) since N was inserted in the array in last operation so MEX will not be N. Thus, we will Case 1 in which value of cnt will be decreased by 1. Hence, it takes almost 2*N operations to make the value of cnt 0.Practice Problems on MEX:Minimum operations to make all Array elements 0 by MEX replacement Minimum operations to make the MEX of the given set equal to x Find the Prefix-MEX Array for given Array Rearrange array elements to maximize the sum of MEX of all prefix arrays Maximum number of elements that can be removed such that MEX of the given array remains unchanged Maximum MEX from all subarrays of length K Minimum operations for same MEX Maximize MEX by adding or subtracting K from Array elements MEX of generated sequence of N+1 integers where ith integer is XOR of (i-1) and K Maximize sum of MEX values of each node in an N-ary Tree Find MEX of every subtree in given Tree Minimum size of the array with MEX as A and XOR of the array elements as B Rearrange Array to maximize sum of MEX of all Subarrays starting from first index | NLP/Natural Language Processing (NLP) Tutorial/AI ML DS - Projects/30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated]/Does Artificial Intelligence Require Coding?/Artificial Intelligence – Boon or Bane/Artificial Intelligence Examples/Agents in Artificial Intelligence/What are Diffusion Models?/ML | Common Loss Functions/Loss Functions in Deep Learning/Kaiming Initialization in Deep Learning/Swift - Initialization/Swift – If Statement/6 Best iOS Project Ideas For Beginners/Swift Programming Language/Introduction to Visual Programming Language/What is D Programming Language: Usage and Applications/Best Programming Languages for Data Science in 2024/5 Best Languages for Competitive Programming/MEX (Minimum Excluded) in Competitive Programming | https://www.geeksforgeeks.org/mex-minimum-excluded-in-competitive-programming/?ref=lbp | NLP | MEX (Minimum Excluded) in Competitive Programming | Artificial Intelligence – Boon or Bane, AI ML DS - Projects, MEX (Minimum Excluded) in Competitive Programming, Swift - Initialization, 6 Best iOS Project Ideas For Beginners, ML | Common Loss Functions, Artificial Intelligence Examples, What is D Programming Language: Usage and Applications, 30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated], Swift – If Statement, Natural Language Processing (NLP) Tutorial, Loss Functions in Deep Learning, Does Artificial Intelligence Require Coding?, Best Programming Languages for Data Science in 2024, NLP, 5 Best Languages for Competitive Programming, Swift Programming Language, Agents in Artificial Intelligence, What are Diffusion Models?, Kaiming Initialization in Deep Learning, Introduction to Visual Programming Language | GeeksforGeeks | [-0.0148914279, 0.0127436975, -0.0243609641, 0.0297978744, 0.0289267674, 0.0410021171, -0.0101153571, 0.00949206483, 0.0038749252, 0.0164459031, -0.00168777024, -0.0249016508, 0.017542297, -0.0208464973, -0.0122030107, 0.0134571046, -0.00899643451, 0.0153044527, -0.0270193424, -0.0234147608, -0.0422336832, -0.00767100044, -0.0219729282, 0.03418345, -0.00781743601, 0.0354150161, 0.0169715714, -0.00210267259, -0.0435553603, 0.00949206483, 0.012856341, -0.00529422937, 0.0219729282, 0.0255024154, -0.000734058034, -0.00678111939, 0.0243008882, -0.00356703391, -0.0273497626, -0.00114708301, 0.0086059384, -0.00721667288, -0.00618411042, 0.0102505293, 0.00264148251, 0.0324111953, 0.00124001363, -0.0226187501, -0.0252470896, -0.0184434429, 0.0010710489, -0.0434652455, 0.00364025193, 0.00294749648, 2.06805835e-05, -0.00708150119, -0.0283560418, 0.0113469223, -0.00309580984, -0.0238052569, 0.0502538756, -0.0067548356, -0.00536557, -0.0148764085, 0.0404614285, 0.00900394469, -0.0454477668, 0.0154997008, 0.0268691517, 0.000227867757, -0.035925664, 0.0399808176, -0.0127812456, -0.0210117064, -0.0178126413, -0.00838816166, -0.0121579533, 0.00891383, -0.00545192976, 0.060376741, -0.0077498504, 0.00370408315, 0.026073141, -0.0431949049, 0.0251870137, -0.0191042833, 0.00260581216, -0.0575231165, 0.0208014399, 0.00931934547, -0.0138400914, 0.0236550663, 0.00609399565, 0.0265687704, 0.0291670728, 0.0743144602, 0.0625394881, 0.0138476007, -0.0508246, 0.0234598182, 0.00394626614, 0.00335864397, 0.0332823023, 0.0024049317, 0.0155898156, 0.0113168843, -0.00187738624, -0.00259079295, 0.0158000831, 0.0592352897, 0.0102430191, 0.0232345331, -0.017992869, 0.0183983855, 0.00652579451, -0.0354450531, -0.0209966879, -0.0420534536, 0.00414151419, 0.0218677949, 0.0104157394, 0.0191343203, 0.0223033484, -0.00498633785, -0.0613680035, 0.0186086521, 0.0373074189, 0.0479409359, 0.0292722061, -0.000244060211, 0.0322910435, -0.0118951192, 0.0240605827, -0.0354450531, -0.0133820092, 0.0272446293, 0.00739314687, 0.0522363968, -0.0146436132, 0.00656334218, -0.0141554922, -0.0325013101, -0.00132074126, -0.0145910457, 0.000100674835, -0.0027672674, -0.00608648639, 0.0630801767, -0.0407317728, 0.00762594305, -0.017767584, 0.0188189205, 0.00438932888, -0.00066881883, 0.0226638075, 0.00377730117, -0.016521, -0.0171367824, 0.00380733935, -0.0266288463, 0.0458082259, -0.0358655863, 0.00180041348, 0.000552420912, -0.0260581207, -0.0176624507, 0.0159803126, -0.037667878, -0.0401910841, 0.0449971929, -0.0084182, 0.0137199387, -0.015409586, 0.0409720764, 0.0164909605, 0.005185341, 0.0125484494, -0.0366465785, 0.00764471665, -0.034724135, -0.0031145839, -0.0184584614, -0.00115646992, 0.0232195128, 0.0348743275, -0.0318705104, -0.0251569767, -0.0334324948, 0.000464418437, -0.0166261327, 0.0180980042, 0.0042316285, 0.025457358, 0.0191793777, 0.046228759, 5.21854708e-05, -0.059475597, 0.0148088224, -0.0144033078, 0.010468306, -0.0148313511, -0.0234898571, -0.000158991155, 0.0331921875, 0.0639813244, -0.0249617286, -0.0261181984, -0.0364363119, 0.0151092047, 0.00717537, -0.0316602401, 0.035054557, -0.00549698714, -0.0181580801, 0.0305788666, 0.0128863789, -0.0181130227, 0.0199453514, -0.0257277, -0.0179027561, 0.0351446718, -0.00584242586, 0.0143807791, -0.00083121279, -0.0412123837, -0.0561413579, -0.0175873544, 0.00783245545, 0.000815255, -0.0458382629, 0.033042, 0.0166111141, -0.0218828134, -0.023099361, 0.0238653347, 0.00381109421, -0.0117824757, 0.0223484058, -0.00354450522, 0.0410321541, -0.00135735027, 0.0268391147, -0.0265988093, 0.0132092899, 0.0278303735, 0.000491875224, -0.0368568487, 0.025877893, 0.0245261732, 0.0271094572, 0.00104382681, -0.021807719, 0.00699514104, 0.0141329635, -0.0364363119, 0.0174071249, 0.00356140174, -0.0116097564, -0.00684495037, -0.0156799294, 0.000155705726, 0.00386741571, -0.0226938445, 0.0221831966, 0.0456580333, 0.0455679186, 0.0378180705, 0.00946953613, -0.0203809049, -0.0219879486, 0.0198402181, -0.0287014805, 0.00748701626, -0.0249316897, 0.0314199366, -0.0279505271, -0.0399808176, 0.00170372799, 0.0386591367, 0.00229792087, 0.0285663102, 0.0181280412, 0.0400408953, 0.0170466676, 0.0244660974, 0.00705897249, 0.00277289958, 0.0012259332, -0.0929381326, -0.00465591811, -0.0158000831, -0.0116548138, 0.0215373747, -0.00919919275, 0.0350245163, -0.00782494619, -0.00246500806, -0.00307140383, 0.0064769825, -0.00250818813, -0.0251719952, -0.00323285908, 0.0204109438, 0.00487744948, -0.032951884, -0.012082858, 0.00812532753, 0.00419783546, -0.0305338092, -0.0377279557, -0.0134270666, -0.0327115767, -0.000400587305, -0.0380884111, -0.0458082259, -0.021191936, 0.0483614691, -0.0127136596, -0.0160854459, -0.0288516711, 0.0107837068, -0.02888171, -0.0186537094, 0.0283260047, -0.00166148681, -0.0128112836, -0.0116548138, 0.0325013101, -0.0139827728, -0.0120378006, -0.0522363968, -0.0102054719, -0.0116397953, 0.00187550893, 0.016220618, -0.03418345, -0.000924612745, 0.0277853161, -0.0222132336, 0.0077498504, -0.00835812371, -0.000565093243, 0.0140503589, 0.0354150161, -0.0155597776, 0.000989382504, -0.0247814991, 0.00894386787, 0.0433150567, -0.0102955867, 0.00149815425, -0.00385615136, 0.0328918062, -0.024165716, 0.00943949819, -0.00607522205, -0.0327115767, -0.00668725, 0.0258027967, 0.0296176448, 0.037667878, 0.024841575, 0.00584618095, 0.000352713949, 0.016896477, 0.0141780209, -0.0347842127, -0.0101303766, -0.00682242168, -0.000806806725, -0.00792257, 0.00242182822, 0.0113469223, 0.00592503091, 0.00716786087, 0.00159014622, 0.0645220131, -0.00470848475, -0.029557569, 0.00996516645, -0.0465291403, 0.0493827686, 0.0223183688, 0.0028930523, -0.0204409808, -0.00568097085, -0.0266739037, -0.0171968583, -0.00811781827, 0.0187288057, -0.0314800143, -0.00332297361, -0.0285512898, 0.0153945675, 0.0140954163, -0.00319531141, -0.0141254542, 0.00510273594, -0.000747199752, -0.0252771284, 0.0343036, 0.00363274245, 0.0069425744, 0.0401310101, -0.0164909605, 0.00588372862, -0.0043067243, -0.0102655478, 0.0255324524, -0.0157400072, 0.00557959219, 0.0203508679, -0.0443063155, 0.0131041557, -0.0255624913, 0.00284799491, -0.0410021171, 0.00540687237, 0.005185341, 0.000739220821, 0.00465591811, 0.00742318528, 0.024165716, 0.0164609235, -0.0136072952, 0.0136373341, 0.0104007199, 0.026779037, 0.0159652922, -0.00880118646, -0.026749, 0.0358655863, 0.00621790346, -0.01486139, -0.00234673289, -0.0225136168, 0.0106635541, -0.0130440798, -0.0274398774, -0.0484215468, 0.0211318601, 0.0283410233, -0.00354262791, -0.0097849369, -0.0057635759, 0.0169114955, -0.0484215468, 0.00479484443, -0.0241356771, 0.00136110501, -0.0537683442, -0.039770551, 0.0144033078, -0.0187288057, 0.0683669, -0.0296927411, 0.0246313084, -0.0363762379, 0.0481512025, 0.00937942136, 0.00293810945, 0.0186236724, 0.0139001682, -0.0356853567, 0.0363762379, 0.00825299, 0.00185016415, 0.00367216743, -0.0285362713, -0.035084594, 0.0381785259, -0.036977, 0.0505242199, -0.0027053135, 0.0478207842, 0.0239854865, 0.00248190458, -0.0276952013, -0.0038899444, -0.00394626614, 0.0449971929, -0.0203809049, -0.0291520543, -0.0231594369, -0.0107686874, 0.000582459092, -0.00280293776, 0.00428044051, -0.0375777632, 0.0133219333, 0.0170466676, -0.00871858187, -0.0262984261, 0.0133594805, -0.000596539467, 0.0129164178, -0.0621790327, 0.0120453099, 0.000635964621, 0.0115421703, 0.0172869731, -0.0421736054, -0.0248115361, 0.0365564637, 0.0348142497, -0.036796771, -0.00995765626, 0.0522964709, 0.0147862937, -0.0584242605, 0.0204259623, 0.00611276971, 0.0241206586, 0.0302484483, -0.00866601523, -0.0131717417, -0.00283673056, 0.00302634668, 0.0165660568, 0.000725609774, 0.0298729707, -0.000911001698, 0.00516656693, 0.0206362307, 0.000738282164, -0.00363461976, 0.0441861637, -0.0132017806, 0.0141254542, -0.00186424458, -0.0303836185, 0.0111216363, -0.0130666085, 0.00349944807, -0.01056593, -0.0414226502, -0.00535806036, 0.00474978704, -0.0171668194, 0.0291220155, -0.00753582828, 0.041512765, 0.00204635109, 0.0080277035, -0.0277402587, 0.0220179856, 0.000972486101, -0.00531675806, 0.0253372043, 0.0293623209, 0.00165773206, 0.0267339796, -0.0240455624, 0.00891383, -0.0255024154, 0.00339243701, 0.014666141, -0.0394701697, -0.023099361, -0.0294073783, -0.00106541673, -0.00959719811, 0.019029187, 0.0443964303, 0.00485867541, 0.00241995091, -0.0219879486, 0.0366165414, -0.0233396664, -0.0124583356, -0.00381109421, -0.00212332397, 0.00913911592, 0.0107987262, 0.0346940979, 0.0341534093, -0.0149214659, 0.00550074177, -0.00665345695, 0.000424054626, 0.00916164462, -0.0309092868, 0.0123682208, -0.00731054228, 0.000583397807, -0.0324412361, -0.0257877782, -0.0168213807, -0.00167932198, -0.00415277854, 0.028431138, 0.0368868858, -0.00717537, 0.0297077596, -0.00020099766, 0.0202307142, -0.00431798818, -0.041512765, 0.0199603699, 0.0104082292, 0.0374876484, 0.00689751701, -0.00297753466, -0.0240455624, 0.00534304138, 0.0107761975, -0.01188761, 0.0281157363, -0.0269292276, -0.0272446293, -0.0122480681, -0.0313899, 0.0119476859, -0.018218156, 0.0359557, 0.0142005496, -0.0175272785, -0.00949957408, -0.031269744, -0.0211618971, -0.00275788037, -0.0299630854, -0.00994263776, 0.0319606252, -0.0133820092, 0.0175272785, -0.0290018637, 0.0106109874, -0.0247214232, 0.00194309477, 0.00667598564, -0.018833939, 0.0158301201, -0.0164158661, 0.0437956676, 0.0317203179, -0.000478264148, -0.00584993558, -0.0268691517, 0.014763766, -0.0196299516, 0.0387192145, 0.0034149657, 0.0810430124, -0.00686747907, -0.005410627, -0.0260881595, -0.0063643395, 0.0154246055, 0.00918417331, -0.0322009288, 0.0136223147, 0.0285362713, 0.0180829838, -0.00894386787, -0.0198252, 0.0205160771, 0.00208577607, -0.0114520565, 0.00433676224, -0.0173770878, -0.0131567232, 0.0173620675, -0.0264636371, 0.00346002285, -0.0099351285, 0.00390496338, 0.0216875654, -0.000999708194, -0.0154546434, -0.00886126328, -0.0102054719, -0.00183514506, 0.0318705104, 0.00245562126, -0.00347691937, -0.0148538798, 0.0240455624, 0.00392749207, -0.000525198819, 0.00483239209, -0.0150416186, 0.0290018637, -0.0195248164, 0.0176774692, -0.0167613048, 0.00815536547, 0.00190930185, -0.0245712306, -0.00775736, 0.00133857643, -0.0133895185, 0.00463714404, 0.0212670323, -0.00679613836, 0.0138325822, 0.0153945675, 0.00247627241, -0.0253522247, -0.020936612, 0.0172569342, -0.0265687704, -0.011759948, 0.0200354662, 0.00770479301, 0.0135096712, -0.00549698714, 0.0133745, 0.00628924416, 0.0254423395, 0.0349944793, 0.0063418108, -0.0122480681, 0.0179478135, 0.0319305845, -0.0176474303, -0.000108419059, -0.014959014, -0.00330983195, -0.0255474728, 0.0247364417, 0.0298879892, 0.0285512898, -0.02888171, 0.00404013507, 0.0323511213, 0.00562840421, -0.000698857, -0.00581614254, -0.00390496338, 0.00598510727, 0.0180980042, -0.0177525636, 0.0112568084, 0.0138776395, 0.0225136168, 0.012112896, 0.00630050851, -0.016896477, -7.32180633e-05, 0.0222883299, -0.000330889336, -0.00220780633, 0.0145234605, 0.0169415344, -0.00814034697, 0.0139452247, 0.00532051269, 0.00314837671, 0.0442162, -0.0133669898, 0.0282208696, 0.0212069545, -0.0168213807, -0.0124132782, -0.00913911592, 0.000557583699, -0.0284461565, 0.0535280369, -0.00639062282, 0.0185485762, 0.0511550196, -0.0108963503, 0.000750954496, -0.0105884587, 0.0113844704, -0.0177375451, 0.0182932522, -0.00470473, -0.00265274686, 0.00903398264, 0.00880118646, 0.00142118137, -0.00119964976, -0.0352347866, -0.0204259623, -0.00308642304, -0.021357147, 0.00269029452, 0.0147487465, -0.0245261732, 0.035084594, 0.028686462, 0.0245261732, 0.0167613048, 0.00368155446, 0.000676328375, 0.0222432725, 0.0422036424, 0.0108512929, -0.0360758528, -0.0313298218, 0.00422036415, 0.00467844633, 0.0113544324, 0.00436304556, -0.016521, -0.0322610065, -0.0427743681, -0.0234598182, 0.0301883705, -0.0250218045, 0.00900394469, 0.00612403406, -0.0191343203, -0.0220930818, -0.00874111056, 0.00828302838, -0.0135246906, -0.000918041856, -0.0090414919, 0.0137424674, 0.0125484494, 0.0133369518, 0.0039312467, 0.0207113251, 0.00602265494, 0.0265387315, -0.00850831438, 0.0138100535, -0.024165716, 0.0144258356, -0.0140653774, 0.00463338941, -0.00503515, 0.00533177704, 0.0110915983, -0.0212670323, 0.0361058936, 0.0265537519, 0.019870257, -0.00806525163, -0.00203133188, 0.0372173041, 0.00654081395, 0.0137124294, 0.00130290608, -0.00474227779, 0.0121053867, 0.00738563761, -0.0118275331, -0.00600012671, -0.039770551, -0.0018266968, -0.0105734393, 0.0202006754, -0.0311796311, 0.0354150161, 0.0212520119, 0.000373130519, 0.0123907495, -0.00880118646, 0.0226938445, 0.0105884587, -0.0229191314, -0.0107987262, -0.017962832, -0.0366465785, 0.0199453514, -0.00503515, -0.0111817122, 0.0165660568, -0.0223634243, 0.00671353331, 0.046258796, 0.0129164178, -0.0283560418, -0.0335526466, -0.00276914472, -0.0449971929, 0.00198064256, 0.00834310427, 0.00123250403, 0.00687874341, 0.00566219678, 0.00477607083, -0.0202907901, 0.0506143346, 0.0391697884, 0.000478498812, 0.0223634243, -0.00388243468, -0.0248115361, -0.0354150161, -0.00922923069, 0.000496099296, -0.0235949904, -0.05478964, 0.0126535837, -0.0291220155, 0.0311195552, -0.000748138409, -0.0258178152, -0.00797513686, -0.00427293126, -0.0284761954, -0.0393800549, 0.000603110355, 0.0133895185, 0.0184734799, 0.00758464029, -0.0180980042, -0.0137049193, 0.0169415344, 0.0111817122, -0.0227839593, 0.00695383875, 0.000447052589, 0.0239554495, 0.00198251987, 0.00565844215, 0.0259980448, 0.0270944387, -0.0324412361, 0.000507363642, 0.00781743601, -0.0100552812, -0.019284511, 0.026328465, -0.00973237, 0.00158357527, 0.0348743275, 0.0178576987, 0.0404013507, 0.0133820092, -0.0171067435, -0.0325013101, 0.0043029692, 0.00576733053, -0.00666096667, -0.0325613879, 0.00708525581, 0.00449821725, 0.00398756843, -0.0411523059, -0.0110465409, -0.0237001237, -0.00143244572, -0.0370370746, -0.0214172229, 0.027560031, 0.0141254542, 0.0239854865, -0.00711904885, -0.00416404288, -0.0210267268, -0.0317803957, -0.00374726299, 0.015634872, 0.00646947324, 0.00528296502, -0.0052566817, 0.0107086115, -0.0304286759, -0.00612778869, 0.00640564179, -0.0200805236, 0.00253634877, -0.0111516742, -7.23967096e-05, -0.0137199387, -0.0316001661, -0.0310594775, -0.00542564644, -0.0117073804, -0.0217476431, 0.00903398264, -0.0326515026, -0.0446667746, 0.00225098617, 0.0276651643, 0.0130741177, 0.0418431833, 0.035985738, -0.00626671547, -0.00173282751, 0.0271545146, -0.0274849348, 0.0052792104, 0.0197801422, 0.000756117341, -0.000843885122, 0.0328317322, 0.00157231104, 0.0077273217, 0.00922172144, 0.00706648175, -0.0300531983, 0.0268541332, 0.000421003875, -0.0132543473, 0.0151542621, 0.015409586, -0.0227989797, -0.0244060215, 0.0135772573, 0.00321784, -0.0198101792, -0.0193295684, -0.00217964547, 0.00773483142, 0.0125033921, 0.0186987668, 0.0212520119, 0.0159352552, 0.00196937821, 0.00979244709, 0.0158151016, -0.0178576987, -0.0401310101, -0.0211618971, -0.0118350433, 0.00988256093, -0.00949206483, -5.15107859e-05, -0.00853835233, -0.00675108097, -0.00562089449, 0.0152218482, -0.016220618, 0.00395753, -0.0561113209, -0.0399808176, -0.020936612, 0.00181073905, 0.00710778451, -0.0138325822, -0.0064769825, -0.00238428055, -0.01188761, -0.0164158661, -0.0199453514, 0.0117224, 0.0276351254, -0.00348255155, 0.00928930752, 0.00671728794, -0.0370971523, -0.00080352131, 0.0015460276, 0.0210567638, 0.0023486102, 0.00320094358, 0.00660464494, -0.00247064023, -0.0403412767, 0.0230843406, -0.012923927, -0.0165360179, -0.0130966464, 0.013795034, 0.0310594775, -0.00960470829, 0.00666096667, -0.0128788697, 0.00746824266, 0.00653330423, 0.000132707748, 0.000807276112, 0.00567346113, -0.0148163326, -0.0236250293, 0.00793007948, -0.0172869731, -0.00922923069, 0.0276351254, 0.00787000358, 0.00390120875, 0.0195999127, 0.011955196, 0.0214622803, -0.0153795481, -0.0183983855, 0.00907904, -0.0134495953, 0.0304436963, 0.0223033484, -0.0113844704, -0.00181261648, -0.0243459456, 0.015604835, -0.0174672026, 0.0478207842, -0.0052792104, 0.0239404291, -0.0108512929, 0.00140522362, 0.0219278708, 0.00500886654, 0.00367967715, 0.00589499297, 0.00394251104, -0.0340332575, 0.00287803309, 0.0115571897, -0.0108437827, 0.0150716566, 0.079240717, -0.010047771, -0.00819291361, -0.0154997008, 0.00707023684, 0.00419783546, 0.000512526429, -0.00512150954, 0.0103406431, 0.0176474303, 0.0223484058, 0.00225661835, 0.027815355, 0.0331921875, 0.0012653583, -0.0119476859, -0.0150416186, -0.0221531577, -0.00601890031, -0.0155597776, 0.00322159473, -0.0038186037, 0.023549933, -0.000356234057, 0.0103932107, 0.0267339796, 0.00157982053, 0.0101003377, -0.0325313509, -0.00346190017, 0.00682617631, -0.0124433162, -0.00700640539, -0.00871858187, -0.0276952013, 0.0033774178, 0.0107011013, 0.000551951583, -0.0117824757, 0.00246500806, -0.0309092868, 0.0281457752, -0.0143957976, -0.00134420861, -0.0141554922, -0.00667223055, -0.000802113267, 0.00877865776, 0.00637935847, -0.0118500618, -0.0129164178, -0.0104607958, -0.00344875851, 0.00716410577, 0.00259079295, -0.00371722481, 0.00741943065, -0.0148238419, 0.00891383, 0.00114051218, -0.0121354247, -0.00589499297, -0.023129398, -0.0126535837, 0.00667598564, -0.0183983855, -0.0338830687, -0.0206362307, 0.0093944408, 0.0146811604, -0.0015460276, -0.00683744065, 0.020125581, 1.32590403e-05, 0.00587246427, -0.0042841956, -0.0138701294, -0.0156498924, -0.0160704255, -0.0166111141, 0.0086059384, 0.0080277035, -0.00962723698, -0.000445879239, 0.00333611527, -0.0136373341, -0.015311962, 0.00122030103, -0.0150791667, -0.000738282164, -0.0109338975, -0.0222883299, -0.036977, 0.011985234, 0.00207826658, -0.02590793, 0.00964976568, 0.0148764085, -0.0186687298, 0.00361396861, -0.0255775098, -0.00955965091, 0.00320469844, -0.00222658017, -0.0247514602, -0.0120603293, 0.0313899, -0.00927428808, -0.0117674572, 0.0090189632, 0.0172118768, 0.0309994016, 0.00979995634, 0.00681491196, 0.00962723698, 0.0087936772, -0.00602641, -0.0146285938, -0.00104476546, 0.0161455218, -0.00300757284, -0.000654738455, 0.0339131057, -0.0216575284, 0.00355201471, -0.0164308846, -0.00511775492, -0.0132017806, -0.00499009248, 0.0122480681, -0.0524767, 0.0103030959, 0.0197501034, -0.000474978733, -0.0260881595, -0.0175272785, -0.03205074, 0.0304887537, -0.00947704539, 0.0138551109, 0.00290431664, 0.00626296038, -0.0109414067, -0.0041189855, 0.0144859124, -0.0114145083, -0.0267189611, 0.0150716566, 0.0194046646, 0.0206362307, 0.00053130032, -0.0345138684, 0.00414151419, -0.0182932522, 0.0266288463, -0.00812532753, 0.00684495037, 0.00717161549, 0.00806525163, 0.017542297, 0.00895137805, 0.00197501038, 0.0522664338, 0.0193295684, 0.002673398, -0.0190141685, -0.0055570635, -0.035084594, -0.00644694455, 0.00856088102, -0.0101529052, -0.015634872, 0.00954463147, 0.0215373747, 0.0130891372, 0.024391003, 0.00675108097, 0.0202156957, -9.43386622e-05, 0.00297190249, -0.033042, 0.0364363119, -0.00837314315, 0.0174972396, -0.0228290167, -0.00244811177, -0.0243309252, -0.0138476007, 0.0103857005, 0.00131135434, -0.00223596697, 0.00272408756, -0.00298504415, 0.0202457327, 0.00628173444, 0.0196900275, -0.00172907277, -0.00952210277, -0.0173770878, -0.00214397511, -0.0330720358, -0.00683368603, -0.0127737364, 0.0161455218, 0.0253372043, -0.0242708493, -0.00272221, -0.0194647405, -0.000564623915, 0.00143056829, -0.00545943948, -0.00123062672, 0.0142981736, -0.0286263861, 0.0119627053, -0.00544817513, -0.007655981, 0.0155147202, 0.00152913108, -0.00556081813, -0.0020951631, 0.00776486937, -0.0174521822, -0.0104833245, -0.024165716, -0.0166111141, 0.0264335983, 0.00399883278, 0.0224084817, 0.00728425849, -0.0034712872, 0.00396503974, 0.0150115807, -0.00143713923, -0.0165360179, -0.000625639, 0.0180379264, -0.0278754309, -0.0322009288, -0.00880869664, 0.00733307051, 0.0139827728, -0.0175272785, 0.00413400447, 0.0347541757, 0.000194661494, 0.0165660568, 0.00838816166, -0.0349644423, 0.0151617713, -0.015860159, -0.0034149657, 0.0332522653, 0.00699889613, 0.0192094166, 0.0261782743, 0.00785498414, 0.0061578271, -0.0174071249, -0.0431348272, 0.0151617713, 0.0234748386, -0.0110615594, 0.0101829432, -0.00872609112, 0.0102054719, -0.0487820059, -0.0181580801, -0.00529422937, -0.00960470829, -0.0182331745, -0.00871107262, -0.00707023684, -0.00567346113, -0.00962723698, -0.0361960083, -0.0105208727, 0.00329105812, 0.00592878601, -0.00241056387, 0.000659431913, 0.0388694033, -0.00312021608, -0.0133219333, 0.002964393, 0.0105133634, -0.0149289751, 0.0276651643, 0.00366278063, -0.00280481507, -0.00204071891, -0.00910907798, -0.0130215511, -0.0150115807, 0.0130741177, 0.0174071249, -0.000421003875, 0.0123907495, -0.0124508254, 0.0190592259, 0.0165510364, -0.0138100535, -0.00370220561, 0.0172268972, -0.00975489896, -0.0221831966, 0.00878616795, -0.0279505271, 0.00639813254, 0.0183232892, 0.0152218482, -0.0269893054, -0.0162506551, 0.00477607083, -0.00112830917, -0.00816287566, -0.00894386787, 0.00916164462, 0.0199453514, 0.00107011013, -0.0137875248, -0.0308792498, -0.0412424207, -0.0282208696, 0.000133529102, 0.019900294, -0.0191793777, -0.00792257, 0.00252320711, -0.0158151016, 0.014989052, -0.00114708301, -0.0206662677, 0.00609775074, 0.00142118137, 0.01602537, -0.0268541332, 0.0060827313, -0.0126686022, 0.00338492752, -0.0128112836, 0.0161755607, -0.0121354247, 0.00543315569, 0.0113243936, -0.0199303329, -0.00512901926, 0.0198252, 0.0109939743, 0.0211769175, -0.0186086521, -0.0211468786, 0.00151692808, 0.0174672026, 0.0407918468, 0.0255024154, -0.000977179501, -0.00588372862, -0.0134045379, -0.00518909562, -0.0266588852, -0.0243008882, -0.00395002076, 0.000806337397, 0.0250818804, -0.00601890031, -0.0123907495, 0.0102580385, 0.0498934165, 0.00215899409, 0.0115196425, -0.00667598564, -0.0121053867, 0.00670226896, -0.012728679, 0.00063220982, -0.0195698738, -0.00150378642, -0.0113544324, -0.0372173041, -0.000310472766, -0.0116773425, 0.0169565529, 0.00087204593, -0.0372773819, -0.0208314788, -0.0326214619, 0.0147262178, 0.0208915547, -0.0306539629, -0.0132017806, -0.00804272294, 0.0296627022, -0.00368718663, 0.0185485762, 0.00710402941, -0.0084031811, -0.00532802241, 0.00956716, -0.0318104327, 0.0221231189, 0.0017478466, 0.0101979617, 0.013276876, 0.00493752584, 0.0283109844, 0.00640939688, -0.00678111939, 0.0204259623, -0.0196750071, 0.0391697884, 0.00299443118, -0.0183683466, -0.032140851, 0.0229641888, 0.026779037, 0.00741192093, 0.033042, 0.00109545491, 0.00525292661, -0.00476480648, -0.0144558745, -0.0279955845, 0.00398005871, 0.0252470896, 0.0158751775, -0.00181824854, 0.00118932419, -0.00580487819, -0.0260881595, -0.0055570635, 0.0241957549, 0.00970233232, -0.0170767047, 0.0281607937, 0.0294524357, 0.0188940149, 0.00901145395, -0.00183514506, -0.00578610459, -0.00276914472, 0.00790004153, -0.0125334309, 0.0199753903, 0.00587246427, 0.0151317334, 0.0317503549, -0.010370682, 0.00254949043, 0.00276914472, -0.00480610877, 0.0219428912, 0.00351446704, -0.00588748325, -0.0128037743, 0.021612471, -0.00417530723, 0.0134420861, 0.0128638502, -0.011339413, -0.00614280766, 0.000557583699, -0.00334174745, -0.00445691496, 0.0228740741, 0.0149139566, 0.00224910863, 0.0190141685, 0.00894386787, -0.000695102266, -0.00907904, -0.0128112836, -0.00759590464, 0.00195999118, -0.0234147608, -0.0100928284, -0.0118951192, 0.00118463067, -0.00100440159, -0.0227389019, -0.011857572, 0.0274849348, 0.0156949498, -0.0212970693, 0.00182951288, 0.0538584553, -0.0104908347, 0.0137800155, 0.00291370344, 0.0286714435, -0.00727299415, 0.0211769175, -0.0158901978, 0.0156498924, -0.0109338975, -0.0163257513, 0.0193896461, 0.00755084772, 0.0135322, 0.00621414836, -0.00106541673, -0.00976240821, -0.0112042408, 0.00522288866, 0.0167462863, 0.00431798818, 0.00169340242, 0.0229191314, 0.0104607958, -0.0107161207, 0.00438932888, -0.0105584208, -0.00738563761, -0.0112793371, 0.0244660974, 0.0125334309, -0.0088162059, -0.0155898156, 0.00188020233, 0.00494128047, 0.00195811386, 0.0303235427, -0.00122874929, 0.00894386787, -0.00155823061, 0.00403262582, -0.00159953313, 0.00969482306, -0.0251719952, -0.017797621, -0.00119307893, 0.0300231613, -0.0104082292, 0.00880118646, -0.0078399647, 0.0206061918, 0.0015976557, 0.000201584349, 0.0216274895, -0.0124733541, -0.012826303, 0.0102054719, -0.0273047052, 0.0285963472, 0.00787751283, 0.000562277157, -0.00318780192, -0.0328317322, 0.0226187501, -0.00628173444, 0.0203809049, -6.40071376e-05, 0.0062479414, 0.000539279194, -0.0210417453, 0.00562089449, 0.0355351679, -0.0117674572, 0.0104607958, -0.00359519478, -0.00586495455, -0.0155597776, 0.00159014622, -0.0122630866, -0.00318216975, -0.00381109421, 0.0099351285, 0.00290056178, 0.0117073804, -0.0154246055, -0.00367592229, -0.0217626616, 0.0114069991, 0.0143582504, -0.0126686022, 0.0116097564, -0.0121654626, 0.0197501034, -0.0054631941, -0.0128037743, -0.00401385175, -0.0298279133, -0.00134796335, -0.00376040465, -0.0176624507, -0.00526043633, 0.0245411936, 0.0341534093, -0.0110465409, 0.00895888731, -0.00261519896, 0.0187137853, 0.00130102865, -0.0157700442, -0.00931183621, 0.00967229437, -0.0142380977, -0.00789253227, 0.00689376239, -0.00540687237, 0.0051815859, -0.00542940106, 0.0207113251, -0.00343937171, -0.00642066123, -0.0127812456, 0.0130140418, 0.0125484494, -0.0276351254, -0.0193445887, -0.0169565529, -0.0195848942, -0.00362711027, 0.00517032156, 0.00808778, -0.0020482284, -0.00878616795, 0.0146886697, -0.0129614752, -0.0357454345, 0.0137574868, -0.000248049648, 0.00806525163, 0.000823703245, 0.0226487871, 0.00479109, -0.0174672026, 0.00393875642, -0.0140803969, 0.00363461976, -0.00288178795, 0.0129614752, -0.0168514196, 0.000811030855, -0.00341121084, 0.0155747961, -0.0155597776, -0.0394100919, -0.00711529376, 0.00666096667, 0.00646947324, -0.00396879436, 0.00500135683, 0.00459208665, -0.0356553197, -0.0111591844, 0.00497882813, 0.0311195552, -0.0220930818, 0.00412274, 0.0106184967, 0.00628924416, 0.0232795905, -0.0164158661, 0.0256676245, -0.0136448434, 0.023715144, 0.0123757301, -0.0052566817, 0.0221381392, -0.0107761975, 0.016926514, -0.00226037297, 0.0289568063, 0.0149064464, -0.0111066168, 0.0165960938, 0.0202757716, -0.0219278708, -0.0039838138, 0.00897390675, -0.0191793777, -0.00275600306, 0.00447568903, -0.0103406431, -0.00354826, 0.0258478541, 0.0125935068, 0.00783245545, 0.0245562121, -0.000629393733, 0.00802019425, 0.00557959219, -0.00149064464, -0.00842571, -0.0279655457, -3.53476644e-05, -0.0196299516, 0.0171818398, 0.00655958755, 0.00810279883, -0.0108287642, -0.0142906643, 0.00168213807, 0.0176173933, -0.0265387315, -0.00279730558, 0.00645069918, -0.00228853384, -0.00159296219, 0.0137574868, 0.0215373747, 0.007543338, -0.00774234114, -0.0063831131, -0.00873360131, 8.91758464e-05, 0.00687874341, -0.00109357748, 0.0157400072, -0.0137800155, -0.0189090353, 0.0129314363, 0.000676328375, -0.0105584208, -0.0127211697, 0.00365527114, 0.00880869664, 0.0135246906, 0.019705046, -0.0116923619, 0.00513652898, -0.00175535621, 0.000329246628, -0.0018220034, 0.00642066123, -0.00911658723, -0.0265837889, 0.0107086115, -0.00108700665, -0.00946953613, 0.00573729258, -0.0100402618, 0.0100177331, -1.93898795e-05, 0.00515154796, 0.0029493738, -0.0073142969, 0.0108963503, -0.00325538777, -0.00467844633, 0.0063643395, -0.0200354662, 0.00818540435, -0.00418657158, 0.00485116616, 0.0164609235, -0.0127887549, -0.00759965973, 0.0379081815, 0.00106635538, -0.016055407, 0.000131534369, -0.021387184, 0.0085759, 0.0174221452, 0.00641690614, 0.0124733541, 0.00871858187, -0.00287427846, -0.00773483142, 0.00748326164, -0.0128713604, -0.00938693155, -0.00373224379, -0.0158151016, -0.0193596072, -0.00279355072, 0.00519660534, 0.00187738624, 0.014568517, -0.0268991906, 0.0291971117, 0.00143713923, -0.00798264612, 0.00949206483, -0.006848705, -0.0370070376, -0.00190085359, 0.0138175627, 0.0119251572, 0.00628548907, -0.0377880298, 0.00254385849, 0.000159108487, 0.00885375403, 0.00955214165, -0.00556457276, 0.0042091, -0.0075208093, -0.0196449701, 0.0298279133, 0.00518909562, -0.00330232247, 0.0333123431, 0.0119101387, -0.0112492982, 0.0316001661, 0.0173019916, 0.00483990181, 0.00393875642, -0.00685996935, -0.00135641161, -0.00897390675, 0.015311962, -0.00603767438, 0.00110296439, -0.00818540435, -0.00493001612, 0.0154846823, -0.00929681677, -0.0113994898, -0.00327228429, -0.00060874247, -0.00630426314, 0.00178539439, -0.0100252423, -0.0116172666, 0.0180078894, -0.0232195128, -0.00783245545, -0.00247439509, -0.00197125552, 0.00104288803, 0.00986754242, 0.00105790712, -0.0115722092, 0.0080277035, 0.00258516078, 0.00169997325, -0.0136072952, -0.0109263882, -0.0236851051, -0.0299030077, -0.00730303256, 0.0327115767, -0.00446817931, -0.0030676492, 0.00830555707, 0.00689000776, 0.00717537, -0.00146342255, -0.0108362734, -0.0111066168, 0.0265988093, 0.0102355098, -0.017992869, 0.00479484443, -0.00609399565, 0.000326195877, 0.0334024578, 0.021642508, -0.00651453, -0.0123907495, 0.025457358, -0.00451699132, -0.00676234532, -0.00796011742, -0.0342735648, 0.0129990224, -0.0238202773, -0.0224535391, -0.0134195574, 0.00319906627, -0.0225136168, 0.0123456921, -0.00668725, -0.000780523347, -0.0173620675, -0.00571851851, 0.00590250222, -0.0144633837, -0.000725609774, -0.0126385642, 0.0283560418, 0.0116172666, -0.0305638481, -0.0133669898, -0.00670977868, -0.00568472547, 0.0170166288, -0.00137894019, 0.00502764061, -0.00965727493, 0.00494503556, 0.00391998235, 0.00853084307, -0.000588091265, 0.026523713, -0.00197125552, 0.00582740689, 0.0334925726, 0.00846325699, 0.00319531141, 0.0219579097, 0.014470893, 0.00659338059, -0.00410396652, -0.0113093751, -0.013472124, 0.0136823915, -0.00931183621, -0.0270644, -0.0167312659, -0.00429921458, -0.00723920157, -0.000310942094, 0.00466342736, 0.0230092462, 0.0180529468, 0.00156198535, 0.0174672026, 0.0153720388, 0.00116867293, -0.0189390723, 0.0070552174, -0.0208615158, -0.0116022471, -0.0179778505, 0.00791506, 0.00894386787, 0.0113544324, -0.00361396861, -0.0152218482, 0.0223183688, 0.00682617631, 0.00377730117, 0.00516656693, -0.00996516645, 0.00689000776, -0.00236926135, 0.00337178563, -0.00816287566, -0.00120997545, -0.009206702, 0.020320829, 0.0211168416, 0.0118500618, 0.0169565529, -0.0146135744, -0.0218978338, 0.00601890031, -0.00458833203, 0.019900294, 0.00128788699, -0.0215073377, -0.00101660471, -0.0261181984, -0.0238352958, 0.00272221, -0.000642535451, -0.00800517481, 0.00756211206, -0.0130741177, 0.000532239, -0.028431138, 0.0203658864, -0.00359331723, 0.000168730097, 0.00998018496, -0.00583867123, 0.0125484494, -0.0184885, 0.0132468371, 0.0275450107, -0.00992761832, 0.0182932522, 0.00403262582, 0.00305075268, 0.00610150537, -0.00783245545, -0.0109639354, 0.0101003377, -0.0123456921, 0.0155447582, -0.022258291, -0.0188189205, 0.0085759, -0.00139865279, -0.011211751, 0.00756586669, 0.00474978704, -0.0115421703, -0.0103781912, -0.0268991906, 0.00222094799, -0.0204409808, 0.00024523359, 0.00354262791, -0.0102955867, 0.00835812371, 0.000449399347, 0.00457706768, 0.0200204477, -0.0111666936, -0.0113994898, 0.0319606252, 0.00759590464, 0.0249917656, 0.000350601884, 0.0272596478, -0.00164365163, 0.0120152719, 0.0275750495, -0.00117242767, -0.00779490778, -0.0249917656, 0.0165510364, -0.0103406431, -0.00456955796, 0.0231594369, 0.0103556626, -0.00329481298, 0.00785498414, 0.0204560012, 0.00681491196, 0.00489997817, 0.0109489169, 0.0220780633, -0.00365339359, -0.002245354, -0.0132994046, 0.0168814566, 0.00474978704, -0.0386291, 0.011662323, 0.017091725, -0.0222132336, 0.0204409808, -0.00770479301, 0.000933060946, 0.00404764479, 0.00293435482, -0.0281607937, -0.00234485534, 0.019449722, 0.0386591367, -0.00154415017, -0.0310895164, 0.0112568084, -0.00446817931, 0.0147862937, -0.0286113657, -0.0118050044, -0.00459208665, 0.00406641886, 0.00815536547, 0.0186537094, -0.00774234114, 0.0304436963, -0.00553077972, -0.0105809486, 0.00486618513, -0.00771230273, 0.026328465, 0.0123832393, -0.00339806918, 0.0191793777, 0.00533553166, -0.00152068282, -0.000511118385, 0.00635683, 0.00191962742, 0.0117374193, 0.0237752199, -0.012856341, -0.0260881595, -0.000894105178, -0.0240455624, 0.000949957466, 0.00559461117, 0.00771230273, -0.0260881595, 0.00933436491, -0.00858341, 0.0223183688, 0.0214022025, -0.00710402941, 0.00859092, 0.00118463067, -0.0205160771, -0.0101829432, 0.0158451404, -0.021807719, 0.00791506, -0.00607897667, -0.00880869664, 0.0151993195, 0.02739482, -0.0130966464, -0.00728050387, 0.00862095784, 0.0129840029, -0.00573353749, -0.0188489575, 0.00835812371, -0.00581989763, 0.0298879892, 0.0313598588, -0.0162055977, 0.0118500618, 0.00254198094, 0.00933436491, 0.00434427196, 0.0090414919, -0.0170767047, -0.0025457358, 0.0250818804, 0.0251719952, 0.0295125116, 0.00361209107, 0.00771230273, -0.00337929535, 0.00232795905, -0.00215899409, -0.00110671925, 0.0230543036, -0.0155297387, -0.0420234129, 0.0202607531, 0.00566595187, -0.000134233123, 0.00623292243, -0.0218677949, 0.00129445782, -0.00948455557, -0.00446817931, -0.0126535837, 0.0166411512, 0.0131717417, 0.00766349072, -0.000868760515, -0.0309994016, 0.0302033909, 0.00582365226, 0.00855337176, -0.0131191751, -0.00601890031, 0.002648992, -0.00429546, 0.0169415344, -0.00254949043, 0.0135322, 0.00326852943, -0.00832808577, -0.00560587551, -0.00567346113, 0.000873454, -0.00330044515, -0.0162356365, 0.00512150954, 0.00268653966, -0.0132618565, -0.0303535815, -0.0135322, 0.0228890926, -0.0251269378, -0.00635307515, 0.0251269378, 0.0152894333, 0.00139302062, 0.00374538568, -0.00653705886, 0.0115046231, 0.0209816694, 0.0172869731, 0.00933436491, 0.00304699782, -0.0163858272, -1.00029483e-05, -0.00118838553, 0.00722042751, 0.0120978775, 0.0164308846, -0.0238653347, 0.000877208717, -0.00253822631, 0.0181430615, 0.0179778505, 0.0140278302, 0.00161455222, -0.000356234057, 0.00814034697, -0.00681491196, 0.00719789881, -0.0138325822, -0.00988256093, -0.00580112357, 0.0119176479, -0.00733307051, 0.00481737312, -0.0184434429, -0.0146736512, 0.0145534985, -0.00484741153, -0.0136148054, -0.0192094166, -0.0178276598, 0.000733588706, -0.0323210806, -0.00741567556, -0.010918879, 0.0163107309, -0.00391998235, -0.0200054273, 0.0113619417, -0.0235349145, 0.0290018637, -0.00216650381, 0.00121654628, -0.00728425849, 0.00184265466, -0.00949957408, 0.0296326652, 0.00465967273, 0.00880869664, -0.00131417043, -0.00418281648, 0.00930432603, -0.00623667706, 0.0118275331, -0.00936440285, 0.00239929953, 0.00226225052, -0.0243609641, -0.0148313511, -0.00700640539, -0.00363837462, -0.0010316238, 0.0227389019, -0.00173188886, 0.0031239707, -0.00248753675, -0.0120978775, -0.0133745, 0.00809529, -0.00953712221, 0.0156949498, -0.00121185288, -0.0151242241, 0.00340182381, 0.00424289284, -0.0102430191, 0.00369281881, 0.00382048101, -0.00675859069, 0.0129314363, 0.00448319828, 0.00843321905, 0.00741943065, -0.0135171814, 0.000324083812, 0.0113994898, -0.0180379264, 0.0130440798, 0.00964976568, 0.0159803126, 0.0019919069, -0.0156799294, -0.0177075081, -0.0191643592, -0.0124583356, -0.0136673721, 0.0080277035, 0.00895888731, -0.0183383096, -0.0156799294, -0.0309693646, 0.00608648639, -0.0151918093, 0.000174831599, -0.00531675806, 0.000913817785, -0.00900394469, 0.032981921, -0.0126535837, -0.0028930523, 0.0212520119, -0.000412086287, 0.0192995314, 0.00134890201, 0.00930432603, 0.0239554495, 0.00202757725, 0.0429245606, -0.0111066168, -0.00511400029, -0.0130065316, -0.00486243051, -0.0130140418, 0.00397630408, 0.0108512929, -0.0086059384, 0.011211751, -0.00785498414, -0.0172268972, 0.0255174339, 0.00338492752, 0.00317653758, 0.000626577646, -0.033042, -0.0212520119, 0.026944248, -0.0030901779, -0.0110840881, -0.00852333382, 0.000122968806, 0.0255624913, 0.00521913404, -0.00239929953, -0.00493377121, 0.00152537634, -0.0161905792, -0.00795260817, -0.0056697065, 0.00221907045, 0.0117899859, -0.00114802166, 0.0104607958, -0.00214022025, -0.0102805672, -0.00410772115, 0.00817038491, 0.00793007948, 0.0284761954, -0.0052792104, -0.00556081813, -0.0103556626, -0.00914662611, -0.017091725, 0.00477607083, 0.0180379264, 0.00484741153, -0.0268691517, -0.000289821503, 0.00513277389, 0.00851582363, 0.00595131423, 0.0124583356, 0.00726548489, 0.0143056829, -0.00963474624, 0.0108888401, -0.0244961362, -0.00223596697, 0.0236400478, -0.0172869731, -0.00255887746, 0.0396804363, 0.0182031374, -0.0106335161, 0.00384864188, 0.00721667288, -0.00249504624, -0.00823046174, 0.013276876, 0.0195999127, -0.00676985504, -0.0014624839, -0.0228139982, 0.00359144, 0.00480235415, -0.0198852755, -0.0101529052, -0.0299931224, -0.0322009288, -0.00877865776, -0.00328730326, 0.0189390723, 0.021357147, 0.00595882395, -0.00331921899, -0.0178727172, 0.0119702145, -0.0106560448, 0.0138701294, -0.0112342797, -0.00730303256, 0.00273535168, 0.00186799932, 0.0104382681, 0.00609399565, -0.00781743601, -0.00906402059, -0.00209704041, 0.00311082904, 0.0229942277, -0.0012653583, -0.00341872033, 0.00383174536, 0.0108888401, -0.0641014799, -0.00327040697, 0.0344838314, 0.0173770878, 0.00440810295, 0.0138100535, 0.0133294426, -0.0147712752, -0.00757713104, 0.0301583335, 0.0105809486, 0.0138626201, 0.00632303674, 0.0227389019, -0.00504641421, -0.00294374162, 0.0326815397, -0.00114051218, 0.0202307142, 0.00458082231, 0.00769728376, -0.0283410233, 0.00612778869, -0.0113093751, -0.00178539439, -0.0164308846, -0.0065295496, 0.000916164485, -0.017347049, -0.00336052151, -0.00252320711, 0.00925926864, -0.0057635759, -0.0205911733, -0.0232495517, 0.00316715054, -0.0139001682, -0.0193295684, 0.0175873544, -0.0172419157, 0.0025926705, -0.022258291, -0.0172268972, -0.0243759826, 0.0142681357, 0.0161004644, -0.016896477, 0.0214472599, 0.00181730988, 0.0229942277, 0.00461837, 0.023715144, -0.0287315194, -0.0146811604, 0.00781743601, -0.000762218842, -0.0135922767, 0.000503608841, -0.00545568438, 0.00502764061, -0.00959719811, -0.0290319, -0.00277289958, -0.00584993558, 0.00986754242, 0.00333423796, -0.012728679, 0.0253972821, -0.00320845307, -0.00501262117, -0.0088162059, 0.0141479829, -0.00462587969, 0.00171686977, 0.0143056829, 0.0220930818, 0.000705897226, -0.00808027, -0.00269029452, -0.0116473045, 0.0216875654, 0.00316715054, 0.0133895185, -0.0200204477, -0.00219654199, -0.0034712872, -0.0121955015, 0.00486993976, 0.00548947742, -0.0134946527, -0.00930432603, -0.00394251104, -0.0107987262, 0.00329481298, -0.0174371637, 0.0078624934, -0.00141367188, 0.0117073804, -0.0214022025, 0.0159202348, 0.0252621099, 0.0163107309, 0.0100928284, -0.00808027, 0.028431138, -0.000277383806, -0.0309092868, 0.00655207783, -0.00969482306, -0.00637184875, 0.00644694455, -0.00367404497, 0.00838816166, 0.000979995588, 0.0339131057, 0.0264636371, -0.0141554922, -0.00909405947, -0.00159296219, 0.02590793, 0.00174409186, -0.0187738631, 0.00663843798, -0.00702142483, 0.0256075487, 0.00269780401, -0.0123156542, 0.00787000358, -0.0301282946, -0.00298316684, 0.0174822211, 0.0214772988, 0.0170466676, -0.0224084817, 0.00299255364, -0.0165660568, -0.00522288866, 0.00164740649, 0.00483614719, -0.0108362734, -0.00629299879, -0.0137199387, -0.00191962742, -0.000767850957, 0.00863597635, 0.0065708519, -0.00960470829, 0.00361021375, -0.00768977404, -0.00376415951, 0.00499384757, -0.00395753, 0.00500886654, -0.00260956702, -0.031269744, -0.0165360179, 0.00873360131, -0.0146285938, 0.0243609641, -0.00320469844, -0.0104232486, 0.0290018637, -0.0331621505, 0.010370682, 0.00453201029, 0.00308079086, 0.00366278063, -0.00464465376, -0.0216274895, -0.0464089885, 0.00887628179, 0.00367967715, 0.00471599447, 0.000487651094, 0.0273347441, 0.0101979617, 0.0167312659, -0.00742694, -0.0185485762, 0.00227539218, 0.00423538359, -0.00826800894, -0.0246313084, 0.00121842371, 0.00540311774, -0.000297096383, -0.0168664381, 0.0157249868, -0.00348255155, 0.00297002518, 0.00492626149, 0.00082933536, -0.00583867123, 0.000356468721, -0.0125484494, 0.00341121084, 0.0060639577, 0.00475729676, 0.00209140824, 0.00725422055, -0.0294073783, 0.00592878601, -0.00497882813, 0.00225098617, -0.00500135683, -0.0170166288, -0.0172869731, 0.0116172666, -0.00512901926, -0.00773483142, -0.0099126, 0.00420159055, 0.0141780209, -0.00178163953, -0.00419408083, -0.00725797517, -0.022678826, 0.00465216301, -0.00913160667, -0.00286489143, 0.0204409808, -0.00394626614, 0.0215974525, 0.00839567091, 0.0161605403, 0.000172719534, 0.00667223055, 0.00124470703, -0.0225286353, 0.0170767047, -0.0008185404, 0.0170466676, 0.00556081813, 0.00170185068, 0.00905651134, 0.0191943962, -0.000998769538, 0.00481361849, 0.0103181154, -0.00699514104, 0.0135322, 0.0196900275, -0.0151016954, 0.0136072952, 0.0107461587, 0.00554579915, 0.0250818804, -0.0115797184, 0.0042841956, 0.00559461117, 0.00178633304, -0.00122687197, -0.00212895591, 0.0259830263, 0.00367029, -0.0167613048, -0.00398005871, 0.00500886654, 0.00680364762, 0.0219729282, 0.00324787828, 0.00468220143, 0.0075020357, -0.00167462858, 0.0185936335, -0.00883122534, -0.0119251572, 0.000895513222, -0.00324787828, 0.015056638, 0.00331358681, -0.015634872, -0.0229942277, -0.0164158661, -0.0115947379, -0.0333423801, -7.61514821e-05, 0.0153795481, -0.00722418213, -0.0269592665, -0.0173320305, -0.0131567232, 0.0022547408, -0.00235048751, -0.00569974491, -0.013051589, -0.00532051269, -0.0132318186, -0.00100346294, -0.00220029661, 0.0322309658, 0.0144333458, -0.0104457773, -0.0152593954, -0.0361359306, -0.00482863747, 0.0149965612, 0.0175272785, 0.02888171, -0.0180679653, -0.00258328347, -0.00477607083, -0.00637935847, 0.00549323205, -0.0103781912, -0.00618786504, -0.00465216301, -0.0137274479, -0.00136955327, -0.000115283248, -0.0171518, 0.00705897249, -0.00329293543, -0.00470848475, 0.007543338, -0.00127380656, -0.00613154331, 0.0116848517, 0.00356891123, -0.00762969768, -0.0162656754, -0.00820042286, -0.0145309698, 0.00589123787, 0.00583867123, 0.00207451172, 0.00931934547, -0.00601139059, -0.00111329008, 0.00753958337, -0.00574855693, -0.00704395305, 0.00407768274, -0.00512901926, -0.0023016755, 0.0159052163, 0.00854586251, -0.00131792517, -0.00589874759, -0.0120978775, 0.00922923069, -0.00286113657, -0.0234147608, -0.00603016466, 0.0134045379, -0.00704019843, -0.0161305033, -0.00969482306, 0.0282208696, -0.0001665007, 0.00820042286, -0.0105358921, 0.00501262117, 0.0125033921, 0.0126761124, 0.00829804689, -0.00658587087, -0.0038899444, 0.0421135277, 0.0128338123, 0.0215824321, -0.0156949498, -0.024391003, -0.00119871111, -0.00682617631, 0.00552702509, 0.00775736, 0.00349381589, 0.00318780192, -0.0109864641, 0.0124658449, -0.00747199729, -0.00385990622, 0.0874711797, 0.0256976634, 0.0134120472, -0.0183232892, 0.00576733053, -0.0250968989, -0.0171818398, 0.0463489108, -0.015056638, 0.00710402941, -0.000753770582, -0.00965727493, -0.00425791182, 0.00733307051, 0.0117148906, 0.0077273217, 0.010047771, -0.00725046592, 0.0148688992, 0.00746073294, 0.00171029894, -0.000342857675, 0.00403638044, -0.0168664381, 0.000137049195, -0.0114145083, -0.0173170101, 0.000870637887, -0.0247364417, 0.0034149657, 0.00781743601, 0.00147562556, 0.0117449285, -0.00139771402, -0.0519960895, -0.00749077136, -0.00150941859, 0.00787000358, 0.00906402059, -0.0130891372, -0.000609211856, -0.00871107262, 0.00457331305, 0.00328167109, 0.00412274, -0.00725422055, -0.0218677949, 0.00197876501, -0.0077498504, -0.0146361031, 0.000397301861, 0.00503139524, 0.0137875248, -0.022063043, -0.00380921667, 0.0110315215, -0.0131642325, -0.0108588021, 0.00268841721, 0.00431798818, -0.012953965, 0.0140503589, 0.0126610929, -0.00586870965, -0.00866601523, 0.0162506551, -0.00949206483, 0.000714814814, -0.00746824266, -0.00332672847, 0.00167556724, -0.0103406431, 0.0131642325, -0.0131266844, 0.00281795673, 0.00800517481, -0.00811781827, 0.00735184457, -0.00247815, -0.00361396861, -0.00324412342, 0.00922172144, -0.0124508254, -0.00574855693, 0.0114820944, 0.01221052, -0.0103406431, -0.00248565944, 0.005185341, 0.00483239209, -0.00144558738, 0.00548947742, -0.0322610065, 0.0158000831, -0.00212707859, -0.0012606649, -0.00910907798, 0.00664594723, 0.0041189855, 0.00593629526, -0.00925926864, 0.00534304138, -0.00964225549, 0.00756586669, 0.0151918093, 0.000692286179, -0.00766349072, -0.00118838553, -0.000145028083, -0.00945451763, 0.0260581207, 0.0108137447, 0.0131191751, 0.0270343628, 0.0175122581, -0.00419408083, 0.00967229437, 0.0067548356, 0.0124883736, 0.0116397953, 0.00570349954, 0.0173770878, -0.0153194722, -0.00392373744, -0.000652861083, -0.0084031811, 0.0540987626, -0.0164158661, 0.0211018212, -0.0024049317, 0.0183082707, -0.0179778505, 0.0151016954, 0.00733307051, -0.00175347878, 0.0108362734, -0.0204860382, -0.00829053763, -0.00967980362, 0.017767584, -0.001550721, -0.00360458158, 0.0331321135, 0.0182331745, -0.0106034772, -0.0170767047, 0.0166261327, -0.00862095784, 0.00139583671, 0.0155597776, -0.0265837889, 0.0166111141, -0.000464887766, 6.26577676e-05, -0.0140578682, -0.00427293126, 0.0189991482, 0.0114520565, 0.00230730767, -0.000245468254, -0.0201406, -0.00753582828, 0.00891383, 0.0270794202, 0.0242257919, -0.0290769581, 0.010498344, 0.00757337594, 0.0051628123, 0.0179478135, 0.0132693658, -0.0080277035, -0.0185035188, 0.00927428808, -0.0112192603, 0.0114745852, -0.0188789964, 0.00724671083, 0.00967980362, -0.0155297387, -0.00662341854, 0.0119026285, -0.0128713604, 0.011857572, -0.00154039543, -0.00762969768, 0.00451699132, -0.0368568487, 0.0192394536, 0.00745697832, -0.00253822631, 0.0297377985, -0.0230693221, 3.8075741e-05, -0.0115496805, 0.000650045, 0.011564699, 0.00489622355, 0.00419408083, 0.00660839956, 0.0281607937, -0.00245562126, 0.00474978704, 0.0147412373, -0.0136523526, 0.0111742029, -0.0248565935, 0.0125409402, -0.00808778, 0.0102204904, -0.000933999661] |
09 Nov, 2023 | Minimum operations to make the MEX of the given set equal to x
09 Nov, 2023
Given a set of n integers, perform minimum number of operations (you can insert/delete elements into/from the set) to make the MEX of the set equal to x (that is given).
Note:- The MEX of a set of integers is the minimum non-negative integer that doesn’t exist in it. For example, the MEX of the set {0, 2, 4} is 1 and the MEX of the set {1, 2, 3} is 0.
Examples :
Input : n = 5, x = 3 0 4 5 6 7Output : 2The MEX of the set {0, 4, 5, 6, 7} is 1 which is not equal to 3. So, we should add 1 and 2 to theset. After adding 1 and 2, the set becomes {0, 1, 2, 4, 5, 6, 7} and 3 is the minimumnon-negative integer that doesn't exist in it.So, the MEX of this set is 3 which is equal tox i.e. 3. So, the output of this example is 2 as we inserted 1 and 2 in the set.Input : n = 1, x = 0 1Output : 0In this example, the MEX of the given set {1}is already 0. So, we do not need to perform any operation. So, the output is 0.
Approach: The approach is to see that in the final set all the elements less than x should exist, x shouldn’t exist and any element greater than x doesn’t matter. So, we will count the number of elements less than x that don’t exist in the initial set and add this to the answer. If x exists we will add 1 to the answer because x should be removed.
Below is the implementation of above approach:
C++
// CPP program to perform minimal number
// of operations to make the MEX of the
// set equal to the given number x.
#include <bits/stdc++.h>
using namespace std;
// function to find minimum number of
// operations required
int minOpeartions(int arr[], int n, int x)
{
int k = x, i = 0;
while (n--) {
// if the element is less than x.
if (arr[n] < x)
k--;
// if the element equals to x.
if (arr[n] == x)
k++;
}
return k;
}
// driver function
int main()
{
int arr[] = { 0, 4, 5, 6, 7 };
int n = sizeof(arr) / sizeof(arr[0]);
int x = 3;
// output
cout << minOpeartions(arr, n, x) << endl;
}
Java
// Java program to perform minimal number
// of operations to make the MEX of the
// set equal to the given number x.
import java.io.*;
class GFG {
// function to find minimum number of
// operations required
static int minOpeartions(int arr[], int n, int x)
{
int k = x, i = 0;
n--;
while (n > -1) {
// if the element is less than x.
if (arr[n] < x)
k--;
// if the element equals to x.
if (arr[n] == x)
k++;
n--;
}
return k;
}
// driver function
public static void main(String args[])
{
int arr[] = { 0, 4, 5, 6, 7 };
int n = arr.length;
int x = 3;
// output
System.out.println(minOpeartions(arr, n, x));
}
}
/* This code is contributed by Nikita Tiwari.*/
Python
# Python 3 program to perform minimal number
# of operations to make the MEX of the
# set equal to the given number x.
# function to find minimum number of
# operations required
def minOpeartions(arr, n, x) :
k = x
i = 0
n = n-1
while (n>-1) :
# if the element is less than x.
if (arr[n] < x) :
k = k - 1
# if the element equals to x.
if (arr[n] == x) :
k = k + 1
n = n - 1
return k
# driver function
arr = [ 0, 4, 5, 6, 7 ]
n = len(arr)
x = 3
# output
print( minOpeartions(arr, n, x))
# This code is contributed by Nikita Tiwari.
C#
// C# program to perform minimal number
// of operations to make the MEX of the
// set equal to the given number x.
using System;
class GFG {
// function to find minimum number
// of operations required
static int minOpeartions(int[] arr,
int n, int x)
{
int k = x;
n--;
while (n > -1) {
// if the element is less
// than x.
if (arr[n] < x)
k--;
// if the element equals
// to x.
if (arr[n] == x)
k++;
n--;
}
return k;
}
// driver function
public static void Main()
{
int[] arr = { 0, 4, 5, 6, 7 };
int n = arr.Length;
int x = 3;
// output
Console.WriteLine(
minOpeartions(arr, n, x));
}
}
// This code is contributed by vt_m.
Javascript
<script>
// Javascript program to perform minimal number
// of operations to make the MEX of the
// set equal to the given number x.
// function to find minimum number of
// operations required
function minOpeartions(arr, n, x)
{
let k = x, i = 0;
while (n-- > 0) {
// if the element is less than x.
if (arr[n] < x)
k--;
// if the element equals to x.
if (arr[n] == x)
k++;
}
return k;
}
let arr = [ 0, 4, 5, 6, 7 ];
let n = arr.length;
let x = 3;
// output
document.write(minOpeartions(arr, n, x));
</script>
PHP
<?php
// PHP program to perform minimal
// number of operations to make
// the MEX of the set equal to
// the given number x.
// function to find minimum number
// of operations required
function minOpeartions( $arr, $n, $x)
{
$k = $x; $i = 0;
while ($n--)
{
// if the element is
// less than x.
if ($arr[$n] < $x)
$k--;
// if the element equals to x.
if ($arr[$n] == $x)
$k++;
}
return $k;
}
// Driver Code
$arr = array(0, 4, 5, 6, 7);
$n = count($arr);
$x = 3;
echo minOpeartions($arr, $n, $x) ;
// This code is contributed by anuj_67.
?>
Output
2
Time Complexity: O(n)Auxiliary Space: O(1) | NLP/Natural Language Processing (NLP) Tutorial/AI ML DS - Projects/30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated]/Does Artificial Intelligence Require Coding?/Artificial Intelligence – Boon or Bane/Artificial Intelligence Examples/Agents in Artificial Intelligence/What are Diffusion Models?/ML | Common Loss Functions/Loss Functions in Deep Learning/Kaiming Initialization in Deep Learning/Swift - Initialization/Swift – If Statement/6 Best iOS Project Ideas For Beginners/Swift Programming Language/Introduction to Visual Programming Language/What is D Programming Language: Usage and Applications/Best Programming Languages for Data Science in 2024/5 Best Languages for Competitive Programming/MEX (Minimum Excluded) in Competitive Programming/Minimum operations to make the MEX of the given set equal to x | https://www.geeksforgeeks.org/minimum-operations-to-make-the-mex-of-the-given-set-equal-to-x/?ref=lbp | NLP | Minimum operations to make the MEX of the given set equal to x | Artificial Intelligence – Boon or Bane, AI ML DS - Projects, MEX (Minimum Excluded) in Competitive Programming, Swift - Initialization, 6 Best iOS Project Ideas For Beginners, ML | Common Loss Functions, Artificial Intelligence Examples, What is D Programming Language: Usage and Applications, 30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated], Swift – If Statement, Minimum operations to make the MEX of the given set equal to x, Natural Language Processing (NLP) Tutorial, Loss Functions in Deep Learning, Does Artificial Intelligence Require Coding?, Best Programming Languages for Data Science in 2024, NLP, 5 Best Languages for Competitive Programming, Swift Programming Language, Agents in Artificial Intelligence, What are Diffusion Models?, Kaiming Initialization in Deep Learning, Introduction to Visual Programming Language | GeeksforGeeks | [-0.0112342127, 0.0156192658, -0.00926027726, 0.032139387, 0.0124662668, 0.02658852, 0.0232103076, 0.0102671171, 0.0240051821, 0.00482554501, -0.0178714078, -0.0300462209, 0.0170102939, -0.0176329445, -0.0133472523, 0.00585225644, -0.0136585776, 0.0182820912, -0.033914607, -0.0362462327, -0.0256876647, -0.00765065802, -0.00231010118, 0.0237402245, -0.0196598731, 0.0138043044, 0.0228261184, 0.0256611686, -0.0318214372, 0.015990207, -0.00517661404, 0.00824681297, 0.00913442206, 0.00499776751, -0.000747263955, 0.0122079328, 0.0266680084, 0.0065411469, -0.0109626316, 0.0155000342, -0.00730621303, -0.0315829776, -0.00828655716, 0.00632586889, -0.000570487406, 0.00439167628, -0.00746518746, -0.021011157, -0.0326428078, -0.00931989215, -0.0275556166, -0.0252372362, 0.0137778083, 0.0484607928, 0.001473, -0.00151936768, -0.0258201435, 0.0100750225, -0.0099359192, -0.0384718813, 0.0412539393, -0.0195671376, 0.00534883654, -0.0106314337, 0.00426250929, -0.00554093113, -0.0242568906, 0.0153410593, 0.00335668493, 0.00768377772, -0.0525941327, 0.0265487768, 0.00304370327, -0.0204812419, -0.0153808035, -0.0103201084, 0.0130624222, -0.000986968, -0.0177124329, 0.0490701944, -0.028509466, -0.000331197312, 0.0385513678, -0.0368821323, 0.0259923656, -0.0202692766, 0.0160696935, -0.044141978, 0.00727309287, 0.0499710515, -0.00803484675, 0.00157153129, -0.0159504637, 0.0197526086, 0.0144666992, 0.0444599278, 0.0434530899, 0.0106248101, -0.0348154604, 0.0221372284, -0.00123784994, 0.00369947404, 0.00953848287, 0.00161707087, 0.0279530529, 0.0279265586, -0.00590193598, 0.00869061798, 0.0204150025, 0.0343650319, 0.00477917725, -0.00256512314, -0.0153145641, 0.0290923715, 0.045731727, -0.055959098, -0.0254492015, -0.0275821127, 0.00578601705, 0.00954510644, 0.0348684527, 0.0232500508, 0.0262705721, -0.00199877587, -0.0495206229, 0.0245483443, 0.026601769, 0.0468710437, 9.50122339e-05, -0.00579595286, 0.0104525872, 0.00244092429, 0.0232633, -0.0162551645, -0.0215278249, 0.0221504774, 0.0114263073, 0.0279265586, 0.00900194328, 0.000613957, -0.0142812282, -0.0444864221, -0.0255684331, -0.0181231163, -0.0110686142, -0.00508719077, -0.0059416797, 0.02294535, -0.0381274335, 0.0247073192, -0.0400616266, -0.00537864445, 0.00647821976, -0.00759104267, 0.00779638486, -0.00349081983, 0.0012419899, -0.0128438324, -0.0121284453, -0.0251047574, 0.0252504833, -0.0237137284, -0.0174077302, 0.0109560071, -0.039637696, -0.00859125797, -0.0036166748, -0.00448109955, -0.035292387, 0.0360342674, -0.00819382165, -0.0122344289, -0.000389984838, 0.0478513874, -0.028509466, -0.00277377758, 0.0263765547, -0.0185205545, 0.00282345712, -0.0564890131, 0.00270588207, 0.000217762237, -0.0168910641, 0.00222399, 0.00290956837, -0.0187987592, -0.0352393948, -0.0660804883, -0.00055020157, 0.00256015523, 0.0116316499, -0.000616441, -0.0152615728, 0.0191564523, 0.0492556654, -0.00585888047, -0.0553232, 0.00965109, -0.0247205682, -0.00122211815, -0.0276880953, -0.0318744294, 0.0106248101, -0.000134755915, 0.0296752788, -0.0388428196, -0.0224419311, -0.0602514148, 0.0206667129, 0.0195936337, -0.00963121839, 0.0623180866, -0.0170500372, -0.0151025979, 0.0142679801, 0.037888974, -0.0274761301, 0.0295957923, -0.0415188968, -0.00969745778, 0.0034510761, -0.00103664759, 0.0180436298, -0.0293838251, -0.044168476, -0.0274496339, -0.0127179772, 0.00603441522, -0.00722010154, -0.0391607694, 0.012691481, 0.0200705566, -0.0101810051, -0.0189047437, 0.00699488726, -0.0188649986, -0.0308146, 0.0326958, 0.0357163176, 0.00280192937, -0.0192624368, 0.0235017613, -0.00653121108, -0.00789574441, 0.0133737475, 0.0141487494, -0.0346829817, 0.0206667129, 0.0530710593, 0.0089357039, 0.00118403044, 0.00720023, 0.0260056127, 0.0116117783, -0.0279530529, 0.0257539041, 0.00463345041, 0.0153808035, 0.00337821268, 0.0127842166, -0.000253572944, 0.0132412687, -0.00546806771, 0.0233295392, 0.0366966613, 0.0151555892, 0.0431086421, -0.0159372147, 0.0106049385, -0.0224551782, 0.00459039491, -0.0379154682, -0.0160961896, -0.0164141394, 0.0298342537, -0.0143077243, -0.0493616499, -0.0112673324, 0.0401676111, 0.00692864787, 0.0189842302, 0.0218590237, 0.0476924144, 0.00486860052, 0.0173944831, 0.00810108613, -0.0242833868, -0.0138440477, -0.0795933381, 0.00332522113, -0.00408366276, -0.00270422618, 0.0151820853, -0.0122675486, 0.022587657, -0.00923378114, -0.0198850874, -0.0257009119, -0.0331992209, -0.0115124192, -0.0180303827, -0.021209877, 0.00577608123, 0.00625631725, -0.0399556458, -0.0114064356, -0.0111414781, -0.0084256595, -0.024853047, -0.0345240086, 0.0256876647, -0.0388428196, -0.00709424634, -0.041386418, -0.045360785, -0.0343120433, 0.0353188813, -0.0458642058, -0.0115256663, -0.0171692688, -0.0169175584, -0.0329607576, 0.02816502, 0.027979549, -0.0265222806, -0.004560587, -0.0296487845, 0.0308675896, -0.0181761086, -0.0231440682, -0.0281385239, 0.00344114, -0.0116978893, 0.0147184087, -0.000141069351, -0.0357428156, 0.00914104562, 0.0225346647, -0.00210144697, 0.00593174389, -0.00078079768, -0.000594085199, 0.00977694523, 0.0525146462, -0.0262838192, -0.00252537965, -0.0231440682, 0.00439498853, 0.0303111784, -0.0164141394, 0.00116498652, -0.00725322124, 0.0449898429, -0.0332522094, -0.0015119157, 0.0237004794, -0.00985643174, -0.0242039, 0.027794078, 0.00505738286, 0.052673623, 0.00965771358, -0.00988292787, 0.0110288709, 0.0316094719, 0.0083991643, -0.0303641707, -0.00869061798, -0.00856476277, -0.0133869955, -0.005299157, 0.00659745047, 0.0196996164, -0.00181827322, 0.0249060374, -0.00994254369, 0.0362727307, 0.0110818623, -0.000529501704, 0.0152748199, -0.0484342948, 0.0237402245, 0.00410022261, 0.018070126, -0.0314505, 0.00871049, -0.0552702099, 0.00410353485, 0.00860450603, 0.0273701455, -0.0409889817, 0.00984318461, -0.0375710241, -0.00509050256, -0.0107042976, 0.0219782535, 0.0119231036, -0.00566347409, -0.00420289394, -0.0125854984, 0.00450759567, -0.0163081568, 0.0150893498, 0.0350009315, -0.0230380856, 0.00436186884, -0.0143209724, -0.0298077594, 0.026244076, -0.00363323465, 0.0121350698, 0.0675112605, -0.0453872792, -0.00431881286, -0.0269727092, 0.00933314, -0.0606753491, -0.00803484675, 0.0127179772, -0.0318214372, 0.00355705922, 0.014413707, 0.000994419912, 0.00424594944, 8.21265858e-05, 0.0120622059, 0.0230115894, 0.0313710086, 0.0525411442, -0.00387169654, -0.0419693254, 0.0204547457, -0.0212363712, 0.00363985845, 0.0342325531, -0.00877010543, 0.0351334102, -0.0176064502, -0.0228526145, -0.0488317311, 0.0361402519, -0.00157484319, 0.0150231104, 0.00381208118, -0.00246576406, 0.0127510969, -0.037862476, 0.0192094445, -0.0211833809, -0.000557239458, -0.0709557161, -0.045546256, 0.0333846882, -0.0278470702, 0.0507924221, -0.032324858, 0.0235017613, -0.0181363653, 0.00725322124, -0.00778976083, 0.0225744098, 0.0220577419, -0.00317783817, 0.0026114909, 0.0136188334, 0.0197393596, -0.03682914, 0.0134399869, -0.0204150025, -0.00468975399, 0.00187292078, -0.0192756839, 0.0253299717, -0.0141619975, 0.0440889858, 0.00225876574, -0.00604435103, -0.0217795353, -0.0120820785, -0.0387368388, 0.0202427804, -0.00905493461, -0.0376240164, -0.0269197188, 0.00330038136, 0.00682266476, 0.0502095148, -0.0105784424, -0.00968421, 0.0106711779, 0.0117773768, -0.004216142, -0.0357958078, 0.00755792297, -0.00432543689, 0.00650140317, -0.0553232, -0.0399026535, 0.0127908401, 0.0255021937, 0.0123536596, -0.0516932756, -0.0383129045, 0.0301522035, 0.0254227053, -0.060304407, -0.00357030705, 0.042419754, 0.0290658772, -0.0560650826, 0.0194081627, 0.00106148736, 0.000823025359, 0.0344710164, -0.00851177145, -0.0111547252, -0.0060244794, 0.0122079328, 0.0255949292, 0.00881647225, 0.0256479196, 0.00179508945, 0.0116051538, 0.0331197307, -0.00515011838, -0.00238462072, 0.0242701396, -0.0151025979, 0.0153543074, 0.0212628674, -0.0154337948, -0.00169904227, -0.00559061067, 0.0199248306, -0.0020815751, -0.0381804258, 0.0151688373, 0.0140162706, -0.000929836475, 0.0254889447, -0.00510375062, 0.0215543211, 0.00685578445, 0.0231043249, -0.0347359739, -0.00284829689, -0.0141355013, -0.00565022603, 0.0180966221, 0.0502095148, -0.00911455, 0.0480633564, -0.00942587573, 0.00274396967, -0.0233030431, -0.00122708606, 0.0222034678, -0.033729136, -0.0327752866, -0.0264825374, -0.00234156498, -0.0242039, 0.00523291761, 0.0329342596, 0.00749830715, -0.0109758787, -0.00399423949, 0.0282710027, -0.0173414908, 0.0101478854, -0.000966268184, 0.0122675486, 0.0133671239, 0.0356103368, 0.0190239735, 0.0280855317, -0.0148111442, -0.0245350972, -0.0257671513, -9.19072554e-05, 0.00084041321, -0.0342590511, -0.000520393776, -0.0232103076, -0.0178979039, -0.0383923948, -0.0342855453, -0.0119363517, -0.0416248776, -0.00420951797, 0.0105188265, 0.039796669, -0.000335130288, 0.0437180474, -0.0274496339, 0.0234885141, 0.00568334619, -0.00613708608, -0.0313710086, -0.0137513131, 0.0249060374, 0.0102008777, 0.0218590237, -0.0177124329, 0.000507559918, 0.00933976471, -0.0101743815, 0.0399026535, -0.0261115972, -0.0198850874, -0.0306291282, -0.0220179968, 0.0185205545, -0.011644898, 0.0394787192, 0.00999553502, -0.0269594621, -0.0150496066, -0.015645761, -0.00655439496, 0.00156656327, -0.0155530265, 0.000131029941, 0.0342590511, -0.0150893498, 0.0349744372, -0.039611198, -0.00161458692, -0.0276880953, -0.00784275215, 0.012075454, -0.0258201435, 0.0113998121, 0.00670674583, 0.033729136, 0.0200043172, 0.0176196974, 0.0198320951, -0.00880984869, 0.0276880953, -0.01408251, 0.0183085874, -0.0240184292, 0.0854754, -0.0155397784, 0.00168827828, -0.0330137499, 0.00828655716, 0.00829318073, 0.00565022603, -0.00465001026, 0.0124728912, 0.0202162843, 0.011201093, 0.0240979176, -0.0148243923, -0.0040240474, -0.00221902202, -0.00269760215, 0.00216106256, -0.0104989549, -0.017738929, 0.00534552475, -0.0342325531, 0.0154470429, -0.00917416532, -0.00265620253, 0.0173414908, -0.00742544373, -0.00101677573, -0.0151025979, 0.000324366381, 0.0121218218, 0.0202030372, -0.00707437471, -0.00368291419, -0.0343385376, 0.0253299717, 0.0322188735, -0.00131319731, 0.00553099532, 0.00653121108, 0.00664713, -0.0103995958, 0.000892576762, 0.00313312653, -0.0206534639, 0.0207991917, -0.0198453441, -0.0114329318, -0.0312120356, 0.00251047569, 0.0254094582, 0.0212761164, -0.0138043044, 0.00706775067, 0.0274231378, 0.0286949351, -0.00843890756, -0.0297812633, 0.00173216197, -0.0236872323, -0.00781625696, 0.00336496485, 0.00200705579, 0.0325633213, -0.00747843552, 0.0194876511, -0.00296587194, 0.0342325531, 0.0369351245, 0.0135260988, -0.000609403069, 0.0196201298, 0.012519259, -0.02885391, 0.00432212511, -0.0155662736, 0.0235017613, -0.0309205819, 0.0258333907, 0.00183152116, 0.0144666992, -0.0322453715, 0.0155927697, -0.00884296838, 0.0055541792, -0.0158709753, 0.00720685348, 0.00123784994, -0.0123536596, 0.00837929174, -0.00939938, 0.011558786, 0.0273171552, 0.00941925216, 0.0181893576, -0.0282974988, -0.0125060109, 0.00239952467, -0.00642191619, 0.010942759, 0.000563863432, 0.0297547672, -0.00061147305, -0.00880322512, 0.0262705721, 0.0147316568, -0.00343120424, 0.0403530821, 0.00731946062, 0.0295957923, 0.0214615855, 0.00593505614, 0.00334509299, -0.00469306577, 0.0189974774, -0.0194479059, 0.03682914, 0.00965771358, -0.00149701186, 0.0309205819, -0.0226141531, -0.0130889183, 0.0226406492, 0.0216603037, -0.0233162921, 0.0109361354, 0.00231838133, -0.00118320237, 0.0139102871, -0.00847865175, 0.00503751123, 0.0109692551, -0.0315034874, -0.0515343025, 0.01772568, -0.0030122397, -0.0193154272, 0.0165863615, -0.018255597, 0.0370941, 0.0178184155, 0.0113203246, -0.00568334619, 0.00493484, -0.00173381798, 0.0217530392, 0.0257009119, 0.00193584827, -0.0224816743, -0.00549787562, -0.00192591245, 0.0302051958, -0.00801497512, -0.00786262471, 0.00266613835, -0.0145196905, 0.000130719447, -0.0358487964, 0.0160961896, 0.00870386511, 0.00116747059, -0.0128239598, -0.0101478854, -0.021196628, -0.000822197355, 0.00914767, -0.0041200947, 0.00113352283, -0.0107771605, 0.00469969, 0.000435524475, 0.0161094368, 0.00784937665, 0.0266680084, -0.0145859299, 0.0107042976, -0.00523954164, 0.00547469174, 0.00910130236, 0.000705036276, 0.00494146394, 0.0193419233, -0.00363985845, 0.0303111784, 0.0157782398, -0.0294103213, 0.0043883645, 0.0204679947, 0.013724817, 0.0170765333, -0.00928677246, 0.0318479352, 0.0130425505, 0.00865087379, -0.00916091818, 0.0163611472, 0.0273701455, 0.00901519135, 0.0116713932, -0.000333474309, -0.0378359817, -0.000316293444, -0.00144070829, 0.00553099532, -0.034577, 0.0304436572, 0.00639542, 0.01112823, -0.00351069146, -0.0102075012, 0.00255684322, -0.000899200735, -0.0121748131, 0.00138109282, -0.0320069082, -0.035265889, 0.0145064425, 0.000978688127, -0.00704787904, 0.0244556107, -0.0210509021, 0.0273966417, 0.038233418, 0.00400417577, -0.0387368388, -0.00752480328, -0.014426955, -0.0325898156, -0.0257009119, 0.000435938477, 0.0127709685, -0.00104823953, 0.00943912379, 0.0144799463, -0.015301316, 0.0264957845, 0.0241376609, -0.00048644605, 0.00593174389, 0.00862437859, -0.0440095, -0.0274496339, -0.0300462209, 0.0182688441, -0.00245748414, -0.0639608279, 0.018255597, -0.0273701455, 0.0489642099, 0.00494477618, -0.00645172363, -0.030072717, 0.0293573309, -0.0201235488, -0.00665706629, 0.0106115621, 0.0170765333, 0.00304039149, -0.000559309497, -0.0155927697, -0.00135790906, -0.00168082642, 0.0155397784, 0.0225611608, -0.00289466465, 0.030072717, 0.0128372079, 0.0337556303, 0.0153808035, 0.0191432051, 0.0194346588, -0.0508189164, -0.0127179772, 0.00588206435, -0.0151953325, -0.0243628751, 0.0178581588, 0.00565685, -0.00445791567, 0.0348419584, 0.00277543347, 0.0191034619, 0.0108831441, -0.0289863888, -0.0515078083, 0.00757117057, 0.00334343687, -0.0106181856, -0.0208521839, 0.0237932149, -0.00888933614, 0.00102008774, -0.00889596, -0.00125026982, -0.0144004598, -0.00341464439, -0.0574428625, -0.0313710086, 0.0311325472, 0.0310265645, 0.0449368507, -0.00371272187, 0.00482554501, -0.0230115894, -0.0242039, -0.00519979792, 0.0126186181, 0.0054250122, 0.0025469074, -0.0231838115, 0.0141752455, -0.0262043308, 0.0139235351, 0.00241111638, -0.0252504833, 0.019116709, 0.00694189593, 0.0185867939, -0.00511368643, -0.0274231378, -0.0310000684, -0.0071074944, 0.0039478722, -0.00548793934, 0.0123602841, -0.0403265841, -0.0135790901, -0.00731946062, 0.0164141394, 0.0184675623, 0.0506069511, 0.0201367978, -0.0357693098, 0.0191564523, -0.00802159868, -0.0230380856, 0.00437180465, 0.0225214176, -0.000603193126, -0.00361336279, 0.0306821186, -0.00341795641, -0.0292513464, 0.0142414849, 0.0109295119, -0.0183085874, 0.020322267, 0.0120489588, -0.0279530529, -0.00123039808, 0.0342060588, -0.0210641492, -0.0109162638, -0.00384188886, 0.00395118399, -0.0167585835, -0.00387169654, -0.0228393674, 0.00330038136, 0.00865749829, -0.0154602909, -0.0126716094, 0.0227333847, -0.0300197247, 0.00557073904, 0.00765728205, -0.0146124261, -0.0248133037, -0.0163611472, -0.000231424128, 0.00735258032, 0.00677960925, 0.00386507274, -5.98742663e-05, -0.0168248229, 0.00134217716, 0.0185205545, 0.00325566973, 0.0105320746, -0.0562240556, -0.0283239949, -0.0236607362, 0.0054581319, 0.00985643174, -0.023462018, 0.0175137147, 0.0180171337, -0.00751817925, 0.00069634238, -0.021713296, 0.015473539, 0.0217795353, 0.0148773836, 0.00230016536, 0.00209316704, -0.0286154486, -0.00429562898, -0.0104062194, 0.0186397843, -0.00304867141, 0.00319936615, -0.00408035098, -0.0260983482, -0.020507738, 0.0198983345, -0.0112872049, -0.0200440623, 0.00412340648, 0.00283670495, 0.0235017613, 0.00312153483, 0.00380545715, -0.0224021859, 0.0128372079, 0.0229056068, -0.00844553206, 0.0090946788, -0.0077500171, -0.00614371, -0.00848527532, -0.0089290794, -0.0206269696, -0.000149142288, 0.0186662804, 0.0193949156, -0.00204183138, 0.00674317731, -0.00102339976, 0.00573633751, -0.0230115894, -0.00426250929, -0.0077367695, -0.00430225302, 0.0418633409, 0.015288068, 0.00114759873, -0.00645172363, -0.0224021859, 0.01408251, -0.0219915025, 0.041174449, 7.48298917e-05, 0.0105519462, -0.0140427658, -0.0054250122, 0.014599178, 0.00639873231, 0.00622982159, 0.00939938, -0.0172090121, -0.0165068749, 0.00793548767, 0.0273701455, -0.0343915299, 0.0214218423, 0.0569659397, -0.00220411806, 0.00567009812, -0.00714061409, 0.00292944023, -0.00477917725, 0.0117508806, 0.00560385874, -0.00420289394, 0.0114461789, 0.0125722503, 0.000113435082, 0.0357958078, 0.0113335717, 0.00511037465, -0.0330137499, 0.00484872889, -0.023276547, 0.0106711779, -0.00492159231, -0.00656101899, -0.0135194743, 0.0143607156, -0.000636726851, 0.00593836792, 0.0117442571, -0.00569659378, 0.019633377, -0.0348419584, -0.00115091063, 0.00426913332, -0.027290659, 0.0141222533, -0.0103863478, -0.0224816743, 0.0175799541, 0.0277145915, 0.00669680955, -0.0169043113, -0.0132213971, -0.0223359466, 0.0230778288, -0.0139897745, 0.000692616391, 0.00330866128, -0.00359349092, 0.00315631041, 0.0108500244, -0.0016617825, -0.0159372147, -0.00914104562, 0.00634242874, 0.00211303891, 0.00745856343, -0.00933976471, -0.015645761, -0.00278536952, -0.0246278327, 0.00370609807, -0.0104459636, -0.00377564947, -0.00540182833, -0.0197658557, 0.00591518404, -0.0137513131, -0.00818719808, -0.0295692962, -0.0137778083, -0.00593174389, 0.00251378771, -0.0165996104, -0.00920066144, 0.0333846882, -0.00399423949, -0.016334651, -0.00117078249, -0.0212231241, -0.00361005077, -0.0347889662, -0.00108053128, 0.0115521625, 0.0169308074, 0.00281352131, -0.00815407839, -0.00735920435, -0.0173547398, -0.00814083, 0.00579926511, -0.00130160549, 0.00463345041, -0.00246907608, -0.00797523186, -0.0283769853, 0.0130690457, 0.0158709753, -0.0225744098, 0.00773014547, 0.0167188402, -0.0112275891, -0.0164803788, -0.0133273797, -0.0198320951, -0.000361833081, 0.00222399, -0.0217927843, -0.010525451, 0.0382864103, -0.0155662736, -0.00269429013, 0.0153543074, 0.0148641355, 0.0373590589, -0.0135327224, 0.0104525872, 0.0130160544, 0.0199778229, -0.00469637802, -0.0224286821, -0.00916091818, 0.00153427152, -0.00860450603, 0.00265785842, 0.0288274139, -0.00878335256, -0.00888933614, -0.0231175721, -0.0083991643, -0.0117773768, -0.0134399869, -0.00325070159, -0.0610462911, 0.0200043172, 0.0168778151, -0.0144666992, -0.0167453364, 0.00340139656, -0.0200175662, 0.00951198675, -0.00576283317, 0.00528259715, 0.00435193256, 0.00751817925, 0.0135128507, -0.0140162706, -0.00452084327, -0.00855151471, -0.0187722631, 0.00471293787, 0.0249987729, 0.00532896491, -0.00391144026, -0.00904831104, -0.00537202042, -0.0134598594, 0.00690215221, -0.0104327155, 0.00318943, 0.0231573172, -0.0151555892, 0.0151423411, -0.00692864787, -0.0204812419, 0.0430556498, 0.0164936259, -0.00334674888, -0.00309503893, -0.0316094719, -0.00333018904, -0.00721347751, -0.0110288709, -0.0122940447, -0.00269263424, 0.0321923792, 0.0186927766, 0.0248927902, 0.0373325609, 0.0107374173, 0.012002591, -0.000279240747, 0.0166261047, -0.0299932286, 0.0315829776, -0.0024839798, 0.0158577282, -0.0275821127, -0.00472949771, -0.0324573368, -0.00627950113, 0.0224286821, 0.00257671508, 0.00318943, -0.00802822318, 0.00921390951, 0.0139367832, 0.0231705643, 0.00696176756, 0.00141338457, -0.00424263766, -0.0164936259, 0.0189179908, -0.0168248229, -0.00746518746, -0.0173149966, 0.0197128635, 0.0106181856, -0.0163611472, -0.00328878942, -0.00258333911, 0.00608078297, 0.0106314337, 0.00326726143, -0.00941262767, 0.00410684664, -0.0462351441, -0.00508387899, 0.00295593613, -0.0101280138, 0.0127577204, -0.0173017476, -0.00398430368, 0.00133141316, 0.0162684117, -0.00617351802, -0.0041200947, -0.0136585776, -0.00114097481, 0.024853047, 0.0011393188, 0.0113799395, 0.00124612986, -0.0208521839, 0.0105718188, 0.015473539, -0.0168248229, -0.0223359466, -0.0138043044, 0.0185470507, -0.0440624915, -0.033888109, 0.00193750428, 0.00227698148, -0.016864568, -0.0213026106, 0.00553099532, 0.0357693098, 6.2047744e-05, -0.0127908401, 0.00740557211, -0.0347094797, 0.00436518062, -0.0276616, -0.0282445066, 0.00937288441, 0.00764403399, 0.00196234416, 0.0263500586, 0.0189842302, 0.0114329318, -0.0187590159, -0.0347624719, 0.013738065, 0.0149966143, -0.0149701191, 0.010770537, -0.0082401894, 0.0183218364, -0.0296752788, -0.0197128635, -0.00209151115, -0.00360011496, -0.00141752453, 0.00608740654, 0.00802159868, 0.00680941669, -0.00983656, -0.0262970664, 0.00165184657, 0.023647489, 0.00138026488, -0.00922053307, -0.00607415894, 0.025025269, -0.0155530265, 0.00632918067, -0.000876844919, 0.0042293896, -0.000993592, 0.0138837919, 0.0176196974, -0.0130160544, 0.00901519135, -0.0144402031, -0.0127246007, -0.0170765333, 0.0175269619, 0.0228393674, 0.00544488383, 0.0145064425, -0.0149833662, 0.00961134583, 0.00407372694, 0.00223392597, -0.0176329445, -0.000416687632, 0.000143863828, -0.0188914947, 0.0173282437, -0.0195538905, 0.0213026106, 0.0162551645, 0.0174872186, -0.0244291145, -0.025714159, 0.0104194675, -0.0121019501, -0.0237534717, -0.00907480624, -0.00555086695, 0.0243496262, -0.00609071879, -0.0144666992, -0.0369881168, -0.0124993864, -0.0282445066, -0.0114461789, 0.00706112664, -0.00875685737, -0.00749830715, -0.0033881485, -0.00786924828, -0.00129912153, -0.00393131236, -0.0129564395, 0.00195737625, -0.0105453227, 0.0192624368, -0.01329426, -0.0284299776, -0.00174872181, 0.0143077243, -0.00337490067, -0.0140560139, 0.00301389559, -0.00759766623, 0.00996903889, -0.022070989, 0.0129233189, 0.0304701533, 0.0114395553, 0.0246145856, -0.0343385376, -0.0181098692, -0.0020501113, 0.0180436298, 0.0433206074, 0.0322453715, 0.00277212146, -0.0164406355, -0.00459370669, -0.0290393811, -0.0211701319, -0.0155000342, -0.00155414338, 0.0120622059, 0.0197791047, -0.0120953256, -0.00983656, 0.0106380582, 0.0445394143, 0.00354712317, 0.00219087023, 0.000259368913, -0.0284299776, 0.00916091818, -0.00702800695, 0.00956497807, -0.0329872519, -0.00835279655, -0.0140957581, -0.0409624837, 0.00289797643, -0.00313643855, 0.0175799541, 0.0125258826, -0.0302316919, -0.025038518, -0.0232235566, 0.0181628615, 0.0151025979, -0.00979019236, 0.000710418273, 0.0123404125, 0.0347359739, 0.0108036567, 0.0330667384, 0.0125854984, 0.00622650934, 0.00937950797, 0.00755792297, -0.0317949429, 0.018931238, 0.0162684117, 0.0145859299, 0.0109758787, -0.00502095139, 0.0105519462, 0.00485204067, -0.01260537, -0.00825343747, -0.0258731339, 0.0342590511, 0.00910130236, -0.00310331886, -0.0460761711, 0.0119694714, 0.0115654105, -0.0102803651, 0.0385248736, 0.00888271164, -0.011989343, -0.00380876916, -0.0160564464, -0.0121151982, -0.00805471838, 0.0290923715, 0.00666037807, -0.00566347409, 0.0016775144, -8.82847817e-05, -0.0321128927, 0.0141222533, 0.0383923948, -0.00707437471, -0.00826006103, 0.0320599, 0.0268402305, 0.0202295315, 0.00731946062, 0.00125440978, -0.00703463098, -0.00286154472, -0.00613708608, -0.00601454312, 0.0282180123, 0.00350406766, -3.97954282e-05, 0.0381009392, -0.00262142671, -0.0313180201, 0.00516005419, -0.00904168654, 0.00417971, -0.00140924461, -0.0240846686, -0.0138308, 0.0125523787, -0.0121549414, 0.00621657353, 0.00432874914, -0.0209581666, -0.00646165945, 0.00599467149, 0.00657757884, 0.00202361564, 0.0202560276, 0.00869724154, 0.0147449048, 0.0135658421, 0.00784937665, 0.0150098624, -0.00655108271, -0.006431852, -0.01565901, 0.00543826, -0.0194744021, -0.00820044521, -0.0141487494, -0.000573799363, -0.0101743815, -0.0233560354, -0.0192491878, 0.0304171611, 0.00332190911, -0.0274496339, 0.00986305624, 0.0361932442, -0.0158709753, 0.0309735723, -0.00587544031, 0.0235812496, -0.00671999343, 0.0101743815, -0.00611390267, 0.0164406355, 0.00266282633, -0.0153278122, 0.00449103583, -0.00670343358, 0.00510706287, 0.00488847261, -0.0127179772, -0.00998891145, -0.000300561573, -0.0176991839, 0.0450693294, 0.00698163966, 0.00404723128, 0.0383394025, 0.0155397784, -0.00465663429, -0.0158312321, -0.0101942532, -0.0196731202, -0.0015922311, 0.00544819608, 0.00595492776, -0.00236806087, -0.01565901, -0.00944574736, 0.0447513834, 0.0201632921, 0.019633377, 0.0143077243, 0.0183748268, 0.00396774383, 0.00731946062, -0.00523954164, -0.00593174389, -0.0292778425, -0.0109560071, 0.00771027338, 0.0165863615, -0.0151158459, -0.00200043176, -0.00763078639, 0.00192591245, 0.0172355082, -0.0104327155, 0.00138026488, -0.00588537613, -0.0202427804, -0.00869724154, -0.019288931, 0.0286154486, 0.01841457, 0.00359680294, 0.0169440545, -0.0302316919, 0.0219385102, -0.00535214879, 0.0230115894, -0.00217431039, 0.00222067791, -0.00981668849, -0.0180966221, -0.0113733159, 0.0187855121, -0.00236474886, 0.0073857, 0.014956871, 0.00233990909, -0.00753805088, 0.00273734587, -0.00686240848, -0.00962459389, -0.00913442206, 0.00194412831, -0.00440161256, 0.00386176072, -0.0171427727, 0.000468230195, -0.0279530529, 0.0165996104, 0.0181496125, -0.00450759567, 0.0192094445, -0.00822694134, 0.00920728501, 0.00571315363, -0.018070126, 0.00117326644, -0.0197923519, -0.00106479938, 0.012592122, 0.00106479938, -0.0107904086, -0.00192425644, 0.0181231163, -0.011558786, 0.0180038866, -0.00457714684, 0.00884959195, -0.004216142, -0.0332257152, -0.0160167031, -0.00673986552, -0.0205209851, -0.0139367832, 0.00210641488, 0.0219650064, 0.00358686689, 0.0100551508, 0.0256346725, -0.0119098555, -0.0200308133, -0.0414659046, 0.0386838466, 0.0138043044, -0.0414394066, -0.0160961896, -0.0024127725, -0.0154073, -0.00374252978, 0.0127312252, 0.0142414849, -0.0104525872, 0.00569990603, 0.0195936337, 0.00375908962, -0.0239124466, 0.0114130592, -0.00449765939, -0.00391144026, -0.0216735527, 0.0246145856, 0.00838591624, -0.00450097164, 0.00857138634, -0.0136055863, 0.00979681686, -0.0116912657, 0.0147581529, -0.00780963292, 0.001846425, 0.00220080628, 0.00440823613, -0.0148111442, -0.032139387, -0.0230645817, -0.00652127527, 0.00891583133, -0.0193286762, 0.00289300852, 0.00232831715, -0.0153675554, -0.0247603115, -0.00563697843, -0.00324573368, -0.022587657, 0.00368291419, 0.00103913154, 0.00412671873, 0.00423270185, -0.0184940584, 0.00565685, -0.00664713, 0.0355573446, 0.00712736649, -0.0214748345, 0.0317684449, -0.00260486687, 0.00509050256, 0.00227863761, 0.0171692688, 0.0077367695, -0.00326726143, 0.0176461935, 0.0134929791, -0.0218325276, -0.0105585707, 0.0154470429, -0.0258201435, -0.00662063435, 0.00606422266, -0.00595823955, 0.0105718188, 0.0275291204, -0.00503419945, 0.009909424, 0.0332257152, -0.00110951101, -0.00344776409, 0.0212496202, 0.00108632725, 0.00228857342, -0.0192359407, 0.000412754656, -0.00363985845, -0.0019076966, 0.00305198319, 0.00451090746, -0.00730621303, -0.00886946451, -0.00468975399, 0.0077831368, -0.00210310286, -0.0149171269, 0.00643847603, -0.004560587, -0.00193750428, -0.00124612986, 0.00796198379, -0.00867737, -0.00297083985, 0.010326732, -0.00784275215, 0.00662063435, 0.00105900341, -0.00703463098, 0.00171891414, -0.00479242532, 0.0142679801, 0.000414824637, -0.0123735322, -0.006431852, -0.0158974715, -0.0122874202, 0.0185470507, 0.0174077302, 0.0146521693, -0.00502757542, 0.0105386991, -0.00998228695, 0.0157914888, -0.0011393188, 0.0184808094, -0.0200175662, -0.040856503, 0.00790899154, -0.0160431974, -0.0123072928, -0.00734595628, -0.0147051606, 0.0200838055, -1.47356932e-05, 0.00384520087, 0.00398430368, 0.012691481, 0.00443804404, -0.00209151115, 0.01565901, -0.00823356491, -0.0185735449, 0.0160034541, -0.0133604994, -0.00270588207, 0.0263633057, -0.00519648613, -0.0196201298, 0.0240581725, 0.0136850728, -0.0148243923, -0.0140030226, -0.0254094582, -0.00369947404, 0.0187590159, 0.00712736649, 0.0116780177, 0.0105519462, -0.0158709753, -0.000985312, 0.00525278924, -0.014956871, -0.0133008845, -0.00544488383, -0.0029493121, -0.0178846549, 0.00806796644, 0.0275291204, -0.00211303891, 0.0279000625, -0.0132280206, 0.0275026262, 0.0156325139, -0.0210773982, 0.0266415123, -0.0175137147, -0.0416778699, -0.00105072348, -0.00473612174, 0.0138043044, -0.0183748268, -0.024336379, -0.00262805074, -0.018056877, -0.00441817241, 0.0165466182, -0.0163611472, 0.00202361564, -0.0170235429, -0.0160696935, 0.0360872597, 0.000999387936, 0.0182158519, 0.0272641629, 0.0288804062, -0.00178184162, 0.0233427864, 0.0148906317, 0.0123205399, 0.0255154409, -0.0233162921, 0.00788912, -0.00834617205, 0.025038518, 0.00054233562, -0.00442479597, 0.0170765333, 0.00191928842, 0.00688890414, -0.0151158459, -0.0165863615, -0.0105055785, 0.00581582496, -0.00997566339, 0.000962956226, -0.00765065802, -0.00903506298, 0.00634905277, -0.0069352719, -0.00290294457, 0.0164936259, 0.0090880543, 0.0121615659, 0.0163081568, -0.00822694134, -0.0110686142, -0.00132892921, 0.00875023287, -0.00215775054, -0.0167718325, -0.00809446257, -0.0284564737, -0.0430291556, -0.0145594338, 0.0209714137, 0.00945899542, -0.0157252494, -0.00129663746, 0.00068268046, 0.00946561899, 0.0120158391, -0.0149701191, 0.00178846554, 0.0257539041, 0.00519979792, -0.0176726896, 0.0130160544, -0.00359349092, -0.00510706287, 0.0126186181, 0.00790236797, -0.00320267817, -0.000693444395, 0.0393992327, 0.0101213902, -0.00058083731, 0.00240614847, -0.0208919272, 0.00466988236, -0.0219385102, -0.019818848, 0.00314471847, 0.00353718735, -0.00700813532, 0.0260586049, -0.0180833731, -0.00639210828, -0.00189610466, 0.00188451272, 0.0106446818, -0.0162021723, -0.00125523785, -0.0231043249, 0.0122278053, 0.0158842225, -0.0205607302, -0.0158577282, -0.0211436376, -0.0185338017, 0.0318744294, 0.00128504564, 0.0120489588, 0.00348088378, 0.00865749829, -0.00526934955, 0.00645834766, 0.00123619405, 0.0167718325, -0.000530329708, 0.0267077517, 0.0277410876, 0.015645761, 0.00587544031, 0.0129034473, 0.0187855121, 0.00423601363, -0.00704787904, -0.00902181491, -0.00735258032, 0.0097504491, -0.000676884491, -0.0158709753, -0.0257803984, -0.00535877282, -0.0214218423, 0.00972395297, 0.0123934038, 0.0061006546, 0.0134863546, -0.0108632725, 0.0122874202, 0.0142414849, -0.0167983286, -0.0187722631, -0.0100352783, -0.00541176414, -0.00190107257, -0.0229983423, -0.00356037123, -0.00494477618, 0.0106049385, 0.00971070491, -0.0143209724, 0.00440492434, 0.0133472523, -0.00200374378, 0.0105916904, -0.0103664761, -0.00572640169, 0.0055210595, 0.0121019501, -0.0154602909, 0.0110222464, 0.00320599, 0.0166261047, 0.0182158519, -0.00217431039, 0.0263500586, -0.0226538964, -0.0262573231, 0.0112739569, -0.0106910495, 0.00217265449, -0.000375494972, -0.0200175662, 0.00504413527, -0.0221107323, 0.0011533947, -0.00468313, 0.00223723799, -0.00953848287, -1.64434296e-05, -0.0200838055, 0.00350406766, -0.0170632862, 0.00199215184, -0.00540514, -0.0011426307, -0.00417308602, 0.00471624965, 0.00737907644, -0.0139235351, -0.0113070766, 0.0179508943, -0.0158709753, 0.0279000625, -0.00351731549, 0.0176461935, 0.00921390951, 0.00574627332, -0.00823356491, 0.00380214513, -0.00519979792, 0.0134996027, -0.0237402245, -0.0136983208, 0.0328017808, 0.00156242331, -0.00307847909, 0.00268766633, 0.00012688998, 0.00941925216, -0.0192624368, -0.00867074542, 0.000555997482, -0.0162419174, -0.00202361564, -0.00511699868, -0.0175004657, -0.0109361354, -0.00303045544, 0.0102604926, 0.0168778151, 0.00181496132, -0.0105651943, 0.0153278122, 0.0108169047, 0.0307881031, 0.0026181147, 0.0115455389, 0.00287479279, 0.0018431131, 0.0179111511, -0.000152971756, -0.0159372147, -0.01565901, 0.00824681297, -0.0185602978, -0.0156060178, 0.0175004657, -0.00270919409, -0.00215443852, -0.00592512, 0.0145461857, -0.00637886, -0.0100352783, -0.000864425, 0.00836604461, 0.0188782476, 0.00784275215, 0.00107225135, 0.0242568906, 0.0210376531, -0.0274761301, -0.00464669848, -0.00217099837, -0.0269462131, 0.00378227327, -0.0192359407, 0.000409649685, -0.0099359192, 0.00354049937, -0.0214748345, -0.0062927492, 0.0106380582, 0.0231175721, -0.00850514695, -0.00193088036, 0.00753805088, 0.0095980987, -0.00165515859, -0.0183615796, -0.0245086011, -0.000197269401, 0.00246576406, 0.00648484332, 0.0214615855, 0.00812095869, 0.0211303886, -0.00403067144, 0.00400748756, 0.0193286762, -0.00759104267, 0.0322188735, 0.0273436513, -0.00150943175, 0.0141752455, 0.0142149888, 0.0059416797, -0.0036497945, -0.0303111784, -0.00233328505, -0.00878997706, 0.0117575051, -0.00775664113, -0.0142812282, 0.00880322512, -0.0195538905, 0.0100286547, 0.00998228695, -0.00595492776, -0.0136320814, 0.0212231241, -0.00995579176, 0.0211436376, 0.00906818267, -0.00327388546, 0.0043552448, 0.0146521693, -0.0178846549, 0.00140427658, -0.00808783807, -0.0336496457, 3.78289442e-05, -0.0122543005, -0.00168331037, 0.00582576077, 0.0129564395, -0.0108169047, -0.0202692766, 0.00389819243, 0.00592512, -0.0115919057, -0.0165598653, 0.00386507274, -0.0105320746, 0.0275026262, 0.0327752866, 0.000200270879, 0.013122038, -0.00223558187, 0.00491165603, 0.0133207561, 0.00790236797, 0.00608078297, 0.0153675554, 0.0210773982, 0.0226538964, 0.032165885, 0.0032871333, 0.0121549414, 0.00340470835, 0.00192756834, -0.00369947404, 0.00504082302, 0.0387368388, -0.0262175798, -0.0348949507, 0.0123669077, 0.0219385102, 0.00217927829, 0.018070126, -0.0144931944, 0.0115389144, -0.00583238481, -0.022243211, 0.00099607592, 0.0100352783, 0.0154602909, 0.015976958, 0.00288969651, -0.00335502881, 0.0271316841, 0.0110951103, 0.0194744021, 0.0228791106, -0.00663057, -0.0260851011, -0.00300561567, 0.0248927902, 0.00573964929, 0.0112872049, -0.000616855, 0.0136983208, 0.00365310651, 0.0236739852, 0.0082733091, -0.00440823613, -0.0118303681, 0.012075454, 0.0113799395, -0.00614039833, -0.00518655, -0.0185867939, 0.0188782476, -0.0216603037, -0.0071074944, 0.0232235566, 0.00651133945, 0.0156855043, 0.00636230037, 0.0121019501, 0.00780300889, 0.0191299561, 0.0243761223, 0.00915429369, 0.0101412619, -0.0119694714, -1.33125795e-05, 0.000122025514, 0.00986305624, -0.00186298497, 0.0190239735, -0.0135592185, -0.00594830373, 0.00754467491, 0.0144534511, 0.00821369328, 0.00747181149, 0.0046235146, 0.0245086011, 0.00144733232, -0.0081143342, 0.000500522, -0.0175667051, 0.00417639827, -0.00767715368, 0.0171030294, -0.0125126345, -0.00816070195, -0.0246145856, -0.0126517378, 0.0304171611, -0.0179111511, 0.00138192077, -0.0011740945, 0.010525451, 0.0101147657, -0.0207594484, -0.0212496202, -0.0245350972, 0.0158709753, -0.0122807967, 0.0140560139, -0.000481478113, -0.00543494802, 0.028668439, -0.00754467491, -0.00845215563, -0.00590856, 0.0135790901, -0.0039809919, 0.0373590589, -0.00183317717, -0.00355705922, -0.0095980987, 0.000843311194, 0.003822017, -0.0161359329, -0.00896219909, -0.0154205468, 0.000517909823, -0.00849189889, -0.0304436572, -0.0156987533, 0.0127113527, -0.0182688441, 0.00271913, 0.013724817, 0.00467650592, 0.0122278053, 0.00259161904, -0.00643847603, -0.00568334619, 0.0120887021, 0.00302217552, 0.00720685348, 0.00904831104, -0.00647159573, 0.0024078046, -0.00201367959, -0.0158974715, -0.0054217, -0.00646828348, -0.0154470429, 0.0134532349, 0.015288068, 0.0089290794, 0.0100220311, -0.00869061798, 0.00878997706, -0.00562041858, -0.00614371, -0.00371603388, -0.00824681297, 0.0094324993, 0.000187436977, -0.00717373379, -0.00131485332, -0.0136320814, 0.00129994948, -0.0081143342, 0.00628612516, 0.0019457842, -0.0128570795, -0.0338086225, -0.0159504637, -0.00802159868, -0.0312120356, -0.00415652618, -0.0162154213, 0.00814745389, 0.00125689385, 0.00433206093, -0.0111679733, 0.000646662782, -0.00267110625, -0.000577111321, 0.00737907644, -0.0244423617, -0.00407041516, 0.0175799541, 0.00507394271, 0.0419958197, -0.00534552475, -0.0209714137, 0.00478911307, 0.00453409133, -0.0231440682, -0.0125060109, 0.00641529215, 0.00532565266, 0.0149701191, 0.00702800695, -0.00794873573, 0.02136885, -0.00692202384, 0.00108467124, -0.0186662804, -0.0254756976, -0.0182158519, 0.0050308872, -0.00555086695, -0.0144666992, 0.00651133945, 0.0122543005, 0.0307086147, 0.00737907644, 4.03646736e-05, 0.00699488726, 0.00560054649, -0.00791561604, 0.00374584156, 0.00268269819, -0.00639210828, -0.0074386918, -0.00298574381, 0.00292944023, -0.000109709108, -0.0278205741, 0.0107241692, 0.0120688304, -0.0103929723, 0.0226141531, -0.0106579298, 0.0124795148, -0.00101429177, 0.00786262471, -0.018070126, 0.010942759, 0.0115455389, 0.0124000274, -0.0275556166, -0.000635898847, -0.011201093, 0.00758441864, 0.0102671171, 0.00810771063, 0.00191432051, 0.00640204409, -0.00662063435, 0.000178018556, -0.0209714137, -0.0180436298, 0.0381274335, 0.0124066519, 0.0113070766, 0.0276616, 0.0111679733, -0.00971070491, -0.00232500513, 0.0163479, 0.00469306577, -0.00789574441, 0.0155397784, 0.00255353143, -0.0151953325, -0.00227698148, -0.0131286616, 0.00837266818, 0.0140957581, -0.0187457688, -0.0178184155, -0.0221902207, -0.0217662882, -0.0118767358, -0.000628032896, 0.0307086147, -0.00121963408, 0.00595823955, -0.00121797819, -0.0213026106, 0.0123006683, 0.00132975727, 0.00561379455, 0.00681604072, -0.0027505937, -0.0129630631, -0.000247156, 0.00624969322, 0.00382864103, 0.00264792261, 0.00341464439, 0.00290294457, 0.0134929791, -0.00442148419, -0.0226141531, 0.0158444792, 0.00465332251, 0.00201533572, -0.0562240556, 0.0110023748, 0.0318744294, 0.0174607225, 0.00142580445, 0.0120092146, 0.0180966221, -0.0316624641, -0.00114759873, 0.0169043113, -0.00554755516, 0.0172090121, -4.52032582e-05, 0.0268667266, 0.000381911901, -0.00873036124, 0.017367987, 0.000745607947, 0.0326958, 0.00356037123, -0.00203520758, -0.0276086088, 0.0297547672, -0.0210641492, 0.0076109143, -0.0215278249, -0.0156060178, -0.00882309675, -0.0114461789, -0.000543991569, 0.00203023967, 0.0213953461, 0.00647159573, -0.0320599, -0.0303111784, -0.0113137, -0.0185602978, -0.0167850796, 0.0249457825, -0.0151555892, -0.00156987528, -0.00800172705, -0.0166128576, -0.0273436513, 0.0196598731, 0.0214748345, -0.0110951103, 0.0175004657, 0.000895888719, 0.0131750293, -0.00644178782, 0.0278470702, -0.0252504833, -0.00719360588, -0.00109460717, 0.00781625696, -0.0145726819, 0.00284498488, -0.00408697501, 0.0141487494, -0.0137115689, -0.0171162765, 0.00618676608, -0.0101478854, 0.00712736649, 0.0215808172, 0.00260652299, 0.00871049, 0.00818057358, 0.00146140822, -0.00574296154, 0.0211303886, -0.0082401894, -0.00208654301, 0.00536870863, 0.0122211808, -0.0149701191, -0.00550118741, -0.0180436298, 0.0115919057, 0.0162286684, 0.000713730231, 0.00790899154, -0.00209482294, 0.0123271644, -0.00339146052, -0.00859788246, 0.000586219248, 0.0133737475, -0.0272376668, -0.00142911647, -0.0158577282, -0.0168248229, 0.0131816529, -0.0128438324, 0.0163214039, -0.00444466807, 0.00863100216, -0.0117575051, 0.0110222464, 0.0196731202, 0.0234355219, 0.0163611472, 0.000123267499, 0.00100269984, -0.00585225644, -0.016162429, 0.0164008904, 0.00878997706, 0.000287727657, 0.0130690457, -0.0136983208, 7.90733611e-05, 0.00333018904, 0.0204282515, 0.0217000488, -0.00470962608, 0.00597811164, -0.0123602841, 0.0144534511, 0.0110487426, -0.0121019501, -0.00399092771, -0.000258954911, -0.00326560554, 0.00933976471, -0.0164008904, 0.00033657928, -0.0149833662, 0.0118502397, 0.0085846344, 0.0347624719, 0.00994254369, -0.0348154604, 0.0120489588, -0.000543577597, -0.0152350767, 0.0288274139, -0.00356037123, -0.0112872049, 0.00496464781, -0.00939938, 0.0158047359, 0.003323565, -0.00604103925, 0.00612715026, -0.0151025979, -0.00604103925, -0.0283239949, 0.00744531583, -0.00397436786, -0.0163611472, 0.0152615728, -0.0055210595, -0.0218457747, -0.0372265801, 0.00471624965, -0.00624638144, 0.0199380778, -0.00825343747, -0.00937950797, 0.0179773904, -0.0324308425, 0.0201367978, 0.0103797242, -0.00428569317, 0.00928677246, -0.00733933272, -0.0107572889, -0.0276880953, 0.00619338965, 0.011459427, 0.0226803925, 0.000181123527, 0.0318214372, -0.0104592117, -0.00122460211, 0.00563697843, -0.0237137284, 0.00744531583, 0.00551443547, 0.00314306258, -0.0248133037, 0.0077367695, -0.00692864787, -0.000322710373, -0.0205342341, 0.00610396639, -0.00372928171, 0.00881647225, 0.015301316, 0.00762416236, 0.0210509021, 0.00736582838, -0.00497458363, 0.00375908962, -0.000319191429, -0.00634242874, -0.00037984192, -0.00426913332, -0.0373590589, -0.00945237186, -0.000144381323, -0.00958485063, -0.00513024628, -0.00867074542, -0.00075016194, 0.00426250929, -0.0103134848, -0.0128570795, -0.0272111725, -0.0136453295, -0.0122543005, -0.00122708606, -0.000489344064, -6.1789e-05, -0.0283769853, 0.0126252417, 0.0130425505, 0.00191597652, -0.000239083063, -0.00781625696, 0.0214350913, 0.00555749098, 0.0101942532, -0.0154337948, 0.0145461857, 0.0112209655, -0.0331197307, -0.00898207165, -0.0176064502, 0.0201765411, 0.00134466111, -0.00489840843, 0.01329426, 0.00482223276, -0.00873036124, 0.0060046073, -0.00472618593, 0.0132611403, 0.0291453637, 0.0115256663, -0.0102008777, 0.023647489, 0.0128173362, 0.0069154, 0.0195803847, 0.0101346383, 0.010856648, 0.00455065118, -0.0112209655, -0.00300561567, -0.00919403788, 0.0185073055, 0.0134466114, -0.0134134917, 0.00495802378, 0.0198453441, 0.018944487, 0.0308940858, 0.0124066519, -0.00120638625, 0.00436518062, -0.0018431131, -0.00296918396, -0.0143739637, 0.00663057, -0.0136983208, -0.00641529215, 0.0110553661, -0.00383526483, -0.0123602841, -0.0338616148, -0.0012072142, -0.00306191924, -0.00349413161, 0.00608078297, 0.0110619906, -0.00733270869, -0.0244821049, -0.019633377, -0.00769040175, -0.00992267206, 0.0132876365, 0.00361998659, -0.00550449919, -0.0182291, -0.0206667129, 0.00469637802, -0.00442810822, 0.0258863829, -0.00565685, -0.0234752651, 0.000927352463, -0.0317419507, -0.0123801557, 0.0179376472, 0.00123371, 0.00816070195, -0.0277675837, 0.00318280631, -0.00178846554, 0.0153940516, 0.0306291282, -0.0143209724, 0.00572308945, -0.00206667115, -0.0142282369, 0.00559392292, -0.00723334961, -0.0215940643, 0.0256081764, 0.000731532054, -0.00237468467, 0.00751817925, 0.0041333423, -0.00393793592, 0.00863100216, -0.0147846481, -0.00600129552, -0.00483216904, -0.018242348, -0.0124397716, -0.000404681719, 0.0161889251, -0.00892245583, 0.00393131236, 0.00478248904, 0.0180966221, 0.00721347751, 0.00535546057, -0.00427244557, 0.0191829484, 0.00484541664, 0.00648484332, 0.00615364639, -0.00863762572, -0.0179111511, -0.0128305843, -0.0142944762, 0.00219583814, 0.00564029, -0.0302316919, -0.0238064639, 0.00340470835, 0.00076547981, -0.0120622059, -0.000966268184, 0.0117177609, -0.0114660515, -0.000628032896, -0.000705450308, 0.00030283854, 0.0195671376, 0.0321923792, -3.38959762e-05, -0.0108897677, -0.00948549155, 0.0449103564, 0.00733270869, 0.036484696, -0.0303906649, -0.0213423558, 0.000755129906, -0.0118303681, -0.00755129894, 0.00450428342, -0.00808783807, -0.00431550108, -0.00549787562, 0.0142282369, -0.0113004521, -0.00977032073, 0.0638018548, 0.0200838055, 0.0169043113, -0.0050507593, 0.0181628615, -0.0295957923, -0.0139235351, 0.0322188735, -0.022070989, -0.00755792297, -0.00510043884, -0.014956871, 0.00780300889, 0.00162949075, 0.00354712317, 0.021011157, -0.00309338304, 0.00679616909, 0.00838591624, 0.00188616873, 0.00812758226, 0.00469306577, -0.00594830373, -0.0186530333, 0.00135211309, -0.0149038797, -0.0189709831, -0.00428238139, -0.0333846882, 0.00896882359, 0.00325732562, -0.010525451, 0.00573633751, 0.00384188886, -0.0369616188, -0.0061967019, -0.00341795641, 0.0117641287, 0.00299733575, -0.00953848287, -0.014943623, 0.0136850728, 0.0168115757, 0.00604103925, 0.00853164308, -0.00577939302, -0.0217397921, 0.0173414908, -0.00622319756, -0.0179111511, -0.00635236455, 0.0241244119, 0.023462018, -0.033888109, -0.00408366276, 0.0334111862, -0.00515674241, 0.000517081819, -0.0105519462, 0.011658146, -0.00399423949, -0.0167453364, 0.00868399348, -0.00420289394, -0.00263467478, 0.00594830373, -0.0107506653, 0.0065278993, 0.00757117057, 0.000389777852, 0.0172620043, -0.00681604072, 0.0153410593, 0.00273734587, 0.00649477961, 0.0130425505, 0.0175137147, 0.0165466182, -0.0114792986, -0.00196068804, -0.00782288052, 0.000358935096, 0.00617020624, -0.016334651, -0.00688890414, -0.00326560554, -0.00916091818, 0.000806465454, 0.00192260044, -0.0124927629, -0.00878997706, -0.000999387936, -0.0173547398, 0.00266448245, 0.00550781144, -0.0108102802, -0.0146124261, -0.00397767965, 0.00078659365, -0.00572971348, 0.0176329445, -0.00114594272, 0.00154089555, -0.00468313, -0.0191299561, 0.00776326517, -0.00783612859, -0.00630268501, 0.00948549155, -0.00907480624, 0.0241906513, 0.00365973031, 0.0125788739, 0.0311590433, 0.0104658352, 0.0244953539, 0.01703679, 0.00597811164, -0.00393462414, 0.0104790833, 0.00347094797, 0.014599178, -0.0214085951, -0.00725984527, -0.0163081568, -0.000226870165, 0.0424992405, -0.0143739637, 0.0238064639, 0.00829980522, 0.0153808035, -0.0149171269, 0.0171162765, 0.00177024968, -0.00472287368, 0.0045473394, -0.0132412687, -0.00459701894, -0.00733270869, -0.00916754175, 0.00140013662, 0.0211436376, 0.0290923715, 0.0147184087, -0.0294898096, -0.00503751123, 0.02067996, -0.00880322512, 0.00926027726, 0.0123735322, -0.010770537, 0.013466483, -0.00582244899, 0.0132611403, -0.0139367832, 0.00723334961, 0.00377896149, -0.00015773272, 0.0265752729, -0.00105900341, -0.018931238, -0.00799510349, 0.0148111442, 0.0160961896, -0.00484872889, -0.0208786782, 0.0135194743, 0.0139367832, 0.00495802378, 0.0243893713, 0.0243893713, -0.00150280783, -0.00767715368, 0.021382099, -0.0240979176, 0.010081646, -0.0110222464, 0.00472949771, -0.00355705922, -0.00969083328, -0.00921390951, 0.00139516871, -0.0151290931, 0.0324308425, -0.00733270869, -0.00996903889, -0.00994254369, -0.0155397784, 0.0181496125, 0.00406047935, 0.00841903593, 0.00302548753, -0.0161889251, -0.00578601705, -0.0315829776, -0.0185867939, 0.0159637108, 0.0229850933, 0.00963784195, 0.00146472012, 0.0131684057, -0.0105055785, -0.0127312252, 0.0157252494, -0.0260586049, 0.00255187531, -0.0133008845, 0.0131949009, -0.0115124192, 0.0022422059, -0.0104194675] |
31 Oct, 2023 | Rearrange Array to maximize sum of MEX of all Subarrays starting from first index
31 Oct, 2023
Given an array arr[] of N elements ranging from 0 to N-1(both included), the task is to rearrange the array such that the sum of all the MEX from every subarray starting from index 0 is maximum. Duplicates can be present in the array.
MEX of an array is the first non-negative element that is missing from the array.
Examples:
Input: N = 3, arr[] = {2, 1, 0}Output: 6Explanation: Initially for subarray {2} the missing element is 0.For {2, 1} the missing element is 0, and for {2, 1, 0} the missing element is 3. In this way the answer is 0 + 0 + 3 = 3.But if the array is rearranged like {0, 1, 2}, the answer will be 1 + 2 + 3 = 6.
Input: N = 5, arr[] = {0, 0, 0, 0, 0}Output: 5
Approach:
The idea is to put the smaller elements in the beginning of new array to get highest possible missing whole numbers for each subarray, but if we have duplicates then the duplicates would be inserted in the end of the new array.
Follow the steps to solve the problems:
Sort the array.
Initialize 2 variables cur to store the current smallest missing whole number and count to store the number of times the smallest whole number would be smallest for the next subarrays.
If the current element is greater than cur, then for all the next subarrays the smallest whole number would be cur, as the array is sorted. So add the number of remaining subarrays to count and break the loop.
Else if we find the duplicates then increase the count variable to add the value in the end.
Else, for each index update cur and add the values into an ans variable that will contain the final answer.
In the end, if cur is not 0, means there are subarrays that have cur as the smallest whole number and that are not added to ans, so add cur * count to the ans and return it.
Illustration:
Consider N = 6, arr[] = {4, 2, 0, 4, 1, 0}
Initialize, ans = 0, cur = 0, count = 0
Sort the array, so arr[] = {0, 0, 1, 2, 4, 4}
For index 0: => arr[i] = cur, => thus cur would be cur + 1 = 1 => ans would be ans + cur = 0 + 1 = 1
For index 1: => arr[i] = cur – 1 => Means it is a duplicate => Increase the count variable, count = 0 + 1 = 1
For index 2: => arr[i] = cur => cur would be cur + 1 = 2 => ans would be ans + cur = 1 + 2 = 3
For index 3: => arr[i] = cur, => Thus cur would be cur + 1 = 3 => ans would be ans + cur = 3 + 3 = 6
For index 4: => arr[i] > cur => cur would be the same for all the remaining subarrays. => Thus, count = count + 6 – 4 = 1 + 2(remaining subarrays) = 3 and break the loop.
In the end add cur * count to ans, thus ans = 6 + 3 * 3 = 15
Below is the implementation of this approach:
C++
// C++ code to implement above approach
#include <bits/stdc++.h>
using namespace std;
// Function to get maximum sum
int maxSum(vector<int> arr)
{
// Final sum
int ans = 0;
// Sorting the array to get minimum at first
sort(arr.begin(), arr.end());
// Here temp is for checking the number
// which is not present Cou is for
// how many elements will be in the end
int temp = 0, cou = 0;
// Traversing the array
for (int i = 0; i < arr.size(); i++) {
if (arr[i] == temp) {
temp++;
ans += temp;
}
// If found duplicates
else if (temp - 1 == arr[i]) {
cou++;
}
// If found any missing element
else {
if (temp < arr[i]) {
cou += arr.size() - i;
break;
}
}
}
// Adding the missing element for
// all the element which are duplicates or
// the elements which left by break statement.
if (cou != 0)
ans = ans + (cou * temp);
return ans;
}
// Driver Code
int main()
{
int N = 3;
vector<int> arr = { 2, 1, 0 };
// Function call
cout << maxSum(arr) << endl;
return 0;
}
Java
// JAVA code to implement the approach
import java.util.*;
class GFG
{
// Function to get maximum sum
static int maxSum(int[] arr)
{
// Final sum
int ans = 0;
// Sorting the array to get minimum at first
Arrays.sort(arr);
// Here temp is for checking the number
// which is not present Cou is for
// how many elements will be in the end
int temp = 0, cou = 0;
// Traversing the array
for (int i = 0; i < arr.length; i++) {
if (arr[i] == temp) {
temp++;
ans += temp;
}
// If found duplicates
else if (temp - 1 == arr[i]) {
cou++;
}
// If found any missing element
else {
if (temp < arr[i]) {
cou += arr.length - i;
break;
}
}
}
// Adding the missing element for
// all the element which are duplicates or
// the elements which left by break statement.
if (cou != 0)
ans = ans + (cou * temp);
return ans;
}
// Driver Code
public static void main(String[] args)
{
int N = 3;
int[] arr = { 2, 1, 0 };
// Function call
System.out.println(maxSum(arr));
}
}
// This code is contributed by sanjoy_62.
Python3
# python3 implementation of above approach
# Function to get maximum sum
def maxSum(arr) :
# Final sum
ans = 0
# Sorting the array to get minimum at first
arr.sort()
# Here temp is for checking the number
# which is not present Cou is for
# how many elements will be in the end
temp = 0
cou = 0
# Traversing the array
for i in range(0, len(arr)) :
if (arr[i] == temp) :
temp += 1
ans += temp
# If found duplicates
elif (temp - 1 == arr[i]) :
cou += 1
# If found any missing element
else :
if (temp < arr[i]) :
cou += len(arr) - i
break
# Adding the missing element for
# all the element which are duplicates or
# the elements which left by break statement.
if (cou != 0) :
ans = ans + (cou * temp)
return ans
# Driver Code
if __name__ == "__main__":
N = 3
arr = [ 2, 1, 0 ]
# Function call
print(maxSum(arr))
C#
// C# code to implement the approach
using System;
class GFG
{
// Function to get maximum sum
static int maxSum(int[] arr)
{
// Final sum
int ans = 0;
// Sorting the array to get minimum at first
Array.Sort(arr);
// Here temp is for checking the number
// which is not present Cou is for
// how many elements will be in the end
int temp = 0, cou = 0;
// Traversing the array
for (int i = 0; i < arr.Length; i++) {
if (arr[i] == temp) {
temp++;
ans += temp;
}
// If found duplicates
else if (temp - 1 == arr[i]) {
cou++;
}
// If found any missing element
else {
if (temp < arr[i]) {
cou += arr.Length - i;
break;
}
}
}
// Adding the missing element for
// all the element which are duplicates or
// the elements which left by break statement.
if (cou != 0)
ans = ans + (cou * temp);
return ans;
}
// Driver Code
public static void Main(string[] args)
{
int[] arr = { 2, 1, 0 };
// Function call
Console.WriteLine(maxSum(arr));
}
}
// This code is contributed by AnkThon
Javascript
<script>
// Javascript code to implement above approach
// Function to get maximum sum
function maxSum(arr)
{
// Final sum
let ans = 0;
// Sorting the array to get minimum at first
arr.sort(function(a, b) {
return a - b;
});
// Here temp is for checking the number
// which is not present Cou is for
// how many elements will be in the end
let temp = 0, cou = 0;
// Traversing the array
for (let i = 0; i < arr.length; i++) {
if (arr[i] == temp) {
temp++;
ans += temp;
}
// If found duplicates
else if (temp - 1 == arr[i]) {
cou++;
}
// If found any missing element
else {
if (temp < arr[i]) {
cou += arr.length - i;
break;
}
}
}
// Adding the missing element for
// all the element which are duplicates or
// the elements which left by break statement.
if (cou != 0)
ans = ans + (cou * temp);
return ans;
}
// Driver Code
let N = 3;
let arr = [ 2, 1, 0 ];
// Function call
document.write(maxSum(arr));
// This code is contributed by satwik4409.
</script>
Output
6
Time Complexity: O(N * log N)Auxiliary Space: O(1) | NLP/Natural Language Processing (NLP) Tutorial/AI ML DS - Projects/30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated]/Does Artificial Intelligence Require Coding?/Artificial Intelligence – Boon or Bane/Artificial Intelligence Examples/Agents in Artificial Intelligence/What are Diffusion Models?/ML | Common Loss Functions/Loss Functions in Deep Learning/Kaiming Initialization in Deep Learning/Swift - Initialization/Swift – If Statement/6 Best iOS Project Ideas For Beginners/Swift Programming Language/Introduction to Visual Programming Language/What is D Programming Language: Usage and Applications/Best Programming Languages for Data Science in 2024/5 Best Languages for Competitive Programming/MEX (Minimum Excluded) in Competitive Programming/Rearrange Array to maximize sum of MEX of all Subarrays starting from first index | https://www.geeksforgeeks.org/rearrange-array-to-maximize-sum-of-mex-of-all-subarrays-starting-from-first-index/ | NLP | Rearrange Array to maximize sum of MEX of all Subarrays starting from first index | Artificial Intelligence – Boon or Bane, AI ML DS - Projects, Rearrange Array to maximize sum of MEX of all Subarrays starting from first index, MEX (Minimum Excluded) in Competitive Programming, Swift - Initialization, 6 Best iOS Project Ideas For Beginners, ML | Common Loss Functions, Artificial Intelligence Examples, What is D Programming Language: Usage and Applications, 30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated], Swift – If Statement, Natural Language Processing (NLP) Tutorial, Loss Functions in Deep Learning, Does Artificial Intelligence Require Coding?, Best Programming Languages for Data Science in 2024, NLP, 5 Best Languages for Competitive Programming, Swift Programming Language, Agents in Artificial Intelligence, What are Diffusion Models?, Kaiming Initialization in Deep Learning, Introduction to Visual Programming Language | GeeksforGeeks | [0.00434500165, 0.0240023155, -0.00276758499, 0.0231638681, 0.015020987, 0.000260238245, -0.015262574, 0.0107505927, -0.0297009107, 0.0175079051, -0.0288624652, 0.0127969719, 0.0394780524, -0.00668625766, 0.00222401554, 0.0102674207, -0.00439829286, 0.0205064192, -0.0281377062, -0.0467256457, -0.0194974411, -0.0159162786, -0.0131025072, 0.0524100289, -0.0123990644, 0.0220269915, 0.0108571751, 0.0139764817, -0.0160583872, 0.0128467102, 0.0202932544, -0.0108571751, 0.00503778597, -0.0171810538, -0.0149499327, 0.0167120919, 0.00611426635, 0.0263613351, -0.0131238233, 0.0212453883, -0.0208190605, -0.00670757424, -0.0079794554, -0.00486725476, -0.0132517228, 0.00256330241, -0.0119158924, -0.0166126154, -0.00985530205, -0.0241586361, -0.0112266606, -0.0287061445, -0.0117311496, 0.0202079881, -0.00404301891, 0.0250112936, -0.0248833951, 0.00841289, 0.00221691024, -0.0084768394, 0.0518700145, -0.0376022048, -0.0244854875, -0.013535942, 0.0174510609, -0.019952191, -0.0507615581, 0.0248265509, 0.0476919897, 0.0204637852, -0.0343905278, 0.018204242, 0.00560622476, -0.0197958704, -0.00277646678, -0.027086094, -0.00517279049, 0.0124914357, -0.000271562603, 0.0408707261, -0.0431160592, 0.00129230937, 0.00886053499, -0.0375169404, 0.0275550559, -0.00223112106, -0.0130740851, -0.0409275703, -0.00584070571, 0.0208190605, -0.000155876492, 0.0263471249, -0.0215153974, -0.00304825138, 0.0118519431, 0.0669052079, 0.0678147152, -0.00692784414, -0.061789263, 0.0299851298, -0.0142607009, -0.0214585532, 0.0259492174, -0.00371971936, 0.00192203268, 0.0054143765, 0.0128751323, 0.00316371559, 0.025124982, 0.0426613092, 0.0122924829, 0.0239738934, -0.0223964769, 0.0256934203, 0.0408707261, -0.036692705, -0.00255264412, -0.0193411205, 0.00266455556, 0.0268160868, 0.0447076894, 0.0254944675, 0.00574478135, 0.0203785207, -0.0439402945, 0.0581796803, 0.0139977979, 0.0272992589, 0.0188863687, 0.00620308518, -0.0216859281, -0.00552806444, 0.0132375117, -0.0198669247, -0.0156178474, 0.0190142673, -0.00730443466, 0.0295019578, 0.000908169313, 0.0198669247, 0.0100045176, -0.0424339324, 0.00643401314, -0.0190711115, -0.0107221715, -0.000340174913, 0.0268729292, 0.0680420846, -0.0439971387, 0.00108269765, -0.041609697, -0.012804077, -0.0114327194, 0.00154455402, 0.012804077, -0.018218454, 0.0034692511, -0.00365221733, 0.0146230804, -0.0513868406, 0.0322020426, -0.0226806961, 0.00439474033, -0.0120224738, 0.00422776118, 0.00608939724, -0.0122711658, -0.024357589, -0.0139125325, 0.0337936692, -0.00941476226, 0.0268587191, 0.008555, 0.0251534041, -0.0125838071, -0.0142038567, 0.0186163615, 0.0195116512, 0.00820683, -0.0124559086, 0.0173373744, -0.018204242, -0.0110206017, 0.00489567639, 0.000449421699, -0.00336977444, 0.00240698177, -0.0457877219, -0.00675376, -0.00630966714, -0.0060609756, -0.0260202717, 0.00582294166, 0.010103994, 0.0465266891, -0.0134506756, -0.0559627712, 0.0218706708, -0.0208901148, 0.0314346477, -0.0223112106, -0.0351579227, 0.0260913279, 0.0146230804, 0.0341915749, -0.0366358608, -0.03498739, -0.0284645576, 0.0053184526, 0.0133227771, -0.0401601791, 0.0534616411, -0.0188863687, -0.031775713, 0.0357547812, 0.0260202717, -0.030269349, 0.0467824899, -0.0210606456, -0.015759958, -0.0120864231, 0.0152341519, 0.0462424718, -0.0105019016, -0.0230501816, -0.0430023707, -0.0197248161, 0.0187868923, -0.0025988298, -0.0277540088, 0.00246204925, 0.00670046872, 0.00557780266, 0.0121787945, 0.0261481702, -0.0247839186, -0.0331683867, 0.0538311265, 0.00441605644, 0.0244428553, 0.0119016813, 0.0195542835, -0.0118590482, -0.000879303319, 0.0267876647, -0.00584070571, -0.0239312612, 0.024130214, 0.0615050457, 0.0220696237, -0.00499870582, -0.0075815483, -0.0158878565, 0.0123848533, -0.0322873071, 0.0138059501, -0.0259207953, -0.00326319225, 0.00802919362, 0.0104663735, 0.0070202155, 0.0286208782, -0.00370195578, 0.0158878565, 0.0362379551, 0.0563890971, 0.0360390022, 0.00348523865, -0.00369129749, -0.0308377892, -0.00610005576, -0.0183747746, 0.0174368508, -0.0302977711, 0.0121290563, -0.0159589108, -0.0371190347, -0.0146515025, 0.0596292, 0.00384406536, 0.0115108797, 0.0139338486, 0.0427465737, 0.0139551647, 0.0177494921, -0.0150636202, 0.0203785207, -0.00384406536, -0.0785582, -0.00232171593, -0.022169102, -0.0349021219, -0.00150369748, -0.0019469019, 0.0276829544, -0.0138983214, -0.0292177387, -0.0144667597, -0.0392222553, -0.000834005885, 0.00393998949, -0.0269724075, 0.017735282, -0.0318325572, -0.0318894, -0.0187584702, -0.0263187028, -0.0145946583, -0.0430023707, -0.00535398, 0.0134222535, -0.0207337942, -0.0263897572, -0.0126548624, -0.0573838651, 0.0131238233, 0.0552806444, -0.0109211244, -0.0130598741, -0.036692705, -0.00695626624, -0.0428886861, 0.0155325821, 0.0251391921, -0.000770500628, -0.019213222, 0.00216361904, 0.0353852957, 0.0181616098, -0.0235333536, -0.0307241, 0.0196537618, -0.0193126984, -0.00643756613, 0.0143175442, -0.029786177, 0.00110046135, 0.00237856, -0.0289477296, 0.0124701196, -0.0215864517, -0.00624571787, 0.0166410375, 0.0066507305, -0.0103668971, -0.00924423151, -0.0357547812, -0.0016511362, 0.0300135519, -0.00608584471, 0.0012994149, -0.0163852405, 0.0372327231, -0.0049525206, -0.00261836988, 0.0116956225, -0.0153478393, -0.0120793181, 0.0187442601, -0.0276119, 0.0158452224, 0.0252813026, -0.0200516675, 0.010089783, -0.00616755756, 0.00497383671, -0.0248833951, -0.048544649, 0.00316904462, -0.00818551425, 0.000131229361, 0.00174528384, 0.00710192835, -0.000145773389, -0.0214017089, 0.0019469019, 0.0350442342, 0.00558490818, 2.68259664e-05, 0.00959950499, -0.0476351455, 0.0290472079, 0.0236754641, 0.0134293595, -0.00094058807, 0.0206201058, -0.0417802297, 0.00370906107, -0.0269013513, 0.0261197481, -0.0357832052, -0.00450487528, -0.0177068599, 0.0121503733, -0.00835604593, 0.0131877735, 0.0115819341, 0.0142464899, -0.000745187339, -0.00249402388, 0.00335556339, 0.000507153745, 0.0432013273, 0.00818551425, -0.00812156498, 0.0288482532, -0.00170087453, -0.0254660454, 0.0221975241, 0.0151204644, 0.00807182677, 0.0302977711, -0.0789561048, -0.00174261932, -0.0105516398, 6.62808161e-05, -0.0420360267, -0.00810024887, 0.00206769514, -0.0126548624, 0.00834183488, 0.00510884076, -0.0100258337, 0.0332820751, -0.0189005807, 0.0101324162, -0.00617821608, 0.0170389432, 0.0356410928, 0.00440539839, -0.0179626569, 0.0238744169, 0.0157173239, 0.0156889018, -0.00441250391, 0.0030926608, 0.00212453888, 0.00307312072, -0.0404159762, -0.0406717733, 0.042604465, 0.0227943845, -0.0303261932, -0.0195827056, -0.0126761785, 0.00746786082, -0.0164847169, 0.0140972743, -0.0214159209, 0.0139764817, -0.0651430488, -0.0371190347, 8.55988474e-05, -0.0161578637, 0.0532342643, -0.0196537618, 0.0250681378, -0.00619953219, 0.0471519716, 0.0168257803, 0.0272139926, 0.00883211289, 0.0141328024, -0.0353568755, 0.03422, 0.0425192, -0.0162004977, 0.00878237467, -0.0280098077, -0.00466474844, 0.00267876638, -0.034703169, 0.00770234177, -0.000900619722, 0.0357832052, 0.00157386414, -0.0120437909, -0.0423202477, 0.0102532096, -0.0391654111, 0.0289050974, -0.0124985417, -0.0201369338, -0.0226096418, -0.0188721586, -0.00738970051, 0.0235617757, -0.0111840274, -0.00959950499, 0.0052935835, 0.00641624955, -0.00878237467, -0.0266739763, 0.0182895083, -0.0200374573, 0.0153194172, -0.0431729034, -0.0115250908, 0.00886053499, 0.028805621, 0.0161152314, -0.0600839481, -0.0102887368, 0.0165273491, 0.0213164445, -0.066734679, 0.00750338798, 0.0238317847, 0.016015755, -0.0289335195, -0.00644822419, -0.00304825138, 0.000589310832, 0.0360390022, -0.00878948066, 0.00923712552, -0.0141683295, 0.0131877735, -0.00409986265, -0.00258817151, 0.0255513098, 0.0185453054, 0.00588689139, 0.0201369338, -0.0207622163, -0.00585846929, 0.0168115683, -0.0289335195, 0.037403252, 0.00692073861, -0.00577675644, 0.0236754641, -0.00372327212, 0.0135856802, 0.00409986265, -0.0362663753, 0.0114682466, 0.0142535949, 0.000755845569, 0.00610005576, 0.0062528234, 0.0313493833, -0.0155752152, 0.011340348, -0.0398191176, 0.00616400503, 0.0238033626, -0.0049773897, 0.00279600685, 0.0129746087, 0.00868289825, 0.0207337942, -0.0145804472, 0.00613558292, -0.0308662094, 0.0280240178, -0.0254660454, -0.0119656306, -0.0327989, -0.0345042162, -0.000198620401, -0.0192416422, 0.000461412186, 0.0218280386, 0.0133440942, 0.00649085687, -0.0175363272, 0.0311504304, -0.024613386, 0.000463188568, -0.000644378306, -0.00675020693, 0.0270434618, -7.43855053e-05, 0.0242296904, 0.0446508452, -0.0315483361, -0.0202790424, -0.0154046835, 0.00288482546, -0.0128253931, -0.0268160868, 0.0127969719, -0.015745746, -0.00981267, -0.0387106612, -0.0406149291, -0.0229507051, -0.0209043249, -0.00915186, 0.0148788774, 0.0516142137, -0.00481041055, 0.0169821, -0.0398475379, -0.0038049852, 0.00214407896, -0.0193837527, -0.0121006342, -0.00663296692, 0.00729732914, 0.00290791807, -0.00489922939, -0.0030038422, 0.00176215929, 0.00934370793, -0.00478198892, 0.0377727374, -0.010587167, -0.0302977711, -0.0388527699, -0.0225243755, 0.0249260273, -0.0084484173, 0.0205064192, 0.0068425783, 0.0180195011, 0.00523673976, -0.0300703961, -0.0362095311, 0.00239099446, -0.0224533211, -0.0131238233, 0.0193411205, -0.00801498257, 0.0129177645, -0.0485162251, -0.00359892612, -0.0247981288, -0.0318609774, -0.00330937793, -0.0298430212, 0.0065015154, -0.00625637639, 0.00675020693, -0.00490988744, -0.0143104391, -0.0103313699, -0.024130214, 0.038682241, -0.034447372, 0.00986240804, -0.0394212082, 0.0963503271, -0.0128538152, -0.00320812478, -0.0418370739, -0.0122143226, 0.0254660454, 0.000615512312, -0.0126193343, -0.00707350671, 0.0304114595, 0.0208901148, 0.00511594629, -0.000780714734, 0.00320634828, -0.00646243524, -0.0261623822, 0.017493695, -0.0056346464, -0.0208901148, 0.024357589, -0.0121006342, 0.00532555813, -0.0001899606, -0.0112835038, 0.0260771159, -0.00605742261, -0.0212880224, -0.010338475, -0.0199948233, -0.00617111055, 0.0327136368, 0.00369485025, -0.0279529635, -0.0294166915, 0.0478909425, 0.0170815773, 0.00178614038, 0.0138485832, -0.0107932258, 0.00626348145, 0.0027213993, -0.00377301057, -0.00344082923, 0.00500225881, 0.00613558292, -0.0192558542, 0.0076383925, -0.0204211529, 0.00193269085, 0.0235333536, 0.0242723245, 0.00798656, -0.00866868719, 0.0220412035, 0.000636384648, -0.0124630136, -0.00524739781, 0.00167422905, -0.0263187028, -0.0319462419, 0.0118590482, 0.00999030657, 0.0344757959, -0.000496939581, 0.0303261932, 0.0100329397, -0.00700245192, 0.0281803384, -0.00166090624, -0.026602922, -0.0038653817, 0.012065107, -0.0298998654, -0.0296440683, -0.0191563778, 0.0233912449, -0.00502357539, -0.00862605404, 0.00853368267, 0.0161436535, -0.0467540659, 0.022424899, 0.00918028131, -0.0170389432, -5.51229896e-05, 0.000638161029, -0.00358649157, 0.00164580706, -0.00667559961, -0.00332181249, 0.0142180678, 0.00214763172, 0.0156462695, 0.0304683037, -0.00382274878, -0.0123351151, 0.00587978587, 0.00364511181, -0.0102034714, 0.0124488035, 0.027825065, 0.0015463304, -0.0137633169, 0.0267734528, 0.022297, -0.00881790183, 0.00858342089, -0.0243291669, 0.0162857622, 0.0256365761, 0.00948581751, 0.00542148203, -0.0131380344, 0.00935791899, -0.0324862599, 0.0516994819, 0.0089458013, 0.00812867, 0.0165984035, -0.0131664565, 0.00725114346, 0.0025970533, -0.000105805055, -0.0461572073, 0.0268729292, 0.00235369056, 0.0052651614, 0.0211459119, -0.00499515329, -0.0197958704, 0.0067466544, -0.0298430212, -0.0422065593, 0.0304114595, -0.0144099155, -0.00144418911, 0.0143388612, -0.0485730693, 0.0230359696, 0.019696394, 0.0181758218, 0.0141256964, 0.0173515845, -0.00503068091, -0.00407499354, 0.045304548, 0.0101537323, -0.00555648608, -0.00687455293, 0.00551030086, 0.00600057887, -0.0122498497, -0.0241870582, -0.0149499327, -0.017479483, -0.0260629058, -0.0486014932, 0.0168684125, -0.00716232508, -0.00536819082, -0.00785866193, -0.00935081299, -0.0467824899, -0.00523673976, 0.00406433502, -0.0368916579, 0.00830630772, -0.00942897331, -0.00765970862, -0.00556003908, 0.0144525487, -0.000531578786, 0.0104095303, 0.0143601773, 0.010338475, -0.0102176815, -0.014516498, 0.016513139, 0.0143104391, 0.0107150655, 0.00328095583, -0.021430131, 0.0330547, -0.0202790424, -0.0201085117, 0.0435139686, 0.0133583043, 0.00997609552, -0.00793682225, -0.0260344837, 0.031747289, 0.0342768431, 0.00178169936, -0.00680705113, 0.0096208211, 0.0101537323, 0.0191705879, 0.00484238565, 0.0112906098, -0.0538879707, -0.0189005807, -0.0089386953, 0.00829209667, -0.02511077, 0.0289335195, 0.0133227771, 0.00112799508, 0.0125909131, 0.0111058671, 0.0145662362, -0.0102461036, -0.0240165256, 0.02658871, -0.0226806961, -0.0260913279, 0.0148220342, 0.00300917123, 0.00440539839, -0.00403591339, -0.0155752152, -0.00639493298, 0.0345610604, 0.00732575124, -0.0436276533, -0.0395064764, 0.00561333029, -0.0372043, 0.0215011854, 0.00341951288, 0.00209434051, -0.0213306546, 0.00189005805, 0.00765260309, -0.0286066681, 0.0372895636, 0.0182468761, -0.0254234113, 0.00808603782, 0.00930818077, -0.0204353631, -0.0127188116, -0.0101892604, -0.0101821544, -0.0246986523, -0.0531205758, 0.0259918496, -0.045304548, 0.0349021219, -0.0048246216, -0.0267876647, -0.0396770053, 0.0306388345, 0.00753891561, -0.00444092555, 0.0072404854, 0.0223538447, 0.0264039673, 0.0115250908, -0.0091873873, 0.0109637575, -0.00287416717, 0.0163994506, -0.00305890967, 0.0125980182, 0.00691363309, 0.00932239089, 0.03544214, 0.0130598741, 0.0105303228, -0.00714811403, -0.0407570414, -0.0253239349, -0.0082281474, -0.015020987, 0.00289726, 0.00332003599, 0.00935081299, 0.000559112581, 0.0223538447, 0.0242581125, 0.0211317018, -0.00958529394, -0.00447645318, -0.0343621075, 0.0187726822, 0.00254020956, -0.00523318676, -0.0217569843, 0.0238744169, -0.00216006627, -0.00442316197, -0.0212880224, 0.00584425824, -0.0252670906, -0.0067466544, -0.0514152609, -0.020179566, 0.0127685498, 0.0137064736, 0.0292177387, -0.00429881597, -0.00955687184, -0.0310083199, -0.017479483, -0.0120366849, 0.0281234942, 0.0183747746, 0.00739680603, -0.00945029, 0.00648375181, -0.011574829, 0.0109566525, -0.0101679433, -0.0129177645, -0.0204069428, 0.00994767342, 0.00224177935, 0.00179679855, -0.022922283, -0.0240307376, -0.0252102464, -0.0168826226, 0.00212809164, 0.000737193681, -0.0400749147, 0.028578246, -0.0132233007, 0.0491699316, -0.00728311809, 0.0227233283, -0.00229507033, -0.0190569013, 0.00546766771, 0.0225527976, -0.036692705, 0.00452619139, 0.0020428258, -0.0162004977, 0.0186874159, 0.0398759618, -0.0176358037, 0.00488857087, 0.00475356681, 0.0205774736, -0.00888895709, 0.0152199408, -0.0255655218, -0.0130172418, 0.0124914357, 0.0292177387, -0.0163141843, -0.0165415611, 0.0122356387, 0.00950002857, -0.0136354184, -0.0155752152, -0.00152679032, -0.00289370725, -0.0123564322, 0.0242012683, -0.0262050144, 0.0325431041, -0.0195969176, 0.0215580296, -0.00866868719, 0.000471626321, -0.0338220894, -0.0198669247, -0.0104663735, 0.0374885201, 0.0146088693, 0.00535398, -0.0208474826, -0.0129603976, -0.00389380381, 0.0327989, -0.00647664629, 0.0110561289, -0.0571849123, -0.0289903637, -0.0126264403, 0.0112692928, 0.00352076604, 0.00157830503, 0.00664362498, 0.0244854875, -0.0217427723, -0.0162004977, -4.56027556e-05, 0.0202790424, 0.0126122292, 0.019469019, 0.000806028, 0.0135572581, -0.0136709455, 0.00309976609, -0.00265389727, 0.00662941393, 0.0199237689, -0.00398617517, -0.00111822516, -0.017976867, -0.0195258632, 0.00772365788, -0.0178631805, -0.0260344837, 0.0073612784, -0.00236434885, 0.0316620246, 0.0079084, -0.000297986116, -0.017493695, -0.00785866193, 0.00733285677, -0.00258106599, 0.0171668418, 0.00149481557, -0.0162715521, -0.00526160887, -0.0229507051, -0.0131167183, 0.00106226944, 0.0195400734, 0.00648375181, 0.0192842763, 0.00768102519, 0.0201369338, 0.00575188687, -0.0179484449, -0.0206058957, 0.00416736491, 0.0141754346, 0.0173231624, 0.0167689361, 0.00787997898, 0.00242296909, -0.01624313, -0.00465764292, -0.0484025367, 0.0576396622, 0.0067466544, -0.00374814123, -0.00414960086, 0.00756733725, 0.00499160076, -0.00413894281, -0.00287239067, 0.00446579512, -0.019682182, -0.0225812197, -0.0190995336, 0.0307241, -0.0312072728, 0.00718719419, 0.060538698, 0.00280311238, 0.000435654831, -0.0331968069, 0.00407854607, -0.00301450049, -0.0176642258, 0.00829209667, -0.0094360793, 0.00621729624, -0.00945739541, 0.0100116227, 0.0106511163, 0.00184387236, 0.00354385865, -0.0254660454, -0.00773786893, -0.019454807, -0.00672889082, -0.0111627113, 0.00194867817, 0.00823525246, 0.014289123, -0.00679994561, 0.0327136368, -0.00580162555, -0.00436276523, 0.00311753, -0.0296156462, -0.00352964783, -0.00577320345, -0.0229791254, 0.00791550614, 0.0017914694, -0.0204069428, 0.017223686, 0.0102461036, -0.00561333029, -0.0230501816, 0.00332358875, -0.00449776975, 0.0284929797, -0.0166694596, 0.0218280386, -0.0110063907, -0.0168684125, 0.00524029229, -0.00716587761, -0.00500225881, 0.000465853111, -0.0265745, 0.00118661532, -0.0146799246, 0.00278001954, -0.00552451145, -0.00668981066, 0.0107505927, -0.0227233283, 0.00979135279, -0.00701311, 0.00176748843, -0.0068425783, 0.00395064754, -0.0142393848, -0.00783024, -0.0144880759, -0.0372327231, -0.0360674225, 0.00364866457, -0.000709215819, -0.0194974411, 0.0105800619, 0.0221975241, -0.00970608741, -0.013550153, -0.00997609552, -0.0375169404, -0.0367211252, -0.034447372, -0.0120082628, -0.000848660886, 0.0175221171, -0.0187584702, 0.0147367679, -0.00400038576, -0.0089102732, -0.0110134957, -0.00334668159, 0.00461856276, -0.0141754346, -0.00214052619, -0.0407001972, -0.0280950721, -0.00387604, 0.0309514757, -0.033026278, 0.025124982, 0.00345681654, 0.00644822419, 0.00781603, -0.0349021219, -0.0148788774, 0.00147261098, -0.0245991759, -0.0154899489, -0.00122214272, 0.00738259498, -0.0105019016, -0.018474251, 0.0133725153, 0.00255264412, 0.0277113765, -0.000475179055, 0.00227730675, 0.00707350671, 0.00948581751, -0.0239596833, 0.00214585522, 0.00130918494, 0.0363232195, 0.00736838393, -0.00201440393, 0.0351863429, -0.0146799246, -0.00112533057, -0.0185879394, -0.00240165275, 0.00102851843, 0.00620308518, 0.016498927, -0.0438550301, 0.0246702302, 0.034447372, -0.0102532096, -0.0439687185, -0.01085007, -0.0190142673, -0.00702732103, -0.00112355419, 0.00915186, 0.0216859281, -0.00283508701, -0.00824946351, -0.0123777483, 0.0104237413, -0.0227659624, -0.00241053454, 0.0079794554, 0.0242865346, -0.00639138045, -0.00633453671, -0.0180479214, 0.00857631583, -0.0199237689, 0.0368632376, -0.0278676972, 0.00747496635, 0.00810024887, 0.0158878565, 0.00621374324, 0.0080363, 0.00251356396, 0.0427181534, 0.0153336283, 0.00234658527, -0.0121859005, -0.00718719419, -0.0133227771, -0.0227801725, 0.00691718608, -0.00118039805, -0.0234196652, 0.00488146581, 0.00931528583, 0.00305358064, -0.000401903788, 0.00467895949, 0.00935081299, 0.0142322788, 0.0207906384, -0.0308093671, 0.0448213741, -0.00564885745, 0.0232917666, -0.0179484449, -0.00159429235, -0.017493695, -0.00718364166, 0.0246560201, 0.000647931069, -0.00623861235, 0.0127472337, -0.0128822373, -0.00184209598, 0.0109921796, 0.0136354184, 0.00755312666, 0.00252244575, -0.00634874729, 0.00128342758, -0.0187726822, -0.0129888197, -0.0101892604, 0.0123564322, -0.00411052071, -0.0191705879, -0.015006776, -0.00525450334, 0.00234303251, 0.00454395544, 0.00622440176, 0.000766059675, 0.00022759744, -0.0198669247, 0.00226487219, -0.000186185818, 0.011802204, -0.00143175444, -0.00814998709, 0.00133583043, -0.00288837822, 0.00439829286, -9.60350226e-05, -0.00962792709, -0.0150351981, -0.0334241837, 0.0410128385, 0.0215580296, 0.00964213815, 0.0124061704, -0.032770481, 0.0261481702, 0.00831341278, -0.00271784654, 0.00927975867, 0.00874684751, 0.00308200251, -0.0266171321, -0.0448213741, -0.0072120633, 0.00160406239, 0.0055387225, 0.00229684683, -0.00105605216, 0.0276971664, 4.26606421e-05, 0.00232882146, 0.0150778312, -0.0236896742, 0.0188153144, -0.0158025902, -0.00540016592, 0.0242296904, 0.00596149871, 0.0220269915, 0.0496531, -0.00382630154, -0.0019771, -0.027086094, -0.0377158932, 0.0155752152, 0.0213590767, -0.0170815773, 0.0060325535, 0.00538950739, 0.00942897331, -0.0292177387, -0.00165646535, -0.00900264457, 0.0121219512, -0.0175647493, 0.0155752152, -0.0072369324, -0.0140049038, -0.00970608741, -0.0300988182, -0.0116672, 0.0200374573, 0.00703797908, -0.0112124495, -0.00667915214, 0.0312925391, -0.00261481712, 0.00954266172, 0.00464343186, 0.00316193909, -0.00556359161, 0.0062812455, -0.00286350888, -0.0277540088, -0.0009512463, 0.00887474604, -0.0348737, -0.0243718009, -0.00282087596, 0.0178773906, -0.0104947956, 0.00351366051, -0.016996311, 0.0053220056, -0.0116387783, 0.000681238, 0.00102496566, 0.0166552477, -0.0043592127, -0.0319462419, 0.0191279557, -0.0307525229, 0.0234054551, 0.0129817137, 0.0103100529, -0.0218422487, 0.00566662103, 0.00478554145, -0.000986773754, -0.0211174898, -0.00878948066, 0.00468606502, 0.00193091447, 0.00494541507, -0.0193695426, -0.0204922073, -0.00884632394, -0.00679639261, -0.0214727633, 0.000385916443, -0.0263187028, -0.03839802, 0.00428105239, -0.00279600685, -0.0170389432, -0.0109353354, -0.00506976061, -0.0175221171, 0.00208901148, 0.0140120089, -0.0326852128, -0.0191705879, -0.000735861424, 0.00859052688, -0.00885343, 0.0250539258, -0.0088818511, -0.00139977981, -0.00301272399, -0.00620663771, 0.00162626698, 0.0121432673, 0.0164278727, 0.0218990929, -0.0329125896, -0.0139338486, -0.000424330443, 0.013528836, 0.0440824069, 0.023860205, 0.0160726, -0.00835604593, 0.00370906107, 0.00354030612, -0.00757444277, -0.0185168833, 0.000615512312, 0.00535398, 0.0141967516, -0.0124203814, 0.00208723522, -0.00222046277, 0.0468393303, 0.00240342901, 0.00197354751, -0.00733285677, -0.00670046872, -0.00169021636, -0.0141612245, -0.00557780266, -0.0174084287, -0.00478554145, -0.00544635113, -0.031775713, -0.0039897277, -0.000396574673, 0.00617466308, 0.00207302417, -0.0220554136, -0.0237891506, -0.0437697656, 0.00595794618, 0.0059082075, -0.0203785207, -0.0280098077, 0.0106582223, 0.0322020426, 0.0127543388, 0.00414604833, 0.0176926479, 0.0210464355, 0.00181900314, 0.0039897277, -0.0311504304, 0.0261908043, 0.0247412864, -7.20540193e-05, 0.00515502645, 0.0092158094, 0.0432013273, -0.0257360525, -0.0157883801, 0.0143104391, -0.0239312612, 0.0150494091, -0.000955687196, -0.00733285677, -0.0368916579, 0.0232633445, 0.0219133049, -0.0226238519, 0.0303830374, 0.000806028, -0.0217427723, -0.0179342348, -0.0114256134, -0.00562754134, -0.0158310123, 0.0197816603, 0.0024123108, 0.00929397, 0.0248123407, -0.00951424, -0.0353568755, 0.0188011024, 0.0136354184, 0.00377301057, -0.0123706432, 0.0290187858, 0.0160583872, 0.021927515, 0.0107576987, -0.0154757379, 0.00328273233, -0.00280666514, 0.00717298314, -0.0187868923, 0.0152341519, -0.00422065565, 0.00357938604, 0.0326567926, -0.0106653273, -0.00629190356, 0.00576609792, 0.0051692375, -0.00739680603, 0.0135714691, -0.0188437365, 0.00375524675, 0.00762418145, -0.0026610028, 0.00189361069, 0.00584070571, 0.00111200777, -0.0027835723, 0.00106226944, 0.00550674787, 0.00947160646, 0.00596149871, -0.0065263845, 0.00680705113, 0.00705574267, 0.00733285677, 0.0120011577, 0.00887474604, -0.0141683295, -0.00570214866, 0.0106653273, -0.0192274321, -0.00629900908, -0.0261623822, -0.00955687184, -0.00962792709, 0.00225243764, 0.00175860664, 0.00769523624, -0.00266633183, -0.022879649, -0.00384761812, 0.0430592149, -0.011823521, 0.0210890677, 0.00305890967, 0.00945029, 0.00214763172, 0.00410341518, -0.0156604797, 0.00212631514, -0.0119514195, -0.014779401, 0.00056310941, 0.0139764817, 0.00652283197, 0.00605031708, 0.00534332171, -0.010096889, -0.0186163615, -0.00705929566, 0.0246844422, 0.00750338798, 0.00967056, 0.0281092841, 0.00904527772, -0.00963503215, -0.00864026509, -0.0192842763, -0.010345581, -0.00219559367, 0.0132090896, 0.00624571787, -0.0231780801, -0.0142322788, 0.00444803108, 0.00876105856, 0.0028794962, 0.0151630966, -0.00399328, -0.00235546706, -0.0174652729, -0.000840223162, 0.0104663735, 0.0232207123, -0.0262050144, -0.0106866434, 0.00173729018, 0.00920159835, -0.0121006342, -0.0120011577, 0.00250468217, 0.0183463525, 0.0218706708, 0.00853368267, 0.0159020666, -0.0176926479, -0.0028457453, 0.00589754945, -0.0113829812, 0.0345326401, 0.016726302, 0.0132233007, 0.0117311496, -0.0296724886, 0.0126406513, 0.0136354184, 0.00354918791, 0.00846973341, 0.00585491629, 0.00229862309, -0.0110063907, -0.016498927, 0.0219417252, 0.00901685562, 0.0103029478, 0.0208759028, -0.00944318436, -0.0182895083, -0.00896711741, -0.00231993967, 0.00441605644, 0.00220269919, 0.00718008867, 0.000968121807, 0.00664362498, -0.0161720756, 2.56602234e-05, -0.0100045176, 0.0153052062, 0.0278676972, 0.00461856276, 0.0138343722, -0.0091589652, 0.0225670077, 0.0132588279, -0.022169102, -0.00724403793, 0.00317259738, -0.00289903628, -0.00448000571, 0.00392577844, 0.00538950739, 0.0148646664, 0.0278961193, 0.000386360538, 0.0162289198, 0.00873974152, 0.0109140193, -0.00243007462, -0.0200516675, -0.0184174068, 0.00663296692, -0.023902839, -0.0235617757, -0.0122214276, 0.0084484173, 0.00324187591, 0.00180745684, 0.0268871412, 0.00146994647, -0.00026645555, -0.0301556624, 1.10329245e-06, -0.0057589924, -0.0184458289, -0.0176784378, -0.0350158103, 0.00750338798, -0.00859052688, 0.00905948877, 0.00311930617, 0.00643756613, -0.00428105239, 0.0082565695, -0.00047562315, -0.0302125067, 0.0104308464, 0.00602544798, 0.00594728766, -0.0175505392, 0.0230643917, -0.00230395235, -0.0203500986, -0.0158168, -5.31870228e-06, -0.00177637034, -0.00205348409, 0.0205774736, -0.0198242925, 0.00516213197, -0.0122569548, 0.00535753276, -0.0104734795, -0.0316904448, 0.00480685802, 0.00052713789, 0.0126548624, -0.00932949688, 0.0273418911, 0.00537174381, -0.0225954298, -0.0156746916, -0.0240875818, -0.00984819699, -0.019454807, 0.0228938609, 0.0152909951, 0.0170389432, 0.0129319755, -0.0175221171, 0.0134009374, -0.0110419178, 0.0107505927, 0.00972740352, -0.0185453054, 0.0291040502, 0.00994056836, -0.0047038286, 0.00753181, 0.0208048485, 0.0186305717, -0.00117151625, 0.018474251, 0.0208332706, -0.00890316814, -0.0193837527, -0.00251356396, -0.0382843316, -0.00310331886, 0.012065107, -0.0156889018, 0.00564175192, 0.0313778035, 0.00203394401, 0.00351188402, 0.0180905554, -0.00983398594, -0.00683192024, 0.0102034714, 0.0135572581, -0.00048539319, -0.0292177387, 0.0081713032, -0.0190569013, 0.00258284248, 0.010338475, 0.0169821, -0.0115606179, -0.00978424773, -0.00195756, -0.00297186757, 0.000506709621, -0.00477843592, 0.0102674207, -0.0129319755, 0.0128324991, 0.0173231624, 0.000637272839, -0.00838446803, -0.0099050412, -0.00545700965, -0.0218990929, -0.00887474604, 0.0104663735, -0.00673599634, 0.00574833434, 0.0224391092, -0.00324720494, 0.0120224738, 0.00208012969, 0.00103207119, -0.0171384215, 0.00109779683, 0.0230928138, 0.00900975056, 0.0225670077, -0.0183747746, 0.01085007, 0.00175683026, 0.0100258337, -0.00236790162, 0.000412117923, -0.0126974946, -0.0309798978, 0.00518344855, -0.00972029846, -0.0113971923, -0.00181722676, -0.00834183488, 0.00727246, -1.43219859e-05, 0.0104024243, 0.00152057293, -0.000738525938, 0.00455461349, -0.0134151485, 0.00915186, -0.00100098469, -0.0161862858, 0.0189858451, -0.0217427723, -0.00150636199, 0.0210322235, -0.0143601773, -0.0146372914, 0.0321736187, 0.00533621619, -0.028080862, -0.0151630966, -0.0153762614, 0.0116600944, 0.0266313441, 0.00669691619, 0.00949292257, 0.00212809164, -0.014274912, 0.00686389487, 0.0138770044, -0.0353284515, -0.0149925649, -0.0174368508, -0.00629545655, -0.00622084877, -0.000286439725, -0.00110667874, 0.00261836988, 0.0154188946, -0.0272282045, 0.0237180963, 0.0134222535, -0.0111485, 0.00690297503, -0.00376945781, -0.0106511163, 0.00384406536, -0.00634519476, 0.0153762614, -0.00462211575, -0.028578246, 0.0209753811, 0.0142038567, -0.0091305431, 0.0150778312, -0.0121930055, 0.000342617423, 0.00370906107, -0.0025721842, 0.0282656047, -0.00104894664, 0.00677862903, 0.0190000571, 0.0160441771, -0.0139338486, 0.024627598, 0.0074607553, 0.0248691849, 0.00583715271, -0.00892448425, -0.00484593818, -0.00184564875, 0.0274555795, -0.00419578655, -0.00800077152, 0.00240698177, -0.00997609552, -0.00688521145, -0.00863316, -0.0129461866, -0.0159304887, -0.000183632277, 0.0117169386, 0.000246693438, -0.0172805302, -0.00729022361, 0.024627598, -0.0151773077, -0.00916607119, 0.00634874729, 0.000734529109, -0.0145520251, -0.0029416692, -0.00420644507, -0.00821393635, -0.0033999728, -0.00478909444, -0.00270363549, 0.00434855465, -0.00927265268, -0.012072213, -0.0410412587, -0.0141825406, 0.0288766753, -0.000638161029, 0.000520920614, -0.00799366646, -0.011823521, 0.0105658509, 0.00584070571, -5.73850866e-06, -0.0146799246, 0.0179200228, 0.0131522454, -0.0200374573, 0.0185310952, -0.00609295024, -0.0226096418, 0.013280144, 0.021174334, -0.0116387783, 0.0079794554, 0.0314630717, 0.0147509789, -0.015759958, 0.0115393018, -0.0172805302, 0.00890316814, -0.0399612263, -0.0187584702, -0.00282442872, 0.00336266891, -0.00260238256, 0.0171952639, -0.00698468788, -0.012306693, -0.0161436535, -0.0237465184, -0.000619065075, -0.0196395498, -0.0118803643, -0.018218454, -0.000135115173, 0.0229080711, -0.0224817432, -0.00533976918, -0.00306779146, -0.00829920173, 0.0121859005, 0.0185737275, 0.00471803965, 0.0013908979, -0.00201973296, -0.0112906098, 0.0158310123, -0.00168577547, 0.00630966714, -0.0014575118, 0.00141843164, 0.0134364646, -0.0118590482, 0.00110756687, 0.0183463525, 0.0147509789, -0.00447290065, 0.00769523624, -0.00732575124, 0.00189716346, 0.0122214276, -0.0175505392, -0.00249580038, -0.00889606215, -0.00623861235, 0.00950713363, 0.00334490533, -0.00193979638, 0.0103171589, 0.0200516675, 0.00115197618, 0.00270363549, 0.00339819631, -0.0063771694, -0.0136141023, 0.0195400734, -0.00834183488, -0.00341596012, -0.0311788507, -0.00729022361, 0.0053149, 0.00430592149, -0.00503423344, -0.0123990644, 0.0210180134, 0.0179484449, 0.00054268114, 0.00442671496, -0.0176926479, -0.00338753825, -0.0117311496, 0.00820683, -0.00500581134, 0.00149392744, -0.00383340707, 0.0204637852, 0.0191279557, -0.0134862037, 0.0157883801, -0.0153478393, -0.0130172418, 0.0120082628, 0.0109992847, 0.00570570119, 0.00731154, -0.0133654103, -0.000781602925, -0.0234623, -0.0208616927, 0.0138485832, 0.0239312612, -0.018204242, 0.00641624955, -0.0104947956, -0.0127543388, -0.0377443172, 0.0202222, 0.000426106824, 0.0124061704, 0.00383695983, -0.00769523624, 0.00630256161, -0.0149215106, 0.00533976918, 0.011340348, -0.0168115683, 0.0175221171, 0.00741812214, 0.00358826807, -0.00218493538, -0.00831341278, -0.0306104124, 0.00731154, -0.0158594344, 0.0107221715, -0.0221122578, -0.0129532926, 0.00837736204, -0.00897422247, -0.0142038567, 0.0033111542, 0.00794392824, 7.67169913e-05, -0.00602900097, -0.0272282045, 0.00141665526, -0.014530709, -0.0102674207, 0.00549964234, -0.00693850219, -0.00602189545, 0.000651039707, 0.012065107, 0.0152909951, 0.00325608673, -0.0195258632, 0.0202932544, 0.00365577, 0.0406149291, -0.0047962, 0.0178489685, 0.000374814146, 0.0104947956, 0.0169394668, 0.00400749128, -0.00773786893, -0.0106582223, 0.0138201611, 0.00381209073, -0.0174652729, 0.0299567096, 0.00474290876, 0.010587167, -0.00215473725, 0.0260771159, -0.00465053739, -0.00167778169, 0.0190000571, 0.0246702302, -0.0170957875, -0.00947871152, -0.0165415611, 0.0291608945, 0.00190604536, -0.038682241, -0.00390446186, 0.024897607, -0.00722627435, 0.00476777786, -0.00204637856, -0.00931528583, -0.00475001428, -0.0023163869, -0.0351010785, 0.000782491115, 0.00657967571, 0.0326567926, -0.0128182881, -0.010835859, -0.000595084042, 0.014779401, 0.0174510609, -0.0329978541, -0.0166978817, -0.00645888224, 0.00880369078, 0.00775918551, 0.00173640193, 0.000584869937, 0.0127685498, -0.000833117694, -0.0190284792, 0.0191848, -0.016513139, 0.0157315359, 0.0263044909, 0.0179484449, 0.0185026731, 0.00587978587, -0.00651217345, -0.0112835038, -0.0210748576, -0.00546766771, -0.00173462555, 0.0166552477, -0.0165273491, -0.0171952639, 0.000868645089, -0.0187868923, 0.0193837527, 0.000314861623, -0.00308377878, -0.0123351151, 0.0242439024, 7.35528301e-05, 0.00753891561, 0.012072213, -0.00666138856, 0.000921048, 0.00769523624, -0.0209753811, -0.0041815755, -0.00290081277, -0.00827078056, 0.00810735393, -0.0106795384, -0.0042775, 0.0321452, 0.0162004977, -0.0125838071, -0.0183889847, -0.0170531552, 0.00945739541, -0.00961371604, -0.028791409, 0.00834894087, 0.0132375117, 0.0279245414, 0.0307241, -0.0130882962, 0.0157173239, -0.0325999483, 0.00138823339, -0.00532555813, 0.0323725715, 0.00073142047, 0.00020839044, 0.0178205464, 0.0155752152, 0.0183463525, 0.011340348, 0.0155610042, 0.0027817958, -0.00896001142, 0.00234480877, 0.00258461875, 0.0290756281, -0.013550153, -0.0326283686, 0.012050896, -0.000402125821, -0.0198953468, 0.027583478, -0.0242581125, 0.00837025698, -0.0135146249, -0.0277113765, -0.00735417288, 0.0126264403, 0.0186447818, 0.0177494921, -0.0029168, -0.00399683323, 0.0284929797, 0.0111058671, -0.00934370793, 0.0049205455, -0.00517634302, -0.0180337112, -0.00378722139, 0.0301272403, -0.000449199637, 0.0127827609, 0.0012550056, 0.000268453965, 0.0111271832, 0.00930818077, 0.00720495777, 0.00465409039, -0.0128467102, 0.0114114024, 0.0145520251, -0.00627414, -0.0249118172, -0.0218706708, 0.00576254539, -0.0108855972, -0.00421710312, 0.0208901148, 0.0260486938, -0.0127330227, 0.00302693504, -0.00747496635, 0.0260060616, 0.0340210423, 0.0181758218, 0.00299851317, -0.00449066423, -0.0159304887, -1.26150044e-05, 0.00338398549, -0.00636651134, 0.00452619139, 0.0305819903, -0.0227233283, 0.00829920173, 0.0047038286, -0.00849815551, 0.0274840016, -0.0107008545, 0.00284929806, 0.0127685498, 0.00867579225, -0.0050733136, 0.00508041913, -0.00300561846, -0.00720495777, -0.00927265268, 0.0175931714, -0.0198385026, -0.00775918551, -0.0291893166, -0.00102496566, 0.0271571483, -0.0139196375, -0.0264892336, -0.00504133897, -0.00916607119, 0.00604321156, -0.0201511439, -0.0247554965, -0.0295303799, 0.0204779971, 0.0065015154, -0.0169678889, -0.00496673118, -0.0128893433, 0.0269297734, -0.00597926229, -0.00667204708, -0.00528647797, 0.0115535129, -0.0029665383, 0.023377033, -0.00367708644, -0.00090950157, 0.0262334365, -0.0138983214, 0.0076099704, -0.00297186757, 0.00199841661, -0.0181474, 0.00330227241, 0.0047997525, -0.0101750493, -0.0201085117, -0.0114042973, -0.0178631805, -0.00286883814, 0.0146372914, 0.00369840302, 0.000778938353, 0.00323654665, -0.0209611692, -0.00384761812, -0.00202328572, 0.00238566543, 0.00654059555, 0.0202222, -0.015006776, -0.00639493298, 0.00559556624, -0.00668625766, 0.00305713317, -0.0154188946, -0.00450487528, 0.0135075198, -0.00650506793, 0.00503778597, 0.0114753526, -0.00567727955, -0.00391867291, -0.00328628509, -0.00715166703, -0.00218315911, 0.0130882962, 0.00823525246, 0.00927975867, 0.0159589108, -0.00606808113, -0.0212027561, -0.00218315911, -0.0128751323, 0.00214052619, 0.00270008296, -0.00904527772, -0.0247839186, -0.0116814114, -0.00251711672, -0.0254518334, 0.0142464899, -0.0177068599, 0.019682182, 0.0105161117, 0.00791550614, -0.00570925418, -0.00324365217, -0.00152590207, 0.0039648586, 0.0156178474, -0.00198775833, -0.00472514518, 0.019469019, 0.00768102519, 0.0366074406, -0.00462922081, -0.0192984864, -0.0137491059, 0.00565241044, -0.0208474826, 0.00513015734, -0.00325253396, 0.0136922626, 0.0196111277, 0.00330582517, -0.0044835587, 0.0381422229, -0.0133369882, -0.00306068594, 0.00778050208, -0.039648585, -0.0135572581, -0.00204637856, 0.0108927023, 0.00250645843, -0.0123351151, 0.0150636202, 0.0324009955, 0.0126051232, 0.0114398245, 0.00873974152, 0.0202364102, 0.00729732914, 0.00107115135, -0.00713745598, 0.0065548066, -0.00569859613, 0.024357589, -0.000361935439, 0.011574829, -0.00246204925, 0.0203927308, 0.00307667325, 0.0017310729, 0.0181616098, -0.0043307906, 0.00194334914, 0.00646954076, 0.00105694029, -0.0224959534, 0.00889606215, 0.00942897331, 0.00871132, -0.0302409288, 0.0145804472, -0.0254660454, 0.00697047729, 0.00512305181, -0.000837558589, -0.00366998115, -0.00656546466, -0.0054427986, -0.0123209041, -0.0211032797, -0.00499515329, 0.0235049315, 0.00829209667, 0.0129035534, 0.0230643917, 0.0131380344, 0.0113829812, 0.0145662362, 0.0141328024, 0.0018403196, 0.00496317865, 0.0127827609, -0.0170247331, -0.0318609774, -0.0140120089, -0.0113474531, -0.00559201371, 0.0228085946, -0.020946959, 0.00406078249, -0.0150494091, -0.0425760448, -0.0288908873, -0.00819262, 0.0242865346, 0.0318609774, 0.00820683, -0.00119816174, -0.0171952639, 0.0123635372, -0.0192984864, -0.00481041055, 0.0072120633, -0.0128822373, -0.00309976609, -0.00120793178, 0.0215580296, -0.00488501834, -0.00865447614, -8.2823266e-05, -0.00152412569, 0.00354563515, 0.00534687471, -0.00614624145, 0.01711, -0.0101253111, 0.00676441798, -0.0449919067, 0.0168684125, 0.0407854617, 0.0265176557, -0.000892626063, 0.0214017089, 0.0127117056, -0.03203151, -0.0082281474, 0.00290791807, -0.0112479767, 0.0198669247, -0.0068674474, 0.0101892604, -0.00427039433, 0.00470738113, 0.0222117342, 0.00314239901, 0.0333957635, -0.000618176884, 0.0187584702, -0.01328725, 0.0205064192, 0.00148060464, -0.00589754945, 0.0107150655, -0.015020987, -0.0033129307, -0.02215489, -0.0142322788, -0.00932239089, 0.0243718009, 0.01711, -0.027086094, -0.0428318419, -0.0154757379, -0.00964213815, -0.017976867, 0.0112479767, -0.0217569843, -0.00267699, 0.00848394446, -0.0168257803, -0.0250255056, 0.0214585532, 0.0207622163, -0.00391156739, 0.00870421436, 0.0123706432, 0.0298430212, -0.00108891504, 0.0307525229, -0.03055357, -0.0171526317, 0.000661253871, -0.014033325, -0.0169110447, 0.0104947956, 0.0184316188, 0.00793682225, -0.0249686614, -0.017493695, -0.00452263886, -0.00389735634, 0.0173373744, -0.00627414, 0.00379787968, 0.0024762603, 0.0153336283, -0.0109211244, -0.00821393635, 0.0169821, 0.00600057887, -0.00752470456, 0.0119798416, -0.000407677, -0.000269342156, -0.0130101359, -0.00162360247, -0.0200516675, 0.0313778035, -0.00523673976, 0.000616400503, -0.00756733725, -0.00830630772, -0.0158025902, -0.00569504313, 0.00974872056, 0.0110703399, -0.0024478382, 0.00191492715, 0.00136158778, -0.0113048209, 0.0138698993, -0.0116245672, -0.00897422247, -0.0131380344, 0.00400393875, -0.017493695, 0.0118519431, 0.0210180134, 0.0219985694, 0.00784445088, -0.022424899, 0.0107861208, 0.00677862903, -0.0229507051, 0.0178063363, -0.00911633205, 0.0169110447, 0.00135625876, 0.00625992892, 0.000102363338, -0.00311220088, 0.0149925649, 0.0187300481, 0.000579984917, 0.00450132228, -0.0176358037, -0.000661253871, 0.00547122071, -0.0124630136, 0.00194157276, 1.16990641e-05, 0.0148078231, -0.00859763194, 0.00866868719, -0.00706640119, -0.0400180705, 0.00206236588, 0.00703087356, 0.0243149567, 0.00258461875, -0.0111982385, 0.00913764909, -0.00621374324, -0.00385117088, -0.00558135565, 0.0109282304, -0.0184031967, -0.0122285327, -0.0198242925, 0.000895290636, -0.00416381191, 0.0118945753, 0.0116529893, -0.0126477564, 0.00589754945, -0.0113190319, -0.00163692527, -0.00189005805, -0.00472869771, -0.00213342067, -0.00630256161, -0.0076099704, -0.0203927308, 0.00360425538, -0.00184920151, 0.0143175442, 0.000170864616, 0.0131522454, 0.0172947422, -0.0412970558, 0.0278676972, 0.00552806444, 0.0108429641, -0.00168844, -0.0096208211, -0.00800787751, -0.0254376233, 0.00822104141, 0.00471448665, -0.00292390562, 0.00798656, 0.0106724324, -0.0164136607, 0.00769523624, -0.00438052928, -0.0265318677, 0.032770481, 0.0188721586, -0.000575988088, -0.0165699814, 0.01772107, 0.0143104391, -0.00721916882, 0.0015818578, 0.00679994561, 0.00567372655, 0.00870421436, 0.00903817173, -0.0133156721, 0.00677862903, 0.00972740352, -0.00919449236, 0.016001543, 0.000322189153, -0.00826367456, -0.00706284819, 0.00601123692, -0.0136496294, -0.0132090896, 0.0100045176, 0.00425618328, -0.0060609756, 0.00181811501, 0.00277646678, -6.13958e-05, -0.0022275683, -0.0182610862, -0.0156746916, -0.014289123, 0.0209185369, -0.00805051066, -0.00478554145, -0.0143530723, -0.0296156462, 0.012811183, 0.0109566525, 0.00177814672, 0.0147225568, 0.0114895627, 0.0236044079, 0.0136425244, 0.0186732039, -0.00413894281, 0.0140901692, 0.00339286728, -0.0220412035, 0.00537529634, -0.0186305717, 0.0220980458, 0.00335201086, -0.00480685802, 0.00730443466, 0.00926554762, -0.00961371604, 0.0171810538, 0.00365577, 0.00466474844, 0.0071161394, 0.0209043249, -0.0276687443, -0.00493475655, 0.0101892604, -0.00156231772, 0.0388243496, -0.00419933954, -0.00758865383, -0.0134009374, 0.0067750765, 0.00905238278, -0.00204993133, 0.0280950721, 0.00882500783, -0.00653704256, -0.00497383671, 0.0172521081, 0.00597570976, 0.0207906384, 0.00702732103, -0.00166179438, -0.010338475, 0.000282664929, -0.000451642147, -0.0029061418, -0.000369040936, -0.00810735393, 0.00814998709, 0.0157741681, -0.00485304371, -0.019696394, -0.0140830642, -0.00643756613, -0.0181474, -0.00408209907, -0.0172805302, 0.0147083458, -0.00633453671, -0.0118519431, -0.00828499068, -0.0199095588, -0.00146106456, 0.00161205605, -0.00866868719, -0.0169110447, -0.0150636202, -0.0153904725, 0.00215473725, 0.00623861235, 0.0328273214, 0.00246027275, -0.0188863687, -0.0057874145, -0.0471235514, -2.67149444e-05, 0.0110348118, 0.0173657965, 0.0164278727, -0.0148646664, 0.0154899489, 0.00613913592, -0.00576965092, 0.0185595173, -0.00870421436, -0.0101182051, 0.0105090067, -0.0251534041, 0.00287594344, 0.0116600944, -0.0117027275, -0.00112355419, -0.0113971923, -0.00461856276, -0.0122001115, -0.000409675413, -0.010835859, 0.0140830642, -0.00605031708, -0.0142251737, -0.0138841104, 0.014282017, 0.0122782718, 0.0138059501, -0.000611959549, -0.0117595717, 0.00959950499, -0.00966345426, 0.0189290028, 0.00149303919, -0.00130918494, -0.0264892336, -0.00729732914, 0.00676086545, 0.00565951597, 0.0242865346, -0.0114256134, -0.0148788774, -0.00954976678, -0.00130563218, -0.00559201371, 0.00045519488, -0.0328841656, -0.00503423344, -0.00298785488, -0.00787287299, -0.0143672833, -0.0111129722, 0.0254092012, -0.010345581, -0.00925844163, 0.00608229171, 0.00218315911, 0.00241586356, 0.0162857622, -0.0161862858, -0.0178489685, -0.00657257, 0.0445371568, 0.0182468761, 0.0293598492, -0.0176926479, -0.0273987353, -0.0182468761, -0.0170531552, 0.0019824293, -0.00336622167, 0.000481396361, -0.0105445338, -0.00538950739, 0.00244250917, -0.0127330227, 0.00088996155, 0.0741243809, 0.03055357, 0.0231638681, -0.0284077134, 0.00851947162, -0.0202932544, -0.0235759858, 0.036408484, -0.021657506, 0.00118572719, 0.00676797098, -0.0140759582, 0.0292461608, 6.80571902e-05, 0.00944318436, 0.0124061704, 0.0148362443, -0.00362557173, 0.00871132, 0.0121432673, -0.00230928138, -0.0112266606, 0.00114753516, -0.0221975241, 0.00391867291, -0.00651572645, -0.00937213, 0.00438408181, -0.0308377892, 0.00738259498, 0.00125944649, 0.00666138856, -0.00498804776, 0.0018403196, -0.048970975, -0.016513139, 0.00722982734, 0.0089102732, 0.00782313477, -0.0096563492, -0.00144507724, 0.0196111277, 0.00149659195, -0.00440184539, 0.00872553047, -0.00632387819, -0.0128822373, 0.0110916561, -0.00114220614, -0.00260948786, -0.0280098077, 0.00617466308, 0.00637361687, -0.0129603976, -0.00165380072, 0.0161152314, -0.00154366577, -0.00502712792, 0.0101892604, 0.0203358866, 0.00871132, -0.0179058127, 0.00923712552, 0.0117169386, 0.00684968382, 0.00788708404, -0.010096889, 0.00197177101, 0.0139693758, -0.000903284294, -0.00664717751, -0.00762418145, 0.0204922073, -0.00100720196, -0.00519055407, 0.000787820201, 0.0182468761, 0.00521897571, -0.00587978587, -0.00901685562, -0.00247093104, 0.00740391156, -0.0115393018, -0.0297293328, 0.0282087605, 0.00298430212, -0.00430236896, 0.00292212912, 0.000667915214, 0.00516568497, 0.00572346523, 0.0142962281, -0.0188295245, 0.0153478393, 0.00491699297, -0.00557069713, -0.0239170492, -0.00187051797, 0.0126690734, -0.01711, 0.0269297734, 0.0074607553, -0.0155752152, 0.0195969176, -0.0138485832, -0.000330848969, 0.00610005576, -0.00833473, 0.017493695, -0.00927265268, 0.0265034456, 0.00500936434, 0.00521897571, 0.0264181793, 0.0177637022, -0.00158274593, 0.00694916071, 0.000696337142, 0.00607518665, 0.0153620504, 0.0124416975, 0.000296209735, -0.0257360525, -0.000405456522, -0.00481396355, 0.00419933954, 0.0132730389, -0.0100116227, 0.0203074645, 0.0121006342, 0.0117737828, -0.0170673653, 0.0211317018, 0.00648375181, -0.00137846335, -0.00561688282, -0.021657506, -0.0229364932, -0.0166836698, 0.0158025902, 0.0129746087, 0.0158025902, 0.0151062533, 0.0347600132, -0.00813577604, 0.0121432673, 0.0100400448, -0.0137846339, -0.000763395161, 0.0199237689, -0.00869000331, 0.0130172418, 0.00471803965, -0.00508752465, -0.0180763435, 0.000562221219, 0.00102230115, 0.00613203039, 0.0120366849, -0.00316016283, -0.0098979352, -0.00214230269, 0.0150636202, 0.0249402393, 0.0224959534, -0.0217427723, -0.00856921077, 0.00161027967, 0.0126903895, 0.00834183488, 0.0168257803, 0.00257928972, -0.0114753526, 0.0179342348, -0.00668625766, 0.0074891774, -0.0127401277, 0.0183889847, 0.00507686613, -0.0113190319, -0.0181474, 0.00154544215, -0.0225243755, 0.0402170233, 0.0060325535, -0.00961371604, -0.00893159, -0.00492765103, 0.0250681378, 0.00461856276, 0.0003646, 0.00773076341, 0.000271562603, -0.00436276523, -0.0172805302, 0.00598636782, 0.0137064736, -0.000831341313, 0.0186163615, -0.00561333029, 0.0150351981, 0.00153744849, 0.00567017402, -0.00922291446, 0.00100720196, 0.0321736187, -0.0078018182, 0.00481396355, 0.00172130286, 0.00668625766, -0.0155610042] |
16 Nov, 2022 | Minimize moves to segregate even and odd by swapping adjacent elements
16 Nov, 2022
Given an array arr[] of size N, the task is to find the minimum moves to segregate even and odd numbers by swapping two adjacent elements at a time.
Example:
Input: N = 7, arr = {3, 5, 2, 7, 9, 11, 12}Output: 3Explanation: Swap arr[2] and arr[3] to get arr = {3, 5, 7, 2, 9, 11, 12}.Move 2: Swap arr[3] and arr[4] to get arr = {3, 5, 7, 9, 2, 11, 12}.Move 3: Swap arr[4] and arr[5] to get arr = {3, 5, 7, 9, 11, 2, 12}.All odds are at the beginning from arr[0 . . . 4] and evens at the end from arr[5 . . . 6].
Input: N = 5, arr = {3, 5, 7, 2, 4}Output: 0
Approach:
This problem can be broken down into two sub-problems:
Shifting all odd to the front or
shifting all odd to the end (minimum of which will give us the optimal answer).
So this problem can be solved using the greedy approach, where initially the number of moves to shift odd to the beginning are counted and then the number of moves to shift odd to the end are counted and minimum of both is returned as answer.
To shift any number by consecutive swapping, moves required is abs(j – i) where j is the index of the last number of the opposite parity and i is the index of the current number.
Follow the given steps to solve the problem:
Traverse the array arr from 0 to n-1 (say i).
If arr[i] is odd then add i-j in startMoves and increment j.
Reinitialize j to n-1.
Traverse the array arr from n-1 to 0 (say i).
If arr[i] is odd then add j-i to endMoves and decrement j.
Return minimum of startMoves and endMoves as the final answer.
Below is the implementation of this approach:
C++14
// C++ code to implement the approach
#include <bits/stdc++.h>
using namespace std;
// Function to return minimum number of swaps
// required to segregate evens and odds
int minMovesToSegregate(int* arr, int& n)
{
int startMoves = 0, endMoves = 0, j = 0;
for (int i = 0; i < n; i++) {
if (arr[i] & 1)
startMoves += i - (j++);
}
j = n - 1;
for (int i = n - 1; i >= 0; i--) {
if (arr[i] & 1)
endMoves += (j--) - i;
}
return min(startMoves, endMoves);
}
// Driver code
int main()
{
int arr[] = { 3, 5, 2, 7, 9, 11, 12 };
int N = sizeof(arr) / sizeof(arr[0]);
// Function call
cout << minMovesToSegregate(arr, N);
return 0;
}
Java
/*package whatever //do not write package name here */
import java.io.*;
class GFG
{
// Java code to implement the approach
// Function to return minimum number of swaps
// required to segregate evens and odds
static int minMovesToSegregate(int arr[], int n)
{
int startMoves = 0, endMoves = 0, j = 0;
for (int i = 0; i < n; i++) {
if (arr[i]%2==1)
startMoves += i - (j++);
}
j = n - 1;
for (int i = n - 1; i >= 0; i--) {
if (arr[i]%2==1)
endMoves += (j--) - i;
}
return Math.min(startMoves, endMoves);
}
// Driver code
public static void main(String[] args)
{
int arr[] = { 3, 5, 2, 7, 9, 11, 12 };
int N = arr.length;
// Function call
System.out.println(minMovesToSegregate(arr, N));
}
}
// This code is contributed by satwik4409.
Python3
# Python code for the above approach
# Function to return minimum number of swaps
# required to segregate evens and odds
def minMovesToSegregate(arr, n):
startMoves = 0
endMoves = 0
j = 0
for i in range(0, n, 1):
if (arr[i] % 2 == 1):
startMoves += i - j
j += 1
j = n-1
for i in range(n-1, -1, -1):
if (arr[i] % 2 == 1):
endMoves = endMoves + j-i
j -= 1
return min(startMoves, endMoves)
arr = [3, 5, 2, 7, 9, 11, 12]
N = len(arr)
# Function call
print(minMovesToSegregate(arr, N))
# This code is contributed by lokeshmvs21.
C#
// C# code to implement the approach
using System;
public class GFG
{
// Function to return minimum number of swaps
// required to segregate evens and odds
static int minMovesToSegregate(int []arr, int n)
{
int startMoves = 0, endMoves = 0, j = 0;
for (int i = 0; i < n; i++) {
if (arr[i] % 2 == 1)
startMoves += i - (j++);
}
j = n - 1;
for (int i = n - 1; i >= 0; i--) {
if (arr[i] % 2 == 1)
endMoves += (j--) - i;
}
return Math.Min(startMoves, endMoves);
}
// Driver code
public static void Main(string[] args)
{
int []arr = { 3, 5, 2, 7, 9, 11, 12 };
int N = arr.Length;
// Function call
Console.WriteLine(minMovesToSegregate(arr, N));
}
}
// This code is contributed by AnkThon
Javascript
<script>
// Javascript code to implement the approach
// Function to return minimum number of swaps
// required to segregate evens and odds
function minMovesToSegregate(arr, n)
{
let startMoves = 0, endMoves = 0, j = 0;
for (let i = 0; i < n; i++) {
if (arr[i] & 1)
startMoves += i - (j++);
}
j = n - 1;
for (let i = n - 1; i >= 0; i--) {
if (arr[i] & 1)
endMoves += (j--) - i;
}
return Math.min(startMoves, endMoves);
}
// Driver code
let arr = [ 3, 5, 2, 7, 9, 11, 12 ];
let N = arr.length;
// Function call
document.write(minMovesToSegregate(arr, N));
// This code is contributed by hrithikgarg03188.
</script>
Output
3
Time Complexity: O(N)Auxiliary Space: O(1) | NLP/Natural Language Processing (NLP) Tutorial/AI ML DS - Projects/30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated]/Does Artificial Intelligence Require Coding?/Artificial Intelligence – Boon or Bane/Artificial Intelligence Examples/Agents in Artificial Intelligence/What are Diffusion Models?/ML | Common Loss Functions/Loss Functions in Deep Learning/Kaiming Initialization in Deep Learning/Swift - Initialization/Swift – If Statement/6 Best iOS Project Ideas For Beginners/Swift Programming Language/Introduction to Visual Programming Language/What is D Programming Language: Usage and Applications/Best Programming Languages for Data Science in 2024/5 Best Languages for Competitive Programming/MEX (Minimum Excluded) in Competitive Programming/Rearrange Array to maximize sum of MEX of all Subarrays starting from first index/Minimize moves to segregate even and odd by swapping adjacent elements | https://www.geeksforgeeks.org/minimize-moves-to-segregate-even-and-odd-by-swapping-adjacent-elements/?ref=next_article | NLP | Minimize moves to segregate even and odd by swapping adjacent elements | Artificial Intelligence – Boon or Bane, AI ML DS - Projects, Rearrange Array to maximize sum of MEX of all Subarrays starting from first index, MEX (Minimum Excluded) in Competitive Programming, Swift - Initialization, 6 Best iOS Project Ideas For Beginners, ML | Common Loss Functions, Artificial Intelligence Examples, What is D Programming Language: Usage and Applications, 30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated], Swift – If Statement, Natural Language Processing (NLP) Tutorial, Loss Functions in Deep Learning, Minimize moves to segregate even and odd by swapping adjacent elements, Does Artificial Intelligence Require Coding?, Best Programming Languages for Data Science in 2024, NLP, 5 Best Languages for Competitive Programming, Swift Programming Language, Agents in Artificial Intelligence, What are Diffusion Models?, Kaiming Initialization in Deep Learning, Introduction to Visual Programming Language | GeeksforGeeks | [-0.0239378829, -0.0128538907, -0.0116002122, 0.00855451077, -0.00739670219, 0.0242771134, 0.00990405865, 0.0215190202, -0.0365484096, 0.0346310213, -0.0293655712, -0.0131267495, 0.024218116, 0.0146090398, -0.00705747167, -0.0288641, -0.0255307909, 0.0101105468, -0.00851763785, -0.0346900187, 0.0198228676, -0.027846409, -0.0384068042, 0.0146680372, -0.0386427902, 0.0161650758, 0.0236871466, 0.0232151728, -0.0283626299, 0.0197048746, 0.0255307909, 0.00298486068, 0.00692104222, -0.0252358075, -0.0193656441, -0.000590427197, -0.00667399354, 0.0280234, -0.00667399354, 0.0127801448, -0.0149408961, -0.0167402942, -0.0205603242, -0.00266591017, -0.00260138256, 0.0344245322, 0.016769791, -0.00482297456, 0.00246679643, 0.0128465155, 0.0098524373, 0.0194246396, 0.0173302591, 0.0300587825, 0.00289636571, 0.0160175841, -0.0441884734, 0.0237313937, 0.0112462323, -0.00577798253, 0.0233774148, -0.0278906561, -0.0223154742, -0.0153391231, 0.0185544398, 0.00666293176, -0.0489377044, 0.0186134372, 0.00526544917, 0.0164453108, -0.086489059, 0.000772948, -0.00955008, -0.00918872468, -0.0152801266, -0.0143878032, 0.0620054565, -0.0313862078, -0.0225809589, 0.0351914875, -0.0497341566, -0.000462293887, -0.0267844703, -0.027964402, 0.0297785476, 0.00103889371, 0.033185605, -0.0479937568, 0.0353684798, 0.020117851, -0.0271826964, -0.016209323, -0.00776543142, 0.0139010809, -0.00791292265, 0.052860979, 0.0332151, 0.0168435369, -0.0156636052, 0.0252063088, 0.0205898229, 0.0318286829, 0.00617252244, -0.0258405227, 0.0200441051, 0.0257667769, -0.0154128689, 0.0300587825, 0.0337755717, 0.0334510878, 0.0290853381, 0.011710831, 0.0212977827, 0.0287756063, -0.0118656969, -0.0538344234, -0.00884949416, -0.0608845204, -0.00352136139, 0.0558698066, 0.0405011848, 0.0460173711, 0.00103336282, 0.0160323344, -0.0473152958, -0.0220204908, 0.00758106681, 0.0217845049, -0.0129645094, -0.00405233074, 0.00984506216, -0.0223007258, 0.00710540637, -0.0297343, -0.00815628376, 0.00201694714, 0.0019597942, 0.0109070018, -0.0299997851, 0.0214305259, 0.00527282385, -0.0190706607, 0.00989668444, -0.01330374, -0.00288346014, 0.00216996972, -0.014778655, 0.0648372918, -0.0428315513, 0.018642934, -0.0432150289, 0.0366664045, 0.0149335219, 0.0101326713, 0.0493506789, 0.00661130948, 0.0184806939, 0.00234327232, -0.00864300597, -0.0960465148, 0.0240411256, -0.0259585157, -0.00876099896, -0.0308257379, -0.0403831936, 0.0256192852, 0.0255897883, 0.00392696308, -0.00596603425, 0.0377578437, -0.00687679462, 0.00156525429, 0.0275809243, 0.0260322616, -0.0189821646, -0.0203390885, 0.0200293548, -0.0160470828, 0.0100884233, -0.0365189128, -0.0140411975, -0.013864208, 0.00678829942, -0.00182613, 0.0156488549, -0.00571529847, -0.0117993262, -0.0209585521, -0.00368728931, -0.0083775213, -0.0103539079, -0.0126252789, 0.00570054911, 0.00138826447, 0.0175662469, -0.0104129054, -0.0481707491, -0.00188973581, 0.00139010802, 0.0335690826, -0.0155161135, -0.0125220343, 0.0143878032, 0.00253869873, 0.0254570451, -0.0472563, -0.0461943597, -0.0430675372, 0.0113789747, -0.000366654829, -0.0217697565, 0.0541589037, -0.0196901243, -0.0269909576, 0.00771380914, 0.0188494232, -0.0310617257, 0.0466958322, -0.00438049948, 0.00433993945, -0.03115022, -0.00459436234, 0.0078391768, -0.00322084711, -0.0361059383, -0.0133996094, -0.00213862769, 0.0360764377, -0.0122860484, -0.032625135, -0.0174482521, 0.00150257035, -0.0167845413, 0.0189821646, 0.000105202969, -0.00219946797, -0.0290263407, 0.0404421873, 0.0164748076, 0.0159438383, -0.0117477039, 0.0209733, -0.0292475782, -0.026651727, 0.0170647744, -0.0302947685, -0.0178759787, 0.0502651259, 0.0422120877, 0.0180529691, -0.0144246761, -0.00520276511, -0.0138715822, -0.00808253791, -0.0114674699, 0.0148302773, -0.0189674161, 0.0119173191, 0.0147196585, 0.0236429, -0.0034715829, 0.0208553076, -0.0160028357, 0.0238346383, 0.0417401157, 0.031032227, 0.0263272449, -0.0119836899, -0.00246126554, -0.0194393899, 0.0164453108, -0.0243066102, -0.00984506216, -0.0260470118, 0.031710688, -0.0136355963, -0.0233184174, -0.0256045368, 0.0443064682, 0.0118140746, -0.0160028357, 0.00612827484, 0.0679641142, 0.0102727879, -0.0155161135, -0.0375513546, -0.00713859219, -0.01067839, -0.0749257207, -0.0159143414, 0.010914376, -0.0300292838, -0.00228980673, -0.0144689232, 0.0323596522, -0.00299039157, -0.0101474198, -0.0334215909, -0.0179054774, -0.0297343, -0.0184511952, -0.0418581069, 0.0261207577, -0.00623520603, -0.0605305396, -0.013783087, 0.00156801974, -0.0175662469, -0.0178907271, 0.00419613533, 0.0334805883, -0.0243508592, -0.0342475437, -0.0275219269, -0.0474037901, -0.0346015245, 0.0409731604, -0.0124630379, -0.0385837965, -0.00481191231, -0.0216960106, -0.0358699486, 0.0185101926, 0.0325071439, 0.0100957984, -0.00593284843, 0.00589966308, 0.0257667769, -0.00991143379, -0.0323301516, -0.0173450094, 0.0162683204, -0.021946745, 0.00577798253, 0.001115405, -0.010117922, -0.0215780176, 0.00289267837, -0.0118804462, -0.0208700579, 0.0124040414, 0.00674036471, 0.0187314302, 0.025855273, -0.00483403634, -0.00630895188, -0.00290005305, -0.00197823066, 0.0310912225, -0.00379422074, 0.00126105291, -0.0059512849, 0.0223007258, -0.023864137, 0.00935096573, -0.00717546511, -0.0343950354, -0.0358699486, 0.0423300825, -0.0126252789, 0.0253980495, 0.00108129764, -0.0234659091, 0.0191296563, 0.0014242155, -0.0172122661, -0.00285764923, -0.0243213605, 0.0149703948, -0.0382298157, -0.0111429887, 0.0234216619, 0.0034715829, 0.00539081683, -0.0405306853, -0.00225662114, 0.036164932, -0.0106636407, 0.0370203853, 0.0124261649, -0.018923169, 0.0440114848, 0.00315263239, -0.00761793973, -0.0262535, -0.0267549716, -0.0193656441, 0.0430970378, -0.0377873406, 0.0294835661, -0.00960170105, 0.00761793973, 7.72026178e-05, 0.00751838274, -0.0192034021, 0.0245278478, -0.00524701271, 0.00274518691, -0.000778939866, -0.0430085436, 0.027846409, -0.0177432355, 0.0184216965, 0.0198671147, 0.00144449563, 0.0136798434, -0.0317696854, -0.00359141966, 0.0154423676, 0.0370793827, -0.0056931749, 0.0493506789, -0.0511500761, 0.00129792583, -0.02063407, -0.002101755, -0.0631263927, 0.0285543688, 0.0110028712, -0.0372563712, -0.0185101926, 0.0207373146, 0.00705378456, 0.026091259, -0.0293508228, 0.0119689414, 0.00195426331, 0.0179939717, 0.0551913455, 0.011511717, -0.0375513546, 0.0134586059, 0.00687310705, 0.0056931749, -0.0111061158, 0.0101695443, 0.0394097492, -0.00324665825, -0.0306487493, -0.0240411256, 0.0283331312, 0.021032298, -0.0260470118, 7.57046582e-05, -0.0146090398, 0.0252948049, -0.0363124236, -0.0108037572, -0.00921822339, 0.00314341416, -0.0400587097, -0.00693210401, -0.00460542412, -0.0332446, 0.0496161655, -0.0401767045, 0.00625733, -0.0290705897, 0.0369613878, 0.00828165188, -0.0029240204, -0.0066481824, 0.0152063807, -0.0188199244, -0.00338677526, 0.0240558758, -0.0112536065, 0.0340410545, -0.0195131358, 0.00721971225, -0.00127948937, -0.01681404, 0.0059070373, -0.00264931726, 0.0457813852, -0.00278390339, -0.0295278132, -0.0293803215, -0.00220684265, -0.0336870737, 0.0200441051, -0.00433625234, -0.00624995539, -0.000436943781, 0.0115412157, -0.0294835661, 0.0501766317, -0.00636426127, -0.00856188592, -0.000199689763, -0.00301988982, 0.0151916323, -0.00234880322, -0.000262488902, 0.0161945745, 0.0253685508, -0.0495276712, -0.0423005819, 0.0175367482, 0.0357224569, 0.0332446, -0.0394982435, -0.0240116287, 0.0011375288, 0.0073377057, -0.077993542, -0.00692472933, 0.0262535, 0.0660172254, -0.0348670073, -0.00333699677, 0.025973266, 0.00995568093, 0.0356339626, -0.0126547767, -0.0229939353, -0.0487902127, -0.0110618677, -0.0145279197, 0.000507002289, 0.0251030661, -0.0104645267, 0.000751285173, 0.0254127979, -0.00492990576, 0.0329791158, 0.0151621336, -0.0269909576, 0.00241517439, 0.00609140191, -0.00620202068, 0.0123671684, -0.00186023745, 0.0161208287, 0.0154866148, -0.0600880645, -0.0170942731, 0.0246163439, -0.00722708693, 0.0313567072, 0.0343655348, 0.0307667423, -0.0337165743, 0.0133627364, -0.0365189128, 0.00944683515, -0.0171385203, -0.0103612831, 0.0233626645, 0.0237756409, 0.0169025343, 0.0305307545, 0.0125589073, 0.00518801622, -0.0464008488, -0.0197048746, -0.00102506648, -0.0173745062, -0.014181315, -0.0348080099, -8.4231513e-05, -0.00467548287, -0.00738932751, 0.00880524702, -0.00547562446, 0.00309547945, -0.030796241, 0.0482592434, -0.00308626122, -0.000824109185, -0.0102727879, -0.018805176, -0.00146385387, 0.00452430407, -0.0203243382, 0.00593284843, -0.00890849065, -0.0238493867, -0.0209733, 0.0164158121, -0.00135415699, -0.00629051542, 0.0190116633, -0.0241443701, -0.0267844703, -0.0458698794, -0.0134217329, -0.0194393899, -0.00815628376, -0.00429937942, 0.0188199244, 0.0326841325, 0.0018842048, 0.0182152092, -0.0268434659, 0.00305491919, -0.00610615127, -0.0140780704, -0.0109217511, 0.0236871466, -0.0182742048, 0.0235249065, -0.00152469415, -0.0115338406, 0.0078391768, 0.00503315, -0.0180382188, 0.0497046597, -0.00717546511, -0.0229791868, -0.0412091464, -0.00741882622, 0.0204128344, -0.0130751282, 0.0326841325, 1.74282031e-05, -0.00107853208, -0.00400439603, -0.033539582, -0.0313272104, -0.0275366772, -0.0173155107, -0.0112536065, 0.0469023213, 0.00233405409, 0.0243213605, -0.0327136293, -0.0220647398, -0.0205013286, -0.0231266785, 0.00151547592, -0.0147934044, 0.00187314302, -0.0135987233, -0.00385321723, -0.00402283249, 0.0191886537, 0.00551618496, -0.00862825662, 0.0325071439, -0.0114379711, -0.00272306311, -0.013502853, 0.0740407705, -0.0156341065, -0.0173745062, -0.00245020376, -0.00326878205, 0.0231561773, -0.0274924282, 0.00775068207, -0.00122233643, 0.0494391732, 0.0269467104, 0.0162830688, 0.000748519727, -0.00575954607, -0.0214895215, -0.00962382462, -0.000739301497, -0.00949108228, -0.012227051, 0.00593284843, 0.00645275647, -0.00318950531, -0.014977769, -0.015737351, 0.0327726267, -0.01111349, -0.0065375641, -0.0203833356, 0.0206488203, 0.00216075149, 0.0121828038, 0.00287239836, -0.0322416574, -0.0309732296, 0.0404716879, 0.0354569741, -0.0192476492, -0.00117901072, 0.00101031724, 0.00425513182, -0.018923169, -0.0238051396, 0.00278943428, 0.000748519727, 0.00173579145, 0.00568211265, -0.0337165743, -0.0372563712, -0.00225477736, 0.000847154704, 0.0462238602, 0.017050026, -0.0214600228, 0.0114822192, 0.0349260047, -0.00427725539, -0.0145647926, 0.0159438383, -0.0197638702, -0.00968282204, 0.0183037035, 0.0156783536, 0.0564892702, 0.00204644562, 0.0453684069, 0.0110987406, 0.0111577371, 0.0207373146, 0.00896748714, -0.0107521359, 0.0179792233, 0.0253685508, -0.0177579857, -0.0386722907, -0.0217255093, -0.00262535, -0.0256635342, -0.0146827856, -0.00372416223, 0.0179497246, -0.0314157046, 0.00293692597, -0.00984506216, -0.00874625053, -0.0301767755, -0.0178169813, 0.00337018236, -0.00842914358, -0.00474185403, 0.0161355771, 0.00494465511, -0.00375550403, -0.0124925366, 0.0158995911, -0.00324481446, -0.00393433776, 0.00808253791, -0.00747782271, 0.00914447755, 0.0101400455, 0.0157668497, 0.0145057961, 0.00107207941, 0.0225662105, 0.0182299577, 0.00615408598, 0.0239231326, 0.010796383, 0.0216222648, -0.000201879084, 0.0139453281, -0.00676248875, -0.0225367118, 0.0124777872, -0.0145205455, 0.0317401849, 0.0188346729, 0.0108553795, 0.0225957092, -0.00542400265, -0.00173855689, 0.0190116633, 0.0122639239, -0.0259142686, -0.00212572236, 0.004701294, -0.0182152092, 0.0127506461, 0.00215706415, 0.00582960434, 0.0117772017, -0.010199042, -0.0269024633, 0.028082395, -0.0124704121, -0.000501932227, 0.0171975177, 0.00712015573, 0.0290115923, 0.0280971453, -0.00677355053, 0.0108037572, 0.00725289807, 0.00981556438, -0.00440631062, 0.0449554324, 0.00152285048, -0.0353684798, 0.0135618504, 0.00195610686, 0.0311207213, -0.00567105087, -0.0118067, -0.0226547047, -0.0203095898, -0.0340705514, -0.0475807823, 0.013982201, -0.00530969677, -0.0197786205, 0.0192771479, -0.00837014709, -0.023023434, -0.0159585886, -0.0103465337, -0.00180492806, -0.00531707099, -0.0169910286, -0.014660662, 0.0143951774, -0.0126842754, 0.0271089505, 0.036164932, -0.0056046797, -0.00719390158, -0.00253869873, 0.01960163, -0.00703166053, 0.00591809954, 0.0426250659, 0.00740776397, -0.0251178145, 0.0259142686, 0.000872965727, -0.013222619, 0.0210765451, 0.0156783536, -0.000947633351, -0.0131783718, -0.00800879207, 0.00734508038, 0.0238493867, -0.00725289807, -0.00501102628, 0.00473816693, 0.00245573465, 0.0138199599, 0.0139232045, 0.0184659455, -0.0205898229, -0.0270204563, 0.00662237173, -0.00406708, -0.0431560352, 0.00933621638, 0.0232299231, -0.00571161089, 0.0192476492, 0.00797191914, 0.0128317671, 0.0140485726, -0.0498816483, 0.0223154742, 0.0147491572, -0.00748519739, 0.0146532878, 0.00224740291, -0.00694316579, 0.00289267837, -0.00182613, -0.00618358422, 0.0192181524, -0.00711278105, -0.0377283432, -0.0202210937, 0.000536500593, -0.0321236625, -0.00618358422, -0.0117993262, 0.0186281856, 0.00416294951, -0.00996305607, 0.00290558394, 0.0103907809, 0.0350734964, 0.0112609817, -0.0342475437, 0.0200441051, 0.0132594919, -0.0646013096, -0.0305602532, -0.0146827856, -0.00890849065, 0.0195426326, -0.0385837965, 0.0059070373, -0.0305602532, 0.0233479161, -0.00739670219, -0.0211797897, -0.0275514256, 0.0358109549, 0.00994093157, -0.0170795247, -0.0119173191, 0.0351029932, -0.00481928699, 0.00322453445, 0.0198966134, 0.0219172481, 0.0155013641, 0.0242328644, 0.00349923759, 0.000138273346, 0.0206193216, 0.00674405228, 0.0478167683, 0.00225846469, 0.0134807294, -0.00237277057, -0.0340115577, 0.00706853345, 0.00745569915, -0.000923665939, 0.00990405865, 0.0156046087, 0.0260470118, -0.0233626645, 0.00671455357, -0.00983768795, 0.00442474708, -0.00568948733, -0.0199703593, -0.0640703365, -0.0102432901, 0.0104571525, -0.00204460183, -0.0194836371, 0.0298670437, 0.0126547767, -0.00528757274, -0.0102727879, 0.023583902, -0.0151031371, -0.0124851614, -0.0643653199, -0.0191886537, 0.0146090398, 0.0323006548, 0.0481412485, -0.00240042526, 0.00468285754, -0.00410026591, -0.0110766171, -0.0118361991, 0.00731189456, 0.0172860119, -0.0261502564, -0.0234511606, 0.0158848427, -0.0150146419, 0.0210912954, -0.0227137022, -0.0399407186, -0.0051511433, -0.00713121751, 0.00147491577, 0.0159438383, -0.0397047326, -0.0302947685, -0.00392327597, -0.00602134364, -0.0177137386, 0.0127211483, -0.0136798434, 0.00632370124, -0.0148229031, -0.00248523289, 0.00613933662, 0.041150149, -0.00769168558, -0.0499406457, 0.0205308273, 0.000965148, -0.013222619, -0.00323190913, 0.0301177781, 0.00401914539, -0.0129940072, -0.00287424191, -0.0110766171, 0.00929196924, 0.0171975177, 0.00876099896, -0.0173892565, -0.00754050678, -0.0142034385, 0.0047639776, 0.00574110961, 0.03218266, -0.0146680372, 0.00162793824, -0.00941733643, 0.016209323, -0.0271531977, -0.00789817329, -0.0362239294, -0.0314747021, -0.00185286289, 0.0200441051, 0.0166665483, 0.0319761746, -0.01681404, 0.0127211483, 0.0161650758, -0.00341627351, -0.0137904622, -0.0434510186, -0.00455748942, 0.0351324938, 0.00177266437, -0.00415188773, 0.00177727349, -0.0156341065, 0.0136503447, 0.0262387507, 0.0112904795, 0.0101547949, -0.0709139481, -0.0290558394, -0.00407814188, 0.00610983837, 0.0117845768, -0.00252763671, 0.0122196767, -0.00194873242, 0.00261428813, -0.0302062742, -9.09723385e-05, -0.00728977099, 0.00814891, 0.00293692597, -7.77211462e-05, 0.0155013641, 0.000214554151, 0.00612827484, -0.0234954078, 0.0393802486, 0.0151031371, 0.0117624532, -0.0015375996, -0.0214747731, -0.0048156, 0.000250505225, -0.0082890261, 0.000868817559, 0.00489303283, 0.00307888654, 0.0166370496, -0.0128612649, -0.000550788827, -0.00678461231, -0.00734508038, 0.0213420298, -0.0091371024, 0.0242476147, 0.00898961164, -9.69065732e-05, -0.0128243919, -0.013185747, -0.00285580545, -0.00943208579, 0.0118583227, 0.014741783, 0.00549037382, 0.00901173521, 0.0133553622, 0.00573004736, -0.0122196767, 0.00523963803, -0.0139010809, -0.0102801621, 0.0228464436, 0.0183774494, 0.00593284843, 0.00268803397, -0.00799404364, -0.00213678414, -0.0184216965, 0.0430380404, 0.019041162, -0.00164729648, -0.0193213951, -0.00714965397, -0.0120500615, -0.00142513728, -0.00912972819, 0.00209253677, 0.00492621865, -0.0206193216, -0.00447636936, 0.0168287884, -0.0241738688, 0.00387534103, 0.0506781042, -4.45643491e-05, 0.00878312346, -0.025575038, -0.00344024086, -0.0369908847, -0.0254422966, -0.00176252425, -0.00183903554, -0.012669526, 0.0268139672, -0.00945420936, 0.0166370496, 0.00769906025, 0.00401914539, -0.0220794883, -0.00863563176, -0.0173302591, 0.0091961, 0.00143343373, -0.0165928025, 0.00969757, 0.00405601831, 0.001239851, 0.0146754114, 0.000681226724, -0.00616514776, -0.0160618313, -0.0363714211, -0.00155603606, 0.0138347093, -0.0225662105, 0.00271937577, 0.0105603961, -0.0118509475, 0.0234069116, 0.0235544033, -0.00522857625, -0.0420351, 0.00482297456, -0.00063882285, 0.0185249411, -0.022787448, 0.0270794518, 0.0090707317, -0.00729714567, -0.000939336955, 0.00856926, -0.0049114693, 0.020678319, -0.00667399354, 0.00637532305, -0.012389292, -0.00134309509, -0.0114969676, -0.00932884216, -0.0174777508, -0.00440999819, -0.00860613305, 0.00345499, -0.000363198, 0.00127211481, -0.00181875541, -0.0104866503, 0.000806133612, 0.00181045907, -0.0454274043, -0.00691366754, -0.00562311616, 0.00440262351, -0.0280234, 0.0127727697, 0.0195426326, -0.00786867552, 0.00663712062, 0.000927814166, -0.0207668133, -0.0216517635, -0.0265042353, -0.0223449729, 0.0182594564, 0.00318028708, 0.0133996094, 0.00567105087, -0.004959404, 0.00120021263, -0.00848076493, -0.00618358422, 0.000670625712, -0.0213715285, -0.010398156, -0.0132963648, -0.0192034021, -0.00543137733, 0.0189084187, -0.0431265347, 0.0136577198, 0.0234364104, -0.00726396, -0.0114010982, -0.0247343369, -0.00105179928, 0.00155050517, -0.00580748077, -0.0104645267, -0.0061467113, -0.000338539248, -0.0185101926, -0.0127358977, 0.0166960452, 0.00393433776, 0.0302652698, -0.000839780143, 0.0245425981, 0.00236723968, -0.000834710139, 0.00955008, -0.0243951064, -0.0137757128, 0.0251620617, -0.0063421377, -0.0129940072, 0.0249703228, -0.0135323517, -0.0326841325, -0.0271237, -0.00537238037, 0.0111651123, 0.00235617789, 0.0168287884, -0.0170205273, 0.0217697565, 0.025132563, -0.0121533051, -0.0421530902, -0.00917397533, -0.0243066102, 0.021150291, 0.0224334672, -0.0112019852, 0.021828752, 0.0209438037, -0.0026308808, -0.0146532878, 0.00135968789, -0.0269467104, -0.00145463564, 0.0167845413, 0.0241886172, 0.0151621336, 0.00943208579, -0.0116887074, -0.0176842399, -0.00609877659, 0.0382888131, -0.0370498821, 0.00120758719, -0.0127358977, 0.00597709604, 0.00397121068, -0.0189969148, -0.0020575074, 0.029601559, 0.0144762974, -0.0155603606, 0.00170076219, -0.0104497783, -0.000571529847, -0.0138199599, 0.0127948942, 0.0248375814, -0.0326546356, -0.000988193555, 0.0209290534, 0.0287018605, 0.0172270164, 0.024896577, 0.0093730893, 0.0110839913, 0.0313272104, -0.0209880508, 0.0122860484, 0.0073413928, 0.00643432, -0.0058443537, 0.00912235398, -0.0163863134, -0.0340115577, 0.0130235059, 0.00855451077, 0.00114305969, -0.00873887539, 0.00273781223, -0.00978606567, 0.00968282204, 0.00738932751, 0.0185691882, -0.00260875723, -0.0152801266, 0.00872412603, 0.00563049084, -0.026091259, 5.20541544e-05, 0.00413713837, -0.00570792379, -0.0103391595, -0.0103022866, 0.0151473843, 0.0181119647, 0.0161208287, 0.018126715, -0.0185101926, -0.020117851, -0.0461353622, -0.0270204563, -0.00912235398, 0.00298117334, -0.00749257207, -0.00449849293, 0.00662605884, 0.0015753943, 0.0348375104, -0.00799404364, 0.00640113419, -0.0182152092, -0.0112683559, 0.00292770774, 0.00873150118, 0.000451001571, 0.0102432901, -0.0255012922, 0.0171975177, 0.0397637263, -0.00070104585, -0.000419890071, 0.0168435369, -0.0159585886, -0.0314747021, -0.0434805155, -0.00217550062, 0.000179985815, 0.0104719019, -0.00835539773, 0.0206635688, 0.0435395129, -2.68048643e-05, 0.00428463, -0.00540556619, -0.0307667423, 0.0204423312, -0.0204423312, -0.0139600774, 0.0167255439, -0.00562311616, 0.00408551656, 0.0145574184, 0.0143878032, 0.0180382188, -0.0130382553, -0.0346310213, -0.00384953013, -0.00172380777, -0.0191296563, 0.02222698, -0.0179349743, 0.00390483928, 0.00318581797, -0.0152948759, 0.00704272278, -0.00100570812, 0.00122325821, 0.0128317671, -0.00265853549, 0.0194836371, 0.000984506216, -0.0216517635, -0.00828165188, 0.0107447607, 0.0155161135, -0.00561205437, -0.00594022311, 0.0125367837, -0.0172122661, 0.0189674161, -0.0109733725, -0.0044173724, -0.0212535355, 0.00517695397, -0.0052580745, -0.0161650758, 0.0142476857, -0.0135176023, 0.0118214497, -0.0264747366, 0.00088172307, 0.0086798789, 0.000246357027, 0.00823740382, -0.000801524497, 0.00344208465, -0.0119541921, 0.00978606567, -0.013665094, 0.00692841643, 0.00255344785, -0.0162388217, 0.0244541019, -0.0379938297, -0.00266775372, 0.00968282204, 0.0134438565, -0.0235691536, -0.00553093385, 0.0190854091, -0.00322084711, -0.0163863134, 0.00573373493, -0.00983768795, 0.0146164149, 0.0182742048, -0.00977869146, -0.0260470118, -0.00801616721, 0.0125736566, 0.0069911005, 0.0109659983, -0.0336870737, -0.025132563, -0.0101842927, 0.0162683204, 0.00554937031, -0.00116794894, 0.00557886856, -0.0283773784, -0.00887899287, 0.00187867391, -0.0214157756, -0.0270942021, 0.0240263771, 0.0212682839, -0.00262166257, 0.0425365679, 0.00190448493, 0.000436482864, 0.00242992374, -0.0236429, -0.00697635114, 0.0343655348, 0.011592838, 0.00762531441, -0.0171385203, -0.0154866148, -0.0204570815, 0.0308257379, 0.023864137, 0.0348375104, 0.0188346729, -0.03362808, -0.00803829078, -0.0118435733, -0.00896748714, -0.0145205455, 0.0058480408, -0.00769906025, 0.0146827856, -0.0114748441, -0.00692104222, 0.0128612649, 0.0337460712, 0.0050626481, -0.00981556438, -0.0153391231, -0.0229791868, 0.00223265355, -0.0157078523, -0.0120279379, -0.0206488203, -0.00747782271, 0.0076843109, -0.0259880144, -0.0239083841, -0.0046533593, -0.0037370678, 0.000107853215, -0.010995497, -0.0098524373, -0.0193656441, 0.0185101926, 0.0222712271, 0.000287839, -0.0116518345, 0.0205013286, 0.0209438037, 0.0232446715, 0.0172565132, 0.00803091563, -0.0131120011, -0.00938046351, -0.00137904624, -0.0140854456, 0.0146827856, -0.00161134545, -0.00485984748, 0.0112093594, 0.00202432182, 0.0138715822, -0.0175219979, -0.0177579857, 0.0120574357, -0.0171090215, 0.0193951409, 0.012271299, 0.00232483586, -0.0353389792, 0.00240595615, 0.0212387871, -0.00242808, 0.0271974467, 0.00575954607, 0.0122860484, 0.00853976235, -0.0134143587, -0.0203538369, -0.00711646816, 0.00323928357, -0.00209253677, 0.00600659428, 0.0203538369, -0.0164453108, -0.0245573465, 0.00269540842, 0.0366664045, -0.0143288057, -0.0361944325, 0.0325956382, 0.00617989665, 0.0198228676, 0.00339968083, 0.0127211483, -0.0144541739, -0.00837014709, 0.00338308793, -0.000422194629, 0.00813416, 0.00611352548, 0.0020353836, 0.0247490853, -0.0112683559, 0.00115043425, -0.0062536425, 0.00119836896, -0.00918872468, -0.00188328302, -0.0280381478, 0.0193803925, 0.00374444225, 0.00363751082, -0.00410395302, 0.00157447252, 0.0080751637, -0.000531430589, 0.00381634431, 0.0170352757, 0.003595107, 0.0216812603, -0.00566367619, -0.0105898948, 0.000427495106, 0.00278205983, 0.00862825662, -0.015457117, -0.00310838479, -0.00994093157, -3.37617421e-05, 0.00460542412, -0.00394171244, -0.00102322281, 0.00295536243, 0.010235915, 0.0217992552, -0.0116444593, 0.0252653062, 0.00281155808, -0.0274776798, -0.00608034, 0.0259290189, -0.0149998926, 0.0132373683, 0.00460173702, 0.0211650413, 0.00513639394, -0.00867250469, -0.0212977827, 0.00775068207, -0.00730083277, -0.00645275647, -0.00363751082, 0.00452430407, 0.00537606794, 0.003346215, -0.00330565474, -0.00878312346, -0.00432519056, -0.0123966662, 0.0108480053, 0.0121975532, 0.000561389781, 0.0232299231, 0.0098524373, -0.0133184893, -0.00701691164, -0.00957957748, -0.0068399217, -0.00685835816, 0.0136282211, 0.0138494587, -0.0122565497, -0.0154866148, 0.00960170105, 0.0203095898, 0.00414451305, -0.00201141625, 0.0159143414, 0.00493728044, -0.00258294609, 0.0141665656, 0.0156783536, 0.0161798261, -0.030235773, -0.0172860119, 0.0274186824, 0.0314747021, -0.00735982927, -0.00851026364, -0.00350661203, 0.00414820062, 0.0142919337, 0.00398964714, 0.0197048746, -0.0170205273, -0.0227432, 0.00152008503, -0.0277579129, 0.0217697565, 0.0284068771, -0.0128391413, -0.00828165188, -0.0216812603, 0.0215190202, -0.00517326687, 0.0205750745, 0.00553830853, 0.0103907809, 0.00601765607, -0.00428463, -0.0219319966, -0.00897486228, -0.00047658215, 0.00866513, 0.01784648, 0.0081415344, 0.00960907619, 0.00524332514, -0.00437312527, -0.0165780522, -0.00276362337, 0.0158848427, -0.0040707672, -0.00817840733, -0.0194098912, -0.00252948049, 0.0191001594, 0.0118583227, 0.0329496153, 0.000106528096, 0.0173007622, -0.0168287884, 0.034100052, 0.000217434834, -0.0106931394, 0.00740407687, 0.0145647926, -0.0107521359, -0.00751838274, 0.00639375951, 0.00344024086, 0.0143951774, 0.0237608925, -0.00978606567, 0.0156783536, -0.0131120011, 0.00849551428, -0.0111282393, -0.0139969504, -0.00769906025, -0.00512901926, -0.0195426326, -0.00262166257, -0.000930118724, 0.0104645267, 0.00212019123, 0.0122786732, 0.0164895579, -0.0112904795, -0.0230971798, -0.0458698794, 0.0140338233, 0.0107742595, -0.04182861, -0.0184069481, -0.0119984392, -0.0119615663, -0.00068767945, -0.0224924646, -0.000799219939, -0.00707590813, 0.0189379174, 0.0159438383, 0.0056046797, -0.00166112382, 0.0103391595, -0.00303463917, 0.00206119474, -0.028642863, 0.010398156, 0.00762531441, -0.0178169813, -0.00248338934, 0.000517142296, 0.0133922352, -0.0135544753, 0.0073377057, 0.00128594215, 0.0113199782, -0.00412607659, -0.00395277422, -0.0108406302, -0.0194246396, 0.0111282393, 0.0074446369, 0.0201031, -0.00893061422, 0.0273449365, 0.00516220508, -0.00935834, -0.00822265539, -0.0037905334, -0.0213125329, -0.0148376524, -0.00211834768, 0.00593284843, 0.00492621865, 0.0136429705, -0.00921084825, 0.0174040049, 0.00935834, -0.00389009016, 0.0240558758, -0.0144541739, 0.00194320141, 0.0058037932, -0.0038937775, -0.00166942028, 0.0240853745, 0.0128317671, 0.00419244776, 0.0132521177, 0.00308810477, -0.00997043, -0.0119689414, -0.0047602905, -0.0237313937, -0.0261060074, -0.00577429496, -0.0175219979, 0.0105603961, 0.0300882813, 0.0070980317, -0.00308073, 0.0344540328, -0.013148874, -0.0156783536, 0.0161355771, 0.00990405865, 0.0145426691, -0.0267402213, -0.00113937235, -0.00772118382, 0.00707590813, -0.00963857397, 0.00252579316, -0.0117477039, 0.00144541741, -0.00439893594, -0.00616146, -0.0105014, -0.00263825548, 0.00591441197, -0.0174630024, 0.0153243747, -0.00795717072, 0.0165485535, -0.00949845742, -0.016209323, 0.00103520649, -0.0122860484, -0.0113199782, -0.0149482712, 0.0048045381, -0.0158405956, 0.0144836726, 0.0128538907, 0.00448374357, 0.0163273178, -0.0109291254, -0.00054848427, 0.010036801, 0.000774791639, 0.00949108228, 0.0115854628, -0.00262903725, -0.00999255385, 0.0024078, 0.0387902819, -0.015176883, 0.00310285389, -0.00848814, -0.0319761746, 0.0115412157, -0.000352827483, -0.0101474198, 0.0173007622, -0.00360248168, -0.00761056505, -1.94302866e-05, 0.00747044804, 0.00422563357, -0.0193951409, 0.00423669536, 0.00903385878, 0.0211355425, 0.00896011293, -0.00724552339, 0.0156046087, -0.0228759423, -0.00490040751, 0.0356634632, -0.00532444566, -0.00460173702, 0.0236576479, 0.0107447607, -0.00281524542, -0.015176883, -0.00285580545, 0.00115135603, 0.0277136657, -0.00185562833, 0.00259769522, -0.00293508219, -0.00599184493, -0.00198376155, -6.70841791e-06, -0.0116813323, -0.0214452744, 0.00170444953, 0.00154589606, -0.0027728416, -0.00467548287, 0.00254791696, 0.00299407891, 0.00608034, -0.010516149, 0.0295130629, 0.0108332559, -0.0134954788, 0.0215337686, -0.0180087201, -0.0223007258, -0.00202616537, 0.00100109901, 0.00909285527, -0.0159438383, -0.0107447607, 0.00605084188, 0.00889374223, -0.00522857625, 0.0104792761, -0.00444318354, 0.00884212, 0.00879049767, -0.01119461, 0.0521530211, -0.0121385567, -0.00136798434, 0.0273449365, 0.00317475619, -0.00488197105, 0.029041091, 0.0152948759, 0.0124999108, 0.00103705015, -0.0241296217, -0.00308441743, -0.00301435892, 0.0120869344, -0.00485984748, 0.00351398671, 0.0091592269, -0.00338493148, -0.00758844148, -0.0224924646, -0.0218582507, -0.0172122661, 0.00410395302, -0.0018086154, 0.00196901243, -0.00542768976, -0.00116518338, 0.0161945745, -0.0118804462, -0.00929196924, 0.00875362474, 0.00191923406, -0.00286502368, 0.00726764742, -0.00698741339, -0.020235844, 0.00153114693, -0.00757369213, -0.000635596516, -0.00650437828, -0.0134291071, -0.00730820745, -0.0279791504, -0.00665924465, 0.0046570464, 0.0239083841, 0.0161355771, -0.00766956154, 0.00365963462, 0.0119394427, 0.0207078159, -0.00349001936, -0.0164453108, -0.00592916133, -0.0192771479, -0.0136355963, -0.00440999819, 0.00452061649, -0.00692472933, 0.0094615845, 0.0179792233, -0.0206635688, 0.000627761, 0.0157078523, 0.0166960452, 0.00139010802, 0.00198560534, -0.0213272814, 0.0146532878, -0.0199408606, -0.0063458248, -0.0201473478, 0.0184806939, 0.00811941084, 0.0210470464, -0.0320056714, -0.0105382726, -0.0197343715, -0.0217550062, 0.000391544017, -0.00116518338, 0.00683254702, -0.0327431299, -0.00290374039, 0.0155603606, -0.0173155107, -0.0117845768, -0.0220057424, 0.00787605, 0.0175662469, -0.00613196194, -0.00362644903, 0.0120058144, -1.97903737e-05, 0.00600659428, 0.0114748441, 0.00189711037, 0.00632370124, -0.00737457862, 0.0151326349, 0.00655231299, -0.0143288057, -0.000348909758, -0.00304201362, 0.00668136822, -2.25702443e-05, 0.00338861882, 0.00784655195, -0.00523963803, 0.00721971225, 0.00467548287, 0.00202432182, -0.00961645, -0.0114969676, 0.00376656605, -0.00630526477, 0.00924034696, 0.0019597942, 0.0189821646, 0.00696897693, 0.00955008, 0.00760319037, -0.00112462323, -0.0154128689, 0.00683623413, 0.000524055969, 0.0113716, -0.0181857105, -0.00511427037, 0.0105087748, 0.00395277422, -0.00270831399, -0.0114084734, 0.0125589073, 0.0091371024, -0.0201768465, -0.00980818924, -0.00207225652, -0.00766218733, -0.00717546511, 0.000576138962, 0.0010665484, 0.00259216432, -0.0134807294, 0.0188936703, 0.0131267495, -0.0089822365, 0.00640850887, -0.01557511, -0.0223449729, 0.0217255093, 0.00260875723, 0.00851026364, -0.00578904431, -0.00941733643, -0.000145187019, -0.00496677868, -0.0210617967, 0.0130308801, 0.0113789747, -0.0220794883, 0.0051105828, -0.0232151728, -0.00554199563, -0.037521854, 0.000252348866, 0.00735982927, 0.00851026364, 0.00353795406, -0.00608771481, 0.00334805879, 0.00351398671, 0.00318213063, 0.00647119293, -0.0158405956, 0.0157226, 0.00400070893, -0.00871675182, -0.00282446365, -0.0215632673, -0.0360174403, 0.0114010982, -0.0116518345, 0.019999858, -0.0247638356, -0.00673299, 0.00554199563, 0.0009798971, 0.00310838479, -0.0165485535, -0.00231930497, 0.00245942199, -0.00626470428, 0.0126990248, -0.00249998225, -0.0119984392, -0.0107447607, -0.00477135228, -0.00758106681, -0.0132816164, 0.00204828917, 0.0277431644, 0.0118583227, 0.0120353121, -0.0146754114, -0.00103612826, -0.010036801, 0.00781705324, 0.00044293562, 0.0130898766, -0.0119763156, 0.0108037572, 0.0033904626, 0.0122418, 0.000947633351, -0.0209438037, 0.0148819, 0.00971969496, -0.0233184174, 0.0198671147, 7.38034e-05, 0.00797929429, 0.00129700406, 0.025855273, -0.0154718654, 0.0177137386, 0.0163420662, 0.0208848063, 0.0130308801, 0.00120482175, 0.0066887429, 0.0385248, 0.020796312, -0.0328316242, 0.0100073032, 0.00856926, -0.0217550062, 0.0056858, -0.00955745392, -0.0187166799, 0.00440999819, 0.000737457885, -0.00734508038, -0.0225072131, -0.00484878523, 0.0312387142, 0.0108848782, -0.00960907619, 0.00243545463, 0.0133479871, 0.0240706243, -0.0286281146, -0.0291000865, -0.0053060092, -0.00304017, 0.00634951238, 0.00162609457, -0.00310654123, 0.0193213951, -0.0107816337, -0.00621308247, 0.026091259, -0.00307888654, 0.016209323, 0.0270942021, 0.0139895752, 0.00320056709, 0.000203261821, 0.0257520285, 0.00421457179, -0.0240263771, -0.0153686218, -0.00666661886, 0.0160028357, -0.0129276365, -0.0134143587, 0.00531707099, -0.0220499896, 0.0108848782, 0.00199666712, 0.00860613305, 0.00412238948, 0.0166812968, 0.00842176843, 0.000835171, 0.00769906025, -0.0124409143, 0.001733026, 0.0244836, -0.001981918, -0.00517326687, 0.00271384488, -0.0326546356, -0.0139969504, 0.0148081537, 0.00585172791, 0.00698003871, 0.0167402942, -0.0140485726, -0.0147934044, -0.0111651123, 0.0051068957, -0.00814891, -0.0254865438, 0.0150736384, 0.00603609253, 0.0299997851, 0.0227137022, -0.00873887539, 0.00235249056, -0.0204718299, 0.0120943086, 0.00622045714, 0.0251178145, -0.0106267678, -0.0162830688, 0.0198966134, 0.020117851, 0.0129940072, 0.00720496336, 0.0272416938, 0.00877574831, 0.0119468169, -0.00890849065, 0.0126916496, 0.0217697565, -0.0139084551, -0.00720127579, 0.0221679825, -0.00435100123, -0.000514837739, 0.0185396913, -0.0051511433, -0.00770643447, -0.00642694533, -0.0133922352, -0.0109733725, 0.0101547949, 0.0204718299, 0.0051068957, -0.00734876748, -0.0216665119, 0.0157226, 0.0199113619, 0.0153686218, 0.0168877859, -0.00013424037, -0.0173450094, -0.0137535892, 0.0040707672, -0.00267328485, 0.0128907636, 0.0036670093, 0.000470590283, 0.0055014356, 0.0175809953, 0.00256266608, 0.00431412831, -0.0147196585, 0.00425881892, 0.0232151728, 0.00172288588, -0.0103612831, -0.0213420298, 0.00783180259, -0.0182889551, -0.019955609, 0.0333035961, -0.0092845941, 0.00661868416, -0.0109586241, 0.00308810477, 0.0236871466, 0.00522120157, 0.00840702, 0.0239526313, -0.0143656787, -0.0190706607, -1.1659612e-05, -0.0034973938, 0.00946895871, 0.00278205983, 0.0233036689, -0.0151178865, 0.0296753049, 0.00211097323, -0.00561942905, -0.00107115752, 0.0260617603, -0.0110249948, 0.00731189456, 0.0158110969, 0.00286318013, -0.0110839913, -0.00030351, 0.00425513182, 0.00560099259, -0.0123671684, -0.00839227065, -0.0214895215, -0.0225367118, 0.0106120184, 0.0272711925, -0.00831115, -0.0156046087, -0.00259032077, 0.010715263, 0.00367622753, -0.00281340163, -0.0226104576, -0.0281561408, 0.0186576843, -0.00168785662, -0.00745938625, 0.0102580385, -0.00147860299, 0.0158110969, 0.00154681783, -0.00589597551, -0.00525438739, 0.00346420822, -0.000782166258, 0.0352209881, 0.00398964714, -0.00908548106, 0.000140347445, -0.0251178145, 0.0230529327, -0.0174630024, 0.00455011521, -0.0150515148, -0.00435837591, -0.0105898948, -0.0150810136, -0.0207373146, -0.00529494742, -0.0219614953, -0.00741513865, 0.00511427037, 0.0197933689, -0.00338308793, 0.0120721851, -0.0120058144, -0.000930579612, -0.000818578235, 0.020914305, 0.0108553795, 0.0457518846, 0.00184456643, -0.00990405865, -0.000801063608, -0.0160175841, -0.0112019852, -0.00390115217, -0.0239378829, 0.0231561773, -0.00216812617, 0.0118288239, -0.00404126896, -0.00508108456, 0.00710540637, -0.00870937761, 0.00905598234, 0.0140780704, -0.00584066613, 0.0073413928, 0.00181138085, 0.0181857105, 0.00863563176, -0.029719552, -0.0203538369, 0.026651727, -0.00295167509, 0.00839964487, -0.00707590813, -0.0208700579, 0.00990405865, -0.000357897516, -0.0289673451, 0.00666661886, -0.0200441051, 0.00733033102, -0.0042625065, -0.0128538907, -0.00832589902, 0.00102322281, -0.0126400273, -0.00132834597, 0.00996305607, -0.015973337, 0.00329090562, -0.00334252766, 0.00696160225, 0.0354864709, -0.00366147817, -0.00728239631, 0.0202653427, 0.00728977099, -0.0130825024, 0.0153243747, 0.00207594386, 0.00620570779, -0.00166573294, 0.019837616, -0.00402652, 0.0333920904, -0.0107521359, -0.0171532705, -0.00158829987, -0.023583902, 6.94247428e-05, -0.00745201157, -0.00618358422, -0.00806778856, -0.0126621518, 0.00114305969, 0.00931409281, 0.000144726102, -0.0130825024, 0.0067956741, -0.000121104407, 0.00828165188, 0.0142845586, -0.0194983855, -0.000509767735, -0.000148528619, 0.00648594182, 0.00977131631, 0.00802354142, -0.024100123, 0.0188346729, -0.00231377408, -0.00257925875, 0.0175219979, -0.00173671322, 0.000584896246, -0.0144394245, -0.00966807269, -0.0223302245, -0.0083775213, 0.0287903547, 0.0226989537, -0.0200146064, -0.00087066117, -0.0162240732, 0.0147934044, 0.0128022684, 0.0095279552, 0.0167255439, -0.00282261986, -0.00127672392, -0.00151455402, -0.00636057416, -0.034542527, 0.0101621691, 0.00203354, 0.00018978017, 0.0134659801, 0.0195868816, -0.00136245345, 0.00857663527, 0.00596234668, -0.00627207896, -0.01286864, 0.0191149078, -0.0261650048, -0.0209585521, -0.0281708911, -0.00952058099, 0.0037684096, -0.00424407, -0.0105235232, -0.0194393899, -0.0262387507, -0.0273154397, -0.0172417648, -0.0127580212, 0.0333920904, -0.00279680896, 0.0273449365, 0.00392327597, -0.000774330751, 0.0251915604, -0.0113642253, 0.0172122661, -0.0153981205, -0.00523963803, -0.0226104576, 0.0116592087, 0.000109178334, 0.00848814, 0.00408551656, 0.00127395848, 0.00532813324, 0.0157226, 0.0212535355, 0.000271015771, 0.01784648, -0.0242033675, -0.00856188592, -0.0423300825, 0.000728239655, 0.027728416, 0.0329201184, -0.012588406, -0.00615777308, 0.0188494232, -0.017610494, -0.00141960639, 0.0183627009, -0.00121588365, 0.00991880801, -0.00736351684, 0.0105751455, 0.0114453463, 0.005696862, 0.0134881046, -0.0144541739, 0.0104940254, -0.00993355736, 0.00974181853, -0.0226252079, 0.00475660339, -0.0201915968, 0.00448743114, 0.00740407687, -0.0166223, -0.0249113273, -0.014977769, -0.00216443883, -0.0106562665, 0.0136577198, 0.0236723982, -0.0358404517, -0.0263124965, -0.0188641716, -0.0186576843, -0.0215337686, 0.0174630024, -0.0192918982, 0.00681042345, -0.00537606794, -0.0157078523, -0.0210912954, -0.0140338233, 0.0160028357, 0.00585910259, -0.00392327597, 0.00152008503, 0.0206045732, -0.000253270671, -0.00514008105, -0.0327431299, -0.0115264663, -0.00665555708, 0.00467179576, -0.016651798, -0.013104626, 0.00537606794, 0.0220647398, -0.0172712635, -0.0351324938, -0.00114121602, -0.00586647727, 0.0174777508, 0.0122860484, -0.00176528969, 0.00270093931, 0.0170057788, 0.0160618313, -0.00356560876, 0.0259142686, -0.0018952667, 0.00886424351, -0.00019219995, -0.00191370316, 0.0024262364, -0.0156636052, -0.0134954788, 0.00671455357, 0.0310912225, -0.00191001582, 0.00135415699, 0.00216996972, -0.00416294951, -0.00375550403, -0.00360801257, 0.0268582143, 0.00114029425, -0.00806778856, -0.0107300114, -0.0122123025, -0.000921361439, -0.00662605884, -0.00862088241, -9.5984753e-05, -0.0293360744, 0.00286318013, -0.0142993079, 0.0134512316, -0.00103059737, 0.00283736922, 0.00811203662, 0.000282308087, 0.0337165743, 0.00817103311, 0.000812586397, 0.018642934, -0.0123302955, -0.0127801448, 0.0183184538, 0.00299592246, 0.00604346721, -0.015457117, 0.0112978546, 0.0176399928, 0.0121459309, 0.00449849293, -0.00191923406, 0.00650069118, 0.00133479876, -0.0179349743, -0.00499627693, -0.00390852662, 0.00239120703, 0.00318028708, -0.00751100807, -0.0174777508, -0.0239673797, 0.00844389293, 0.02398213, 0.0221237354, 0.00678829942, -0.0172712635, -0.000674313051, -0.0106562665, -0.00306413742, 0.00936571509, 0.0112019852, -0.00639007241, 0.00466073351, -0.0166960452, 0.0104940254, 0.0088347448, -0.00633845, -0.00761793973, -0.00186945568, 0.00230086851, -0.00528388564, -0.0017597588, -0.00647856714, -0.0090707317, 0.00183627009, 0.00735245505, -0.0169172827, -0.0169762801, -0.00355639053, -0.00613196194, 0.0210028, -0.019159155, 3.18316779e-05, 0.0228169467, -0.0340410545, 0.0145352948, 0.0136577198, 0.00693210401, -0.00983768795, -0.0166665483, -0.0134143587, -0.00256266608, 0.00640850887, -0.00306598097, -0.0068841693, 0.00936571509, 0.0120279379, -0.0140117, -0.00083839742, -0.00847339071, -0.0383478068, 0.014144442, 0.00477504, -8.08322948e-05, -0.0245425981, 0.00333699677, 0.0149925184, -0.0142181879, 0.00287239836, -0.00124814746, 0.00724921096, -0.0010886722, 0.0179939717, -0.00949845742, -0.00501102628, -0.00209991122, 0.0108258817, -0.00769906025, -7.04617923e-05, -0.00238936348, -0.0203980841, -0.00811941084, -0.00831852481, -0.0191149078, 0.0196606256, -0.00686573284, -0.00693210401, -0.00497415336, 0.0106267678, -0.00589966308, -0.00494834222, -0.0219614953, -0.00227874471, -0.0182594564, -0.00629789, -0.00490409462, 0.0176694896, -0.0114010982, -0.023023434, -0.00205382, 0.00579273142, 0.01067839, 0.0110839913, 0.00410026591, 0.028642863, 0.0194688868, 0.0230824314, -0.0146090398, 0.010199042, 0.0115780886, -0.0248670783, -0.0243361089, -0.0255602896, 0.0172860119, -0.00639375951, 0.00660762237, 0.00226399559, -0.0010398156, -0.0220499896, 0.0189821646, -0.018082466, 0.0140780704, 0.0209585521, 0.0132889906, -0.000597801758, 0.0156046087, -0.00348817557, 0.0152358795, 0.0431855321, 0.0148671502, -0.0039195884, -0.0122786732, -0.00748151, 0.0155898593, -0.0190559104, 0.00873887539, 0.0133627364, -0.0178317316, -0.00283552543, 0.026209252, 0.0261797532, 0.0454274043, 0.0115633393, -0.00468654465, 0.0215337686, 0.0115854628, -0.00236170879, -0.00695054047, 2.67616542e-05, -0.0126252789, 0.00330012385, 0.0189379174, -0.00413345126, -0.0207078159, -0.0176399928, -0.00342364819, -0.0105603961, -0.00172472955, -0.00421088422, 0.000970678928, 0.00149519579, -0.0109512489, -0.00674036471, -0.0237313937, 0.00705009699, 0.00231377408, -0.0206488203, -0.00470498111, -0.0407961681, -0.018126715, -0.00579273142, 0.00087619212, 0.0305307545, -0.00453167874, -0.00852501299, 0.0121385567, -0.022787448, -0.0062536425, 0.019159155, -0.00101584825, -0.0010508775, -0.0171237718, 0.000532352366, 0.00808991306, 0.00145555742, -0.00822265539, -0.0176399928, -0.00523226336, -0.0006577202, -0.0192181524, 0.0101842927, -0.00203354, -0.0155308628, 0.0184364468, 0.00139932625, -0.00215890794, -0.020235844, 0.00374628603, 0.00422563357, 0.0116887074, 0.00655968767, -0.00531338388, -0.0188346729, 0.00964594912, 0.0175072495, -0.0130530037, 0.0101621691, -0.0249408241, 0.0046533593, 0.00471973047, 0.0166075509, -0.00553462142, -0.00311207213, 0.00611721305, -0.0094615845, 0.000251196587, -0.000710264081, 0.017610494, -0.014380428, -0.0268582143, -0.00917397533, -0.0184511952, -0.000969757093, 0.0123007968, -0.0300440323, -0.01330374, 0.00661499705, 0.00964594912, -0.00988931, -0.00906335749, 0.0125367837, -0.0154866148, -0.00882737059, 0.00141684094, -0.0182742048, 0.0192624, 0.0139969504, -0.00552355917, -0.0349555, 0.00390852662, 0.0282888841, 0.00423300825, 0.0391442627, -0.0102949115, -0.0131783718, -0.00770643447, 0.00235986523, 0.00412976416, -0.00583329145, 0.0124999108, -0.000692749454, -0.0133701107, -0.000784931704, -0.00731189456, -0.0135544753, 0.0650732815, 0.015176883, 0.0261502564, -0.019159155, 0.00763268862, -0.00502946274, -0.00117255794, 0.0413566381, -0.0195426326, 0.030235773, -0.0107447607, -0.0151178865, 0.0205308273, -0.00695054047, 0.00960170105, -0.0110544935, -0.0160323344, -0.00440631062, 0.0204423312, -0.0111208642, 0.0100515503, -0.00758844148, 0.017610494, -0.0307667423, -0.00856926, -0.00808253791, 0.0110249948, 0.00695791468, -0.0208700579, 0.0020796312, 0.00853976235, -0.00955008, 0.00486353459, -0.0080751637, -0.0456928872, -0.0117993262, 0.0127653955, -0.01111349, 0.00475291582, -0.0192624, 0.00380159519, 0.0173745062, -0.00222159177, 0.0173892565, 0.00446162, -0.00755156856, -0.00114951248, 0.00781705324, 0.00329828029, -0.00248707668, -0.00516957976, -0.00455011521, 0.000815812731, -0.0182299577, -0.00150072679, 0.0222564787, 0.00761793973, 0.00109512487, 0.0150810136, 0.0182152092, -0.00948370807, 0.00739670219, 0.0175809953, 0.0136355963, 0.006194646, -0.0093730893, -0.0197638702, 0.0195426326, 0.0082890261, 0.00134493876, -0.0115043428, -0.00286318013, 0.0269024633, 0.00643063243, -0.00144449563, -0.00730820745, 0.0196163785, 0.0115780886, -0.00725658517, -0.00640113419, 0.000369881222, 0.00735245505, 0.0161798261, -0.028082395, 0.00625733, -0.0054535009, 0.0154718654, -0.00835539773, 0.00552355917, 0.0140854456, 0.0138273351, 0.0160175841, -0.0258110259, 0.00873150118, 0.0113642253, 0.0103907809, -0.0202505924, 0.00553093385, 0.00453167874, -0.0172270164, 0.0219614953, -0.0107668843, -0.0166075509, 0.017964473, -0.0168435369, -7.01161116e-05, -0.00571529847, -0.00487828394, 0.0184364468, -0.00564155262, 0.021990994, 0.00117716705, 0.00707222102, 0.0263714939, 0.0220499896, 0.00461648637, 0.023701895, -0.000128018073, -0.001239851, 0.00366885285, 0.00144910475, 0.00582960434, -0.0133479871, -0.00540556619, -0.0197638702, 0.0124556636, 0.0315926932, -0.0152063807, 0.0091961, -0.000131129229, 0.0103465337, -0.0176547412, 0.0158995911, 0.00229533762, 0.00915185176, 0.00327246916, -0.0120279379, 0.00102322281, -0.00969019625, -0.00797929429, 0.010516149, 0.016209323, 0.0114453463, 0.0252505578, 0.00422932068, -0.00264931726, 0.018687183, -0.0279791504, 0.0325661376, 0.00233221054, -0.00826690253, 0.000661407539, -0.00171366765, -0.00784655195, -0.00571898557, 0.0109807476, -0.00620939536, -0.0272859409, 0.0105898948, -0.00081212545, -0.0312387142, -0.00726027275, 0.0155013641, 0.0199703593, 0.0181414634, 0.00577429496, 0.00463861, 0.015457117, 0.00697266404, 0.0108406302, 0.0343360379, 0.0114305969, -0.00734508038, 0.00977869146, -0.0253243037, -0.00704272278, 0.0143361809, 0.014778655, -0.00359326345, -0.0154423676, -0.0195868816, 0.005954972, -0.0108258817, 0.0385542959, -0.00416663708, -0.0136503447, 0.00736720394, 0.0121164322, 0.0355454683, -0.01681404, -0.0117993262, 0.0203390885, -0.00359879434, -0.00682148524, -0.0191001594, 0.00407814188, 0.0248080827, 0.0113199782, 0.00868725311, 0.0108480053, 0.0102580385, 0.000725935097, 0.00268619019, 0.021828752, 0.000774791639, 0.0184511952, 0.00603240542, 0.00747413561, -0.00813416, 0.00603609253, -0.0152506288] |
15 Apr, 2021 | Minimum elements to be removed such that sum of adjacent elements is always even
15 Apr, 2021
Given an array of N integers. The task is to eliminate the minimum number of elements such that in the resulting array the sum of any two adjacent values is even.
Examples:
Input : arr[] = {1, 2, 3}
Output : 1
Remove 2 from the array.
Input : arr[] = {1, 3, 5, 4, 2}
Output : 2
Remove 4 and 2.
Approach: The sum of 2 numbers is even if either both of them is odd or both of them is even. This means for every pair of consecutive numbers that have the different parity, eliminate one of them.So, to make the adjacent elements sum even, either all elements should be odd or even. So the following greedy algorithm works:
Go through all the elements in order.
Count the odd and even elements in the array.
Return the minimum count.
Below is the implementation of the above approach:
C++
// C++ implementation of the above approach
#include <bits/stdc++.h>
using namespace std;
// Function to find minimum number of eliminations
// such that sum of all adjacent elements is even
int min_elimination(int n, int arr[])
{
int countOdd = 0;
// Stores the new value
for (int i = 0; i < n; i++)
// Count odd numbers
if (arr[i] % 2)
countOdd++;
// Return the minimum of even and
// odd count
return min(countOdd, n - countOdd);
}
// Driver code
int main()
{
int arr[] = { 1, 2, 3, 7, 9 };
int n = sizeof(arr) / sizeof(arr[0]);
cout << min_elimination(n, arr);
return 0;
}
Java
// Java implementation of the above approach
class GFG
{
// Function to find minimum number of
// eliminations such that sum of all
// adjacent elements is even
static int min_elimination(int n, int arr[])
{
int countOdd = 0;
// Stores the new value
for (int i = 0; i < n; i++)
// Count odd numbers
if (arr[i] % 2 == 1)
countOdd++;
// Return the minimum of even
// and odd count
return Math.min(countOdd, n - countOdd);
}
// Driver code
public static void main(String[] args)
{
int arr[] = { 1, 2, 3, 7, 9 };
int n = arr.length;
System.out.println(min_elimination(n, arr));
}
}
// This code is contributed by Code_Mech
Python3
# Python 3 implementation of the
# above approach
# Function to find minimum number of
# eliminations such that sum of all
# adjacent elements is even
def min_elimination(n, arr):
countOdd = 0
# Stores the new value
for i in range(n):
# Count odd numbers
if (arr[i] % 2):
countOdd += 1
# Return the minimum of even and
# odd count
return min(countOdd, n - countOdd)
# Driver code
if __name__ == '__main__':
arr = [1, 2, 3, 7, 9]
n = len(arr)
print(min_elimination(n, arr))
# This code is contributed by
# Surendra_Gangwar
C#
// C# implementation of the above approach
using System;
class GFG
{
// Function to find minimum number of
// eliminations such that sum of all
// adjacent elements is even
static int min_elimination(int n, int[] arr)
{
int countOdd = 0;
// Stores the new value
for (int i = 0; i < n; i++)
// Count odd numbers
if (arr[i] % 2 == 1)
countOdd++;
// Return the minimum of even
// and odd count
return Math.Min(countOdd, n - countOdd);
}
// Driver code
public static void Main()
{
int[] arr = { 1, 2, 3, 7, 9 };
int n = arr.Length;
Console.WriteLine(min_elimination(n, arr));
}
}
// This code is contributed by Code_Mech
PHP
<?php
// PHP implementation of the above approach
// Function to find minimum number of
// eliminations such that sum of all
// adjacent elements is even
function min_elimination($n, $arr)
{
$countOdd = 0;
// Stores the new value
for ($i = 0; $i < $n; $i++)
// Count odd numbers
if ($arr[$i] % 2 == 1)
$countOdd++;
// Return the minimum of even
// and odd count
return min($countOdd, $n - $countOdd);
}
// Driver code
$arr = array(1, 2, 3, 7, 9);
$n = sizeof($arr);
echo(min_elimination($n, $arr));
// This code is contributed by Code_Mech
?>
Javascript
<script>
// Function to find minimum number of eliminations
// such that sum of all adjacent elements is even
function min_elimination(n, arr)
{
let countOdd = 0;
// Stores the new value
for (let i = 0; i < n; i++)
// Count odd numbers
if (arr[i] % 2)
countOdd++;
// Return the minimum of even and
// odd count
return Math.min(countOdd, n - countOdd);
}
// Driver code
let arr= [1, 2, 3, 7, 9];
let n = arr.length;
document.write(min_elimination(n, arr));
</script>
Output:
1
Time Complexity: O(N )
Auxiliary Space: O(1) | NLP/Natural Language Processing (NLP) Tutorial/AI ML DS - Projects/30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated]/Does Artificial Intelligence Require Coding?/Artificial Intelligence – Boon or Bane/Artificial Intelligence Examples/Agents in Artificial Intelligence/What are Diffusion Models?/ML | Common Loss Functions/Loss Functions in Deep Learning/Kaiming Initialization in Deep Learning/Swift - Initialization/Swift – If Statement/6 Best iOS Project Ideas For Beginners/Swift Programming Language/Introduction to Visual Programming Language/What is D Programming Language: Usage and Applications/Best Programming Languages for Data Science in 2024/5 Best Languages for Competitive Programming/MEX (Minimum Excluded) in Competitive Programming/Rearrange Array to maximize sum of MEX of all Subarrays starting from first index/Minimize moves to segregate even and odd by swapping adjacent elements/Minimum elements to be removed such that sum of adjacent elements is always even | https://www.geeksforgeeks.org/minimum-elements-to-be-removed-such-that-sum-of-adjacent-elements-is-always-even/?ref=ml_lbp | NLP | Minimum elements to be removed such that sum of adjacent elements is always even | Artificial Intelligence – Boon or Bane, AI ML DS - Projects, Rearrange Array to maximize sum of MEX of all Subarrays starting from first index, MEX (Minimum Excluded) in Competitive Programming, Swift - Initialization, 6 Best iOS Project Ideas For Beginners, ML | Common Loss Functions, Artificial Intelligence Examples, What is D Programming Language: Usage and Applications, 30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated], Swift – If Statement, Natural Language Processing (NLP) Tutorial, Loss Functions in Deep Learning, Minimize moves to segregate even and odd by swapping adjacent elements, Does Artificial Intelligence Require Coding?, Best Programming Languages for Data Science in 2024, NLP, 5 Best Languages for Competitive Programming, Swift Programming Language, Minimum elements to be removed such that sum of adjacent elements is always even, Agents in Artificial Intelligence, What are Diffusion Models?, Kaiming Initialization in Deep Learning, Introduction to Visual Programming Language | GeeksforGeeks | [-0.012085353, -0.000344894506, -0.012484869, -5.44540926e-05, -0.0048798, 0.0390098654, 0.0302490536, 0.0151102589, -0.0146037294, 0.0064564608, -0.0388671793, -0.0223158114, 0.0207748227, -0.000478438, -0.0295927059, -0.0135835372, -0.00783336349, -0.0040236949, 0.00635658205, -0.0498824, -0.0103945453, 0.00148213236, -0.0109224766, 0.00186559616, -0.0123921242, 0.0348149501, 0.0262253601, 0.0144967167, -0.0454591922, 0.022743864, 0.000309669354, 0.00445531448, 0.0250981543, -0.00868946873, 0.00174788164, 0.00582151627, 0.0160947796, 0.0378969274, 0.00658844365, 0.0187487062, 0.00311765, -0.00367411855, -0.0311336964, -0.00684884237, 0.00758366613, 0.0224299598, 0.0246272963, -0.0111935772, -0.0098523451, 0.00410930533, 0.000196971101, -0.00364379818, 0.0249554701, 0.0260256, 0.00684170844, 0.0194906648, -0.0200899374, 0.0251837652, 0.00906758197, -0.00809732918, 0.0405223183, -0.0359849595, -0.0258971862, 0.00194763963, 0.0097596, 0.00326746865, -0.0385532752, 0.0474282354, 0.00569310039, 0.00864666328, -0.0808163434, 0.0296497811, -0.00664908439, -0.0256688911, 0.00132607145, -0.020589333, 0.0173504017, -0.0157951433, -0.0212599486, 0.0345866531, -0.0451452881, 0.00524721202, -0.012242306, -0.0224584956, 0.0346437283, 0.00179782114, 0.00633161236, -0.0308768656, 0.0307341814, 0.0280517172, -0.00633517932, 0.0170507636, -0.0200328641, -0.00829708762, 0.00377399754, 0.0475709178, 0.029821001, 0.0110080875, -0.0412072, 0.0410074443, 0.00842550304, 0.00458373036, 0.00180763064, -0.00316758966, 0.024413269, -0.000205554446, -0.0154098952, 0.0373261906, 0.0155383116, 0.0333024971, 0.00846117456, 0.00599987153, 0.00164354383, 0.0232717954, 0.0290933121, -0.0535636544, -0.0196904223, -0.0252408385, 0.0166797843, 0.0356710553, 0.0213455595, 0.00941002462, 0.0241992436, 0.0175073538, -0.0519370548, 0.0144325085, 0.0306771062, 0.0332739614, 0.00722338865, -0.0180780906, 0.0171221066, -0.0297924653, 0.024013754, -0.034672264, -0.015823679, -0.0022865145, 0.0103517398, 0.0113647981, -0.00728402939, 0.0291361175, -0.00766214263, -0.0136691481, -0.000997006, 0.0109938188, 0.00418778183, 0.00495827664, 0.0022151724, 0.0468004234, -0.0437469818, -0.00821147673, -0.0543341488, 0.0140329925, 0.00365985022, 0.0127488347, 0.023699848, -0.0189341959, 0.00369195407, -0.0132696321, -0.0214311704, -0.0749377534, 0.0193479806, 0.00080661173, -0.0187915117, -0.0198616423, -0.055418551, 0.00364023121, 0.0066954568, 0.0140972007, -0.0290933121, 0.0339017697, -0.0046515055, 0.0131768873, 0.0237426534, 0.0307341814, 0.00228116382, -0.0220447108, 0.0338732339, -0.0041021714, 0.029178923, -0.0334166437, 0.0172647908, -0.00906044804, 0.00587502262, 0.000622014, 0.0226725228, -0.0186916329, 0.00012507163, -0.0420918427, -0.00453379098, 0.00405936595, -0.0159949, 0.0026004198, -0.026881706, 0.0202611592, 0.0364986211, -0.0207462851, -0.0346437283, -0.0131126801, 0.00582151627, 0.00055691431, -0.0128915189, -0.0288079437, -0.000235428961, 0.0154955061, 0.0516516864, -0.0273811016, -0.0104230819, -0.0419776961, 0.0185204111, 0.00931728, -0.0227153283, 0.047542382, -0.023699848, -0.0196476169, 0.0127131641, 0.0221445914, -0.021388365, 0.0434045382, 0.0200471319, 0.0171791799, -0.0135835372, 0.0158094112, 0.0199187174, -0.0131483506, -0.0267675593, 0.0145252533, -0.00667048711, 0.036184717, -0.0138261011, -0.0190911479, -0.0247414429, 0.0399515815, -0.00786903501, 0.00465864, -0.013754759, 0.00614968967, -0.0239424109, 0.0228009373, 0.0402084142, 0.0362417921, -0.0134265851, 0.0207890905, -0.0625527576, -0.0298780743, 0.022501301, -0.00157576881, -0.0281944014, 0.0482558, 0.036584232, 0.0448599197, -0.0190768801, -0.0124349296, 0.00422702, -0.00327817, -0.0353571475, 0.00989515055, 0.00118873792, -0.00122084189, 0.0120996218, 0.0241136327, -0.016066242, 0.00555398315, -0.0333310328, 0.0185061432, 0.0487694666, 0.0107013164, 0.0301919803, 0.00414854381, 0.0210031178, 0.00276450673, 0.00982380845, -0.00318542519, -0.00973106362, -0.0204751845, 0.00541486591, -0.0187487062, -0.0430621, -0.0205750633, 0.0461726114, 0.000977386837, -0.0282514747, 0.00811159797, 0.0373832658, 0.035243, -0.0136905508, -0.0105943028, -0.000560481451, -0.0193337109, -0.0877222568, -0.0269245114, 0.000709408079, -0.0339017697, 0.00511166221, -0.00586788869, 0.0390669405, 0.00906044804, -0.0468289591, -0.022815207, -0.0421774536, -0.0221303217, -0.0368696, -0.0554470867, 0.0178497955, -0.00584291853, -0.0365271606, -0.0334737189, -0.00953844, -0.0208747014, -0.0388671793, -0.015823679, 0.0212884862, -0.0440894216, -0.0128344456, -0.0365271606, -0.0596990772, -0.0317044333, 0.0645503402, -0.0151387956, 0.00122262537, -0.0176215, -0.0202468913, -0.0377542451, 0.0491119064, 0.0462867618, -0.0017951458, 0.00592852943, -0.0150817223, 0.0331312753, -0.0115146162, -0.0295356326, -0.0332739614, 0.019562006, -0.0171221066, 0.00396305416, 0.000985412858, -0.03147614, -0.0293358751, -0.00910325348, -0.0149390372, -0.0201755483, -0.0048976359, -0.0181351639, 0.0360705703, 0.0277378112, -0.0177071113, -0.0114076035, -0.0309624746, -0.0174217429, 0.0365271606, -0.0204323791, 0.00121459935, 0.0247985162, 0.00796891376, -0.0163516123, 0.00354926987, -0.0217450745, -0.0136120748, -0.0154669695, 0.039523527, 0.00370622263, 0.0193051752, 0.0245844908, -0.0136334766, 0.0327888317, 0.00514019886, -0.00339053362, -0.0135550005, -0.0337305479, 0.00436613709, -0.0328173712, 0.00235964032, -0.00883928686, 0.000575641636, 0.0056681307, -0.0292074587, -0.0240708273, 0.0477706753, -0.00352608366, 0.0113077238, -0.00071119162, -0.017578695, 0.0381252244, 0.00499394769, -0.0199900586, -0.00275737257, -0.0155240428, -0.0464009084, 0.033787623, -0.00721625425, 0.0241564382, -0.0188200492, 0.0160091687, -0.000969360932, 0.00429122802, -0.0121566951, 0.0325605385, 0.00178711978, 0.00364201469, 0.0168367382, -0.0448028445, 0.0119569376, -0.00744811632, 0.034272749, 0.0105015589, -0.00775488745, 0.0283941589, -0.0432903916, -0.00783336349, 0.0149675747, 0.0103160692, 0.030848328, 0.0544483, -0.064264968, -0.000117825955, -0.00682743965, -0.0060747806, -0.0367554538, 0.0211315323, 0.0208176281, -0.0401228033, 0.000617109239, 0.0122779766, 0.00563245965, 0.0241279, 0.00481559243, 0.0128201768, -0.0237569232, 0.018677365, 0.0215738546, -0.00329957251, -0.0274524428, 0.0303346645, 0.000283584872, -0.00403796323, -0.0134907924, -0.0184776057, 0.0569310039, 0.00268067978, -0.0433189273, -0.0327032246, 0.0265392642, 0.0261112116, -0.0113933347, -0.00876081083, 0.0208747014, 0.0031051652, -0.0350147076, 0.00302668894, -0.0210031178, -0.00634231325, -0.031333454, -0.0333595686, -0.00132785505, -0.063465938, 0.0494828857, -0.0187629741, 0.00311943376, -0.0480845831, 0.0185346808, 0.0106299743, -0.0124491984, -0.00110669446, -0.00809732918, -0.01573807, 0.00731256604, 0.0283370856, 0.011771448, 0.0165228322, -0.0165085644, 0.0114004686, 0.00456946203, -0.0218021479, 0.00681317132, -0.0061532571, 0.0541343912, -0.00962405093, -0.0230435, -0.0259685274, -0.0245416854, -0.0310480855, -0.0239424109, 0.010173385, -0.00160876452, -0.00452665659, 0.00420561712, -0.0239281431, 0.0408647582, -0.00658487668, 0.00676323194, -0.0145181194, -0.0111151, 0.00659557804, -0.0117429113, 0.0234715547, -0.00822574552, 0.0234715547, -0.0341871381, -0.0434045382, -0.00782623, 0.0492545925, 0.0150959902, -0.0548192747, -0.0300492961, -0.00646716217, 0.019319443, -0.0784192458, -0.00387030933, 0.0206606742, 0.0664337724, -0.0197189581, -0.00635658205, 0.0154955061, -0.0167796649, 0.0194193218, 0.00731970044, -0.0296497811, -0.0475138463, 0.00888209231, -0.00319434283, 0.000190171311, 0.0259399917, 0.00270386599, -0.0159235578, 0.0223586168, -0.0107441219, 0.0312193073, 0.0153813586, 0.000548888347, -0.00988801662, -0.00519013824, 0.000790113874, 0.0270671956, -0.0121495612, 0.0434616134, 0.0140615301, -0.0560463592, -0.015823679, 0.0154669695, -0.0226011798, 0.021473974, 0.0155668482, -0.00016241477, -0.0187201686, 0.0168367382, -0.0199900586, 0.0185774844, -0.0102233244, -0.0267818272, 0.0171221066, 0.0405223183, 0.0218306854, 0.0257687699, -0.00711637549, -0.00282514747, -0.0323322453, 0.000539524714, 0.00609261589, -0.00422345288, -0.0135121951, -0.0364415497, -0.00190840138, -0.0341015272, 0.0155383116, 0.0160234384, -0.00215453166, -0.0071627479, 0.00263074017, 0.0173504017, -0.00604267651, 0.00586075429, -0.0111008324, -0.0187344383, -0.0137190875, -0.00151780341, 0.0120140109, -0.00468360959, -0.0233288705, 0.00713421078, -0.010972416, 0.0318471156, -0.0086823348, -0.0320468768, 0.0283370856, -0.00654563867, -0.0223728847, -0.0439182036, -0.00071208342, -0.0126275532, -0.0212171432, -0.00607121363, 0.0154812373, 0.0573875941, 0.00306236, 0.0178355277, -0.0340159163, -0.00578941219, -0.0138689056, -0.0105300955, -0.0101591162, -0.00698795961, 0.0012422445, -0.00714847911, -0.0065064, 0.0147392796, 0.0265820697, -0.012563345, -0.0330171287, 0.0485411696, -0.0164942965, -0.00547193969, -0.0307627171, -0.00377399754, 0.0170364957, -0.0191482212, 0.0328744426, -0.00781196076, -0.0134051824, -0.00526148034, -0.018363459, -0.0227724016, -0.00573233841, -0.0313619897, -0.0120924879, 0.0278804954, -9.39709353e-05, 0.00287330337, -0.0205322597, -0.0236142389, -0.0138189662, -0.0243419278, 0.0145109845, -0.00700579491, 0.00670615816, -0.00518300431, 0.00344760739, 0.0086823348, 0.0198188387, -0.0106299743, 0.00183884287, 0.0309054013, -0.00432333164, 0.0139973219, -0.039751824, 0.0551331826, -0.0147392796, -0.0127345668, -0.0162089281, 0.0102304583, 0.0226725228, -0.0187915117, 0.00898910593, 0.00701649627, 0.0535636544, 0.0252123009, 0.00861812662, -0.0015659593, 0.00322644692, -0.0301063694, -0.0175073538, 0.00365985022, -0.0321610235, -0.00207427191, 0.0040236949, -0.018919928, 0.00764074, -0.0132339615, -0.0302205179, 0.0131340818, -0.00446244888, -0.0229864269, -0.0123065142, -0.00979527179, -0.00239887834, 0.0106870476, 0.0156381894, -0.0248413216, -0.0418920852, 0.0283370856, 0.0348149501, -0.00380610162, 0.00896770321, -0.0162802693, 0.00720198592, -0.0213455595, -0.0256403536, -0.0031122996, 0.00843263697, 0.0207034796, -0.0248413216, -0.0192195643, -0.0599273704, 0.000146251317, 0.00800458435, 0.01573807, 2.36181404e-06, 0.0217165388, 0.00660984637, 0.0278091542, 0.00470857928, -0.0219876375, 0.00867520086, -0.0173504017, -0.0201755483, 0.0268389, 0.0147820851, 0.0397803597, -0.0162802693, 0.0419206247, -0.00437683845, 0.00179068698, 0.0114361402, 0.0196190793, -0.00133677281, 0.0106799137, 0.0405223183, -0.00936721917, -0.0293644127, -0.0441464968, 0.0207748227, -0.02512669, -0.00788330287, -0.00354391919, 0.0311907697, -0.0509097278, -0.0163516123, -0.0264108479, -0.0129699958, -0.0451452881, -0.000488247548, -0.00127969903, -0.0282086693, 0.00580011355, 0.00143932702, 0.00928160828, -0.00519370567, -0.00562175829, 0.00572520401, -0.00200471329, -0.00384177268, 0.00393808447, 0.00858959, 0.0268103648, -0.000509204285, 0.0281087905, -0.0114218714, -0.00200114609, 0.0162089281, 0.0196618848, 0.00226511201, 0.0172362532, -0.00159627968, 0.00475495169, 0.0266534127, 0.0200756695, -0.0140543953, -0.0230863057, 0.00684170844, -0.0111079663, 0.033159811, 0.0197189581, 0.0156239215, 0.035699591, -0.0103517398, -0.00514733326, 0.00574304, 0.034900561, -0.00955270883, -0.00464793853, 0.00213312916, -0.0201898161, 0.00911038741, 0.00213134545, -0.00186737964, 0.00566099631, -0.0126703586, -0.0483414121, 0.020831896, -0.0137761608, -0.0167083219, 0.00583221763, -0.0279661063, 0.0172505211, 0.0101876529, 0.00702363066, -0.00586075429, -0.000269985292, 0.0155668482, -0.00313905277, 0.0421489179, 0.0113576641, -0.00114414911, 0.00806879252, -0.00587858958, 0.039124012, -0.0199472532, -0.0206464063, 0.00223479164, -0.0230149645, -0.020118475, -0.059642002, 0.0160947796, 0.00237747584, -0.0119854743, 0.0106228404, -0.0306485705, -0.0276522022, -0.00564316101, -0.0152957486, 0.0140543953, 0.0015561498, 0.0142541537, -0.0309910122, 0.0162231959, -0.0279946439, 0.0037133568, 0.0470287167, 0.00514376583, -0.012327916, -0.0292074587, 0.0295641702, -0.00316223898, 0.00140454771, 0.031732969, -0.0161233172, -0.0317615084, 0.0347293392, 0.0207462851, -0.0181066263, 0.0152957486, 0.00139117113, 0.0180210173, 0.00294286199, 0.0108083291, 0.0302490536, 0.0143254958, -0.0223871544, -0.0215595849, -0.000486464, -0.0044053751, 0.0181351639, -0.0103660086, 0.00692018447, -0.018919928, -0.0238425322, 0.00253442838, -0.0164372213, -0.0364700854, 0.0180210173, 0.010337472, 0.00287152, -0.00511879614, -0.00634231325, 0.00514733326, -0.00122262537, -0.0273382962, 0.0183349214, 0.0165799055, -0.0257973075, -0.00886069, 0.0038596082, -0.00147856516, 0.0301634446, -0.0037882661, -0.00800458435, 0.0270243902, -0.00301598758, -0.0290362388, -0.019005537, -0.00204038434, -0.0265249964, 0.000616663368, 0.0019797436, 0.0326176137, -0.00110669446, -0.00728759635, 0.014075798, -0.00629950827, 0.0297353901, -0.0038596082, -0.0432047807, 0.0191196855, -0.0158664845, -0.0578156449, -0.0207034796, -0.0245987587, 0.00116644346, 0.0145680588, -0.0460584648, 0.00944569521, -0.0276236646, 0.0275237858, 0.0112292478, -0.014546656, -0.00202076533, 0.0295641702, 0.0132981688, 0.00462653581, 0.000542200054, 0.0133338403, -0.00362239568, -0.00133142213, 0.000695139694, 0.0129485931, 0.029421486, 0.0118641928, 0.00783336349, -0.00090114004, 0.0165799055, -0.00214026333, 0.0357281268, 0.00831135549, 0.00251659285, 0.00545053696, -0.04611554, 0.0263537746, 0.00680247, -0.00473354897, 0.0184490699, 0.0239566807, 0.0030409575, -0.0226154476, 0.0102946665, -0.0156952646, 0.0157523379, -0.0353286117, -0.0231291112, -0.065977186, -0.00262717321, 0.0214882437, 0.002603987, -0.024170706, 0.026239628, 0.00258436799, 0.00230256654, 0.00522580929, 0.0216309279, -0.00403439626, -0.0186345596, -0.0485697091, -0.0131697534, 0.0218449533, 0.034415435, 0.0439467393, -0.0100378348, 0.0176357701, -0.0155525794, -0.0318185799, -0.0139188459, 0.011614495, 0.00460513309, 0.00103356875, 0.00901764259, 0.00809732918, 0.000255716877, 0.0133695109, -0.0255262069, -0.0340159163, -0.0136263426, -0.00742671359, 0.0243847333, 0.00496541057, -0.00861099269, -0.0212599486, -0.0106870476, -0.0243561957, -0.00591426063, 0.0330742, -0.0162802693, -0.0149533059, -0.0137975635, 0.00447315024, -0.00458373036, 0.0387530327, -0.0147392796, -0.0339017697, 0.0205750633, -0.00130734418, -0.0322180949, -0.00468717655, 0.0243704636, -0.00672042649, -0.00679533603, 0.0028465502, -0.0146822063, 0.0025522639, -0.00591782806, 0.0130056664, -0.0138118323, 0.00478348834, -0.0140615301, -0.0119498037, 0.0232289899, 0.00161946588, -0.0128201768, -0.0267532915, -0.00474068336, 0.0362132527, -0.0085253818, -0.0110580269, -0.029421486, -0.0180352852, -0.0118142534, 0.0156524591, 0.00465507247, 0.0147535484, -0.0224727634, -0.00126097177, 0.0123921242, -0.00799031649, 0.00792610832, -0.0205750633, -0.0148248905, 0.0204323791, -0.010016432, -0.00228294753, -0.0209175069, -0.0137904296, -0.00828995276, 0.0335878655, 0.00170061749, 0.0147678163, -0.060897626, -0.0323893167, -0.00148837478, 0.0164229535, 0.0146037294, -0.0115146162, 0.00447315024, 0.0157808736, -0.008033121, -0.0274096373, 0.0120568164, 0.00705216732, 0.00702719763, -0.00301420409, 9.53643321e-05, 0.00202433229, 0.00243811659, -0.00616395799, -0.021231411, 0.00429836195, 0.00647072913, 0.0117500452, -0.00564316101, -0.0366127715, 0.00471571321, 0.00968112424, -0.0142398849, 0.024727175, -0.000903815322, 0.0132696321, 0.00621033041, 0.00994509, -0.000632715353, 0.00103356875, -0.000197751404, 0.041663792, -0.00126097177, 0.0205607954, -0.00133498921, -0.00589999231, -0.00550761074, -0.0210887268, -0.0072519253, 0.00119854743, 0.00578227779, 0.00824714825, 0.0103731425, 0.0155383116, 0.00317472382, 0.0183063857, -0.0275523216, -0.00424485561, -0.00434830133, -0.00287508708, 0.0285225753, -0.00187808101, 0.0131412167, 0.00111026154, 0.00180317182, -0.00160698104, -0.0281230602, 0.0481416546, 0.0154812373, 0.00308376271, -0.0131911561, 0.00249875733, -0.00037276253, -0.0160234384, -0.00300171925, 0.00662768213, 0.00142951752, -0.0307341814, 0.0115788244, 0.00729116332, -0.0440038145, -0.0167225897, 0.0677464679, 0.017578695, 0.0172505211, -0.0167511273, -0.011371932, -0.0242848545, -0.017336132, -0.0159235578, 0.00923880283, -0.0031087324, 0.0176643059, -0.00845404, 0.00695942296, 0.0135121951, -0.00336199696, -0.0260541383, -0.00476208562, -0.017336132, 0.000146028382, 0.0052864505, -0.0161946584, 0.0108511345, 0.00578941219, 0.0167368595, -0.00182279083, 0.00568953296, -0.0170507636, 0.00202789949, -0.0377257057, -0.00163640967, 0.0277663488, -0.0331312753, 0.00614968967, 0.00389884622, -0.000224393225, 0.00967399, 0.0359278843, 0.0186202899, -0.0229150858, 0.00196725875, -0.00126899779, 0.0121138897, -0.0305914972, 0.0104016792, 0.0134479878, -0.0125205405, -0.0100092981, 0.0149818426, -0.010180519, -0.000302758068, -0.0183206536, -0.00634588068, -0.0183777269, -0.0109652821, -0.00235964032, 0.0054398356, -0.0233716741, -0.00849684514, 0.00171845302, -0.0116644353, -0.0136263426, -0.0144182406, -0.00728759635, -0.00180763064, 0.00848971121, 0.00215631514, -0.0386959612, -0.00624956889, -0.00750518963, -0.00419491623, -0.0188200492, 0.0057573081, 0.0260826759, -0.00530071883, 0.00715918047, -0.00681317132, -0.0340159163, -0.00724479137, -0.0358137377, -0.00896770321, 0.00248627248, 0.0281801336, -0.010337472, 0.00791897438, -0.00779769244, -0.0189912692, -0.00959551334, -0.00672399392, -0.00430549635, -0.0402369499, -0.00429836195, -0.0315617472, -0.0305629596, -0.00813300069, 0.0248127859, -0.0409503691, -0.0061532571, 0.033787623, 0.00505458843, -0.00744811632, -0.0267532915, -0.00695585553, 0.0121281585, -0.00666335318, -0.0158522166, -0.0120782191, 0.00893203169, -0.0110651609, -0.0147535484, 0.00643505808, -0.0101163108, 0.0175216217, -0.0085967239, 0.0171221066, -0.00557181891, 0.0179354064, 0.00309624756, -0.0144895827, -0.00731256604, 0.0313049182, -0.00850397907, 0.0055967886, 0.0221588593, -0.0349861719, -0.0243133903, -0.0301634446, -0.0116929719, -0.0102375923, -0.0176072326, 0.0164372213, -0.0300778337, 0.0288792849, 0.0101947878, -0.00876081083, -0.0310480855, -0.0126560898, -0.0152814798, 0.0143611664, 0.00722338865, -0.0138546377, 0.00832562428, 0.0203325, -0.00985947903, -0.015024648, -0.00386317517, -0.0228437427, -0.0042626909, 0.00237569213, 0.0136406114, 0.00450882129, 0.0113790659, -0.0411501266, -0.0121210245, -0.000832473219, 0.0322180949, -0.0226582531, -0.0119498037, -0.008033121, 0.00532568851, 0.010815464, -0.0170793012, -0.0255262069, 0.0278947651, 0.0108011952, -0.0144182406, 0.0101377135, 0.0069415872, -0.00331205735, -0.00321931276, 0.0315332115, 0.0158522166, -0.0264251176, 0.00296069751, 0.0282800123, 0.0216166582, 0.0390384, 0.0123707214, 0.0122851115, 0.00503675267, 0.0201612804, -0.0177071113, 0.0133124376, 0.00605694484, 0.00423058728, -0.0199757908, 0.0132910348, -0.0118356561, -0.0315046757, 0.00468717655, 0.00499394769, -0.000111527785, -0.00835416093, -0.00635658205, 0.0158807542, 0.00379540026, 0.0191910267, 0.0283941589, -0.00784049742, -0.00122797606, 0.0239424109, -0.00101484149, -0.0125276744, -0.0109296115, 0.00729473075, -0.00347971148, -0.00779769244, -0.0296497811, 0.00254869694, 0.00625313586, 0.0109082088, 0.0217736121, -0.0113862008, 0.00606051227, -0.0400942639, -0.0440038145, -0.00567169767, -0.00868946873, -0.0144111058, -0.0194621272, 0.00985947903, 0.0208033584, 0.0383820534, -0.0059071267, 0.00454805931, -0.035071779, -0.00221695611, 0.00620676344, -0.0111935772, 0.00261825533, -0.00127167313, -0.0238282643, -0.0116287638, 0.0495684966, -0.00692018447, 0.00466220686, 0.00894630048, -0.00379183306, -0.0317615084, -0.0386959612, -0.00398802385, -0.00801171921, 0.00420918455, -0.0129985325, 0.00141881616, 0.0345866531, -3.62562823e-05, -0.00171399419, 0.00301063689, -0.0250553489, 0.00612115301, -0.0138118323, 0.00159984676, 0.0217308067, -0.00540773198, 0.00724479137, 0.0163516123, 0.0131840222, 0.0112791872, -0.000569845084, -0.0237854589, 0.0153242853, -0.0108083291, -0.0188200492, 0.00631734356, -0.0163516123, 0.00979527179, -0.0180352852, 0.00180049648, 0.00680603739, -0.0155383116, -0.0110722957, 0.0163516123, 0.00908185076, 0.0175358895, -0.00279126, -0.00977386907, -0.00171934487, 0.0194193218, 0.0113576641, -0.00794037711, -0.00238104281, 0.0211600699, 0.01446818, 0.00899624, -0.0112577844, 0.0166084431, 0.00502605177, 0.0181351639, 0.00509382645, -0.00998076145, 0.00474781729, -0.0124634663, 0.000633607095, -0.0142256161, 0.0121210245, 0.0186488274, -0.00184597704, 0.00234715547, -0.0219876375, -0.00473711593, -0.00619962905, 0.0147392796, -0.0347293392, -0.012720298, 0.0126846265, -0.0159235578, 0.0239281431, -0.0232004542, 0.00424128817, 0.000718325842, 0.011528885, -0.0201755483, -0.00414497638, 0.00282158051, -0.000943499384, -0.0156952646, 0.0103517398, -0.00685954373, 0.0197332278, 0.0252693743, -0.0109795509, -0.0420062356, -0.0166512486, -0.0115859583, -0.0055254465, -0.00863952935, -0.0173932053, -0.0179496743, -0.00950990338, 0.00982380845, 0.0129771298, 0.00929587707, -0.00534709124, -0.021231411, -0.0326461494, 0.0201612804, -0.0381537601, -0.0230863057, 0.0296783168, 0.00328173698, -0.00311765, 0.0273240283, 0.000803936389, -0.011928401, -0.0161803905, -0.0180638228, -0.00316937314, 0.0266962163, -0.00322287972, 0.00351716601, -0.0260684062, -0.0198473744, -0.0280945227, 0.034672264, 0.0349861719, 0.0303061288, 0.0161803905, -0.0119926082, -0.0022151724, -0.00495827664, -0.0150389168, -0.00666335318, 0.0143397637, -8.63351e-05, 0.0182778481, -0.0031836417, 0.00277342438, 0.00414854381, 0.0327888317, -0.00319434283, -0.0158807542, -0.00631020963, -0.0157951433, 0.00861099269, 0.00585362, -0.00702719763, -0.0167653952, -0.01351933, -0.00357959024, -0.0355569087, -0.00133588095, 0.00589642534, -0.0097096609, 0.0181637015, -0.0133980485, -0.00139206287, -0.0178069901, 0.0143540325, 0.0335593298, -0.00717701623, -0.016066242, 0.0133195715, 0.0290933121, 0.0136976847, 0.0215881225, 0.00515446719, -0.0184633378, -0.00302490545, 0.00422345288, -0.0224584956, 0.0122280372, -0.00157666055, -0.0081187319, 0.00946709793, 0.00716988184, 0.0113933347, -0.0255547427, -0.0119712055, 0.0216880012, -0.0413784236, 0.0231576487, 0.00282336399, -0.0110080875, -0.0483984873, 0.0189056583, 0.009781003, -0.0126132844, 0.0244418066, -0.0105229607, 0.0195049327, -0.00673112785, 0.00307306135, -0.0183349214, -0.00728759635, -0.013355243, -0.0168082, -0.00315867178, 0.00893916655, -0.028222939, -0.0283513535, -0.01089394, 0.0308768656, -0.0224156901, -0.0150103793, 0.00799031649, 0.00545410439, 0.0207890905, 3.30932636e-07, 0.0139973219, -0.0134693906, 0.0040165605, 0.012327916, 0.000175011111, 0.0252123009, 0.008190074, -0.0139402477, 0.028151596, -0.0048798, -0.0174930859, -0.00905331317, 0.0156809948, -0.00917459559, -0.015181601, -0.0125348084, 0.00675609754, -0.00458729779, 0.0126346871, 0.00131804543, -0.0224014223, -0.0132339615, 0.00798318163, 0.020118475, 0.00263252389, 0.0152386744, 0.016694054, 0.00714134518, 0.00113701483, -0.0100877741, 0.00270743296, 0.0100663714, -0.00482629379, 0.00627810555, -0.00561105693, 0.00519370567, 0.00190305081, 0.00582508324, -0.0115859583, -0.0109224766, 0.00788330287, 0.0119069982, -0.0128201768, 0.021859223, -9.10169256e-05, -0.024170706, 0.00506529, 0.0362988636, -0.00943142641, 0.0270529278, 0.00778342411, 0.0329315178, -0.00538989622, -0.0202896949, -0.0107512558, -0.00138938753, -0.0168082, -0.0121852318, -0.00237034168, 0.00373119232, 0.00207962259, -0.000223167037, -0.00159984676, -0.00626383722, -0.0114718108, -0.0210459214, 0.0287651382, 0.00760506885, 0.00759793445, 0.0333024971, -0.00182814151, -0.00858245604, -0.00175323233, -0.0157238, -0.0251837652, -0.00481202547, 0.00413784245, 0.0120710852, -0.0145038506, -0.0161946584, 0.00627810555, 0.0184776057, 0.0149533059, 0.008033121, 0.0143254958, 0.0113219926, -0.00891776383, 0.00573947281, 0.022187395, 0.00495827664, -0.0226297174, -0.00983807724, 0.018292116, 0.0194906648, -0.00833989214, -0.00157755241, -0.0104444847, 0.0130128, 0.0122922454, -0.00487623317, 0.00567169767, -0.0126560898, -0.0154812373, 0.0102946665, -0.0163373426, 0.0177641846, 0.0263395067, -0.0133980485, 0.00530785276, -0.0351573899, 0.0256403536, 0.00065367209, 0.0175216217, -0.00208854023, -0.00193693826, -0.01351933, 0.0107084503, -0.0106014377, 0.0101448474, 0.00858959, 0.0153956274, 0.00858959, 0.00760506885, -0.0026075542, 0.00728402939, 0.00841836911, -0.0152814798, 0.00447315024, 0.0117571792, -0.00658844365, -0.000129530512, -0.0175216217, -0.00959551334, 0.00824714825, 0.0183777269, 0.0250696167, -0.00618179375, 0.0154384328, -0.0246701017, 0.019562006, -0.00538989622, -0.0349861719, 0.00286081852, 0.00653137, 0.00929587707, 0.00716988184, 0.0019280205, 0.00379183306, 0.00256118178, 0.0320183374, -0.0164372213, 0.019005537, -0.0180210173, 0.0169080794, -0.00341371982, -0.0207034796, 0.00484769652, -0.0055896542, -0.00416637911, -0.000245461444, -0.00344760739, 0.00741244527, 0.00227938034, 0.00683814101, 0.017336132, -0.010815464, -0.0244560745, -0.0345866531, 0.0293358751, 0.00187986461, -0.0467148125, -0.011286322, -0.00514019886, -0.00331384107, -0.00148213236, -0.00508669252, 0.00734110316, -0.00839696638, -0.000940824044, 0.00695942296, -0.000384801504, -0.00482986076, 0.010972416, 0.00330492319, -0.0204751845, -0.0182778481, 0.0204751845, 0.00120478985, -0.0153956274, -0.00150710205, 0.00432689907, 0.024013754, -0.00705573475, -0.00411643973, 0.00799031649, 0.0219162963, 0.00312656793, -0.0106228404, -0.0061461227, -0.0225441065, 0.00359207508, 0.0108582694, 0.0127559695, 0.0105300955, 0.00795464497, 0.0127773713, -0.0106085716, -0.00973106362, -0.0102875317, -0.0162374638, -0.0280374493, -0.000354258169, 0.00555398315, 0.00139027939, 0.0124991378, -0.0183349214, 0.00363131333, 0.00690591615, 0.00950276852, 0.0129913976, -0.014154274, 0.00131715368, 0.00247557112, 0.00744811632, 0.00384177268, 0.0147250108, 0.0185774844, 0.00648143049, 0.0157808736, -0.00489406846, 0.00450525433, -0.0135550005, -0.00316580618, -0.0124991378, -0.0187201686, 0.0152101377, -0.00990941934, 0.0153528219, 0.0408647582, 0.00711994246, -0.00103981129, 0.00963831879, 0.00763360551, 0.00226154481, 0.0130556058, -0.00622103177, 0.018206507, -0.0217450745, -0.00453735795, 0.00304452446, 0.0190626122, 0.00908898469, -0.00275558885, -0.00326568494, 0.00485126348, 0.00218306854, 0.00567883207, -0.0326176137, -0.00723052258, -0.00315510482, -0.00654207123, 0.0134551218, -0.0110223554, -0.00130823592, -0.0156381894, -0.0143968379, -0.00735537149, -0.0201470107, 0.00777628971, -0.00751945842, -0.0262967013, -0.0106727798, 0.00643505808, 0.0137975635, 0.0136406114, 0.0165228322, -0.0008079494, 0.00565742934, 0.00585362, 0.0196048114, 0.0201042071, 0.00206713751, 0.00225976133, 0.00409860397, -0.00411643973, 0.0228580125, -0.01089394, 0.00942429248, -0.0160091687, -0.0213598274, 0.012720298, -0.0105657661, -0.00961691607, 0.0129271904, -0.0031568883, 0.00310159824, -1.53413403e-05, 0.0100521035, -0.00731256604, -0.0112221139, 0.00513663189, 0.0134836584, 0.0127916401, -0.00303203962, -0.00779769244, 0.00711637549, -0.0123065142, 0.00609261589, 0.0340729915, -0.00799745, -0.00770494761, 0.019633349, 0.0136263426, -0.0188057795, -0.0103660086, -0.00425555697, 0.0110152215, 0.018292116, -0.00141168199, 0.0116358977, 0.00657417532, -0.0158807542, -0.0113077238, 0.00491903862, -0.00806879252, -0.0114076035, 0.00592139503, 0.011614495, -0.00285011716, 0.00452308962, 0.0116501665, 0.0105657661, 0.00876794476, -0.0112649193, 0.0161090475, -0.00408076867, -0.00465864, 0.0246272963, -0.016694054, -0.0196190793, -0.00668832287, -0.00347257708, 0.00189056585, -0.0168652739, -0.0312763788, -0.0166797843, -0.00484769652, 0.0143825691, 0.016694054, 0.00372049096, 0.00625670282, 0.0184918754, -0.00640652142, 0.0582151599, -0.015424164, 0.014867695, 0.0213312898, 0.00981667452, -0.00248270528, 0.0215310492, 0.00494757527, 0.0104872901, -0.00662768213, -0.0213027541, -0.010736987, -0.00611045165, 0.009459964, 0.0188057795, -0.00207248819, 0.0137690268, 0.00369195407, -0.00650996761, -0.00810446404, -0.0225155689, -0.0175929647, 0.00685597677, 0.00438397238, -0.0203895755, -0.0118998634, -0.0109224766, 0.0171363745, -0.00901050866, -0.00120122277, 0.0150817223, -8.72826131e-05, -0.0134907924, 2.89548643e-05, -0.00774775306, -0.019804569, -0.00587145565, -0.00138403696, 0.0097596, -0.00780482683, -0.0020992416, -0.0230149645, -0.033159811, -0.00575374113, 0.0103731425, 0.010736987, 0.0141899455, -0.0125990165, -0.00251302589, 0.00944569521, 0.0097096609, 0.00816867128, 0.0113647981, 0.0190768801, -0.00206178706, -0.0226011798, -0.00593923079, 0.00565029494, -0.00540416455, 0.00891062897, 0.0160947796, -0.0221731272, 0.0173218641, 0.0053577926, 0.0100735053, 0.00242563174, 0.016936617, -0.0167225897, 0.00139295473, 0.00259863632, -0.0168510061, -0.00594279775, 0.0151245268, 0.0207890905, 0.0108440006, -0.0183919948, -0.0183063857, -0.0224156901, -0.0185774844, 0.00384177268, -0.00988088176, -0.00402012793, -0.0282657444, 0.0215738546, 0.0174217429, -0.0298780743, -0.0194763951, -0.0367554538, 0.00376686337, 0.0223728847, -0.0158664845, 0.0183777269, 0.0069487216, -0.00704860035, 0.00699152658, 0.0193479806, 5.57360217e-05, -0.0110794296, -0.0141043346, 0.0022936489, 0.00237212516, -0.0126632247, 0.00786903501, -0.0118071195, 0.0200185962, 0.00328352046, -0.00500464905, -0.00172469544, 0.00784049742, 0.00630307524, -0.00483699515, -0.0148248905, -0.000552455429, -0.0118927294, 0.00449812, -0.014710743, 0.00484056212, 0.00258258427, 0.0239994861, -0.00446244888, -0.00436970405, 0.0180638228, -0.00318185799, -0.0162374638, 0.0163230747, -0.00621389784, 0.00853251666, -0.0172219854, -0.00665265182, 0.00594279775, 0.00662054773, 0.000767819467, 0.00234358828, 0.00315867178, 0.0101377135, -0.00779769244, 0.00309624756, -0.0126346871, -0.000945282925, -0.00819720794, 0.00644932687, 0.010173385, -0.00801885314, 0.00761933718, 0.0192052964, 0.0107655246, -0.0145181194, 0.0161233172, -0.0111864423, -0.0228865482, 0.0154812373, -0.0116715692, 0.0038524738, -0.000848525204, -0.0148819638, 0.00373475929, -0.00811159797, -0.0173646696, 0.00924593769, -0.00285190088, -0.0129985325, -0.0032799535, -0.0195477381, 0.0020029298, -0.0473711602, 0.00139563, 0.0106299743, 0.00311051589, 0.009146058, -0.0166655164, 0.00557181891, 0.0114004686, 0.00314262, 0.00603910955, -0.0177071113, 0.015024648, -0.0014812405, -0.0124920029, -0.00391311478, -0.0118855955, -0.0299351495, -0.00572877144, -0.0220589805, 0.0139687853, -0.0262681637, -0.0266819485, 0.0126061505, -0.000568061543, -0.000914962555, -0.015666727, 0.0038524738, 0.00655990699, -0.00808306132, -0.000659022713, 0.00874654297, -0.00563245965, -0.00301420409, -0.000823109585, -0.00662768213, -0.00543626864, 0.0108297318, 0.0236570425, 0.00632091099, -0.000527485739, 0.00133231387, 0.00764074, -0.0052008396, 0.0226011798, -0.00797604769, 0.0233288705, -0.013205424, -0.00119319675, 0.00599273713, 0.00249875733, -0.00637085037, -0.0177784543, 0.0243561957, 0.00429122802, -0.0159520954, 0.0232860651, 0.00316402246, -0.00133142213, -0.00646002777, 0.0178640634, -0.019804569, 0.0148534272, 0.00883215293, 0.0178497955, 0.0143968379, 0.0137618929, -0.00916032679, 0.0352144651, 0.0330742, -0.00941715855, -0.000638511847, 0.00601414, -0.0121923666, 0.00494044088, -0.0142612876, -0.0246130284, 0.00621033041, -0.00363666401, -0.0159663633, -0.0245131478, -0.0177071113, 0.0209745802, -0.00647072913, -0.00871800538, 0.0148248905, 0.000460156589, 0.00736250542, -0.026881706, -0.0113505293, -0.0174360108, -0.00141792442, 0.00132428785, -0.0145038506, -0.0176785737, 0.0336164, -0.0208747014, -0.0195905436, 0.0137476241, -0.0143540325, 0.0111079663, 0.0340159163, 0.00571450312, 0.00968825817, 0.020275427, 0.00645289384, -0.00876794476, -0.0166512486, -0.00210815924, -0.00927447435, 0.00643505808, -0.00965972152, -0.00636728341, -0.00114593259, -0.0217593424, 0.00955270883, -0.0011789283, 0.000597490172, 0.00120835693, 0.0211315323, -0.00545410439, -0.00491190422, 0.00191375206, -0.0136976847, -0.00502605177, 0.00130912766, -0.0146679375, -0.00873940811, 0.00139027939, -0.0321895592, -0.00610688468, 0.00713777822, 0.0112149799, 0.0189770013, 0.0229008161, -0.0222587381, -0.0211743377, -0.00831135549, 0.0113862008, -0.0124634663, -0.0315902866, 0.0147678163, 0.00156239222, 0.0195192, 0.0347578749, -0.0172505211, -0.00299280137, -0.0164372213, 0.00275380537, 0.00646716217, 0.0157951433, -0.000909611874, 0.00220268755, 0.0197046902, 0.0245987587, 0.0140044559, -0.00493330695, 0.0200614017, 0.0138831744, 0.00831849, -0.000980062177, 0.0118855955, 0.0274952482, -0.0150389168, -0.0105514983, 0.0239852164, -0.00467290822, -0.00973106362, 0.012085353, -0.0156952646, 0.00268781395, 0.00800458435, -0.0177784543, -0.00141168199, 0.0174217429, 0.0264393855, 0.0128201768, -0.0179496743, -0.0057573081, 0.00752659235, 0.0196761545, 0.00275558885, 0.00689164782, 0.00310159824, -0.00317829102, -0.0100806402, 0.0166369807, -0.0157808736, -0.00199757912, -0.00593209639, 0.00548264105, 0.00871087145, 0.0160234384, 0.0293644127, -0.00530071883, -0.0109866848, 0.0128344456, 0.0172362532, -0.00373119232, -0.00724479137, -0.00508312508, 0.00355283706, -0.00831135549, -0.0074980557, 0.0254120585, 0.00514733326, -0.00114949967, -0.0116644353, -0.00121638295, 0.0121923666, 0.0177356489, 0.0277663488, 0.0208176281, -0.00252016, -0.0210459214, -1.20180803e-05, -0.00522224233, -0.00888922717, 0.0122137694, 0.0255404748, -0.0134265851, 0.0184062645, 0.00732683437, -0.00408433564, -0.0130984113, 0.0104516186, -0.0032050442, 0.00849684514, 0.0138261011, -0.00469787791, -0.0038596082, 0.00453379098, 0.00369552127, -0.00613185437, -0.0119212661, -0.00949563459, -0.0208604336, -0.0231291112, 0.00549690938, 0.0249126647, -0.019319443, -0.00377399754, -0.00377756474, 0.00881075, 0.00458373036, -0.0259542596, -0.0177499168, -0.0140187247, 0.0245987587, -0.00411287276, -0.000667940476, 0.0141186034, -0.0166655164, 0.00998076145, -0.0119854743, 0.00280196127, -0.00812586583, 0.0021224278, -0.00746238464, 0.0172077175, -0.00238282653, -0.0103089344, -0.0117072398, -0.00261647184, 0.0200471319, -0.0046443711, 0.00951703731, -0.0072590597, 0.00652066898, -0.00679533603, -0.0206749439, -0.00407363428, -0.00283406535, -0.0276950058, -0.00570023432, 0.00129575108, 0.0178069901, -0.00719485153, 0.0115502877, -0.0137119535, -0.00168189022, -0.00358672463, 0.0136334766, 0.0104587534, 0.0278947651, -0.0134265851, -0.00034110446, -0.00590355974, -0.0156096537, -0.00191910274, -0.0148391584, 0.00169080799, 0.0442606434, -0.000446779944, 0.0126132844, 0.00772635033, -0.00424842257, -0.00563959358, 0.00212599477, 0.0137761608, 0.00314262, -0.00242206454, 0.00542556727, -0.00317294034, 0.0104016792, -0.00421988592, -0.0190911479, -0.00554328179, 0.00292681, 0.00804739, 0.00860385876, -0.0128273116, -0.0264536534, -0.00690948311, 0.00708070444, -0.0272098798, 0.0238853376, -0.0228437427, 0.000762468786, 0.00605337787, -9.28701502e-06, -0.00583935156, 0.0110865636, -0.00868946873, 0.004334033, 0.0118356561, -0.00746951858, 0.00158736191, 0.0255547427, 0.00777628971, 0.0299636852, -0.0107227191, 0.00407720171, 0.0203182325, 0.0131697534, -0.0173932053, 0.0108796712, 0.00161679054, 0.00861812662, 0.0150674535, 0.00230256654, -0.00418064743, 0.0245987587, -0.0123992581, 0.00216523302, 0.0113505293, -0.0205322597, 0.00847544242, -0.00795464497, -0.0151530644, -0.0125419423, -0.00454449235, -0.00832562428, 0.0242135115, -0.00211529364, -0.00576087506, 0.0138261011, 0.00414854381, 0.00499751465, 0.0272669531, -0.00304274098, 0.00835416093, 0.0025522639, 0.00728759635, 0.00691305054, 0.00438754, -0.0297353901, 0.0116858371, 0.0226154476, -0.0103874113, 0.0150959902, -0.0207890905, -0.00452308962, 0.00327103562, 0.0156809948, -0.0115574216, 0.00573590538, 0.0290505067, 0.00449098554, -0.0132839009, 0.000172893138, -0.0186345596, 0.0148534272, 0.00950276852, 0.0126560898, 0.0184776057, -0.000819542503, -0.00926020555, -0.00858959, -0.00615682406, -0.031961266, 0.00594279775, 0.00184776064, 0.00280196127, 0.0206749439, 0.0123136481, 0.00461226748, -0.0046443711, 0.0175216217, -0.0162802693, -0.00377399754, 0.0215881225, -0.0115574216, -0.0149247693, -0.0132410955, -0.00131804543, 0.0166369807, 0.0101020429, -0.0220019072, -0.00543270167, -0.016622711, -0.0284226965, -0.0270814653, -0.0157666057, 0.0289934333, -0.00924593769, 0.0252265688, 0.0033994515, -0.0131626194, 0.0210173856, -0.0143754352, 0.0268389, -0.000715204631, -0.00389884622, -0.0155383116, -0.00500464905, 0.00745525025, 0.0138831744, 0.0122708427, -0.00744811632, -0.00896770321, 0.00619249512, 0.0238139965, -0.00531498715, 0.0191910267, -0.0201755483, 0.00466577383, -0.0523080342, 0.012641822, 0.0139616504, 0.0324463919, -0.0108083291, 0.00421988592, 0.0154098952, -0.0185489487, 0.00478705531, 0.0225441065, -0.00958837941, 0.00669902423, -0.00431263028, 0.0106371082, -0.0143468985, -0.0062959413, 0.00473711593, -0.0103874113, 0.0102161895, -0.0232432596, 0.01446818, -0.0289506279, -0.00593209639, -0.0184062645, 0.00331384107, -0.000304764573, -0.0100949081, -0.00921026617, -0.0205037221, -0.00499038072, -0.0121352924, 0.00235072244, 0.0285368431, -0.0386959612, -0.0235571638, -0.0202326216, -0.00927447435, -0.0216880012, 0.0104587534, -0.0246701017, 0.00134658231, 0.000142126853, -0.0174360108, -0.0162802693, 0.00858245604, 0.0175073538, 0.00594636472, 0.00120568159, -0.00968825817, 0.0349861719, -0.00407720171, 0.0195477381, -0.0247699805, 0.00824714825, 0.00547193969, 0.00776202139, -0.00435186876, -0.000935473421, -0.00653137, 0.014867695, -0.0244418066, -0.0105586322, -0.00610331725, -0.0153670907, 0.00251659285, 0.00565386191, 0.00300528645, -0.00113969017, 0.0351573899, -0.00751945842, 0.000909611874, 0.0176215, 0.00570736872, 0.0179639421, 0.00495470967, 0.0125776138, -0.0176215, -0.0171078369, -0.00721268728, 0.00399872521, 0.0197474957, -0.00363131333, 0.00853251666, 0.00344760739, -0.0060676462, -0.0156524591, 0.000846295792, 0.0107441219, 0.0202468913, 0.0119426688, -0.00617822679, -0.00758366613, -0.0186916329, -0.00118427898, -0.000312790566, -0.0208889693, -0.022815207, -0.00866093207, -0.0151245268, 0.011371932, 0.0150817223, 0.019162491, 0.0132339615, -0.00455876067, 0.038096685, -0.00789757166, -0.00537562789, 0.00570736872, -0.00539703062, 0.0048905015, -0.00170061749, 0.00533639, -0.00270029879, 0.00239709485, 0.00537919486, 0.0100663714, -0.00888209231, 0.00492260559, -0.00761220325, 0.00881788507, -0.0111650396, -0.013355243, 0.0022419258, -0.00619249512, -0.00571450312, -0.00130466884, 0.00148569944, 0.00632091099, -0.00954557396, 0.00917459559, -0.00411643973, 0.0229150858, 0.0137904296, -0.0245987587, -0.015980633, -0.00315510482, -0.00926020555, 0.00339766801, 0.000101216618, 0.00151512807, 0.00506172283, 0.000626472873, 0.00105675496, -0.00379183306, -0.00778342411, 0.00895343442, -0.0127845062, 0.00425912393, -0.0038524738, -0.00657060836, 0.00235250616, 0.00225976133, 0.0151530644, 0.0116715692, -0.0232575275, -0.0131697534, -7.66370285e-05, 0.00202968298, 0.0093743531, -0.0145751927, -0.0140615301, 0.00918172952, -0.0238282643, 0.0101519823, 0.00949563459, 0.0198188387, -0.0105800349, -0.0134337191, 0.00331384107, -0.018206507, -0.00232218555, 0.0158094112, -0.010180519, 0.00374546065, 0.0153670907, -0.0103802765, 0.0167653952, -0.013990188, -0.0340159163, 0.0270101223, -0.00110580272, 0.0120996218, -0.011928401, 0.00785476621, 0.0167511273, 0.000706286868, 0.00102910993, -0.0034743608, -0.00324606593, 0.0163658801, 0.0157808736, -0.0193907861, -0.00608904893, -0.00218306854, 0.00649926625, -0.00742671359, -0.00154812378, -0.00519013824, -0.00985947903, -0.00327103562, -0.00953844, -0.0102803977, 0.0214882437, -0.00751945842, -0.00893916655, -0.00724835834, -0.00572163705, 0.00895343442, 7.99811896e-05, -0.0219876375, -0.00278055877, -0.0357566662, 0.00166673, -0.0144111058, 0.0150674535, -0.0136120748, -0.00675966498, -0.0151530644, 0.00978813693, 0.00388814486, 0.016380148, 0.0103160692, 0.0149961114, 0.0240422916, 0.0278804954, -0.00218485203, 0.00504032, 0.00553614786, -0.0299066119, -0.0392666981, -0.00329065486, 0.00957411062, 0.00537562789, -0.000691572553, 0.00619249512, -0.00688451342, -0.00880361628, 0.0292217284, -0.0286081862, 0.00564672798, 0.0114932135, 0.00893203169, -0.0100806402, 0.0219876375, -0.00785476621, 0.0133267064, 0.0358708128, -0.00366341718, -0.00181387307, 0.000646983739, -0.0055967886, 0.016451491, -0.0203467701, -0.00566099631, 0.0217165388, -0.020831896, 0.00300528645, 0.0233859438, 0.0201470107, 0.0378113165, 0.0100378348, -0.00640652142, 0.0106014377, 0.00352786737, -0.00720912032, -0.00112542172, -0.00404509762, -0.00987374783, 0.00550047681, 0.00732683437, -0.00598203577, -0.0263252389, -0.0201612804, 0.00133231387, -0.00207248819, 0.00251837634, 0.00294821267, 0.000125851933, 0.00171934487, -0.0207034796, -0.0194763951, -0.0119212661, -0.00438754, 0.00866093207, -0.00506529, -0.0108440006, -0.0437469818, -0.00461583445, 0.00616752543, -0.02305777, 0.0283941589, -0.00473711593, -0.0147250108, -0.00204216782, -0.0274096373, -0.011293456, 0.0120710852, -0.00597846881, 0.0266534127, -0.0231148433, -0.000735269627, -0.00931728, -0.000395056937, 0.00205286918, -0.0264393855, 0.00730186468, -0.004334033, -0.00792610832, 0.00886782445, -0.00608548196, -0.00844690576, 0.0148391584, -0.0102019217, -0.00329600554, -0.028222939, 2.8286031e-05, 0.00364914886, 0.00628524, 0.00268424675, -0.012484869, -0.00301598758, -0.000308777555, 0.0027983943, -0.0235999692, 0.0100307008, 0.00311586657, 0.00960264821, 0.0143611664, 0.00370265543, -0.00881788507, 0.000254602142, 0.0078904368, -0.00525434641, 0.0106157055, 0.00553258043, 0.0247985162, -0.0027199178, -0.0160234384, -0.0145252533, -0.0242705848, -0.00241671386, 0.0107084503, -0.0305058863, -0.00460156612, 0.00736964, 0.00943142641, -0.0208747014, -0.0181637015, 0.0160234384, -0.00198509428, -0.0138046984, -0.0133980485, -0.00242028106, 0.00910325348, 0.00393095, -0.0150531847, -0.0036384475, -0.010815464, 0.0255547427, 0.0133409742, 0.0289791655, -0.00509025948, -0.0318185799, -0.00798318163, -0.00533639, 0.0025326449, -0.0159235578, -0.00738390815, -0.00809732918, -0.00943856128, -0.00306414347, -0.00476565305, -0.00333524356, 0.0641508251, 0.034900561, 0.0234144796, -0.0184918754, 0.0107298531, -0.00327460282, -0.0263109691, 0.0367269181, -0.0143397637, 0.0246701017, -0.00350289745, -0.0078619, 0.0120710852, -0.000413338334, 0.00492973952, -0.000222721152, 0.00283763232, -0.0184348, 0.0279233, -0.00675609754, 0.00324606593, -0.00862526055, -0.00429479498, -0.0329315178, -0.00652066898, -0.00811159797, 0.000688451342, 0.0146964742, -0.0256403536, 0.0193765163, 0.00579654658, -0.0218734909, -0.00746238464, -0.0119854743, -0.0403796323, -0.00814726856, -0.00159806327, -0.00799745, -0.00644219248, -0.0136120748, -0.00426625833, 0.0196904223, 0.00955984276, 0.0195477381, 0.00354035222, -0.00593209639, -0.0192195643, -9.59774334e-05, -0.00498324633, -0.00138938753, -0.00469074352, 0.0167511273, -0.00667048711, -0.0125918826, -0.00721982121, 0.00458729779, 0.00255761459, -0.00839696638, 0.00217593438, 0.00243454939, -0.00943142641, -0.0158379488, 0.0136192087, 0.0266962163, 0.0074195792, 0.000999681302, -0.0270101223, 0.00951703731, -0.0065064, -0.0119712055, -0.00773348473, -0.00532212155, 0.0324178562, 0.00623173313, -0.00429836195, 0.00265392638, 0.0225583743, -0.000690234883, -0.0114290062, -0.0129913976, -0.00795464497, 0.00428766059, 0.00485483045, -0.0257973075, 0.0113505293, -0.00448028464, -0.0123778563, -0.00593209639, -0.00329422182, 0.0104658874, 0.00288400473, 0.00247913832, -0.0359278843, 0.0191196855, 0.00415211078, 0.00364379818, -0.0209317748, -0.0112506505, 0.000709854, -0.00506172283, 0.0336164, -0.00300350273, -0.00294821267, 0.0107512558, -0.0133695109, -0.0109438794, 0.00669189, 0.00453735795, 0.0163088068, -0.0160519741, 0.0180067476, -0.0189627334, 0.0113362614, 0.0347008035, 0.00945282914, -0.000539078785, 0.0148819638, 0.0114076035, -0.00943142641, -0.0038524738, -0.00128326623, 0.000879291503, -0.0163658801, -0.00315153762, -0.00685240934, -0.00482986076, 0.0225726441, -0.000701828, 0.0112078451, 0.00222765724, 0.0241136327, -0.02639658, 0.0133837797, 0.000716096431, -0.00259328564, -0.0253407173, -0.022501301, -0.015267211, -0.0141970795, -0.00284476648, 0.00521867536, 0.0161661226, 0.0256546233, 0.0134479878, -0.00237390865, 0.0128201768, -0.00104516186, -0.00503675267, 0.0141471401, -0.00492617255, -0.0192909054, 0.0225583743, 0.00890349504, 0.0011789283, -0.0125490772, 0.000920313178, -0.00523294369, -0.0313049182, -0.00455519371, -0.00771208201, -0.0249840058, -0.00402012793, 0.0181637015, 0.0270386599, 0.0128701162, -0.00997362658, -0.00265035941, 0.00775488745, 0.0111151, 0.00835416093, 0.0143254958, 0.0134479878, 0.00715204654, 0.0100092981, -0.0205465276, 0.00723052258, 0.00516873598, -2.38550183e-05, -0.00833989214, -0.00710924109, -0.0111151, 0.0124420635, -0.00482986076, 0.0327317603, -0.0020510857, -0.0289078224, -0.000715650502, 0.00884642173, 0.040665, -0.0206892118, -0.00319969351, -0.00845404, -0.0101591162, 0.00222409028, -0.0264964588, -0.00774775306, 0.021231411, -0.000697369105, 0.0118998634, 0.0169508848, 0.0039523528, 0.0121923666, -0.0111079663, 0.0144182406, -0.0289220903, 0.00646716217, -0.00790470559, 0.000389483321, -0.009303011, 0.00822574552, -0.00962405093] |
03 Jun, 2021 | Maximum sum such that exactly half of the elements are selected and no two adjacent
03 Jun, 2021
Given an array A containing N integers. Find the maximum sum possible such that exact floor(N/2) elements are selected and no two selected elements are adjacent to each other. (if N = 5, then exactly 2 elements should be selected as floor(5/2) = 2) For a simpler version of this problem check out this.
Examples:
Input: A = [1, 2, 3, 4, 5, 6] Output: 12 Explanation: Select 2, 4 and 6 making the sum 12.
Input : A = [-1000, -100, -10, 0, 10] Output : 0 Explanation: Select -10 and 10, making the sum 0.
Approach:
We will use the concept of dynamic programming. The following is how the dp states are defined:
dp[i][j] = maximum sum till index i such that j elements are selected
Since no two adjacent elements can be selected :
dp[i][j] = max(a[i] + dp[i-2][j-1], dp[i-1][j])
Below is the implementation of the above approach.
C++
// C++ program to find maximum sum possible
// such that exactly floor(N/2) elements
// are selected and no two selected
// elements are adjacent to each other
#include <bits/stdc++.h>
using namespace std;
// Function return the maximum sum
// possible under given condition
int MaximumSum(int a[], int n)
{
int dp[n + 1][n + 1];
// Intitialising the dp table
for (int i = 0; i < n + 1; i++)
{
for (int j = 0; j < n + 1; j++)
dp[i][j] = INT_MIN;
}
// Base case
for (int i = 0; i < n + 1; i++)
dp[i][0] = 0;
for (int i = 1; i <= n; i++)
{
for (int j = 1; j <= i; j++)
{
int val = INT_MIN;
// Condition to select the current
// element
if ((i - 2 >= 0
&& dp[i - 2][j - 1] != INT_MIN)
|| i - 2 < 0)
{
val = a[i - 1] +
(i - 2 >= 0 ?
dp[i - 2][j - 1] : 0);
}
// Condition to not select the
// current element if possible
if (i - 1 >= j)
{
val = max(val, dp[i - 1][j]);
}
dp[i][j] = val;
}
}
return dp[n][n / 2];
}
//Driver code
int main()
{
int A[] = {1, 2, 3, 4, 5, 6};
int N = sizeof(A) / sizeof(A[0]);
cout << MaximumSum(A, N);
return 0;
}
Java
// Java program to find maximum sum possible
// such that exactly Math.floor(N/2) elements
// are selected and no two selected
// elements are adjacent to each other
class GFG{
// Function return the maximum sum
// possible under given condition
static int MaximumSum(int a[], int n)
{
int [][]dp = new int[n + 1][n + 1];
// Intitialising the dp table
for(int i = 0; i < n + 1; i++)
{
for(int j = 0; j < n + 1; j++)
dp[i][j] = Integer.MIN_VALUE;
}
// Base case
for(int i = 0; i < n + 1; i++)
dp[i][0] = 0;
for(int i = 1; i <= n; i++)
{
for(int j = 1; j <= i; j++)
{
int val = Integer.MIN_VALUE;
// Condition to select the current
// element
if ((i - 2 >= 0 &&
dp[i - 2][j - 1] != Integer.MIN_VALUE) ||
i - 2 < 0)
{
val = a[i - 1] + (i - 2 >= 0 ?
dp[i - 2][j - 1] : 0);
}
// Condition to not select the
// current element if possible
if (i - 1 >= j)
{
val = Math.max(val, dp[i - 1][j]);
}
dp[i][j] = val;
}
}
return dp[n][n / 2];
}
// Driver code
public static void main(String[] args)
{
int A[] = { 1, 2, 3, 4, 5, 6 };
int N = A.length;
System.out.print(MaximumSum(A, N));
}
}
// This code is contributed by Rajput-Ji
Python3
# Python3 program to find maximum sum possible
# such that exactly floor(N/2) elements
# are selected and no two selected
# elements are adjacent to each other
import sys
# Function return the maximum sum
# possible under given condition
def MaximumSum(a,n):
dp = [[0 for i in range(n+1)] for j in range(n+1)]
# Intitialising the dp table
for i in range(n + 1):
for j in range(n + 1):
dp[i][j] = -sys.maxsize-1
# Base case
for i in range(n+1):
dp[i][0] = 0
for i in range(1,n+1,1):
for j in range(1,i+1,1):
val = -sys.maxsize-1
# Condition to select the current
# element
if ((i - 2 >= 0 and dp[i - 2][j - 1] != -sys.maxsize-1) or i - 2 < 0):
if (i - 2 >= 0):
val = a[i - 1] + dp[i - 2][j - 1]
else:
val = a[i - 1]
# Condition to not select the
# current element if possible
if (i - 1 >= j):
val = max(val, dp[i - 1][j])
dp[i][j] = val
return dp[n][n // 2]
#Driver code
if __name__ == '__main__':
A = [1, 2, 3, 4, 5, 6]
N = len(A)
print(MaximumSum(A,N))
# This code is contributed by Bhupendra_Singh
C#
// C# program to find maximum sum possible
// such that exactly Math.floor(N/2) elements
// are selected and no two selected
// elements are adjacent to each other
using System;
class GFG{
// Function return the maximum sum
// possible under given condition
static int MaximumSum(int []a, int n)
{
int [,]dp = new int[n + 1, n + 1];
// Intitialising the dp table
for(int i = 0; i < n + 1; i++)
{
for(int j = 0; j < n + 1; j++)
dp[i, j] = Int32.MinValue;
}
// Base case
for(int i = 0; i < n + 1; i++)
dp[i, 0] = 0;
for(int i = 1; i <= n; i++)
{
for(int j = 1; j <= i; j++)
{
int val = Int32.MinValue;
// Condition to select the current
// element
if ((i - 2 >= 0 &&
dp[i - 2, j - 1] != Int32.MinValue) ||
i - 2 < 0)
{
val = a[i - 1] + (i - 2 >= 0 ?
dp[i - 2, j - 1] : 0);
}
// Condition to not select the
// current element if possible
if (i - 1 >= j)
{
val = Math.Max(val, dp[i - 1, j]);
}
dp[i, j] = val;
}
}
return dp[n, n / 2];
}
// Driver code
public static void Main()
{
int []A = { 1, 2, 3, 4, 5, 6 };
int N = A.Length;
Console.Write(MaximumSum(A, N));
}
}
// This code is contributed by Nidhi_biet
Javascript
<script>
// JavaScript program to find maximum sum possible
// such that exactly Math.floor(N/2) elements
// are selected and no two selected
// elements are adjacent to each other
// Function return the maximum sum
// possible under given condition
function MaximumSum(a,n)
{
let dp = [];
for(let i=0;i<n+1;i++) dp.push(Array(n+1));
// Intitialising the dp table
for(let i = 0; i < n + 1; i++)
{
for(let j = 0; j < n + 1; j++)
dp[i][j] = -10000;
}
// Base case
for(let i = 0; i < n + 1; i++)
dp[i][0] = 0;
for(let i = 1; i <= n; i++)
{
for(let j = 1; j <= i; j++)
{
let val = -10000;
// Condition to select the current
// element
if ((i - 2 >= 0 &&
dp[i - 2, j - 1] != -10000) ||
i - 2 < 0)
{
val = a[i - 1] + (i - 2 >= 0 ?
dp[i - 2][j - 1] : 0);
}
// Condition to not select the
// current element if possible
if (i - 1 >= j)
{
val = Math.max(val, dp[i - 1][j]);
}
dp[i][j] = val;
}
}
return dp[n][n / 2]
}
// Driver code
let A = [1, 2, 3, 4, 5, 6];
let N = A.length;
document.write(MaximumSum(A, N));
// This code is contributed by Nidhi_biet
</script>
Output:
12
Time Complexity : O(N2)
Efficient Approach
We will use dynamic programming but with slightly modified states. Storing both the index and is number of elements taken till now are futile since we always need to take exact floor(i/2) elements, so at i’th position for the dp storage we will assume floor(i/2) elements in the subset till now.
The following is the dp table states:
dp[i][1] = maximum sum till i’th index, picking element a[i], with floor(i/2) elements, none adjacent to each other. dp[i][0] = maximum sum till i’th index, not picking element a[i], with floor(i/2) elements, none adjacent to each other.
We have two cases :
When i is odd : If we have to pick a[i], then we can’t pick a[i-1], so the only options left are (i – 2)th and (i – 3) rd state (because floor((i – 2)/2) = floor((i – 3)/2) = floor(i/2) – 1, and since we pick a[i], total picked elements will be floor(i/2) ). If we don’t pick a[i], then a sum will be formed by taking a[i-1] and using states i – 1, i – 2 and i – 3 or a[i – 2] using state i – 3 as these will only give the total of floor(i/2).
dp[i][1] = arr[i] + max({dp[i – 3][1], dp[i – 3][0], dp[i – 2][1], dp[i – 2][0]}) dp[i][0] = max({arr[i – 1] + dp[i – 2][0], arr[i – 1] + dp[i – 3][1], arr[i – 1] + dp[i – 3][0], arr[i – 2] + dp[i – 3][0]})
When i is even : If we pick a[i], then using states i – 1 and i – 2, else picking a[i – 1] and using state i – 2.
dp[i][1] = arr[i] + max({dp[i – 2][1], dp[i – 2][0], dp[i – 1][0]}) dp[i][0] = arr[i – 1] + dp[i – 2][0]
Below is the implementation of the above approach.
C++
// C++ program to find maximum sum possible
// such that exactly floor(N/2) elements
// are selected and no two selected
// elements are adjacent to each other
#include <bits/stdc++.h>
using namespace std;
// Function return the maximum sum
// possible under given condition
int MaximumSum(int a[], int n)
{
int dp[n + 1][2];
// Intitialising the dp table
memset(dp, 0, sizeof(dp));
// Base case
dp[2][1] = a[1];
dp[2][0] = a[0];
for (int i = 3; i < n + 1; i++) {
// When i is odd
if (i & 1) {
int temp = max({ dp[i - 3][1],
dp[i - 3][0],
dp[i - 2][1],
dp[i - 2][0] });
dp[i][1] = a[i - 1] + temp;
dp[i][0] = max({ a[i - 2] + dp[i - 2][0],
a[i - 2] + dp[i - 3][1],
a[i - 2] + dp[i - 3][0],
a[i - 3] + dp[i - 3][0] });
}
// When i is even
else {
dp[i][1] = a[i - 1] + max({ dp[i - 2][1],
dp[i - 2][0],
dp[i - 1][0] });
dp[i][0] = a[i - 2] + dp[i - 2][0];
}
}
// Maximum of if we pick last element or not
return max(dp[n][1], dp[n][0]);
}
// Driver code
int main()
{
int A[] = {1, 2, 3, 4, 5, 6};
int N = sizeof(A) / sizeof(A[0]);
cout << MaximumSum(A, N);
return 0;
}
Java
// Java program to find maximum sum possible
// such that exactly Math.floor(N/2) elements
// are selected and no two selected
// elements are adjacent to each other
import java.util.*;
class GFG{
// Function return the maximum sum
// possible under given condition
static int MaximumSum(int a[], int n)
{
int [][]dp = new int[n + 1][2];
// Base case
dp[2][1] = a[1];
dp[2][0] = a[0];
for(int i = 3; i < n + 1; i++)
{
// When i is odd
if (i % 2 == 1)
{
int temp = Math.max((Math.max(dp[i - 3][1],
dp[i - 3][0])),
Math.max(dp[i - 2][1],
dp[i - 2][0]));
dp[i][1] = a[i - 1] + temp;
dp[i][0] = Math.max((Math.max(a[i - 2] +
dp[i - 2][0],
a[i - 2] +
dp[i - 3][1])),
Math.max(a[i - 2] +
dp[i - 3][0],
a[i - 3] +
dp[i - 3][0]));
}
// When i is even
else
{
dp[i][1] = a[i - 1] + (Math.max((
Math.max(dp[i - 2][1],
dp[i - 2][0])),
dp[i - 1][0]));
dp[i][0] = a[i - 2] + dp[i - 2][0];
}
}
// Maximum of if we pick last element or not
return Math.max(dp[n][1], dp[n][0]);
}
static int max(int []arr)
{
return 1;
}
// Driver code
public static void main(String[] args)
{
int A[] = {1, 2, 3, 4, 5, 6};
int N = A.length;
System.out.print(MaximumSum(A, N));
}
}
// This code is contributed by Rajput-Ji
Python3
# Python3 program to find maximum sum possible
# such that exactly floor(N/2) elements
# are selected and no two selected
# elements are adjacent to each other
# Function return the maximum sum
# possible under given condition
def MaximumSum(a, n):
dp = [[0 for x in range (2)]
for y in range(n + 1)]
# Base case
dp[2][1] = a[1]
dp[2][0] = a[0]
for i in range (3, n + 1):
# When i is odd
if (i & 1):
temp = max([dp[i - 3][1],
dp[i - 3][0],
dp[i - 2][1],
dp[i - 2][0]])
dp[i][1] = a[i - 1] + temp
dp[i][0] = max([a[i - 2] + dp[i - 2][0],
a[i - 2] + dp[i - 3][1],
a[i - 2] + dp[i - 3][0],
a[i - 3] + dp[i - 3][0]])
# When i is even
else:
dp[i][1] = (a[i - 1] + max([dp[i - 2][1],
dp[i - 2][0],
dp[i - 1][0]]))
dp[i][0] = a[i - 2] + dp[i - 2][0]
# Maximum of if we pick last
# element or not
return max(dp[n][1], dp[n][0])
# Driver code
if __name__ == "__main__":
A = [1, 2, 3, 4, 5, 6]
N = len(A)
print(MaximumSum(A, N))
# This code is contributed by Chitranayal
C#
// C# program to find maximum sum possible
// such that exactly Math.Floor(N/2) elements
// are selected and no two selected
// elements are adjacent to each other
using System;
class GFG{
// Function return the maximum sum
// possible under given condition
static int MaximumSum(int []a, int n)
{
int [,]dp = new int[n + 1, 2];
// Base case
dp[2, 1] = a[1];
dp[2, 0] = a[0];
for(int i = 3; i < n + 1; i++)
{
// When i is odd
if (i % 2 == 1)
{
int temp = Math.Max((Math.Max(dp[i - 3, 1],
dp[i - 3, 0])),
Math.Max(dp[i - 2, 1],
dp[i - 2, 0]));
dp[i, 1] = a[i - 1] + temp;
dp[i, 0] = Math.Max((Math.Max(a[i - 2] +
dp[i - 2, 0],
a[i - 2] +
dp[i - 3, 1])),
Math.Max(a[i - 2] +
dp[i - 3, 0],
a[i - 3] +
dp[i - 3, 0]));
}
// When i is even
else
{
dp[i, 1] = a[i - 1] + (Math.Max((
Math.Max(dp[i - 2, 1],
dp[i - 2, 0])),
dp[i - 1, 0]));
dp[i, 0] = a[i - 2] + dp[i - 2, 0];
}
}
// Maximum of if we pick last element or not
return Math.Max(dp[n, 1], dp[n, 0]);
}
static int max(int []arr)
{
return 1;
}
// Driver code
public static void Main(String[] args)
{
int []A = { 1, 2, 3, 4, 5, 6 };
int N = A.Length;
Console.Write(MaximumSum(A, N));
}
}
// This code is contributed by 29AjayKumar
Javascript
<script>
// Javascript program to find maximum sum possible
// such that exactly floor(N/2) elements
// are selected and no two selected
// elements are adjacent to each other
// Function return the maximum sum
// possible under given condition
function MaximumSum(a, n)
{
var dp = Array.from(Array(n+1), ()=>Array(2).fill(0));
// Base case
dp[2][1] = a[1];
dp[2][0] = a[0];
for (var i = 3; i < n + 1; i++) {
// When i is odd
if (i & 1) {
var temp = ([dp[i - 3][1],
dp[i - 3][0],
dp[i - 2][1],
dp[i - 2][0] ].reduce((a,b)=>
Math.max(a,b)));
dp[i][1] = a[i - 1] + temp;
dp[i][0] = ([ a[i - 2] + dp[i - 2][0],
a[i - 2] + dp[i - 3][1],
a[i - 2] + dp[i - 3][0],
a[i - 3] + dp[i - 3][0] ].reduce((a,b)=>
Math.max(a,b)));
}
// When i is even
else {
dp[i][1] = a[i - 1] + ([ dp[i - 2][1],
dp[i - 2][0],
dp[i - 1][0] ].reduce((a,b)=>
Math.max(a,b)));
dp[i][0] = a[i - 2] + dp[i - 2][0];
}
}
// Maximum of if we pick last element or not
return Math.max(dp[n][1], dp[n][0]);
}
// Driver code
var A = [1, 2, 3, 4, 5, 6];
var N = A.length;
document.write( MaximumSum(A, N));
</script>
Output:
12
Time Complexity: O(N) | NLP/Natural Language Processing (NLP) Tutorial/AI ML DS - Projects/30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated]/Does Artificial Intelligence Require Coding?/Artificial Intelligence – Boon or Bane/Artificial Intelligence Examples/Agents in Artificial Intelligence/What are Diffusion Models?/ML | Common Loss Functions/Loss Functions in Deep Learning/Kaiming Initialization in Deep Learning/Swift - Initialization/Swift – If Statement/6 Best iOS Project Ideas For Beginners/Swift Programming Language/Introduction to Visual Programming Language/What is D Programming Language: Usage and Applications/Best Programming Languages for Data Science in 2024/5 Best Languages for Competitive Programming/MEX (Minimum Excluded) in Competitive Programming/Rearrange Array to maximize sum of MEX of all Subarrays starting from first index/Minimize moves to segregate even and odd by swapping adjacent elements/Minimum elements to be removed such that sum of adjacent elements is always even/Maximum sum such that exactly half of the elements are selected and no two adjacent | https://www.geeksforgeeks.org/maximum-sum-such-that-exactly-half-of-the-elements-are-selected-and-no-two-adjacent/?ref=ml_lbp | NLP | Maximum sum such that exactly half of the elements are selected and no two adjacent | Artificial Intelligence – Boon or Bane, AI ML DS - Projects, Rearrange Array to maximize sum of MEX of all Subarrays starting from first index, MEX (Minimum Excluded) in Competitive Programming, Swift - Initialization, 6 Best iOS Project Ideas For Beginners, ML | Common Loss Functions, Artificial Intelligence Examples, What is D Programming Language: Usage and Applications, 30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated], Swift – If Statement, Natural Language Processing (NLP) Tutorial, Loss Functions in Deep Learning, Minimize moves to segregate even and odd by swapping adjacent elements, Does Artificial Intelligence Require Coding?, Best Programming Languages for Data Science in 2024, NLP, 5 Best Languages for Competitive Programming, Maximum sum such that exactly half of the elements are selected and no two adjacent, Swift Programming Language, Minimum elements to be removed such that sum of adjacent elements is always even, Agents in Artificial Intelligence, What are Diffusion Models?, Kaiming Initialization in Deep Learning, Introduction to Visual Programming Language | GeeksforGeeks | [-0.0100907581, 0.00379519654, -0.00791038, 0.0119213825, 0.0126208887, 0.00938381, 0.00573000265, 0.0237981156, -0.0287690777, 0.011936265, -0.0207917243, -0.00393286534, 0.0606933795, -0.0038063589, -0.0289476756, 0.00151156727, -0.0163416695, -0.00346962828, -0.00778387394, -0.051406309, -0.0224586334, 0.00649648346, -0.0212679841, 0.0334274955, 0.000314638542, 0.0173834879, 0.00192364375, 0.00472539198, -0.0297960136, 0.0310164299, 0.000648346089, 0.000143831436, 0.0216995943, -0.0117725506, 0.00484445691, 0.0213275161, -0.00664531486, 0.0270426366, -0.000921823492, 0.0183211248, -0.00948055, -0.00646299636, -0.0272063501, -0.00919032935, -0.00111530407, 0.0149798645, 0.00967403, 0.0150170717, -0.0147342924, 0.0077764322, -0.0104553942, -0.0330107696, 0.00455051521, 0.0158505272, -0.0146152275, 0.0189462174, -0.0422978364, 0.0199880358, 0.00984518602, 0.0294388197, 0.0406309292, -0.0352432355, -0.0159398261, 0.0125390319, 0.0317903534, 0.0159844756, -0.0283374675, 0.0551270917, 0.0229795426, 0.00397007307, -0.0558712482, 0.0219526086, 0.00471795024, -0.0422978364, -0.00154691469, 0.00115251192, -0.00514584, 0.00863965321, -0.00255059544, 0.0492333733, -0.0505728535, 0.0347372107, -0.0268045068, -0.0219377242, 0.0332191326, -0.0137594482, -0.017175125, -0.0487273484, 0.022265153, 0.0286351312, 0.00408541737, 0.0193778276, -0.0144366305, -0.00826757494, -0.0155528644, 0.0426848, 0.0438159183, 0.0100312252, -0.0606933795, 0.0398867726, -0.0227562971, 0.011117694, 0.0193480607, 0.00586023, 0.0266407914, -0.0117204599, -0.0106563168, 0.0162672549, 0.0317308195, 0.0135734091, -0.0112144342, 0.0133055132, -0.0258371029, 0.029141156, -0.00252641039, -0.0252715442, -0.000228828023, -0.0292304549, 0.0244232062, -0.00469190488, 0.0359278619, 0.00576348975, 0.0164160859, 0.0388151854, -0.0157165788, 0.0110804858, 0.0134394607, 0.0202708151, 0.00448726164, -0.0176365022, 0.0112367589, 0.00995681, -0.011631161, -0.0173983723, -0.0184997227, 0.0159993581, 0.0278612077, 0.0147417346, -0.0147863831, 0.0369399153, 0.0208959058, -0.0315522216, 0.00809641927, -0.00528350892, 0.0215954129, 0.0162523706, 0.0219526086, 0.062985383, -0.0225777, 0.00632904842, -0.0311950278, 0.0245273877, -0.0235302188, 0.0103809787, 0.00242780964, -0.0237832312, -0.006831354, -0.0183955412, 0.00300825131, -0.0573595576, 0.0148831243, -0.00844617281, 0.029929962, -0.00362962182, -0.029989494, -0.00199805945, 0.00258594286, -0.0216400623, -0.00948055, 0.0406309292, 0.00892243255, 0.0269533377, 0.0179490466, 0.0620923936, -0.00685739936, 0.0123827588, 0.0167732798, 0.0289179105, 0.0118692908, -0.0199285038, 0.0185146052, -0.0302573908, 0.00203154632, 0.000747877, 0.0289923251, -0.00294499821, 0.00334498216, -0.0353920683, -0.000612068456, -0.00241106609, 0.00735598383, -0.030867599, 0.0151435789, 0.00417099567, 0.0278612077, -0.0182913598, -0.0431015268, 0.00394030707, -0.00117576681, 0.019571308, 0.00266035832, -0.0363148227, -0.0134096947, 0.0218335427, 0.0195266586, -0.0420001745, -0.0503942557, -0.0200029183, 0.022146089, 0.00315150153, -0.0291262735, 0.0537280776, -0.0331298336, -0.0306294691, 0.0272807665, 0.0183508918, -0.0143473316, 0.0543234, -0.00326312496, -0.007285289, -0.00618393812, 0.0245125052, 0.0366422497, 0.0193778276, -0.0275188964, -0.0384282246, -0.0072071529, 0.0364934206, -0.00538397, -0.0397081748, 0.00708064623, 0.0148756821, -0.00316638453, 0.0116758104, -0.000970193651, -0.0337549262, -0.029141156, 0.0397081748, 0.0358980931, 0.0352134705, -0.000282081717, 0.00283523509, -0.0356599651, -0.0105074858, 0.0115939537, -0.00980797876, -0.0172495414, 0.042952694, 0.0481617898, 0.0342907161, -0.0169221126, -0.00657089939, -0.00217293599, 0.0305997021, -0.00223060814, 0.00114972133, -0.0183062423, -0.0260157, 0.000114181465, 0.0302573908, -0.00109577, 0.0132534215, 0.0122041618, 0.0364041217, 0.0365231857, 0.0481915548, 0.0336358584, -0.0310759619, 0.00657089939, -0.00973356329, -0.00574116502, -0.0233516209, -0.00409657974, -0.0329512358, 0.0176067352, -0.0189164504, -0.0129111102, -0.0128069278, 0.0397081748, 0.0143324481, 0.011846967, -0.000215805296, 0.0561986752, 0.00490026874, 0.00335242366, -0.0210149717, 0.0300787929, -0.0111549012, -0.0722129196, -0.0148608, -0.0067308927, -0.0151212541, -0.00628439896, -0.00650020456, 0.0158207603, 0.0155826304, -0.0235004518, -0.0106265508, -0.0246018041, 0.0037245017, -0.00642206799, -0.0400058366, -0.0212828666, -0.0320582502, -0.028292818, -0.0190057494, -0.024750635, -0.0155826304, -0.00783596467, -0.000814851, 0.00635509379, -0.0389044844, -0.0296174157, -0.0209554378, -0.0521207, 0.000172900036, 0.0618542619, -0.000413471775, 0.00983774476, -0.00233292975, 0.0201517493, -0.0415834486, 0.0246315692, 0.0388449542, 0.0179788135, -0.0184401907, -0.0390235521, 0.0369101465, -0.00644067163, -0.0116534857, -0.0290965065, -0.0132608637, -0.0508109853, -0.0317308195, 0.0122190444, -0.0297662485, 0.007694575, 0.00445377501, -0.0207619574, 0.000920893275, -0.00237013749, 0.0039626318, 0.0173090734, 0.0269682202, -0.0329214707, -0.00881080888, -0.0321475491, -0.0288583767, 0.0225181673, -0.00503793731, 0.00132831885, 0.0265812594, 0.0139603699, -0.0101205241, 0.0365827195, -0.0220121406, -0.00353660225, -0.0130971493, 0.0286351312, 0.00655229529, 0.0345883816, 0.0280993376, -0.0361957587, 0.0147342924, 0.0133055132, -0.00109856064, -0.0199285038, -0.0450958647, -0.00134041137, -0.0166393332, -0.0118320836, -0.00706576323, 0.00805921201, -0.00470678788, -0.0547103621, 0.0227860622, 0.0401546694, -0.00810386054, 0.00874383561, -0.00845361408, -0.0443517081, 0.0490250103, 0.0225628149, -0.00359055353, -0.00348451128, -0.00610580156, -0.0285309479, -0.000910661125, -0.0184550732, 0.0285755973, -0.0110135116, 0.0149724223, 0.0233516209, 0.00462493068, 0.0315819904, -0.0133799287, 0.0143101234, 0.00577093149, -0.00132087723, -0.0470009036, 0.0141240843, 0.01872297, 0.0115195382, -0.00247245887, 0.00837175734, 0.0348562747, -0.0382198617, -0.0181871783, 0.0159547087, 0.0232027899, 0.0227711797, 0.0518825687, -0.0710222647, -0.00532443775, 0.00255989726, 0.00581186, -0.00171062909, 0.00824525, 0.0156868119, -0.0308973659, -0.00290034874, 0.0238576476, -0.00263245264, 0.0126283308, -0.0405416302, 0.0112962909, -0.0120850969, 0.0194373596, 0.00500445, -0.0128218113, -0.000128715765, 0.030927131, 0.020508945, 0.00810386054, -0.0433098897, 0.000823222799, -0.00402216427, 0.0129334349, -0.033933524, -0.04283363, 0.0169369951, 0.0151584614, -0.0311950278, -0.0477152951, 0.0175174363, -0.00809641927, -0.0165500343, 0.012360434, -0.0167137478, 0.01538915, -0.0356897302, -0.0365231857, -0.0273402985, -0.0434884876, 0.0644736961, -0.0313140936, 0.00297662476, -0.00974100456, 0.0335465595, 0.00503793731, 0.017874632, 0.0142208245, 0.0145556955, -0.0340823531, 0.0318796523, 0.0479534268, 0.0125464732, 0.00952519942, -0.027384948, -0.000119646364, 0.0325345099, -0.0230986085, 0.00227339729, -0.00243339082, 0.0296620652, 0.00823036768, 0.0147566171, -0.0536983125, -0.0310164299, -0.0310164299, 0.0361957587, 0.00347520947, 0.016118424, -0.0134841101, 0.002014803, -0.0183508918, 0.0133352792, -0.00602394436, -0.00561465835, -0.00997169316, 0.00724436063, 0.0194075927, -0.0357790291, 0.0213126335, -0.0164309684, 0.0108944466, -0.0364934206, -0.0336953923, 0.0123976422, 0.0407797582, 0.0320284814, -0.0626281872, -0.0204345286, 0.0118990578, 0.0473878682, -0.0961449817, 0.0041598333, 0.0161333065, 0.0336358584, -0.0290518571, 0.000638113939, 0.00928707, -0.0107679404, 0.0259710513, -0.000181969444, -0.000676717, -0.026596142, 0.0142059419, -0.0149575397, -0.00719971117, 0.016118424, -0.0135064349, 0.0120925382, 0.010723291, -0.0277719088, 0.00565186609, 0.00178690511, -0.00512723625, 0.00189201708, -0.0192438792, -0.0121446289, 0.0264175441, -0.00307336519, 0.0157463457, 0.00292825466, -0.0334572643, -0.000393937691, -0.00420076167, -0.000264873088, 0.0493226722, 0.0208512563, 0.0198392048, -0.0327131078, 0.0113483816, -0.0247059856, 0.0193778276, 0.0161928385, -0.0160737745, -0.00234967307, 0.0185146052, 0.0175472032, 0.00959961489, -0.0071885488, -0.00642206799, -0.014935215, -0.000644625281, -0.0187080875, -0.0321773142, -0.0172048919, -0.0287839621, -0.0149277728, -0.0246166866, 0.0186187886, 0.027176585, 0.0127027463, -0.00549931405, -0.00337102753, 0.0181574114, -0.011452564, 0.00250222511, -0.00344730355, -0.0135957338, 0.0193331782, 0.00460260594, 0.00752714, 0.032355912, -0.0201219842, 0.00962938089, -0.00179620704, -0.0166839827, 0.00493747648, -0.0442326441, 0.0259859338, -0.00973356329, -0.00532815838, -0.0430419929, -0.0075978348, -0.042595502, -0.0373566411, -0.00366496923, 0.0258371029, 0.0574786253, -0.00808897801, 0.0131417988, -0.0392616801, -0.00761643844, -0.000943683088, -0.0143547729, -0.0166988652, -0.016445851, 0.0188569184, -0.00964426436, -0.00408541737, 0.0114897713, 0.0188866835, 0.00653369119, -0.0182764754, 0.0418215767, -0.0257180389, -0.0151882283, -0.00699878903, -0.00278872531, 0.00905638095, -3.8138005e-05, 0.0320880152, 0.019779671, 0.016445851, -0.0126060061, -0.0434884876, -0.00980053749, -0.00710297097, -0.062985383, -0.000313010707, 0.00970379636, 0.000462539581, -0.00520165171, -0.0368506163, -0.0274593644, -0.0155082149, -0.032981, -0.00525002182, -0.00673833443, 0.0114748888, 0.00919032935, 0.0022268875, -0.018752737, 0.00603138609, 0.0011859989, -0.013662708, 0.0448875, -0.00700623076, 0.0040258849, -0.0263728946, 0.077213645, -0.018752737, 0.00161760952, -0.0292304549, -0.0125985639, 0.0337549262, 0.000409983564, -0.00690949, -0.00606115209, 0.0339037552, 0.0137147987, -0.00180271838, -0.0172197744, -0.00650764583, -0.0126134474, -0.0161481891, 0.00689088646, -0.0372971073, -0.0289476756, -0.00263059209, -0.00601650262, 0.00294871884, 0.00625835359, -0.0191099308, 0.0428931639, 0.0128218113, 0.00807409454, -0.0227116477, -0.0121297464, -0.0219228417, 0.0300192609, 0.019571308, -0.0319094174, -0.0368506163, 0.046316281, 0.0189015679, 0.000691135065, 0.029810898, -0.0143547729, -0.000981356, -0.00902661495, -0.0285458323, -0.0137892142, -0.0172197744, -0.000704622886, -0.0171304755, 0.0149277728, -0.0379519649, 0.0068797241, 0.016386319, 0.00763504254, -0.0127920453, 0.000584162597, 0.0121743949, -0.00220642309, -0.0252120122, 0.0158207603, 0.0142133832, -0.0267003234, -0.0203601141, 0.00575976912, -0.00123808987, 0.0212531015, -0.00133017916, 0.0367315486, 0.00602022372, -0.0189908668, 0.0375054739, 0.00290779024, -0.00330219301, -0.00425285287, 0.0258519854, -0.0256733894, -0.0200029183, -0.0342907161, 0.0293197539, -0.00482213218, 0.00118878949, 0.0218484253, 0.00268268306, -0.0391723812, -0.00269012456, 0.000967403059, -0.0117427846, -0.0189611, 0.00450214511, -0.00380263804, -0.00992704369, 0.00847593881, 0.00341753731, -0.0132831885, -0.0244678557, 0.00186876219, 0.0301532093, -0.00792526361, -0.0233813878, 0.00262315059, 0.0246018041, -0.0151286954, 0.00556628825, 0.0314033926, 0.0108721219, -0.00245757587, 0.0220121406, 0.00776899047, 0.0182020608, -0.00439052144, -0.0262984801, 0.0142357079, 0.0254947916, 0.00927962735, 0.00282407273, -0.0197052564, -0.00236827717, -0.0118618496, 0.0203898791, 0.0110135116, -0.00849082228, 0.0223991014, -0.0238129981, 0.0283077024, 0.00309196906, -0.00685367873, -0.0365827195, 0.00248920242, 0.0116609279, 0.0100535499, 0.00246687769, 0.00548071042, -0.0172495414, 0.00349939452, -0.0189611, -0.0267003234, 0.0212531015, -0.0225479323, 0.00227897824, 0.00236827717, -0.0293792859, 0.0152849685, 0.0212233346, 0.0158951767, -0.00206131255, -0.00116460444, 0.00174969726, -0.00625835359, 0.0610208064, 0.023902297, -0.00112925703, -0.00554024288, -0.0103512127, 0.0225628149, -0.0139082791, -0.0251524802, -0.011028395, -0.0285458323, -0.0125687979, -0.0562284403, -0.00866197795, -0.00186039053, 0.00425657351, 0.017145358, 0.00501189195, -0.0432205908, -0.0221758541, 0.0073038931, -0.00493375538, 0.0137743307, -0.0139082791, -0.040928591, -0.00873639341, 0.00444261264, 0.0157612283, 0.032445211, -0.0131194741, 0.0125315906, -0.0154486829, 0.0076276008, 0.00155435631, 0.0136850327, 0.00555512588, -0.0289625581, -0.0419406444, 0.0510788821, 0.00488538528, -0.0441135801, 0.0419406444, -0.00216363417, -0.00204270869, -0.0200029183, -0.0449470356, 0.0397677086, 0.0104851611, -0.0117353434, -0.0427443311, 0.00221572514, 0.00214130944, 0.0167583972, 0.00950287469, -0.000859500433, -0.0194224771, -0.0172941908, 0.0179043971, 0.0070099514, -0.0160886571, 0.0210596211, 0.00125669374, -0.00231804652, 0.00686856173, -0.0190801639, 0.0268193893, -0.0228902437, -0.0229200106, 0.0534006469, -0.00338405021, -0.0378924347, -0.00463981368, -0.00301383249, 0.0204642955, 0.00287058251, -0.0116460444, -0.00258780317, 0.0311354958, -0.00322033581, -0.02653661, -0.0440242812, 0.0218484253, -0.0121743949, 0.0148087079, -0.0289030261, 0.0216847118, -0.0172197744, 0.0117427846, -0.00426773587, -0.0191248134, 0.0241999589, -0.0123455515, -0.0291560404, -0.000198480411, -0.0108870054, -0.0392616801, -0.0335763283, -0.00338405021, -0.0167286322, -0.0124869412, -0.0456614234, 0.0177109167, -0.026655674, 0.00309010851, -0.0162226055, -0.0280100387, -0.0111549012, 0.0321177803, 0.0228307117, -0.00390682, 0.0141240843, 0.0289774425, 0.0129259927, 0.00293941703, 0.000957170909, 0.0129334349, 0.0134841101, 0.00170132704, -0.0361659899, 0.0249887649, 0.0130748246, 0.00866941921, 0.007694575, 0.0288732611, 0.0219823737, -0.0121520702, -0.0347372107, 0.0190057494, 0.00837919861, -0.0497989319, 0.0069132112, -0.00278872531, -0.0100089, 0.00655229529, 0.00751225697, 0.00395146944, 0.0311057288, -0.022205621, 0.00258780317, -0.0382496268, 0.00713645807, 0.0110730445, -0.00904149748, -0.0194075927, 0.0294983517, 0.0234558024, 0.00215433212, -0.00363706332, 0.00546582742, -0.0152105521, -0.0142505914, -0.0511384122, -0.0164607354, -0.00290034874, 0.0348860435, 0.0589669384, -0.00143529125, 0.00551419752, -0.017085826, -0.0199731514, -0.0162821375, 0.0296620652, 0.00235339394, 0.00460632704, 0.00919032935, 0.0140199028, -0.0128366947, 0.00773178274, -0.0205535945, -0.0209107883, -0.00527606718, -0.00658578239, 0.0165798, -0.00503049605, -0.00670484733, -0.0207321923, -0.0102767972, -0.0117130186, 0.0128515773, 0.0210596211, -0.0176365022, 0.011087927, -0.0266854409, 0.0421192423, -0.0286202468, 0.034171652, 0.00507886615, -0.0195861906, 0.0139454873, 0.0210596211, -0.0323261432, 0.0116162784, -0.00758667244, 0.00645927573, 0.0223991014, 0.0185592547, -0.0126283308, 0.00242967, -0.00512723625, 0.030837832, -0.00205573137, -0.0105595766, -0.0242148433, 0.0019273645, 0.0271617, 0.0207470749, 0.00369473547, -0.0296471827, 0.00580813922, 0.0228455961, -0.0345288478, -0.00171528, -0.0227265302, -0.0192736462, -0.0131194741, 0.0169965271, -0.0174727868, 0.0291113909, -0.00485561928, 0.0220419057, 0.024021361, 4.19459902e-05, -0.0322666131, -0.0351539403, -0.00445377501, 0.0279058572, 0.0212828666, 0.011876733, 0.000287430332, -0.00443145027, 0.00849082228, 0.0349158086, 0.00230688415, -0.00411518384, -0.0322963782, -0.0195266586, -1.43526222e-05, 0.0172048919, 0.00527606718, -0.00228083879, -0.0022008419, 0.0249887649, 0.00135343405, -0.000912056421, -0.00274593639, -6.40672e-05, 0.00520537235, 0.00438680081, -0.00920521189, 0.0203749966, -7.77294408e-05, -0.0154486829, -0.00950287469, 0.0198243205, 0.0162077211, 0.00992704369, -0.000798107532, -0.0322963782, 0.000678112323, 0.0104107447, -0.0178151, 0.00887778308, -0.0103660962, 0.0114600053, 0.0141910585, 0.0119809145, 0.0114748888, -0.00782108121, 0.00660438603, 0.00671973033, 0.0107158488, 0.0295876507, 0.0148608, -0.0169965271, -0.0222502705, -0.0154635655, 0.00395146944, 0.00122134632, 0.0143994223, 0.00340265408, 0.0154784489, 0.00558489235, 0.0169518776, -0.00559233362, -0.0175174363, -0.0156272799, 0.0110060703, 0.0243487898, -0.00524630118, 0.0210447367, 0.00775410747, -0.00255245576, -0.0140199028, -0.0417322777, -0.0581930131, 0.0243934393, 0.023113491, -0.0128962267, -0.0110656023, 0.00936892629, -0.00069950684, -0.00633276906, -0.00218781922, -0.00561837945, 0.00182039209, -0.0253310762, 0.0130078504, 0.0124646164, -0.040898826, -0.0131120319, 0.0726891756, 0.00956984889, 0.010663758, -0.0162672549, 0.00614300929, -0.0178002156, -0.0167137478, 0.0072034318, -0.0018176015, 0.00239060167, 0.00462121, -0.00914568, 0.0172644239, 0.00413006684, 0.00372636225, -0.0189759824, -0.0187676195, 0.00578581449, -0.0036426445, -0.00887034182, -0.011601395, 0.0110804858, -0.00678670453, -0.011452564, 0.0312843248, 0.00191248138, 0.00645555509, -0.00734482147, -0.04464937, -0.0152552016, 0.00338405021, -0.0246613361, -0.00650020456, -0.00679414626, 0.000355334574, 0.020449413, 0.00526862592, 0.00494863885, -0.0190355163, 0.021297751, -0.00355148548, 0.0132013308, -0.0372971073, 0.0127399536, -0.0139975781, -0.0102321478, 0.0109688621, 0.00408541737, -0.024021361, 0.00438680081, -0.0112218754, -0.011541863, -0.0225479323, -0.0184550732, -0.0108497972, -0.00813362747, 0.00117669697, -0.00713645807, 0.0249143485, -0.0309568979, -8.1973456e-05, -0.00363892387, -0.0073708673, -0.0140645523, 0.00894475728, -0.00487050228, -0.0398272388, -0.0218335427, -0.0148087079, 0.00551419752, -0.00813362747, 0.0114451218, 0.0259412844, -0.00918288715, -0.000387891429, -0.0070918086, -0.0366422497, -0.0149873057, -0.0221312046, -0.0119213825, -0.0172495414, 0.00876616, -0.0210000873, 0.0183508918, -0.00162226055, -0.0103214467, -0.0169518776, -0.0140347863, -0.0131343566, -0.011452564, -0.0180532299, -0.0402737334, -0.0432801247, -0.00537280785, 0.01538915, -0.0189908668, 0.00251524802, 0.000965542684, 0.00149482372, -0.00545094395, -0.0175472032, 0.00330591388, -0.00936148502, -0.0136552658, -0.00773922447, -0.0169965271, 0.00793270487, -0.0113707064, -0.013298071, 0.000376961631, -0.0113930311, 0.0201815162, 0.0074192374, -0.0038063589, -0.00546582742, 0.00823036768, -0.0145854615, 0.0038807746, -0.0228753611, 0.0140571101, 0.0130450577, -0.00839408208, 0.0191396978, -0.0259412844, -0.011028395, -0.0294090528, -0.0031849884, 0.0070434385, -0.0149426563, 0.0240660105, -0.0246613361, 0.000370915339, 0.00820804294, -0.00837175734, -0.0417025127, -0.0217888933, -0.0234260373, 0.00595324952, 0.00534304138, 0.00433470961, 0.00348079065, 0.00314778066, -0.0224288683, -0.010782823, 0.00596069125, -0.0214465819, -0.0135213183, -0.00510119088, 0.0237237, -0.00910103, -0.0107381735, -0.0154635655, -0.00499328785, 0.00430494361, 0.0241255444, -0.0180532299, -0.00476632034, 0.00463981368, 0.00297104358, 0.0144589553, 0.0152179943, -0.00824525, 0.0389640182, 0.00676810043, -0.0154040335, 0.00446121627, 0.0100461086, -0.00248548179, -0.0179192815, 0.00670112669, 0.00787317287, -0.0237385817, 0.00365194655, 0.00415611221, 0.00934660155, 0.0208363738, 0.0202410482, 0.0121595124, 0.0189611, 0.0185592547, -0.030837832, 0.018871801, 0.0241850764, 0.0299150795, -0.0302276239, -0.0137371235, -0.000373240851, -0.00112274569, 0.00812618528, 0.0215061139, -0.00507142441, -0.000370915339, -0.00787317287, 0.0107679404, 0.00171248941, 0.033933524, 0.000705553102, -0.0181722939, -0.0101726148, 0.0238725301, 0.00902661495, -0.0352730043, 0.00104367908, 0.00354962493, -0.00816339348, -0.0268938057, -0.0302425083, -0.0040779761, -0.000329754199, 0.00867686141, 0.0234558024, 0.00167156081, -0.00903405622, -0.0203898791, -0.0383984596, -0.0151659036, -0.00500445, -0.007679692, 0.00952519942, 0.0146822017, -0.000415797287, 0.0121520702, -0.000159295931, -0.0147045264, -0.0164160859, -0.0345288478, 0.0228902437, 0.00174039532, -0.0037152, 0.00522025581, -0.0293048713, 0.0184699576, 0.0264175441, 0.0120627722, 0.00965170562, -0.00600534026, 0.0185890216, -0.0022826991, -0.0404225662, 0.00730017247, 0.0116386032, -0.00290779024, -0.0133799287, -0.00763504254, 0.0155826304, -3.01150703e-05, 0.0183211248, 0.00909358915, -0.027176585, 0.0287541952, -0.00880336761, 0.000851128658, 0.0152031109, -0.0111921094, 0.0181127619, 0.042595502, 0.0037579888, -0.0104702776, -0.0208661389, -0.034022823, 0.00596813252, 0.0153147345, -0.0199880358, 0.00983774476, -0.0116237197, 0.00534676248, -0.0244678557, -0.00901917275, 0.0137371235, -0.00687600346, -0.0401844345, 0.00976332929, -0.0039961189, 0.00435703434, -0.003854729, -0.0292304549, -0.0117204599, 0.0135882925, -0.000350683607, -0.010782823, -0.020568477, 0.0219526086, 0.0128218113, 0.00554024288, 0.000106681764, 0.0197945554, -0.00447982037, 0.0198392048, 0.00445005391, -0.0114674466, -0.00295243971, 0.000384170649, -0.00436447607, -0.015418916, 0.0074490034, 0.0247357525, -0.0101354076, 0.000540443463, -0.0465544127, -0.00787317287, -0.0197499059, -0.00331707625, -0.0184848402, 0.00424169051, -0.00268268306, -0.0221609715, 0.00302685541, -0.0402439684, 0.0336060934, 0.0225032829, 0.0130376164, -0.0244380888, 0.00776899047, 0.000253245642, -0.0131417988, -0.0204791781, 0.012844136, -0.00039091456, 0.0108721219, 0.0185592547, -0.0223991014, -0.0335763283, -0.00106600369, -0.0233069714, -0.0121595124, 0.00545838568, -0.0205982439, -0.0240808949, 0.00462493068, 0.00270686811, -0.00269012456, -0.00727784773, -0.00863965321, -0.0236641672, -0.0164756179, 0.0204791781, -0.0313438587, -0.0169072282, 0.0130078504, -0.00185480935, -0.00898196548, 0.011541863, -0.0116386032, -0.00738947093, -0.0168923456, -0.0230241921, 0.0111921094, 0.0209852047, -0.0138710719, 0.0068797241, -0.0244529732, -0.0106191086, -0.0129929669, 0.0144366305, 0.0344097838, -0.00830478314, 0.00814851, -0.00873639341, 0.00808153581, 0.0121223042, -0.00368915428, -0.00561093772, -0.00202782569, 0.0118172, 0.0142877987, -0.00071997114, -0.00172458193, -0.00461004768, 0.0214912314, 0.0160291251, -0.0132087721, -0.0145780202, -0.0114302393, 0.00602766499, -0.0069132112, -0.0101205241, -0.025688272, 0.00455051521, -0.0176365022, -0.0213721655, 0.00497468421, -0.021297751, 0.00013022733, 0.00538024912, -0.0210000873, -0.0143696563, -0.032683339, 0.0178299826, 0.00950287469, -0.00264361477, -0.00660810713, 0.0139826946, 0.0361064598, 0.00849826355, 0.00727412663, 0.0150989294, 0.00574488565, -0.00329103088, 0.0029543, -0.0204642955, 0.0250482969, 0.0373268761, -0.00994192716, 0.00564814545, -0.0108497972, 0.0292006899, -0.028233286, -0.0279058572, 0.0236195177, -0.0310461968, 0.00405193027, 0.0023571148, -0.00693925656, -0.0333084315, 0.0336358584, 0.0253161937, -0.00582302222, 0.039559342, 0.00545838568, 0.0130525, -0.00827501714, -0.00988983549, 0.00185294892, -0.0199582689, -0.00236641662, -0.00477004098, 0.00748993224, 0.00491143111, -0.0177406836, -0.0175620858, 0.00892243255, 0.00904149748, -0.0200029183, -0.000446493708, 0.00115530251, 0.0148905655, 0.00301197218, -0.0232474394, -0.0175323207, -0.00467702188, -0.00583418459, -0.00549931405, -0.00973356329, 0.0188866835, 0.0071699447, -0.0147938253, 0.0255692061, 0.00410030084, 0.00266221887, 0.0102172643, 0.000546024588, -0.00671973033, -0.00103437714, -0.00405193027, 0.00252454984, 0.0131417988, 0.0137147987, -0.0191248134, -0.00254315371, -0.00875127688, -0.00389937847, 0.00753458124, -0.00436447607, 0.0163565539, 0.00634765252, 4.10157954e-05, -0.00212456589, -0.0127771618, 0.0123827588, 0.00737830857, 0.00191620225, -0.0133501617, -0.0134841101, 0.0148682408, -0.00384356664, -0.0144812791, -0.0300192609, 0.00383612514, -0.00201666332, 0.0158505272, 0.00535420375, 0.00874383561, -0.000347660476, -0.00740435394, 0.000916707388, 0.0631044433, 0.00474399561, 0.0143845389, 0.00427145651, 0.0273700655, -0.0039440277, -0.0140124615, -0.0269682202, 0.00147063867, -0.00667508086, -0.0128813433, -0.0166095663, 0.0148235913, 0.00517932698, -0.0014827312, 0.00771689974, -0.0145631367, -0.0141017595, 0.00986006949, 0.0241850764, 0.00875127688, 0.00823780894, 0.0205535945, 0.0195415411, -0.0026678, -0.00252641039, -0.0148310326, -0.0257626865, -0.000654392352, 0.00792526361, 0.00919777062, -0.0125241484, -0.0108497972, 0.0181276444, 0.00739691267, 0.00635509379, 0.00840152334, 0.00636997679, 0.00151900877, -0.00809641927, 0.0102172643, 0.00298964744, 0.0120850969, -0.0257626865, -0.0224884, 0.016237488, 0.00951031595, -0.003415677, -0.0074824905, 0.00934660155, -0.0138785131, 0.0126878629, 0.00187806424, 0.0142580327, -0.00332079711, -0.0120032392, 0.0147119677, -0.02562874, 0.0276081953, 0.0185741391, 0.00136366626, 0.0124125257, -0.014540812, 0.0116832526, -0.00140645518, 0.0186039042, 0.0114897713, -9.58101082e-05, -0.0160440076, 0.00924242, -0.00579697685, 0.00266221887, 0.0136255, 0.00810386054, 0.0191843472, 0.00732993847, -0.00384356664, -0.00478492444, -0.000908335671, -0.00461004768, -0.00330405356, 0.00840896461, 0.000764155411, -0.00351613807, -0.0104777189, -0.0108423559, -0.00474027498, 0.0189611, 0.0250185318, -0.00490026874, 0.00283895596, -0.00164086442, 0.0349455737, -0.0119585898, -0.0350944065, -0.00513095688, 0.00692065246, -0.007694575, -0.0125315906, 0.00453935284, 0.00423052814, 0.0186187886, 0.0211191531, -0.0167732798, 0.00148738222, -0.00734482147, -0.00648160046, -0.00259524467, -0.000449981948, -0.0106860828, -0.00459888531, -0.0335167944, -0.00675321743, -0.0135362009, -0.0143919811, -0.00724436063, 0.00891499128, 0.0121223042, -0.000520444242, -0.00695413956, -0.0238725301, 0.00147808029, -0.00913079642, -0.0330405347, -0.0326238088, -0.037535239, 0.00939869229, -0.0014752897, -0.0120776547, 0.00864709541, -0.0212679841, 0.00358869322, 0.0184401907, -0.00760899717, -0.0246018041, 0.0164607354, 0.0130971493, -0.00468818424, -0.015418916, 0.0320284814, 0.0131269153, -0.0138785131, -0.00474771671, 0.01372224, 0.00371892052, -0.00957729, 0.00846849754, -0.000986937201, 0.0208810233, -0.0203005802, 0.00496352185, 0.00567419082, -0.0336953923, 0.00506398268, 0.00973356329, 0.0141985, -0.00222502695, 0.012025564, 0.000625091197, -0.0137892142, -0.0216995943, -0.00609091856, -0.0106860828, -0.0174579043, 0.00384356664, 0.0158207603, 0.0171900075, 0.0141910585, -0.00590115879, 0.0272658821, -0.0240362454, 0.00244269264, 0.0144589553, -0.0168328136, 0.0156868119, 0.0146598769, 0.00805921201, 0.0123678762, 0.0139082791, 0.0189015679, -0.00574488565, 0.0146375522, 0.0112516414, -0.0075457436, -0.0189164504, -0.0116460444, -0.0348265097, -0.0129929669, 0.0102619138, -0.0106116673, 0.0127622783, 0.0218484253, -0.00191620225, -0.00251338747, 0.0136329411, 0.00785828941, 0.0075494647, 0.00939869229, 0.00430866424, 0.00590115879, -0.0200326853, 0.00641462626, -0.00926474482, 0.0209256727, 0.000583232439, 0.0038472875, 0.00485561928, -0.00732993847, 0.00864709541, -0.00439052144, -0.0245720372, -0.00868430268, -0.00842384808, -0.00532815838, 0.0113037322, 0.0180532299, -0.0100163426, -0.0240808949, -0.0117799928, 0.00110042095, -0.012330668, 0.00571511965, -0.019601075, -0.0216102954, -0.0109911868, 0.0255840905, 0.00656717829, 0.0034640471, 0.00851314701, -0.0104405116, -0.0077466662, 0.00216177385, 0.0199433863, -0.00396635244, 0.0130673824, 0.00620998349, 0.00247617974, 0.00558861298, -0.00309755025, 0.0023161862, -0.00390682, -0.0236790497, -0.015359384, 0.00474027498, -0.00744528277, -0.0247952845, 0.0161630716, -0.00384356664, -0.0233665053, -1.52319471e-05, 0.00732993847, -0.0071699447, 0.0174579043, -0.00440912554, -0.00618393812, 0.0170709435, 0.00172086118, -0.00365566742, 0.0110804858, -0.0218633097, 0.0139082791, 0.032355912, -0.0174727868, -0.0156570468, 0.0404820964, 0.00909358915, -0.0303913392, -0.00323521905, -0.0132459803, 0.0306294691, 0.00997913443, 0.00530955428, 0.017026294, 0.00889266655, -0.00245571556, -0.00926474482, 0.000592999451, -0.0165649168, -0.0183360092, -0.00445005391, 0.0040928591, -9.02870743e-05, 8.88336435e-05, -0.0176662672, 0.00894475728, 0.0183508918, -0.0101428488, 0.0317308195, 0.0208661389, -0.0101949396, 0.0130301751, -0.00046300469, -0.0243785568, 0.00336544635, -0.0126283308, 0.0165649168, -0.0222353879, -0.0237832312, 0.00651508756, -0.00740807503, 0.00501933368, 0.00642578863, -0.00112832687, 0.00639230153, 0.0217442438, -0.000410681212, 0.0333977304, 0.00602394436, -0.00554768462, 0.0347372107, 0.00867686141, 0.00632160669, 0.0337846912, 0.00700623076, 0.0020371275, -0.00116274401, -0.0204940625, -0.0110358363, -0.00520165171, 0.0146152275, -0.00490398938, 0.00196643267, 0.000896708225, -0.00708064623, -0.00944334175, -0.000920428196, -0.0285755973, -0.0211042687, 0.00908614695, 0.00973356329, -0.0192438792, -0.00538024912, -0.0132906297, 0.026447311, -0.0175323207, -0.000246036652, 0.00159714522, 0.00661182776, -0.0210447367, -0.000367892208, -0.0239469465, -0.00674205506, -0.011422798, -0.00576348975, 0.00427517714, 0.00763504254, -0.00691693183, -0.0211489182, -0.0280695725, -0.00498956721, 0.0126804216, 0.0121446289, 0.022205621, 0.00197945558, 0.00798479561, 0.0215656459, 0.00501933368, -0.00305662164, -0.0212828666, 0.0122264866, 0.00359241408, -0.00333195925, 0.00951031595, -0.00618021702, -0.00665647723, 0.0264621936, 0.032236848, -0.0302573908, 0.00664903549, 0.00355148548, 0.0138413049, -0.0013729682, 0.00124460121, -0.0223395694, 0.0124348504, -0.0208066069, -0.032981, 0.00561465835, 0.00577465212, 0.00826013368, 0.0166095663, -0.0240064785, -0.0169965271, -0.0258817524, -0.0157165788, 0.0102544725, -0.00137203804, -0.00448726164, -0.0308080669, 0.0214019325, 0.000468585844, -0.0289625581, -0.0218037758, -0.0171304755, 0.0120032392, 0.0171007086, 0.00559977535, 0.0278760903, 0.00843873154, -0.00263245264, 0.00252268952, 0.0135585256, 0.0111623425, -0.0031366183, -0.00843128935, 0.0157761108, 0.01205533, -0.00348265097, 0.0118916156, 0.00815595221, -0.000140808304, -0.00117204606, 0.00816339348, -0.00193294568, -0.00315336185, -0.00298034563, -0.0124943824, -0.0114897713, -0.0017357443, -0.00430866424, 0.0074676075, -0.00408913847, -0.0179043971, 0.00971123856, 0.0128813433, 0.0160588901, 0.0155379809, -0.00555512588, -0.0117799928, -0.00389937847, 0.026596142, -0.0201517493, -0.00021441, -0.0073038931, -0.00857267901, 0.0124422917, 0.000603696739, -0.00596441189, -0.0101279654, 0.0228753611, 0.0164905, 0.0110209528, -0.00831966661, -0.00388449524, 0.0142952409, -0.028173754, 0.0111251352, 0.0106414333, -0.00146412733, 0.00177481247, 0.0172495414, 0.000523234834, -0.00497468421, 0.00726668537, -0.014540812, -0.00831966661, 0.01148233, 0.00469190488, 0.0109167714, -0.0125315906, -0.0231879074, -0.000287197792, 0.00985262822, -0.0211489182, 0.0110358363, 0.00690949, -0.0229646601, 0.0151138119, -0.0225628149, -0.00568535319, -0.0280100387, 0.00236083544, 0.0108051477, -0.00128552981, 0.00983030349, -0.00232176739, 0.0114972135, 0.00568535319, 0.00264361477, 0.00281291036, -0.00453563221, -0.00331149506, 0.00109763036, 0.000915777229, -0.00362590095, -0.00933171902, -0.0213126335, 0.0074155163, -0.0142059419, 0.010693525, -0.0444707759, -0.0303764567, -0.00593464542, -0.0134766689, -0.00832710788, -0.00861732848, 0.00509747, -0.0172197744, -0.00692065246, -0.00595324952, -0.00104088848, -0.000134064394, -0.0181574114, 0.00197201385, -0.00551419752, -0.00066834531, -0.00291151111, 0.00538024912, 0.00667880196, 0.0101279654, -0.0179192815, 0.0234409198, 0.00239246222, 0.0356004313, -0.00157203, 0.0162077211, -0.0039105406, 0.0104777189, 0.0102544725, 0.0153742665, -0.00469190488, -0.0119585898, 0.0268491562, 0.00805177, -0.0151212541, 0.0193331782, 0.00636625616, -0.0076127178, 0.00400356, 0.0211191531, -0.00193852687, 0.000174411602, 0.0175472032, 0.0260454677, -0.00441656681, -0.000872058037, -0.0143845389, 0.0275635459, 0.00813362747, -0.0251673628, -0.00108181708, 0.0161928385, -0.0190206319, 0.00290593, -0.0331000686, -0.0327131078, 0.00192364375, 0.000740900519, -0.0419704095, -0.00773922447, -0.00904894, 0.0173834879, -0.000901359192, 1.08425884e-05, 0.0124125257, 0.0160588901, 0.00384356664, -0.0283374675, -0.00343428086, -0.0208661389, -0.013238539, -0.00360915763, -0.00493747648, -0.000463469769, 0.018871801, -0.0105446931, -0.0189015679, 0.00789549761, -0.00839408208, 0.00261384854, 0.00514956098, -0.00416727457, 0.0189908668, 0.00290034874, -0.00713645807, -0.00647415873, -0.0313736238, -0.0127101876, -0.00229572179, 0.0133427205, -0.00782108121, -0.000253013102, -0.0104553942, -0.0238278806, 0.0264175441, 0.00930195209, -0.000840431429, 0.00258966349, 0.00808153581, -0.0112293167, 0.0119437072, -0.00641090563, 0.011966032, -0.00772434147, 0.0070918086, -0.0165202674, 0.000106739906, -0.00844617281, -0.0242892578, 0.00385844987, -3.07255104e-05, 0.0177704506, 0.0229646601, 0.034380015, -0.0116683692, -0.0215507634, -0.00713645807, 0.00168551377, 0.00140273443, -0.0266407914, 0.0217442438, 0.0111400178, 0.0252715442, 0.0211935677, -0.00980053749, 0.00929451082, -0.0235748682, 0.0180383455, -0.0139008379, 0.019511776, 0.00693181483, -0.00299708918, 0.0168923456, 0.0140347863, 0.00374124525, -0.00658950303, 0.0220865551, -0.00521653472, 0.00680158753, 0.00713273697, 0.00454307348, 0.0202112831, -0.0071066916, -0.014511046, 0.00728156837, -0.00388449524, -0.0118395248, 0.0182169434, -0.0128515773, -0.00312359561, -0.000257431529, -0.0160737745, -0.0142431492, 0.0162523706, 0.0150691625, 0.00728156837, -0.00894475728, -0.00276826113, 0.0286351312, 0.0280100387, -0.00675693806, 0.0165798, -0.0111995507, 0.00155807706, -0.0124274082, 0.0380710326, 0.00304918, 0.00562582072, -0.000547885, 0.00814851, 0.0161630716, 0.00661926949, 0.0193927102, 0.00574860675, -0.0103735374, 0.0220121406, 0.0302573908, -0.000728808, -0.00305476109, -0.0342907161, 0.0117055774, -0.0070732045, -0.00179434661, 0.00954752415, 0.011631161, -0.00846105628, -0.00373566407, -0.00312731648, 0.0201219842, 0.016445851, 0.0212679841, 0.0137892142, -0.00706948387, -0.0141836172, -1.2041668e-05, -0.0109539796, -0.020508945, 0.030837832, 0.0278463252, -0.0194224771, 0.0123827588, 0.00293383584, -0.00910847168, 0.00427145651, 0.00197573472, -0.00503793731, 0.00607603509, -0.000231618615, -0.00376170967, 0.0039440277, -0.00906382222, -0.00600534026, -0.00930939429, -0.00473283324, -0.0209852047, -0.00378961535, -0.0229497775, -0.00891499128, 0.0176662672, -0.00983030349, -0.00453191111, -0.00811874401, 0.000423471385, 0.015359384, -0.0275486615, -0.0233962703, -0.0169369951, 0.0141836172, -0.00307522551, -0.0117279012, 0.0176960342, -0.0204047635, 0.0262835976, -0.0131417988, -0.00880336761, -0.0210000873, 0.00119623111, 0.00228828029, 0.0336656272, -0.00916056242, 0.00566302845, 0.0233665053, 0.00696530193, 0.00481469044, -0.00665647723, 0.0164012033, -0.0106860828, 0.0103140045, -0.0106563168, 0.00333754043, -0.00223991019, -0.00421564467, -0.012330668, -0.00946566649, 0.00604254846, -0.00290965079, -0.0105967838, -0.00305104046, -0.0117427846, -0.00593092479, -0.00938381, 0.00261942972, 0.0114674466, 0.0191248134, -0.0223098025, -0.000660438614, -0.00059020886, -0.011846967, -0.00149668416, -0.00548815215, 0.00855035428, 0.0199433863, -0.0144291883, 0.0101279654, 0.00980797876, -0.0127548371, -0.00201108214, 0.0146226697, 0.010663758, 0.00280918973, 0.016237488, 0.00979309529, 0.0100163426, 0.00526118418, -0.0144589553, -0.0235302188, -0.0166988652, -0.0120181227, -0.00513839861, 0.00978565402, -0.0136478245, -0.0264324285, -0.0069913473, -0.0105670178, -0.0141315265, 0.00812618528, -0.0204940625, 0.0162077211, 0.00608347682, 0.01114746, -0.000460911746, -0.0127846031, -0.00877360161, 0.00574116502, 0.00945822522, -0.00648904219, 0.0105967838, 0.0142654739, 0.00315336185, 0.0203749966, -0.0143250069, -0.00984518602, -0.00508630741, 0.0133948112, -0.0109688621, 0.0185890216, -0.00038742632, 0.00643695099, 0.0221014395, -0.00127529772, 0.00574116502, 0.0307783, -0.00612812629, 0.00290406961, 0.0206875429, -0.0201963987, -0.0131566813, -0.00858756248, 0.00830478314, -0.0113930311, -0.0215358809, 0.00682019163, 0.0168923456, 0.00693553593, 0.0190652814, 0.00375240762, 0.0175323207, 0.00971123856, 0.00675693806, -0.0107679404, 0.00511235325, -0.00628812, 0.0106786415, 0.00880336761, 0.00151900877, -0.00666019786, -0.00230316352, 0.00850570574, -0.0201071, 0.0303615723, -0.00846849754, -0.0212233346, 0.0035868329, -0.00439796317, -0.0254799072, 0.00610580156, 0.010269355, 0.00173667457, -0.0139975781, 0.0105670178, -0.00455795648, -0.0106860828, 0.00744156213, 0.00918288715, 0.00429006061, 0.00479236571, -0.0204196461, -0.00362404063, -0.0242148433, -0.00486678164, 0.0112665249, 0.00907126442, 0.000534397142, 0.0150617212, 0.0360171609, 0.0162226055, 0.0145259285, 0.0198540874, -0.00651508756, 0.00535048312, 0.0218484253, 0.00494863885, -0.010299122, -0.0208959058, -0.0168774631, -0.00270872866, 0.0130152917, -0.0154040335, 0.023991596, -0.0121074216, -0.0372673422, -0.0274147149, -0.01281437, 0.0242446084, 0.0233367383, 0.00858012121, -0.00287802401, -0.0226818807, 0.0157612283, -0.0250929464, 0.0203452297, 0.0160886571, -0.0138561884, -0.0128069278, 0.000912521558, -0.001919923, 0.0129855257, 0.00471795024, 0.00799223781, -0.00243339082, 0.0131566813, 0.00589743769, 0.000819967128, 0.00632904842, -0.0144887213, 0.0167137478, -0.0467330106, 0.0236344, 0.0295578837, 0.0293941703, -0.0179490466, 0.0201368667, 0.00525002182, -0.0149575397, -0.014905449, 0.0146524357, 0.00013022733, 0.0118246423, -0.0198540874, 0.00831966661, 0.0066639185, 0.00954008196, 0.00343986205, 0.00667136, 0.0260603502, -0.00685739936, 0.0158802923, -0.0179043971, -0.00478120334, -0.0110953692, -0.00362218032, 0.0110209528, -0.0130897071, -0.00883313362, -0.0160886571, -0.00843128935, 0.00542117795, 0.0250185318, 0.0199731514, -0.0119883567, -0.0124348504, -0.0150542799, -0.0155826304, -0.0074824905, 0.00737830857, -0.0205387101, -0.0038138004, -0.0111697847, -0.0148980068, -0.0156123973, 0.000640439452, 0.0138338637, 0.0035868329, -0.000572535151, -0.00612440566, 0.0235153362, 0.0119213825, 0.0145036038, -0.020449413, -0.0186039042, 0.00793270487, 0.00634393143, -0.00655229529, 0.00509747, 0.0108497972, 0.0104851611, -0.0127846031, -0.00427889824, -0.0177109167, -0.00195341, 0.00487422291, 0.0121223042, -0.0181574114, -0.00626951596, 0.00985262822, -0.00975588802, -0.0202559307, 0.00815595221, 0.0125762401, 0.0100386674, 0.00216549449, 0.00884057581, -0.00866197795, -0.0107084075, -0.00383612514, -0.0017283028, 0.0235302188, -0.00400356, 0.01963084, -0.00509374915, -0.00161853968, 0.00265291682, -0.0031366183, -0.00442772917, 0.00612440566, 0.00494863885, 0.000870197662, 0.000824618095, -0.0153147345, 0.00150412566, -0.00832710788, -0.000973914401, -0.0273402985, -0.00236641662, -0.00388449524, 0.0152403191, 0.0232772063, 0.0191843472, 0.00128552981, -0.0181871783, 0.0228009466, -0.00244083232, -0.00615789229, 0.00722947763, -0.00855035428, 0.018782502, 0.00577465212, 0.0155379809, -0.00423796941, -0.0138859544, 0.00811130274, 0.0112218754, -0.0038324045, 0.00327986851, -0.00628067832, 0.00154598453, 0.00366682955, -0.0289030261, 0.0015645884, 0.00118971977, -0.00462865131, 0.00152552023, -0.00375984912, -0.000182550823, -0.0336953923, 0.00332079711, -0.00838664, 0.0174579043, 0.0136701493, -0.0159993581, -0.00144552346, -0.0131343566, -3.8399623e-05, 0.00755690597, 0.00471050851, 0.0113558238, -0.0120181227, -0.00386961224, -0.00400356, -0.00846849754, -0.00221944577, 0.0166690983, -0.019571308, 0.00732993847, -0.00685367873, -0.000802758499, -0.0031701054, -0.00458772294, 0.0102172643, 0.00503049605, -0.0241701938, -0.0241999589, -0.00183341478, -0.0174727868, 0.0180532299, -0.0139454873, 0.00816339348, 0.00523885945, -0.0293495208, 0.00440168381, 0.0133576039, 0.00788805541, -0.00223991019, -0.0155975139, -0.00839408208, -0.00589371705, -0.000558582251, 0.015418916, -0.0113855898, 0.00396635244, 0.000951124646, -0.0126506556, 0.017874632, -0.0038956576, -0.0076276008, 0.0195564255, 0.00337288785, 0.0173537228, -0.0120330052, 0.0219079591, 0.0133055132, -0.0129259927, 0.00562954182, 0.00554024288, 0.00596441189, 0.00268082274, 0.0178002156, -0.0223098025, 0.0113334991, 0.00982286222, -0.00490026874, -0.000555791659, -0.00497840485, 0.0100312252, -0.00675693806, -0.00440168381, -0.0168923456, -0.00534304138, 0.0131269153, -0.0196754895, -0.0218484253, -0.00579325575, -0.0190057494, -0.00404820964, 0.0147491759, -0.0131790061, -0.00129297143, -0.00959217362, -3.92135444e-05, -0.0311057288, 0.00156830915, -0.0146375522, -0.0303615723, 0.000653462135, 0.0115939537, -0.00979309529, 0.0168774631, 0.00380821922, 0.0105595766, 0.0125390319, 0.0262240637, 0.00309941056, 0.0140347863, 0.00579325575, -0.0305699371, -0.0141687337, 0.00381752127, 0.0415536836, 0.0101651736, -0.0198838543, 0.00244083232, 0.00219526072, -0.00483329454, 0.0323261432, 0.00821548421, 0.00783596467, 0.00460632704, 0.0221758541, -0.0120850969, 0.0134096947, 0.00104646967, 0.000743226, 0.0430122279, -0.00157203, -0.00183062418, -0.0208661389, -0.00106321322, 0.00866197795, 0.00198317622, 0.0152403191, 0.0114376806, -0.00561837945, -0.00724808127, 0.00413006684, 0.00191062107, 0.017085826, 0.00922753662, -0.00356450817, 0.000680902915, 0.00421564467, -0.00565186609, 0.00513839861, -0.00734482147, 0.001919923, 0.00037719417, -0.000349520851, -0.00246687769, -0.0270426366, -0.0252268948, -0.00714389933, -0.0131790061, -0.00360729708, -0.0153147345, 0.00593092479, -0.000742760894, 0.00039812355, -0.0235004518, -0.00883313362, 0.000834850245, 0.00279802736, -0.0108646806, -0.0151584614, -0.0199582689, -0.0159547087, 0.00204642955, 0.0120999794, 0.0262389481, -0.0107902652, -0.0105893426, -0.0158356447, -0.0552163906, -0.00213014707, 0.00948799122, -0.00356264785, 0.00852803, -0.0138710719, 0.00817083474, -0.000538117951, -0.00920521189, 0.00917544588, -0.0233962703, -0.0160142407, 0.000318126782, -0.0281588696, -0.00695413956, -0.018782502, -0.00974844582, 0.0039440277, -0.0150691625, -0.00420076167, -0.00959961489, 0.00277198176, 0.000706483261, -0.0115865115, 0.00919777062, -0.00811874401, 0.000402774545, 0.0168774631, -0.00131436589, -0.00667136, 0.0120478887, 0.00612440566, -0.00305104046, 0.0013599454, 0.00479980744, -0.00469190488, -0.00189666811, -0.00790293887, -0.00820804294, 0.00687600346, 0.0127027463, 0.0112293167, -0.0143175656, -0.00574116502, -0.0109911868, -0.0136701493, -0.000950659509, 0.00417099567, -0.0246613361, 0.00590487942, -0.00194224762, -0.0172048919, -0.0161481891, -0.0215507634, 0.00876616, 0.00183713564, -0.0184699576, 0.00829734188, -0.00341195613, 0.015418916, 0.0162523706, -0.0310461968, -0.0124050835, -0.0121595124, 0.042595502, -0.000846012554, 0.0172495414, -0.0181722939, -0.0228902437, -0.0207768418, -0.0152254356, -0.00235339394, -0.0199582689, 0.00130971486, -0.0041077421, -0.018842034, -0.00466213841, 0.00134320196, 0.0138785131, 0.0745346844, 0.0415536836, 0.0189462174, -0.0409881249, 0.00872151088, -0.00604998972, -0.0204642955, 0.0454828255, -0.0130673824, 0.0160440076, 0.00482213218, -0.0135064349, 0.0147194099, 2.42868173e-05, 0.00967403, 0.0105670178, -0.000181853175, 0.00149203313, 0.00166132872, -0.00439052144, -0.00955496542, 0.00359799527, -0.000349288312, -0.0202559307, 0.00216363417, -0.0040258849, -0.00830478314, 0.00994936842, -0.027251, 0.0151584614, -0.00817083474, 0.00178876542, -0.0109986281, -0.0138561884, -0.0335763283, -0.00702111376, 0.0135734091, -0.00236455631, 0.00339707313, -0.0149798645, 0.00358125172, 0.0213721655, -0.00628439896, -0.000341381645, 0.00295243971, -0.0150840459, -0.0177258011, -0.000715785252, -0.00902661495, 0.00241478696, -0.0137594482, 0.0075010946, -0.0116162784, -0.0117576681, -0.00487050228, 0.00599789899, -0.00676810043, -0.00922009535, 0.00661182776, 0.0197499059, -0.0040928591, -0.0182020608, 0.011117694, 0.0276230779, 0.0156272799, 0.00241664727, -0.0192885287, 0.00438308, 0.0077615492, -0.0105819013, -0.0221907385, -0.00516072335, 0.0148756821, -0.00243525114, -0.0120404474, -0.00449470337, 0.0128292525, 0.0111028105, -0.0201815162, -0.0154784489, 0.00760899717, 0.0142208245, -0.00542861922, -0.0147491759, 0.00337660871, -0.00375426793, 0.0073187761, -0.00192178332, -0.00624719122, 0.0162226055, -0.00122320675, 0.021297751, -0.0274742469, 0.00714389933, 0.00718482817, 0.0112144342, -0.00970379636, -0.000826943549, 0.000203363932, -0.0120776547, 0.0353325345, 0.0111102518, -0.00310871261, 0.0176067352, -0.00337288785, -0.00611696392, 0.00349939452, -0.00263989414, 0.0327131078, 0.00843128935, 0.0130673824, -0.0071401787, -0.0104256282, 0.0336060934, 0.0221758541, 0.00309196906, 0.00151714846, 0.00577093149, -0.00425657351, 0.0038324045, 0.0246166866, -0.00884801708, -0.00866941921, -0.00642578863, -0.00133576035, -0.00785084814, 0.0157612283, 0.00634393143, 0.0186485536, 0.00744528277, 0.034380015, -0.0156123973, 0.0221312046, 0.00403332664, 0.00747877, -0.0219079591, -0.0316712894, -0.0128218113, -0.0132608637, 0.0112590836, 0.0147342924, 0.0157016963, 0.000898103521, 0.0225181673, 0.0101354076, 0.0152998511, 0.00722575653, 0.00518304808, 0.0241701938, 0.00351427752, -0.0157016963, 0.0111995507, 0.00907870568, 0.00506026205, -0.00453563221, -0.00028487228, -0.0300341435, -0.00599045726, 0.0230390765, -0.0149724223, -0.00743784104, -0.00035998557, 0.0147491759, 0.0143547729, 0.0202410482, -0.0189462174, -0.00772434147, -0.00421192404, 0.0150542799, 0.00252827071, 0.0177258011, -0.0067494968, -0.00482585281, 0.00724808127, -0.0150766047, -0.000248129567, -0.0104330694, 0.0075643477, 0.00945078395, -0.000862290966, -0.0191992298, 0.00337846903, -0.00812618528, 0.027251, -0.0103958622, -0.0328024067, 0.00142040814, 0.000803688716, 0.0281588696, 0.00255245576, -0.0021450303, 0.00584162632, -0.0176067352, 0.000883220404, -0.0115641877, -0.0101056416, 0.0162672549, -0.00765736727, 0.0205833595, 0.00236269599, 0.00329103088, 0.00442400854, 0.0152849685, 0.0145482533, -0.0199433863, 0.0311950278, 0.00235897512, 0.0069429772, 0.000760899682, -0.00211526407, 0.00242222846] |
02 Jun, 2021 | Maximum length subsequence such that adjacent elements in the subsequence have a common factor
02 Jun, 2021
Given an array arr[], the task is to find the maximum length of a subsequence such that the adjacent elements in the subsequence have a common factor.
Examples:
Input: arr[] = { 13, 2, 8, 6, 3, 1, 9 } Output: 5Max length subsequence with satisfied conditions: { 2, 8, 6, 3, 9 }
Input: arr[] = { 12, 2, 8, 6, 3, 1, 9 } Output: 6Max length subsequence with satisfied conditions: {12, 2, 8, 6, 3, 9 }
Input: arr[] = { 1, 2, 2, 3, 3, 1 } Output: 2
Approach: A naive approach is to consider all subsequences and check every subsequence whether it satisfies the condition. An efficient solution is to use Dynamic programming. Let dp[i] denote the maximum length of subsequence including arr[i]. Then, the following relation holds for every prime p such that p is a prime factor of arr[i]:
dp[i] = max(dp[i], 1 + dp[pos[p]])
where pos[p] gives the index of p in the array
where it last occurred.
Explanation: Traverse the array. For an element arr[i], there are 2 possibilities.
If the prime factors of arr[i] have shown their first appearance in the array, then dp[i] = 1
If the prime factors of arr[i] have already occurred, then this element can be added in the subsequence since there’s a common factor. Hence dp[i] = max(dp[i], 1 + dp[pos[p]]) where p is the common prime factor and pos[p] is the latest index of p in the array.
Below is the implementation of the above approach:
C++
// C++ implementation of the above approach
#include <bits/stdc++.h>
#define N 100005
#define MAX 10000002
using namespace std;
int lpd[MAX];
// Function to compute least
// prime divisor of i
void preCompute()
{
memset(lpd, 0, sizeof(lpd));
lpd[0] = lpd[1] = 1;
for (int i = 2; i * i < MAX; i++)
{
for (int j = i * 2; j < MAX; j += i)
{
if (lpd[j] == 0)
{
lpd[j] = i;
}
}
}
for (int i = 2; i < MAX; i++)
{
if (lpd[i] == 0)
{
lpd[i] = i;
}
}
}
// Function that returns the maximum
// length subsequence such that
// adjacent elements have a common factor.
int maxLengthSubsequence(int arr[], int n)
{
int dp[N];
unordered_map<int, int> pos;
// Initialize dp array with 1.
for (int i = 0; i <= n; i++)
dp[i] = 1;
for (int i = 0; i <= n; i++)
{
while (arr[i] > 1)
{
int p = lpd[arr[i]];
if (pos[p])
{
// p has appeared at least once.
dp[i] = max(dp[i], 1 + dp[pos[p]]);
}
// Update latest occurrence of prime p.
pos[p] = i;
while (arr[i] % p == 0)
arr[i] /= p;
}
}
// Take maximum value as the answer.
int ans = 1;
for (int i = 0; i <= n; i++)
{
ans = max(ans, dp[i]);
}
return ans;
}
// Driver code
int main()
{
int arr[] = { 13, 2, 8, 6, 3, 1, 9 };
int n = sizeof(arr) / sizeof(arr[0]);
preCompute();
cout << maxLengthSubsequence(arr, n);
return 0;
}
Python3
# Python3 implementation of the
# above approach
import math as mt
N = 100005
MAX = 1000002
lpd = [0 for i in range(MAX)]
# to compute least prime divisor of i
def preCompute():
lpd[0], lpd[1] = 1, 1
for i in range(2, mt.ceil(mt.sqrt(MAX))):
for j in range(2 * i, MAX, i):
if (lpd[j] == 0):
lpd[j] = i
for i in range(2, MAX):
if (lpd[i] == 0):
lpd[i] = i
# Function that returns the maximum
# length subsequence such that
# adjacent elements have a common factor.
def maxLengthSubsequence(arr, n):
dp = [1 for i in range(N + 1)]
pos = dict()
# Initialize dp array with 1.
for i in range(0, n):
while (arr[i] > 1):
p = lpd[arr[i]]
if (p in pos.keys()):
# p has appeared at least once.
dp[i] = max(dp[i], 1 + dp[pos[p]])
# Update latest occurrence of prime p.
pos[p] = i
while (arr[i] % p == 0):
arr[i] //= p
# Take maximum value as the answer.
ans = 1
for i in range(0, n + 1):
ans = max(ans, dp[i])
return ans
# Driver code
arr = [13, 2, 8, 6, 3, 1, 9]
n = len(arr)
preCompute()
print(maxLengthSubsequence(arr, n))
# This code is contributed by Mohit Kumar
Java
// Java implementation of the above approach
import java.util.*;
class GfG {
static int N, MAX;
// Check if UpperBound is
// given for all test Cases
// N = 100005 ;
// MAX = 10000002;
static int lpd[];
// Function to compute least prime divisor
// of i upto MAX element of the input array
// it will be space efficient
// if more test cases are there it's
// better to find prime divisor
// upto upperbound of input element
// it will be cost efficient
static void preCompute()
{
lpd = new int[MAX + 1];
lpd[0] = lpd[1] = 1;
for (int i = 2; i * i <= MAX; i++)
{
for (int j = i * 2; j <= MAX; j += i)
{
if (lpd[j] == 0)
{
lpd[j] = i;
}
}
}
for (int i = 2; i <= MAX; i++)
{
if (lpd[i] == 0)
{
lpd[i] = i;
}
}
}
// Function that returns the maximum
// length subsequence such that
// adjacent elements have a common factor.
static int maxLengthSubsequence(Integer arr[], int n)
{
Integer dp[] = new Integer[N];
Map<Integer, Integer> pos
= new HashMap<Integer, Integer>();
// Initialize dp array with 1.
for (int i = 0; i <= n; i++)
dp[i] = 1;
for (int i = 0; i <= n; i++)
{
while (arr[i] > 1) {
int p = lpd[arr[i]];
if (pos.containsKey(p))
{
// p has appeared at least once.
dp[i] = Math.max(dp[i],
1 + dp[pos.get(p)]);
}
// Update latest occurrence of prime p.
pos.put(p, i);
while (arr[i] % p == 0)
arr[i] /= p;
}
}
// Take maximum value as the answer.
int ans = Collections.max(Arrays.asList(dp));
return ans;
}
// Driver code
public static void main(String[] args)
{
Integer arr[] = { 12, 2, 8, 6, 3, 1, 9 };
N = arr.length;
MAX = Collections.max(Arrays.asList(arr));
preCompute();
System.out.println(
maxLengthSubsequence(arr, N - 1));
}
}
// This code is contributed by Prerna Saini.
C#
// C# implementation of the
// above approach
using System;
using System.Collections;
class GFG {
static int N = 100005;
static int MAX = 10000002;
static int[] lpd = new int[MAX];
// to compute least prime divisor of i
static void preCompute()
{
lpd[0] = lpd[1] = 1;
for (int i = 2; i * i < MAX; i++)
{
for (int j = i * 2; j < MAX; j += i)
{
if (lpd[j] == 0)
{
lpd[j] = i;
}
}
}
for (int i = 2; i < MAX; i++)
{
if (lpd[i] == 0)
{
lpd[i] = i;
}
}
}
// Function that returns the maximum
// length subsequence such that
// adjacent elements have a common factor.
static int maxLengthSubsequence(int[] arr, int n)
{
int[] dp = new int[N];
Hashtable pos = new Hashtable();
// Initialize dp array with 1.
for (int i = 0; i <= n; i++)
dp[i] = 1;
for (int i = 0; i <= n; i++)
{
while (arr[i] > 1) {
int p = lpd[arr[i]];
if (pos.ContainsKey(p))
{
// p has appeared at least once.
dp[i] = Math.Max(
dp[i],
1 + dp[Convert.ToInt32(pos[p])]);
}
// Update latest occurrence of prime p.
pos[p] = i;
while (arr[i] % p == 0)
arr[i] /= p;
}
}
// Take maximum value as the answer.
int ans = 1;
for (int i = 0; i <= n; i++)
{
ans = Math.Max(ans, dp[i]);
}
return ans;
}
// Driver code
public static void Main()
{
int[] arr = { 13, 2, 8, 6, 3, 1, 9 };
int n = arr.Length - 1;
preCompute();
Console.WriteLine(maxLengthSubsequence(arr, n));
}
}
// This code is contributed by Ryuga
Javascript
<script>
// JavaScript implementation of the above approach
let N, MAX;
// Check if UpperBound is
// given for all test Cases
// N = 100005 ;
// MAX = 10000002;
let lpd;
// Function to compute least prime divisor
// of i upto MAX element of the input array
// it will be space efficient
// if more test cases are there it's
// better to find prime divisor
// upto upperbound of input element
// it will be cost efficient
function preCompute()
{
lpd = new Array(MAX + 1);
for(let i=0;i<lpd.length;i++)
{
lpd[i]=0;
}
lpd[0] = lpd[1] = 1;
for (let i = 2; i * i <= MAX; i++)
{
for (let j = i * 2; j <= MAX; j += i)
{
if (lpd[j] == 0)
{
lpd[j] = i;
}
}
}
for (let i = 2; i <= MAX; i++)
{
if (lpd[i] == 0)
{
lpd[i] = i;
}
}
}
// Function that returns the maximum
// length subsequence such that
// adjacent elements have a common factor.
function maxLengthSubsequence(arr,n)
{
let dp = new Array(N);
let pos
= new Map();
// Initialize dp array with 1.
for (let i = 0; i <= n; i++)
dp[i] = 1;
for (let i = 0; i <= n; i++)
{
while (arr[i] > 1) {
let p = lpd[arr[i]];
if (pos.has(p))
{
// p has appeared at least once.
dp[i] = Math.max(dp[i],
1 + dp[pos.get(p)]);
}
// Update latest occurrence of prime p.
pos.set(p, i);
while (arr[i] % p == 0)
arr[i] = Math.floor(arr[i]/p);
}
}
// Take maximum value as the answer.
let ans = Math.max(...dp);
return ans;
}
// Driver code
let arr=[13, 2, 8, 6, 3, 1, 9 ];
N = arr.length;
MAX = Math.max(...arr);
preCompute();
document.write(maxLengthSubsequence(arr, N - 1));
// This code is contributed by patel2127
</script>
Output
5
Time Complexity: O(N* log(N))Auxiliary Space: O(N) | NLP/Natural Language Processing (NLP) Tutorial/AI ML DS - Projects/30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated]/Does Artificial Intelligence Require Coding?/Artificial Intelligence – Boon or Bane/Artificial Intelligence Examples/Agents in Artificial Intelligence/What are Diffusion Models?/ML | Common Loss Functions/Loss Functions in Deep Learning/Kaiming Initialization in Deep Learning/Swift - Initialization/Swift – If Statement/6 Best iOS Project Ideas For Beginners/Swift Programming Language/Introduction to Visual Programming Language/What is D Programming Language: Usage and Applications/Best Programming Languages for Data Science in 2024/5 Best Languages for Competitive Programming/MEX (Minimum Excluded) in Competitive Programming/Rearrange Array to maximize sum of MEX of all Subarrays starting from first index/Minimize moves to segregate even and odd by swapping adjacent elements/Minimum elements to be removed such that sum of adjacent elements is always even/Maximum sum such that exactly half of the elements are selected and no two adjacent/Maximum length subsequence such that adjacent elements in the subsequence have a common factor | https://www.geeksforgeeks.org/maximum-length-subsequence-such-that-adjacent-elements-in-the-subsequence-have-a-common-factor/?ref=ml_lbp | NLP | Maximum length subsequence such that adjacent elements in the subsequence have a common factor | Artificial Intelligence – Boon or Bane, AI ML DS - Projects, Rearrange Array to maximize sum of MEX of all Subarrays starting from first index, MEX (Minimum Excluded) in Competitive Programming, Swift - Initialization, 6 Best iOS Project Ideas For Beginners, ML | Common Loss Functions, Artificial Intelligence Examples, What is D Programming Language: Usage and Applications, 30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated], Swift – If Statement, Natural Language Processing (NLP) Tutorial, Loss Functions in Deep Learning, Minimize moves to segregate even and odd by swapping adjacent elements, Maximum length subsequence such that adjacent elements in the subsequence have a common factor, Does Artificial Intelligence Require Coding?, Best Programming Languages for Data Science in 2024, NLP, 5 Best Languages for Competitive Programming, Maximum sum such that exactly half of the elements are selected and no two adjacent, Swift Programming Language, Minimum elements to be removed such that sum of adjacent elements is always even, Agents in Artificial Intelligence, What are Diffusion Models?, Kaiming Initialization in Deep Learning, Introduction to Visual Programming Language | GeeksforGeeks | [0.0193846598, 0.0214228015, -0.00545983901, 0.0230592638, 0.0299621671, 0.005259, 0.0121172713, 0.0162456241, -0.0242494196, 0.0165134091, -0.0167068094, 0.00617021276, 0.0576630384, -0.0210806318, 0.0118718017, -0.0143190594, 0.00338636455, -4.80595045e-05, 0.0103841079, -0.0234609414, -0.0144752674, 0.0072487914, -0.0327590331, 0.0175696723, 0.00416926388, 0.0520395525, 0.00449283747, 0.0122139715, -0.0278198868, 0.00813768897, 0.0186705664, -0.000786153541, -0.0169150867, -0.0070963027, -0.00609954726, 0.000785223732, 0.0131586576, 0.0417744629, -0.00429943716, -0.0133818118, -0.0342467278, -0.00299956393, -0.0342169739, -0.0114254942, 0.0166621786, -0.026094161, -0.00588755077, 0.00368018425, -0.0249337591, -0.0176886879, 0.00932784472, -0.0245767124, -0.0161563624, 0.0274479631, 0.0177184418, -0.00470483396, -0.0253949445, 0.0171382409, 0.0193846598, 0.0314796157, 0.0449283756, -0.0289505348, -0.0227766037, 0.00604003947, 0.0448986217, 0.0031074218, -0.0357641764, 0.0203814153, 0.0333838649, -0.0152934995, -0.0822992623, 0.0108304163, 0.0309142917, -0.0257668681, 0.0181796271, -0.0199946146, -0.00241192477, 0.019325152, -0.00557141611, 0.0534082316, -0.0415066779, 0.03418722, -0.00763187278, -0.021854233, 0.0407628305, -0.0228063576, 0.00340310112, -0.0421910174, 0.0166324247, 0.0114031788, 0.00720416056, 0.0519800447, -0.0407033227, -0.00436638342, -0.0355559, 0.0472789295, 0.0290546734, 0.0254395753, -0.0429348648, 0.0413876623, 0.015977839, 0.0135380197, 0.0119164325, -0.00755376881, 0.0358534381, -0.00543008512, 0.00240262668, -0.00464904541, 0.0240262654, 0.0487368703, -0.0325507559, -0.00111856032, -0.0150852222, 0.0152488686, 0.0192805212, -0.024115527, -0.0016346043, -0.0323722325, 0.0134933889, 0.0637328327, 0.00845754333, 0.0167365633, -3.50421797e-05, 0.041179385, -0.0440655127, 0.0482013, 0.00433662953, 0.0178374574, -0.00510279229, -0.0155017767, -0.00988573, -0.00739384163, -0.00548587367, -0.0127272261, -0.0021106666, 0.0329375565, -0.0391858742, 0.0339789428, 0.0199202299, 0.0346930362, 0.0164241474, -0.0342764817, 0.0134487581, -0.0146091599, 0.0322829708, -0.0104808081, 0.0149215758, 0.0531702, -0.031390354, -0.00892616715, -0.00969233, 0.00672437903, -0.0123032331, 0.00285451394, -0.000512324797, -0.0265553463, -0.0213335399, -0.000243609975, -0.00160671, -0.0626616925, -0.0256924834, -0.014862068, 0.00245469599, -0.0174655337, -0.0188193358, 0.0127346646, -0.00859143585, -0.0288017653, -0.0338896811, 0.0385015346, 0.00704423338, 0.0258710068, 0.0158885773, 0.0523668453, 0.00683595613, -0.0204558, 0.0184474122, 0.0179713499, 0.0160671, 0.00505444221, -0.0122437254, -0.0185813047, -0.0106593315, -0.00604747795, 0.0345442668, -0.00410603685, 0.0324912481, -0.0108824857, 0.00726366835, -0.00597309321, -0.0104510542, -0.0272396859, 0.0332053415, 0.0169002097, 0.0217798483, 0.00786990393, -0.0528726615, 0.0272248089, -0.0163646396, 0.00651610177, -0.0174506567, -0.0261090379, 0.0129801342, 0.0251271594, 0.0407628305, -0.0469218828, -0.0453449301, 0.00343471463, -0.00823438913, 0.0137983663, -0.0306465067, 0.0334136188, -0.0186854433, -0.0340682045, 0.0550744496, 0.033354111, -0.0366865471, 0.0252015442, -0.00409859838, -0.0102576539, 0.000135868351, -0.0132553577, 0.038114734, -0.00454862602, -0.00351467822, -0.013322304, -0.0113659864, 0.0466243438, -0.0013798367, -0.0251420364, 0.00503212679, 0.0144157596, -0.0265553463, 0.0107857855, -0.00405768678, 0.000473737717, -0.0117676631, 0.0525751226, 0.03365165, 0.0254842062, -0.00452259136, 0.00409116, -0.00806330424, -0.00432175258, 0.0282215644, -0.0241006501, -0.0463268049, 0.0366270393, 0.040078491, 0.034752544, -0.00025523259, -0.0211996473, 0.027492594, 0.0263173152, -0.0301406905, 0.00165970915, -0.00580200832, -0.0214823093, -0.0206045695, 0.0296199974, 0.00752773415, -0.0370138399, -0.0142000439, 0.0582581162, 0.0393346436, 0.0334731266, 0.0247106049, -0.0141033437, 0.0162902549, -0.0239667576, 0.0130619574, -0.0442440361, 0.00276153302, 0.00553794298, -0.00504700374, -0.0264214538, -0.0463268049, -0.00409116, 0.0808710754, 0.0276859943, 0.0206343234, 0.0153530072, 0.00246771332, 0.00121061143, 0.00913444441, 0.0014523617, 0.0132627962, -0.0214674324, -0.0484690852, 0.0155315306, -0.0294712279, -0.0424588025, 0.0177928265, -0.00170805922, 0.00183823251, -0.00324689317, -0.0239816345, -0.00195259904, -0.0383230112, 0.020723585, -0.0337706655, -0.0404950455, -0.0167365633, -0.0542413406, -0.0227617268, -0.0268380083, -0.036984086, -0.0348120518, -0.0121395867, -0.00981878396, 0.00830133539, -0.0554314964, -0.0177481957, -0.00445936434, -0.0448093601, -0.0083534047, 0.062245138, -0.0116784014, -0.0148918219, -0.0446903445, 0.0183730274, -0.0299621671, 0.0108601702, 0.0371328555, 0.0064789094, -0.0156505462, -0.0353476219, 0.0265851, 0.00131289044, -0.0155464076, -0.0317474, -0.0208872315, -0.0306762606, -0.00858399738, 0.0230443869, -0.0387098119, 0.0040800022, -0.0118569247, 0.0106221391, 0.00498749595, 0.0099378, -0.0231931563, 0.014311621, 0.0244725738, -0.013887628, 0.00128313655, -0.035585653, 0.0190276131, 0.0276116095, -0.0188937206, 0.00131660968, 0.0296497513, 0.042577818, -0.0121321483, -0.0154422689, 0.0084947357, -0.0200838763, -0.00385312876, 0.0158737, -0.00286009279, 0.0163943935, 0.0120280096, -0.0301853213, 0.0163646396, 0.00992292259, -0.0314796157, -0.00678016758, -0.0166770555, -0.000934458105, -0.0174209028, -0.0147504909, 0.00928321388, 0.0234163105, -0.00656817108, -0.0227766037, 0.0167960711, 0.0455829613, -0.00480153412, 0.0409116, 0.00531106954, -0.0348715596, 0.0568299294, 0.045672223, -0.0047792187, 0.0159332082, 0.0268826392, -0.0469516367, 0.0221666489, -0.0116114551, 0.0402272604, -0.00553794298, 0.020723585, 0.0112618478, -0.00274479645, 0.00691034086, 0.0144306365, -0.0188639667, -0.00868069753, 0.0175250415, -0.0437382199, 0.0307655223, 0.0270760395, 0.00357604562, -5.81130662e-05, 0.0021515782, 0.0159629621, -0.0208723545, -0.0138504356, 0.0460887738, 0.0177928265, 0.0349013135, 0.0432919115, -0.0569787, -0.0419232324, 0.00151000987, 0.0366567932, -0.0267338697, -0.00212554354, -0.0164092705, -0.0050023729, -0.00199722988, -0.001787093, -0.000990246655, 0.000508605561, -0.0116486475, -0.0203814153, 0.0120800789, 0.0184176583, 0.022984881, -0.0247254819, -0.00850217417, 0.0127197877, -0.00566439703, 0.0266743619, -0.0272545628, -0.0354666375, 0.00571274711, 0.00150722044, -0.0321044475, -0.0263024382, -0.00249746721, 0.0075016995, -0.00365229, -0.0188342128, 0.00900055189, 0.00366344769, -0.0226129573, 0.034484759, -0.0219137408, -0.0107114008, -0.0451366529, -0.0321044475, -0.0241750348, -0.0279240254, 0.0429943725, -0.0356154069, 0.010510562, -0.0219137408, 0.0363890082, 0.0107188392, 0.0133074271, -0.0036448515, 0.0186854433, -0.0145496521, 0.0173167642, 0.054122325, 0.00429943716, 0.0113213556, -0.0147951217, 0.0157993156, 0.0212591551, -0.00979646854, 0.00926833693, 0.0033714876, 0.0220327564, -0.015412515, 0.010369231, -0.0445118211, -0.030557245, -0.00473458786, 0.0208277237, 0.0195036754, 0.00597681245, 0.015710054, -0.0382039957, -0.0301704444, 0.0151596069, 0.00991548412, 0.0155315306, 0.00400189823, 0.0138950665, 0.0260495301, -0.0536165088, 0.0120503251, -0.000563929207, 0.0118792402, -0.0350203291, -0.0115296319, 0.00213484163, 0.0263321921, 0.00836828165, -0.0586746708, 0.00282661966, 0.013872751, 0.0486476086, -0.0593292564, -0.001543483, 0.0286827497, 0.00732317613, -0.027477717, -0.0321937092, -0.00138634536, -0.021854233, 0.0352583602, -0.017376272, 0.00637105154, -0.0408223383, 0.0148323141, 0.00679504452, -0.0187003203, 0.0206194464, 0.0133966887, -0.0186556894, 0.017391149, -0.0418934785, 0.0155910384, 0.00628922833, -0.00603632024, -0.00334917218, -0.0241452809, -0.00736780697, 0.0301109366, 0.0110238167, 0.00483128801, -5.52074125e-05, -0.0454639457, 0.00185496907, 0.0330565721, -0.0145645291, 0.00863606669, 0.00737152621, -0.00537057733, -0.0479930229, 0.0145422136, -0.0238328651, 0.00253094034, 0.0145422136, -0.0147356139, 0.00123013742, 0.0265404694, 0.00550818909, -0.00132125872, 0.00180011033, 0.00558257382, -0.0242791735, -0.00249560759, 0.00428084098, -0.011797417, -0.0248742513, -0.0223302953, -0.0202772766, -0.00661280192, 0.00593962, 0.0219434947, 0.0137165431, 0.0184474122, -0.00398702128, -5.5570622e-06, -0.0518312752, 0.014988522, 0.0133892503, -0.0191466287, 0.00810793508, -0.00716324896, 0.0197714604, 0.0349905752, -0.00112134975, -0.0225088187, -0.0144157596, 0.00649378635, 0.00379176135, -0.0181945041, -0.0100047458, -0.0204409231, -0.00357790524, -0.0335326344, -0.00967001449, -0.0335326344, -0.0175547954, -0.0112916017, 0.0206492, 0.0480525307, -0.0287720114, 0.0122586023, -0.041476924, 0.0196673218, 0.0140363974, -0.00675413292, -0.0159183312, 0.025246175, -0.00826414302, 0.013887628, -0.0124222487, 0.00810049661, 0.0193697829, -0.0276562404, -0.00286567165, 0.0463863127, -0.0201285072, -0.0205896925, -0.0084649818, 0.00416926388, 0.0223451722, -0.0248296205, 0.045672223, -0.0076541882, 0.0147058601, -0.0136942277, -0.0265553463, -0.0331755877, 0.00212740316, -0.0140735898, 0.00891872868, 0.0142669901, 0.0142521132, 0.0225088187, -0.029991921, -0.0296199974, -0.0145273367, -0.0326102637, 0.00606607413, 0.00600284711, 0.0161563624, -0.0277306251, -0.0066202404, -0.00950636808, -0.0141107822, -0.0352286063, -0.00961050671, 0.0224939417, 0.00504700374, 0.000506281038, -0.0446605906, 0.0427563414, -0.0114478096, -0.0132999886, -0.0334136188, -0.0120503251, 0.0287125036, -0.0199797377, 0.0155612845, 0.00490195351, 0.0152934995, 0.0281769335, 0.00825670455, -0.00583176222, 0.015129853, -0.0164687783, 0.0148695065, 0.0177035648, -0.0255734678, 0.0176738109, 0.00720788, -0.00577225443, 0.0131140267, 0.00246771332, -0.0122809177, 0.0348715596, 0.0130619574, -0.0200541224, 0.00906749815, -0.0170787331, -0.0244428199, 0.00657189032, 0.00304419477, -0.00653097872, -0.0302299522, 0.0447201, 0.00972208381, 0.0188490897, 0.0129280649, -0.0177035648, 0.00676157139, 0.00403537136, 0.0190276131, -0.00060484081, -0.00341611844, -0.00398330204, -0.0285786111, 0.0294712279, -0.0239072498, -0.00399445975, 0.00207347423, 0.0100419382, 0.0182540119, -0.0221815258, 0.0208128467, 0.0398702137, -0.000300560787, 0.00551562756, 0.000226059827, -0.0196821988, -0.004485399, -0.011217217, 0.0141405361, 0.0142223593, 0.00260160584, 0.00856912, -0.00677644834, 0.0169002097, 0.0268380083, 0.0165580399, -0.00753517263, -0.00576853519, -0.0110535705, -0.0228956193, -0.0367460549, -0.017926719, -0.00862862822, -0.0092757754, 0.0226427112, 0.0234460644, -0.00659420574, -0.0401082449, 0.000691777968, -0.000427014806, 0.00490939198, 0.00768394209, -0.0175399184, -0.00579457, -0.0227914806, -0.000572762394, 0.0151224146, 0.00655329414, -0.0251717903, 0.0304084755, 0.0236097109, 0.00619252818, -0.0129726958, 0.0277157482, 0.004972619, -0.00341611844, 0.014296744, 0.00723391445, 0.0186854433, -0.00131382025, 0.00951380655, -0.00331755867, -0.00542636588, -0.0140512744, -0.0231485255, 0.0318069085, 0.0401082449, 0.00771369599, -0.00871789, 0.0126677183, 0.0314498618, -0.0165134091, 0.0234014336, 0.00630038604, -0.0129652573, -0.00554910069, -0.00974439923, 0.0138950665, 0.0154720228, -0.000833573809, -0.046029266, 0.00752773415, -0.000898660452, -0.013039642, 0.0214525554, 0.00200094911, -0.00634129765, -0.0122957947, -0.0316283852, -0.0211401395, -0.00277826958, -0.00348306471, 0.00240634591, -0.00363555341, -0.0385907963, 0.0360914692, 0.0103097232, 0.016528286, 0.00845010486, -0.0125561412, -0.00915676, -0.0156059153, 0.0457317308, 0.0393346436, -0.00179360167, -0.0074719456, -0.00980390701, 0.00854680501, -0.00577597367, -0.0198309682, -0.0198160913, -0.0233270489, -0.0419529863, -0.0453151762, 0.0166473016, -0.00660536345, -0.00847985875, 0.0147356139, -0.00267227134, -0.0242196657, -0.0133818118, -0.00402793288, -0.026094161, 0.00118922582, -0.0220625103, -0.00531106954, 0.0103841079, 0.00447796052, 0.0519205369, 0.0265999772, 0.0134487581, -0.00815256592, -0.0207979698, 0.0120875174, -0.0041915793, 0.00322643737, 0.0379064567, -0.00388288265, 0.0109048011, 0.0149066988, 0.000141214754, -0.0230592638, 0.0330565721, 0.00621856283, 0.0114106173, -0.0184027813, -0.00955099892, 0.0361807309, 0.00163832353, -0.0073901224, -0.021586448, 0.0116932783, 0.00909725204, 0.0293522123, -0.00740128, 0.013887628, -0.0206789542, -0.00664627505, 0.00757236499, 0.00573878177, -0.0219286177, 0.030274583, 0.00468623778, 0.0245023277, 0.0241601579, -0.0152339917, 0.0145719675, -0.0180606116, -0.0212740321, 0.0208277237, -0.00152860605, -0.0139471358, 0.00623344, -0.0194590446, 0.029709259, -0.00721159903, -0.0342467278, 0.0138578741, 0.0255437139, 0.00699216407, -0.0233121719, -0.0491831787, 0.0164539013, -0.0195036754, 0.0023747324, -0.0193995368, 0.0187151972, -0.0268528853, 0.00414694846, 0.0102650924, -0.0209467392, 0.0209616162, -0.0176143032, -0.0196821988, 0.00413579075, -0.0204111692, -0.0493021943, -0.0287571345, -0.0239667576, -0.0115445089, -0.013746297, -0.0446308367, 0.0479632691, -0.0429646187, 0.0175845493, 0.00258858851, 0.00393495196, -0.018224258, 0.00996755343, 0.0384122729, 0.0146463523, 0.00528503489, -0.00492426893, 0.0111205168, 0.00139285403, -0.00782527309, 0.0058094468, 0.00936503708, 0.0133743733, -0.038680058, 0.0210657548, 0.0169745944, -0.0055602584, 0.00620740512, 0.0227766037, 0.0363295, -0.0227170959, -0.0441845283, 0.00370064, -0.00126732979, -0.0337409116, 0.00335847028, -0.00704795262, 0.00373039395, 0.00468251854, -0.010518, 0.0142074823, 0.036150977, -0.035050083, -0.00429571792, -0.0261685457, -0.00023129, 0.00766162667, -0.0118718017, -0.0207979698, 0.0273587015, 0.00461929152, -0.0135528967, -0.0259453915, 0.00455978373, -0.0183283966, -0.0205450617, -0.0627212, -0.0189829823, 0.00247515179, 0.0285339803, 0.0390668586, -0.0241750348, 0.00422877166, -0.0022426995, -0.0184027813, -0.000905169116, 0.0366567932, 0.0114775635, 0.0293670893, -0.00323387585, 0.00786246546, -0.0202177688, 0.0142521132, -0.00728226453, -0.0214525554, -0.0134487581, -0.00313531607, -0.00991548412, -0.00514370389, 0.007431034, -0.0149736451, -0.00576481596, -0.0476657301, -0.011343671, 0.0376386717, -0.0218691099, 0.00437010266, -0.0347227901, 0.0290397964, -0.00336218951, 0.0225385725, -0.0037861825, -0.0177333187, 0.0602218732, -0.0187449511, -0.0430836342, -0.00821207371, 0.0132627962, 0.0123181101, 0.0156505462, 0.0404355377, 0.0109271165, -0.0028712505, -0.020738462, 0.0201285072, -6.26458859e-05, 0.0146686677, -0.0144083211, -0.000993036083, 0.0332053415, -0.0075016995, -0.0202177688, -0.0174804106, -0.00572018558, 0.0130917113, -0.0280281641, -0.0133297425, -0.0265999772, -0.0038066383, -0.0165729169, 0.00548215443, -0.00932040624, 0.0304679833, -0.0199797377, -0.00116319116, 0.0186110586, -0.0143041825, -0.0303787217, -0.0147579294, -0.02240468, 0.0236989725, 0.0136495968, 0.017391149, -0.0212591551, -0.0142595517, 0.00721159903, 0.02497839, -0.00888153631, 0.019890476, -0.0611739978, -0.0180606116, 0.00269830599, 0.00760583812, 0.0159034543, -0.0151819224, -0.00170526979, 0.00147374731, 0.00449655671, 0.0145050213, -0.00174060254, 0.00360394, -0.00409487914, 0.00281918119, -0.00594333932, 0.0206492, -0.0150926607, 0.00888153631, -0.00120410277, 0.0166473016, 0.01850692, -0.00532222725, -0.0200392455, -0.00699960254, -0.0146463523, 0.0069958833, 0.00230778614, 0.0108378548, 0.00558629306, 0.0205896925, 0.00631526299, -0.00821207371, 0.00409487914, 0.00447052205, 0.0246064663, 0.012630526, 0.0115817012, 0.0233865567, -0.00493542664, -0.0239518806, -0.0202624, -0.0175250415, -0.00639336696, 0.00396098662, -0.00634129765, -0.00739756087, 0.0254544523, 0.00929065235, 0.0300365519, 0.00424736785, -0.00951380655, -0.0104584927, -0.00464160694, 0.00594705855, -0.00109066605, 0.00048117619, -0.0127272261, 0.00711861812, -0.00688058697, -0.0087997131, -0.0372221172, 0.0241899118, -0.0119759403, 0.0014830454, 0.00388660189, -0.00727854529, -0.0159332082, -0.00248259027, -0.0394239053, 0.00729714148, 0.00493914587, -0.0354963914, 0.00464532617, 0.0236245878, -0.0320449397, -0.00939479098, 0.0717068762, 0.0174209028, 0.0124073718, -0.0113808634, -0.0137611739, -0.0174357798, -0.000781039591, -0.000967001426, 0.018492043, 0.00191354705, -0.0121247098, -0.00785502698, 0.00479781488, -0.0102353385, 0.00223154179, 0.00609582802, -0.028325703, -0.0191168748, -0.00114831422, 0.00481641106, 0.000596472528, 0.00998243, -0.00480897259, 0.00392007502, 0.0215418171, -0.000932133582, -0.00016306527, 0.0208723545, -0.0317176469, -0.00966257602, 0.00955099892, -0.00825670455, 0.00466020312, 0.000662024075, -0.0153530072, 0.0205450617, 0.0124296872, 0.0126379644, -0.0126528414, 0.0163646396, 0.00103952654, 0.0264214538, -0.0214525554, 0.0172275025, -0.0146314753, -0.00789221935, -0.0158141926, -0.00223526102, -0.00704423338, -0.0174209028, -0.030854784, -0.0136644738, -0.019325152, -0.00780295767, -0.00266483286, 0.0165580399, -0.00769138057, -0.0194144137, 0.0132776732, -0.031955678, -0.00514370389, -0.00951380655, 0.0118122939, -0.00434778724, 0.00299398508, 0.00294749462, -0.0481417924, -0.0132330423, -0.00969976839, 0.00498377671, -0.0203516614, 0.0165729169, 0.0192507673, -0.0132627962, 0.00680620223, 0.00501725, -0.0163795166, -0.0178523343, -0.0123701794, -0.0105551928, -0.031390354, 0.0313308463, -0.0381742418, 0.00683967536, -0.00807818118, 0.00089447631, -0.00994523801, -0.0234311875, -0.0166919325, -0.0301258136, -0.0084947357, -0.019622691, -0.0158439465, -0.0116040166, 0.00244725752, -0.030854784, 0.00162065716, -0.0108676087, -0.00587639306, -0.00318552577, -0.0381444879, -0.0022129456, -0.00413579075, -0.0141479746, 0.00485360343, -0.00500981137, -0.00541892741, -0.0104287388, -0.00598797, -0.00184381136, 0.0136495968, 0.0124445641, 0.0058094468, 0.00257929042, 0.00660536345, 0.0136421584, -0.0200838763, -0.00125152303, -0.0052664387, 0.0153232533, -0.0261239149, -0.0202624, 0.0364187621, -0.0366567932, -0.0032189989, -0.0216905866, 0.00081544253, -0.0169894714, 0.0155017767, 0.00708886422, -0.0305869989, 0.031687893, 0.0203516614, -0.00949149113, -0.0129875727, -0.0176738109, -0.00767650362, 0.0163497627, 0.0342467278, 0.00165134086, -0.000451189844, 0.0234906953, -0.00576109672, -0.0250378978, 0.00660908269, -0.0192358904, -0.00921626762, 0.000186426711, 0.0242047887, 0.00980390701, -0.00086611713, -0.0136867892, 0.0126082106, -0.000818696863, 0.0334731266, -0.0274033323, 0.0108750472, 0.00492054969, -0.0148992604, 0.0117676631, 0.0118271708, -0.00704795262, 0.017658934, 0.0164092705, -0.0064379978, -0.00878483616, 0.00847242, -0.0163943935, -0.0172572564, -0.00276897149, 0.0119089941, -0.0107188392, 0.0147802448, 0.0142372362, 0.0070963027, 0.00257185195, 0.00973696075, 0.0207979698, 0.0292927045, 0.00923858304, -0.0320449397, 0.0204111692, 0.0167216863, 0.0238179881, -0.019057367, 0.00714465277, -0.0176886879, -0.0177928265, 0.0282661952, 0.0118420478, -0.00644915551, -0.00579457, -0.00643055933, 0.00964769907, 0.00151186949, -0.0091641983, -0.00538173504, 3.64950065e-05, 0.00906749815, -0.022419557, -0.000657375, -0.0384420268, -0.0163348857, -0.0188490897, 0.000941896578, -0.00509535382, -0.0252908058, -0.00577597367, -0.0152339917, -0.00988573, 0.0202772766, 0.00208649156, -0.0099749919, 0.0065495749, -0.0227617268, 8.0341315e-06, 0.00406512525, 0.0089410441, 0.00356116868, -0.00961794518, -0.00173316407, 0.00935016, -0.0140735898, -0.0342764817, -0.0160522237, -0.00964769907, 0.0200987533, 0.0224939417, 0.0178820882, 0.0191466287, -0.0204111692, 0.0108676087, 0.0323424786, 0.00193958171, -0.00201210682, 0.00879227463, 0.0142297978, -0.0039386712, -0.0352583602, 0.00175454968, 0.00908981357, 0.0052664387, -0.00797404256, -0.00332127791, 0.0289207809, -5.81130644e-06, -0.000272434059, 0.0345145129, -0.0166919325, 0.0183283966, 0.00725623, -0.00192284514, 0.0297390129, -0.0153530072, 0.0234014336, 0.0209764931, 0.0138504356, 0.00251234416, -0.0189383514, -0.00715581048, 0.0401082449, 0.0261834227, -0.0236840956, 0.00774345, 0.00561604695, -0.00321527966, -0.00169318228, 0.00202140491, 0.0082418276, -0.0070256372, -0.0190127362, 0.0129206264, -0.00777320378, 0.00605491642, -0.0199499838, -0.031687893, -0.0101609537, 0.0242940504, -0.00784758851, -0.00647519, -0.0148025602, 0.034484759, 0.0194887985, -0.00472343, 0.00990060717, 0.00789221935, 0.0148843834, 0.010101446, 0.0128164878, -0.0155761614, -0.0079070963, -0.000561604684, -0.0179862268, -0.0257371143, 0.0172572564, 0.0147058601, 0.0121172713, 0.00656817108, -0.0392156281, 0.0181349963, -0.0272843167, -0.00891129, -0.0194887985, 0.0178820882, 0.00633757841, -0.0214376785, -0.00275409454, -0.0103469156, 0.0338004194, 0.002800585, 0.00744219171, -0.0180903655, -0.00132497796, -0.0062148436, -0.0160075929, -0.0128908725, 0.0102502154, -0.0211103857, 0.0117304707, -0.0059210239, 0.000782434305, -0.0177481957, -0.0290397964, -0.000596937432, -0.0176886879, -0.00145329151, -0.0125115104, -0.0262131765, -0.00571646634, -0.0117676631, -0.0016243764, -0.0205748156, -0.0183432736, 0.00473830709, -0.000660629361, 0.00782527309, -0.0133446194, -0.0026276405, 0.0131437806, 0.00759839965, -0.00422877166, 0.00877739768, -0.0142297978, -0.00146816846, -0.0173465181, -0.0166026708, -0.00289542531, 0.0423397869, -0.0100791305, 0.0320151858, -0.0252164211, -0.0336218961, -0.00398702128, 0.0291141812, 0.0189383514, 0.019057367, 0.021303786, -0.0314796157, 0.0141479746, 0.00035565198, -0.0198607221, -0.0295158587, -0.0016755159, 0.0136495968, 0.024398189, -0.0241006501, 0.00781039614, -0.00479409564, 0.0514444746, 0.00292331958, -0.000626226421, -0.0144603904, 0.00458209915, -0.0162902549, -0.00855424348, 0.0133594964, -0.0256329756, -0.00684711384, 0.0113883018, -0.0102576539, -0.00499865366, -0.0243089274, -0.00110275357, 0.0181349963, -0.0188639667, -0.00752773415, -0.0279091485, 0.0034421531, 0.0139099434, 0.00151744834, -0.0155017767, 0.0108304163, 0.0268082544, 0.0156356692, 0.00959563, 0.0109271165, -0.0174655337, -0.00618137047, 0.0184771661, -0.0367163, 0.0225980803, 0.0082418276, 0.000618323043, 0.00987085328, 0.00818232, 0.0100568151, -0.024398189, -0.0263321921, 0.0311523229, -0.0195483062, 0.0275074709, -0.0230295099, -0.0164985321, -0.0419529863, 0.0175399184, 0.0197119527, -0.00405396754, 0.0194292907, 0.00566439703, 0.00721531827, -0.00982622243, -0.00151558872, -0.00179918052, 0.0051548616, -0.000448865321, -0.00586523535, -0.00466020312, -0.00380849792, -0.00377130555, -0.0236543417, -0.00899311341, 0.00949149113, -0.0371923633, -0.0105849467, 0.0200243685, 0.000759654, -0.00848729722, -0.00451887213, -0.0204409231, -0.00926833693, -0.0108824857, -0.0036653073, -0.00957331434, -0.00634873612, 0.0119089941, -0.0113139171, 0.0302448291, 0.00804098882, 0.000102046542, 0.00682851765, 0.0157546848, -0.00406884449, 0.0111205168, -0.0131140267, -2.4988618e-05, 0.011075886, 0.00116319116, -0.00193214323, 0.00789221935, -0.00753145339, 0.00130731158, 0.00802611187, -0.00471599167, 0.0105998237, 0.00698100636, 5.45391122e-05, 0.0212442782, -0.00759096118, 0.0139471358, 0.0169299636, 0.00876995921, -0.0113362325, 0.00879227463, 0.0137016661, 0.008688136, -0.0215418171, -0.0182391349, -0.00397958281, -0.0103989849, 0.0174060259, -0.0234758183, 0.0149066988, 0.00357604562, 0.00486476114, 0.00549703138, 0.0421315096, 0.0104361773, 0.0219137408, 0.00298282737, 0.0224493109, -0.00103394769, -0.0163646396, -0.0119908173, 0.0169150867, 0.000324503373, -0.0164836552, -0.0120503251, -0.00333429524, 0.00247329217, 0.0178969651, 0.0073194569, -0.00428827945, -0.0107634701, -0.010919678, 0.0325507559, 0.0154571459, 0.0260346532, 0.0236840956, 0.0175101645, 0.00195817789, -0.0050730384, -0.00767650362, -0.0112469709, 0.0130024496, 0.0108155394, -0.00918651372, -0.00439613732, -0.00768394209, -0.00858399738, 0.0233419258, 0.00611814344, -0.00538173504, 0.00302001974, -0.0132851116, -0.00566811627, 0.00425108708, 0.0209913701, 0.0358236842, -0.0151893608, -0.0044147335, 0.00173688331, 0.00995267648, -0.00823438913, -0.0174804106, 0.0041618254, -0.00156951766, 0.0176440571, 0.00866582058, 0.00211438583, -0.0238774959, -0.00828645844, 0.00998243, -0.0320151858, 0.0240708962, 0.0136644738, -0.00906749815, 0.00514370389, -0.0335921422, 0.0160819776, -0.00687686773, 0.0155315306, 0.0104659311, 0.0134041272, 0.0073901224, -0.0123701794, 0.000773136213, 0.0126230875, 0.0083534047, 0.00109438528, 0.0131735345, 0.0103989849, -0.0136942277, -0.00453374907, -0.0115668243, 0.00694009475, -0.00188193354, 0.00730086071, 0.00486476114, -0.0116188936, -0.0214079246, 0.00861375127, 0.00131196063, 0.0153530072, 0.0314201079, 0.00165877934, 0.004972619, -0.00109252566, 0.0239816345, -0.00272248103, -0.0263917, -0.00151558872, 0.0146165984, -0.00187635468, -0.00467136083, 0.0222112797, 0.00444076816, 0.0255734678, 0.0410008617, -0.0242345426, -0.00769138057, -0.00834596623, 0.00384569028, 0.00344587234, -0.0166324247, -0.00951380655, -0.00249746721, -0.0394239053, -0.0181349963, -0.0155464076, -0.00963282213, -0.00704795262, -0.00294191577, 0.0227468498, -0.00544496207, -0.0105998237, -0.0273884553, 0.00457094144, -0.00836084317, -0.0319259241, -0.0242940504, -0.0240411423, 0.0158290695, -0.0035834841, 0.00614045886, -0.00661280192, -0.025261052, -0.0124594411, 0.0104213, -0.000343564461, -0.0169448406, 0.00804842729, 0.00808562, -0.0198756, -0.00958819129, 0.0409116, -0.00288984645, -0.0184474122, -0.00593218161, -0.0119313095, 0.0023338208, -0.0134338811, 0.0176440571, -0.00202326453, 0.0115668243, -0.00512138847, 0.00470483396, -0.0124594411, -0.00136031071, 0.00256627309, -0.0113362325, 0.0152488686, 0.0122809177, 0.0219286177, 0.00487963809, -0.0203665383, -0.00681364071, -0.0042324909, -0.0313606, -0.0286529958, 0.0108155394, 0.0161414854, 0.0144157596, 0.0169002097, -0.00104045635, 0.0112395324, -0.0172423795, -0.00209393, 0.0132256038, -0.00715209125, 0.00648262864, 0.00922370609, 0.00203628186, 0.0122957947, 0.0153976381, 0.0285637341, 0.00142539735, 0.0173018873, 0.00330268173, 0.00631526299, -0.0213781707, 0.00286195241, -0.0352583602, -0.00534082344, 0.00194516056, 0.00511395, 0.00933528319, 0.0363890082, -0.00227617263, -0.00814512745, 0.0204409231, 0.000944221101, -0.0136124045, 0.0171977486, -0.024695728, -0.00150071178, -0.0144901443, 0.00189681049, -0.00654213643, 0.0156207923, 0.000864722417, 0.00111019204, 0.00704795262, -0.00981134549, 0.00900799, -0.00231150538, -0.00386056723, 0.00331197982, -0.00176384777, -0.0129726958, -0.00100977265, 0.0170192253, -0.00646775169, -0.0271801781, -0.0172126256, -0.00641568238, -0.0260197762, -0.00174525159, -0.00608838955, -0.006032601, -0.00647519, 0.00985597633, 0.0109048011, 0.00162344659, -0.00512882695, -0.015695177, -0.0027187618, 0.00560488924, 0.0230592638, 0.00328222592, 0.0146389138, -0.00570902787, 0.00140959059, 0.026912393, -0.00692893704, -0.0101312, -0.00213856087, -0.00741987629, -0.0312118307, -0.00630038604, -0.00876995921, -0.0165877938, 0.0202921536, -0.0028098831, -0.000239890738, -1.71578831e-05, -0.000904239307, 0.000109136337, 0.00564952, 0.000228733028, -0.0138504356, 0.0168704558, -0.00365414959, -0.0100270612, -0.00184474117, -0.0302001983, -0.0198160913, 0.0298729055, -0.0272843167, 0.00131382025, 0.0443928055, -0.00378432288, -0.00729342224, -0.00756120728, -0.00443332968, 0.00720044132, 0.0166919325, -0.00798148103, 0.00953612197, -0.00296423119, -0.00619252818, -0.000367042114, 0.000790802587, -0.024695728, 0.0015332551, 0.0108452933, -0.0111577092, -0.00470483396, -0.00443332968, -0.00508419611, -0.00108043815, 0.0151893608, -0.0153678842, 0.0363592543, -0.00193028362, -0.0104436157, 0.0128090493, -0.00387172494, -0.0223005414, 0.00681364071, -0.0237436034, 0.0135454582, -0.00480153412, -0.0212442782, 0.000774995831, -0.0143785672, 0.00402421365, 0.0010255794, -0.00274479645, 0.00768394209, 0.0201433841, -0.0139396973, 0.019340029, 0.00498377671, 0.00357604562, 0.012630526, -0.00141145021, 0.00230964576, 0.00595077779, 0.0061850897, 0.00369134196, -0.00233196118, -0.0121023944, -0.00635989383, -0.0104584927, 0.0137611739, 0.014452952, -0.000587639341, -0.00795916561, 0.00165041105, -0.00510279229, -0.00345145119, 0.0014625896, -0.0131512191, 0.0041618254, 0.0209616162, -0.0205153078, 0.000956773525, -0.0147728063, 0.0216459557, -0.00929809082, -0.0224344339, 0.0188490897, 0.0200987533, -0.0138058048, -0.00655329414, -0.0317474, -0.00725623, 0.00697728712, 0.00341983768, -0.000720602, -0.0116784014, -0.00359650142, -0.00998986885, -0.0257817451, -0.0349905752, 0.0226427112, 0.00559745077, -0.00516973855, 0.00438126037, 0.0118271708, 0.0216905866, 0.00999730732, 0.00853936654, -0.021839356, 0.0108452933, 0.00481641106, -0.0163795166, 0.0127049107, 0.00859887432, -0.00142353773, 0.0222707875, 0.0307060145, -0.0160075929, 0.00843522791, 0.0207830928, 0.0114254942, 0.00491683045, -0.00695125246, -0.0169894714, 0.0155612845, -0.0117081553, -0.0276116095, -0.000690848159, 0.00193772209, 0.000581130676, 0.0153530072, -0.0249486361, -0.0114254942, -0.0205004308, 0.00775832683, -0.00716324896, -0.00457838, 0.00411719456, -0.0174952876, 0.00401305594, 0.00784758851, -0.0220178794, -0.0128313648, -0.0257222373, -0.0108750472, 0.021586448, -0.000272201607, 0.0146686677, -0.0170489792, -0.0100345, 0.00792941172, 0.0124296872, 0.0126751568, 0.0144975828, -0.00321713928, 0.00729714148, 0.016810948, -0.00415438693, -0.00128127693, 0.00288054836, 0.0117676631, -0.00173037464, 0.000828459859, -0.0154571459, 0.00218691095, 0.0043738219, -0.0155017767, -0.000407488813, -0.00792941172, 0.00654213643, 0.0159034543, 0.0010757891, 0.00151837815, -0.00454490678, 0.0147876833, -0.00527387718, 0.00744963, -0.0029753889, 0.00211624545, -0.00320784119, 0.0276859943, -0.00862862822, 0.000440729491, -0.0137611739, -0.00454862602, 0.0141033437, 0.00610698573, 0.0071372143, -0.0135528967, 0.0209021084, 0.0133148655, 0.00325619127, 0.00305907172, 0.00165134086, 5.23598719e-05, -0.0121247098, -0.00528131565, 0.00845010486, 0.00169318228, -0.0126900338, 0.0148695065, 0.0116040166, -0.0283703338, 0.0217203405, -0.0216608327, -0.0196673218, 0.0152786225, 0.0135975275, 0.0223749261, -0.00448167976, -0.028325703, 0.00168295437, -0.0178077035, -0.0115742628, 0.0123255486, 0.0215418171, -0.017941596, 0.0140215205, -0.0102204615, -0.0213335399, -0.0268975161, 0.0149215758, 0.000576016726, -0.0104510542, 0.0159183312, -0.00892616715, 0.000810793485, 0.00387544418, 0.000850310375, 0.0215269402, -0.0208128467, 0.00531478878, 0.0156505462, -0.00721903751, -0.0105328774, -0.0108899241, -0.00475690328, 0.0101758307, -0.0278496407, 0.0272843167, -0.019622691, -0.0341277122, 0.00299026584, -0.00337334722, 0.00744963, 0.00408744067, 0.0116188936, -0.00174153235, -0.0181201193, -0.0199648608, 0.00548587367, -0.0172572564, -0.00521436939, -0.00474574557, -0.00677644834, 0.00706282957, 0.00240448629, 0.00280244462, 0.00831621233, -0.000124245737, -0.00953612197, 0.0254246984, 0.0227468498, 0.0197565835, 0.00079917087, 0.0194887985, 0.00085495942, 0.0141405361, 0.018492043, 0.0154571459, -0.0068843062, 0.00112971803, 0.034484759, -0.00423621, -0.0256776065, 0.00918651372, 0.00325247203, 0.00350352051, -0.0129503803, 0.0299770441, -0.0167365633, 0.00454118755, 0.0048610419, 0.0314498618, -0.0180308577, -0.0143190594, -0.0159480851, 0.0194144137, 0.00820463523, -0.0245915893, 0.0117453476, 0.0225385725, -0.00655701337, 0.0127867339, -0.0263321921, -0.0189383514, -0.00455606449, 0.00206603575, -0.0338301733, -0.0056309239, 0.00490195351, 0.00785502698, -0.000223386625, -0.00460813381, 0.00463044923, 0.00756120728, 0.0159629621, -0.00679132529, -0.00234683813, -0.00583548145, -0.026079284, -0.00834596623, 0.00202884339, -0.00247701141, 0.00641568238, -0.012065202, -0.0201433841, 0.00578341214, -0.0150257144, 0.00124408456, 0.00191540667, 0.0196673218, 0.00159369269, -0.000772671308, 0.00528503489, -0.0135603352, -0.0242940504, -0.0169002097, 0.00635617459, 0.0136272814, -0.0171828717, -0.00969233, 0.00640824391, -0.0310630612, 0.0315093696, 0.00509163458, 0.014028959, 0.00077918, 0.0037359728, -0.00264251744, 0.0135157043, -0.00365972845, 0.00167179666, 0.00465648388, 0.00473086862, -0.004972619, 0.00179174205, 0.0186408125, -0.0213335399, -0.0107411547, 0.00670578284, -0.00405396754, 0.016260501, 0.0330268182, -0.00682479842, -0.0149438912, -0.00186333735, -0.00984853785, -0.0214079246, -0.0203070305, 0.0149290143, 0.015695177, 0.0377279334, 0.0193995368, -0.0233716797, 0.00724135293, -0.0345145129, -0.00998243, 0.00893360563, 0.0110386936, -0.00606235489, -0.0024658537, 0.0300811827, 0.0219434947, 0.00244167866, 0.0110386936, 0.0256329756, 0.00108415738, -0.014014082, -0.00117341906, 0.0108081009, 0.0109568704, -0.00290100416, -0.0289356578, 0.00276897149, 0.00224827835, -0.00889641326, 0.0116263321, 0.00426224479, 0.0077955192, -0.00816000439, -0.0329673104, -0.00100698322, 0.0131214652, 0.0259602685, 0.0172423795, -0.0323127247, -0.0026295, 0.0107262777, 0.015129853, -0.0106667699, 0.00679504452, -0.0170043483, -0.0172126256, -0.0139768897, 0.0374899022, 0.000100826168, -0.00200280873, -0.011485002, 0.00703679491, 0.00240820553, 0.00460813381, -0.000586244627, -0.0117602246, -0.00318180653, 0.00680620223, 0.0256924834, 0.00017573392, -0.0204855539, -0.00872532837, -0.0112097785, -0.0206640773, 0.00238960935, 0.00458209915, 0.00763931125, -0.00686942926, -0.00557141611, -0.00551562756, 0.0189829823, 0.0230443869, 0.00455606449, -0.00672066, -0.0105998237, -0.0124371257, -1.10269548e-05, 0.00881459, -0.000307766808, 0.0220030025, 0.024695728, -0.0252015442, 0.0104213, 0.00689918315, -0.000624831708, 0.00796660408, 0.00764674973, 0.0036746054, -0.00137518765, 0.0019897914, -0.0111949015, -0.0129726958, -0.0143785672, -0.0010553333, -0.00595821626, 0.00439241808, -0.0155910384, -0.00080521463, -0.0121023944, -0.00352583593, 0.0125933336, -0.00560860848, -0.0177035648, -0.000770346785, -0.00756120728, 0.0100345, -0.0242642965, -0.00798148103, -0.0143041825, 0.0267785, 0.00451143365, -0.00230592652, 0.000130289496, -0.011656086, 0.0207979698, -0.00122269895, -0.026361946, 0.00659792498, 0.00675785216, -0.00870301295, 0.0220773872, -0.0206640773, -0.00267785019, 0.00499121519, -0.0046378877, -0.000430269138, -0.0221666489, 0.00967001449, -0.0040093367, 0.0202772766, -0.0133446194, -0.0120131327, -0.00736780697, 0.00946173724, -0.0268528853, 0.00134729338, 0.0147504909, -0.00154627243, -0.00856912, -0.00282847928, -0.00717440667, -0.0202028919, 0.000250583544, 0.0106667699, 0.0058094468, 0.0287571345, -0.00943942182, -0.023282418, 0.0133966887, -0.0259007607, 0.00472343, -0.00112971803, 7.28156738e-05, 0.025246175, -0.0096402606, 0.0023542766, 0.00407628296, 0.00699960254, -0.00353513402, 0.0135380197, -0.00348678394, -0.00322829699, 0.00906749815, 0.0138058048, 0.0100791305, -0.0105626313, -0.0139768897, -0.0261090379, -0.0132627962, 0.000447935512, -0.00560117, 0.000439334777, -0.00696241, -0.0151819224, 0.00127941731, 0.00138727517, -0.00228175148, 0.0200541224, -0.0126974722, 0.0197268296, 0.00798148103, 0.00354071287, -0.00784758851, -0.00491311122, 0.000674111594, 0.00286009279, -0.00987829175, 0.0049317074, 0.00977415312, 0.021303786, 0.0175399184, 0.027477717, 0.00458581839, -0.000931668677, -0.0123850564, 0.00770625751, -0.0180159807, 0.0167514402, 0.00306651019, 0.00686571, 0.0150703453, -0.0105923852, -0.000161089425, 0.0310333073, -0.00741615705, -0.0129578188, 0.0211401395, -0.0363295, -0.00861375127, -0.00557141611, 0.00641196314, -0.00601400482, -0.0069549717, -0.0241750348, 0.00922370609, 0.00564952, 0.0136272814, -0.00261462317, 0.00970720686, 0.0141107822, 0.0215566941, -0.0206492, 0.0104882466, 0.0114775635, 0.0271653011, 0.012332987, 0.00521436939, -0.00890385173, 0.0189085975, 0.00968489144, -0.0113362325, 0.0220773872, -0.0105998237, -0.00612930115, 0.0048907958, 0.00823438913, -0.000529991172, 0.00720788, 0.0141628515, 0.00869557448, -0.00980390701, 0.00818975829, -0.00530363107, 0.00830877386, 0.00333987409, 0.0101088844, 0.00336962799, -0.00324503356, 0.000238728477, -0.00538917352, -0.0202177688, -0.0128834341, 0.0155612845, 0.00894848257, 0.0263321921, 0.0129206264, 0.00730458, 0.0134338811, 0.00307952752, 0.0169150867, 0.00593590084, -0.0150331529, 0.0183730274, -0.00184846041, -0.00643055933, 0.000436312897, -0.0108304163, 0.00710374117, 0.0211401395, -0.0178077035, 0.0116486475, -0.0150331529, -0.0396916904, -0.00358162448, 0.00789965782, 0.0205301847, 0.0230295099, 0.0216757096, -0.00352025707, -0.00708514499, 0.00873276684, -0.0124520026, 0.0125040719, 0.0100345, -0.00958819129, 0.0101312, 0.00187449506, 0.000258719374, 0.0250230208, -0.00656817108, -0.0230443869, -0.0122437254, 0.0116263321, 0.00921626762, -0.00871045142, 0.0169448406, 0.0162158702, 0.00152209739, -0.0646849573, 0.0132330423, 0.0339789428, 0.0404355377, 0.0136719123, 0.0349013135, 0.00328222592, -0.0147281755, -0.00324875279, 0.0101609537, -0.00418414082, 0.0183135197, -0.00725994911, 0.0197119527, -0.00184939022, 0.0152637456, -0.000448632869, -0.00222038408, 0.0317771547, -0.022687342, 0.00769881904, -0.0131065883, 0.00466020312, 0.0036243957, 0.00264437706, 0.00284335623, -0.0101460768, 0.00306279096, -0.0239221267, -0.0142595517, 0.00845010486, 0.0257222373, 0.0379362106, -0.0108378548, -0.0196821988, -0.0204111692, -0.0221071411, -0.0223749261, 0.00839059707, -0.00869557448, 0.00422133319, 0.00241750362, -0.0243684351, -0.026376823, -0.000707584724, 0.0162753779, 0.00824926607, 0.0191763826, 0.0105477544, 0.0353476219, 0.00820463523, 0.00597309321, -0.0070256372, -0.00515114237, 0.00262206164, 0.0195483062, -0.0098634148, 0.000205720251, 0.0209318623, 0.00289356569, -0.022687342, -0.00398330204, -0.00144864246, -0.00914188288, -0.00576109672, 0.00294005615, -0.00164297258, 0.0118494863, 0.0107114008, -0.00561604695, -0.00720416056, 0.0139843281, -0.000739663083, 0.0069958833, 0.00283219852, 0.00901542883, -0.00644171704, -0.00587639306, -0.00357046677, -0.00518089626, 0.00682107918, 0.0045969761, -0.00752029568, -0.00471599167, 0.00869557448, -0.0309142917, -0.0105626313, 0.0155612845, -0.00649750559, 0.0037861825, 0.0115891397, 0.00367088616, -0.00258672889, 0.0118122939, -0.0247552358, -0.0082418276, -0.0157249309, -0.00738268392, -0.00771369599, -0.000166784506, 0.0246213432, 0.0258412529, 0.00246399408, -0.0167514402, 0.0231485255, 0.0130470805, -0.0105626313, 0.023579957, -0.00911956746, 0.01373142, -0.00689174468, -0.0145645291, 0.00421761395, -0.0172126256, 0.0221666489, 0.00795916561, 0.000908423448, 0.00891129, -0.021586448, 0.0164390244, 0.00481641106, -0.0217947252, 0.00619252818, 0.0057796929, 0.00374899013, 0.00261648279, 0.00117806811, -0.0132479193, -0.0363890082, 0.0032189989, 0.0110089397, 0.0219286177, -0.00272434065, 0.00963282213, 0.0115593858, -0.0234014336, 0.0244279429, 0.0104510542, -0.00436638342, -0.00406140601, -0.0103766695, -0.00796660408, 0.000326595444, 0.00885178242, -0.00313903531, -0.00498749595, -0.00726366835, -0.002556975, -0.0120056942, -0.00263693859, -0.0158885773, -0.00199537026, 0.00191726629, -0.00535941962, -0.0105328774, -0.0131586576, -0.00268156943, 0.00169132266, 0.0260049, -0.0133446194, -0.00660908269, 0.0191317517, -0.0146537907, -0.0011975941, 0.00928321388, 0.0135826506, -0.015129853, -0.00217761286, -0.0148099987, 0.00311486027, 0.00472714938, 0.0291290581, -0.00409116, 0.0118866786, 0.0139545742, -0.00116784021, -0.00650122482, -0.0216608327, -0.0142297978, 0.0102055846, 0.0114180557, 0.0189383514, -0.0111725861, 0.0115668243, 0.00915676, -0.0145868445, 0.0142744286, 0.00931296777, 0.00230034767, 0.00221480522, 0.012630526, -0.004344068, 0.0079070963, 0.0125710182, 0.000217459092, -0.0141628515, 0.00231894385, 0.0183283966, 0.00576481596, -0.000852634897, 0.0012989433, 0.00500609213, 0.0204260461, -0.0217054635, -0.00200466835, 0.00816744287, 0.00886665937, 0.00920882914, -0.0124668796, -0.0130619574, -0.00245283637, -0.0110684475, 0.0114626866, -0.0195780601, -0.00534454267, -0.00372667471, -0.0267933775, 0.0079070963, 0.0169299636, -0.00139843288, 0.029456351, 0.00310370256, 0.0113957403, 0.0237436034, 0.0178672113, -0.00384569028, 0.0208426, 0.0131065883, -0.0338896811, -0.00122362876, -0.00980390701, 0.0326400176, -0.00724135293, -0.00315577188, 0.00752029568, 0.000232452265, -0.0158588234, 0.023579957, -0.00735664926, 7.70724546e-06, -0.00534454267, 0.01709361, -0.0185813047, 0.0184027813, 0.00399445975, -0.000728505373, 0.0128908725, -0.00693265628, -0.0159034543, -0.0140215205, 0.0153530072, -0.000679690449, 0.0113139171, 0.0204855539, 0.00944686, -0.00743847247, -0.0038270941, -0.00225943606, 0.00754633034, 0.0127421031, -0.00712605659, -0.010086569, 0.0181201193, 0.00952124503, -0.00909725204, -0.00257371156, 0.00155278109, -0.0018373027, 0.0069958833, -0.000534175313, -0.00346818776, -0.0173018873, -0.0121767791, -0.00778808072, -0.00782527309, -0.004485399, -0.0177333187, 0.00335289142, 0.00344773196, 0.00273363874, -0.0139694512, -0.0290844273, 0.0116932783, 0.0190722439, -0.00108880643, -0.0244576968, -0.00237101316, -0.0230443869, 0.00221666484, 0.00795172714, 0.0191763826, 0.00230034767, -0.0192358904, -0.0297687668, -0.0471896678, 0.0107560316, 0.0172126256, 0.00312415836, -0.00247143256, -0.019905353, 0.0238031112, -0.0187300742, -0.0117230322, 0.0238031112, -0.0126677183, 0.0035128186, 0.00688058697, -0.0276116095, -0.00620740512, 0.000565788825, -0.014155413, 0.0151149761, -0.0268826392, -0.0102576539, -0.0257371143, -0.00617393199, -0.0073603685, -0.0209616162, 0.00416554464, -0.0187151972, 0.00146723865, 0.0359129459, 0.0181498732, 0.00162902544, -0.000112565009, -0.00444076816, 0.0177184418, -0.00842778943, 0.0213484168, -0.0146017214, 0.00346818776, -0.0147728063, -0.00520321168, 0.0119015556, 0.0102874078, 0.0198607221, -0.00502096908, -0.0253056828, -0.00634501688, -0.011343671, 0.00416554464, 0.00693637552, -0.0180308577, -0.00764674973, 0.00114087574, -0.0137834894, -0.0235055722, -0.000692242873, 0.012206533, -0.0108750472, -0.0138429971, -0.00211438583, 0.00298282737, 0.0104584927, 0.00643055933, -0.0241601579, -0.0142818671, -0.00143190601, 0.03365165, 0.00817488134, 0.0102874078, -0.0257519912, -0.0226278342, -0.0191912595, -0.00961050671, 0.011061009, -0.00911212899, 0.00265367515, 0.00402793288, -0.00346074929, 0.000979089, -0.00402049441, 0.0251122825, 0.0727185085, 0.024413066, 0.00429571792, -0.0108155394, 0.00831621233, -2.94342681e-05, -0.0304679833, 0.0387098119, -0.0212740321, 0.000312415854, 0.00740499934, -0.00041027824, 0.00611070497, -0.00295679271, -0.0152116762, 0.0220625103, 0.0160075929, -0.000841477187, 0.00907493662, -0.016528286, -0.0126007721, -0.00801123492, 0.00821951218, -0.0192656443, -0.00330268173, -0.0165134091, -0.00298840622, -0.00338822417, -0.00554910069, 0.0150331529, -0.0060735126, -0.00479037641, -0.00586151611, -0.0183581505, -0.0269570239, 0.0120131327, 0.0140810283, 0.00337520684, -0.015003399, -0.0227170959, -0.00789221935, 0.0199499838, 0.00592474313, 0.00410603685, -0.00442589121, -0.012913188, -0.0274628401, 0.0129578188, -0.00582804298, -0.00648634788, -0.0153976381, -0.00612558192, 0.00676901, -0.00756864576, -0.00135287223, -0.00014284192, -0.00381593639, -0.0133743733, -0.013463635, 0.021006247, -0.000705725106, 0.0132181654, -0.00207533385, 0.00891872868, 0.00847242, 0.000490009377, 0.00680620223, 0.0082418276, -0.00598053169, -0.00800379645, 4.53572466e-05, -0.00150257139, 0.0309142917, 0.010518, -0.0104733696, 7.39125562e-06, 0.0199946146, 0.00808562, -0.0184325352, -0.00155464071, -0.00197677407, -0.00702191796, -0.000808004057, -0.00551562756, 0.00876995921, 0.00826414302, 0.00207347423, -0.0145496521, 0.000820091576, 0.00795172714, -0.00527015794, 0.015992716, -0.033354111, 0.022970004, -0.00105068425, 0.0111056399, -0.0137760509, 0.00168667361, 0.0119908173, 0.0024658537, 0.0181796271, 0.00553794298, -0.00428827945, 0.0160522237, 0.000536499836, -0.00410603685, 0.00925346, -0.0062557552, 0.0320151858, -0.00401677517, 0.0162902549, 0.00223154179, 0.0170341022, 0.0224493109, 0.0222261567, 0.00320598157, 0.00655329414, 0.00789965782, -0.0099749919, -0.0148695065, 0.0142372362, -0.00222782255, 0.00159927155, -0.000582060486, -0.0235353261, 0.0162009932, 0.0131437806, 0.00209764927, 0.0171828717, -0.000216413056, 0.0160224698, -0.0126454029, 0.0126379644, -0.00512510771, 0.0162902549, -0.00201210682, -0.00367088616, -0.00288612721, -0.00323573546, 0.0142818671, 0.0148099987, 0.0203219075, 0.00879227463, 0.0251271594, -0.000638778845, 0.00105161406, 0.0116486475, -0.00732317613, 0.0348120518, 0.00246957294, -0.0252312981, 0.0130768344, 0.00884434395, -0.00045886077, 0.0037564286, 0.00737896468, -0.0121544637, -0.0111874631, 0.00960306823, -0.00271690218, 0.0110982014, 0.00275409454, -0.0126602799, 0.0413876623, 0.00340496073, -0.0199648608, -0.0117230322, 0.0133074271, 0.00804842729, 0.00870301295, 0.0308250301, 0.000216529283, -0.0161861163, 0.0154869, -0.0107039623, -0.00164111296, -0.00756864576, 0.0249040052, 0.0101460768, -0.00146351941, -0.0151744839, -0.0110312551, -0.0356749147, 0.032788787, -0.00984109938, -0.0188937206, -0.00676157139, 0.00842778943, 0.0314201079, 0.0163497627, -0.00815256592, -0.00514370389, -0.0175696723, -0.00391635578, -0.00897823647, -0.00940222945, 0.0132107269, 0.00203442224, 0.0259156376, 0.00144120399, 0.00979646854, 0.00605491642, 0.00319668348, 0.00631154375, -0.00717068743, 0.0198160913, -0.0169597175, 0.0111056399, -0.000899125356, -0.000240588095, -0.00759096118] |
29 Nov, 2024 | Longest subsequence such that difference between adjacents is one
29 Nov, 2024
Try it on GfG Practice
Given an array arr[] of size n, the task is to find the longest subsequence such that the absolute difference between adjacent elements is 1.
Examples:
Input: arr[] = [10, 9, 4, 5, 4, 8, 6]Output: 3Explanation: The three possible subsequences of length 3 are [10, 9, 8], [4, 5, 4], and [4, 5, 6], where adjacent elements have a absolute difference of 1. No valid subsequence of greater length could be formed.Input: arr[] = [1, 2, 3, 4, 5]Output: 5Explanation: All the elements can be included in the valid subsequence.
Using Recursion – O(2^n) Time and O(n) SpaceFor the recursive approach, we will consider two cases at each step:
If the element satisfies the condition (the absolute difference between adjacent elements is 1), we include it in the subsequence and move on to the next element.else, we skip the current element and move on to the next one.Mathematically, the recurrence relation will look like the following:
longestSubseq(arr, idx, prev) = max(longestSubseq(arr, idx + 1, prev), 1 + longestSubseq(arr, idx + 1, idx)) Base Case:
When idx == arr.size(), we have reached the end of the array, so return 0 (since no more elements can be included).
C++
// C++ program to find the longest subsequence such that
// the difference between adjacent elements is one using
// recursion.
#include <bits/stdc++.h>
using namespace std;
int subseqHelper(int idx, int prev, vector<int>& arr) {
// Base case: if index reaches the end of the array
if (idx == arr.size()) {
return 0;
}
// Skip the current element and move to the next index
int noTake = subseqHelper(idx + 1, prev, arr);
// Take the current element if the condition is met
int take = 0;
if (prev == -1 || abs(arr[idx] - arr[prev]) == 1) {
take = 1 + subseqHelper(idx + 1, idx, arr);
}
// Return the maximum of the two options
return max(take, noTake);
}
// Function to find the longest subsequence
int longestSubseq(vector<int>& arr) {
// Start recursion from index 0
// with no previous element
return subseqHelper(0, -1, arr);
}
int main() {
vector<int> arr = {10, 9, 4, 5, 4, 8, 6};
cout << longestSubseq(arr);
return 0;
}
Java
// Java program to find the longest subsequence such that
// the difference between adjacent elements is one using
// recursion.
import java.util.ArrayList;
class GfG {
// Helper function to recursively find the subsequence
static int subseqHelper(int idx, int prev,
ArrayList<Integer> arr) {
// Base case: if index reaches the end of the array
if (idx == arr.size()) {
return 0;
}
// Skip the current element and move to the next index
int noTake = subseqHelper(idx + 1, prev, arr);
// Take the current element if the condition is met
int take = 0;
if (prev == -1 || Math.abs(arr.get(idx)
- arr.get(prev)) == 1) {
take = 1 + subseqHelper(idx + 1, idx, arr);
}
// Return the maximum of the two options
return Math.max(take, noTake);
}
// Function to find the longest subsequence
static int longestSubseq(ArrayList<Integer> arr) {
// Start recursion from index 0
// with no previous element
return subseqHelper(0, -1, arr);
}
public static void main(String[] args) {
ArrayList<Integer> arr = new ArrayList<>();
arr.add(10);
arr.add(9);
arr.add(4);
arr.add(5);
arr.add(4);
arr.add(8);
arr.add(6);
System.out.println(longestSubseq(arr));
}
}
Python
# Python program to find the longest subsequence such that
# the difference between adjacent elements is one using
# recursion.
def subseq_helper(idx, prev, arr):
# Base case: if index reaches the end of the array
if idx == len(arr):
return 0
# Skip the current element and move to the next index
no_take = subseq_helper(idx + 1, prev, arr)
# Take the current element if the condition is met
take = 0
if prev == -1 or abs(arr[idx] - arr[prev]) == 1:
take = 1 + subseq_helper(idx + 1, idx, arr)
# Return the maximum of the two options
return max(take, no_take)
def longest_subseq(arr):
# Start recursion from index 0
# with no previous element
return subseq_helper(0, -1, arr)
if __name__ == "__main__":
arr = [10, 9, 4, 5, 4, 8, 6]
print(longest_subseq(arr))
C#
// C# program to find the longest subsequence such that
// the difference between adjacent elements is one using
// recursion.
using System;
using System.Collections.Generic;
class GfG {
// Helper function to recursively find the subsequence
static int SubseqHelper(int idx, int prev,
List<int> arr) {
// Base case: if index reaches the end of the array
if (idx == arr.Count) {
return 0;
}
// Skip the current element and move to the next index
int noTake = SubseqHelper(idx + 1, prev, arr);
// Take the current element if the condition is met
int take = 0;
if (prev == -1 || Math.Abs(arr[idx] - arr[prev]) == 1) {
take = 1 + SubseqHelper(idx + 1, idx, arr);
}
// Return the maximum of the two options
return Math.Max(take, noTake);
}
// Function to find the longest subsequence
static int LongestSubseq(List<int> arr) {
// Start recursion from index 0
// with no previous element
return SubseqHelper(0, -1, arr);
}
static void Main(string[] args) {
List<int> arr
= new List<int> { 10, 9, 4, 5, 4, 8, 6 };
Console.WriteLine(LongestSubseq(arr));
}
}
JavaScript
// JavaScript program to find the longest subsequence
// such that the difference between adjacent elements
// is one using recursion.
function subseqHelper(idx, prev, arr) {
// Base case: if index reaches the end of the array
if (idx === arr.length) {
return 0;
}
// Skip the current element and move to the next index
let noTake = subseqHelper(idx + 1, prev, arr);
// Take the current element if the condition is met
let take = 0;
if (prev === -1 || Math.abs(arr[idx] - arr[prev]) === 1) {
take = 1 + subseqHelper(idx + 1, idx, arr);
}
// Return the maximum of the two options
return Math.max(take, noTake);
}
function longestSubseq(arr) {
// Start recursion from index 0
// with no previous element
return subseqHelper(0, -1, arr);
}
const arr = [10, 9, 4, 5, 4, 8, 6];
console.log(longestSubseq(arr));
Output3Using Top-Down DP (Memoization) – O(n^2) Time and O(n^2) SpaceIf we notice carefully, we can observe that the above recursive solution holds the following two properties of Dynamic Programming:
1. Optimal Substructure: The solution to finding the longest subsequence such that the difference between adjacent elements is one can be derived from the optimal solutions of smaller subproblems. Specifically, for any given idx (current index) and prev (previous index in the subsequence), we can express the recursive relation as follows:
subseqHelper(idx, prev) = max(subseqHelper(idx + 1, prev), 1 + subseqHelper(idx + 1, idx))2. Overlapping Subproblems: When implementing a recursive approach to solve the problem, we observe that many subproblems are computed multiple times. For example, when computing subseqHelper(0, -1) for an array arr = [10, 9, 4, 5], the subproblem subseqHelper(2, -1) may be computed multiple times. To avoid this repetition, we use memoization to store the results of previously computed subproblems.
The recursive solution involves two parameters:
idx (the current index in the array).prev (the index of the last included element in the subsequence).We need to track both parameters, so we create a 2D array memo of size (n) x (n+1). We initialize the 2D array memo with -1 to indicate that no subproblems have been computed yet. Before computing a result, we check if the value at memo[idx][prev+1] is -1. If it is, we compute and store the result. Otherwise, we return the stored result.
C++
// C++ program to find the longest subsequence such that
// the difference between adjacent elements is one using
// recursion with memoization.
#include <bits/stdc++.h>
using namespace std;
// Helper function to recursively find the subsequence
int subseqHelper(int idx, int prev, vector<int>& arr,
vector<vector<int>>& memo) {
// Base case: if index reaches the end of the array
if (idx == arr.size()) {
return 0;
}
// Check if the result is already computed
if (memo[idx][prev + 1] != -1) {
return memo[idx][prev + 1];
}
// Skip the current element and move to the next index
int noTake = subseqHelper(idx + 1, prev, arr, memo);
// Take the current element if the condition is met
int take = 0;
if (prev == -1 || abs(arr[idx] - arr[prev]) == 1) {
take = 1 + subseqHelper(idx + 1, idx, arr, memo);
}
// Store the result in the memo table
return memo[idx][prev + 1] = max(take, noTake);
}
// Function to find the longest subsequence
int longestSubseq(vector<int>& arr) {
int n = arr.size();
// Create a memoization table initialized to -1
vector<vector<int>> memo(n, vector<int>(n + 1, -1));
// Start recursion from index 0 with no previous element
return subseqHelper(0, -1, arr, memo);
}
int main() {
// Input array of integers
vector<int> arr = {10, 9, 4, 5, 4, 8, 6};
cout << longestSubseq(arr);
return 0;
}
Java
// Java program to find the longest subsequence such that
// the difference between adjacent elements is one using
// recursion with memoization.
import java.util.ArrayList;
import java.util.Arrays;
class GfG {
// Helper function to recursively find the subsequence
static int subseqHelper(int idx, int prev,
ArrayList<Integer> arr,
int[][] memo) {
// Base case: if index reaches the end of the array
if (idx == arr.size()) {
return 0;
}
// Check if the result is already computed
if (memo[idx][prev + 1] != -1) {
return memo[idx][prev + 1];
}
// Skip the current element and move to the next index
int noTake = subseqHelper(idx + 1, prev, arr, memo);
// Take the current element if the condition is met
int take = 0;
if (prev == -1 || Math.abs(arr.get(idx)
- arr.get(prev)) == 1) {
take = 1 + subseqHelper(idx + 1, idx, arr, memo);
}
// Store the result in the memo table
memo[idx][prev + 1] = Math.max(take, noTake);
// Return the stored result
return memo[idx][prev + 1];
}
// Function to find the longest subsequence
static int longestSubseq(ArrayList<Integer> arr) {
int n = arr.size();
// Create a memoization table initialized to -1
int[][] memo = new int[n][n + 1];
for (int[] row : memo) {
Arrays.fill(row, -1);
}
// Start recursion from index 0
// with no previous element
return subseqHelper(0, -1, arr, memo);
}
public static void main(String[] args) {
ArrayList<Integer> arr = new ArrayList<>();
arr.add(10);
arr.add(9);
arr.add(4);
arr.add(5);
arr.add(4);
arr.add(8);
arr.add(6);
System.out.println(longestSubseq(arr));
}
}
Python
# Python program to find the longest subsequence such that
# the difference between adjacent elements is one using
# recursion with memoization.
def subseq_helper(idx, prev, arr, memo):
# Base case: if index reaches the end of the array
if idx == len(arr):
return 0
# Check if the result is already computed
if memo[idx][prev + 1] != -1:
return memo[idx][prev + 1]
# Skip the current element and move to the next index
no_take = subseq_helper(idx + 1, prev, arr, memo)
# Take the current element if the condition is met
take = 0
if prev == -1 or abs(arr[idx] - arr[prev]) == 1:
take = 1 + subseq_helper(idx + 1, idx, arr, memo)
# Store the result in the memo table
memo[idx][prev + 1] = max(take, no_take)
# Return the stored result
return memo[idx][prev + 1]
def longest_subseq(arr):
n = len(arr)
# Create a memoization table initialized to -1
memo = [[-1 for _ in range(n + 1)] for _ in range(n)]
# Start recursion from index 0 with
# no previous element
return subseq_helper(0, -1, arr, memo)
if __name__ == "__main__":
arr = [10, 9, 4, 5, 4, 8, 6]
print(longest_subseq(arr))
C#
// C# program to find the longest subsequence such that
// the difference between adjacent elements is one using
// recursion with memoization.
using System;
using System.Collections.Generic;
class GfG {
// Helper function to recursively find the subsequence
static int SubseqHelper(int idx, int prev,
List<int> arr, int[,] memo) {
// Base case: if index reaches the end of the array
if (idx == arr.Count) {
return 0;
}
// Check if the result is already computed
if (memo[idx, prev + 1] != -1) {
return memo[idx, prev + 1];
}
// Skip the current element and move to the next index
int noTake = SubseqHelper(idx + 1, prev, arr, memo);
// Take the current element if the condition is met
int take = 0;
if (prev == -1 || Math.Abs(arr[idx] - arr[prev]) == 1) {
take = 1 + SubseqHelper(idx + 1, idx, arr, memo);
}
// Store the result in the memoization table
memo[idx, prev + 1] = Math.Max(take, noTake);
// Return the stored result
return memo[idx, prev + 1];
}
// Function to find the longest subsequence
static int LongestSubseq(List<int> arr) {
int n = arr.Count;
// Create a memoization table initialized to -1
int[,] memo = new int[n, n + 1];
for (int i = 0; i < n; i++) {
for (int j = 0; j <= n; j++) {
memo[i, j] = -1;
}
}
// Start recursion from index 0 with no previous element
return SubseqHelper(0, -1, arr, memo);
}
static void Main(string[] args) {
List<int> arr
= new List<int> { 10, 9, 4, 5, 4, 8, 6 };
Console.WriteLine(LongestSubseq(arr));
}
}
JavaScript
// JavaScript program to find the longest subsequence
// such that the difference between adjacent elements
// is one using recursion with memoization.
function subseqHelper(idx, prev, arr, memo) {
// Base case: if index reaches the end of the array
if (idx === arr.length) {
return 0;
}
// Check if the result is already computed
if (memo[idx][prev + 1] !== -1) {
return memo[idx][prev + 1];
}
// Skip the current element and move to the next index
let noTake = subseqHelper(idx + 1, prev, arr, memo);
// Take the current element if the condition is met
let take = 0;
if (prev === -1 || Math.abs(arr[idx] - arr[prev]) === 1) {
take = 1 + subseqHelper(idx + 1, idx, arr, memo);
}
// Store the result in the memoization table
memo[idx][prev + 1] = Math.max(take, noTake);
// Return the stored result
return memo[idx][prev + 1];
}
function longestSubseq(arr) {
let n = arr.length;
// Create a memoization table initialized to -1
let memo =
Array.from({ length: n }, () => Array(n + 1).fill(-1));
// Start recursion from index 0 with no previous element
return subseqHelper(0, -1, arr, memo);
}
const arr = [10, 9, 4, 5, 4, 8, 6];
console.log(longestSubseq(arr));
Output3Using Bottom-Up DP (Tabulation) – O(n) Time and O(n) SpaceThe approach is similar to the recursive method, but instead of breaking down the problem recursively, we iteratively build the solution in a bottom-up manner.Instead of using recursion, we utilize a hashmap based dynamic programming table (dp) to store the lengths of the longest subsequences. This helps us efficiently calculate and update the subsequence lengths for all possible values of array elements.
Dynamic Programming Relation:
dp[x] represents the length of the longest subsequence ending with the element x.
For every element arr[i] in the array: If arr[i] + 1 or arr[i] – 1 exists in dp:
dp[arr[i]] = 1 + max(dp[arr[i] + 1], dp[arr[i] – 1]);This means we can extend the subsequences ending with arr[i] + 1 or arr[i] – 1 by including arr[i].
Otherwise, start a new subsequence:
dp[arr[i]] = 1;
C++
// C++ program to find the longest subsequence such that
// the difference between adjacent elements is one using
// Tabulation.
#include <bits/stdc++.h>
using namespace std;
int longestSubseq(vector<int>& arr) {
int n = arr.size();
// Base case: if the array has only
// one element
if (n == 1) {
return 1;
}
// Map to store the length of the longest subsequence
unordered_map<int, int> dp;
int ans = 1;
// Loop through the array to fill the map
// with subsequence lengths
for (int i = 0; i < n; ++i) {
// Check if the current element is adjacent
// to another subsequence
if (dp.count(arr[i] + 1) > 0
|| dp.count(arr[i] - 1) > 0) {
dp[arr[i]] = 1 +
max(dp[arr[i] + 1], dp[arr[i] - 1]);
}
else {
dp[arr[i]] = 1;
}
// Update the result with the maximum
// subsequence length
ans = max(ans, dp[arr[i]]);
}
return ans;
}
int main() {
vector<int> arr = {10, 9, 4, 5, 4, 8, 6};
cout << longestSubseq(arr);
return 0;
}
Java
// Java code to find the longest subsequence such that
// the difference between adjacent elements
// is one using Tabulation.
import java.util.HashMap;
import java.util.ArrayList;
class GfG {
static int longestSubseq(ArrayList<Integer> arr) {
int n = arr.size();
// Base case: if the array has only one element
if (n == 1) {
return 1;
}
// Map to store the length of the longest subsequence
HashMap<Integer, Integer> dp = new HashMap<>();
int ans = 1;
// Loop through the array to fill the map
// with subsequence lengths
for (int i = 0; i < n; ++i) {
// Check if the current element is adjacent
// to another subsequence
if (dp.containsKey(arr.get(i) + 1)
|| dp.containsKey(arr.get(i) - 1)) {
dp.put(arr.get(i), 1 +
Math.max(dp.getOrDefault(arr.get(i) + 1, 0),
dp.getOrDefault(arr.get(i) - 1, 0)));
}
else {
dp.put(arr.get(i), 1);
}
// Update the result with the maximum
// subsequence length
ans = Math.max(ans, dp.get(arr.get(i)));
}
return ans;
}
public static void main(String[] args) {
ArrayList<Integer> arr = new ArrayList<>();
arr.add(10);
arr.add(9);
arr.add(4);
arr.add(5);
arr.add(4);
arr.add(8);
arr.add(6);
System.out.println(longestSubseq(arr));
}
}
Python
# Python code to find the longest subsequence such that
# the difference between adjacent elements is
# one using Tabulation.
def longestSubseq(arr):
n = len(arr)
# Base case: if the array has only one element
if n == 1:
return 1
# Dictionary to store the length of the
# longest subsequence
dp = {}
ans = 1
for i in range(n):
# Check if the current element is adjacent to
# another subsequence
if arr[i] + 1 in dp or arr[i] - 1 in dp:
dp[arr[i]] = 1 + max(dp.get(arr[i] + 1, 0), \
dp.get(arr[i] - 1, 0))
else:
dp[arr[i]] = 1
# Update the result with the maximum
# subsequence length
ans = max(ans, dp[arr[i]])
return ans
if __name__ == "__main__":
arr = [10, 9, 4, 5, 4, 8, 6]
print(longestSubseq(arr))
C#
// C# code to find the longest subsequence such that
// the difference between adjacent elements
// is one using Tabulation.
using System;
using System.Collections.Generic;
class GfG {
static int longestSubseq(List<int> arr) {
int n = arr.Count;
// Base case: if the array has only one element
if (n == 1) {
return 1;
}
// Map to store the length of the longest subsequence
Dictionary<int, int> dp = new Dictionary<int, int>();
int ans = 1;
// Loop through the array to fill the map with
// subsequence lengths
for (int i = 0; i < n; ++i) {
// Check if the current element is adjacent to
// another subsequence
if (dp.ContainsKey(arr[i] + 1) || dp.ContainsKey(arr[i] - 1)) {
dp[arr[i]] = 1 + Math.Max(dp.GetValueOrDefault(arr[i] + 1, 0),
dp.GetValueOrDefault(arr[i] - 1, 0));
}
else {
dp[arr[i]] = 1;
}
// Update the result with the maximum
// subsequence length
ans = Math.Max(ans, dp[arr[i]]);
}
return ans;
}
static void Main(string[] args) {
List<int> arr
= new List<int> { 10, 9, 4, 5, 4, 8, 6 };
Console.WriteLine(longestSubseq(arr));
}
}
JavaScript
// Function to find the longest subsequence such that
// the difference between adjacent elements
// is one using Tabulation.
function longestSubseq(arr) {
const n = arr.length;
// Base case: if the array has only one element
if (n === 1) {
return 1;
}
// Object to store the length of the
// longest subsequence
let dp = {};
let ans = 1;
// Loop through the array to fill the object
// with subsequence lengths
for (let i = 0; i < n; i++) {
// Check if the current element is adjacent to
// another subsequence
if ((arr[i] + 1) in dp || (arr[i] - 1) in dp) {
dp[arr[i]] = 1 + Math.max(dp[arr[i] + 1]
|| 0, dp[arr[i] - 1] || 0);
} else {
dp[arr[i]] = 1;
}
// Update the result with the maximum
// subsequence length
ans = Math.max(ans, dp[arr[i]]);
}
return ans;
}
const arr = [10, 9, 4, 5, 4, 8, 6];
console.log(longestSubseq(arr));
Output3 | NLP/Natural Language Processing (NLP) Tutorial/AI ML DS - Projects/30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated]/Does Artificial Intelligence Require Coding?/Artificial Intelligence – Boon or Bane/Artificial Intelligence Examples/Agents in Artificial Intelligence/What are Diffusion Models?/ML | Common Loss Functions/Loss Functions in Deep Learning/Kaiming Initialization in Deep Learning/Swift - Initialization/Swift – If Statement/6 Best iOS Project Ideas For Beginners/Swift Programming Language/Introduction to Visual Programming Language/What is D Programming Language: Usage and Applications/Best Programming Languages for Data Science in 2024/5 Best Languages for Competitive Programming/MEX (Minimum Excluded) in Competitive Programming/Rearrange Array to maximize sum of MEX of all Subarrays starting from first index/Minimize moves to segregate even and odd by swapping adjacent elements/Minimum elements to be removed such that sum of adjacent elements is always even/Maximum sum such that exactly half of the elements are selected and no two adjacent/Maximum length subsequence such that adjacent elements in the subsequence have a common factor/Longest subsequence such that difference between adjacents is one | https://www.geeksforgeeks.org/longest-subsequence-such-that-difference-between-adjacents-is-one/?ref=ml_lbp | NLP | Longest subsequence such that difference between adjacents is one | Artificial Intelligence – Boon or Bane, AI ML DS - Projects, Rearrange Array to maximize sum of MEX of all Subarrays starting from first index, MEX (Minimum Excluded) in Competitive Programming, Swift - Initialization, 6 Best iOS Project Ideas For Beginners, ML | Common Loss Functions, Artificial Intelligence Examples, Longest subsequence such that difference between adjacents is one, What is D Programming Language: Usage and Applications, 30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated], Swift – If Statement, Natural Language Processing (NLP) Tutorial, Loss Functions in Deep Learning, Minimize moves to segregate even and odd by swapping adjacent elements, Maximum length subsequence such that adjacent elements in the subsequence have a common factor, Does Artificial Intelligence Require Coding?, Best Programming Languages for Data Science in 2024, NLP, 5 Best Languages for Competitive Programming, Maximum sum such that exactly half of the elements are selected and no two adjacent, Swift Programming Language, Minimum elements to be removed such that sum of adjacent elements is always even, Agents in Artificial Intelligence, What are Diffusion Models?, Kaiming Initialization in Deep Learning, Introduction to Visual Programming Language | GeeksforGeeks | [0.0365425162, -0.00474455673, -0.0164488442, 0.0393703952, 0.00664159423, 0.00385691621, 0.0202036425, 0.0272733476, -0.0405958109, 0.0174071826, 0.014634287, -0.0131810708, 0.0399045534, -0.0241155457, -0.0330233723, -0.00941056199, -0.00309299561, 0.0113036716, 0.0178942066, -0.0441777967, -0.0338717364, -0.00816158, -0.0379878767, 0.00406507961, -0.00937128533, 0.0411613882, 0.022921551, 0.0129768346, -0.0417898074, 0.00206003315, -0.00270219799, 0.00263346476, -0.00206985231, 0.0135502657, -0.00681048166, 0.0133067537, 0.00331686949, 0.00215429603, -0.0182555467, 0.0121834567, -0.00575002609, 0.00982688833, -0.00863289461, -0.00161915855, -0.00165745278, 0.00904922094, -0.0262207463, -0.0025608039, -0.0211462695, -0.0123012848, -0.00875072274, -0.0384906121, -0.00110267743, 0.0210520066, -0.00401794864, 0.00627632625, -0.0182712581, -0.000337283796, 0.032269273, -0.00353485206, 0.0141079873, -0.0541382208, -0.024194099, 0.0110523039, 0.0491108783, 0.0219160821, -0.0254980661, 0.0147285499, 0.0293785483, -0.0426381715, -0.0727708191, 0.0272733476, 0.0180827323, 0.00617813598, -0.0167316329, -0.0324892178, 0.00591498567, 0.00633916818, -0.0270534, 0.0302426219, -0.026503535, 0.0281845536, -0.0311066974, -0.0262993, 0.0158439931, -0.0238955989, -0.00777667435, -0.065481171, 0.0350657329, 0.00275325705, 0.00356038148, 0.0107223848, -0.0110994354, -0.0125055211, -0.031750828, 0.0419154912, 0.00591891352, 0.00765884621, -0.0652926415, 0.0441463739, 0.0222460013, 0.00353092444, -0.0131496498, 0.0179256275, 0.0207535084, 0.00648056203, 0.00501163444, 0.0267077703, 0.0367310382, 0.0624019206, -0.00125487242, 0.014846378, -0.0387734, -0.00274147419, -0.0189782269, -0.0433922708, 0.000821853115, -0.047728356, 0.020612115, 0.0304625686, 0.0163860023, 0.0403444432, 0.0303840172, 0.0483567752, -0.0451518446, 0.0589770414, 0.0201722216, 0.0387105569, 0.000208286248, -0.00948911346, -0.0129846893, 0.00544367218, -0.00500770705, 0.00422218442, 0.0102039399, 0.024194099, -0.00954410061, 0.0322378501, -0.00176448026, 0.0360397808, 0.0148620885, -0.042355381, -0.00791414082, 0.00311459741, 0.00827155355, 0.00519230496, -0.00185088778, 0.0761642754, -0.0469742566, 0.00961479731, -0.025105305, -0.0383649282, -0.0209106132, 0.0138016334, 0.00716003915, -0.0267077703, -0.00382549549, -0.0100075584, 0.0116100246, -0.0420097522, -0.0055889939, -0.000671621878, 0.0113429474, -0.0138487648, -0.0266449284, 0.01663737, 0.00255098497, -0.0235185493, -0.0262050368, 0.037736509, -0.00367428223, 0.0291900225, 0.0176271293, 0.0540753789, 0.0180198904, -0.0220731869, 0.0276818182, -5.94358353e-05, 0.00860932842, -0.00444213068, 0.00904922094, -0.0243040714, 0.0214604791, -0.0129218483, 0.0389305, -0.00966978446, 0.0119792204, -0.0151134562, 0.000873403042, -0.011445065, -0.00413577678, -0.0242726505, 0.0532584377, 0.00108696695, 0.0148935094, 0.00170654804, -0.0509332903, 0.0202664845, -0.015482652, 0.0279646069, -0.0240369942, -0.0604852438, 0.0236913636, 0.0335889496, 0.0457174182, -0.0464715213, -0.0275875553, -0.015514073, 0.0257808547, 0.0074742483, -0.0312323812, 0.0588827804, -0.0312638022, -0.0147521161, 0.0338088945, 0.0126312049, -0.0200622492, 0.036919564, -0.0188996755, -0.00954410061, 0.0179099161, 0.00414363202, 0.0320650339, -0.0022740881, -0.0312009603, -0.0198737234, -0.0236756541, 0.0401245, 0.01229343, -0.031750828, -0.00325795519, -0.00949696917, -0.026990559, -0.0236599427, 0.00181750313, -0.00401402079, 0.00336203701, 0.0333061628, 0.0190724898, 0.0367938802, -0.00723073632, -0.00423396705, 0.0123405615, -0.0245083068, 0.00923774671, -0.0263307206, -0.0120420624, 0.0221988708, 0.0364796743, 0.0270848218, 0.0223716851, -0.019245306, 0.0217118468, -0.00662195589, -0.0248539373, 0.0104160309, 0.0032559915, -0.0301954914, -0.0103688994, -0.0252466984, 0.00468564266, 0.00583250588, -0.0122070219, 0.0557721108, 0.0343744718, 0.0178627856, 0.0351599939, 0.00972477067, -0.000861620181, -0.0121049043, 0.026503535, -0.014422196, 0.0122698639, -0.0192924365, 0.0231100768, -0.0262050368, -0.0192924365, 0.00428109849, 0.0569032617, 0.0149642071, 0.0204078797, 0.0208477713, 0.0437693223, 0.0010467089, 0.0197951719, -0.0110365935, 0.0176585503, -0.00591105828, -0.0642243326, 0.00286126626, -0.013479569, -0.0193395689, 0.00567540107, 0.0135738319, 0.00472884625, -0.0106752533, -0.013267478, -0.00366053567, -0.036919564, -0.00989758596, -0.0250110421, -0.0301169399, -0.0201093797, -0.0334004238, -0.030996725, -0.020643536, 0.000977975782, -0.0323321149, -0.0261579044, 0.0122777196, 0.0109816073, -0.0432980098, 0.00099565, -0.0113586579, -0.0238798894, -0.0138094882, 0.0552693754, 0.000579813903, -0.00472884625, -0.0276189763, 0.0125919282, -0.0336203687, -0.0253566727, 0.0373908803, 0.0394960791, -0.0175014455, -0.0364168324, 0.0216018725, -0.00794556178, -0.0222302917, -0.0384591892, -0.00106241938, -0.0344373137, 0.0207849294, 0.0415384397, -0.0383335054, -0.000497088593, 0.0160875041, 0.00297516701, -0.0150034828, 0.0121520357, 0.0195438042, 0.0410985462, 0.0145871555, -0.0228272881, -0.010533859, -0.035914097, 0.00441070972, 0.00372141367, 0.000661311904, 0.00147285499, -8.23878236e-06, 0.0178627856, -0.0211148486, -0.0130082555, -0.00649234466, -0.01973233, -0.0144771831, 0.014783537, 0.0156711768, 0.0238798894, 0.0194495413, -0.0428581163, 0.0131967813, -0.0191353317, -0.0306982268, -0.0190882012, -0.0219160821, 0.000586687238, -0.00142081408, -0.0240369942, 0.00636273343, -0.0193238575, -0.00676727761, -0.0345629975, 0.0153883891, 0.0372337736, -0.00741533423, 0.0284359213, 0.000988285756, -0.067303583, 0.0419469103, 0.0238013361, 0.012419113, 0.00494879298, 0.0155690592, -0.0421668552, 0.0222774222, -0.00259222486, 0.0258751176, -0.00337774749, 0.00300266035, -0.023707075, 0.000345139037, 0.0100154141, 0.0102432156, 0.00413970463, 0.00734463707, 0.007423189, -0.0465343632, 0.0299441237, 0.00718360487, 0.00736427493, 0.0120420624, -0.00313816313, 0.0393075533, -0.0221988708, -0.0133303199, 0.0175014455, 0.0185383353, 0.0294256788, 0.0233457331, -0.0428266972, -0.0105181485, 0.00221124641, 0.0318136699, -0.0361654647, -0.00220731879, -0.0186797287, -0.0231729187, -0.0137937777, -0.0233928654, -0.00141197699, 0.0214447696, -0.0186168868, -0.00636666128, -0.00860147364, 0.023408575, 0.0219160821, -0.0348457843, -0.0149092199, 0.0151841529, 0.0225445013, -0.0058167954, -0.0126233492, -0.036008358, 0.00728965038, -0.021554742, -0.0305725429, -0.0471313596, -0.00681048166, 0.0177842341, 0.0231729187, -0.0405958109, 0.0126469154, -0.00171243947, -0.0377679318, 0.0320336148, -0.0228901301, -0.00868002512, -0.0243354924, -0.0464401, -0.0157732945, -0.016001096, 0.0438950062, -0.0352228358, 0.0263150092, -0.0186797287, 0.0239898618, -0.00232121954, 0.011020883, 0.0131260836, 0.017124394, -0.0303368848, 0.0293785483, 0.0586628318, 0.0100311246, -0.018428361, -0.0196851976, 0.00903351, 0.028750129, -0.0417583846, 0.00391779421, 0.00391386682, -0.00771383243, -0.0104317414, 0.023864178, -0.033966, -0.0392761342, -0.0169201586, 0.0259065367, -0.00977190211, 0.0223402642, 0.00197657151, -0.0240527038, -0.0106281219, 0.0368567221, -0.00218964438, 0.008000548, -0.0175642874, 0.0171086844, 0.0246182811, -0.0375479832, 0.00238602515, -0.00420647394, 0.0070461384, -0.0324892178, -0.0183341, 0.00626847101, 0.0542324856, 0.029598495, -0.0366682, -0.0165902395, 0.00292607187, 0.0279174764, -0.0570603684, -0.00884498563, 0.0406272337, 0.00515695615, -0.0556150042, -0.031845089, -0.00848364457, -0.0136759495, 0.0410042852, -0.00509411469, -0.00153373298, -0.0251524355, 0.00197853521, -0.00157300918, -0.0211776905, 0.00825584307, 0.0108323572, -0.022952972, 0.0344687365, -0.0503362939, 0.0211619809, 0.0120734833, -0.0285773147, 0.0162760299, -0.0138251986, -0.0254352242, 0.0188368335, -0.000209145408, 0.0134402933, -0.00675156713, -0.0436436385, -0.00754887285, 0.0541382208, 0.0107302396, 0.0169987101, -0.007423189, 0.0196694881, -0.0401245, 0.0142493816, -0.0349086262, 0.0257965643, 0.0178313646, -0.00890782662, 0.00120774109, 0.043109484, 0.00595033402, 0.0311224088, -0.00970906, 0.000578832, -0.0195123833, 0.00542010646, 0.00173011364, -0.00721502583, -0.0042771711, -0.00501948968, -0.0178156532, 0.0282316841, 0.0139430277, 0.0211462695, 0.0381764024, -0.00389619241, 0.0320493244, 0.0130632417, -0.0435493775, 0.00658660755, -0.0058050123, -0.0240055732, -0.0034445168, -0.0328976884, 0.0408157595, 0.025560908, -0.00582465064, -0.0244768858, -0.0119163785, 0.0205964036, 0.00763920788, -0.00995257217, -0.00428895373, -0.0172343682, -0.0196537767, -0.0433294289, -0.0262050368, -0.0164645556, -0.00887640659, -0.00173305941, 0.0323006921, 0.0488595106, 0.0150898909, 0.0171872359, -0.0534469634, 0.004705281, 0.0160168074, -0.00590713043, -0.0148699442, 0.00245475839, 0.0141001316, -0.0117592746, -0.0128904274, 0.0015072216, 0.0217903983, -0.00723859156, 0.0133460304, 0.0472256243, -0.00690474408, -0.0154669415, -0.048482459, -0.00817729067, 0.0278232135, -0.0208006408, 0.0151134562, -0.0219003726, 0.0201093797, -0.00656304182, -0.0140451454, -0.0306982268, -0.00318136672, -0.0374223, 0.014540025, 0.011688577, -0.0114215, 0.0222931337, -0.0301326495, -0.0385848731, -0.0216332935, -0.0255766176, -0.00485845748, -0.00861718412, 0.00544367218, 0.00281020743, 0.000505189295, 0.0071561113, -0.00728179514, -0.0339974202, -0.0158597026, 0.0183341, -0.011232974, 0.0126390597, -0.0240841247, 0.0742161795, -0.0163388718, 0.00320296874, -0.0323949531, 0.0168258958, 0.0295356531, -0.00233889371, 0.0151998634, 0.0104003204, 0.0169515796, 0.029598495, -0.0109187653, -0.0305882525, 0.0207692198, -0.0157575849, 0.0116257351, 0.020156512, -0.00268845144, -0.00175760698, 0.0184754934, -0.00412792154, -0.000371159462, 0.00519623235, 0.00880570896, 0.0202350635, 0.0185383353, 0.00479561603, 0.0103767542, -0.0298655722, -0.0406586528, 0.0276346877, 0.011932089, -0.034028843, -0.0138723301, 0.0260008, 0.0314837471, 0.0134638585, 0.00915919431, -0.0207849294, 0.0188525449, 0.00789450295, -0.00403365912, -0.00644521369, -0.0177056808, -0.0306196734, -0.0223716851, 0.0136445286, -0.0141943945, 0.00764706312, 0.0219632145, 0.0156790316, 0.0267234817, -0.0152627053, 0.00259418855, 0.030996725, 0.00614278717, -0.000603379623, 0.0156161906, -0.0220888983, -0.00700293481, 0.0201250911, 0.00745853782, -0.0062723984, -0.00027616031, 0.0308082, 0.00274343789, 0.00290643377, 0.0360712, 0.0276032668, -0.00501163444, 0.0012470173, -0.00626061577, -0.0117514189, -0.0120970495, -0.0288601033, -0.00150427595, -0.00157595484, 0.0213662162, 0.0164645556, 0.023738496, -0.0524100736, 0.00459923502, -0.00620955648, -0.0199679863, 0.00151998631, -0.00520801544, -0.00674763974, -0.0111544216, -0.0101175318, 0.00900994521, -0.00720324274, -0.0196851976, 0.00578537444, 0.0264406931, 0.0123169953, -0.0139823034, 0.0203293264, 0.0121834567, -0.0248382259, -0.0125133758, 0.0232671816, 0.00717574963, -0.00738391327, 0.0168101843, 0.00242333743, -0.0169201586, -0.0120263519, -0.0244454648, 0.0164017137, 0.0327091627, -0.00475241197, -0.0110130282, 0.00396688934, 0.024351202, -0.00636273343, 0.017548576, 0.0172186568, -0.0199051443, 0.00250385352, -0.0256237499, 0.00210127304, -0.00825584307, 0.00221517403, -0.0249796212, 0.0168101843, -0.00741533423, -0.0191981737, 0.023738496, 0.0150977457, 0.0214290582, 0.00788272, -0.0182398371, -0.0193867, 0.0167316329, -0.024194099, -0.0070854146, 0.0214133486, -0.0395903438, 0.0239113104, 0.00985045452, 0.00631560246, 0.0172657892, 0.00208163518, -0.00438321661, -0.01505847, 0.032457795, 0.0164645556, -0.00883713, -0.0049723587, 0.0344058946, 0.0145321693, -0.0133067537, -0.0250267517, -0.0289543662, -0.0441777967, -0.011445065, -0.0308396202, 0.00917490479, -0.0239270199, 0.0101725189, -0.000665730448, 0.0113272369, -0.0416012816, -0.0131575046, -0.0189625174, -0.0314680375, -0.0110523039, -0.00652769348, -0.000606325339, -0.00959123205, 0.0146264322, 0.0254509337, 0.0182241257, 0.0194181204, 0.00982688833, -0.00769812195, 0.0289072338, 0.0028475197, 0.00360751292, 0.0158832688, -0.0231100768, -0.00371355843, 0.0350343101, -0.0192610156, -0.0216175839, 0.0426067486, 0.0112251192, 0.00652769348, -0.0108637782, -0.0280745793, 0.0400930755, 0.00218571676, 0.008000548, -0.0177999437, 0.0154355206, 0.0334318466, 0.0212562438, -0.00610743882, 0.0125526525, -0.0043164473, -0.0354427844, 0.00639808225, 0.0131575046, -0.00470135314, 0.0124269687, 0.00607601786, 0.00995257217, 0.0158989783, -0.0275247134, -0.00775703648, -0.0165588185, -0.0245711487, 0.0249167792, 0.00609172834, 0.00259222486, -0.0192610156, -0.016983, 0.0256394595, -0.000708443229, -0.0164645556, 0.00357020064, 0.0351599939, 0.00180768408, 0.00135011703, -0.0284987632, -0.00154158822, -0.0335889496, -0.000138939329, -0.00347790169, 0.0115628941, 0.00537690287, -0.00418683561, 0.0118299713, -0.0113272369, 0.0309810136, 0.0210362971, -0.0263150092, 0.0158439931, 0.00267470465, -0.056212, -0.0389305, -6.06939e-05, -0.00591891352, -0.006967586, -0.0349714682, 0.0204235893, -0.0351914167, 0.0152548505, 0.0170772634, -0.0140372897, 0.00410435582, 0.0152077191, 0.0323949531, -0.00359376613, 0.00140412175, 0.0087821437, -0.00150034833, 0.0135895424, 0.00455603143, 0.0136838052, 0.00347790169, -0.0109973177, -0.0388676599, 0.0197166186, 0.000413135829, 0.00055428443, 0.0152784158, 0.0222460013, 0.0270691104, -0.0158047155, -0.033117637, 0.00812230445, 0.0132988989, -0.0379878767, -0.00324224471, 0.00174287846, -0.00270219799, 0.0431409068, -0.00741533423, 0.0158361364, 0.0363539904, -0.0179570485, 0.000596015307, -0.0292842854, 0.00617420813, -0.0130632417, -0.00868788082, -0.0159304, 0.0296770465, -0.00135993608, -0.010078256, -0.00936343055, 0.0262993, -0.00928487815, -0.000587669143, -0.047476992, -0.0388990827, 0.0159932412, 0.0554893203, 0.0357569903, -0.00936343055, 0.00178019074, -0.00756851071, -0.0154590858, 0.023377154, 0.0438007452, -0.0136209633, 0.0211619809, -0.0252781194, 0.00361733185, -0.0206278246, -0.0200936701, -0.00648448942, -0.0254980661, -0.0145793008, -0.00540832337, 0.0059660445, 0.00817729067, 0.00981903356, -0.0204393, -0.00108991272, 0.00184597832, -0.0104710171, 0.0158675574, -0.00305175548, 0.0111544216, -0.020187933, 0.042198278, 0.00451675523, 0.016001096, -0.022010345, -0.00810659397, 0.0317665376, -0.0028867959, -0.0427952744, -0.0221046079, 0.00190882012, -0.00286323018, 0.0132282013, 0.028106, -0.00875072274, 0.0163860023, -0.0173914712, 0.0151527319, 0.010321768, 0.0216961354, 0.0142808026, 0.01196351, 0.00367231853, -0.0214290582, -0.00934772, -0.0324892178, 0.00244690315, -0.000655911455, -0.0160717946, -0.0185069144, 0.00426931586, -0.00574609824, -0.0196066462, 0.0199051443, 0.0074742483, 0.0226230528, -0.00171636709, 0.0136209633, -0.00614671502, 0.000894023, -0.0255451966, -0.0234714169, -0.0382078215, -0.00496843085, 0.0149720619, 0.00727786776, 0.0248068068, -0.0183655191, -0.00721895322, 0.0283416584, -0.00881356467, 0.0125762178, -0.0537925921, 0.00574609824, 0.00488595106, 0.0113743683, 0.0151527319, -0.0076234974, -0.0171401054, -0.000757538422, 0.00239780801, 0.00872715656, 0.00250974484, -0.00378425536, -0.00494486513, 0.0195595138, 0.00857005268, 0.00739569589, -0.024351202, 0.00655518658, -0.00112427934, 0.0287344195, 0.00783166103, 0.0137937777, -0.00701079, 0.00275129313, -0.0183341, 0.0187739916, 0.0128825717, 0.00653554872, -0.00956766587, 0.0213976372, 0.00841294788, 0.00360751292, -0.00249403459, -0.0144614726, 0.0138723301, 0.0082479883, -0.00879785419, 0.0190567803, 0.000352012343, -0.0327720046, -0.000169010105, 0.00222695665, -0.0186168868, -0.00688510621, 0.00843651313, -0.0233457331, 0.014390775, 0.00874286704, 0.0377993509, 0.0157418735, -0.0194809623, -0.0272733476, 0.012324851, -0.00298498617, 0.00767848408, 0.0132046361, -0.0110915797, -0.00684975786, -0.0152941262, -0.0074624652, -0.0271319523, 0.0203921683, -0.00535333715, 0.00444605853, -0.0187425707, 0.00432037469, 0.0022721244, -0.00868788082, -0.0334946848, 0.0026609581, -0.00769812195, -0.0178627856, 0.0179099161, -0.000565085385, -0.0146499975, 0.00640593749, 0.0862818137, -0.00658268, 0.0145557355, -0.0359769389, 0.00318529434, 0.00425753277, 0.00032501, 0.0302740429, -0.0117042875, -0.00690081669, 0.00860932842, -0.00362518709, 0.00231729192, -0.0136523843, 0.000548393, 0.0236128122, -0.0184440725, -0.0179099161, 0.00145321689, 0.00506662112, -0.0226387642, 0.0168730263, 0.0082479883, 0.00593069615, 0.0112094088, 0.0182712581, 0.00968549494, -0.010989462, -0.0562434234, 0.00354859862, 0.00907278713, -0.0251210146, 0.00178411836, 0.000972575275, -0.0104238857, 0.00354859862, 0.0183655191, 0.0159618203, -0.0192295946, 0.0170144215, 0.00399634661, 0.0243040714, -0.0134560037, 0.0201408, -0.00244886684, -0.0183026791, -0.0217118468, -0.0125212315, -0.0172343682, 0.00128334761, -0.0221046079, -0.00873501226, -0.0362597257, 0.00296142045, -0.00673192926, 0.00905707665, 0.0074624652, -0.0031361992, 0.0428266972, -0.0226230528, -0.014783537, -0.00745461, 0.00777667435, -0.0115000522, -0.000622526743, -0.00106045557, -0.033180479, -0.0100625455, -6.76285927e-05, -0.0142729469, -0.0272419266, 0.0176428389, 0.0259850901, -0.00511375256, -0.0024410116, -0.00432430208, -0.0104081752, -0.00115275453, -0.032363534, -0.0198265929, -0.00485453, 0.0285144728, -0.0159853864, -0.00857005268, -0.012749033, -0.00200995617, -0.00668872567, -0.0181769952, -0.0383335054, -0.0295199417, -0.00595818926, -0.0280588698, -0.0370138288, -0.0305882525, -0.00470920838, -0.0196380671, 0.00021638695, 0.00794163439, 0.000491442624, 0.00246850494, -0.0451204218, -0.00547509314, 0.0123012848, -0.00111740595, -0.00727394, -0.00834225118, 0.00569111155, -0.00261186296, -0.0186011773, 0.00419469085, 0.0332118981, 0.00820871163, -0.00999970362, 0.000732990855, 0.00405722437, 0.00691259932, -0.0163231604, -0.00579322968, -0.01369166, 0.00570289465, -0.0163074508, -0.0129139926, 0.0358512551, -0.0396846049, 0.00993686169, -0.0196380671, -0.0016486157, -0.021099139, 0.00179295545, 0.00324224471, -0.0391504504, 0.0203921683, 0.0222302917, -0.00382942311, -0.0131260836, -0.00198933622, -0.0210520066, 0.00838938169, -0.010321768, 0.00926916767, -0.0072464468, 0.0260636415, 0.000597488193, 0.000201658404, 0.0158518478, -0.0157654397, -0.0132439118, 0.00829512, 0.00660231803, 0.00871930178, -0.0207220875, -0.01369166, 0.0173600502, 0.0045049726, 0.0257965643, -0.0203136168, 0.00534155406, 0.000236147753, -0.00865646, -0.00547116529, 0.0165588185, 0.0122620091, 0.00716789439, 0.00417505298, -0.0210048761, 0.00319904112, 0.0158125721, -0.00426538801, -0.0309024621, 0.00784344412, 0.00105456414, -0.025592329, 0.0150506143, 0.00480739865, 0.0285930261, 0.00946554821, 0.00401991233, 0.00622133957, 0.00613886, -0.00690474408, -0.0224188175, 0.0318136699, -0.0113429474, 0.0200151168, -0.0452146865, -0.00494093774, -0.0174228922, -0.0103767542, 0.0317351148, 0.00531798834, -0.00343077024, 0.00673585711, -0.0154747963, 0.0216647144, 0.00558506604, 0.00719931535, 0.0112408297, -0.00681048166, 0.000173305933, -0.00743104424, 0.00492915465, -0.0186325982, 0.00406507961, -0.0207220875, 0.00825584307, -0.0123719824, -0.0276661087, -0.0172500778, -0.00175957079, -0.0131417941, 0.011932089, -0.0140844211, -0.00738391327, -0.00231729192, -0.0230629463, -0.00284162816, -0.00863289461, 0.000482114527, 0.00745853782, -0.0215076115, 0.010533859, 0.0012705829, 0.0161189251, -0.0247282535, -0.00805946253, -0.024351202, 0.0306510944, 0.0264249835, 0.00102903473, 0.0258594062, -0.0109187653, 0.0136680948, 0.0259693787, -0.00358591089, -0.00802411418, -0.00258829724, 0.0277446602, -0.0204550102, -0.0426381715, 0.00424575, 0.00924560148, 0.00412792154, -0.0105574243, 0.0187111497, 0.0249639098, 0.000141639553, 0.0185540449, 0.01663737, -0.0183341, 0.0284045, -0.0019657705, -0.0167787634, 0.0427638553, -0.0192924365, 0.0168416053, 0.00649627252, 0.00505876588, -0.0138801858, -0.0275718458, -0.0205335617, 0.0297398884, 0.0196851976, 0.00275718467, 0.0125212315, -0.00182437641, 0.00784737151, -0.00450104475, -0.00989758596, 0.000306599308, -0.0120027866, -0.00906493142, 0.0208006408, 0.00396099826, -0.00794556178, -0.0265506655, -0.0384591892, -0.00320689636, 0.00733678183, -0.0148699442, 0.000307826704, -0.0151998634, 0.0423868038, 0.0178313646, -0.0177842341, 0.0133303199, 0.0108323572, 0.00269237906, -0.00340720452, 0.000150353953, -0.0283416584, 0.000567049196, -0.00545545481, -0.0123719824, -0.00697544124, 0.00494879298, 0.026503535, 0.0221831594, 0.0031558373, -0.0430466421, 0.0217589773, -0.0133538852, -0.00166334421, -0.0122698639, 0.0105181485, -0.00432430208, -0.0299441237, 0.00164370623, -0.0196694881, 0.0276818182, 0.00123032485, 0.00240762695, -0.0338717364, -0.0145086041, 0.00587570947, -0.0146892741, -0.00610351097, 0.0127333226, -0.0031165611, 0.0157183092, -0.00505483849, 0.00636666128, -0.00697151385, -0.0168258958, -0.00911991857, -0.00131280476, 0.00858576316, -0.0125762178, 4.00125609e-05, 0.00938699581, -0.0130632417, 0.00198344467, -0.0180670209, -0.018821124, 0.0137859229, 0.00326581043, 0.0176114179, -0.00633916818, -0.0150191933, 0.019276727, 0.00431251945, -0.0308239087, 0.00426931586, -0.0203607474, 0.0114529207, -0.0162288975, -0.00452461047, 0.0142415259, 0.0363539904, 0.00703042792, 0.0277132392, -0.0452461056, -0.0346572585, -0.0222460013, 0.0360712, 0.0380507186, 0.0070854146, 0.00665337685, -0.0145793008, 0.00219160831, 0.00356823672, -0.0142258154, -0.00737998541, 0.00411221106, 0.00332276081, 0.00814587, -0.00909635238, 0.0124583896, 0.0183498096, 0.0317194052, 0.0196694881, -0.00350539503, 0.00237031467, 0.0155847697, -0.00792199653, -0.00677513285, -0.0106281219, -0.0194495413, -0.0181455743, 0.00257847807, -0.0145793008, 0.00279842457, -0.0220888983, -0.00970906, 0.00194318674, -0.0269120075, 0.00411221106, -0.0343430527, 0.00128629338, 0.00213662162, 0.0167473424, -0.0259536691, 0.0225602109, 0.0247439649, 0.0247282535, 0.0240212828, 0.0191196222, -0.0218689516, -0.0104003204, -0.00410435582, -0.0221517384, 0.0182398371, 0.0152548505, 0.0153255472, 0.0133853061, 0.0140844211, 0.013903751, -0.0178470742, -0.0125290863, 0.0439578481, -0.0187425707, 0.0349400491, -0.00481525389, -0.0104238857, -0.0425124876, 0.00836581644, 0.0173286293, 0.0131967813, 0.0364482515, -0.00263935607, 0.00885284, -0.0106673976, -0.010290347, -0.0177999437, -0.00609958358, 0.00559292128, 0.00817729067, 0.0224816594, -0.0152077191, -0.0141079873, -0.000267814146, 0.0058560716, 0.000869966345, -0.0354742035, -0.0111387111, -0.0213190857, -0.0100075584, 0.00419469085, -0.00536512, -0.026503535, -0.00361929578, 0.00535726454, -0.00615064241, 0.00184303254, 0.00448926212, 0.0111151459, -0.0068576131, 0.0266763493, -0.0093084434, -0.000405035127, 0.0163860023, 0.00585999899, 0.0055889939, 0.0149013652, -0.0155454939, -0.0161974765, 0.0107695162, 0.00788272, -0.00453639356, 0.00971691497, -0.00526300166, 0.00161719485, -0.00150918541, 0.0065905354, 0.00613493193, 0.000228415258, -0.00291232532, -0.000407980842, -0.00124407152, 0.011932089, 0.00790628605, 0.0120891938, -0.0152077191, -0.00145125308, 0.010109677, 0.00522372592, -0.0169987101, -0.0110837249, -0.00787093677, -0.00578537444, -0.000167169041, -0.0162446089, 0.00680262642, -0.00860147364, 0.00203057611, 0.0153176924, 0.0438635871, 0.00550258625, 0.0313266441, 0.00262560952, 0.0228901301, 0.00334239891, -0.01214418, -0.0154433753, 0.00871144608, -0.0019461324, -0.020674957, -0.0120734833, 0.00478383293, 0.00309495931, -0.00923774671, 0.00298105855, -0.010078256, -0.00065002, -0.0198737234, 0.0360712, 0.000706970401, 0.0220574774, 0.0261893254, 0.0317194052, 0.0136366738, 0.00163879665, -0.00748210354, -0.017124394, -2.91886113e-06, 0.00970906, -0.000831181183, -0.0031754754, -0.00532584358, 0.00912777334, 0.0114136441, 0.00192453049, -0.00857005268, -0.007423189, -0.00403758651, 0.014602866, 0.00809873827, 0.0110837249, 0.0268177446, -0.0102196503, -0.00701864483, -0.00181357551, 0.0154119544, -0.0106124114, -0.0180670209, -0.0155297834, -0.0106359767, 0.0289072338, -0.00225052238, 0.0177213922, -0.00978761259, -0.01056528, 0.00664552161, -0.0339031592, 0.0230472349, 0.00222695665, -0.00354663492, -0.005160884, -0.0174228922, 0.0167159233, 0.00290643377, 0.022952972, 0.0121049043, -0.0205492731, 0.0072464468, -0.00980332308, 0.0111936983, 0.0242726505, -0.0132910432, -0.0152862715, 0.00333650759, 0.000576377264, -0.0127961645, -0.0157575849, -0.0137073705, -0.00510197, 0.00646485155, 0.00927702244, 0.0089313928, 0.000597488193, 0.00249207066, 0.0075842212, -0.00750174141, 0.0168730263, 0.0323006921, 0.00118122972, 0.00906493142, -0.0171401054, 0.0191196222, 0.0090178, -0.0184754934, 0.00518837711, 0.00340916845, -0.00246654125, -0.0194809623, 0.0177371018, 0.00336792856, 0.030541122, 0.0351285748, -0.0115628941, -0.0148071023, -0.0119713657, -0.000624490494, 0.00992900692, -0.00412792154, -0.0199365653, -0.012568363, -0.0241155457, -0.023377154, -0.018428361, -0.0102746366, 0.00204235897, -0.0134010166, 0.0145007484, -0.0238484684, -0.0171401054, -0.0126626259, 0.00027223269, -0.00400616555, -0.0443034768, -0.0173914712, -0.0274932943, -0.00339738559, -0.00152391393, -0.0116257351, -0.0089313928, -0.00576573657, -0.0180198904, 0.000506662123, 0.00221713772, -0.0163231604, 0.00549473101, 0.0185854658, 0.00293589104, 0.00054642919, 0.035097152, 0.00129807624, -0.0224031061, -0.00287894066, -0.00599353807, 0.0195123833, -0.00453639356, 0.0132596223, -0.00323242578, 0.0133538852, 0.00125781819, 0.0193552785, -0.0215390325, -0.0287029985, -0.0108166467, 0.000851310208, 0.00933986437, 0.012419113, 0.0180827323, 0.0080201868, -0.018789703, -0.00718360487, -0.0109423306, -0.00853863172, -0.02738332, 0.00822442211, 0.0105809905, 0.00787093677, 0.026927717, -0.0155769149, 0.00952053443, -0.0265663769, 0.000587669143, 0.0163074508, -0.00515695615, 0.00550258625, -0.00034563, 0.00895495806, 0.0123169953, 0.0271005314, 0.0408471785, -0.00541225122, 0.0265820865, 0.0013098591, -0.0042378949, -0.00471313624, -0.00203057611, -0.0291586015, -0.0054672379, 0.012811875, 0.00138153799, 0.0022937262, 0.0269434284, -0.000700097065, 0.00596997235, 0.00948125869, -0.0147678265, -0.00455995928, 0.021067718, -0.00153471495, -0.00710505247, -0.025592329, 0.000885676825, -0.0106516872, 0.00929273292, 0.00964621827, 0.00648056203, -0.00478383293, -0.0126626259, 0.00498021394, -0.00236835075, 0.00476026721, 0.00475241197, -5.41274203e-05, -0.00383531442, 0.0198580138, 0.00866431464, -0.0110601597, -0.0116021698, -0.01229343, -0.00253527449, -0.00430466421, 0.000915133918, -0.00417898083, -0.00667301519, -0.0008189074, -3.48575668e-05, 0.00241744611, 0.00737998541, -0.00828726403, -0.00513731828, -0.00731714349, -0.00951268, 0.0180827323, 0.0109816073, -0.00363893388, 0.0131417941, 0.00197558943, 0.0156633221, 0.00412792154, 0.00446176855, 0.0106988186, -0.0152234295, -0.0125526525, 0.00231532799, -0.00415541511, -0.0205178522, 0.0190724898, -0.00153373298, -0.00517266663, -2.36730757e-05, 0.00882141944, -0.00638629915, 0.00391779421, 0.0117278537, -0.0124034034, 0.0156161906, -0.00606030738, -0.0156319011, 0.00209145411, -0.0277760811, -0.00936343055, 0.0246968325, -0.0255451966, -0.00592284091, 0.0349714682, -0.0169044472, -0.00846793409, -0.0242726505, -0.00276307599, 0.00911206286, 0.00977975689, -0.00484667486, 0.00988187548, 0.00407293485, -0.0109737515, 0.00422218442, 0.010321768, -0.0188682545, -0.00164567, 0.0140451454, -0.0138566196, -0.00487416796, -0.00805946253, 0.00554186245, 0.0108873444, 0.0140922768, -0.0331490561, 0.021523321, -0.00277878647, -0.00908849761, 0.0111072902, -0.0133067537, -0.0397474468, 0.0171086844, -0.015270561, 0.00947340298, -0.0149092199, -0.028106, 0.014602866, -0.0118221166, 0.00103689, 0.0053886855, 0.0106595429, -0.000117767035, 0.0108323572, -0.0108951991, 0.0178627856, 0.00838938169, 0.00793770701, 0.0113193821, 0.0132753327, -0.00469742576, 0.00552222459, -0.000305371941, -0.000623508648, -0.00347397407, -0.0135973971, -0.008774288, -0.00606816262, 0.00918276, -0.000485060242, 0.00955981109, -0.011201553, 0.0021523321, -0.00518837711, -0.00269041513, -0.00483489223, -0.0128040193, -0.00173698703, 0.00669265306, -0.0160403736, -0.0108166467, -0.01211276, 0.02878155, -0.0195909347, -0.00421432918, 0.00205217791, -0.00707363151, -0.00586392684, -0.00231925561, -0.0288915243, -0.00915133953, -0.012356272, 0.000255540333, 0.00609565573, -0.0052394364, -0.0216961354, -0.00618991861, -0.029629916, -0.0225759223, 0.0204235893, -0.00214447686, -0.00592284091, 0.00624883268, 0.00625668792, 0.0301954914, 0.0125997839, 0.0140058696, -0.0312795117, 0.0190253593, 0.00115275453, -0.0118456818, 0.00562041486, 0.00667694258, 0.0216804259, 0.0402187593, 0.012324851, -0.0316565633, 0.00998399314, 0.0121363252, 0.00939485151, -0.00400420185, 0.00288483198, -0.0196851976, 0.017092973, -0.00847579, -0.020156512, 0.0203764588, 0.00530620571, -0.00483881962, 0.0211934019, -0.0161346365, -0.0175328664, -0.0204078797, 0.00965407398, 0.0152155738, 0.00381764024, 0.00529442262, -0.0111701321, 0.0108480677, 0.00181357551, -0.0245397277, -0.0397474468, -0.0192295946, -0.0188368335, 0.000136975519, -0.0134874247, 0.0179413371, -0.0103767542, -0.000437928888, 0.000698624237, 0.0150427595, -0.00295552914, 0.0168416053, -0.00838938169, 0.00133440667, 0.0180513114, -0.000477695983, 0.00661017327, 0.0313737765, 0.0112172635, -0.000591596763, -0.00960694253, -0.0123012848, -1.0762581e-05, -0.00595033402, -0.0138251986, -0.0119399447, -0.00434394041, 0.00128825719, 0.0178784952, -0.00106536516, 0.00637844391, 0.0114136441, 0.0120656285, -0.00964621827, 0.0148306685, 0.00547509314, -0.0112565402, -0.00337381987, 0.013236057, -0.00434394041, -0.0149327861, -0.010078256, -0.00259418855, 0.0256080385, 0.0122698639, 0.00674371235, -0.0131889256, 0.0152077191, 0.00536119239, 0.0143436436, 0.00738391327, 0.0111701321, 0.0102432156, -0.000669167144, -0.00621348433, 0.0153648239, -0.00528264, -0.0109109096, 0.0262050368, 0.0118142609, -0.0013943027, 0.0177056808, -0.0198423024, -0.0150741804, 0.0127254669, 0.0145714451, 0.0203607474, -0.00585214375, -0.018915385, 0.0110837249, -0.00871930178, -0.0158989783, 0.00985830929, 0.00422218442, -0.00904922094, 0.00189703726, -0.0108480677, -0.0101018213, -0.0234557074, 0.0180198904, 0.00525907427, 0.000489478814, 0.000605834357, 0.00415541511, 0.0153334029, 0.0074742483, 0.0132910432, 0.0212248228, -0.012749033, 0.0100154141, 0.00241940981, -0.00247046887, 0.00236049574, -0.00949696917, 0.000894023, 0.00969335, -0.0280274488, 0.0211934019, -0.0351285748, -0.0292528644, 0.00745068258, 0.00674371235, -0.00682226429, 0.00754887285, 0.00915919431, -0.00482310914, -0.0232828911, -0.0214919, 0.00235853181, -0.01074595, -0.0242569409, 0.00573038775, 0.00207378, -0.00279842457, -0.00933201, 0.0142336711, 0.000659839, -0.00977190211, -0.00114391744, 0.00150034833, 0.00639415439, 0.0180356, 0.0076234974, 0.0312009603, 0.000254312967, 0.00709327, 0.0169201586, 0.00989758596, -0.00198442675, 0.00541617861, 0.0261264835, 0.00717574963, -0.00374105177, 0.00791806821, 0.00648056203, 0.0311695393, -0.00298891379, 0.0208320618, -0.0155297834, 0.00665730471, 0.0212876648, 0.0253566727, -0.0117514189, -0.0101410979, 0.00421040133, 0.027838923, 0.0148306685, -0.0174071826, 0.0164959766, 0.00609172834, -0.00252349162, 0.00412399415, -0.0245240182, -0.0334318466, 0.00341113214, -0.00781595055, -0.023377154, -0.0117357085, 0.00109384034, 0.00944983773, 0.000845909701, -0.011900668, 0.0181927048, 0.00692438241, 0.017092973, -0.00896281376, 0.000222646588, -0.00903351, -0.00318725826, 0.00132851524, -0.00337774749, -0.00412792154, 0.0193238575, -0.0198737234, 0.00411221106, 0.0083972374, 0.00464243907, 0.022041766, 0.00914348383, 0.00325206388, 0.00547902053, 0.00402973127, 0.00683797477, -0.00897852425, -0.0226858947, -0.0182241257, 0.00336400094, 0.0144143412, -0.00131673238, -0.0203921683, -0.00111936976, -0.0401245, 0.03327474, 0.0141079873, 0.011837827, -0.00640593749, 0.000563612499, -0.015906835, 0.0237542056, -0.00447747903, 0.0129297031, 0.00322653446, 0.0120891938, -0.000810070254, 0.00176644407, 0.0249796212, -0.0101410979, -0.0129139926, 0.000968156673, 0.00313030789, 0.0101018213, 0.0286401566, -0.00652769348, -0.023832757, 0.00399045506, -0.0107538057, -0.0247910954, -0.0188368335, 0.00660231803, 0.0160560831, 0.0264249835, 0.0279488973, -0.0144693274, 0.0125133758, -0.0394332372, 0.0157104526, 0.0161974765, 0.0161346365, -0.000413381291, -0.00312834396, 0.0265663769, 0.0108166467, 0.0106988186, 0.0104081752, 0.0171558149, -0.0102275051, 0.0044656964, -0.0096383635, 0.0247282535, 0.00377640035, -0.000322064298, -0.026047932, -0.00529835047, 0.00523158116, -0.00262560952, 0.0194495413, -0.012175601, 0.00598175498, -0.0132282013, -0.0301954914, -0.0202507749, 0.000431792, 0.0167473424, 0.00535726454, -0.0136052528, -0.0187425707, 0.0223402642, 0.00113017077, -0.000393497758, 0.0196066462, -0.0243040714, -0.0118456818, -0.00881356467, 0.0334632657, -0.002519564, 0.0152234295, -0.0103688994, 0.00153176917, 0.00426538801, 0.0150977457, 0.00369588425, 0.00981117785, 0.000785522687, 0.0172343682, 0.0260322206, -0.00617813598, -0.0101489527, -0.00607209, -0.00183419546, -0.0117749851, -0.00235853181, 0.0173443407, 0.00192354864, -0.0203607474, 0.0015680996, 0.00222106534, 0.00888426136, 0.0141236978, 0.0161189251, -0.0131575046, -0.00536904763, -0.0177371018, -6.47826073e-06, 0.0169358682, 0.000367231842, 0.0227016043, 0.0335261077, -0.0145321693, 0.00153471495, 0.00886855088, -0.00299087749, 0.00816158, 0.024162678, 0.0122541534, 0.00459923502, 0.00788664725, 0.00532977143, 0.00621348433, -0.0153805334, -0.00583250588, -0.00851506554, 0.00464636646, -0.0114607755, 0.00299873273, -0.00933986437, -0.00345826359, 0.0142258154, 0.00835796166, -0.00851506554, -0.00624883268, 0.00174778793, 0.00538083026, -0.0185069144, -0.00316762016, -0.0199679863, 0.0202664845, 0.00663766637, 0.0115707489, 0.00683011953, -0.0214447696, 0.00678298809, -0.0220731869, -0.019245306, -0.000261677225, -0.00394528778, -0.00823227782, 0.0312323812, -0.0128275855, 0.00739569589, 0.00842080265, 0.00337774749, 0.00416327035, -0.00827940926, 0.000687332358, -0.0277917925, 0.00540832337, -0.0157418735, -0.0150113385, -0.011020883, -0.00402580388, -0.0138487648, -0.00403365912, 0.0119792204, -0.00527871214, 0.0036035853, -0.005160884, -0.00923774671, -0.0148620885, 0.0114372103, 0.0228744205, 0.0061231493, -0.00433215732, -0.0132596223, -0.0169201586, 0.0200622492, -0.0179413371, 0.00790628605, 0.00527478475, 0.00572646037, 0.0104474518, -0.0159382541, 0.00694402028, 0.00648056203, 0.00058914203, 0.0017183309, 0.00256473152, -0.0100625455, 0.00490951678, 0.0100311246, -0.00452853832, 0.0140372897, 0.00195202383, 0.00247439649, -0.0126154944, 0.000268305099, -0.00464636646, -0.00195496948, -0.00185579725, -0.010321768, -0.0227330253, -0.0034032769, -0.0120577728, -0.00147089118, 0.00679477118, -0.00933201, 0.0145635903, 0.00378229166, 0.0140215801, -0.0096383635, 0.0162603185, -0.00622919481, -0.0179570485, 0.0160403736, -0.00070107897, 0.0219475031, 0.00511768041, -0.00651983824, 0.014053, 0.0021130559, 0.00281217112, 0.00456781453, 0.0220574774, -0.0139116067, 0.00981117785, 0.0157654397, 3.3844979e-05, 0.0187111497, -0.00555364508, -0.00900994521, 0.0359769389, 0.0115471836, -0.00549865887, 0.0147285499, -0.0267863236, -0.0100389794, -0.00410042843, 0.013055387, -0.0161032155, -0.0257180128, -0.0133931618, 0.00374105177, -0.00374497939, 0.00861718412, -0.00664159423, 0.0246654116, 0.0113350917, 0.0164331347, -0.0204235893, 0.0141943945, 0.00105260033, 0.0185697563, 0.0021523321, -0.00779238483, -0.00781987794, 0.0076234974, 0.0103139123, -0.0191824641, 0.029598495, -0.0127411773, 0.00398063613, 0.0110287387, 0.00492129941, -0.0182555467, 0.00200995617, 0.00711290771, 0.0243826229, -0.01074595, -0.010353189, -0.000598470098, 0.00551829673, 0.000927898625, 0.00911991857, -0.0107616605, 0.0114293545, 0.00240173563, -0.00307728513, -0.0169515796, 0.00529835047, 0.0188839659, 0.00878999848, 0.0270376895, 0.016181767, 0.0122698639, 0.00897852425, 0.00127843814, 0.00452461047, -0.0107695162, 0.000718753261, 0.0194338299, -0.00667301519, -0.0201250911, -0.00487416796, -0.00579322968, 0.0053101331, 0.0107380953, -0.00503912801, 0.0077806022, -0.0211619809, -0.0346886814, -0.00782773364, 0.0101725189, 0.0101175318, 0.00816158, 0.0243983343, -0.00838152692, -0.00637844391, 0.00812230445, -0.015694743, 0.0102824913, 0.00420254609, 0.00819300115, -0.00906493142, 0.0104867276, -0.00672014663, 0.01523914, 0.00292410818, 0.00201486563, -0.0164959766, 0.0131810708, -0.00187543535, -0.00349164824, 0.0242412295, -0.00133440667, -0.00153962441, -0.0754101798, 0.0101332422, 0.00864860415, 0.0394018181, 0.0159225445, 0.0248382259, -0.00326973805, -0.0115550384, -0.00110464124, 0.0248068068, -0.00605638, 0.0223088432, -0.00396296196, 0.0162760299, -0.00368017377, 0.0187425707, 0.0108323572, 0.00322849816, 0.0247910954, -0.0113193821, 0.00782380626, -0.0156868882, 0.00759207644, 0.00165352516, 0.00230943668, -0.00948125869, -0.00789057557, -0.00912777334, -0.00853077602, -0.0110523039, 0.00740747899, 0.0104867276, 0.0332433209, -0.0139587382, -0.0125290863, -0.0195909347, -0.0266763493, -0.0209420342, 0.00483096438, -0.0147364056, 0.00198344467, 0.0109266201, -0.0319707729, -0.0249482, 0.00295356521, 0.0184754934, 0.00645306893, 0.010353189, 0.0024606497, 0.0169672891, -0.00993686169, 0.0217275564, -0.0223559756, -0.00279056933, -0.00720324274, -0.00981903356, -0.000674076669, -0.00328937615, 0.0191824641, 0.0125840735, -0.0198580138, -0.0123327058, 0.00343077024, -0.00497628609, 0.00107223843, -0.00538475811, 0.00793377869, 0.00468957052, 0.0150898909, -0.000264377479, -0.00207378, 0.0100861108, 0.00821656734, 0.0129375588, -0.00601317594, 0.00149052928, -0.0104395961, -0.00786308199, -0.00804375205, -0.00699115172, -0.00136779132, 0.0158361364, 2.77694544e-05, -0.0149170756, 0.010321768, -0.00880570896, -0.020643536, 0.00455210404, 0.00191471155, 0.0147599708, 0.0239427313, 0.0191824641, -0.00982688833, 0.0162603185, -0.013023966, -0.0104395961, -0.0102432156, 0.00966192875, -0.00735641969, 0.0114921965, 0.0195595138, 0.022041766, 0.00902565569, -0.0183498096, 0.0317194052, 0.00981903356, -0.0107223848, 0.0096383635, -0.0145086041, 0.034028843, -0.0106359767, -0.0172657892, -0.0018656163, -0.00533762667, 0.0229843929, 0.0134324376, -0.00199424569, -0.00584036112, -0.0323006921, 0.00704221055, -0.00131673238, -0.0240055732, -0.00286519388, -0.0102982018, 0.0010162699, 0.0156868882, -0.00361340423, 0.00747032044, -0.0368881449, -0.0139744487, 0.00347593776, -0.001035908, 0.00682226429, -0.0089313928, 0.0190882012, -0.0170144215, -0.00689688884, 0.0183812305, -0.00787879247, -0.00769419456, -0.00519230496, -0.00217589783, -0.00756065547, -0.00417112559, 0.00391386682, 0.00669265306, -0.017517155, -0.00828726403, -0.000917097728, -0.00586785423, -0.00727786776, 0.00721109798, -0.00259811617, 0.0035839472, -0.0158125721, -0.0145478798, 0.00238013361, -0.000810561178, 0.0257494338, -0.020156512, 0.0044656964, 0.00182044879, -0.00952839, -0.00541225122, 0.00369784795, 0.016668791, -0.013903751, -0.00780809531, -0.00650412776, -0.00119595823, 0.00243708398, 0.0136838052, -0.0124269687, 0.00422611181, 0.00423003966, 0.00368999271, -0.00520016, -0.0144614726, -0.0022328482, 0.00304782786, 0.0115314731, 0.00908849761, -0.0103374785, -0.0086250389, 0.0271633733, -0.016983, -0.00530227786, 0.0120577728, -0.00763920788, -0.01214418, 0.00566754583, -0.00637451652, 0.000157840957, -0.00146892737, 0.001514095, 0.019276727, 0.00213073031, 0.0150191933, -0.018004179, -0.00055035681, -0.00199326384, 0.00940270629, 0.0133067537, -0.01663737, 0.00422611181, 0.00354663492, -0.000812034064, 0.00185972487, -0.00292410818, -0.0109816073, -0.0130946627, -0.0107930815, 0.0176428389, -0.0339974202, 0.00177724508, -0.00820871163, -0.0434551127, 0.00701079, 0.00984259881, -0.00202861219, 0.0280902907, -0.0028278816, 0.017061552, 0.00912777334, 0.0223245546, -0.00294178235, 0.0204078797, 0.00875857752, -0.0130868079, 0.00349164824, -0.00267470465, 0.0118771028, -0.00196773419, -0.00816158, -0.00035716733, 0.013723081, -0.0193709899, 0.00807517301, 0.00150918541, 0.0171715263, -0.00783166103, 0.0181927048, -0.0208163504, 0.0195909347, 0.0158282816, 0.0105967009, 0.0345629975, -0.00305961072, -0.0153569682, -0.0118221166, 0.00515302876, -0.00827940926, -0.000968156673, 0.008318685, 0.00904922094, -0.0187425707, 0.0012401439, 0.0124426791, 0.0123012848, 0.0209734552, -0.0194495413, -0.0068576131, 0.00621741172, 0.00612707669, -0.000172692249, -0.00819300115, -0.011837827, -0.00266292179, -0.00605245214, -0.00669265306, 0.01056528, -0.00824013259, -0.0177999437, 0.0014875835, -0.0211776905, -0.0135973971, -0.00327955722, -0.00186659826, -6.1706487e-05, 0.0108794887, -0.0145478798, -0.0175642874, 0.00455210404, 0.00941841677, -0.0214919, -0.0193709899, -0.00748603093, -0.00264721131, 0.00559684914, 0.011445065, 0.0301012285, -0.00319904112, -0.015482652, -0.0108794887, -0.0556778461, -0.00504698325, 0.0123484163, 0.00369392033, 0.0206906665, -0.0236285217, 0.0128354402, -0.0240841247, -0.00845222361, 0.00710898032, -0.00483096438, -0.0117592746, -0.00587178208, -0.0281374212, -0.00222499296, -0.00153864257, -0.014390775, 0.0150977457, -0.00999184791, -0.0173600502, -0.0216175839, -0.0138958963, -0.0121049043, -0.0177842341, -0.00739569589, -0.0176742598, 0.00378621928, 0.0290172081, -0.00465029432, 0.0117828399, -0.000374841591, 0.00783558842, 0.0219789241, 0.00110464124, 0.0179099161, -0.00635880604, 0.00232121954, 0.00616635289, 0.0120106414, 0.00379603822, 0.0166845024, 0.0267549027, -0.00058717822, -0.0161189251, -0.00776489172, -0.0138016334, -0.00274147419, -0.00449711736, -0.0174700245, -0.0109737515, 0.00661017327, 0.00183714111, -0.0277760811, -0.00136484567, 0.0209891666, -0.0166216604, -0.0343744718, 0.00719931535, -0.00451282784, 0.0146814184, 0.010109677, -0.0182555467, -0.0132439118, 0.0107066743, 0.0258594062, -0.00491737202, 0.0167002119, -0.0142965131, -0.0197951719, -0.0160246622, 0.00520408759, 0.00315780123, -0.00802411418, -0.00911991857, 0.000415099639, 0.00203646743, 0.00509804208, -0.0107223848, 0.0102432156, 0.0860932842, 0.0276346877, 0.00653554872, -0.0260793529, 0.00297123939, 0.00894710328, -0.0301954914, 0.0442406386, -0.0183026791, 0.00767455669, -0.00615457026, -0.00657089707, 0.00756065547, -0.0108323572, -0.0230158139, 0.00789057557, 0.00581286754, -0.00196969812, -0.00531798834, -0.00664944947, -0.00897852425, -0.00766670145, 0.0016289776, -0.00819300115, 0.00186463445, -0.00836581644, -0.0132439118, -0.00101332425, -0.0250267517, 0.0152941262, -0.0132910432, 0.00418290822, 0.00184696016, 0.00554971769, -0.0400302336, 0.012419113, 0.0156476125, -0.0113979336, 0.00543581694, -0.0132439118, -0.00546331, 0.0185226239, 0.0110601597, 0.00368606509, -0.00369392033, -0.0125997839, -0.0228272881, -0.00190980197, -0.0147364056, -0.012780454, -0.00801233109, -0.0107145291, 0.0105024381, -0.0157968607, 0.0118142609, -0.0135345552, 0.00661017327, -0.00444605853, 0.00463458383, 0.0199836958, 0.00594640663, 0.011507907, 0.018459782, 0.00795341749, 0.0168573167, 0.00352699682, -0.00512553565, 0.00969335, 0.00973262545, -0.00558506604, -0.000913661032, 0.00542403385, 0.0226858947, -0.00553400721, -0.00967763923, 0.00310477824, 0.00142277789, 0.0119477995, -0.00418683561, -0.031389486, 0.00296338438, 0.0109501863, -0.0198265929, -0.0148306685, -0.00970120542, 0.0262050368, 0.00732892659, -0.0244768858, -0.0158204269, 0.00711683556, -0.000400371093, 0.0246025696, -0.0272105057, 0.0100704, -0.00811444875, 0.00378818298, -0.0151213109, 0.00355841778, 0.022497369, -0.00304782786, 0.0226073433, 0.00872715656, -0.00297713093, 0.0183026791, -0.0177685227, -0.000588651048, 0.0175642874, 0.00860147364, 0.0311066974, 0.00321278768, 0.0254823547, -0.00981903356, 0.0160089526, 0.0238170475, 0.0121913115, -0.000294571015, 0.00860932842, 0.00258240569, -0.00627632625, -0.00954410061, 0.0162603185, 0.00846793409, -0.00107027462, -0.00535333715, -0.00810659397, 0.0131339394, 0.00607601786, 0.00190292869, 0.0241469666, -0.00799269322, 0.0151527319, -0.0246025696, 0.00948911346, -0.00553400721, 0.00981117785, 0.00231140037, -0.0284830518, -1.86868474e-05, -0.0199836958, 0.013966593, 0.00109187653, 0.0311695393, 0.0090806419, 0.0213976372, -0.00338560273, 0.0101410979, 0.0137859229, -0.00410042843, 0.0325834788, 0.00167316326, -0.0164331347, 0.00811444875, 0.0248853583, -0.00229569, -0.00890782662, -0.00149543874, -0.00808302872, -0.0248382259, 0.00577359181, -0.0141236978, -0.00114784495, 0.0049723587, 0.00440285448, 0.0150820352, 0.00582072278, -0.0125290863, -0.00248225173, -0.00307335751, 0.00683404738, 0.00284555578, 0.0383020863, -0.0133853061, -0.00730143301, 0.0164017137, -0.0147678265, -0.00327955722, -0.00177429931, 0.0198423024, -0.00357412826, 0.00622526696, -0.011900668, -0.00661410065, -0.00652376562, 0.0307767782, -0.00579715753, -0.0155612044, -0.00563612534, 0.0186797287, 0.0235028379, 0.0145793008, -0.0248382259, -0.00770205, -0.0135738319, -8.09456542e-05, -0.00762742525, -0.0190096479, 0.018428361, 0.00977975689, 0.0093084434, 0.00885284, 0.00403758651, 0.0085464865, 0.00820871163, 0.00911206286, -0.00644128583, 0.0240212828, 0.0148856547, -0.00205806945, 0.00123425247, 0.00313423551, -0.00371944974] |
26 Apr, 2023 | Longest Increasing Subsequence using Longest Common Subsequence Algorithm
26 Apr, 2023
Given an array arr[] of N integers, the task is to find and print the Longest Increasing Subsequence.Examples:
Input: arr[] = {12, 34, 1, 5, 40, 80} Output: 4 {12, 34, 40, 80} and {1, 5, 40, 80} are the longest increasing subsequences.Input: arr[] = {10, 22, 9, 33, 21, 50, 41, 60, 80} Output: 6
Prerequisite: LCS, LISApproach: The longest increasing subsequence of any sequence is the subsequence of the sorted sequence of itself. It can be solved using a Dynamic Programming approach. The approach is the same as the classical LCS problem but instead of the second sequence, given sequence is taken again in its sorted form.Note: We should remove all duplicates otherwise it might give wrong result. For example in {1, 1, 1} we know the longest increasing subsequence(a1 < a2 < … ak) is of length 1, but if we try out this example in LIS using LCS method we would get 3 (because it finds the longest common subsequence). Below is the implementation of the above approach:
C++
// C++ implementation of the approach
#include <bits/stdc++.h>
using namespace std;
//function to return size of array without duplicates
int removeDuplicates(vector<int> &arr)
{
int k = 0;
for (int i = 1; i < arr.size(); i++)
{
if (arr[i] != arr[k]) {
arr[++k] = arr[i];
}
}
return k + 1;
}
// Function to return the size of the
// longest increasing subsequence
int LISusingLCS(vector<int>& seq)
{
int n = seq.size();
// Create an 2D array of integer
// for tabulation
vector<vector<int> > L(n + 1, vector<int>(n + 1));
// Take the second sequence as the sorted
// sequence of the given sequence
vector<int> sortedseq(seq);
sort(sortedseq.begin(), sortedseq.end());
//remove duplicates
int m = removeDuplicates(sortedseq)
// Classical Dynamic Programming algorithm
// for Longest Common Subsequence
for (int i = 0; i <= n; i++) {
for (int j = 0; j <= m; j++) {
if (i == 0 || j == 0)
L[i][j] = 0;
else if (seq[i - 1] == sortedseq[j - 1])
L[i][j] = L[i - 1][j - 1] + 1;
else
L[i][j] = max(L[i - 1][j], L[i][j - 1]);
}
}
// Return the ans
return L[n][m];
}
// Driver code
int main()
{
vector<int> sequence{ 12, 34, 1, 5, 40, 80 };
cout << LISusingLCS(sequence) << endl;
return 0;
}
Java
//Java implementation of above approach
import java.util.*;
class GFG
{
// Function to return the size of the
// longest increasing subsequence
static int LISusingLCS(Vector<Integer> seq)
{
int n = seq.size();
// Create an 2D array of integer
// for tabulation
int L[][] = new int [n + 1][n + 1];
// Take the second sequence as the sorted
// sequence of the given sequence
Vector<Integer> sortedseq = new Vector<Integer>(seq);
Collections.sort(sortedseq);
// Classical Dynamic Programming algorithm
// for Longest Common Subsequence
for (int i = 0; i <= n; i++)
{
for (int j = 0; j <= n; j++)
{
if (i == 0 || j == 0)
L[i][j] = 0;
else if (seq.get(i - 1) == sortedseq.get(j - 1))
L[i][j] = L[i - 1][j - 1] + 1;
else
L[i][j] = Math.max(L[i - 1][j],
L[i][j - 1]);
}
}
// Return the ans
return L[n][n];
}
// Driver code
public static void main(String args[])
{
Vector<Integer> sequence = new Vector<Integer>();
sequence.add(12);
sequence.add(34);
sequence.add(1);
sequence.add(5);
sequence.add(40);
sequence.add(80);
System.out.println(LISusingLCS(sequence));
}
}
// This code is contributed by Arnab Kundu
Python3
# Python3 implementation of the approach
# Function to return the size of the
# longest increasing subsequence
def LISusingLCS(seq):
n = len(seq)
# Create an 2D array of integer
# for tabulation
L = [[0 for i in range(n + 1)]
for i in range(n + 1)]
# Take the second sequence as the sorted
# sequence of the given sequence
sortedseq = sorted(seq)
# Classical Dynamic Programming algorithm
# for Longest Common Subsequence
for i in range(n + 1):
for j in range(n + 1):
if (i == 0 or j == 0):
L[i][j] = 0
elif (seq[i - 1] == sortedseq[j - 1]):
L[i][j] = L[i - 1][j - 1] + 1
else:
L[i][j] = max(L[i - 1][j],
L[i][j - 1])
# Return the ans
return L[n][n]
# Driver code
sequence = [12, 34, 1, 5, 40, 80]
print(LISusingLCS(sequence))
# This code is contributed by mohit kumar
C#
// C# implementation of above approach
using System;
using System.Collections.Generic;
class GFG
{
// Function to return the size of the
// longest increasing subsequence
static int LISusingLCS(List<int> seq)
{
int n = seq.Count;
// Create an 2D array of integer
// for tabulation
int [,]L = new int [n + 1, n + 1];
// Take the second sequence as the sorted
// sequence of the given sequence
List<int> sortedseq = new List<int>(seq);
sortedseq.Sort();
// Classical Dynamic Programming algorithm
// for longest Common Subsequence
for (int i = 0; i <= n; i++)
{
for (int j = 0; j <= n; j++)
{
if (i == 0 || j == 0)
L[i, j] = 0;
else if (seq[i - 1] == sortedseq[j - 1])
L[i, j] = L[i - 1, j - 1] + 1;
else
L[i,j] = Math.Max(L[i - 1, j],
L[i, j - 1]);
}
}
// Return the ans
return L[n, n];
}
// Driver code
public static void Main(String []args)
{
List<int> sequence = new List<int>();
sequence.Add(12);
sequence.Add(34);
sequence.Add(1);
sequence.Add(5);
sequence.Add(40);
sequence.Add(80);
Console.WriteLine(LISusingLCS(sequence));
}
}
// This code is contributed by 29AjayKumar
Javascript
<script>
//Javascript implementation of above approach
// Function to return the size of the
// longest increasing subsequence
function LISusingLCS(seq)
{
let n = seq.length;
// Create an 2D array of integer
// for tabulation
let L = new Array(n + 1);
for(let i = 0; i < (n + 1); i++)
{
L[i] = new Array(n + 1);
for(let j = 0; j < (n + 1); j++)
{
L[i][j] = 0;
}
}
// Take the second sequence as the sorted
// sequence of the given sequence
let sortedseq =[...seq];
sortedseq.sort(function(a,b){return a-b;});
// Classical Dynamic Programming algorithm
// for Longest Common Subsequence
for (let i = 0; i <= n; i++)
{
for (let j = 0; j <= n; j++)
{
if (i == 0 || j == 0)
L[i][j] = 0;
else if (seq[i - 1] == sortedseq[j - 1])
L[i][j] = L[i - 1][j - 1] + 1;
else
L[i][j] = Math.max(L[i - 1][j],
L[i][j - 1]);
}
}
// Return the ans
return L[n][n];
}
// Driver code
let sequence = [12, 34, 1, 5, 40, 80];
document.write(LISusingLCS(sequence));
// This code is contributed by patel2127
</script>
Output:
4
Time Complexity: O(n2) where n is the length of the sequenceAuxiliary Space: O(n2)
Efficient approach: Space Optimization
In previous approach the current value i.e. L[i][j] is depend no the current and previous row values. So to optimize the space complexity we can only keep track of the current and previous values of L[j] instead of the entire 2D array. This reduces the space complexity to O(n) instead of O(n^2).
Implementation Steps:
Create a vector L of size n+1 to store the values of the Longest Increasing Subsequence.
Create a copy of the original sequence called sortedseq and sort it in descending order and remove duplicates.
Use a nested for-loop, where the outer loop iterates through i from 1 to n and the inner loop iterates through j from 1 to m.
Use two variables prev and curr to store the left and top values of the current cell L[i][j].
If seq[i-1] and sortedseq[j-1] are equal, update L[j] with prev+1. else update L[j] with max(L[j], L[j-1]).
Update prev to curr at the end of each inner loop iteration.
Return the value at L[m] as the Longest Increasing Subsequence.
Implementation:
C++
// C++ implementation of the approach
#include <bits/stdc++.h>
using namespace std;
//function to return size of array without duplicates
int removeDuplicates(vector<int> &arr)
{
int k = 0;
for (int i = 1; i < arr.size(); i++)
{
if (arr[i] != arr[k]) {
arr[++k] = arr[i];
}
}
return k + 1;
}
// Function to return the size of the
// longest increasing subsequence
int LISusingLCS(vector<int>& seq)
{
int n = seq.size();
// Create an veector of integer
// to store values
vector<int> L(n + 1);
// Take the second sequence as the sorted
// sequence of the given sequence
vector<int> sortedseq(seq);
sort(sortedseq.begin(), sortedseq.end());
//remove duplicates
int m = removeDuplicates(sortedseq);
// Classical Dynamic Programming algorithm
// for Longest Common Subsequence
for (int i = 1; i <= n; i++) {
int prev = 0;
for (int j = 1; j <= m; j++) {
int curr = L[j];
if (seq[i - 1] == sortedseq[j - 1])
L[j] = prev + 1;
else
L[j] = max(L[j], L[j - 1]);
prev = curr;
}
}
// Return the answer
return L[m];
}
// Driver code
int main()
{
vector<int> sequence{ 12, 34, 1, 5, 40, 80 };
// function call
cout << LISusingLCS(sequence) << endl;
return 0;
}
Java
// Java code addition
import java.io.*;
import java.util.*;
// Function to return size of array without duplicates
class GFG{
public static int removeDuplicates(int[] arr) {
int k = 0;
for (int i = 1; i < arr.length; i++) {
if (arr[i] != arr[k]) {
arr[++k] = arr[i];
}
}
return k + 1;
}
// Function to return the size of the longest increasing subsequence
public static int LISusingLCS(int[] seq) {
int n = seq.length;
// Create an array of integer to store values
int[] L = new int[n + 1];
// Take the second sequence as the sorted sequence of the given sequence
int[] sortedseq = seq.clone();
Arrays.sort(sortedseq);
// Remove duplicates
int m = removeDuplicates(sortedseq);
// Classical Dynamic Programming algorithm for Longest Common Subsequence
for (int i = 1; i <= n; i++) {
int prev = 0;
for (int j = 1; j <= m; j++) {
int curr = L[j];
if (seq[i - 1] == sortedseq[j - 1])
L[j] = prev + 1;
else
L[j] = Math.max(L[j], L[j - 1]);
prev = curr;
}
}
// Return the answer
return L[m];
}
// Driver code
public static void main(String[] args) {
int[] sequence = {12, 34, 1, 5, 40, 80};
// Function call
System.out.println(LISusingLCS(sequence));
}
}
// The code is contributed by Nidhi goel.
Python3
# Python implementation of the approach
# function to return size of array without duplicates
def removeDuplicates(arr):
k = 0
for i in range(1, len(arr)):
if arr[i] != arr[k]:
k += 1
arr[k] = arr[i]
return k + 1
# Function to return the size of the
# longest increasing subsequence
def LISusingLCS(seq):
n = len(seq)
# Create a list of integer to store values
L = [0] * (n + 1)
# Take the second sequence as the sorted
# sequence of the given sequence
sortedseq = sorted(seq)
# remove duplicates
m = removeDuplicates(sortedseq)
# Classical Dynamic Programming algorithm
# for Longest Common Subsequence
for i in range(1, n + 1):
prev = 0
for j in range(1, m + 1):
curr = L[j]
if seq[i - 1] == sortedseq[j - 1]:
L[j] = prev + 1
else:
L[j] = max(L[j], L[j - 1])
prev = curr
# Return the answer
return L[m]
# Driver code
if __name__ == '__main__':
sequence = [12, 34, 1, 5, 40, 80]
# function call
print(LISusingLCS(sequence))
C#
using System;
using System.Linq;
// Function to return size of array without duplicates
class GFG {
public static int RemoveDuplicates(int[] arr)
{
int k = 0;
for (int i = 1; i < arr.Length; i++) {
if (arr[i] != arr[k]) {
arr[++k] = arr[i];
}
}
return k + 1;
}
// Function to return the size of the longest increasing
// subsequence
public static int LISusingLCS(int[] seq)
{
int n = seq.Length;
// Create an array of integer to store values
int[] L = new int[n + 1];
// Take the second sequence as the sorted sequence
// of the given sequence
int[] sortedseq = seq.Clone() as int[];
Array.Sort(sortedseq);
// Remove duplicates
int m = RemoveDuplicates(sortedseq);
// Classical Dynamic Programming algorithm for
// Longest Common Subsequence
for (int i = 1; i <= n; i++) {
int prev = 0;
for (int j = 1; j <= m; j++) {
int curr = L[j];
if (seq[i - 1] == sortedseq[j - 1])
L[j] = prev + 1;
else
L[j] = Math.Max(L[j], L[j - 1]);
prev = curr;
}
}
// Return the answer
return L[m];
}
// Driver code
public static void Main(string[] args)
{
int[] sequence = { 12, 34, 1, 5, 40, 80 };
// Function call
Console.WriteLine(LISusingLCS(sequence));
}
}
Javascript
// Function to return size of array without duplicates
function removeDuplicates(arr) {
let k = 0;
for (let i = 1; i < arr.length; i++) {
if (arr[i] != arr[k]) {
arr[++k] = arr[i];
}
}
return k + 1;
}
// Function to return the size of the longest increasing subsequence
function LISusingLCS(seq) {
let n = seq.length;
// Create an array of integer to store values
let L = new Array(n + 1).fill(0);
// Take the second sequence as the sorted sequence of the given sequence
let sortedseq = [...seq];
sortedseq.sort((a, b) => a - b);
// Remove duplicates
let m = removeDuplicates(sortedseq);
// Classical Dynamic Programming algorithm for Longest Common Subsequence
for (let i = 1; i <= n; i++) {
let prev = 0;
for (let j = 1; j <= m; j++) {
let curr = L[j];
if (seq[i - 1] == sortedseq[j - 1])
L[j] = prev + 1;
else
L[j] = Math.max(L[j], L[j - 1]);
prev = curr;
}
}
// Return the answer
return L[m];
}
// Driver code
let sequence = [12, 34, 1, 5, 40, 80];
// Function call
console.log(LISusingLCS(sequence));
Output
4
Time Complexity: O(n^2) where n is the length of the sequenceAuxiliary Space: O(n) | NLP/Natural Language Processing (NLP) Tutorial/AI ML DS - Projects/30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated]/Does Artificial Intelligence Require Coding?/Artificial Intelligence – Boon or Bane/Artificial Intelligence Examples/Agents in Artificial Intelligence/What are Diffusion Models?/ML | Common Loss Functions/Loss Functions in Deep Learning/Kaiming Initialization in Deep Learning/Swift - Initialization/Swift – If Statement/6 Best iOS Project Ideas For Beginners/Swift Programming Language/Introduction to Visual Programming Language/What is D Programming Language: Usage and Applications/Best Programming Languages for Data Science in 2024/5 Best Languages for Competitive Programming/MEX (Minimum Excluded) in Competitive Programming/Rearrange Array to maximize sum of MEX of all Subarrays starting from first index/Minimize moves to segregate even and odd by swapping adjacent elements/Minimum elements to be removed such that sum of adjacent elements is always even/Maximum sum such that exactly half of the elements are selected and no two adjacent/Maximum length subsequence such that adjacent elements in the subsequence have a common factor/Longest subsequence such that difference between adjacents is one/Longest Increasing Subsequence using Longest Common Subsequence Algorithm | https://www.geeksforgeeks.org/longest-increasing-subsequence-using-longest-common-subsequence-algorithm/?ref=lbp | NLP | Longest Increasing Subsequence using Longest Common Subsequence Algorithm | Artificial Intelligence – Boon or Bane, AI ML DS - Projects, Rearrange Array to maximize sum of MEX of all Subarrays starting from first index, MEX (Minimum Excluded) in Competitive Programming, Swift - Initialization, Longest Increasing Subsequence using Longest Common Subsequence Algorithm, 6 Best iOS Project Ideas For Beginners, ML | Common Loss Functions, Artificial Intelligence Examples, Longest subsequence such that difference between adjacents is one, What is D Programming Language: Usage and Applications, 30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated], Swift – If Statement, Natural Language Processing (NLP) Tutorial, Loss Functions in Deep Learning, Minimize moves to segregate even and odd by swapping adjacent elements, Maximum length subsequence such that adjacent elements in the subsequence have a common factor, Does Artificial Intelligence Require Coding?, Best Programming Languages for Data Science in 2024, NLP, 5 Best Languages for Competitive Programming, Maximum sum such that exactly half of the elements are selected and no two adjacent, Swift Programming Language, Minimum elements to be removed such that sum of adjacent elements is always even, Agents in Artificial Intelligence, What are Diffusion Models?, Kaiming Initialization in Deep Learning, Introduction to Visual Programming Language | GeeksforGeeks | [0.0286282599, 0.0233832784, -0.0127166016, 0.0136567401, -0.0129074566, -0.025192868, 0.0234115534, 0.0262814481, -0.0324312225, 0.0174172912, -0.015678389, -0.0165549088, 0.0330815427, -0.000492600433, 0.00708991196, 0.0172335058, -0.0150987562, 0.0146746337, 0.00447449088, -0.0174738411, -0.00336823845, 0.0117976703, -0.0068213013, 0.0419598371, -0.0216867905, 0.024372898, 0.0138829388, 0.0115997465, -0.0384537615, 0.00646786578, 0.0147877326, 0.0116987079, -0.0104334103, -0.0187179334, 0.010143593, -0.0147311836, 0.0285292976, 0.00798056927, -0.0311588552, -0.00533333886, -0.0112675177, -0.00448862836, 0.0095639592, -0.00148619537, 0.0091822492, -0.000540756, -0.0173041914, 0.0145756714, -0.0370682925, -0.0106525403, -0.0241749752, -0.00923173, 0.00317738322, -0.01349416, -0.0241325628, 0.0147877326, -0.010878738, 0.0129428, -0.00217539421, -0.0151553052, -0.00153832708, -0.0121581741, -0.0324312225, -0.0117906015, 0.0548814312, -0.0308761075, -0.0191561934, 0.0192268807, 0.0367572717, -0.0117976703, -0.0694429651, 0.0147029087, 0.0250939056, -0.00780385127, -0.00581754511, 0.0163145736, 0.0167104211, -0.0149856564, 0.00676121702, 0.0177565888, -0.00559488079, 0.00285222288, -0.00974067673, -0.00662691193, 0.0180534758, -0.0187462084, -0.0087298518, -0.0509512313, 0.0537787154, 0.00680362945, 0.0184069108, 0.034269087, -0.0096982643, -0.0199478883, -0.0409702212, 0.0180676132, 0.0292644426, 0.00298299384, -0.0583026856, 0.024401173, 0.0163004361, -0.0114088915, -0.0212768055, -0.017120406, 0.0184493233, 0.0197782386, -0.0100163566, 0.00989618804, 0.0164276734, 0.0559558757, -0.00980429538, 0.00411752099, -0.0337318666, -0.00885001943, 0.00900553167, -0.0169083439, 0.00951447804, -0.0262531731, 0.0104475478, 0.0415357165, 0.0314698778, 0.0362483226, 0.0165549088, 0.0387082323, -0.0440239, 0.0585288852, 0.00995273795, 0.0278507, -0.0134234726, 0.0190430935, -0.010440479, -0.00594831584, -0.00305014662, 0.00590590388, -0.0010673746, 0.0400654264, -0.0264935102, 0.0348063074, 0.00636536954, 0.0151835801, 0.0052379109, -0.0458052158, 0.00855313428, -0.00500464393, 0.0463424362, 0.00511774328, -0.00159222598, 0.0584723353, -0.0630528554, 0.0018785086, -0.0102213491, -0.00742214127, -0.00180605438, 0.0152825424, 0.0159328636, 0.00740800379, -0.00798056927, -0.0131336553, 0.0147311836, -0.0251504555, 0.0260552503, 0.00238392106, -0.0150563437, -0.031328503, -0.0245142728, 0.0246415082, -0.0196651407, -0.0164983589, -0.0398392268, 0.0326856971, 0.00936603546, 0.0215878282, 0.0111190742, 0.0626004562, 0.00430837646, -0.038171012, 0.0224219356, 0.0212202556, 0.00400442211, -0.0142080989, 0.0131902052, -0.036587622, -0.0050187814, 0.00378175778, 0.0232419055, -0.0339015126, 0.0256594028, 0.00327457814, 0.0142505113, -0.00484559778, -0.0244435854, -0.030508535, 0.070121564, 0.0030642841, 0.0117199142, 0.00935896672, -0.0331380926, 0.0111544179, -0.00860968418, 0.0211354308, -0.0216161031, -0.0323463976, 0.0108151203, 0.020612346, 0.0539766401, -0.0368420966, -0.054231111, -0.0102001429, -0.00832693558, -0.0175162535, -0.0426667109, 0.0560972504, -0.0267621204, -0.025546303, 0.0377186164, 0.00969119556, -0.019467216, 0.0378599875, -0.0250090808, -0.00415639905, 0.00487387273, 0.0210081935, 0.0610736199, -0.0195237659, -0.0530435704, -0.0402633473, -0.0120450752, 0.0330249928, 0.0255604405, -0.0254049283, 0.0111049367, 0.00735145435, -0.0021877645, -0.000390104222, 0.0109211504, -0.010249624, -0.0130346939, -0.00029600205, 0.0580199398, 0.0173607413, 0.0228177831, -0.0283879228, -0.0029759251, 0.00698034698, 0.0141020687, 0.00127855223, 0.00601900322, 0.00631588884, 0.0656541437, 0.028981695, 0.0188310333, -0.00395847531, -0.0228036456, -0.0146180838, -0.0169790313, 0.0247263331, -0.00241573015, -0.0135719152, -0.00846124068, -0.0152259925, -0.0287837703, -0.00630882, 0.0188875832, 0.0305933598, 0.0288544577, 0.0180110633, 0.0629397556, -0.00261011976, 0.00415639905, -0.00506472774, 0.0187603459, -7.60023931e-06, 0.0121298991, -0.0256028529, 0.000605699723, -0.018703796, -0.0190430935, -0.0133951977, 0.0414226167, 0.0375772417, 0.0241184253, -0.000451955391, 0.0314133279, 0.00221073767, 0.0326291472, -0.0210930184, 0.0178131387, -0.00915397424, -0.0364745222, 0.00456284964, -0.0029988985, -0.0296037402, -0.00146675645, 0.00351491407, 0.0298016649, 0.01371329, -0.0298582148, 0.00268610823, -0.0416205414, 0.0122076552, -0.00739386631, -0.0284868851, 0.00702275941, -0.0359655768, -0.019085506, -0.0164983589, -0.0119037, -0.0263945479, -0.0374075919, -0.00715706497, 0.00385597907, -0.0375206918, -0.00701922504, -0.0188310333, -0.0204002857, -0.00556307146, 0.075324133, -0.000279434782, -0.027780015, -0.0215312783, 0.0281051751, -0.0411964171, -0.0111826928, 0.0643534958, 0.0379448123, -0.000303954352, -0.01524013, 0.0351456068, 0.0198630635, -0.00836934801, -0.0168376584, -0.00336470408, -0.0402916223, 0.0110625252, 0.0342408121, -0.00950034056, -0.0247970205, -0.00240689446, -0.037351042, -0.0294340923, -0.00737972884, -0.0251504555, 0.0195520408, 0.0130417626, -0.00228142482, 0.00470422395, -0.0357111022, 0.00611796509, 0.0541462861, -0.00952861551, 0.00131301209, 0.0012281877, 0.035852477, -0.0375772417, -0.0146039464, 0.00459465897, -0.00688138511, -0.0111897616, 0.0147594577, 0.0217998885, 0.0447024964, 0.00752110314, -0.0393585563, 0.0447590463, 0.00532980449, -0.0212626681, -0.0161449239, -0.0267338455, -0.00206582923, -0.00979722664, -0.0414791666, -0.00933069177, 0.0133810602, -0.0193682536, -0.0270024575, -0.0167528335, 0.0307347327, -0.00944379158, 0.0204992481, 0.00863089, -0.0251221806, 0.0327705219, 0.0130417626, 0.0290947929, -0.00433665095, -0.00500110956, -0.0372379422, 0.0111614866, -0.000705545186, 0.0257018153, -0.0114371665, 0.00766247744, -0.017530391, -0.0106666777, 0.0190006811, 0.0100587681, 0.00968412682, 0.00309432601, -0.0155511526, -0.0330532677, 0.013550709, 0.032120198, 0.0148018701, -0.0077897138, -0.0188168958, 0.0260552503, -0.000779324851, -0.0264510978, 0.0214464534, 0.0260128379, 0.0176576283, 0.0100163566, -0.0645231456, -0.021404041, 0.00412105536, 0.0367007218, -0.0115714716, -0.0134729538, 0.00531566702, -0.00372167374, -0.0103697916, -0.00395494094, -0.00738679757, 0.0260693878, -0.0371531174, 0.00027148248, -0.0100799743, 0.0305933598, 0.030508535, -0.0475865267, 0.00472189579, 0.0380861871, -0.00908328686, 0.00863795821, -0.014285855, -0.0346932076, 0.00413872721, -0.0249808077, -0.0354283527, -0.0662196353, -0.0238215383, 0.0273700301, -0.000397614698, -0.0449004211, -0.0120874876, -0.0130912438, -0.0262248982, 0.0203578733, -0.00227965764, 0.0155370161, -0.051092606, -0.0060720183, -0.00212414609, -0.0326574221, 0.0513753556, -0.0392454565, 0.0451831669, -0.0178696886, 0.0479823761, 7.73691936e-05, 0.0101506617, -0.00124232506, -0.00104528491, -0.0230157059, 0.022846058, 0.0262107626, 0.000670201669, 0.007987638, -0.0218988508, 0.0223229732, 0.032120198, -0.0391323566, 0.00494102528, -0.00488094147, 0.00799470674, -0.00401149085, 0.00906914938, -0.0317809023, -0.0205416586, -0.0190996435, 0.0279496629, 0.0184917338, 0.00441440707, -0.000432958244, -0.022577446, -0.0222240109, 0.0638445541, -0.0132114114, -0.0114795789, -0.00370400189, 0.000195493893, 0.0170779936, -0.0365593471, -0.00186613842, -0.00157101988, 0.0241749752, -0.0353718027, -0.0272286553, -0.0136284651, 0.0133669227, 0.0128155639, -0.0296320152, -0.0256735403, 0.0301975124, 0.0204426982, -0.0522518754, 0.0188593082, 0.0122217927, 0.0127448766, -0.0247263331, -0.0269034952, -0.0355131775, -0.0127802202, 0.0307630077, -0.00971240178, 0.0111049367, -0.0329401679, 0.0390192568, -0.00615684269, 0.00317031471, 0.00962757785, 0.0271721054, 6.37840276e-05, 0.015975276, -0.0597164296, 0.0136143276, 0.0211495683, -0.0122783426, 0.0300844125, -0.00904794317, -0.0343821868, 0.0247687455, 0.0167952459, 0.0111049367, -0.0111190742, -0.0269176327, 0.00203048578, 0.0263521355, -0.00141109037, 0.0330532677, 0.00107621052, 0.0347214825, -0.0402916223, 0.015268405, -0.0399523266, 0.0307347327, 0.0102920355, -0.00829159189, -0.0023609479, 0.0380296372, 0.00144643395, 0.0225208979, 0.00526618585, -0.0142787863, -0.0334491171, 0.0230581183, 0.00159222598, -0.011203899, -0.024754608, -0.0231288057, -0.0149715189, -0.000616744568, 0.0139182825, 0.020994056, 0.0366724469, -0.0134164039, 0.00940844789, 0.0061285682, -0.0545421354, 0.00141109037, 0.000365142827, 0.00181312312, -0.00897725672, -0.0241467, 0.0291796178, 0.0474734306, -0.0118188765, -0.0269459076, -0.0251504555, 0.00609322451, -0.00800884422, -0.00615330832, -0.00491981953, -0.0234822407, -0.0134517476, -0.027398305, -0.0290947929, -0.0129074566, 0.0139677627, 0.0106101278, 0.0142434426, 0.0225067604, 0.0262814481, 0.024782883, -0.0405460969, 0.0133103728, -0.00161519926, -0.0305650849, -0.0248394329, 0.00856727175, 0.0214181785, 0.0231570806, -0.0138334576, -0.0163428485, -0.000561520341, -0.0220685, 0.00998808164, 0.0270024575, 0.0126529839, -0.0258149132, -0.0569172204, -0.00430837646, 0.00982550159, -0.0141162062, 0.0291796178, 0.000129556123, 0.0352021568, 0.00189618033, -0.0176717658, -0.0417053662, -0.0112533802, -0.0430342816, 0.0249525327, 0.00393020036, 0.00964878406, 0.0234963782, -0.02857171, -0.0264086854, -0.0191137809, -0.0159611385, 0.00461586518, -0.0326291472, 0.0022955623, 0.00532273576, -0.032742247, 0.0158480387, 0.00882881414, -0.0107302954, -0.0161731988, 0.0404047221, -0.0129993502, 0.00427303277, -0.0230298433, 0.0702346638, -0.00875812676, -0.00972653925, -0.0600557253, -0.00346013159, 0.0105111655, 0.00999515, 0.01562184, 0.0101718679, 0.0178555511, 0.0177848637, -0.00292821135, -0.0118400827, 0.0178555511, -0.0407722965, -0.0130276252, 0.0204709731, 0.0129428, -0.0067753545, 0.0281051751, 0.00466181152, -0.0057503921, -0.0151411677, 0.0186613835, 0.00438966649, 0.00595891895, -0.023637753, -0.0185624212, 0.00530859828, -0.0138900075, 0.0300278626, 0.0124904038, -0.00803711824, -0.0268610828, 0.0280344877, 0.0254332032, 0.0216302406, -0.0196510032, -0.00496930024, 0.0196934156, 0.00692379754, 0.0016540772, -0.00219129887, -0.000605699723, 0.0020393217, -0.00844003446, 0.0125045404, -0.012787289, 0.0266631581, 0.0372096673, 0.00561255263, 0.0241608378, -0.0131902052, 0.0082138367, 0.044928696, 0.000309034978, -0.00112392427, 0.00484913215, -0.00855313428, -0.017940376, -0.00430130772, -0.00365452096, 0.0106384028, 0.00159752753, 0.0142999925, 0.0161590613, 0.0207819957, 0.0143565414, 0.0123985102, 0.00218246295, -0.00302540604, -0.00286459317, -0.0116987079, -0.0371248424, -0.0347780325, 0.0213333555, -0.0105394404, 0.0300844125, 0.0146463588, 0.00516368961, -0.0626570061, 0.016766971, -0.0108716693, -0.0179969259, 0.00675061438, -0.016470084, -0.00118224102, -0.00445681904, -0.00310316193, 0.0284020603, 0.00586702581, -0.0121228304, 0.0316678025, 0.0293209925, -0.00336470408, -0.0186189711, 0.0068601789, 0.0197499637, -0.0238922257, 0.0137486327, 0.0125540216, 0.000173625085, 0.00113452727, 0.0194813535, 0.00742214127, 0.00320565817, -0.0168376584, -0.0188593082, 0.00309609319, 0.033505667, -0.00528032333, 0.00247051264, -0.0176859014, 0.0516015552, -4.67749524e-05, 0.0272145178, 0.00088403, 0.0180393383, 0.020230636, -0.022874333, -0.0012582296, -0.0019209208, -0.0208526831, -0.0422991365, 0.00296708941, -0.00942258537, -0.010716158, 0.0207678583, 0.0142787863, 0.0281193126, -0.0186472461, -0.0293775424, -0.0246415082, 0.00606848393, 0.0157914888, 0.00559488079, -0.0170214437, -0.0462293364, 0.0356262773, 0.0221533235, 0.00905501191, 0.0227188207, -0.0042694984, 0.00353435287, -0.0102637606, 0.0405743718, -0.00967705809, -0.0186472461, 0.0126105715, 0.0129993502, -0.00839762297, -0.0136920838, -0.0093731042, -0.0124762664, -0.0317243524, -0.0305933598, -0.0411115922, 0.0258714631, -0.0127519453, -0.00420234585, 0.00730197318, 0.0129357316, -0.024372898, -0.0193965286, 0.00879347, -0.0205557961, -0.00947913434, 0.00212591328, 0.0117906015, -0.0121511053, 0.0330815427, 0.0316112526, 0.0242032483, 0.0195237659, 0.011041319, 0.0157208014, 0.0240760129, 0.00203578733, 0.0216443781, 0.00182195893, -0.0307630077, -0.0039478722, 0.0360504, 0.00280097476, -0.0149856564, 0.0476430766, -0.00819263048, 0.00419174274, -0.00457345275, -0.0127448766, 0.00406804029, -0.0209233705, 0.0217998885, -0.0102425553, 0.0242880732, 0.0250373557, 0.021404041, 0.00620985823, -0.00453457469, -0.00211531017, -0.0253907926, 0.0199196134, -0.0187603459, -0.0374924168, 0.00564082712, 0.00291230693, -0.00512127765, 0.0271579679, -0.0218281634, -0.00280097476, -0.0382558368, -0.00484559778, 0.0391889066, -0.0240477379, -0.0138122514, -0.0172759164, -0.0146180838, 0.021290943, -0.0016540772, -0.0196368657, 0.0265641976, 0.0318657272, 0.00880053919, -0.0147735951, -0.0278507, 0.0014614549, -0.010440479, 0.0107373642, -0.0111685554, -0.00787453819, -0.0244294479, -0.00148884614, 0.00830572937, -0.0140243126, 0.0519408509, -0.0210364684, -0.02819, 0.00678949198, -0.00815728679, -0.0395282023, -0.0246697832, -0.00906208064, 0.031356778, -0.0179969259, -0.0137486327, 0.032742247, -0.0444197468, -0.00227435608, 0.0269600451, -0.0130346939, -0.0116845705, -0.00190855062, 0.0307630077, 0.0129640065, 0.0171628185, 0.00107002538, -0.00758472132, 0.00461233081, -0.005806942, 0.017912101, 0.0124267852, 0.000693616748, -0.00364038348, 0.0258290507, 0.0098891193, -0.0222381484, 0.0163145736, 0.0246980581, 0.0487457961, -0.0159894135, -0.0452114418, 0.00839762297, -0.000399381883, -0.0445045717, -0.0070581031, -0.00210294, 0.00295471912, 0.0362483226, -0.031978827, 0.0274548531, 0.0115997465, -0.0310457572, -0.00281157787, -0.038114462, -0.0168517958, 0.00252529513, -0.0119814565, -0.0315547027, 0.0406591967, 0.0227753706, -0.00334349787, 0.000323172397, 0.017120406, -0.0159611385, 0.0070475, -0.0398109518, -0.0128297014, 0.00365805533, 0.0342408121, 0.0338732377, -0.00927414186, 0.0130983125, 0.00575392647, -0.00307135284, 0.00279390602, 0.0211212933, 0.0192551557, 0.0164983589, 0.00267197075, 0.00258714636, -0.0171910934, 0.0141444802, -0.00953568425, -0.0185765587, -0.0159045886, -0.0220967755, -0.00682483567, -0.0159611385, -0.00290523819, 0.00619925512, -0.0162862986, -0.0157914888, 0.00359090255, -0.000190744613, -0.00955689, 7.8073308e-06, -0.0341842622, 0.0375772417, 0.00832693558, 0.0205982085, -0.0160459634, -0.0212768055, 0.0400371514, 0.0118542202, -0.0238356758, -0.00817142427, 0.0169224814, -0.0242597982, 0.0115502654, 0.0301975124, 0.0111473491, 0.00881467666, -0.0326856971, 0.00608969, 0.00249878759, 0.00351844844, 0.0129357316, -0.00159841112, 0.0233408678, 0.000574332371, -0.0141374115, -0.0206830334, 0.00836227927, -0.00430484209, -0.00951447804, -0.0318657272, -0.000661365804, 0.0092387991, -0.0225633085, 0.0259845629, 0.00708991196, 0.0162014738, -0.0179545134, -0.00520610204, -0.0119461128, -0.0161449239, -0.00758472132, -0.00325160474, -0.0212343931, 0.00664458377, 0.0172476433, -0.00598012516, 0.00855313428, -0.0121793803, 0.00935896672, 0.0668416843, -0.00725249248, 0.00607908703, -0.0713656545, 0.0135719152, -0.0132326176, 0.0159187261, 0.0164418109, 0.00293174572, -0.00851779059, 0.0122288615, -0.0146180838, 0.0102920355, 0.00790281314, 0.0136708776, 0.00670820195, 0.0303954352, -0.00649614073, 0.0201882236, -0.00927414186, 0.0010788613, 0.0179827884, 0.0399523266, 0.00908328686, 0.00669759884, 0.00429777335, -0.000574332371, 0.00684957625, -0.00960637163, 0.000301524502, 0.0025288295, 0.00482439203, 0.0141798239, -0.0143282665, 0.00781092, -0.0147877326, -0.0183644984, 0.0235387906, -0.00237508514, -0.00376055157, 0.0159328636, -0.015650114, -0.0270590056, -0.0171062686, 0.00647846889, -0.000271040684, -0.00221957359, 0.0442783758, -0.010143593, 0.0152542675, -0.010087043, 0.00979722664, 0.022167461, -0.0138122514, -0.00610736199, 0.0128155639, 0.00808659941, 0.0134022664, -0.0177000389, -0.00740093505, 0.0222381484, -0.0238074, 0.00644312566, -0.0274689905, 0.0127660828, -0.00589530077, -0.0172193684, -0.00962050911, 0.00712879, -0.0029458832, -0.0127943577, -0.0127802202, -0.000255357, 0.00366512407, -0.020258911, -0.00186790549, 0.00672940817, -0.015650114, 0.00413165847, 0.0780385137, -0.00146233849, 0.0143353352, -0.0234398283, -0.00790988188, -0.0103556542, 0.00143406377, -0.000248509197, -0.00208526826, -0.00749282818, -0.00258714636, -0.0182089861, 0.0318374522, -0.0178979635, -0.00974067673, 0.0173324663, 0.000442456803, -0.0183786359, -0.0122359302, 0.00571858324, -0.00438966649, 0.00731611066, 0.015975276, 0.0241891108, 0.027398305, 0.010497028, -0.0172052309, -0.0130488314, -0.0519974, 0.0104616852, 0.0246415082, -0.000797880173, 0.0140313813, -0.00101524289, -0.00387011655, 0.0021117758, 0.00471129268, -0.00073072745, -0.0367572717, 0.0155370161, 0.00532627, 0.0261542127, -0.017148681, 0.00747162197, -0.00880053919, -0.0199620258, -0.0169224814, -0.00609322451, -0.0148301451, -0.0017715944, -0.00109918381, -0.014886695, -0.0343821868, -0.00167970126, -0.0123490291, 0.0201882236, 0.00768368319, -0.00526618585, 0.0440239, -0.0209233705, -0.0163993984, 0.00103114743, 0.005057659, -0.0146887712, 0.00290523819, 0.00110890321, -0.0424405113, -0.0384254865, -0.00831986684, 0.00894191302, -0.031356778, 0.0122642051, 0.00865916442, -0.0122288615, -0.0128155639, 0.00935189798, -0.0270024575, -0.025546303, -0.0262673106, -0.0219978131, 0.00318621914, -0.000761211268, -0.0164842214, -0.00166556379, -0.00923173, -0.0291230679, -0.00681776693, 0.00849658437, -0.027511403, -0.0135860527, 0.00403623097, -0.0246273708, -0.0230298433, -0.0321767479, 0.00757058384, -0.00190148188, 0.0152542675, 0.0019315239, 0.00680362945, -0.0104263416, -0.0369269215, 0.000680804718, -0.00445328467, -0.00905501191, 0.0148442825, -0.00432604784, 0.000470952538, -0.0067258738, -0.0100658368, 0.00590943824, 0.0126529839, -0.00988205057, 0.0051530865, 0.0199196134, 0.0247970205, 0.0107232267, -0.00788160693, 0.0142151676, -0.00638657575, 0.0204144232, -0.00453457469, -0.0192127433, 0.0173466038, -0.0196227282, 0.00221250486, -0.0125186779, -0.00665165251, -0.00579280453, 0.0175162535, -0.00758472132, -0.0154521912, 0.0245708227, 0.010687883, -0.00291230693, -0.0422991365, -0.0146322213, -0.0183644984, -0.00350961252, -6.9196e-05, -0.000648112, 0.00454164343, 0.0200751256, -0.000808483222, -0.0234963782, 0.00327457814, -0.00217185984, 0.0159611385, -0.0127943577, 0.00882881414, 0.00921759289, -0.010822189, 0.00757765258, 0.0139748314, -0.0192127433, 0.0194248036, -0.0392737314, 0.00649260636, 0.00152330613, -0.020202361, 0.00835521054, 0.00461586518, 0.0044956971, 0.013685015, 0.0382558368, -0.0239063632, 0.00269671134, 0.0027196845, -0.0131336553, -0.0221815985, 0.0150563437, 0.0229308829, -0.00301657035, 0.0205982085, 0.00340004754, 0.0209799185, 0.00734438561, 0.0131760677, 0.0191137809, 0.0200327132, 0.00968412682, -0.0183079485, 0.0261683501, 0.00505412463, 0.0046865521, -0.0149573814, -0.0110059753, -0.0182655361, -0.0116280215, 0.014886695, 0.00917518, 0.00275679538, -0.00084603572, -0.00471836142, 0.00374994846, 0.0035007766, 0.0212202556, 0.00907621812, 0.00968412682, -0.0070015532, 0.00410691835, -0.00996687543, -0.0318091772, -0.00607908703, -0.0222240109, 0.0119531816, -0.00434371969, -0.0106666777, -0.0118966317, -0.0192975681, -0.0112180365, 0.00645726267, -0.00503291842, -0.00346013159, -0.0107232267, 0.0104475478, 0.0031491085, -0.0122995479, 0.018675521, 0.0100234253, -0.0249525327, 0.00538988831, 0.0124409227, 0.00706870575, -0.00715353061, -0.0169224814, -0.0251221806, 0.0229026079, 0.0382841118, -0.0181382988, 0.0165266339, -0.0172617808, 0.0337035917, 0.022577446, 0.0265924726, -0.000396731135, -0.00243693637, 0.014095, -0.0264935102, -0.0455224663, 0.0201882236, 0.0206830334, 0.016766971, -0.0275820903, 0.0180252, 0.0290947929, 8.653642e-05, 0.002624257, 0.0181241613, -0.0233832784, 0.0151128937, 0.00632295758, -0.0236801654, 0.0345235616, -0.0162156112, 0.00549238455, 0.00689198822, 0.00150033284, -0.0143211987, -0.00338060851, -0.00293528, 0.0174314287, 0.0350890569, 0.0037570172, -0.00670113321, 0.00259598228, 0.00455931528, 0.00327811227, -0.0110342503, 0.000561520341, -0.0106949518, -0.00737266, 0.00791695062, -0.00857434049, -0.000845593924, -0.0160742365, -0.021785751, 0.00870864559, 0.0115926778, -0.00283455104, -0.00454871217, -0.0164842214, 0.0309609324, 0.00788160693, -0.00504705589, 0.00163287111, 0.0107020205, 0.0171628185, 0.00839762297, -0.00490921643, -0.0248818453, 0.0095074093, 0.00334349787, -0.0241042878, -0.00965585187, 0.00878640171, 0.0115714716, 0.0195661783, 0.00307135284, -0.0169366188, 0.0221391879, -0.0123136854, 0.00415639905, -0.0155370161, -0.00226021884, 0.0189299937, -0.0143636102, -0.00449923147, -0.0284868851, 0.0227612332, -0.000282085559, -0.00414933031, -0.0188593082, 0.000822178845, 0.00864502694, -0.0103839291, 4.90667589e-05, 0.00788160693, -0.0299147628, 0.0115149217, 0.00819969922, -0.018322086, 0.0100234253, -0.0114442352, -0.00706163701, -0.00757765258, -0.0145473965, 0.00703336252, -0.0134022664, -0.00841882918, -0.0308761075, 0.00447095651, -0.000242765876, -0.00693440065, 0.000596422062, 0.000916281, 0.0182513986, -0.00656329328, -0.0222098734, 0.015678389, 0.00518489582, -0.0217433386, -0.00776143931, -0.00949327182, 0.00508239958, -0.0249525327, -0.00334526505, 0.0168235209, 0.0591509305, -0.0085389968, 0.0324029475, -0.0260693878, -0.0288261827, -0.0227046832, 0.0107656391, 0.0245708227, -0.00227789045, 0.0239487756, -0.0132538239, -0.010850464, -0.0115714716, -0.0222522859, 0.00293351291, 0.00783212576, -0.00885001943, 0.0138900075, -0.00674708, 0.00481025456, 0.00303777633, 0.0301126875, 0.0278365649, -0.00909742434, -0.0104192728, 0.00321449409, -0.00828452315, 0.0112816542, -0.0130346939, 0.0037570172, -0.00837641675, -0.00566203333, -0.0248959828, 0.00155688252, -0.0252352804, -0.0276527777, 0.0116987079, -0.0118259452, 0.00154981378, -0.022167461, 0.00994566921, -0.00707930885, 0.0123136854, -0.0384254865, 0.00446388777, 0.0441935509, -0.00544997212, 0.0117835328, 0.0357393771, -0.0066304463, -0.00478551397, 0.013932419, -0.0315264277, 0.0215171408, 0.0239205, 0.00572211761, 0.00720654568, -0.00238745543, 0.0257866401, -0.00856727175, -0.038934432, 0.0187179334, -0.00960637163, 0.0199196134, 0.00226552016, -0.0114583727, -0.0350890569, 0.00948620308, 0.0196934156, 0.0037570172, 0.0204002857, 0.00583521696, 0.013578984, -0.0204568356, -0.00632649194, -0.0363048725, -0.0195379034, -0.00109741662, 0.00241749734, 0.0207254458, -0.0101930741, 0.00346189877, -0.00690259133, 0.0160742365, 0.00273558917, -0.0221815985, -0.0121652428, 0.0191844683, 0.00735145435, -0.0068601789, -0.0136072589, -0.00868743937, 0.00264546322, -0.0043154452, 0.000483322772, -0.0121228304, -0.00224254699, -0.00566910207, 0.000177048991, 0.0332511924, 0.00676475139, -0.0124197165, 0.0186896585, 0.0192692932, 0.0172900539, 0.00617451454, -0.0200044382, -0.00115926773, 0.0143494727, 0.00739386631, 0.00701569067, 0.00805125572, 0.000540314184, -0.00100640696, -0.000735145411, 7.04109407e-05, 0.00332936039, 0.00398675026, 0.00102761318, 0.0168235209, -0.0145191224, -0.0101860054, 0.0190713685, 0.0186048336, -0.000222332892, 0.005425232, 0.00639011, -0.0145615339, -0.0147311836, -0.0220967755, -0.00741507253, -0.00926707312, 0.0135719152, -0.0215878282, 0.00455578091, 0.000516899105, 0.00217539421, 0.0139182825, 0.0516863763, -0.00707224, 0.0161873363, 0.00816435553, 0.0173041914, 0.00185553532, -0.0226339959, -0.00742214127, 0.00973360799, 0.00391606288, -0.00917518, -0.0192834307, -0.000638392521, -0.00748575944, -0.0174738411, 0.00476077339, -0.00674354564, -0.00980429538, 0.00836934801, 0.0169790313, 0.00286459317, 0.0187744834, 0.0137274265, 0.0314416029, 0.0200185757, 0.00711111818, -0.0113876853, -0.0328836218, -0.00958516542, -0.00200927956, 0.00326044066, -0.00687431637, 0.00341948657, 0.0130488314, 0.00584228523, -0.0126317777, -0.021290943, 0.0181524362, -0.0127095329, 0.00483499467, 0.0104546165, 0.0119178379, 0.0172335058, -0.00294411601, -0.0261259377, 0.00356086064, 0.00557014, -0.0116987079, -0.0183644984, -0.00651027821, 0.0100092879, 0.0102566928, 0.0115502654, 0.00235564634, -0.00762006501, -0.00414579595, -0.0045063, -0.0367855467, 0.0177707262, -0.0115502654, -0.00314027257, 0.00943672284, -0.0178131387, -0.00344776129, 0.00534747588, 0.00305544818, -0.000282969122, -0.00729490444, 0.0105818529, -0.000517340901, 0.00255710445, 0.0181524362, 0.00367572717, 0.00889950059, 0.00836227927, -0.000631323783, -0.0119319754, -0.012787289, -0.0158480387, 0.00636183517, 0.00376055157, 0.00340711628, 0.000146565202, -0.00948620308, 0.00573978946, 0.00555600272, 0.00157897221, 0.0115997465, 0.0287837703, 0.00451690331, 0.00749989692, -0.00542876637, 0.011613884, -0.00733731687, -0.0136355339, 0.00238392106, 0.0216302406, -0.00316147879, 0.000857080624, 0.0204426982, 0.00377115468, 0.026337998, 0.0230298433, -0.0105040967, 0.00993860047, -0.00187674141, -0.0121440366, -0.0104828905, -0.00602253759, -0.0213616285, 0.00191031781, -0.0245425478, -0.00438613212, -0.0252352804, -0.0116845705, -0.011451304, -0.0205557961, 0.0118895629, -0.00335056661, -0.0119037, -0.0110837305, 0.00589530077, 0.00218953169, -0.0411398672, -0.0280203503, -0.0245708227, -0.00138988427, -0.00811487436, -0.00564436149, -0.0112251053, -0.00520256767, -0.0281334501, 0.0139819, 0.0082138367, -0.0104616852, 0.000979899312, 0.0088641569, -0.00254826853, -0.00755644683, 0.0304519851, 0.00202341704, -0.0337601379, -0.0102142803, -0.0139960377, 0.0115431966, -0.0136567401, 0.00282218074, -0.00351844844, 0.00664811814, 0.00995980669, 0.0208950955, 0.00211884454, -0.0133951977, -0.0134164039, -0.00291053974, 0.0185624212, 0.00435785716, 0.0115078529, -0.00120256364, -0.0227188207, 0.00758472132, -0.0128579764, -0.0276245028, -0.0203437358, 0.0109989066, 0.0157490764, 0.00120521442, 0.029745115, -0.00378175778, 0.0269317701, -0.0223371107, -0.00534747588, 0.0127095329, -0.00512834638, -0.00156925269, 0.000276784, 0.00911863055, -0.00865916442, 0.0246839207, 0.0349194072, -0.00581047637, 0.0222522859, 0.00271438318, 0.0020587605, -0.020994056, 0.00358206662, -0.0285999849, -0.0211071558, 0.00991032552, 0.0137062212, -0.00949327182, 0.0231005307, -0.0150704812, 0.0151553052, 0.025574578, -0.00907621812, -0.00269317697, 0.0153815039, -0.0126388464, -0.00166114594, -0.00599426264, 0.00356086064, -0.0229167454, 0.0214181785, 0.0202447735, 0.00806539319, -0.0141727552, -0.0102284178, 0.00173006579, -0.00241219602, 0.00810073689, -0.00036359657, -0.00667639263, -0.0191986058, 0.0203013234, 0.0200185757, -0.014066725, 0.00400088774, -0.0108292578, -0.00801591296, -0.0182655361, -0.00394433783, 0.0109352879, -0.00959223416, -0.00176717644, 0.011995594, -0.00999515, 0.00721008, 0.00319858943, 0.00179721846, -0.00882881414, -0.00540756, 0.024754608, 0.0130205564, 0.0110766618, 0.00154539582, 0.00654208753, 0.0133245103, 0.0163145736, -0.0184634607, -0.000102275342, -0.0198772009, -0.0284303352, -0.00211707735, -0.00885001943, -0.0233974159, 0.0113735478, -0.00582107948, -0.0123914415, -1.50624182e-05, 0.00686371326, 0.00708284322, -0.00228319201, -0.00775437057, -0.00827038568, 0.0165973213, -0.0254473407, -0.0165124964, -0.00681069819, -0.0222240109, -0.000652088143, 0.0286848079, -0.00428363588, 0.0102142803, 0.0255887154, 0.0166397337, 0.00176982721, -0.00834107306, 0.00722775189, 0.0254332032, 0.00334173068, -0.00798056927, 0.0211071558, -0.00637243828, -0.00555246836, 0.00969119556, 0.0179262385, -0.010659609, -0.00692379754, 0.0100587681, -0.0268752202, -0.0242456608, -0.0123843728, -0.013960694, 0.0131477928, 0.00742921, -0.017912101, 0.0223795231, 0.000605257927, -0.0164559484, 0.0106101278, -0.0132820988, -0.0284586102, -0.000919815386, -0.00927414186, 0.00702275941, -0.00641838508, -0.0123348916, 0.00909742434, -0.022874333, 0.00676121702, 0.0048314603, -0.00224077981, 0.0187320709, 0.0169224814, -0.00813608058, 0.0159894135, -0.000196487934, 0.005806942, 0.00781092, 0.012568159, -0.00862382166, 0.00884295069, 0.0112675177, 0.00469008647, 0.00566910207, -0.0294906404, -0.0172052309, -0.00881467666, 0.00781092, -0.00141639193, 0.00807953067, -0.00631235447, 0.00103203102, -0.00415639905, 0.00251999358, -0.00660924, -0.0093731042, -0.00989618804, 0.00660570571, -0.0135860527, -0.0125752278, -0.00710758381, 0.0195096284, -0.0136001902, 0.00155423174, 0.0128579764, 0.0100587681, -0.0133457165, 0.00112304068, -0.00809366815, 0.00830572937, -0.0162438862, 0.011642159, -0.0139960377, -0.0158621762, -0.000589795178, -0.0136567401, -0.0174172912, -0.0215171408, 0.0109918378, 0.0171062686, -0.0105111655, -0.0124338539, -0.00177689595, 0.0230581183, -0.000676386815, -0.00288579916, -0.0186896585, 0.0251080431, -0.00597659079, -0.0195237659, 0.0209233705, 0.0143918851, 0.00572565198, 0.0104263416, 0.00593064446, -0.00892070681, -0.000296664744, 0.0158056263, 0.0132114114, 0.000782417366, 0.00191561936, -0.0333925672, 0.0134658851, -0.013685015, -0.00916104298, 0.0185765587, 0.0070969807, 0.00228142482, 0.0217716135, -0.0015021, -0.0149291074, -0.0251080431, 0.0182231236, 0.0146463588, -0.0198913384, -0.0282889605, -0.0097901579, -0.00305898255, 0.011613884, 0.000673294242, -0.0209375061, -0.0310174823, -0.0109706316, 0.0178696886, 0.00836934801, 0.0164559484, -0.00931655429, 0.0029688566, 0.00556307146, 0.00179721846, 0.00771195814, 0.027511403, -0.00184846658, -0.00798056927, 0.0138829388, 0.00572211761, -0.00668699574, 0.0179969259, 0.0109847691, 0.0134376101, 0.000190192368, -0.0160742365, -0.00128297007, 0.00555246836, -0.0182231236, -0.00611796509, -0.000277446699, 0.00117517239, 0.00763420248, 0.0137627702, 0.00283278385, 0.000747957441, 0.010087043, 0.00911863055, 0.0113311354, -0.00238392106, 0.0060826214, -0.0118259452, 0.0106525403, -0.00589530077, -0.0204709731, -0.00473249843, 0.00587409455, 0.0285292976, 0.00257477607, 0.00442854408, -0.00827745441, 0.0264652353, 0.0188310333, 0.010497028, 0.00187674141, 0.0129357316, 0.00987498183, 0.012186449, -0.00246167695, 0.0167952459, 0.00906208064, -0.00676828576, 0.0104122041, 0.0103768604, -0.0203578733, 0.0301126875, -0.0229591578, -0.0227753706, 0.0126812588, 0.00771195814, 0.00380649813, 0.0170779936, -0.0106737455, 0.0103980666, -0.0122429989, -0.0229591578, 0.023609478, 0.0208809581, -0.00713232439, 0.00267550512, -0.00458405586, -0.0103132417, -0.00797350053, 0.0177000389, 0.00262602419, 0.014342404, -0.000571239798, -0.0153108174, -0.00141285756, -0.0128155639, 0.00491981953, 0.0154097788, -0.02742658, -0.00532980449, 0.0163428485, -0.00735145435, 0.00823504198, -0.0253766552, -0.0100375628, 0.00172564783, -0.0143141299, 0.0194106661, -0.013960694, -0.010631334, -0.019438941, -0.00485620089, -0.0120662814, 0.00974774547, 0.019820651, -0.00679656072, 0.000540314184, -0.00204992481, 0.00209056982, -0.0200327132, 0.00476430776, -0.00296532223, -0.00363684911, 0.00701569067, -0.00508593395, -0.000626905879, 0.0108575327, -0.00385597907, -0.0173183288, 0.015975276, 0.00123348914, 0.037351042, 0.00710404944, 0.0230581183, -0.00444268156, 0.00425889529, 0.0149291074, 0.0217998885, -0.0157490764, -0.0051530865, 0.0242456608, 0.00619218638, -0.00382770435, 0.0208526831, 0.00231323391, -0.00211531017, -0.00338767725, 0.0264652353, -0.00426242966, 0.00425536092, 0.0252494179, 0.0331946425, 0.000683897291, -0.00572565198, 0.0112109678, 0.030508535, 0.00464413967, -0.0108363265, -0.00605081208, -0.00103909976, 0.00244930666, 0.0119390441, -0.0345801078, -0.00294941757, 0.00287519605, -0.0105111655, -0.00777557632, -0.0161873363, -9.16170538e-05, 0.0121793803, 0.00388778816, -0.00614624, 0.00367926154, 0.00259068073, 0.0173466038, -0.0216019657, -0.00668346137, -0.0087651955, 0.014342404, -0.00199337513, -0.00394080346, -0.00846830942, -0.000330462, -0.0182513986, -0.0101294555, 0.00889950059, -0.00129268959, 0.0149149699, 0.0165266339, 0.00180958875, -0.000221007504, -0.00262602419, 0.00284338696, -0.00406450592, -0.042610161, -0.0117693953, 9.66976877e-05, 0.0205133855, -0.00732317939, -0.00602960633, -0.00466888025, -0.0130064189, 0.0238922257, 0.0137203578, -0.00265783351, -0.00161961722, 0.00533687277, -0.00747162197, 0.0147735951, -0.00660217134, 0.0293775424, -0.00207289797, 0.0142434426, 0.00575392647, -0.00349370786, 0.0243870355, -0.01349416, 0.0156642515, 6.1264418e-06, 0.00796643179, 0.0149291074, 0.0331946425, -0.000115860508, -0.0196368657, 0.0130346939, -0.0163711235, -0.0212626681, -0.0115573341, 0.00598365953, 0.0170214437, 0.0337035917, 0.00711111818, -0.0251787305, -0.00233090576, -0.0239629131, 0.00358736818, -0.0002214493, 0.0212485306, 0.0158339012, 0.00495162839, 0.02895342, 0.0122642051, -0.0170921311, 0.0187320709, 0.0110342503, 0.00200221105, 0.00229202793, -0.00730904192, 0.00591650698, 0.0195379034, 0.0031261351, -0.0196651407, -0.000112491827, -0.0197075531, -0.00458052149, 0.0174314287, -0.0135648465, 0.00231676828, -0.016766971, -0.0320071019, -0.016088374, -0.00614977395, 0.0294058174, -0.0149008324, -0.0110625252, -0.00396554405, 0.033477392, 0.0171345435, -0.00211354299, 0.0110271815, -0.0186613835, -0.00976188295, -0.00806539319, 0.0270024575, 0.00497636897, 0.00829159189, 0.00857434049, 0.0128721138, 0.00336116971, 0.0154804662, 0.00680009509, -0.0170355812, -0.00862382166, 0.0173890162, 0.02819, -0.0121511053, -0.0230722558, 0.0065844995, 0.00383477309, -0.0168376584, 0.00560548389, 0.0196510032, 0.016088374, -0.0145898089, 0.00734438561, 0.0125752278, 0.0261542127, 0.0142434426, 0.0111544179, 0.00778264506, -0.00329401693, -0.0222381484, -1.00232037e-05, 0.0154946037, -0.00286282599, 0.00759179, 0.0290947929, -0.0134729538, -0.00207113079, 0.0147735951, 0.000374862313, 0.0111332117, 0.00480672, -0.00129268959, 0.000439143361, -0.00424829219, -0.0062133926, -0.00976188295, -0.00987498183, -0.00595185, -0.00186613842, -0.0143777477, -0.00525558274, 0.00300950161, -0.00783212576, 0.00354495598, 0.0151977176, 0.00722775189, -0.0106454715, 0.00890656933, -0.00561255263, 0.0251363181, -0.012568159, -0.00962757785, -0.0103980666, 0.0262248982, 0.0190713685, -0.00838348549, -0.00172564783, -0.00438613212, 0.0133174416, -0.0253201053, -0.0126671214, 0.00541109452, -0.00543936901, 0.0070581031, 0.0225491729, -0.00559841515, -0.00810780562, 0.0290665179, -0.00640071323, -0.00224784855, -0.0109282192, 0.0119037, -0.0199337509, 0.0122995479, -0.0163287111, -0.0365027972, 0.00300950161, -0.00957102794, -0.0226622708, -0.00831279811, 0.0130276252, -0.00283985259, 0.00299713132, -0.00988205057, -0.0160176884, -0.0265076477, 0.00173183298, 0.022167461, 0.00863089, 0.0081219431, 0.00428717025, -0.0201882236, 0.0255887154, -0.013331579, 0.0119885253, -0.0115149217, -0.00457698712, 0.00372167374, 0.0181241613, 0.017120406, -0.0124904038, -0.00229202793, -0.003244536, -0.000555335195, 0.00483852904, 0.00904794317, -0.00649260636, 0.0176717658, 0.010334448, 0.00425536092, -0.00721714878, -0.00846124068, -0.0222381484, 0.00469362084, -0.010306173, 0.00607555266, -0.000811134, -0.0134517476, -0.00974067673, -0.00566203333, 0.0035308185, -0.00324100163, -0.00173094939, 0.0252494179, -0.00836934801, 0.0128297014, 0.0038948569, 0.0133527853, -0.00512127765, -0.0217716135, 0.0145191224, 0.00711818691, 0.0154239163, 0.0165549088, -0.00368279591, 0.0344104618, -0.000793020474, -0.00455931528, 0.0113806166, 0.013578984, -0.0337318666, 0.0129640065, 0.0142434426, -0.0100799743, 0.0194530785, -0.0108928755, -0.021700928, 0.0377751663, 0.0040892465, -0.00526618585, 0.000925116881, -0.0162862986, 0.00332936039, -0.0117411204, -0.00463353656, 0.00775437057, -0.0104546165, -0.00774730183, 0.0121016242, -0.00807953067, 0.0127307391, 0.00573272072, 0.019467216, 0.00379236066, 0.0103909979, -0.0145473965, 0.0119390441, -0.00203048578, 0.00793815684, -0.0144625725, -0.0100799743, 0.00162845314, 0.00240512728, -0.00563375885, -0.000561962137, 0.0279072504, -0.0312719569, 0.00135365722, 0.00362271187, -0.0091469055, -0.0038524447, 0.0137910452, 0.00653501879, 0.0151694426, 0.00214181794, -0.00458405586, -0.0110837305, 0.00752817187, 0.0127731515, 0.0309043825, 0.00220366917, -0.00266843638, -0.00396554405, -0.0147453202, -0.0370400175, 0.0102637606, 0.0206830334, 0.0064996751, 0.00544997212, 0.0292927176, 0.0191986058, 0.000827038602, -0.00114336319, 0.0283030979, -0.00355732627, -0.0130771063, 0.00855313428, 0.0031367382, -0.016766971, 0.017940376, -0.0100163566, -0.00254296698, 0.0288685951, -0.0101647992, 0.00661984319, -0.0213616285, -0.0227046832, -0.00129445677, 0.0111544179, 0.0195803158, -1.93975229e-05, 0.0146322213, -0.010525303, -0.0222240109, 0.00705103436, -0.0038948569, -0.000728076731, 0.0128933201, -0.00010630671, 0.0148301451, 0.00632295758, 0.0109777, 0.00479611708, -0.0158339012, -0.005057659, 0.000139606942, 0.00535807898, 0.00309962756, 0.00242633326, 0.0164135359, -0.000802298135, -0.0126459152, -0.0628832057, 0.00831279811, 0.0393868312, 0.0253907926, 0.0206830334, 0.0448438711, -0.00273735635, -0.0233550053, 0.0041281241, -0.0173748787, -0.00198807358, 0.0226764083, -0.0192410182, 0.00426242966, 0.00864502694, 0.00303070759, 0.018293811, -0.0100799743, 0.0411681421, -0.00764834, 0.000861940323, -0.0197641011, 0.0213050805, 0.0100234253, 0.00730197318, -0.00171151047, -0.0109918378, 0.012186449, -0.0080229817, -0.00675768266, 0.000941905077, 0.0222805608, 0.0318374522, -0.0172335058, -0.00148707896, -0.00506826211, -0.0155370161, -0.0180110633, 0.00317561603, -0.0308478326, 0.00110890321, -0.0087298518, -0.0264228228, -0.0296320152, 0.00417760527, 0.0175586659, 0.019467216, -0.000610117684, 0.0126388464, 0.0303388853, -0.0115502654, 0.0203720108, -0.017502116, -0.017530391, -0.000432737346, -0.00365452096, 0.00230793259, -0.0101082493, 0.00602607196, -0.0104334103, -0.0123207541, -0.0148725575, -0.0019209208, 0.00602607196, -0.00420588, 0.0044497503, -0.00785333198, 0.00212944765, 0.00850365311, 0.0110342503, 0.0173890162, -0.00350254378, -0.00303247478, -0.00506472774, -0.00705103436, -0.00606848393, -0.0197782386, -0.0110766618, -0.00806539319, -0.0231005307, 0.0108433953, -0.00300773443, 0.0092812106, -0.00277800136, -0.00632649194, -0.0137981139, -0.0124974716, 0.0218423, -0.00976895168, 0.0211071558, 0.0295754652, -0.0169790313, 0.0082562482, 0.011423029, -0.0169507563, -0.0085389968, 0.00299359695, -0.0170638561, -0.00976188295, 0.00869450811, 0.0307347327, 0.0369551964, 0.0145756714, -0.0249101203, 0.0160176884, -0.0128155639, -0.00973360799, 0.0213474911, -0.0210506059, 0.0334208421, 0.00383477309, -0.0107232267, -0.00745748496, -0.00970533304, 0.0292927176, 0.0205416586, -0.0019315239, 0.00476784213, -0.0230157059, 0.00970533304, 0.000689198845, -0.0248959828, -0.0024758142, -0.00596598769, 0.00347426906, 0.0133669227, 0.000704219856, -0.0015021, -0.0333077423, 0.000303954352, 0.0108363265, 0.0131053813, -0.00386658218, -0.012568159, 0.005616087, -0.0223936606, 0.0012582296, 0.00305898255, -0.0101082493, -0.00295295194, -0.0086733019, 0.00846830942, 0.00848951563, -0.0147735951, -0.0188593082, 0.00104793569, -0.0171910934, -0.00138016487, -0.00388071965, 0.00270908163, 0.00242456608, 0.00505412463, -0.0177283138, 0.0114937155, 0.00888536312, -0.000469185354, 0.00633709505, 0.0124338539, 0.0246839207, -0.0173324663, 0.00382063561, 0.0108433953, -0.0106737455, 0.00875812676, 0.0116775027, -0.00168058486, -0.00606494956, -0.00737972884, -0.0125116091, -0.0184069108, 0.011232174, 0.0101011805, -0.0106030591, 0.00423768908, 0.00955689, 0.00280450913, -0.0151835801, -0.0183786359, 0.00491628516, 0.0274407156, 0.00798056927, 0.0194248036, -0.0014093233, 0.0111473491, 0.00862382166, -0.0145191224, 0.0204709731, -0.000307930517, -0.00133686897, -0.000887564383, 0.0126388464, 0.00719594257, 0.00381710124, -0.00778264506, 0.0175869409, 0.00453810906, 0.000425668637, 0.00465474278, -0.0119037, -0.00425536092, -0.00754937809, 0.00429777335, 0.00945792813, 0.00761299627, -0.00351491407, 0.00196863455, 0.00754230935, 0.0165690463, 0.0168659333, -0.0236518905, -0.0192127433, -0.000131544206, 0.00736559182, -0.0119461128, 0.000253368926, -0.0147453202, -0.0281334501, 0.0177848637, 0.00718180509, 0.0101789366, 0.02660661, 0.00795936305, 0.0203295983, 0.00294411601, 0.0239205, 0.0108646015, 0.0176293533, 0.00604020944, -0.0331663676, 0.00775437057, -0.0162297487, 0.00832693558, 0.0189017188, -0.00860261545, -0.0189865436, 0.00368986442, -0.0146039464, 0.0114583727, -0.00551712513, -0.000886239, -0.00193505827, 0.0263945479, -0.0244294479, 0.0113523416, 0.00947913434, 0.0256311279, 0.0409702212, 0.000784184551, -0.00906208064, -0.00721361442, -0.0170355812, -0.00666932389, 0.00114866474, 0.0113876853, 0.0170214437, -0.0215878282, -0.00201988267, 0.0200044382, 0.00766247744, 0.0203861482, -0.0237932634, -0.0070121563, 0.0105959903, 0.0121793803, 0.00176540925, -0.013685015, -0.00577513268, 0.00827745441, 0.0128509076, -0.00839055423, 0.00289993663, -0.0283879228, -0.0170779936, -0.000817760942, -0.0135436403, 0.000989618828, -0.0148725575, 0.000963111175, -0.0156642515, 5.62735258e-05, -0.0112957917, -0.0100375628, 0.00200044387, 0.0215878282, -0.0119461128, -0.00465474278, -0.0223653857, -0.0221533235, 0.00829866063, 0.0262531731, 0.0286706705, -0.0124974716, -0.0082138367, -0.0117481891, -0.0475865267, -0.00277800136, 0.0245284103, 0.000164678757, 0.00989618804, -0.0270307306, 0.00809366815, -0.0222664233, 0.0098891193, 0.0156642515, -0.0177283138, -0.0162438862, 0.000218908986, -0.0318657272, -0.000940137892, -0.00628761388, -0.0250090808, 0.0157490764, -0.00558427768, -0.00744334748, -0.00347250188, -0.011013044, -0.0126035027, -0.019057231, 0.00869450811, -0.00629114825, 0.00208880263, 0.027511403, 0.0164842214, -0.00962050911, 0.00441440707, 0.000926884066, 0.0218423, 0.0140172439, 0.00391252851, -0.017148681, 0.00963464659, 0.00337530719, 0.00292821135, 0.0124691976, -0.0019969095, 0.0143282665, -0.00889950059, -0.0205840711, 0.00135542441, -0.017148681, 0.00423768908, 0.00453810906, -0.00638304139, -0.0133739915, -0.00413165847, -0.00916104298, -0.0168942064, -0.0146463588, 0.00961344, -0.0083481418, -0.0254473407, 0.0161166489, -0.00625227, 0.00566203333, 0.0209375061, -0.0148442825, -0.0238356758, 0.00333112758, 0.0360786766, 0.00218069577, 0.0190148186, -0.00708991196, -0.00897725672, -0.00508946832, -0.00120256364, -0.00594124757, -0.00348840631, -0.0197075531, -0.013359854, -0.00216302392, 0.012568159, -0.000258007756, 0.0199054759, 0.0692167655, 0.026309723, 0.0154097788, -0.0387365073, 0.0239063632, -0.0151270311, -0.034297362, 0.0364462472, -0.0111685554, 0.00321626128, -0.000680804718, 0.00189618033, -0.00756351557, -0.00551712513, -0.00621692697, 0.00959223416, 0.00261542131, -0.0050187814, 0.0129428, -0.00621692697, -0.0192551557, -0.00887122564, 0.00372167374, -0.00805125572, 0.00756351557, -0.0244294479, 0.000447758328, 0.00451690331, -0.0139394877, 0.0229874309, -0.0109352879, -0.00187674141, 0.00651734695, -0.000280539272, -0.0204851106, 0.0113876853, 0.0115997465, 0.00759179, -8.24498275e-05, -0.0150987562, -0.00502585, 0.020640621, 0.00963464659, 0.0142080989, 0.00204815762, -0.00335940253, -0.0107515017, 0.0180252, -0.0100163566, 0.00926707312, -0.00569737703, -0.00841176, 0.0100304941, -0.00976188295, 0.0111402804, -0.011203899, 0.00969119556, 0.00207819953, 0.0062133926, 0.0109352879, 0.00493042218, 0.00735145435, 0.00759179, 0.0105959903, 0.00298299384, -0.00672940817, 6.51646333e-05, 0.0132043427, 0.0156925265, -0.00294058165, -0.00628761388, -0.00401502475, 0.019848926, 0.00856020302, -0.00698034698, 0.010850464, 0.0117552578, 0.00815021805, -0.0205275211, -0.0159611385, 0.00183963077, 0.00404683407, -0.0131760677, -0.00785333198, 0.00361741032, 0.000902143598, -0.00141462474, -0.022846058, -0.0210506059, 0.0199761633, 0.0041740709, 0.0018785086, -0.0265217852, 0.0149573814, 0.00285752444, 0.00832693558, -0.0233974159, -0.00127943582, 0.00415639905, -0.0154804662, 0.0166821461, 0.00488801, -0.00745041622, 0.00501171267, 0.00101170852, 0.00924586691, 0.00250585633, 0.00584935397, 0.0270590056, 0.000826155, 0.0211637057, -0.0183079485, 0.0120945554, 0.0362200476, -0.00625933893, 0.00857434049, 0.00169207144, -0.00092865125, -0.00224784855, -0.00965585187, 0.0332229175, -0.000286282593, -0.00110625243, 0.00197216892, -0.0128438389, 0.00519196456, 0.00786040071, -0.00725249248, 0.00448862836, -0.0142999925, 0.00815021805, -0.022846058, 0.0175869409, -0.0100587681, 0.0165549088, -0.00430130772, -0.0216443781, -0.0196085908, -0.00813608058, 0.00386304781, 0.000717473682, 0.0154097788, 0.00419881148, 0.016356986, 0.0142363738, 0.00784626324, 0.00649260636, 0.0033929788, 0.0302823354, 0.00166291313, -0.0308761075, 0.00328518101, 0.0077048894, -0.00341418502, -0.0040892465, 0.0021577226, -0.00680009509, -0.017530391, 0.0272427928, -0.00366512407, -0.00358029967, 0.0138617326, 0.0127095329, 0.00662337756, -0.0109777, -0.0268186703, -0.00702629378, 0.016766971, 0.00885001943, 0.0105111655, 0.0248394329, -0.0109564941, -0.00794522557, 0.0111968303, -0.000316766382, -0.0174031537, 0.00017130567, 0.0104758218, -0.00424475782, -0.00142346066, -0.0157208014, -0.00421648333, -0.00667285826, 0.0344952866, -0.0118259452, -0.0246839207, 0.00209587137, 0.001622268, 0.036615897, 0.00475370465, -0.0168659333, -0.0111120054, -0.0172759164, -0.0130488314, -0.00991739426, -0.00317561603, -0.000558869564, 0.00987498183, -0.0032021238, 0.00909742434, -0.000765187433, 0.00838348549, 0.00175834063, -0.00333819631, -0.00287519605, 0.0394716524, 0.0110059753, -0.00517429272, 0.00663398067, -0.0216019657, -0.00469362084] |
04 Mar, 2025 | Longest Common Subsequence (LCS)
04 Mar, 2025
Try it on GfG Practice
Given two strings, s1 and s2, the task is to find the length of the Longest Common Subsequence. If there is no common subsequence, return 0. A subsequence is a string generated from the original string by deleting 0 or more characters, without changing the relative order of the remaining characters.
For example, subsequences of “ABC” are “”, “A”, “B”, “C”, “AB”, “AC”, “BC” and “ABC”. In general, a string of length n has 2n subsequences.
Examples:
Input: s1 = “ABC”, s2 = “ACD”Output: 2Explanation: The longest subsequence which is present in both strings is “AC”.
Input: s1 = “AGGTAB”, s2 = “GXTXAYB”Output: 4Explanation: The longest common subsequence is “GTAB”.
Input: s1 = “ABC”, s2 = “CBA”Output: 1Explanation: There are three longest common subsequences of length 1, “A”, “B” and “C”.
Table of Content
[Naive Approach] Using Recursion – O(2 ^ min(m, n)) Time and O(min(m, n)) Space[Better Approach] Using Memoization – O(m * n) Time and O(m * n) Space[Expected Approach 1] Using Bottom-Up DP (Tabulation) – O(m * n) Time and O(m * n) Space[Expected Approach 2] Using Bottom-Up DP (Space-Optimization):Applications of LCSProblems based on LCS[Naive Approach] Using Recursion – O(2 ^ min(m, n)) Time and O(min(m, n)) SpaceThe idea is to compare the last characters of s1 and s2. While comparing the strings s1 and s2 two cases arise:
Match : Make the recursion call for the remaining strings (strings of lengths m-1 and n-1) and add 1 to result.Do not Match : Make two recursive calls. First for lengths m-1 and n, and second for m and n-1. Take the maximum of two results. Base case : If any of the strings become empty, we return 0.
For example, consider the input strings s1 = “ABX” and s2 = “ACX”.
LCS(“ABX”, “ACX”) = 1 + LCS(“AB”, “AC”) [Last Characters Match]
LCS(“AB”, “AC”) = max( LCS(“A”, “AC”) , LCS(“AB”, “A”) ) [Last Characters Do Not Match]
LCS(“A”, “AC”) = max( LCS(“”, “AC”) , LCS(“A”, “A”) ) = max(0, 1 + LCS(“”, “”)) = 1
LCS(“AB”, “A”) = max( LCS(“A”, “A”) , LCS(“AB”, “”) ) = max( 1 + LCS(“”, “”, 0)) = 1
So overall result is 1 + 1 = 2
C++
// A Naive recursive implementation of LCS problem
#include <bits/stdc++.h>
using namespace std;
// Returns length of LCS for s1[0..m-1], s2[0..n-1]
int lcsRec(string &s1, string &s2,int m,int n) {
// Base case: If either string is empty, the length of LCS is 0
if (m == 0 || n == 0)
return 0;
// If the last characters of both substrings match
if (s1[m - 1] == s2[n - 1])
// Include this character in LCS and recur for remaining substrings
return 1 + lcsRec(s1, s2, m - 1, n - 1);
else
// If the last characters do not match
// Recur for two cases:
// 1. Exclude the last character of s1
// 2. Exclude the last character of s2
// Take the maximum of these two recursive calls
return max(lcsRec(s1, s2, m, n - 1), lcsRec(s1, s2, m - 1, n));
}
int lcs(string &s1,string &s2){
int m = s1.size(), n = s2.size();
return lcsRec(s1,s2,m,n);
}
int main() {
string s1 = "AGGTAB";
string s2 = "GXTXAYB";
int m = s1.size();
int n = s2.size();
cout << lcs(s1, s2) << endl;
return 0;
}
C
// A Naive recursive implementation of LCS problem
#include <stdio.h>
#include <string.h>
int max(int x, int y) {
return x > y ? x : y;
}
// Returns length of LCS for s1[0..m-1], s2[0..n-1]
int lcsRec(char s1[], char s2[], int m, int n) {
// Base case: If either string is empty, the length of LCS is 0
if (m == 0 || n == 0)
return 0;
// If the last characters of both substrings match
if (s1[m - 1] == s2[n - 1])
// Include this character in LCS and recur for remaining substrings
return 1 + lcsRec(s1, s2, m - 1, n - 1);
else
// If the last characters do not match
// Recur for two cases:
// 1. Exclude the last character of S1
// 2. Exclude the last character of S2
// Take the maximum of these two recursive calls
return max(lcsRec(s1, s2, m, n - 1), lcsRec(s1, s2, m - 1, n));
}
int lcs(char s1[],char s2[]){
int m = strlen(s1);
int n = strlen(s2);
return lcsRec(s1,s2,m,n);
}
int main() {
char s1[] = "AGGTAB";
char s2[] = "GXTXAYB";
printf("%d\n", lcs(s1, s2));
return 0;
}
Java
// A Naive recursive implementation of LCS problem
class GfG {
// Returns length of LCS for s1[0..m-1], s2[0..n-1]
static int lcsRec(String s1, String s2, int m, int n) {
// Base case: If either string is empty, the length of LCS is 0
if (m == 0 || n == 0)
return 0;
// If the last characters of both substrings match
if (s1.charAt(m - 1) == s2.charAt(n - 1))
// Include this character in LCS and recur for remaining substrings
return 1 + lcsRec(s1, s2, m - 1, n - 1);
else
// If the last characters do not match
// Recur for two cases:
// 1. Exclude the last character of S1
// 2. Exclude the last character of S2
// Take the maximum of these two recursive calls
return Math.max(lcsRec(s1, s2, m, n - 1), lcsRec(s1, s2, m - 1, n));
}
static int lcs(String s1,String s2){
int m = s1.length(), n = s2.length();
return lcsRec(s1,s2,m,n);
}
public static void main(String[] args) {
String s1 = "AGGTAB";
String s2 = "GXTXAYB";
System.out.println(lcs(s1, s2));
}
}
Python
# A Naive recursive implementation of LCS problem
# Returns length of LCS for s1[0..m-1], s2[0..n-1]
def lcsRec(s1, s2, m, n):
# Base case: If either string is empty, the length of LCS is 0
if m == 0 or n == 0:
return 0
# If the last characters of both substrings match
if s1[m - 1] == s2[n - 1]:
# Include this character in LCS and recur for remaining substrings
return 1 + lcsRec(s1, s2, m - 1, n - 1)
else:
# If the last characters do not match
# Recur for two cases:
# 1. Exclude the last character of S1
# 2. Exclude the last character of S2
# Take the maximum of these two recursive calls
return max(lcsRec(s1, s2, m, n - 1), lcsRec(s1, s2, m - 1, n))
def lcs(s1,s2):
m = len(s1)
n = len(s2)
return lcsRec(s1,s2,m,n)
if __name__ == "__main__":
s1 = "AGGTAB"
s2 = "GXTXAYB"
print(lcs(s1, s2))
C#
// A Naive recursive implementation of LCS problem
using System;
class GfG {
// Returns length of LCS for s1[0..m-1], s2[0..n-1]
static int lcsRec(string s1, string s2, int m, int n) {
// Base case: If either string is empty, the length of LCS is 0
if (m == 0 || n == 0)
return 0;
// If the last characters of both substrings match
if (s1[m - 1] == s2[n - 1])
// Include this character in LCS and recur for remaining substrings
return 1 + lcsRec(s1, s2, m - 1, n - 1);
else
// If the last characters do not match
// Recur for two cases:
// 1. Exclude the last character of S1
// 2. Exclude the last character of S2
// Take the maximum of these two recursive calls
return Math.Max(lcsRec(s1, s2, m, n - 1), lcsRec(s1, s2, m - 1, n));
}
static int lcs(string s1,string s2){
int m = s1.Length , n = s2.Length;
return lcsRec(s1,s2,m,n);
}
static void Main() {
string s1 = "AGGTAB";
string s2 = "GXTXAYB";
Console.WriteLine(lcs(s1, s2));
}
}
JavaScript
// A Naive recursive implementation of LCS problem
// Returns length of LCS for s1[0..m-1], s2[0..n-1]
function lcsRec(s1, s2, m, n) {
// Base case: If either string is empty, the length of LCS is 0
if (m === 0 || n === 0)
return 0;
// If the last characters of both substrings match
if (s1[m - 1] === s2[n - 1])
// Include this character in LCS and recur for remaining substrings
return 1 + lcsRec(s1, s2, m - 1, n - 1);
else
return Math.max(lcsRec(s1, s2, m, n - 1), lcsRec(s1, s2, m - 1, n));
}
function lcs(s1,s2){
let m = s1.length;
let n = s2.length;
return lcsRec(s1,s2,m,n);
}
// driver code
let s1 = "AGGTAB";
let s2 = "GXTXAYB";
let m = s1.length;
let n = s2.length;
console.log(lcs(s1, s2, m, n));
Output4
[Better Approach] Using Memoization (Top Down DP) – O(m * n) Time and O(m * n) SpaceTo optimize the recursive solution, we use a 2D memoization table of size (m+1)×(n+1)(m+1) \times (n+1)(m+1)×(n+1), initialized to −1-1−1 to track computed values. Before making recursive calls, we check this table to avoid redundant computations of overlapping subproblems. This prevents repeated calculations, improving efficiency through memoization or tabulation.
Overlapping Subproblems in Longest Common Subsequence
C++
// C++ implementation of Top-Down DP
// of LCS problem
#include <bits/stdc++.h>
using namespace std;
// Returns length of LCS for s1[0..m-1], s2[0..n-1]
int lcsRec(string &s1, string &s2, int m, int n, vector<vector<int>> &memo) {
// Base Case
if (m == 0 || n == 0)
return 0;
// Already exists in the memo table
if (memo[m][n] != -1)
return memo[m][n];
// Match
if (s1[m - 1] == s2[n - 1])
return memo[m][n] = 1 + lcsRec(s1, s2, m - 1, n - 1, memo);
// Do not match
return memo[m][n] = max(lcsRec(s1, s2, m, n - 1, memo), lcsRec(s1, s2, m - 1, n, memo));
}
int lcs(string &s1,string &s2){
int m = s1.length();
int n = s2.length();
vector<vector<int>> memo(m + 1, vector<int>(n + 1, -1));
return lcsRec(s1, s2, m, n, memo);
}
int main() {
string s1 = "AGGTAB";
string s2 = "GXTXAYB";
cout << lcs(s1, s2) << endl;
return 0;
}
C
// C implementation of Top-Down DP
// of LCS problem
#include <stdio.h>
#include <string.h>
// Define a maximum size for the strings
#define MAX 1000
// Function to find the maximum of two integers
int max(int a, int b) {
return (a > b) ? a : b;
}
// Returns length of LCS for s1[0..m-1], s2[0..n-1]
int lcsRec(const char *s1, const char *s2, int m, int n, int memo[MAX][MAX]) {
// Base Case
if (m == 0 || n == 0) {
return 0;
}
// Already exists in the memo table
if (memo[m][n] != -1) {
return memo[m][n];
}
// Match
if (s1[m - 1] == s2[n - 1]) {
return memo[m][n] = 1 + lcsRec(s1, s2, m - 1, n - 1, memo);
}
// Do not match
return memo[m][n] = max(lcsRec(s1, s2, m, n - 1, memo), lcsRec(s1, s2, m - 1, n, memo));
}
int lcs(char s1[],char s2[]){
int m = strlen(s1);
int n = strlen(s2);
// Create memo table with fixed size
int memo[MAX][MAX];
for (int i = 0; i <= m; i++) {
for (int j = 0; j <= n; j++) {
// Initialize memo table with -1
memo[i][j] = -1;
}
}
return lcsRec(s1, s2, m, n, memo);
}
int main() {
const char *s1 = "AGGTAB";
const char *s2 = "GXTXAYB";
printf("%d\n", lcs(s1, s2));
return 0;
}
Java
// Java implementation of Top-Down DP of LCS problem
import java.util.Arrays;
class GfG {
// Returns length of LCS for s1[0..m-1], s2[0..n-1]
static int lcsRec(String s1, String s2, int m, int n,
int[][] memo) {
// Base Case
if (m == 0 || n == 0)
return 0;
// Already exists in the memo table
if (memo[m][n] != -1)
return memo[m][n];
// Match
if (s1.charAt(m - 1) == s2.charAt(n - 1)) {
return memo[m][n]
= 1 + lcsRec(s1, s2, m - 1, n - 1, memo);
}
// Do not match
return memo[m][n]
= Math.max(lcsRec(s1, s2, m, n - 1, memo),
lcsRec(s1, s2, m - 1, n, memo));
}
static int lcs(String s1, String s2){
int m = s1.length();
int n = s2.length();
int[][] memo = new int[m + 1][n + 1];
// Initialize the memo table with -1
for (int i = 0; i <= m; i++) {
Arrays.fill(memo[i], -1);
}
return lcsRec(s1, s2, m, n, memo);
}
public static void main(String[] args) {
String s1 = "AGGTAB";
String s2 = "GXTXAYB";
System.out.println(lcs(s1, s2));
}
}
Python
def lcsRec(s1, s2, m, n, memo):
# Base Case
if m == 0 or n == 0:
return 0
# Already exists in the memo table
if memo[m][n] != -1:
return memo[m][n]
# Match
if s1[m - 1] == s2[n - 1]:
memo[m][n] = 1 + lcsRec(s1, s2, m - 1, n - 1, memo)
return memo[m][n]
# Do not match
memo[m][n] = max(lcsRec(s1, s2, m, n - 1, memo),
lcsRec(s1, s2, m - 1, n, memo))
return memo[m][n]
def lcs(s1, s2):
m = len(s1)
n = len(s2)
memo = [[-1 for _ in range(n + 1)] for _ in range(m + 1)]
return lcsRec(s1,s2,m,n,memo)
if __name__ == "__main__":
s1 = "AGGTAB"
s2 = "GXTXAYB"
print(lcs(s1, s2))
C#
// C# implementation of Top-Down DP of LCS problem
using System;
class GfG {
// Returns length of LCS for s1[0..m-1], s2[0..n-1]
static int lcsRec(string s1, string s2, int m,
int n, int[, ] memo) {
// Base Case
if (m == 0 || n == 0)
return 0;
// Already exists in the memo table
if (memo[m, n] != -1)
return memo[m, n];
// Match
if (s1[m - 1] == s2[n - 1]) {
return memo[m, n]
= 1 + lcsRec(s1, s2, m - 1, n - 1, memo);
}
// Do not match
return memo[m, n]
= Math.Max(lcsRec(s1, s2, m, n - 1, memo),
lcsRec(s1, s2, m - 1, n, memo));
}
static int lcs(string s1,string s2){
int m = s1.Length;
int n = s2.Length;
int[, ] memo = new int[m + 1, n + 1];
// Initialize memo array with -1
for (int i = 0; i <= m; i++) {
for (int j = 0; j <= n; j++) {
memo[i, j] = -1;
}
}
return lcsRec(s1,s2,m,n,memo);
}
public static void Main() {
string s1 = "AGGTAB";
string s2 = "GXTXAYB";
Console.WriteLine(lcs(s1, s2));
}
}
JavaScript
// A Top-Down DP implementation of LCS problem
// Returns length of LCS for s1[0..m-1], s2[0..n-1]
function lcsRec(s1, s2, m, n, memo)
{
// Base Case
if (m === 0 || n === 0)
return 0;
// Already exists in the memo table
if (memo[m][n] !== -1)
return memo[m][n];
// Match
if (s1[m - 1] === s2[n - 1]) {
memo[m][n] = 1 + lcsRec(s1, s2, m - 1, n - 1, memo);
return memo[m][n];
}
// Do not match
memo[m][n] = Math.max(lcsRec(s1, s2, m, n - 1, memo),
lcsRec(s1, s2, m - 1, n, memo));
return memo[m][n];
}
function lcs(s1, s2)
{
const m = s1.length;
const n = s2.length;
const memo = Array.from({length : m + 1},
() => Array(n + 1).fill(-1));
return lcsRec(s1, s2, m, n, memo);
}
// driver code
const s1 = "AGGTAB";
const s2 = "GS1TS1AS2B";
console.log(lcs(s1, s2));
Output4
[Expected Approach 1] Using Bottom-Up DP (Tabulation) – O(m * n) Time and O(m * n) SpaceThere are two parameters that change in the recursive solution and these parameters go from 0 to m and 0 to n. So we create a 2D dp array of size (m+1) x (n+1).
We first fill the known entries when m is 0 or n is 0.Then we fill the remaining entries using the recursive formula.Say the strings are S1 = “AXTY” and S2 = “AYZX”, Follow below :
C++
#include <iostream>
#include <vector>
using namespace std;
// Returns length of LCS for s1[0..m-1], s2[0..n-1]
int lcs(string &s1, string &s2) {
int m = s1.size();
int n = s2.size();
// Initializing a matrix of size (m+1)*(n+1)
vector<vector<int>> dp(m + 1, vector<int>(n + 1, 0));
// Building dp[m+1][n+1] in bottom-up fashion
for (int i = 1; i <= m; ++i) {
for (int j = 1; j <= n; ++j) {
if (s1[i - 1] == s2[j - 1])
dp[i][j] = dp[i - 1][j - 1] + 1;
else
dp[i][j] = max(dp[i - 1][j], dp[i][j - 1]);
}
}
// dp[m][n] contains length of LCS for s1[0..m-1]
// and s2[0..n-1]
return dp[m][n];
}
int main() {
string s1 = "AGGTAB";
string s2 = "GXTXAYB";
cout << lcs(s1, s2) << endl;
return 0;
}
C
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int max(int x, int y);
// Function to find length of LCS for s1[0..m-1], s2[0..n-1]
int lcs(const char *S1, const char *S2) {
int m = strlen(S1);
int n = strlen(S2);
// Initializing a matrix of size (m+1)*(n+1)
int dp[m + 1][n + 1];
// Building dp[m+1][n+1] in bottom-up fashion
for (int i = 0; i <= m; i++) {
for (int j = 0; j <= n; j++) {
if (i == 0 || j == 0)
dp[i][j] = 0;
else if (S1[i - 1] == S2[j - 1])
dp[i][j] = dp[i - 1][j - 1] + 1;
else
dp[i][j] = max(dp[i - 1][j], dp[i][j - 1]);
}
}
return dp[m][n];
}
int max(int x, int y) {
return (x > y) ? x : y;
}
int main() {
const char *S1 = "AGGTAB";
const char *S2 = "GXTXAYB";
printf("%d\n", lcs(S1, S2));
return 0;
}
Java
import java.util.Arrays;
class GfG {
// Returns length of LCS for s1[0..m-1], s2[0..n-1]
static int lcs(String S1, String S2) {
int m = S1.length();
int n = S2.length();
// Initializing a matrix of size (m+1)*(n+1)
int[][] dp = new int[m + 1][n + 1];
// Building dp[m+1][n+1] in bottom-up fashion
for (int i = 1; i <= m; i++) {
for (int j = 1; j <= n; j++) {
if (S1.charAt(i - 1) == S2.charAt(j - 1)) {
dp[i][j] = dp[i - 1][j - 1] + 1;
}
else {
dp[i][j] = Math.max(dp[i - 1][j],
dp[i][j - 1]);
}
}
}
// dp[m][n] contains length of LCS for S1[0..m-1]
// and S2[0..n-1]
return dp[m][n];
}
public static void main(String[] args)
{
String S1 = "AGGTAB";
String S2 = "GXTXAYB";
System.out.println( lcs(S1, S2));
}
}
Python
def lcs(S1, S2):
m = len(S1)
n = len(S2)
# Initializing a matrix of size (m+1)*(n+1)
dp = [[0] * (n + 1) for x in range(m + 1)]
# Building dp[m+1][n+1] in bottom-up fashion
for i in range(1, m + 1):
for j in range(1, n + 1):
if S1[i - 1] == S2[j - 1]:
dp[i][j] = dp[i - 1][j - 1] + 1
else:
dp[i][j] = max(dp[i - 1][j],
dp[i][j - 1])
# dp[m][n] contains length of LCS for S1[0..m-1]
# and S2[0..n-1]
return dp[m][n]
if __name__ == "__main__":
S1 = "AGGTAB"
S2 = "GXTXAYB"
print(lcs(S1, S2))
C#
using System;
class GfG {
// Returns length of LCS for S1[0..m-1], S2[0..n-1]
static int lcs(string S1, string S2) {
int m = S1.Length;
int n = S2.Length;
// Initializing a matrix of size (m+1)*(n+1)
int[, ] dp = new int[m + 1, n + 1];
// Building dp[m+1][n+1] in bottom-up fashion
for (int i = 1; i <= m; i++) {
for (int j = 1; j <= n; j++) {
if (S1[i - 1] == S2[j - 1]) {
dp[i, j] = dp[i - 1, j - 1] + 1;
}
else {
dp[i, j] = Math.Max(dp[i - 1, j],
dp[i, j - 1]);
}
}
}
// dp[m, n] contains length of LCS for S1[0..m-1]
// and S2[0..n-1]
return dp[m, n];
}
static void Main() {
string S1 = "AGGTAB";
string S2 = "GXTXAYB";
Console.WriteLine(lcs(S1, S2));
}
}
JavaScript
function lcs(S1, S2) {
const m = S1.length;
const n = S2.length;
// Initializing a matrix of size (m+1)*(n+1)
const dp = Array.from({length : m + 1},
() => Array(n + 1).fill(0));
// Building dp[m+1][n+1] in bottom-up fashion
for (let i = 1; i <= m; i++) {
for (let j = 1; j <= n; j++) {
if (S1[i - 1] === S2[j - 1]) {
dp[i][j] = dp[i - 1][j - 1] + 1;
}
else {
dp[i][j]
= Math.max(dp[i - 1][j], dp[i][j - 1]);
}
}
}
// dp[m][n] contains length of LCS for
// S1[0..m-1] and S2[0..n-1]
return dp[m][n];
}
const S1 = "AGGTAB";
const S2 = "GXTXAYB";
console.log(lcs(S1, S2));
Output4
[Expected Approach 2] Using Bottom-Up DP (Space-Optimization):One important observation in the above simple implementation is, in each iteration of the outer loop we only need values from all columns of the previous row. So there is no need to store all rows in our DP matrix, we can just store two rows at a time and use them. We can further optimize to use only one array.
Please refer this post: A Space Optimized Solution of LCS
Applications of LCSLCS is used to implement diff utility (find the difference between two data sources). It is also widely used by revision control systems such as Git for multiple changes made to a revision-controlled collection of files.
Problems based on LCSLCS of 3 StringsPrinting LCSLongest Palindromic SubsequenceShortest Common SupersequenceMinimum Insertions and DeletionsEdit DistanceMinimum Insertions for PalindromeLongest Common SubstringLongest Palindromic SubstringLongest Repeated SubsequenceCount Distinct SubsequencesRegular Expression MatchingRelated Links: Print LCS of two Strings Dynamic Programming LCS and Edit Distance Dynamic Programming Practice Problems | NLP/Natural Language Processing (NLP) Tutorial/AI ML DS - Projects/30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated]/Does Artificial Intelligence Require Coding?/Artificial Intelligence – Boon or Bane/Artificial Intelligence Examples/Agents in Artificial Intelligence/What are Diffusion Models?/ML | Common Loss Functions/Loss Functions in Deep Learning/Kaiming Initialization in Deep Learning/Swift - Initialization/Swift – If Statement/6 Best iOS Project Ideas For Beginners/Swift Programming Language/Introduction to Visual Programming Language/What is D Programming Language: Usage and Applications/Best Programming Languages for Data Science in 2024/5 Best Languages for Competitive Programming/MEX (Minimum Excluded) in Competitive Programming/Rearrange Array to maximize sum of MEX of all Subarrays starting from first index/Minimize moves to segregate even and odd by swapping adjacent elements/Minimum elements to be removed such that sum of adjacent elements is always even/Maximum sum such that exactly half of the elements are selected and no two adjacent/Maximum length subsequence such that adjacent elements in the subsequence have a common factor/Longest subsequence such that difference between adjacents is one/Longest Increasing Subsequence using Longest Common Subsequence Algorithm/Longest Common Subsequence (LCS) | https://www.geeksforgeeks.org/longest-common-subsequence/ | NLP | Longest Common Subsequence (LCS) | Artificial Intelligence – Boon or Bane, AI ML DS - Projects, Longest Common Subsequence (LCS), Rearrange Array to maximize sum of MEX of all Subarrays starting from first index, MEX (Minimum Excluded) in Competitive Programming, Swift - Initialization, Longest Increasing Subsequence using Longest Common Subsequence Algorithm, 6 Best iOS Project Ideas For Beginners, ML | Common Loss Functions, Artificial Intelligence Examples, Longest subsequence such that difference between adjacents is one, What is D Programming Language: Usage and Applications, 30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated], Swift – If Statement, Natural Language Processing (NLP) Tutorial, Loss Functions in Deep Learning, Minimize moves to segregate even and odd by swapping adjacent elements, Maximum length subsequence such that adjacent elements in the subsequence have a common factor, Does Artificial Intelligence Require Coding?, Best Programming Languages for Data Science in 2024, NLP, 5 Best Languages for Competitive Programming, Maximum sum such that exactly half of the elements are selected and no two adjacent, Swift Programming Language, Minimum elements to be removed such that sum of adjacent elements is always even, Agents in Artificial Intelligence, What are Diffusion Models?, Kaiming Initialization in Deep Learning, Introduction to Visual Programming Language | GeeksforGeeks | [0.0231207293, 0.00362362666, -0.0168694, 0.0390095301, 0.0304292701, 0.00898628775, 0.0370789692, 0.0257407725, -0.0407255813, 0.00855727494, 0.0206692275, -0.0194741208, 0.0418287553, -0.0335242935, -0.012288155, 0.0138050215, 0.0227989703, 0.0226304289, -0.00321759656, -0.034045238, -0.00854195282, 0.0150077902, -0.021971589, 0.0188612454, 0.00858791824, 0.0286672544, 0.0198724903, 0.00649648067, -0.0121042924, 0.0126328971, 0.0471301302, 0.00186927046, 0.0180338621, -0.0157355797, 0.0080133481, -0.0356693566, -0.000409621105, 0.0426561385, -0.0298163947, 0.00938465726, -0.00177255098, 0.00773755368, -0.00408711378, -0.00844236091, 0.0131538417, 0.0123877469, -0.0253270827, 0.00324632507, -0.0290349796, -0.0111926394, -0.00498727476, -0.0357306451, 0.0244843774, -0.0237336047, 0.00455060089, 0.00574953854, -0.00364277908, -0.00209143781, 0.0245456658, 0.0106946779, 0.01622588, -0.00445866957, -0.0181104727, -0.00887903478, 0.0501945056, -0.010817253, -0.033340428, 0.0257101282, 0.0365886688, -0.0423803441, -0.0631874651, 0.0333097875, 0.00497578317, -0.0280697, -0.0185241625, -0.0258480255, 0.0316856652, 0.0111313518, -0.00306054717, 0.0245763101, -0.0142876608, -0.0116906008, -0.0141114593, -0.0277785845, -0.00412924914, -0.0053090346, -0.003211851, -0.0592957102, 0.0494284146, 0.0136058368, -0.00893266127, 0.0268133059, 0.0207611583, -0.0352403447, -0.0346581116, 0.0175435618, 0.0297244638, 0.0108325751, -0.0467317589, 0.0269052368, 0.0289736912, 0.0127401501, -0.00458124466, -0.0139582409, 0.00815890543, -0.0127018457, -0.0228142925, 0.0259706, 0.0327582, 0.0546684973, -0.00410626596, 0.0290503018, -0.0252657942, -0.0205313303, -0.0220635198, -0.0243924465, -0.0250819325, -0.0482333042, 0.0406030044, 0.0132227903, 0.0246222746, 0.0495509878, 0.0149388416, 0.00625899155, -0.0410320163, 0.0406642929, 0.0167161804, 0.0288511161, 0.00614407752, -0.000331096438, 0.00678759674, -0.00987495761, 0.0187846348, 0.0174056664, 0.0185241625, 0.0288970824, -0.0241472963, 0.0224006, 0.000905906665, 0.0366193131, -0.00762263965, -0.0183096565, 0.0104418667, 0.00560015, 0.0115910089, -0.0226917174, 0.00326930801, 0.0642906427, -0.0373547636, 0.00126118294, -0.0317163095, -0.0522169955, 0.00533967838, 0.0141574247, 0.0274721459, -0.00956085883, 0.015781546, -0.0287591852, -0.00494130887, -0.0226610731, 0.0163944215, -0.00651180279, 0.01785, -0.0281309877, -0.0483558811, -0.00481873378, -0.000634421944, -0.00447399169, -0.0494284146, 0.0258480255, 0.0132840779, 0.00952255353, 0.026246395, 0.0284067821, -0.00688718911, -0.0219256226, 0.0325130485, -0.0118668023, 0.00559631968, -0.00990560092, -0.0123111373, -0.0102350218, 0.00244001066, -0.00159347639, 0.0320227481, -0.0132610947, -0.0021795386, -0.0176508166, 0.00383813307, -0.0260625333, -0.0175282415, -0.0213587135, 0.0280697, -0.0161799137, 0.00659607304, 0.0141880689, -0.0714612901, 0.0410626605, 0.00655010762, 0.0246222746, -0.0131385196, -0.0531363115, -0.00220635207, 0.0263076834, 0.0426561385, -0.0383047201, -0.0389788859, 0.00371747324, 0.0348113328, -0.0129853, -0.0402046368, 0.0500106439, -0.0465172529, -0.0262617171, 0.0205006879, 0.00216996251, -0.0223852787, 0.01915236, -0.0343823172, 0.00591424899, 0.00509835826, 0.0213280693, 0.0325436927, -0.00462338, -0.05476043, -0.0492139049, -0.0240706876, 0.0127018457, 0.0119051076, -0.0530443788, 0.0341678113, -0.0225844644, -0.0122192064, -0.0241472963, 0.00461188843, -0.0221707728, -0.00625899155, 0.00528605143, -0.00520944223, 0.0275793988, -0.000195952598, -0.0151073821, 0.013176824, -0.0237182844, 0.0272269957, -0.0201942492, 0.00227147, 0.00725108385, 0.0161339492, 0.0194894429, 0.0262310728, -0.00176393241, 0.0132151293, 0.016333133, -0.0276866537, 0.0328194872, 0.0166242495, 0.00246490887, -0.00300883595, -0.02523515, 0.00527839083, -0.0117595494, -0.0180338621, 0.0501945056, 0.0132151293, 0.0241626184, 0.0431464389, 0.00497578317, 0.00263919542, 0.0128550641, 0.00821253192, -0.0466398299, 0.0106027471, 2.92971272e-05, 0.012395408, -0.0244997, -0.00105337985, 0.0012755472, 0.0699291, 0.00272155041, 0.0207305159, 0.0142953219, 0.0242545493, -0.0154521251, -0.008564936, -0.0311340783, 0.0207764804, 0.0128780473, -0.0159500856, -0.000928410678, 0.00396453869, -0.00551971048, 0.0175282415, 0.0210063085, 0.0119893774, 0.000160999538, -0.00090925832, -0.000918834528, -0.043606095, -0.0180798285, -0.0250512883, -0.0393466093, -0.0120659871, -0.0244843774, -0.0151380263, -0.013743734, 0.0222320613, 0.00901693106, -0.0173443779, -0.00619004294, 0.0137973605, -0.0588973388, -0.0137130907, -0.00148430793, -0.0181411169, 0.00174861052, 0.0758127049, -0.000353361043, -0.0199031327, -0.00866452791, 0.030306695, -0.0080133481, -0.0195200853, 0.0545152798, 0.0665582865, -0.00644668471, -0.0441576838, 0.0242239051, -0.00914716721, 0.00777202798, -0.0267826617, 0.01622588, -0.034137167, 0.00288051507, 0.0439431779, -0.045199573, -0.000145557948, 0.0301994421, 0.00955319777, -0.0152759226, 0.0184475537, 0.00596787548, 0.0142646786, 0.0272269957, -0.00813592318, -0.0083044637, -0.0263689701, 0.0252657942, 0.0192596149, -0.0107329832, 0.001436427, 0.0151073821, 0.0495509878, 0.00666502165, -0.016670214, -0.000546321098, -0.00978302583, -0.00994390529, -0.00106104079, 0.0259246361, 0.0203627907, 0.0019937607, -0.0360677242, 0.0110547431, 0.0162718464, -0.034045238, -0.0168540776, -0.0257254504, 0.0198418461, -0.0102426829, -0.0351177678, 0.000846534327, 0.0137054296, 0.00354701723, -0.0611343347, -0.000553024409, 0.083963953, 0.00924676, -0.0186620597, -0.0100741414, -0.0244690552, 0.0639842078, 0.0207458381, 0.00229445286, -0.0203015022, 0.0132304505, -0.0316243768, -0.000879572181, 0.0325436927, 0.0381515026, -0.0327275544, 0.0112156225, -0.00481490372, 0.00917015, 0.00946126599, -0.0122958161, -0.0265987981, 0.0116982618, 0.0129240127, -0.0473752804, 0.00168732298, 0.016562961, 0.00758050429, -0.00278283795, -0.0168540776, 0.014310644, -0.0167161804, 0.00192576984, -0.00356616965, 0.0236263517, 0.0120276827, 0.036833819, -0.0278858375, 0.00149484177, 0.0181564372, 0.0219562668, -0.0110624032, 0.00871815439, -0.00508686714, 0.00548523618, 0.0128933694, -0.0519105569, 0.00812060107, 0.0184015874, -0.00845002197, 0.00270431326, 0.0112462658, 0.0569054931, 0.0170072969, -0.0475591421, -0.00352786481, 0.0436673835, -0.0098902788, 0.00572655583, -0.028514035, -0.0621149354, 0.00591807952, -0.0104188845, -0.00188746513, -0.0232433043, -0.0171911586, 0.00747325132, 0.0380902141, -0.0662518442, -0.0265987981, 0.00973706, -0.0402965657, 0.00370981218, -0.0216651503, -0.00854195282, -0.0285293572, -0.0241472963, -0.0245150216, 0.00664203893, 0.0354854949, -0.0168847218, 0.0151380263, -0.0297244638, 0.0324824043, -0.0204240773, 0.0102503439, 0.00457741413, 0.0240247212, -0.0174975973, 0.0260931756, 0.0521863513, 0.0167621467, -0.00576486066, -0.0222473815, -0.00417521456, 0.00218336913, -0.0522169955, 0.053871762, 0.00738898059, -0.00639688829, 0.0131002152, 0.039315965, -0.0306437779, -0.020853091, -0.00266026286, 0.0502251498, 0.0247601718, -0.0243311599, -0.0245916322, 0.00617089076, -0.0168234333, 0.00459656678, 0.0122192064, 0.0073468457, -0.0187539924, 0.0249746777, 0.0457511581, -0.0180798285, -0.0261851083, -0.00278666848, 0.0295406021, -0.0315937325, -0.0419513322, 0.00216804724, 0.0156283267, 0.0290809441, -0.00143163896, -0.022415923, 0.0322985426, 0.0360370837, -0.050592877, -0.00379025214, -0.0113458587, 0.00631644856, -0.056660343, -0.0176201724, -0.0023997908, -0.018478198, 0.0124413734, -0.0323904715, 0.00545076188, -0.0304292701, 0.0290196575, 0.0193209015, -0.0199031327, 0.00294563314, 0.00645434577, 0.00420202781, 0.0363741629, -0.031869527, 0.0122192064, 0.0509606, -0.0133070601, 0.021971589, -0.0210216306, -0.0303679835, 0.0260778554, 0.0152452793, 0.0210063085, -0.0255875532, -0.0336468667, 0.0284833908, 0.0215272531, -0.0255109444, 0.013176824, -0.0206845496, -0.00374620175, -0.0319308154, -0.0127554722, -0.016670214, 0.00513283256, -0.00758433482, -0.00533201732, 0.0262310728, 0.0222320613, 0.00144313043, 0.0277632624, -0.00159156113, 0.00269090664, -0.00583380926, -0.00121713255, 0.00205696351, -0.00697145937, -0.0320533924, -0.0196273401, -0.0266294423, 0.000408424094, 0.011269249, 0.031333264, 0.0139429187, -0.0167161804, 0.0158275105, 0.00972173829, -0.0490913317, 0.00466551492, -0.0106793568, -0.0220788419, -0.00169785682, -0.00764945289, 0.0199950654, 0.0252198279, -0.0040219957, -0.00913184602, -0.00420202781, -0.000719171134, 0.00862622354, -0.0146247428, -0.0146400649, -0.00355084776, -0.00691400236, -0.025802061, 0.00325590139, 0.010028176, -0.0206692275, 0.00874879863, 0.0180338621, 0.0371709019, 0.0145174898, 0.00615556864, -0.0169460084, 0.0145787774, 0.0154444641, -0.0157355797, 0.000632985553, -0.00788311195, 0.0384579413, 0.00684505375, 0.0175435618, 0.00505239284, -0.00613641646, -0.00628580479, 0.0219562668, 0.056660343, 0.00222933479, -0.0228449367, -0.066497, 0.00320802047, 0.0434528776, -0.0121732401, -0.00997454952, -0.0152912447, 0.0187386703, -0.00214314926, -0.00283263414, -0.0206385832, -0.0137130907, -0.0309655368, 0.0226763953, -0.0190757513, 0.011613992, 0.00470381975, -0.0193055794, -0.0330339931, -0.027380215, -0.014532811, 0.0195966959, -0.00404497841, 0.0152452793, 0.0173443779, -0.00242660404, 0.01915236, -0.00311800442, 0.00245916308, -0.020056352, 0.0216191839, -0.0119893774, 0.00508686714, 0.00388792926, 0.0774674714, -0.00504856231, -0.0062475, -0.0329420604, 0.0180185419, 0.0161339492, 0.0229675118, 0.031869527, 0.018815279, 0.0262004305, 0.0200716741, -0.00861856248, -0.00201865891, 0.0425029173, 0.00724725332, 0.00838873442, 0.0330033489, 0.0128780473, -0.0198878106, -0.000913567608, -0.0135905156, 0.00403348729, -0.00492981775, -0.0137667172, 0.0236110296, -0.00652329391, -0.00390899694, -0.0292188413, -0.0144638633, -0.0154751074, 0.0142570175, 0.00204164162, -0.012058326, -0.021511931, 0.0467317589, 0.0107329832, 0.00574953854, -0.0262157507, -0.01014309, 0.0103039704, 0.00985963549, 0.0109857945, 0.00371364271, -0.0028058209, -0.0123494426, -0.0385498703, 0.0188459232, 0.00673780032, 0.0121962233, 0.0224618893, 0.0184935201, 0.0240247212, 0.0233045928, -0.002028235, 0.020163605, -0.0126865236, 0.0113994852, 0.0200869963, -0.0215425752, -0.00673013972, -0.00325590139, -0.0126712015, 0.0194128323, -0.00539713539, 0.0232433043, -0.00611343374, 0.0337081552, 0.0205772966, 0.00860324, 0.0128703862, -0.0168387555, 0.00844236091, -0.0140501717, -0.0133836698, -0.00142589328, 0.00962214638, -0.0219409447, 0.00925442111, 0.00845002197, 0.0273036063, -0.0545765683, -0.0255569108, -0.0020722854, -0.0080822967, -0.0291269105, -0.0233658794, -0.0163791, -6.92477552e-05, 0.0265068673, 0.0152376182, -0.0116906008, -0.0215578973, -0.00865686685, 0.0227376819, 0.00246682414, 0.00199184543, 0.00795972161, 0.0200716741, -0.0120813092, -0.0103346137, 0.0201789271, 0.0106027471, -0.0157355797, 0.0294946358, 0.0123800859, -0.00639688829, 0.010817253, -0.022415923, 0.0220635198, 0.0413384549, -0.00821253192, -0.0142876608, -0.0122651719, 0.0280237347, -0.00726257544, 0.0163484551, 0.0139429187, -0.00487619126, 0.0437899567, 0.0169460084, -0.00894798338, -0.0161033049, -0.000551109202, -0.0303986277, -0.00215655589, -0.0111466739, -0.00747325132, 0.0220635198, 0.00973706, 0.026476223, -0.0120966313, -0.0247448497, -0.00968343392, 0.017022619, -0.00969875511, -0.00858025718, -0.0142340343, -0.0185088422, 0.00838107336, 0.00466934545, 0.00503324, 0.0311953649, 0.016670214, 0.00702508586, 0.0154138198, 0.0252045076, -0.00891733915, -0.0215272531, -0.0106180692, -0.0124107301, 0.0194587987, -0.0211442057, -0.0172524471, -0.0175895281, -0.0139046144, -0.0502864383, -0.0366193131, 0.0204240773, -0.035056483, -0.0319001712, -0.000366288907, 0.0308429617, -0.0216038637, -0.0221860949, -0.000280342676, -0.0212208163, -0.0123800859, 0.00203589606, 0.0133070601, -0.0115833478, 0.0228755791, 0.0288204718, 0.0418900438, 0.007155322, 0.0143795926, 0.00333825639, 0.0365273841, -0.00271005905, 0.0297857523, 0.000504664727, -0.0134602794, 0.0241932627, 0.0238715019, 0.00324249477, -0.0348113328, 0.0166855361, 0.00398369087, 0.0152606014, 0.0124796787, -0.00202248921, 0.0213740338, -0.0038764379, 0.0362209454, 0.0052745603, 0.00652329391, 0.0439125337, 0.0112156225, 0.00676078349, 0.00483788643, 0.00031601396, -0.0399594866, 0.00103039702, 0.0133530255, -0.0160420183, 0.0132381115, 0.0334936492, 0.00542777916, 0.0125869317, 0.00441653421, 0.0269205589, -0.0217877254, -0.0169613305, 0.0378757082, -0.00645434577, -0.00871049333, 0.00709786499, -0.0258480255, 0.0507460944, 0.0196886268, -0.0120047, 0.0151533475, 0.0299236476, -0.0182790123, 0.0133147212, -0.0352097, 0.0161492713, 0.00412924914, -0.00307203876, -0.0390708148, -0.000152021865, 0.0332178548, 0.00681824051, 0.00991326198, -0.00452761818, -0.00402965676, 0.0111083696, -0.00786012877, -0.0107176611, 0.00716298306, -0.0634939075, -0.0288817603, 0.0185548067, -0.00759582641, -0.00903225318, -0.0236876402, 0.0193055794, -0.0375999138, 0.0174209867, 0.0110240988, -0.044402834, -0.0182790123, 0.00681057945, 0.0466091856, -0.0099975327, 0.00442419527, -0.00831978582, -0.0242239051, 0.00257407734, 0.00379408267, -0.0203321464, -0.0117442273, 0.0171605144, -0.0450463519, 0.0144408802, -0.00401816517, 0.00686037587, 0.0149311805, 0.0355161391, 0.0429012887, -0.00896330457, -0.0271197427, 0.0126712015, 0.0307816751, -0.0515121892, 0.00962214638, 0.0279318038, 0.00091261, 0.033340428, -0.00393772544, 0.00213357294, 0.0408481546, -0.0120736482, 0.0188918896, -0.0347500443, -0.0209756661, -0.0179878976, -0.029418027, -0.0382127911, 0.013529228, 0.00237872312, -0.032666266, -0.011943412, 0.00953021459, -0.0266141202, -0.00185969425, -0.0213740338, -0.0292188413, -0.000755560643, 0.0552507304, 0.0301994421, -0.0203627907, 0.00131480955, -0.00558099803, 0.0172064807, 0.00757667376, 0.0334017165, -0.00291882, 0.00710552605, -0.010480172, -0.0211288836, -0.0271657091, -0.0135445492, -0.0363435186, -0.0219256226, -0.0173597, -0.0295406021, 0.000613833137, 0.00200525229, -0.00670332648, -0.00184341474, 0.0126328971, -0.0152682625, -0.0120047, -0.00114722643, -0.0160266962, -0.00729321921, 0.0251432192, 0.0288051497, 0.00405647, 0.020853091, 0.0102809872, -0.000766094425, 0.0240400434, -0.0300155804, -0.0332791433, -0.0207764804, -0.00920079369, -0.0199797433, 0.00867985, 0.00734301517, 0.0063432618, 0.0111007085, -0.0246682409, -0.00113190454, 0.016562961, 0.00389175978, 0.0178653225, -0.00789077301, 0.0223393142, -0.0285906438, -0.0143029829, -0.0293107722, -0.0125945928, -0.00577252172, -0.0330339931, -0.030306695, -0.0211288836, -0.0105567817, -0.0185701288, 0.0110853864, 0.0128320819, 0.027043134, 0.00745026814, 0.00818188861, 0.0088560516, -0.0206079409, -0.00106870173, -0.00738898059, -0.0256335195, -0.00775670633, -0.00279432954, -0.00751921674, 0.00658458145, -0.0356080681, 0.0100741414, 0.0123494426, 0.0203321464, -0.0153678544, -0.0490300432, -0.0152989058, -0.00260472111, 0.00819721073, 0.0111849783, -0.0218949784, 0.0104265455, 0.00137801236, 0.0140348496, 0.0174822751, 0.0043590772, -0.016118627, 0.0114454506, 0.0190604292, -0.00588743575, 0.00783714559, -0.0432996564, -0.00877178088, 0.021297425, 0.0302147642, 0.0044280258, 0.00458124466, 0.00290924357, 0.0109474892, -0.0362822339, 0.0108325751, 0.0275793988, 0.00943828374, -0.0268133059, 0.0210063085, 0.00293414178, -0.0162871685, -0.00100262614, -0.0161033049, 0.00824317615, 0.0132840779, 0.000446010614, 0.0120123606, -0.0166089274, -0.0047995816, -0.0131461807, 0.00202440447, -0.00176872057, -0.00639305823, 0.0208684132, 0.000483597105, 0.0176201724, 0.00412924914, 0.0320227481, 0.0126788625, 0.00755752157, 0.00981367, -0.0232739486, -0.00287476927, 0.0108555583, -0.00259322976, -0.014984807, -0.003464662, -0.000858983374, -0.0281309877, -0.0356693566, 0.0220635198, 0.00121234439, 0.00334591744, -0.0291575547, 0.00727023603, -0.00589509681, 0.00967577286, -0.0295406021, -0.00723959226, 0.0137590561, -0.013521567, -0.00789077301, 0.00641221041, -0.00165380631, 0.0148086054, 0.0918700472, 0.00045726262, 0.00252619642, -0.03245176, 0.01071, -0.00791375525, 0.0140961371, -0.00893266127, -0.0176048502, 0.00647349795, 0.0147166736, -0.00661139516, 0.0142646786, -0.013529228, -0.00178021193, 0.0326969102, 0.0118744634, -0.00659990357, 0.00391474273, -0.0015685783, -0.0214353222, 0.011613992, -0.000354318676, -0.0139429187, -0.00533201732, -0.0149311805, 0.00825849827, -0.00448931335, -0.0682130456, 0.0104648499, 0.0086338846, -0.0227989703, 0.0191676822, -0.00485703861, -0.0216345061, 0.000876220525, 0.0036217114, -0.018263692, -0.0296784975, 0.0207151938, -0.00548906671, 0.00624366943, -0.0233965237, 0.0216498282, -0.00454294, -0.00227530045, -0.0143489484, -0.00405647, 0.0146936914, -0.00707105175, -0.0133989919, -0.0337081552, -0.0331872106, -0.000220730959, -0.00997454952, 0.00190182938, -0.00934635196, 0.0076379613, 0.0189838205, -0.0144332191, -0.00673397025, -0.00956085883, -0.00347423833, -0.00522093335, 0.0241779406, 0.00315439375, -0.0370483249, -0.019612018, 0.000608566275, -0.0127401501, -0.015996052, 0.0108325751, 0.0138203437, -0.0024687394, -0.0167008583, -0.00227147, 0.0169460084, -0.00835042913, -0.0146630472, -0.0221401285, -0.0020722854, 0.00533584785, 0.0055771675, 0.00678759674, -2.17708475e-06, -0.00079769583, -0.0131538417, -0.0065003112, -0.0272576399, -0.00831212476, -0.0176661368, -0.0167621467, -0.00243234984, -0.00872581545, -0.0197499152, -0.0208837334, -0.00889435597, 0.010020515, 0.00313524157, -0.00730088, -0.0330646373, -0.00888669584, -0.00732769305, 0.00407945272, -0.00183958421, 0.00855727494, 0.0138050215, -0.00169594155, -0.0047995816, 0.0167774688, 0.0220328756, 0.0322372541, 0.00520944223, 0.010020515, 0.0189838205, -0.0111390129, 5.2758769e-05, -0.00798270386, -0.0129699791, 0.00668417383, -0.0288970824, -0.00853429176, 0.00202440447, -0.0442802571, 0.0101967165, -0.0422271267, 0.00515581574, -0.00681057945, 0.00422884105, 0.00610577269, -0.0291115884, 0.0119970385, 0.00547374459, -4.8120306e-05, -0.0179878976, 0.0243464801, -0.0284833908, -0.00399135193, -0.00263536489, 0.0156283267, -0.0112003, 0.0274721459, 0.000906864298, 0.00617472129, 0.00418287562, -0.0180645064, 1.52994453e-05, 0.00452378765, -0.0016595521, 0.00998221058, -0.0230441205, -0.00915482827, 0.00788311195, -0.00124490343, 0.00560781127, -0.00985197444, 0.00118648878, -0.0152376182, 0.0011433959, 0.00862622354, 0.0195660517, -0.0108019318, 0.0257560946, 0.0301534776, -0.0248521026, -0.00697145937, 0.000150346037, -0.00409094431, -0.0216498282, 0.0118974466, -0.00561930286, -0.000309071213, 0.0104342066, -0.0111007085, 0.0244230907, 0.00385920075, -0.000312662276, 0.027824549, 0.0020339808, -0.000115452822, -0.0129776392, -0.0017888305, -0.00424416317, 0.00853429176, -0.02523515, -0.00283263414, -0.0169613305, -0.0108402362, 0.0147549789, 0.00106295606, 0.0119970385, 0.0175435618, -0.00756901316, 0.0123034762, 0.0108708804, 0.0197345931, 0.00546225347, 0.0121655799, -0.00369257526, -0.0080133481, -0.0157049354, -0.0214812886, 0.0023653165, -0.026139142, -0.00201099785, -0.0192136485, -0.0378144197, -0.0127018457, 0.00139237661, -0.0103882402, 0.0129086915, 0.00513283256, 0.00131959771, 0.0120659871, -0.00388409873, 0.0135981757, -0.0184628759, -0.00305097108, 0.00340145919, -0.0173597, 0.00565377669, 0.0199950654, -0.00281539699, -0.0377224907, -0.0132227903, -0.0311494, 0.0242239051, 0.0153448712, 0.00703274691, 0.0256335195, -0.0243618023, 0.00953787565, 0.0141804079, -0.000531956844, 0.00825083721, -0.00966045074, 0.025342403, -0.0282075964, -0.0474059246, 0.0126712015, 0.0115986699, 0.0269205589, -0.0156206656, 0.00370598189, 0.00678759674, 0.000116589996, 0.019504765, 0.0207764804, -0.0112922322, -0.00141248666, -0.00363511802, -0.0091165239, 0.0361903, -0.0192902572, -0.000685175706, 0.00949957129, 0.00957618, -0.0150154512, 0.0170379393, -0.00983665232, 0.0164710302, 0.0181104727, 0.00532435626, 0.0062743132, 0.00871049333, 0.00805165246, -0.00363320275, -0.0163024887, 0.00969109498, -0.011713584, 0.00108402362, 0.000696667121, -0.00221592817, 0.00152261264, -0.00748474244, -0.0196886268, -0.00620536506, 0.0074579292, -0.015888799, 0.00910120178, -0.0255722329, 0.0327582, 0.0121349357, -0.0275640786, -0.00666502165, 0.010587425, -0.00421735, 0.00877944194, 0.0025855687, 0.0031716309, -0.000506101118, -0.0172524471, -0.00971407723, 0.0149081973, 0.0110700643, 0.0248367824, 0.0140271895, 0.0198418461, -0.0104035623, 0.0442189723, -0.0275027901, -0.0214353222, -0.0112232836, 0.0180032197, 0.0232586265, -0.0160573386, -0.00448931335, -0.0243005157, 0.0265375115, 0.00331335841, 0.0109245069, -0.0200410299, -0.0258939918, -0.0111160306, -0.0102273608, -0.00185873662, 0.0190297849, -0.00674546137, 0.00364852464, -0.00380557403, 0.00275027892, 0.00829680264, -1.89728071e-05, 0.000379456149, 0.00169977196, 0.0143949147, -0.0308889281, 0.00947658811, -0.0105414595, -0.0259706, 0.00273687229, -0.00487236073, -0.00240553659, 0.0313639045, -0.00113381981, 0.008564936, -0.00568442047, 0.0173750222, 0.016670214, 0.00639305823, -0.0323291868, 0.00395687763, -0.0218336917, -0.00182617758, -0.0100434981, -0.0260778554, 0.00932336878, 0.0577328764, 0.0163637772, 0.0219103, -0.0413691, -0.0373547636, -0.0185088422, 0.0101201078, 0.0176201724, 0.00512134144, 0.0109628113, -0.00100549893, 0.000660277612, 0.0119510731, -0.0403578542, -0.0148086054, -0.00127937773, -0.0142187122, 0.00366193149, -0.0192902572, 0.00320802047, -0.00163465401, 0.0340758786, 0.00796738174, -0.00179649144, -0.00050705875, 0.00243043457, 0.0116752796, -0.014647726, -0.00104763417, 0.0051711374, -0.00212399685, -0.00149388413, -0.00656542927, 0.0109398281, -0.0241472963, -0.0246375967, -0.00725491438, -0.00617472129, 0.00674163084, -0.0180032197, -0.00514049362, 0.00335357827, -0.0151227042, -0.00622068672, 0.0134756006, 0.0286825746, 0.00257599261, 0.0127478112, 0.0125179831, -0.017681459, 0.00532052573, 0.0116752796, -0.0159347635, 0.0163791, 0.0143566094, 0.00711701717, 0.0118131759, 0.0169000439, 0.00612492487, -0.0165323187, -0.0131002152, 0.0237336047, -0.0280390568, 0.0152606014, 0.0055771675, -0.00525540765, -0.0345661789, 0.00629346585, 0.028284207, 0.0269052368, 0.00765711395, -0.00459273625, -0.00116829399, -0.0215732194, 0.00337273069, -0.0261084978, 0.0131078754, -0.0112845711, 0.00941530056, 0.0117672104, -0.00453527924, -0.00864154473, -0.00596404495, 0.0095991632, -0.0205006879, -0.0456592292, 0.0273648929, 0.0143795926, -0.0113918241, 0.0263536479, -0.0170379393, 0.0015274008, -0.0201176405, 0.0133070601, 0.000544405833, -0.0282229185, -0.00628197426, -0.00190757518, 0.00404880894, 0.015666632, -0.00499110529, -0.018370945, 0.0121502578, 0.0288051497, 0.0152069749, -0.018370945, -0.0138280047, -0.00484554749, 0.0108632194, 0.00532818679, 0.00468083704, 0.0159654077, -0.0298163947, 0.000730662548, 0.0078218244, -0.008787103, -0.00666885218, 0.00480724266, 0.0153831765, 0.0184169095, -0.00730088, 0.0133530255, 0.00143451185, 0.0141344424, -0.000414169801, -0.0152299572, -0.0186620597, 0.015099721, -0.0216957945, -0.00464253221, -0.00182617758, -0.00406413106, 0.0148852151, -0.00825083721, 0.0252045076, -0.00552737154, 0.00798270386, 0.00569208153, 0.0436367393, 0.0126865236, 0.0131002152, -0.000864250294, 0.01915236, -2.1501517e-05, -0.00632410962, -0.00970641617, 0.00672630919, -0.00290924357, -0.00680291839, 0.00497195264, 0.0140808159, -0.0119127687, -0.00812060107, -0.013406653, 0.00253960304, 0.00222933479, 0.0011998954, 0.0314711593, -0.0187539924, 0.0222627036, 0.0268899146, 0.0294333473, 0.00971407723, 0.01938219, -0.0116293132, -0.0243158378, 0.0053511695, 0.0138356658, -0.00366001623, -0.000707200903, 0.0114837559, 0.0146553861, 0.00437056879, 0.00792907737, -0.017022619, 0.0133147212, -0.0114377895, 0.0135139059, 0.000711510191, 0.0116599575, 0.0338920169, -0.00648498954, -0.00521327276, -0.00943062268, 0.00779118, -0.00496812258, -0.0173443779, -0.0234731343, -0.000906864298, 0.0116829397, 0.00387452263, 0.00311225862, -0.0108632194, -0.0125486264, 0.0182024036, -0.0384579413, 0.00289200642, -0.000721565215, 0.00441653421, 0.0180798285, -0.00633943127, 0.00443185633, 0.00199567596, 0.0149311805, 0.0123800859, 0.00315247849, 0.0211748499, -0.0162565242, 0.00743111596, 0.0161339492, -0.00970641617, -0.00542394863, 0.0124337124, -0.00643519312, 0.00938465726, -0.00521327276, -0.0165169965, -0.0155287338, -0.000670332636, 0.00280390563, -0.00628197426, -0.00972173829, -0.00150633312, -0.0170072969, 0.0169460084, 0.0159041211, 0.0293567386, -0.0109245069, -0.011269249, -0.0154827684, 0.00504473178, -0.00891733915, -0.0116369743, -0.00481490372, -0.0217570812, 0.00162124739, -0.00623983936, 0.0150843989, 0.00697912043, 0.0473446362, 0.0280390568, -0.0253117606, -0.0121196136, -0.0114684338, 0.000139453128, -0.00871815439, 0.0126022538, -0.0171758365, -0.00574953854, -0.0103039704, 0.00136843615, -0.0162718464, -0.00543160969, -0.0161033049, -0.00508303661, 0.0023212661, -0.0140961371, -0.0322985426, -0.0157968663, 0.0229215454, -0.0114224683, -0.0296172109, -0.0311340783, -0.0159194432, -0.00842703879, -0.000501313072, 0.00563079398, -0.00761880912, 0.00112041307, -0.0222473815, 0.000352642848, -0.0143489484, -0.0149235195, -0.0084347, 0.0140195284, -0.0116599575, -0.0117289061, 0.0509299561, -0.00118648878, -0.0186007731, -0.0138892923, -0.00247640023, 0.00672630919, 0.00783331599, 0.00295903976, 0.00343784876, 0.00507920608, 0.00539330486, 0.0167161804, -0.0240094, -0.0137896994, 0.00220635207, 0.000186137011, 0.0235344209, 0.00171605148, 0.0142723396, -0.00774138421, -0.00718213525, -0.00799802598, 0.00682590157, -0.00858791824, -0.00152261264, 0.0159041211, 0.0321759656, -0.00375577784, 0.0167468246, -0.00281348173, 0.0127095068, -0.0308276396, -0.00456975307, 0.0188459232, -0.00992092304, -0.0194128323, 0.00516730687, 0.00887137372, 0.00394155597, 0.0239787549, 0.0104035623, -0.022415923, 0.0216804724, 0.0169919748, 0.0093386909, 0.00858791824, 0.00256641628, -0.0204240773, -0.0206079409, 0.0125639485, 0.0202095713, 0.00292648072, 0.0166242495, -0.00366576179, 0.00860324, -0.000543927075, -0.0171911586, 0.0178346783, 0.0115603646, -0.0123494426, -0.0115986699, -0.0182943344, 0.00192768511, -0.00770691, 0.0194741208, 0.000115093717, 0.0110164378, -0.00121809018, -0.00297819218, -0.000976770418, 0.000869517156, -0.0210522749, -0.0101890564, 0.000479527225, -0.00314290239, -0.00341295078, 0.0211901721, -0.00206845487, -0.00226380909, 0.00338039175, -0.0125792706, -0.00938465726, -0.00633177068, 0.0102656651, -0.0313026197, -0.000343306077, -0.00380174373, -0.0171605144, 0.00848066527, -0.0156742912, -0.00789843313, -0.00861090142, 0.00329612126, 0.00628580479, 0.0199184548, 0.0115910089, 0.00807463564, -0.00453144871, 0.0105567817, 0.00370406662, 0.00854961388, 0.0209756661, -0.0296018887, -0.0203168243, -0.00665736059, -0.0027656008, -0.020056352, 0.0177274253, 0.00756901316, -0.0245456658, -2.22646195e-05, 0.00968343392, -0.0152606014, 0.0130389277, -0.0129010305, -0.00124873396, 0.0212054942, 0.00282688835, -0.00931570865, 0.00101028709, -0.034351673, -0.0168694, 0.0295865666, -0.00104954932, -0.00305480161, 0.0236263517, -0.000225638752, 0.00157911214, -0.0190144647, 0.0120047, 0.0210829191, 0.00359106762, 0.00803633, 0.0223852787, -0.002507044, -0.00849598739, -0.00742728543, -0.00287285401, -6.97265641e-05, 0.0027656008, 0.0218030475, -0.0162105579, -0.0114684338, -0.00224082614, 0.00620153453, 0.00478042942, 0.00318312226, -0.0216498282, 0.0186927039, -0.00650414173, -0.0102886483, 0.010020515, -0.0111619961, -0.035148412, 0.00738898059, -0.00330569758, 0.0165782832, -0.0163484551, -0.0266754087, 0.00741196377, -0.0150843989, 0.02142, -0.0012343697, 0.0101124467, 0.0133530255, 0.00562313292, -0.00134449569, 0.0255875532, 0.00543160969, 0.0135368882, 0.0149311805, -0.00241894322, -0.000875262893, -0.00546225347, 0.0213433914, -0.0204547215, -0.00249746791, -0.00300500542, -0.00515964581, -0.0130848931, 0.017466953, -0.0017668053, 0.0184628759, -0.0013607752, 0.00702125533, -0.0107176611, -0.0108862016, 0.0167468246, -0.000784767966, -0.01428, -0.00352978, -0.0106716957, 0.00106870173, 0.00931570865, 0.0181870814, -0.0260012448, 0.0127707943, 0.00310651283, 0.000217738401, -0.0227223616, -0.00815890543, -0.00881774724, 0.00722810114, -0.0194434766, -0.00375386281, 0.0112156225, -0.0106640346, -0.0122115454, -0.0231513735, -0.00186256703, -0.0166548938, 0.00413307967, 0.000191044805, -0.00503707072, -0.00540862652, 0.00187501614, 0.0121042924, 0.00616706, -0.00386877684, 0.00862622354, 0.0204394, 0.00220060628, 0.00928506441, 0.00938465726, 0.000567388663, 0.0173750222, 0.0284527466, 0.018370945, -0.0197039489, -0.000336842146, 0.00962980743, -0.00687569752, 0.0109474892, 0.000875262893, -0.0244997, -0.00453144871, -0.0164710302, -0.0331872106, -0.0069408156, 0.0161799137, -0.00709403446, 0.00613641646, -0.0137284119, 0.000358867372, -0.034351673, 0.0184935201, 0.0144332191, -0.00517879846, -0.0132151293, -0.00683739269, 0.018922532, 0.0148392487, -0.0232739486, -0.029065622, -0.0323291868, -0.0247295275, 0.0190451071, 0.00874879863, 0.0208837334, 0.00119798013, -0.00956085883, 0.0148009444, 0.0147396568, 0.0214353222, 0.0201176405, -0.00209526834, 0.0131078754, 0.0271657091, 0.0110164378, 0.0108555583, 0.0117748715, -0.00795206055, -0.0114837559, 0.00560015, -0.0224465672, 0.00316205481, -0.0169153642, -0.00325398613, -0.0109168459, 0.0120047, -0.0074579292, 0.0186927039, -0.000327505375, -0.00789077301, 0.00725874491, 0.00985197444, -0.000305958965, 0.0133223822, 0.00225806329, 0.00864920579, -0.0114224683, 0.0212514587, -0.00931570865, -0.0091854725, -0.0119817173, -0.00089728809, 0.0169460084, 0.00402965676, -0.00283646467, -0.00781033281, 0.0234118458, 0.00643136259, 0.015781546, 0.0240860097, 0.00696379831, 0.00981367, 0.00574953854, 0.00816656649, 0.0059027574, -0.0113228755, 0.000261669134, 0.0108938627, 0.0046540238, 0.000183383861, 0.0139659019, -0.0188306011, -0.0180645064, 0.0033631546, -0.00674546137, 0.0239481125, -0.00192768511, -0.0119970385, 0.00387835316, -0.0237489268, -0.0273955371, 0.000989219407, 0.0139888842, 0.0119204298, -0.00314864819, -0.0153525323, -0.00352020399, -0.013636481, 0.0138663091, 0.00175914436, -0.0088560516, 0.0153142279, -0.00432843342, -0.00226763962, 0.000692357833, 0.00818188861, 0.0173903443, 0.00531286467, -0.00455826195, 0.00855727494, 0.00479192054, 0.00548523618, 0.00185873662, 0.0108019318, -0.0136747854, -0.023105409, 0.00868751109, -0.0150384335, -0.0390708148, 0.00216421671, 0.0020339808, -0.0162105579, 0.00989794, 0.0159194432, -0.0229675118, -0.0143642705, -0.0153448712, 0.00205696351, -0.00774904527, -0.00462721055, -0.00968343392, -0.0108785406, -0.0025798229, -0.00706722122, 0.0121042924, 0.0106946779, -0.0307816751, 0.00645817583, 0.012050665, -0.00563845504, 0.0157049354, 0.00633943127, 0.0224925317, 0.00402582623, 0.0197039489, 0.0246682409, 0.00355850859, -0.0120889703, -0.00716681359, 0.0377224907, -0.00235382514, 0.00928506441, 0.0140578328, 0.000503228279, 0.0133147212, 0.0121272746, 0.0227683261, -0.0260472111, 0.0045391093, -0.000211513878, 0.014532811, -0.00175244105, -0.00173328863, -0.00645817583, 0.0227836482, 0.0156130046, -0.0107636265, 0.0106027471, -0.0163791, -0.00742728543, 0.0020627093, -0.0144791845, 0.00661139516, -0.00359872868, 0.00553886266, -0.00921611581, -0.00164423021, 0.00392623385, 0.000638731231, 0.0137820393, -0.00407562219, 0.0134372963, 0.00768775772, 0.0136977686, -0.0210216306, -0.00592957111, -0.00363703328, 0.00308544538, -0.0047651073, -0.0188765675, 0.0113994852, 0.00244001066, -0.00981367, 0.00910120178, 0.00552737154, -0.00314481766, 0.00922377687, -0.00055015157, -0.00227721571, 0.00871815439, 0.00810527895, -0.00648498954, -0.00706339069, -0.0207611583, -0.0119127687, 0.000166027021, 0.0179419313, -0.00305288634, -0.0113381976, 0.00389559, -0.025342403, 0.0249593575, 0.00141152903, -0.00520178117, 0.00344167929, 0.00780650228, -0.00190661754, 0.0161033049, -0.0243924465, -0.00565760722, 0.0211595278, -0.00905523635, 0.00185586372, 0.0032501556, 0.0254343357, -0.00867985, 0.0124720177, 0.00636624452, 0.00712850876, -0.0134296352, 0.0365273841, -0.0182943344, -0.00128033536, 0.00649648067, -0.008787103, -0.0220788419, -0.0160726607, -0.0107176611, 0.0023270119, 0.0110930474, 0.0109168459, -0.0195813738, -0.000772797735, -0.00761114806, 0.0115986699, 0.0107406443, 0.0143949147, -0.000557812513, 0.00586828357, 0.0111926394, 8.7981156e-05, 0.00946126599, -0.00510218879, 0.00452378765, 0.00692932401, 0.0108249141, -0.00537798274, 0.0107176611, -0.00130810624, -0.000123652426, -0.028835794, -0.0136747854, -0.00974472146, 0.0115067381, 0.0345661789, 0.0021010139, -0.00407945272, 0.0075613521, -0.0328501277, -0.0125256442, -0.00854961388, 0.0262923613, 0.00646966742, -0.0201023184, -0.0119204298, 0.0195660517, -0.00164997589, -0.00292839599, -0.00552354101, -0.0275640786, -0.0140501717, -0.010028176, 0.0174209867, -0.0155057516, 0.000527168741, -0.0172984116, 0.0304445922, -0.0220328756, 0.00093224115, 0.00514049362, 0.00337273069, -0.00875646, 0.00259322976, 0.0323291868, -0.00771074044, -0.020393433, 0.0195200853, -0.00871815439, -0.0115833478, -0.0094459448, 0.0329420604, 0.00640454935, -0.0036121353, 0.00670715654, 0.00815124437, 0.00812060107, 0.00305097108, 0.0014076985, 0.0145021677, 0.00289583695, -0.0225538202, -7.84049735e-06, 0.00492598722, -0.00682590157, 0.0213740338, 0.000483836513, 0.00465785433, -0.0154827684, -0.00040626945, -0.00218528439, 0.00131959771, 0.0222780257, 0.0079750428, 4.44693869e-05, 0.0124490345, 0.0113305366, 0.00382855698, -0.00625133049, 0.00228104624, -0.0131155364, -0.023212662, -0.0148622319, 0.0125256442, -0.00729321921, -0.0093386909, 0.0105414595, 0.00259897532, -0.00711701717, -0.00897096563, -0.00409094431, 0.000812060083, -0.00812826212, -0.00832744688, -0.0050600539, 0.00733152358, 0.00784097612, 0.00365044, 0.00684888428, -0.0254803, 0.0126788625, 0.00282114279, -0.023212662, -0.00536266109, 0.00180989807, -0.0200716741, 0.0262770392, -0.0182177257, 0.0172064807, 0.0168081112, 0.00955319777, -0.0104265455, -0.00818955, -0.00406796159, -0.00414840132, 0.00352211925, -0.0207764804, -0.00201865891, -0.00729321921, -0.0353016332, -0.0159807298, -0.00777968904, 0.0284067821, 0.00537032215, 0.0213587135, -0.0209756661, -0.0246375967, -0.0242085848, -0.00319269858, 0.00980600901, 0.00913184602, -0.0075613521, -0.00624366943, -0.0166395716, 0.0240860097, -0.00956852, 0.00466551492, -0.00718979631, 0.00681057945, 0.00261046668, -0.0117825326, 0.00704040797, -0.00240553659, 0.0146400649, -0.00520178117, -0.0108325751, -0.00883306842, 0.0242698714, -0.00677227462, 0.0043935515, 0.013529228, -0.0121885622, -0.00277900766, -0.00343784876, -0.00702508586, -0.00650797226, -0.00683739269, 0.00482639484, -0.0115373824, -0.00618238188, 0.01532955, 0.00200908259, -0.0108325751, -0.00723576173, -0.0169613305, 0.0079750428, 0.000637773599, 0.0241779406, -0.00639688829, 0.00515198521, 0.00901693106, -0.0080133481, 0.0120966313, 0.0110930474, 0.00169594155, 0.00275219418, -0.0277632624, 0.0254343357, 0.0198724903, 0.0243771244, -0.018370945, 0.0206385832, -0.029065622, 0.0281922743, -0.000505622302, -0.0140654938, 0.0148622319, 0.00348572969, 0.0047995816, 0.0226304289, 0.00688718911, -0.00926208124, 0.0171605144, -0.0136134978, -0.0117442273, -0.00753453886, 0.0163791, 0.000285370188, -0.00761497859, -0.00939997844, -0.00221975869, 0.00514815468, 0.00740047218, -0.00969109498, 0.0186467376, 0.00372704933, 0.0230594426, -0.0235037766, -0.00529754302, -0.00261429721, 0.00196503219, -0.00849598739, 0.011047082, -0.00489151292, -0.0101047857, 0.0124490345, -0.0110547431, 0.0190757513, -0.0265987981, 0.00425182423, -0.00751155568, -0.00370215136, 0.00269090664, 0.00637773611, -0.0118974466, 0.00936167408, -0.0220788419, -0.0134449573, -0.00422501098, 0.00622451724, -0.00254343357, 0.0162565242, 0.00407945272, 0.0106716957, -0.00275027892, -0.00610194216, -0.0237642489, 0.0104648499, 0.00687186699, 0.0104495278, 0.0123647638, 0.0193362236, 0.0114607727, 0.00356233912, -0.0111466739, -0.000229708632, -0.00603682408, 0.000377301505, 0.0138969533, 0.00444334792, -0.00351445819, 0.0100588202, -0.0205619745, -0.0125179831, -0.00511368038, -0.00933103, 0.00985197444, -0.0238561798, -0.0099285841, -0.00345508591, 0.022094164, 0.0163637772, -0.00282688835, 0.02499, -0.0148315886, -0.00602150243, 0.00835042913, -0.0070442385, 0.0114224683, -0.01532955, -0.00357, -0.00828914158, -0.0039798608, -0.0143259661, 0.00573038636, -0.00794439949, -0.0130312666, -0.00772223203, 0.00158198504, -0.00901693106, -0.0035431867, 0.018478198, -0.00585679198, -0.0027656008, -0.063310042, 0.00120947161, 0.0235037766, 0.0317163095, 0.0281463098, 0.0105797639, -0.00901693106, -0.0136977686, 0.00165380631, 0.0213280693, 0.0120047, 0.00415223185, -0.0156896133, 0.0174209867, -0.010817253, -0.000822593924, 0.0117518883, -0.00532818679, 0.0215272531, -0.00817422755, -0.00067943, -0.0319308154, -0.00318695279, 0.0180951506, 0.0141344424, -0.00890201703, -0.00334591744, 0.00696762884, -0.0126482192, -0.0218030475, -0.00800568704, 0.0208377689, 0.0424109884, -0.0117978547, -0.00113190454, -0.00271197432, -0.0287745073, 0.00255300966, 0.00189321092, 0.00505622337, 0.00103997323, 0.00676078349, -0.000795301807, -0.0242085848, 0.00817422755, 0.00786779, 0.0244690552, 0.0172064807, 0.000290637079, 0.00818955, -0.0146247428, 0.037753135, -0.00242277374, 0.00424416317, 0.00615173811, 0.00270239799, 0.00789843313, -0.0084576821, 0.00733918464, 0.00819721073, 0.00615556864, -0.0220788419, 0.00744260754, -0.00184149947, 0.00286327791, 0.0267366953, -0.0010677441, 0.00955319777, 0.017911287, -0.0189531762, 0.00503707072, -0.00241894322, -0.000145677637, 0.012847404, -0.00178787287, 0.014984807, -0.016562961, -0.00240170606, -0.00434758607, -0.00466934545, -0.00109743024, 0.0141114593, 0.0184628759, -0.00661522523, 0.0101813953, 0.00225614803, -0.0241626184, 0.0146170817, -0.0138663091, 0.0274261814, 0.014877554, 0.00599468872, 0.0227223616, 0.0133453654, -0.0222473815, -0.00282305805, 0.00281731226, -0.00116159068, 0.0140195284, -0.000891063595, 0.0101737343, 0.0225078538, 0.0247448497, -0.00902459212, 0.0220328756, -0.0249746777, -0.00866452791, -0.00930038653, -0.0150231114, 0.0155747, 0.00402582623, -0.0106716957, -0.0210522749, -0.00971407723, 0.0290503018, 0.0135062449, -0.00277709239, 0.00338039175, -0.0190451071, 0.0145940986, 0.00596787548, -0.0415836051, 0.00193151564, -0.00225231773, 0.00897096563, 0.00928506441, -0.00360064371, -0.010932168, -0.0365273841, -0.00257216208, 0.000607129827, 0.0100894636, 0.00903225318, -0.0182177257, 0.00607512891, -0.013521567, -0.00913184602, 0.0195354074, -0.014088477, -0.00383047224, -0.0110624032, -0.00055015157, 0.00578018231, -0.014869893, -0.00780650228, 0.014647726, -0.0141574247, 0.000187573431, 0.00347232306, -0.0156053435, -0.00983665232, 0.00301266625, 0.00670715654, 0.00535883056, 0.000740238756, 0.000305240741, 0.00998987164, -0.0106410515, 0.015996052, -0.00266600866, -0.00296287029, -0.00820487179, -0.00433226395, 0.008925, -0.00714766094, 0.0029571245, -0.00656926, -0.0175282415, -0.0141191203, -0.0247295275, 2.27733544e-05, 0.00359106762, -0.00327696884, 0.0209756661, 0.0025855687, 0.0183096565, -0.00955319777, -0.0158121884, 0.0098902788, -0.00568442047, 0.0237795711, 0.00820487179, -0.011713584, 0.00110413355, 0.0152835837, -0.0335549377, 0.0171605144, 0.00162699306, 0.00388601399, 0.00107732031, 0.0101047857, 0.00383238751, -0.0177121032, 0.00489151292, 0.0187233482, -0.00469232863, 0.000293988734, 0.0137054296, -0.0146860303, -0.00359106762, -0.00707871234, 0.0204240773, 0.00404114835, 0.00569591206, 0.00907055847, 0.00813592318, -0.00176201714, 0.0193362236, 0.0288817603, -0.0122958161, -0.00273495703, 0.0117365671, 0.0248214602, -0.0167161804, 0.00826615933, -0.00116063305, -0.0294333473, 0.0230287984, -0.00879476406, -0.00146611326, 0.0385192297, -0.0118668023, 0.0370483249, -0.00184820278, 0.0268439483, 0.000850364799, 0.0160266962, 0.00162986596, -0.0027713466, 0.00930804759, -0.0104035623, 0.00939231738, 0.0160726607, -0.0308889281, 0.00592574058, -0.00985963549, -0.0115910089, 0.005240086, -0.00995156635, 0.0112769101, 0.00160688302, 0.0254036915, -0.0100051928, 0.0291115884, 0.00445866957, -0.0139505798, 0.0504090153, -0.0205160081, -0.00847300421, 0.000773755368, -0.00683739269, 0.0049030045, 0.00671864813, 0.00394155597, 0.00826615933, -0.0178040341, -0.00550821889, -0.00301266625, -0.00402965676, 0.0231820177, -0.0119663952, 0.0033918831, 0.0114071462, 0.00522859441, 0.000518071349, -0.0167161804, -0.00909354072, 0.00505239284, 0.00262578856, -0.00881008618, 0.00879476406, -0.00712850876, -0.0126328971, 0.00139141898, -0.0280084126, -0.0194281545, -0.0202555377, 0.00437056879, -0.00846534315, -0.0198724903, -0.0135828545, -0.0242851935, -0.0038764379, 0.00582997873, -0.0216038637, -0.0136211589, -0.0186160952, -0.00179553381, 0.0109398281, 0.0160420183, 0.0119204298, 0.000813496532, 0.00110796408, 0.00783331599, -0.0108249141, -0.00450846553, 0.00260280585, 9.17517755e-05, 0.0203781128, -0.035822574, 0.000936550437, -0.0237336047, -0.00104188838, 0.00656926, -0.0135139059, 0.00303564919, 0.014647726, -0.0129929613, -0.00221784343, 0.00118936156, -0.0169766527, 0.012962318, -0.00926208124, -0.00692166341, 0.00230211369, -0.0152759226, -0.00496429205, -0.0117978547, -0.00187597377, -0.00548523618, 0.00714383041, 0.0253730472, 0.00273687229, -0.00378067605, 0.0138203437, 0.0143949147, 0.0216957945, -0.00184820278, 0.0115756867, 0.00335357827, 0.0133453654, -0.00740430271, -0.0194894429, 0.00135311426, 0.00128320814, 0.00645817583, 0.00794439949, -0.0147243347, -0.00947658811, -0.0104418667, -0.00401050458, 0.00848066527, -0.0220022313, -0.00101507513, 0.00464636274, 0.00704806857, -0.0217724033, -0.00408711378, 0.00898628775, -0.0121425968, -0.013176824, -0.00191906653, 0.00523625547, -0.00305288634, 0.0231820177, -0.0137130907, -0.0114377895, 0.00935401302, 0.020163605, 0.0108019318, 0.0155976824, -0.0171145499, -0.0131385196, -0.00798270386, 0.0043169423, 0.00403731782, -0.00737365894, -0.0247448497, 0.00483788643, 0.00222167396, 0.00592191, -0.00675695296, 0.00698295096, 0.0782642066, 0.0247448497, -0.0033229345, -0.0168847218, 0.00012305392, 0.0160726607, -0.0215885416, 0.0422271267, 0.00946126599, 0.0147932833, -0.00667268271, 0.00392048806, 5.15318206e-05, -0.00635092286, -0.0207764804, -0.00126405584, -0.0269205589, 0.00319078332, 0.0159807298, -0.000624845794, -9.25298446e-05, -0.00673780032, 0.0125486264, -0.0109781334, 0.00107732031, -0.015781546, -0.0202095713, 0.00444334792, -0.0343823172, 0.00758050429, -0.0138280047, -0.00815890543, -0.00436290773, -0.00401050458, -0.0292801298, 0.0204853658, -0.00607895944, -0.00848832633, 0.0119127687, -0.0319921039, 0.00347232306, 0.00767626613, 0.00546225347, 0.0166089274, 0.00846534315, -0.010135429, -0.0165936053, -0.00411009649, 0.00073975994, -0.0131461807, -0.00658075139, -0.0220328756, 0.0254649781, -0.0184322316, -0.00305097108, 0.00279624457, 0.00292839599, -0.00854195282, 0.00514815468, 0.022415923, 0.000565473456, 0.0283761378, 0.0245609879, -0.00105433748, 0.00192960037, -0.0102503439, -0.00848066527, 0.00834276807, -0.00811294, 0.005014088, 0.0136518031, -0.008787103, 0.0179725755, -0.0106563736, -0.00465785433, 0.00962214638, -0.0105414595, 0.00775670633, -0.0189378541, -0.0214353222, 0.0039453865, -0.00570740364, -0.0187233482, 0.00243809563, 0.00899394881, 0.0148469098, -0.00198609987, -0.0129853, -0.0134526184, 0.0277785845, 0.00151207892, 0.0150843989, -0.0252198279, 0.0016222049, -0.0122575108, 0.000402678386, -0.0120889703, 0.0132534336, 0.00985197444, -0.0122115454, 0.0106104081, 0.0114224683, 0.0107559655, 0.00395687763, 0.0110547431, 0.00119223446, 0.0168387555, -0.00112711638, 0.0149618238, -0.0156589709, 0.0130312666, -0.00483788643, -0.00565377669, 0.0148622319, 0.00398369087, 0.0140578328, 0.00323100318, 0.018478198, 0.010365258, -0.0117672104, 0.01622588, 0.0193515457, -0.0218490139, -0.0136441421, -0.017237125, 0.0201482829, 0.00853429176, 0.00667651277, 0.00941530056, 0.00299925962, 0.0269818455, -0.0162565242, 0.00756901316, -0.00532818679, 0.003098852, 0.0128090987, -0.0160573386, 0.011261588, -0.000291115895, 0.0131615028, 0.000243594084, 0.00920845475, 0.00378833688, -0.000582231791, 0.00697912043, 0.00296670059, 0.0192902572, 0.000273160549, 0.0487236045, -0.0116599575, -0.0258633476, -0.00514432415, 0.0221094862, -0.0218336917, 0.000380413752, -0.0131998071, -0.0116599575, -0.00678759674, 0.015888799, 0.00622451724, -0.0190604292, 0.00486469967, -0.000226835778, 0.0186467376, 0.0200869963, 0.00592957111, 0.00220826711, 0.00936933514, 0.00309310621, 0.00617472129, 0.04284, -0.00925442111, -0.00190757518, 0.00752304727, -0.000187214333, 0.00410626596, -0.0212361384, 0.0183096565, -0.0212054942, -0.00652712444, -0.00991326198, -0.000170456013, -0.0103499359, 0.0239787549, -0.0156206656, -0.0218183696, 0.00198226934, 0.00544310082, 0.0429625772, 0.0371402577, -0.0144868456, -0.0127018457, -0.0232433043, -0.0026583476, -0.00544310082, -0.01071, 0.00912418496, -0.00581465662, 0.00729321921, -0.0123264594, -0.00146707089, 0.00296478556, -0.000773276552, -0.00307203876, -0.0217111167, 0.0153908376, 0.0027713466, -0.0052822209, -0.000282736728, 0.000547278731, 0.00140961376] |
06 Mar, 2025 | Minimum insertions to form a palindrome with permutations allowed
06 Mar, 2025
Given a string of lowercase letters. Find minimum characters to be inserted in the string so that it can become palindrome. We can change the positions of characters in the string.
Examples:
Input: geeksforgeeksOutput: 2Explanation: geeksforgeeks can be changed as: geeksroforskeeg or geeksorfroskeeg and many more using two insertion.Input: aabbcOutput: 0Explanation: aabbc can be changed as: abcba or bacab without any insertion
Table of Content
[Expected Approach] Character Frequency Counting – O(n) Time and O(1) Space[Alternate Approach] using Bit manipulation – O(n) Time and O(1) Space[Expected Approach] Character Frequency Counting – O(n) Time and O(1) SpaceTo make a string palindromic, count the occurrences of each character. A palindrome can have at most one character with an odd frequency; the rest must occur an even number of times. The minimum insertions required are one less than the count of characters with odd frequencies. If the string is already a palindrome, no insertions are needed (result = 0).
C++
#include <bits/stdc++.h>
using namespace std;
int minInsertion(string &str)
{
int n = str.length();
int res = 0;
vector<int> count(26,0);
for (int i = 0; i < n; i++)
count[str[i] - 'a']++;
for (int i = 0; i < 26; i++)
if (count[i] % 2 == 1)
res++;
return (res == 0) ? 0 : res - 1;
}
// Driver program
int main()
{
string str = "geeksforgeeks";
cout << minInsertion(str);
return 0;
}
Java
public class GfG {
static int minInsertion(String str)
{
int n = str.length();
int res = 0;
int[] count = new int[26];
for (int i = 0; i < n; i++)
count[str.charAt(i) - 'a']++;
for (int i = 0; i < 26; i++) {
if (count[i] % 2 == 1)
res++;
}
return (res == 0) ? 0 : res - 1;
}
// Driver program
public static void main(String[] args)
{
String str = "geeksforgeeks";
System.out.println(minInsertion(str));
}
}
Python
import math as mt
def minInsertion(tr1):
n = len(str1)
res = 0
count = [0 for i in range(26)]
for i in range(n):
count[ord(str1[i]) - ord('a')] += 1
for i in range(26):
if (count[i] % 2 == 1):
res += 1
if (res == 0):
return 0
else:
return res - 1
# Driver Code
str1 = "geeksforgeeks"
print(minInsertion(str1))
C#
using System;
public class GfG {
static int minInsertion(String str)
{
int n = str.Length;
int res = 0;
int[] count = new int[26];
for (int i = 0; i < n; i++)
count[str[i] - 'a']++;
for (int i = 0; i < 26; i++) {
if (count[i] % 2 == 1)
res++;
}
return (res == 0) ? 0 : res - 1;
}
// Driver program
public static void Main()
{
string str = "geeksforgeeks";
Console.WriteLine(minInsertion(str));
}
}
JavaScript
function minInsertion(str)
{
let n = str.length;
let res = 0;
let count = new Array(26);
for (let i = 0; i < count.length; i++) {
count[i] = 0;
}
for (let i = 0; i < n; i++)
count[str[i].charCodeAt(0) - "a".charCodeAt(0)]++;
for (let i = 0; i < 26; i++) {
if (count[i] % 2 == 1)
res++;
}
return (res == 0) ? 0 : res - 1;
}
let str = "geeksforgeeks";
console.log(minInsertion(str));
Output2[Alternate Approach] using Bit manipulation – O(n) Time and O(1) SpaceInitialize a mask to 0 and toggle bits for each character based on its position in the alphabet. If the mask becomes 0, the string is already a palindrome (return 0). Otherwise, the minimum insertions required are the number of set bits in the mask minus one.
C++
#include <bits/stdc++.h>
using namespace std;
int minInsertion(string &str)
{
long long mask = 0;
for (auto c : str)
mask ^= (1 << (c - 'a'));
if (mask == 0)
return 0;
int count = 0;
while (mask) {
count += mask & 1;
mask = mask >> 1;
}
return count - 1;
}
// Driver program
int main()
{
string str = "geeksforgeeks";
cout << minInsertion(str);
return 0;
}
// This code is contributed by hkdass001
Java
import java.util.*;
public class GfG {
static int minInsertion(String str)
{
long mask = 0;
for (char c : str.toCharArray())
mask ^= (1 << (c - 'a'));
if (mask == 0)
return 0;
int count = 0;
while (mask != 0) {
count += mask & 1;
mask = mask >> 1;
}
return count - 1;
}
// Driver program
public static void main(String[] args)
{
String str = "geeksforgeeks";
System.out.println(minInsertion(str));
}
}
// This code is contributed by Karandeep1234
Python
def minInsertion(str):
mask = 0
for c in str:
mask ^= (1 << (ord(c) - ord('a')))
if mask == 0:
return 0
count = 0
while mask:
count += mask & 1
mask = mask >> 1
return count - 1
str = "geeksforgeeks"
print(minInsertion(str))
C#
using System;
using System.Collections.Generic;
class GfG
{
static int minInsertion(string str)
{
int mask = 0;
foreach(char c in str)
mask ^= (1 << (c - 'a'));
if (mask == 0)
return 0;
int count = 0;
while (mask>0) {
count += mask & 1;
mask = mask >> 1;
}
return count - 1;
}
// Driver program
static void Main(string[] args)
{
string str = "geeksforgeeks";
Console.Write(minInsertion(str));
}
}
JavaScript
function minInsertion(str) {
let mask = 0;
for (let c of str) {
mask ^= (1 << (c.charCodeAt(0) - 'a'.charCodeAt(0)));
}
if (mask === 0) {
return 0;
}
let count = 0;
while (mask) {
count += mask & 1;
mask = mask >> 1;
}
// return the count minus 1
return count - 1;
}
// Driver program
let str = "geeksforgeeks";
console.log(minInsertion(str));
Output2 | NLP/Natural Language Processing (NLP) Tutorial/AI ML DS - Projects/30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated]/Does Artificial Intelligence Require Coding?/Artificial Intelligence – Boon or Bane/Artificial Intelligence Examples/Agents in Artificial Intelligence/What are Diffusion Models?/ML | Common Loss Functions/Loss Functions in Deep Learning/Kaiming Initialization in Deep Learning/Swift - Initialization/Swift – If Statement/6 Best iOS Project Ideas For Beginners/Swift Programming Language/Introduction to Visual Programming Language/What is D Programming Language: Usage and Applications/Best Programming Languages for Data Science in 2024/5 Best Languages for Competitive Programming/MEX (Minimum Excluded) in Competitive Programming/Rearrange Array to maximize sum of MEX of all Subarrays starting from first index/Minimize moves to segregate even and odd by swapping adjacent elements/Minimum elements to be removed such that sum of adjacent elements is always even/Maximum sum such that exactly half of the elements are selected and no two adjacent/Maximum length subsequence such that adjacent elements in the subsequence have a common factor/Longest subsequence such that difference between adjacents is one/Longest Increasing Subsequence using Longest Common Subsequence Algorithm/Longest Common Subsequence (LCS)/Minimum insertions to form a palindrome with permutations allowed | https://www.geeksforgeeks.org/minimum-insertions-to-form-a-palindrome-with-permutations-allowed/?ref=lbp | NLP | Minimum insertions to form a palindrome with permutations allowed | Artificial Intelligence – Boon or Bane, AI ML DS - Projects, Longest Common Subsequence (LCS), Rearrange Array to maximize sum of MEX of all Subarrays starting from first index, MEX (Minimum Excluded) in Competitive Programming, Swift - Initialization, Minimum insertions to form a palindrome with permutations allowed, Longest Increasing Subsequence using Longest Common Subsequence Algorithm, 6 Best iOS Project Ideas For Beginners, ML | Common Loss Functions, Artificial Intelligence Examples, Longest subsequence such that difference between adjacents is one, What is D Programming Language: Usage and Applications, 30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated], Swift – If Statement, Natural Language Processing (NLP) Tutorial, Loss Functions in Deep Learning, Minimize moves to segregate even and odd by swapping adjacent elements, Maximum length subsequence such that adjacent elements in the subsequence have a common factor, Does Artificial Intelligence Require Coding?, Best Programming Languages for Data Science in 2024, NLP, 5 Best Languages for Competitive Programming, Maximum sum such that exactly half of the elements are selected and no two adjacent, Swift Programming Language, Minimum elements to be removed such that sum of adjacent elements is always even, Agents in Artificial Intelligence, What are Diffusion Models?, Kaiming Initialization in Deep Learning, Introduction to Visual Programming Language | GeeksforGeeks | [0.00372224208, 0.010201701, -0.0103685847, 0.00581917772, 0.00774197374, 0.0331736654, 0.00508996658, 0.0240603406, -0.0287766326, -0.0116673792, -0.00601508515, 0.0137933381, 0.017413998, -0.0300681703, -0.0317225, -0.0217674989, -0.00795964804, -0.000675245945, -0.0101146307, -0.00843853317, -0.0186474901, -0.00612392277, -0.0506457128, 0.0143375257, 0.00702001806, 0.0464083068, 0.027731793, 0.0236975495, -0.016412694, 0.0181250703, 0.0328544118, -0.0198664702, 0.0130967777, -0.00940355938, -0.00132418948, 0.00276991422, 0.00346828811, 0.0269771852, -0.0263386723, -0.0135684069, -0.0179944653, 0.013800594, -0.0127702653, -0.00273907697, 0.00425917376, 0.0344797187, 0.010571748, 0.0138441287, -0.0101509104, -0.0202147495, 0.0270642564, -0.031461291, 0.0544767939, 0.0424321108, 0.00536206039, 0.00268284418, -0.0101218866, 0.00785806682, 0.0224930812, 0.0079451371, 0.00946160592, -0.0309969168, -0.0100638401, 0.00153098069, 0.018531397, -0.0334058553, -0.041155085, 0.0276592337, 0.0202873088, -0.00943983812, -0.0565954968, 0.0284573752, 0.0151937138, -0.0273254663, -0.00217674975, -0.0216223821, 0.019402096, 0.00308735692, -0.036192093, 0.0359308831, -0.0214482415, -0.0465534218, -0.0146132475, -0.0652444512, 0.0307357069, -0.00975909457, 0.0313161723, -0.038310796, 0.0204469375, 0.0393266119, -0.00194093527, 0.00260303, 0.0214627534, -0.00149379461, -0.0299811009, 0.0652444512, -0.0113553787, 0.0107168648, -0.0208387524, 0.0330575742, 0.029226495, 0.0155274821, -0.000938723388, -0.0222754069, 0.0323900357, 0.0460890494, -0.00144391076, 0.0209258217, 0.0538963266, 0.0330285504, 0.0222463831, -0.027122302, 0.00731387921, 0.00753155444, 0.00498475693, -0.0601363406, -0.0035390323, -0.0180089772, 0.0205920525, 0.0334929228, -0.00943258218, 0.0187635832, 0.00239805272, 0.014801899, -0.0414453149, 0.0338992514, -0.034944091, 0.000121535195, -0.000820362591, -0.0161224604, 0.00210419158, 0.00454577943, 0.0175155811, 0.000682955259, 0.0308227781, 0.0306776613, -0.0190828405, 0.026614394, 0.0165723227, 0.0351762772, 0.015672598, -0.00504643144, 0.00716513488, 0.0214192178, -0.0105427252, -0.00600420171, -0.0261645336, 0.0372659564, -0.00902625546, -0.000389320776, -0.0366274454, -0.0174575336, -0.0102887712, 0.0170221832, 0.0375852138, -0.013307197, 0.021027403, -0.0227978267, -0.00417210395, -0.0469597504, -0.00401610322, -0.0183282327, 0.0028714959, -0.0509069227, -0.0405455939, -0.00438252278, 0.010317794, 0.000918769802, -0.0195762366, 0.0400812216, -0.0163256228, 0.0407487564, 0.0431867167, -0.0182266515, -0.0127484985, -0.0202873088, 0.00856913812, -0.0308227781, -0.0116528673, -0.0389783345, -0.00854737125, -0.0108039351, 0.0170512069, -0.015541994, 0.0279349554, 0.00455666287, 0.00368052116, -0.0223915, 0.00986067671, -0.0235379208, -0.00274089072, 0.0248294603, 0.00281344913, 0.0137643144, 0.0389783345, 0.0178783722, -0.0380495861, 0.0077492292, -0.0106370505, 0.027601188, -0.00489768712, -0.0513422713, -0.0263096504, 0.010579004, 0.0179944653, -0.0298650078, -0.0473080277, -0.00377666089, 0.0340443663, 0.0175591148, -0.0227833148, 0.0450732335, -0.0232767109, -0.00753155444, 0.0315193385, 0.0166739039, -0.0214772653, 0.0304164514, -0.00224749418, 0.0028424724, -0.0224060118, 0.013923943, 0.0162675772, -0.0246408079, -0.054215584, -0.0258452762, -0.0351472534, 0.00920765195, 0.0168045089, -0.0114642158, 0.0249600653, 0.00620736508, -0.00970830396, 0.0208677743, 0.0170076713, -0.00661006384, -0.0352633484, 0.0157886911, 0.0219126157, 0.0263531841, 0.00858365, 0.0133579876, -0.00500652473, -0.029342588, 0.0314903148, -0.00501378, -0.00652662152, 0.0245102029, 0.00390001014, 0.0200260989, -0.0202147495, 0.0210854504, 0.0139892455, -0.0172543693, -0.00424829, 0.00736829825, -0.00510447845, 0.0182556752, 0.0312000811, 0.00158358552, 0.030097194, -0.00279349554, -0.0139021752, 0.0399361029, 0.0312000811, -0.0217094515, 0.0384559147, -0.0211725198, -0.0019373073, 0.0197213534, 0.0620518811, -0.0558118671, -0.0100420723, -0.0233492702, 0.032970503, -0.0505876653, -0.0536931604, -0.031461291, 0.042403087, -0.00268284418, 0.0193295386, 0.0740675405, 0.0307937544, 0.00984616484, 0.000489315193, -0.0398200117, -0.038920287, 0.00211688923, -0.0595558733, -0.0388041921, 0.0303584039, -0.00140581757, 0.0114714717, 0.0132056158, 0.00766941532, 0.0041176849, 0.0151356673, -0.00594615471, -0.0605426691, 0.0104193762, -0.0401392654, -0.046640493, -0.0288056564, -0.0105282133, -0.0556957722, -0.0100203054, 4.57174137e-05, -0.0219271258, -0.044666905, 0.00149832945, 0.0272383969, -0.0875924155, -0.00211507524, 0.00280075148, -0.0457407683, -0.0274125356, 0.0385720059, -0.00449498836, -0.052735392, -0.00509359455, -0.0108910045, -0.0391814969, 0.0181250703, 0.0115077505, 0.0407197326, 0.00608764356, -0.0024814948, 0.00713611161, 0.00103939802, -0.0428674594, -0.062922582, 0.00840225443, 0.00229647104, 0.00731750717, 0.000696106465, 0.00559787499, -0.0206646118, 0.00894644205, 0.0197213534, 0.0115948208, 0.0010693284, 0.00429545296, 0.00780727621, 0.0110143544, 0.00575387524, 0.0190973524, -0.00212233118, -0.0173124168, -0.0119866356, 0.00628355099, 0.00128246844, 0.0163111128, 0.0293280762, -0.0143955722, -0.00811927672, -0.0419387147, -0.00569945667, -0.0209258217, 0.0145624559, 0.0285299346, 0.0241329, 0.000906072091, 0.00340117165, -0.0118632866, 0.0156145524, -0.0567696355, 0.00723769329, 0.0194891673, -0.0108111911, -0.0333478078, -0.0188361425, 0.0041176849, -0.00925118662, -0.0309969168, 6.09376584e-05, -0.0296473317, 0.0421128534, -0.00104937481, 0.031606406, -0.00167065545, -0.0189522356, 0.0120229144, 0.0226962455, -0.0178638604, -0.00379117252, 0.00187926064, -0.0305905901, 0.0114787277, 0.0274705831, 0.0375852138, -0.0558989346, 0.0122043109, -0.0463502593, 0.0160934366, -0.032215897, 0.00438615074, -0.0440864414, -0.0278478861, 0.0241764355, -0.012436497, -0.00111104944, 0.00179128372, -0.00353359058, -0.00323065952, -0.0334639, 0.00419024331, -0.0241474118, -0.0168915782, 0.015541994, 0.0291394237, -0.00867797621, 0.0524161346, -0.010448399, -0.0235524327, 0.0058953641, -0.00564503763, -0.0481787287, 0.031606406, 0.0216804277, -0.0131983599, -0.00585908489, -0.0271368138, -0.0199245159, 0.031461291, 0.0165142752, -0.0123639386, 0.0202002376, 0.0743577704, 0.027862398, -0.0217820089, 0.000354855583, -0.00312363589, 0.0160644129, -0.000886118563, -0.016165996, -0.0362791643, 0.0152662722, 0.0103830965, -0.0293135643, -0.0151066436, -0.018778095, 0.0370047465, 0.0103830965, -0.00224023825, -0.00757508958, 0.0327092931, -0.00867072, -0.0238136426, -0.00649034232, 0.0338992514, -0.0340733901, -0.0101581654, -0.0260629505, -0.0174720455, 0.026498301, -0.0419096909, 0.0191989336, -0.0301262178, 0.0199390277, -0.0230880603, 0.00935276877, 0.0264402553, 0.00813378859, -0.00745899603, 0.0189522356, 0.0201276802, 0.0256566238, -0.0158177149, -0.0193730742, 0.00273726298, -0.0132418945, -0.00581192179, -0.00804671831, 0.0189377237, 0.0255115069, -0.0103032822, 0.0229864772, -0.00370591646, -0.0347699486, -0.0173704643, -0.0172108356, 0.00731750717, -0.0014584224, -0.0153243188, 0.00722318143, -0.0311130099, 0.00826439355, -0.0100275604, 0.0137207797, 0.0229574554, -0.0313742198, 0.0422289483, -0.00809750892, -0.00492671039, 0.00220214529, 0.0188216306, -0.0532868356, -0.02387169, 4.5944158e-05, 0.030474497, 0.0185604207, -0.0299520772, -0.00801769551, 0.0262806267, 0.0330285504, -0.0467275642, 0.00242163427, 0.0217674989, 0.0463502593, -0.00224205223, -0.0262951385, 0.0128210569, 0.0130822668, 0.0107458886, -0.0149179921, -0.0101581654, -0.0299520772, 0.0282977484, -0.0169931594, -0.0047634542, 0.00840951, 0.019895494, 0.00203163316, 0.0210128911, -0.00570308464, 0.0520098098, 0.0154404119, -0.0353213921, -0.00310549652, 0.0100638401, -0.0244811792, 0.0276302118, -0.00288237957, 0.0267885346, -0.000965025742, -0.0405165702, -0.0177042317, 0.00097772351, -0.032070782, 0.00846755691, -0.00561964232, 0.00761862425, -0.0345087387, 0.00229828502, -0.0107313767, -0.00897546485, 0.0139892455, -0.00917862821, 0.0107531445, 0.0244811792, -0.0100856079, 0.0254969969, 0.00490494305, 0.00583368959, -0.0130677549, -0.000465733756, 0.0136845009, 7.68664759e-05, -0.0199825633, -0.0254099257, -0.000635792327, 0.00688578514, 0.00722680939, 0.00129153824, 0.0182266515, -0.0126251485, -0.00187926064, 0.00898272078, -0.0119068213, -0.00619648118, 0.0116528673, -0.00933100097, -0.00154458534, -0.0231606178, -0.0185168851, -0.00514801312, 0.00166793459, 0.00103939802, -0.0259323455, 0.00949063, 0.0156580862, -0.0233202465, -0.000785897369, -0.0266289059, -0.0104846787, -0.00449861633, -0.0369176753, 0.0252648089, -0.0132201277, -0.0026175417, 0.0112175178, 0.0271513257, -0.0143157579, 0.0183862802, -0.0155855287, 0.0254534613, -0.00534029305, 0.016659392, -0.0284718871, -0.0123711945, 0.00207335409, 0.0278914217, 0.0339573, 0.030474497, 0.0107168648, -0.0183282327, -0.00938904751, 0.0280800723, 0.0208242405, 0.00675518, -0.0473951, -0.0028170771, 0.027485095, -0.00845304504, -0.0158322267, -0.000176974296, 0.00310549652, -0.00488317525, -0.0181976277, -0.0397039168, 0.00182030699, -0.0327673405, -0.00143121299, 0.0410680138, -0.020519495, 0.00169967883, -0.0200841445, -0.0107894232, -0.0106297946, -0.0415614098, 0.0306776613, -0.0179509297, -0.00745174, -0.0112465406, -0.00233275024, 0.0175881386, -0.0275431406, -0.00651210966, -0.0192279574, 0.0135466401, -0.0281381197, 0.0120374262, -0.0299520772, 0.0565374494, -0.0225366168, -0.0261500217, -0.0242344812, 0.00465098862, 0.0137570584, -0.0088666277, 0.0104701668, -0.0112828203, 0.0283412822, 0.0164562277, -0.0110941678, 0.0136482213, 0.0388912633, -0.0243505742, -1.80687239e-05, 0.0457407683, 0.0068168547, -0.0047997334, 0.0141706411, -0.007027274, 0.002300099, -0.00622550445, -0.0368596315, 0.0233637821, 0.00379842846, 0.0011037935, -0.0116673792, -0.012313148, -0.0325641781, -0.00273000705, -0.00948337372, -0.0329995267, -0.0382237285, 0.0302713346, 0.0269626752, -0.0170657188, 0.0188651644, 0.0168480445, 0.0227252673, -0.021027403, 0.00282614678, -0.00181033032, -0.00298033329, 0.044783, -0.0367725603, -0.0388622396, -0.0271803495, -0.0223915, -0.00158086454, 0.0514293425, 0.01119575, -0.0144245951, 0.0098897, 0.0237846188, -0.0150050623, 0.0176461861, 0.0160644129, -0.016412694, -0.0380786099, 0.000229238969, 0.00487229181, 0.0374110751, -0.00592801534, 0.0490204059, -0.00704541337, 0.0143738044, 0.0199680515, 0.0275431406, 0.00189377239, 0.0383398198, 0.0100275604, 0.00494485, 0.00709257647, 0.010695097, -0.00850383565, -0.0214482415, 0.00793062523, -0.0261790436, 0.0217674989, -0.0188941881, -0.00222209888, -0.00930197723, 0.00861993, -0.0319837108, -0.0247133654, -0.0132999411, -0.0220432207, 0.00292047276, 0.0234218277, 0.000243977382, -0.021636894, 0.00928021, -0.000706990191, -0.0173414405, -0.0129081262, -0.019286003, -0.000556431653, 0.0394136831, -0.0197358653, 0.0148599455, 0.011319099, -0.0381366573, 0.0368306078, 0.0296037979, -0.0248149484, 0.0249890871, -0.00809025392, 0.00842402223, 0.0199680515, 0.0131403133, -0.0282542128, -0.0161079485, 0.0307937544, -0.0112175178, 0.0455956534, 0.0100565841, 0.0152517604, 0.0198809821, -0.00712522771, -0.00819909107, 0.022507593, 0.00444782525, -0.012552591, 0.0216078702, 0.00311275222, -0.0262806267, 0.0202147495, -0.00595341064, -0.00603322499, -0.00399796385, -0.019155398, -0.0238281544, 0.0305905901, 0.0124872886, -0.01293715, -0.00167972525, -0.00900448859, 0.0406036414, 0.00162712054, 0.0170657188, 0.0186910257, 0.0200696327, 0.00196633069, 0.0208242405, 0.023015501, -0.0116020767, -0.0237265732, 0.0240168069, 0.010071096, 0.0343346, -0.0164997634, -0.0346248336, -0.00426280173, -0.0149179921, -0.0260194167, -0.0433318317, -0.00178765575, 0.0111231916, -0.0154694356, -0.0248004366, -0.00239442475, -0.0157451574, 0.00152644585, -0.00409591757, -0.0030964266, -0.0138441287, 0.00320889195, 0.00898272078, 0.00419024331, 0.00983165298, 0.0193150267, 0.0404004753, 0.0176606961, 0.00772020593, -0.0262225792, 0.0256421138, -0.00887388363, 0.022638198, 0.0313161723, -0.00473443093, 0.0119866356, 0.0114859836, 0.0289507732, -0.0119140772, 0.0106370505, -0.00941081531, 0.0222899187, 0.0139747337, 0.00485778, 0.0283412822, -0.0178638604, 0.0121172406, -0.0186765138, 0.0264692772, 0.0081483, 0.0109127723, -0.0108111911, 0.00910607, -0.00582643365, -0.0387171246, 0.0149615267, 0.00167337642, -0.0303293802, -0.0038310797, 0.0169496257, -0.019286003, 0.0260629505, -0.00994774699, 0.0275141168, 0.0313161723, -0.0184878614, 0.00485415198, -0.00935276877, -0.041793596, -0.000596338767, -0.0259323455, 0.0318095721, 0.048614081, -0.0147728752, -0.012189799, 0.0200551208, 0.00885211583, -0.00573210791, -0.0226527099, -0.00767667079, -0.0434479266, 0.00486866385, -0.0131693361, 0.025134204, 0.0121317524, 0.00615294604, -0.00795239303, 0.00901174452, 0.00690755295, 0.00115186349, -0.0293861218, 0.00813378859, 0.0180670228, -0.0400521979, -0.0305905901, -0.0497459881, -0.04103899, 0.0202873088, -0.0540124178, 0.00878681336, -0.0131911039, 0.0166884158, 0.0157596692, 0.00638513267, -0.0138731524, 0.0545638613, 0.00893918611, -0.0142069208, 0.00579741038, 0.0252793208, 0.0023998667, 0.00733201904, 0.0158322267, -0.0132781742, 0.00209874962, 0.00259396015, -0.0153823653, 0.0156435762, 0.00206609839, -0.00643592374, 0.0312871523, -0.00644317968, 0.0143955722, -0.00668624975, -0.0484689623, 0.00161079492, 0.0176171623, -0.0124074742, 0.0171673, 0.0100783519, -0.0104121203, 0.00232368032, 0.0448120236, -0.0155274821, 0.00768392673, -0.0288927257, -0.0301842634, -0.0444347188, 0.0032778224, 0.00312363589, -0.00624001632, -0.00249056448, 0.0404875465, -0.000957769924, -0.000561420049, -0.00758960098, 0.00143393397, -0.029226495, 0.00942532625, -0.0288346801, -0.0253954139, -0.012567102, 0.0296037979, 0.0295892861, -0.0226962455, 0.0156145524, -0.0345958099, 0.00192460965, -0.0162966, 0.0134595698, 0.00845304504, 0.00158812036, -0.0102162128, -0.00355173019, -0.00722318143, 0.0173704643, -0.0277027693, -0.0419967584, -0.015295295, 0.000147043989, 0.0221012663, 0.00553620048, -0.0331736654, -0.0306486376, -0.00201349356, 0.010825702, -0.0172833931, -5.29165627e-05, -0.00395805668, -0.0246698316, 0.00189558626, 0.0253228564, 0.0176606961, 0.0244231336, -0.00893918611, -0.00694745965, 0.0072522047, -0.0515454374, -0.0233347584, -0.0269046277, 0.0163256228, -0.00475982623, 0.00166884158, 6.35452234e-05, -0.00871425495, 0.0122986361, -0.0315193385, 0.00666448241, -0.0171092544, 0.00397619652, -0.00518792029, 0.0222028475, 0.000469361694, -0.0122841252, -0.0338992514, 0.0013305383, 0.0113771455, 0.0450151861, -0.00623638835, -0.0165287871, -0.0141343623, -0.0131112896, -0.0172543693, 0.024379598, -0.0117689604, 0.0168915782, -0.00152825972, 0.0243650861, -0.00162530656, -0.00685313391, 0.0159773435, -0.0212595891, -0.0201567039, 0.0255260188, -4.42435739e-05, 0.00756783364, 0.00453489553, -0.0386300534, -0.00246698316, 0.0031599151, 0.0190538168, 0.00539833959, -0.0247714128, -0.0278043505, -0.0154694356, -0.000248285534, 0.00993323512, -0.0237701088, 0.0116310995, 0.00631257426, -0.00162349257, 0.00806848612, 0.0220432207, -0.0213756841, -0.00178039994, 0.00652662152, -0.00745174, -0.00589173613, -0.0138658965, -0.0137425475, -0.014308502, 0.0225366168, 0.0126469163, -0.00483964058, -0.0144971535, -0.00505368738, -0.00704904133, 0.0199535396, 0.0247133654, 0.012567102, -0.0339863189, -0.00418298738, 0.00830792822, -0.0185894426, 0.00788709056, -0.00716150692, -0.0126251485, 0.00686764577, -0.00670076162, 0.0219851732, -0.00906253513, -0.00466550048, -0.0200986564, -0.0306196138, -0.0357857682, -0.000986793195, 0.0199680515, 0.00360796275, 0.00542736286, 0.0385429822, 0.0228413623, 0.0257727187, -0.00288056559, 0.0140255243, -0.0188071188, 0.0245102029, -0.0127267307, 0.00385284727, -0.0188361425, 0.00881583709, -0.00442605792, -0.00237084343, -0.000128224172, 0.0260484386, -0.0125453351, -0.0142141767, -0.0258452762, -0.00650122622, -0.0056486656, -0.022260895, -0.0169206019, 0.00757508958, 0.0119285891, -0.0359308831, -0.0160934366, 0.0110143544, 0.00759685691, -0.00641415594, 0.0920620039, -0.0220432207, -0.00129970105, -0.0123566827, 0.0136119425, -0.000620373699, -0.0173849743, 0.018531397, -0.00343745085, 0.000470722152, 0.0149615267, -0.0169641376, 0.0330575742, 0.0363662355, -0.0167174395, 0.00178130693, -0.00257582054, 0.00541285099, -0.0132564064, -0.00366238155, -0.0118923094, 0.0144898975, 0.0179799534, 0.00439703465, -0.00628717896, 0.0141198505, -0.0287621208, -0.0169351138, -0.0164417177, 0.0221738257, 0.0250761583, -0.0474531464, 0.00662820321, 0.00548540941, -0.00199716794, -0.012559846, 0.0205920525, -0.000575478247, -0.0592075959, 0.0163981821, -0.0025250297, 0.0185023732, -0.01293715, 0.0133217089, 0.030474497, -0.00903351139, 0.000271866971, -0.00187744678, 0.0211144742, -0.00391089404, -0.00582643365, -0.017921906, -0.0104193762, 0.00396531262, -0.0105644921, 0.00206972635, -0.0130169643, -0.0144463629, -0.0108910045, -0.0015572831, -0.00723406533, -0.0103468178, 0.0184443276, 0.0112030059, 0.00215861015, 0.0103468178, -0.0212160554, -0.00224023825, 0.0197213534, -0.00342475297, -0.0148091549, -0.00627992302, 0.0240168069, -0.0150195742, 0.000544640934, -0.0170512069, -0.0226236861, -0.012552591, -0.0202002376, -0.0106733302, -0.00520243216, 0.0204759594, 0.00774197374, -0.00378391682, 0.0130750109, 0.000301117048, 1.1514383e-05, -0.0254679732, -0.00240530865, -0.0167464614, 0.0128428238, -0.0257582068, -0.0103323059, -0.0272383969, 0.0182846989, -0.0450151861, -0.0182121396, 0.0170076713, -0.00203707512, 0.00168788806, -0.0254969969, 0.010317794, 0.0214772653, 0.0202002376, 0.00606950419, -0.0137280356, 0.0357277207, -0.0092947213, -0.00912783761, 0.0199680515, 0.0185894426, 0.044783, -0.00851109158, 0.018154094, 0.000347826484, 0.0256856475, 0.00100130495, -0.017791301, 0.0280800723, 0.0221883357, 0.00248693675, 0.0123784505, 0.0143883163, -0.054215584, -0.0160208791, -0.0391234495, -0.0056958287, -0.000488408259, -0.00439340668, -0.000330367126, -0.0277172811, 0.029226495, 0.000756420544, -0.00244702958, 0.000687943655, 0.024002295, 0.0145044094, 0.000497478, 0.0217965208, 0.00125253818, -0.00512261782, 0.028355794, 0.0142577114, 0.000207244724, -0.00386010297, 0.001258887, -0.00422289455, 0.0277608167, 0.000366419554, 0.031461291, 0.00340842735, -0.0262516029, -0.0018284698, 0.00210600556, 0.0154259, -0.00806123, 0.00386373093, 0.00243251794, -0.0083732307, 0.0145261772, 0.00167428341, -0.0132636623, 0.00332498527, 0.0220287088, -0.014794643, -0.000389320776, -0.00368233514, -0.0165723227, -0.0188796762, 0.0130822668, -0.00698011089, -0.00557973515, -0.0144245951, -0.00362247438, 0.0195762366, 0.0318966396, 0.0147003168, -0.00373312598, 0.000579559652, 0.017907396, -0.0134740816, 0.0193440504, -0.010317794, 0.0104338871, -0.018400792, 0.0331736654, -0.0130024524, -0.00717239082, 0.0223479643, -0.00650848215, 0.0150631089, 0.00711071584, 0.000843037036, 0.0137135237, 0.00703090196, 0.0149615267, 0.0193440504, -0.0290523544, -0.0196487959, -0.0117689604, -0.000850292912, -0.0106443064, -0.0121462643, 0.0173849743, -0.0161514841, 0.0116165886, -0.0318676159, 0.00101309561, -0.013800594, 0.011681891, 0.0081628114, -0.0141996648, 0.00473805889, -0.0173124168, -0.018778095, 0.00269372785, 0.0211725198, -0.00276628626, -0.0143230138, 0.00495210569, 0.010201701, 0.0465534218, -0.00110742147, -0.00419024331, -0.0189957693, -0.0125961257, 0.0374691188, 0.00173958589, -0.015672598, -0.00699462276, -0.00964300148, 0.00878681336, 0.0312000811, 0.00348824169, -0.00893193, -0.00811202079, 0.00745174, -0.0422869921, -0.0181250703, 0.0132056158, 0.00502829207, 0.00740094949, -0.00556522375, 0.0183862802, 0.017907396, -1.79695235e-05, 0.00216042413, 0.00959221087, -0.0302132871, 0.0149760386, -0.0183427446, -0.0130459871, 0.0282397009, 0.00597880594, -0.00511899, 0.0236104801, 0.00394354528, -0.00569945667, 0.0208097287, -0.0125743579, 0.0132201277, -0.0155129703, -0.00418298738, -0.0199680515, -0.00240530865, 0.00898997672, -0.0207371693, -0.0183427446, -0.0202292614, -0.00535117649, -0.0134813376, 0.0104774227, -0.0103395618, 0.00382019603, 0.0111522153, -0.0187055375, -0.00214047055, 0.0107676554, 0.00355898589, -0.0108619817, -0.0140327802, 0.023378294, 0.0393556356, -0.00785806682, 0.00542736286, -0.00717964629, -0.0113336109, 0.00606950419, -7.06097399e-06, -0.0243215505, 0.0167609733, -0.0322449207, 0.0124147302, -0.000100731362, 0.00740457745, 0.0286460277, 0.00276265829, -0.00150105043, 0.00374400965, 0.0299811009, -0.013677245, 0.01032505, -0.0234218277, 0.00621099304, 0.0122188227, -0.0118270069, 0.0032143339, -0.0106443064, 0.0161514841, 0.00546364207, -0.0122696133, -0.0286315158, -0.0103395618, -0.00204251683, 0.00236721546, -0.00115277048, 0.00143846881, -0.0162530653, 0.0243360624, 0.0108910045, 0.00309824059, -0.0150340851, -0.0276447218, -0.0250326227, -0.00856913812, -0.0193440504, -0.017907396, 0.00902625546, 0.0103540737, 0.00924393069, -0.0145044094, 0.00139039895, 0.00162439956, 0.0214917772, -0.0196778178, 0.0224060118, -0.0133797554, -0.00742997276, 0.0302132871, -0.0176897198, -0.0302423108, 0.0148744574, -0.010071096, 0.00326149678, -0.00020543077, -0.0257291831, 0.0117036579, 0.0270787682, 0.00781453215, 0.00588085223, -0.0156290643, -0.0326222256, -0.0101654213, 0.0280075148, 0.0331446454, 0.0185604207, 0.00189921423, 0.0132128717, 0.0077347178, 0.00639601657, -0.0240313187, -0.0157451574, 0.0104991896, 0.0110941678, 0.00318349665, -0.0104629109, -0.000979537377, 0.0195762366, 0.0234218277, 0.0150631089, 0.00579015445, -0.00162167859, -0.00246335519, -0.00971556, 0.00341024133, -0.0230300128, -0.0593236871, -0.0174720455, 0.00366056757, -0.0139819896, -0.0334929228, 0.0285154227, 0.00965025742, 0.00973007176, 0.00365512562, -0.00283884467, -0.0198519584, 0.00660643587, 0.028733097, -0.00856913812, -0.0093164891, 0.0162385534, 0.0333478078, 0.00534029305, 0.00835146382, 0.00148018985, -0.00961397868, 0.0140400361, 0.0103468178, -0.0298650078, 0.0227542911, 0.0127049629, 0.0230590366, 0.0119793797, -0.00370047474, 0.0108982604, -0.0209983792, 0.00590987597, 0.0414162949, -0.01441734, 0.0132273827, 0.0153098069, -0.0133797554, -0.013183848, 0.0115367742, 0.0068023433, 0.00495573366, 0.0154984584, -0.018023489, 0.00324879913, 0.0119503569, -0.00434624357, 0.00468726782, 0.0323610157, 0.0135176163, 0.00362247438, 0.0122405896, -0.0105862599, -0.0249455534, -0.0132564064, 0.000518792, 0.0288782138, -0.0340733901, -0.00333224121, 0.031083988, -0.0243941098, 0.0405746177, 0.00353721855, 0.00733564701, -0.0206646118, 0.0127775213, 0.0228123385, -0.00618196931, 0.00249237847, 0.00394717278, -0.0224205237, 0.00962123461, -0.00796690397, -0.0109127723, -0.00795964804, 0.0121462643, -0.0111304475, 0.00424103439, -0.0203018207, -0.00331591559, 0.0187490713, 0.000707897183, 0.00437889528, 0.00457117474, -0.0336090177, 0.0162530653, 0.0219706614, 0.001476562, -0.0175155811, 0.0293135643, -0.00504643144, -0.0208532624, -0.0143375257, -0.00427005766, 0.00576113118, 0.0113408668, -0.0156580862, -0.0284428634, -0.016543299, -0.0050101527, -0.013923943, -0.0063669933, -0.00420112722, 0.010941796, 0.00156000408, -7.8226949e-05, 0.0027427047, 0.00337214814, -0.00214047055, -0.00185386522, 0.0389493108, 0.00761862425, 0.0233637821, 0.000349413691, 0.0249890871, 0.000513803679, -0.00479610544, 0.00629443489, 0.0203018207, -0.00351545098, -0.00558699109, 0.00504643144, 0.00977360643, 0.0179364178, 0.0176316742, 0.0217965208, -0.0117762163, -0.000284337933, -0.0254824851, 0.0110361213, -0.0122405896, 0.00148109684, 0.0404295, 0.0162820891, -0.0045639188, 0.00961397868, -0.00911332574, -0.0140618039, 0.00942532625, 0.0163256228, 0.0081845792, -0.00438615074, -0.00661369134, 0.000548722339, -0.00210963329, 0.017036695, -0.00401610322, 0.0160499029, 0.00801044, 0.00974458363, 0.0101436544, 0.0163981821, 0.00779276434, -0.00419387128, -0.00688215718, 0.000492036168, 0.0163836703, -0.0158757623, -0.00774197374, -0.0105499811, -0.00227651745, 0.0140618039, -0.00491219899, 0.00941807125, -0.0235088989, -0.00513350172, 0.00593889924, -0.0267304871, 0.00869248714, 0.000905165158, -0.00219126139, -0.00106479344, -0.00925844256, 0.0155855287, -0.0101654213, 0.0172398593, -0.00580466632, 0.00445870915, 0.00856913812, -0.0165868327, -0.0327092931, 0.0059425272, -0.00427731359, -0.00235088984, 0.0273835119, -0.010201701, -0.0104266312, -5.77348874e-05, 0.00637062127, -0.0228268504, 0.0118560307, 0.00838048663, -0.00619285321, 0.0108764935, -0.0303584039, 0.00464373315, -0.00552894454, 0.0242344812, 0.0245972723, -0.00380205642, 0.0140618039, -0.0178493485, 0.00802495144, -0.00441154651, -0.00546727, -0.00653387746, -0.0116746351, 0.00584457349, 0.017413998, -0.00372587, -0.0018284698, 0.00749527523, 0.0159483198, -0.0105572371, 0.0231606178, -0.0138223609, 0.00838774256, -0.0285589583, -0.00803946238, -0.0163401347, -0.0106297946, -0.016412694, 0.00437163934, -0.00749527523, 0.00506094331, 0.00622913241, 0.0068023433, 0.0112828203, -0.00740457745, -0.0246408079, -0.0371208414, 0.0287911445, -0.00710708834, -0.0212450791, -0.0291539356, -0.0108474698, -0.00504280394, -0.00157088775, 0.0250906702, -0.00682048267, -0.0101581654, -0.0178638604, 0.00605136435, -0.0248875059, -0.0112683084, 0.0036388, 0.00717964629, -0.00787983462, -0.0285734702, 0.0136699891, 0.00227107573, -0.0158757623, -0.0118705425, 0.0143955722, 0.0142431995, -0.0238281544, 0.00114914251, -0.00594615471, 0.0019191677, -0.00155546912, -0.0217384752, -0.0128428238, -0.0126178935, -0.00356442784, 0.0173269287, 0.0275286287, 0.020519495, 0.0170802306, 0.000944165222, 0.00967928115, -0.00146658521, 0.00556885172, -0.0319837108, -0.0137352915, 0.0219126157, -0.0081845792, 0.0140908267, 0.0131258015, -0.00965025742, 0.00328689232, -0.00380931213, 0.0103105381, 0.00724494876, -0.00515526906, -0.0167319495, 0.0107458886, 0.00956318714, 0.0031961943, 0.0195907485, 0.0205920525, 0.00613843463, 0.0124074742, 0.00194456312, -0.0081555564, 0.00211326126, 0.013307197, -0.023755597, -0.00797416, -0.000140921882, 0.0114569599, 0.00871425495, 0.018531397, -0.000667990127, -0.00724132126, 0.0162675772, -0.0140110133, 0.0162530653, 0.00869974308, -0.00393991731, -0.0188216306, -0.0237991307, -0.00826439355, -0.00553257251, -0.00129879406, -0.00400522, 0.0251051821, 0.0158612505, 0.00663183117, 0.0141924089, -0.000528315315, -0.00786532275, -0.00638876064, 0.0151356673, 0.00473805889, 0.00652299356, 0.00987518858, 0.00962849, -0.0163256228, -0.00374400965, -0.0135684069, -0.0224350356, -0.00662094727, 0.00472354703, -0.023624992, -0.00232549431, -0.00768392673, 0.0137715703, 0.0307647306, 0.000700641365, 0.0031599151, -0.00387098687, -0.00825713761, 0.0106588183, 0.0118342629, 0.00516615296, -0.0169351138, -0.00266833254, -0.00142305018, -0.00203163316, -0.0026066578, 0.00580829429, -0.0209548455, -0.0260339286, -0.013060499, -0.00708532054, 0.000600873667, 0.0145044094, 0.00750253117, 0.00268647214, -1.57871054e-05, 0.0108402139, 0.00654838886, 0.0045530349, 0.0176316742, -0.00104302599, 0.0192279574, -0.00704541337, -0.00826439355, 0.0109055163, -0.0213901941, -0.00602234108, 0.0455085821, -0.0122478455, -0.00764039205, 0.0118415188, 0.0129444059, -0.0128791034, -0.00469452376, 0.00607676, 0.0135321282, 0.0192424692, 0.00199716794, 0.0235669445, 0.00450587226, -0.000169831837, -0.00278805383, 0.0052096881, -0.0100057935, 0.00500652473, 0.00289507722, -0.016543299, -0.0052096881, 0.00707806461, 0.00476708217, 0.00150195742, -0.00446959306, -0.00390363811, 0.0222463831, 0.0144608747, -0.0159047861, 0.027485095, -0.0127049629, -0.0419967584, -0.00869974308, 0.00304382178, 0.0183572564, -0.0111377034, 0.00208423799, 0.00922216382, 0.00800318364, -0.0102597475, 0.0176316742, 0.00125798, 0.0110578891, -0.00805397425, -0.0070381579, 0.0473660752, -0.00185749319, 0.0112973312, 0.0191989336, 0.0171527881, 0.010317794, 0.0125090554, 0.0116020767, 0.00922216382, -0.00755332178, -0.0194166079, -0.0145044094, -0.018023489, 0.014054548, 0.00409591757, 0.012313148, -0.00793062523, -0.00846030097, -0.00384196336, -0.0141996648, -0.0010321422, -0.00473080296, -0.0040922896, 0.0010693284, -0.00751704257, -0.00893193, 0.00235633156, 0.0107241208, -0.0261935554, -0.00484326854, -0.00867072, 0.00274089072, -0.0104556549, 0.0104701668, 0.000663001731, 0.00222754059, -0.00998402573, 0.0024814948, 0.016035391, 0.00355898589, 0.000155433547, -0.0277608167, -0.0133579876, -0.00609852746, 0.00983890891, 0.00339391571, 0.00387098687, -0.00901174452, 0.00651210966, 0.0154694356, 0.0343055762, 0.00900448859, 0.00421563862, 0.0279930029, -0.0286605395, 0.00900448859, 0.000855281309, 0.00311275222, -0.00502103614, 0.0154404119, -0.000206791228, -0.00658104, 0.000138541058, 0.023494387, 0.006341598, 0.0147801312, 0.000488408259, -0.0107603995, 0.00337033439, -0.00550717721, -0.0278333742, -0.00984616484, 0.0296618436, 0.00864169654, 0.0305035207, -0.00817006733, 0.00428456906, -0.00555434, -0.00368233514, -0.013314453, -0.0050246641, -0.000198968541, -0.00557973515, 0.0156435762, 0.0161224604, -0.0231896415, -0.0175591148, -0.0189812593, -0.00628717896, 0.0227542911, 0.0128428238, 0.0122260777, 0.0120156594, -0.0273690019, 0.00141851534, -0.000921490777, 0.0105282133, 0.00372587, -0.0070744371, -0.00432447623, 0.00891016237, -0.000158721334, 0.00838774256, -0.00450587226, -0.00506094331, 0.00875779055, -0.00462922128, -0.0110216103, 0.00119177054, -0.0169060901, 0.0128283119, -0.00475619826, -0.000874781341, -0.0043389881, 0.00851109158, -0.00708894851, -0.00270461175, 0.011573053, 0.0260629505, 0.00146930618, -0.00398708, 0.0114206811, -0.00610215543, -0.0285589583, -0.00739369355, 0.00577564305, -0.000827164913, -0.00551443268, -0.0113118431, -0.00241982029, 0.00872151088, -0.00432447623, -0.00358256744, 0.014794643, -0.0142649673, 0.0105572371, 0.0235959683, 0.00761862425, 0.0128573356, -0.0125017995, 0.0209693573, 0.0090552792, -0.018531397, 0.00608038763, 0.0257727187, 0.0162820891, -0.00192460965, 0.00142032921, -0.0270787682, -0.0311420336, 0.0106152836, -0.00130151503, 0.0016389112, -0.0135176163, -0.00753155444, 0.0210854504, -0.00355898589, -0.0261064861, 0.00551080517, 0.00737192621, -0.00113916572, -0.00386010297, -0.00856188219, 0.00746625196, -0.0216659158, 0.0144898975, 0.00536568835, 0.0124727767, 0.0226091743, 0.0003575765, 0.00751704257, 0.0272674188, -0.000251913443, 0.000881130167, -0.0133289648, 0.0186765138, 0.00889565051, -0.00531127, 0.012567102, -0.00315628713, -0.0110506332, -0.00531127, -0.0199100059, 0.0159918554, -0.0118487747, -0.00893193, 0.00846755691, 0.0103323059, 0.00838774256, 9.93142094e-05, 0.00264475099, -0.0130314752, 0.00806123, 0.0049992688, 0.00900448859, 0.000958676916, 0.00785081089, 0.0130677549, -0.0155855287, -0.0273399781, -0.00116093329, 0.00959946681, 0.00644680718, -0.00171237648, 0.00189740025, 0.0152082257, 0.0131911039, 0.0269191395, -0.0146132475, -0.00219126139, -0.0105282133, 0.00486503588, 0.00093056052, 0.014801899, -0.0251051821, -0.016165996, 0.0203743782, 0.000857095234, -0.0175736267, 0.000312227552, 0.0126614282, 0.0134232901, -0.00871425495, 0.0235088989, -0.0186329782, 0.00653387746, 0.00576838711, 0.0156580862, 0.00875053462, 0.0111449594, 0.00644317968, 0.0296037979, 0.0255405307, -0.00693657622, 0.0056849448, -0.00959946681, -0.0283703059, 0.0148236658, -0.000999491, -0.0214192178, -0.00123893342, -0.0197794, -0.0176316742, -0.00224930816, -0.000227084893, 0.010818447, 0.0109272841, -0.000397256837, 0.011689147, 0.000776827568, 0.029342588, -0.0209983792, -0.012567102, 0.00677694799, 0.0124655208, 0.00362791633, -0.0161514841, 0.00904802326, 0.00981714204, -0.0150921317, -0.0051988042, 0.0261790436, -0.0172833931, 0.0145769678, 0.0241909456, 0.00164526, -0.000293407735, 0.0154694356, -0.00240893639, -0.0015663529, -0.00352452067, -0.0307647306, 0.00307647302, 0.00523145543, -0.00520606, -0.0101799332, 0.00990421139, -0.0426642969, 0.0140690599, 0.0167319495, -0.0104629109, 0.00588448, 0.00940355938, -0.00469452376, 0.0170802306, -0.0182846989, -0.00789434556, 0.018531397, -0.00229647104, -0.0140835717, 0.00279349554, 0.0028714959, 0.002860612, -0.00445870915, 0.0163546465, 0.0140327802, -0.00445145322, 0.0304164514, -0.0443476513, -0.0129806846, 0.0227833148, -0.00454577943, -0.0227833148, -0.0303874277, -0.0014484456, -0.00373675395, 0.0041176849, 0.0250906702, 0.0036496839, -0.00354084629, -0.0156871099, -0.00259577413, 0.01441734, 0.0011500495, -0.0109563079, -0.00651210966, -0.00475619826, -0.0111667262, 0.00813378859, -0.00569945667, 0.0171092544, 0.0194746554, 0.00319982227, -0.00704904133, 0.017413998, 0.0219561495, -0.000179581853, -0.017921906, 0.0180815347, -0.00361521868, 0.00777825247, 0.0212450791, -0.019155398, 0.0145914797, -0.000702455291, -0.00779276434, -5.29449062e-05, -0.00728122797, 0.0151501792, 0.0217674989, -0.0202873088, -0.00513712969, 0.00655201683, 0.010448399, 0.000246244832, -0.000575024751, -0.0190538168, 0.00549992127, -0.0015391435, 0.0206210762, -0.0163691584, 0.00795239303, -0.0026991698, 0.0115077505, 0.0144245951, 0.00567406137, 0.0155710168, 0.00147112, -0.00734290294, -0.01293715, 0.0353213921, -0.00219126139, -0.0176752079, 0.0204759594, 0.019402096, -0.0176461861, -0.0252067633, 0.0200406108, -0.00774197374, -0.0153678535, -0.000913327967, 0.0164707396, 0.00360070704, 0.000702455291, 0.0217529871, 2.19942431e-05, -0.00134777091, -0.00230554095, -1.3030739e-05, 0.00540196756, -0.00545638613, -0.00682411063, 0.0141996648, 0.000339663675, 0.000261663459, 0.0217094515, -0.00864169654, 0.00823537, 0.0118850544, -0.00729211187, -0.0017930977, 0.0141488742, 0.00128972426, -0.0103032822, -0.0101146307, -0.00414670818, -0.00223116856, -0.0176897198, -0.00331591559, -0.00668262178, -0.0187200475, -0.00192098168, 0.0305035207, -0.015541994, -0.00531127, -0.00654476089, -0.00168063224, 0.00955593213, -0.0122623574, -0.00540922349, -0.00418661535, 0.006591924, 0.00167337642, 0.00347191584, -0.0045095, -0.00780002028, 0.00901174452, 0.00824262574, -0.0049992688, -0.00337396213, 0.0102089569, -0.010201701, 0.0318385921, 0.00049294316, 0.00284972833, 0.00409591757, 0.00560513092, 0.00953416433, -0.0116456114, -2.06762888e-05, -0.000500652473, 0.0162820891, -0.0224785693, -0.00581917772, -0.0134523138, -0.00265382091, -0.0488752909, -0.0153823653, 0.0169786494, 0.0140835717, 0.01032505, -0.00133779412, -0.0324190594, -0.0118270069, -0.00444057, 0.0151646901, 0.0095486762, 0.0169060901, -0.00360070704, 0.00322340359, -0.0120809618, -0.0011047005, 0.0151646901, -0.0249600653, -0.0155274821, 0.00322340359, -0.00903351139, 0.00108565402, 0.0148744574, 0.00757508958, -0.0124074742, 0.0127339866, 0.0177187435, 0.0141996648, 0.00938904751, 0.00175591151, 0.00366238155, -0.00581917772, -0.0140980827, -0.0132491505, -0.00664271507, 0.01119575, -0.00370228873, 0.000665722648, 0.00541285099, -0.0199680515, 0.0152807841, -0.00661006384, -0.0379334949, 0.00543099083, -0.0158612505, -0.00092239771, -0.00615294604, 0.0047743381, -0.0200406108, -0.00779276434, -0.00466187252, 0.00364787, 0.00381656806, -0.0088883955, -0.00538019976, 0.0027173094, 0.00271912338, 0.0214917772, 0.0148744574, 0.00687127374, -0.00179128372, 0.0388622396, -0.0370337702, 0.00848932471, 0.0149325039, 0.00924393069, 0.0149179921, 0.0291249119, -0.00872876681, 0.0267595109, -0.0204614475, -0.012313148, 0.00991146732, -0.0119938916, 0.0097881183, -0.00720504206, 0.0107458886, -0.00844578911, 0.00819183514, 0.0157596692, -0.0155274821, -0.00851834752, 0.00548178144, 0.0110869128, 0.0183282327, 0.00827164948, 0.0256856475, -0.0112610525, -0.00620736508, 0.000125389866, 0.00735378638, 0.0102307238, 0.00761136832, -0.00880858116, -0.00735015841, 0.0186765138, -0.00291321683, 0.0136845009, -0.0245827604, 0.0213756841, 0.0135176163, -0.00775648514, -0.0199535396, -0.0088666277, 0.0100057935, 0.0161369722, -0.0246553198, 0.0127847772, -0.0180815347, 0.0166739039, -0.0222028475, 0.0114859836, 0.000393402181, 0.0159628317, 0.00318349665, -0.000973188551, -0.0139094312, -0.00790885743, 0.0128936144, 0.00470177969, 0.00653024949, 0.0310549643, 0.00941081531, -0.0153243188, -0.003856475, -0.00346466014, -0.0199390277, -0.00419387128, 0.0208097287, -0.00807574205, -0.00511899, -0.00194274925, -0.000159741699, 0.00290596089, 0.000793153187, -0.0137643144, -0.0159918554, -0.00740094949, -0.0243070405, -0.00597517844, -0.0077347178, 0.0215643346, 0.00271368143, 0.0375271663, -0.0144681307, -0.0156871099, 0.0231751297, -0.00653750543, 0.0309678949, -0.00739006558, -0.00554708391, 0.0030420078, -0.00736467028, -0.00904802326, 0.00967928115, 0.012567102, 0.00340479962, -0.0142141767, -0.00730299577, 0.0137498034, -0.00494122226, -0.00785806682, -0.021636894, 0.00143121299, -0.0611231364, 0.00244884356, 0.0188216306, 0.0242925286, 0.0175736267, -0.00471629109, -0.00466187252, -0.00439703465, -0.00861993, 0.0427223444, -0.000728757703, -0.00257400656, 0.000594071287, 0.00946160592, -0.00653750543, 0.00379842846, 0.0196052603, -0.00135774771, 0.0126396604, -0.00694383169, -0.00680959923, -0.0262225792, 0.000796781154, -0.00673704082, 0.00465461658, -0.0188361425, -0.00393991731, -0.0138949193, -0.036192093, -0.0214047059, -0.0164272059, 0.00516615296, 0.0288056564, -0.0504715741, -0.0147511084, -0.0081845792, -0.000323564804, -0.0259758811, 0.0294441693, -0.0168915782, -6.84202387e-05, 0.00771295, -0.0144463629, -0.0256711356, 0.0120519381, 0.0231606178, 0.0191699099, 0.0188361425, -0.0063923886, 0.0142359436, 0.000274814665, 0.00804671831, -0.0221448019, -0.00540922349, 0.0115875648, 0.0134740816, 0.0116383554, -0.000439658121, 0.0152082257, 0.0194311198, -0.030097194, -0.00238898303, 0.0333768316, 0.000125843348, -0.00154730631, 0.0224640574, 0.0156871099, 0.00508271065, 0.0266724415, -0.0139094312, -0.000243523886, 0.015803203, 0.00998402573, 0.0168335326, 0.00228558737, -0.000549175835, 0.000875688333, -0.00703453, -0.0121317524, 0.0102234688, 0.00980263, 0.00207154034, -0.00223842449, 0.0177187435, 0.00370228873, -0.0095269084, -0.0204759594, 0.0269336514, -0.00800318364, 0.00553620048, 0.0115948208, -0.0116165886, -0.00641778391, 0.0259323455, -0.0203598663, 0.010695097, -0.0068168547, -0.011943101, -0.00631257426, 0.00572122401, 0.00164707401, 0.0141633851, 0.0158612505, -0.00915686134, 0.0135031044, -0.0129081262, -0.0189232118, 0.00812653266, 0.0098897, 0.0102162128, 0.0140980827, -0.00712522771, 0.00489405915, -0.0187635832, 0.00211144728, 0.0249455534, -0.0151211554, 0.0167464614, -0.0188796762, -0.00420838315, -0.00704178587, -0.00732476311, -0.0134813376, 0.0107458886, 0.00415759208, -0.0131403133, 0.00241437834, -0.0124945436, -0.021520799, -0.00981714204, -0.00971556, 0.0343926474, -0.00793788116, -0.0370918177, -0.00515889702, -0.00749527523, -0.00434261607, -0.00500289677, -0.00893918611, -0.0197503772, 0.0088666277, -0.0121244965, -0.00986067671, 0.00278623984, 0.0122188227, -0.0117109139, 0.0127847772, 0.0162966, 0.00471991906, -0.0247423891, 0.00970104802, 0.00542736286, 0.0172688812, 0.00374763762, -0.0260629505, 0.00824988168, -0.013561151, -0.0151066436, 0.0143520376, -0.0313451961, -0.0116238436, 0.0162820891, -0.0120301703, 0.00831518415, 0.00419024331, 0.00777825247, -0.00914234947, -0.0152807841, -0.00761862425, -0.0218545683, 0.00426280173, 0.00776374107, -0.00868523214, -0.00148200383, 0.0154984584, -0.00335219479, -0.013800594, -0.00336489244, -0.0265853703, 0.00131421268, 0.010071096, 0.0179509297, -0.00624364428, -0.000962304824, 0.00589899207, -0.00502829207, -0.0111377034, -0.000865258044, -0.0109272841, 0.00494485, 0.0253228564, -0.0033957297, 0.00269372785, -0.00695834355, 0.00817006733, 0.00402698712, -0.00207879604, -0.00045598374, -0.0187200475, -0.00213321485, -0.00426642969, 0.00421201112, 0.0121535202, -0.00760411285, 0.00873602275, 0.0162385534, -0.0207226574, 0.0132926852, 0.000378210272, -0.0254824851, -0.00889565051, -0.00610941136, -0.0115004946, -0.0227978267, 0.0188941881, -0.00387824257, 0.00200079591, 0.0105282133, -0.00759685691, -0.000601327163, 0.0106080277, -0.0127412425, 0.0357567444, 0.00979537424, 0.0325061306, -0.0145769678, 0.0165287871, 0.016035391, 0.0052350834, -0.0142577114, -0.00510447845, -0.00411042944, 0.00367870717, -0.0106733302, 0.00579378242, 0.0136409653, 0.00785806682, 0.0180960465, -0.00946160592, -0.00251958799, 0.00766941532, 0.0178348366, -0.00778550841, 0.00399796385, -0.00153551565, 0.00971556, 0.0215643346, -0.00690392498, -0.00533666508, -0.00315447338, -0.0152807841, 0.00909155887, -0.00068522268, 0.00386373093, 0.0171092544, -0.000177767899, -0.00421926659, 0.00482150074, 0.0218110327, 0.0206210762, 0.0101654213, 0.00787983462, 0.0121099846, 0.0220577307, -0.0140908267, -0.0349731147, 0.0127267307, -0.0231315941, 0.0121970549, 0.00766941532, -0.0104629109, -0.013800594, -0.00748076336, 0.0167029276, -0.0175010692, -0.0162675772, -0.000112578782, 0.034944091, -0.00382019603, -0.00712885568, -0.00370954443, -0.0155129703, -0.00977360643, 0.000326285721, -0.015179202, -0.00240168069, -0.0206791237, 0.00337940408, -0.0137788262, 0.0104846787, 0.0095269084, -0.0106370505, -0.00927295443, 0.00335219479, -0.0330575742, -0.00914960541, 0.0126469163, -0.00872876681, 0.018154094, -0.0148381777, 0.0207807049, 0.0154113891, 0.00481061731, 0.00721955346, -0.0208677743, 0.0114206811, 0.00843127724, -0.00606950419, -0.011072401, -0.00568857277, -0.00472717499, 0.019764889, 0.000257582054, 0.00893918611, -0.00803946238, -0.00949063, -0.00375852128, -0.00280800718, -0.0153968772, -0.00197902834, -0.0167464614, -0.0015482133, -0.00956318714, -0.0115150064, 0.0135393841, 0.00893193, 0.00490131509, 0.00761136832, 0.00141398038, -0.00909155887, 0.00569945667, -0.0240168069, 0.000728304207, 0.0149325039, -0.0147365965, 0.00571396807, 0.000391588226, -0.0146858059, -0.00578289852, -0.0148744574, -0.0103105381, -0.00239442475, -0.0278188623, -0.0138296168, -0.00193186547, 0.0169931594, -0.0147728752, 0.00869974308, 0.0158177149, -0.0194746554, -0.0177622791, -0.0201276802, 0.008206347, 0.00397982402, 0.00975909457, 0.00235270383, -0.0171818119, -0.00694383169, 0.0223915, 0.0182556752, 0.0320127346, -0.0271368138, -0.0136554772, -0.0036496839, 0.0146422703, -0.0126396604, -0.00147202704, 0.0019191677, -0.00171872543, -0.00155002729, 0.00881583709, 0.00338303205, -0.0107676554, 0.0665795207, 0.01380785, 0.0134523138, -0.00348461373, 0.0145842237, 0.0056486656, -0.00597155048, 0.0390944257, -0.00909881387, 0.0207226574, -0.00756057771, -0.00627629552, 0.0176171623, 0.00227651745, -0.0154839475, 0.0028352167, 0.00181667914, 0.00259214616, 0.0102162128, -0.00765490346, 0.0107168648, -0.0129879406, -0.00503192, -0.020519495, -0.0138441287, -0.012690451, -0.0110288654, -0.0038927542, -0.0134087792, 0.000321297353, 0.0162530653, -0.0115948208, -0.00594615471, 0.00772746187, -0.0138223609, 0.0169641376, -0.0214772653, -0.00647945842, -0.0152517604, -0.00454940693, -0.016659392, 0.0362791643, 0.0166739039, 0.0172253475, 0.00995500293, -0.00812653266, -0.00516615296, -0.0128283119, 0.00991146732, -0.000762769429, 0.00371498638, -0.00600420171, 0.0196197722, -0.0177332554, 0.00219307537, 0.0050246641, 0.00453489553, -0.0030710313, 0.00702001806, 0.0140327802, -0.00951965246, -0.000551896752, 0.00786532275, -0.00702364603, -0.00153460866, -0.0227252673, -0.0269771852, -0.0023635875, -0.0110216103, -0.00239805272, -0.0173414405, -0.00990421139, 0.0283703059, -0.00603322499, -0.00371498638, 0.0202873088, -0.00591713144, -0.016165996, -0.00199716794, -0.00859816186, -0.00782178808, -0.00154912029, -0.00822811387, -0.0247859247, 0.0041031735, 0.0100203054, -0.00246879715, -0.0191118643, -0.00763313612, 0.0135829188, -0.0126324045, 0.0138586406, -0.0172253475, 0.0233637821, -0.00663908711, 0.0231461059, -0.0182846989, 0.0132491505, 0.00759685691, 0.0139384549, 0.0244956911, -0.00846755691, -0.00564503763, 0.00645043515, -0.0245247148, 0.00368414912, -0.0222318713, 0.00959221087, 0.00446959306, -0.0149179921, 0.0209548455, -0.00320163625, 0.0262951385, -0.0126541723, 0.0104338871, 0.0219271258, 0.0105935158, 0.00445508119, -0.00463647721, 0.0106007718, 0.00956318714, -0.000921490777, -0.0146495262, -0.00598969, -0.00449861633, 0.0250906702, 0.0296473317, 0.011573053, 0.0206501, 0.00949063, 0.0157161336, 0.000323564804, 0.00958495494, 0.00221665693, -0.00131149171, 0.00242889, -0.00801044, -0.00113825873, -0.00444782525, 0.0155129703, -0.00679508736, 0.00308191497, 0.0192569792, 0.0156000406, 0.00625452772, 0.00635248143, 0.0205920525, -0.0177332554, 0.00772746187, 0.00673704082, -0.0199535396, 0.0173269287, 0.0118052401, 0.00188833044, 0.0116746351, 0.0106007718, 0.00531489728, -0.027601188, 0.024626296, 0.00451312773, -0.0323029682, 0.00525322277, -0.00227288972, 0.016659392, 0.0163981821, 0.0128210569, 0.0224495456, 0.0209693573, 0.015179202, 0.0161079485, 0.0305615682, 0.0162820891, 0.00986793265, 0.008206347, -0.00780727621, 0.00787257869, -0.00305833342, 0.00962849, -0.00325605483, -0.0149905505, -0.000906072091, 0.0153388306, -0.0191844217, 0.0357857682, -0.00767667079, -0.00808299799, 0.00227651745, 0.0158322267, 0.0410099663, -0.000953235, -0.0129226381, -0.0288491901, 0.00938904751, -0.00241982029, -0.0162966, -0.0149179921, 0.00391089404, 0.00759685691, 0.000808118377, 0.00302386819, -0.00262298342, 0.0110361213, -0.00746625196, -0.0196778178, -0.0184443276, 0.0329414792, 0.00783629902, 0.00149470149, -0.00626903959, 0.000197041212, -0.00360796275] |
13 Mar, 2023 | Lexicographically first palindromic string
13 Mar, 2023
Rearrange the characters of the given string to form a lexicographically first palindromic string. If no such string exists display message “no palindromic string”. Examples:
Input : malayalam
Output : aalmymlaa
Input : apple
Output : no palindromic string
Simple Approach: 1. Sort the string characters in alphabetical(ascending) order. 2. One be one find lexicographically next permutation of the given string. 3. The first permutation which is palindrome is the answer.
Efficient Approach: Properties for palindromic string: 1. If length of string is even, then the frequency of each character in the string must be even. 2. If the length is odd then there should be one character whose frequency is odd and all other chars must have even frequency and at-least one occurrence of the odd character must be present in the middle of the string.
Algorithm 1. Store frequency of each character in the given string 2. Check whether a palindromic string can be formed or not using the properties of palindromic string mentioned above. 3. If palindromic string cannot be formed, return “No Palindromic String”. 4. Else we create three strings and then return front_str + odd_str + rear_str.
odd_str : It is empty if there is no character with odd frequency. Else it contains all occurrences of odd character.
front_str : Contains half occurrences of all even occurring characters of string in increasing order.
rear_str Contains half occurrences of all even occurring characters of string in reverse order of front_str.
Below is implementation of above steps.
C++
// C++ program to find first palindromic permutation
// of given string
#include <bits/stdc++.h>
using namespace std;
const char MAX_CHAR = 26;
// Function to count frequency of each char in the
// string. freq[0] for 'a',...., freq[25] for 'z'
void countFreq(string str, int freq[], int len)
{
for (int i=0; i<len; i++)
freq[str.at(i) - 'a']++;
}
// Cases to check whether a palindr0mic
// string can be formed or not
bool canMakePalindrome(int freq[], int len)
{
// count_odd to count no of
// chars with odd frequency
int count_odd = 0;
for (int i=0; i<MAX_CHAR; i++)
if (freq[i]%2 != 0)
count_odd++;
// For even length string
// no odd freq character
if (len%2 == 0)
{
if (count_odd > 0)
return false;
else
return true;
}
// For odd length string
// one odd freq character
if (count_odd != 1)
return false;
return true;
}
// Function to find odd freq char and
// reducing its freq by 1returns "" if odd freq
// char is not present
string findOddAndRemoveItsFreq(int freq[])
{
string odd_str = "";
for (int i=0; i<MAX_CHAR; i++)
{
if (freq[i]%2 != 0)
{
freq[i]--;
odd_str = odd_str + (char)(i+'a');
return odd_str;
}
}
return odd_str;
}
// To find lexicographically first palindromic
// string.
string findPalindromicString(string str)
{
int len = str.length();
int freq[MAX_CHAR] = {0};
countFreq(str, freq, len);
if (!canMakePalindrome(freq, len))
return "No Palindromic String";
// Assigning odd freq character if present
// else empty string.
string odd_str = findOddAndRemoveItsFreq(freq);
string front_str = "", rear_str = " ";
// Traverse characters in increasing order
for (int i=0; i<MAX_CHAR; i++)
{
string temp = "";
if (freq[i] != 0)
{
char ch = (char)(i + 'a');
// Divide all occurrences into two
// halves. Note that odd character
// is removed by findOddAndRemoveItsFreq()
for (int j=1; j<=freq[i]/2; j++)
temp = temp + ch;
// creating front string
front_str = front_str + temp;
// creating rear string
rear_str = temp + rear_str;
}
}
// Final palindromic string which is
// lexicographically first
return (front_str + odd_str + rear_str);
}
// Driver program
int main()
{
string str = "malayalam";
cout << findPalindromicString(str);
return 0;
}
Java
// Java program to find first palindromic permutation
// of given string
class GFG {
static char MAX_CHAR = 26;
// Function to count frequency of each char in the
// string. freq[0] for 'a',...., freq[25] for 'z'
static void countFreq(String str, int freq[], int len)
{
for (int i = 0; i < len; i++)
{
freq[str.charAt(i) - 'a']++;
}
}
// Cases to check whether a palindr0mic
// string can be formed or not
static boolean canMakePalindrome(int freq[], int len)
{
// count_odd to count no of
// chars with odd frequency
int count_odd = 0;
for (int i = 0; i < MAX_CHAR; i++)
{
if (freq[i] % 2 != 0)
{
count_odd++;
}
}
// For even length string
// no odd freq character
if (len % 2 == 0)
{
if (count_odd > 0)
{
return false;
}
else
{
return true;
}
}
// For odd length string
// one odd freq character
if (count_odd != 1)
{
return false;
}
return true;
}
// Function to find odd freq char and
// reducing its freq by 1returns "" if odd freq
// char is not present
static String findOddAndRemoveItsFreq(int freq[])
{
String odd_str = "";
for (int i = 0; i < MAX_CHAR; i++)
{
if (freq[i] % 2 != 0)
{
freq[i]--;
odd_str = odd_str + (char) (i + 'a');
return odd_str;
}
}
return odd_str;
}
// To find lexicographically first palindromic
// string.
static String findPalindromicString(String str)
{
int len = str.length();
int freq[] = new int[MAX_CHAR];
countFreq(str, freq, len);
if (!canMakePalindrome(freq, len))
{
return "No Palindromic String";
}
// Assigning odd freq character if present
// else empty string.
String odd_str = findOddAndRemoveItsFreq(freq);
String front_str = "", rear_str = " ";
// Traverse characters in increasing order
for (int i = 0; i < MAX_CHAR; i++)
{
String temp = "";
if (freq[i] != 0)
{
char ch = (char) (i + 'a');
// Divide all occurrences into two
// halves. Note that odd character
// is removed by findOddAndRemoveItsFreq()
for (int j = 1; j <= freq[i] / 2; j++)
{
temp = temp + ch;
}
// creating front string
front_str = front_str + temp;
// creating rear string
rear_str = temp + rear_str;
}
}
// Final palindromic string which is
// lexicographically first
return (front_str + odd_str + rear_str);
}
// Driver program
public static void main(String[] args)
{
String str = "malayalam";
System.out.println(findPalindromicString(str));
}
}
// This code is contributed by Rajput-Ji
Python3
# Python3 program to find first palindromic permutation
# of given string
MAX_CHAR = 26;
# Function to count frequency of each char in the
# string. freq[0] for 'a',...., freq[25] for 'z'
def countFreq(str1, freq, len1):
for i in range(len1):
freq[ord(str1[i]) - ord('a')] += 1;
# Cases to check whether a palindr0mic
# string can be formed or not
def canMakePalindrome(freq, len1):
# count_odd to count no of
# chars with odd frequency
count_odd = 0;
for i in range(MAX_CHAR):
if (freq[i] % 2 != 0):
count_odd += 1;
# For even length string
# no odd freq character
if (len1 % 2 == 0):
if (count_odd > 0):
return False;
else:
return True;
# For odd length string
# one odd freq character
if (count_odd != 1):
return False;
return True;
# Function to find odd freq char and
# reducing its freq by 1returns "" if odd freq
# char is not present
def findOddAndRemoveItsFreq(freq):
odd_str = "";
for i in range(MAX_CHAR):
if (freq[i]%2 != 0):
freq[i]-=1;
odd_str += chr(i+ord('a'));
return odd_str;
return odd_str;
# To find lexicographically first palindromic
# string.
def findPalindromicString(str1):
len1 = len(str1);
freq=[0]*MAX_CHAR;
countFreq(str1, freq, len1);
if (canMakePalindrome(freq, len1) == False):
return "No Palindromic String";
# Assigning odd freq character if present
# else empty string.
odd_str = findOddAndRemoveItsFreq(freq);
front_str = "";
rear_str = " ";
# Traverse characters in increasing order
for i in range(MAX_CHAR):
temp = "";
if (freq[i] != 0):
ch = chr(i + ord('a'));
# Divide all occurrences into two
# halves. Note that odd character
# is removed by findOddAndRemoveItsFreq()
for j in range(1,int(freq[i]/2)+1):
temp += ch;
# creating front string
front_str += temp;
# creating rear string
rear_str = temp+rear_str;
# Final palindromic string which is
# lexicographically first
return (front_str + odd_str+rear_str);
# Driver code
str1 = "malayalam";
print(findPalindromicString(str1));
# This code is contributed by mits
C#
// C# program to find first palindromic permutation
// of given string
using System;
class GFG
{
static int MAX_CHAR = 26;
// Function to count frequency of each char in the
// string. freq[0] for 'a',...., freq[25] for 'z'
static void countFreq(string str, int[] freq, int len)
{
for (int i = 0; i < len; i++)
{
freq[str[i] - 'a']++;
}
}
// Cases to check whether a palindr0mic
// string can be formed or not
static bool canMakePalindrome(int[] freq, int len)
{
// count_odd to count no of
// chars with odd frequency
int count_odd = 0;
for (int i = 0; i < MAX_CHAR; i++)
{
if (freq[i] % 2 != 0)
{
count_odd++;
}
}
// For even length string
// no odd freq character
if (len % 2 == 0)
{
if (count_odd > 0)
{
return false;
}
else
{
return true;
}
}
// For odd length string
// one odd freq character
if (count_odd != 1)
{
return false;
}
return true;
}
// Function to find odd freq char and
// reducing its freq by 1returns "" if odd freq
// char is not present
static string findOddAndRemoveItsFreq(int[] freq)
{
string odd_str = "";
for (int i = 0; i < MAX_CHAR; i++)
{
if (freq[i] % 2 != 0)
{
freq[i]--;
odd_str = odd_str + (char) (i + 'a');
return odd_str;
}
}
return odd_str;
}
// To find lexicographically first
// palindromic string.
static string findPalindromicString(string str)
{
int len = str.Length;
int[] freq = new int[MAX_CHAR];
countFreq(str, freq, len);
if (!canMakePalindrome(freq, len))
{
return "No Palindromic String";
}
// Assigning odd freq character if present
// else empty string.
string odd_str = findOddAndRemoveItsFreq(freq);
string front_str = "", rear_str = " ";
// Traverse characters in increasing order
for (int i = 0; i < MAX_CHAR; i++)
{
String temp = "";
if (freq[i] != 0)
{
char ch = (char) (i + 'a');
// Divide all occurrences into two
// halves. Note that odd character
// is removed by findOddAndRemoveItsFreq()
for (int j = 1; j <= freq[i] / 2; j++)
{
temp = temp + ch;
}
// creating front string
front_str = front_str + temp;
// creating rear string
rear_str = temp + rear_str;
}
}
// Final palindromic string which is
// lexicographically first
return (front_str + odd_str + rear_str);
}
// Driver code
public static void Main()
{
string str = "malayalam";
Console.Write(findPalindromicString(str));
}
}
// This code is contributed by Ita_c.
PHP
<?php
// PHP program to find first palindromic permutation
// of given string
$MAX_CHAR = 26;
// Function to count frequency of each char in the
// string. freq[0] for 'a',...., freq[25] for 'z'
function countFreq($str, &$freq, $len)
{
for ($i = 0; $i < $len; $i++)
$freq[ord($str[$i]) - ord('a')]++;
}
// Cases to check whether a palindr0mic
// string can be formed or not
function canMakePalindrome($freq, $len)
{
global $MAX_CHAR;
// count_odd to count no of
// chars with odd frequency
$count_odd = 0;
for ($i = 0; $i < $MAX_CHAR; $i++)
if ($freq[$i] % 2 != 0)
$count_odd++;
// For even length string
// no odd freq character
if ($len % 2 == 0)
{
if ($count_odd > 0)
return false;
else
return true;
}
// For odd length string
// one odd freq character
if ($count_odd != 1)
return false;
return true;
}
// Function to find odd freq char and
// reducing its freq by 1returns "" if odd freq
// char is not present
function findOddAndRemoveItsFreq($freq)
{
global $MAX_CHAR;
$odd_str = "";
for ($i = 0; $i < $MAX_CHAR; $i++)
{
if ($freq[$i] % 2 != 0)
{
$freq[$i]--;
$odd_str .= chr($i+ord('a'));
return $odd_str;
}
}
return $odd_str;
}
// To find lexicographically first palindromic
// string.
function findPalindromicString($str)
{
global $MAX_CHAR;
$len = strlen($str);
$freq=array_fill(0, $MAX_CHAR, 0);
countFreq($str, $freq, $len);
if (!canMakePalindrome($freq, $len))
return "No Palindromic String";
// Assigning odd freq character if present
// else empty string.
$odd_str = findOddAndRemoveItsFreq($freq);
$front_str = "";
$rear_str = " ";
// Traverse characters in increasing order
for ($i = 0; $i < $MAX_CHAR; $i++)
{
$temp = "";
if ($freq[$i] != 0)
{
$ch = chr($i + ord('a'));
// Divide all occurrences into two
// halves. Note that odd character
// is removed by findOddAndRemoveItsFreq()
for ($j = 1; $j <= (int)($freq[$i]/2); $j++)
$temp .= $ch;
// creating front string
$front_str .= $temp;
// creating rear string
$rear_str = $temp.$rear_str;
}
}
// Final palindromic string which is
// lexicographically first
return ($front_str.$odd_str.$rear_str);
}
// Driver code
$str = "malayalam";
echo findPalindromicString($str);
// This code is contributed by mits
?>
Javascript
// JavaScript program to find first palindromic permutation
// of given string
const MAX_CHAR = 26;
// Function to count frequency of each char in the
// string. freq[0] for 'a',...., freq[25] for 'z'
function countFreq(str, freq, len) {
for (let i = 0; i < len; i++) {
freq[str.charCodeAt(i) - 'a'.charCodeAt()]++;
}
}
// Cases to check whether a palindr0mic
// string can be formed or not
function canMakePalindrome(freq, len) {
// count_odd to count no of
// chars with odd frequency
let count_odd = 0;
for (let i = 0; i < MAX_CHAR; i++) {
if (freq[i] % 2 !== 0) {
count_odd++;
}
}
// For even length string
// no odd freq character
if (len % 2 === 0) {
if (count_odd > 0) {
return false;
} else {
return true;
}
}
// For odd length string
// one odd freq character
if (count_odd !== 1) {
return false;
}
return true;
}
// Function to find odd freq char and
// reducing its freq by 1returns "" if odd freq
// char is not present
function findOddAndRemoveItsFreq(freq) {
let odd_str = "";
for (let i = 0; i < MAX_CHAR; i++) {
if (freq[i] % 2 !== 0) {
freq[i]--;
odd_str = odd_str + String.fromCharCode(i + 'a'.charCodeAt());
return odd_str;
}
}
return odd_str;
}
// To find lexicographically first
// palindromic string.
function findPalindromicString(str) {
const len = str.length;
const freq = new Array(MAX_CHAR).fill(0);
countFreq(str, freq, len);
if (!canMakePalindrome(freq, len)) {
return "No Palindromic String";
}
// Assigning odd freq character if present
// else empty string.
let odd_str = findOddAndRemoveItsFreq(freq);
let front_str = "",
rear_str = " ";
// Traverse characters in increasing order
for (let i = 0; i < MAX_CHAR; i++) {
let temp = "";
if (freq[i] !== 0) {
const ch = String.fromCharCode(i + 'a'.charCodeAt());
// Divide all occurrences into two
// halves. Note that odd character
// is removed by findOddAndRemoveItsFreq()
for (let j = 1; j <= freq[i] / 2; j++) {
temp = temp + ch;
}
// creating front string
front_str = front_str + temp;
// creating rear string
rear_str = temp + rear_str;
}
}
// Final palindromic string which is
// lexicographically first
return (front_str + odd_str + rear_str);
}
// Driver code
const str = "malayalam";
console.log(findPalindromicString(str));
// This code is contributed by phasing17.
Output
aalmymlaa
Time Complexity : O(n) where n is length of input string. Assuming that size of string alphabet is constant. | NLP/Natural Language Processing (NLP) Tutorial/AI ML DS - Projects/30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated]/Does Artificial Intelligence Require Coding?/Artificial Intelligence – Boon or Bane/Artificial Intelligence Examples/Agents in Artificial Intelligence/What are Diffusion Models?/ML | Common Loss Functions/Loss Functions in Deep Learning/Kaiming Initialization in Deep Learning/Swift - Initialization/Swift – If Statement/6 Best iOS Project Ideas For Beginners/Swift Programming Language/Introduction to Visual Programming Language/What is D Programming Language: Usage and Applications/Best Programming Languages for Data Science in 2024/5 Best Languages for Competitive Programming/MEX (Minimum Excluded) in Competitive Programming/Rearrange Array to maximize sum of MEX of all Subarrays starting from first index/Minimize moves to segregate even and odd by swapping adjacent elements/Minimum elements to be removed such that sum of adjacent elements is always even/Maximum sum such that exactly half of the elements are selected and no two adjacent/Maximum length subsequence such that adjacent elements in the subsequence have a common factor/Longest subsequence such that difference between adjacents is one/Longest Increasing Subsequence using Longest Common Subsequence Algorithm/Longest Common Subsequence (LCS)/Minimum insertions to form a palindrome with permutations allowed/Lexicographically first palindromic string | https://www.geeksforgeeks.org/lexicographically-first-palindromic-string/?ref=lbp | NLP | Lexicographically first palindromic string | Artificial Intelligence – Boon or Bane, AI ML DS - Projects, Longest Common Subsequence (LCS), Rearrange Array to maximize sum of MEX of all Subarrays starting from first index, MEX (Minimum Excluded) in Competitive Programming, Swift - Initialization, Minimum insertions to form a palindrome with permutations allowed, Longest Increasing Subsequence using Longest Common Subsequence Algorithm, 6 Best iOS Project Ideas For Beginners, ML | Common Loss Functions, Artificial Intelligence Examples, Longest subsequence such that difference between adjacents is one, Lexicographically first palindromic string, What is D Programming Language: Usage and Applications, 30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated], Swift – If Statement, Natural Language Processing (NLP) Tutorial, Loss Functions in Deep Learning, Minimize moves to segregate even and odd by swapping adjacent elements, Maximum length subsequence such that adjacent elements in the subsequence have a common factor, Does Artificial Intelligence Require Coding?, Best Programming Languages for Data Science in 2024, NLP, 5 Best Languages for Competitive Programming, Maximum sum such that exactly half of the elements are selected and no two adjacent, Swift Programming Language, Minimum elements to be removed such that sum of adjacent elements is always even, Agents in Artificial Intelligence, What are Diffusion Models?, Kaiming Initialization in Deep Learning, Introduction to Visual Programming Language | GeeksforGeeks | [-0.00569258025, 0.00121162145, -0.0081418, 0.0241359454, -0.00482422, 0.0296726655, -0.0189554747, 0.00532519724, -0.0408500135, -0.0113109415, 0.00763711194, 0.0278765727, 0.011251566, -0.000100079378, -0.0110585978, -0.0236461014, -0.00463125156, 0.0107543, -0.0341703221, -0.00582617382, -0.0316172, -0.00955937803, -0.0670937747, 0.00468320493, -0.00036993422, 0.0367828235, 0.0288562588, -0.00453847786, -0.0149253961, -0.000859082327, 0.027282821, -0.00633457256, -0.00279433676, -0.0176195372, -0.00294462987, -0.0109175816, 9.8165925e-05, 0.0571187697, 0.0202914122, -0.00801562797, -0.00986367557, 0.00725488504, -0.000121417273, -0.00519902539, -0.00558496267, 0.0275796968, 0.0229484458, -0.00173764711, -0.00285742292, -0.0210039131, 0.0155117242, -0.00987851899, 0.0201875065, 0.0109992223, 0.0096410187, -0.0206179749, -0.0299992282, -0.000105471838, 0.0271195397, 0.0195046943, 0.025590634, -0.075525023, -0.015392974, -0.00166435598, 0.0522203296, -0.0110660195, -0.0487765782, 0.00592265837, 0.0265257899, 0.0255312584, -0.0653125197, 0.0239132885, 0.0177382864, -0.0231117271, -0.0412953272, 0.00432324363, 0.035714075, 0.022503132, -0.0163578186, 0.065965645, -0.0256351642, -0.0161203183, -0.0148957083, -0.0412359498, 0.0115855504, 0.0175156314, 0.0347937606, -0.0461640768, 0.030370323, 0.0323890746, -0.0229484458, 0.0113925822, 0.0110882847, -0.00259765703, -0.0393953249, 0.0337843858, 0.0289601665, 0.0217757877, -0.0320328251, 0.0549812689, -0.021716414, -0.0128546916, 0.00143798871, -0.00797109678, 0.013455864, 0.0288859475, 0.00763711194, 0.035446886, 0.0254570395, 0.0436703265, 0.0164914113, -0.0232601631, 0.0146656297, -0.0153484428, -0.00381855597, -0.0490437672, -0.029880479, -0.0290046968, 0.0175750051, 0.0497562662, 0.00241767662, 0.0234086011, -0.0380297, 0.0190445371, -0.0361297, 0.0462234542, -0.000504687661, 0.0239578206, -0.0299250092, 0.0103312535, -0.00538457232, -0.001335938, -0.0196531322, 0.0111996131, 0.00621582242, 0.0399297, -0.0233492274, 0.0307562612, -0.00222470774, 0.0264515709, 0.0327156372, -0.0125132855, 0.0322703235, -0.0108953165, 0.0101011749, -0.0106207067, -0.0011355473, 0.0369312614, 0.0131515665, -0.0123128947, -0.0459562652, -0.0204398502, -0.0104871131, 0.00287041115, 0.007206643, -0.0267039146, 0.0205586012, -0.0165359434, -0.0112218792, -0.0560500175, -0.0140644582, -0.00017766119, 0.0011810062, -0.0420078263, -0.00620097853, 0.0010075199, 0.00938125327, -0.00486504054, -0.0305484477, 0.0343781374, -0.00830508117, 0.0368422, 0.011422269, -0.0341703221, -0.0331015736, -0.0180796944, 0.0279804785, -0.00982656609, -0.0107543, -0.0299250092, -0.00129604538, -0.00841640867, 0.0068169944, 0.0111253941, 0.0414437652, 0.0246851649, 0.0308156349, 0.00907695573, -0.00338808703, 0.00998242479, -0.0181836, -0.00840898696, 0.0176640693, 0.012795317, 0.0292421971, 0.0112738321, -0.047232829, 0.0189257879, -0.0326859467, 0.0356843881, 0.0145468796, -0.0587218963, -0.0124984421, 0.0380000137, 0.0314390734, -0.0190445371, -0.0587812699, 0.019757038, 0.0201281309, 0.0081418, -0.048093766, 0.0292718858, -0.0194601621, -0.00881719, 0.0257836021, 0.00866875332, -0.0542390794, 0.0301476661, 0.00442715, -0.0116820354, -0.0257390719, 0.00554785365, 0.0147769582, -0.0377625115, -0.0269562583, -0.0583062693, -0.0473218895, 0.0431953259, 0.0206328202, -0.00694687711, 0.0293461028, 0.0088543, -0.00194453192, 0.0172781311, 0.0395734496, -0.0119195357, -0.0243289135, 0.0253531337, -0.00589668145, 0.0299101658, 0.0152742239, 0.0152445361, 0.00714355707, 0.00465722801, 0.059760958, -0.00813437812, -0.00866875332, -0.00515449373, 0.0128324265, 0.073387526, 0.0133445356, 0.0165507868, 0.00653496291, 0.0157640669, -0.016669536, -0.00300029409, -0.0105316443, -0.0033862316, 0.0137601607, 0.000991748413, 0.0180203188, -0.00486875186, -0.0152890673, 0.0367828235, -0.00745527586, 0.00291494234, 0.0158531312, -0.0155859431, 0.00568886893, -0.0249375086, 0.0516562685, -0.0481531397, 0.00475000171, -0.0271789152, 0.038118761, -0.0485093929, -0.0506765805, -0.0117859412, 0.0777219, -0.0130921919, 0.00939609669, 0.0526656434, 0.0223546941, -0.0142351612, 0.00947773736, -0.0215531327, -0.00113740272, 0.00158364314, -0.0496968925, -0.0161500052, 0.000123736609, -0.0158976614, -0.0113109415, -0.000789038371, -0.005380861, 0.0277132913, 0.0214046948, -0.00495410338, -0.0412656404, 0.0122238323, -0.00872070622, -0.0517453291, -0.0321218856, 0.00569258025, -0.0686375201, 0.0111402385, -0.0148734422, -0.0280546974, -0.0237648524, 0.00777812768, 0.027060166, -0.0663812757, -0.0242695399, 0.0124835977, -0.0499343909, -0.0266000088, 0.0530218929, -0.0102347694, -0.0156750046, -0.0157789122, 0.014413286, -0.0304593854, 0.0335765742, -0.000519067573, 0.0254570395, -0.0214937571, -0.00818633102, -0.0119343791, 0.0124984421, -0.0358031355, -0.0570593923, 0.027060166, -0.0302218851, -0.0010307132, -0.00273496192, -0.00225439528, -0.0176789127, 0.00698398659, 0.0181242246, 0.0168328173, -0.00752207264, 0.0127433641, 0.0206179749, -0.01019766, 0.0130031295, -0.00278134854, -0.00876523741, 0.00530293165, 0.0323000103, -0.0130625041, 0.00147509819, -0.00167827203, 0.0657281503, -0.02122657, -0.0069394554, -0.0153039116, 0.00752207264, -0.0180648491, 0.0120234415, 0.0412953272, -0.00134243211, 0.0159867238, -0.00165693415, -0.0177531317, 0.0155117242, -0.0667969, -0.00498750154, 0.00513222814, 0.00726230722, -0.00874297135, 0.00618242379, 0.00330644636, -0.0152445361, -0.00239726645, -0.0470843911, -0.0137601607, 0.0221023504, -0.0140125044, 0.0558718927, -0.0037257825, -0.0464015789, 0.0402562618, 0.0417703278, 0.00806015916, -0.0235867258, 0.000160150201, -0.00540312659, 0.011570707, -0.00267002033, 0.0195343811, -0.0137601607, 0.0233343821, -0.0227554757, 0.00182392634, -0.035832826, 0.00679101795, -0.0212414134, 0.00164394581, 0.0160461, -0.0181984436, -0.00803047139, -0.0190742258, 0.0100937532, 0.00524726743, -0.0302218851, 0.0114668012, -0.0169515684, -0.00903984718, 0.0299101658, 0.0385047, 0.0004594606, 0.0181093812, -0.0360406376, -0.00783008058, -0.00655722897, -0.0154375052, -0.0534968935, 0.0150144584, 0.000517212087, -0.0426312648, -0.0135375047, -0.00783750229, -0.0234679766, 0.056673456, -0.0153039116, 0.00707304943, 0.0283070412, 0.0537047051, 0.00328047, -0.0122980513, -0.00202431716, 0.0143984426, 0.0350609496, -0.00762969, -0.0245515704, -0.0296875108, 3.20648287e-05, -0.0162093807, 0.000630859577, -0.0126839885, -0.0115558635, 0.0370797, 0.00846094079, 0.00855000317, -0.0206179749, 0.0208554752, -0.00840156525, -0.00374619267, -0.00716582267, 0.0117636761, -0.00673535373, 0.00111884798, -0.0333687626, -0.0185250062, 0.0334281363, -0.040760953, 0.0178273506, -0.0255461019, 0.0169070363, -0.00056359882, 0.00689121336, 0.00944805, 0.0275351647, -0.0189703181, 0.0169070363, 0.0166398492, 0.0150441453, -0.0156007865, -0.0157046933, 0.000687451393, 0.0120308632, -0.0157640669, -0.000857226842, 0.0142871141, 0.038118761, -0.0278765727, 0.0327453241, -0.0052584, -0.0239281338, -0.00403379044, 0.033339072, -0.0077410182, -0.0118601602, -0.00829765946, 0.00671679899, -0.0373468883, 0.00312832138, -0.00625664275, 0.00444570463, 0.0233492274, -0.010049222, 0.0241656322, -0.022013288, 0.0152742239, -0.0184359439, 0.0156601612, -0.0497562662, -0.0274461024, -0.00194082095, 0.0234976634, 0.0237796959, -0.0328046978, -0.00332314568, 0.000545044139, 0.00990820676, -0.0303257909, -0.0358922, 0.0129214888, 0.0147695364, -0.0406422019, -0.00628633, -0.00248261797, -0.00213564513, 0.0165507868, 0.00323037221, -0.000378979632, -0.0221617259, 0.0306968857, -0.0466390774, 0.00220800866, 0.0061378926, -0.000754248293, 0.0066203149, 0.0184507873, -0.0146062551, 0.0283070412, 0.0387125127, -0.0264515709, 0.00669824425, -0.0240023527, -0.0279211029, 0.0230820384, 0.0120085981, 0.0218945388, -0.00559238484, -0.0318546966, -0.0219984446, 0.0189554747, -0.0373172, 0.00291679776, -0.000752856722, 0.0413547, -0.0344375111, -0.0151925832, -0.0135523481, -0.0174859427, 0.0087578157, -0.0117191449, 0.0098339878, 0.00741816638, -0.00544765824, 0.0276687592, -0.000821045192, 0.0175156314, -0.0158086, 0.011592973, -0.000467578269, -0.011815629, -0.0181539115, -0.0195343811, 0.0162242241, 0.0195937566, -0.00265146582, 0.0106355501, 0.0259171966, -0.0084683625, 0.0154968798, -0.00436777482, -0.0189851634, 0.00643476797, 0.00968555, -0.0292570405, 0.0190296937, -0.0261695404, -0.00136284227, 0.0238687582, 0.0259320401, -0.0257539153, -0.0126468791, -0.00177939516, -0.0102050817, -0.00607109582, -0.0195046943, -0.0292570405, -0.0324781351, 0.00545879081, -0.0283515714, 0.00923281536, 0.00884687807, -0.0233046953, 0.00960390922, 0.0328046978, 0.00314873154, 0.0125578167, -0.0199796949, 0.00321738399, 0.000598852756, -0.000101992831, -0.00181464909, 0.0156750046, 0.000247473217, 0.0444422029, 0.0151183642, -0.00542168133, 0.0136191454, -0.0200093817, 0.0294203218, 0.0258281343, 0.0141535206, -0.0112367226, -0.0532000177, -0.00588554889, 4.36905066e-05, 0.0186734442, -0.000975049159, -0.0015706548, 0.0351500101, -0.0246406328, -0.0230226647, -0.00364228641, -0.0226070397, -0.0342890732, -0.0179312564, 0.0171296932, -0.00423789211, 0.0038593763, -0.0384156369, -0.0430172, -0.011592973, -0.0307265725, 0.047381267, -0.00409316551, -0.0216273516, -0.0247890707, 0.00685410388, -0.00380742317, -0.0421562642, -0.00439375127, -0.0167289115, 0.0426906385, -0.0109918006, -0.000370166148, -0.0401968881, 0.0499640778, -0.0130031295, -0.0335468873, -0.00461640768, -0.00306709087, 0.0221023504, 0.00271640718, 0.00909922179, 0.00440117344, 0.0174859427, 0.0188961, 0.000186358709, 0.00656465068, 0.0109769572, -0.0238242261, -0.00286670029, 0.0223546941, -0.0163429733, 0.00193525455, 0.0118527384, -0.0151406303, 0.00754062738, 0.000140087941, -0.00621582242, 0.0406718887, 0.026985947, -0.0048464858, -0.0262734462, -0.00618984597, -0.0287375096, 0.00536230626, -0.00665742392, -0.0132554732, -0.0213750079, 0.0605328344, -0.0123722702, 0.0223546941, 0.00897305, -0.00903984718, 0.0263179783, -0.00127934618, 0.00371093885, -0.00632715039, -0.0114074256, 0.00677988492, -0.031646885, -0.0389203243, -0.0268078223, -0.00152612361, 0.00614902563, 0.0401672, 0.0212562568, -0.0262289159, 0.0321218856, 0.0151406303, -0.0287078228, 0.0121941445, 0.0331609473, -0.0215976629, -0.0149625046, 0.0080378931, -0.0122164106, 0.0453922041, 0.000749145751, 0.0274906345, -0.00145468803, -0.0128472699, 0.0286039151, 0.0297171976, 0.00585215027, 0.0261546969, 0.0211375076, 0.00393730588, -0.0154820364, 0.000586792186, -0.00565918162, -0.00892851874, -0.0159125049, -0.00950000342, 0.0210187566, -0.0205734447, 0.00634199427, 0.0149253961, -0.027060166, -0.01490313, -0.0228148513, -0.00873555, -0.0138789108, -0.00370537234, 0.0342593864, 0.0034585949, -0.0191187561, 0.00639023632, -0.0035198254, -0.0230226647, -0.0433437638, 0.00586699415, -0.012550395, 0.00716582267, 0.0204101633, 0.0101605505, 0.0260507893, -0.0173968803, 0.0232304763, 0.0102050817, -0.00639023632, 0.00898789335, -0.021716414, 0.0215531327, 0.0294054784, -0.0022599618, -0.0093293, -0.00554785365, 0.0236757901, -0.0336656347, 0.0122832069, -0.00108081091, -0.00340107526, 0.0263476651, 0.0112144565, 0.0175601617, 0.0112812538, -0.00802305, -0.0494890809, 0.0278914161, -0.00831250288, -0.0177382864, 0.0017599127, -0.0179906301, -0.0077410182, -0.0106207067, -0.0128250048, -0.0415625125, 0.0306078233, 2.1453865e-05, 0.0282328222, 0.0235867258, -0.0295687597, 0.0430765785, 0.0177086, 0.0167140681, 0.0284257904, 0.0183023494, 0.00356621202, 0.00250673923, 0.0330125093, 0.000491235522, -0.0261101648, 0.0221765693, 0.00990078412, 0.031914074, -0.0122757852, -0.0327453241, -0.0255461019, -0.00449394668, -0.0408203267, -0.0421562642, -0.00903984718, 0.00367754023, -0.0102421911, -0.0277429782, -0.000463171542, -0.0164171923, -0.0112293009, 0.00194453192, -0.0199203193, -0.00588925974, -0.00263662194, -0.00336767687, 0.00881719, 0.00310048927, 0.00947773736, 0.0230968837, 0.0137675824, 0.00672422117, -0.0236757901, 0.0198609438, -0.0118972696, 0.0151109425, 0.0327750109, -0.00868359674, 0.00224511791, 0.0261250082, 0.0246703215, -0.011837895, -0.00184619206, 0.000702295161, -0.00553301, -0.00473144697, -0.0132925827, 0.0394547023, -0.0256796964, 0.0198906325, -0.0134484423, 0.0186140686, 0.0101308627, 0.0204101633, -0.00552187674, 0.0265554786, -0.0167882871, -0.0262586027, 0.0193711, 0.017649224, -0.0250859465, 0.0368718877, 0.0026069344, -0.0259320401, 0.0247742273, -0.0185992252, 0.022577351, 0.0216125064, -0.0118972696, 0.0204101633, -0.0187179744, -0.0160312559, 0.0146136768, -0.0183914118, -0.00534375198, 0.014413286, -0.0120382849, -0.016446881, 0.0199500062, 0.00527695473, -0.00558496267, -0.0164914113, -0.0241211019, -0.0324484482, 0.0157343801, -0.00861679949, 0.016446881, -0.000368774548, 0.014339067, 0.0140496138, -0.0133964885, 0.00678730709, 0.0102570346, -0.0187328197, 0.0167289115, 0.0120679727, -0.0355656371, -0.0340812616, -0.0249226652, -0.0106652379, 0.00604140805, -0.0307562612, -0.00559980655, -0.0339031368, 0.00785976835, 0.00860937778, 0.00483164238, -0.00640136935, 0.0361890756, 0.0302218851, -0.00879492518, -0.0290640723, -0.00308750104, 0.0144800832, 0.0117265666, 0.00852773711, -0.00395957148, 0.00620840071, 0.00968555, -0.0315281339, 0.0161500052, 0.00787461177, 0.00937383156, 0.0173226614, 0.0155562554, 0.0112960972, -0.0058410177, -0.051626578, 0.0115187541, -0.0103015658, -0.0191632882, 0.0129585983, 0.0118675819, 0.00259209075, 0.013433598, -0.000227990793, 0.00636054901, 0.00605254108, -0.00124965864, 0.0107023474, -0.0388015769, -0.0124242231, 0.0169812553, -0.0117488317, -0.00123203162, 0.0203062575, 0.000463867356, -0.0187921934, 0.00682441657, 0.0191187561, -0.0182578191, -0.0151628954, -0.00480566546, -0.0182429757, -0.00831250288, 0.00965586305, 0.0150218802, -0.014658208, 0.00279248133, -0.0347047, 0.00304482528, -0.0155562554, 0.0271195397, 0.0129140671, 0.0111996131, -0.0371687636, 0.0278914161, -0.00422675908, 0.0121273482, -0.00643105665, -0.0332797, -0.0134113329, -0.0151628954, 0.0327156372, 0.00305039156, -0.0336656347, -0.021939069, -0.00828281511, -0.0139605515, -0.0313500091, -0.00942578446, -0.0125058638, -0.00355136837, -0.000165020814, 0.041206263, 0.0139902392, 0.0355359502, 0.00582988467, -0.0130699258, 0.0112441443, -0.0482422039, -0.0445312634, -0.0209890697, 0.0150960991, -0.00366269657, -0.00990078412, -0.00746269803, -0.00605996279, 0.0159273483, -0.037673451, -0.00391504029, -0.0231265705, 0.00264404388, -0.00786719, 0.0329234488, 0.0188515689, -0.00968555, -0.0237648524, 0.00773359649, 0.00355136837, 0.0267632902, -0.00624179887, -3.67614884e-05, -0.00320996204, 0.0147472704, -0.0291976668, -0.00450507971, -0.0209000073, 0.0332500115, 0.00754062738, 0.0200390685, 0.000877173152, -0.0126097696, -0.0106726596, -0.00975976884, -0.0129585983, 0.0159718804, 0.00307080173, 0.0181242246, -0.0216570385, -0.0575047061, 0.0125355506, 0.0363672, 0.00967070647, -0.000753320579, -0.0173671935, -0.00113833044, 0.0173968803, -0.0062306663, -0.00224697334, -0.0106281284, -0.0114519568, 0.0118007855, -0.000548291195, 0.00603027549, 0.00352353626, -0.00780781498, 0.00762969, -0.0117117222, -0.00633828342, 0.0101679722, -0.0208703186, -0.00102421909, -0.019267194, 0.0448578261, -0.00254013762, -0.00585215027, -0.00967812818, -0.00689121336, -0.0218796954, -0.00561093958, 0.0126691451, 0.0161203183, -0.00869101845, 0.0024232429, 0.0282476656, -0.00418593874, 0.0202023499, -0.0119566442, -0.00203359453, 0.017649224, -0.00924766, 0.00796367414, 0.00165044, -0.00430097803, -0.0175156314, -0.0329234488, -0.00732539315, -0.00899531506, 0.0286187604, -0.0228890702, -0.0117785195, 0.0235867258, 0.0363968872, 0.0122757852, 0.0147918016, 0.0193117261, -0.00963359699, 0.020662507, -0.00344560668, 0.0121718794, -0.0195046943, 0.00561836129, -0.0134113329, 0.0103089875, -0.0161351617, 0.0228000078, -0.0121570351, -0.0258726645, -0.0248336028, -0.0131589891, -0.0127656292, -0.0105019566, -0.0277281348, 0.00460898597, 0.0170406308, -0.0102421911, -0.0114371134, 0.00979687832, 0.0017209478, 0.00454218918, 0.0517156422, -0.00328047, -0.0143019576, -0.0186140686, 0.00975234713, 0.0106652379, 0.00280361413, 0.00794883072, 0.00513593946, -0.016743755, 0.026792977, 0.00464609545, 0.0214195382, 0.00605996279, -0.0147175826, 0.0208554752, -0.0107839881, -0.00313388766, -0.00829765946, 0.00308564561, -0.00290009868, -0.00231562578, 0.0139531298, 0.0124093788, 0.017233599, 0.0107097691, -0.00660918187, 0.00185546943, -0.0179461, -0.00241767662, 0.0226812568, -0.0350609496, -0.00181464909, 0.0125058638, 0.0135375047, 0.00210781326, 0.0263179783, 0.00344746211, -0.0466390774, 0.0252343826, -0.00439375127, 0.00265146582, -0.0200242251, 0.0276539158, 0.0210781321, -0.00829765946, 0.022206258, -0.0135523481, 0.0231414139, 0.01174141, -0.0203359444, -0.0282921977, -0.00489843916, -0.00979687832, 0.00466093887, 0.000184271295, -0.00180815486, -0.00997500308, 0.00760742463, 0.01561563, -0.00551445503, -0.0167140681, 0.023185946, 0.000916601857, 0.00132944377, -0.0128546916, -0.0273273531, -0.00353466906, 0.0111921914, 0.00179887761, -0.0154375052, -0.00173857482, 0.0267781336, -0.00608593971, -0.0185695384, -0.0108062532, -0.0169664118, -0.0174562559, -0.0225179754, -0.011837895, -0.0190742258, 0.0356843881, 0.000514892745, 0.0153335985, -0.00199648505, -0.00041261, -0.0145468796, -0.015392974, 0.00295390724, -0.0261992272, 0.00712871319, -0.0258429777, -0.00734765874, -0.00888398755, 0.0147175826, -0.00428613415, -0.00894336216, 0.0305484477, 0.00555156451, 0.0112589877, -0.0328640752, 0.00801562797, 0.000792285427, -0.00122739305, 0.00341591914, -0.00149643607, 0.0211523511, -0.0112441443, -0.00115966832, 0.0115632853, 0.0235273521, 0.0302664172, 0.00573711144, 0.00534375198, 0.0164914113, -0.00747011974, 0.00283701275, -0.00762226805, 0.0171890687, 0.0265554786, -0.00112163124, -0.0194304753, 0.0320328251, -0.045540642, -0.0217757877, -0.0218054764, 0.00346601685, -0.0127136763, 0.0156453177, 0.0355359502, -0.00483906409, 0.0124093788, 0.00333427847, -0.0157789122, 0.00476113427, 0.0144058643, 0.0104722688, 0.00123481487, 0.0173968803, 0.0127804726, -0.0213750079, 0.0212562568, -0.0179461, -0.0149550829, -0.00614902563, 0.00551074417, -0.00127192424, 0.0273273531, 0.013849223, 0.00825312734, -0.00222470774, -0.00362373167, 0.0153039116, -0.00636426, 0.0234234445, 0.0027627938, -0.00356806768, 0.0134187546, -0.00923281536, 0.0124093788, -0.0039632828, 0.00463867327, 0.00775586208, -0.00129697309, -0.00897305, 0.00114389684, 0.00887656584, -0.0304593854, -0.0164914113, 0.0122683635, -0.0155117242, -0.0204992257, 0.0209445376, -0.0103460969, 0.00561093958, -0.00234902417, 0.0216867253, -0.00554414233, 0.0253382903, 0.0128472699, -0.0123796919, 0.0226070397, -0.0179312564, 0.0127433641, -0.00810469, 0.0131441448, -0.00607480668, -0.00607480668, 0.0232898518, 0.00444570463, 0.0133890668, -0.00192041078, 0.00626406446, 0.0185992252, -0.00222841883, 0.0112218792, 0.00761484634, -0.0325672, -0.0153484428, -0.0102347694, -0.00258466881, -0.0278171971, -0.0221171957, -0.000940723, 0.00141108443, 0.00444199378, -0.026080478, 0.00150849659, -0.0242992267, 0.0123425825, -0.00376660284, -0.00276650488, -0.0106058633, 0.0173968803, -0.0201875065, 0.0171148498, 0.0337547, -0.00585215027, 0.000519067573, -0.0205289125, 0.0162687562, 0.0228000078, -0.00285000098, -0.025590634, -0.0164617244, -0.0244773515, 0.0369906388, -0.0044345716, -0.00753320567, 0.00293349707, -0.0181242246, 0.019757038, 0.0230968837, -0.000625757035, -0.0122683635, -0.0168773495, 0.00665000221, -0.0321515724, -0.0202023499, -0.0051136734, 0.0334281363, -0.00206884835, -0.0082234405, 0.0117191449, 0.0093293, 0.000141131633, 0.00804531481, 0.0255312584, -0.0250859465, 0.00292793056, -0.0287671965, 0.00503574405, 0.0371390767, 0.0127804726, 0.0314984471, 0.021939069, -0.000350219838, -0.0166546926, -0.00405234518, -0.0306078233, 0.0352984481, 0.0143835982, 0.00243994221, 0.0144726615, 0.00952969, 0.0123351607, -0.0133296922, -0.00918828417, -0.00311347772, -0.0233492274, -0.0241507888, 0.0132777393, -0.0273718834, 0.00831992459, 0.00551445503, -0.0284851659, -0.00626035361, 0.0244773515, -0.00442343904, -0.0104351593, -0.0244328212, 0.0325375125, 0.0142351612, -0.0037257825, 0.00655722897, -0.0212117266, -0.0169812553, 0.00935898721, 0.0122609418, -0.0337547, 0.00594863482, -0.00864648726, -0.00366269657, -0.0146210985, 0.0160757862, 0.0443234518, 0.000542260939, 0.00565918162, 0.00366084115, 0.0448875166, -0.0199054759, 0.0113109415, -0.0113406284, 0.0167586, -0.00891367532, -0.0242546964, 0.0164765678, -0.0158382859, 0.0203507878, 0.000132666057, -0.00507285306, -0.0349718854, -0.0125800828, 0.00274609472, -0.00278877048, 0.0181093812, 0.00830508117, -0.0267039146, -0.0122460974, -0.00574082229, 0.00510254083, 0.0030188486, -0.0295390729, -0.00233789138, -0.0187625065, -0.0121867228, -0.00774844, -0.0123128947, -0.015467193, -0.00824570563, -0.0105464878, 0.000923559885, -0.00997500308, 0.00561093958, -0.0117191449, 0.0042304704, -0.00820117444, -0.0131738326, 0.0333984494, -0.0127878953, -0.0435515754, 0.0223992262, -0.0104277376, 0.00598203344, -0.0216570385, -0.0260359459, -0.0164320376, 0.00289082131, 0.0153187551, 0.0246703215, -0.0233937576, -0.0549515821, 0.000136608927, 0.0154968798, 0.0247890707, 0.0209148508, 0.0181093812, -0.00849062763, 0.0016318853, 0.00618242379, -0.0274609476, -0.00542539265, 0.0127804726, 0.0167734437, 0.00864648726, -0.00880976859, 0.00497636897, 0.0184507873, 0.0149550829, 0.0295390729, -0.000738476811, -0.0116003947, -0.0120976605, -0.0214789137, -0.0100121126, -0.0159867238, -0.038118761, -0.00946289394, 0.00378330215, -0.0232898518, -0.0337843858, -0.00358105591, -0.0164171923, 0.011570707, -0.0083793, 0.0191781316, -0.0194601621, 0.014019927, 0.0111179724, -0.00960390922, -0.0224734452, 0.0244328212, 0.0266742278, -0.00181093812, 0.0133964885, 0.00570742367, 0.00472773612, -0.000646631059, 0.0116003947, -0.0378218889, 0.0203062575, 0.0186882876, -0.0042304704, 0.0118304724, 0.00572226755, 0.0141535206, -0.0132554732, -0.032893762, 0.0327750109, -0.0101308627, 0.00248261797, 0.0199203193, -0.0270750094, -0.0342593864, 0.00435664225, 0.0243734457, 0.000598388899, 0.0180500057, -0.0074218777, 0.0194601621, 0.0216867253, -0.00745898671, -0.000670752197, 0.0034808605, 0.0340812616, -0.00508769695, -0.00157251034, -0.00626406446, -0.0259617269, -0.0435515754, -0.00893594, 0.0179609433, -0.0272531342, 0.00863164384, 0.0188515689, -0.0298359469, 0.0460156389, -0.0136636766, -0.00941836275, -0.00680215051, 0.0117339883, 0.020736726, -0.00895820651, -0.00685781473, 0.00834961236, -0.0181687567, 0.00819375273, -0.00514336117, -0.000891089148, -0.0238836017, 0.00846094079, -0.0161648486, -0.00325820432, -0.0247000083, -0.00313574332, 0.0179312564, 0.00213935622, 0.00531406421, 0.0155265676, -0.0250414144, -0.0125652384, 0.00333798933, -0.00656094, -0.0218945388, 0.0164320376, -0.0032749034, -0.0162836, -0.000896655547, 0.00463125156, 0.0151183642, 0.00391875114, -0.0213601626, 0.000643847859, -0.00986367557, -0.010761722, -0.0141609423, -0.000556176936, 0.0035309582, 0.00633086171, 0.0151777398, -0.0109992223, 0.0180351622, 0.00329902465, 0.00200576242, -0.00901015941, 0.0318546966, 0.00465351716, 0.00688008033, 0.0135449264, 0.0244031325, 0.012795317, 0.00102050812, -0.00874297135, 0.011325785, -0.000502832176, -0.0299546979, -0.00966328476, 0.0176046938, 0.0141015677, 0.0200836, 0.00183505926, -0.0103980508, 0.0105316443, -0.0231562573, 0.0066722678, 0.00466836104, 0.0119714886, 0.0336953253, 0.0154226618, -0.00190927798, 0.0105019566, -0.0149625046, -0.0051841815, 0.00250117271, -0.00820859615, -0.0162836, -0.000731518783, 0.00170888728, 0.00778554939, -0.0112218792, 0.0119492225, -0.015392974, 0.0161500052, 0.00544023607, -0.00218945392, 0.0159867238, 0.0185695384, 0.0239281338, -0.00986367557, -0.017916413, -0.0146953175, 0.017649224, -0.0142054735, -0.0180203188, -0.00865390897, 0.00762226805, 0.0199054759, -0.00391875114, 0.0172781311, -0.0230078194, 0.00686152559, 0.0183914118, -0.0254867282, 0.00646816613, -0.00391875114, -0.0214195382, 0.0152593805, 0.000189025945, 0.0166101623, -0.00148252, 0.0235718824, 0.00561836129, 0.00765195582, -0.000722705328, -0.00456816563, -0.026718758, 0.00565547077, 0.00271084066, 0.00601172075, 0.013604301, -0.0152445361, -0.0198609438, -0.00519531406, 0.01174141, -0.00112163124, 0.00715469, 0.00708789285, -0.00199834048, -0.00462383, -0.0289453231, 9.86298e-05, -0.00459414208, 0.0230968837, 0.0107171908, -0.00209482503, 0.00492812647, -0.00877265912, 0.0173820369, -0.00485761883, -0.00170239317, -0.00345117296, -0.0101531288, -0.00188515685, 0.00578535348, 0.0124613326, -0.00482050935, 0.0200539138, 0.0321515724, -0.00430468889, 0.0181242246, -0.0145246144, 0.0154523486, -0.0159867238, -0.00304482528, -0.0188070368, 0.00153354544, -0.00860937778, -0.0116003947, -0.0329234488, 0.00791172124, -0.000502368319, -0.000626684807, 0.0219984446, 0.00470918138, -0.0107320352, -0.0075666043, 0.0061378926, 0.00188051816, -0.00875039399, -0.018213287, -0.0290492289, 0.00689121336, 0.00442343904, 0.014732427, -0.0134187546, -0.0015149907, -0.00778554939, 0.00415625144, -0.0134484423, -0.0111550819, 0.000544580282, -0.0122015662, -0.0197273511, -0.0144800832, 0.0137675824, -0.00748496363, -0.00446425937, -0.00731426, -8.87146307e-05, 0.00106040074, -0.0274015721, 0.00947773736, 0.00097226596, -0.0123945354, -0.00683554914, -0.0182281304, -0.0120902387, 0.00503574405, 0.00751465093, 0.0114148473, 0.0164765678, 0.00541797047, 0.0290640723, 0.00849804934, -0.00265517668, -0.00247890712, -0.00312089943, -0.0272976663, 0.000762597891, 0.0296875108, 0.00200019591, 0.0126097696, 0.0189109445, -0.00190556701, 0.0230523515, -0.00241025467, 0.00663886964, 0.0109250033, 0.0020725592, -0.00297060655, 0.0125652384, 0.00650527561, -0.0123648476, 0.0236757901, 0.0120160198, 0.00181464909, 0.0105464878, 0.00978945661, -0.010049222, -0.0257242266, -0.00194267638, -0.0184804741, -0.00458672037, -0.00332129025, -0.00304668071, 0.0166398492, 0.0293015726, -0.00879492518, 0.0136117237, 0.0297617279, -0.0203359444, 0.0161054749, 0.0116300816, -0.00501718931, -0.0117710978, -0.0428390764, -0.000894336263, -0.00410800939, 0.0303851664, -0.0233789142, 0.0394250117, -0.000616015808, 0.0143464888, 0.0128621133, 0.00656465068, 0.0128027387, 0.00200019591, 0.0038705091, -0.00777812768, 0.0106281284, 0.03387345, -0.00131923868, -0.00144912163, -0.010687504, 0.00190000061, -0.0218796954, -0.0128398482, 0.0113109415, -0.0101605505, -0.00483164238, -0.00580761908, -0.00130439491, 0.011348051, -0.00987851899, -0.00320810662, 0.00619355682, 0.00108916056, 0.00192041078, 0.0132406298, 0.0277132913, -0.00644218968, -0.0111253941, 0.00863164384, 0.00653125206, -0.00867617503, 0.00481308764, -0.0209148508, -0.0281882901, -0.000653125229, -0.0134929735, -0.000926806941, 0.0169070363, 0.011006644, -0.00270898524, -1.68586794e-05, 0.00525468914, -0.00326191518, 0.00275537209, 0.00366640743, -0.0183023494, 0.020246882, 0.00427129027, -0.00588925974, 0.00796367414, -0.014242583, -0.00855742488, 0.0184359439, -0.0203062575, -0.0265851654, 0.0178273506, 0.000989892869, -0.0194898508, -0.00308564561, 0.00392617332, 0.015882818, 0.0352687612, 0.00174414122, 0.015957037, -0.0149328178, 0.0102125034, 0.00512851728, 0.0030077158, -0.029390635, 0.00580761908, 0.00837187748, -0.028336728, -0.0179757867, -0.0109843789, 0.00830508117, 0.0104574254, -0.0025345711, -0.0158976614, 0.0308750104, 0.00928476918, -0.0180945378, 0.0257539153, -0.0224140696, -0.0273421966, -0.00546621298, -0.00131181686, 0.0218203198, 0.010761722, -0.0150589896, 0.0138714891, -0.00800820626, 0.0133445356, 0.0127433641, 0.00734765874, 0.00448652497, -0.00530293165, 0.00630859565, 0.0275648534, -0.00943320617, 0.0104203159, 0.0224140696, 0.0216125064, 0.00847578421, 0.0158531312, 0.0118824262, -0.00354951294, -0.0166992247, -0.00430468889, 0.00502461102, -0.0223398507, 0.00815664325, -0.00902500283, 0.00473886868, -0.0179312564, -0.00358105591, -0.00419336092, -0.0141535206, 0.0128472699, -1.87141486e-05, -0.00530293165, 0.00213193428, -0.00296504, -0.00680957269, 0.00364228641, 0.0259914156, -0.0244179778, -0.00652754121, -0.0107839881, 0.00121162145, -0.0130105512, 0.0113183632, 0.00078393583, -1.53076217e-05, 0.0083273463, -0.0158086, 0.00290566497, -0.00624550972, 0.00335097779, -0.0171148498, -0.0105984407, -0.0207961015, 0.00220986409, 0.00889140926, 0.0053066425, -0.00394472806, 0.0235421956, 0.0202914122, 0.017426569, 0.00633086171, -0.00641992409, 0.0331015736, -0.000489843893, 0.0109769572, 0.00702480692, -0.0120828161, 8.84247129e-05, 0.0327156372, 0.0148957083, 0.00585215027, -0.0183320381, 0.0244328212, -0.00708047114, 0.00315800891, -0.02348282, -0.0309937596, 0.00510625169, -0.0180648491, -0.0113332067, -0.0198015682, 0.0151851615, -0.00760742463, 0.00906211231, -0.0267781336, -0.000396606571, -0.0273273531, 0.00715840096, -0.0128769577, -0.00105576206, 0.0107320352, -0.0117043005, -0.00551074417, 0.00299472758, -0.0250562578, -0.00111142616, -0.00620097853, -0.0239578206, 0.0202914122, 0.0403453261, 0.00808242429, 0.00265146582, -0.01715938, -0.00414511841, -0.00354951294, 0.00316171977, -0.00568886893, -0.00683926, 0.0103535186, 0.00333056762, -0.00589668145, -0.00806758087, 0.0125726601, -0.00318027451, 0.00163652399, 0.00889140926, -0.00129326212, -0.00605996279, 6.90582528e-05, -0.0086242212, -0.00525097828, 0.000765845, -0.00367754023, -0.00337138795, -0.00168105529, -0.00863906555, 0.0142796924, 0.0344968848, -0.000373181276, -0.00402265741, 0.00342519651, -0.0103312535, -0.0242250077, -0.000867895782, 0.00691719, -0.00616758037, -0.00474257953, 0.00271455175, -0.000976904645, 0.00440117344, -0.00167270564, -0.0205437578, 0.0132554732, -0.00651640864, 0.0114668012, 0.0130996136, 0.00634570513, 0.0122683635, -0.00921797194, 0.0107468786, 0.00657578325, 0.00284257904, -0.0160906296, 0.0342890732, 0.0128398482, 0.00434550922, -0.0133816451, -0.0445015766, -0.0155562554, -0.00156601612, 0.0160461, 0.0197273511, -0.00136098673, -0.00515820505, 0.0201281309, -0.00262363371, -0.0200093817, 0.0215976629, 0.0135671925, -0.0099378936, 0.00477968901, -0.00322295027, -0.00520273624, -0.0230820384, 0.0226664133, 0.0129363323, 0.00387793104, 0.0235421956, -0.00636054901, 0.00755918212, 0.0152445361, 0.011348051, -0.00258837966, -0.0249671955, 0.00856484659, 0.00217832113, -0.00820859615, -0.0157640669, -0.0145394579, -0.0132554732, 0.00399668096, -0.0100343786, 0.00130068406, -0.0285000093, -0.0112070348, -0.0122089889, 0.000958349905, -0.00964844, 0.00855000317, 0.00683926, -0.00685039302, -0.000897583319, -0.00866875332, 0.00265146582, 0.00166899466, -0.0107765663, 0.0254867282, -0.0183914118, -0.000634570548, -0.0109546911, 0.00962617528, 0.00480566546, -0.0155562554, 0.00308935647, 0.00690234592, 0.0201132875, 0.0260359459, 0.000119793738, 0.0195195377, -0.00294091902, 0.0233343821, 0.00459043123, 0.015541411, -0.0110363318, 0.00369423954, 0.0172039121, -0.0028128915, -0.012231254, 0.0159867238, 0.00145097706, 0.00156972709, -0.00397812622, 0.00461640768, -0.0137824267, 0.0127804726, 0.00701738521, 0.0242992267, -0.00439004041, -0.0028852548, 0.0122832069, 0.0279359464, 0.00730683841, -0.0175304748, -0.00741074467, 0.00261621177, -0.0152742239, 0.0159125049, -0.00254013762, -0.0132703166, -0.00340293092, -0.00724004162, -0.00535117369, 0.016179692, 0.0180500057, 0.0170554742, 0.00865390897, -0.00125522504, 0.00810469, 0.00756289298, 0.0129214888, -0.0257984456, -0.0220281333, 0.00541797047, 0.00102700235, -9.13238837e-05, -0.00800078362, 0.0185695384, 0.0109546911, -0.0165211, -0.000400549441, 0.0173375066, -0.00425644685, 0.0198312569, 0.0152742239, -0.00147509819, 0.0211968813, 0.0105168, -0.00846094079, -0.00397812622, -0.00347529422, -0.0164171923, 0.0214937571, 0.0190742258, -0.00945547223, -0.00947031565, 0.00447539194, -0.0532593913, 0.0324484482, 0.00646074442, -0.000280639739, -0.0066945334, -0.000388025044, -0.00826797169, -0.00426386856, 0.00142500049, -0.0135746142, 0.0216718819, 0.0134484423, -0.0162687562, 0.00219873129, 0.0220578201, 0.0052138688, 0.00054086931, 0.0173375066, -0.00258466881, 0.00764453365, 0.0241359454, -0.0245961025, -0.00627519749, 0.0251156334, -0.00528437691, -0.0225625075, -0.0195046943, 0.0148214893, 0.00246591889, -0.00556640793, 0.0160906296, -0.016862506, 0.0091066435, -0.0282031354, 0.00314873154, 0.0175156314, 0.00184619206, -0.0149105517, -0.00892109703, 0.00203545, 0.00265888753, -0.00330088, -0.0172632877, 0.00689863507, 0.00643847883, -0.00395586062, -0.00331386831, 0.0278765727, 0.00941094104, 0.0226218831, -0.0136339888, -0.000621582265, -0.00504687661, -0.00418965, 0.0152890673, -0.0124613326, 0.00150756887, 0.00909922179, -0.00081455108, -0.0129363323, -0.010294144, 0.0145543022, 0.0137675824, -0.00204287167, -0.00222656317, -0.00614160346, 0.0066203149, -0.00888398755, -0.0042824233, -0.0170554742, 0.00427871244, -0.0206179749, 0.00811211206, 0.00368310674, 0.00946289394, -0.0175453182, 0.00821601879, 0.00283886818, 0.00614531478, 0.0116226599, -0.00958164409, -0.00682441657, -0.00812695548, 0.0253679771, -0.00476855645, -0.0192226619, 0.0143910209, 0.0109695345, -0.0139679732, -0.014977349, 0.00825312734, -0.00736621348, 0.00962617528, -0.00444570463, 0.00933672208, -0.00426757941, 0.00596718956, 0.0236164145, 0.00432695448, -0.00163374073, -0.00532148639, -1.29230539e-05, 0.0179461, -0.00527324388, 0.0118230507, 0.0315578245, -0.00821601879, 0.0033862316, 0.00174877991, 0.00643476797, 0.0378515758, 0.00891367532, -0.0168476626, -0.00772617431, 0.0173671935, 0.00510996254, -0.00565176, -0.018406257, -0.00660176, 0.00157436577, -0.0326859467, 0.000667969, 0.00688008033, -0.024046883, -0.0116449259, 0.0228742268, -0.0203359444, -0.00963359699, 0.0027293954, -0.00998984743, 0.0119343791, 0.000632715062, -0.00508769695, -0.00203545, 0.00955937803, -0.0115632853, 0.0044345716, 0.00581133, -0.0202617254, 0.0136933643, 0.00482050935, -0.015392974, -0.0023211923, 0.00703594, 0.0100714881, 0.0292421971, -0.00188051816, -0.00318955188, 0.0129734417, 0.00414882973, 0.00878750253, -0.0180796944, 0.00734023703, -0.0120976605, 0.0107023474, -0.0113332067, -0.00399668096, -0.0201429762, -0.00840156525, -0.0292718858, -0.00947031565, 0.0256351642, 0.0111550819, 0.0137156295, -0.0160015672, -0.0386234522, -0.00946289394, 0.0198757872, 0.0155265676, 0.0138640674, 0.0221171957, -0.0151554737, -0.00712500233, 0.0196382888, -0.00160961971, 0.038118761, -0.0122386757, -0.0123871136, 0.0143168019, -0.0214343816, 0.0139679732, -0.00878008083, -0.00127377978, -0.00961133093, -0.00513593946, 0.0149179734, 0.0198609438, 0.0137972701, 0.0104277376, 0.00998242479, 0.00271269633, -0.00456816563, -0.0230523515, -0.0129066445, 0.0145988334, -0.0162093807, 0.00279433676, -0.0133668017, -0.00176269596, 0.00244921958, -0.00217275461, -0.0243734457, -0.00941094104, -0.0317359492, -0.000979687786, -0.0135671925, 0.00548476726, -0.0186734442, -0.0079339873, 0.00134707079, -0.00629375223, 0.00744043197, 0.000545971852, -0.0123277381, 0.000275305269, 0.00543281436, 0.0322703235, 0.0082753934, -0.0028240243, -0.0204398502, 0.0290343855, -0.0309640728, 0.00901015941, 0.00397070451, 0.0162390675, 0.0157640669, -0.00249746186, -0.00380000123, 0.0328343846, -0.00208183657, -0.0153039116, 0.0167882871, -0.0129882852, -0.00604140805, -0.0189703181, 0.0185992252, -0.00760742463, -0.0155117242, 0.00592636922, -0.0179015677, -0.016862506, 0.0114296917, 0.0131960986, 0.0237054769, 0.004044923, 0.0229336023, -0.0245515704, -0.00783008058, -0.000473376625, 0.0179609433, 0.00153354544, 0.00297431741, -0.00451250141, -0.0177828185, 0.00429355633, -0.00140737346, 0.0251453202, -0.0138046918, 0.000131042529, 0.00335654407, -0.017916413, 0.00256796973, 0.00500976713, 0.00849062763, 0.00763711194, -0.00677988492, -0.000868359639, 0.00219502021, 0.00994531624, -0.0168328173, 0.0145023484, -0.00152705132, -0.00604883, 0.00152241264, 0.00400781399, -0.0191336, -0.0157789122, 0.000830322562, 0.00948515907, -0.00949258171, 0.0171296932, 0.0149105517, -0.00252529373, 0.0052361344, 0.011815629, -0.00365898572, -0.0223695394, 0.00338066509, 0.00541797047, -0.0106578162, -0.0198015682, 0.00409687636, 0.0108285192, 0.0338437632, -0.0144503955, 0.0035532238, -0.0140793016, -0.0282031354, -0.00178960024, -0.00150200247, 0.00769648701, -0.00444570463, 0.0189851634, -0.0145171927, -0.0159421936, 0.0084683625, -0.00110771519, 0.011986332, -0.00605254108, -0.00757402601, -0.00450136885, 0.00728828367, -0.0100714881, -0.0162984431, -0.0172187556, 0.0111328159, -0.00327119255, -0.00284072361, 0.017649224, -0.00783750229, -0.00347900507, -0.0235125087, 0.00408203248, -0.0965437815, -0.00343818474, 0.0213750079, 0.0148066459, 0.0183617249, 0.017649224, -0.0147769582, -0.0188218821, 0.00896562822, 0.0292718858, -0.00921055, 0.00395957148, 0.00234902417, 0.00187959045, 0.00526582217, 0.0205586012, 0.0214046948, 0.000573803904, 0.0268078223, -0.000849804957, 0.00159477594, -0.00545508, -0.0038705091, 0.00238613365, 0.00316543086, -0.0045459, -0.00797851849, 0.00234902417, -0.007329104, -0.011348051, -0.0199500062, 0.0105761755, 0.0204101633, -0.0286187604, -0.0027405282, 0.00398554839, -0.0248781331, -0.0198906325, 0.0313203223, -0.0130179729, -0.0120902387, 0.00116616255, -0.00395586062, -0.0220875069, 0.00459414208, 0.0331906378, 0.00277392683, 0.0192375071, -0.00351054803, 0.0265851654, -0.0077410182, 0.0325968862, -0.0103980508, -0.000110110508, 0.016372662, 0.00665371306, 0.00183598697, -0.0147918016, 0.0301773529, 0.0159867238, -0.0320922, -0.0210781321, 0.0299546979, -0.00140087935, 0.00285185641, 0.00267558685, -0.00609707227, 0.00830508117, 0.00465722801, -0.0257390719, -0.0153335985, 0.00917344075, 0.00957422238, 0.0170703176, 0.0145914108, 0.0102050817, 0.00116801797, -0.0219687577, -0.00951484684, 0.0161500052, 0.0119714886, 0.0128175821, -0.00854258053, 0.00170146546, 0.00806758087, -0.0125429733, 0.0106207067, 0.0142128952, -0.013188676, 0.00682070525, 0.0155710988, -0.00384453265, 0.00961133093, 0.0193711, -0.00800820626, 0.0173375066, -0.00613047089, -0.00543281436, 0.00227480545, 0.0129882852, 0.0140125044, 0.0161945373, 0.0114668012, -0.0104871131, 0.0234976634, -0.00847578421, -0.0120828161, 0.00176826236, 0.00754804956, 0.0184804741, 0.0140644582, -0.00864648726, -0.000760278548, -0.0172781311, 0.0271492284, 0.0354172, -0.00152983447, 0.00692090066, -0.0131144579, 0.00430097803, -0.0115335975, -0.00286670029, -0.00447168108, 0.00692090066, 0.00952226855, -0.0055960957, 0.0107468786, -0.00294091902, -0.00932187773, 0.00139531295, 0.000525097828, 0.0318250097, 0.000389184715, -0.022770321, 0.00271269633, -0.00135542033, 0.00228222739, -0.0090546906, -0.0197125059, -0.00854258053, -0.022577351, -0.013188676, -0.00669082254, 0.00144077197, 0.0156750046, -0.0131441448, 0.00369423954, 0.0210781321, 0.0126246139, -0.00181372126, 0.00153540086, -0.00659804931, -0.0102867223, 0.00975234713, -0.0150144584, 0.0250117276, -0.00481308764, -0.0157640669, 0.00286484463, -0.0340812616, 0.00382226682, 0.0134261763, 0.00443828292, -0.00356992311, -0.00254755956, 0.016253911, -0.0105761755, -0.017916413, -0.000752856722, -0.0336953253, 0.0278617274, 0.00976719055, 0.0053289081, 0.00534004066, 0.0134632858, 0.00844609644, -0.0149402395, -0.0130253946, -0.0131144579, -0.00551816588, 0.0143168019, -0.00750722922, -0.0148734422, 0.0110363318, 0.0101679722, -0.0123425825, -0.00195009832, -0.00292978622, 0.00185268617, -0.0097820349, 0.027060166, -0.00311904401, -0.00123295945, -0.00326005975, -0.000565454306, -0.0143539114, 0.00363300904, 0.00183042057, -0.00698398659, -0.000190881416, 0.0108136758, -0.005870705, 0.00975234713, 0.00148994196, 0.00777812768, -0.00172651419, -0.0191632882, 0.0206921939, 0.00154189509, -0.0221023504, -0.0116449259, 0.0128992228, -0.00601914246, -0.0166992247, 0.00537715, -0.00486132968, 0.00667968951, 0.0025457039, 0.00517304847, 0.000301281834, 0.0156898499, -0.0207812563, 0.0432843901, -0.00450507971, 0.0300437603, -0.0107246125, 0.00679101795, 0.0131812543, -0.00125336961, 0.0178570375, -0.0132332072, 0.0081418, 0.00729199452, -0.0131738326, 4.14871356e-05, 0.00994531624, 0.00957422238, 0.0151554737, -0.00781523716, 0.00149550836, 0.012305473, 0.00375361461, -0.0285445414, -0.00257353601, -0.0307265725, 0.00039938977, 0.0131293014, 0.00325449323, -0.0152593805, -0.0244179778, -0.0164023489, 0.0139902392, 0.0105019566, 0.0159273483, 0.00178681698, 0.000602099812, -0.0135152387, 0.0159125049, 0.00239912188, 0.0228593834, 0.00092541537, 0.00303740334, -0.000297802821, 0.0190000068, -0.00388535275, -0.0050209, 0.00724004162, -0.0180054754, -0.00757402601, -0.0096410187, -0.00515078288, 0.0110363318, -0.0206921939, 0.0130921919, -0.0167734437, -0.0198164135, 0.0032248057, 0.0226812568, -0.00760000246, 0.00273681735, 0.00570371281, -0.0361297, 0.00145283248, -0.00129326212, -0.00836445577, -0.012476176, -0.00265517668, -0.00843867473, -0.0100418, 0.015467193, 0.0275648534, 0.0140867233, -0.002206153, 0.0031524424, -0.0520718917, 0.000937012, 0.00286484463, -0.0104128942, -0.000259301858, -0.000589575386, 0.0195343811, -0.012795317, 0.000876245438, 0.0146507863, -0.0261992272, -0.00258095795, 0.00296504, -0.00773359649, -0.0130179729, -0.000976904645, -0.0057705096, 0.0075962916, -0.00236015697, 0.0137972701, -0.0121421916, 0.00362187624, -0.0170406308, -0.0216570385, 0.00308193453, -0.019757038, -0.0247742273, 0.0283961035, -0.0093515655, -0.0058632833, 0.0115484418, -0.00554414233, 0.0064978539, 0.0059857443, 0.00434922, 0.00402265741, 0.00434179837, -0.0143019576, -0.0036868176, 0.0165804736, -0.00668340083, 0.00825312734, -0.00376289198, -0.0181836, -0.0130105512, -0.000190649473, -0.00898047164, -0.00843125302, -0.00697285403, -0.00843867473, 0.0198609438, -0.000384082174, -0.0105613321, 0.00524355657, 0.0214046948, -0.0201578196, -0.0125058638, -0.0105984407, 0.0123574259, 0.00119956094, 0.00469804835, 0.00347714964, -0.0215086, -0.00927734654, 0.0213898513, 0.0029464853, 0.00715840096, -0.0275648534, -0.0207070373, -0.0218203198, 0.0053066425, -0.00124038127, -0.0105984407, 0.0113777379, 0.00356621202, -0.00736250263, 0.00835703406, 0.00419336092, -0.00474629086, 0.0877562761, 0.0185101628, 0.0101308627, -0.0050617205, 0.00290937605, -0.0208554752, -0.00996016, 0.0396031365, 0.00317656365, 0.0119343791, 0.00213193428, 0.0045570326, 0.0100269569, -0.0053066425, -0.00448652497, -0.00967812818, 0.011422269, 0.0090918, 0.00560722826, 0.00024167489, -0.00155766658, -0.0126097696, 0.0045459, -0.0203507878, 0.00325263781, -0.0100343786, -0.00645332225, 0.0126914103, -0.0318843871, 0.00443828292, -0.00465722801, 0.00514707202, 0.00323779415, 0.0148957083, -0.0115558635, 0.0111476602, -0.00672793202, -0.00402636873, 0.0141312545, -0.0095371129, -0.00454961089, 0.0181687567, 0.0152593805, 0.00165878958, 0.000744507066, 0.00627519749, 0.000826611591, -0.0256500095, 0.0294500105, 0.00507285306, -0.0205734447, -0.0259765703, 0.0157789122, -0.0163429733, 0.00709902588, -0.000381298945, 0.00188422913, -0.0150738331, 0.00737734605, 0.0198906325, -0.00207812572, 0.0115484418, 0.0108878938, 0.00202617259, 0.0110214883, -0.0160015672, -0.0131293014, -0.00220244215, 0.00376103632, 0.00252158288, -0.0128472699, -0.00909922179, 0.0244179778, -0.0070619164, 0.00334170042, 0.00629375223, -0.00330273551, -0.0205437578, 0.000922632171, -0.0182429757, -0.00280732522, -0.00293164165, -0.0217609443, -0.0144429738, 0.0118527384, 0.00923281536, -0.00861679949, -0.0134781292, -0.00295576267, 0.00298359478, 0.000729199441, 0.0155710988, -0.0196679756, 0.0245664138, -0.0088543, 0.0109769572, -0.00205029361, 0.00575195486, 0.0104945349, 0.00931445602, 0.0148882866, 0.00649414258, -0.00883203465, 0.00912148785, -0.0166992247, 0.0112589877, -0.0150070367, 0.00561836129, 0.00927734654, -0.00746269803, 0.0251898523, -0.0138566457, 0.0164320376, -0.0033973644, 0.01019766, 0.0148363328, 0.0138121136, 0.00789687783, -0.013700786, 0.00715097878, 0.0193562564, -0.00381113403, -0.0175304748, -0.00208183657, 0.000495874207, 0.0273125097, 0.0127730509, 0.00498750154, 0.0228593834, 0.000807129196, -0.00166621152, 0.00965586305, 0.00191855535, 0.00781523716, -5.21850743e-05, 0.00572597841, -0.0161351617, -0.00703965081, -0.00600058818, 0.0266000088, 0.00281474693, 0.0101679722, 0.0129882852, 0.0140793016, 0.00135634816, 0.00215791096, 0.0318250097, -0.00829023682, -0.0145394579, 0.000671679911, -0.0151703171, -0.00073198264, 0.0131367231, 0.0074441433, 0.0120902387, 0.00590410363, 0.00690234592, -0.0392172, 0.0290937591, -0.0163429733, -0.0205289125, 0.00624922104, -0.00400410313, 0.0352687612, 0.00449023582, -0.0117117222, 0.0223843828, 0.0178273506, 0.0145246144, 0.0189851634, 0.0190593805, 0.00374433724, -0.00424902467, 0.017500788, -0.000373181276, 0.00300214952, -0.00933672208, 0.0212414134, -0.0195789132, -0.0277429782, 0.0150886765, 0.0121867228, -0.0144652389, 0.0218945388, 0.00199462962, -0.0103832064, -0.00266445405, 0.00912891, 0.0331906378, 0.019267194, -0.00560722826, -0.0157046933, 0.0114371134, -0.0150218802, -0.00610449445, -0.0150589896, -0.00291123148, -0.0120753944, 0.0243586022, -0.00762226805, 0.0215976629, 0.0042824233, 0.00526211131, 0.000572412275, -0.00945547223, 0.0537343919, 0.00545508, -0.0105984407, -0.00768164312, -0.00228408282, -0.00261250092] |
22 Nov, 2022 | Count palindrome words in a sentence
22 Nov, 2022
Given a string str and the task is to count palindrome words present in the string str.
Examples:
Input : Madam Arora teaches malayalam
Output : 3
The string contains three palindrome words (i.e.,
Madam, Arora, malayalam) so the count is three.
Input : Nitin speaks malayalam
Output : 2
The string contains two palindrome words (i.e.,
Nitin, malayalam) so the count is two.
Method 1:countPalin() function counts the number of palindrome words by extracting every word of the string and passing it to checkPalin() function. An extra space is added in the original string to extract last word. checkPalin() function check the word palindrome. It returns 1 if word is palindrome else returns 0. It makes sure that empty strings are not counted as palindrome as the user may enter more than one spaces in between or at the beginning of the string.
C++
/*C++ program to count number of palindrome
words in a sentence*/
#include <bits/stdc++.h>
using namespace std;
// Function to check if a word is
// palindrome
bool checkPalin(string word)
{
int n = word.length();
transform(word.begin(), word.end(), word.begin(), ::tolower);
for (int i = 0; i < n; i++,n--)
if (word.at(i) != word.at(n - 1))
return false;
return true;
}
// Function to count palindrome words
int countPalin(string str)
{
// to check last word for palindrome
str = str + " ";
// to store each word
string word = "";
int count = 0;
for (int i = 0; i < str.length(); i++)
{
char ch = str.at(i);
// extracting each word
if (ch != ' ')
word = word + ch;
else {
if (checkPalin(word))
count++;
word = "";
}
}
return count;
}
// Driver code
int main()
{
cout<<countPalin("Madam Arora teaches malayalam")<<endl;
cout<<countPalin("Nitin speaks malayalam")<<endl;
}
// This code is contributed by nidhi16bcs2007
Java
/*Java program to count number of palindrome
words in a sentence*/
class GFG {
// Function to check if a word is
// palindrome
static boolean checkPalin(String word)
{
int n = word.length();
word = word.toLowerCase();
for (int i=0; i<n; i++,n--)
if (word.charAt(i) != word.charAt(n - 1))
return false;
return true;
}
// Function to count palindrome words
static int countPalin(String str)
{
// to check last word for palindrome
str = str + " ";
// to store each word
String word = "";
int count = 0;
for (int i = 0; i < str.length(); i++)
{
char ch = str.charAt(i);
// extracting each word
if (ch != ' ')
word = word + ch;
else {
if (checkPalin(word))
count++;
word = "";
}
}
return count;
}
// Driver code
public static void main(String args[])
{
System.out.println(countPalin("Madam "
+ "Arora teaches malayalam"));
System.out.println(countPalin("Nitin "
+ "speaks malayalam"));
}
}
Python3
# Python3 program to count number of
# palindrome words in a sentence
# Function to check if a word is palindrome
def checkPalin(word):
if word.lower() == word.lower()[::-1]:
return True
# Function to count palindrome words
def countPalin(str):
count = 0
# splitting each word as spaces as
# delimiter and storing it into a list
listOfWords = str.split(" ")
# Iterating every element from list
# and checking if it is a palindrome.
for elements in listOfWords:
if (checkPalin(elements)):
# if the word is a palindrome
# increment the count.
count += 1
print (count)
# Driver code
countPalin("Madam Arora teaches malayalam")
countPalin("Nitin speaks malayalam")
# This code is contributed
# by Ronit Shrivastava.
C#
// C# program to count number of
// palindrome words in a sentence
using System;
class GFG
{
// Function to check if a word is
// palindrome
public static bool checkPalin(string word)
{
int n = word.Length;
word = word.ToLower();
for (int i = 0; i < n; i++,n--)
{
if (word[i] != word[n - 1])
{
return false;
}
}
return true;
}
// Function to count palindrome words
public static int countPalin(string str)
{
// to check last word for palindrome
str = str + " ";
// to store each word
string word = "";
int count = 0;
for (int i = 0; i < str.Length; i++)
{
char ch = str[i];
// extracting each word
if (ch != ' ')
{
word = word + ch;
}
else
{
if (checkPalin(word))
{
count++;
}
word = "";
}
}
return count;
}
// Driver code
public static void Main(string[] args)
{
Console.WriteLine(countPalin("Madam " +
"Arora teaches malayalam"));
Console.WriteLine(countPalin("Nitin " +
"speaks malayalam"));
}
}
// This code is contributed by Shrikant13
Javascript
<script>
/*Javascript program to count number of palindrome
words in a sentence*/
// Function to check if a word is
// palindrome
function checkPalin(word)
{
var n = word.length
word = word.toLowerCase();
for (var i = 0; i < n; i++,n--)
if (word[i] != word[n - 1])
return false;
return true;
}
// Function to count palindrome words
function countPalin( str)
{
// to check last word for palindrome
str = str + " ";
// to store each word
var word = "";
var count = 0;
for (var i = 0; i < str.length; i++)
{
var ch = str[i];
// extracting each word
if (ch != ' ')
word = word + ch;
else {
if (checkPalin(word))
count++;
word = "";
}
}
return count;
}
// Driver code
document.write( countPalin("Madam Arora teaches malayalam") + "<br>");
document.write( countPalin("Nitin speaks malayalam"));
// This code is contributed by itsok.
</script>
Output:
3
2
Time Complexity: O(n2), where n is the size of the given string.Auxiliary Space: O(n), where n is the size of the given string.
https://youtu.be/z
-5HChTA0ME | NLP/Natural Language Processing (NLP) Tutorial/AI ML DS - Projects/30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated]/Does Artificial Intelligence Require Coding?/Artificial Intelligence – Boon or Bane/Artificial Intelligence Examples/Agents in Artificial Intelligence/What are Diffusion Models?/ML | Common Loss Functions/Loss Functions in Deep Learning/Kaiming Initialization in Deep Learning/Swift - Initialization/Swift – If Statement/6 Best iOS Project Ideas For Beginners/Swift Programming Language/Introduction to Visual Programming Language/What is D Programming Language: Usage and Applications/Best Programming Languages for Data Science in 2024/5 Best Languages for Competitive Programming/MEX (Minimum Excluded) in Competitive Programming/Rearrange Array to maximize sum of MEX of all Subarrays starting from first index/Minimize moves to segregate even and odd by swapping adjacent elements/Minimum elements to be removed such that sum of adjacent elements is always even/Maximum sum such that exactly half of the elements are selected and no two adjacent/Maximum length subsequence such that adjacent elements in the subsequence have a common factor/Longest subsequence such that difference between adjacents is one/Longest Increasing Subsequence using Longest Common Subsequence Algorithm/Longest Common Subsequence (LCS)/Minimum insertions to form a palindrome with permutations allowed/Count palindrome words in a sentence | https://www.geeksforgeeks.org/java-program-count-number-palindrome-words-sentence/?ref=lbp | NLP | Count palindrome words in a sentence | Artificial Intelligence – Boon or Bane, AI ML DS - Projects, Longest Common Subsequence (LCS), Rearrange Array to maximize sum of MEX of all Subarrays starting from first index, MEX (Minimum Excluded) in Competitive Programming, Swift - Initialization, Minimum insertions to form a palindrome with permutations allowed, Longest Increasing Subsequence using Longest Common Subsequence Algorithm, 6 Best iOS Project Ideas For Beginners, ML | Common Loss Functions, Artificial Intelligence Examples, Longest subsequence such that difference between adjacents is one, What is D Programming Language: Usage and Applications, 30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated], Swift – If Statement, Natural Language Processing (NLP) Tutorial, Loss Functions in Deep Learning, Minimize moves to segregate even and odd by swapping adjacent elements, Maximum length subsequence such that adjacent elements in the subsequence have a common factor, Does Artificial Intelligence Require Coding?, Count palindrome words in a sentence, Best Programming Languages for Data Science in 2024, NLP, 5 Best Languages for Competitive Programming, Maximum sum such that exactly half of the elements are selected and no two adjacent, Swift Programming Language, Minimum elements to be removed such that sum of adjacent elements is always even, Agents in Artificial Intelligence, What are Diffusion Models?, Kaiming Initialization in Deep Learning, Introduction to Visual Programming Language | GeeksforGeeks | [-0.0116362898, 0.0195772257, -0.012628057, 0.022783488, 0.0087696733, 0.0270358622, -0.0088376021, 0.0166290924, -0.0151210632, -0.0122952042, 0.0060049505, 0.0268049035, 0.0206912663, -0.0259489939, -0.0275385398, -0.0170774274, -0.00381423044, 0.0108958604, -0.00507092243, 0.000541736197, -0.0042116167, 0.00424558157, -0.0362199023, 0.0168057103, -0.00414708396, 0.0344265699, 0.0339646526, 0.0123291686, 0.0309757628, -0.0131714921, 0.00765563222, -0.0192647502, -0.00760808168, -0.00573662948, -0.00847757701, -0.0108415168, 0.0351058617, 0.0130628049, 0.0108143445, -0.0288020242, 0.00961878896, 0.0199440438, -0.0137556838, -0.0293726306, -0.0104271481, -0.00308399042, -0.0159498, -0.0332853571, -0.0148629313, -0.027552126, 0.0152025782, -0.00898025371, 0.0111539913, 0.0333940461, 0.0335027315, -0.0110249259, 0.00266622519, -0.0321713164, 0.0172268711, 0.0418987945, 0.00915687, -0.0257316194, -0.00816510245, 0.000819397217, 0.0119895218, -0.0112015419, -0.0324702077, 0.0306768734, 0.0176887903, 0.020487478, -0.0221721251, 0.0241556596, -0.00585550582, -0.0250115693, -0.0246719234, -0.00012174205, 0.00675556902, 0.0223487411, -0.0185854565, 0.0482026339, -0.0486917235, -0.0193870235, -0.00387197034, -0.0243322756, -0.00557359913, -0.0230823774, -0.00212618709, -0.0524414219, 0.0146727292, 0.01624869, -0.0290737413, -0.00397726055, 0.0334212184, -0.019509295, -0.0358123295, 8.32133956e-05, 0.0147950025, 0.0120438654, -0.0133888656, 0.0493710153, -0.0027630243, -0.0130152544, -0.00401462195, -0.0296443477, 0.0343178846, 0.0162622742, -0.00789338537, -0.00774394069, 0.0451865718, 0.0489906147, 0.00964596123, -0.0288291965, -0.000784583448, -0.026750559, 0.00675556902, -0.0123699261, -0.0118672494, -0.0143738408, 0.00574342255, 0.0379860662, 0.00330985524, 0.017213285, -0.031872429, 0.0584192, -0.0112422993, 0.0448061675, -0.0275928825, 0.0265196, -0.0607016236, -0.0317909122, 0.0366546512, 0.00726164225, -0.0298345499, 0.00898704678, 0.0265467707, -0.0117245978, 0.00843682, 0.0433388948, 0.000986673171, 0.0140341939, 0.00974785537, 0.00583512709, -0.00746543054, -0.00826020353, 0.0100331577, 0.0135383103, -0.00894628931, 0.0331495, 0.0362199023, 0.0181778818, -0.00405198289, -0.0106513146, -0.00372931873, 0.0141972238, 0.00130933733, -0.0502133407, 0.0127910879, 0.0134364162, -0.0194685385, -0.0593973808, -0.0144010121, 5.48210701e-05, 0.0172268711, -0.0508926325, -0.0278510135, 0.0119419713, -0.0202701036, 0.000369365589, -0.0328777842, 0.0319267735, -0.039996773, 0.037442632, 0.0379860662, 0.0065178168, -0.0176480319, -0.038665358, 0.0549683906, -0.000810056925, -0.0424694, -0.00217034132, 0.0191017203, -0.00425237417, 0.0183273256, -0.00349835912, 0.0335027315, 0.0179061648, 0.0245088916, 0.00845719781, -0.000325848378, 0.00103592186, -0.00107073563, 0.00448673032, 0.0157188401, 0.00650083413, -0.000183939817, -0.00785942, -0.0391272791, 0.0562454611, 0.0109909615, 0.013511138, 0.00503356149, -0.0588539466, -0.0243458617, 0.0305681862, 0.00837568287, -0.00327419234, -0.041953139, 0.00303134508, 0.0282314178, 0.00253885775, -0.0410836414, 0.00351534132, -0.0343722254, -0.00806320831, 0.0254599024, 0.0205146503, -0.0387468748, 0.0266147014, 0.0204603057, -0.00450031646, -0.00851833448, -0.0149036888, 0.0203923769, -0.0146863153, -0.0462462679, -0.0366818234, 0.00634799339, 0.0244002063, -0.0043237, -0.00983616337, -0.000956954, -0.00462258887, 0.00253036642, 0.00580455875, 0.017213285, -0.0151618207, -0.00661971048, 0.00284114317, -0.0115072243, 0.0161128305, -0.0207320228, 0.00486034155, 0.0109705823, -0.0458658636, 0.0342091955, -0.0218868218, -0.0204738919, -0.00323852943, 0.00399084669, 0.0204603057, -0.0197402555, -0.0208542962, -0.00438144, 0.00266113039, -0.00313323899, -0.0221041944, 0.00357647776, -0.0125057846, 0.0458115228, 0.0433388948, 0.0118740425, -0.010420355, -0.039996773, 0.0511100069, 0.0125057846, -0.0102301529, 0.0146727292, -0.0338016227, 0.039371822, -0.00276472257, 0.0624406151, -0.0617884919, 0.0055090664, -0.00306870625, 0.0151210632, -0.0267913174, -0.0163845476, -0.0287476815, 0.0665163696, 0.0100263655, 0.0102029815, 0.0101622241, 0.00658234954, -0.0036681823, -0.00677934429, -0.0359210148, -0.0203787908, 0.0293182861, -0.0247126799, -0.0199848, 0.0183001533, 0.00166851352, -0.00154284423, -0.0134907598, -0.0046090032, -0.00360364956, 0.00720050605, -0.00898025371, -0.0513273813, -0.0195228811, -0.0177159626, -0.077059, -0.0245224778, -0.00942858681, -0.0564628355, 0.00271207746, 0.00258301175, -0.00550567, -0.0165204071, 0.0118468702, 0.0206776801, -0.0555118248, 0.000249427918, 0.0252968725, -0.0334483869, -0.00603551837, 0.0338831358, -0.016778538, -0.0288563669, 0.00380743737, 0.0226612147, -0.00719371298, 0.0350515209, 0.0211124271, 0.013246214, -0.00793414284, 0.00253546122, -0.00862702169, 0.0173763148, -0.0250251554, -0.0205825791, 0.0243186895, -0.0211124271, -0.00523734931, 0.0122001031, -0.0364372768, -0.0214792453, 0.000550227356, 0.0461104102, -0.00571625074, 0.000406302133, 0.00372252567, -0.00114291057, 0.0042285989, 0.0172268711, 0.0337744504, 0.0144961132, -0.00588947069, 0.0046259854, -0.0385838449, 0.00131443201, 0.0117925266, 0.00583852362, 0.0118468702, -0.0320082866, -0.0273211654, -0.00202768971, -0.0231367201, -0.005607564, 0.0330136418, -0.0319811143, 0.0151346484, -0.0186669715, -0.00671141502, 0.00906856172, -0.0923295096, 0.021452073, 0.0323615186, 0.0231910646, -0.0321984887, -0.0228378307, 0.00974785537, -0.0149580324, -0.0183001533, -0.0567888953, 0.00453428086, 0.0268049035, 0.00452748779, 0.0247670244, -0.016955154, -0.0255957618, 0.0603212193, 0.0461104102, -0.0108279306, -0.0265196, 0.00252697, -0.0150531335, 0.00965275429, 0.00931990054, 0.0186805576, -0.0280683879, 0.0525772795, -0.000828312943, 0.00986333471, 0.00815151632, 0.0159905571, -0.0280412156, -0.0295084883, 0.00129065674, -0.0318452567, 0.00910931919, -0.0289378837, 0.0254055597, -0.0146455579, -0.0294269733, 0.0158411134, -0.00840285514, -0.0375513174, 0.0297802053, 0.048039604, -0.00769639, 0.0353232361, -0.0424422286, 0.0256229322, 0.0218460634, -0.0337472782, -0.0340189934, 0.0472787954, -0.0125601282, -0.0313289948, -0.0161264166, 0.0186398011, 7.51467887e-05, 0.0345896, -0.0284216199, -0.00527471025, 0.034779802, 0.0400782898, 0.00984974857, -0.00148425531, -0.0269679334, 0.00236054324, 0.0373882875, 0.0179197509, -0.0328777842, -0.0332310162, 0.00732957153, 0.012009901, -0.00528829638, -0.00669103628, -0.0123495469, 0.00849116314, -0.0142923249, -0.000523904746, -0.0144553557, 0.00344741205, 0.00987692084, 0.0284487922, 0.013246214, -0.0230959635, -0.0149172749, 0.0055905818, -0.0469527356, -0.00994485, 0.0251474287, 0.0146319717, 0.00281906617, -0.032225661, -0.0167241935, -0.0079205567, 0.0151210632, 0.0345624276, 0.000835530402, -0.00622911705, 0.00479580881, 0.00841644, -0.00720050605, -0.0367905088, -0.0183001533, -0.0153112644, -0.0152433356, 0.00442219758, 0.0257587917, -0.00881722383, 0.0324702077, -0.0185990427, 0.038420815, 0.0166290924, -0.0269951057, -0.017566517, 0.0299432371, 0.00903459731, -0.00600155396, -0.0176208615, -0.0215879325, -0.022688387, -0.0136130322, -0.00299907872, 0.015188992, -0.0344809145, -0.0140070226, 0.0410021283, -0.0269407611, -0.021452073, -0.0149036888, 0.00452069519, -0.0539902113, -0.0185175277, 0.0234356094, 0.0156509113, 0.0376056619, -0.01713177, -0.00257112412, 0.0517893, -0.0165611636, -0.0279597, -0.0115887392, -0.000949312, -0.0118808346, -0.0152433356, -0.016343791, 0.0140885375, -0.00953048095, 0.0306225289, -0.00354251312, 0.0240062159, -0.0312203076, 0.0208678823, -0.029046569, -0.00862702169, -0.00308399042, 0.0382577814, 0.0139662642, -0.0115751531, -0.00752656674, 0.0382849537, -0.00843002647, 0.00303134508, -0.026927175, -0.0463549569, -0.00828058179, 0.0256636906, 0.00537320785, -0.000500554044, -0.0136334114, -0.026927175, -0.0168736391, 0.0355949551, -0.0270086899, 7.37139053e-05, -0.0149716185, 0.0258267205, -0.0326875821, -0.00143161009, -0.0325245485, -0.00574342255, 0.0093266936, -0.0256772768, -0.00898025371, 0.016778538, -0.0129337395, 0.0265331864, 0.0257723778, 0.0222943965, -0.000732787361, 0.00614080904, -0.00171436579, 0.00824661739, 0.0225797, -0.000125563063, 0.010590178, 0.0238160137, 0.0149036888, -0.00944896601, 0.0206505079, -0.00101044832, 0.003753094, -0.023394851, -0.00367497536, -0.00114715612, -0.00119470665, -0.0285303071, 0.0313833393, -0.024373034, -0.0309214182, 0.0507296026, 0.0256501045, -0.0234627817, -0.0122612389, 0.00261867465, -0.00510149077, -0.0139662642, -0.016425306, -0.0106920721, -0.0246447511, -0.0133888656, -0.00884439517, 0.0129609108, -0.0376871787, -0.00759449601, 0.00955765322, 0.0289922263, 0.00346948905, -0.0125193708, -0.0398065709, 0.030894246, -0.0131239416, 0.0144689418, -0.00955086, -0.0168192945, -0.0158547, 0.0348341465, 0.0373067744, -0.0083349254, 0.0275113676, -0.0283129327, 0.0104271481, 0.0310301054, 0.0105426274, 0.0401054621, -0.0446974821, 0.00963916816, 0.0153248506, 0.00548529113, -0.00778469816, -0.0202565175, 0.0248485394, -0.00989050604, -0.0088579813, -0.00685067, -0.0161535889, -0.0213977303, -0.010596971, 0.0211667698, -0.024984397, -0.0243322756, -0.0221857093, -0.0507024303, -0.0130084613, -0.0435562693, 0.0228514168, 0.00047890158, -0.0128250523, -0.00702389, -0.0204331335, -0.000633440737, -0.0246583372, -0.00720050605, -0.0157595985, 0.0282042474, 0.00919083506, -0.00220770226, -0.0369263701, 0.0561367758, -0.011656668, -0.01995763, -0.029046569, 0.0227427296, 0.0122136883, -0.0088036377, 0.0252561141, -0.0110520972, 0.0140070226, 0.0198489428, 0.0349428318, -0.0016871941, 0.00250319485, -0.0208950527, -0.00100790104, 0.0351602063, 0.00809038, 0.0133684864, 0.0145096993, -0.0139255067, 0.00333023397, -0.0297530349, -0.0332853571, 0.0349971764, 0.0225932859, 0.0224574283, -0.0128861889, 0.0191153064, -0.0373882875, -0.00740429386, -0.0403771773, -0.00735674333, -0.0380947515, 0.0202836897, 0.00591664203, 0.0140749514, 0.0208950527, -0.00948293, 0.00680311956, -0.0097206831, -0.0157867707, 0.00990409218, -0.0271853078, 0.023041619, -0.0179605074, -0.0418444499, -0.0134296231, -0.00783904176, -0.000299738051, 0.0433932394, 0.0301877819, -0.018897932, 0.017036669, 0.035486266, -0.00292096, 0.0232997499, 0.0381219238, -0.0152025782, -0.0249979831, 0.0018052212, 0.0041131191, 0.0458115228, -0.00527131371, 0.0131307337, -0.0148629313, 0.0130288405, 0.0299704075, 0.00435087178, 0.000178102142, 0.0186126288, 0.0122952042, -0.0223894976, 0.000580795517, -0.0205554068, -0.0135926539, 0.00660612481, 0.0196315683, -0.0137692699, -0.00735674333, -0.0309485905, -0.0117110116, -0.0102709103, -0.0133413151, -0.0143466685, -0.0254463162, -0.00770318275, -0.0255414173, 0.00904139, 0.0207591951, -0.00050819607, -0.0333940461, 0.00372931873, 0.00477882661, -0.0209901538, -0.0488547534, -0.00406896509, -0.00458862446, 0.0272260644, 0.00639554393, 0.00527810678, 0.0126008857, -0.00852512754, 0.0277559124, 0.0300519243, -0.00362063176, -0.00857267808, -0.000268108473, 0.0079001775, 0.0162894465, -0.000169823252, -0.00256602932, 0.0132598, 0.0183137394, -0.0130220475, 0.00311965332, 0.00209561898, -0.00830775406, 0.0311659649, 0.0145776281, 0.0179197509, 0.0189251043, -0.0174306594, -0.0597777851, 0.0187892448, 0.0115955323, -0.0291552562, -0.0182186384, -0.0036545964, -0.0122816181, 0.0209358111, -0.0311387926, -0.0513545536, 0.0220090933, -0.00520338444, 0.00683368789, 0.0186805576, -0.0168057103, 0.0267233867, -0.00485354848, 0.00450371299, 0.0338831358, 0.0108754812, -0.00668084668, 0.000292096, 0.00558378873, 0.0124038905, 0.0162622742, 0.0250930842, -0.0115955323, 0.0334483869, -0.0223215688, -0.0301877819, -0.0399696, 0.0197538417, -0.0301334392, -0.0257723778, 0.00401462195, 0.020310862, -0.0184224267, -0.0245088916, -0.00576719781, 0.00179842825, -0.0155286388, 5.76470347e-06, 0.0135179311, -0.0014214206, -0.00172115874, -0.0169823263, 0.00845040567, -0.0245088916, 0.0374969766, 0.0336657614, -0.00215166062, -0.0232046489, -0.0276336409, -0.00789338537, 0.0130084613, 0.00692539243, 0.0171996988, -0.000282118883, -0.0178246498, 0.0431486927, 0.0224710125, 0.00045809822, 0.00885118823, 0.0179740936, 0.00579097308, 5.31759069e-05, -0.0118536633, 0.0305681862, 0.00355270249, 0.00904139, -0.0247398522, 0.0186669715, 0.0224574283, 0.0200391449, -0.0192647502, 0.0159226283, 0.0191968214, -0.0255550034, 0.0266282875, 0.00147916051, -0.0252153575, 0.00410632649, -0.000361723534, -0.0342635401, -0.000836379535, -0.00483316975, 0.0254870746, 0.0432845503, -0.0223487411, 0.0307312161, 0.00778469816, -0.00804282911, 0.0323886909, -0.00475165481, 0.000799018424, -0.00554982387, -0.0178246498, -0.0118400771, -0.0016489838, 0.0084232334, -0.0101350518, -0.015012376, -0.0231774785, -0.0382306129, 0.0160313156, 0.00351534132, 0.017566517, -0.00242337794, 0.0101486379, -0.0154878814, 0.000482298055, 0.0207320228, 0.0119487643, -0.0218324773, 0.0152569218, 0.00714616245, -0.0342363678, -0.0381219238, -0.0299160648, -0.0122068953, -0.000566360541, -0.070972532, 0.00489770249, -0.0347254612, 0.00115734548, 0.00912969839, 0.0144145982, -0.0429856628, 0.0493981875, 0.0242371745, -0.00399763929, -0.00198863028, -0.0166426785, 0.0261256099, 0.0121933101, -0.012621264, -0.00101893954, -0.00915687, -0.010685279, -0.0129541177, 0.00563813234, -0.0278781857, 0.00237243087, 0.0215471741, -0.024631165, -0.00918404199, -0.0142787397, -0.0474418253, 0.00682010176, 0.00392291741, -0.0136605827, 0.0160177294, 0.0262750536, 0.0205146503, -0.00180012651, -0.00924517773, -0.0108958604, 0.0145776281, -0.00309587806, 0.00321475416, -0.0426052585, 0.0172676295, -0.00190881337, -0.0305953585, 0.00830775406, 0.0249436405, -0.0131511129, 0.0166290924, 0.00494185695, -0.0178382341, -0.017308386, -0.0155014666, -0.0309485905, -0.0135315172, -0.0134907598, 0.0164660625, 0.0254055597, 0.000213446605, 0.00662310701, -0.0160856582, 0.0238839425, 0.000763780088, 0.0360025316, 0.00541056879, 0.0112219211, -0.0168872252, 0.0380947515, 0.0102980826, 0.00677934429, -0.0283944476, -0.0348069742, -0.00326060643, 0.000169823252, 0.0347526297, -0.00535282912, -0.0515447557, -0.0174714159, -0.00194787281, -0.00283265184, -0.037795864, -0.0110724764, -0.0338559635, 0.0127299512, 0.00243866188, 0.0307312161, -0.00343212811, 0.0402413197, -0.0065178168, -0.0393174812, 0.0156644974, -0.0668424368, -0.0380404107, -0.0206233356, 0.0170638412, -0.00722088479, -0.00817189552, 0.00762846088, 0.0107124513, 0.00551585946, -0.0202157609, 0.00982257724, -0.00898025371, -0.0330951549, -0.0130220475, 0.030377984, 0.00367497536, -0.0230008624, -0.0214249026, 0.00701709697, 0.0258131344, 0.0400511175, -0.000313323922, -0.00427614944, -0.0253240447, -0.00227223523, -0.0137692699, -0.00728202146, -0.0164524764, 0.017213285, 0.00449692, 0.00431690738, 0.00106988649, -0.00307210279, 0.0140885375, -0.0196587406, -0.0251202565, -0.00817868765, 0.00391952088, 0.00834171847, -0.0119487643, -0.0364101045, 0.00264584622, -0.00229431223, 0.0263022259, -0.0180284362, -0.0235714689, 0.00184767705, 0.0283944476, -0.00331325177, -0.00106564094, -0.0427411161, 0.0179876797, 0.0151482346, 0.0207863674, 0.0295356605, 0.00763525348, -0.0162215177, 0.0105358353, -0.0167513657, -0.0185718704, 0.0023350697, -0.0256636906, 0.00333872531, -0.0148629313, 0.0208135378, -0.0118740425, -0.015270507, -0.00151057786, -0.0106988652, 0.0160177294, 0.0163030326, 0.00429992471, 0.0115276026, 0.00730919279, -0.0124854054, -0.00518300571, -0.00161247177, 0.0289378837, -0.00756732421, -0.00327249407, 0.0143194972, 0.00686765229, 0.0117178047, -0.00461579626, 0.000743401295, -0.0166155081, -0.0322528332, -0.0157052539, -0.00804962218, 0.0078865923, 0.00245224778, -0.0183544978, 0.0259082355, 0.0193462651, 0.00665027881, 0.00121338712, 0.000790102698, 0.00144264859, 0.0241828319, -0.021017326, 0.00197504438, -0.009360658, 0.0167921241, -0.0210037399, -0.0224166699, -0.0143466685, 0.0340189934, 0.0133481082, -0.000697973592, 0.00268150913, -0.00145538535, -0.00295662298, -0.0125125777, -0.0218053069, 0.00581135182, 0.0256501045, -0.00819227379, 0.00647026626, 0.00215845369, -0.022960104, 0.0126484362, 0.0593973808, -0.00554982387, -0.0111132339, 0.00258131349, 0.0328234397, -0.00457164226, -0.0130763911, 0.0195636395, 0.00720050605, -0.000744250428, 0.0320082866, -0.0126144718, 0.00990409218, 0.0145504568, -0.00390253845, 0.015012376, -0.010332047, 0.0103728045, 0.00300077698, 0.00558378873, -0.00655517774, -0.00203108625, 0.00470410427, 0.0191968214, 0.0179333352, 0.00130424264, -0.010243739, -0.00367157883, -0.0250115693, 0.00864060689, 0.0252153575, -0.0262886398, -0.0154335378, -0.00550227333, 0.0194413662, 0.0170230828, 0.0142787397, 0.0204467196, -0.034535259, 0.0274841953, -0.00194787281, 0.00487053115, -0.0289378837, 0.0171453562, 0.0255142469, -0.0208678823, 0.00353232375, -0.0407575816, -0.00143330824, 0.0118808346, -0.023843186, 0.00718012732, 0.00854550581, -0.00269000046, 0.0177159626, 0.0107532088, -0.0163573753, -0.00567209674, -0.00726164225, 0.0191696491, 0.00823303126, -0.0214656591, 0.0306225289, 0.000831709418, -0.0124921985, 0.0197810121, -0.0149580324, 0.00424218504, 0.0237752553, -0.00413010176, -0.0350243486, 0.00548868766, 0.0117178047, -0.00532226078, -0.022960104, 0.00354251312, -0.0122408606, 0.000413095084, -0.022960104, -0.00176276546, -0.0189386904, 0.0201885886, -0.0223487411, -0.000604995352, 0.0174714159, 0.00873570796, -0.00612722291, -0.0179333352, -0.0060830689, -0.0215335898, 0.0106445216, -0.0310844481, -0.0181371234, -0.0108822742, 0.00489091, -0.021995509, -0.0208135378, 0.00737032946, 0.00620194525, -0.00701709697, -0.0191424768, -0.00344741205, 0.00874929409, 0.00861343555, 0.00555661693, -0.0204059631, 0.0152976792, 0.000485269964, -0.00482977321, 0.0285846498, 0.0237209126, 0.0177567191, -0.0215064175, -0.0202836897, -0.00180691946, -0.0142515674, 0.00596079649, -0.0102029815, 0.0166155081, 0.0224438421, -0.0172676295, -0.0135790678, 0.00874250103, -0.0484471768, -0.01050187, -0.0270358622, 0.00590984942, -0.0064363014, -0.00733636459, 0.018368084, -0.0196451545, 0.00325041707, 0.00383121264, -0.0175529309, 0.00826699566, 0.0187077299, -0.0178382341, -0.0283944476, 0.026750559, 0.00141462777, -0.00236903434, 0.00476184394, -0.00471769, 0.000534094113, -0.00433388958, 0.0107124513, 0.0152025782, 0.00517960917, 0.00734315766, -0.013069598, -0.0293182861, -0.0172948, -0.0118264919, -0.00940141547, 0.0299160648, 0.00359685649, -0.00308399042, 0.0241013169, -0.0123427538, 0.0332581848, 0.0116906334, -0.00960520376, -0.0324430354, -0.0087832585, -0.0266147014, -0.00758091034, -0.000482298055, -0.00654159207, -0.0282042474, 0.0194277801, -0.00818548072, -0.0203516185, 0.021098841, -0.0185582861, 0.0217102058, 0.00169398694, 0.0158547, -0.00223827059, 0.027552126, 0.0065178168, -0.0181507096, -0.000419463438, -0.0340189934, -0.00778469816, 0.0104067689, 0.0117857344, -0.00968671869, 0.000129702516, -0.00327249407, 0.00393310655, 0.0105222492, 0.00269000046, 0.0119555574, 0.0238975286, -0.00565511454, 0.00320626306, -0.000724296202, -0.0238567702, -0.0138575779, -0.000620704, 0.0136809619, -0.0368448533, -0.0327962674, 0.00204976671, -0.00157341245, 0.00446635159, -0.0276608113, 0.0183137394, -0.0246855076, 0.016778538, 0.0210444983, -0.0131239416, 0.000662310689, 0.00406217249, -0.0295356605, 0.0117110116, 0.0143330833, 0.0128454315, -0.0084232334, 0.00396707142, 0.00753336, 0.0155150527, -0.00486034155, -0.0204738919, -0.0339646526, -0.0145232845, 0.0410021283, -0.00410632649, -0.0122408606, 0.00315701426, -0.00690161716, 0.0188164171, 0.0395891964, -0.0113577796, -0.00738391513, -0.0301877819, 0.00198523398, -0.0342363678, 0.00064830028, 0.0186533872, 0.0298345499, 0.00597438216, -0.0242779329, -0.00340665458, 0.00349496258, 0.000108527674, 0.00159633858, 0.0290193986, -0.00479920534, 0.0290737413, -0.0102505321, -0.027552126, 0.0174578317, -0.00747222314, 0.0134703806, 0.0174034871, -0.0103931837, 0.00854550581, 0.0182050522, -0.024373034, 0.0411108136, -0.00266622519, -0.000259829569, -0.00191900285, 0.0110656833, 0.0152976792, -0.0334212184, -0.0139934365, 0.00970030483, -0.0232046489, -0.01156836, 0.0584192, -0.0303236414, 0.0155829825, 0.00551246293, -0.00570606161, -0.010155431, 0.0138371987, 0.00809038, -0.00517960917, -0.0379860662, -0.00970030483, -0.00397726055, -0.0215335898, -0.00695256423, -0.0238024276, -0.0055973744, 0.0115072243, 0.00586229889, -0.0445887931, -0.00243526557, -0.00440861192, 0.000448333391, 0.0205689929, 0.0213433877, 0.052522935, -0.0275385398, -0.00224676169, -0.00967992563, 0.0542347543, -0.0165611636, -0.0101622241, -0.0197130833, 0.0106920721, -0.011038512, -0.0272260644, 0.0221721251, -0.00265263929, 0.0257995483, -0.016778538, -0.0159226283, -0.0441268757, -0.0228106603, -0.004592021, -0.0129609108, -0.00585890235, 0.00709861191, -0.0208814684, -0.0037395081, 0.024631165, 0.00488751335, -0.0114936382, 0.00178484246, 0.0251066703, -0.0124989916, -0.00598457176, -0.0133956587, -0.00162266125, -0.00622911705, 0.00457164226, 0.00449012686, -0.00749260187, -0.00235035387, 0.00896666758, -0.0179469213, -0.00678274082, -0.0092859352, 0.00409274036, 0.0402413197, 0.00852512754, -0.00184767705, 0.0252289437, -0.00219581462, 0.0109434109, 0.000427954597, -0.00622572051, -0.00581474835, 0.0146048, 0.00499959663, -0.00372931873, -0.024726266, -0.031872429, 0.0179605074, -0.0109637892, 0.0175121743, 0.0121525526, 0.0144010121, 0.00458522793, -0.00765563222, 0.0146591431, -0.0202157609, -0.00637516519, -0.00224166689, 0.0244953074, 0.0249572266, -0.0153248506, -0.0148085877, 0.0252289437, 0.00916366279, 0.0528218262, 0.00948293, -0.00250659138, -0.00387197034, -0.00496223569, -0.0111607844, -0.02225364, -0.0472244509, -0.0171181839, 0.00181710883, -0.0231638923, -0.0267913174, -0.00242507621, -0.0217373762, 0.026573943, 0.00291756354, 0.0248349532, -0.0142923249, 0.0114325015, 0.00623251358, 0.00400782889, -0.00740429386, 0.0327962674, 0.00889873877, 0.0037836621, 0.00874929409, 0.01483576, -0.00688803149, 0.00351873785, -0.0117857344, -0.0230959635, 0.0165475775, 0.0229193475, 0.0165339913, 0.0120642446, 0.00897346064, 0.00165492762, 0.00381423044, -0.00497921789, 0.0159633867, -0.0430128351, -0.0110928547, 0.0298617221, -0.00758770294, -0.0355949551, 0.00511507643, -0.00383121264, 0.015188992, 0.00534603605, -0.00150463404, -0.00398405362, 0.0235442966, -0.00779149123, -0.00849795621, -0.00288699544, 0.0130628049, -0.00870853662, -0.00666726101, 0.0131782843, -0.0214384887, -0.0148629313, -0.00664008921, 0.0173491444, -0.0246039927, 0.0232997499, 0.0166562647, -0.0169415679, 0.0364916213, 0.000616033853, -0.00405877596, -0.00461239973, 0.00248791068, 0.022430256, -0.00128810934, 0.00234356103, 0.00301266462, -0.0251202565, 0.0158411134, -0.0130220475, -0.0204603057, -0.0271173771, 0.0145368706, -0.0180827808, -0.0023214838, -0.0240333881, 0.0127910879, 0.0100535369, -0.00505733676, 0.00166341884, -0.00341684395, -0.0173627306, -0.0108415168, 0.00740429386, -0.00211429945, -0.0196043961, 0.0212211143, -0.0121253803, -0.0154607091, -0.0106649008, -0.0112355063, 0.00398745, 0.00983616337, -0.0299160648, -0.00641592266, -0.0217102058, -0.00180861773, -0.0241013169, 0.0106513146, 0.00399424322, 0.0273619238, 0.0176344477, -0.0123495469, 0.0114392946, 0.000895817706, -0.00295152818, -0.00258131349, 0.00116498757, 0.00204637018, 0.00326400297, 0.0130288405, -0.000945066451, 0.0139934365, 0.0100942943, -0.0118604563, 0.0179061648, 0.00594381383, -0.0146999015, -0.00197844091, -0.00340665458, 0.0131782843, 0.00615779124, 0.016343791, -0.0158139411, 0.0160041433, -0.0172268711, 0.00528150331, -0.000631317962, 0.026669044, 0.0264245, -0.00430332124, -0.0087696733, -0.00024709283, -0.0123155825, -0.00353232375, 0.0269543473, -0.00205146498, -0.0148221739, -0.00805641524, 0.0163573753, 0.00953727402, 0.00333193224, 0.0297258627, -0.0136198252, 0.0154199516, -0.00234356103, 0.00315871253, 0.00915687, 0.0139255067, 0.0116770472, -0.00199032854, -0.0179605074, 0.000875438913, 0.0272260644, -0.0161671732, -0.0344537422, -0.0101010874, -0.00516262697, 0.00418784143, -0.0233405083, 0.00136707723, -0.0254055597, 0.00544453366, 0.0153112644, -0.0312203076, -0.00744505133, -0.00891232491, -0.000126518324, 0.0183952544, 0.0165475775, 0.0180963669, -0.00894628931, 0.0130560119, 0.00336759514, -0.0224166699, 0.0121525526, 0.00076760113, -0.00191051164, -0.0166834369, 0.000522631046, 0.00992447138, 0.0279325284, 0.009360658, -0.0150667196, -0.00213467842, 0.0192104075, -0.0192783363, 0.0107600018, 0.00587588456, 0.00689822063, -0.00449012686, -0.0123767192, 0.0141836386, -0.0210852548, 0.0378230363, 0.0103388401, -0.00925876386, 0.00203448255, 0.00490109902, 0.00428973557, -0.0178246498, 0.0103252539, -0.0189251043, 0.000803688541, -0.00313833379, 0.0104339411, 0.0148221739, 0.00113696675, 0.0027986872, 0.0262478832, -0.0299432371, 0.0018408841, 0.00432709651, 0.00941500161, -0.0136945471, -0.0101961885, -0.0247941948, 0.00624949578, -0.0111675775, -0.00375988684, -0.0316822268, 0.00501318276, 0.00588607416, 0.0037123363, 0.023218235, 0.00775073329, -0.00859305635, -0.0290193986, 0.00802924391, -0.0121185873, -0.0265467707, -0.00545132672, -0.0191288907, -0.022960104, 0.0151074771, 0.0133888656, -0.0161943454, -0.00564152841, -0.00845719781, 0.00754694548, -0.0277015697, -0.00217373762, 0.00337608624, 0.00905497558, -0.021995509, -0.0267777313, 0.0182322245, 0.00055659574, 0.000852088211, -0.0143738408, -0.00931990054, 0.000591834076, -0.00507431896, 0.00125584297, 0.00522376318, -0.00682349829, -0.0198081844, -0.00424558157, -0.0134839667, -0.0109569961, 0.00584871275, 0.00879684463, 0.0180284362, 0.00264414819, 0.0110045467, 0.00872891583, -0.00353911659, 0.00533924298, -0.00946934521, -0.0404586941, -0.0135383103, 0.00541736186, 0.011391744, 0.0215607602, 0.00382781611, -0.000746373204, 0.00492147775, -0.0141428811, 0.00924517773, -0.0156644974, -0.0114528807, -0.010773587, 0.0236393977, 0.00564832147, 0.00625289232, 0.00764204655, 0.00946255215, 0.0166562647, 0.00462938193, 0.0146727292, -0.00258471, 0.000343892083, 0.00281397137, -0.0132598, -0.00450371299, -0.0161671732, -0.00289718481, 0.0189930331, 0.0173355583, 0.00544113712, 0.00743825873, 0.0267777313, -0.0121321734, 0.0110860625, 0.0128726028, -0.0228785891, -0.014129295, -0.0298345499, -0.00108177413, 0.00981578417, 0.0116702542, -0.0160449017, 0.0253240447, 0.0189930331, 0.00910931919, 0.011744976, -0.00251168595, 0.0190609619, -0.00177125656, -0.00912290532, -0.0258131344, 0.00773035455, 0.0342907123, 0.00311625679, -0.00644309446, -0.00531207165, -0.0185718704, 0.00123970979, 0.00173559366, 0.00540717226, -0.0036512, -0.00452069519, 0.0268728323, 0.00871533, -0.00614420557, -0.0150395473, -0.00855229888, -0.00201410381, 0.00910931919, -0.0139390929, 0.0060491045, 0.0174306594, 0.0102301529, 0.0070103039, 0.0221449528, -0.00741788, -0.00573662948, -0.00424218504, -0.0148221739, -0.0132937646, -0.011656668, 0.00638535433, -3.14173e-05, 0.024373034, -0.000945915526, -0.006490645, -1.21463427e-05, 0.00971389, -0.0132937646, -0.020134246, 0.00288529717, -0.00694577117, -0.00909573399, 0.0088919457, 0.00332344114, 0.0117993196, -0.0217645485, -0.0206912663, 0.0332853571, -0.00734995073, -0.0137964413, 0.0178654063, -0.0156509113, -0.0194821246, -0.00703747571, -0.00495204609, 0.0165204071, 0.0175801031, 0.0156780835, 0.0151482346, -0.0004128828, -0.0167241935, -0.0086474, -0.00337778451, -0.0154335378, 0.00912290532, 0.0178789925, -0.00992447138, 0.00322494353, -0.0046090032, -0.00367497536, -0.00665707188, -0.015365608, -0.0154335378, 0.0266962163, -0.00437804358, -0.0189386904, 0.0341276824, -0.00982257724, -0.0169143956, -0.008300961, -0.00776431942, 0.0232861657, -0.0194277801, -0.00938103627, 0.0197945982, -0.000246880547, 0.00346948905, 0.00269679329, 0.00349156605, -0.00811075885, 0.0134703806, 0.00567889, 0.0318996, 0.0115004312, 0.00628685718, 0.0309757628, 0.0116294967, 0.00437464705, -0.00124395534, 0.0188571736, 0.0132801784, -0.0266962163, -0.0135926539, 0.0195908099, -0.0345624276, 0.0285303071, 0.00635139, 0.00209222245, -0.00826699566, -0.000282543449, -0.00974785537, -0.00097733282, 0.0168600529, 0.00772356149, -0.0069219959, -0.00925876386, 0.000595230493, 0.000750618812, -0.00733636459, 0.0214113165, -0.0241420735, -0.00779149123, -0.00608986197, 0.00388215971, 0.018286569, 0.012804674, -0.00703068264, -0.0165747497, 0.00713937, -0.0127775017, -0.00702389, -0.0055260486, -0.00349156605, -0.00681670569, -0.0103048747, -0.00252527185, -0.00773035455, 0.0158818718, -0.00417085923, 0.00350854849, 0.00870174356, 0.00714616245, 0.0111132339, 0.0206097495, 0.017213285, 0.0202021748, 0.000475505105, 0.0119148, 0.01298129, -0.00719371298, -0.000260678702, 0.0109026534, 0.00687104883, -0.0288835391, -0.0133549012, 0.0204738919, 0.00352213439, -0.00389914191, -0.0261799525, -0.00938782934, 0.00953048095, -0.0110045467, -0.00751977367, -0.0179740936, 0.000101416328, 0.0111471983, 0.00620194525, -0.0226204582, -0.0183409117, -0.027905358, 0.0041402909, -0.0185582861, -0.0191424768, -0.00198013918, -0.00547170546, 0.00741108693, 0.0154335378, -0.00857947115, -0.00286831474, -0.0139390929, 0.00146302732, 0.0348069742, 0.032850612, 0.00105969713, 0.0130967693, -0.00829416793, 0.000915347366, 0.00199712161, 0.00455126306, -0.00628346065, -0.000825765601, -0.00927914307, -0.00720050605, 0.016425306, -0.00179163541, 0.00576040475, -0.00800207164, 0.00343722268, 0.00527471025, 0.000928933208, -0.0190202054, -0.0248213671, 0.00351194502, -0.0027188703, -0.0112083349, -0.0105222492, 0.00258471, 0.0165475775, -0.00404179329, 0.0241828319, 0.0260848515, 0.00105290418, 0.00561096054, 0.0228785891, 0.0117517691, -0.0243594479, -0.00151567254, 0.0212211143, -0.000606269052, 0.00684048096, -0.0070103039, -0.0104271481, 0.0083349254, -0.0078322487, -0.0125465421, 0.00248960895, -0.00344401575, 0.00853871368, 0.0145912142, -0.00124565361, 0.00628006412, -0.00317060016, 0.00821265299, -0.0104746986, -0.00858626422, -0.00196145871, 0.00350175565, 0.0248349532, -0.0208135378, 0.00615439471, -0.0141700525, -0.014129295, -0.00682010176, 0.00668084668, 0.00739750126, -0.00773035455, -0.0106241433, 0.0121117942, 0.00573323295, -0.0060491045, 0.0015912439, -0.00994485, -0.0123835122, 0.0187349021, -0.009360658, -0.0127367442, -0.00942858681, 0.00858626422, -0.00154539163, 0.0028530308, 0.0359210148, -0.00195126922, 0.0191288907, 0.0128522236, 0.00380064454, 0.0013993436, -0.00558378873, 0.00953048095, -0.00488751335, -0.00758770294, 0.00705106184, -0.00524753844, -0.00163709617, 0.00193428691, -0.0154335378, 0.0109434109, -0.019332679, -0.022688387, -0.000892421231, 0.00455465959, 0.00856588501, -0.0073024, 0.00414368743, -0.00671141502, -0.00658574607, -0.0032487188, 0.0115004312, -0.00407915469, 0.00979540497, 0.0121321734, -0.00255414168, -0.00199202681, 0.0032317366, 0.0139798503, -0.00800207164, -0.024984397, 0.00642950833, 0.0088919457, 0.0165883359, 0.0298888925, -0.00823303126, -0.00588947069, -0.00891911704, 0.012274825, 0.00212448905, 0.0123699261, -0.0271581355, -0.0050845081, 0.00853192061, -0.00226204586, -0.00477203354, 0.0117245978, 0.000445786049, 0.0109026534, 0.0148901027, 0.0016710608, -0.026139196, 0.0194685385, -0.00523734931, 0.0302964691, -0.000267471623, -0.0200663153, 0.0107939662, 0.0103660114, 0.00667405408, -0.0278510135, -0.0166698508, 0.0188164171, -0.0157460123, 0.00512526603, -0.00509809423, -0.0244137906, 0.000311413402, -0.00614760211, -0.022688387, 0.00373271527, 0.0296986904, 0.00274264556, 0.00719371298, -0.00296171755, 0.026927175, 0.00840285514, 0.011391744, -0.00567209674, -0.0215607602, -0.00665707188, -0.0109230317, 0.00802245084, -0.0127367442, 0.0478494, -0.000217267632, -0.0093402788, 0.00171691307, 0.0262886398, -0.00681670569, 0.0100331577, 0.015012376, 0.00497582136, 0.0144961132, 0.0041233087, 0.0131714921, -0.0103863906, -0.0131239416, -0.0122136883, 0.00357987429, 0.00845719781, -0.0164388921, 0.0137488907, 0.0193734374, -0.0447518229, 0.0193462651, 0.00246583368, -0.00391612435, 0.00480599795, 0.0194141939, -0.0249436405, -0.00377347274, -0.0439638458, -0.00704426877, 0.0240877308, 0.0169279817, -0.0117993196, 0.00452069519, 0.0266418718, -0.00127197616, -0.0100059863, 0.0262750536, -0.00202768971, 0.000304195913, 0.0183544978, -0.0237480849, -0.00420822, 0.0142243961, -0.0134703806, -0.0141836386, -0.0180691946, 0.021275457, -0.00785262696, -0.00495544262, 0.0132801784, -0.0176480319, 0.0218868218, -0.0177023765, -0.0145640429, 0.0122952042, -0.0078865923, -0.0170638412, -0.00189352932, 0.00400782889, -0.000811330625, -0.00564492494, -0.0161400028, 0.0242507607, 0.00961199589, -0.0079749, 0.00219581462, 0.0214928314, 0.0112490924, 0.00118027162, -0.0041572731, 0.002803782, -0.0059777787, 0.0101146735, 0.017036669, -0.00513545517, 0.00819906686, 0.00901421811, -0.00748580927, -0.00991088524, -0.00106224453, 0.0224030837, 0.00911611225, -0.0147406589, 0.00840285514, 0.00688463496, 0.00522715971, -0.0111947488, 0.0170910116, -0.0228785891, -0.00551246293, -0.0178110637, -0.00253715948, 0.0079001775, 0.0174034871, -0.00903459731, 0.00221279706, -0.00169908174, 0.00823303126, 0.00409274036, 0.0101826023, -0.00249640178, -0.0131171485, -0.00183918583, 0.000369365589, -0.0127503304, -0.00340495631, -0.00141717505, 0.003753094, -0.0243186895, 0.0135518955, 0.00927914307, -0.00611024071, -0.00141377863, 0.0116023244, -0.00526452111, 0.00109536, 0.0227563158, -0.00770318275, -0.00800207164, -0.00640573306, -1.43155694e-05, 0.0134771736, -0.000937424367, 0.000273627724, 0.0242371745, 0.000188079255, -0.00749939494, 0.0169823263, 0.00120404689, 0.0150395473, 0.0221585389, -0.0127367442, 0.0221585389, 0.0296171755, 0.000489515543, -0.0166698508, -0.00592003856, -0.00701709697, 0.00969351176, -0.0286118221, 0.00122952042, 0.0131103555, -0.00784583483, -0.00995843578, 0.00988371391, -0.0226476286, -0.00968671869, 0.0114936382, 0.00481618755, -0.0146455579, -0.0214928314, -0.00208712788, -0.0152161634, -0.00200051791, -0.014305911, 0.0140206078, 0.0083145462, -0.0157188401, -0.000532395905, 0.0102505321, -0.0245768223, -0.0119012138, 0.0105494205, -0.00494525302, 0.0301877819, 0.00193428691, -0.00219581462, 0.00951010268, -0.0104814917, -0.00101639214, 4.60711908e-06, 0.00782545563, 0.00132801791, 0.0307583883, -0.0272939932, -0.00715974858, -0.0168872252, 0.00630383939, -0.0240605585, -0.00713937, 0.0276336409, 0.0156373251, 0.00912290532, -0.0199032854, -0.0125601282, -0.000341557025, 0.0174170732, 0.00165577675, 0.000960350502, 0.0272124782, -0.0411379859, 0.00426256377, 0.00754015241, -0.0185990427, 0.0243458617, -0.00811075885, -0.0167377796, 0.00357647776, -0.0148629313, 0.0108211376, -0.00735674333, 0.00520338444, -0.0174578317, -0.00271717203, -0.000921291183, 0.00857947115, 0.0158682857, 0.00857947115, 0.00819906686, -0.00412670523, -0.00999919325, -0.00155473186, -0.00966633949, 0.0140341939, 0.00308229215, -0.00937424414, -0.00875608716, -0.0177974775, 0.0210716706, 0.00910252612, -0.0248485394, 0.000455975445, -0.0286661666, 0.0146048, -0.00243866188, -0.00926555693, -0.0218868218, 0.00787300617, -0.0122068953, -0.00149784109, 0.00944217294, -0.00561775314, -0.00667405408, 0.00423199544, -0.00832133926, 0.0262342971, 0.00589286722, 0.0256229322, -0.0146999015, 0.0298345499, -0.0215064175, 0.01483576, 0.0138915423, 0.0125669213, -0.00306361145, 0.00148510432, -0.0115479818, 0.0180284362, -0.0122816181, -0.0302421264, 0.0074246726, -0.0185854565, 0.0208271239, 0.0036545964, 0.00942858681, 0.00279698893, 0.00934707187, -0.00398745, -0.0328234397, -0.000464466604, -0.0114189154, 0.00935386494, 0.00749260187, 0.0152297495, 0.0227699019, -0.0203652047, 0.00371573283, -0.00980219804, 0.0069831321, -0.0079545211, 0.0173763148, -0.00836889, 0.00848437, 0.0149987899, 0.000956954, 0.0140206078, -0.0206369217, 0.00909573399, -0.00292605464, -0.0266147014, -0.00677594775, 0.00774394069, 0.000985824, 0.0339374803, -0.0117042186, -0.00709181931, 0.000651696755, 0.00390933128, -0.00552944513, 0.0102709103, -0.0206369217, 0.00274264556, 0.0278238431, -0.00562114967, -0.00908214785, -0.00885118823, 0.0124106836, 0.0227970742, 0.00323513313, 0.00223827059, 0.00430332124, 0.00850474834, -0.0154335378, 0.00570606161, -0.0162622742, 0.00767601142, -0.000742552162, -0.00299568218, 0.00958482455, -0.0154199516, -0.00246583368, -0.004636175, 0.015365608, -0.0110996477, -0.00275113666, -0.00773035455, -0.0355677828, -0.000686085958, -0.0163845476, 0.00512526603, 0.00337778451, 0.00637856172, -0.0120438654, -0.0207999516, 0.0185718704, 0.00284623774, 0.0194685385, 0.00474146521, -0.00684048096, -0.0179469213, 0.00694577117, -0.0119012138, 0.0106309354, -0.0143466685, -0.0121253803, -0.012892982, 0.00145283795, 0.0114528807, -0.00150633231, -0.00580116222, -0.0324158631, -0.0157460123, -0.0627123341, -0.00170417642, 0.0337744504, 0.00699671824, 0.0189251043, 0.00523055624, -0.0302964691, -0.0113102291, -0.00253036642, 0.00587928109, -0.00670122588, 0.0049962, -0.0164660625, 0.0165204071, 0.00474825827, -0.0140749514, 0.00658914214, 0.0174442455, 0.012532956, -0.017743133, 0.0143466685, -0.00618156651, -0.010685279, -0.0160313156, 0.0078322487, -0.00914328452, 0.00784583483, -0.00446635159, -0.00474146521, 0.00149104814, -0.0159226283, 0.0064804554, 0.0157052539, -0.0221313667, -0.00661631394, -0.020052731, -0.00777790509, -0.0360297039, 0.027728742, 0.0127707087, 0.00554303126, 0.0100603299, 0.00873570796, -0.0111064408, 0.00315022143, 0.0461647548, 0.00713937, 0.00876288, 0.00222128816, 0.0399152599, 0.00344061921, 0.0222672261, -0.0156916697, 0.016425306, -0.00205146498, 0.00394329615, -0.00100365549, -0.00905497558, 0.0291824285, 0.0257180333, -0.0274570249, -0.0114528807, 0.0295628328, -0.0146727292, 0.0185854565, 0.0196179822, -0.0055090664, -0.00579776615, -0.00399084669, 0.00115309993, -0.00604231143, 0.0103660114, 0.00134924578, 0.0132326279, 0.00935386494, 0.00451729866, -0.00208203308, 0.0051490413, -0.0216422752, 0.0116430828, -0.000454701774, 0.0184360128, 0.0118808346, 0.00356968492, -0.00486373808, 0.00656536687, 0.00507431896, 0.0133073507, 0.000753166154, 0.0097410623, 0.0220906101, -0.0163981337, -0.00767601142, 0.00521017751, -0.00779149123, 0.0177567191, -0.0114257084, 0.00819906686, 0.0187349021, 0.0142515674, -0.00195636391, 0.00767601142, 0.0112898499, 0.000623675936, 0.0111132339, -0.00857947115, -0.00128810934, 0.0105222492, -0.0131511129, 0.0131171485, 0.0172404572, -0.00399763929, -0.0151754059, -0.00953727402, 0.0201206598, 0.0231367201, -0.0101350518, 0.0114121232, -0.0209765695, -0.00142057159, 0.00146982027, -0.0260440949, -0.00877646543, 0.0191153064, 0.0128386384, -0.00847078394, 0.00992447138, -0.0101214657, -0.00540717226, -0.0113713648, 0.00122187834, 0.0295084883, 0.00346439448, -0.0271717217, -0.000585041125, -0.0137964413, 0.0105290422, 0.0127707087, -0.00186635763, -0.010590178, -0.0176752042, 0.00230110507, 0.0149036888, 0.00434068264, -0.0141428811, -0.0173763148, -0.0167106092, 0.00480939448, 0.000916196441, -0.011384951, -0.00889873877, -0.0110181328, 0.012804674, 0.017389901, -0.0154607091, 0.00270528439, -0.00834171847, 0.00844361261, -0.00146132917, -0.0371165723, -0.000293157384, 0.0112219211, -0.0140477801, -0.00845040567, 0.0056347358, 0.00366138946, 0.00810396578, -0.0104611125, 0.004592021, -0.0254327301, 0.0129201533, 0.0125601282, 0.00434068264, 0.0151482346, -0.00623251358, 0.00782545563, -0.0174850021, -0.0170230828, -0.0158818718, 0.00369875063, 0.01050187, 0.00586229889, -0.00088138273, 0.011649875, 0.0036681823, -0.0139051285, -0.00139424892, 4.76566529e-05, -0.00117517693, -0.0172404572, 0.0246039927, 0.00332853594, -0.00816510245, -0.0175529309, 0.0158139411, -0.0108143445, 0.000299738051, 0.0105426274, -0.0230280329, -0.00830775406, 0.00321135786, 0.00335910404, 0.0231231339, 0.00163539802, 0.0147814164, 0.0137692699, -0.0093402788, 0.011215128, -0.00298719108, -0.0102709103, -0.0142515674, 0.0069321855, -0.0257044472, -0.0119691435, 0.0133752795, -0.00939462241, -0.00556680653, -0.0162079316, 0.00808358658, 0.000869495096, 0.00724805659, 0.000578672742, 0.0359210148, 0.00718692038, 0.029046569, 0.00440861192, 0.0165204071, 0.014129295, -0.000231596467, -0.00387876318, -0.00680991262, -0.00354590965, 0.0146048, -0.0116294967, 0.026315812, 0.0213705581, 0.0228514168, 0.0193190929, -0.0167106092, 0.0101758093, 0.00528150331, 0.00574002601, -0.0311116204, 0.00669103628, -0.0100739151, -0.000642781029, 0.0216422752, -0.00620534178, 0.00350175565, -0.0289378837, -0.00137132278, 0.00767601142, -0.00427954597, 0.00107922684, 0.0212211143, 0.00308229215, -0.00606948324, 0.0223351549, 0.0134024518, 0.00511507643, -0.01235634, 0.0128318453, -0.00745863747, 0.0184360128, -0.00547849806, -0.00164643652, 0.0219275784, -0.0142515674, -0.0100263655, 0.0212890431, 0.00871533, 0.00229770876, 0.00475844787, 0.0127978809, -0.0219819229, -0.00565511454, -0.00705785444, 0.0336114205, 0.00152840931, 0.00540377619, -0.0183544978, -0.034535259, -0.0127027798, -0.00111488963, 0.0129609108, -0.017743133, -0.00569926854, -0.000916196441, -0.00948972348, 0.00715974858, 0.0087832585, 0.00194787281, 0.00146812201, 0.0119012138, -0.0414912179, -0.008389269, -0.0156237399, -0.0100535369, -0.00130084611, 0.00934707187, 0.0160449017, -0.0151346484, -0.00653819554, 0.00798169337, 0.00574342255, 0.00198863028, -0.00585890235, -0.00729560712, -0.0123359617, -0.00542755146, 0.000477203343, 0.0310572777, -0.0128793959, 0.00193768332, 0.000838077744, -0.00175087783, -0.00299568218, -0.0042489781, -0.0187620725, -0.0245904084, -0.0157731846, -0.00199372508, -0.00495204609, 0.0136334114, 0.0242371745, -0.00571285421, 0.018897932, 0.000385286519, 0.0049962, 0.00726843532, 0.0121593447, -0.0110724764, -0.0167377796, 0.0321984887, 0.00215675542, 0.0100807082, -0.014387426, -0.0209765695, -0.014482527, 0.0155829825, -0.00207354198, -0.00490449555, -0.00106818823, -0.0112083349, 0.00677255169, 0.00201410381, -0.0104067689, 0.00743825873, 0.0207999516, -0.0221313667, -0.0186669715, -0.00527131371, 0.00451050559, 0.00754015241, -0.00449352339, 0.00238092197, -0.0260984376, -0.0200391449, 0.00497921789, 0.00654838467, 0.00809038, -0.0263701547, -0.0158411134, -0.0202429313, 0.0286389943, 0.000965445186, 0.008389269, 0.00940820854, -0.00221279706, -0.0192647502, 0.000833832193, -0.0027273614, -0.0243594479, 0.0702117234, 0.00551246293, -0.00135603873, -0.0122068953, 0.000637686346, -0.0135247242, 0.00625968538, 0.031356167, -0.00679632695, 0.0220090933, 0.0169823263, 0.00446635159, 0.0144281834, -0.00837568287, -0.00253715948, 0.00162351038, 0.00207014545, 0.00719371298, 0.0031960737, 0.00299058761, 0.00488411682, -0.00647026626, 0.00474825827, -0.0138371987, 0.00148170791, -0.0188164171, -0.0248349532, 0.00060924096, -0.00193258864, 0.0112083349, 0.00318928086, 0.0046090032, -0.00343212811, -0.0123427538, -0.00354251312, 0.0163981337, -0.00804962218, 0.0125125777, 0.00746543054, -0.0186941437, 0.00684727356, 0.0439910181, 0.0113577796, -2.68931053e-05, -0.00161671743, -0.00565851107, 0.0101010874, -0.0183544978, 0.0138915423, 0.00760808168, -0.0102844965, 0.00147406582, 0.0165204071, -0.0172812138, 0.0055803922, 0.0120234862, 0.00451729866, -0.0317637436, -0.00238601677, 0.015800355, 0.0146591431, 0.00894628931, 0.00719371298, 0.00387876318, 0.0169279817, -0.00567209674, -0.00849795621, -0.0137624769, -0.00250319485, 0.00127961824, 0.0128318453, -0.0169008113, 0.0333940461, 0.000981578371, -0.00828737486, 0.0078662131, 0.00379724801, -0.00908214785, 0.00783904176, 0.000708587526, -0.00705785444, 0.00204637018, -0.017743133, -0.0208950527, 0.00258471, 0.0042285989, -0.00101893954, -0.013327729, 0.00620873831, 0.00773714762, -0.00295322645, 0.00984295551, 0.00110639853, 0.0180420224, 0.00477882661, 0.0365187936, -0.0110792695, 0.00611024071, -0.00495544262, 0.0145504568, 0.0122952042, -0.0130492188, -0.0184224267, 0.0186533872, -0.026315812, 0.0195364673, -0.00883080903, 0.0275792964, 0.0222808104, 0.00141717505, 0.00866777916, -0.0167377796, 0.0203923769, -0.00107073563, 0.0100739151, 0.00729560712, 0.00888515264, -0.0032487188, 2.40671397e-05, 0.00574681908, 0.0180556085, -1.02490985e-05, -0.0131375268, -0.0127978809, 0.00026237694, 0.0213433877, 0.00841644, 0.00384819508, 0.010420355, 0.00298209628, 0.00650083413, -0.00128216564, 0.00604570797, 0.0102301529, -0.00613401597, 0.00225015823, -0.0155693963, 0.00768280402, -0.0163030326, 0.0101758093, -0.00774394069, 0.0257452056, 0.015093891, 0.0207999516, 0.00383460918, -0.00426256377, 0.0212618709, 0.00419123797, 0.000259829569, -0.00230110507, -0.0142651536, 0.00494185695, 0.0185039416, -0.00574681908, 0.00800207164, 0.00554642733, -0.00172115874, -0.0346167721, 0.0507024303, -0.00241318857, -0.00804962218, 0.00457164226, 0.00771676889, 0.00359006366, 0.00175087783, -0.00178993715, 0.0139119215, -0.00823303126, 0.0211531855, 0.0103863906, 0.0205146503, -0.00576040475, 0.0121321734, 0.0101486379, -0.00862702169, 0.00935386494, 0.0120031079, 0.0199440438, -0.0111132339, -0.00787300617, 0.0179061648, 0.0116974255, -0.0159362145, 0.0270766206, 0.00316550559, -0.00630723592, -0.0208678823, 0.0137556838, 0.0433117226, 0.0101690162, -0.00375988684, -0.0242100041, 0.0157324262, 0.00169653434, -0.0205282345, -0.00589626329, 0.0164796486, -0.00462258887, 0.0254327301, 0.00863381475, -0.00223317579, -0.00637516519, 0.00594721036, -0.00827378873, 0.00413689436, 0.0404586941, 0.00455805613, -0.0158682857, 0.00870174356, -0.00631402852, -0.0122272745] |
11 Apr, 2023 | Print longest palindrome word in a sentence
11 Apr, 2023
Given a string str, the task is to print longest palindrome word present in the string str.Examples:
Input : Madam Arora teaches Malayalam Output: Malayalam Explanation: The string contains three palindrome words (i.e., Madam, Arora, Malayalam) but the length of Malayalam is greater than the other two.Input : Welcome to GeeksforGeeks Output : No Palindrome Word Explanation:The string does not contain any palindrome word so the output is No Palindrome Word.
Approach:
longestPalin() function finds the longest palindrome word by extracting every word of the string and passing it to checkPalin() function. An extra space is added in the original string to extract last word.
checkPalin() function checks if the word is palindrome. It returns true if word is palindrome else returns false. It makes sure that empty strings are not counted as palindrome as the user may enter more than one spaces in between or at the beginning of the string.
C++
/* C++ program to print longest palindrome
word in a sentence and its length*/
#include <iostream>
#include <algorithm>
#include <string>
using namespace std;
// Function to check if a
// word is palindrome
bool checkPalin(string word)
{
int n = word.length();
// making the check case
// case insensitive
// word = word.toLowerCase();
transform(word.begin(), word.end(),
word.begin(), ::tolower);
// loop to check palindrome
for (int i = 0; i < n; i++, n--)
if (word[i] != word[n - 1])
return false;
return true;
}
// Function to find longest
// palindrome word
string longestPalin(string str)
{
// to check last word for palindrome
str = str + " ";
// to store each word
string longestword = "", word = "";
int length, length1 = 0;
for (int i = 0; i < str.length(); i++)
{
char ch = str[i];
// extracting each word
if (ch != ' ')
word = word + ch;
else {
length = word.length();
if (checkPalin(word) &&
length > length1)
{
length1 = length;
longestword = word;
}
word = "";
}
}
return longestword;
}
// Driver code
int main()
{
string s = "My name is ava and i love"
" Geeksforgeeks";
if (longestPalin(s) == "")
cout<<"No Palindrome"<<" Word";
else
cout<<longestPalin(s);
return 0;
}
// This code is contributed by Manish
// Shaw (manishshaw1)
Java
/*Java program to print longest palindrome
word in a sentence and its length*/
public class GFG {
// Function to check if a
// word is palindrome
static boolean checkPalin(String word)
{
int n = word.length();
// making the check case
// case insensitive
word = word.toLowerCase();
// loop to check palindrome
for (int i = 0; i < n; i++, n--)
if (word.charAt(i) !=
word.charAt(n - 1))
return false;
return true;
}
// Function to find longest
// palindrome word
static String longestPalin(String str)
{
// to check last word for palindrome
str = str + " ";
// to store each word
String longestword = "", word = "";
int length, length1 = 0;
for (int i = 0; i < str.length(); i++)
{
char ch = str.charAt(i);
// extracting each word
if (ch != ' ')
word = word + ch;
else {
length = word.length();
if (checkPalin(word) &&
length > length1)
{
length1 = length;
longestword = word;
}
word = "";
}
}
return longestword;
}
// Driver code
public static void main(String args[])
{
String s = new String("My name is ava "
+ "and i love Geeksforgeeks");
if (longestPalin(s) == "")
System.out.println("No Palindrome"
+ " Word");
else
System.out.println(longestPalin(s));
}
}
Python3
# Python 3 program to print longest palindrome
# word in a sentence and its length
# Function to check if a word is palindrome
def checkPalin(word):
n = len(word)
# making the check case
# case insensitive
word = word.lower()
# loop to check palindrome
for i in range( n):
if (word[i] != word[n - 1]):
return False
n -= 1
return True
# Function to find longest
# palindrome word
def longestPalin(str):
# to check last word for palindrome
str = str + " "
# to store each word
longestword = ""
word = ""
length1 = 0
for i in range(len(str)):
ch = str[i]
# extracting each word
if (ch != ' '):
word = word + ch
else :
length = len(word)
if (checkPalin(word) and
length > length1):
length1 = length
longestword = word
word = ""
return longestword
# Driver code
if __name__ == "__main__":
s = "My name is ava and i love Geeksforgeeks"
if (longestPalin(s) == ""):
print("No Palindrome Word")
else:
print(longestPalin(s))
# This code is contributed by ita_c
Javascript
<script>
/*Javascript program to print longest palindrome
word in a sentence and its length*/
// Function to check if a
// word is palindrome
function checkPalin(word)
{
let n = word.length;
// making the check case
// case insensitive
word = word.toLowerCase();
// loop to check palindrome
for (let i = 0; i < n; i++, n--)
if (word[i] !=
word[n-1])
return false;
return true;
}
// Function to find longest
// palindrome word
function longestPalin(str)
{
// to check last word for palindrome
str = str + " ";
// to store each word
let longestword = "", word = "";
let length, length1 = 0;
for (let i = 0; i < str.length; i++)
{
let ch = str[i];
// extracting each word
if (ch != ' ')
word = word + ch;
else {
length = word.length;
if (checkPalin(word) &&
length > length1)
{
length1 = length;
longestword = word;
}
word = "";
}
}
return longestword;
}
// Driver code
let s="My name is ava "
+ "and i love Geeksforgeeks";
if (longestPalin(s) == "")
document.write("No Palindrome"
+ " Word");
else
document.write(longestPalin(s));
// This code is contributed by rag2127
</script>
C#
/* C# program to print longest palindrome
word in a sentence and its length*/
using System;
class GFG
{
// Function to check if a
// word is palindrome
static bool checkPalin(string word)
{
int n = word.Length;
// making the check case
// case insensitive
word = word.ToLower();
// loop to check palindrome
for (int i = 0; i < n; i++, n--)
if (word[i] != word[n - 1])
return false;
return true;
}
// Function to find longest
// palindrome word
static string longestPalin(string str)
{
// to check last word for palindrome
str = str + " ";
// to store each word
string longestword = "", word = "";
int length, length1 = 0;
for (int i = 0; i < str.Length; i++)
{
char ch = str[i];
// extracting each word
if (ch != ' ')
word = word + ch;
else {
length = word.Length;
if (checkPalin(word) &&
length > length1)
{
length1 = length;
longestword = word;
}
word = "";
}
}
return longestword;
}
// Driver code
public static void Main()
{
string s = "My name is ava and i"
+ " love Geeksforgeeks";
if (longestPalin(s) == "")
Console.Write("No Palindrome Word");
else
Console.Write(longestPalin(s));
}
}
// This code is contributed by Manish
// Shaw (manishshaw1)
Output:
ava
Time complexity : O(n^2)
Space complexity : O(n)
Method #2:Using sorted() method in Python:
The idea is to split the words of the string into a list .
Traverse the list and append all palindromic words to new list
Sort the newlist in increasing order of length of words using the sorted() method.
Finally, print the last string present in the list.
Below is the implementation of the above approach.:
C++
// C++ program for the above approach
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
bool isPalindrome(string s) {
return s == string(s.rbegin(), s.rend());
}
void largestPalin(vector<string> s) {
// Taking new list
vector<string> newlist;
// Traverse the list
for (string word : s) {
if (isPalindrome(word)) {
newlist.push_back(word);
}
}
// Using sorted() method
sort(newlist.begin(), newlist.end(), [](string a, string b) { return a.size() < b.size(); });
// Print last word
cout << newlist.back() << endl;
}
// Driver Code
int main() {
// Given string
string str = "My name is ava and i love Geeksforgeeks";
vector<string> words;
string word;
for (char c : str) {
if (c == ' ') {
words.push_back(word);
word.clear();
} else {
word += c;
}
}
if (!word.empty()) {
words.push_back(word);
}
largestPalin(words);
return 0;
}
// This code is contributed by Prajwal Kandekar
Java
import java.util.ArrayList;
import java.util.Collections;
public class Main {
// Function to check if a string is a palindrome
public static boolean isPalindrome(String s)
{
return s.equals(
new StringBuilder(s).reverse().toString());
}
// Function to find the largest palindrome in a list of
// words
public static void largestPalin(ArrayList<String> s)
{
// Create a new list to store all the palindromes
// found
ArrayList<String> newlist = new ArrayList<>();
// Iterate over each word in the input list
for (String word : s) {
// Check if the current word is a palindrome
if (isPalindrome(word)) {
// If it is, add it to the new list
newlist.add(word);
}
}
// Sort the new list in ascending order of length
Collections.sort(newlist,
(a, b) -> a.length() - b.length());
// Print the largest palindrome (last element in the
// sorted list)
System.out.println(newlist.get(newlist.size() - 1));
}
public static void main(String[] args)
{
// Input string to be processed
String str
= "My name is ava and i love Geeksforgeeks";
// Create a list to store all the words in the input
// string
ArrayList<String> words = new ArrayList<>();
// Create a string builder to build each word from
// the input string
StringBuilder word = new StringBuilder();
// Iterate over each character in the input string
for (char c : str.toCharArray()) {
// If the current character is a space, the
// current word is complete
if (c == ' ') {
// Add the current word to the list of words
words.add(word.toString());
// Reset the string builder to build the
// next word
word.setLength(0);
}
else {
// Otherwise, append the current character
// to the current word
word.append(c);
}
}
// If there is a word left in the string builder,
// add it to the list of words
if (word.length() > 0) {
words.add(word.toString());
}
// Find the largest palindrome in the list of words
largestPalin(words);
}
}
Python3
# Python3 program for the above approach
def ispalindrome(string):
if(string == string[::-1]):
return True
else:
return False
def largestPalin(s):
# Taking new list
newlist = []
# Traverse the list
for i in s:
if(ispalindrome(i)):
newlist.append(i)
# Using sorted() method
s = sorted(newlist, key=len)
# Print last word
print(s[len(s)-1])
# Driver Code
if __name__ == "__main__":
# Given string
s = "My name is ava and i love Geeksforgeeks"
# Convert string to list
l = list(s.split(" "))
largestPalin(l)
# This code is contributed by vikkycirus
Javascript
<script>
// JavaScript program for the above approach
function ispalindrome(string){
let temp = string
temp = temp.split('').reverse().join('')
if(string == temp)
return true
else
return false
}
function largestPalin(s){
// Taking new list
let newlist = []
// Traverse the list
for(let i of s){
if(ispalindrome(i))
newlist.push(i)
}
// Using sorted() method
newlist.sort((a,b)=>a.length - b.length)
s = newlist
// Print last word
document.write(s[s.length-1],"</br>")
}
// Driver Code
// Given string
let s = "My name is ava and i love Geeksforgeeks"
// Convert string to list
let l = s.split(" ")
largestPalin(l)
// This code is contributed by shinjanpatra
</script>
C#
// C# program for the above approach
using System;
using System.Collections.Generic;
using System.Linq;
public class Program {
// Function to check if a string is a palindrome
public static bool IsPalindrome(string s) {
return s.Equals(new string(s.Reverse().ToArray()));
}
// Function to find the largest palindrome in a list of
// words
public static void LargestPalin(List < string > s) {
// Create a new list to store all the palindromes
// found
List < string > newList = new List < string > ();
// Iterate over each word in the input list
foreach(string word in s) {
// Check if the current word is a palindrome
if (IsPalindrome(word)) {
// If it is, add it to the new list
newList.Add(word);
}
}
// Sort the new list in ascending order of length
newList.Sort((a, b) => a.Length - b.Length);
// Print the largest palindrome (last element in the
// sorted list)
Console.WriteLine(newList[newList.Count - 1]);
}
public static void Main(string[] args) {
// Input string to be processed
string str = "My name is ava and i love Geeksforgeeks";
// Create a list to store all the words in the input
// string
List < string > words = new List < string > ();
// Create a string builder to build each word from
// the input string
System.Text.StringBuilder word = new System.Text.StringBuilder();
// Iterate over each character in the input string
foreach(char c in str) {
// If the current character is a space, the
// current word is complete
if (c == ' ') {
// Add the current word to the list of words
words.Add(word.ToString());
// Reset the string builder to build the
// next word
word.Clear();
} else {
// Otherwise, append the current character
// to the current word
word.Append(c);
}
}
// If there is a word left in the string builder,
// add it to the list of words
if (word.Length > 0) {
words.Add(word.ToString());
}
// Find the largest palindrome in the list of words
LargestPalin(words);
}
}
// Contributed by adityasharmadev01
Output:
ava
Method #3:Using filter() method in Python:
First, the string is converted into a list of words using the re module.
Then the filter function is applied to the list of word to, using ispalindrome function to filter out only the palindrome words.
After max, the function is applied using the len as key to get a word with max length
C++
#include <algorithm>
#include <iostream>
#include <regex>
#include <string>
using namespace std;
bool ispalindrome(string word)
{
return word == string(word.rbegin(), word.rend());
}
void largestPalin(string s)
{
// Convert string to vector of words
regex pattern(R "(\b\w+\b)");
vector<string> words(
sregex_token_iterator(s.begin(), s.end(), pattern),
sregex_token_iterator());
// Using remove_if() and erase() functions to remove
// non-palindrome words
words.erase(remove_if(words.begin(), words.end(),
[](string word) {
return !ispalindrome(word);
}),
words.end());
// Using max_element() function to find the word with
// the maximum length
auto it = max_element(
words.begin(), words.end(), [](string a, string b) {
return a.length() < b.length();
});
// Printing the largest palindrome
cout << *it << endl;
}
int main()
{
string s = "My name is ava and i love Geeksforgeeks";
largestPalin(s);
return 0;
}
Java
// Java program for the above approach
import java.util.ArrayList;
import java.util.List;
public class Main {
public static boolean isPalindrome(String word)
{
return word.equals(
new StringBuilder(word).reverse().toString());
}
public static void largestPalin(String s)
{
// Convert string to list of words
String[] words = s.split("\\W+");
List<String> palindromeWords = new ArrayList<>();
// Using filter() function to filter palindrome
// words
for (String word : words) {
if (isPalindrome(word)) {
palindromeWords.add(word);
}
}
// Using max() function to find the word with the
// maximum length
String largestPalindrome
= palindromeWords.stream()
.max((a, b)
-> Integer.compare(a.length(),
b.length()))
.orElse(null);
System.out.println(largestPalindrome);
}
public static void main(String[] args)
{
String s
= "My name is ava and i love Geeksforgeeks";
largestPalin(s);
}
}
// Contributed by adityasha4x71
Python3
import re
def ispalindrome(word):
return word == word[::-1]
def largestPalin(s):
# Convert string to list of words
words = re.findall(r'\b\w+\b', s)
# Using filter() function to filter palindrome words
palindrome_words = filter(ispalindrome, words)
# Using max() function to find the word with the maximum length
largest_palindrome = max(palindrome_words, key=len)
print(largest_palindrome)
# Driver Code
if __name__ == "__main__":
s = "My name is ava and i love Geeksforgeeks"
largestPalin(s)
Javascript
// JavaScript program for above approach
function isPalindrome(word) {
return word === word.split('').reverse().join('');
}
function largestPalin(s) {
// Convert string to array of words
const words = s.match(/\b\w+\b/g);
// Using filter() method to filter palindrome words
const palindromeWords = words.filter(isPalindrome);
// Using reduce() method to find the word with the maximum length
const largestPalindrome = palindromeWords.reduce((a, b) => a.length >= b.length ? a : b, "");
console.log(largestPalindrome);
}
// Driver Code
const s = "My name is ava and i love Geeksforgeeks";
largestPalin(s);
// Contributed by adityasha4x71
C#
using System;
using System.Linq;
class Program {
static bool IsPalindrome(string word)
{
return word.SequenceEqual(word.Reverse());
}
static string LargestPalin(string s)
{
// Convert string to array of words
var words = s.Split(
new char[] { ' ' },
StringSplitOptions.RemoveEmptyEntries);
// Using LINQ to filter palindrome words
var palindromeWords = words.Where(IsPalindrome);
// Using LINQ to find the word with the maximum
// length
var largestPalindrome
= palindromeWords
.OrderByDescending(word = > word.Length)
.FirstOrDefault();
return largestPalindrome;
}
static void Main(string[] args)
{
string s
= "My name is ava and i love Geeksforgeeks";
string largestPalindrome = LargestPalin(s);
Console.WriteLine(largestPalindrome);
}
}
Output
ava
Time complexity:O(n)Auxiliary Space:O(n) | NLP/Natural Language Processing (NLP) Tutorial/AI ML DS - Projects/30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated]/Does Artificial Intelligence Require Coding?/Artificial Intelligence – Boon or Bane/Artificial Intelligence Examples/Agents in Artificial Intelligence/What are Diffusion Models?/ML | Common Loss Functions/Loss Functions in Deep Learning/Kaiming Initialization in Deep Learning/Swift - Initialization/Swift – If Statement/6 Best iOS Project Ideas For Beginners/Swift Programming Language/Introduction to Visual Programming Language/What is D Programming Language: Usage and Applications/Best Programming Languages for Data Science in 2024/5 Best Languages for Competitive Programming/MEX (Minimum Excluded) in Competitive Programming/Rearrange Array to maximize sum of MEX of all Subarrays starting from first index/Minimize moves to segregate even and odd by swapping adjacent elements/Minimum elements to be removed such that sum of adjacent elements is always even/Maximum sum such that exactly half of the elements are selected and no two adjacent/Maximum length subsequence such that adjacent elements in the subsequence have a common factor/Longest subsequence such that difference between adjacents is one/Longest Increasing Subsequence using Longest Common Subsequence Algorithm/Longest Common Subsequence (LCS)/Minimum insertions to form a palindrome with permutations allowed/Print longest palindrome word in a sentence | https://www.geeksforgeeks.org/print-longest-palindrome-word-sentence/?ref=lbp | NLP | Print longest palindrome word in a sentence | Artificial Intelligence – Boon or Bane, AI ML DS - Projects, Longest Common Subsequence (LCS), Rearrange Array to maximize sum of MEX of all Subarrays starting from first index, MEX (Minimum Excluded) in Competitive Programming, Swift - Initialization, Minimum insertions to form a palindrome with permutations allowed, Longest Increasing Subsequence using Longest Common Subsequence Algorithm, 6 Best iOS Project Ideas For Beginners, ML | Common Loss Functions, Artificial Intelligence Examples, Longest subsequence such that difference between adjacents is one, What is D Programming Language: Usage and Applications, 30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated], Swift – If Statement, Natural Language Processing (NLP) Tutorial, Loss Functions in Deep Learning, Minimize moves to segregate even and odd by swapping adjacent elements, Maximum length subsequence such that adjacent elements in the subsequence have a common factor, Does Artificial Intelligence Require Coding?, Print longest palindrome word in a sentence, Best Programming Languages for Data Science in 2024, NLP, 5 Best Languages for Competitive Programming, Maximum sum such that exactly half of the elements are selected and no two adjacent, Swift Programming Language, Minimum elements to be removed such that sum of adjacent elements is always even, Agents in Artificial Intelligence, What are Diffusion Models?, Kaiming Initialization in Deep Learning, Introduction to Visual Programming Language | GeeksforGeeks | [-0.00284268125, 0.013148359, -0.0124740843, 0.0430003442, -0.00546698971, 0.0289478432, -0.00709904078, 0.0170407631, -0.0253466032, -0.00225652196, 0.00207645982, 0.0380965248, 0.030817423, -0.0394450761, 0.0207952484, 0.00673125451, 0.00366445375, 0.0115546184, -0.0226495042, -0.0235689692, -0.0202129204, 0.0136387404, -0.051796563, -0.00929426495, 0.0144739216, 0.0446860306, 0.0154470224, 0.00533290068, 0.00647840183, 0.00158990931, 0.0317215659, -0.00395753328, -0.00585776241, 0.00832882617, -0.00185808679, -0.00860466622, 0.0201056488, 0.0117844846, -0.00294229016, 0.0052103051, 0.0178529583, 0.0169488173, -0.00712585868, -0.0338363349, 0.00162630482, 0.00861232821, -0.0253925771, 0.0179755539, 0.00786909368, -0.0283808392, 0.00699560111, -0.0166270044, -0.01377666, 0.0264346376, 0.00263771717, -0.00222012633, -0.0385869071, -0.0252546556, 0.0136693893, 0.0291317366, 0.0169641413, -0.0392611846, -0.0184506103, 0.00709904078, 0.0470153429, -0.00207071332, -0.0333766043, 0.00858167931, 0.0377287418, 0.00881154556, -0.0195692945, 0.044165, 0.00325069414, -0.0339895785, -0.0453603044, -0.00940153655, 0.00376980915, 0.0104206102, -0.0477509163, 0.0459119827, -0.0233544279, -0.0379432812, -0.0205960311, -0.0372077115, 0.00254002376, -0.00666612573, 0.00599185098, -0.0563632436, 0.0467088558, -0.00200558454, -0.0430616401, 0.0258523095, 0.0309859924, -0.00578880263, -0.0348171, 0.011363063, -0.00186479127, 0.0335298479, -0.0474444255, 0.046402365, -0.0187877472, -0.00413376419, -0.000476493908, -0.0163664892, 0.005237123, 0.00103631441, -0.0122978529, 0.0161059741, 0.0225882065, 0.0398435108, 0.0335911438, -0.0353074819, -0.00339052966, -0.0299592558, -0.0326716788, -0.031108588, -0.00437895535, -0.0341734737, 0.0138609447, 0.0419276319, 0.00635580625, 0.00476589706, 0.000887859031, 0.0452990085, -0.0398741588, 0.0627688542, -0.0244731102, 0.0323651917, -0.0011866854, -0.00287524564, -0.00564322062, 0.0155926049, -0.0265419073, 0.00963906478, 0.00772734266, 0.0338363349, -0.00656268606, 0.0616961457, -0.00658950396, 0.0466782041, 0.0231705345, -0.0210864116, 0.00992256682, 0.0117231868, -0.00679638376, 0.00578114, 0.000405618426, 0.0492220595, -0.0108956676, -0.0103746373, 0.00673891697, -0.00924063, -0.0059228912, 0.0272928048, 0.000463085045, -0.0460958779, 0.0222970415, -0.0245650578, -0.0142900283, -0.0165350568, -0.0016004449, -0.0146195041, 0.0242738929, -0.0296221189, -0.0270016417, 0.0103363264, -0.00108994986, -0.00809896, -0.0386482067, 0.0315683186, -0.0178836063, 0.0534822531, 0.0442875959, -0.0114320228, -0.0169028435, -0.0425406098, 0.0317215659, -0.0269863158, -0.0230632629, 0.0174698476, 0.0163664892, -0.0155313071, 0.0415904969, 0.0139452294, 0.0187264495, 0.0180062018, 0.0211783592, 0.0288252477, 0.000860083499, -0.032028053, -0.0271395613, -0.0124281105, 0.0205040835, -0.00241359742, 0.0285953823, 0.00685768109, -0.0539113358, 0.0456974432, 0.0048157014, 0.0214082245, 0.010481908, -0.0487623289, -0.0153933875, 0.034663856, 0.00953179412, -0.0160293505, -0.0417130925, 0.0109799523, 0.0345719084, -0.00875024777, -0.0441037, 0.00978464726, -0.0292390082, -0.011983702, 0.0338669829, 0.023614943, -0.0502641201, 0.0198604576, -0.000453746732, -0.00573133584, -0.0223583393, 0.0091486834, 0.0567310303, -0.0364414901, -0.0439504571, -0.0409162194, -0.0230019651, 0.0461571738, 0.0331927091, 0.0106198285, 0.000697261421, -0.0212243311, 0.0280896761, 0.010458922, 0.0292849801, -0.0123668127, -0.00327176531, 0.00257258816, 0.00443259068, 0.0367786251, 0.0108037209, 0.00156883826, 0.00044512673, -0.0132709537, 0.0458506867, -0.0243351907, -0.0284421369, -0.035583321, -0.00781545788, 0.0268943701, 0.00051863608, 0.0147037879, -0.0138226338, 0.00924063, -0.0394757241, -0.0108803436, 0.00854336843, -0.0145505434, 0.0152094942, 0.00382536021, -0.00817558169, -0.00517965667, 0.00932491384, 0.056271296, 0.0210710876, -0.0209791418, 0.0158607829, -0.00706839235, 0.0324264877, -0.028135648, 0.0583554208, -0.0501108766, 0.0178989321, 0.00882687047, 0.0351542346, -0.0167496, -0.0537580922, -0.0104895709, 0.072944276, -0.00730975205, 0.00556276692, 0.0140141891, 0.017347252, 0.00989958, 0.00918699428, -0.0132862786, -0.0106198285, 0.034725152, -0.0104129482, -0.013454847, 0.0146041792, 0.00284459675, -0.0090720607, 0.0123898, -0.0119224042, -0.00231207302, -0.00965439, -0.0115546184, -0.0541871749, 0.00314150751, -0.0232931301, -0.0624010675, -0.0232011825, 0.0043636309, -0.0365947336, 0.0150639117, -0.0141137978, -0.0192934535, -0.0134395231, 0.0020343177, -0.00265495712, -0.0358591601, 0.0109109925, 0.0192474816, -0.0285800565, -0.0216227677, 0.0467701517, 0.0100451624, -0.0449618697, -0.00748598296, 0.00431765756, -0.013470172, 0.00767753832, 0.0155772809, 0.0260821749, -0.0318135098, -0.0231092367, -0.0201975945, 0.0123514887, -0.0332540087, -0.0233237781, -0.00308404095, -0.023645591, -0.00227759313, 0.0522869453, -0.0153397517, -0.00710670324, -0.00030792522, 0.0108420327, 0.0197225381, -0.0101984069, -0.00373149803, 0.0391079374, -0.0065550236, -0.00382536021, -0.00976932235, 0.00117614982, 0.00676190341, 0.0279211067, -0.014948979, 0.0015860782, 0.0123668127, 0.0238601342, -0.0040686354, -0.013768998, -0.0331314132, -0.0045436928, -0.0134088742, -0.00557042938, 0.0164890848, 0.00630983291, 0.0171786826, -0.020013703, -0.0120756486, 0.0199370794, -0.0736185461, 0.0252546556, 0.029330954, 0.006137433, 0.00733656948, -0.00155255606, 0.0105048949, -0.0075128004, -0.0245803818, -0.0357365645, -0.0169028435, 0.0640561059, 0.0108573567, 0.0247489493, -0.0217147134, -0.0340202302, 0.0539419837, 0.03212, 0.0305415839, 0.00238677952, -0.0077235112, -0.0436133221, -0.0103746373, 0.0198911075, 0.0260668509, -0.0221131481, 0.0175311454, -0.00243083737, -0.0112557923, -0.00665463274, -0.00907972362, -0.0196152665, -0.0266032051, 0.00376789365, -0.0402112976, -0.0104359351, 0.0135161448, 0.0352155343, -0.0156232538, -0.0165810306, -0.00573133584, -0.0145811923, -0.00519881211, 0.040088702, 0.0342347696, -0.00404948, 0.0440424047, -0.0587845035, 0.0102213928, 0.0216993894, -0.0288252477, -0.0237068888, 0.0207033, -0.00244041509, -0.0438891612, -0.00766604487, -0.00786909368, 0.00704923645, 0.069756791, -0.0380965248, 0.00983828213, 0.0426632054, 0.0565777868, -0.0157841593, -0.00245957053, -0.0128342081, 0.0305569079, 0.0265265834, 0.0203968138, -0.0471072905, -0.0525627844, -0.000215260312, -0.0134931579, -0.000533960527, -0.00542867836, -0.0208718702, 0.0318748094, 0.0242585689, 0.00861999, -0.0136157535, 0.00923296716, 0.000447281724, 0.0310013164, 0.0341734737, 0.00549763814, -0.00691897888, 0.0122365551, -0.0407323278, -0.0159527287, 0.0377593897, -0.0393531285, 0.0153167648, -0.0278598089, 0.0119913649, 0.0167496, 0.0202895422, 0.0167496, 0.00807597302, -0.0398435108, 0.0237681866, 0.0292083584, -0.0123055149, -0.0252546556, -0.0108037209, 0.00766604487, -0.0205500573, -0.0231245607, 0.0163818132, 0.00494595896, 0.0142287305, 0.00126426527, 0.0359511077, 0.00210327771, -0.00495745242, -0.00968503766, 0.0369318686, -0.00338286743, 0.00104493438, 0.00414142665, -0.027216183, -0.0380352288, -0.0262047704, 0.00983062, 0.00171346252, -0.0269096941, -0.00819090661, 0.0459426343, -0.019170858, -0.00224694423, -0.00848973263, 0.0226648282, -0.0414679, -0.00545932725, 0.010167758, 0.0431229398, 0.0340202302, -0.0219905525, -0.00871193688, 0.0457587391, 0.00941686053, -0.0434294268, -0.00249596615, 0.0189869665, -0.0081142839, -0.0349703431, 0.00690365443, 0.0104435971, -0.0234310497, 0.0102597037, 0.0177763365, 0.0040992843, -0.0407323278, 0.0372077115, -0.0410388149, -0.0202588923, -0.0188796949, 0.0415598489, -0.00141750951, 0.00200366881, -0.0174545236, 0.0320587, 0.0193547513, -0.00955478, -0.0197838359, -0.0353687778, -0.00741702272, 0.0163971372, 0.00848973263, -0.0128418701, -0.0101141222, -0.0292543322, -0.0210864116, 0.0144202858, -0.0177150387, 0.00786143169, -0.0162898656, 0.00686534354, -0.0495898463, 0.00196152669, -0.0151711833, -0.020963816, 0.0118994182, -0.0117691606, -0.0210557636, 0.0119147422, 0.0218832828, 0.0196152665, 0.00770435575, 0.00753195584, -0.00761624053, 0.0163818132, -0.00422571087, -0.00279670791, -0.0267717745, -0.000229746685, 0.014060162, 0.0427858, 0.00784610678, 0.00466628792, 0.00790740456, 0.025438549, 0.0246110298, -0.0116925379, -0.0381884724, -0.0224962588, 0.00486167474, -0.00897245202, 0.0191861838, -0.0255917944, 0.00582328252, 0.0461878255, 0.0252393316, -0.0359511077, 0.00475440361, 0.00694962777, 0.00953945611, -0.00397668872, -0.0235689692, -0.00508387899, -0.0231552105, 0.0131866699, -0.0414066, 0.0174851716, -0.00482336339, -7.6682e-05, 0.0168875195, 0.0316602662, 0.00526011, -0.00700709457, -0.0243658405, 0.0300358776, -0.00733273849, 0.00111197878, -0.00421804842, 0.00355526712, -0.0162132438, 0.0193700753, 0.00293654343, -0.0216687396, -0.0154393604, -0.0119300671, 0.0256224424, 0.0166729763, 0.000868703471, 0.00922530517, -0.0748445, 0.00858167931, 0.00793805346, 0.010466584, 0.0102443798, -0.00228333962, 0.0248715449, -0.0233544279, -0.0104435971, 0.00199792231, -0.0233850759, -0.035613969, 0.0102903526, -6.6924651e-05, -0.0162898656, -0.00994555373, -0.0278904587, -0.029300306, -0.020044351, -0.0153704006, 0.0417437404, -0.0280590262, -0.00989958, -0.00657034805, -0.0105661927, -0.00328517403, -0.0364414901, -0.0224962588, -0.0358898081, 0.0491607636, -0.00361273368, 0.010750086, -0.0123131778, 0.0539419837, -0.00937855, -0.0278138351, -0.034663856, 2.68252302e-06, 0.0380965248, -0.00603016233, 0.0128955059, 0.00324111641, -0.000206760044, 0.0118534444, 0.0225882065, -0.0041261022, 0.0184506103, -0.0238907821, 0.0144432727, 0.0441343524, 0.00124894083, 0.00737871183, 0.00763156498, -0.00823687948, -0.00367020047, -0.0209944658, -0.0213162787, 0.0328249224, 0.0377287418, -0.00426402176, -0.0188950188, -0.00933257584, -0.0470153429, 0.000657513738, -0.0226954762, -0.00831350219, -0.014351326, 0.04364397, 0.00220863312, 0.0142440554, 0.0264959354, -0.0155772809, 0.00493063452, -0.0101524331, 0.00821389351, -0.000422858429, -0.0195386447, -0.0150179388, -0.0456361435, -0.0139988642, -0.0371464118, -0.0066086594, -0.0043099951, 0.03291687, 0.0369012207, -0.0333459526, 0.010750086, 0.0188337211, -0.0103210015, 0.0237375386, 0.0246876534, -0.0108267078, -0.0295914691, 0.00187341124, 0.00156788051, 0.0225728825, -0.00334647181, 0.0246570036, 0.0194926709, 0.0175924432, 0.0316296183, 0.031997405, -0.00757026719, 0.0179295801, 0.00895712804, -0.00191651122, 0.00799168926, -0.0153550766, 0.00393454684, 0.00746682705, 0.015247805, -0.00191076449, 0.0147191128, -0.0285340846, -0.000830871286, -0.0111102099, -0.00484251883, -0.0255917944, -0.0154929962, -0.0253619272, -0.000214781423, 0.0285187587, 0.0106964502, -0.00115124765, -0.0434600748, -0.0104206102, 0.00490381662, -0.0194773469, -0.0261281487, 0.00267985929, 0.00546315825, 0.00465862593, 0.0282735694, 0.0139528913, 0.0309859924, -0.00885751937, 0.0180981494, 0.023599619, -0.0163205154, -0.00790740456, -0.0515820235, 0.0363801904, 0.00168760261, 0.0121599333, 0.00758176064, 0.00467395037, 0.0312465075, 0.00525244744, 0.020917844, 0.00532140722, -0.00569685595, 0.0005952582, 0.00762773352, 0.000364434032, -0.00949348323, -0.0283195414, -0.0259749051, 0.0082522044, -0.0037832181, -0.0372077115, 0.0059497091, 0.0160906482, 2.59647277e-05, -0.00985360704, -0.0114933206, -0.0249788165, 0.0206266791, 0.00595354, 0.0065818415, -0.00266261934, -0.0235842932, 0.0473218337, 0.0029576146, 0.0102290548, 0.0177150387, 0.0100375, -0.0165350568, 0.00782695133, 0.0185578819, 0.00479654595, -0.00745150261, 0.020029027, 0.0258063357, 0.0166576523, -0.0257450379, -0.0385869071, -0.00386367133, -0.00027129025, -0.0327329785, -0.0148953432, -0.0163051914, 0.00231781974, -0.01606, -0.00838246197, 0.00668911263, -0.0412227102, -0.0142363934, 0.014941317, -0.0224196371, 0.0154623473, -3.9149123e-05, 0.00415675109, -0.00714884559, 0.0292849801, 0.0240287017, 0.0189716406, -0.00145294727, -0.0145658683, -0.0336217955, 0.0025112906, -0.0105661927, 0.0183893126, 0.0208871942, 0.012267204, 0.00590373576, 0.0253159534, 0.000892169, -0.00746299606, -0.00293654343, 0.0109799523, 0.00810662191, -0.00556659838, -0.0454829, 0.0193087794, 0.00188682007, 0.0211477093, 0.00745916506, 0.0170101151, 0.0494059548, 0.0184199624, 0.00166653143, 0.0275992937, -0.00074993918, -0.0116159162, 0.0230632629, 0.0217147134, -0.0255611446, 0.0242432449, -0.00307829445, -0.0246110298, 0.00388091127, -0.0340508781, 0.0261434726, 0.016427787, 0.00903375, 0.0172399804, -0.0161212981, -0.00921764318, 0.01616727, -0.00263580144, 0.0333766043, -0.0139069175, -0.0214388743, -0.010750086, 0.00662015285, 0.0294841975, -0.0109569654, -0.00396519573, 0.0118764313, -0.0398128629, 0.0249328427, -0.00303615211, 0.00680404576, -0.00379279582, 0.0158761069, -0.00831350219, -0.00529075833, 0.0175771173, 0.00437512388, -0.00420655543, 0.000150849839, 0.0237068888, -0.0332540087, -0.0199370794, -0.0159680527, -0.0251780339, 1.49652607e-07, -0.0327329785, 0.0213469267, -0.0162898656, -0.0120833106, 0.00825986639, 0.00350354728, -0.0143360021, 0.0224962588, 0.00524478545, -0.00911037251, 0.000279431348, 0.00292505, 0.0132939406, 0.0155772809, 0.00390581344, -0.00917933229, -0.00355526712, -0.01616727, -0.0260975, 0.0061949, -0.0201056488, -0.000984594459, 0.0165810306, 0.00241742842, 0.0305569079, 0.00922530517, -0.0471685864, 0.0163511634, 0.000756643596, -0.00852804352, 0.00365870702, 0.0241206493, 0.00388474227, 0.0162592176, 0.0244118124, -0.000633569318, 0.0232318323, -0.0225575566, 0.0238141604, -0.0384643115, 0.0208871942, -0.0103363264, -0.0471992381, -0.0125277191, 0.0329475179, 0.00297868554, -0.0138762686, 0.0156768896, -0.01914021, -0.0228946954, -0.0268024243, -0.0150945606, -0.0134012122, -0.0141367847, 0.00721397437, 0.0211936831, -0.0242892168, 0.00799168926, -0.0361963, -0.00151137169, 0.00181498693, 0.030802099, 0.0034096851, 0.0261741225, -0.00827519, 0.0165657066, -0.0160906482, 0.00488083, -0.0243658405, -0.0232931301, -0.0153014408, -0.0141367847, 0.022128474, -0.00894946605, -0.0230019651, -0.0186958015, -0.00968503766, -0.00164162926, -0.014657815, 0.00626385957, -0.0233084541, 0.0264346376, -0.00239061075, 0.0361043513, 0.0167649239, 0.0341734737, -0.0138762686, -0.00210710871, 0.0207033, -0.0433374792, -0.0401806496, -0.00749747595, 0.0128955059, -0.0145811923, -0.00524095399, 0.0129644657, -0.0189563166, 0.0070032631, -0.0214388743, 0.0268943701, -0.00226226868, -0.0142363934, -0.00205347338, 0.0305262599, 0.0174851716, -0.00660099695, -0.00798402634, -0.0212549809, 0.00888816826, 0.0204887595, 0.000581849366, -0.0181747712, 0.00364338257, 0.00735572493, -0.0319361053, 0.0147880726, -0.0156768896, 0.00599568244, 0.0162285678, 0.00726377871, 0.00721780537, -0.00501875, -0.00350546278, -0.00278904568, -0.0412840061, 0.00548997615, 0.0156462397, 0.00027847357, -0.00513368333, -0.0260975, -0.00894946605, -0.00696112122, 0.0146118412, -0.00671976153, -0.0430003442, -0.00652054371, 0.0154776713, 0.00449388847, 0.00385026238, -0.0152401431, 0.0194620229, -0.00238294853, 0.0241666213, 0.0207186267, -0.000870619, -0.00300358771, 0.0234157257, 0.00689599244, -0.0123285018, 0.01377666, -0.018251393, -0.0111944946, -0.00991490483, 0.0213009547, -0.00937855, -0.00401116908, -0.00511452742, -0.00249213492, -0.0155006582, 0.01197604, 0.00722163636, 0.0132786166, 0.00421038643, 0.00531757623, 0.0157075375, -0.00713735214, 0.0150485877, -0.00868895, -0.020044351, -0.00439427933, 0.00932491384, 0.00527926534, -0.00266453484, -0.0115622804, -0.0330394655, -0.0336217955, -0.0180215258, -0.0118457824, 0.0213009547, 0.0127805723, -0.0082215555, 0.0371157639, 0.0235229954, 0.0199370794, 0.0087272618, 0.00806831103, 0.00283501903, 0.0258829575, -0.0234463736, 0.0151788453, -0.0262507442, 0.00681937, -0.0251473859, -0.00976932235, -0.0249941405, 0.00876557268, -0.0141521087, -0.0199370794, 0.000807884673, 0.0109569654, 0.00217798422, -0.0138073089, -0.0180828236, -0.00432148855, 0.0240593515, -0.0144892465, 0.0100528244, -0.00940153655, -0.0247489493, 0.0146195041, 0.0651594624, -0.0228180718, -0.00639411714, 0.000173357592, 0.0318135098, -0.00968503766, -0.0196612403, -0.00522179855, 0.00496511441, -0.012864857, 0.0331007615, -0.00924829207, 0.00588458031, 0.00271625468, -0.0178529583, 0.0156845506, 0.0012412786, 0.0154470224, -0.00618723733, 0.00250745937, -0.0194313731, 3.31330884e-05, 0.0131023852, 0.0138686066, -0.00122499641, -0.00308404095, -0.00973867346, 0.01914021, -0.0279824045, 0.00312809879, 0.00890349224, -0.00973101147, -0.00324303191, 0.0142670423, -0.00848207064, -0.000362757943, 0.00697644567, -0.00136387406, -0.0335298479, 0.0284421369, -0.0130793992, 0.00771968, -0.0156462397, 0.024825573, 0.0260975, -0.0121675953, -9.67953092e-05, -0.0336217955, -0.00413759518, 0.0036184804, -0.0205807053, -0.00801467523, -0.0202129204, -0.0177303627, 0.0157994851, 0.000856731262, -0.00233889068, -0.00899543893, 0.0176690649, -0.00691131689, -0.00115603651, -0.0173932258, 0.000559341628, 0.00367020047, 0.0140218511, -0.0115929293, -0.0173166022, 0.000487029465, 0.0116312401, -0.0186038557, -0.0018236069, -0.0101217842, 0.0216534156, -0.00340585411, -0.00917933229, 0.000612498203, -0.0234463736, -0.0106658014, -0.0414985493, -0.022128474, -0.0243198667, 0.0279364306, -0.0225269087, 0.00335030304, 0.0135314697, -0.000614892633, -0.00141750951, -0.0229559913, -0.0176384151, -0.0260668509, 0.0144202858, -0.0176384151, 0.00166270032, -0.00117902318, 0.00515283877, -0.0238754582, 0.00816025771, 0.0209791418, 0.0163358394, 0.0259749051, -0.0129797896, 0.00469693681, -0.00715267658, -0.00106217433, 0.00195290672, -0.00942452252, 0.0185732059, -0.000495170534, -0.00662015285, 0.0199830532, 0.0340202302, 0.0280130524, -0.0133245895, 0.0129644657, 0.0117921466, -0.0135697806, -0.00121446082, -0.00473141717, 0.00986893103, 0.0300512016, -0.030817423, -0.0220978241, 0.0218679588, -0.0368092731, -0.0194160491, -0.0241666213, 0.0103899622, 0.00732890749, -0.00512219, 0.0304036643, -0.00763156498, 0.00264154817, 0.000231662241, -0.00888050534, 0.00390581344, 0.0163971372, -0.0138762686, -0.0124204485, 0.0338363349, -4.91459177e-05, -0.0237835106, 0.00778480899, -0.0166116785, 0.00522946101, -0.00579646463, 0.0135697806, 0.0151635213, 0.0136540644, -0.0066393083, 0.0171173848, -0.0183280148, -0.0301584732, -0.00292121898, -0.0163358394, 0.0153627386, 0.00712585868, -0.00800701324, -0.00105163886, -0.0259442553, 0.00604548678, 0.0106121656, 0.00560107827, -0.0180981494, 0.0118994182, -0.0302657448, -0.00508387899, 0.0120526617, -0.0207339507, -0.0265878811, 0.0257910118, -0.00201324676, -0.0234004, 0.00537887402, -0.0365640856, 0.0139299044, -0.0122135682, 0.00490381662, 0.0210404396, 0.0117998095, 0.0169181675, -0.0141750956, 0.00645924592, -0.0350622907, 0.00621405523, -0.00884985644, -0.00161098049, -0.0215308201, -0.00671976153, 0.0167649239, 0.00920231827, -0.00229291734, 0.00417207554, 0.00903375, 0.0215001721, 0.00216265977, 0.0168568697, -0.00195482234, -0.0231552105, -0.00979230925, -0.0253619272, 0.0158607829, -0.0295914691, -0.0195233207, 0.0151558584, -0.00332731637, 0.014665477, -0.0332540087, 0.00253236154, -0.0277831871, -0.012045, -0.0061642509, 0.0020937, -0.0090950476, 0.00576581573, -0.0291930344, 0.00435979944, 0.0192015078, -0.000479606679, 0.00493446551, -0.00855103, 0.00917166937, 0.0246110298, 0.00895712804, -0.0162438937, -0.0226188544, -0.0259289313, 0.0255304966, 0.0105891796, -0.00530991424, 0.00718332548, -0.0144892465, 0.00915634539, 0.0334379, 0.000804532436, -0.00531374523, -0.0158148091, 0.0157535113, -0.0108343698, -0.0112941032, 0.0247642752, 0.0225728825, 0.0161059741, -0.0182054192, 0.00188394682, 0.00881154556, 0.000262909714, 0.0160906482, 0.0167036261, -0.0205807053, 0.0188337211, -0.0272774808, -0.0149796279, 0.0225422326, -0.00556276692, 0.0140908109, 0.0219292548, -0.0133092655, -0.020933168, 0.0232318323, 0.00564705161, 0.0301125, 0.000903662352, 0.0111868316, 0.00150083611, 0.0107807349, 0.00970036257, -0.024549732, -0.023921432, 0.00557042938, -0.0274920221, -0.00805298705, 0.0296680909, -0.0187417753, 0.0161825959, 0.012550706, -0.0283042174, -0.0268790461, 0.00715267658, -0.0266491789, -0.00780396443, -0.0438891612, 0.00619873079, 0.0129568037, -0.00791506656, 0.00645924592, -0.0125736929, -0.00281777908, 0.0129261548, 0.000885464542, -0.0327329785, 0.00462414604, -0.00963906478, -0.0314763747, 0.0285340846, 0.0228793696, 0.0462797694, -0.0157994851, -0.00655885506, -0.00930192787, 0.0219292548, -0.0141367847, 0.0142210685, -0.0177610107, 0.000581849366, -0.0050225812, -0.0215308201, 0.0110489121, -0.0120373378, 0.0283501912, -0.00377364014, -0.00103918777, -0.0331314132, -0.0126886256, 0.00922530517, -0.00133035181, 0.00122308091, 0.00260323705, -0.016427787, -0.00769669376, -0.000673317, 0.0047850525, -0.00897245202, -0.0121675953, 0.00398818217, -0.0127422614, -0.00749364495, -0.032028053, -0.0103669753, -0.00626769103, -0.0141597707, -0.00517582521, 0.00274881907, -0.0286260303, 0.0103133395, 0.00041328065, 0.00110910542, 0.000254768616, 0.0109569654, 0.0295761451, 0.00429083966, -0.0249175187, 0.0215767939, -0.013156021, 0.000947241148, -0.0101447711, -0.0213775765, -0.00145965174, 0.0124740843, 0.0072982586, -0.0109109925, -0.0153244277, -0.0414679, -0.0011905164, -0.0054478338, 0.0309093706, 0.0174698476, 0.013447185, 0.00264537917, 0.010190744, 0.00813727081, -0.0176230911, -0.0144126238, 0.00606847322, 0.0183586646, 0.0118534444, -0.00501875, 0.000638837053, 0.0244118124, 0.00462414604, 0.0376674421, -0.00424486632, -0.02571439, 0.0300358776, -0.00861999, -0.0169641413, -0.0155159831, -0.0491607636, 0.00657417951, 0.00443259068, -0.0193547513, -0.0275839698, -0.0188183971, -0.00800701324, 0.0304496381, 0.00174602692, 0.0175004955, -0.0156768896, 0.0111025479, 0.013156021, 0.0123285018, -0.014948979, 0.0171020608, 0.0375754945, 0.00136387406, 0.00222395756, 0.0197991598, -0.00192992, 0.0242432449, 0.000206879777, -0.0194620229, 0.0348477475, 0.0196305923, 0.00749747595, 0.0126656396, -0.00280820136, 0.00740169827, 0.00381578249, -0.00559724728, 0.0282582436, -0.0274920221, -0.00776565354, 0.0104972329, -0.0154929962, -0.0333459526, 0.0156155918, 0.0144509347, 0.0164890848, 0.00167132041, -0.00984594505, -0.000128461805, 0.0164890848, 0.000400590099, -0.000399392884, 0.0229100194, 0.0239520799, -0.00255917944, 0.00386558683, -0.0133092655, -0.00816025771, -0.0175617933, -0.0161212981, 0.0155389691, -0.0509996936, 0.0259902291, 0.019124886, -0.0159527287, 0.0307714511, -0.00403415551, -0.0154163744, -0.00302848988, 0.0121752573, 0.0106887883, -0.0117614977, -0.00544017181, -0.00106983655, -0.0294382256, 0.0165810306, -0.0117461737, 0.000432196743, -0.019170858, 0.0117768226, -0.000544017181, 0.00176901359, -0.03233454, -0.00477355905, 0.0276759155, 0.012274866, 0.00441726623, 0.00845142175, -0.0156539027, -0.00395370228, 0.00894180313, -0.00877323467, -0.0192168318, 0.00720248092, -0.0023772018, -0.0100298375, -0.00710287225, 0.00636346871, -0.00320663652, -0.00171154703, -0.014657815, -0.000493255, -0.00404948, 0.00328900525, -0.0222204197, 0.00191076449, 0.00445940858, 0.00716033857, 0.0162132438, -0.00782695133, 0.0110489121, -0.0013590852, -0.00711436523, -0.0026147305, 0.0202895422, -0.00230632629, 0.0141214598, 0.0174851716, 0.0072676097, -0.000488945, 0.00986893103, -0.0115086446, 0.0102137309, -0.00122882752, -0.00453986181, -0.01616727, 0.0171173848, 0.00932491384, 0.0126733016, 0.0241666213, -0.0127422614, 0.0050264122, -0.00687300554, -0.00498810131, -0.00134088739, 0.0237222128, 0.0302350949, 0.0195999425, -0.00423337286, 0.0138073089, -0.00894180313, -0.0120526617, 0.0260208771, 0.0001571951, 0.00244616182, -0.00989958, 0.0231858585, 0.0152171561, -0.00320663652, 0.0133858873, -0.00970802456, 0.00970802456, -0.00253044604, 0.00832882617, 0.00743617862, 0.00365870702, 0.0135391317, 0.00253810827, -0.0244731102, -0.00709137879, 0.0312924795, -0.0118151335, -0.017347252, 0.00585776241, -0.00147497619, 0.0151022235, -0.00242509064, 0.0135314697, -0.0289784931, 0.00821389351, 0.00742085418, -0.0260515269, 0.0145352194, -0.00991490483, 0.00891115423, 0.00603399333, 0.00197876664, 0.01616727, -0.000474338915, 0.0171786826, 0.00259749056, -0.0027220014, -0.000537312764, -0.00116848759, 0.0100681484, -0.00745533407, 0.00542867836, 0.000731262495, 0.00332540064, -0.00166078482, -0.00678872131, 0.000446563383, 0.0020611356, -0.0105508687, -0.00524478545, 0.0117691606, -0.000555031584, -0.00786143169, -0.0184199624, 0.00398052, -0.0155313071, 0.0274307244, 0.0229406673, -0.00262622372, 0.00609146, 0.00601483788, -0.000552158279, -0.0121292844, -0.0120756486, -0.0183280148, 0.00530608278, 0.0105661927, -0.00279479241, 0.0124817463, -0.000657992612, 0.0237222128, 0.0282429196, -0.0166576523, -0.00464713247, -0.00384643138, 0.0149259921, -0.0101064602, -0.0143130152, -0.0136617273, -0.000349588488, -0.0108420327, -0.0128495321, -0.0335298479, -0.00468161236, -0.00753961829, -0.00130353414, 0.0138839316, -0.0140295131, 0.0133552384, -0.0115239695, 0.00771968, 0.00470843026, -0.0185272321, -0.00809129793, -0.0342041217, -0.00535588758, 0.00797636434, 0.0168875195, -0.0184812602, 0.00803766213, -0.0120143509, -0.00261281477, -0.0153244277, -0.0146808019, 0.0116772139, 0.0132249808, -0.0214082245, -0.0242738929, 0.0232011825, -0.00813727081, -0.0147804106, -0.0153627386, -0.00929426495, 0.00584626896, -0.0165963545, 0.0176690649, -0.0126043418, 0.0103746373, -0.0166576523, 0.0128342081, -0.0159680527, -0.0121062975, 0.0130870612, 0.0135851046, 0.00735189393, -0.000153364, 0.0256224424, 0.00533673167, -0.00879622158, -0.00303998333, -0.00044512673, -0.0354607254, -0.0168108977, 0.0243351907, 0.0223889891, 0.0110029392, 0.0221897718, -0.0122135682, 0.00233505969, -0.00807597302, 0.00476972805, -0.0111791696, 0.00743617862, 0.00511069642, 0.0299439318, 0.0134012122, 0.0135774426, 0.0152324811, 0.00709137879, 0.0174851716, 0.0110259252, 0.0120986355, 0.00383110694, -0.0272468328, 0.0114703337, -0.0166729763, 0.00701475656, 0.00625236658, 0.024534408, 0.0157535113, 0.01377666, -0.0155772809, 0.00920231827, 0.0277218893, -0.0186651517, -0.00162726268, 0.014044838, -0.00618340634, 0.00254577049, -0.0466169082, -0.00421038643, 0.00150658272, 0.0226341784, -0.0306335296, 0.0212856289, -0.0102060689, 0.0150179388, 0.000878760125, 0.00207645982, 0.0257603619, -0.0106121656, -0.00861999, -0.0127345994, 0.00845142175, 0.0522869453, 0.00806831103, -0.00830583926, -0.0121062975, -0.0384336635, 0.00148934277, 0.00290589454, 0.00618340634, -0.00177954917, -0.00137057842, 0.0064017796, 0.00446707057, 0.00653203717, -0.00599185098, 9.67953092e-05, -0.0148340454, -0.0115776053, 0.00200175331, -0.00875791069, 0.00488083, 0.0181900952, 0.00449005701, 0.0102367178, 0.00114358542, 0.00779630244, 0.00303040561, -0.00647457037, -0.0273694266, -0.00940919854, -0.00234463741, -0.00511452742, 0.00801467523, 0.00876557268, -0.0103439884, -2.22084473e-05, 0.000821293506, -0.00633665081, 0.00214925106, 0.00666229473, -0.0216687396, 0.00673125451, 0.00519114966, 0.00437895535, 0.00506089209, -0.0134778339, -0.00657034805, 0.02409, -0.00554744294, 0.00176326698, 0.00812960882, -0.0109033305, -0.0196918901, 0.00489615463, -0.00614892645, 0.0311852098, 0.0136540644, 0.00512985187, 0.0139069175, 0.000479606679, -0.011071899, 0.00178050692, -0.00198834436, -0.00485401228, 0.0169181675, 0.0164890848, -0.0313537791, -0.00805298705, -0.00611061556, 0.00612594, 0.0095471181, 0.00842077285, -0.031997405, 0.0212243311, 0.0159067549, -0.0133475764, 0.0249634925, -0.0048157014, -0.00311852107, 0.00517582521, 0.00455901725, 0.0133092655, -0.00532140722, -0.00255726371, 0.0103363264, -0.00543634081, -0.00196535792, 0.00935556274, 0.0153704006, -0.00519498112, -0.00770052476, -0.0127499234, 0.0205347333, 0.00920231827, -0.00943218544, 0.0213009547, 0.00797636434, -0.00127575861, 0.0111791696, 0.0147880726, 0.00189735566, -0.017960228, -0.0254845228, 0.00979230925, -0.0323958397, 0.0207952484, 0.0147344368, 0.00256109494, 0.00204198, -0.00719098747, -0.00326410308, 0.000438901188, -0.0031721564, 0.00526011, -0.00137919851, -0.00527543435, -0.00931725185, 0.00804532412, 0.00516433222, 0.023921432, -0.0225269087, 0.0059228912, -0.000786334684, -0.000825124618, 0.00225652196, 0.00395753328, -0.00393837783, 0.000748023624, 0.00313959201, -0.00910271, -0.0103210015, 0.00304573, -0.00728293415, -0.0215154961, -0.00985360704, 0.00171250477, 0.0107883969, -0.00267219706, 0.00200366881, 0.00265687262, 0.0252853055, 0.01914021, 0.0116235781, 0.00796104, -0.00796104, 0.0242585689, -0.000280868029, 0.0261281487, 0.0101141222, -0.0175924432, 0.0111255338, 0.0282275956, 0.00820623059, -0.0294995233, -0.0114779957, 0.0184046365, -0.00321238302, -0.020044351, -0.00387708, -0.0158148091, 0.0028273568, -0.0173012782, -0.0257450379, -0.00507238554, 0.00616808189, -0.00266645034, 0.0082215555, -0.0202588923, -0.0149106681, -0.0320587, 0.000170484258, -0.0194926709, 0.00829051528, -0.0181134734, -0.00636346871, 0.00359549373, 0.0228793696, -0.0306795035, -0.0251320601, 0.00665463274, -0.00511452742, 0.0255611446, 0.0302963927, 0.00232356624, -0.00776565354, -0.0154010495, -0.00117902318, -0.00629833946, 0.00533290068, 0.0022718464, -0.0145045705, 0.00634048181, -0.00335604954, 0.00819090661, -0.00115028978, 0.0145122325, 0.00937088765, 0.00574282929, 0.014044838, 0.00661632139, -0.0147267748, -0.0174085498, 0.0075128004, 0.00291738776, -0.0217453633, 0.00842843484, -0.00381578249, 0.0138226338, -0.0144815836, 0.0201516226, 0.0183586646, 0.00562406471, 0.0144356107, 0.0196152665, 0.00148838502, -0.00517965667, 0.0105278818, 0.00462797703, -0.00686917454, -0.00375831593, -0.0171786826, -0.000588074909, 0.00977698434, -0.00683852565, -0.0117921466, 0.0212703049, -0.00452836836, 0.0281969458, -0.00227759313, 0.0141291218, 0.00719098747, -0.00169622258, 0.00367977819, 0.00288865459, 0.00920231827, 0.000664697, 0.0192321558, 0.00145007391, -0.00307829445, 0.0157535113, -0.0175004955, -0.0167496, -0.00176326698, 0.00229674857, 0.00789974257, -0.00436746189, -0.0234923474, 0.00106217433, -0.00506472308, -0.0219292548, 0.0122978529, 0.00559724728, -0.00581945153, 0.0179295801, 0.000195985063, -0.00795337744, -0.0288865454, 0.0281969458, -0.00788441766, 0.00539802946, 0.021546144, -0.0002976291, 0.0187877472, 0.0180828236, 0.0117308488, 0.00483485684, 0.00560107827, -0.00252278382, -0.0109339794, -0.00783078279, -9.57776706e-07, -0.0101217842, -0.0155159831, 0.00393071584, -0.00493446551, 0.011071899, -0.0411614105, -0.0177456867, -0.018220745, 0.0155083202, -0.00340393838, -0.00106983655, 0.0125277191, -0.0149336541, -0.00229291734, -0.0109263165, 0.0130640743, -0.00423337286, -0.00155830267, 0.0162898656, -0.0149872899, 0.00598802, 0.01197604, 0.0225269087, -0.00898777694, -0.0249634925, 0.00552828703, 0.0106811263, 0.018542558, 0.0371770598, -0.00609529112, 0.0103669753, 0.0045436928, 0.0224349611, 0.0160753243, 0.0232778061, -0.0217300374, -0.00243083737, 0.0256530922, -0.00982295815, -0.0107424241, 0.0259902291, 0.00697644567, 0.00597652653, 0.0120526617, 0.0122212311, -0.0192781296, 0.0203814879, 0.00659333495, 0.0206879769, 0.00760091608, -0.00194428675, -0.00922530517, 0.0151405344, 0.0139912022, -0.0265878811, 0.0040992843, 0.00627918402, -0.0223430153, 0.0166270044, -0.0109876143, -0.0216074418, 0.0106581394, -0.0225882065, 0.000511452788, 0.0199064314, 0.0203508399, -0.00531757623, 0.0136464024, -0.00748598296, 0.0192474816, 0.0010545121, 0.0106428144, 0.0118304584, -0.0068232012, -0.00155830267, 0.00339627615, 0.00323153869, -0.000763826945, 0.020059675, 0.0253619272, -0.0129874526, 0.0158914309, 0.0219752286, -0.0125890169, 0.0133858873, 0.00114454317, -0.0047888835, 0.0177303627, 0.00627535302, 0.00839778595, -0.00182456465, -0.00197302, -0.0209791418, 0.00110527431, 0.0198757816, -0.0100298375, -0.00076909468, -0.00060723041, -0.0223583393, 0.0237988364, -0.00622937968, -0.00394604, -0.0038617556, 0.0118764313, -0.0245650578, -0.0105048949, -0.0180675, -0.0165963545, 0.00500725675, 0.000295474107, 0.0056815315, -0.000940536731, 0.0355220214, 0.00740936073, 0.00785376877, 0.0146118412, -0.00812194683, 0.0101600951, 0.0354607254, -0.0331620611, -0.00796870235, 0.00458966615, -0.00524861645, -0.0142440554, -0.0178529583, 0.0279977284, -0.0105738547, 0.00512602087, 0.0235229954, -0.010183082, 0.0186651517, -0.0308327489, 0.00833648816, -0.00706073, -0.00741319172, -0.00577730918, -0.00845142175, 8.18899061e-05, 0.00469693681, -0.0021396731, -0.0276912395, 0.0187417753, 0.00377747137, -0.0063979486, -0.000314869103, 0.0111791696, 0.0158761069, -0.0121062975, -0.0176997129, 0.0101524331, -0.00767753832, 0.00587308686, 0.0310626142, -0.014956641, 0.00359740923, 0.0045743417, -0.0310779382, -0.014673139, -0.0108037209, 0.0279057827, 0.0115852673, -0.0141750956, 0.00194045564, 0.00489615463, 0.00779630244, -0.0183586646, 0.0217300374, -0.0225728825, -0.0118457824, -0.0158301331, -0.00308404095, 0.00965439, 0.0118917553, -0.00932491384, 0.00145198952, 0.0105815167, 0.00796870235, 0.00976166, 0.000710670312, 0.0117921466, 0.00806831103, 0.029897958, 0.0172093324, 0.00363763585, 0.00755877374, -0.00648223283, 0.00233889068, -0.0241512973, 0.0198757816, 0.0118304584, -0.0134854959, -0.00399201317, 0.0135084828, 0.00353228045, 0.0166116785, 0.0180675, -0.00100758113, 0.000103619466, -0.00925595406, -1.06253356e-05, 0.0201669466, -0.0217147134, 0.00267219706, 0.0341121741, -0.0048157014, 0.00718715647, 0.0105202198, -0.0102137309, 0.0192321558, 0.0133858873, -0.00263963267, 0.00408779085, 0.0120756486, -0.0212703049, -0.0136387404, 0.00216265977, -0.00992256682, 0.00294803665, -0.0351542346, -0.00483485684, 0.00966971368, -0.0215921178, -0.0115546184, 0.00950880721, -0.00237145508, -0.00624087313, -0.000125109582, 0.00150849833, -0.00743234716, -0.0156155918, -0.00462797703, -0.014366651, -0.00765838241, 0.00160810712, 0.0208258964, 0.0188950188, -0.0174391977, 0.00709521, 0.00943218544, -0.0259442553, -0.0233850759, 0.00986893103, 0.0107041122, 0.0150945606, 0.000621118175, -0.00724079181, 0.0158607829, 0.0193241034, 0.0254538748, -0.00259940606, 0.00311660534, 0.00717183203, 0.0167036261, -0.0222510677, -0.015255467, -0.0317522138, -0.00147689169, -0.0313384533, -0.000167850376, 0.0276759155, 0.00634814426, 0.0073250765, -0.0176077671, -0.0166270044, -0.0108573567, 0.00576198474, -0.00522946101, 0.0135544557, 0.0229100194, -0.0333459526, 0.00318364985, 0.0106964502, -0.0104206102, 0.0215921178, -0.00660482841, 0.00300741894, 0.000984594459, -0.0105355438, 0.0170407631, 0.000222323913, -0.0113937119, -0.0100758113, -0.00747065851, 0.00766604487, 0.00109761208, 0.0101984069, 0.0114626717, 0.00270667695, -0.0152401431, -0.0140295131, -0.00531374523, -0.0172706302, 0.0144126238, 0.00083853351, -0.0186038557, -0.0081449328, -0.0141674327, 0.00381769799, 0.00581178907, 0.000631174829, -0.00678489031, -0.0261894464, 0.0193241034, 0.00440960377, 0.024549732, -0.0205960311, -0.00742468517, 0.00196344219, -0.0110948859, 0.0117155248, -0.00442109723, -0.00334264082, -0.00468544383, -0.00212434866, 0.036135, 0.00901842583, 0.0250860881, -0.00985360704, 0.01616727, -0.02571439, 0.026327366, -0.00934023876, 0.000984594459, 0.0171327107, -0.00700709457, -0.020013703, 0.0194160491, -0.00314725423, -0.0254998468, 0.0291470606, -0.016458435, 0.00716800103, -0.00638262415, 0.0154700093, 0.00300933444, 0.00427551521, 0.000944846717, -0.00924063, -0.0196459163, -0.00806831103, -0.00231207302, 0.0148876812, 0.0055014696, 0.0245803818, -0.0186804775, -0.000323249638, -0.0186191797, 0.0230632629, 0.00576964673, 0.0123131778, -0.0101141222, 0.00482336339, 0.000741319149, -0.00147401833, 0.00865063909, -0.00549763814, -0.00956244301, 0.00362997386, -0.0206573289, 0.00900310092, 0.00878855865, 0.00525627844, 0.00572750485, -0.00513368333, -0.00120967196, -0.00190406013, -0.000133969021, 0.00447856402, 0.0143896369, -0.0221131481, 0.00545932725, 0.0125047332, -0.0124894083, -0.0144815836, 0.00559341582, 0.0147650857, 0.0212703049, 0.000737488095, 0.00762773352, -0.00142229837, -0.00590756675, 6.44104875e-05, 0.015255467, -0.0249788165, -0.0081142839, -0.00405331096, 0.0108343698, -0.00898777694, 0.00352844945, 0.00821389351, -0.00653586816, 0.0291777104, -0.00783844478, -0.00622554868, -0.0185272321, -0.0166270044, -0.00325260963, 0.00277563697, -0.00586925587, 0.0106658014, -4.08252308e-05, -0.00663547684, -0.0177456867, 0.0192781296, -0.0113860499, -0.000371138478, 0.00974633545, 0.00842077285, -0.00284459675, 0.00508771, -0.0109493034, 0.00892647915, -0.0148570323, -0.0040954533, -0.0104895709, 0.00630983291, 0.0134088742, -0.00691514788, -0.00209753099, -0.0204274617, -0.0128878439, -0.0864910707, 0.00495362096, 0.0174545236, 0.0283042174, 0.017056087, 0.0117691606, -0.0142670423, -0.00364529807, 0.0221897718, 0.0243811645, 0.000659908168, 0.00511069642, 0.00143666507, 0.0028560902, 0.00593438465, -0.00473141717, 0.00434064399, 0.0153780626, 0.02931563, -0.0180828236, 0.0139988642, -0.0148340454, 0.0066086594, -0.00316641, 0.0106351525, -0.00332923187, -0.00712202769, 0.000786813558, -0.000584722671, -0.0193394274, -0.00494212797, 0.00444408413, 0.0342654213, -0.0147420987, -0.00758559164, 0.00461648358, -0.0314150751, -0.0249175187, 0.0304496381, -0.0043138261, 0.00298251677, 0.00422571087, 0.00496128341, -0.017362576, -0.00532906968, 0.0314150751, 0.00236570858, 0.0184812602, 0.00840544887, 0.0454829, 0.00757792918, 0.0315989703, -0.00939387362, -0.0100375, -0.00541335391, 0.00309745, 0.00668145, 0.0100987973, 0.0228027478, 0.0220212024, -0.0114933206, -0.00605314877, 0.0184812602, -0.00450155046, 0.00334647181, -0.00484635029, -0.00217989972, -0.00328900525, -0.00806831103, -0.00550530059, -0.0186191797, 0.00736721838, 0.0133629, -0.0066124904, -0.000220528091, 0.00441343524, -0.00470843026, -0.0035456894, -0.012864857, 0.00511835888, 0.00501108775, 0.00860466622, 0.00870427489, 0.00275456579, 0.00890349224, 0.003890489, 0.000795433589, 0.0140525, -0.0165657066, 0.0189103428, 0.0258063357, -0.00053300272, 0.0058922423, 0.0243505146, -0.0139069175, 0.0167342741, 0.00271050818, -0.00435979944, 0.0213622525, 0.00491914107, 0.0036184804, 0.0257910118, 0.0107347611, 0.000236690568, 0.0306641795, -0.0172706302, -0.0283195414, 0.00773500465, -0.00498810131, 0.0175771173, 0.00973101147, -0.01017542, -0.0127039505, -0.0168108977, 0.0317522138, 0.0304343123, -0.011968378, 0.00653586816, -0.0161825959, 0.00630217092, 0.0202129204, -0.0250554383, -0.00989958, 0.00606847322, 0.0149872899, -0.00123744749, 0.0101294462, -0.00578880263, -0.00329475198, -0.017362576, 0.00531374523, 0.0133245895, -0.00521796755, -0.0259902291, 0.00766987586, -0.0173779, 0.00631749537, -0.00051863608, -0.00567386905, -0.0124740843, -0.0229559913, -0.00132364745, 0.00704923645, 0.00759325363, 0.00298251677, -0.0116772139, -0.0105738547, 0.0177610107, -0.0100681484, -0.00408779085, -0.0105125569, -0.0054478338, 0.00485018129, 0.010773072, -0.020029027, 0.0139452294, -0.00366636924, -0.00709137879, 0.0135697806, -0.0173012782, -0.00745533407, -0.00561640272, -0.00365296029, 0.00445174612, -0.00530608278, 0.00801467523, 0.00049708609, -0.0159067549, 0.00855869241, -0.0274307244, 0.0255611446, 0.000639315927, -0.00370851136, 0.0126733016, 0.00554361148, 0.00372000481, -0.0180675, -0.00861232821, -0.00482719485, -0.00385026238, 0.0243505146, 0.00762390252, 0.0081985686, 0.0128342081, -0.00279287691, -0.0207799245, 0.00425252877, -0.00252661505, 0.00254577049, -0.0131023852, 0.0246110298, 0.00462797703, -0.00685768109, -0.00844376, 0.0141444467, -0.0198757816, -0.0025879126, 0.00152094942, -0.0248868708, -0.0156768896, 0.0169794653, 0.00922530517, 0.0176384151, 0.00459732814, 0.00799935125, 0.0119377291, -0.0146041792, -0.00204772665, 0.00310319662, -0.0130027765, -0.00889583, 0.0147880726, -0.00996854, -0.0152018322, -0.00700709457, -0.00361656491, -0.00581945153, 0.0123514887, -0.00871959887, -0.00449005701, 0.0152937789, -0.014665477, 0.0487929769, -0.00352270273, 0.0256990641, -0.00308212545, 0.0209944658, 0.0282122716, 0.0149030052, -0.00235421513, -0.00156500714, 0.00957776699, 0.0166576523, -0.0208565462, 0.019124886, 0.0226954762, 0.00980763324, 0.0129414788, 0.00162343157, 0.00286949892, -0.00400733761, 0.0175617933, -0.02450376, 0.00571984239, -0.0184046365, -0.0108420327, 0.0406710319, -0.00195482234, -0.0150026148, -0.0252546556, -0.0256837402, 0.00558958482, -0.000250219164, 0.000309840776, 0.0198298097, 0.0023772018, 8.42244917e-05, 0.0171480346, 0.0109416414, 0.0126656396, 0.00647840183, 0.013462509, -0.00165503821, 0.0104129482, -0.00429850211, -0.0169641413, 0.0159374047, -0.0169641413, -0.00787675567, 0.00576581573, 0.00339436065, 0.00865063909, -0.0114243608, 0.00941686053, -0.0207033, -0.0295454953, 0.00232165074, 0.02571439, -0.0022737619, 0.0185272321, -0.0160446763, -0.0308480728, -0.00444025267, -0.0169028435, 0.00244616182, -0.0138226338, -0.0146118412, -0.0154393604, -0.0105661927, 0.00878855865, 0.023921432, 0.00504939863, 0.00117902318, 0.00648606382, -0.0557196178, 0.00442109723, -0.0061067841, 0.00835947506, -0.00232165074, 0.00421038643, 0.00642093504, -0.012880181, -0.0139452294, 0.0133475764, -0.0151252095, -0.00479271449, 0.00303423661, -0.00930192787, -0.0106504774, -0.0151941702, -0.0229253434, 0.0180981494, 0.000139476237, -0.0123208398, -0.00572750485, 0.00381961348, 0.00117998093, -0.0141137978, -0.00803766213, -0.00986126903, -0.0201975945, 0.00537504302, -0.01616727, 0.016443111, 0.0133399144, -0.014044838, 0.0120373378, 0.0120603247, 0.0108496947, -0.00435979944, 9.60171164e-05, -0.0130104385, -0.0253619272, 0.0191861838, 0.013454847, 0.00423337286, -0.0205960311, -0.0243198667, -0.0110029392, -0.00428700866, -0.00248064171, 0.00316449418, -0.0117768226, 0.00819090661, 0.00707605435, 0.000455662259, -0.00968503766, 0.00798402634, 0.0168108977, -0.0197072141, -0.0154776713, -0.00960841589, 0.00793805346, 0.0123898, 0.000732699176, 0.0111025479, -0.0226035304, -0.0223430153, 0.00835947506, -0.00193470891, 0.0221591219, -0.0220671762, -0.0215001721, -0.0103439884, 0.0070568989, -0.00302082766, 0.00299592549, 0.0114243608, 0.00844376, -0.0122901909, 0.00734040095, -0.00561257172, -0.00118955865, 0.0848973244, 0.00870427489, 0.00568919349, -0.00212051766, -0.00292313448, -0.00714501413, -0.00233505969, 0.0459119827, -0.00871193688, 0.00673508598, 0.015247805, -0.00414908864, 0.00675424142, -0.00150754058, -0.0123898, 0.00227759313, 0.00896479, -0.00517965667, -0.003516956, 0.00917933229, -0.00274881907, 0.000486550562, 0.0127499234, -0.0140831489, -0.0066086594, -0.0162592176, -0.0234923474, -0.00720248092, -0.0177763365, 0.011968378, 0.00352844945, 0.00587308686, -0.000686247, -0.00323153869, 0.0059228912, 0.0187264495, -0.00481953239, 0.00182264904, 0.00161576935, -0.0214541983, -0.00164833374, 0.0269403439, 0.0161212981, 0.00432915054, -0.00374873797, -0.0100604864, -0.00260706828, -0.0110489121, 0.00858934131, -0.0143436641, -0.0191861838, 0.00211477093, 0.0170714129, -0.00989191793, 0.00471226126, -0.00549763814, -0.00299592549, -0.0395983197, -0.00374299148, 0.0195079967, -0.00902608782, 0.00784610678, 0.00675041042, 0.0075089694, 0.0306795035, 0.00370468036, 0.0047888835, -0.00642093504, 0.00159182493, 0.00608379766, -0.0137077, -0.00480420794, 0.02274145, 0.00719481846, -0.00796104, 0.0131330341, -0.00456667924, -0.0268177483, -0.00925595406, -0.0150102768, -0.00558958482, -0.0103593133, -0.013447185, -0.0327329785, 0.0136157535, 0.0117078628, 0.00192608894, 0.00303040561, 0.000973580056, 0.00797636434, 0.00126905413, 0.00856635533, 0.00390964467, 0.00846674573, -0.00291164126, 0.0205807053, -0.0144509347, 0.00939387362, 0.00707988534, 0.00996087771, 0.0107194372, 0.00289057, -0.0176077671, 0.0045436928, -0.0358591601, 0.0119224042, -0.00224885973, 0.00771968, 0.0153704006, 0.00390581344, 0.0208412204, -0.00455901725, 0.0240287017, 0.00233314396, 0.0158301331, 0.00622937968, -0.00362614263, 0.0163205154, 0.00617574435, 0.00905673672, 0.0136004295, 0.00294037443, -0.00260515255, -0.00159852928, -0.00140505843, 0.0385256112, 0.0152707919, -0.000159230374, 0.0142210685, 0.0010545121, 0.00197876664, 0.00622171769, 0.00845908374, -0.00448239502, 0.00366445375, 0.00647457037, -0.0183126908, 0.00823687948, -0.0196459163, 0.0163511634, -0.00256109494, 0.0237681866, 0.0140141891, 0.0219752286, 0.0128188832, -0.00993022881, 0.0115622804, -0.0158301331, 0.0249788165, 0.00624853512, -0.0129184918, -0.000561257126, 0.00555510493, -0.00834415108, 0.00169813808, -0.0129184918, 0.00748598296, -0.0407629758, 0.0367173292, -0.00922530517, -0.0101141222, 0.00669677462, 0.00746682705, 0.0281816218, 0.000960171164, -0.00360315596, 0.00840544887, -0.0141214598, 0.0169028435, 0.00655885506, 0.0146271661, 0.010167758, -0.00208412204, 0.0104435971, -0.00294995238, 0.0176230911, -0.0234463736, 0.0181594472, -0.0158607829, -0.0113017652, 0.0148646943, -0.00106504769, -0.0194007251, 0.0247029774, 0.0101217842, -0.00581945153, -0.0145965172, 0.0115776053, 0.0185732059, 0.0238754582, -0.0219139308, -0.0235383213, -0.00219713966, 0.0016023604, -0.00955478, -0.0155389691, -0.000608667091, 0.0103439884, 0.0211323854, 0.0136387404, 0.00450538145, 0.00861999, 0.0107270991, -0.00857401732, -0.000689120323, 0.0397515632, 0.0159987025, -0.0153550766, -0.000612498203, -0.00927127898, -0.00680787675] |
20 Jun, 2024 | Python String split()
20 Jun, 2024
Python String split() method splits a string into a list of strings after breaking the given string by the specified separator.
Example:
Python
string = "one,two,three"
words = string.split(',')
print(words)
Output:
['one', 'two', 'three']Python String split() Method SyntaxSyntax: str.split(separator, maxsplit)
Parametersseparator: This is a delimiter. The string splits at this specified separator. If is not provided then any white space is a separator.maxsplit: It is a number, that tells us to split the string into a maximum of the provided number of times. If it is not provided then the default is -1 which means there is no limit.ReturnsReturns a list of strings after breaking the given string by the specified separator.
What is the list split() Method?split() function operates on Python strings, by splitting a string into a list of strings. It is a built-in function in Python programming language.
It breaks the string by a given separator. Whitespace is the default separator if any separator is not given.
How to use list split() method in Python?Using the list split() method is very easy, just call the split() function with a string object and pass the separator as a parameter. Here we are using the Python String split() function to split different Strings into a list, separated by different characters in each case.
Example: In the above code, we have defined the variable ‘text’ with the string ‘geeks for geeks’ then we called the split() method for ‘text’ with no parameters which split the string with each occurrence of whitespace.
Python
text = 'geeks for geeks'
# Splits at space
print(text.split())
word = 'geeks, for, geeks'
# Splits at ','
print(word.split(','))
word = 'geeks:for:geeks'
# Splitting at ':'
print(word.split(':'))
word = 'CatBatSatFatOr'
# Splitting at t
print(word.split('t'))
Similarly, after that, we applied split() method on different strings with different delimiters as parameters based on which strings are split as seen in the output.
Output['geeks', 'for', 'geeks']
['geeks', ' for', ' geeks']
['geeks', 'for', 'geeks']
['Ca', 'Ba', 'Sa', 'Fa', 'Or']Time Complexity: O(n)Auxiliary Space: O(n)
How does split() work when maxsplit is specified?The maxsplit parameter is used to control how many splits to return after the string is parsed. Even if there are multiple splits possible, it’ll only do maximum that number of splits as defined by the maxsplit parameter.
Example: In the above code, we used the split() method with different values of maxsplit. We give maxsplit value as 0 which means no splitting will occur.
Python
word = 'geeks, for, geeks, pawan'
# maxsplit: 0
print(word.split(', ', 0))
# maxsplit: 4
print(word.split(', ', 4))
# maxsplit: 1
print(word.split(', ', 1))
The value of maxsplit 4 means the string is split at each occurrence of the delimiter, up to a maximum of 4 splits. And last maxsplit 1 means the string is split only at the first occurrence of the delimiter and the resulting lists have 1, 4, and 2 elements respectively.
Output['geeks, for, geeks, pawan']
['geeks', 'for', 'geeks', 'pawan']
['geeks', 'for, geeks, pawan']Time Complexity: O(n)Auxiliary Space: O(n)
How to Parse a String in Python using the split() Method?In Python, parsing strings is a common task when working with text data. String parsing involves splitting a string into smaller segments based on a specific delimiter or pattern. This can be easily done by using a split() method in Python.
Python
text = "Hello geek, Welcome to GeeksforGeeks."
result = text.split()
print(result)
Explanation: In the above code, we have defined a string ‘text’ that contains a sentence. By calling the split() method without providing a separator, the string is split into a list of substrings, with each word becoming an element of the list.
Output['Hello', 'geek,', 'Welcome', 'to', 'GeeksforGeeks.']Hope this tutorial on the string split() method helped you understand the concept of string splitting. split() method in Python has various applications like string parsing, string extraction, and many more. “How to split in Python?” is a very important question for Python job interviews and with this tutorial we have answered the question for you.
Check More: String Methods
For more informative content related to the Python string split() method you can check the following article:
Python program to split and join a stringSplit and Parse a string in PythonPython | Ways to split a string in different waysPython | Split string into list of charactersPython String split() – FAQsWhat does split('\t') do in Python?In Python, the split('\t') method splits a string into a list of substrings based on the tab (\t) delimiter. Here’s how it works:
text = "apple\tbanana\torange"result = text.split('\t')print(result) # Output: ['apple', 'banana', 'orange']In this example, the split('\t') method divides the string text wherever it encounters a tab character (\t) and returns a list containing the separated substrings.
What is input().split() in Python?input() is a built-in function in Python that reads a line from input, which is typically from the user via the console. split() is a method that splits a string into a list of substrings based on whitespace by default, or a specified delimiter. Together, input().split() allows you to read user input and split it into individual components based on whitespace.
Example:
# User input: "apple banana orange"words = input().split()print(words) # Output: ['apple', 'banana', 'orange']Here, input() reads the input from the user, and split() divides the input into a list of words based on whitespace.
How to split a number in Python?To split a number (typically an integer or float) into its individual digits, you can convert the number to a string and then split the string. Here’s an example:
number = 12345digits = list(str(number))print(digits) # Output: ['1', '2', '3', '4', '5']In this example, str(number) converts the integer 12345 into a string, and list() converts the string into a list of individual characters (‘1’, ‘2’, ‘3’, ‘4’, ‘5’).
How to split a string into lines using the split() method?To split a multi-line string into individual lines using the split() method, you can specify the newline character (\n) as the delimiter. Here’s an example:
multiline_text = "Line 1\nLine 2\nLine 3"lines = multiline_text.split('\n')print(lines) # Output: ['Line 1', 'Line 2', 'Line 3']In this example, split('\n') splits the multiline_text string wherever it encounters a newline character (\n) and returns a list of lines.
How to split a string number?If by “split a string number” you mean splitting a string representation of a number into its individual characters or parts, you can use the split() method with an empty string as the delimiter. Here’s an example:
number_str = "12345"digits = list(number_str)print(digits) # Output: ['1', '2', '3', '4', '5']In this example, list(number_str) converts the string "12345" into a list of individual characters (‘1’, ‘2’, ‘3’, ‘4’, ‘5’). | NLP/Natural Language Processing (NLP) Tutorial/AI ML DS - Projects/30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated]/Does Artificial Intelligence Require Coding?/Artificial Intelligence – Boon or Bane/Artificial Intelligence Examples/Agents in Artificial Intelligence/What are Diffusion Models?/ML | Common Loss Functions/Loss Functions in Deep Learning/Kaiming Initialization in Deep Learning/Swift - Initialization/Swift – If Statement/6 Best iOS Project Ideas For Beginners/Swift Programming Language/Introduction to Visual Programming Language/What is D Programming Language: Usage and Applications/Best Programming Languages for Data Science in 2024/5 Best Languages for Competitive Programming/MEX (Minimum Excluded) in Competitive Programming/Rearrange Array to maximize sum of MEX of all Subarrays starting from first index/Minimize moves to segregate even and odd by swapping adjacent elements/Minimum elements to be removed such that sum of adjacent elements is always even/Maximum sum such that exactly half of the elements are selected and no two adjacent/Maximum length subsequence such that adjacent elements in the subsequence have a common factor/Longest subsequence such that difference between adjacents is one/Longest Increasing Subsequence using Longest Common Subsequence Algorithm/Longest Common Subsequence (LCS)/Minimum insertions to form a palindrome with permutations allowed/Print longest palindrome word in a sentence/Python String split() | https://www.geeksforgeeks.org/python-string-split/ | NLP | Python String split() | Artificial Intelligence – Boon or Bane, AI ML DS - Projects, Longest Common Subsequence (LCS), Rearrange Array to maximize sum of MEX of all Subarrays starting from first index, MEX (Minimum Excluded) in Competitive Programming, Swift - Initialization, Minimum insertions to form a palindrome with permutations allowed, Longest Increasing Subsequence using Longest Common Subsequence Algorithm, 6 Best iOS Project Ideas For Beginners, ML | Common Loss Functions, Artificial Intelligence Examples, Python String split(), Longest subsequence such that difference between adjacents is one, What is D Programming Language: Usage and Applications, 30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated], Swift – If Statement, Natural Language Processing (NLP) Tutorial, Loss Functions in Deep Learning, Minimize moves to segregate even and odd by swapping adjacent elements, Maximum length subsequence such that adjacent elements in the subsequence have a common factor, Does Artificial Intelligence Require Coding?, Print longest palindrome word in a sentence, Best Programming Languages for Data Science in 2024, NLP, 5 Best Languages for Competitive Programming, Maximum sum such that exactly half of the elements are selected and no two adjacent, Swift Programming Language, Minimum elements to be removed such that sum of adjacent elements is always even, Agents in Artificial Intelligence, What are Diffusion Models?, Kaiming Initialization in Deep Learning, Introduction to Visual Programming Language | GeeksforGeeks | [0.00975914951, 0.00105100602, -0.00745527958, 0.0422878526, 0.00598575501, 0.0153519548, -0.00336967874, -0.00408290932, 0.0121437619, 0.018570913, -0.018291004, -0.0196259562, -0.0122837164, -0.0125097977, -0.00156237895, 0.00669091148, -0.0160301961, 0.0102812881, -0.0118315555, -0.0107065346, 0.0207671244, 0.0148136672, -0.0858245343, -0.0157610532, -0.0109595302, 0.02394302, -0.000961515761, 0.00651865965, 0.00179249677, -0.00905399304, 0.0221343748, -0.0169560499, 0.00415288657, -0.021682214, -0.0143722715, -0.00622798456, -0.00424977858, 0.0235554539, -0.0177850127, -0.0147490725, 0.0274741855, -0.0095492173, 0.0280340035, -0.0381107442, -0.024976531, 0.0399409197, -0.0208747834, -0.0183017682, 0.0422017276, -0.0150074502, -0.00138070702, 0.0161163229, -0.00417711, -0.000149627056, 0.0339766964, 0.0142215509, -0.0047692256, -0.0276895, -0.0192276239, 0.0118961502, 0.0228018519, -0.028658418, -0.00435743574, -0.00842957944, -0.0271942765, 0.0176450592, -0.0185816791, -0.0140923625, 0.0441395603, -0.0292612985, 0.0116270063, 0.0729917586, 0.038175337, -0.0305316579, -0.0106850034, -0.0380246155, -0.00201857742, -0.00322164968, -0.029024452, 0.031952735, -0.0412758738, -0.030639315, 0.00521869585, -0.0414696559, -0.00190553709, 0.0285722911, 0.0130157871, -0.00975914951, 0.0229525715, -0.0235769842, 0.00621721847, 0.0392734446, -0.00697082095, -0.0148674957, 0.00417441828, -0.00894095283, 0.0166546106, 0.0100767389, 0.00426323572, 0.00763829704, -0.0265052672, -0.0285076965, -0.00123065943, -0.0264406726, 0.00742836529, -0.0143507402, 0.000659738376, 0.00178173103, 0.0267636459, -0.0248258114, 0.0280770678, 0.000172251937, 0.00909167249, 0.022521941, -0.0442687497, 0.0150612798, 0.00430629868, -0.0375078619, -0.0327063389, 0.0202934314, 0.0546899922, 0.0542163, -0.0230386984, 0.045732893, -0.057876654, 0.0324694924, -0.021208521, -0.0421156, -0.0249119382, -0.0125097977, 0.0129834907, 0.0295842718, -0.0148782618, 0.0219190605, -0.00303863198, 0.0183448326, -0.00570584554, 0.046378836, -0.0255794134, 0.0370987616, -0.0169452857, 0.0155134406, 0.00150182168, 0.00624413276, -0.0207025297, -0.01601943, 0.0426538885, 0.0072291987, -0.0161486194, 0.023856895, -0.0162778087, -0.0519339629, -0.00816043559, 0.0122514199, 0.00324856397, -0.038089212, -0.00789129175, 0.0113040339, 0.000798683846, 0.0119069153, -0.0128435353, -0.0327063389, 0.00308169494, -0.00443817908, -0.00355269643, 0.013005022, 0.045043882, -0.00247343024, -0.000569911732, 0.0283139125, 0.00480421446, 0.00308438647, -0.012918896, -0.0142107857, -0.00894633494, -0.0397471376, 0.00128516101, -0.00929622166, -0.00565201696, 0.0318666101, -0.0406729914, -0.0257086027, 0.0171390679, 0.0074175992, -0.02827085, 0.00127439527, -0.0105019854, 0.0266129263, 0.000942002807, -0.0279263463, -0.0102220764, 0.00243844162, 0.0066317, 0.00687931199, -0.0201534778, 0.0268928353, -0.00777825201, 0.00332661578, -0.0030440148, -0.00229310407, -0.0209716745, -0.023856895, -0.0240506772, 0.019044606, 0.0235554539, 0.000630469, -0.0350102074, -0.0166653749, 0.0179465, -0.0233616699, 0.0163316373, -0.011691601, -0.0167299695, -0.0123913744, 0.0103082024, 0.0163531695, -0.0284431018, 0.0327063389, 0.000113292663, -0.00686316332, -0.0220267177, 0.027431123, 0.0189584792, 0.00205491181, -0.0192276239, -0.0620107, -0.0318666101, 0.0133172283, -0.00214507501, 0.00758446846, 0.00680395169, -0.000616675417, -0.0405007377, -0.005608954, -0.00179518817, -0.00871487148, 0.0245889649, 0.0115408804, -0.0173328519, 0.035806872, 0.0580489039, 0.0176881216, 0.0307685044, -0.00303055765, 0.0237923, 0.0202073064, 0.000825598196, -0.0184955522, -0.00854800269, 0.000458889932, -0.044311814, -0.00901631266, -0.00120845507, 6.16927719e-05, -0.041857224, -0.00525906729, 0.00770289171, -0.0318666101, 0.0293258931, -0.0261822958, 0.0452592, 0.00392411463, 0.0279048141, 0.0158902425, 0.015179703, 0.0218975283, 0.0088817412, -0.03636669, 0.0110671874, -0.0245674327, 0.00607188093, -0.0336106606, 0.00861259736, -0.0032808613, -0.0442256853, 0.0219513569, 0.038735155, -0.00874716882, 0.0135110123, 0.0125313289, -0.00802048109, -0.0251057204, 0.0166976731, 0.038562905, 0.0118423216, -0.0477999151, -0.0144691635, -0.0125313289, 0.0120361047, -0.0179142021, 0.0284000393, -0.0011357863, 0.0417065024, 0.0340197608, 0.00647021364, 0.0117131323, -0.00665323157, -0.00491187163, -0.0371848866, -0.00537749054, -0.0215853211, -0.0349456146, 0.0108841695, 0.0101090362, -0.0370126367, -0.00805816147, 0.0219513569, 0.0319096744, 0.0041367379, 0.00557127362, 0.0200888831, -0.0420725383, -0.00889788941, 0.0161916818, -0.0290675163, -0.0234047323, 0.075403288, 0.0021719893, -0.0322972387, -0.0462496467, 0.0566708893, -0.020261135, -0.00729917595, 0.0268928353, 0.029778054, -0.0253641, -0.00322164968, 0.01601943, 0.043536678, -0.0193783436, 0.00949538872, -0.0094092628, -0.00231598131, 0.0140385339, 0.000858568295, -0.0296703968, 0.00081146817, -0.0436012745, 0.0345795788, 0.0344073251, -0.00594807509, 0.00118019502, -0.0301871523, -0.0273234639, 0.00855876878, -0.0083811339, -0.0373786725, 0.0541732349, 0.00181671977, 0.0399839841, 0.000915761339, -0.0101951621, 0.0121222306, 0.0177096538, -0.00452699652, -0.0944801942, -0.018377129, -0.00200915756, 0.0261177011, -0.028550759, 0.00845111068, -0.0156856924, -0.0360221863, -0.0309622865, -0.0360652506, -0.03864903, -0.00679856911, -0.0206702333, 0.0230602287, -0.0245459024, -0.00466156844, 0.0100713558, -0.00816043559, -0.0126174549, -0.00187054847, 0.00115799066, 0.0448285677, 0.00443548756, -0.00602881797, -0.00573276, 0.0224142838, 0.0251703151, 0.0223712213, -0.0124882655, -0.0239645522, 0.00915088411, -0.0142969117, 0.0242659934, 0.0121760592, 0.0464219, -0.023383202, 0.013198805, 0.00423632143, -0.0387136228, 0.0117346635, -0.0162455123, -0.0296703968, -0.00603420101, 0.0114870518, 0.00210066629, -0.019981226, -0.0248473436, 0.00341812451, -0.0259023868, -0.0140170017, 0.0108572552, -0.0247396864, -0.0012017265, 0.00403715484, 0.0032566383, -0.0038083829, 0.0428692028, -0.0385413729, -0.0242875237, 0.000777825189, 0.00893557, -0.0393811, 0.0366250686, 0.00577582279, 0.000664112, 0.0347302966, 0.020681, -0.019991992, 0.0342781357, -0.00413135532, -0.00615800684, 0.0271512121, 0.00823579635, -0.0101574818, 0.0191737954, -0.0384121835, 0.00382453157, 0.0239214879, 0.0338044427, -0.0058242688, -0.0682117715, 0.0267205834, -0.0217791051, 0.0327063389, -0.032426428, -0.0254717562, 0.00731532462, 0.0040048575, 0.0548622459, -0.0116808349, 0.0280555356, -0.0446132533, 0.011691601, 0.0308976918, -0.00986680668, -0.00447585899, -0.00286638, -0.0333522819, 0.00748757692, 0.017429743, 0.0173974466, -0.0113901598, -0.0248473436, 0.0254932884, 0.0095492173, 0.0151474057, 0.0154165486, 0.020358026, 0.0056574, 0.0532258525, -0.0108895525, -0.0209824406, -0.000213296356, -0.0400485769, 0.0042040241, -0.0105181346, -0.0689007789, 0.0319096744, 0.0169237535, 0.0279478785, 0.0221128426, 0.0138016874, 0.036108315, 0.0104750711, -0.0228449143, 0.00397256063, 0.00999061298, 0.0071807527, -0.00567893125, 0.0167192034, 0.00318666105, -0.0142430831, 0.00806892663, 0.0591685437, -0.0140385339, 0.00866642594, 0.036668133, 0.0234908592, 0.0154380808, 0.00969993789, 0.0289598573, -0.0476276614, -0.000536268752, 0.0328570567, 0.00413942942, 0.0136724981, -0.0141892536, -0.0146198841, 0.060331244, -0.000430629851, -0.0381107442, -0.0279478785, 0.0214561336, -0.00548783923, -0.00637870468, -0.0088817412, 0.0166007821, -0.0326632746, 0.020820953, -0.00182883115, -0.000316075602, 0.000322299544, 0.0437089317, -0.0247827489, -0.0239645522, -0.00141973281, 0.0122406539, 0.00697082095, 0.0286368858, -0.0110456562, 0.0112394392, -0.0114439884, -0.0143938027, -0.0118207894, -0.0188723542, 0.0370126367, 0.0283354446, -0.000894229801, 0.00387566886, -0.00575967459, 0.00579197146, -0.00962457713, 0.0123375459, 0.0211546924, 0.0253210366, -0.0139093446, 0.0132095711, -0.00742836529, 0.000324990979, 0.0353977755, 0.00894633494, -0.00692237495, 0.0238138307, -0.00402638922, 0.00871487148, 0.00384068, 0.00242902152, 0.00684701465, -0.00183690549, -0.0213592406, -0.0258593224, 0.0118315555, -0.01290813, 0.0145768207, -0.005937309, -0.0261822958, 0.0385844372, 0.0108680213, 0.00744989654, 0.0284861661, -0.00653480832, -0.012445203, 0.0215745568, -0.0333307497, 0.0611494407, 0.00397525169, -0.00560357096, 0.0227587875, 0.00626566447, -0.0171283036, 0.0287660751, 0.035074804, 0.00382722286, 0.00792897213, 0.0114332233, -0.0282493196, 0.0133602917, -0.0255363509, -0.00114857056, 0.0085803, 0.0252349097, -0.00179653394, -0.00705694687, -0.0518909, 0.0161809176, 0.0173866805, 0.0169991143, -0.0269358978, -0.0408667736, 0.0145337582, 0.0556373782, 2.46434665e-05, 0.0139847044, 0.0185601469, -0.00289867725, 0.0355915576, 0.020358026, 0.0167299695, 0.00276141404, -0.0138447499, -0.00244247867, -0.0067770374, -0.0235339217, 0.0050329864, -0.00297403755, -0.00692237495, -0.000489168626, 0.0109003186, -0.00664784852, 0.0216499157, 0.0160947908, -0.035074804, -0.00675550615, 0.0200565848, 0.0198305044, -0.0139954705, -0.0129727246, 0.000363680389, 0.00387028581, 0.0380246155, -0.0256655402, 0.0144153349, -0.02394302, -0.0182156432, -0.0185170844, -0.0104266256, 0.00208586338, -0.000363007508, 3.90468595e-05, 0.00409636647, 0.028938327, -0.00628719619, 0.0100605898, -0.0235123895, -0.000581350294, 0.0274741855, -0.0247827489, 0.0177742466, 0.0982697308, -0.000962861464, 0.0255578831, -0.0384337157, 0.0131234452, 0.0219190605, -0.0268282406, -0.022521941, -0.0152335316, 0.00496300915, 0.0109649133, -0.0123806084, 0.00462657958, 0.0241798665, 0.000752256543, 0.0627858341, 0.0329647176, 0.019991992, 0.00310322642, 0.0230817609, 0.00639485335, 0.0322757065, -0.00349886762, 0.0101090362, 0.0190984346, 0.00747681083, 0.0122083565, -0.00531020435, 0.00802586414, 0.00494147744, 0.0293689556, -0.0340628214, -0.0127143469, 0.0147383073, 0.0218437, 0.0434720851, 0.00254475325, 0.0144583974, -0.0199596938, -0.0103997113, -0.0114332233, -0.0125959236, 0.00165792496, 0.0183125343, -0.0532689132, -0.00155834178, -0.00768674305, -0.0041367379, 0.0122837164, 0.00104629598, -0.00860721432, 0.0149320904, -0.0201534778, 0.0209070798, 0.0103997113, -0.0283785071, 0.0282062553, 0.011121016, 0.0253425669, -0.0220697802, 0.0023038697, -0.00802048109, 0.0386059657, -0.0124129057, -0.0219082944, -0.0129942559, -0.00463196263, 0.0109379981, 0.00905399304, 0.0112394392, 0.00835960172, -0.00557665667, 0.0239645522, -0.000330205628, 0.0288091376, 0.00406945217, -0.0282277875, 0.0003640168, 0.00473423721, -0.0154165486, -0.0320173316, -0.0331800319, -0.0108787864, 0.0148782618, 0.00934466813, -0.00995831564, -0.00890865549, 0.0135433087, -0.012628221, 0.00351770758, 0.0202934314, -0.0302302167, -0.0203257296, -0.0415557809, -0.014889027, -0.0220697802, 0.0270004924, -0.0015220074, -0.00722381612, -0.0119069153, -0.0121006994, 0.0118961502, 0.00854262, 0.0182156432, 0.0197659098, 0.0310914759, -0.0145875867, 0.000122880898, 0.000663775543, 0.0417926274, 0.0161163229, -0.0111748446, 0.0198089741, 0.0183663629, -0.0218975283, 0.0153088914, 0.0643791631, -0.00150585885, 0.00807431, -0.0122406539, 0.00957074855, -0.00934466813, -0.0270004924, -0.0299072433, 0.0133064631, 0.00765444571, -0.0101359505, 0.00528059853, 0.0226511303, -0.0105773462, 0.00556589104, -0.035160929, 0.00862336252, 0.0273665283, -0.00224869535, 0.00939849671, -0.0132526336, -0.0296058021, -0.00691160932, 0.00629257876, -0.00225407816, 0.0147167752, -0.0134464176, 0.0411682129, -0.022995634, 0.0255363509, 0.0215099622, 0.00520523824, 0.00599113805, -0.00905399304, 0.0462065823, 0.0030682378, -0.0226511303, -0.0389289409, -0.0390150659, -0.0114439884, -0.00622260151, 0.0180756878, 0.00692775799, -0.00367111946, 0.00910243858, 0.0437735245, -0.0300794952, -0.0297995862, 0.00416096114, -0.00362536521, 0.00552282808, 0.00194994581, -0.0141892536, -0.0283569768, 0.0153950173, 0.0177204181, -0.0134464176, -0.00953306817, 0.0119176814, -0.020454919, 0.022521941, -0.0117346635, 0.0161809176, 0.0131665077, 0.0215960871, 0.0137047954, 0.0129404273, 0.0263976101, -0.0236200485, 0.0110079758, 0.0313283242, 0.0315005742, -0.00729379337, -0.0229741037, -0.00423632143, -0.0135540748, 0.0180649236, 0.0304670632, -0.0293043628, 0.0178603735, 0.0515894592, -0.0392519124, 0.0243736506, 0.0107818954, -0.00355807925, 0.00715922145, -0.00988295488, -0.0261607636, 0.00696005533, 0.00415019551, 0.00661016814, -0.0101144193, -0.0169775821, 0.0329431854, 0.0304885935, 0.00771904038, 0.019604424, -0.00422017276, -0.0220913123, 0.0187539309, -0.0107011525, -0.000201689531, 0.0168591589, -0.00959766284, 0.0109702954, -0.00705694687, -0.0141461911, -0.0115408804, 0.0146952439, -0.00255955616, -0.00246401015, 0.0314359814, -0.0378738977, 0.0166330785, -0.000404724793, 0.00400754903, -0.0164392944, -0.00227022683, 0.000866642571, -0.0036522795, 0.0117346635, 0.0411682129, 0.0211008638, 0.012918896, 0.0108626382, -0.00898939837, 0.00600190368, 0.0241583344, -0.0391873159, 0.0145768207, 0.00203876314, 0.0184632558, 0.0128327701, 0.00693314057, -0.0491779298, -0.0222635642, -0.00800971501, 0.00729379337, -0.00468040816, -0.00368188531, -0.0107603632, 0.0279694088, -0.0136294356, 0.0157933496, -0.0138985785, 0.00105100602, -0.0484027974, -0.0213484745, -0.004524305, -0.00468040816, 0.0267205834, -0.0160301961, 0.0114224572, -0.0181941111, 0.0198951, 0.00210874062, -0.0173866805, 0.00355000491, 0.0305101257, 0.0123698432, 0.0167837981, -0.029132111, 0.0281201303, -0.0166761409, 0.0287014805, 0.00257570483, 0.000224903168, -0.045991268, -0.0125959236, -0.00138743559, -0.0477137901, -0.0159871336, -0.00879023224, 0.00811199, 0.00443817908, -0.0106957695, -0.00907014124, -0.0322111137, 0.0132311024, -0.060804937, 0.00707847811, 0.00615800684, 0.0296058021, -0.00326740416, -0.00289060292, 0.00124478946, -0.0455606394, 0.0191092, -0.00290406, 0.0341704786, 0.0281416606, 0.00953306817, -0.0020078118, 0.00490648905, -0.00136119407, -0.0420510061, -0.0404792055, -0.00305747194, -0.0218544658, -0.0236415789, -0.00680933474, -0.0128758326, -0.0184740219, 0.0168914571, 0.00318935234, 0.0050249123, 0.0153196575, -0.00889250636, -0.0370341688, -0.00964610931, -0.00856953394, 0.00804739539, -0.0360652506, 0.0307469722, -0.0124344369, 0.0158579443, 0.0181187522, -0.0252349097, -0.0341058858, 0.00264702784, 0.00778901763, -0.00620107, -0.0095546, -0.000661420578, 0.00234020408, -0.00337775308, -0.0301225595, 0.0139093446, 0.0282277875, -0.00454045366, 0.0324910246, 0.0436443351, -0.0263330154, -0.0228879768, -0.00321895815, -0.0128112379, -0.0391873159, 0.0251918472, -0.0175912306, -0.00723996432, 0.00513256947, 5.91275e-05, 0.00980759505, 0.00103283883, -0.00220294087, 0.020734828, 0.019701317, 0.0013241868, 0.0134356515, -0.0122621851, 0.00321626686, -0.00930698775, -0.0185278505, -0.00876870099, 0.0266129263, -0.0129296612, 0.0109057017, -0.00966225751, -0.0145875867, 0.0177204181, 0.0220697802, -0.00932313688, -0.0305316579, -0.0296058021, 0.00224331254, 0.00545015931, -0.00310591795, -0.0125313289, 0.00703003258, 0.0402638912, 0.046378836, -0.00971608609, -0.00354193058, -0.00683086598, 0.0111963768, 0.00512180384, -0.0101359505, 0.00401562359, -0.0371202938, 0.0114116911, -0.0205733422, 0.0182264093, 0.00241287285, 0.0128327701, 0.00781054888, 0.00668014586, -0.0101951621, 0.0147275412, 0.00696005533, 0.00119768933, 0.00426592724, 0.0107388319, 0.00619568722, -0.00734762195, 0.0364743508, -0.00429284154, -0.002804477, -0.010932616, -0.00729917595, -0.00206702342, 0.0150505137, 0.00337775308, -0.0195290651, 0.0275818426, 0.0179680306, 0.0112394392, 0.0241152719, -0.0072291987, -0.024955, 0.0118853841, 0.0212515835, -0.00324856397, -0.0359360613, 0.00390796596, -0.00444625318, 0.0407375842, -0.00720766746, 0.00964610931, -0.0157072246, 0.0142107857, -0.0434720851, 0.0144691635, 0.0200673509, 0.0161701515, 0.00820349902, 0.0170529429, -0.0179787967, 0.0215745568, -0.0249119382, 0.00306016346, -0.0146952439, 0.0118853841, -0.00321626686, 0.0133172283, 0.0181510486, -0.0113901598, 0.0179895628, 0.0163747, 0.0345795788, -0.0129404273, 0.00237384718, 0.00693314057, 0.0225865357, -0.0180433914, 0.018377129, 0.0339766964, 0.020681, -0.0193891097, -0.00851570535, -0.00657787127, 0.0145552894, 0.0138232186, 0.00656710519, -0.00434667, 0.000264097209, 0.0231032912, -0.0124990316, 0.0054770736, -0.00927469, 0.00224600383, -0.00297942036, 0.012348311, 0.0225004107, -0.00665861415, -0.0151581708, -0.00698696962, -0.0375078619, -0.000904322718, -0.0011115633, -0.016406998, -0.000627104717, 0.00909705553, -0.00997446384, 0.00151124166, -0.0261607636, -0.00774595467, -0.00061802112, 0.0251057204, 0.0138232186, -0.0132526336, -0.00737453625, 0.0409529, -0.0116377724, 0.00194590865, -0.0200242884, -0.0346441716, 0.00789129175, -0.0142646143, -0.0114655197, 0.0104373917, -0.0225004107, -0.00104091316, -0.00342081604, -0.0102651389, -0.00396179454, 0.0114332233, 0.0166007821, 0.00773518905, -0.0220374838, -0.0128435353, 0.00177096529, -0.0157502871, -0.00361998216, 0.0148136672, 0.00952230301, 0.00190957426, -0.0398547947, 0.0211869888, 0.0273449961, -0.017817311, -0.00548245665, 0.0157502871, 0.0103512648, 0.00614724122, -0.000837036816, 0.0139093446, -0.00493609486, -0.0139631731, 0.0114332233, -0.0116593037, 0.00126564805, 0.00438704155, -0.014232317, 0.000566547387, 0.00332392426, 0.00152066175, -0.00798818376, -0.0047046314, -0.0106204087, -0.0260315742, 0.00418518391, -0.0013484098, 0.0067285914, -0.00800971501, -0.0102543738, 0.0365174115, 0.00848340802, 0.0162993409, 0.0335030034, 0.0268282406, -0.00150182168, 0.000337270641, 0.000935947115, -0.00620107, 0.00809045881, -0.0117669608, -0.0355915576, 0.0354408361, 0.0228449143, 0.0140385339, -0.0228233822, -0.0177419502, -0.005937309, -0.0117131323, -0.0296488665, -0.0236415789, 0.0206917655, 0.0207025297, -0.0294550825, -0.00128583389, -0.0160732605, -0.00213161786, 0.0105504319, -0.0414911881, 0.0206164047, 0.0331369676, -0.000163000135, -0.022715725, -0.00820349902, 0.0168053303, -0.0116700688, -0.0150720449, 0.0237277057, -0.0102005452, -0.0165792499, 0.0136509668, -0.000306991977, -0.0352255218, -0.00215314934, 0.0345795788, 0.00384875434, -0.0110779535, -0.0219513569, 0.0064486824, 0.00368457683, 0.0185816791, 0.00183555973, -0.00133898971, -0.0130911479, -0.00342081604, -0.00694390666, 0.0186785702, 0.00840266515, -0.0177634824, -0.0054286276, -0.0138662811, -0.0239214879, -0.0112071419, 0.0406083949, 0.0230171662, -0.00514333555, 0.00332661578, -0.00463196263, -0.0198520366, -0.0235769842, -0.00302517484, -0.0230817609, 0.0232324805, -0.0155780353, 0.00194052584, 0.0144368662, -0.045517575, 0.0238784254, 0.0324479602, -6.60243e-05, 0.000201184885, 0.00859106611, -0.00332661578, -0.0239860825, -0.00622260151, -0.0162993409, 0.0261392333, -0.00151527883, 0.0181510486, -0.0034127417, -0.0113470964, 0.00318127801, 0.0242013987, -0.0131880399, -0.0106634721, -0.0155242067, 0.00489034038, 0.0049683922, -0.00559280533, -0.00276141404, -0.0124021396, -0.00710539287, -0.0318020135, -0.00739606796, -0.00290675159, -0.0235985164, -0.00184497982, 0.00139685557, -0.015082811, -0.0206702333, 0.0117238984, -0.0132526336, -0.0136832641, 0.0177957788, 0.019044606, -0.0121760592, 0.00463465368, -0.0242875237, -0.0103512648, 0.0230602287, -0.00569508, -0.00775133772, 0.0140385339, 0.00427131, -0.00270623947, -0.000494215055, -0.0510727, -0.0198735688, -0.0259239171, 0.00469655683, 0.00318666105, -0.00239672442, 0.0204118546, 0.000108582644, 0.0058242688, 0.045517575, -0.00114924344, 0.0209716745, 0.0339766964, 0.00189208, -0.00834345352, -0.0627427697, -0.00360921654, 0.0120468708, 0.0575752109, -0.044785507, -0.0177957788, -0.017149834, 0.000145674014, -0.00211143214, -0.0242659934, -0.0140385339, 0.0174082126, -0.0219836552, 0.00907014124, 0.0250626579, -0.0111640794, -0.00717537, 0.00325394678, 0.00710539287, 0.00912397, 0.00069035351, -0.0223927535, 0.00795050338, 0.0253641, 0.0225650053, 0.0193029828, -0.0143399742, 0.0274095908, -0.00810660701, 0.0092854565, 0.0124882655, 0.0145660555, -0.0081173731, 0.0266559888, -0.0131234452, 0.00944156, -0.0104427738, 0.0200135224, 0.0164177641, 0.00954383425, -0.00950077176, -0.0081173731, -0.00763291446, -0.00719690137, -0.00341543299, -0.0048715, -0.0153304227, -0.010835724, -0.0148674957, 0.0195721276, 0.00792358909, -0.0285722911, 0.0169237535, 0.00750372512, 0.013284931, -0.0108034266, 0.00306016346, 0.0357422791, 0.00487688323, -0.0335675962, -0.0132095711, 0.0116593037, -0.0210039709, 0.0287660751, -0.0483166687, -0.0151258735, 0.0203795582, -0.00951692, 0.00751449121, -0.00127103098, -0.00893018674, -0.00999599602, -0.0205195136, -0.0391657874, -0.0125636263, -0.00926930737, -0.0126066888, -0.00909705553, 0.0200350545, 0.0012346966, 0.0151689369, 0.00338582718, 0.0129942559, -0.0125528602, -0.0104966033, -0.00935005117, -0.00260800216, -0.0194214061, -0.0196582526, -0.00609879522, -0.0174943376, -0.0148997931, -0.00316782086, -0.0149320904, -0.00619030418, 0.0158471782, -0.0254502241, 0.00281255133, 0.00840266515, 0.00220024935, -0.00381645723, 0.0190015435, -0.0318020135, -0.00847802497, 0.00182748551, 0.00598575501, 0.00304132351, 0.0212300513, 0.0288306698, 0.0385198407, -0.0143938027, 0.00765982876, 0.0125636263, -0.0271727443, 0.0187001023, 0.0217575729, 0.0122729512, 0.00456467643, -0.00842957944, 0.0120899333, -0.0161593854, 0.0196905509, -0.0216714479, -0.00495224353, -0.019701317, -0.0177311841, -0.0123913744, -2.92273198e-05, -0.00227426388, 0.0150935762, 0.0217791051, 0.021682214, 0.00973223522, -0.00931775384, 0.027431123, 0.00429553306, -0.0103351166, 0.00735838758, -0.0138339847, -0.0101359505, -0.00405599503, -0.0209070798, -0.0245674327, -0.0229741037, -0.00317858672, -0.0216283854, -0.0304024685, -0.00495224353, -2.90591051e-05, 0.0155026754, 0.0171390679, 0.0134571828, 0.0273880586, 0.00893018674, 0.0277756266, 0.0302302167, -0.0116593037, 0.0117561948, -0.00261473074, -0.00239268714, 0.0112394392, 0.00822503, 0.00848879106, 0.00023718286, -0.0151043423, 0.000499597925, -0.000213632782, -0.0159010068, 0.000148029008, -0.0264837369, 0.00790205784, -0.0148029011, -0.0138232186, 0.0132203363, -0.0270004924, 0.0117346635, 0.0410174951, -0.0332661569, 0.0126174549, 0.00563048525, 0.0202826671, 0.00764368, 0.0187001023, -0.000514400832, 0.0143184429, 0.024136804, 0.00162159058, 0.0108949356, 0.00067857845, 0.0189369489, 0.0126928147, 0.0190230738, 0.0236200485, 0.00689546065, -0.0129511934, -0.00260800216, 0.0336321928, -0.00398601778, 0.00458620815, -0.0049683922, -0.00804739539, 0.000890192692, 0.0130265532, 0.0122621851, -0.0156749263, -0.0115085831, 0.0181079861, 0.000727360777, 0.0222635642, -0.0191522632, -0.0271512121, 0.011497817, 0.0156641621, -0.00199031737, -0.00640023639, -0.0128973648, 0.0170421768, 0.0187431648, 0.00960842893, 0.0107119177, 0.0167407356, -0.00328355259, 0.00042491057, -0.00574352592, 0.00683086598, -0.0212408174, 0.00377339404, 0.0117884921, 0.0145014608, 0.0113040339, 0.000629796181, 0.00976991467, 0.00109272322, -0.0240937416, 0.00706233, 0.027990941, 0.022242032, -0.0122621851, 0.000830308185, 0.000143319, -0.0119822761, -0.0102489907, -0.00103620312, -0.00210201205, 0.00884406082, 0.00303055765, 0.00240210723, 0.0217468087, 0.00168887654, 0.00976991467, -0.00620107, 0.0104481569, 0.0159440711, 0.019324515, 0.0068254834, 0.0214991961, 0.0163747, 0.00749834254, -0.00880638, 0.00319473539, 0.00176961953, -0.0148244333, 0.0014802902, 0.0155888014, -0.00183690549, -0.0126389861, 0.0107280668, 0.007304559, 0.0085210884, -0.0316297635, 0.0242875237, -0.0151904682, 0.00952768605, -0.00803124718, -0.00882253, 0.012445203, 0.0132418685, -0.00747142825, -0.000497579342, 0.00758985151, 0.00419325847, -0.00328893564, 0.0141461911, -0.014609118, 0.0370126367, 0.00162697339, 0.00691160932, -0.0110779535, -0.00905399304, 0.00461850548, 0.00327009545, 0.00322703249, 0.00284754, 0.00186920271, -0.00917779934, 0.00243978738, -0.00308438647, -0.01084649, 0.0110779535, -0.00187458564, 0.0237277057, -0.00925315917, -0.0144799286, -0.0245889649, -0.0280555356, 0.0265698619, -0.00168753078, 0.00299556903, 0.0189692453, -0.0153842522, 0.00863412861, 0.00177500246, -0.0029686545, -0.0164715927, -0.00268470799, 0.0214776639, -0.00270623947, 0.00424708705, 0.00543131912, 0.0137263266, -0.00385682867, -0.0029121344, 0.00205222052, -0.0176019948, -0.00605573226, 0.00567354821, 0.0317374207, -0.00180729968, 0.00651865965, -0.0011923064, -0.00243171304, -0.0139201107, -0.00960304588, -0.0248688739, 0.01197151, 0.0169560499, -0.00171175366, -0.0143507402, 0.0116054751, 0.00488226628, -0.0140815964, -0.00947385654, 0.0085372366, -0.0193352811, 0.000236173568, 0.0150935762, 0.00965149142, 0.0105289, 0.0165577177, 0.0346441716, -0.0207132958, -0.00197282294, -0.00107926608, 0.00714307278, -0.00256090192, 0.0104535399, -0.00247208448, -0.00676088873, -0.0350317396, 0.013575606, -0.0197874419, -0.0142646143, -0.0173866805, -0.0113686286, -0.00260800216, 0.021768339, 0.00691699237, -0.0437950566, -0.0039967834, -0.00884406082, -0.0255363509, -0.0135540748, -0.00882253, -0.022435816, 0.0113578625, 0.0167299695, -0.0158148818, 0.0167622678, 0.00201454037, 0.000841746805, -0.00124882662, -0.000982374419, -0.0162778087, 0.0213269442, -0.00604496663, -0.013198805, 0.023383202, 0.0208424851, 0.020261135, 0.00136253983, -0.00353116496, -0.0156103326, -0.00466156844, 0.0103566479, -0.0271296818, 0.00363343954, 0.00880638, -0.0143399742, -0.0206487011, -0.0138770472, -0.00240210723, 0.0235554539, -0.00120307214, 0.0063248761, -0.0215207264, 0.000345849607, 0.000339121, 0.00403446332, -0.0240291469, -0.0333092213, -0.00945770834, -0.0112071419, 0.0191953257, 0.0276249051, 0.000944021391, -0.0339982286, 0.0114870518, -0.02941202, 2.26669436e-05, 0.0122944824, 0.0118100243, -0.00771904038, -0.00854800269, -0.0119822761, 0.0129834907, 0.00958689768, 0.0163639355, -0.000164598168, -0.00967840571, 0.00873102061, 0.00162293634, 0.00877408311, 0.0331369676, 0.00877946615, -0.0142753795, 0.0155780353, -0.00455929385, 0.010270522, 0.0231032912, -0.0106903864, -0.0104858372, 0.0227372572, -0.00490918057, -0.00308438647, 0.0114655197, -0.00721843308, 0.00238192151, -0.0261177011, -0.0138662811, 0.0122406539, -0.0148136672, -0.0399409197, -0.00764906313, 0.00396986911, -0.00705694687, 0.00312206638, -0.00549860485, 0.00195129158, -0.00870410632, -0.00121114647, 0.000757639413, 0.0253641, 0.0320819244, 0.0143722715, 0.00734762195, 0.0110025927, -0.028464634, -0.0134356515, -0.0221128426, -0.014985919, 0.00677165436, 0.0223712213, -0.00341812451, -0.0131342104, -0.0121760592, -0.0014022385, -0.0115516456, 0.00825194456, 0.00134571828, 0.00415288657, 0.00141300424, 0.00276948838, 0.0113148, 0.013575606, 0.0114439884, 0.00455660233, -0.00670706, -0.0253856294, -0.0149105592, -0.0278832838, -0.00547169056, 0.00383798871, 0.00530482177, 0.00260800216, 0.0284431018, 0.000613647571, -3.97144595e-06, 0.0125205629, -0.0162347462, -0.0358499363, 0.0204979815, -0.000826271, -0.00887635816, 0.00373033108, -0.00368726812, -0.00737453625, -0.000360316073, -0.00923162792, 0.0106688552, 0.00908629, -0.00275872252, 0.00448393356, -0.0129619585, -0.0356992148, 0.00210874062, 0.00961919408, -0.0190769024, 0.0201642439, -0.028550759, 0.010744215, -0.00931775384, 0.00771365734, -0.0154488459, 0.00959228, 0.00992601831, -0.00155565038, 0.0197228473, 0.00896786712, 0.00543939322, -0.0095653655, -0.012068402, 0.0102328425, 0.00524291862, 0.0148674957, -0.00872025453, 0.0189261828, 0.0105289, 0.0151258735, -0.0215422586, -0.0113793937, -0.00653480832, 0.00902707875, 0.0217468087, -0.0194644704, -0.0176342931, 0.0281201303, 0.00460235681, -0.0107657462, 0.00335891289, -0.00415288657, -0.00141838705, -0.00745527958, -0.00680395169, 0.0169022214, 0.0158902425, 0.0102974363, 0.0349671431, -0.0212623496, 0.00664784852, 0.022435816, -0.00727764471, 0.00489841448, -0.0120576359, -0.018764697, -0.00855876878, -0.0082573276, 0.0110456562, 0.00559818838, 0.00598037196, 0.0152442968, -0.00462119654, -0.0216283854, 0.0101574818, 0.00945770834, 0.0157610532, -0.0181941111, -0.00686316332, -0.0156641621, 0.00224734959, 0.00303324917, 0.00147759868, -0.00242363871, 0.0245674327, 0.00661555119, -0.0067285914, 0.0115516456, 0.000183522337, -0.0191522632, 0.0220697802, 0.0014022385, 0.00684701465, -0.0359360613, 0.00161620765, -0.00901093, -0.019324515, -0.0180541575, -0.00100256014, 0.0164392944, 0.00446240185, 0.0309622865, 0.0102005452, -0.0185278505, 0.00239941571, -0.00638947077, 0.012918896, 0.00776210334, -0.00420940667, 0.0195075329, 0.00691160932, 0.0106957695, -0.0074445135, -0.00221908954, 0.0285938233, -0.00874716882, -0.0067285914, -0.0265052672, 0.0112932678, -0.0137155615, -0.0413404666, -0.0195613615, -0.0218221676, -0.00918318145, -0.0114116911, -0.0165038891, -0.012165294, 0.0075414055, 0.00368188531, 0.0232109502, -0.0339336321, -0.0191522632, -0.0133279944, 0.00348810176, 0.00943079405, 0.0384337157, 0.037314076, 0.00371687394, 0.0038083829, 0.00893018674, 0.00636255601, 0.0355054326, -0.0167837981, -0.00066747627, 0.0186678041, -0.0138770472, -0.00335353, -0.0166761409, -0.0175589323, 0.0257947296, -0.00659402, 0.0303809363, 0.0254286937, -0.0109541472, 0.0143507402, -0.0099529326, -0.0067770374, -0.00072332361, 0.0043170643, 0.00299018598, 0.00964610931, -0.0036765025, -0.020734828, -0.00617953856, -0.0074175992, 0.0211762227, -0.000484795019, 0.00831653923, -0.0112286732, 0.0078966748, 0.0127358781, -0.00756293675, 0.0251918472, 0.0214453675, -0.0020226147, 0.00814428739, 0.0134571828, -0.00222985516, 0.00766521133, -0.00422017276, -0.0136509668, -0.0315436386, 0.00218006363, -0.0322111137, -0.00262549636, 0.0207563601, 0.019798208, -0.0149536217, 0.0125959236, -0.00994216651, 0.00822503, 0.0103835622, -0.00758985151, 0.017817311, -0.016127089, 0.000749565079, 0.00641638506, -0.0075414055, -0.000174102301, -0.00499530649, -0.00788052659, -0.0212515835, 0.0207563601, 0.00788052659, -0.0451300107, -0.0177204181, -0.0173759144, 0.0167945642, 0.0103997113, 0.00389989163, 5.33293451e-06, -0.0226511303, -0.00142780715, -0.0229525715, -0.00771904038, 0.0175481662, 0.0389074087, -0.0161916818, -0.000171831402, -0.0167299695, 0.0222205017, 0.0095653655, 0.00678242045, 0.0192168579, 0.0109810615, 0.00507874088, 0.00823041331, -0.00177903962, -0.00666938, 0.0170206446, 0.0011236748, -0.00021800636, -0.00266721379, 0.0289167948, -0.0142969117, 0.0153519548, -0.00751987379, 0.013005022, 0.013478715, -0.00242498447, 0.0125205629, 0.0018638199, 0.0100659728, -0.00800971501, -0.00662631681, 0.00713768974, -0.0362375043, -0.0163531695, 0.00760599971, 0.000126161089, 0.0152012343, 0.0207132958, -0.0114439884, 0.00491456315, -0.0192276239, -0.00926392525, 0.0328785889, 0.013381823, -0.00723458175, 0.000574621721, -0.00340735889, -0.00762753142, 0.0235123895, -0.00957074855, 0.0149966851, -0.00654557394, 0.00946847443, -0.010270522, 0.00679318607, -0.010555814, -0.0202934314, 0.00712154154, 0.00195532874, -0.0159225389, 0.00821964722, 0.00113242201, -0.00156372471, 0.0193783436, -0.00749834254, -0.0277325623, 0.0110187419, -0.000105554784, 0.0199273974, 0.0272373389, 0.00607726397, -0.0119392127, -0.0053532673, 0.0120038074, -0.0148782618, -0.00469117425, 0.00498992344, -0.02394302, -0.0199273974, -0.0140385339, -0.013295697, -0.0058727148, 0.00579197146, -0.0124236718, 0.0342781357, 0.0179572646, 0.0174835715, 0.0221774373, 0.00855876878, 0.0136294356, -0.0122191226, 0.0115301143, -0.00743374787, -0.00958151463, -0.00370072527, -0.00825194456, -0.012348311, -0.0122621851, 0.0133710569, -0.0189154167, -0.00311130076, -0.000413135509, -0.00686854636, 0.0202396028, 0.00369534246, -0.00743913092, -0.0159225389, -0.00886559207, 0.00319742667, 0.00208990043, -0.00842957944, -0.0230817609, -0.0211546924, 0.0195613615, -0.00564125134, -0.0188292898, -0.000454852794, -0.00308976928, -0.0187862273, -0.00648636231, 0.0192383882, 0.00267528812, -0.00442472193, 0.00853185449, 0.00666399719, 0.0122944824, -0.019981226, -0.0135971382, -0.00294443173, 0.00391334901, 0.0182694718, -0.0031247579, 0.0169129875, 0.0274957158, -0.0300794952, -0.0113793937, 0.023663111, -0.00869334, 0.0171606, 0.00879561529, -0.00181537401, -0.000935274235, 0.00926392525, -0.000837036816, -0.022048248, -0.0122729512, -0.0165469516, -0.00865566, 0.0381107442, 0.00435474468, 0.00558742229, -0.0173974466, -0.00932851899, 0.0207132958, 0.00795050338, 0.019798208, 0.00409098389, 0.00109945191, 0.00219755806, 0.00752525683, -0.00513795251, 0.0138447499, 0.00421478972, -0.0165361874, 0.00398332626, 1.8051549e-05, 0.0105504319, -0.00182210258, -0.0257301349, 0.0218114033, -0.00786976051, -0.000500607188, -0.00926930737, -0.0122729512, 0.0155672692, 0.00879561529, -0.0541732349, -0.0157072246, 0.0122514199, 0.0214238353, 0.0207778905, 0.0134356515, -0.00406945217, -0.0154165486, 0.00150316732, -0.0184847862, 0.0195613615, -0.0293474253, -0.0115408804, 0.00292020873, -0.0105450489, 0.0122514199, -0.00434397859, 0.0117023662, 0.00834883656, 0.00972685218, -0.00158929336, 0.00319204386, 0.0131126791, -0.0163101051, -0.0147706047, 0.00528598158, 0.00389450882, -0.0167299695, -0.00821426418, -0.00231732684, -0.00612571, -0.0165361874, 0.0276033748, 0.00926930737, -0.0155457379, -0.0111640794, 0.00334007293, -0.0133602917, -0.0039402633, -0.0200135224, -0.00068396132, -0.0023428956, -0.00621721847, -1.45821195e-05, -0.00983450934, -0.00653480832, 0.00132284116, 0.0133279944, -0.00901093, 0.0108572552, 0.00508950651, 0.000860586879, 0.000876735488, 0.0129834907, 0.00429553306, 0.00522407843, 0.0165577177, -0.0125313289, 0.00252995035, 2.63256152e-05, 0.00154084747, 0.0134571828, -0.0134894801, 8.05748859e-05, 0.00671782577, -0.0201427117, 0.0046642595, 0.0193891097, 0.00973761734, -0.0230171662, -0.029778054, 0.0169022214, -0.0141784884, 0.00345311314, -0.0028879114, -0.0154273147, -0.0172790233, 0.000346186047, 0.0137801552, 0.0145014608, 0.00648097927, -0.00997446384, 0.0273449961, 0.00195802026, -0.0232109502, -0.00699773524, 0.0214991961, 0.0209070798, 0.0186462738, -0.00764906313, 0.0110671874, -0.00726687908, -0.00418249238, 0.00480152294, 0.0306823775, 0.00556589104, 0.0328785889, -0.00210470334, 0.0151258735, -0.00431975583, -0.0134248855, -0.0171283036, -0.00151662459, 0.00567893125, -0.00152066175, 0.00721843308, -0.0146737127, -0.0243951809, 0.0257301349, 0.0171175376, -0.00380030856, 0.0218006372, 0.0214453675, -0.0423524454, -0.00269951089, 0.014232317, -0.0203257296, -0.00187727704, -0.0121006994, 0.000158374227, -0.00798280071, -0.00654019089, 0.00736915367, -0.0207025297, -0.0178711396, -0.0175912306, -0.00183825125, 0.00377608556, 0.0142861456, 0.0105235176, 0.0130157871, -0.00445701927, 0.00209528347, -0.00359306787, -0.0203257296, 0.00723996432, 0.00261338498, -0.021768339, 0.014609118, -0.00689546065, -0.000351905328, 0.00687931199, 0.0177096538, -0.0256655402, -0.00194994581, -0.0142753795, 0.00350694195, -0.000670504174, -0.0189907774, 0.0210362691, -0.0126174549, 0.0149966851, 0.00860721432, 0.00572737725, -0.0221774373, 0.00628719619, 0.0044004987, -0.0216499157, -0.00563586829, 0.0201104153, 0.0063248761, -0.00861259736, 0.0111102508, -0.0145445233, 0.000159719944, -0.00540709635, 0.00389720034, -0.00918318145, 0.0101574818, -0.0296273343, 0.0198520366, -0.0105934944, -0.0238784254, 0.0182694718, 0.00213834643, 0.00935543329, -0.00764368, 0.0144906947, -0.00650251098, 0.0067285914, -0.00135311973, 0.0117884921, -0.0111963768, 0.00246535591, 0.0107765123, 0.0132526336, 0.00443279603, -0.000244416093, -0.0117777269, -0.00914011896, 0.0106096435, 0.0202934314, 0.00100928871, -0.000623404, -0.01197151, -0.00266721379, 0.0152335316, 0.0266559888, 0.00874716882, 0.00330239278, 0.0103135854, -0.0172359608, 0.00215718639, -0.0056843143, 0.00998523, 0.0127466442, 0.0190123077, -0.0132203363, 0.00407752628, 0.00186920271, 0.0245028399, 0.00944694225, 0.0190876685, -0.0046561854, 0.0170960054, -0.00284484844, 0.00694390666, -0.00572737725, 0.0145983519, 0.0041205897, 0.0217252765, -0.0138232186, 0.00968378875, 0.00344773033, 0.0145660555, -0.0104750711, 0.0137047954, -0.00670167711, 0.0110779535, -8.57054329e-05, -0.00626028143, -0.0255363509, 0.01197151, -0.00410982361, -0.0172790233, -0.0102382246, -0.00884944387, -0.00142646139, -0.0228018519, -0.0222205017, 0.00105302455, -0.00907552429, 0.00710001, -0.000109507826, 0.0132526336, -0.0140385339, -0.0160732605, 0.0167515017, 0.00189342571, -0.000221707087, -0.00993678439, -0.00829500798, -4.08341402e-05, 0.0114870518, -0.00117683061, 0.0309838187, -0.00774595467, -0.00948462263, -0.0299503077, -0.00801509805, 0.020358026, -0.0124775, -0.0303809363, -0.0299072433, -0.0121006994, -0.044957757, 0.0048365118, 0.0162993409, 0.0138124526, -0.0021962123, 0.021768339, -0.0134679489, -0.00229714112, -0.00097699149, 0.0147167752, 0.0190123077, 0.019798208, 0.017343618, -0.0190769024, 0.00698158657, -0.00996369869, -0.0182479396, -0.000627777597, 0.0125205629, -0.0199596938, 0.0248473436, -0.0176773556, 0.00656172261, 0.000112115158, 0.00389181729, 0.00908629, -0.00383798871, -0.0182479396, 0.00509758107, -0.0364958793, -0.00917241629, -0.018657038, 0.0150720449, -0.00396179454, -0.000352578209, -0.0125959236, -0.00310860923, -0.00694928924, -0.0257086027, 0.047024779, -0.0237277057, 0.00308707776, 0.00573276, -0.00609341264, -0.00944694225, 0.00748757692, -0.0135002462, 0.0194644704, 0.0114870518, -0.0134464176, -0.00665323157, 0.0142215509, -0.00758985151, 0.0265268, -0.0117346635, -0.00543939322, -0.0148459645, 0.00294174021, 0.00153815607, -0.000716595, 0.0152658289, -0.00469117425, 0.0150182163, -0.000826943899, 0.0160409622, -0.00206836895, -0.044484064, -0.00111425482, 0.00984527543, 0.0178711396, -0.0185278505, -0.0181187522, 0.00930698775, -0.000222043527, 0.00724534737, -0.00680395169, 0.0175589323, -0.00730994204, 0.0124559691, 0.0166115463, 0.00476653408, 0.00564663392, 0.0015758361, -0.0030924608, -0.00148163585, -0.020261135, -0.00208990043, -0.00626028143, -0.00923162792, 0.0115839429, 0.0164392944, -0.0122083565, -0.024136804, -0.0202288385, -0.00802586414, 0.0138232186, -0.00139954709, -0.00894095283, 0.0107549811, -0.0134033542, 0.0141138937, -0.010275905, 0.015933305, -0.00490918057, 0.0251057204, -0.0019741687, -0.00968378875, -0.0200888831, -0.0114332233, -0.0015368103, -0.00191764859, 0.00802048109, -0.0171713661, -0.00685778074, 0.031565167, 0.00616339, 0.010744215, -0.0123267798, -0.0290029217, -0.0190984346, 0.00721305, -0.0485319868, 0.00983989239, 0.000704483537, -0.0082411794, 0.00243978738, -0.0140708303, -0.0142000197, -0.0174512751, -0.020734828, -0.0101036532, 0.00469655683, 0.0263330154, -0.0271727443, -0.0122514199, -0.00952230301, -0.00843496248, 0.0092854565, 0.00501683773, -0.0211977549, -0.00692237495, -0.00161351624, 0.0159656014, -0.0134894801, -0.0264191423, -0.0276895, -0.00777286896, 0.00691160932, -0.00832730532, 0.00316243805, -0.0129511934, -0.0180649236, 0.0102489907, -0.00380030856, 0.013381823, 0.0332015641, 0.000710539287, 0.00222312659, 0.00242633023, 0.00164312206, -0.00830577314, -0.00134168111, -0.00876331795, 0.0150505137, -0.00854262, 0.0172036625, 0.013758624, -0.0041367379, 0.00280716829, -0.00799895, 0.0231463555, 0.0196367223, 0.00575429155, 0.021208521, -0.00267528812, -0.00642715069, -0.00402100617, -0.0103082024, -0.0128435353, 0.0255148187, 0.0114332233, 0.00856415182, -0.00849417411, 0.0318666101, 0.010744215, -0.029691929, -5.105319e-05, 0.00929084, -0.0206056386, 0.0111533133, 0.0145983519, -0.00599652063, -0.0243736506, -0.0144045688, -0.00124748086, -0.00810660701, -0.0126497522, -0.00333469, -0.00903246179, 0.00996908173, 0.0108034266, -0.00419594953, -0.00441126479, 0.000537950895, -0.00350694195, 0.0203364957, -0.0168053303, -0.0156964585, 0.00463465368, -0.0204979815, -0.0201427117, -2.59681583e-05, -0.0157610532, -0.0272804014, -0.0100713558, -0.00975914951, -0.0157718193, -0.0163854659, 0.00434667, -0.0153196575, -0.00697082095, -0.00396717759, 0.0378954262, -0.00582965184, 0.0341489464, -0.010652706, 0.0166976731, 0.0387997515, 0.00415288657, -0.0172682572, 0.0235339217, -0.0148351984, 0.017149834, -0.000367044675, -0.0107980436, 0.00507066678, -0.00348002766, 0.0363451615, 0.000213128136, 0.0100659728, 0.0283785071, 0.00072265073, -0.00281524262, 0.0150397476, 0.00496300915, 0.0258377921, 0.028658418, 0.0103458827, 0.0232540127, 0.0141246598, -0.0085803, 0.0101198014, -0.0147275412, 0.0101736309, 0.0207778905, -0.00323779834, 0.019044606, 0.0114762858, 0.00345042185, 0.0116593037, -0.0125636263, -0.00748219388, -0.0160840247, -0.00642176764, -0.0168376267, -0.00826809369, 0.00672320882, -0.0157179907, -0.00730994204, 0.0126928147, 0.0010933961, -0.00608802959, 0.0170206446, -0.00476384303, -0.00180460827, -0.0307685044, 0.00195398298, 0.00377608556, 0.00741221663, 0.0131449765, 0.00135513837, -0.0163101051, -0.0108141927, 0.00297403755, 0.0203149635, -0.00668552844, -0.0188077595, -0.00919394754, -0.00327816978, -0.0107980436, -0.0213807728, -0.00795588642, -0.0014587586, 0.0158471782, -0.0397256054, -0.00297672884, 0.00744989654, -0.0200996492, -0.0071646045, 0.00703003258, 0.00376532, -0.00585118309, -0.00232271, 0.0182694718, -0.0116162403, -0.00342081604, -0.0159656014, -0.0252564419, -0.000257873267, -0.00792358909, -0.00525637576, 0.0110779535, 0.0149213243, 0.0145983519, -0.000882791239, 0.00414750399, -0.0189154167, -0.0157502871, -0.0155457379, 0.000938638521, -0.0101897791, -0.0318881422, 0.00523484405, 0.00265375641, 0.0122191226, -0.0192060918, 0.0212515835, 0.00367919379, 0.0116485376, -0.0180756878, 0.0103512648, -0.00699773524, -0.0173866805, -0.00424708705, 0.00369265117, -0.0110671874, 0.00474231131, -0.0111640794, -0.0227372572, 0.00757908542, -0.00922086183, 0.0092854565, -0.011217908, -0.0179465, 0.0403715484, -0.0103297336, -0.0141031276, 0.00880638, -0.0126712834, -0.00184632558, -0.0294766147, 0.00356077077, 0.0030682378, 0.021402305, -0.0101682479, 0.0254932884, -0.0102489907, -0.0263545476, 0.00330508407, -0.0205948725, -0.000238192137, -0.00577044, -0.00160678767, -0.0202180725, 0.000247612159, 0.0275603104, 0.00800971501, -0.0207240619, -0.00255821063, 0.00732070766, 0.00808507577, -0.00390258315, -0.0109918276, 0.0686424, -0.0100013781, 0.0013033282, -0.0101951621, 0.0128112379, -0.0272158068, 0.000860586879, 0.0225004107, 0.00857491698, 0.0102113103, -0.000174943387, 0.0356776826, -0.00287445425, 0.00468309969, -0.0277325623, 0.00328355259, -0.0016538878, -0.0139847044, 0.00444356166, -0.00494416896, -0.00438165898, 0.00747681083, 0.0130265532, -0.0197228473, 0.00387297734, -0.00207644328, -0.000553090242, -0.0209178459, -0.00510565517, -0.000703810656, -0.00798280071, 0.0262038279, -0.00252725906, 0.00798280071, 0.00574352592, 0.0225650053, 0.0133387595, 0.0301225595, 0.00357422791, -0.0167299695, 0.0050249123, 0.029691929, 0.0171606, -0.00185978273, 0.00229444983, 0.0157179907, -0.00118086778, 0.00553359371, 0.029218236, -0.0254717562, -0.00559280533, -0.012725112, 0.0209393762, 0.00936619937, 0.00307362061, -0.000899612671, 0.0101574818, -0.0153950173, -0.00984527543, -0.00712154154, 0.00276948838, 0.0108518722, 0.0181295164, 0.00119567069, -0.00071726786, -0.0277325623, -0.00803124718, 0.000165943886, -0.0105611971, 0.00882791169, 0.000361325365, -0.0120791672, 0.00857491698, -0.000900285551, 0.0138232186, 0.0161593854, -0.0164608266, 0.0257516652, -0.00133898971, -0.00250841887, -0.00355000491, 0.00944694225, -0.0120899333, -0.0312852599, 0.00263626222, -0.0114332233, 0.00610956131, -0.00400216645, 0.0101736309, 0.0146844778, -0.00856953394, 0.0231463555, 0.00231463555, 0.0278617516, 0.0113578625, 0.00627643, -0.00623875, 0.000486477162, 0.0057973545, 0.0263330154, 0.00681471778, -0.0150505137, -0.00350694195, 0.023749236, -0.00902707875, 0.0122514199, 0.00304939761, 0.0195075329, 0.00971608609, -0.0133172283, -0.00753602246, -0.00308438647, -0.0150935762, 0.0273665283, 0.0164715927, 0.00483920285, -0.00933390204, 0.00235500699, 0.00790744089, -0.0128758326, 0.0100444416, 0.00876331795, -0.00970532093, 0.0142969117, 0.00307631213, 0.0166115463, -0.00720766746, 0.0197766759, -0.000719286443, 0.00559280533, -0.00457544206, -0.00402638922, 0.0039967834, -0.0166976731, 0.0215960871, 0.00943617709, 0.00229579536, 0.016966816, -0.0144261, 0.00427938439, 0.00896786712, 0.0101305675, 0.0112609705, 0.0035446221, -0.00832730532, -0.00560357096, 0.00410713209, -0.00675012311, 0.0207671244, 0.0169883482, -0.00668552844, 0.0216283854, -0.0199596938, -0.0134464176, -0.00389989163, 0.0018543998, -0.0166761409, -0.0111640794, 0.0159117728, -0.0181079861, -0.0119822761, 0.0114224572, 0.0239645522, -0.0188400559, 0.00171175366, -0.0128112379, 0.00707847811, 0.00448124204, -0.00193648867, -0.0061364756, 0.0102328425, 0.00703541515, -0.0115516456, 0.00615800684, 0.00126161089, -0.00941464491, -0.00566278258, 0.00446509337, -0.0176558234, -0.0106580891, -0.017246725, 0.0217898712, -0.0121437619, 0.0250626579, -0.004524305, -0.0171928965, 0.00746604521, 0.00871487148, -0.00198762584, 0.0138770472, 0.00659402, -0.00371149112, -0.00396717759, 0.00670167711, -0.00147490727, -0.0130265532, 0.00915626716, 0.0100552076, 0.0108518722, -0.0057973545, 0.0182694718, 0.00699773524, -0.00676088873, 0.00139820133, 0.0127358781, 0.00526175881, -0.000509017962, 0.0149751538, 0.00437358441, -0.0235554539, -0.00272642542] |
24 Dec, 2024 | Python String strip() Method
24 Dec, 2024
strip() method removes all leading and trailing whitespace characters from a string in Python. We can also customize it to strip specific characters by passing a string of characters to remove. It doesn’t modify the original string but returns a new one.
Let’s take an example to remove whitespace from both ends of a string.
Python
s = " GeeksforGeeks "
res = s.strip()
print(res)
OutputGeeksforGeeks
Explanation:
The method removes spaces at the start and end of the string.Inner spaces are not affected. This is useful for cleaning up user inputs or formatted text.Table of Content
Syntax of strip() MethodExamples of strip() MethodFrequently Asked Questions (FAQs) on Python strip() MethodSyntax of strip() Methods.strip(chars)
Parameters:chars(optional)A string specifying the set of characters to remove from the beginning and end of the string.If omitted, strip() removes all leading and trailing whitespace by default.Return Type:String: A new string with the specified characters (or whitespace) removed from both ends is returned.Examples of strip() MethodRemoving Custom CharactersWe can also use custom characters from the beginning and end of a string. This is useful when we want to clean up specific unwanted characters such as symbols, punctuation, or any other characters that are not part of the core string content
Python
s = ' ##*#GeeksforGeeks#**## '
# removes all occurrences of '#', '*', and ' '
# from start and end of the string
res = s.strip('#* ')
print(res)
OutputGeeksforGeeks
Explanation:
strip(‘#* ‘) removes any #, *, and spaces from both beginning and end of the string.It stops stripping characters from both end once it encounters a character that are not in the specified set of characters.Removing Newline CharactersWe can also remove the leading and trailing newline characters (\n) from a string.
Python
s = '\nGeeks for Geeks\n'
# Removing newline characters from both ends
res = s.strip()
print(res)
OutputGeeks for Geeks
Frequently Asked Questions (FAQs) on Python strip() MethodWhat characters does strip() remove by default?By default, strip() removes whitespace characters, including spaces, tabs (\t), and newlines (\n).
Can strip() remove characters from the middle of a string?No, strip() only removes characters from the beginning and end of a string. Characters in the middle of the string remain unaffected.
How is strip() different from replace()?The strip() method is used for trimming characters from the ends of a string, while replace() can replace occurrences of a character or substring anywhere in the string. | NLP/Natural Language Processing (NLP) Tutorial/AI ML DS - Projects/30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated]/Does Artificial Intelligence Require Coding?/Artificial Intelligence – Boon or Bane/Artificial Intelligence Examples/Agents in Artificial Intelligence/What are Diffusion Models?/ML | Common Loss Functions/Loss Functions in Deep Learning/Kaiming Initialization in Deep Learning/Swift - Initialization/Swift – If Statement/6 Best iOS Project Ideas For Beginners/Swift Programming Language/Introduction to Visual Programming Language/What is D Programming Language: Usage and Applications/Best Programming Languages for Data Science in 2024/5 Best Languages for Competitive Programming/MEX (Minimum Excluded) in Competitive Programming/Rearrange Array to maximize sum of MEX of all Subarrays starting from first index/Minimize moves to segregate even and odd by swapping adjacent elements/Minimum elements to be removed such that sum of adjacent elements is always even/Maximum sum such that exactly half of the elements are selected and no two adjacent/Maximum length subsequence such that adjacent elements in the subsequence have a common factor/Longest subsequence such that difference between adjacents is one/Longest Increasing Subsequence using Longest Common Subsequence Algorithm/Longest Common Subsequence (LCS)/Minimum insertions to form a palindrome with permutations allowed/Print longest palindrome word in a sentence/Python String split()/Python String strip() Method | https://www.geeksforgeeks.org/python-string-strip/?ref=ml_lbp | NLP | Python String strip() Method | Artificial Intelligence – Boon or Bane, AI ML DS - Projects, Longest Common Subsequence (LCS), Rearrange Array to maximize sum of MEX of all Subarrays starting from first index, MEX (Minimum Excluded) in Competitive Programming, Swift - Initialization, Minimum insertions to form a palindrome with permutations allowed, Longest Increasing Subsequence using Longest Common Subsequence Algorithm, 6 Best iOS Project Ideas For Beginners, ML | Common Loss Functions, Python String strip() Method, Artificial Intelligence Examples, Python String split(), Longest subsequence such that difference between adjacents is one, What is D Programming Language: Usage and Applications, 30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated], Swift – If Statement, Natural Language Processing (NLP) Tutorial, Loss Functions in Deep Learning, Minimize moves to segregate even and odd by swapping adjacent elements, Maximum length subsequence such that adjacent elements in the subsequence have a common factor, Does Artificial Intelligence Require Coding?, Print longest palindrome word in a sentence, Best Programming Languages for Data Science in 2024, NLP, 5 Best Languages for Competitive Programming, Maximum sum such that exactly half of the elements are selected and no two adjacent, Swift Programming Language, Minimum elements to be removed such that sum of adjacent elements is always even, Agents in Artificial Intelligence, What are Diffusion Models?, Kaiming Initialization in Deep Learning, Introduction to Visual Programming Language | GeeksforGeeks | [-0.00154225237, 0.0186500642, -0.00354129751, 0.0352145694, -0.00547689945, -0.00583679648, 0.0216676649, -0.025543483, 0.00951420888, -0.0794358, -0.0610533543, 0.006538135, -0.0215569288, 0.0380199254, -0.0153002515, 0.00450563803, 0.00479401695, -0.011470574, 0.00261617685, -0.00722101703, 0.0369863734, 0.0118120154, -0.0632311925, -0.0417850055, 0.00861908, 0.0350853764, -0.0207633078, 0.00105143082, 0.00869751908, 0.0117566464, 0.0146542815, -0.01401754, -0.00200135214, -0.0193975437, -0.0501641519, -0.0280719921, 0.00581834046, -0.00851757079, 0.00309834699, -0.00507086143, 0.01481116, -0.028108906, 0.0215384718, 0.0112214144, -0.0226458479, 0.055073522, -0.0286810491, -0.00870674755, 0.0678083524, -0.0212616269, 0.0224797409, 0.0224797409, 0.00729484251, -0.0171181932, 0.0269461609, 0.0225535668, 0.0451440476, 0.0035966665, -0.0404930636, -0.0532648079, -0.00502472045, -0.0144974031, 0.00708259502, -0.01372224, -0.00687034801, -0.00818997156, 0.0087159751, -0.0038342909, 0.0419326536, -0.0202280767, 0.0410467535, 0.0318001583, 0.00815767329, -0.0124210725, -0.0199512318, -0.0368018113, 0.026761597, -0.00944961235, 0.00448718155, 0.0347162522, 0.00337519101, -0.00845297333, 0.0356021523, -0.0101694074, 0.0183639918, 0.027278373, 0.027130723, 0.000980489538, 0.0365065113, -0.00717949076, 0.00199904526, 0.0499057658, -0.00671808375, -0.0208555888, -0.00813921727, 0.0129563045, -0.0159923621, 0.0350300074, -0.013703783, 0.0185854677, -0.00629820349, -0.0152171981, -0.0182071142, -0.0273152851, -0.0028007396, -0.00457715616, 0.00890053809, 0.0193606317, -0.00322984788, 0.00582756847, 0.000748055871, -0.0208186768, -0.00681497902, 0.0432245955, -0.0327045172, -0.013334658, -0.00246391259, -0.0434091575, 0.0323353931, 0.00973568484, 0.0186777487, 0.028164275, 0.0180963762, 0.0362112112, -0.0456977338, 0.00347670051, -0.0316709653, -0.0227012169, 0.00155724806, -0.00420341641, -0.0229411479, 0.00269461609, -0.00864215, 0.0173581261, 0.00814383104, 0.00896052085, 0.0161861517, 0.038832, 0.00613209698, 0.00978182536, -0.0219075978, 0.02729683, 0.00895590708, -0.0115351714, -0.0194898248, 0.00399809051, 0.0221475288, 0.0153187076, -0.0087898, -0.027758237, -0.0302867461, -0.0321877412, -0.0141005935, 0.0212800838, 0.0184009057, -0.00591985, -5.48371236e-06, 0.025525026, -0.00483554369, -0.0222767219, 0.000172739194, -0.00509854546, 0.026521666, 0.00572144473, 0.0223690048, 0.0282750111, 0.0482447, 0.00879441481, -0.0130301295, 0.0242146309, -0.0451440476, -0.00831455179, -0.0306743272, 0.00415266166, -0.0378722735, -0.0378722735, -0.0161030982, -0.0321139172, -0.00783930253, 0.0136576425, -0.0505332798, 0.00442950567, 0.0231257118, -0.0032690675, 0.0231995359, 0.0208925027, -0.0287917871, 0.000827071781, -0.00188830751, -0.0435937196, -0.00162415206, 0.0164629966, -0.0284411181, -0.0123657035, -0.0148942135, 0.0150603196, -0.0179948676, 0.0289578941, 0.0216307528, 0.0145250876, 0.00233933283, -0.0145250876, -0.0407145396, -0.00869751908, 0.0121811405, 0.000295877137, -0.0265401211, -0.0179210417, 0.0223505478, 0.026964616, 0.0018986892, -0.0152079696, -0.0320216343, 0.0156786051, -0.0216492098, -0.0144512625, -0.0344209522, -0.0042587854, 0.027647499, 0.0194898248, -0.00910355709, -0.0297515132, -0.0106861824, -0.0392749496, -0.048613824, -0.0173304416, -0.0141744185, 0.0399393775, -0.0184562746, 0.000108430613, -0.024509931, 0.0200988818, -0.000294291065, -0.0156693775, -0.00379737839, 0.0075117033, 0.0119412094, -0.0110183954, -0.0181609727, 0.0286810491, 0.0309511721, -0.0137683805, -0.00139229512, -0.0434460677, 0.0296592321, 0.0172104761, 0.0391642116, -0.0018986892, -0.0497212037, 0.00837453455, -0.0304159392, 0.00721640326, -0.00127232936, 0.0373001285, -0.0331659243, -0.0137683805, -0.0197851248, -0.0275183041, 0.0201357957, 0.0141190495, 0.0183547642, 0.0158170275, 0.0446272716, 0.00883132685, -0.00230011321, -0.0207633078, 0.003370577, -0.00541230245, 0.0190468747, -0.0328706242, 0.00471788505, -0.0144512625, 0.0254512019, -0.013057814, -0.025931064, 0.025340464, -0.0286995061, 0.00596137671, 0.0241777189, -0.025986433, -0.00292070536, -0.0238824189, 0.0282750111, 0.000996638788, 0.0468420237, -0.0482816137, -0.0110922204, 0.003102961, -0.00483093, -0.00314448774, 0.0180410072, -0.00695801526, 0.0254142899, 0.0371524803, 0.0196743887, 0.0144143496, 0.0151618291, 0.0130485855, -0.0553688221, 0.013482308, 0.015789343, -0.000388735265, -0.00253543071, 0.0204310957, -0.0170812812, -0.027961256, 0.0231995359, 0.0224243738, 0.0174688641, -0.0349377282, 0.049831938, -0.0489091277, -0.0114152059, 0.0176534262, -0.00376508, -0.0145250876, 0.080247879, 0.012208825, -0.0474326238, -0.027223004, -0.0105293039, 0.00321831275, 0.0303605702, 0.028717963, 0.019416, -0.0355652384, -0.00625206297, 0.00776086329, 0.0436306335, -0.0391642116, -0.025340464, 0.052194342, -0.000229117344, 0.00363588589, -0.0155401826, 0.013888346, 0.00132423767, -0.0313202962, 0.0219998788, 0.0121257724, 0.00739635201, -0.0097910529, -0.00192406657, -0.0225535668, 0.0572513603, -0.0337380692, -0.0197297577, 0.011747418, -0.026983073, 0.0288102441, 0.000339710794, 0.0165645052, 0.0336273313, -0.00569837447, -0.0213354528, -0.0167213846, -0.00466020918, 0.0155494111, -0.00977259688, 0.0167121552, 0.0154202171, -0.000994908507, 0.0370786563, -0.0158170275, -0.00291609135, -0.0352145694, -0.0145712281, -0.00626129098, 0.025543483, -0.00916354, -0.025118988, -0.028367294, 0.00121234648, -0.0376323424, 0.0119873499, -0.00595676247, 0.0218522288, 0.0245653, 0.00229319208, 0.00187907938, 0.00259310659, 0.026835423, -0.0139344865, -0.0400132, -0.0245468449, 0.0150418635, -0.023900874, 0.0163061172, 0.0290501751, 0.0054999697, -0.0379830115, 0.0222582668, 0.013703783, -0.0179856382, -0.00566607621, -0.00602135947, -0.0353437662, 0.00243161409, 0.0246391259, 0.0107230954, 0.00372816739, -0.0110368514, 0.0132331485, -0.0223136358, -0.0254696589, -0.0274629351, -0.0100217564, 0.0112306429, 0.0319478102, -0.000554265, 0.0151064601, 0.0729391947, -0.0162046086, -0.01625075, 0.0318370722, -0.00319754938, -0.0389796495, 0.0152264256, 0.0314494893, -0.0122918785, 0.0395702496, 0.00579065597, -0.0179764107, 0.0370601974, 0.0204495508, -0.00980951, 0.0182255711, 0.0305082202, 0.00520005543, -0.000718641153, -0.0238270499, -0.0212247148, 0.0282934681, 0.00188830751, -0.0182717107, -0.0654459447, 0.0173396692, -0.0130485855, 0.0148019316, -0.00564300595, -0.00920968, 0.00198289589, 0.00496012345, -0.00929734763, 0.0193606317, 0.0569191501, -0.00117947126, 0.00828225259, 0.0121995974, 0.00932503212, 0.0171643347, -0.00852218457, -0.0216676649, 0.055405736, 0.0177641641, -0.0347531624, -0.0116551369, -0.00783468876, 0.0515299179, -0.0131593235, 0.00566607621, -0.0341256522, 0.0294931252, -0.00654274924, 0.050237976, -0.0187792592, -0.0186039247, -0.00128732505, -0.0139344865, 0.027352199, -0.0312833861, -0.0391642116, -0.0155032706, 0.00481247343, 0.0329259932, 0.0438890196, -0.025525026, 0.0241223499, 0.0189361367, -0.014349753, 0.00850372855, 0.0145250876, -0.0155124981, -0.014995723, 0.00601674523, 0.00563839171, 0.01134138, -0.0254512019, -0.00492321094, -0.0404192396, 0.00134038692, 0.053227894, 0.0470635, -0.0308958031, 0.00508931745, 0.0590600781, -0.0471004099, 0.00765935378, 0.00909432862, 0.00432568928, 0.0114059774, 0.00213169958, -0.0246575829, 0.0223690048, 0.00506624719, -0.0212431718, -0.00657966174, 0.0281273611, -0.000156878334, 0.00770088052, 0.013537677, 0.0358236283, -0.0301390961, 0.00222859508, -0.00154801994, 0.012891707, -0.0209663268, 0.0427078195, 0.0122457379, 0.000913008815, -0.0336642452, 0.0363957733, -0.013168551, 0.0248052329, -0.0208555888, 0.00997561589, 0.0168782622, -0.0320400931, -0.0146727376, 0.0165829621, -0.00028563969, 9.56698277e-05, -0.00411574915, 0.00577219948, -0.00274306373, -0.0329998173, -0.0102893729, 0.00995716, 0.00586448098, -0.00177756988, -0.0076132128, 0.0332951173, -0.000827648561, -0.0184378177, 0.00609057024, 0.00633050175, 0.000487649377, -0.00495089544, 0.0111752739, 0.0153279351, -0.0137130115, 0.0221475288, 0.012393388, -0.00551842572, 0.0173027571, -0.0185300987, -0.0102709169, 0.026392471, 0.0154848136, -0.014257472, -0.0427816436, -0.00166106469, 0.0209663268, -0.00462099, 0.0176534262, 0.013851434, -0.00788082927, -0.00636280049, -0.0324461311, 0.052194342, -0.00655659148, -0.000320389372, -0.0085913958, -0.000504086958, -0.0052046692, -0.00754861627, 0.0389796495, -0.00478478894, 0.00499703595, 0.0510131419, -0.00778393354, -0.00729022827, 0.00603520172, 0.026650859, 0.0315971412, -0.00439951429, -0.0162138361, -0.000890515221, -0.0159462206, 0.0170905106, 0.0054630572, 0.0439628437, 0.0128271105, 0.00915892608, -0.00708720926, 0.012319563, 0.00363588589, -0.00822227, 0.0270015281, -0.00598444697, 0.0152910231, 0.0171827916, 0.0297515132, 0.0129747605, 0.0207448527, -0.0391273, 0.0143682091, 0.00118696911, 0.00127348292, -0.00590600772, -0.0105385324, 0.0241777189, 0.0200988818, -0.0308773462, 0.0169428587, -0.0025331236, -0.0329998173, 0.0239193309, 0.0175796, 0.0214092787, 0.0110645359, -0.0106769549, 0.0301944651, 0.00205210689, 0.027647499, -0.011876612, 0.00581372622, -0.0279797111, -0.0288287, -0.00392426504, 0.0210216958, -0.0109353419, -0.0375031494, 0.025395833, 0.014183647, 0.00101278804, 0.0099202469, 0.0324092172, 0.00908510108, 0.014220559, 0.00752093177, -0.00884055533, 0.027555218, 0.0410836674, 0.000910701754, 0.00140498381, -0.00111487426, 0.0695063248, -0.0038019924, -0.0275183041, -0.0156140076, -0.025395833, -0.0132885175, 0.00385966827, 0.0178379882, 0.00911739934, 0.00887285359, -7.92322098e-05, 0.0197113, -0.00426570652, 0.0232179929, 0.0135099925, -0.0143958936, 0.000368260342, 0.0125871785, 0.0215384718, 0.0101324944, -0.0101232659, 0.0118950689, 0.00831455179, -0.00914047, 0.0027638271, 0.00605827197, 0.000523408409, 0.0118858404, -0.00339595438, -0.00309834699, 0.015641693, 0.0306927841, 0.0172012467, 0.0182901677, -0.00941731408, -0.02932702, -0.00579065597, -0.01416519, 0.000793043, 0.00901127607, -0.00676422426, -0.0144881755, 0.0117658749, -0.012411844, 0.0204864647, 0.000563493115, 0.0178564452, 0.026410928, 0.000468039565, 0.0206156578, -0.00992947537, 0.0156324636, 0.0408252776, -0.028976351, 0.0304713082, 0.00732252654, 0.0109630264, -0.00478017516, 0.0526372939, -0.001583779, -0.0156140076, 0.00627051899, 0.0252112709, -0.00115870801, -0.00497858, -0.027019985, 0.0151064601, 0.0166383311, 0.0336273313, -0.00574451545, -0.00241315784, 0.0229780618, -0.00498319417, -0.0292531941, -0.0162138361, 0.0118212439, -0.00687957602, -0.0267431419, -0.00842990354, -0.0165645052, -0.00286072236, 0.00400962541, -0.00974491239, 0.00857293885, -0.00308219786, 0.00620592199, -0.00365664926, -0.0135099925, 0.000489379629, -0.0339964554, -0.014220559, -0.0283857491, 0.0296407752, 0.00372355338, 0.00590139348, -0.0187054332, -0.0186962057, -0.00893745106, 0.00106584979, 0.0310065411, 0.0286441371, 0.00351592014, 0.0102616884, 0.0175703727, -0.013980628, 0.0717579946, 0.0195267387, -0.0214092787, 0.00545844296, 0.0226458479, -0.00805616379, 0.0207817648, 0.0436675437, 0.0198404938, 0.013113183, 0.00829609483, 0.00711950753, -0.00499703595, 0.0407883637, -0.00526465196, 0.0096895434, -0.00565223396, 0.00253081648, 0.0225351099, -0.0206710268, 6.30829672e-05, -0.0205233768, 0.0054999697, 0.0180779211, 0.0167029276, -0.0399393775, 0.00205787458, 0.00170720532, -0.00438567204, -0.0218337718, 0.00387812452, 0.00392426504, 0.0302867461, -0.00859601, 0.050459452, -0.0233287308, 0.00789928529, -0.00327598862, 0.0292347372, 0.0360635594, 0.0172750726, 0.0496842898, -0.0110276239, -0.0308588892, -0.0180871487, -0.00815767329, -0.00643201126, -0.00451255916, 0.029585408, 0.0232549049, 0.0027638271, -0.00966186, 0.0309327152, -0.0345501453, 0.00257234322, 0.012817882, -0.0186592937, 0.0191391557, -0.00467174454, -0.00436952291, -0.0363219455, 0.02615254, -0.025285095, 0.0283857491, 0.0122272819, 0.0241777189, -0.00147650193, 0.000293281715, -0.00451717293, -0.00688419025, -0.00214208127, -0.0331290103, -0.00860062335, 0.0393118635, 0.0301575512, 0.0077424068, -0.0134546235, 0.0126610035, -0.000287658331, 0.0104647074, -0.00488168467, 0.00442719879, -0.0484292619, 0.02615254, 0.000832839345, -0.0224612858, 0.0038019924, -0.0039358004, -0.0478017479, 0.000287369941, -0.0199696887, -0.00479401695, 0.00883594155, 0.0221106168, -0.0114521179, 0.0288287, 0.0227934979, 0.00191137788, -0.00768703828, -0.012190369, 0.055294998, 0.0247498639, 0.000562051195, 0.000977029, -0.00991101936, -0.0338303484, -0.012947076, -0.01278097, 0.00466943718, 0.0212616269, -0.0219998788, -0.0054630572, -0.0142667, -0.00241546496, 0.0172104761, 0.0306374151, 0.003172172, -0.0227750428, 0.000462848751, -0.00830993708, 0.0179948676, 0.00326445349, -0.00153417781, 0.001581472, -0.0188807677, -0.0111568179, 0.0172658451, 0.000370567373, 0.0352883972, 0.0107784644, 0.00303375, 0.0221106168, -0.012817882, 0.0230334308, 0.0155217266, -0.0538923219, 0.00754861627, -0.0054353727, 0.0305082202, 0.0119965784, 0.0178564452, -0.0215015598, -0.0194344558, 0.00637664273, 0.0347716212, -0.00397963403, -0.00639048498, 0.000686919433, 0.014035996, -0.0037050969, -0.0227012169, -0.0352699384, -0.0129563045, -0.0154109886, -0.00771472231, -0.00528772268, -0.0132331485, 0.0186316092, -0.00451486604, -0.00839299057, 0.000242094407, 0.012522582, -0.00152264256, 0.0186869781, 0.012190369, 0.000679421588, 0.0168321226, -0.0217414908, -0.025912609, 0.0206710268, -0.0229411479, 0.0112029584, -0.0203203578, 0.0117935594, -0.027758237, -0.0311911032, -0.0330551863, -0.0211324338, -0.0116366809, -0.00365664926, -0.0294562131, -0.00169220963, 0.027186092, -0.00536616147, -0.0469896719, 0.0429662056, -0.0382414, 0.0164353121, 0.00634895824, 0.0359343663, -0.0199143197, 0.0170443691, 0.0148388445, -0.0340518244, -0.00382967689, 0.00736866752, 0.000941846753, -0.0147465626, 0.00196674676, 0.00601674523, 0.00324369012, -0.0119873499, -0.00192060601, -0.0049462812, -0.00275690597, -0.0377984494, -0.0114244334, -0.00205672113, 0.00883132685, -0.00157570443, -0.014866529, 0.000855332939, -0.00632588798, 0.00700415578, -0.0481708758, -0.0164168552, -0.0318924412, -0.00553688221, 0.0143682091, -0.0324645862, 0.0229411479, -0.0281827301, 0.0202834457, 0.0244730189, -0.0397917256, -0.0232733618, -0.0100863539, 0.00760398479, 0.011544399, 0.00197828189, -0.0087159751, 0.00408575777, -0.00150072575, -0.0320585482, 0.00872981735, 0.0521205179, -0.00110853, 0.0162322931, 0.00172681513, -0.0156970602, -0.055922512, 0.000502068317, -0.0217968598, -0.0110091679, 0.0232179929, -0.0134730805, -0.0379091874, -0.0193975437, -0.012670232, -0.0159554482, -0.0285887681, -0.011950437, -0.000114558672, 0.0157985706, 0.00157570443, 0.0143220685, 0.00248006172, 0.052415818, -0.00273844972, -0.0589124262, -0.0130116735, 0.0110460799, -0.0189915057, 0.0193052627, -0.0211508907, -0.0583218262, 0.00623360649, 0.0423017815, -0.026872335, -0.0371524803, -0.0356390662, 0.00597983273, 0.0154571291, -0.00888208207, -0.00508931745, 0.014737335, 0.0349008143, 0.0121165439, -0.0101048099, 0.00224589789, -0.0157524291, 0.0244361069, 0.0110922204, -0.006731926, -0.0136391865, -0.00965263136, 0.0169336312, -0.0107323229, 0.00858216733, -0.0142851565, 0.000902627129, -1.64105841e-05, 0.00481247343, -0.0217045788, 0.0119781215, -0.00577681372, -0.0101140384, 0.0130116735, 0.00496473769, 0.0140821375, -0.00783007406, 0.00887285359, 0.00224589789, -0.00629358925, -0.0106215859, -0.0188253988, 0.00605365774, 0.0116366809, 0.000583968067, 0.00401423965, 0.00203134376, -0.0064366255, -0.00768703828, 0.0227381289, -0.00454485742, 0.00177641632, 0.0227565859, -0.0196190197, 0.013611502, -0.0630835444, -0.0193790868, -0.00463713892, 0.00483554369, -0.012947076, -0.00498780794, -0.0102801444, 0.00780239, -0.0280719921, -0.00410652114, -0.027629042, -0.00260464172, -0.00331520825, -0.0148942135, 0.014405122, 0.0330551863, -0.0280904491, 0.00481247343, -0.00190214976, -0.00932041835, 0.00588755123, 0.00841144659, 0.00854986906, 0.00264386134, 0.0343102142, 0.0143405246, 0.0189545937, -0.0227934979, 0.012670232, 0.0227196738, 0.0143589815, -0.0244730189, 0.0028007396, 0.0405299775, -0.00343978801, -0.0153094791, 0.0154663576, 0.00968031585, 0.00529695069, -0.00220091059, -0.0187515747, -0.0379091874, -0.0322061963, -0.025635764, 0.0117566464, 0.00251236022, -0.0358789973, -0.000546767144, -0.0202649888, 0.0148942135, 0.0101970909, 0.0108061489, -0.0115813119, 0.00090493419, -0.0358789973, 0.00658427551, 0.000350957591, 0.00302452198, 0.0117751025, 0.0112214144, -0.013537677, 0.0107692359, -0.00560609344, -0.027019985, -0.00288148574, 0.0192683507, -0.0186500642, -0.011950437, 0.0147096505, 0.00617362373, 0.000272374222, -0.00745633477, 0.00570298871, -0.01278097, -0.000788428937, -0.0280350801, -0.0200435128, 0.00343056, 0.0051493, -0.00461868243, 0.0170166846, -0.0172750726, -0.026355559, 0.0161861517, -0.0149034411, 0.00165645056, -0.00967108738, -0.0109907109, 0.00291147712, -0.0221659858, 0.00982796587, -0.0195267387, 0.0199512318, 0.0564761981, -0.0222767219, 0.0118489275, 0.0172750726, 0.00820381381, -0.00330367312, 0.00538461795, -0.00637664273, 0.00485861395, 0.0130854985, -0.0173304416, 0.00415496854, -0.00645046774, 0.0120242629, -0.00926966406, -0.00769165205, 0.000757284, -0.0141375056, 0.0143958936, 0.0149218971, 0.0107600074, -0.0118212439, 0.00978182536, -0.025931064, -0.0278136041, 0.01625075, 0.00382275577, -0.00642278325, -0.0246575829, -0.0028330381, 0.0228673238, 0.00625667674, 0.027850518, 0.0104370229, -0.00115178688, -0.000917622878, -0.00772856455, -0.0162230656, 0.00903896056, 0.00232087635, -0.00761782704, -0.0187884867, 0.0187884867, -0.0236424878, 0.0085590966, 0.00939424336, 0.0166014191, 0.00305451336, -0.0217230339, -0.006731926, -0.0257095899, 0.00654274924, 0.0115074869, -0.0161769241, 0.0209478717, -0.026392471, 0.00927889161, -0.000976452255, -0.0231072549, 0.00676422426, 0.0298622511, -0.00331290113, -0.0203388147, -0.025691133, -0.0103908824, 0.0171920191, 0.0085913958, 0.0105385324, 0.012688688, 0.0160108171, -0.00775163528, 0.00969877187, -0.0251928139, 0.00614132499, 0.0243991949, 0.027352199, -0.00773779303, -0.027702868, 0.0485769138, 0.00965263136, -0.00583218271, -0.0114798024, 0.0160385016, -0.027130723, -0.0175796, 0.000536385458, 0.0239747, 0.0316894241, 0.000614247867, 0.00902973209, 0.0050108782, -0.0219998788, -0.000141666329, 0.000455639267, -4.92497747e-06, 0.002427, -0.00943115633, 0.0175426882, -0.00723024551, 0.00242007896, -0.026983073, -0.013980628, 0.00594292, -0.0393118635, -0.0101970909, -0.00424725, -0.0228119548, -0.00609518448, 0.0199512318, -0.00129770674, -0.0119412094, 0.00803770777, 0.0216492098, 0.000144117541, -0.00226666126, -0.0144881755, 0.0126425475, -0.00963417534, 0.0324461311, -0.0262263659, -0.00818535779, 0.0300283581, 0.0110091679, -0.00678729499, 0.0112490989, -0.00552304, -0.012061175, 0.00534309121, 0.00587832322, 0.00839299057, -0.0153371636, -0.00597060472, -0.0331843793, 0.00362435076, -0.014940354, -0.014091365, 0.0181794297, -0.0174134951, -0.0136391865, -0.0187608022, -0.00835146382, 0.0184562746, -0.00241546496, 0.0160108171, 0.00722101703, 0.000923390442, -0.00466943718, -0.0466943718, 0.00126194768, 0.0226458479, 0.00944961235, 0.00248006172, 0.00502472045, 0.0421910435, 0.0084898863, -0.0241777189, 0.0170535967, 0.00659350399, -0.0197851248, -0.00916354, -0.00264155422, 0.0075117033, 0.00841606129, -0.0150787756, 0.0109261144, 0.0364142284, -0.0185116436, -0.00544460071, 0.0176995676, 0.0237347689, -0.0201357957, -0.0315048583, 0.0195451938, 0.0023197229, 0.0709459186, -0.0179671831, -0.0295115821, -0.00250774622, -4.94930937e-05, 0.00419649528, -0.0171181932, -0.0162968896, 0.000435164344, -0.013980628, 0.0229596049, -0.0026669316, 0.00998484436, 0.000639625243, 0.00352053437, 0.0154294446, -0.00598906074, 0.0166844726, 0.00890976656, 0.0122180535, -0.0118120154, 0.025488114, -0.006538135, -0.01401754, 0.00102605345, 0.000305682042, 0.0216492098, -0.025377376, -0.00951420888, 0.0194344558, 0.00645969575, 0.00956957787, 0.000568395539, 0.0100309849, 0.0447010957, 0.0162599776, 0.0308035221, -0.0401977636, -0.0025008251, -0.0187608022, -0.0294377562, 0.0022505119, -0.0207448527, 0.000908971473, -0.00327598862, 0.00673654024, 0.0143220685, -0.00129193917, -0.0172197036, 0.00666271476, 0.0201727077, 0.007128736, -0.00505240494, -0.00290224911, 0.0213354528, 0.0257095899, -0.0129932165, -0.00724870153, 0.00467866566, -0.00545844296, 0.0203019, 0.0190099627, -0.0432245955, 0.0294193011, -0.0083560776, 0.00572144473, 0.00732714077, 0.0128271105, -0.0367095284, -0.0167306121, -0.0131962355, -0.0101048099, -0.0267985091, -0.00677806651, 0.00326445349, -0.0188069437, -0.00208786596, -0.00306143449, 0.00139460224, 0.0425232537, 0.00439259317, -0.00674576825, -0.0107876919, 0.0108799739, -0.0194898248, 0.00258618547, -0.0131777795, -0.01278097, -0.0145989126, -0.000357590296, 0.0386843495, -0.0192498937, 0.0125133535, -0.0194898248, 0.0338488072, 0.00850372855, -0.000883594097, 0.0146911945, 0.0197851248, -0.0154571291, 0.0118397, 0.000175046225, 0.0308773462, 0.00440412853, -0.00119389023, 0.00931580458, 0.0174873192, 0.0114428895, -0.0220367908, 0.00943115633, -0.0156878326, -0.00608595647, 0.0375400595, 0.0155770956, 0.0053338632, -0.0137499245, 0.0236055739, -0.00347439363, 0.0202096198, 0.0063074315, 0.00173835026, -0.00735021103, -0.0432245955, -0.0135653615, -0.00830532331, -0.00424955692, -0.00397040602, 0.0285887681, 0.00987410638, -0.00539846, 0.00132885168, 0.00458177, 0.0108984299, 0.0170905106, 0.00967108738, 0.000118668075, -0.001650683, 0.0187792592, -0.00357128913, -0.0144512625, -0.0238085929, -0.01292862, -0.00523696793, -0.00212477846, -0.0111106774, 0.000402289093, 0.0105477609, -0.000356725184, 0.0145250876, 0.0351592, 0.00522312569, 0.019416, 0.0113506084, -0.0328152552, 0.00569837447, -0.0043233824, -0.00393810729, 0.00175449951, 0.0217414908, 0.013962171, 0.00246391259, -0.00285841548, -0.000915315817, 0.0212062597, -0.0084575871, -0.00255619385, -0.0494259, 0.0163891707, 0.00435568066, -0.0175426882, 0.0216492098, -0.0239931569, -0.000267615978, 0.0209847838, -0.014737335, 0.00255850097, 0.0482447, -0.000336250232, 0.0115720835, 0.00383659801, -0.00419649528, 0.00146265968, 0.00862830784, 0.00888208207, -0.0100033, -0.027850518, 0.00100182963, 0.0141190495, 0.00571221672, 0.0115905404, 0.0123287914, -0.0121719129, 0.0220183358, 0.0332951173, 0.00927889161, -0.0119412094, 0.00367049151, 0.00717949076, 0.00307296962, 0.00854525529, -0.000342017825, -0.0204680078, 0.0104647074, 0.0140636805, 0.00525081, 0.0172473881, -0.00741480803, -0.00782084651, -0.0158631671, -0.000291695644, -0.00382736977, -0.00667655701, 0.0255619399, -0.00201058039, 0.000551669567, 0.00370048289, 0.0114152059, 0.0148019316, -0.0176072847, -0.00653352076, 0.0220921598, -0.00669501349, 0.0188253988, 0.000620592211, -0.00472942041, -0.00469942857, 0.0101324944, -0.0138422055, -0.0133254295, -0.0198774077, -0.024362281, 0.0162599776, 0.0149495816, 0.00590600772, 0.003301366, 0.00461637555, 0.000255215651, 0.0191022437, -0.000722678495, -0.000202730633, 0.00400501164, 0.0109261144, 0.00208209851, -0.00977259688, 0.0368018113, -0.00587832322, 0.0371893905, -0.0110922204, 0.0172012467, 0.00331520825, 0.00608595647, 0.0238270499, 0.0299729891, 0.00667194324, -0.00612286897, -0.00235317484, 0.00521389721, -0.00621976424, -0.0237163119, 0.0199881438, 0.0153463921, -0.0252481829, -0.0191207, 0.0161861517, -0.0140083116, 0.00870213285, -0.00766396755, 0.0246575829, -0.00584141072, 0.00278459024, -0.000557437132, -0.0152171981, 0.0344947763, 0.00739635201, -0.0243991949, -0.00635357248, 0.0111014489, -0.000929158065, 0.00321600563, 0.0246022139, -0.0120242629, 0.0231441669, -0.0028976351, 0.00257926434, -0.0152448826, 0.0160661861, 0.00978182536, 0.00166798581, -0.00811153278, -0.0192314368, 0.0066396445, -0.0102432324, 0.0204310957, -0.00221936684, 0.000221619484, 0.0223136358, 0.024306912, -0.00594292, 0.00588293746, -0.0184378177, -0.00124464498, -0.0348639, -0.0181240607, 0.013888346, -0.00534309121, -0.0025054391, 0.00292531936, 0.014035996, 0.0180686917, -0.00879902858, -0.00401885388, 0.0159369931, 0.0251005329, 0.00591062196, -0.00605365774, -0.00156532275, -0.0104185669, 0.000371144124, -0.0189730488, -0.000257666892, -0.013814521, 0.00686112, 0.0232364498, -0.00148111593, -0.0014326683, -0.0131408675, -0.0145804565, 0.0131408675, -0.00771472231, -0.0117658749, -0.0086882906, 0.0267985091, 0.0146542815, 0.00651967898, -0.00720256101, -0.0213539097, 0.00653352076, 0.00704568252, -0.0175980572, 0.00534309121, -0.00938040111, -0.00415266166, 0.0105016204, -0.0102247754, 0.012485669, 0.0224612858, 0.000500338036, 0.00296915299, -0.00697647175, -0.0245468449, 0.013094726, -0.00289302086, -0.000647123088, 0.0086882906, 0.000658081495, -0.00626129098, 0.00403961679, 0.0132885175, -0.00422879355, -0.014460491, -0.014405122, -0.016989, 0.00833762158, -0.0190837868, -0.0143589815, 0.0240116119, -0.00734559726, -0.00693955924, 0.0135469055, -0.00131270254, -0.0226458479, 0.00232779747, 0.0228119548, -0.011876612, 0.0163522586, -0.0109537989, 0.014608141, 0.0180871487, 0.0139344865, -0.0159277637, 0.0265401211, 0.00409729267, -0.0105200764, 0.0129193915, 0.0236055739, 0.00402808189, 0.00337288412, 0.0055922512, -0.00189407507, -0.000780931092, 0.0207263958, -0.0228857789, -0.00903434586, 0.00677345274, 0.00231049489, -0.00902973209, 0.00584602496, 0.0125871785, 0.0274075661, -0.0102340039, -0.0220183358, 0.0167582966, -0.0126979165, 0.0225351099, -0.00188138639, -0.0162322931, 0.0119135249, 0.00323446211, -0.00727177178, -0.00501549244, 0.025488114, -0.00250774622, 0.00159070012, -0.00378815015, -0.0302129202, 0.0125133535, -0.00848065782, -0.0320770033, -0.00295761786, 0.0156601481, 0.00788082927, 0.013353114, 0.0112583274, 0.0100494409, 0.0109445704, -0.0052692662, -0.012947076, -0.00809769053, 0.00587832322, 0.0159831326, 0.0325753242, -0.00783007406, -0.0081023043, 0.0224981979, 0.00138537411, 0.0304897651, -0.0161400121, -0.00384582602, 0.000820727437, 0.0181148332, 0.0151156886, 0.0172473881, -0.0167490691, -0.0049739657, -0.0177918486, -0.011802787, 0.00539384596, -0.0216861218, -0.0207817648, 0.00591523573, 0.00257234322, 0.00637664273, 0.0353068523, 0.00496473769, -0.0112214144, -0.0117197344, 0.0133807985, 0.0318186171, 0.00486784242, 0.028348837, -0.00486784242, -0.0154663576, 0.00464406, -0.0370048285, -0.0131777795, 0.0085590966, -0.00612748275, -0.00915431231, 0.0193421748, -0.0194898248, -0.0205972, 0.00348131475, 0.0304528512, -0.0110553084, 0.00230703433, 0.00351130613, 0.0106492704, -0.00301990774, -0.00936194509, 0.013593046, 0.0252112709, -0.00811614655, 0.0194713697, -0.0243253689, -0.0142113306, 0.0160108171, -0.0243807379, -0.00146381324, 0.00191137788, 0.0125502665, -0.00621515047, 0.0124764415, 0.0342363864, -5.31248725e-06, 0.014054453, -0.0376138873, -0.0167398397, 0.0424863435, 0.0267431419, -0.0142390151, 0.00736405328, -0.00379968551, 0.00277305511, -0.00919583812, -0.00708720926, 0.0124303009, 0.00118812267, 0.00701799802, -0.00382044865, -0.0136576425, -0.0487245619, 0.00541230245, -0.00300375861, -0.0292901061, 0.000384409592, -0.0102709169, 0.0206710268, 0.00801002327, -0.00577681372, -0.00332674338, 0.0229965169, -0.00496012345, 0.013519221, 0.0374662355, -0.01134138, -0.00711489376, -0.0174411796, -0.0300837271, 0.0119042965, 0.0102893729, 0.00488629844, -0.00838837679, 0.027389111, 0.0200804267, 0.0124303009, -0.0223136358, 0.0224243738, -0.000546767144, 0.0217599478, 0.00604904396, -0.0157247446, -0.00936655886, 0.00600751722, 0.00146265968, -0.00860985182, 0.0027315286, -0.0115074869, -0.00963417534, 0.00927889161, -0.0207079388, 0.027702868, 0.0132700605, -0.01357459, 0.0200066, -0.000521101349, -0.0202096198, 0.00880825706, -0.00016639485, 0.0143036125, -0.0189915057, -0.00425417116, 0.000410940469, -0.00116562902, 0.00298991636, 0.0235502049, -0.0119596655, 0.0228673238, 0.026189452, -0.00324830413, -0.0173765812, 0.000944153755, 0.014386666, -0.026761597, -0.0113136964, -0.00834223628, 0.00742403604, 0.00165299, -0.000196097913, -0.00957880635, -0.000923967222, 0.00471327081, -0.0177826192, 0.0240485258, -0.0038389049, -0.0208925027, 0.0100586694, -0.01134138, 0.0112583274, -0.0114152059, -0.00577681372, -0.0215753838, -0.00388735277, -0.00543075847, -3.06943693e-05, 0.00325753237, 0.0179210417, 0.0370232873, 0.00957880635, 0.000513603503, -0.0296223201, 0.00203941832, 0.0230887979, 0.024879057, 0.00854986906, 0.0101970909, 0.0130485855, -0.0104923919, -0.0100863539, 0.00584602496, 0.0326491483, -0.0130485855, 0.00723947352, -0.000591754273, -0.000301067979, -0.0145066315, -0.0223136358, -0.012135, 0.00362665788, -0.01134138, 0.003495157, -0.0315233171, -0.000334808341, 0.0157616585, -0.00947729684, 0.00187331182, -0.0416004434, 0.00245699147, -0.00824534055, -0.0107507799, 0.00398655515, -0.00953266583, 0.00429800479, -0.0126979165, 0.013094726, 0.0166014191, 0.00207979139, 0.00355744688, -0.00438105781, -0.0348639, 0.0114428895, 0.00342825288, 0.00540307444, -0.00504317693, -0.0055276542, 0.0198589507, -0.026724685, 0.0223874599, -0.00154571293, -0.0165460501, -0.026134083, -0.0056937607, -0.00339364749, 0.006602732, -0.0083560776, 0.00346516538, 0.013057814, -0.0033382785, -0.0165275931, 0.013925259, -0.0104739359, 0.0108430609, 0.013832977, 0.0175611451, -0.00765935378, 0.0123657035, -0.0113136964, -0.00212362502, 0.0365065113, -0.0160108171, -0.0234948359, 0.0049739657, 0.0236424878, 0.0157985706, -0.0069626295, -0.0127901975, -0.0108246049, -0.0299360771, 0.006408941, -0.027684411, -0.0070272265, 0.0209109578, -0.00415035477, -0.0155955516, -0.00192175957, -0.00874366, -0.0221106168, 0.0234210119, 0.0165275931, 0.0245653, -0.0203388147, 0.00631666, -0.00676422426, 0.00574912922, -0.0113321524, 0.00477094669, 0.00304067112, -0.00254696584, -0.00066903996, 0.00518159894, -0.0354914144, -0.00453332253, -0.00262771198, 0.00920045283, 0.0234579239, -0.00272230036, 0.0112214144, -0.0221106168, -0.00859601, -0.00783007406, -0.00595214823, -0.00896513555, 0.00472942041, -0.00392657239, 0.0134177115, -0.0300099012, 0.0298991632, -0.00591985, 0.00494166743, 0.0234948359, -0.0150880041, -0.00863292255, -0.00335442787, -0.00271537923, 0.00886362512, -0.014183647, 0.00690726051, -0.0107969204, -0.012873251, 0.0216307528, -0.0221844409, 0.0124579845, -0.0109907109, 0.0198774077, 0.000575028302, 0.00118927611, 0.00535693346, 0.0185208712, 0.0124395285, -0.00915431231, 0.0170720536, 0.0109168859, -0.0212247148, 0.0260233469, 0.00504779071, 0.0112583274, 0.0298991632, 0.0203019, -0.0218891408, -0.00788544305, -0.0185116436, 0.0194529127, 0.00342133176, 0.0120888595, -0.00245468435, 0.0156232361, 0.0089512933, 0.0159000792, 0.025801871, -0.00799618103, 0.0242515448, -0.00739173777, 0.0109537989, 0.0106400419, -0.0163338017, 0.00784853, -0.00208440539, 0.00753938779, -0.00756245805, -0.0188346282, 0.0061782375, 0.00492321094, 0.00541230245, -0.0120704034, -0.013334658, -0.0165737346, 0.0303974841, -0.00245237746, 0.00935733132, 0.0156693775, 0.0170443691, -0.00104624, 0.012356475, 0.0322800241, 0.00621053623, -0.00350207789, -0.0128086545, -0.0185300987, -0.0247498639, 0.014349753, -0.00464867381, -0.00597060472, -0.00131731655, 0.00599828921, 0.00400731852, 0.0171458777, 0.00424955692, 0.0204495508, 0.0345686, 0.000573586382, -0.0259679779, -0.00594753446, 0.000155436428, -0.027795149, 0.00335673476, 0.00155378762, 0.0093342606, -0.024159262, 0.0192498937, -0.0187608022, 0.00138076, -0.00254235184, 0.0112029584, 0.0209109578, -0.0107784644, 0.028256556, 0.00389196677, 0.0141744185, 0.00195636507, -0.0113782929, -0.00996638834, -0.0186685212, 0.000446987891, 0.00657966174, -0.0176072847, -0.00641355524, 0.00258849235, 0.000545613584, -0.0443688817, -0.0146727376, -0.00947729684, 0.00786698703, -0.0105385324, -0.00391965127, -0.013131639, -0.00501549244, -0.00113044679, -0.02644784, 0.00208440539, -0.000284053589, 0.026060259, 0.0142390151, -0.000620592211, 0.012190369, 0.003232155, -0.00186293013, 0.0307481531, -0.0127717415, 0.00667655701, -0.00682882126, -0.00925120711, -0.0219629668, 0.00245929859, -0.015069548, -0.0199512318, -0.0152541101, 0.00187331182, -0.028145818, 0.0108984299, -0.0051493, 0.00364511413, -0.00293916161, -0.0197851248, -0.0121995974, 0.0209294148, 0.026097171, -0.00572605897, -0.0107415514, -0.00424494315, 0.0191391557, 0.0174134951, 0.00716103427, 0.00961571839, 0.0067688385, -0.00826379657, -0.025137445, -0.00755323, -0.0202649888, -0.0027961256, 0.0181794297, -0.00217784033, -0.0146358255, -0.00226896815, -0.0151249161, 0.0108338324, -0.0141559625, -0.014737335, -0.0193237197, 0.00322523387, -0.000566665316, 0.0364326835, 0.01292862, -0.00182025007, 0.00911278557, -0.00378122902, -0.0177457072, 0.00527849421, -0.0206894837, 0.000957419223, 0.0188438557, 0.00600290298, -0.00314218062, -0.00790389907, -0.00451717293, 0.0209478717, 0.00682882126, -0.0172012467, 0.00613209698, 0.0150880041, -0.00309603987, 0.00917276833, 0.0121626845, 0.0085913958, -0.0139713995, -0.00438797893, 0.000896282785, -0.00821304228, -0.0311911032, 0.0197482128, -0.00225743302, -0.0162692051, 0.0068980325, -0.00352976238, -0.00907125883, -0.0106584979, -0.0112583274, 0.00872981735, 0.0195267387, -0.0019009962, -1.44369878e-05, -0.00939424336, -0.0222398099, 0.0129378485, -0.000731329841, -0.00084091397, -0.00355283264, 0.0202649888, 0.00964340288, 0.00988333486, 0.0183455367, -0.0112490989, 0.0131962355, 0.00730868429, 0.00713796401, -0.0129563045, -0.00482170144, -0.00128847861, -0.0014845765, -0.0232733618, -0.00302452198, 0.0158170275, -0.0173027571, -0.00382044865, 0.0107600074, -0.00589677971, -0.0116643654, 0.000708259526, 0.0234210119, -0.00759475678, -0.00194482983, -0.0113967489, -0.00082591828, -0.0243438259, 0.00676422426, 0.024676038, 0.026613947, -0.026669316, -0.0210216958, 0.0145989126, -0.00596599048, -0.0112952394, -0.00669501349, 0.00755784428, 0.0166198742, 0.025137445, -0.00346977962, 0.00978182536, 0.0139344865, 0.00957880635, 0.0243991949, -0.0031998565, 0.0172104761, 0.0153279351, 0.000243103728, 0.0209847838, 0.000611364085, -0.0135838175, -0.000367971952, 0.0105200764, 0.0177457072, 0.0132700605, -0.013426939, -0.00977259688, -0.00146265968, 0.0284226611, -0.0153648481, 0.0151341446, -0.00028463034, 0.0129932165, -0.0160015896, -0.000201577117, -8.52881712e-05, -0.0244730189, 0.00547228521, -0.0241408069, -0.00163799431, -0.00208555907, -0.00401654653, 0.00687957602, -0.00508470368, 0.0058598672, -0.00497858, -0.00241085072, -0.00217899377, -0.00458638417, 0.0207817648, 0.00528772268, 0.00229895953, 0.00554149644, -0.00628436124, 0.001717587, 0.00830532331, -0.00911278557, 0.00292301248, 0.0207263958, -0.0041941884, -0.00515391445, -0.0108799739, -0.00203365064, 0.0109168859, -0.0041941884, -0.00608595647, -0.00298530236, -0.00756707229, -0.000845528033, 0.0133807985, -0.0155770956, -0.00305220624, 0.00996638834, 0.00856832508, -0.00138652755, -0.00122157461, -0.00394502841, -0.0149218971, -0.00963417534, 0.0126979165, 0.0225535668, 0.0222582668, 0.0135469055, -0.025838783, 0.00603981549, -0.00603520172, 0.0168967191, 0.000731329841, 0.0373370424, -0.0298253391, 0.000816690095, -0.0173581261, 0.00730868429, 0.0128455665, 0.00172104756, 0.00360128051, -0.0111383609, -0.0166752432, -0.00890053809, 0.0154663576, 0.000359320577, 0.0211324338, 0.00581834046, -0.0125687225, 0.0104923919, 0.014423578, -0.0225351099, 0.000281602377, -0.00768242404, -0.0102986, -0.0189730488, -0.00892360881, 0.0153187076, -0.0140821375, 0.00885901134, -0.00450563803, 0.00391273, 0.028459575, -6.78412252e-05, -0.00743326452, 0.0371524803, 0.0162599776, 0.0203757267, 0.00620130822, -0.00534309121, -0.0225720238, -0.0128086545, -0.0133438865, 0.00230357377, -0.0107415514, 0.00601674523, 0.00194021582, 0.0119688939, -7.68530808e-05, 0.0241777189, -0.0116274524, 0.00377661502, -0.00853141304, 0.00326214638, -0.000701338402, -0.00837914832, 0.00680575101, -0.00911278557, 0.00614593923, -0.00172104756, -0.0177364796, 0.00667655701, -0.013371571, -0.00162991975, 0.00796849653, -0.00651967898, -0.0122549655, 0.0167582966, 0.00191137788, -0.00766396755, 0.00738250976, -0.00602597324, -0.0111660454, -0.00878518634, -0.0110091679, -0.01278097, -0.00245007034, 0.00793158356, -0.0234025549, 0.0226089358, -0.00697185751, 0.00118927611, 0.0130485855, -0.0085590966, 0.0105569884, -0.0173858106, 0.00157339731, 0.00783007406, 0.012061175, 0.0208371338, 0.0119412094, 0.0172566157, -0.00369817601, -0.0206710268, 0.0019725142, 0.0287364181, -0.000981643097, -0.0165829621, -0.00664887251, -0.013980628, -0.0274629351, 0.0109907109, 0.00467405142, 0.00103585841, 0.00621053623, 0.00131385599, 0.00542614469, -0.00797772408, 0.0201911628, 0.0171181932, 0.0241408069, 0.0138422055, 0.0304159392, -0.0197113, -0.00885439757, -0.00827302504, -0.026318647, -0.028773332, 0.00289302086, -0.0132885175, 0.0184193607, -0.0401608534, -0.00328060263, 0.00149495818, 0.0067042415, -0.02917937, 0.00482170144, 0.00166452525, -0.00980028138, -0.0120704034, -0.0150141791, -0.00082476472, -0.00176257419, -0.0084945, 0.0221659858, 0.000116216848, -0.0131777795, -0.0176811107, -0.00794542581, 0.0119135249, -0.0178841297, -0.0028284241, 0.0107969204, -0.00296453899, -0.000932041847, 0.00358743826, 0.0125041259, 0.0120150344, 0.0121811405, -0.013703783, -0.00582295423, 0.000633857679, -0.0455131717, 0.00615055347, -0.0157432016, -0.0186039247, 0.00376046589, 0.00717949076, -0.0114059774, 0.00552304, -0.00887285359, 0.0159000792, -0.00327137462, -0.013353114, 0.0217414908, -0.0176811107, -0.0282750111, 0.0190468747, 0.0127532855, 0.00767781, -0.00762244128, -0.0177733917, 0.0098187374, 0.00797772408, 0.0327229723, -0.0129747605, 0.00490475493, 0.00622899225, 0.00508470368, 0.0222398099, -0.00973568484, 0.00210747588, -0.00794542581, 0.0201173387, 0.00496473769, -0.00731791276, -0.00973568484, -0.00498319417, -0.0141744185, 0.0485030897, 0.0175242312, -0.00612748275, -0.00706875278, -0.0105846729, -0.0167859811, 0.0109168859, 0.0331474692, -0.025746502, -0.00754861627, 0.0194344558, 0.0143682091, -0.00501549244, 0.0215200149, 0.00292762648, 0.0157985706, 0.0256726779, 0.0104923919, -0.0220367908, -0.0139898555, -0.0105662169, 0.00636741472, 0.0197482128, 0.00127348292, 0.00148803706, -0.00898820534, -0.0108984299, -0.00224128389, -0.00141651905, -0.054556746, -0.0093342606, 0.0166567881, -0.0176903382, -0.00629358925, -0.0028007396, 0.00921890885, -0.012061175, 0.00298299524, 0.00221590628, -0.00633973, -0.0127532855, -0.00585525297, 0.000892245502, 0.0448856577, -0.00769626629, 8.17555265e-05, -0.0107046394, 0.000607326743, -0.0126979165, 0.00335212075, 0.00324369012, -0.00164260843, -0.0219075978, -0.00318140024, 0.0301760081, -0.00822688453, -0.0155124981, 0.0142297875, 0.0149311256, -0.0055276542, -0.00782084651, -0.0215938408, 0.00460484, 0.0467312858, -0.0117012775, 0.00958803389, 0.0366726182, 0.00184793444, 1.25444985e-05, -0.00621515047, 0.0142390151, -0.0228673238, -0.00717487652, 0.00733636878, 0.00746094855, -0.0191391557, 0.00921890885, 0.00645046774, 0.00949575286, 0.00644123973, -0.000445546, -0.00822688453, 0.00385736115, 0.0180502366, 0.00639971299, -4.9348906e-05, 0.00198289589, 0.0113506084, -0.0225720238, -0.00662118848, 0.0174227227, 0.0296776891, 0.00758552877, -0.0186223798, -0.0011713967, 0.00749786152, -2.2457536e-05, 0.013297745, 0.0107230954, -0.0144420341, -0.0214277338, 0.00623822073, -0.0254512019, -0.00865137856, -0.00381122064, 0.000595214835, -0.0227012169, -0.00561993523, 0.00934348907, -0.00705029676, 0.00892360881, 0.00691648852, -0.00147765549, -0.00706875278, 0.00500165, 0.0109630264, 0.025728045, -0.00729484251, -0.000226521923, 0.00850834232, -0.0191207, -0.0285334, 0.00328290975, -0.0344394073, -0.000751516433, 0.014478947, 0.00930196233, -0.000180381234, -0.0126794605, -0.00732252654, 0.00409037154, -0.00213862071, -0.012910164, 0.0482447, -0.0100955814, 0.0260787159, 0.0107876919, 0.0099202469, 0.0393856876, 0.0023520214, -0.0290870871, -0.0126056354, -0.0176441986, 0.0301575512, 0.00401885388, -0.0147096505, 0.00108834344, -0.00615055347, 0.0578419641, -0.0168044381, -0.00485861395, 0.00876673, -0.00995716, -0.00874366, 0.0109445704, -0.00974491239, 0.0222951788, -0.00904357433, 0.0180502366, 0.0167306121, -0.0107323229, -0.0205418337, 0.026503209, -0.0324645862, 0.00132885168, -0.00197136076, 0.00929734763, 0.028514944, 0.00508008944, -0.00115351717, 0.0189730488, -0.00406268751, -0.0235317498, -0.0218522288, -0.00663503027, -0.00698108552, -0.038832, -0.00153648481, -0.0199696887, -0.00284226611, 0.0129563045, -0.00542614469, -0.00132077711, -0.00287456461, 0.0109445704, 0.00421264442, -0.0230703428, -0.0280719921, 0.00267615984, -0.012485669, 0.0171458777, 0.00700877, -0.0121719129, -0.0214461908, 0.0092050666, 0.0196374748, 0.013500764, -0.0240300689, -0.0180686917, -0.001719894, -0.0100494409, -0.00821304228, 0.00342363887, -0.00912201311, -5.36745938e-05, -0.0215569288, -0.0254696589, -0.00520005543, -0.00997561589, -0.0198035818, 0.00413420517, -0.0144697186, 0.00269923, -0.00143728231, 0.00607672799, 0.0180225521, 0.02932702, -0.00119042967, -0.00658427551, -0.00642739749, -0.0141098211, -0.0307296962, -0.0083560776, -0.00358513114, 0.0127532855, -0.0125687225, -0.00540307444, -0.014128278, -0.00995716, 0.00338672637, -0.012541038, -0.0193790868, -0.0184470452, 0.00412267027, 0.0103170574, 0.0153463921, -0.012264194, 0.0127348294, 0.00320908474, 0.0204126388, -0.0168044381, 0.0145435436, 0.0182347987, 0.00270615122, 0.0116089964, 0.0131593235, -0.0189545937, 0.0164629966, -0.00271768635, -0.0272045471, -0.0234948359, -0.00460714754, 0.0097910529, -0.00324830413, -0.00365664926, 0.02427, -0.0202834457, -0.0292716511, 0.0155678671, 0.00286995061, -0.0162876621, -0.01228265, -0.00166221813, -0.00460484, -0.0145435436, -0.0135099925, 0.0434460677, 0.00114486576, -0.00791774131, 0.0154109886, -0.00572605897, -0.00627513323, -0.00359205226, 0.0160385016, -0.00200827327, 0.0108984299, 0.0243253689, -0.00561070722, -0.000234163977, -0.00569837447, 0.026466297, 0.00508008944, 0.0105200764, -0.0181425177, 0.007128736, 0.0291978251, 0.00621515047, 0.00106873363, 0.00959726237, -0.000319524232, -0.00267385272, 0.0160015896, 0.00855448283, 0.00908510108, -0.0108061489, 0.0184470452, -0.0098925624, 0.0174780916, -0.0220552478, -0.00494166743, -0.0193421748, -0.0129932165, 0.00377661502, -0.026097171, -0.0144512625, 0.00729945628, -0.015069548, -0.0258756969, 0.0010531611, -0.0140821375, 0.000696147559, -0.0235132929, -0.026263278, 0.00233702571, 0.00763628352, -0.00910817087, 0.011802787, -0.00361281564, 0.00703184027, 0.0100033, -0.0124026164, 0.02585724, 0.00100759719, 0.00931580458, -0.00944038387, 0.00103355129, 0.00159185368, 0.0218891408, 0.0001586086, 0.00806077756, -0.00922813732, -0.00173604325, 0.0077054943, -0.0189176816, 0.00251005334, 0.00087321247, -0.00269000186, 0.0146265971, 0.00398194091, -0.00271999347, 0.00820842758, -0.0141928745, 0.00738250976, -0.0279243421, 0.00177295587, 0.0335165933, 0.028348837, -0.00628897548, -0.00151341443, -0.0296223201, 0.00826841, 0.00667655701, -0.013316202, 0.013556133, 0.000542441441, -0.0169982277, 0.0308035221, -0.000858793501, 0.00877595786, 0.0120242629, -0.012411844, 0.012836339, -0.00550458394, 0.0288471561, -0.00817612931, -0.00243853522, 0.00675038202, -0.00517237093, 0.0127901975, -0.015401761, -0.00298991636, -0.0195267387, 0.0115813119, -0.000544171722, 0.00195867219, -0.00145227811, 0.0108430609, 0.0306005031, 0.00156993675, -0.0155494111, 0.0100494409, -0.0211508907, 0.00144881755, 0.0200804267, -0.0182993952, -0.0180410072, 0.0171920191, 0.0162968896, -0.0151895136, -0.00208209851, 0.00514468644, 0.0175703727, 0.011931981, -0.0239377879, -0.00482631568, -0.0103170574, -0.00367279863, 0.00936655886, 0.00625206297, 0.0288840681, 0.00254465872, 0.025728045, 0.0104462514, -0.0206894837, -0.00343978801, -0.0140267685, 0.0110553084, 0.00489552645, 0.00420572329, 0.0125871785, -0.00771933654, 0.0135099925, -0.00413651252, 0.0110553084, 0.000640202, 0.00700877, 0.00137729943, 0.00509854546, 0.0123749319, -0.00685189152, 0.00641816948, 0.0136945555, 0.00157916499, 0.00191599189, 0.012799426, 0.0084575871, 0.00435106643, -0.00914969761, -0.00598444697, 0.00739635201, 0.000759014278, -0.0230518859, -0.00458869105, 0.0142482435, 0.00354360463, 0.0220737029, 0.00421725865, -0.0143958936, 0.0017521925, 0.0235502049, 0.0050385627, -0.027038442, -0.000299337698, -0.0150234066, -0.00288379285, 0.00644585351, 0.0147281066, -0.00118696911, 0.00824072678, 0.00952343736, 0.0182993952, 0.00504779071, 0.00655659148, 0.00107277092, 0.0245468449, 0.0344763212, 0.00284918724, -0.00508008944, 0.0115813119, 0.000660388556, -0.0200435128, 0.0109722549, 0.0188438557, -0.0136391865, 0.00181217538, 0.013039358, -0.00899743382, -0.00237393822, 0.0155032706, -0.00804693531, -0.0180779211, 0.00182140351, 0.0240854379, -0.00459099794, 0.0119042965, -0.0290501751, 0.00541691622, -0.0093342606, 0.00135999674, -0.0052046692, 0.0394595154, 0.00590600772, 0.00624744873, -0.00300145149, -0.0143405246, 0.000860523782, -1.45631539e-05, 0.000219456633, -0.00256772921, -0.00770088052, 0.0100586694, 0.00060386624, -0.0197851248, -0.0164814536, -0.00133461936] |
07 Jan, 2025 | Python String rindex() Method
07 Jan, 2025
Python String rindex() method returns the highest index of the substring inside the string if the substring is found. Otherwise, it raises ValueError.
Let’s understand with the help of an example:
Python
s = 'geeks for geeks'
res= s.rindex('geeks')
print(res)
Output10
Note: If start and end indexes are not provided then by default Python String rindex() Method takes 0 and length-1 as starting and ending indexes where ending indexes is not included in our search.
Table of Content
Syntax of rindex() rindex() with start or end indexrindex() without start and end indexErrors and ExceptionsSyntax of rindex() string.rindex(value, start, end)Parameters:
value : Part that we are searching for.start (optional): Index where the search begins (default is 0).end (optional): Index where the search ends (default is the string’s length).Return:
It returns the highest index of the substring inside the string if substring is found. Otherwise it raises an exception.rindex() with start or end indexIf we provide the start and end value to check inside a string, Python String rindex() will search only inside that range.
Example:
Python
a= "ring ring"
# checks for the substring in the range 0-4 of the string
print(a.rindex("ring", 0, 4))
# same as using 0 & 4 as start, end value
print(a.rindex("ring", 0, -5))
b = "101001010"
# since there are no '101' substring after string[0:3]
# thus it will take the last occurrence of '101'
print(b.rindex('101', 2))
Output0
0
5
rindex() without start and end indexIf we don’t provide the start and end value to check inside a string, Python String rindex() will search the entire string .
Example:
Python
a = "ring ring"
# search for the substring,
# from right in the whole string
print(a.rindex("ring"))
b = "geeks"
# this will return the right-most 'e'
print(b.rindex('e'))
Output:
52Errors and ExceptionsValueError is raised when the substring is not found within the specified range or the entire string.
Example:
Python
s = 'geeks for geeks'
res = s.rindex('pawan')
print(res)
Exception:
Traceback (most recent call last): File "/home/dadc555d90806cae90a29998ea5d6266.py", line 6, in res= s.rindex('pawan')ValueError: substring not found | NLP/Natural Language Processing (NLP) Tutorial/AI ML DS - Projects/30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated]/Does Artificial Intelligence Require Coding?/Artificial Intelligence – Boon or Bane/Artificial Intelligence Examples/Agents in Artificial Intelligence/What are Diffusion Models?/ML | Common Loss Functions/Loss Functions in Deep Learning/Kaiming Initialization in Deep Learning/Swift - Initialization/Swift – If Statement/6 Best iOS Project Ideas For Beginners/Swift Programming Language/Introduction to Visual Programming Language/What is D Programming Language: Usage and Applications/Best Programming Languages for Data Science in 2024/5 Best Languages for Competitive Programming/MEX (Minimum Excluded) in Competitive Programming/Rearrange Array to maximize sum of MEX of all Subarrays starting from first index/Minimize moves to segregate even and odd by swapping adjacent elements/Minimum elements to be removed such that sum of adjacent elements is always even/Maximum sum such that exactly half of the elements are selected and no two adjacent/Maximum length subsequence such that adjacent elements in the subsequence have a common factor/Longest subsequence such that difference between adjacents is one/Longest Increasing Subsequence using Longest Common Subsequence Algorithm/Longest Common Subsequence (LCS)/Minimum insertions to form a palindrome with permutations allowed/Print longest palindrome word in a sentence/Python String split()/Python String strip() Method/Python String rindex() Method | https://www.geeksforgeeks.org/python-string-rindex-method/?ref=lbp | NLP | Python String rindex() Method | Artificial Intelligence – Boon or Bane, AI ML DS - Projects, Longest Common Subsequence (LCS), Rearrange Array to maximize sum of MEX of all Subarrays starting from first index, MEX (Minimum Excluded) in Competitive Programming, Swift - Initialization, Minimum insertions to form a palindrome with permutations allowed, Longest Increasing Subsequence using Longest Common Subsequence Algorithm, 6 Best iOS Project Ideas For Beginners, ML | Common Loss Functions, Python String strip() Method, Artificial Intelligence Examples, Python String split(), Longest subsequence such that difference between adjacents is one, What is D Programming Language: Usage and Applications, 30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated], Swift – If Statement, Natural Language Processing (NLP) Tutorial, Python String rindex() Method, Loss Functions in Deep Learning, Minimize moves to segregate even and odd by swapping adjacent elements, Maximum length subsequence such that adjacent elements in the subsequence have a common factor, Does Artificial Intelligence Require Coding?, Print longest palindrome word in a sentence, Best Programming Languages for Data Science in 2024, NLP, 5 Best Languages for Competitive Programming, Maximum sum such that exactly half of the elements are selected and no two adjacent, Swift Programming Language, Minimum elements to be removed such that sum of adjacent elements is always even, Agents in Artificial Intelligence, What are Diffusion Models?, Kaiming Initialization in Deep Learning, Introduction to Visual Programming Language | GeeksforGeeks | [-0.0393413976, 0.0195203871, -0.00647840369, 0.0279979277, 0.00222836039, 0.000499470916, 0.0341506563, 0.00177993265, -0.00492769526, -0.00371518661, -0.0441313088, 0.0256731175, -0.00854267459, 0.00704457518, 0.0117944023, 0.00342709059, 0.0252522472, 0.0307636503, -0.0176966134, -0.039020732, -0.00152941432, -9.4414092e-05, -0.000753433851, -0.0145501038, -0.00993555691, 0.00170227198, -0.0298016593, 0.00168974604, -0.0190193504, -0.0191696621, 0.0308237746, -0.0361347608, 0.0328479633, 0.00835729111, -0.0170252249, 0.0141592957, 0.0123756053, 0.00837232266, -0.00134778861, -0.0213642027, -0.0182377342, 0.01421942, 0.00430390472, 0.00614771945, -0.0218451973, -0.00810176227, 0.0112031791, -0.02994195, 0.0105919149, -0.027076019, 0.0232280586, 0.0351326875, -0.0183178987, -0.00690428494, 0.0207429174, 0.014029026, 0.027076019, 0.00443667965, -0.0116040083, -0.0250919145, 0.00608258462, 0.027456807, -0.0148306843, 0.000156573951, 0.0226668976, 0.0210836213, 0.00698445085, -0.0209433306, 0.0383192822, -0.0284789223, 0.0122553557, 0.0165843125, 0.0492218398, -0.00167972536, -0.00678403629, -0.0248514172, -0.0276973061, -0.010431583, -0.00677902577, 0.0248714592, 0.0138987564, 0.0130870771, 0.0208030418, -0.0323469266, 0.00181375258, -0.00201917766, 0.0579198338, -0.00563165173, 0.0100457845, 0.0187187288, 0.0353932269, 0.0368161723, 0.0114536975, -0.0198310297, 0.00176865933, 0.035433311, 0.00649844529, 0.0315853506, -0.0292004161, 0.0543123707, -0.00172607123, -0.0128265377, 0.00056554511, -0.0234284736, -0.0200514868, 0.0186886657, -0.0311444364, -0.00060312287, 0.0122954389, 0.0377380811, -0.00151438324, 0.00116115238, 0.0192798898, 0.0262743607, 0.00720991706, -0.00573185924, 0.0124958539, -0.0113434698, -0.00981029775, 0.0136682792, 0.0148507264, 0.0229875613, 0.0151212858, 0.0515867323, -0.00033099734, 0.00581202516, -0.028418798, -0.0290601254, -0.00964996591, 0.000955727359, 0.0172156189, 0.0265749823, 0.00867294427, -0.0187387709, 0.0230076015, 0.0338700749, 0.0217049066, 0.0319661386, 0.0257933661, -0.00923911575, -0.0231679343, -0.0198109895, 0.00601745, 0.00296112662, -0.0134778852, 0.00818192866, 0.00193901174, 0.000842367823, 0.0146603324, -0.0573987588, -0.00819194876, -0.00679405686, -0.0147404978, 0.028418798, -0.00283586746, 0.0127263302, -0.021223912, 0.00453438144, 0.038860403, 0.0405839682, -0.0077510369, -0.0300621986, 0.0450131297, 0.0600843132, 0.0160131305, 0.0191997234, 0.0224664826, -0.0531499647, -0.0483801, 0.0324070491, 0.00491015892, -0.0198510718, -0.00760573614, -0.00582705624, -0.0308638569, -0.0191195589, 0.0311243962, -0.0186485834, 0.0169550795, 0.0382992402, -0.0484602638, 0.00706461677, 0.0030613339, -0.00902367, -0.00829716679, -0.0218451973, 0.00848756079, 0.0165442303, -0.0163337942, -0.0234885979, -0.0255328268, -0.0187688321, 0.0190995168, 0.0263946094, 0.0321064293, -0.00162586384, -0.00511057349, 0.0215245336, 0.0374174155, -0.00702453358, 0.00121313496, -0.0540317893, -0.0199613, -0.00282584666, 0.0299619902, 0.0232681409, -0.00515065668, 0.00475233234, 0.000958232558, -0.0302626137, -0.0246710442, -0.00380537333, -0.0347318612, 0.010792329, -0.00228347443, 0.0406440906, -0.0183880441, 0.0201216321, -0.0249716658, -0.00779111963, -0.0242902562, 0.0137284035, 0.034290947, -0.00405589165, -0.0279979277, -0.030122323, -0.00736022834, 0.0281181764, -0.00865290314, 0.000266802, -0.0122553557, 0.000998315518, -0.0398825146, 0.0032041294, 0.0103013134, -0.0129167242, -0.0393413976, 0.0321665518, 0.0222259853, 0.0069343471, 0.0178769864, -0.0236689709, 0.0392612293, 0.00917398091, 0.0279378034, 0.0142995855, 0.0262743607, 0.0264146514, -0.0110127851, 0.00928921904, -0.052508641, -0.0464962, -0.00222961302, 0.0308237746, -0.0325673819, 0.0102011058, -0.00151438324, 0.0312246028, -0.00407092273, -0.000873056357, 0.0303628203, 0.0266551487, 0.0366758816, 0.000412415771, 0.027456807, 0.0142995855, 0.0150511404, 0.00222209748, 0.0279177614, -0.0231478922, 0.0472176932, -0.0327277146, -0.00703455461, -0.00365756755, -0.0374174155, -0.00332437805, -0.00899861846, 0.00603248132, 0.0237691775, 0.0103714587, -0.0232481, 0.0217449907, 0.0262944028, -0.0276772641, 0.00595231541, -0.0111029716, -0.0261140298, 0.0214443672, -0.00917398091, 0.0381990336, 0.0330684185, 0.0196406357, 0.0229073949, 0.052107811, 0.0120950248, 0.011553905, -0.0230076015, -0.0426883213, -0.0371368341, -0.00396821, 0.0293206647, 0.000840488938, -0.0174861792, 0.00432895636, -0.00951468572, -0.0397422276, -0.0202218387, 0.051747065, 0.00982532836, -0.0390608162, 0.0300020743, -0.0535107143, -0.00664374558, -0.00705960626, -0.00663372502, -0.00245132181, 0.0499433316, 0.0013214841, -0.0103514167, -0.0253324118, 0.0271161031, -0.0223061517, 0.0118545266, -0.00382040441, -0.000940696278, -0.0471776091, 0.00412603654, 0.00695939874, -0.0198009685, -0.0194602627, -0.0175563246, -0.00278325845, -0.0480995178, -0.000152111592, 0.000372646, 0.00441663805, -0.00664374558, -0.0230677277, 0.0135179684, 0.0403434709, 0.0104416031, -0.0169951636, 0.00379785779, -0.0131071182, 0.00550639257, 0.00418616133, -0.0158427786, 0.0337498263, -0.00438908115, 0.0382791981, 0.000468156097, 9.08128932e-05, 0.0208631661, -0.0100107118, 0.0112031791, -0.0382190756, -0.0383794047, -0.00527090533, 0.0171354525, -0.00505044917, 0.0149509329, 0.00701952307, -0.022566691, 0.0161534213, -0.0181776099, -0.0286392551, 0.00439659646, 0.0416060835, 0.0371368341, -0.00294108503, 0.0153116798, -0.0208030418, 0.0220255703, -0.0493020043, 0.0220656544, -0.0166143756, 0.032006219, -0.0170753282, 0.0129267452, -0.00486757094, -0.0112933656, 0.041285418, -0.0288997926, -0.0343310311, -0.0299018659, 0.011183138, -0.0201516934, 0.0179771949, 0.0489011742, 0.0160231516, -0.0253524538, -0.00627297862, -0.0298217013, -0.0459751226, -0.0180974435, -0.0292805806, -0.0264146514, 0.0141392536, 0.0160131305, -0.0193400141, -0.0170152038, 0.00997062866, 0.0260338634, 0.005305978, -0.044331722, -0.0564367659, -0.00592726329, -0.058360748, -0.00297365244, -0.000245977688, -0.00848255, 0.0681409836, -0.0194302015, -0.0195404291, 0.0187788531, 0.0148306843, -0.00476235338, 0.0129668284, -0.00153943512, 0.000429325766, 0.00959986169, -0.00068328873, -0.0130570149, 0.00518071884, -0.0233883895, -0.0227671042, -0.0207228754, -0.00280079478, -0.0214443672, -0.014399793, -0.0255929511, -0.00038861655, 0.0559156872, 0.0275970977, -0.0307636503, -0.0472577773, -0.0255127847, 0.027076019, 0.0357138924, -0.0110027641, -0.0278977193, 0.0344512798, -0.0266551487, -0.0019790947, 0.00813683495, 0.0245107114, -0.00981530733, 0.00260038022, 0.042447824, 0.0312446449, 0.0430490673, 0.0136281969, 0.0195704903, 0.0373773314, 0.0729509369, 0.000911260373, 0.0048500346, -0.0205625445, 0.0355134755, 0.0275369734, 0.0139989639, -0.0309440233, -0.0219454039, -0.0083973743, 0.0386199057, 0.0257733241, 0.0596434027, -0.0170753282, -0.0155822393, -0.00443417439, 0.00916897, -0.0121050449, -0.00783621334, 0.0221257787, 0.0287194196, 0.0104716653, -0.00263044238, 0.0554747768, 0.0352328978, 0.0280580521, 0.0595632344, -0.00497529376, -0.0106620593, -0.00899360795, 0.0280580521, 0.00764080882, -0.0223462339, -0.0100207329, -0.0187888741, -0.0183379408, 0.0156022813, 0.0201516934, -0.0398624763, -0.0375577062, 0.0103714587, 0.00316404644, -0.0325473398, 0.015742572, -0.0248514172, -0.00378533173, 0.0273766425, 0.00700449198, -0.0273966826, 0.0537111275, 1.48158097e-05, -0.0303427782, -0.00430641, 0.002036714, -0.0533503816, -0.00354232895, -0.0078261923, 0.00300621986, -0.0214644093, -0.0078261923, -0.0216447823, 0.015912924, -0.0182076711, 0.0253724959, 0.00683413958, -0.0337698683, -0.00801157579, 0.0295210779, -0.0219053216, -0.0020053992, -0.0213842429, -0.0120349, -0.0124156876, -0.00798151363, -0.0188590195, 0.0204322748, -0.032988254, -0.00347969937, 0.0108223911, 0.0145300627, -0.0312847272, 0.00535107125, 0.0125860404, -0.0250117481, -0.0198510718, 0.00107096578, -0.0294809956, 0.0345915705, 0.00371518661, -0.0290601254, -0.0140791293, 0.00020996567, 0.00683413958, 0.0261340719, -0.00898358691, 0.0088733593, -0.00764581887, 0.0196506567, 0.00259035942, -0.00398324104, 0.00856772624, -0.00849758182, -0.00259035942, -0.000917523343, -0.0161734633, 0.00780114066, -0.0204322748, 0.020843124, 0.00311143743, -0.00985038, -0.0072750519, -0.0150411194, 0.0252722874, 0.00613769889, -0.0220856946, -0.0105618527, -0.00421872828, 0.00546631, 0.00249265716, -0.00326926401, 0.0159429852, 0.0181776099, 0.0110929515, 0.000861156732, 0.0120749827, -0.00968503859, 0.00168097788, 0.00582705624, -0.0379384942, 0.00107597618, 0.0237090532, -0.0313648917, -0.00749550806, -0.00267303037, -0.022185903, 0.0191496201, 0.00147304777, 0.0148006221, -0.0147104356, 0.0128365587, -0.0232481, 0.0168949552, 0.00536610233, 0.00934934337, -0.00339201814, 0.0148607465, 0.0117242569, -0.00234735664, 0.0123555632, -0.0222460274, 0.000627548376, -0.00770594366, 0.00949464459, -0.0203621294, 0.0460552871, -0.035794057, -0.0185183138, 0.025953697, 0.0180172771, -0.00375025929, -0.00947961304, 0.0151012447, -0.0303628203, 0.0190594345, -0.00544626825, -0.014970975, -0.00977021456, -0.00382541469, -0.00125447044, 0.0345114022, 0.0341506563, 0.0279578436, -0.022165861, -0.00272062887, -0.0112633035, 0.00178494304, 0.000997062889, -0.0270559788, 0.00304880785, 0.0198210087, 0.0083121974, 0.00690929545, 0.0027957845, 0.0670988262, -0.0354533531, -0.0156624056, 0.0331886671, 0.000577131577, 0.033509329, 0.0557553582, -0.01012595, 0.0066487561, 0.00583707681, 0.0179872159, -0.00351978233, -0.027076019, -0.0111530758, -0.0088833794, 0.002748186, 0.00260288524, 0.00596233597, -0.0179571528, 0.0198210087, 0.00410098489, 0.0123355221, 0.020081548, 0.0171554945, 0.0169350374, -0.0201216321, 0.0171154123, 0.00743037323, -0.0077510369, 0.0532301329, 0.0129367663, -0.00254401355, 0.0143196275, -0.0174761582, 0.0116941947, -0.00418115081, 0.00405338639, -0.000119074488, 0.0176364891, 0.0189792681, 0.0268555637, 0.0232881829, 0.019891154, 0.0196005534, 0.0181675889, -0.0243904628, -0.0128666209, -0.0233683493, 0.00699948194, 0.0265950244, -0.00787128601, -0.0129367663, 0.00492769526, -0.0408645496, 0.0135981347, 0.0138686942, 0.0238293018, 0.0500234962, 0.00473479601, 0.0117543191, -0.0304029025, 0.00404837588, 0.0288196281, -0.0190494135, 0.0224264, 0.0300822388, -0.0418465808, 0.00138160854, 0.00710971, -0.0042237388, -0.0195203871, 0.0371167958, 0.0438908078, -0.00470222905, -0.0180573612, -0.0160532147, 0.0137083624, 0.000542372174, 0.038639944, -0.00157951796, -0.0106520392, 0.0227671042, -0.0364153422, 0.000812931918, -0.00221332931, -0.00347969937, 0.000525149051, -0.00642329, -0.00254651881, 0.0188991018, 0.0350725651, 0.0106520392, -0.00955977943, -0.0172356609, 0.0112833455, 0.014389772, -0.00442415336, -0.0235888045, -0.0205224603, 0.00348721491, -0.038259156, -0.0114837596, -0.00542622665, -0.0111029716, 0.00321665523, -0.032988254, 0.000937564822, 0.0144198341, 0.00334943, 0.0141492747, -0.0256330352, -0.0077510369, -0.0193099529, -0.00471224962, -0.00437655486, 0.0733918473, 0.0157125089, -0.0165041462, 0.00777608855, 0.0464962, -0.00989547372, 0.0137083624, 0.0128365587, -0.00726503134, 0.00763078779, 0.010040774, -0.00982031785, 0.0175062194, 0.0126862479, -0.0255528688, -0.0094545614, 0.00318659307, 0.0120549416, -0.00589720113, -0.0212840363, -0.0146603324, -0.00961990375, -0.0113534899, 0.00173358677, 0.00131146342, 0.00910884608, 0.0199613, -0.0239495505, -0.0146603324, -0.00588217, -0.000949464447, 0.00577194197, 0.0134077407, -0.0161233582, 0.0372971669, 0.0159830693, 0.0311845206, -0.0205625445, -0.0342508629, -0.0105317906, 0.0154219074, 0.0184181072, -0.0055164136, -0.0182477552, -0.0081117833, -0.030503111, -0.0108524533, -0.00399326207, 0.0432094, 0.00875311, 0.0097501725, -0.0339903273, 0.0345514864, 0.0132474089, 0.0126161026, 0.0166143756, -0.0116140293, 0.00692432653, 0.022927437, 0.00963493437, -0.0348320678, 0.0292204563, 0.0146503113, 0.0260138214, -0.00734018674, 0.0218652394, 0.00503541809, -0.00394816883, -0.0266751908, -0.0083121974, 0.00398825156, 0.0102612302, 0.00878317188, 0.0169751216, 0.00648341421, 0.0141392536, 0.0100608161, 0.0428887345, 0.00267303037, 0.0523883924, -0.0213241186, -0.0227270219, -0.00846250914, 0.00586212846, 0.0317456797, 0.0206026267, 0.00308889081, 0.0361548029, -0.0154920528, 0.0146903945, -0.0202519, 0.0087481, -0.00227595889, -0.00429137889, -0.0105618527, -0.00246760552, 0.00993555691, 0.029741535, -0.00734519726, -0.0320663452, 0.0155822393, -0.00828213524, 0.00966499653, 0.000785374956, 0.0105618527, -0.0116841746, 0.00620283373, -0.0110528683, -0.0337097459, 0.0224664826, -0.0349924, 0.0240898412, 0.0216047, -0.00321164494, -0.0111430548, 0.0251720808, 0.0104516242, -0.0396821, 0.0277173463, -0.0129968906, 0.0559156872, -0.00772097474, 0.0260939877, -0.00411601597, -0.0177066345, -0.00283837249, -0.0220656544, 0.000399889861, 0.0220656544, 0.0174661372, -0.0152715966, -0.0126762269, -0.0288396683, 0.00543123716, 0.0272964761, -0.0296212863, 0.00803662743, -0.00950466469, 0.0200615078, 0.00959485117, 0.0107121635, -0.0399025567, 0.00660366286, -0.00376027985, 0.0118645476, 0.0306033175, -0.011373532, -0.0143797519, 0.0133175543, -0.00276321708, 0.00365756755, -0.0549937822, -0.0272964761, -0.0348721482, -0.0230276436, -0.00597736705, 0.00386299239, 0.00592225324, -0.0132975122, -0.0198210087, -0.00827211514, -0.00779613, -0.000165342091, -0.000482874049, 0.00489011779, 0.0123555632, 0.0211237054, 0.00927919894, -0.00350976153, 0.00848255, -0.00578697305, -0.0124557707, -0.014209399, 0.0134778852, -0.0341306143, 0.00463709421, -0.00949464459, -0.0457346253, -0.0250117481, -0.0241700076, -0.00496777846, 0.0088934, -0.0142394612, -0.0261541121, -0.0314450599, 0.00238618697, -0.021965446, -0.039381478, 0.0205024183, 0.022366276, -0.0247912928, -0.0112031791, -0.0199312381, -0.0242501739, 0.0119547341, 0.0368963368, -0.0175863858, 0.0227871463, 0.010411541, 0.0158427786, 0.0079264, -0.00937940553, 0.00139162922, -0.0420870781, -0.00930926111, -0.0272563938, -0.0148206633, 0.0320463032, -0.0110328272, -0.0186886657, -0.00414106762, -0.00292354869, -0.0127263302, -0.0123555632, -0.0164740849, -0.057599172, -0.0142394612, -0.0170252249, 0.0407242589, 0.00848255, 0.0129568074, 0.0193600561, 0.035052523, 0.0125860404, -0.0169550795, -0.0432094, 0.0166143756, -0.0162436087, -0.0242501739, 0.0572785102, 2.11766273e-05, -0.0115338638, 0.0088934, 0.000179590323, 0.0045168451, 0.0121351071, -0.0154920528, 0.0159830693, 0.00195529545, -0.0164440218, -0.0183780231, -0.0172857642, 0.00981029775, -0.00647840369, 0.014029026, 0.0303427782, 0.00738026947, 0.0112332413, 0.0141091915, -0.0136783, 0.00478740502, -0.0174260549, -0.00837733224, -0.00165091571, 0.0543123707, -0.0190794747, 0.028418798, 0.000106783431, -0.00517570833, -0.0479792692, 0.00484251929, 0.0141492747, -0.0272163097, -0.002036714, 0.0220856946, -0.0260138214, -0.0122553557, 0.0165742915, 0.0014542588, 0.00356487557, -0.0202418808, 0.0496627502, -0.00528593641, -0.0124357296, -0.00654353853, 0.00742035266, 0.0421672426, 0.001183699, 0.00533604, -0.00296112662, -0.012505874, -0.00162586384, 0.0187888741, -0.00730010401, 0.00565670384, -0.0142494822, -0.00275570154, -0.0289398767, 0.0384395309, -0.0192197654, 0.00207178644, 0.00258785416, 0.0107522458, -0.0428486541, 0.02803801, -0.0151313068, 0.0160532147, -0.0175362825, 0.0204122327, 0.00561161, -0.0109426398, 0.0172356609, 0.0021218902, 0.00429638894, -0.0148908086, -0.0186986867, -0.0167646855, 0.0128666209, -0.0114637185, -0.011183138, 0.00777608855, -0.0130870771, -0.020823082, 0.0239695925, -0.0147404978, 0.0236088466, 0.0126361437, 0.0260338634, 0.027657222, -0.0128766419, -0.0118445065, 0.0119146509, 0.00757567398, 0.0134979272, -0.0192297865, -0.0216247421, 0.0215646178, -0.0414858349, 0.0117743611, 0.00434148265, 0.00875311, -0.00809174124, -0.0131872846, 0.00369514525, 0.00858275779, -0.00864789262, 0.013838632, 0.00713476166, -0.0125960615, -0.00909882504, 0.0121150659, 0.00790635776, 0.012125087, 0.00990549475, -0.00453187618, -0.0107121635, -0.0370767117, -0.00438407063, 0.000737150142, -0.00111292768, 0.0116240503, 0.00393063249, 0.00355986529, 0.011363511, 0.00539616449, 0.0249516238, -0.0148206633, 0.0250117481, 0.0473780259, 0.00326425373, -0.0167246033, -0.0093593644, -0.0216247421, 0.014019005, -0.0088934, -0.00404086057, -0.0014642796, -0.00441663805, 0.00944955088, 0.0287795439, 0.0268154815, -0.0184882525, 0.00280831032, -0.0108524533, 0.00715480326, -0.0154219074, -0.00766085, -0.00671890145, 0.0158327576, 0.00140165, -0.00112294836, -0.00922909472, 0.00728006242, -0.0187087078, 0.0381789915, -0.020843124, 0.00358992745, 0.0296012443, -0.0022170872, -0.00575691089, -0.000925665197, -0.0066487561, -0.0279778857, -0.0224664826, -0.0182878375, -0.0137885278, -0.0122453356, 0.00500034541, -0.0143797519, 0.0179371107, -0.0338299945, -0.0188289564, -0.0185082927, 0.00774101587, -0.0159730483, -0.00733016618, -0.0130670359, 0.0112432623, -0.0186285414, 0.00881824456, -0.0105518317, -0.00448427768, 0.0260539055, 0.0129267452, 0.00327677955, 0.00290601258, -0.00291352812, -0.0186085012, 0.00967501756, 0.00855770614, -0.000522957, 0.0170753282, 0.0235086381, -0.0244105048, -0.0048500346, 0.0250919145, -6.21990039e-05, -0.0155020738, -0.00127513823, -0.0160231516, -0.00870801695, -0.0020642709, 0.0045368867, 0.00229474786, 0.00521579152, -0.00961990375, -0.00942951, 0.00341706979, 0.000288565789, -0.0116240503, 0.00169600907, 0.0151313068, 0.0134678651, -0.0125960615, 0.0101910848, 0.0320262611, -0.00832221843, 0.00392562198, 0.00854267459, -0.0017085349, 0.00195279031, 0.00306634419, 0.00246635289, -0.00198661024, -0.00893849321, -0.0101660332, 0.0015920439, -0.021424327, 0.0126561858, -0.00360245351, 0.00296363165, -0.0150511404, -0.0181675889, 0.000848630792, 0.0173158254, -0.00585210789, 0.00803662743, -0.0122553557, -0.00774101587, -0.0307836905, -0.0165041462, 0.028218383, 0.0140791293, 0.00577695249, -0.0158427786, 0.00953973737, 0.00521579152, 0.0133075332, 0.000136062765, 0.0198510718, 0.00166970456, -0.0256731175, 0.0132975122, 0.0112031791, -0.0100307539, 0.0233282652, -0.0110428473, 0.0232881829, -0.00980528723, -0.0231879763, 0.020843124, 0.0164740849, -0.0184381474, 0.00798151363, 0.016864894, 0.0105117485, -0.0176966134, 0.00771095371, 0.0167947486, 0.0121451281, -0.0167847276, 0.0212439541, -0.0285590887, -0.0330684185, 0.000554584956, -0.00391810667, 0.016303733, -0.0197508633, 0.000369827671, -0.0021005962, -0.0290200412, -0.00360746379, -0.00344963721, -0.00178494304, 0.0245107114, -0.0122353146, -0.0071046995, 0.0102011058, -0.011563926, 0.00566171389, 0.0293006226, -0.0148707675, -0.0118344855, -0.0280981343, 0.0148407053, -0.025953697, 0.00448177289, 0.021404285, 0.0154219074, 0.00436903955, 0.0153818252, -0.0252722874, 0.00331435725, 0.00490765367, 0.00339953369, -0.00251520402, 0.0163438153, 0.0111530758, -0.00548134092, 0.0150711816, 0.00795145147, -0.0184882525, -0.00225842255, -0.00153191946, 0.00501036644, 0.00681409845, -0.000179433744, -0.0272964761, 0.00827211514, -0.00929924, -0.0154920528, -0.014970975, -0.00372019713, -0.00376027985, -0.0116040083, -0.0205825847, -0.00191270735, -0.0136582591, -0.000493834261, -0.0167246033, 0.00559657905, 0.0149108507, 0.0128566, 0.0112532824, 0.0175763648, -0.0234685559, 0.00417864555, -0.0163939185, -0.0186586045, -0.00421371823, -0.0180774014, -0.0078762956, -0.021785073, -0.00759070506, 0.0116541125, -0.0265749823, -0.00910884608, 0.00127826969, 0.00953472685, 0.00629803073, 0.010792329, -0.00299619907, -0.023308225, -0.00457697, 0.0350725651, 0.00192147552, 0.0388403609, -0.0154519696, -0.0119747752, 0.00181876298, -4.33709829e-05, 0.00789633766, -0.0174060129, 0.00998065, 0.0159830693, 0.0112432623, 0.00866292324, -0.0173458885, -0.00387802348, 0.000284964597, 0.0236489289, -0.0166444369, -0.0126060816, 0.0098353494, 0.0294409133, 0.0222861096, -0.0146402903, 0.00633310294, -0.00362750515, -0.00373021769, -0.0111330338, -0.0199212171, 0.00553645473, -0.00965998601, 0.0107021425, -0.00975518301, -0.00594229437, -0.00634312397, -0.0103514167, -0.000868045958, 0.00734519726, 0.00464711478, 0.0161233582, -0.0141192125, -8.60373839e-05, 0.00359744299, -0.0172757432, -0.00576693192, 0.00975518301, 0.00690929545, -0.00172857638, -0.0254526604, 0.011373532, -0.000778485672, -0.00739530055, 0.0200114027, 0.0285791289, 0.0302225295, -0.0137985488, 0.0392812714, 0.0129768485, 0.00550639257, -0.0102562197, -0.0239495505, -0.0193901174, -0.00775604695, 0.0244105048, -0.0152415344, -0.000646963541, 0.034290947, 0.0103413966, -0.020843124, 0.0116440915, 0.0398624763, -0.00170477713, 0.00718486542, 0.0047748792, -0.0169651, -0.00161584315, -0.00914892927, 0.0156323425, -0.00246760552, -0.00126073346, -0.0107021425, 0.00262793712, -0.00622788537, 0.00193400146, 0.023308225, -0.0258334484, -0.00496276794, -0.0265349, 0.00871302746, -0.0177567378, -0.032747753, -0.0159029029, 0.0063832067, 0.0410850048, 0.00931928121, 0.045093298, 0.00210560649, 0.029360747, 0.0336897038, -0.0148407053, 0.01970076, 0.0027381652, -0.0134277819, 0.0251319986, -0.00534105068, 0.0051231, 0.0115739461, -0.00227595889, 0.00527090533, 0.0538313761, 0.00514564617, 0.011934693, 0.0157525912, -0.017055288, 0.0203120261, 0.0142394612, -0.020462336, -0.00278325845, -0.0129568074, 0.0155020738, -0.00601745, 0.0106420182, -0.026334485, -0.0108925365, -0.0156924669, -0.0027005875, 0.0289599169, 0.00245507946, -0.00265799928, -0.0199312381, 0.0212840363, -0.00010717487, 0.0176865924, 0.00523583265, 0.0275770556, -0.00661869394, 0.0202519, 0.00880822446, 0.00532100908, -0.0120850038, -0.0039857463, 0.00638821721, -0.0114336563, -0.0123756053, 0.00854768511, 0.00779613, -0.0159930903, -0.0187788531, -0.0145100206, -0.00202418794, -0.00826209411, 0.0114136143, 0.0202418808, -0.0102812722, 0.0400428474, 0.0269557703, 0.0153818252, 0.0208030418, 0.00279828953, -0.0174962, 0.0048976331, 0.00463458896, -0.0105618527, 0.0167646855, 0.016113339, 0.00384545629, -0.00957982056, 0.00163588463, -0.000803537492, -0.0341306143, 0.00974516291, 0.011363511, -0.00862785056, 0.0255929511, -0.0201216321, 0.0127864545, 0.0194903258, -0.0107322047, 0.0147906011, 0.0214443672, -0.0266952328, -0.00980528723, 0.0140390461, 0.0103814788, 0.0162736699, 0.0241700076, 0.00981029775, 0.0168548729, 0.0165041462, 0.0128966831, 0.0403835513, 0.00340203871, 0.0321865939, -0.00711472, -0.0276371818, 0.0159830693, 0.0507449917, 0.0145100206, -0.00563165173, -0.00433647214, -0.0297816172, 0.0149809951, -0.00187638216, -0.00508301659, -0.00882325508, -0.012696268, 0.0137885278, -0.0128265377, 0.0161734633, -0.00886333827, -0.00771596422, 0.000747797196, -0.0100958878, -0.00603749137, 0.00774602639, -0.0179571528, 0.00115363684, 0.00629302, 0.00427634781, -0.0129968906, 0.00639322726, -0.00495024212, 0.0247712508, 0.0135179684, -0.0229073949, -0.032366965, -0.00601243973, 0.0201717354, -0.00414106762, -0.00547633041, -0.00884329621, -0.00628299965, -0.0309039392, -0.0291603319, 0.0269958545, 0.033148583, -0.00348972017, 0.00285590882, 0.00979025569, 0.00650846586, -0.0177166555, -0.00845248811, 0.00433396688, 0.0144498963, 0.028979959, -0.00334943, -0.0112132, 0.0109426398, 0.0161935035, 0.0136682792, -0.00307887024, 0.00197157916, 0.0116841746, -0.00847252924, -0.00884830672, -0.000122910555, 0.0205124393, -0.010611956, -0.000100990197, -0.00690929545, -0.00139413448, -0.00788130611, 0.00296363165, 0.0111230137, -0.0228272285, 0.0106620593, 0.0106620593, 0.000908755173, 0.000708340551, -0.00313147902, 0.0228272285, 0.00803161692, -0.00567674497, 0.00809174124, -0.00666879769, -0.00303878728, 0.00384295103, -0.00836230163, -0.00953472685, 0.00165467348, 0.00290851761, 0.0189492051, 0.00339452317, -0.0169751216, 0.0303026959, -0.00180874229, 0.00601243973, -0.00566672441, 0.0258735325, -0.00191771775, -0.0223261919, -0.00158828613, -0.0142494822, 0.00972512085, -0.00455442304, 0.0127062891, 0.0069343471, 0.00682912953, 0.0132774711, -0.00961489324, 0.0241700076, -0.00865290314, -0.0262142364, -0.0154920528, -0.0305832755, 0.0181074645, -0.00484502409, -0.00697944034, -0.00883327611, -0.0245307535, 0.0063832067, -0.0124858329, 0.00449179346, -0.0294609535, 0.0146903945, 0.0280780923, -0.0024149965, -0.0156724267, 0.0224464405, 0.00717484485, -0.0137885278, 0.0131271603, 0.0162836909, -0.00728507293, 0.0130169317, 0.0222460274, 0.0152315134, -0.00360996905, 0.0115238428, -0.020783, 0.00768590206, 0.0130570149, -0.014580166, -0.0348120257, 0.021043539, 0.00153317209, 0.0226869397, 0.00529094692, 0.0159329642, -0.0244305469, -0.0115438839, 0.00118808309, -0.000430265209, 0.00424879091, -0.00268054591, 0.00224213884, -0.00256029726, 0.0171354525, 0.0190494135, -0.0207629576, -0.0244706292, -0.00612767786, -0.00962491333, 0.0214644093, 0.00626295805, -0.0114236353, -0.00149183662, 0.00259286468, -0.0453337952, 0.0141392536, -0.0158528, 0.00146052183, -0.0114336563, -0.00452185562, 0.00739530055, 0.022566691, -0.0233883895, -0.0367360078, 0.0233883895, -0.0123355221, 0.000486318691, -0.0224464405, 0.0105017275, -0.0148807885, 0.00820698, -0.0144699384, -0.00910383556, 0.00835228059, -0.0166344158, -0.0129768485, 0.00276572234, -0.0154920528, -0.00430139946, 0.0182377342, 0.00713476166, 0.0221257787, -0.00148557359, 0.0436903946, 0.021043539, -0.00625794753, -0.000765333476, 0.00699948194, -0.0185483769, 0.0195604712, -0.0227270219, 0.00509303762, -0.00696942, -0.0273365583, -0.0133676575, 0.0129267452, 0.00607757457, 0.0180473402, 0.00558655849, 0.00469220802, -0.0138887353, -0.0118044233, -0.00384295103, -0.0162736699, -0.0228272285, 0.00230476842, -0.00677401526, -0.0157926753, 0.0175663438, -0.00248889951, -0.0103013134, -0.0128766419, -0.00136281969, -0.0324270912, 0.0137985488, -0.00833223946, -0.0162436087, -0.00590221165, 0.0436503105, -0.000955101103, -0.00238869223, 0.0116040083, 0.00348471, 0.013447823, 0.0144699384, 0.0245908778, -0.00764581887, 0.0153317209, 0.00746043539, -0.0111330338, -0.00967501756, 0.00791136827, 0.042447824, 0.00764080882, 0.0309640635, 0.0114035942, 0.00882325508, 0.0141192125, -0.00962491333, -0.000313617609, 0.0179270916, -0.00795646198, 0.00316655147, -0.0226869397, 0.0033369041, -0.0135780927, -0.0051356256, -0.0193400141, -0.00825207308, -0.00361748459, -0.00220205612, 0.00418866612, 0.0202919841, 0.0166644789, 0.000975768839, 0.00191020221, 0.00602747081, 0.0175463036, 0.0112332413, 0.00989547372, 0.0170753282, 0.00135029375, -0.0168548729, -0.0102161374, -0.0012043668, 0.0177266765, 0.0203420874, 0.0089785764, -0.00372771267, -0.0231078099, 0.0168448519, 0.0213241186, -0.0086829653, 0.00752055971, -0.00631306181, -0.0135480305, -0.00545628881, 0.0170352459, 0.0037677954, 0.0114336563, -0.00948462356, 0.0209633727, 0.00457947468, -0.03184589, 0.0157125089, -0.0109025575, -0.00999568123, 0.00345965801, 0.00764581887, 0.0123555632, 0.0241700076, -0.00512059452, -9.12532505e-06, 0.0451734625, -0.005496372, 0.0227871463, 0.0367360078, -0.00533102965, -0.0122252936, -0.00217950926, -0.0230677277, -0.00849758182, -0.00193901174, -0.0105518317, 0.000913765572, 0.00197283179, -0.000613143609, -0.0105418107, -0.00734018674, -0.0130369728, 0.0132173467, -0.000385485066, 0.00667380821, -0.00309640635, -0.00897356588, -0.00329682115, 0.0194001384, -0.0109125776, 0.00478489976, 0.0110328272, 0.00789132714, 0.0370366275, 0.0384395309, 0.0080566695, -0.008217, -0.00106470287, -0.0140390461, -0.00903369, 0.0111029716, -0.0030137354, -0.000494773674, 0.0145300627, -0.000850509678, -0.00386048737, -0.0240297168, 0.0127463723, -0.00055677694, 0.00460953685, 0.00159079127, -0.0284789223, -0.0194602627, 0.038479615, 0.00200665183, 0.0118946098, 0.0150711816, -0.00206677616, -0.0208030418, 0.0113534899, -0.00216322578, 0.00993555691, 0.0202218387, -0.00948963407, 0.0296613686, 0.0139187975, -0.00300621986, 0.0183379408, -0.00492769526, 0.0205625445, 0.00590221165, -0.0324471332, -0.0182878375, -0.00532100908, -0.00261290604, 0.00884329621, -0.00245006918, 0.0132173467, 0.0255127847, 0.00564668281, -0.0287394617, -0.0115338638, 0.00806669, -0.00929924, -0.0021970456, -0.020823082, -0.0183680039, -0.0087481, -0.000392061163, 0.00876814127, 0.00427885307, 0.00676399469, 0.00706461677, 0.00781116122, 0.0163137522, -0.0132373879, 0.00793141, -0.0369364209, 0.00722995866, -0.0217449907, 0.00875812, -0.00287094, -0.0169149972, 0.0136281969, 0.00193901174, -0.0103714587, 0.008217, 0.0419668294, -0.00584208732, 0.0112733245, -0.0164640639, 0.0102562197, -0.00928921904, 0.00153442472, -0.000579010462, 0.00248013134, 0.0156523846, -0.00534105068, -0.00727004139, 0.00164966309, 0.0258134082, -0.00697443, 0.00633310294, -0.010145992, 0.041566, -0.00382290944, -0.0500234962, -0.00467467168, 0.00779111963, 0.0115939882, -0.0112132, -0.0043464927, 0.0120449206, -0.020261921, -0.0252121631, 0.000351978233, -0.0171655156, -0.00620784378, 0.0054212166, 0.00763579831, -0.00320913969, 0.00953472685, 0.025953697, 0.000888713752, 0.00903870072, -0.000206834186, -0.00932930224, -0.00622287486, -0.0022922426, -0.00866292324, -0.00647840369, 0.000804163807, -0.00657861121, -0.0103113344, -0.0219053216, 0.0207028333, -0.0208832063, 0.0215445757, 0.0120850038, -0.00874309, -0.00422123354, 0.0122553557, 0.0101910848, -0.0135380095, -0.000968253298, 0.00570179708, 0.015341742, -0.00875311, -0.0099405665, -0.00681409845, 0.0113434698, 0.0136783, -0.013077056, 0.00185258291, 0.00132398936, 0.0190594345, -0.0250518322, -0.0228272285, 0.0180774014, -0.0116941947, -0.00535107125, 0.0127964756, 0.000211844555, 0.00698445085, -0.00601745, -0.0258334484, -0.00529094692, -0.0174360741, 0.00180999481, -0.0292605404, -0.00545127876, 0.0164540429, 0.00455191778, -0.0141292335, 0.00207930198, 0.0041761403, 0.0179571528, 0.0145100206, 0.00972011, 0.0261340719, 0.00345715275, 0.00697944034, 0.00572684873, 0.00583707681, -0.0271762274, 0.0157626122, 0.00837733224, 0.0101660332, 0.00328680035, 0.00398825156, -0.022366276, 0.0185884591, 0.00581202516, -0.00735521782, 0.00392061146, -0.0127563924, 0.0112733245, -0.0180874225, -0.0166845191, -0.00735020731, -0.0360746384, 0.0139187975, -0.0102462, -0.0144298552, -0.0185082927, 0.000293576159, 0.0298617836, 0.01080235, 0.00257031806, 0.0374575, 0.00379284727, -0.0191897023, 0.00421371823, -0.00359994825, 0.00727004139, 0.00978524517, -0.00998566, 0.0188289564, 0.0149008296, 0.00498280954, -0.0227069799, -0.002843383, 0.00479492079, 0.00664374558, -0.00219829823, 0.0141793368, 0.0101209404, -0.00687923282, 0.0268355217, 0.0025953697, 0.0213241186, 0.0114035942, -0.0345715284, 0.00484251929, 0.00433396688, 0.0176966134, 0.014029026, 0.0162436087, 0.00372520741, -0.0223061517, -0.00353230839, -0.0110829305, -0.00769592263, 0.00561161, -0.0287394617, -0.0183379408, 0.0391610228, 0.00355986529, -0.000804790121, 0.00348721491, 0.0157125089, 0.00642329, -0.00266050454, 0.00642329, 0.0171554945, 0.0344512798, 0.00438657589, 0.0140891504, 0.00316404644, -0.00149809953, 0.0214644093, 0.0294409133, 0.000594041543, 0.00172732386, -0.0112733245, -0.0206827931, 0.0338500366, 0.00184256223, 0.014780581, 0.00675397366, 0.013638217, -0.011934693, 0.00600742921, 0.0150812026, -0.00825708359, 0.0251119565, -0.000435275579, -0.00430641, -0.031625431, 0.00603248132, 0.00105781364, 0.00268806145, 0.00317907752, 0.0072199381, -0.00546631, 0.0272964761, 0.00327176927, 0.0238493439, 0.00571181765, 0.0184281282, 0.0012519653, -0.011563926, -0.0172356609, -0.0162035245, 0.0111630959, -0.00947961304, -0.00279327924, 0.00714979274, 0.022747064, 0.00659364229, -0.00054174586, 0.0136281969, 0.0272163097, 0.000419305026, 0.00669384934, 0.0351527296, 0.0153116798, 0.00304379757, -0.00263294764, -0.00751554966, -0.00709467893, -0.0127864545, -0.00612266781, 0.00548134092, 0.00982031785, -0.00197283179, -0.00064571097, 0.0125860404, -0.00734519726, 0.0108925365, -0.00903369, 0.0182377342, 0.00421121297, 0.0150210783, -0.0045368867, 0.00873306859, -0.00155947648, -0.0189792681, -0.00981029775, 0.00183880446, 0.0392812714, 0.0141091915, -0.00318909809, 0.033910159, -0.0279177614, -0.00414858339, 0.0142795444, -0.00602747081, 0.020642709, -0.0258935727, 0.00156824465, 0.00312897377, 0.00982532836, 0.00791136827, -0.00254526618, 0.0139689017, -0.00901866, -0.0413255021, -0.00116491015, 0.0241900496, -0.0086829653, 0.0253724959, -0.00744540431, 0.00131647382, 0.0113434698, 0.0414056666, 0.00886333827, -0.0101209404, -0.0164740849, 0.00819194876, -0.000127138046, 0.0114136143, -0.0139288185, 0.0022546649, -0.00500786118, -0.0244906712, -0.00394816883, -0.00837232266, -0.0174761582, 0.0290601254, -0.0105117485, -0.0167646855, -0.010040774, -0.0216648243, -0.00585210789, -0.00160707498, -0.0227270219, -0.0172957852, 0.00494773686, 0.0295210779, 0.0152715966, 0.0175162405, -0.0069143055, 0.0157125089, 0.0251119565, -0.0178168621, -0.0031565309, -0.0175563246, -0.0166444369, 0.0110228062, -0.00364754675, -0.0106420182, -0.00648842426, 0.0236288887, -0.0067239115, 0.00209558569, -0.0178268831, 0.00915394, -0.00502790278, -0.0192899108, -0.0165241882, 0.0236689709, -0.0315853506, 0.0104416031, 0.0104917074, 0.0158026963, -0.0250518322, -0.0323268846, -0.00181876298, 0.00532100908, -0.0187387709, -0.00202418794, 0.00136657746, 0.0142394612, -0.0121050449, -0.0194001384, 0.00493771583, 0.00455191778, -0.00791637879, -1.34262164e-05, -0.00204798719, 0.00558154797, 0.0074854875, 0.00332688331, -0.0210034549, 0.00136281969, -0.00971510075, -0.0211437456, 0.0143697308, -0.00939443707, -0.00183128892, 0.0117643401, -0.00191646512, -0.00380286807, 0.00368762971, -0.0107823089, -0.0255929511, 0.0112432623, -0.0281783, 0.00586713897, 0.0127864545, -0.00579699408, -0.00317657227, 0.0261941962, -0.00804163795, -0.00817691814, -0.00770093314, 0.00603248132, -0.0103514167, -0.0158628207, -0.0130570149, -0.00201541977, -0.0353331044, 0.0135580515, 0.00766085, 0.0495024212, 0.00152690918, -0.0048500346, 0.01012595, -0.00385547685, -0.034671735, -0.00170978752, -0.00544125773, 0.00965998601, 0.0003660699, 0.0162335876, 0.0175362825, 0.0108223911, 0.00499533536, 0.0124257086, 0.00131271593, 0.023127852, 0.00818192866, -0.00677902577, 0.00693935761, -0.0231679343, -0.0167246033, 0.000199788352, 0.00130269525, 0.0230076015, -0.0152816176, 0.0048024361, -0.0148707675, -0.0133876987, 0.00549136149, -0.000122832265, -0.00303878728, -0.00819695927, 0.0312847272, 0.00348220463, -0.00195905333, 0.00649844529, -0.00652850745, -0.0122653767, 0.0130570149, 0.0212439541, -0.0135279894, 0.00699447142, 0.00735020731, -0.00531599857, 0.0105818938, 0.00306634419, -0.0112733245, -0.00279828953, -0.0184481684, 0.00683413958, 0.0177366976, -0.0388203189, -0.0108925365, -0.0302626137, -0.0448528, -0.0196205955, -0.0228071883, -0.0383192822, 0.0194903258, -0.00346967881, -0.0177567378, -0.00484001404, 0.0117142368, 0.00584208732, -0.00120561942, 0.0101510026, -0.0184381474, 0.000670762791, 0.00190894958, 0.0163638573, -0.00597235654, -0.0139689017, 0.0281382184, 0.00612767786, -0.00206802879, -0.0249315836, -0.00312396348, -0.012696268, 0.0206827931, 0.0160832759, 0.0261340719, -0.0175663438, 0.0249315836, -0.00646838313, 0.00695438869, -0.00110290688, 0.0254927445, -0.00329431589, 0.010421562, -0.010792329, 0.0196306147, -0.0068942639, 0.0191596411, -0.00393564301, 0.000110149776, -0.000346028421, -0.00543123716, 0.0137985488, -0.0176264681, 0.0148607465, 0.0279979277, 0.000557716412, -0.00679405686, 0.00585210789, 0.00483750878, -0.00603749137, -0.0178669672, -0.00526088476, 0.010411541, -0.0177767798, 0.0224865247, 0.00465713535, -0.00290851761, -0.0136783, 0.0198410507, -0.020662751, -0.00773600582, 0.0231078099, 0.00805165898, -0.0185984802, 0.000686420186, 0.0111931581, -0.0155922603, 0.00301123015, 0.00368261919, -0.0215245336, 0.0128265377, 0.00923911575, 0.021805115, -0.0111931581, -0.000767212361, -0.0111230137, 0.023127852, 0.0174761582, 0.0246109199, -0.0074854875, 0.00147931068, -0.0105919149, 0.00669886, -0.00124382344, -0.00790635776, -0.000742160541, -0.0138185909, 0.0197909474, -0.0220856946, 0.000761575706, -0.0103514167, -0.0143096065, -0.0143096065, -0.0102111269, 0.0123655843, -0.0412052535, -0.00188515033, 0.00418616133, -0.016303733, 0.00804664847, -0.00406090217, -0.00742035266, -0.012505874, -0.0148206633, 0.011934693, 0.00449930923, 0.0218852796, -0.0144198341, -0.00218451978, -0.00367760891, 0.000614083, -0.0123856254, -0.0109526608, 0.0291603319, -0.0135279894, 0.00233858847, -0.00426632678, 0.0152916377, -0.00155571871, -0.00216698344, -0.0107622668, 0.0172055978, -0.0053260196, 0.0139388395, -0.00753559079, -0.014600208, -0.00933431275, 0.0110528683, -0.0110528683, -0.0250518322, 0.00486256042, 0.0150611615, 0.022927437, 0.0145400828, 0.0248514172, 0.00669384934, -0.0078662755, 0.0103915, 0.0182577744, 0.0185884591, 0.0361548029, 0.00844246708, -0.0138486531, 0.0194001384, 0.00639322726, -0.00105280324, -0.0270559788, 0.0145400828, -0.000615961908, 0.0263144448, -0.0142695233, 0.028238425, -0.00232731528, -0.00712975115, 0.00179371121, 0.00309390132, -0.0182878375, 0.00555649633, -0.0356537662, -0.0166344158, 0.00217449898, 0.00968002807, -0.0188590195, 0.0116040083, -0.0235286802, -0.00664374558, -0.0097501725, -0.0176364891, 0.0143697308, -0.020472357, -0.00517570833, -0.029741535, 0.00998566, -0.013648238, -0.0114837596, 0.00945957191, 0.0132073257, 0.00179746898, -0.00970508, -0.0123655843, 0.00445922604, -0.0341105759, -0.00670387037, -0.00362750515, -0.0171053912, -0.00312646851, 0.0181475468, 0.00640825881, 0.014019005, -0.00506548025, -0.0204122327, 0.0241900496, 0.0122052524, 0.0288797524, -0.0186385624, -0.00940445811, 0.0148507264, 0.010611956, 0.0078662755, -0.0374775417, -0.0103113344, -0.00801157579, -0.00682912953, -0.00159454904, -0.00692432653, 0.00117054686, 0.00156824465, -0.00272062887, 0.00637318613, -0.0154920528, -0.0074654459, -0.0112733245, 0.00157576019, 0.00664374558, -0.0163838975, -0.027857637, 0.0163838975, -0.0126561858, 0.00910884608, 0.0285590887, 0.00632809289, -0.00466214586, 0.0122353146, -0.0242902562, 0.000868672272, 0.0218451973, -0.00402833475, 0.00618780265, 0.0151112648, 0.0340103656, -0.000151798449, 0.00817190763, -0.00915394, 0.0331686251, 0.00646337261, 0.00671389094, -0.00374274375, -0.0211237054, 0.00143922772, 0.0170853492, 0.00355986529, 0.00495775742, -0.00349473045, 0.00331435725, 0.019500345, 0.00409597438, 0.000190393926, -0.0351126492, -0.00656358, 0.00684416061, -0.0166945402, -0.00695438869, 0.00110916991, -0.0221257787, -0.00634312397, 0.00917398091, -0.0108724954, -0.0148306843, 0.00347969937, -0.0249716658, 0.020783, 0.0165041462, -0.0120649626, 0.0095096752, -0.0324070491, 0.0109626818, 0.00331686251, -0.010411541, -0.00438908115, -0.0179070495, 0.000878066698, 0.0170653071, 0.00990549475, -0.0202418808, -0.00786126498, 0.0113134077, 0.0146202492, 0.00510055292, 0.00845248811, -0.00423877, -0.0224063583, 0.0245908778, -0.00430139946, -0.000686420186, -0.00137785077, 0.00636817561, 0.00773600582, 0.00481997244, -0.00848756079, 0.00500034541, 0.0234084316, 0.0316053927, -0.0146603324, -0.012505874, 0.0155120939, -0.0431693159, 0.00742035266, 0.00562163116, 0.000172231346, -0.00551140308, -0.0106620593, 0.0277173463, 0.00584709737, 0.0212840363, 0.00252522458, -0.00163212686, -0.010992744, -0.00883327611, 0.0200314447, 0.0127263302, 0.0232681409, -0.0247512106, 0.005686766, -0.0218852796, -0.0584409125, 9.78587195e-05, 0.0021118694, -0.0161634423, 0.000489450176, 0.0316655152, -0.00033475511, -0.0173859708, 0.00088934, -0.0468569472, 0.0101760542, -0.00290100207, 0.0188489985, -0.00343711139, -0.000268211181, 0.0174561162, 0.00860780943, -0.00947961304, -0.0108925365, 0.0128365587, 0.0235286802, -0.0251520388, -0.0118144443, 0.00996060856, -0.0140590882, -0.0140590882, 0.0115338638, 0.00857273676, -0.00662370445, -0.00525086373, 0.0133676575, -0.0163137522, -0.00337197655, -0.014389772, -0.00506297499, -0.0169450585, -0.0308638569, 0.0281983428, 0.0135179684, 0.0362550095, -0.00450933, 0.0157125089, 0.0185884591, -0.000285277725, -0.0145200416, -0.00162836909, -0.0175763648, 0.0213842429, -0.0234485138, -0.0293407049, 0.00733016618, -0.0130970981, 0.0174661372, -0.0133576365, -0.0137885278, 0.00376027985, 0.00584208732, -0.0027005875, 0.00298617827, 0.00436402904, 0.0230276436, -0.00157325505, 0.00963994488, 0.0140590882, -0.0193700772, -0.00602747081, 0.00119246717, 0.00176364894, 0.00421371823, 0.00216698344, 0.0075806845, 0.00193274883, 0.0165943336, -0.0051356256, -0.000504481257, -0.00539616449, -0.000156495662, -0.0284388401, -0.00715981377, 0.00679405686, -0.00978524517, 0.00856271572, -0.00820197, 0.00677401526, -0.00632308237, -0.00268305116, -0.00601243973, 0.0379384942, -0.0104416031, -0.00695939874, -0.0272163097, -0.0105217695, -0.001374093, -0.00563165173, 0.0079213893, 0.0114536975, -0.00564167276, 0.0175463036, -0.0171154123, -0.00668883929, 0.00442916388, -0.011553905, -0.00615273, -0.000805416377, -0.00657861121, 0.00675898418, -0.00926917791, 0.00743538374, -0.00615774048, -0.0306033175, -0.0124557707, 0.00855770614, -0.0308438148, 0.00602246029, -0.0234084316, 0.00146302697, 0.00356487557, 0.00476736343, 0.0138686942, 0.0154018663, 0.0220055282, 0.00231478922, -5.94198136e-05, -0.00316404644, -0.00557152741, -0.0086829653, 0.0186085012, 0.00483500352, 0.0171955768, 0.00616275053, -0.00636817561, -0.0404236354, -0.0225867312, 0.00800155476, -0.0209032483, -0.0213842429, -0.0262342785, 0.0149008296, 0.0129968906, 0.0135179684, -0.000102007929, 0.00449179346, 0.0202017967, 0.0044416897, -0.00144048035, -0.000466590369, -0.00451434031, -0.00203921902, 0.00218326715, -0.00718987593, -0.0255929511, 0.0202418808, -0.0179270916, -0.0276973061, -0.022546649, 0.000440599106, -0.0040809433, -0.00470473384, 0.00366758811, 0.0164239816, -0.0163137522, -0.0120048374, 0.0213040784, -0.0171855558, -0.0159329642, -0.0304029025, 0.0259136148, 0.00582204573, 0.0071798549, -0.00622287486, 0.0239495505, -0.00929423, -0.0294809956, -0.00271311332, -0.00145300629, 0.00353982393, 0.00508301659, 0.0081117833, 0.020271942, 0.00217074133, 0.0139689017, 0.0141091915, -0.0205124393, -0.00109351252, 0.0267353151, 0.00529094692, -0.00133902044, -0.012886662, 0.00579699408, 0.014019005, 0.0251520388, 0.00371268159, -0.00334943, -0.0222660676, -0.00368762971, 0.0143797519, 0.00653351797, -0.00801157579, -0.00328680035, 0.00242251204, -0.00781617127, -0.0112933656, -0.0183078796, -0.00938441604, 0.00180122675, 0.0214443672, 0.00341957505, -0.00411100546, -0.0135179684, 0.00488260202, -0.00846250914, -0.0246910863, 0.00804664847, 0.00548635097, 0.00322417077, -0.00832221843, -0.00631306181, -0.00232105213, 0.0120349, 0.0103313755, -0.00390808564, -0.00401330367, -0.000458448514, 0.00860780943, -0.002557792, -0.00571181765, 0.00738026947, -0.0309440233, -0.0188991018, 0.0133476164, 0.0301423632, 0.00798652414, 0.00865791272, 0.0118845887, 0.0149108507, -0.00539616449, -0.00241624913, -0.0250718724, 0.0140891504, 0.00662370445, -0.00111355388, 0.000327239541, -0.00127513823, 0.0211237054, -0.0193700772, -0.0165041462, 0.0159029029, -0.0353531465, 0.0236489289, 0.0068942639, -0.00228597969, -0.00211938494, -0.00784122292, -0.0371969603, 0.0116841746, -0.0161634423, -0.0145000005, -0.0024250173, 0.0185984802, -0.0198610928, 0.000504481257, 0.000227501951, 0.0188790597, -0.00556150684, -0.00535107125, -0.00754561182, 0.0133776786, -0.00900362805, -0.00471976493, -0.00283085695, 0.00685418118, -0.0171154123, 0.011173117, -0.016293712, 0.010792329, -0.0116841746, 0.0282985494, 0.00639823778, 0.0190093294, 0.0241299253, 0.00793642, -0.0112733245, 0.0110829305, -0.00501537696, 0.00059310213, 0.00640825881, -0.0107722878, 0.0220255703, 0.00338199735, -0.0127263302, 0.0135580515, 0.000869298587, 0.00744540431, 0.00665376661, -0.0134277819, -0.00627798913, 0.0129267452, 0.00441663805, -0.00874309, 0.00601745, 0.00946959201, 0.0299619902, -0.00682411902, 0.0124457497, 0.0136281969, 0.00720991706, 0.0283987559, -0.0147204567, 0.0159329642, 0.0172757432, -0.00704457518, -0.0320262611, -0.0196105745, 0.00530096749, 0.00192022289, 0.0145501038, -0.00509554241, 0.0126261236, 0.0309841055, 0.00603248132, 0.00168097788, 0.00303878728, 0.0290801656, -0.00231854711, -0.0206827931, 0.0172757432, -0.012886662, -0.0209834147, 0.0180373192, 0.022185903, 0.0161434, -0.00514063612, -0.0233683493, -0.0324671753, 0.0138787152, -0.0204322748, 0.0120950248, 0.0108524533, -0.0145701459, 0.0423676595, -0.00922909472, -0.000985789578, -0.0255328268, 0.014399793, 0.0127463723, -0.0085025914, 0.0143096065, -0.0261941962, 0.00953472685, 0.0208631661, -0.0306834839, -0.0140590882, 0.0222861096, -0.0207429174, 0.014399793, -0.0210635811, 0.0238293018, 0.0259737391, 0.00790635776, 0.00938942656, -0.00264547346, 0.00419868715, 0.00382792, 0.00338450237, -0.00449930923, 0.0206827931, 0.0102061164, -0.0173258465, 0.0051556672, 0.00436152378, -0.0289198346, -0.00537612289, -0.0155221149, -0.025572909, 0.0248313751, 0.0195203871, 0.00775604695, 0.00501537696, 0.0006895517, -0.0149008296, -0.0188890807, -0.0113534899, -0.0244305469, -0.0183780231, 0.0315051824, 0.00732515566, -0.00824205298, -0.0166043546, 0.0204322748, 0.00175362825, -0.00299369381, 0.0210635811, -0.0443718061, 0.001634632, -0.00454440247, 0.0096449554, -0.019500345, -0.0199312381, -0.00674896361] |
05 Jan, 2025 | Python String istitle() Method
05 Jan, 2025
The istitle() method in Python is used to check whether a string follows the title case formatting. In a title-cased string, the first letter of each word is capitalized, and all other letters in the word are in lowercase. This method is especially useful when working with formatted text such as titles, headlines, or document headers.
Let’s understand with the help of an example:
Python
s = "Python is Fun"
# Checking if the string is in title case
res = s.istitle()
print(res)
OutputFalse
ExplanationThe string ‘s' is in title case because the first letter of each word is uppercase, and the rest of the letters are lowercase.The method returns True, confirming that the string adheres to the title case format.Syntax of istitle() Methodstring.istitle()
ParametersThe istitle() method does not take any parameters.Return TypeReturns True if the string is in title case.Returns False otherwise.Examples of istitle() method1. Checking a proper title-case stringHere, we test the istitle() method with a correctly formatted title-case string to verify its behavior.
Python
s = "Python Programming"
# Verifying if the string is in title case
result = s.istitle()
print(result)
OutputTrue
ExplanationThe method evaluates the string 's' and confirms it follows title case.Both words start with uppercase letters followed by lowercase letters resulting in True.2. String with improper casingIn this example, we analyze a string that does not conform to title case rules. This helps illustrate how istitle() handles such cases.
Python
s = "python Programming"
# Verifying if the string is in title case
res = s.istitle()
print(res)
OutputFalse
ExplanationThe string ‘s' does not adhere to title case because the first word, “python,” starts with a lowercase letter.As a result, the method returns False.3. Strings with special characters and numbersThis example demonstrates how istitle() behaves when the string contains special characters or numbers. These elements do not affect the title case evaluation.
Python
s = "Python 3.9 Is Awesome"
# Checking title case for a string with numbers and special characters
result = s.istitle()
print(result)
OutputTrue
ExplanationThe words “Python,” “Is,” and “Awesome” are in title case.Numbers and special characters do not affect the result, so the method returns True.4. Empty stringLet’s what happens if we pass an empty string to istitle().
Python
s = ""
# Checking an empty string
res = s.istitle()
print(res)
OutputFalse
Explanation
An empty string does not have any words to evaluate, so the method returns False.5. Mixed cases with acronymsHere, we examine a string containing an acronym to understand how istitle() processes such cases.
Python
s = "NASA Is Amazing"
# Verifying a string with an acronym
res = s.istitle()
print(res)
OutputFalse
ExplanationThe acronym “NASA” is all uppercase, but the other words adhere to title case.This is considered valid, so the method returns True.Frequently Asked Questions (FAQs) on istitle() Method1. Does the istitle() method consider single-word strings?Yes, it does. For example:
s = "Python"print(s.istitle()) # Output: True2. Does punctuation affect the result of the istitle() method?No, punctuation is ignored as long as the words are correctly title-cased:
s = "Hello, World!"print(s.istitle()) # Output: True
3. How does istitle() handle strings with digits?Digits do not affect the evaluation:
s = "Python 101"print(s.istitle()) # Output: True4. Is there any way to convert a string to title case?Yes, you can use the title() method to convert a string to title case:
s = "python programming"title_cased = s.title()print(title_cased) # Output: 'Python Programming' | NLP/Natural Language Processing (NLP) Tutorial/AI ML DS - Projects/30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated]/Does Artificial Intelligence Require Coding?/Artificial Intelligence – Boon or Bane/Artificial Intelligence Examples/Agents in Artificial Intelligence/What are Diffusion Models?/ML | Common Loss Functions/Loss Functions in Deep Learning/Kaiming Initialization in Deep Learning/Swift - Initialization/Swift – If Statement/6 Best iOS Project Ideas For Beginners/Swift Programming Language/Introduction to Visual Programming Language/What is D Programming Language: Usage and Applications/Best Programming Languages for Data Science in 2024/5 Best Languages for Competitive Programming/MEX (Minimum Excluded) in Competitive Programming/Rearrange Array to maximize sum of MEX of all Subarrays starting from first index/Minimize moves to segregate even and odd by swapping adjacent elements/Minimum elements to be removed such that sum of adjacent elements is always even/Maximum sum such that exactly half of the elements are selected and no two adjacent/Maximum length subsequence such that adjacent elements in the subsequence have a common factor/Longest subsequence such that difference between adjacents is one/Longest Increasing Subsequence using Longest Common Subsequence Algorithm/Longest Common Subsequence (LCS)/Minimum insertions to form a palindrome with permutations allowed/Print longest palindrome word in a sentence/Python String split()/Python String strip() Method/Python String rindex() Method/Python String istitle() Method | https://www.geeksforgeeks.org/python-string-istitle-method/?ref=lbp | NLP | Python String istitle() Method | Artificial Intelligence – Boon or Bane, AI ML DS - Projects, Longest Common Subsequence (LCS), Rearrange Array to maximize sum of MEX of all Subarrays starting from first index, Python String istitle() Method, MEX (Minimum Excluded) in Competitive Programming, Swift - Initialization, Minimum insertions to form a palindrome with permutations allowed, Longest Increasing Subsequence using Longest Common Subsequence Algorithm, 6 Best iOS Project Ideas For Beginners, ML | Common Loss Functions, Python String strip() Method, Artificial Intelligence Examples, Python String split(), Longest subsequence such that difference between adjacents is one, What is D Programming Language: Usage and Applications, 30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated], Swift – If Statement, Natural Language Processing (NLP) Tutorial, Python String rindex() Method, Loss Functions in Deep Learning, Minimize moves to segregate even and odd by swapping adjacent elements, Maximum length subsequence such that adjacent elements in the subsequence have a common factor, Does Artificial Intelligence Require Coding?, Print longest palindrome word in a sentence, Best Programming Languages for Data Science in 2024, NLP, 5 Best Languages for Competitive Programming, Maximum sum such that exactly half of the elements are selected and no two adjacent, Swift Programming Language, Minimum elements to be removed such that sum of adjacent elements is always even, Agents in Artificial Intelligence, What are Diffusion Models?, Kaiming Initialization in Deep Learning, Introduction to Visual Programming Language | GeeksforGeeks | [0.0186049249, 0.0306866411, -0.00985946134, 0.073455, -0.00645430107, 0.0210970659, 0.0154237123, -0.0168592781, -0.00851003081, -0.00443876768, -0.00901535, 0.032248538, 0.0102269668, -0.00430956669, -0.0336496495, 0.00679883687, 0.0272412859, 0.00554415258, -0.0117256967, -0.04897, 0.0130579006, 0.0260239262, -0.059903264, -0.0147116724, 0.0120128095, 0.0193743873, -0.0093369158, 0.0275169145, 0.0275628511, 0.00163080206, -0.00150734349, -0.00558147766, 0.0191561822, -0.0110136559, -0.0191102438, -0.0267819036, -0.00371811376, 0.0584791824, -0.0617867261, 0.00570780737, -0.00163510873, -0.00195954647, 0.0470865369, 0.00331902667, -0.0319269709, 0.0476837344, -0.0290788077, -0.0233480316, 0.0150447236, -0.00794154685, -0.0142293219, -0.00469716918, 0.0369801596, 0.030479921, 0.0422630385, 0.0243242159, 0.00254382147, -0.016227629, -0.0198567379, -0.0468798168, -0.0274939444, -0.020901829, 0.0186738316, 0.00726970192, 0.0421711616, 0.0155844958, 0.00297736214, -0.0219584052, 0.0392081551, 0.0066150846, 0.0283437986, 0.0405173935, 0.00019236574, 0.0344535634, -0.00659785746, -0.0344076268, 0.0145508889, -0.0152399605, -0.0403106697, 0.0385420546, -0.000867799157, -0.00788412429, 0.032133691, -0.00511061214, -0.00172698498, 0.0134943128, 0.000398010452, -0.0107724816, 0.0319499373, 0.0239796806, -0.00410571648, -0.00226675742, -0.0061040232, -0.0316054039, -0.0141718993, 0.00546376128, 0.0216598082, 0.0291017778, 0.0048349835, 0.0170430299, 0.0147346407, 0.00355733046, 0.0175598338, -0.051588472, -0.0215105098, -0.0108758416, -0.0135747045, 0.0114615522, -0.0178124923, -0.0015260058, -0.00498715369, -0.0145279197, -0.00318408362, 0.00314963, -0.0155500425, -0.0136665804, -0.0158830937, -0.0011986969, 0.0160323922, 0.0228541978, 0.0105542755, 0.0202472117, 0.00483211223, 0.0616948493, -0.0399431661, 0.0440086871, -0.00053403026, -0.00567335356, -0.00267589348, 0.0100145033, 0.00667250715, 0.0156419184, 0.0252200086, 0.00590878632, 0.0192595422, 0.00427798415, 0.0073960321, -0.00279935217, 0.0100891525, 0.0162850507, -0.0502562672, 0.0111572128, 0.0110423677, 0.0368193761, -0.00780373253, -0.0167559162, -0.0031410167, 0.025174072, -0.00708594965, -0.0117716342, -0.0145279197, -0.0473162271, -0.0132416533, -0.00677012559, 0.00288979267, -0.00637965184, 0.0281600468, 0.00768888695, 0.0115304599, 0.0454787053, -0.0190413371, -0.0249214116, 0.0165032577, -0.0326619782, 0.00566474, 0.0465812199, 0.0463745, 0.0124492217, -0.0275858212, 0.0194318108, 0.00728118652, 0.00387028372, -0.00726396, -0.0582494922, -0.0213152729, -0.0195007175, 0.0197189227, 0.00531446235, -0.0376692303, 0.012483675, -0.0378759503, 0.00495844241, -0.000455791946, -0.00177005189, 0.022992013, 0.0342698134, 0.0209133141, 0.0549878888, 0.00215334771, -0.0226474758, -0.0189494602, -0.00316972798, 0.00825737137, 0.00624757959, 0.015079177, 0.0406092666, -0.0141833844, 0.00373534067, 0.0260239262, 0.0114845214, -0.0163080208, -0.010238451, -0.0465582497, 0.0262995549, 0.000595759542, 0.0265751835, -0.0293774065, 0.0316054039, -0.00438995846, -0.0324782282, -0.0288031809, -0.0135287661, -0.0138503332, 0.0167559162, -0.00120515702, 0.0152629288, -0.0272183158, -0.0290328711, 0.032248538, 0.00890050456, -0.0307555478, -0.00137670699, 0.022992013, -0.0022107705, -0.0197074395, -0.0216483232, -0.00896366872, 0.00167961128, 0.00936562754, 0.0127478186, 0.0257023592, -0.0044904477, 0.00317259901, 0.0109562334, 0.0449733846, 0.024485, 0.0422630385, -0.00130205764, -0.0486484319, 0.0344535634, 0.0513587818, 0.0108299041, 0.0379678272, -0.0109906867, 0.0268508121, -0.00742474338, 0.0239796806, -0.0138847865, -0.0118864803, 0.0359006152, -0.0422630385, -0.0216712914, 0.0348210707, 0.0308244564, -0.0017111937, 0.00743622752, 0.00135589135, -0.0146542499, -0.00179732766, -0.00693665119, 0.030158354, 0.0237270221, 0.0241404641, 0.0220273118, 0.0195466559, -0.015389259, 0.0053460449, -0.0256793909, -0.0319729075, -0.0121506238, 0.0260468945, -0.00957234856, 0.0211659726, 0.0220847353, -0.0348210707, 0.0235088151, 0.00310082082, 0.00637965184, 0.0163769275, -0.0270805024, 0.00413442776, -0.00960106, 0.0523234792, 0.0170315448, 0.0327308849, -0.0279073883, -0.00920484401, -0.000663948886, -0.0374165699, -0.0372328199, 0.0173301436, 0.0254956372, 0.0122884382, -0.000371811388, -0.0160668455, 0.0299286637, -0.0279073883, -0.0311230533, -0.024485, -0.000280652981, -0.0208099522, -0.0163195059, 0.018306328, 0.0202931501, -0.0253118854, 0.00643133186, 0.0236581136, 0.0194432959, 0.00241749175, 0.0165721644, 0.00810233, -0.0354642, -0.00824014377, 0.00887179282, -0.0366356224, -0.0239107739, 0.0279533248, -0.00605234271, -0.0397594124, 0.00892921537, 0.0323404111, -0.00152744132, 0.0253348537, -0.00596620888, 0.0203390885, -0.0347751305, -0.0107782232, 0.000119959419, 0.0133220451, -0.0542988181, -0.0231183413, 0.024852505, -0.0110021718, 0.0161357522, -0.00392196421, 0.00351713481, -0.0602707677, -0.0444910377, 0.00579394121, 0.0134483743, 0.000355122931, -0.00440144306, 0.0197418928, 0.00448470563, 0.0115878824, -0.00164946436, -0.00553553924, 0.0274939444, -0.0193169657, 0.00283954805, 0.000997717842, 0.0146887032, 0.0387028381, -0.0186049249, -0.00198538671, -0.0264144, 0.0268737804, -0.00975035876, 0.0151940221, 0.02339397, 0.00120946369, -0.00709743425, 0.020901829, -0.0330524519, -0.0156993419, -0.0371639132, 0.0197418928, -0.0145164356, 0.025174072, 0.0120932013, -0.0138503332, -0.0300894473, 0.0114156147, -0.0251970403, -0.00205142261, 0.00795303099, 0.0113524497, 0.0265292451, -0.0119783562, 0.0132186841, 0.0122310156, -0.00461103534, 0.0189379752, 0.0115763973, -0.0295152199, 0.0171923283, 0.0259550195, -0.0265981518, -0.00660934206, 0.0150562078, -0.0318580642, -0.0135747045, 0.0179273374, -0.0564119704, -0.00680457894, 0.000812529877, -0.0359235816, -0.0326390117, -0.000110717963, -0.0169741232, 0.0467190333, -0.0521856658, -0.0195351709, -0.00110969192, -0.0451801084, -0.063808, -0.0246228147, 0.00253520813, -0.00652320823, -0.0106059555, -0.02806817, 0.0291936547, 0.00190643058, -0.00592601299, 0.0195696242, -0.0067184451, -0.0212923028, 0.0276317596, 0.0221306738, 0.042538669, 0.0366356224, 0.0139536941, 0.0138388481, 0.0114845214, 0.0168592781, -0.0276087895, 0.0258631427, 0.0287342723, 0.017686164, -0.0286423974, 0.000593965116, -0.0176172554, 0.00892921537, 0.0205458086, -0.0359235816, -0.0146197956, 0.00981926639, 0.0136895496, 0.0227623209, -0.047729671, -0.00285103242, -0.00220933487, 0.0196729861, 0.0213841796, -0.00032587329, 0.0473621674, 0.0207065921, 0.0284586437, 0.03431575, -0.00168535358, 0.0197993144, 0.0116682742, -0.0255415756, 0.0470176302, 0.0210511275, -0.00847557653, 0.00368653145, -0.0103303269, -0.00060329627, 0.01559598, -0.0202931501, -0.0212463643, -0.0231642798, -0.0129775098, 0.0410456806, 0.00372098503, 0.0263225231, -0.0392770655, -0.00883159693, 0.0293544363, -0.00888327789, -0.0258172043, 0.00358891301, 0.0270345639, 0.00953215268, -0.000139249823, 0.0347981, 0.0443761908, 0.0360384285, -0.0182833578, 0.0455016755, 0.00700555835, 0.00550108589, -0.00169109576, -0.024645783, 0.013827364, 0.00417749491, -0.0277236346, 0.0173875652, -0.0383353345, -0.0193858724, 0.0557229, 0.0260239262, -0.0262995549, 0.0169626381, 0.0247376598, -0.0106231822, -0.0218665283, 0.0341319963, 0.0206376854, 0.0314675905, -0.00446747895, -0.0507615842, 0.0629811138, 0.00803916529, -0.0277236346, -0.0385650247, 0.00491824653, 0.0115304599, 0.0133450143, -0.0023672469, 0.0058484925, -0.035257481, 0.0232791249, 0.0269656572, 0.00935988501, -0.00387602602, 0.0297219418, 0.000626983121, -0.0113122538, -0.0107954498, 0.000166705009, -0.00221938384, 0.0100661833, -0.0165491961, 0.0152744139, 0.0148265176, 0.00490963319, -0.053655684, 0.00691368198, -0.0134483743, 0.0193629041, 0.00568483816, -0.0136091579, 0.0404484831, -0.0132301692, -0.0468338802, -0.00336209359, 0.00407413393, -0.00468855584, -0.0503022037, 0.0375084467, -0.0520478524, -0.0171693601, 0.0126674268, -0.00833776221, -0.0187886767, 0.0425846055, -0.0134598594, 0.00317259901, -0.00942305, 0.0102614202, -0.00125540176, 0.013413921, 0.0112031512, -0.0250821952, -0.0491996892, -0.00911296811, -0.00846409239, -0.00870526768, -0.0271494091, 0.00782670174, 0.0298367869, 0.0295152199, 0.0144475279, -0.00355733046, 0.00573364738, 0.00863636, 0.0242782794, 0.0289409943, -0.0142293219, -0.0286883339, 0.0649105161, -0.00365782017, 0.0178354625, 0.042745389, 0.0361073352, -0.0143786212, 0.0217976216, 0.0156648867, -0.0288720876, -0.010456657, -0.0229345895, -0.0072180219, 0.00512496755, 0.0108413883, -0.0294233449, 0.000206541939, -0.00368653145, 0.0164802875, 0.039300032, 0.0196729861, -0.00783818588, -0.0117946034, -0.0195351709, 0.0329835452, -0.0127478186, 0.0235662386, 0.0132416533, 0.00472013839, -0.0127363345, 0.0342927799, 0.016124269, 0.0170085765, -0.00622461084, -0.0173531119, 0.0323404111, -0.0328457318, 0.0389555, -0.00155184593, -0.000918043952, 0.0190413371, 0.00391622167, -0.0249443799, -0.00919336, -0.0299056936, 0.00439857179, 0.0121161705, 0.0105255637, 0.000355302385, -0.0198108, -0.0221651271, 0.0365437493, 0.0217402, 0.00726970192, 0.024025619, 0.0190757904, -0.0435493067, 0.00183321675, -0.0308474246, 0.00223661051, -0.0311689917, -0.0250592269, 0.00772334076, -0.00356307277, 0.0190987587, 0.00264861784, -0.00274049398, -0.0136436112, 0.0108586149, 0.00958957523, 0.00432392256, -0.00741325878, 0.0876958072, -0.00290989061, 0.0134483743, -0.00959531777, 0.0129660247, 0.0224981774, 0.0154696507, -0.00301181572, -0.0080678761, -0.00248639891, 0.024232341, -0.00625332212, 0.0089407, 0.0109332642, -0.0037382117, 0.016526226, 0.00126616855, 0.0563660301, -0.0187427383, 0.0274020676, -0.01092178, 0.00923929736, 0.0145508889, 0.0107954498, 0.009669967, 0.0345454402, 0.0218091067, -0.0012274083, -0.000957521959, -0.0115132332, -0.0084870616, -0.0190413371, -0.000415237242, -0.00704575377, 0.0256564207, 0.00752236182, -0.022773806, 0.00848131906, -0.0117716342, 0.00957234856, -0.0147346407, -0.0274709761, -0.0187886767, -0.00922781322, -0.0199830681, 0.00186479918, 0.000749365, -0.00169109576, 0.019029852, 0.0217287149, 0.0201438516, 0.0370720364, 0.0297678802, 0.00026342622, -0.00511348341, -0.0113007696, 0.00971590541, -0.00971590541, 0.017789524, -0.0158716086, -0.0200519748, -0.0187542234, 0.0315594636, -0.00306062493, 0.0106576364, -0.00713763, 0.000405188272, -0.00226532179, 0.0269426871, 0.0130349323, 0.0216827765, -0.00462252, 0.0437560268, 0.00672992971, 0.00403106725, -0.0265751835, 0.0125985201, -0.00797025766, -0.0153777739, -0.0146427648, -0.0154926199, -0.0261387713, -0.0119783562, -0.0164917726, 0.0110193985, -0.0129430555, -0.00367217581, 0.0225900542, -0.025886111, 0.0266440902, 0.00803916529, 0.0402877033, 0.00343387201, -0.0314446203, -0.0326849483, -0.0343616903, 0.026827842, 0.025174072, -0.0181685127, -0.0109275226, 0.00359465531, 0.0347291939, -0.00717208348, 0.0220617652, 0.0215334781, -0.00850428827, -0.00407126267, -3.04216451e-06, 0.0120817171, 0.0351885743, -0.0168363079, -0.00125611958, 0.0173416268, -0.000806787633, 0.000211028077, -0.00548960129, 0.0183178112, -0.00151595683, -0.0182948429, -0.0381056443, -0.0336726159, -0.00248496328, -0.0361073352, -0.0202012733, 0.0169052165, -0.0132761067, 0.00363485096, 0.00985372, 0.00397938676, 0.038174551, -0.00577671453, 0.00210310309, -0.0258172043, 0.0267589353, -0.0188920386, -0.000608679664, 0.0121965623, -0.00553553924, -0.020178305, 0.00620164163, -0.0111916661, -8.41600122e-05, -0.0514965951, 0.0289639626, 0.0108701, 0.0129200872, -0.0354182646, 0.00360039761, 0.0344535634, 0.0112548312, 0.0198567379, 0.00500725163, -0.0147461258, -0.0240485873, -0.0337415226, 0.010445172, 0.0205113553, 0.014562373, 0.00379276322, 0.0271034706, 0.0100145033, 0.0505778342, 0.019960098, -0.013827364, -0.0196959544, -0.00542643666, 0.0165606793, 0.00733860908, 0.0161012989, -0.0194662642, 0.0249443799, -0.0132301692, 0.019650016, -0.00860190671, 0.018306328, -0.0204998702, 0.00570780737, 0.0135976737, -0.00193944853, -0.00497854, 0.00303191366, -0.0220847353, 0.0264603384, 0.0372557864, -0.00991688482, -0.00114701653, 0.0156648867, -0.0174220186, -0.00835499, -0.0292395912, 0.0102499351, -0.0363370255, 0.00811381452, -0.0214875396, -0.0189953987, -0.00559583306, 0.0291247461, -0.0261158012, 0.0326619782, -0.00578532787, 0.0223833323, 0.0153777739, 0.0136091579, -0.00737880496, 0.0142982295, -0.00292137521, 0.0136321271, 0.020178305, -0.033075422, 0.0375314169, 0.0284586437, 0.0101293484, 0.0186853167, -0.00667250715, -0.023083888, 0.0124492217, 0.0181914829, -0.0223948173, 0.0151251145, -0.00492111733, -0.00509625627, 0.00418323698, -0.00973313209, 0.0119668711, 0.00692516658, 0.0203505717, -0.00897515379, 0.0206491705, -0.0318580642, 0.0247606281, 0.00896366872, -0.0308703948, 0.0110825635, 0.00838944316, -0.04897, -0.0605923347, -0.00440144306, 0.0362451486, 0.00246917224, 0.00288692163, -0.00371237169, -0.0157912169, 0.0139996316, 0.0290558394, 0.0017054514, -0.0149183935, -0.0103418119, 0.024485, -0.0100546982, 0.0243242159, -0.0173531119, -0.013517282, -0.00596620888, 0.0274939444, 0.00935988501, -0.000803198724, -0.0269656572, 0.00359752635, -0.0406322367, -0.0141029926, -0.0220043436, 0.00804490689, -0.000999153359, -0.00405403599, -3.97864642e-06, 0.0146312807, -0.0103475535, -0.0053460449, -0.00031385044, -0.039736446, 0.00652320823, -0.0142867444, -0.0102039976, -0.0264833067, 0.0160898138, 0.0218091067, 0.0136895496, -0.000715270347, 0.0086650718, -9.53865765e-06, 0.0183752347, 0.00795877352, 0.000135032853, -0.0156074651, 0.0101408325, -0.0126214894, -0.0193054806, -0.0241404641, -0.00306636724, -0.0100087607, 0.000538336928, 0.0386339314, -0.0249673501, -0.0373706333, 0.0392081551, -0.0350966975, -0.00170975819, 0.0136436112, 0.00476033427, 0.0189724304, -0.0355790481, -5.75123304e-05, -0.0310541466, 0.042423822, 0.0211430043, -0.0125755509, 0.0145394038, 0.00202845363, 0.0175483488, 0.0178124923, -0.0156648867, 0.0119783562, 0.0159290321, -0.00812529866, -0.0189953987, -0.00441579847, -0.00444738101, -0.0317891538, -0.0153548056, -0.0125755509, -0.00639113644, -0.0211544894, 0.0175138954, -0.0418725647, -0.0203505717, -0.0145968273, 0.00691942405, 0.0357168615, -0.0367504694, -0.00164228654, -0.0114443256, -0.00227537076, -0.00698833121, -0.0198797062, -0.0210970659, 0.0139192399, -0.000372888055, -0.00048880995, -0.00362049532, -0.00380424783, -0.00630500214, 0.00450767484, -0.0446747877, -0.028389737, 0.0058599771, -0.0064600436, 0.0292625614, 0.0394837856, -0.0198222846, -0.0418955348, -0.0134598594, -0.0099054, -0.0058599771, 0.0277925413, 0.0245768763, -0.0032300218, 0.0140915075, -0.000604731846, 0.00318982592, -0.0105887288, -0.019661501, 0.0398283191, 0.0268737804, 0.00791857764, 0.000408418302, 0.00371811376, -0.0530584902, 0.0299286637, -0.0179617908, -0.0355101414, 0.0021992859, -0.00887753535, 0.00490389066, -0.0277236346, -0.0220962204, 0.00113050756, 0.0115247173, -0.0158486404, 0.00579968328, -0.00266584451, 0.00248496328, -0.00676438306, 0.0154122282, -0.0166295879, -0.00647152774, 0.00892347284, 0.0115936249, -0.00175138959, -0.00238590944, 0.00347406766, -0.00604660064, 0.0268737804, -0.00318695465, -0.00984223466, -0.0196155626, 0.0085789375, -0.00556999305, 0.0231757648, -0.0221306738, 0.00588581711, -0.00573938945, -0.0149987852, -0.0213152729, -0.00561305974, -0.0107322857, -0.0237729605, 0.00954937935, -0.0199830681, 0.00877417438, -0.0276776962, 0.0247835983, -0.00101063785, -0.00207152055, -0.0122080464, 0.00196959544, -0.00635094056, 0.0293085, 0.0073098978, -0.0156419184, 0.0261617396, -0.0165606793, -0.00285964576, 0.0105427904, 0.00322140823, -0.0107437698, 0.0334658958, 0.0255645458, 0.00690794, -0.0256104823, -0.00555276638, -0.0113122538, 0.0332591757, -0.0286653657, -0.0224981774, -0.0134713436, -2.18026471e-05, -0.0367504694, -0.0111227594, 0.00486656604, 0.00190643058, 0.046167776, -0.0108528733, 0.0197763462, -0.00522258598, -0.0147231566, 0.0119094485, 0.00923355576, -0.00314963, 0.0175713189, 0.00427224208, 0.00414878363, -0.0111629553, -0.000425286184, -0.00887179282, -0.0153203513, -0.0207295623, 0.0200864282, -0.0340630896, -0.0140226008, 0.0138503332, -0.000478043221, 0.0261847097, 0.0272412859, -0.0164573193, 0.0183292963, 0.0015618949, -0.00477181887, 0.0399201959, 0.00652320823, 0.00208013388, -0.0113294804, -0.00826885551, -0.0145968273, 0.00923355576, -0.00555563718, 0.000248173339, -0.0169856083, 0.0191561822, 0.00984223466, -0.00669547589, 0.00861339085, 0.00775779411, -0.00654617744, 0.0213956628, 0.0106978314, -0.0114960065, -0.0135632204, 0.000127675579, -0.00354871713, 0.00463974662, 0.00108385168, -0.0229231045, -0.0285505205, 0.0291936547, -0.00573364738, -0.0308474246, 0.0103877494, 0.0234399084, -0.0226130225, 0.0139307249, 0.000240995505, -0.026735967, 0.00656914618, -0.00608679652, -0.0209592525, -0.0254037622, -0.0180421825, 0.000966853171, 0.00423204619, -0.0147116724, -0.0245998446, -0.0213841796, 0.00974461623, -0.00814826787, -0.0016867891, -0.0194203258, 0.0310771149, -0.0076314644, 0.000672921189, 0.0073098978, 0.0116051091, 0.0244390611, -0.0137354881, 0.0167788863, 0.0114041297, -0.0219928585, 0.0155385574, -0.00216052565, 0.0178010091, 0.020281665, 0.0252200086, -0.0300205387, -0.017686164, -0.0157108251, -0.00267732912, 0.0115132332, -0.00147432543, -0.0106633781, -0.0305258576, 0.0131497774, 0.00346545433, -0.0118175726, -0.0155270733, -0.0110079143, 0.0101006366, -0.0408848971, 0.0153548056, 0.0120242937, -0.0164688043, -0.00395928882, -0.0293085, 0.0325930715, 0.0158716086, 0.00808510277, 0.0258631427, -0.00679883687, 0.0196844693, 0.0242553093, 6.46901535e-05, 0.00945750345, -0.000732138229, -0.00270460476, -0.0257712658, 0.0181225743, 0.0028783083, -0.0314905569, -0.031812124, -0.0145508889, -0.00713188807, -0.0184671115, -0.0159979388, 0.0188690685, 0.00555850845, 0.0177206174, -0.0319499373, -0.000705939194, -0.0123114074, 0.0395756625, 0.00418610824, -0.0228541978, 0.0503940806, -0.00399374217, -0.000800327573, -0.0152629288, 0.00535178697, -0.0028137078, 0.0058599771, 0.0118864803, 0.023083888, 0.0276776962, -0.022877166, 0.00329318666, -0.00607531192, 0.00401671138, 0.0112548312, 0.0132761067, -0.00105011591, -0.00177005189, -0.00981352385, 0.0387028381, -0.0118979644, -0.00988243055, -0.00302330032, -0.00318121258, -0.00941730756, 0.00133435789, -0.00248927, 0.0157682486, 0.0205687787, 0.0152284754, 0.0127707878, 0.000165807782, -0.0274250377, 0.00626480673, 0.00942879263, 0.0177091323, -0.00558721973, 0.00164946436, 0.00825162884, -0.00833776221, 0.0215909, 0.00343387201, 0.00490101939, 0.0285734888, 0.0159290321, 0.0110423677, -0.0229231045, -0.0300664771, -0.00699981581, 0.00724099064, 0.0144130746, -0.0120817171, 0.0176631939, -0.00239739381, -0.00038114257, 0.0222914554, -0.0391622186, 0.0209477674, -0.000659283309, 0.0217631683, -0.0055929618, 0.00395067548, 0.004421541, 0.00384731474, -0.028596459, 0.0143786212, 0.00530584902, 0.0206606537, -0.00775779411, 0.0324552581, 0.00283524115, -0.0127363345, -0.00214617, -0.00896941125, -0.015952, -0.00673567178, -0.0284586437, -0.0159864537, 0.00390186626, -0.00591452839, -0.0155615266, -0.0068734861, -0.0347751305, -0.0235662386, 0.0116682742, -0.013413921, -0.00618441496, 0.0186049249, -0.00397077342, -0.0129775098, 0.0149528468, -0.00362910889, 0.00831479393, 0.00279935217, 0.00338793383, 0.00609253859, -0.0240026508, -0.0209707357, 0.00345109869, -0.0103073576, 0.0122310156, -0.000463687553, -0.005615931, 0.0185245331, -0.0127593037, 0.0241864026, 0.025265947, -0.00377553655, 0.0093369158, -0.00865358673, 0.0138733024, -0.0146542499, -0.0221191887, 0.0114443256, -0.0380826741, 0.064818643, -0.027356131, 0.00537762744, -0.0129086021, -5.18597917e-05, 0.0389095582, 0.0216712914, 0.0146427648, 0.00472300965, -0.0108701, -0.0124951592, -0.00710317679, -0.0155155882, 0.0187082849, -0.00515655, 0.0240715574, -0.0223718472, 0.0146772182, 0.00202845363, 0.00712040346, 0.0111916661, 0.00506180292, 0.0015618949, 0.000841959, -0.00434689131, -0.0107093165, -0.00741900085, 0.000126150291, 4.21697259e-05, 0.0194318108, 0.0326619782, 0.01404557, 0.000324796623, 0.0155844958, -0.00175713177, -0.0112203779, 0.0133794677, 0.00133435789, -0.0044904477, -0.0347981, 0.00941730756, -0.0153548056, 0.0113294804, 0.0186508633, -0.00225814409, 0.00474023633, 0.00293429522, -0.0103131, -0.0204194784, 0.0267819036, -0.00472013839, -0.0169396698, 0.00401096931, 0.0357857682, 0.0241174959, -0.00124965946, -0.0281370785, 0.0255645458, -0.0270115938, -0.0236810837, 0.00937711168, 0.00431530876, -0.00622461084, 0.0183637496, -0.015917547, -0.0124492217, 0.0441235304, -0.00403968059, -0.0188920386, -0.00832627807, -0.0261847097, 0.00218205899, -0.00104939821, -0.0228082594, 0.0315594636, -0.0049354732, -0.00561880227, -0.00439282972, -0.0172038134, 0.0214071479, -0.000247276097, 0.00818272121, -0.0211659726, 0.0130349323, -0.0306866411, 0.0122080464, -0.0011864946, -0.0106576364, -0.0328916684, -0.0298367869, 0.0180766378, -0.00925078243, 0.0120932013, -0.0120357787, -0.0170774832, 0.0130923549, 0.018398203, 0.00563315768, 0.0271494091, -0.0187771935, 0.0220847353, -0.00607531192, 0.00310082082, 0.00683329, 0.0330524519, 0.0192595422, 0.00981926639, 0.00343674305, 0.00358604174, -0.0144819813, -0.021430118, 0.0190183669, -0.00728118652, -0.000556999294, 0.0314675905, -0.0116338199, 0.0319729075, -0.0164458342, 0.0164113808, -0.0248295348, 0.0197878312, -0.00310082082, -0.0260468945, 0.00248352787, 6.57668279e-05, 0.0157912169, -0.00649449695, 0.00837221649, 0.0247606281, 0.00213181437, -0.00549534336, 0.025265947, -0.00819994882, -0.00318121258, -0.0128626637, 0.00861339085, -0.00710317679, 0.0278614499, -0.0139996316, -0.0241404641, -0.00337644923, 0.00571067818, -0.00131569547, -0.0163998976, 0.0174220186, 0.00712040346, 0.0044904477, -0.00525704, 0.0110021718, 0.0103303269, -0.0153777739, 0.0141604152, 0.00763720693, 0.00648875488, 0.0300435089, -0.00126473291, 0.00316398568, -0.0182603896, 0.0112950271, 0.0218894985, 0.0206032321, -0.0186738316, 0.0175598338, -0.0136665804, 0.00136665802, 0.0179273374, -0.0411375575, 0.00998004898, 0.0159405153, -0.00912445225, 0.0356020182, -0.0222914554, 0.0223948173, 0.019558141, -0.0161587223, 0.00499863783, 0.0137699414, -0.00681032147, -0.0135287661, 0.00138747378, 0.00801619608, -0.00778650539, 0.0219009835, -0.0139307249, 0.00436986051, -0.00659785746, 0.0127593037, 0.00285677472, 0.0136091579, 0.00473449379, 0.015182538, -0.0254497, 0.0246917214, 0.0163998976, 0.00822291709, 0.0019552398, 0.0125525817, 0.000422415062, -0.00164085103, 0.0109160375, -0.0049239886, -0.0214645714, -0.00876269, 0.0100776674, 0.00347693893, 0.0228312295, -0.0237729605, -0.0125066442, -0.00271465373, 0.0052685244, -0.00485508144, -0.0128626637, 0.00834924728, -0.0102097392, 0.00725247525, -0.00361188198, 0.00621886831, 0.0301813222, 0.00192652852, 0.0110883052, 0.0180307, 0.00380137656, -0.0136091579, 0.0160668455, -0.014355652, -0.00398512883, 0.00898089539, -0.0240715574, -0.0171463899, 0.00379276322, -0.0310082082, 0.00525129726, 0.0109792026, 0.0159405153, 0.0111629553, 0.013724003, -0.000249608885, -0.0209707357, -0.00300607341, 0.00419472158, 0.01871977, 0.0102269668, 0.0122884382, -0.0125066442, -0.00094675523, 0.000679022342, 0.0225441158, 0.00783818588, -0.014034085, 0.0299975704, 0.0447436944, 0.00616144575, 0.0154351974, 0.0120242937, 0.00189063931, -0.0102729043, -0.00178440753, -0.0104796262, 0.00636242516, -0.00768888695, 0.00182747445, -0.0116855009, -0.0150217544, 0.00602937397, 0.0111227594, 0.00717208348, -0.0322944745, 0.00913019478, -0.00309507851, 0.0302961674, 0.00524555519, 0.00216770335, 0.0154926199, 0.0223718472, -0.00728118652, 0.00799896941, -0.00937136915, 0.000408059394, 0.000256068946, 0.00655766204, -0.024485, 0.0117256967, -0.00965274, 0.00789560843, -0.0158256702, 0.0184671115, 0.0101925125, 0.0146772182, -0.0395067558, -0.00520535931, 0.0244620312, -0.0159864537, -0.00639113644, 0.0103820078, 0.00277638319, 0.00956086442, -0.0137469722, 0.00658063078, 0.00794728845, 0.00534030236, 0.0294233449, -0.0115362015, 0.00706298091, -0.0137814255, 5.05588105e-05, 0.0184211731, 0.00512783881, 0.0207180772, 0.000260734523, 0.0160898138, 0.00490963319, 0.00566186896, 0.0373017266, 0.00962977111, 0.0146197956, 0.00639687851, 0.0179158542, 0.00542930746, 0.000981208868, 0.00685625942, 0.0125525817, 0.0149413627, 0.0134368902, 0.0215105098, -0.0141029926, 0.0103475535, 0.00587433297, 0.00349129457, -0.0058599771, 0.00270460476, -0.0151136303, 0.0109275226, -0.00927375071, 0.0187082849, 0.00681606354, -0.016526226, -0.0241864026, -0.0012754997, -0.0213152729, 0.0119209336, 0.0135976737, -0.0145968273, 0.0285505205, -0.0152514447, -0.00439857179, 0.015906062, 0.00940008089, -0.000252121128, 0.00518813264, -0.0204309635, 0.0089119887, 0.00767166028, -0.0192136038, -0.0263914298, 0.00759126898, -0.00712040346, 0.00439282972, -0.0024505097, -0.0275858212, 0.0128741488, -0.00928523578, 0.0180077292, 0.00175856741, 0.00635668263, -0.0076544336, -0.00730415573, 0.00177292305, -0.00724673318, -0.00147001876, 0.01247219, -0.0154466815, 0.00323576387, 0.00648875488, -0.0206032321, 0.00910722557, 0.0010192513, 0.0186508633, -0.0171119366, -0.00589155965, -0.0247376598, 0.00677586766, -0.00541208079, 0.0137814255, 0.00251941686, 0.00409136061, 0.0181570277, -0.00917039067, -0.015285898, -0.00614996115, -0.00168104679, 0.0139307249, -0.0108126774, -0.00186479918, -0.0133220451, -0.0124492217, 0.0132301692, 0.0184211731, -0.00768314488, 0.0192595422, -0.0127478186, -0.0102499351, 0.00996282231, -0.0244620312, -2.18419e-06, 0.00453925692, 0.0109619759, 4.8091435e-05, 0.000456150854, 0.0203161184, 0.00123602164, 0.0305028893, 0.00420333492, -0.00798174273, 0.00691368198, -0.0154926199, 0.0240026508, -0.00153749029, -0.00203993823, -0.0155730108, -0.00486082397, 0.00518239057, 0.017778039, 0.00896941125, 0.0207640156, 0.00432679337, 0.0122310156, 0.0144015905, -0.0185475014, 0.00656340411, -0.00125181291, 0.0100087607, -0.0301353838, -0.00153461914, -0.000567766, 0.0221077036, 0.0193629041, 0.00370662939, -0.00169827358, 0.0110883052, -0.0341319963, -0.0105829863, 0.0417806879, -0.00300894468, 0.00521397265, -0.0310311764, 0.0033850628, 0.0118635111, 0.017789524, -0.000667178945, -0.00100920233, 0.00571067818, -0.00536614284, 0.0245079696, -0.0120128095, 0.0051910039, 0.0216483232, 0.00697110454, 0.0195007175, 0.00250219018, 0.0169626381, -0.00362623762, 0.00693665119, 0.0351426378, -0.0326390117, -0.00159491296, -0.0228312295, -0.00534317363, -0.00692516658, 0.00829756726, 0.00516229263, -0.0116797583, 0.00234140689, 0.0130579006, -0.0225556, 0.00791857764, 0.00346545433, 0.00556137972, 0.0164458342, 0.00677586766, -0.00408561854, 0.000515009, -0.0171693601, 0.0181110911, -0.0193054806, -0.00453064358, -0.0129545406, -0.0462137163, 0.0129315713, -0.00155041041, -0.00377266528, 0.0200864282, -0.00430669542, -0.00247204327, -3.81322e-07, 0.0134828286, -0.0102327084, -0.00342812971, 0.0256334525, 0.00216196128, 0.00329605769, 0.011852026, -0.0254956372, -0.00104078476, -0.0139651783, -0.0235203, 0.027448006, 0.0221306738, -0.00395067548, -0.012690396, -0.0278614499, -0.0330983922, 0.00303765596, 0.000959675352, 0.013827364, -0.00459955074, -0.0123458607, 0.0153662898, 0.0142522911, -0.0166410711, 0.00266153784, -0.00911296811, 0.0249214116, 0.00966422446, 0.0372098498, -0.0226819292, 0.00164659333, -0.00987668894, -0.0123803141, 0.020281665, -0.000392985967, 0.00412868569, 0.00720079523, 0.0105313063, 0.0182144511, 0.000587863964, -0.0252429787, -0.0070400117, -0.000656771066, -0.00216483232, 0.0206606537, -0.0151366, -0.00347981, 0.0272642542, -0.00927949324, -0.0269197188, 0.0150562078, -0.0125410976, -0.0145508889, -0.00946898758, -0.00233997125, 0.0176517088, -0.000471942069, -0.000755107321, 0.000616216334, 0.000502088922, -0.00180881214, 0.0168248247, 0.0179732759, 0.0160553604, -0.00580255454, -0.00469142711, 0.00724673318, -0.0144015905, 0.00748790801, -0.00825162884, -0.00292711752, 0.0061155078, 0.00847557653, 0.0207180772, 0.00184470124, 0.0107208006, 0.025265947, -0.00871100929, -0.0073098978, -0.000854161277, 0.00659785746, 0.0124607058, 0.00638539391, -0.022463724, 0.00695962, -0.0236810837, -0.00307210954, 0.0162505973, -0.00401671138, -0.0226934142, 0.0140800234, -0.0195696242, -0.0123343766, -0.0117199542, 0.00067579234, -0.0166984946, -0.0152399605, -0.0115649132, 0.00619589956, 0.0031295321, 0.0223373938, 0.0378070436, 0.0270115938, -0.0112548312, -0.0159979388, 0.0260009561, 0.0109906867, 0.00732138241, -0.00953215268, -0.00294865086, -0.00533456029, 0.0231183413, -0.00855022669, 0.0110079143, 0.0263454933, 0.00479191681, -0.0111686969, -0.000570278266, -0.00532307569, -0.0123343766, -0.0313986838, -0.023083888, -0.0044100564, 0.0116280783, 0.031628374, -0.00378702092, -0.00595472427, -0.0066036, 0.0040770052, -0.00375543861, -0.0153548056, -0.0122539848, -0.0265751835, -0.000860621338, -0.00253664376, 0.0179617908, 0.0274020676, 0.00346545433, 0.0231183413, 0.00158917066, -0.0133564984, 0.0133909518, 0.0072065373, -0.0123343766, 0.0194088407, -0.00305488263, -0.00308072288, -0.0214990247, -0.00149585889, 0.023704052, -0.0163424741, 0.0236810837, -0.0043440205, -0.00793580431, -0.0053489157, -0.0134598594, -0.000281550223, -0.0248065665, 0.00465410249, 0.00859042257, -0.00370950042, -0.0121850772, -0.00922207069, 0.0196959544, -0.00421769032, -0.00298884674, -0.00592027092, 0.0225096624, -0.000522186863, 0.00487517938, -0.00736157829, 0.00304339826, 0.0285275523, 0.0199486148, -0.0107724816, 0.00781521667, 0.0370950028, -0.00965274, 0.0128052412, -0.00140972505, -0.000518956804, -0.0417577215, 0.0176517088, -0.00567048229, 0.0109677184, 0.0263914298, -0.0182144511, 0.0105370488, -0.00141187839, -0.00482637, -0.00618441496, 0.0170085765, 0.014034085, 0.0118864803, 0.0188690685, 0.00107739167, -0.00347981, 0.00915316399, -0.00421481952, 7.2316594e-05, 0.00225240178, -0.00129631534, 0.0111916661, -0.00076946296, -0.00854448415, -0.0168133397, -0.00701704249, 0.00708020758, 0.00952641107, -0.00203419593, 0.00283380575, -0.016744433, 0.0113409646, 0.00237586047, -0.0286423974, 0.00136235135, 0.0163884126, 0.00312091876, -0.00532020442, 0.00249788351, 0.023704052, -0.0109906867, 0.00418610824, 0.0309393015, 0.0113524497, 0.004912504, 0.0245539062, -0.0078094746, 0.000274192949, 0.00413442776, -0.00179302087, -0.0109849451, -0.0176057722, 0.0160094239, -0.0162046608, 0.00416026777, 0.00980778132, -0.00467707124, -0.0267129969, 0.0226015393, 0.00676438306, -0.0155155882, 0.00826885551, 0.00362910889, 0.0184441414, -0.00133651122, -0.0254267305, -0.0130808698, 0.00727544446, 0.0186738316, 0.00820569, 0.00725821778, -0.000693736889, -0.0184441414, -0.00278068986, -0.00346545433, 0.018088121, 0.00805639196, -0.0220617652, 0.00368940248, 0.00631648675, 0.016847793, 0.014355652, -0.0133220451, 0.00466271583, 0.00558721973, 0.0275169145, -0.0125525817, -0.0091589056, 0.00949769933, -0.00695962, 0.0011154341, 0.00417749491, -0.00194375531, 0.0235662386, -0.015389259, -0.017778039, 0.00220359256, 0.0102097392, -0.00612125, 0.0277006663, 0.0212693345, 0.0113639338, 0.00352287688, 0.0183867197, 0.00335348025, 0.00982500799, 0.0366356224, -0.022142157, -0.0203735419, 0.0144130746, -0.0166984946, -0.00664379587, -0.0136895496, 0.00522545725, -0.0152744139, -0.00262421323, -0.0103992345, 0.0161931757, 0.0103418119, 0.0118290568, 0.0248065665, 0.0371409431, 0.00284098345, -0.0155500425, 0.00614996115, -0.0232102182, -0.0222455189, -0.0202127583, 0.00049239886, 0.015906062, -0.0156763718, 0.0130923549, 0.0113237379, -0.00501012243, 0.0068849707, 0.00873972103, 0.0172152985, 0.000338613929, 0.0176402256, 0.0145508889, 0.0346143469, -0.00648301234, 0.0224292707, -0.000757978414, 0.00249788351, 0.0105715021, 0.0212808177, 0.0220962204, 0.0012819597, 0.00296013546, -0.00519674597, -0.0139881475, -0.0177321, 0.0102212243, -0.00138460263, -0.0283667687, -0.00382434577, -0.015182538, -0.00241462071, -0.0104624, -0.0162391141, -0.0100145033, 0.0122080464, 0.030571796, 0.00956660602, 0.00213324977, 0.012483675, -0.000447537459, -0.00910722557, 0.0110423677, -0.00925078243, 0.0259090811, 0.0121965623, -0.0152055062, 0.00954937935, 0.0111342436, 0.00845835, -0.0077175987, 0.014975816, -0.00872249436, -0.000535465835, 0.0156419184, 0.0164228659, 0.00379276322, -0.00817698, 0.0191676673, 0.0276087895, -0.0129775098, 0.00670121843, -0.0193743873, -0.00946324598, -0.0380137675, 0.0285275523, -0.00720079523, 0.0120128095, -0.00764869153, -0.000194519089, 0.000717064831, -0.0198222846, 0.0134943128, -0.0259550195, -0.0294692814, 4.09584682e-05, -0.0208558906, -0.00322140823, 0.00825737137, 0.00421481952, 0.00303191366, 0.0180536676, -0.00193801301, -0.0107782232, -0.00775779411, 0.0116510475, 0.0251281336, 0.016227629, -0.00739028957, 0.0116223358, 0.000987668871, -0.0103303269, 0.0138733024, -0.0285734888, 0.00375830964, 0.0249903183, -0.0100145033, 0.0169856083, 0.00715485681, 0.00888327789, 0.00063774985, 0.00216052565, 0.000293752528, -0.0130349323, 0.0252429787, -0.00477756094, -0.0167788863, 0.0061040232, 0.00979629718, -0.0297678802, 0.0183867197, -0.00384731474, 0.00818846375, -0.023083888, 0.0301813222, -0.0181799978, 0.0150102694, -0.0154581657, -0.00798748434, -0.0182833578, -0.0228541978, -0.0308703948, -0.0156534035, 0.0131382924, -0.00791283511, -2.29466132e-05, 0.00340228947, 0.0028969706, -0.026827842, -0.00789560843, 0.00848131906, -0.0217976216, -0.00175856741, -0.0079070935, 0.023704052, 0.00995708, -0.011955387, 0.0117544075, 0.00224809512, -0.00736732036, -0.0151251145, -0.0193514191, -0.00751661928, 0.0129545406, -0.00607531192, 0.00857319497, 0.0230149813, -0.0103418119, 0.0027117827, 0.00698258914, 0.00677586766, -0.00182316778, -0.0072295065, 0.00967570953, 0.00774631, -0.0175598338, -0.0247606281, -0.000766591809, 0.0037324694, -0.00699981581, 0.0323174447, 0.0383583, 0.00242897635, -0.0168018546, 0.0155615266, -0.0200175215, -0.0192250889, 0.0116797583, -0.00944027677, 0.0229345895, -0.000217129229, 0.00102858245, 0.0118060885, -0.028389737, 0.0178814, 0.015389259, -0.0147116724, 0.0115763973, 0.00176574523, 0.00655766204, -0.00162649539, -0.00907277223, -0.00536614284, 0.00542643666, 0.0117371809, 0.0200404897, -0.000943884137, 0.027356131, 0.00401096931, -0.0206032321, 0.00814826787, 0.00470865378, 0.00743048545, 0.0297908485, 0.0239337422, -0.022980528, -0.0139536941, 0.0142408069, -0.0118635111, 0.0244160928, 0.000194339635, -0.0108241616, -0.0196385328, -0.00598917808, -0.014355652, -0.0142178377, 0.019868223, 0.0107495124, -0.00985372, -0.00514219468, 0.0316743106, 0.0164917726, 0.0152284754, 0.0219928585, -0.0141948685, -0.0185934398, -0.0144015905, 0.021211911, 0.00307210954, -0.0169970915, 0.0259320494, 0.0107609965, 0.00988243055, 0.00308359414, 0.0178469457, 0.00526278187, -0.0182718746, -0.0041545257, -0.0090038646, 0.0185015649, 0.00339941843, 0.0269656572, 0.00304052699, -0.00831479393, 0.00356307277, -0.00198969338, -0.0399891026, 0.00985372, -0.028596459, -0.0210511275, 0.0237959288, -0.00106231822, 0.00438708719, -0.00742474338, -0.00299746, -0.0227967761, -0.00322140823, -0.0150562078, -0.00196385314, -0.0147920642, -0.00695962, -0.0139881475, 0.00421769032, -0.0130119631, -0.0192939956, 0.0180307, 0.000838370062, 0.00642559, -0.000872823643, 0.00887753535, -0.00152169913, 0.0152055062, 0.0022122059, 0.0127822729, -0.00502447831, -0.0116797583, 0.00370950042, 0.0126674268, -0.0104336878, 0.0320418142, -0.0194318108, 0.00545514794, 0.00438995846, 0.0131842308, -0.0092680091, -0.00710317679, -0.0026342622, -0.022142157, 0.0141833844, 0.018398203, -0.00488379272, 0.0181455445, 0.0257023592, -0.00343674305, -0.0208903439, 0.0303650759, 0.0115534291, -0.000165179721, 0.00995708, 0.0172842052, 0.0102729043, 0.0161012989, 0.0148954242, 0.00272900937, -0.000843394548, -0.00397651549, -0.00727544446, 0.0167214628, 0.00648301234, 0.0103131, 0.0214990247, -0.00269742706, 0.000972595415, -0.00302330032, 0.00272326707, 0.000173793116, 0.0022064636, -0.0107035739, 0.0108069349, -0.0283667687, 0.00295439316, -0.00747068133, 0.0188920386, -0.0212233961, 0.0178354625, 0.0163654424, 0.0226474758, 0.0136895496, -0.0259779878, -0.00143700081, 0.0310771149, -0.00939433835, 0.000537619169, -0.0145968273, -0.016526226, 0.00528575107, 0.0187312551, -0.00930820499, -0.0227852911, 0.0255186073, 0.0121850772, 0.003988, -0.00246630097, 0.00575374532, 0.00270460476, 0.0174564719, 0.00655766204, 0.0111916661, 0.00211745873, -0.00372959836, -0.0217631683, 0.00521397265, 0.0105657596, -0.0169281848, -0.0012819597, -0.0122884382, 0.00901535, -0.0605004579, 0.0117946034, 0.0266440902, 0.0227049, 0.0036549489, 0.00459668, -0.0208444074, 0.00612125, -0.00480627222, 0.0115936249, 0.031513527, 0.0213152729, 0.0140800234, -0.014562373, 0.0007213715, -0.00126832188, 0.00629926, -0.0213612095, 0.0117946034, -0.0062073837, 0.0109964292, -0.00712040346, -0.00653469283, -0.00496418448, 0.00148150325, -0.0154237123, 0.020901829, 0.00180594099, -0.00888327789, -0.0250362568, -0.0309622698, -0.0138043948, 0.028596459, 0.020281665, 0.0130234472, -0.0179617908, 0.000918761711, -0.0192021206, -0.00980778132, 0.0235088151, -0.0283437986, 0.0025581771, -0.00237586047, -0.0112663154, -0.00802768, -0.00515080802, 0.00291706854, 0.0191791505, 0.0123114074, -0.0109677184, -0.0117314383, 0.00450480357, -0.0118979644, 0.0170200616, -0.0102441935, -0.0166410711, -0.000433181791, -0.0046655871, 0.0132416533, 0.00913019478, -0.0107437698, -0.012897118, -0.0157797318, -0.000302904256, 0.0146197956, 0.00889476202, -0.0313527435, 0.0219124667, -0.00114055653, 0.0175483488, -0.027448006, -0.017261235, -0.0333969891, -0.00965848286, 0.00548098795, -0.00146858324, -0.010290131, -0.010600213, 0.00682180561, 0.00244620303, 0.0120932013, 0.00916464813, 0.0104222037, 0.00730415573, 0.0025524348, -0.0199486148, -0.0155500425, 0.00464548916, -0.0338563696, 0.0132990759, -0.0124951592, -0.00497279782, -0.0116395624, -0.0128282104, 0.00550682796, 0.0033908051, -0.0165836494, -0.0247606281, 0.0131842308, -0.00658637332, 0.00525416853, 0.00218349462, 0.030158354, -0.0359695219, 0.0243931245, -0.00158629951, -0.01331056, -0.00543505, -0.010290131, 0.00983649306, 0.0254267305, -0.00175138959, -0.00402245345, -0.00124894176, 0.0172956903, 0.0117946034, 0.0117429234, 0.00266153784, -0.0285275523, -0.0315824337, 0.0213152729, -0.0229345895, 0.0319269709, -0.00492973067, -0.00538911158, -0.000636314275, 0.011076821, 0.0180421825, 0.00408849, -0.0128167262, 0.000757260656, 0.0172727201, 0.00664379587, -0.010611698, 0.00270891143, 0.00427798415, 0.0326619782, -0.0166181028, 0.00343387201, 0.000458304188, -0.0183178112, 0.00556425052, 0.0282519236, -0.000552333717, -0.0302272607, -0.0156304333, 0.00107523834, 0.00606382731, -0.00602937397, 0.00264144, -0.024025619, 0.0122425, 0.0173875652, -0.0115591707, 0.00216483232, 0.0364289023, 0.00343961432, -0.00189207494, -0.00635094056, -0.00539198285, -0.0225441158, -0.00883733947, 0.031306807, 0.00271034706, -0.0136436112, 0.0157108251, -0.0138388481, 0.0314905569, 0.00891773123, -0.0136665804, 0.040678177, 0.00568483816, -0.00500725163, 0.0169052165, -0.0166525561, 0.00376692298, 0.00363198, 0.00672992971, -0.0118175726, 0.00164802885, 0.000759414, -0.00573651865, -0.0153088672, 0.00267158682, 0.00347406766, -0.000737880531, 0.00410284521, -0.00226245075, 0.00679883687, -0.0187312551, 0.000275987404, 0.00272326707, -0.0210511275, 0.0111457277, 0.000335742807, -0.017778039, 0.00137742481, 0.000938141835, -0.0152514447, 0.00166812679, 0.0255645458, 0.011180182, 0.00524555519, -0.00209448952, 0.0122425, 0.00324437744, -0.00887179282, 0.0160898138, 0.00279935217, -0.0165721644, -0.0147116724, -0.000898663828, -0.0130579006, -0.0181340594, 0.0141718993, 0.00695387786, -0.0220847353, 0.0129889939, -0.0005724316, 0.00277351192, -0.010766739, 0.00396503089, 0.0472702906, 0.00105226925, 0.0315364972, 0.00974461623, 0.00447896356, 0.0130579006, 0.0276776962, -0.00991688482, 0.0163769275, -0.00199974235, 0.02953819, -0.0139651783, -0.00843538065, 0.00363485096, -0.00394780422, 0.0279073883, -0.026207678, 0.00185331469, 0.0118635111, -0.0108815841, -0.00582265249, -0.019133212, -0.0223718472, 0.0219813734, 0.0278155115, 0.014034085, 0.015906062, -0.004421541, -0.0118290568, 0.0344995037, -0.010301616, -0.0112892846, 0.0237499904, -0.0146312807, 0.006293518, 0.0164113808, -0.00606382731, 0.0183637496, 0.00515655, 0.00955512188, -0.0109504918, -0.00463400455, -0.0122884382, -0.0226359926, 0.0116280783, -0.0230724029, 0.00667824922, -0.00713188807, 0.00609253859, -0.0177665558, 0.00114845217, 0.0116625316, 0.0144934664, -0.0123803141, -0.0166870095, -0.00861913338, 0.00106303603, 0.0233710017, -0.019971583, -0.00478330301, 0.000342920626, 0.00136091583, -0.00395641755, 0.0137814255, -0.00561018893, -0.0132646225, 0.00377266528, -0.00318408362, -0.0254726689, 0.0102614202, 0.016434351, 0.0170659982, -0.0250362568, -0.0383583, 0.00864210259, -0.0220847353, -0.0155844958, 0.00845835, 0.00621886831, 0.000234894353, -0.0308014862, 0.00252515916, 0.0128626637, 0.00809084531, -0.00489527732, -0.0143211987, -0.0201208815, 0.00713763, -0.00448757689, 0.00862487592, 0.00585710583, 0.0161816906, -0.0149528468, -0.0162965357, -0.0137469722, -0.0189839136, 0.000707374769, -0.0124032833, -0.0165836494, -0.0319729075, -0.00395641755, -0.00608105399, -0.00192796404, -0.021521993, 0.0348210707, -0.0206721388, -0.00208874745, -0.00277925422, 0.00505318958, 0.00837221649, -0.00147576106, -0.000104078477, -0.00363772223, -0.00300033134, 0.00522545725, -0.0230953731, 0.000677227858, -0.00659211539, 0.00308646518, 0.0132990759, 0.00363772223, 0.0140685393, 0.0319729075, 0.00053044135, -0.0157452784, 0.0261158012, 0.00320418156, -0.0100546982, -0.0122884382, -0.000178638147, -0.00157050835, 0.0186853167, -0.0199945513, 0.0185704716, -0.0275628511, -0.0269197188, -0.015182538, -0.0191217288, 0.00596620888, -0.0062820334, 0.000765874051, 0.00351139251, 0.00828608219, 0.016124269, 0.02806817, -0.013000478, -0.0153548056, 0.0125296135, -0.0157682486, -0.00554128177, -0.0210970659, 0.0570091642, 0.0210855808, -0.00761998026, -0.00646578567, 0.00601214683, 0.00438708719, -0.0023672469, 0.0212004259, 0.0156993419, 0.00169540255, 0.00447896356, -0.00251223915, -0.00935414247, 0.0099054, -0.0217057467, -0.00710317679, -0.00391335087, -0.00768314488, 0.00102140463, -0.00707446551, -0.00825162884, -0.0032242795, -0.00235002022, 7.36175789e-05, -0.00624183752, -0.0243012477, 0.00348268123, -0.00341664511, 0.00706872297, -0.00950344186, -0.00916464813, 0.00114127435, 0.0243931245, -0.0026342622, 0.00221507717, 0.00828608219, -0.00750513468, 0.0336266793, 0.00753384596, -0.00216052565, -0.000596118451, 0.0102958735, 0.00975035876, -0.0105887288, 0.00240170048, 0.0100317299, 0.00492686, -0.0111342436, 0.00612125, -0.00594324, 0.00458232407, -0.0124377366, -0.00864210259, 0.0110997902, -0.00605808524, 0.0206951071, 0.0197189227, -0.00989391562, -0.0185934398, -0.00710891886, 0.0087339785, 0.00994559564, -0.0116165932, 0.00273188064, -0.00261990656, -0.0169626381, -0.00500725163, -0.002301211, -0.0201438516, 0.0181225743, 0.00966422446, -0.00892921537, -0.00393057754, -0.00107810949, 0.019661501, 0.0223488789, -0.0187427383, 0.00154323259, -0.002730445, -0.0247146897, -0.00488666398, 0.00312378979, -0.0140111167, -0.0190872755, 0.00868229847, -0.00427798415, 0.00283667678, -0.0154696507, 0.0220158286, 0.0184671115, 0.0128052412, 0.0153662898, -0.00392196421, 0.0280222334, 0.00894644205, -0.00372385606, -0.00885456614, -0.0117831193, 0.00218349462, 0.0321107209, 0.00415165443, -0.00849280413, 0.00828608219, 0.0206606537, 0.0045909374, 0.0256334525, 0.0192939956, 0.0158945769, 0.00336783589, -0.00336496485, 0.00141618506, -0.00048522104, 0.000778794114, 0.00332476897, 0.00269024912, 0.00948621519, -0.011852026, 0.0207525305, 0.00777502125, -0.00874546356, -0.00709743425, -0.00440718513, -0.0213267561, -4.10033317e-05, -0.00638539391, 0.0211659726, 0.00126114406, 0.0196040776, 0.0155500425, 0.0194432959, -0.00164372218, 0.0135402512, -0.00550682796, 0.00221364154, 0.0107552549, 0.0164688043, -0.0196270477, 0.00524555519, 0.0180421825, 0.0129200872, 0.0138618173, 0.0135861887, -0.00712614553, 0.0259090811, -0.00795303099, -0.000949626381, 0.00618441496, -0.00846983492, 0.0294233449, 0.0196270477, -0.0138733024, 0.00971016288, -0.0235892069, -0.0274939444, -0.00287256599, 0.00316111464, 0.00693090865, -0.0198797062, 0.0123573449, -0.0239107739, -0.00656340411, -0.00118936575, 0.0153548056, -0.0275398828, 0.0288031809, -0.0194662642, 0.0230149813, 0.0164688043, 0.00312666106, 0.0251970403, 0.0124951592, 0.0158371553, 0.0197304077, -0.00195236865, 0.0151366, -0.0162620824, -0.00640836312, -0.000777358538, -0.00191791507, -0.00526278187, 0.00833776221, -0.000588940631, -0.000756542839, 0.0372787565, 0.0141833844, -0.0131957149, -0.00691368198, 0.00179014984, 0.00810233, -0.0165032577, 0.00359752635, -0.0160209071, 0.0159864537, -0.0111170169, -0.00919336, -0.00892921537, 0.0198911913, 0.00776353665, 0.00281227217, -0.00575948739, 0.0215449631, -0.00108959398, 0.00653469283, 0.00536901364, 0.00872823596, 0.0196729861, 0.00613273447, 0.0169970915, -0.00244046072, -0.0320418142, -0.00266297348] |
10 Nov, 2024 | Python String isdigit() Method
10 Nov, 2024
The isdigit() method is a built-in Python function that checks if all characters in a string are digits. This method returns True if each character in the string is a numeric digit (0-9), and False otherwise.
Let’s start with a simple example of isdigit() method.
Python
s = "12345"
print(s.isdigit())
s2 = "1234a5"
print(s2.isdigit())
OutputTrue
False
Explanation: In this example, s.isdigit() returns True because “12345” consists entirely of numeric characters, while s2.isdigit() returns False due to the non-numeric character “a” in the string.
Table of Content
Syntax of isdigit()Example of isdigit()Checking Strings with Only Digits, Mixed Characters, and Empty StringsChecking Unicode Digits Using isdigit()Frequently Asked Questions on Python isdigit() MethodSyntax of isdigit()s.isdigit()
ParametersThe isdigit() method does not take any parametersReturn ValueReturns True if all characters in the string are numeric (0-9).Returns False if there are any non-numeric characters.Example of isdigit()Let’s explore some examples of isdigit() method for better understanding.
Checking Strings with Only Digits, Mixed Characters, and Empty StringsHere are example with a string containing only digits, a mixed-character string, and an empty string.
Python
# String containing only digits
s1 = "987654"
# Returns True
print(s1.isdigit())
# String with mixed characters (digit and alphabet)
s2 = "987b54"
# Returns False
print(s2.isdigit())
# Empty string
s3 = ""
# Returns False
print(s3.isdigit())
OutputTrue
False
False
Checking Unicode Digits Using isdigit()The isdigit() method can also be used to check numeric characters encoded in Unicode, such as the standard digit ‘1’ and other Unicode representations of numbers.
Python
# Unicode for '1'
s1 = "\u0031"
# Devanagari digit for '1'
s2 = "\u0967"
# Return True
print(s1.isdigit())
# Return False
print(s2.isdigit())
OutputTrue
True
Explanation:
The variable s1 holds \u0031, which represents the standard numeric digit ‘1’. Since this is a recognized numeric character, so s1.isdigit() returns True.The variable s2 contains \u0967, which represents the Devanagari digit ‘1’ used in Hindi and other Indian languages. Python recognizes this as numeric, so s2.isdigit() also returns True.Related Articles:
Python String isdecimal()Python String isnumeric() MethodPython String isalpha()Python String isalnum()Frequently Asked Questions on Python isdigit() MethodWhat does the isdigit() method do in Python?Thebmethod checks if all characters in a string are numeric digits (0-9). If all characters are digits, it returns True; otherwise, it returns False. This includes numeric characters from Unicode representations.
Can isdigit() detect negative numbers?No, isdigit() will return False if the string contains a negative sign (-). This method only returns True for strings that contain purely numeric characters without any additional symbols.
Does isdigit() work with decimal numbers?No, isdigit() does not consider decimal points (e.g., “12.34”) as numeric. If the string contains a decimal point or other symbols, isdigit() will return False.
Can isdigit() recognize numbers in non-Latin scripts?Yes, isdigit() can check digits from various Unicode scripts, such as Devanagari, Arabic, and others, as long as they are recognized numeric digits. For example, the Devanagari digit “१” (one) will return True when checked with isdigit().
How is isdigit() different from isnumeric()?While both isdigit() and isnumeric() check if a string contains only numbers, isnumeric() can identify additional numeric representations, such as fractions or Roman numerals, in Unicode. Therefore, isnumeric() may return True in cases where isdigit() returns False. | NLP/Natural Language Processing (NLP) Tutorial/AI ML DS - Projects/30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated]/Does Artificial Intelligence Require Coding?/Artificial Intelligence – Boon or Bane/Artificial Intelligence Examples/Agents in Artificial Intelligence/What are Diffusion Models?/ML | Common Loss Functions/Loss Functions in Deep Learning/Kaiming Initialization in Deep Learning/Swift - Initialization/Swift – If Statement/6 Best iOS Project Ideas For Beginners/Swift Programming Language/Introduction to Visual Programming Language/What is D Programming Language: Usage and Applications/Best Programming Languages for Data Science in 2024/5 Best Languages for Competitive Programming/MEX (Minimum Excluded) in Competitive Programming/Rearrange Array to maximize sum of MEX of all Subarrays starting from first index/Minimize moves to segregate even and odd by swapping adjacent elements/Minimum elements to be removed such that sum of adjacent elements is always even/Maximum sum such that exactly half of the elements are selected and no two adjacent/Maximum length subsequence such that adjacent elements in the subsequence have a common factor/Longest subsequence such that difference between adjacents is one/Longest Increasing Subsequence using Longest Common Subsequence Algorithm/Longest Common Subsequence (LCS)/Minimum insertions to form a palindrome with permutations allowed/Print longest palindrome word in a sentence/Python String split()/Python String strip() Method/Python String rindex() Method/Python String istitle() Method/Python String isdigit() Method | https://www.geeksforgeeks.org/python-string-isdigit-method/?ref=lbp | NLP | Python String isdigit() Method | Artificial Intelligence – Boon or Bane, AI ML DS - Projects, Longest Common Subsequence (LCS), Rearrange Array to maximize sum of MEX of all Subarrays starting from first index, Python String istitle() Method, MEX (Minimum Excluded) in Competitive Programming, Swift - Initialization, Minimum insertions to form a palindrome with permutations allowed, Longest Increasing Subsequence using Longest Common Subsequence Algorithm, 6 Best iOS Project Ideas For Beginners, ML | Common Loss Functions, Python String strip() Method, Python String isdigit() Method, Artificial Intelligence Examples, Python String split(), Longest subsequence such that difference between adjacents is one, What is D Programming Language: Usage and Applications, 30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated], Swift – If Statement, Natural Language Processing (NLP) Tutorial, Python String rindex() Method, Loss Functions in Deep Learning, Minimize moves to segregate even and odd by swapping adjacent elements, Maximum length subsequence such that adjacent elements in the subsequence have a common factor, Does Artificial Intelligence Require Coding?, Print longest palindrome word in a sentence, Best Programming Languages for Data Science in 2024, NLP, 5 Best Languages for Competitive Programming, Maximum sum such that exactly half of the elements are selected and no two adjacent, Swift Programming Language, Minimum elements to be removed such that sum of adjacent elements is always even, Agents in Artificial Intelligence, What are Diffusion Models?, Kaiming Initialization in Deep Learning, Introduction to Visual Programming Language | GeeksforGeeks | [-0.0163177773, 0.0163005199, -0.00272250618, 0.0515334606, -0.00184232974, -0.00320574013, 0.0456311, -0.0252662376, 0.00441166805, -0.0120118177, -0.00687745586, 0.00757641951, -0.0159639809, 0.0199679211, -0.0295290519, 0.0148421889, 0.0238165352, -0.00234497944, -0.00365014281, -0.00446128566, 0.00109968102, 0.0243515447, -0.0541222133, 0.0193638783, -0.00119514135, -0.00333086331, -0.0229881331, -0.00296196574, 0.0083918767, -0.00184772303, 0.0291666258, -0.0278204735, -0.00252403505, -0.0220734403, -0.0308579449, -0.0349309184, -0.0151096927, 0.0198816285, -0.0159380939, -0.0362080373, 0.00541049568, 0.0204511546, 0.0435946137, 0.0291148517, -0.0276133735, 0.0298569612, -0.00199657632, 0.0119168963, -0.00221122731, 0.0153944558, 0.00635539042, -0.00506964279, 0.00233635027, -0.0164127, 0.0701034516, 0.0524308942, 0.0123052094, -0.0185009614, 0.00273976452, -0.0682050362, -0.0103204986, 0.00412259065, 0.0229018424, 0.0106656654, 0.00727008376, 0.0240926687, -0.0155929271, -0.016326407, 0.0511537753, 0.0109504284, 0.0250418782, 0.0292874351, 0.0155066354, -0.0016481732, -0.00900886301, -0.0178451426, -0.0161624532, -0.00137311814, -0.00132026442, -0.0175344925, 0.00776626123, -0.0118219759, 0.0164644737, -0.0153599391, 0.0175172333, 0.0416961946, 0.0144366175, -0.0173273925, 0.0318244137, 0.0347238183, 0.0124519058, -0.0107346987, -0.0137376534, 0.0068904, -0.00126201753, -0.000912535703, 0.0136254746, 0.0125209391, 0.00779646356, 0.0215902068, 0.0223495737, -0.0197090451, -0.0156792197, -0.00648482842, -0.0267504565, -0.00147990428, -0.0041506351, 0.00641148025, -0.0226429664, 0.00802945159, -0.0296326019, -0.0238855686, 0.0126158604, 0.0522928275, -0.0286316164, -0.00725282542, -0.0249210708, -0.0190532282, 0.030150352, -0.0155411521, 0.02134859, 0.0258185044, 0.015049289, 0.0590235852, -0.0326528139, 0.0126590058, -0.0442159139, -0.0035918958, -0.00938854739, -0.013435632, 3.30672847e-05, 0.0173964258, 0.0278032161, 0.0127625559, 0.0365877189, 0.00213356456, 0.0121239973, 0.0205029305, -8.10333877e-05, 0.0206927713, -0.011925526, 0.0457346514, 0.0179832093, 0.0302539021, -0.0187080614, 0.00838756189, -0.0153254224, 0.0418687798, 0.0111402702, -0.0206064805, -0.0185009614, -0.0771793798, 0.000484852, -0.00323594222, 0.0186735447, 0.0173532795, 0.0179659519, 0.00601885282, 0.00670918683, 0.00807691179, -0.00662721, -0.00537166419, 0.0220907, 0.00900023431, 0.0160675328, 0.0298224445, 0.00539323688, 0.00197716081, -0.00810711365, 0.0132457903, -0.0118737509, 0.0132285319, -0.0135219237, -0.0447336659, -0.00816320349, 0.0263362546, 0.0186217688, -0.00705866888, -0.00838756189, 0.0235921759, -0.0540531799, -0.00617417786, -0.0136341034, 0.00714064576, 0.0166715737, 0.00786981173, 0.00860329159, 0.0122448057, -0.0121412557, -0.0131681273, -0.0138584618, 0.0058635273, -0.00137527543, -0.0124087604, -0.00967331, 0.02134859, -0.032048773, 0.00179486931, 0.0126676355, 0.0140224164, -0.0122879511, 0.0116839092, -0.0337918662, 0.01062252, 0.00507395761, 0.0184664447, -0.00989766885, 0.0144107295, 0.00888805464, -0.0220561828, 0.0135736987, 0.0138412034, -0.0225911923, -0.00333733507, -0.0031280776, 0.00688608503, -0.0383825898, -0.0167492367, 0.0349999517, -0.00337616634, -0.0183628928, 0.0107001821, -0.00605336949, -0.0010915912, -0.0125123104, -0.0304782614, 0.00975960214, 0.0124519058, -0.0138412034, -0.0142208878, 0.0244550947, -0.0283209663, 0.00167513941, -0.000835951767, 0.00694217486, 0.0183801521, 0.0173791666, -0.00213895785, -0.0596448891, 0.0381409712, 0.068688266, -0.0153599391, 0.0265951306, -0.0405916609, -0.00157374656, 0.00937128905, 0.023954602, 0.00776626123, 0.00443971297, 0.0243515447, -0.0262672212, -0.0220734403, 0.0116235046, 0.0229191, 0.00472447556, -0.0297016352, 0.0116580212, 0.0146609759, -0.00611808803, 0.000792805862, 0.0159208365, 0.010467195, -0.0176466722, -0.00740815047, 0.00986315217, 0.0364151374, -0.0130473189, -0.016792383, -0.00451737549, -0.0142554045, 0.0118219759, -0.0106311487, -0.0183801521, -0.0016546452, -0.0299087353, 0.016662946, -0.00868095458, -0.0118047176, 0.00893120095, -0.031531021, -0.0403500423, 0.0134270033, 0.0237302426, -0.0113732582, 0.0515679754, -0.0328081399, -0.0560206324, 0.0127711855, 0.00947483908, 0.0198125951, 0.0202613138, -0.000137594965, -0.000885030197, 0.00403198414, -0.0234541092, -0.0190187115, -0.0231607165, -0.0290975925, -0.0250418782, -0.0130386902, -0.035379637, -0.035379637, -0.0431804135, 0.0343096182, -0.00771448622, -0.0263017379, 0.0303747114, -0.0292011425, 0.0230053924, -0.00259306841, -0.00128466904, -0.0532247797, 0.00290371897, 0.0168614164, -0.0224531256, 0.000158830837, 0.000211954219, 0.0189151615, -0.0110712368, -0.0214176234, 0.029839702, 0.00827106833, 0.015334052, 0.0196227543, -0.00580312312, -0.0204511546, -0.00128466904, -0.00970782712, -0.000485391327, -0.0436981656, -0.000681705191, 0.0154807474, -0.0232124925, 0.0330497585, -0.00825381, -0.00399099523, -0.0312548876, -0.0116580212, 0.0286488757, 0.0314102136, 0.0373816043, 0.0355522186, -0.0126503771, 0.00420241, 0.0193638783, 0.00962153543, -0.00333733507, 0.0240236353, -0.0525344424, 0.0187598355, 0.000320897612, 0.00281311246, 0.0199161451, 0.0235404018, -0.0241444446, -0.0421103947, -0.00589372963, -0.022712, -0.0216765, -0.028821459, -0.000426605053, 0.00178408285, -0.000858603336, -0.0386932418, -0.00697237672, -0.0396597087, 0.0316345729, -0.00719242077, 0.018173052, 0.000395863608, -0.00353149162, -0.00838756189, 0.000132673638, -0.0142295165, -0.0255596284, -0.000982108526, 0.0206064805, 0.00652797427, 0.00411180407, 0.0132199032, 0.012003188, 0.0240408946, -0.00998396054, -0.0130645772, -0.0245413855, 0.038037423, 8.60221335e-05, -0.024420578, 0.0216592401, 0.0455275513, -0.0440778472, 0.0203303471, 0.00418730918, -0.0231262, 0.027078364, 0.012132626, -0.0260946378, -0.0167751238, 0.00679979334, -0.0263362546, 0.0230053924, -0.0457346514, -0.011977301, -0.0210379399, -0.0505669899, -0.0341025181, -0.0246104188, -0.0237129852, -0.0163436662, -0.0211242307, -0.00889668427, 0.0264915805, -0.000118111893, 0.013694508, -0.00534577668, -0.0112179331, -0.0374506377, 0.016766496, 0.0344822, 0.0294945352, 0.0305472948, 0.0302193854, 0.0195192043, -0.00580312312, -0.0130559485, -0.0097423438, 0.00110183831, 0.0273717567, 0.0111316415, 0.0101565439, -0.01062252, 0.00735637546, 0.0249901041, 0.0178796593, -0.0298914779, 0.00370838982, -0.0063424469, 0.00492294692, 0.0152995354, -0.0348101109, 0.00874567311, -0.0289250091, -0.030461004, 0.0217800494, -0.0301158354, 0.0367948189, 0.011847863, 0.0222632829, 0.0143848415, 0.00249167555, 0.0291838851, -0.0183974095, -0.00855583139, 0.00731754396, 0.0383825898, -0.0213140734, 0.0141777415, -0.00272682076, 0.036346104, 0.0132716782, 0.00903475098, 0.013746283, -0.0451823846, 0.00587215647, 0.0520512089, -0.040798761, 0.0112265628, -0.0278377328, -0.0138325747, 0.0240754113, 0.00013058375, -0.0483924374, -0.00730891479, 0.0296671186, -0.020019697, -0.0209343899, -0.0365532041, 0.0558480471, 0.0317726396, 0.031893447, 0.0844278932, -0.00698532071, -0.051291842, 0.00195235189, 0.0366567522, 0.025749471, 0.0235404018, -0.0267849732, 0.0346547849, -0.00204835134, -0.030098578, -0.00541049568, 0.0459072329, -0.0127711855, 0.00688177068, 0.053742528, -0.0452169, -0.0172497295, 0.00407513, -0.0168873034, -0.00613103202, -0.00214974419, -0.0264225472, 0.0222632829, 0.0285453256, -0.0158863198, 0.00708455639, 0.0137894284, 0.0290285591, 0.0196917877, 0.00127280399, -0.00946620945, -0.0524999276, 0.0350517258, 0.0117788296, 0.0170167424, 0.00271819159, 0.00381409726, 0.00355737912, -0.0220561828, 0.0210551973, -0.00998396054, -0.0307026207, 0.0195192043, 0.00449580234, 0.00130839937, 0.00272466335, 0.0235921759, -0.0256631803, 0.0518786274, -0.00109051249, 0.00456483569, 0.013616845, -0.0193121042, 0.00648051361, 0.0132112736, -0.058609385, -0.0343096182, 0.0225394163, -0.0278549902, -0.0230226498, 0.0297534112, 0.0131853856, -0.0197090451, 0.0298742186, -0.0178796593, -0.0102255773, 0.0226602256, 0.0235921759, -0.0132544199, 0.00815457478, -0.0015068705, -0.000964310777, -0.000967546715, -0.0174999759, -0.0261291545, -0.0203130879, -0.0195709784, 0.0255941451, -0.000602963904, -0.0413510278, 0.0152218724, -0.0350517258, -0.0166284293, 0.0116666509, -0.00602316717, -0.0397977754, 0.0276478902, -0.0135219237, -0.00519908033, -0.0176294129, -0.0183283761, 0.0339644514, -0.0246449355, -0.0266814232, 0.0189496782, 0.0182938594, -0.0036544574, 0.0173705388, 0.00627772789, 0.0197953377, 0.00556150591, -0.0293046925, 0.0145487962, -0.018017726, -0.0148421889, -0.00608788617, -0.0169994831, -0.0123915011, 0.0191567782, 0.0299605113, -0.00243127136, 0.00743403798, -0.0105362283, -0.0095266141, 0.013746283, -0.0260946378, 0.0396597087, -0.00555287674, -0.00887942594, -0.00506532844, 0.028614359, 0.0246449355, 0.023954602, 0.00654091779, -0.00585921295, 0.0128919939, -0.0199161451, 0.0461488515, -0.0245931614, -0.0111057535, 0.0115199545, 0.0251626875, -0.0251799449, -0.0202267971, -0.0043663648, -0.0116666509, 0.0131249819, -0.00994944386, 0.00749875698, -0.0506015085, -0.0113214832, 0.0342233256, 0.0235404018, 0.0109331701, -0.0202785712, 0.043353, -0.0259393137, -0.00598002132, -0.0266814232, 0.0112179331, -0.0397632569, -0.00443539815, 0.00831421465, 0.0199679211, -0.0132889366, -0.0120118177, 0.0177070759, -0.0130128022, 0.00309140352, -0.000820311368, -0.0223840903, -0.030461004, 0.0582987368, -0.00431459, 0.0118306046, 0.004062186, 0.0413165092, 0.00893983, -0.0235921759, 0.0157309938, -0.00452169, 0.0139706414, 0.0144883925, 0.0232470091, 0.0166715737, 0.0239718594, 0.0138239451, 0.0275616, -0.00146264595, -0.0070975, -0.00321221212, -0.0318071544, -0.00871115644, 0.00407513, 0.00544501236, 0.0482198559, -0.0275616, 0.0194846876, 0.0579880849, -0.0160157569, 0.00416789344, -0.0267331973, 0.00186282408, -0.0114336628, -0.00152412883, -0.0249383282, 0.00317122345, 0.0320315138, -0.0188116115, 0.0349654332, 0.00957838912, -0.0215384308, -0.0186562855, -0.0192430709, -0.00282821362, 0.00959564745, -0.0349654332, -0.0269920733, 0.0231607165, -0.00484096957, -0.018276602, 0.0083099, 0.0574013, -0.00686882669, 0.0177761093, -0.00951798446, -0.0205892213, -0.0328944325, 0.0265260972, -0.0135995867, 0.0372090228, 0.0108209914, -0.0222287662, -0.0241962187, 0.0114077749, 0.00479782373, -0.0023838107, 0.0214866567, 0.0235058852, -0.00489274459, 0.0218490828, 0.0212968141, 0.0165421367, -0.0196400117, 0.0127452975, 0.00963016413, 0.0146264592, 0.00224358658, -0.0264570639, 0.00748149864, -0.0114422916, -0.0275961161, 0.0175517499, 0.00556582073, -0.0100529939, -0.0212795567, -0.00136880355, -0.00701552304, -0.00600159401, 0.0347583331, 0.0148939639, 0.00229320442, -0.00928499736, -0.0160416439, -0.00783098, -0.0438362323, -0.015334052, -0.0172152128, -0.00481508207, -0.0150838057, -0.0288904924, -0.032859914, -0.0125640854, 0.010311869, -0.0258702803, 0.00723125227, 0.0315655395, -0.010648407, -0.0191567782, 0.0197435617, 0.0488756709, 0.0521892756, 0.0148853343, -0.0259910878, -0.0135046653, 0.0202958304, 4.36852206e-05, -0.0118133463, 0.0458382, -0.00379252434, -0.011899638, -0.0463904664, -0.0184837021, 0.00682568084, -0.016870046, -0.0243515447, -0.0160589032, 0.00413769158, -0.00962153543, -0.0118910093, -0.0105793737, 0.0359664187, 0.00241832761, 0.0108209914, -0.00656249095, -0.0116666509, -0.0298224445, 0.0108641367, 0.00912967138, 0.00832715817, -0.0174482, 0.00258228183, 0.022677483, -0.0083099, -0.0523963757, 0.0320315138, 0.00880607776, 0.0308579449, -0.0497040749, 0.00956113078, -0.0046554422, 0.0176466722, 0.0432494469, -0.0120204473, -0.016766496, -0.0243515447, -0.0220734403, 0.0215039141, -0.0216074642, 0.0280620921, -0.00752464449, 0.0154980058, -0.015385827, 0.0625097752, 0.00314965053, -0.0069594332, 0.0143934712, -0.0141863711, 0.00137851143, -0.00071298593, -0.0219181161, -0.0370364375, -0.0127539271, -0.039970357, -0.0134011153, -0.00798199, 0.0105275987, 0.00788275525, 0.00734774629, -0.0280966088, -0.00932814274, -0.0225394163, 0.0211069733, 0.0156878475, 0.0402464941, 0.0634417236, -0.0409368277, 0.0289077517, 0.0297016352, 0.0122361761, 0.00683862483, -0.0164644737, -0.0235576592, -0.0142554045, 0.00867664, 0.00890531298, -0.0104758237, -0.0179314353, 0.0292184018, 0.00120377052, 0.0231952332, 0.0205892213, -0.0263880305, 0.00969056878, -0.013539182, 0.00435126387, -0.0144883925, 0.00312592019, 0.0262672212, -0.0280620921, -0.0204166379, 0.0500147231, 0.0284935497, -0.0267331973, 0.0130904652, -0.00423477, -0.0277341828, 0.0392455086, -0.00800787844, -0.0427662134, -0.00116062467, 0.00682568084, -0.00274623628, -0.00743403798, -0.0237647593, 0.00954387244, 0.00264484342, 0.0443885, -0.00108080474, 0.0164213292, -0.0250418782, 0.0463904664, -0.00992355589, -0.00509121595, -0.032497488, -0.0188979022, -0.0296843778, -0.0502218232, 0.0143071795, 0.0116407629, 0.00535440585, 0.0071837916, -0.0173619092, -0.00488411542, 0.012106739, 0.0356902853, -0.0199851785, 0.013435632, -0.00670055766, 0.0182593428, -0.00829264149, 0.0128229605, -0.0323594213, 0.013539182, -0.0249038115, 0.0205374472, 0.0211069733, -0.0166543163, -0.0243515447, 0.0191050023, -0.0163954403, 0.00116601784, -0.0402119756, -0.00547952903, -0.0298569612, 0.0162142273, 0.00336322258, 0.0224531256, -0.0377612896, -0.0256114043, -0.0171634369, -0.00905200932, 0.0444230139, 0.010648407, 0.00971645582, 0.00251324847, 0.0278204735, 0.00924185105, -0.0194329116, -0.0250246208, 0.0115717296, -0.0221252162, -0.00099505228, -0.0170512591, -0.00172583584, -0.027389016, 0.012029076, 0.0129351402, -0.0101133985, -0.011977301, -0.00389823178, -0.0101824319, -0.00591530232, -0.0118823797, -0.0193466209, -0.0194156542, 0.036346104, -0.0461488515, 0.000674154609, 0.030150352, 0.0149457389, -0.0148076713, 0.00426065736, -0.00512141781, -0.0435255803, 0.00169455505, 0.00531557435, -0.00124799507, 0.0100271069, 0.0178278852, 0.00209904788, 0.00272034877, 0.0106311487, -0.0396942236, 0.0013871406, 0.0156274438, -0.0221079569, 0.00170102692, -0.000475144188, -0.0494279377, -0.0171720665, -0.00775331771, 0.011951413, -0.0138757201, -0.0148594473, -0.0171979535, -0.0161279365, -0.0169045627, -0.00794316, 0.00972508546, -0.0455965847, 0.0165162496, -0.0339817069, 0.00409886, 0.0347755924, -0.0157482531, -0.00925910939, 0.00746424031, -0.00705435406, -0.0187598355, -0.00614397554, 0.000830019184, 0.0218836, 0.00742540881, -0.00343657075, 0.00135370251, -0.0144883925, -0.0111834165, 0.00772311538, 0.0353278592, -0.0015640388, -0.0271991733, 0.00228457525, -0.00597139215, 0.0112006748, 0.00840050634, 0.0059023588, -0.0485305041, 0.0322903879, -0.00550541654, -0.00173446501, 0.00582469627, -0.0329462066, 0.0117702009, 0.0147472676, -0.00571683142, 0.0118651213, 0.00913830101, -0.0441814, -0.000379144563, -0.0152132437, -0.0146437176, 0.0122534344, -0.0226602256, -0.00509121595, -0.0422484614, -0.00692491652, -0.0083099, 0.0396251902, 0.00745561114, 0.0261636712, -0.0205547046, 0.0164989904, 0.00271387701, -0.00384214218, 0.00130839937, 0.00407081516, 0.006847254, -0.00566505641, 0.00649777194, -0.0140137877, -0.00933677237, -0.00779646356, 0.0173360221, -0.0175086055, -0.0281138662, -0.0311513375, 0.0109331701, -0.00275486545, -0.00369760324, -0.0286661331, -0.00384861394, 0.0109676868, 0.00323809963, -0.015049289, -0.0030957181, -0.0183456354, -0.0145315379, 0.00141842139, -0.00912104268, 0.00142597186, 0.00231046276, 0.0165162496, 0.00651503028, 0.0180349853, 0.00765408203, -0.0258185044, -0.0147990426, 0.0222978, 0.00111100683, -0.00341068325, 0.00544069754, 0.0163350366, -0.0039284341, -0.0200714711, -0.010467195, -0.00263621425, 0.00990629755, 0.019501945, 0.000105640029, -0.00332654873, -0.0217455328, 0.00828401186, 0.0423174948, -0.0216074642, -0.0144883925, -0.00310866185, 0.00569525827, -0.0182420854, 0.0176725592, 3.80686697e-06, -0.0123569844, 0.0308061708, 0.000128224216, 0.00342578418, -0.00620006537, -0.0128574772, -0.00693786, 0.011925526, -0.0113818878, -0.0109590581, 0.0133579699, 0.0177761093, -0.0123483557, 0.000457076851, 0.00311513385, -0.0184491854, -0.0307198782, -0.00215513748, -0.00427575829, -0.0112524498, 0.0157913975, 0.0155842975, 0.0432839654, 0.00626909873, -0.00456915051, -0.0123310974, -0.00532851834, 0.0164903626, 0.0465975702, -0.010777845, 0.012029076, -0.0224186089, 0.0146178296, -0.00695511838, 0.00114983809, -0.00742972363, -0.000430919637, -0.0203476045, 0.0115372129, -0.0036307273, 0.0113387415, -0.00535009103, -0.0157051068, -0.0181385353, 0.00894845929, -0.0152391307, 0.0115631, -0.0157568809, 0.0307198782, -0.00188331841, 0.0063424469, -0.0117443129, -0.0100788819, -0.0169045627, 0.0116062462, -0.027078364, -0.0240236353, 0.020986164, 0.0306853615, 0.011951413, 0.0116493925, -0.0177070759, -0.0107001821, -0.00444834214, -0.0146782342, -0.0206582546, -0.0107001821, -0.0200887304, 0.00138174731, 0.024420578, -0.0196227543, -0.0457001328, -0.00399746746, 0.0166198, 0.0187253188, 0.0118047176, -0.0164903626, 0.0197953377, -0.0266641639, -0.0331187919, 0.0200369544, 0.00355737912, 0.0197780784, -0.0222805403, 0.0255078543, 0.00342578418, -0.0297188945, -0.0173360221, 0.00557013508, 0.00455189217, -0.0172238424, 0.0415581279, 0.00800356362, -0.0169390794, 0.006717816, -0.0017085775, 0.016662946, -0.00237302436, -0.00566937076, -0.00661858078, 0.0181385353, -0.00723556709, -0.00200089091, -0.0409713425, 4.78312722e-05, -0.0261809304, -0.0224876422, 0.0172756165, 0.00969919749, -0.0190014523, 0.00151981425, -0.0236266926, 0.0216247234, 0.0073348023, 0.0169994831, 0.0214348808, -0.00305472943, 0.0116148759, -0.000515323831, -0.017810626, 0.00144646619, 0.00907789636, -0.0146868629, -0.0126417475, 0.0102946106, 0.0197090451, -0.000659592915, 0.00254129339, -0.0204856712, 0.00828401186, -0.0105275987, -0.00506964279, -0.0309442375, -0.0059023588, 0.0256804377, -0.0236612093, 0.00938854739, -0.00786118209, 0.0259565711, 0.0177070759, -0.00538460771, 0.00971645582, -0.00254776515, -0.00944895111, -0.0151614677, -0.0226084497, 0.000962153485, 0.000978333177, 0.0158776902, 0.0217973068, 0.0159984976, -0.0176639296, -0.0107864738, -0.00360268238, -0.00217563193, 0.00673507433, 0.00475467788, 0.0324629731, 0.0155066354, -0.035017211, 0.0364496522, 0.00514299097, 0.00347324461, -0.00187684654, 0.016766496, -0.00977686048, 0.000341391918, 0.010777845, 0.0139016081, 0.0200024378, -0.0231434591, 0.0113387415, 0.00737363379, -0.0260256045, 0.00219289027, 0.00815026, 0.00528537249, -0.00276996661, 0.015101064, 0.0198988877, -0.0333258919, -0.0170081127, 0.00628204271, 0.00362641271, 0.0210034233, -0.00130947796, 0.022936359, -5.70671909e-05, -0.00644599693, 0.00733048795, 0.0284245163, -0.000699502823, -0.0156101855, -0.00456483569, -0.00973371416, -0.0115199545, -0.0124519058, -0.0167147201, 0.023902826, -0.0177415926, 0.00924185105, -0.0258357637, -0.00990629755, 0.0385551751, -0.00686451234, -0.00592393149, 0.0110194618, -0.0181040186, 0.00557876425, -0.013798058, 0.00848248322, -0.0117529426, 0.00210012658, 0.00298569608, 0.00775331771, -0.0275788568, 0.00942306407, -0.0332050808, -0.00484096957, -0.00282605621, -0.00944032241, -0.0163609236, -0.0128315901, -0.00717516243, 0.00926773902, 0.00768859871, -0.00159316219, -0.00591098797, 0.0142899211, -0.022936359, -0.0215039141, 0.00544501236, 0.00554424757, 0.00914693, 0.00468995888, 0.00306551601, 0.00509984512, 0.00673076, -0.0156619605, 0.00565642724, -0.0117097963, 0.00582469627, -0.006847254, -0.0419378132, 0.0302366447, -0.0153513104, 0.00682568084, 0.0155066354, 0.00478056539, 0.00443539815, 0.0194501709, 0.0205201879, -0.00818477664, -0.0225221589, 0.0369674042, -0.0385896899, 0.0523618609, -0.016352294, -0.00767565519, -0.0252144616, 2.20280035e-05, 0.0549161, -0.00465975702, 0.0203821212, -0.0113128545, 0.00035136941, -0.00417652261, -0.0108900247, 0.00205913791, -0.0113905165, -0.0192258116, 0.0100184772, -0.0195709784, -0.00322731305, -0.00267288834, 0.0227465164, -0.019864371, 0.0123310974, -0.016429957, 0.00739520648, -0.000370785041, -0.0282519329, 0.016248744, -0.0161624532, 0.00836599, 0.0238165352, -0.00729597127, -0.00750307133, 0.0153599391, 0.0149543677, 0.0234713685, 0.0139274951, 0.0130214319, 0.0066703558, -0.00701983739, -0.00296412315, 0.00757210469, -0.0367948189, 0.0416271612, -0.0177933685, -0.0227465164, 0.0027117196, 0.0133234533, -0.0109590581, -0.0215556901, 0.0264743231, 0.00125015236, -0.00707592722, 0.0210034233, 0.0217973068, 0.0643046424, 0.0274235327, 0.00864212308, -0.0044159824, -0.0268885233, 0.0181212761, 0.036863856, 0.00119298405, -0.00979411881, 0.0257839877, -0.00158453302, -0.000363773841, 0.0472879037, 0.0203821212, -0.0490827709, 0.00164709461, -0.00735206064, 0.0118047176, -0.000992895, -0.00738657732, 0.0183974095, -0.0169563368, 0.00322299846, -0.00798199, -0.0111489, -0.00180889177, 0.0129265105, -0.00643305341, -0.0165162496, -0.00893120095, -0.0130041735, -0.00453031901, -0.00956975948, -0.0155066354, -0.000948670378, -0.00985452253, 0.00220583403, -0.0143503249, 0.0295290519, -0.00591961714, -0.000872086443, 0.0195709784, 0.0137635414, -0.0256804377, -0.000457885821, -0.0103032403, 0.0351380184, -0.0136254746, 0.0103463857, 0.0158776902, 0.00788707, 0.0357248038, 0.0145056508, 0.0059023588, 0.00810711365, 0.00594981899, -0.00840482, -0.000483773358, 0.00279369671, -0.00476330705, 0.0133665986, -0.0183111187, -0.0125123104, -0.00834010169, 0.0312203709, -0.0216765, 0.019553721, -0.0223668329, -0.00900886301, -0.00010044904, -0.00880607776, 0.00517319283, 0.00557013508, 0.0122706927, -0.00170210563, 0.00146156724, 0.00434047729, 0.022677483, 0.00362641271, 0.0162746329, 0.00418083742, -0.000178650982, 5.63593276e-05, -0.00276133744, 0.00535872, -0.0220389236, -0.00137959, 0.0346893, -0.0144625045, -0.0144193592, -0.0048323404, -0.00890531298, -0.00789569877, 0.00817183312, 0.0282174163, 0.0186562855, 0.0132544199, 0.0342405848, 0.0120118177, 0.0151700974, 0.0126072308, -0.00239675445, 0.00731322961, -0.0114336628, 0.0358628705, 0.0284417756, -0.0127021521, -0.0154548604, 0.00526379934, -0.00585489813, -0.0292701758, 0.0116580212, -0.0254043043, -0.0212277807, 0.0172842462, -0.0109418, 0.0192258116, -0.00411611842, 0.0164213292, 0.0218663402, -0.0444575325, -0.00616986305, 0.0363806188, 0.00320142554, -0.0200714711, 0.00466838619, -0.00726145459, -1.83707143e-05, 0.0173360221, -0.00848248322, 0.0181212761, -0.00689902902, -0.0123483557, 0.0214176234, -0.019501945, 0.000233392333, 0.0162746329, -0.0182938594, 0.0143934712, 0.0265951306, -0.0269057807, -0.00701552304, 0.0123828724, -0.0281311255, 0.00333086331, 0.0129178818, -0.00199549762, 0.00817183312, -0.00521202432, -0.00130947796, -0.00206668838, -0.00208178954, -0.00939717609, -0.00101932185, 0.00196637423, -0.00760662183, -0.0132716782, 0.00379252434, 0.0130559485, 0.00540186604, 0.00802945159, 0.000600806612, 0.00163738674, 0.0058160671, -0.00219720486, 0.0206064805, 0.0371745043, -0.0169908535, -0.0171634369, 0.00312376302, -0.00680410769, 0.00231693476, 0.00153383659, -0.00163415086, 0.00302452734, -0.00295549398, -0.0185182188, 0.0156188151, 0.01661117, 0.00281311246, -6.32357041e-05, 0.00380115351, -0.00445697131, -0.0146523463, -0.0139361247, 0.00402551237, 0.0272682067, 0.0211760066, 0.0102169486, -0.0169218201, 0.0142640332, -0.0020634525, 0.000867771858, -0.0201922804, 0.00820635, 0.0175862666, 0.0175258629, 0.0173360221, 0.0167233497, 0.0198816285, -0.00201167748, -0.00463386951, 0.00399099523, -0.0340334848, -0.0159984976, 0.0184146687, 0.00228026067, -0.00787844, -0.0278204735, -0.0157655105, 0.00481076771, 0.0190532282, -0.0106829237, 0.0107001821, -0.0069594332, 0.0146178296, -0.00216160947, -0.00557445, 0.0160934199, 0.0339644514, -0.0128057022, 0.00293176365, 0.0135736987, 0.0133061949, 0.0278895069, 0.0161710829, -0.0148853343, 0.0293219518, -0.00409454573, 0.013720395, 0.0045907232, 0.0162401162, -0.00936265942, -0.0114854379, -0.00492294692, -0.0178796593, -0.000601345964, -0.00727439811, -0.00538029335, 0.00894845929, 0.00162444299, 0.00607494218, 0.000765300356, -0.001679454, 0.00950072613, -0.0120981093, 0.00149931991, -0.0240408946, 0.00446991483, 0.00446560048, -0.00369760324, 0.0164731033, 0.0224013496, 0.00782235153, 0.0204684138, 0.00653660344, 0.00342146959, 0.00279801129, 0.0261118971, -0.0239373427, 0.00593687547, 0.00217994652, 0.00206021662, -0.00148529746, 0.0292874351, -0.00922459271, 0.0216592401, 0.0170857757, 0.0186735447, 0.0263362546, 0.00235576602, -0.00987178087, -0.00106786098, -0.0152736474, -0.0117529426, 0.00685588317, 0.00335675082, 0.00779214874, -0.0177415926, 0.00994944386, -0.00187253195, 0.00688608503, 0.0113042248, -0.010260094, -0.0058635273, 0.017810626, 0.00929362606, -0.0120377056, 0.0174568295, 0.010441307, -0.00253697881, 0.00130300608, 0.00726576895, -0.0125036808, -0.00364151364, -0.00900886301, 0.0160243865, 0.00635970524, 0.00984589383, 0.00531557435, 0.0117097963, -0.0228155497, -0.00786981173, 0.00732617313, -0.0185182188, 0.00266641635, 0.0140051581, 0.00824086647, -0.00128143316, 0.00773605937, -0.00418946659, -0.00125554565, 0.00690334337, -0.0201232471, -0.00161149923, 0.0081028, -0.0176121555, -0.000158830837, -0.00166651024, -0.0259565711, 0.0109245414, -0.000352987379, 0.00535872, 0.00348834577, 0.0123569844, -0.0189669356, 0.0222287662, -0.0182938594, 0.00934540108, -0.0140224164, 0.0219698902, 0.0086464379, -0.0086464379, 0.00288214581, 0.00258659641, -0.00821066462, 0.0255941451, -0.0125986021, 0.000318470644, 0.000130853412, -0.0294082426, 0.0063424469, -0.0137290247, 0.00156943197, 0.0152391307, -0.0259220544, -0.0141691128, 0.00179163332, -0.0122879511, 0.0154030854, -0.00118974806, -0.00316259428, 0.00850837119, 0.00264915801, 0.00911241304, 0.00090876047, 0.0183628928, -0.00540186604, 0.00444834214, 0.00456483569, -0.0162314866, -0.00309140352, -0.00550973089, -0.00914693, -0.0110798664, 0.00932814274, 0.00797336176, 0.0137721701, 0.0180349853, -0.00321005471, 0.00720967958, 0.00240969844, 0.00944032241, 0.00317769521, 0.0232815258, -0.0120894806, 0.018017726, -0.00261248415, -0.0113646295, 0.00111640012, 0.00959564745, 0.0141345961, 0.00536734937, 0.0115717296, 0.00589372963, -0.00569525827, -0.0276651494, 0.0145056508, -0.0160243865, 0.00465975702, -0.00408160174, -0.00706729805, 0.024317028, -0.015126951, -0.0160157569, 0.0113905165, -0.00205698074, -0.00354875, -0.00384861394, 0.00240538386, -0.00579449395, 0.0219871495, 0.0113042248, 0.018017726, 0.0131681273, -0.00796041824, 0.0186390281, -0.0028325282, 0.025749471, -0.0339299329, 0.00258012465, -0.0157482531, -0.00937128905, 0.0155152641, 0.0188979022, -0.00792590156, -0.0290285591, 0.0111834165, 0.0207963213, -0.0125381975, -0.00969919749, 0.0162228569, -0.0148767056, -0.00682999566, 3.21740299e-05, 0.0250246208, -0.00803808, 0.000973479298, 0.00654091779, -0.0175862666, 0.0114940666, -0.0149888843, -0.00910378434, 0.00687745586, -0.00564348325, 0.00322731305, 0.00994944386, 0.00580743793, 0.0169994831, -4.19450589e-06, -0.00516887847, -0.00732185878, 0.00876293145, 0.0216419827, 0.00193185755, -0.011925526, 0.0161279365, -0.0117270546, 0.00370623264, 0.00895708799, -0.00845228136, 0.00718810642, 0.0124519058, 0.0144279879, -0.00623458205, -0.0220734403, -0.0400739089, -0.00774037372, 0.0196917877, -0.0143416962, 0.00610082969, -0.00853425823, -0.00560896657, 0.00370623264, -0.00957838912, 0.00861623604, 0.0115113249, 0.0289940424, 0.0186562855, 0.0255768877, -0.000684401777, 0.00767996954, -0.00970782712, -0.0277859569, 0.0184664447, -0.0136599913, 0.0036544574, 0.000824625953, 0.022573933, 0.0108468784, 0.00319279637, -0.0271128807, 0.0113732582, 0.0091814464, 0.00737794815, 0.00231262017, -0.0162660033, -0.0110884951, 0.00906926766, 0.0134960366, -0.00994944386, 0.0265260972, -0.00799493492, -0.00598865049, 0.0205201879, -0.00719673559, 0.00740815047, 0.022712, -0.0137031367, 0.0231607165, 0.0121930307, -0.0112179331, 0.00681705168, 0.00856446, 0.00198686845, 0.00343441335, -0.0177243352, 0.00113689434, -0.0167751238, 0.0149543677, -0.007485813, -0.00318200979, 0.0168959331, 0.00596707733, -0.00560896657, -0.00970782712, 0.000699502823, 0.0201750211, -0.0235749185, -0.00760230701, 0.00148853345, 0.000715682574, 0.0044159824, 0.0022155419, 0.00275055086, 0.00979411881, -0.0114250332, 0.00493589044, 0.0130904652, 0.00682136649, -0.0235404018, 0.0217973068, -0.0176035259, -0.0182420854, -0.0219871495, 0.022315057, -0.00682999566, 0.0200024378, -0.00506532844, -0.00382919842, -0.00549678737, 0.0101392856, 0.027285466, 0.00529400166, 0.0200714711, -0.0208653565, 1.44858977e-05, -0.00269014668, 0.00699826423, -0.00476330705, 0.0106829237, -0.0189669356, 0.0382100046, 0.00274192169, 0.015256389, 0.0210379399, 0.0197953377, 0.013539182, -0.012210289, 0.00679979334, -0.0161624532, -0.0289250091, -0.00923322234, 0.0173791666, 0.00748149864, 0.0162832607, -0.00575566245, -0.00486685708, -0.00454757735, -0.00657543447, -0.0142122582, -0.0284762923, -0.0240926687, 0.00713201659, -0.002590911, 0.000906603178, 0.0231089424, 0.0266641639, -0.0127539271, 0.00701552304, -0.00714496057, -0.000326021196, 0.015126951, -0.00123720861, -0.00484959874, 0.00612240285, 0.00328340265, 0.00325967255, 0.0140396748, -0.0262672212, 0.0488411561, -0.0156360734, 0.013435632, 0.0123742428, -0.0158690605, -0.0153167937, -0.0187080614, 0.0176207852, -0.0115803583, -0.00927636772, -0.00761093618, 0.0226602256, -0.019139519, -0.0299777687, 0.00672644516, -0.0227637757, 0.00302452734, 0.000158426337, 0.00626046956, -0.00733048795, -0.0151096927, -0.0155411521, 0.00262974249, -0.0191222616, 0.00127711857, -0.0282001588, -0.01072607, -0.00642010942, -0.00124799507, -0.0148508176, -0.0147645259, 0.0138412034, -0.00935403071, -0.000147235376, -0.0142467748, -0.00246794522, -0.00811142847, -0.0157051068, 0.00181859953, -0.0136599913, 0.0020073629, -0.0155497808, 0.0135995867, 0.0203821212, 0.0126676355, 0.00735206064, 0.0112265628, -0.019398395, -0.00278506754, 0.00210767705, -0.000809524907, -0.00544069754, -0.037519671, 0.0152736474, -0.00165788108, -0.0143503249, 0.0179486927, 0.0100098485, 0.0198988877, 0.0201059878, -0.00095622096, -0.000550649536, 0.00496609276, -0.00852994341, 0.0180004686, -0.039970357, 0.00305904401, 0.0169563368, -0.00541049568, -0.00496609276, -0.00577292079, -0.0018595882, 0.00668329932, 0.00475899223, 0.0183974095, 0.00828832667, 0.0127107808, 0.0160157569, 0.00613966119, 0.00387450145, -0.00317553803, 0.00704141054, 0.012210289, -0.0263362546, -0.0100616235, -0.00340852584, 0.00692923088, 0.00775763206, 0.00583332544, -0.0107692154, 0.00341499783, 0.0125899725, 0.00201922795, -0.000846198876, -0.00381409726, -0.00864212308, -0.0144193592, -0.0199851785, -0.000584087567, 0.00302021275, 0.00929362606, 0.00981137715, -0.0086938981, -0.0136513617, -0.0211932641, -0.0138153164, 0.00747286947, 0.0153426807, -0.00699395, -0.0406606942, -0.00475036306, 0.0099667022, -0.00294902199, -0.0142554045, -0.00221985648, 0.0234368518, 0.0167406071, 0.0192430709, -0.010855508, -0.0101479152, -0.00244637229, 0.00814163, -0.00456915051, 0.000993973576, 0.00807691179, 0.00211846363, -0.00287783123, -0.000845659582, 0.0113214832, -0.0225049, -0.00543638319, 0.011796088, -0.010570745, 0.0173877962, 0.00679979334, 0.0117184259, -0.0111661581, -0.0235058852, 0.0343959071, 0.00916418806, 0.00209149742, -0.0146005712, -0.0190532282, 0.00613103202, 0.00045249259, 0.00914693, -0.00984589383, 0.0237647593, -0.0278032161, 0.00485391356, -6.55278272e-05, 0.00895708799, 0.0144538758, -0.00882765092, 0.0135219237, -0.0125036808, -0.0143330665, -0.0242825113, -0.0180867594, -0.0235749185, -0.00823655166, -0.00678684935, -0.00131271395, 0.0123915011, -0.0221252162, -0.00376232225, 0.00442245463, 0.00124691636, 0.0186562855, 0.0214176234, 0.0124691641, 0.00852994341, 0.00444834214, 0.00242695678, 0.00441382546, 0.0154807474, -0.0020645312, 0.0161020495, 0.0173101332, -0.0100012189, -0.00153383659, -0.0146782342, -0.0175258629, -0.0101996902, -0.0073348023, -0.0024161702, 0.00424339902, 0.014738638, 0.00951798446, -0.0124173891, -0.0295117926, -0.00211091293, -0.00293823564, -0.0208135806, 0.0278722495, 0.0208653565, 0.0195192043, 0.00118759077, 0.00790001359, -0.0122448057, -0.00086992915, 0.0211932641, -0.0275961161, 0.0135046653, 0.0164127, -0.00720536476, 0.0066315243, -0.0134701487, -0.00641148025, -0.0157655105, -0.0010155465, -0.00137743272, -0.0223495737, 0.013435632, 0.00849111285, 0.00966468081, 0.0139965285, -0.0184491854, -0.014919851, 0.00620438, 0.00259954017, 0.000170021798, -0.00374937849, -0.00563485408, 0.0166456867, 0.0154203437, 0.0207445472, -0.011356, 0.00588941481, 0.0032704589, -0.0292011425, 0.0208135806, -0.0281656422, -0.0361044854, 0.0067437035, 0.0155497808, -0.0115803583, -0.0282519329, -0.00485391356, 0.00558307907, 0.0225221589, -0.0253697876, -0.00403629849, 0.0194846876, 0.0065193451, 0.0147472676, 0.0198988877, -0.0046554422, 0.00487980107, -0.00302452734, -0.00840050634, 0.00844796654, -0.0051602493, -0.0323766805, 0.0294772759, 0.00815457478, -0.0119945593, -0.000631548057, 0.022470383, 0.0139447534, 0.0183456354, 0.00564779807, -0.020727288, 0.0257839877, 5.03930605e-05, -0.00638559274, 0.0174223129, -0.00680842251, -0.0390384085, 0.00790001359, 0.000153842091, -0.00814163, -0.0257839877, 0.0200024378, -0.0128057022, 0.00324241421, 0.0154376021, -0.0106656654, -0.0180522427, -0.0204856712, -0.0264570639, 0.000112988317, 0.00326182973, -0.0178796593, -1.57246577e-05, -0.00328124547, -0.0042390842, -0.00616554869, -0.0215384308, 0.00630793, 0.00767996954, -0.0110453498, -0.0157137364, 0.00407944433, -0.0141173378, -0.00775331771, 0.0209343899, 0.00175927393, -0.0300122853, -0.0158000272, -0.00819340535, 0.00398236606, -0.00975960214, -0.00262111332, -0.0134270033, 0.00393059105, -0.0116580212, 0.0162228569, 0.0114768082, 0.00438793749, 0.00415279251, 0.00344088534, 0.0156274438, 0.00223280024, -0.0184146687, -0.0115717296, -0.00066552544, -0.00456915051, -0.0258702803, 0.0305818114, 0.0194501709, 0.00352501986, -0.0319107063, 0.00881470647, -0.00316259428, -0.012158514, -0.00124368048, -0.0175172333, 0.00196529552, 0.012262064, -0.00841776468, -0.0115976166, -0.0287351664, -0.0244378354, 0.0149457389, 0.00755916117, 0.0172756165, 0.00816320349, 0.0186217688, 0.0283727422, -0.0207790639, -0.00708887074, -0.00460366718, -0.00187361054, -0.0243688021, 0.00430596061, 0.00853857305, -0.00213895785, -0.0239373427, 0.0278032161, -0.00846091, 0.00395647855, 0.0231607165, 0.0048711719, -0.00803376641, -0.0292184018, -0.00590667315, -0.0166715737, -0.00225221575, -0.01072607, -0.0155238938, 0.00407944433, -0.0153081641, -0.010648407, -0.00877156109, 0.0339299329, -0.0230399091, -0.0039284341, 0.015152839, -0.0101996902, -0.00705435406, 0.0121930307, 0.00239028269, 0.00239459728, -0.00107055751, -0.0114164045, 0.01661117, -0.00593687547, -0.0183111187, 0.0372780561, 0.00366308657, 0.00390470377, 0.0280966088, 0.0191222616, -0.000146021892, 0.00270524784, 0.0175517499, 0.00684293918, 0.0197435617, -0.0329807252, 0.030202128, 0.00963879377, -0.0259220544, 0.0112610795, -0.00665309746, -0.0236439519, 0.016688833, -0.0267159399, -0.000354875, 0.0191912949, 0.0131767569, 0.00640285108, 0.00893983, 0.0239200853, -0.00779646356, 0.0117874593, -0.0164127, -0.000118718628, -0.012262064, 0.0028066407, -0.0321523212, 0.00453894818, -0.0115458416, 0.00944032241, 0.00531988917, -0.00304610026, 0.00374506391, 0.00193940802, -0.0146782342, -0.0066315243, 0.0149457389, 0.0176639296, -0.0168355294, -0.0118219759, -0.0201405045, 0.00906063803, 0.0185182188, -0.00696806237, -0.00371270441, -0.0118910093, 0.000325212197, 8.70333606e-05, 0.0110108331, -0.00991492718, -0.00826244, 0.0253180116, -0.0159726106, -0.000994512928, 0.0170253702, 0.00752032967, 0.0114940666, 0.0323421657, 0.00801219326, -0.0097423438, 0.0178969186, 0.00884490926, -0.0166802034, 0.0284072589, 0.0124001307, 0.00853857305, 0.00114120892, 0.0190014523, -0.00984589383, 0.00384861394, -0.0214866567, 0.0130645772, -0.00168592588, 0.0149888843, 0.000280178676, 0.0136254746, -0.0145487962, 0.0114768082, 0.00306767318, 0.00896571763, -0.0028001687, -0.0191740356, 0.0130732069, 0.014790413, -0.00868095458, -0.0122275474, -0.0129610272, 0.00327908807, -0.0298742186, -0.00162552169, -0.00182507141, 0.00941443443, 0.00610082969, 0.00224358658, -0.00301805558, -0.00954387244, -0.00758504868, -0.00969919749, -0.0236612093, -0.00418083742, -0.012054964, 0.00759367784, -0.0102859819, -0.0121671427, 0.0364151374, -0.00905200932, 0.0167578664, 0.00576429162, -0.00412474759, 0.0146609759, 0.000989659, -0.00613103202, 0.0247657448, 0.00343441335, 0.0134011153, -0.0279240236, -0.0121412557, 0.00484959874, -0.0239373427, -0.0284245163, 0.00857309, 0.0193638783, -0.00824086647, 0.00513867615, 0.00827538315, 0.00824086647, -0.00186606008, 0.0193293616, -0.0157137364, -0.00167298212, -0.0122361761, 0.0116580212, 0.0286488757, 0.014971626, 0.0247830022, -0.0179832093, -0.00161257794, -0.00884490926, -0.0279585402, -0.0203821212, 0.00236870977, 0.00165895978, 0.0182938594, -0.00159855548, 0.0202267971, -0.0110022034, 0.00401904, -0.0186562855, 0.0169908535, -0.00142705056, -0.00122642214, -0.0097509725, 0.00187792513, -0.0191567782, 0.0218490828, -0.00394784939, 0.0114768082, -0.0201232471, -0.000395054609, -0.0189324189, -0.0006639075, 0.0350344665, -0.0187943522, -0.0195709784, -0.00525517, -0.00535872, -0.0125554558, 0.00272466335, 0.013202644, 0.0164385866, 0.0143071795, -0.0154203437, 0.00756779034, 0.00954387244, -0.0230571665, 0.0298224445, -0.0314619876, 0.0145142796, 0.00226300233, 0.00969056878, -0.00289940415, -0.00679547852, -0.00840482, -0.00778783439, -0.00385724311, -0.00168700458, 0.031686347, 0.0164903626, -0.0338436402, 0.00969919749, -0.000844580936, 0.0183283761, -0.0347928517, -0.010570745, 0.00345814368, -0.0143589545, -0.000395054609, 0.0175172333, 0.0138670914, -0.00478487974, -0.00775763206, -0.0129437689, -0.00388960261, -0.0067437035, -0.00237302436, 0.00302237016, 0.00188008242, -0.00488843024, 0.000161392614, -0.0129696568, -0.0368293375, 0.0184491854, 0.00291882, -0.00621300936, -0.0307716541, -0.0100012189, 0.00402335497, -0.00837461837, -0.00884490926, -0.0328944325, 0.00516887847, -0.00360483979, 0.0058160671, 0.000285841554, 0.0261636712, -0.00642873859, 0.0349136591, 0.00962153543, -0.00468132971, -0.00993218552, -0.0128315901, -0.00656249095, 0.000533391139, 0.00529831601, 1.34156771e-05, 0.0251281708, 0.0123742428, 0.00933677237, -0.000309841475, -0.010648407, -0.00819772, -0.0158172864, 0.0116839092, -0.0204511546, -0.00767134037, 0.007550532, -0.0222287662, -0.0116925379, 0.0174999759, 0.00192214968, 0.00183909386, 0.00311944843, -0.0156705901, 0.0100702522, 0.00340205384, -0.00372133357, -0.0137721701, -0.00436205, -0.00334380707, -0.0489101894, 0.0057988083, -0.0110971248, -0.0150838057, 0.00968193915, 0.019501945, -0.00834441651, -0.0342751, -0.0178624019, 0.013642733, 0.00635970524, 0.00753758801, 0.01062252, -0.0301158354, -0.0111143831, 0.0346547849, 0.005246541, -0.00304394308, 0.0359319039, 0.0030957181, -0.00557876425, -0.00891394261, -0.00632518856, -0.0118306046, 0.00225005858, 0.0274580494, -0.00372780557, -0.00957838912, 0.0382100046, -0.028459033, 0.00704572489, -0.00699395, 0.014971626, 0.011899638, -0.00834873132, 0.0206237379, 0.00775331771, 0.00176358852, 0.00390686095, 0.0146782342, -0.00515162, -0.0232987851, 0.00791295711, 0.0034473571, 0.00963016413, -0.0161365662, 0.0274062734, 0.0224186089, -0.0219871495, 0.0152391307, -0.0118047176, -0.00690334337, 0.00490568858, 0.00877587497, 0.00786118209, -0.0234886259, -0.0138325747, -0.00788707, 0.00131163525, -0.0131681273, 0.000326830166, -0.00577292079, -0.0117702009, 0.0245586447, -0.0028864604, -0.0057988083, -0.0280966088, 0.0098372642, 0.0137031367, -0.00722693792, -0.00894845929, 0.0156792197, -0.0289077517, -0.0207963213, 0.00964742247, -0.01062252, -0.0217627902, 0.0234195925, -0.00136341038, -0.0131077236, -0.0206237379, 0.00586784212, 0.00322084129, -0.00175603805, 0.0048064529, 0.0268540066, -0.000550110184, 0.0306335874, -0.00548384339, 0.00453894818, 0.00114660221, 0.0222460236, -0.0183283761, 0.00760230701, 0.0159553532, 0.0319452211, -0.00698963506, -0.00777057605, 0.00133536546, -0.0142640332, 0.0110798664, -0.0343096182, -0.00445265649, 0.0168269, 0.0280620921, -0.0180867594, -0.0128057022, 0.0046942737, 0.0481508225, 0.00957838912, -0.00201707077, 0.0418687798, 0.00235576602, -0.00165788108, 0.00835736, 0.00441814, 0.00261248415, -0.000607278489, -0.0142381461, 0.00121347839, 0.00711475825, 0.00573840411, 0.00209796918, 0.0201577637, -0.0114940666, -0.00249599013, 0.00446128566, -0.02124504, -0.0279067662, 0.00604905467, -0.0312031116, -0.0189496782, 0.0197780784, -0.000490245235, 0.00399531, 0.0138843497, 0.0108727664, 0.00727439811, -0.0173791666, -0.00757210469, -0.00733911712, -0.00396510772, 0.0191740356, 0.00106462499, 0.00517750764, -0.0066962433, 0.0136341034, 0.0227982923, 0.0109676868, -0.00193293614, -0.0158776902, -0.0141173378, 0.0023600806, -0.00168916187, -0.00730891479, 0.0146350879, 0.0173187628, -0.0385896899, -0.0514299087, -0.0106829237, -0.0356902853, 0.00123073673, -0.00805533864, -0.0016233644, 0.00193725072, -0.00254992256, -0.00851268508, 0.0183801521, 0.0255596284, -0.00112934387, -0.0227637757, -0.0132285319, 0.0141345961, -0.00440519629, 0.0208998732, 0.00988041051, 0.00298138149, -0.00169563375, -0.0100098485, -0.0191740356, -0.00286920206, -0.00863780826, -0.00116493925, -0.00045168362, -0.0369328894, 0.035017211, -0.00969056878, 0.00541481, -0.0183974095, 0.0230399091, -0.00994081423, 0.000681165839, -0.0129869152, 0.00834010169, 0.0106829237, -0.00796904694, 0.00234497944, -0.0134270033, -0.0114681795, 0.0127884438, 0.00199549762, -0.00216700276, 0.00582038146, -0.00122965802, -0.0165421367, -0.022211507, 0.0160675328, 0.0028562583, 0.00135801709, -0.00184772303, 0.0169994831, -0.00510847429, -0.00413769158, -0.020882614, 0.0182248261, 0.000938423269, 0.0228845831, 0.0012986915, 0.030150352, -0.0233678184, -0.0283209663, 0.0117443129, -0.0088621676, -0.0120722223, -0.00562622491, 0.00471584639, 0.00555719156, -0.0233850759, 0.0310132708, 0.0153081641, -0.00898297597, -0.0215729475, 0.018069502, 0.000183639728, 0.0195364617, -0.0097509725, 0.00663583912, 0.0160502736, 0.00146156724, 0.0170512591, 0.00204727286, -0.00195343047, 0.00627341354, 0.0134960366, -0.00564348325, 0.00273113535, 0.0117788296, -0.0153167937, -0.00417868, 0.00178408285, -0.0239200853, -0.00760662183, -0.0356902853, 0.0128143318, -0.00150255591, -0.0143503249, -0.00803376641, 0.00648914278, 0.00584195461, -0.0061267172, -0.00121024239, -0.0402810089, 0.0090951547, -0.0178624019, -0.0211242307, -0.0141691128, 0.00883628, 0.00399099523, 0.00955250114, -0.00320574013, -0.00334812165, 0.000557121413, -0.0113301128, 0.0162314866, 0.0140828211, 0.00910378434, -0.010777845, -0.00311081926, 0.0265433565, -0.0134960366, 0.00254129339, 0.0160502736, 0.0235404018, -0.0184146687, 0.0229708757, -0.0122361761, 0.000724311743, 0.00912967138, -0.00562191056, -0.0028562583, -0.0135736987, 0.00632518856, 0.00835736, -0.00713633141, 0.015230502, 0.000524222618, -0.00805965345, 0.0093022557, -0.00761956535, 0.0132285319, 0.0274407901, -0.0166370571, 0.00859897677, -0.0241444446, -0.022832809, 0.0279585402, 0.0319279619, -0.00315827969, 0.00928499736, 0.00115415279, -0.00967331, 0.0276996661, -0.0411784425, 0.0244723521, 0.00618280703, -0.0204166379, 0.0120118177, 0.0205029305, -0.00649777194, 0.000504537311, -0.00525948498, 0.00175711664, 0.00316906604, 0.010389532, 0.0232124925, 0.00984589383, -0.00386587228, -0.00910378434, -0.0121757723, 0.0203303471, -0.00380331092, -0.00277643837, 0.00253266422, -0.0321695805, -0.0114768082, 0.0332741141, 0.00844365172, -0.0132889366, 0.0028066407, 0.0144452462, -0.0153254224, 0.012184401, 0.0125209391, 0.0282001588, -0.000681705191, -0.0246104188, -0.0126158604, 0.00775763206, -0.0186735447, 0.028717909, 0.003358908, 0.0268194899, 0.00261032674, 0.0267159399, 0.0188633855, 0.00189410488, -0.015101064, -0.00466407137, -0.0164644737, 0.00430811802, -0.00866801105, 0.00699395, -0.0150838057, -0.00716653327, 0.00575566245, 0.0295117926, -0.00977686048, 0.009215964, 0.0111057535, -0.0183801521, -0.000376987271, 0.0047201612, -0.00671350164, -0.0108900247, -0.000835951767, 0.00588510046, -0.00104898459, 0.00132026442, 0.00421751151, 0.011847863, -0.0032402568, -0.0211932641, 0.0192775875, -0.00464681303, 0.0138843497, 0.0135478117, -0.0230916832, 0.00121671427, 0.00792590156, -0.0086550666, 0.0161538236, 0.00128143316, 0.00972508546, -0.00422829809, 0.0282691922, -0.0312376302, 0.0173101332, 0.00594119, -0.00306767318, -0.00817183312, 0.00818046182, -0.0294255018, 0.0255078543, -0.00555287674, 0.00992355589, 0.0110712368, 0.00720536476, 0.0218490828, 0.000394515286, -0.00808985531, 0.0143848415, 0.00687314151, 0.00862918, -0.00168161129, -0.0211069733, -0.028873235, 0.006782535, 0.00291019073, 0.00816320349, 0.00584195461, -0.004607982, -0.0159726106, 0.00494020525, -0.00134291605, 0.000889344781, -0.023902826, 0.00878019, 0.00337616634, -0.00698532071, 0.00500492426, 0.000217886773, 0.00530694518, 0.018017726, 0.00837030355, 0.000625615532, -0.0113905165, 0.022832809, 0.0012393659, -3.04043733e-05, 0.0241962187, -0.0174223129, 0.000985344406, -0.00481076771, 0.0163954403, -0.0109935747, -0.0227810331, 0.00618280703] |
08 Mar, 2025 | expandtabs() method in Python
08 Mar, 2025
expandtabs() method in Python is used to replace all tab characters (\t) in a string with spaces. This method allows for customizable spacing, as we can specify the number of spaces for each tab. It is especially useful when formatting text for better readability or alignment. Let’s understand with the help of an example:
Python
s = "Name\tAge\tLocation"
# Expanding tabs with the default spacing
res = s.expandtabs()
print(res)
OutputName Age Location
Explanation:
string ‘s’ contains tab characters (\t).Using expandtabs(), each tab is replaced with 8 spaces (the default tab size).This improves readability by aligning the text.Table of Content
Syntax of expandtabs() methodExamples of expandtabs() methodFrequently Asked Questions (FAQs) on expandtabs() method in PythonSyntax of expandtabs() methodstring.expandtabs(tabsize)
Parameters: tabsize (optional) : Specifies the number of spaces per tab. The default value is 8.
Return Type: This method returns a new string with all the tab characters replaced with spaces.
Examples of expandtabs() method1. Using default tab sizeWhen we call the expandtabs() method without any arguments, it uses the default tab size of 8 spaces. This default behavior ensures that basic alignment is achieved without additional configuration.
Python
s = "A\tB\tC"
# Expanding tabs with default tab size
res = s.expandtabs()
print(res)
OutputA B C
Explanation:
tabs in the string ‘s’ are replaced by 8 spaces each.output shows the characters spaced apart for better alignment.2. Custom tab sizeWe can specify a custom tab size using the tabsize parameter. This allows us to format strings based on specific alignment requirements.
Python
s = "Python\tis\tfun"
# Expanding tabs with a custom size of 4 spaces
res = s.expandtabs(4)
print(res)
OutputPython is fun
Explanation:
tabsize=4 argument replaces each tab in s with 4 spaces.Customizing the tab size allows for more flexible formatting.3. Mixed spacing with tabs and textWhen working with text that contains both tabs (\t) and regular characters, Python’s expandtabs() method ensures proper alignment by replacing tabs with the appropriate number of spaces based on the specified tab size.
Python
s = "A\tBC\tDEFG"
# Expanding tabs with a size of 5 spaces
res = s.expandtabs(5)
print(res)
OutputA BC DEFG
Explanation:
“A\t” : “A” is at index 0, the next multiple of 5 is 5, so \t is replaced with 4 spaces.“BC\t” : “BC” starts at index 5, “C” is at 6, the next multiple of 5 is 10, so \t is replaced with 3 spaces.“DEFG” : Continues normally since there are no more tabs.4. No tabs in the stringIf the string does not contain any tabs, the method returns the original string unchanged. This ensures efficiency and avoids unnecessary processing.
Python
s = "Python is fun!"
# Expanding tabs in a string without tabs
result = s.expandtabs(4)
print(result)
Explanation: Since there are no tabs in the input string, the expandtabs() method has no effect.
Frequently Asked Questions (FAQs) on expandtabs() method in PythonQ1. What happens if the tabsize is set to 0?If tabsize=0, all tabs are effectively removed from the string.
s = "Hello\tWorld"result = s.expandtabs(0)print(result) # Output: 'HelloWorld'Q2. Can expandtabs() handle negative tabsize values?No, passing a negative value for tabsize raises a ValueError.
s = "Test\tString"# Raises ValueErrorresult = s.expandtabs(-4)Q3. Does expandtabs() modify the original string?No, expandtabs() returns a new string. The original string remains unchanged.
s = "Tab\tExample"result = s.expandtabs(4)print(s) # Output: 'Tab\tExample'print(result) # Output: 'Tab Example' | NLP/Natural Language Processing (NLP) Tutorial/AI ML DS - Projects/30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated]/Does Artificial Intelligence Require Coding?/Artificial Intelligence – Boon or Bane/Artificial Intelligence Examples/Agents in Artificial Intelligence/What are Diffusion Models?/ML | Common Loss Functions/Loss Functions in Deep Learning/Kaiming Initialization in Deep Learning/Swift - Initialization/Swift – If Statement/6 Best iOS Project Ideas For Beginners/Swift Programming Language/Introduction to Visual Programming Language/What is D Programming Language: Usage and Applications/Best Programming Languages for Data Science in 2024/5 Best Languages for Competitive Programming/MEX (Minimum Excluded) in Competitive Programming/Rearrange Array to maximize sum of MEX of all Subarrays starting from first index/Minimize moves to segregate even and odd by swapping adjacent elements/Minimum elements to be removed such that sum of adjacent elements is always even/Maximum sum such that exactly half of the elements are selected and no two adjacent/Maximum length subsequence such that adjacent elements in the subsequence have a common factor/Longest subsequence such that difference between adjacents is one/Longest Increasing Subsequence using Longest Common Subsequence Algorithm/Longest Common Subsequence (LCS)/Minimum insertions to form a palindrome with permutations allowed/Print longest palindrome word in a sentence/Python String split()/Python String strip() Method/Python String rindex() Method/Python String istitle() Method/Python String isdigit() Method/expandtabs() method in Python | https://www.geeksforgeeks.org/python-expandtabs-method/?ref=lbp | NLP | expandtabs() method in Python | Artificial Intelligence – Boon or Bane, AI ML DS - Projects, Longest Common Subsequence (LCS), Rearrange Array to maximize sum of MEX of all Subarrays starting from first index, Python String istitle() Method, MEX (Minimum Excluded) in Competitive Programming, Swift - Initialization, Minimum insertions to form a palindrome with permutations allowed, Longest Increasing Subsequence using Longest Common Subsequence Algorithm, 6 Best iOS Project Ideas For Beginners, ML | Common Loss Functions, Python String strip() Method, Python String isdigit() Method, Artificial Intelligence Examples, Python String split(), expandtabs() method in Python, Longest subsequence such that difference between adjacents is one, What is D Programming Language: Usage and Applications, 30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated], Swift – If Statement, Natural Language Processing (NLP) Tutorial, Python String rindex() Method, Loss Functions in Deep Learning, Minimize moves to segregate even and odd by swapping adjacent elements, Maximum length subsequence such that adjacent elements in the subsequence have a common factor, Does Artificial Intelligence Require Coding?, Print longest palindrome word in a sentence, Best Programming Languages for Data Science in 2024, NLP, 5 Best Languages for Competitive Programming, Maximum sum such that exactly half of the elements are selected and no two adjacent, Swift Programming Language, Minimum elements to be removed such that sum of adjacent elements is always even, Agents in Artificial Intelligence, What are Diffusion Models?, Kaiming Initialization in Deep Learning, Introduction to Visual Programming Language | GeeksforGeeks | [-0.00343161053, -0.00330057624, -0.00844057463, 0.0429989696, 0.0517411716, 0.0390234441, 0.0171679426, -0.00154521363, -0.0103245, -0.0250398777, -0.0338611938, 0.0224884208, -0.017385507, 0.0280462466, -0.019323824, -0.00111811655, 0.00195067772, 0.00214104797, -0.0117485682, 0.000233790823, 0.0544310771, -0.00258359732, -0.0557760336, -0.047548078, -0.00617096527, 0.00669015711, -0.00267260149, 0.003955747, 0.0285604931, 0.0110563124, 0.00681871874, 0.00835651532, 0.00749119557, -0.0115310019, -0.0349094681, -0.0419309177, 0.00680388464, -0.00614624191, -0.0338216349, -0.0109277507, -0.000270721444, -0.00246616104, 0.0116991214, 0.015822988, -0.0379553922, 0.0438296758, -0.0288373958, -0.0516225, 0.0111650955, 0.00193460751, -0.00917733274, -0.0216577146, 0.000355399126, 0.0181469899, 0.0310723931, 0.0260683727, -0.0249212049, -0.0106607378, 0.0312108435, -0.0439087898, 0.0137462206, -0.00522158574, 0.00495457323, -0.0196106154, -0.00565177342, 0.021677494, 0.00332777202, -0.039063, 0.0279077943, -0.0147846043, 0.00472959, 0.0300438982, 0.0166438054, 0.00579516916, 0.013162748, -0.0358588472, 0.000808455807, -0.0269781947, -0.0387069844, 0.0379553922, -0.00196056697, -0.0289362893, 0.00943940133, 0.0050262711, 0.00208418421, 0.0194919426, 0.0383905247, -0.00427467888, 0.0384696387, -0.0057556117, -0.0106706275, 0.0451350734, 0.0146857109, -0.0254156739, -0.00177019672, 0.0189579166, -0.0214994848, 0.0176920779, -0.0168218147, 0.0147153782, 0.0199765228, -3.24494868e-05, 0.000161165779, -0.0458075479, -0.00544904126, -0.0421287045, 0.0180085376, -0.0110266441, -0.0227851029, 0.0104332827, 0.0146758212, -0.0140033439, 0.00222510775, 0.0234575793, -0.039517913, -0.0136077693, 0.00601768, 0.00811422616, -0.00680388464, 0.0423660502, 0.00675938278, 0.0365906581, 0.0329711512, 0.0763854757, -0.0431571975, 0.00571111, -0.0239124894, -0.034415, 0.0280660242, -0.0315075256, 0.000873354729, -0.0328722559, 0.0130935227, -0.0212423615, 0.00352803175, -0.00351319765, 0.0115408916, 0.0131726377, -0.0131924162, 0.023774039, -0.0322591178, 0.0236355886, 0.00408430863, 0.00215217355, -0.0338809714, 0.0115606701, 0.027274875, 0.00638358667, 0.00421039807, 0.00268249097, -0.00992398057, -0.0481414385, -0.0105618443, 0.0151307322, 0.0261079296, -0.0233389065, -0.0262266025, 0.0501193143, 0.00878670253, -0.00930589437, 0.0260683727, -0.0162778981, 0.0325557962, 0.00041257203, -0.00520180725, 0.00886581745, 0.0306372605, 0.00983497594, -0.023240013, 0.0144879231, -0.0249805413, -0.0229433328, -0.0569627546, -0.00721923821, -0.0214203689, -0.0529674515, 0.0190271419, -0.0356412791, 0.0296483226, -0.0031744868, -0.0625799149, -0.0370653495, 0.0361555256, 0.028263811, 0.0302614644, 0.0121144745, 0.0015872434, -0.0104431715, -0.00170220737, -0.0408233069, -0.00368873402, 0.0211632457, -0.0285209361, 0.00051332, 0.00746152783, 0.020045748, -0.0215785988, 0.0158922132, 0.00567649677, -0.000618703547, -0.0462822393, -0.0121144745, -0.0358786248, 0.00691761263, 0.025257444, 0.0501193143, -0.0173953976, -0.0281253606, 0.0246838611, -0.000570492877, 0.00367637235, -0.0296087656, -0.031151507, -0.0169800445, -0.0399926, 0.00131652202, -0.0173261724, -0.00746152783, -0.00422770437, 0.01734595, -0.0170591585, 0.0144582549, 0.0249805413, -0.0374213643, 0.0280660242, -0.00792138278, -0.0138550038, -0.0196798407, -0.0368477814, 0.0355226062, 0.0108881937, -0.0023425438, 0.0133110881, -0.0186216794, -0.0050608837, -0.00167006697, 0.0326151326, -0.0175931845, -0.00507819, 0.00258359732, 0.0288571734, 0.0260090362, 0.0215785988, -0.053560812, 0.0308943838, 0.00311020599, 0.0309339408, 0.00912294164, -0.0086383624, 0.00133135612, -0.0249607638, -0.031645976, 0.0232004561, 0.0271166451, -0.00848013256, 0.0159614384, -0.0188491344, -0.00821806397, -0.0110563124, -0.00891526509, 0.0244267378, 0.0378762782, 0.00272946549, 0.00293466984, -0.0118573513, -0.0211830251, 0.026740849, -0.00599790132, 0.0184140019, 0.00584461587, 0.00569627574, -0.0203523189, 0.00577539066, -0.0161097795, -0.0240707193, 0.0287780594, -0.0207281131, 0.00886581745, 0.0303405784, -0.0233191289, 0.011372772, 0.0167031419, 0.0567649677, 0.020846786, 0.038153179, -0.0246245246, 0.0145077016, -0.00781754497, -0.00513752643, -0.0241893921, 0.0299252253, 0.00343408273, 0.0477854237, 0.0291538555, -0.00314481882, -0.0486952439, -0.0127770631, -0.0120749176, -0.0478645377, -0.0477854237, -0.0160405543, -0.0176624097, -0.025712356, 0.0206885561, -0.0116892317, -0.0127770631, 0.0218950585, 0.0328920372, 0.00117498043, 0.00476914737, 0.027195761, -0.0424056053, -0.0251387712, -0.00727363, -0.00203350116, 0.00378268305, 0.0324371234, -0.0195809472, -0.0589801855, -0.0526509918, 0.00571605423, 0.00437851716, 0.00463069603, 0.0211039092, 0.0136769954, -0.00208789273, -0.00475184107, 0.00585450558, 0.0575956739, -0.0215192642, -0.00669015711, 0.0230817832, 0.00476667518, 0.0227851029, 0.0215983782, -0.00840101764, -0.0246047452, -0.00948390365, 0.0110464236, 0.0310526136, -0.0019482054, 0.00199641613, 0.0256134607, -0.0153186303, 0.03172509, 0.0137165524, -0.0368082263, 0.0147153782, -0.0254750103, 0.0044996622, 0.000548859884, 0.00239817169, 0.0214203689, 0.0222312976, -0.0061165737, -0.0132220844, -0.0228246599, 0.00390135543, 0.0270177517, 0.0148439407, 0.017385507, -0.0211236887, 0.00729835313, 0.00218802248, -0.06048337, -0.0229235534, 0.0288967323, -0.0104530612, -0.0107497424, -0.00804994535, -0.0331491604, 0.00815872848, 0.00600779057, 0.0126485005, 0.0309339408, -0.00818839576, 0.0111552067, 0.00959268678, 0.0230817832, 0.00167253928, 0.0307954904, -0.00770381698, -0.000189288665, 0.0152494041, -0.0386278704, 0.010650849, -0.028184697, -0.0176723, 0.0129550714, 0.0317448676, 0.00153656048, -0.000846777053, 0.030696597, -0.0258508064, -0.0134890974, 0.00562705, -0.0188491344, -0.0229828898, 0.0213412549, -0.00306075928, 0.00803016592, -0.0262661595, 0.0201149732, -0.00834168121, -0.000228073535, -0.0151702892, -0.0368082263, 0.00520180725, 0.0537586026, 0.00516719464, 0.00362692541, 0.04017061, -0.00568144163, 0.00422276, 0.00252673333, -0.010838747, -0.0205501057, 0.0394585766, 0.0150219491, -0.00947895832, 0.040091496, 0.00369615108, -0.0218555015, 0.0188392457, 0.0206292197, -0.0205896627, 0.00360467448, 0.0150812855, 0.0111650955, 0.00154892216, 0.0111749852, -0.0199666321, 0.0114024403, 0.0347314589, -0.0197985135, -0.0470733903, 0.0394981317, -0.016584469, 0.0263848323, -0.0485370159, -0.0319031, -0.0243871789, 0.0389047712, -0.0181272104, -0.00718957, 0.0227455441, 0.002539095, 0.0207874496, 0.0221719611, 0.0153384088, 0.00261821, 0.010878304, -0.0142505784, 0.0318833217, 0.00193707983, 0.000966685649, -0.0592570901, 0.00491996, 0.0113431048, 0.00429445785, 0.00784226786, -0.0259892568, 0.00205451599, -0.0363533162, 0.0770975053, -0.0361753069, 0.00173434778, 0.00529575627, -0.0298461113, 0.0136671057, -0.00776315341, -0.0481018834, -0.014646153, -0.0243476219, 0.0239718258, 0.0117683476, -0.0211039092, 0.0344743356, 0.047627192, -0.0197589565, 0.0410606526, -0.0276902281, -9.81693574e-06, 0.0233191289, -0.0546684228, 0.0151307322, -0.0215588212, -0.033168938, 0.0221126247, -0.00823289808, -0.0139143402, 0.0170888267, 0.0600086823, -0.0257321335, 0.0324766822, 0.0453724191, -0.0294505358, -0.00383707462, 0.0149626127, 0.0151801789, 0.00651214831, 0.0175338481, -0.0155361965, 0.044660382, -0.0250398777, -0.00347116799, 0.003594785, 0.00366648287, -0.0304790307, -0.00582978223, 0.00849002227, 0.0046801432, -0.0183744449, 0.0322591178, -0.00715495739, -0.000333766162, -0.0052067521, 0.0141417952, 0.0223499704, -0.00499907508, -0.0309141632, -0.00818345137, 0.00100191648, 0.0151801789, 0.013350646, 0.00442054728, 0.021796165, -0.0153087405, 0.0101959379, 0.00871747732, 0.000233327257, -0.0059336205, 0.00886087306, 0.0202929825, -0.00553310104, -0.00404969603, 0.0165350214, -0.0201743096, -0.012322152, -0.00146486249, -0.00625502504, 0.021756608, -0.0254552308, -0.026661735, 0.0341974311, 0.0129254032, -0.0244069584, 0.0128759565, 0.0116101168, -0.000848631316, -0.00631930586, 0.0021583545, -0.0116892317, 0.00300389528, 0.00467272615, -0.036788445, -0.00170467969, 0.008312013, 0.00316459755, 0.0203325395, -0.0204314329, -0.000441931101, 0.018107431, 0.000710798253, -0.0127078369, 0.00406205747, 0.00181099039, 0.0187304616, -0.00246986956, 0.0502379872, -0.0210247952, -0.0282835905, 0.0291934125, 0.0125397174, -0.00541937351, 0.013202305, 0.00526608806, -0.0389838852, 0.00602756953, 0.0216577146, -0.00675443793, 0.0167624783, -0.0220335107, 0.0236355886, 0.0293318629, 0.0023425438, -0.027314432, -0.0114321085, -0.0153186303, 0.00612151856, 0.0273737684, 0.0338611938, -0.00341677642, 0.0268990789, 0.0125496071, 0.0337623, -0.015862545, -0.0108288573, 0.0356412791, 0.0143692512, 0.0177217461, 0.00844552, 0.0444230363, 0.0143099148, -0.0017961564, -0.00789666, 0.0226466507, 0.0179689806, 0.0056072711, -0.00975586101, -0.0117683476, -0.0140330121, 0.0114617767, -0.0349094681, 0.00503863255, 0.0138352253, -0.0273539908, -0.0137066627, 0.00531059038, -0.00306075928, 0.00910316221, -0.00545893097, 0.0474294052, -0.0301427916, 0.0114419982, -0.0176821891, -0.0190073643, -0.0213610344, -0.00257123541, 0.00106557936, 0.0176129639, -0.0264441688, 0.0265628397, 0.00156128383, 0.0121441428, 0.0154373022, -0.0184436701, 0.0359181836, -0.00491501577, -0.00449224515, 0.0255343467, -0.00298164436, 0.0145571483, 0.0687508807, 0.000691019522, 0.00481859408, -0.000608196075, 0.0506731197, 0.0172173884, -0.0308943838, -0.0131034115, -0.028718723, -0.0130341863, 0.0201050844, -0.014646153, 7.07321524e-05, -0.00186167343, 0.00153779658, 0.00101118779, 0.0245454106, -0.00240558852, 0.0124507137, 0.0231608991, 0.00160454982, 0.0233191289, -9.07813e-05, 0.0276506711, -0.0267210715, -0.00738241291, -0.00407936424, -0.00790160429, 0.00561221596, -0.0168613717, 0.0288967323, 0.0189579166, -0.00825267751, 0.014112127, 0.0553804561, 0.0166339166, -0.0298658889, 0.032140445, -0.021677494, -0.0394981317, 0.0034464444, 0.00481859408, -0.00846035406, -0.00587922893, -0.0161790047, -0.00103343884, 0.0374213643, 0.00948390365, 0.0328129195, 0.00579516916, 0.0140824588, 0.0246047452, 0.0174349546, -0.00358984037, -0.00555782439, -0.00020118682, 0.046519585, 0.0170591585, 0.0304592513, 0.0028679166, -0.00588417379, -0.00256629079, 0.0313492939, -0.012361709, -0.0299845617, 0.0132715311, 0.0228839964, -0.00303356349, -0.016624026, 0.0136769954, 0.0117287897, -0.0116793429, 0.00657148473, 0.0137857776, 0.0185128953, 0.0135682123, 0.00105445378, -0.0224884208, -0.0291736331, 0.00403486192, -0.0133110881, 0.00804994535, -0.0170888267, -0.0120650278, -0.0154175237, -0.00945423543, -0.0231806766, 0.000878917519, 0.00042524279, 0.00325854658, 0.00453921966, -0.018641457, 0.0113431048, -0.0128462883, -0.0303801373, -0.034533672, -0.00818839576, 0.00979541801, 0.0115211131, -0.0356610604, -0.0377180465, 0.0371444635, 0.020124862, 0.0581890382, 0.0228246599, -0.0104827294, -0.00609185034, 0.00960752, 0.00653192727, 0.0592966452, 0.017118495, -0.0147450464, 0.0264441688, -0.0149823911, -0.00513752643, 0.0103640566, 0.0438692346, 0.0031744868, -0.00276160589, -0.0379751697, -0.00819334108, -0.00991409086, 0.0086383624, -0.0176525209, 0.0313492939, -0.00769392774, -0.0223895274, 0.0186711252, 0.0242289491, 0.0313097388, 0.00594845461, 0.0360368527, 0.000398356089, 0.00944929, -0.0109376404, 0.0191754829, 0.00316459755, 0.0214203689, -0.0239322688, -0.00164410728, -0.00207305863, 0.00408183644, -0.0295889862, 0.0274924412, -0.0355028287, 0.0165548, -0.008312013, 0.0282044765, 0.0154175237, 0.0319624357, 0.0303801373, -0.00311267842, -0.016544912, -0.00568638602, -0.0398343727, 2.07444937e-05, -0.0213214755, 0.0169602651, 0.016584469, 0.00708573172, -0.00231163972, 0.0386080891, -0.0598108955, 0.00847518817, 0.0176821891, 0.00589406304, -0.00892020948, -0.0354039334, -0.00919711124, -0.0297274385, 0.0210050158, -0.00709067658, -0.00813894905, -0.00256876322, -0.0247827545, 0.0176821891, -0.0119958026, -0.00724890642, 0.0195018332, -0.0245849676, 0.00264787814, 0.00546387536, 0.0424451642, 0.0332876109, 5.04898562e-05, 0.0116694532, 0.0029593932, -0.0328722559, 0.00326101878, -0.0224488638, -0.0272550955, -0.0302219074, -0.0139341187, 0.0235960297, -0.0205698833, 0.0128462883, 0.0433945432, -0.0409815386, 0.00421287026, 0.00645281235, -0.0248025339, 0.00979047362, 0.00113480492, -0.0124606024, 0.0209654588, 0.0197688453, 0.00888559688, 2.09569607e-05, -0.0150120594, 0.0168218147, 0.00480376, 0.0124210455, 0.000538970518, -0.0166932512, 0.00192348193, 0.0124507137, -0.0106607378, -0.0106014013, 0.0152592938, 0.0278484579, -0.00320415501, 0.0157043152, -0.0289758462, 0.0248816479, 0.0182953291, -0.017078938, 0.0136275478, 0.00735768909, 0.0205501057, 0.035265483, -0.0143890297, 0.0175041799, 0.00303850812, -0.00555782439, -0.0219741743, -0.00818345137, 0.0183151085, 0.0260881502, 0.00904382672, 0.0037901, 0.0204314329, 0.0212621391, 0.00585450558, 0.0151999574, -0.0659027472, -0.0134989861, -0.0355423875, 0.0451746285, 0.00964213349, 0.00707584247, -0.0329513736, -0.00326101878, 0.0210643522, 0.015783431, 0.00224365015, 0.0127968416, -0.0180777628, 0.01437914, -0.0064627016, -0.0279275738, -0.0435923301, 0.0179393124, -0.0431176424, 0.0148439407, -0.000665678061, -0.0144483661, 0.0122331474, 0.0194523856, 0.0245454106, 0.000228073535, 0.0133605357, -0.000790531281, -0.00211385218, 0.00697694859, 0.0128759565, 0.00373323611, 0.0218752809, 0.00612646295, 0.018067874, 0.0108684143, 0.0250992142, 0.00808455795, -0.0068236636, -0.0476667508, -0.0197589565, 0.00594845461, -0.0090537155, -0.017118495, -0.0149823911, -0.00426231744, -0.0130242966, -0.0413375571, 0.00328327, -0.0671290234, 0.0201149732, -0.0169602651, 0.0255145673, 0.0133704245, 0.021756608, -0.00146609871, 0.00204957137, -0.0320415497, -0.0241498351, -0.00896965619, 0.00291241868, 0.0104926191, 0.0305779241, 0.0149527239, 0.0119958026, 0.0124902707, 0.000848631316, 6.0379225e-05, -0.0127078369, -0.00253662281, -0.0452933, -0.0238333754, -0.0195216108, -0.0108189676, -5.10693098e-05, 0.0259694792, 0.0056072711, -0.0093256738, -0.000929600501, -0.0245454106, -0.0155263068, -0.00655665062, 0.00547376461, 0.00451449631, -0.0303208, 0.0156647582, -0.0366499946, -0.00453427481, 0.0075703105, -0.0144681446, -0.0363335349, 0.0258508064, 0.0129550714, 0.0120254708, 0.00519686239, 0.00181717123, -0.0117584579, -0.0221917406, -0.00436615571, -0.0143890297, 0.0333469473, -0.00182953291, 0.0326349139, 0.00976575, -0.0388454348, -0.0254156739, -0.0116496747, -0.0161691159, -0.00641325489, 0.0179689806, -0.0349292457, -0.000802893, 9.58032469e-05, -0.0143198036, 0.00924655888, -0.0181766581, -0.000898696249, 0.0265232828, -0.0186711252, 0.0283627063, 0.0103739463, 0.00250077387, -0.0250003207, 0.00870264322, -0.0481018834, 0.00646764645, -0.0159119926, -0.0101019889, 0.0162383411, -0.0114716664, -0.0205896627, 0.003594785, 0.0268199649, -0.0186711252, -0.0358984023, -0.00243525673, -0.00628963765, -0.00903393701, -0.00731813163, -0.0257716905, 0.00633908436, 0.0442252494, 0.00679399539, 0.0142406886, -0.000472217303, -0.0125001604, 0.0224093068, 0.0151505107, -0.0046801432, 0.000880153675, -0.0311119501, 0.0164954644, 0.00146980723, 0.0108189676, -0.0124803819, -0.0247234181, 0.00643797824, 0.044502154, -0.00941467751, 0.0242091715, -0.0174745116, -0.0090537155, 0.0258508064, 0.00291736331, -0.00196674792, -0.0309734978, 0.0157636516, 0.00391866174, 0.00811422616, -0.0246245246, -0.0260683727, -0.00893504359, 0.0206687786, -0.00461338973, 0.00704617426, 0.00849496666, -0.0210247952, 0.00177885, 0.0159614384, -0.0001454046, 0.00169849885, -0.00840101764, 0.00300636771, 0.00735768909, -0.0288967323, -0.0244069584, -0.00975586101, 0.0147846043, 0.0146560427, -0.0328327, 0.00647259085, -0.0117881261, -0.0718759224, 0.0181667674, 0.00946907, 0.00762964692, 0.000229464233, -0.0050287433, 0.0246640816, 0.0256925765, -0.0131924162, -0.0285604931, -0.0149626127, -0.0118079046, 0.000567402458, -0.000575746584, 0.0310526136, -0.0206292197, 0.00878670253, -0.0109574189, 0.00943940133, -0.0159713291, 0.0360170752, -0.0114815552, 0.0199171863, -0.00667532301, 0.0124803819, 0.0331293792, 0.0139835654, 0.0149428342, -0.0172965042, 0.0114617767, -0.0149725024, 0.0101366015, -0.00618579937, -0.00940478873, -0.00581989251, -0.00918227714, -2.71185e-05, -0.00813400466, -0.0243871789, 0.00257618027, 0.000501267321, 0.0364719853, -0.0048482623, 0.0111947637, 0.0109475292, 0.022251077, -0.0223104134, -0.00467767054, -0.0183447767, -0.0164163504, 0.00166512222, 0.0172569454, 0.00199270761, 0.0188194662, -0.0253761169, -0.0137561103, 0.00225353963, 0.00952840503, -0.00481859408, -0.0108189676, -0.0158724338, 0.0113628833, 0.0102157164, 0.00626985868, 0.00387910428, -0.00181717123, -0.0198479611, 0.000214939224, -0.0127770631, 0.0184238907, -0.0263650529, 0.00997837167, 0.0108881937, -0.0176030733, -0.022251077, -0.003775266, -0.00319921039, -0.0334853977, 0.0169207081, -0.00756042125, 0.02517833, -0.00625008, -0.00159342436, 0.00298164436, 0.0115606701, 0.0237147026, 0.00525125396, 0.0147944931, 0.022251077, 0.00725879567, 0.015783431, 0.0184436701, 0.0052067521, 0.020649, 0.0294307563, 0.0192545988, 0.00224488648, -0.0140824588, 0.00990914647, 0.00339699769, 0.0149527239, 0.00582978223, -0.0281649176, 0.00268990803, 0.0126682799, 0.0136671057, -0.0167031419, 0.00848013256, 0.00778293191, -0.0299647823, 0.0258112494, 0.031645976, 0.00851969, -0.0455702059, -0.0217763875, 0.0138945607, 0.00153285195, -0.00441807508, 0.00120712095, -0.00112924213, -0.00175041799, 0.0174349546, -0.0100030955, -0.0125990538, 0.00429940224, -0.0229828898, -0.0178503077, -0.003955747, 0.00443290872, 0.02814514, -0.00568638602, -0.0157735404, 0.0073478, -0.0219346173, -0.0276308917, -0.0107892994, -0.00287780585, 0.0310130566, -0.0374411456, 0.0211434681, -0.0163372345, 0.0130638545, 0.0277100075, -0.00675938278, -0.0191853736, 0.00544904126, -0.00547376461, -0.0289165098, -0.0121045858, -0.0226268731, 0.0104135042, -0.0112541, 0.0242882855, 0.00882131606, 0.0121441428, -0.0059336205, -0.0233586859, -0.0582285933, 0.0103146099, 0.0253958944, 0.0215785988, 0.00417825766, -0.0258508064, 0.0232004561, -0.0129254032, 0.0290747397, -0.00944929, 0.00808950234, -0.0327140279, 0.00408183644, 0.00357253384, -0.0203523189, 0.0143198036, -0.00715495739, -0.00963718817, 0.0122529259, -0.0128067303, 0.00995364785, 0.0211830251, 0.0105025079, -0.00539464969, 0.00687311031, -0.00138451147, -0.0312701799, -0.0162778981, 0.00567649677, -0.00462575164, 0.00811917055, -0.0149428342, 0.017158052, 0.00171209674, -0.0143593615, -0.00447741104, 0.0298461113, -0.00508313486, -0.0147450464, -0.0204116534, 0.0100426525, -0.0173261724, -0.0211830251, -0.007951051, 0.00189875858, -0.00958774146, 0.0255936831, -0.0373224728, 0.0154471919, 0.0215192642, -0.0191260371, 0.00790160429, -0.00354039343, -0.00792138278, 0.0326151326, 0.0214599278, 0.00836640503, 0.0288967323, -0.00460844534, -0.00741702551, -0.0102849416, 0.0191655941, 0.00703134, 0.0107497424, 0.0205501057, 0.0107200742, -0.00144013914, -0.0119958026, 0.000318314, 0.0125792753, -0.0120848073, 0.032140445, 0.0208665654, -0.00940973312, -0.0106805172, -0.0177316349, 0.0266023986, 0.0204512123, 0.0119265774, 0.00826751068, 0.00369367865, -0.00642808899, -0.0102058267, -0.01312319, -0.0283824839, 0.00791643839, 0.00382965757, -0.0138154458, -0.0153186303, 0.0130341863, 0.0343358852, -0.00759008946, 0.021677494, 0.0364126489, -0.00545893097, 0.0119958026, 0.0109277507, 0.0224290844, -0.00273935474, -0.0236158092, 0.00854441337, -0.00830706861, 0.0418518037, -0.0303801373, -0.0330700427, 0.0103442781, 5.63520098e-06, 0.0174646229, -0.0105816228, -0.0103937248, -0.0159317702, -0.0221126247, 0.0501193143, -0.0191161465, 0.0119463559, 0.00393102365, 0.00461338973, 0.00153532426, 0.00815872848, 0.0220730677, -0.00715990178, 0.00838618353, 0.0194919426, -0.0125199389, 0.0119760241, -0.0274133254, -0.00132888369, -0.0140824588, -0.00382965757, -0.0197886247, -0.00658137398, -0.0140626803, 0.00467767054, 0.0327140279, 0.0177316349, 0.0109277507, -0.00553804589, -0.00084183237, 0.00153408817, 0.00482353894, 0.00540453941, -0.0460844524, -0.018067874, -0.0282835905, -0.00780765573, 0.00943445601, -0.0292527489, 0.0195216108, -0.00059521629, -0.00894987769, -0.00959763117, 0.0225675367, 0.00386179797, 0.0103343893, -0.0194128286, 0.0354632698, 0.0494468361, 0.0206687786, 0.00198529055, 0.00641819928, -0.00740713626, -0.00743185962, -0.0149329444, -0.0268793013, -0.005191918, 0.000339328923, -0.022251077, 0.00910316221, 0.0243278444, 0.0286198296, -0.029668102, -0.0361159705, -0.0181865469, -0.00146486249, -0.0102750529, -0.0225279797, 0.00231163972, -0.0101860482, 0.0140824588, 0.0113134366, -0.00924655888, 0.0411002114, -0.0145571483, 0.020649, -0.00800544303, -0.000954324, -0.0115211131, -0.00313492934, -0.00148093281, -0.0015996052, -0.00821806397, -0.0161592271, 3.34393894e-06, -0.0162976775, 0.0368873402, -0.0288967323, 0.00850485545, -0.0304196943, -0.00179121166, -0.0136473272, -0.000998208066, -0.0267210715, 0.00453180261, 0.0039755255, 0.00524630956, 0.0143692512, 0.0217763875, 0.0307559315, 0.0102651631, 0.00299895066, -0.00533036888, -0.00518202828, -0.00585450558, 0.012895735, 0.00286297174, 0.0118079046, -0.00529081142, -0.00300884, 0.0158328768, -0.00485073449, 0.01141233, -0.0238729324, 0.0035033084, 0.00052011892, -0.0218159445, -0.00907843933, -0.0116694532, 0.00122071872, -0.00472464506, 0.00149329449, 0.011145317, -0.000318623061, 0.0123320408, 0.0393596813, 0.00725879567, 0.00340688694, 0.00222634384, 0.0256332401, -0.0320613272, -0.0114617767, -0.0275122207, -0.0186216794, -0.00671488047, -0.00111379, -0.0154570816, -0.00819334108, -0.0243476219, -0.00573088834, 0.0149230557, -0.0129748499, -0.0109277507, 0.0141319055, 0.0217763875, 0.00339699769, 0.0124309352, 0.00212992239, -0.0141022382, 0.000805983436, -0.0260881502, 0.0147153782, 0.0254947897, -0.00814883877, 0.0155263068, -0.0045194407, -0.0021435204, 0.00714012329, 0.00208294811, 0.00393102365, -0.0396168046, 0.004316709, 0.00359972962, -0.0145769278, 0.0299845617, 0.00299153361, 0.00217318838, 0.00795599632, -0.0291142967, -0.0147153782, -0.000307806564, 0.0232597925, 0.00606712699, 0.030202128, -0.0157240946, -0.02579147, 0.0228444394, 0.0167624783, -4.18366581e-05, 0.0154373022, 0.00912788603, 0.0328327, 0.019590836, -0.0122034792, 0.0166438054, 0.00424006628, 0.0237542596, 0.0288176164, -0.00115272938, -0.0161790047, -0.0164064597, 0.000408554479, 0.0059187864, 0.00509302411, 0.0109277507, 0.00950368214, -0.0135978805, -0.00239940779, 0.0172075, 0.0197391771, -0.010062431, -0.0156449787, -0.00982014183, 0.0219939537, -0.00210396294, -0.00694728037, 0.018641457, -0.0109969769, -0.00240682485, 0.0246838611, 0.0120848073, -0.00495704543, -0.00654676137, 0.00165646907, -0.0190667, 0.0101464912, -0.02327957, 0.00614129705, -0.0169998221, 0.00194573298, 0.00536992634, -0.0082922345, 0.020233646, -0.00921689067, -0.0471920595, 0.00601768, 0.0162284523, -0.00346375094, 0.00427220669, 0.00371592981, -0.00216577156, -0.0043389597, -0.0097261928, 0.00152419868, 0.00562705, 0.0041189217, -0.013845114, 0.00355275511, 0.0106014013, -0.0194919426, 0.0105915125, -0.0134297609, 0.0152790723, 0.0262463801, 0.0221324041, 0.0266419556, 0.0170294903, 0.0250794347, 0.00311762304, -0.00302861864, -0.0167822558, -0.0196501724, -0.0183645543, 0.00728846388, 0.0135583226, -0.0150615061, 0.00409667054, -0.0106211808, 0.0206292197, 0.00237344811, -0.0211434681, 0.0123023726, 0.00398541521, 0.0236751456, -0.0259101428, 0.0239124894, 0.0322393365, 0.0172173884, -0.0241300557, 0.0146758212, -0.0164855756, -0.00134000927, 0.00336732948, 0.0204512123, -0.0345138907, 0.0161592271, 0.00715990178, 0.010878304, -0.0103245, -0.000432350789, -0.0025205526, 0.0111650955, -0.0109771974, -0.00230545877, 0.00302367401, -0.0104926191, -0.0068434421, 0.00105878036, -0.00824278779, 0.0140527906, 0.0132220844, 0.0039755255, -0.00306075928, -0.0180480946, -0.00137214968, -0.0149922809, -0.0153581873, 0.0104036145, 0.0121837007, 0.0205698833, 0.0111354273, 0.00969652459, 0.0255343467, -0.00682860799, 0.00119475916, -0.0163767915, 0.0289956257, 0.0110662021, 0.0102354949, 0.0172173884, -0.0071697915, -0.00389393838, -0.0180184264, -0.00567649677, -0.00818839576, 0.007951051, 0.00105816231, 0.0179590918, 0.00590395229, -0.000995117589, -0.0150713958, 0.0111255385, 0.00986958854, -0.0111156488, -0.00164287118, 0.0041213939, 0.0195018332, -0.00480376, 0.0174646229, -0.00153037964, 0.00764942542, -0.0184337813, -0.00330304867, 0.0114914449, -0.00614129705, 0.0136671057, 0.0135187656, 0.0140330121, -0.008045, 0.0233191289, -0.0012819093, 0.0118079046, 0.00465047499, -0.0203720964, 0.0129649602, 0.00370851276, -0.03218, -0.00521169649, 0.0127375051, -0.0258508064, -0.0154867489, -0.020273203, -0.0148439407, 0.00696705934, -0.0116101168, 0.00312998472, -0.00231658434, -0.0171778314, -0.00872736704, 0.0101761594, -0.0132517526, -0.0228048805, 0.00748625118, 0.003718402, 0.000879535626, 0.015783431, 0.0229828898, -0.0105816228, 0.0115804495, -0.00306817633, 0.00177266914, 0.00531059038, -0.00887570716, -0.0169800445, 0.02814514, 0.0326942466, -0.0113431048, 0.00532047963, 0.0162778981, 0.00225353963, 0.0106607378, 0.00534025859, -0.00312256766, 0.00491501577, 0.00296433782, -0.0252376646, -0.0160998907, -0.00622535683, -0.0175140686, -0.0162482299, 0.00356017216, 0.00672476972, 0.0106310695, -0.00532047963, -0.0213610344, -0.0182854403, -0.0198776275, 0.00465294719, 0.0135978805, -0.00283824839, 0.00203720969, 0.0125199389, -0.0182063244, -0.00897460058, 0.00132764759, 0.00640336517, -0.0045021344, 0.00710551, -0.0358786248, -0.00120403047, 0.00482106674, -0.0319426581, 0.0106805172, 0.0120254708, 0.00127943687, 0.0132517526, 0.0150219491, 0.00546387536, -0.00568638602, -0.00668521225, -0.00116509106, -0.00842574053, 0.00686322106, 0.00705606351, 0.0184140019, -0.019472165, -0.000925273926, 0.00426231744, 0.00398788741, 0.027195761, 0.00909327343, 0.0187799092, 0.0097805839, -0.00808455795, -0.0179096442, -0.000834415376, 0.0165745802, -0.0145373698, -0.00934050791, 0.0143692512, 0.0107101845, -0.00899438, -0.00885592867, -0.0211236887, 0.0158724338, -0.00119908585, -0.00120588474, -0.0164361279, -0.00497682393, -0.0178206395, 0.0334458388, 0.010383836, 9.8970937e-05, 0.0232004561, 0.00542926276, -0.00483590085, -3.72010181e-05, -0.0355226062, -0.0129649602, 0.00554299029, -0.0123518202, -0.00016363812, 0.0163471233, 0.0162976775, -0.00494715618, -0.0116200065, 0.00655665062, -0.00831695832, 0.00618085451, -0.0117683476, -0.00155510299, 0.0141813532, -0.0171877202, 0.0134099824, 0.00813400466, -0.0279077943, 0.0072390167, -0.0114222197, 0.0163273457, 0.00569133088, -0.0196303949, 0.00477161957, -0.00641325489, 0.0191754829, 0.00992892496, 0.0118474625, -0.00138451147, -6.69270639e-06, 0.0165350214, -0.0180876534, -0.0358390659, 0.0208270084, -0.00985969882, 0.0100327628, -0.0231806766, 0.00139687315, -0.00109833782, -0.0186711252, -0.00266765687, 0.0140824588, 0.00542926276, -0.00966191199, 0.00874220114, -0.0263057165, -0.0209654588, -0.00914766453, -0.0144978128, 0.0176030733, -0.00481612189, -0.00122813578, 8.38278429e-05, 0.000458928465, -0.00814389437, -0.0120056923, 0.0068236636, 0.0150615061, -0.00654181652, 0.0443043672, 0.0143494718, -0.0116200065, -0.00881637074, -0.00558254775, 0.0409419797, -0.0120353596, 0.0106706275, 0.0162877887, 0.0112343216, 0.0173657294, 0.0295098722, -0.0363928713, 0.0201940872, -0.00496940687, 0.00745163811, 0.0282044765, -0.0100920992, -0.00495951762, 0.0245651882, 0.00601273542, -0.0247431975, 0.0234971363, 0.00687311031, 0.00127820077, -0.00329810404, -0.0221324041, 0.0108288573, 0.00326596363, 0.00268249097, 0.000434514077, -0.00379504473, -0.00800049864, 0.00343408273, 0.0162383411, 0.00739724655, -0.0194128286, 0.0115705598, -0.00543420715, 0.00116509106, 0.00819828548, 0.0373026952, -0.0167723671, 0.0115606701, 0.0171283837, -0.0116101168, -0.00309042726, 0.0181964356, 0.0405859649, 0.000784350443, -0.0120452493, -0.00487793051, 0.0284220409, 0.0057704458, 0.00921689067, -0.00822795369, 0.0027022697, -0.00444279844, -0.00208047568, 0.0202237554, 0.0232004561, -0.0131726377, 0.0102157164, -0.0211632457, -0.0115211131, -0.0205896627, 0.0184733383, -0.0154669704, -0.0150516173, -0.00229433319, -0.00489523681, 0.00347611262, -0.00532542448, 0.00609185034, 0.0212621391, -0.0097261928, -0.00604734803, -0.0234575793, 0.0215785988, 0.005953399, -0.00888559688, -0.0103937248, 0.00572099909, -0.00778293191, 0.00529081142, 0.00576550094, 0.0223895274, -0.0136374375, 0.014834051, 0.00370851276, 0.00764448103, -0.00879164785, -0.0118177943, -0.034415, -0.00357995089, -0.00444032578, 0.0110760918, -0.0150021706, 0.00330304867, 0.000992027111, -0.0245058518, -0.0216577146, -0.0207874496, -0.00330304867, 0.0135187656, 0.000341801264, 0.000659497164, 0.00676432718, 0.00747636193, 0.0125693856, 0.0170591585, 0.0148538295, 0.0138945607, 0.0209259018, -0.00847024284, -0.0210247952, 0.0062995269, -0.0211236887, -0.00799060892, -0.0037579597, 0.0145175913, 0.033663407, -0.00850485545, 0.0238333754, 0.0101267118, -0.0262463801, 0.0245454106, -0.0117980149, 0.00433154311, -0.00970146898, 0.00671488047, -0.0170492698, 0.0149230557, -0.00125224108, -0.00802027714, 0.00818345137, 0.00778293191, 0.00351072545, 0.00508807972, 0.0217368286, -0.00667037815, 0.0129946284, -0.0128067303, 0.00180604577, 0.0384894162, -0.0127968416, -0.0134989861, 0.0178997554, -0.00218802248, -0.00685333135, 0.00828729, -0.000513938081, -0.0106310695, -0.0288967323, 0.00251189922, -0.0290351827, 0.015140621, 0.021677494, 0.00747141708, -0.0177810825, 0.000282156019, -0.0161790047, -0.01141233, 0.0180777628, 0.0112442104, 0.0112936571, 0.0146659315, 0.00324371248, 0.000566784351, 0.0146659315, -0.00743185962, 0.0128166201, 0.000128793559, -0.0254354533, 0.000259595894, -0.00190864794, -0.0125001604, -0.00563693931, -0.0053897053, 0.0206094421, 0.00708078686, -0.0169503763, 0.00300636771, -0.0107695209, 0.00446010474, -0.0110760918, 0.013924229, 0.0151801789, 0.0267210715, -0.00169108179, 0.00871253293, -0.00618085451, 0.00571111, -0.0127770631, 0.00275913347, 0.0277891215, 0.0237147026, 0.00602262467, 0.00449471734, 0.00994870346, -0.00456147082, -0.00891526509, 0.0186612364, -0.0057704458, 0.00863341801, -0.00576550094, -0.0348303504, 0.0154175237, -0.00357253384, 0.0130539648, -0.00326349121, 0.00958279707, 0.0167130306, 0.0194820538, 0.0249805413, 0.00124791451, 0.0126979472, -0.00461091753, -0.0143099148, -0.000409172586, 0.00260584825, 0.0178898647, 0.0198677387, 0.00272699306, -0.000412881083, -0.00633414, 0.00509796897, 0.00369367865, 0.00226219278, 0.0116991214, 0.00689783366, 0.0093256738, 0.0100723207, 0.0124111557, 0.0276704505, -0.0226664301, 0.0137165524, -0.0248816479, 0.0125496071, 0.00983497594, 0.000715742935, 0.0107200742, 1.63454627e-06, -0.00696211448, -0.0031744868, -0.00790655, 0.00883120485, 0.00422523217, -0.0176129639, 0.0062797484, -0.0073478, -0.0159119926, 0.0134297609, -0.00475184107, 0.020085305, 0.0120254708, 0.00721923821, 0.0171481632, 0.00382718514, 0.0026874356, -0.00983992, -0.00477656443, -0.0105519546, -0.0174052864, -0.0148241613, -0.000951851602, -0.00242536725, -0.00694233598, 0.00992398057, -0.0345732272, 0.0139044505, 0.0173657294, 0.0178601965, 0.0149922809, 0.0111255385, -0.0140527906, -0.00125780387, 0.0154966386, 0.00134000927, -0.0220928472, 0.0114716664, 0.00388899376, -0.00522158574, -0.0240904987, 0.0301230121, -0.0373026952, 0.00985969882, -0.00847518817, 0.0309932772, 0.00326596363, -0.00513258157, 0.0168514811, 0.00812906, 0.00873725582, -0.00987947825, -0.0198974069, -0.00222510775, -0.0403881744, -0.00050744816, -0.00665554404, -0.0150516173, -0.0123419305, 0.0036862616, -0.0358588472, -0.00626985868, -0.000652698218, 0.00475431327, -7.32817571e-05, 0.00179121166, -0.0153482985, 0.00877186842, -0.000349218288, -0.0185326748, -0.000677421689, -0.0109969769, 0.0117189, 0.0301230121, 0.00753075304, 0.00959268678, 0.00287533365, -0.00171456905, 0.00192471815, 0.0240707193, 0.00906360522, 0.00400519371, 0.00607701624, 0.00301131234, -0.00891526509, 0.000573583297, 0.00452191336, -0.00929600559, -0.0172965042, -0.00617096527, -0.00902404729, 0.0030830102, 0.0033376615, 0.0219346173, -0.0124309352, -0.0156449787, 0.0058050584, 0.0093652308, -0.0042845686, -0.0151702892, 0.00113913149, -0.0100278184, 0.00610668445, -0.00764448103, 0.0117584579, 0.000117358977, -0.00123740709, -0.000136287839, 0.000848013267, -0.00430681929, 0.00167377538, -0.0177316349, 0.00657642912, -0.00685333135, -0.0280264672, -0.00788182579, 0.00451202365, 0.0229631104, 0.0101860482, -0.0132517526, -0.0147846043, -0.000650844, 0.00659620808, 0.0037925723, -0.0010179868, -0.0186019, -0.000890661147, -0.0182359926, -0.0186216794, 0.00883120485, -0.00251189922, -0.0273539908, 0.0122232577, -0.0103146099, -0.000107701388, 0.00321157207, -0.0168119241, 0.00681871874, 0.0332282744, -0.0191754829, -0.0204907693, 0.0117584579, 0.00801038742, -0.00874220114, 0.0230026692, 0.00625008, -0.0287780594, -0.0191557053, -0.00478150928, -0.000762099342, -0.014527481, 0.018107431, -0.00654181652, 0.00947401393, -0.00260832068, -0.00599295646, -0.0072044041, -0.00852463488, -0.0019482054, 0.0019803457, 0.000991409062, -0.00102045911, -1.37330862e-05, -0.00506830076, -0.0100179287, -0.0163471233, -0.0244267378, -0.00570616499, -0.0225082, 0.0166438054, -0.00462575164, 0.0341578759, 0.0130539648, 0.00179862871, 0.0111552067, 0.00748130633, 0.00770876184, -0.0203325395, -0.0301823486, -0.00362692541, 0.000576673716, -0.0120056923, -0.000404536928, 0.00908832904, 0.00906360522, 0.00676927203, -0.0236751456, 0.00610173959, -0.0111848749, -0.00153285195, -0.00410161493, -0.00784721319, 0.00230793119, -0.0156845357, -0.0158922132, 0.012401267, -0.0037579597, 0.0215192642, 0.0154471919, 0.00818345137, -0.0203325395, 0.0117683476, -0.0204709899, -0.00079918449, 0.0135385441, 0.0109673087, -0.00458619418, 0.0251189936, 0.0102849416, 0.00912788603, -0.0302614644, 0.00596328871, 0.0209061224, -0.0103442781, 0.0059336205, 0.0143296933, -0.0125990538, 0.00487545831, -0.0163372345, -0.00112676981, -0.00155015837, 0.00272946549, 0.0270770881, 0.000455838017, -0.0126583902, 0.00453427481, 0.000192842665, 0.0285802707, -0.0175931845, -0.00950862654, 0.0077483193, 0.0134693179, -0.0219148379, -0.0134495394, 0.0120946961, -0.0181272104, -0.00363928708, -0.0140330121, -0.00383954681, 0.00571111, -0.0222115181, 0.00916249864, 0.000117049931, 0.00227579055, 0.00416836841, -0.0211039092, -0.00775820855, 0.0135088759, 0.00160702225, 0.00928117149, 0.00436368352, 0.0250398777, 0.011451887, -0.0269781947, 0.000441931101, -0.00757525535, 0.000982755912, 0.00618085451, 0.00114098575, -0.00652698241, 0.0137066627, 0.0100822104, 0.000372087437, -0.00701650605, 0.00676432718, 0.00288769533, 0.00562705, -0.00467272615, -0.00268001854, -0.00466778129, 0.00482106674, 0.0210050158, 0.021717051, -0.0181568787, -0.0028110526, -0.00275171641, -0.023734482, 0.0111255385, 0.000133120149, 0.00798071921, 0.00464305794, 0.00232771, -0.0347116776, 0.0126880584, 0.00272699306, -0.00759997871, -0.00941467751, 0.030241685, -0.015407634, 0.0191359259, -0.0146857109, -0.00759503432, 0.0177019667, -0.00589900743, -0.0164064597, -0.011145317, -0.0133803142, -0.0246640816, 0.0209456794, 0.00505346665, 0.0167328101, 0.018562343, -0.0362742, 0.0121540325, 0.0175931845, -0.0224290844, 0.00696211448, -0.0209259018, -0.0168613717, -0.0138550038, -0.016505355, 0.0196007267, -0.025297001, -0.000475925801, -0.00845540874, 0.0234773587, 0.0108881937, -0.00846529845, -0.0207478926, 0.0135187656, -0.00409914274, -0.00800544303, -0.00657148473, -0.00927622616, 0.024308065, 0.0143000251, -0.0185030065, 0.0294307563, -0.00463564089, 0.0223104134, 0.00714506768, 0.0097459713, -0.00679894025, 0.0305185877, -0.00712528918, 0.0160306636, -0.00385438092, 0.000145559126, 0.00472711772, 0.0138945607, -0.020124862, -0.0214994848, -0.0184634496, 6.86074854e-05, -0.00991409086, 0.0181272104, -0.0281649176, -0.00409419788, -0.0122034792, 0.0176129639, -0.0239520483, 0.0231608991, -0.0184634496, -0.021796165, 0.0014042902, 0.0100673763, -0.00477903662, -0.00616107602, 0.00169108179, -0.00134124549, -0.00424995553, 0.00967674609, 0.0163767915, 0.00880648196, -0.00379998935, -0.002595959, 0.00691266777, -0.00289758458, 0.00171827758, -0.00589406304, 0.00996353757, -0.00187279889, -0.00921194535, 0.00605723727, 0.0110958703, -0.00652698241, 0.00916744396, -0.0157438722, -0.0115903383, -0.0021608267, -0.0149032762, -0.0163273457, -0.0223697498, 0.00863341801, -0.0174547341, 0.0141022382, 0.0223104134, 0.00530564552, -0.000220347472, 0.0177019667, -0.0232202336, -0.0209654588, 0.0132517526, -0.0020854203, 0.02579147, -0.00142406893, 0.00626491429, -0.0246245246, -0.0163767915, -0.007911494, 0.000576364691, -0.0142308, 0.015555975, -0.0123122623, 0.0241102781, -0.00493479427, 0.0394387953, -0.00289511238, 0.00782248937, -0.00543420715, 0.000393411407, -0.0111156488, 0.00674949307, -0.0238531549, -0.00673960382, 0.0162185617, 0.0192644875, -0.00283330376, 0.02517833, -0.0149428342, -0.0086779194, -0.00996353757, -0.00597317796, 0.0256332401, -0.0232202336, -0.00479881559, -0.014873608, -0.000224828589, 0.00145373703, -0.00622535683, 0.0358192883, 0.02327957, 0.0169305969, 0.00774337444, 0.00762964692, 0.00375548727, -0.016624026, 0.0177613031, -0.0109475292, -0.00055256841, 0.00151801785, 0.0123320408, 0.0122331474, -0.01141233, -0.000213548527, -0.0110958703, -0.00738241291, 0.01798876, 0.00416342355, -0.0187601298, -0.0133803142, 0.0173162818, 0.016317457, 0.0290945191, -0.00870264322, -0.0117287897, -0.0266221762, -0.0105123976, 0.0192545988, -0.000509611447, 0.00266518444, -0.0165152438, 0.0101662697, 0.0183052197, -0.00849002227, -0.00847024284, 0.0204907693, 0.00763459178, 0.0116595645, -0.0160405543, 0.00595834386, 0.00237221201, -0.00802522153, 0.03172509, 0.0285407137, 0.0262661595, -0.012895735, -0.0232004561, -0.0244465154, -0.0122727053, 0.0263057165, -0.0337029621, 0.00748130633, -0.00275418884, 0.0220928472, 0.00157364563, 0.00666543376, -0.0112442104, 0.0460053384, -0.00429693, -0.019590836, -0.0250992142, 0.000129025342, 0.0019333713, -0.00560232671, 0.0213016979, -0.0111156488, 0.0105618443, 0.0027789122, -0.00277396757, -0.0127276154, -0.00913283, -0.0295296516, -0.00442301948, 0.00926633738, -0.0195018332, -0.00720934896, 0.00227826298, -0.015595532, -0.01734595, 0.000546387571, -0.0107299639, -0.0054243179, -0.0170294903, -0.00256876322, -0.000581309374, 0.0302614644, -0.0146560427, 0.000109014822, -0.00355275511, -0.0050435774, -0.019511722, -0.00561716082, 0.0129649602, -0.0335447341, -0.0118276831, 0.0194128286, 0.0173657294, -0.0296483226, -0.0180382058, -0.00268990803, 0.00618085451, 0.0200556368, 0.00131281349, -0.0319624357, 0.00311762304, 0.0307559315, 0.00116261875, -0.00210767146, 0.0166635849, -0.00383954681, -0.0203523189, -0.000445330574, -0.0096718017, -0.0123518202, 0.011639785, 0.0137956673, 0.00042369758, -0.00852463488, 0.01015638, -0.0101860482, 0.0073675788, -0.00409914274, -0.00126274861, 0.0141022382, 0.0194622744, 0.0138747822, -0.00355028291, 0.00459608342, -0.016544912, -0.00120712095, -0.00516225, -0.00658631884, -0.0020854203, 0.00447741104, -0.00944929, -0.0134693179, 0.00417825766, 0.0046850876, 0.00457136, -0.00424253847, 0.00447246619, 0.000572656165, -0.0152296256, 0.00659126323, -0.0289362893, -0.0402299464, 0.010878304, 0.020085305, -0.000524754578, 0.00845046435, 0.0041213939, -0.0213214755, -0.00164039875, 0.0218950585, 0.0120650278, -0.00579516916, -0.0234180223, 0.00898449, 0.0234773587, -0.00406453, 0.0023400716, -0.00821806397, 0.00530564552, -0.0236355886, -0.0162383411, -0.0437901169, 0.0100377081, 0.00798566453, 0.0073478, -0.0225675367, 0.0135088759, -0.00459855562, -0.00582978223, -0.0129155135, -0.020045748, 0.0460844524, -0.0208665654, 0.0301230121, -0.00811917055, 0.0110563124, 0.0285604931, 0.00394338509, 0.00369862327, 0.0131528582, -0.0134693179, 0.00911305193, 0.0210247952, -0.0137857776, 0.0117386794, -0.0130440751, 0.0227653235, -0.0112244319, -0.0172866136, 0.0203720964, -0.0176129639, 0.00848013256, -0.00665554404, -0.00237592054, 0.0188590232, 0.0218357239, 0.0152197359, 0.0268001854, 0.00633414, -0.0270375311, 0.00907843933, -0.0388454348, -0.00639842078, -0.00944929, 0.00222139922, 0.00138821988, 0.0130638545, -0.00229062466, 0.0186711252, -0.00904877111, -0.00681377389, -0.0201050844, 0.00941962283, -0.00872242171, -0.0192249306, 0.0151208425, -0.0177514143, -0.0179788694, 0.025257444, 0.0110365339, -0.00820323, 0.00689783366, 0.00845046435, 0.0128462883, -0.0248618703, 0.0127177266, -0.00245503546, 0.0149725024, 0.0101464912, -0.0154471919, -0.031191064, -0.0151109537, 0.0173162818, 0.00981025212, 0.000130261513, -0.0238927118, -0.00713517843, -0.00565671828, 0.0160207748, -0.00840596203, -0.00531059038, 0.0102651631, 0.021796165, -0.049407281, -0.0288373958, -0.014873608, -0.00975586101, -0.001707152, 0.00197292888, -0.0185128953, -0.00540453941, -0.0136769954, 0.00890537538, 0.0166536942, 0.0254750103, 3.64090956e-05, -0.0154867489, -0.00367142772, -0.0255343467, -0.0435527749, 0.00828234479, 0.00154768594, 0.0174052864, 0.00396563625, 0.00334260613, -0.00997837167, -0.00761481281, -0.0230620038, -0.00421287026, -0.0350874737, -0.0122232577, 0.0124902707, 0.0183447767, 0.00455652596, -0.0142703569, 0.0264837258, 0.0174151752, 0.0185227841, -0.00699672755, -0.00843068585, 0.0205303263, -0.0232597925, 0.00804005563, -0.0141022382, -0.020273203, 0.019472165, 0.000883862202, -0.0345534496, -0.00240558852, -0.0143198036, 0.00213486725, -0.00866803061, -0.00177637755, 0.00464305794, -0.0179492012, -0.00739230216, 0.00537487119, 0.00108041335, 0.0133605357, -0.00975586101, -0.00628469279, -0.00547376461, 0.00193955214, -0.0256530195, 0.0204512123, -0.0240707193, 0.00188516069, 0.00880648196, -0.0024327843, -0.00705606351, 0.0262068231, 0.00529081142, -0.0172965042, 0.00885592867, 0.0362544209, 0.0205105487, -0.0297867749, 0.00252549723, 0.0139736757, -0.0075703105, 0.0153186303, 0.000599851948, 0.0107101845, 0.0259299204, 0.00719451485, -0.00842574053, -0.00703628501, -0.00226960983, 0.00377279357, 0.0152790723, 0.00603745878, -0.0101662697, -0.0248025339, 0.0184931178, -0.00962729938, -0.00516225, -0.028718723, 0.0286593866, -0.0388256572, -0.00113665918, 0.0139341187, -0.00142901356, -0.0133407563, -0.00295197614, -0.00288275047, 0.005953399, 0.0123814875, -0.0293120854, 0.00547870947, -0.0225477573, -0.00309042726, 0.00751097454, 0.0132418629, 0.0126188323, -0.000296372, -0.00251560775, -0.00542926276, 0.00725879567, -0.000195160479, 0.0227653235, -0.00668026786, -0.00873231143, 0.00610668445, -0.00272699306, -0.00199270761, -0.00418073, -0.0005216641, 0.0101069333, -0.0181568787, -0.010571734, 0.0101761594, -0.0101464912, 0.00742691476, 0.00780765573, -0.00788182579, 0.0105420658, -0.00145620934, 0.0183348879, 0.00907349493, -0.0160108861, 0.00588911818, -0.0364522077, 0.0157142039, 0.0160702225, -0.00917238835, -0.00296186563, -0.0150615061, -0.0195611678, -1.86005091e-05, 0.0100179287, 0.00763953617, 0.0175734051, -0.00705111912, -0.00945918, 0.00559738185, -0.00568144163, 0.0184140019, 0.0282044765, -0.0158328768, 0.00672971457, -0.00515730493, 0.00186167343, 0.00164287118, -0.0075653661, 0.0126583902, -0.00377773843, 0.00285555492, -0.00849002227, -0.0100772651, -0.00338710821, 0.0199864116, -0.00117250811, 0.0121540325, 0.0259299204, 0.0117090112, 0.0312306229, -0.00637369743, -0.00314976345, -0.00272452063, -0.00139192841, 0.00171209674, 0.0172371678, 0.00256876322, -0.0294703152, 0.0160108861, 0.00931578409, -0.00149947533, 0.00340935937, -0.0109178619, 0.0277495645, 0.0197391771, -0.0319624357, -0.0109969769, 0.00509302411, 0.00602756953, 0.0193534922, 0.000446257705, 0.00581000326, 0.00235243328, 0.0248025339, 0.00363434246, -0.0207874496, 0.00707584247, -0.00280610798, 0.0122628156, 0.0156252012, 0.00349836377, 0.0214401484, 0.00680388464, 0.020767672, 0.00442054728, 0.0123715987, -0.00460102828, -0.00675938278, 0.0129254032, 0.00144755619, 0.0110958703, 0.0126979472, 0.0274726618, 0.0318833217, -0.0121045858, -0.0139440084, 0.0134792076, 0.00218678638, 0.00748130633, 0.0120650278, -0.0131726377, 0.010611291, 0.0214797053, -0.0158032086, 0.0350083597, 0.0057358332, -0.0018715628, -0.00670004636, 0.012895735, -0.021756608, -0.00446257694, -0.00337474653, -0.00284319301, -0.0097261928, 0.00124791451, -0.00931578409, 0.0029593932, -0.00416589621, -0.0124507137, -9.96662766e-06, 0.00489029195, -0.0145769278, 0.0181568787, 0.0126386117, -0.00523147546, -0.00202855654, 0.0198182929, 0.0160207748, -0.0058050584, 0.0148834977, 0.0155263068, -0.00676927203, -0.0190271419, -0.00564188417, -0.0129352929, -0.0154570816, 0.00108412188, 0.00652203755, 0.00576550094, 0.00546387536, 0.0066951015, -0.00880648196, -0.0105321761, 0.00428951299, 0.00650225906, 0.00712034432, 0.00668026786, 0.000557822117, -0.0212819185, -0.0140626803, 0.00890537538, -0.000490141741, 0.0350874737, -0.000598306709, -0.00330799329, -0.00721923821, -0.00798566453, -0.000182489734, -0.00480128778, 0.00777304266, 0.00988442264, -0.00797577482, 0.0182755515, 0.0125001604, -0.0218159445, 0.00363928708, -0.0117485682] |
05 Nov, 2024 | String capitalize() Method in Python
05 Nov, 2024
The capitalize() method in Python is used to change the first letter of a string to uppercase and make all other letters lowercase. It is especially useful when we want to ensure that text follows title-like capitalization, where only the first letter is capitalized.
Let’s start with a simple example to understand the capitalize() functions:
Python
s = "hello WORLD"
res = s.capitalize()
print(res)
OutputHello world
Explanation: In this example, capitalize() method converts the first character “h” to uppercase and change the rest of characters to lowercase.
Table of Content
Syntax of capitalize() MethodExample of capitalize() MethodWhat happens if the first character is a number?Syntax of capitalize() Methods.capitalize()
ParametersThe capitalize() method does not accept any parameters.Return ValueThe method returns a new string with the first character capitalized and all other characters in lowercase. The original string remains unchanged.Example of capitalize() MethodThe capitalize() method only affects the first letter of the string and doesn’t capitalize each word in multi-word strings.
Python
s = "multiple WORDS IN a String"
res = s.capitalize()
print(res)
OutputMultiple words in a string
Explanation: Even though there are multiple words, only the first character of the entire string is affected, while the remaining words are converted to lowercase.
What happens if the first character is a number?When the first character of a string is a number, capitalize() method does not alter it because it only affects alphabetical characters. Instead, it will simply convert any following alphabetical characters to lowercase.
Python
s = "123hello WORLD"
res = s.capitalize()
print(res)
Output123hello world
Explanation: Since capitalize() only targets alphabetical characters for capitalization, the initial number remains unchanged. While rest of the characters follow the capitalization rule which results in “123hello world“
Related Article:
upper() Methodlower() MethodString slicing | NLP/Natural Language Processing (NLP) Tutorial/AI ML DS - Projects/30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated]/Does Artificial Intelligence Require Coding?/Artificial Intelligence – Boon or Bane/Artificial Intelligence Examples/Agents in Artificial Intelligence/What are Diffusion Models?/ML | Common Loss Functions/Loss Functions in Deep Learning/Kaiming Initialization in Deep Learning/Swift - Initialization/Swift – If Statement/6 Best iOS Project Ideas For Beginners/Swift Programming Language/Introduction to Visual Programming Language/What is D Programming Language: Usage and Applications/Best Programming Languages for Data Science in 2024/5 Best Languages for Competitive Programming/MEX (Minimum Excluded) in Competitive Programming/Rearrange Array to maximize sum of MEX of all Subarrays starting from first index/Minimize moves to segregate even and odd by swapping adjacent elements/Minimum elements to be removed such that sum of adjacent elements is always even/Maximum sum such that exactly half of the elements are selected and no two adjacent/Maximum length subsequence such that adjacent elements in the subsequence have a common factor/Longest subsequence such that difference between adjacents is one/Longest Increasing Subsequence using Longest Common Subsequence Algorithm/Longest Common Subsequence (LCS)/Minimum insertions to form a palindrome with permutations allowed/Print longest palindrome word in a sentence/Python String split()/Python String strip() Method/Python String rindex() Method/Python String istitle() Method/Python String isdigit() Method/expandtabs() method in Python/String capitalize() Method in Python | https://www.geeksforgeeks.org/string-capitalize-python/?ref=lbp | NLP | String capitalize() Method in Python | Artificial Intelligence – Boon or Bane, AI ML DS - Projects, Longest Common Subsequence (LCS), Rearrange Array to maximize sum of MEX of all Subarrays starting from first index, Python String istitle() Method, MEX (Minimum Excluded) in Competitive Programming, Swift - Initialization, Minimum insertions to form a palindrome with permutations allowed, Longest Increasing Subsequence using Longest Common Subsequence Algorithm, 6 Best iOS Project Ideas For Beginners, ML | Common Loss Functions, Python String strip() Method, Python String isdigit() Method, Artificial Intelligence Examples, Python String split(), expandtabs() method in Python, Longest subsequence such that difference between adjacents is one, What is D Programming Language: Usage and Applications, 30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated], Swift – If Statement, Natural Language Processing (NLP) Tutorial, Python String rindex() Method, Loss Functions in Deep Learning, Minimize moves to segregate even and odd by swapping adjacent elements, Maximum length subsequence such that adjacent elements in the subsequence have a common factor, Does Artificial Intelligence Require Coding?, Print longest palindrome word in a sentence, Best Programming Languages for Data Science in 2024, String capitalize() Method in Python, NLP, 5 Best Languages for Competitive Programming, Maximum sum such that exactly half of the elements are selected and no two adjacent, Swift Programming Language, Minimum elements to be removed such that sum of adjacent elements is always even, Agents in Artificial Intelligence, What are Diffusion Models?, Kaiming Initialization in Deep Learning, Introduction to Visual Programming Language | GeeksforGeeks | [0.0341840163, 0.00995946582, -0.00574082742, 0.047457505, -0.00306394906, 0.0320616513, 0.00863733608, 0.0015124036, 0.0180749074, -0.0550423563, -0.017918339, 0.0347059108, -0.028408397, 0.0152305886, 0.0107075125, 0.0137344943, 0.00621922966, 0.0422037803, 0.0177791677, 0.0177530739, 0.0174399372, -3.5608351e-05, -0.0424125381, 0.0225110017, -0.000180895862, 0.0359062664, -0.013082128, 0.00402510259, 0.0320790485, -0.00790668465, 0.0277473312, -0.032479167, -0.00682375627, -0.0156220086, -0.0123166842, -0.0252074506, -0.0185098182, 0.0305307638, -0.0301654376, -0.00257684872, 0.0100464476, -0.00406424468, 0.0200233106, 0.0133517729, -0.0270166807, 0.0376459099, -0.0286693443, -0.00433171494, 0.00871561933, -0.0107423058, -0.00308134547, -0.0085590519, -0.00264426, 0.0173268598, 0.0193622448, 0.00248986646, 0.00526242517, -0.0267905276, -0.0368456729, -0.0633578598, -0.0036554283, -0.0256945509, 0.00509715872, -0.0131430151, 0.00671067927, 0.0207017716, 0.000822525762, -0.0264425986, 0.0412295796, 0.00675851945, 0.015674198, 0.0456134826, 0.00740218814, 0.0163352638, 0.00972461328, -0.0201624818, 0.043073602, -0.00124275859, -0.0291564446, 0.0365325361, -0.00985508692, -0.0335055552, 0.0137866838, -0.00374675961, 0.0134039624, -0.00151675264, 0.0214846116, -0.01341266, 0.0063236081, 0.0157089904, -0.00647147791, 0.0362194031, -0.00135148643, 0.0120905302, -0.0206495821, -0.00729346, -0.00388593134, 0.0213454403, -0.0224936046, 0.00167440798, -0.0135605298, 0.0189273339, 0.0130473347, -0.0597741902, 0.00120687846, -0.0150740212, 0.0180749074, 0.00527982134, -0.0195536055, -0.00513630081, -0.00200494053, -0.0280430708, 0.0119600566, 0.0483273268, -0.0425517075, -0.0251900554, -0.00589739531, -0.0122644948, 0.0166136064, 0.0199711211, 0.026947096, -0.015161003, -0.0182314757, 0.0424125381, -0.0697597489, 0.0224762093, 0.000506943325, -0.0146391094, 0.00075565814, 0.00138736656, 0.00983769074, -0.0003781009, 0.00663239509, 0.00427517667, 0.0220760908, 0.00321399351, 0.0214846116, -0.00591044268, 0.0119861513, 0.0284431893, -0.0364977457, 0.0248421263, 0.0242158528, 0.0068933419, 0.000539018, -0.0231894627, 0.0223022439, -0.0113250865, 0.012403666, -0.0161960907, -0.0283562075, -0.0448480397, -0.0193970371, 0.0130299386, 0.0165440198, 0.0108553823, 0.0154045532, 0.005101508, 0.0112555008, 0.0373675674, -0.0110032521, 0.00359019171, 0.0128646726, -0.034618929, 0.0215541963, 0.018944731, 0.00495798746, 0.00995076727, -0.028860705, 0.0222152621, -0.00979419891, -0.0377154946, -0.025242243, -0.0546596348, -0.0270340778, -0.0118208854, 0.0227023624, -0.00839813426, -0.0202146713, 0.0154915359, -0.0569211729, -0.00590174459, 0.0193796419, 0.0164309442, 0.00429692212, -0.00425125659, -0.0128298793, 0.0346537195, 0.00270514749, -0.00406641932, 0.0232242569, 0.0235895813, -0.000923098938, -0.00327270641, 0.00710644852, 0.0282692257, 0.000850251294, 0.00259207049, 0.035836678, 0.0117686959, 0.00504931854, -0.0217629541, -0.0386896953, 0.0236939602, 0.0020940972, 0.0043164934, -0.00169724086, -0.00309656747, 0.0222152621, -0.0234156176, -0.00493189273, -0.0169615354, -0.0249639, 0.0107075125, 0.00959414057, 0.0138823641, -0.0449872091, 0.014934849, 0.0270688701, -0.0131604122, -0.0222152621, -0.017709583, 0.0178661514, -0.0309482776, -0.0175182223, -0.0104204714, -0.0513195172, 0.021415025, 0.00208866084, 0.00131778081, 0.0240070969, 0.0407076851, -0.000654541305, 0.0217803512, 0.00278778048, 0.0417166799, 0.0416470915, 0.0244420078, -0.0347928926, 0.0450220034, 0.065828152, 0.0205626, 0.0433867387, -0.0475270934, 0.0103508858, 0.0278865043, 0.00382286916, 0.0181792863, -0.0328096971, 0.0185272153, -0.0284431893, -0.0208409429, 0.0377502888, 0.0376459099, -0.0140998196, -0.0517718233, -0.00922011677, -0.0180575121, 0.011272897, 0.031331, 0.0121340211, 0.0147782816, 0.0175791085, 0.00484491047, 0.0175617132, -0.023119878, -0.0105509451, -0.0144477487, -0.0210323036, -0.00207996252, 0.0204930138, 0.0118730748, 0.0130995242, 0.0271906462, -0.0104813594, 0.021084493, -0.0260076877, 0.0261294618, 0.00579736568, -0.0400814116, 0.0105857374, -0.00405772123, 0.0557034202, -0.00850251317, -0.00427952595, -0.0223892275, -0.0410904065, 0.020632185, -0.0151436068, -0.0147347897, 0.0221282803, 0.0119426604, 0.0149435475, -0.00170376443, -0.0186663866, 0.0085720988, -0.0282692257, -0.0146304118, -0.00824591517, 0.010942365, -0.0242506471, -0.0347754955, -0.024355026, 0.0283388104, -0.0326879211, -0.00245724805, 0.0113424826, -0.0205799956, 0.0109858559, 0.0429692231, 0.0285997577, -0.0477706417, -0.000486828678, 0.00594958477, -0.0395595208, -0.0457178615, 0.021206269, 0.00678896345, -0.0496146642, -0.00575387478, -0.00524937781, 0.0105161518, 0.0101595251, 0.0043991264, -0.00420559105, 0.00101551751, -0.00967242382, 0.00889828242, 0.0186837837, -0.0232242569, -0.0282692257, 0.0109336665, -0.0194840208, 0.0447436608, -0.0357670933, 0.0190665051, -0.0404293425, -0.0233112387, -0.0067802649, 0.000455025816, 0.0263208244, -0.00458831294, -0.0370892249, -0.00605396321, 0.0278343149, 0.00231155287, -0.0337491073, 0.0254162084, -0.00636275, 0.00680635963, 0.000416971074, 0.00982899219, 0.0483969152, 0.00191469642, 0.00113185635, -0.0324095786, -0.000528417062, 0.0226327777, 0.0117339035, 0.0147782816, -0.012464554, -0.00594523549, 0.0581389256, -0.0646451935, -0.0218151435, -0.0556338355, 0.0379242525, -0.005101508, 0.000908420712, -0.0196753815, 0.00125363143, -0.0307395216, 0.0137866838, -0.010368282, 0.0313657932, 0.000851338613, 0.00165592425, 0.0153175713, 0.0128994649, 0.0208757352, -0.0176921859, -0.00106498867, -0.00140367576, 0.0155437253, -0.0213976298, 0.0376459099, -0.00553641887, -0.0261816513, 0.0202494636, 0.0353495777, -0.0194840208, -0.0201972742, 0.0159525406, -0.0516674444, -0.0203886349, -0.00357496971, -0.0338534862, 0.00604091585, 0.0228763279, -0.00234417105, -0.0101160333, -0.0382373892, 0.00060996291, 0.0181966834, -0.00767618185, -0.0435259081, -0.0103769805, -0.000168256258, 0.0242332499, -0.0236417707, -0.021206269, 0.0414731279, 0.000706730643, -0.0261990484, -0.0154480441, 0.00952455401, -0.0259554982, -0.000566471776, -0.00612789812, 0.00842422899, 0.033592537, -0.00106172683, -0.0133604705, 0.00422951113, 0.0209975112, 0.00358584244, 0.00130473345, 0.0247899368, -0.0354539566, 0.0313657932, -0.0189099368, -0.00820677355, 0.0140998196, 0.0274168, -0.0377154946, -0.00665849, 0.0271906462, -0.00338143436, -0.0233460311, -0.0335403495, -0.000126735831, 0.00544508779, 0.0223022439, 0.021989109, -0.00759789813, 0.0568515882, 0.0322008207, 0.0287737232, 0.0421689861, -0.0248943157, -0.0304263849, 0.00155263289, -0.00308569474, 0.0265991669, -0.00619313493, -0.0173703525, -0.0199885163, 0.0148565657, 0.0116904117, 0.0071542887, 0.00078338373, -0.0443609394, -0.00395116769, -0.0327227153, 0.0630795136, -0.0142824827, -0.00636709947, -0.044534903, -0.0149087543, 0.0105857374, -0.0194318313, -0.0519109964, 0.00456221821, 0.0155176306, -0.0213976298, 0.00955064874, -0.00915922876, 0.0539637767, 0.0533375032, -0.0101682227, 0.0377850831, 0.0170137249, -0.00516674481, 0.00343362358, -0.0127602937, -0.0190143157, -0.00104487408, -0.0321660303, -0.00718038343, -0.0116208261, -0.0194318313, 0.025816327, 0.0564340726, -0.0395943113, 0.020284256, 0.020406032, -0.0216411799, 0.00337708509, 0.0085720988, 0.0229459126, 0.010655323, -0.00787624158, -0.0258685164, 0.0270514749, 0.000771967287, -0.0231024809, -0.00147652335, 0.0132299978, -0.0216585752, 0.00841988, 0.0169789325, 0.0308438987, -0.0281996392, 0.0252770372, -0.0131430151, -0.0176312979, 0.0295565631, -0.00487970328, 0.00155915646, -0.00751961395, -0.00199189316, -0.00850686245, -0.0208757352, 0.013247394, -0.0169789325, -0.0143520683, 0.0248595215, -0.0170050263, -0.0374719463, -0.00182880147, 0.0093766842, 0.0260076877, -0.00624097511, -0.0144129563, 0.0247725397, -0.0126559148, -0.0253118295, -0.0224066228, -0.0132908849, 0.0056320997, -0.0408816487, 0.0584868528, -0.0108727794, -0.0179009438, 0.0158307664, 0.00955064874, -0.0156828966, 0.0184750259, 0.0115338443, 0.00628446648, -0.0308612958, -0.021084493, -0.0122470986, -0.000389789115, -0.00173529552, -0.0232416522, -0.0314005874, -0.00708905188, -0.00751961395, 0.00800236501, -0.0198493451, -0.00205712975, 0.0142476894, 0.019170884, 0.0225631911, -0.0113076903, 0.0050623659, 0.0287911184, 0.00403380115, 0.0403945483, -0.0144651448, -0.0226849653, 0.0541377403, -0.00637144875, -0.0134909442, 0.0167788733, -0.022319641, -0.0103769805, 0.0196057949, 0.0336795188, -0.00838073809, 0.0192056764, -0.0116034299, -0.0247725397, 0.00714124134, -0.00148630887, -0.0248247292, -0.00808499847, -0.0202146713, -0.000274537684, 0.0078544952, 0.0198493451, -0.00853295717, -0.000618117512, 0.0316789299, 0.0194492266, -0.00123949687, 0.0347581, 0.0238157343, 0.0188055579, -0.0042860494, 0.0156568009, 0.00641059037, 0.0160134286, 0.0399422422, -0.0168136656, 0.0176139027, -0.0232938416, 0.0431431867, 0.00544943707, 0.0355061479, 0.0106988149, 0.0287911184, -0.0173268598, -0.0401857905, 0.00199732953, -0.0272602309, 0.0201972742, 0.0158307664, -0.0175791085, -0.0351060294, -0.00596698094, 0.0330184549, 0.0155350268, 0.00835029408, 0.00655411137, 0.035836678, -0.0246159714, 0.00037728544, -0.0277821254, 4.31513436e-05, -0.0473183356, -0.014769583, 0.0358714722, 0.00496668555, -0.0122470986, -0.0167005882, -0.000991597422, -0.017300766, 0.00369239575, -0.0225979835, 0.00123406039, -0.00470573874, 0.0684028268, -0.00574517623, 0.0283562075, -0.00878085662, 0.0331054367, 0.00138627936, -0.00791103393, -0.0279212967, -0.0111859152, -0.000207262347, 0.00246594637, 0.00886783842, 0.00861559, 0.0180227179, -0.014995737, -0.00305307633, -0.00598002831, 0.0304089878, -0.0101508265, 0.0107075125, -0.0266861487, 0.00601047231, 0.00155698194, 0.00741958432, 0.00808499847, 0.0123514766, 0.0135866245, -0.0131430151, 0.0188403521, -0.012342779, 0.00351625681, -0.0241114739, 0.00884609297, 0.00728041306, 0.0110119507, 0.0272080414, 0.0184054412, 0.0273646098, -0.015613311, -0.045439519, -0.00916792732, -0.0306003485, -0.0172572751, 0.0176139027, -0.0167614762, 0.00145912694, 0.000776316447, -0.0169441383, 0.0204930138, 0.00238983682, 0.0146652041, 0.0235547889, 0.0187359732, 0.0131256189, -0.0235721841, 0.00522763235, -0.000323736982, -0.0124471579, 0.00882869679, -0.0273820069, -0.0129516544, -0.0017418192, 0.0503453165, -0.0109162703, 0.00774141867, -0.0295043737, 0.0261990484, 0.00741958432, 0.0199015345, 0.0176139027, 0.0152479857, -0.0182662681, 0.017422542, 0.0120818317, -0.00264208531, 0.01042917, 0.00714993943, -0.023119878, -0.0298870951, -0.0107249096, 0.0126124239, -0.0233982205, 0.0176747888, 0.0433519445, 0.0124123646, 0.00128081336, -0.00866343, 0.0134387547, -0.0166223049, 0.0205799956, 0.0124210631, -0.00100029563, -0.0130473347, -0.0308091063, -0.0339926556, -0.0248421263, 0.0398030691, -0.0103247911, -0.0191186946, -0.0205278061, 0.00635840138, 0.0112641994, -0.000224794712, 0.025364019, 0.0131952045, 0.0162221864, -0.00265078363, 0.00355757331, 0.00541464379, 0.0580693372, 0.0193622448, -0.0282344334, 0.0064366851, -0.00543204043, 0.0426212922, -0.00137323199, 0.0479446054, -0.00981159601, 0.00792408176, -0.00177661213, -0.0118208854, 0.0185272153, -0.0257119481, -0.00806760229, 0.00941147748, -0.0216933694, 0.00227675983, -0.00391854951, 0.0122123053, 0.0210497, 0.00165483693, 0.00146565062, -0.00135257374, 0.0352625959, -0.0351234265, 0.0122123053, 0.0107857967, -0.0348798744, -0.0240418892, -0.0112641994, 0.0194318313, -0.0193622448, -0.0333489887, 0.0374719463, -0.0109075718, 0.00275733671, -0.0344449654, 0.0161612984, 0.0307047274, 0.00858079735, 0.029660942, -0.0132299978, -0.0142824827, -0.0307221245, -0.0258685164, 0.00680635963, -0.00361193717, 0.0552163199, 0.00904615223, 0.0169354398, -0.00538420025, 0.0335403495, 0.0192926601, -0.0122297015, -0.00634100474, 0.000100845027, 0.0264599957, -0.0109162703, 0.00690204, -0.045195967, -0.00809804536, -0.0143694645, 0.0212584585, -0.0238331314, 0.0314353779, -0.00621488038, 0.00887653697, 0.0293304082, -0.00494928891, -0.0174834281, -0.00553641887, 0.0116469208, 0.0100638447, 0.0528156124, -0.00847206917, 0.00148848339, 0.0220934879, 0.00581041304, 0.023119878, -0.0222848486, -0.0152392872, -0.0423081592, 0.0130734295, 0.0267035458, 0.0100551462, 0.0260076877, -0.0114903525, -0.00505801663, 0.00645843055, -0.015613311, 0.0187881626, 0.00702816434, 0.00881564897, -0.00472748419, 0.00773706939, -0.00879825279, 0.000273178564, 0.0163526591, -0.0191186946, 0.040464133, 0.0251726583, 0.00620183302, 0.00516674481, 0.00682810508, -0.0537898131, 0.00222674524, 0.0037706797, -0.0257293452, -0.00644103438, 0.00647582719, 0.0089330757, 0.0113685774, -0.0315223597, -0.0140215354, 0.0521545447, 0.00602351967, 0.0151262106, 0.00107749237, -0.0148043763, 0.028408397, 0.00037782907, -0.0189099368, 0.00310526579, 0.0206669793, -0.0410556123, -0.0267905276, 0.012690708, 0.0384113528, 0.0171702933, 0.0120818317, -0.000651279464, -0.0169267431, 0.0274168, 0.00225066533, -0.0120296432, 0.0163004696, -0.00259424513, 0.0203190502, 0.0229285173, 0.0288085155, -0.0342014134, 0.0119774537, -0.0167092867, 0.0431779809, 0.0229633097, -0.00420994, -0.0128211807, 0.017031122, -0.0379590467, -0.0349320658, -0.0195883978, -0.0185794048, -0.00890698098, -0.0174573343, -0.0175965056, 0.0133343758, -0.00545813516, -0.0322704092, -0.0093766842, -0.0078849392, 0.0132126007, -0.0126037253, -0.0154567426, 0.0151523044, -0.012116625, 0.00463615311, -0.00215933402, 0.00985508692, 0.0125602344, 0.00741088623, 0.00738914078, -0.00269427453, 0.0139693469, -0.0251204688, 0.00951585639, 0.0142650865, -0.0290172733, -0.00102802122, -0.00253988127, 0.000438716641, 0.00324661192, 0.00922881439, -0.000909508, -0.0344101712, 0.0296783373, -0.0107249096, 0.0209453218, 0.0239723027, 0.00599742495, -0.00984638836, -0.014030234, 0.00414035423, -0.0424821228, 0.00444479194, 0.0124732517, -0.00878520589, 0.0191534869, 0.01262982, 0.0159612391, 0.0304959714, -0.00684115244, 0.00579301687, -0.0159525406, 0.00954195112, -0.0207191668, -0.00366412662, 0.0085894959, -0.0233634282, 0.00327923, 9.54086354e-05, 0.00260511786, -0.0336273313, -0.0105161518, -0.0349842533, -0.0278343149, -0.0114207668, 0.000309874216, 0.0439086296, -0.0233634282, 0.00199406757, -0.000905702473, 0.0328618884, 0.0195188131, -0.019275263, -0.0245289896, 0.0092897024, 0.0107510043, 0.0403597541, 0.00180161954, 0.0173094645, -0.0138736656, 0.00431866804, -0.0217281617, -0.0302176271, -0.00142107217, -0.00446218858, 0.0268949065, 0.00430779485, -0.00754570868, -0.0328096971, 0.00841988, 0.00965502765, 0.0154741388, 0.012464554, -0.0103160925, 0.0023376476, -0.00939408131, 0.0182314757, 5.55531042e-05, -0.000595284626, -0.0432127714, 0.00929840095, 0.00135801011, 0.0190665051, 0.016126506, 0.00271167117, -0.0472835414, 0.00969851855, -0.00479272101, -0.0227023624, 0.0133604705, 0.00209300988, 0.0453699306, -0.0196579844, -0.024128871, 0.00177878665, 0.0155176306, -0.0348972715, -0.00673242472, -0.0265121851, -0.00659760227, -0.0110641401, -0.00968112238, 0.00299653783, -0.00390332774, 0.0306177456, 0.0060496144, -0.026947096, -0.0224066228, -0.020406032, -0.00383809092, 0.0330532491, 0.00380764715, -0.0185794048, 0.00897656661, 0.00101551751, 0.00248116814, 0.00599742495, -0.00154176, 0.003270532, 0.0128037846, 0.0177443754, -0.0104465662, 0.0158307664, -0.0267905276, -0.0181444939, 0.020284256, -0.0107684005, 0.0273472145, 0.000346569839, 0.0264425986, 0.0107423058, 0.000947562687, -0.0312788114, 0.00628881529, 0.00520153763, 0.0340970345, 0.0151436068, 0.0235026, 0.0177530739, -0.0142563879, 0.0115512405, 0.00370109407, 0.0167614762, -0.000608875649, 0.0274341963, 0.0189621262, 0.00210062088, -0.0257293452, -0.012568933, 0.00135692279, 0.024128871, -0.0239201132, -0.0284605864, 0.00405989587, -0.0164744351, -0.0379242525, 0.00452307612, 0.01302124, 0.00664544245, 0.000179264942, 0.0011449036, -0.00146782515, 0.0198145527, 0.000796431093, 0.00456656702, 0.00375980698, -0.0118469801, 0.0219195224, 0.00877215806, -0.0113859745, 0.00635405211, -0.0060191704, -0.0118382815, 0.0163874533, -0.0238331314, 0.00187555433, -0.00576692214, 0.00137649383, -0.0200928953, 0.0133082811, 0.0245985761, 0.0257467404, 0.0089156786, -0.0070803538, 0.0301480424, 0.00111880898, 0.0424821228, -0.00776751339, -0.0226327777, 0.00986378547, 0.0161091089, -0.0063931942, 0.00788928848, -0.00533636, 0.00164396421, -0.0269123018, 0.0295913555, 0.0175443161, 0.0231894627, -0.0118991695, -0.00397943705, -0.0166136064, 0.00375110866, 0.000574626378, -0.0139432522, 0.021084493, 0.0181270968, -0.0146391094, 0.0108031929, -0.0058626025, -0.028408397, -0.02266757, 0.0152479857, -0.0069368328, -0.0398378633, 0.016848458, 0.0328444913, 0.00916792732, 0.00326618273, 0.00883304607, -0.01003775, 0.00976810511, -0.00176791393, -0.0324965604, -0.0166483987, -0.0102639031, 0.000539018, 0.0123514766, -0.018492423, -0.00931579713, 0.00795017648, -0.00143738138, 0.000795343774, 0.00293565029, -0.0040707686, 0.0231024809, -0.0192926601, -0.0149696423, 0.000596371945, 0.00773272058, 0.0196927767, -0.0232416522, 0.00520588644, 0.0221804697, -0.00978550129, 0.0140563287, 0.00493624154, -0.0111772167, -0.00410991069, 0.000862755, 0.00340752886, -0.0219543148, -0.00314223324, -0.00272471854, -0.00127972604, -0.0120470393, 0.0179879256, -0.0215889905, -0.000857862295, -0.0046752952, 0.0238679238, -0.0237113573, 0.00911573786, -0.00142542133, -0.00782840047, 0.0040011825, 0.0333141945, -0.0194840208, -0.0114468616, 0.0119426604, 0.050728038, 0.00193426735, 0.00186794344, 0.0325835459, 0.0025529284, 0.0127515951, 0.0239375103, 0.000392779155, -0.00954195112, 0.00900266133, 0.010655323, -0.0162830744, 0.0100638447, -0.00194296567, -0.00795887411, -0.0343057923, -0.0110206492, -0.00213867566, -0.0154567426, -0.00932449568, 0.0137170982, 0.0233982205, 0.03200946, -0.0343231894, -0.00836769119, -0.0228241384, 0.0485360846, -0.00615834212, -0.0163004696, 0.0242506471, 0.00657585682, 0.00292477757, -0.0207539611, -0.00026013123, -0.0197101738, 0.0228241384, -0.014604317, 0.0202146713, -0.0023224256, -0.0252074506, -0.0238679238, 0.00242680428, -0.0109684598, 0.0347754955, -0.00717603415, 0.0218325406, 0.021415025, -0.032235615, 0.0147173936, 0.00373806152, -0.0118469801, 0.0243898183, -0.0146304118, -0.00376198161, -0.0167701747, -0.0186141971, 0.0172659736, 0.015161003, 0.00779360812, 0.0260076877, 0.00739348959, -0.0297653191, -0.0104117729, 0.0140128378, 0.028077865, -0.0253292266, 0.00723257242, 0.0157698784, -0.0262686349, 0.0062061823, -0.00895047188, -0.00729780924, 0.0196057949, 0.0135866245, 0.0239723027, -0.0186141971, -0.00354887499, -0.00859384425, -0.00637144875, 0.00665849, -0.0172224827, -0.00266383076, -0.000148141611, 0.00445349049, 0.0203538425, -0.0283388104, -0.000241647518, 0.010533548, 0.0196405873, -0.0261990484, 0.000323193352, 0.0161786955, 0.0106901163, 0.00321399351, -0.00748047186, 0.00486665592, 0.00738044223, -0.0186489914, 0.0113163888, -0.00429909676, -0.0162569787, -0.00938538276, -0.021989109, -0.017648695, 0.010203016, -0.021084493, 0.00380547275, 0.00327705569, -0.00853730645, 0.00584955513, 0.0081415372, -0.00801976211, -0.0117860921, 0.010142128, -0.00438172976, 0.00213867566, 0.0169876292, -0.00334229227, -0.00839813426, 0.00375328329, -0.00536680361, 0.0145695237, -0.00410556141, 0.00478402292, -0.00865473226, -0.0391420051, -0.0115251457, 0.000522980699, 0.00376415602, -0.00434258813, -0.00214846106, -0.0195188131, 0.0200059135, -0.00470573874, -0.00252031023, 0.0217629541, 0.00115577644, -0.000526786142, 0.0238331314, 0.0198841374, 0.00286823907, -0.0184054412, 0.0240766816, -0.0232068598, 0.0574778579, -0.0342188105, -0.0206843745, -0.0232242569, 3.53705109e-05, 0.0330184549, 0.0270862672, 0.0124819502, -0.0132908849, -0.0153610623, 0.02682532, -0.00351408217, -0.00723257242, 0.00604526512, -0.00969851855, -0.0193970371, -0.0141607076, 0.0202320665, -0.0218325406, 0.00982029364, 0.00948106311, -0.00281604985, 0.0162221864, -0.00614529476, -0.0173355583, -0.0179531332, 0.0100116553, -0.0028530173, -0.0191360917, -0.0113511812, 0.00292912661, 0.0330532491, 0.0223370381, 0.0140476301, 0.00653236546, -0.000448230305, -0.0140563287, -0.0196405873, -0.00481446646, -0.0216933694, -0.0494059063, -0.0215541963, 0.00303568, 0.0260076877, 0.00747612305, -0.0120818317, 0.0158655588, -0.0104726609, -0.00105248496, 0.0232242569, 0.0145521276, 0.0030596, -0.00517979171, 0.00999425817, 0.0491971523, -0.0165527184, 0.00299436343, 0.0273472145, -0.0212236643, -0.0392115898, -0.0299044922, -0.00432519149, -0.0121253235, 0.0212932508, -0.00512760272, 0.0101856198, 0.0182314757, 0.0239201132, -0.00709340116, -0.00679766154, 0.00140041392, 0.016909346, 0.0185098182, -0.0223892275, 0.0252944324, -0.00484925928, -0.0149696423, -0.00777186267, -0.0414731279, 0.0252596401, -0.0216063857, 0.0147782816, -0.0432127714, 0.013864968, -0.0399422422, 0.0031813751, -0.000966046413, -0.0319398753, 0.0207191668, -0.0215541963, 0.0134648494, -0.0197101738, 0.0217107646, -0.0112468023, -0.00826331228, -0.00823721755, -0.00205930439, 0.0292956159, 0.00368152303, -0.0128820688, 0.0234678071, 0.0147434883, 0.00968982093, -0.00182880147, 0.0203712396, 0.0412991643, 0.00187664165, 0.00615399284, 0.0046752952, 0.0134300571, -0.0275559705, -0.00679766154, -0.0031965971, -0.0171963871, 0.00290738116, -0.0245115925, 0.0196057949, -0.0277647283, 0.0163439605, -0.00240723323, 0.000513195177, -0.021536801, -0.00758050149, 0.0069368328, 0.00940277893, -0.00760659622, -0.00881999824, -0.00915922876, -0.0196057949, -0.00362933357, 0.00274211494, 0.0365673304, 0.00307482202, 0.017918339, 0.00954195112, -0.000624641136, -0.0244768, 0.0377154946, -0.00676286872, -0.00883739442, 0.00664979173, 0.0217107646, -0.00295522134, 0.00119600573, -0.00377720338, -0.00727606378, -0.00381199643, -0.0279386938, 0.016457038, 0.0149087543, -0.0157437846, -0.00524067972, 0.00580171496, 0.00588434795, -0.00869822316, -0.00569733605, 0.0044426173, 0.00186794344, -0.00571038341, 0.00576692214, 0.0219195224, -0.0170050263, -0.00216911943, 0.0232242569, -0.00299001415, 0.0191012975, -0.0265469775, -0.0236069784, -0.00465789856, -0.012508045, 0.0453699306, -0.00418601977, 0.0192230735, 0.0451611765, -0.0326357335, 0.00167114614, 0.00543638971, 0.00295522134, -0.00318789878, -0.00155263289, 0.0190143157, 0.00374241057, 0.0335751399, -0.0122557962, 0.0135692284, 0.011951359, 0.0189099368, 0.0152131924, 0.011890471, 0.00841118209, 0.0202668607, -0.0059060934, 0.0342536047, 0.0295913555, -0.0173703525, -0.00326835737, 0.00390332774, 0.015161003, -0.00224849069, 0.0152653819, -0.000711623405, -0.0162917729, 0.00502322381, 0.0099333711, -0.00267252908, 0.00655411137, -0.0206147898, -0.0230676886, -0.014030234, -0.00437738094, -0.00208104984, -0.00102584669, 0.00154828373, -0.00991597492, -0.000766530924, -0.00895047188, 0.00441652304, 0.0234678071, -0.0122297015, 0.00414905231, -0.00834159646, -0.0130560333, -0.0288433079, 0.0128385779, 0.00828940701, -0.018040115, 0.00195383839, -0.00368369743, -0.00696292752, -0.0166136064, -0.0223892275, 0.0209453218, 0.0265469775, 0.0186489914, -0.0228937231, 0.00616704, -0.00241593155, -0.0184228364, -0.00495363818, 0.000692052359, 0.000587673683, 0.00631925929, -0.00415340159, -0.0028943338, 0.0297827162, 0.00293347589, 0.029086858, 0.00981159601, -0.0132821873, 0.0145347314, 0.0265121851, 0.034618929, 0.00559730688, 0.0178661514, 0.00334011763, -0.0177269783, -0.00988988, 0.0171876885, 0.0143346721, -0.00237678946, -0.00320312078, -0.00491014682, -0.00255510304, 0.024128871, 0.00170593907, 0.00519718835, -0.00950715784, 0.0069977208, -0.000904071552, 0.0304959714, 0.00325096096, -0.00790668465, -0.00265730731, -0.0017505174, -0.0131343175, -0.00549727725, -0.0123253819, 0.00750221731, 0.00414687814, -0.000903527951, -0.015613311, 0.0288954973, -0.000847533112, 0.00394681888, -0.0122210039, 0.0041447035, -0.0152479857, -0.0141259143, -0.0172224827, -0.0292956159, -0.00150696712, -0.00710209925, 0.00233329833, 0.00779360812, -0.0081415372, 0.0186315943, -0.0152479857, 0.00679331226, 0.00223326893, -0.0114468616, 0.000163091681, -0.0179705285, -0.00478837173, 0.0178661514, -0.00173747, 0.0147869792, 0.0123079857, 0.00875041261, 0.00704121171, 0.013186506, -0.00167223345, 0.0135605298, 0.040464133, -0.00663674437, -0.0261468589, -0.0050623659, 0.00821112283, -0.00405989587, -0.00393812079, 0.0117686959, -0.00365977734, 0.0186141971, 0.0335403495, 0.000865473237, 0.00199624221, 0.000386527303, -0.000381906371, -0.00248334277, -0.0223544333, -0.00588869723, 0.0176834874, 0.00971591566, -0.0102813, 0.00406641932, -0.000606157409, -0.00339448173, -0.010594436, 0.00254857936, -0.0264425986, 0.0262860302, -0.00231807656, -0.020736564, 0.0147086959, 0.0132821873, 0.00817633, 0.0141259143, 0.00708470261, -0.00855035335, -0.00672372663, -0.0337317102, 0.0198145527, 0.0271036644, -0.00743263168, 0.000886675145, 5.47716227e-05, -0.0177356768, 0.00783275, -0.00569298724, -0.0163004696, 0.00977680273, 0.000688790577, 0.00976810511, 0.0144564472, -0.00420124177, -0.00271167117, -0.0016363532, 0.00602786848, -0.0209801141, 0.00588434795, -0.00210062088, -0.0251726583, 0.00987248309, -4.09428103e-05, -0.0138475718, 0.0147434883, -0.0109858559, 0.0107336072, -0.00710644852, 0.00972461328, -0.0345493443, 0.0116730155, 0.00651062, 0.00950715784, -0.00722822361, 0.0108292876, 0.0428996384, 0.00774141867, 0.0043991264, -0.00688464381, -0.0125515359, 0.0164918303, -0.0346537195, -0.0138301747, -0.0100203529, -0.0244941972, -0.000690421497, 0.00856340118, -0.00131886813, 0.0281474497, -0.0178052634, -0.0100812409, 0.00751091586, -0.0034684164, 0.0235721841, 0.0121340211, -0.00454917084, -0.00507106399, 0.00633230666, -0.00313136028, -0.00174616836, 0.0357670933, 0.0129864477, 0.00923751295, -0.00148848339, -0.0170920081, 0.0169789325, -0.00760659622, -0.00939408131, 0.00542769115, 0.0226501729, 0.000962784572, 0.00805455446, 0.00143846869, -0.0104030753, 0.00583650777, -0.00969851855, -0.00164722605, -0.0112815956, 0.0124384593, -0.00424038386, 0.025485795, -0.0117686959, -0.0128211807, 0.0258859117, 0.00207343907, 0.0143433698, -0.00354670058, 0.00379025075, 0.0118469801, -0.0230502915, -0.00476227701, 0.0632882714, -0.00810674392, -0.0155611215, -0.0151957963, 0.00931579713, 0.0161612984, -0.00361628621, -0.0112555008, -0.0123601751, 0.01302124, -0.00681505771, 0.033157628, -0.0324269757, 0.0135083403, 0.0187185761, 0.0104378676, 0.00968112238, 0.00374893425, 0.0291564446, 0.0215541963, 0.0068542, 0.0248943157, -0.0301306453, -0.0121427197, -0.011272897, 0.00452307612, 0.0146565065, 0.00618008757, 0.00977680273, -0.0312614143, -0.00722387433, 0.00624532439, -0.00915922876, 0.00932449568, 0.00698467344, 0.0217455588, 0.0108118914, -0.00889393315, 0.00096061005, -0.00371631584, -0.0245289896, -0.00507541327, -0.025816327, 0.00482751383, 0.0178661514, -0.0177008845, -0.00831115246, 0.000354180782, -0.00167766982, 0.0152392872, 0.013082128, 0.00881999824, -5.54256928e-07, 0.0301480424, -0.0241636634, 0.00775446603, 0.0305829532, 0.0048014191, -0.00389897847, -0.00317485142, -0.0263034273, -0.00451437803, -0.0116904117, -0.0245115925, -0.0130038438, 0.0053624548, -0.0211540796, -0.014152009, -0.0217107646, -0.0290346686, 0.0097072171, -0.00250291382, 0.00367934839, -0.00782405213, -0.0133865653, -0.00430779485, 0.0111772167, -0.0224414151, 0.00868517626, 0.00484056119, 0.0117686959, 0.0216585752, 0.0259554982, -0.0144825419, -0.00266383076, 0.00123840955, -0.00620183302, 0.00905485079, 0.00577562, 0.00777186267, -0.000973657356, 0.0236069784, 0.0124732517, 0.00769792777, -0.0312614143, 0.0130908256, 0.0112120099, -0.00104813592, 0.0163613576, -0.0182836652, -0.0127168028, 0.0331924185, -0.00899396278, -0.0224240199, 0.0178313572, -0.0262512378, -0.0280430708, 0.00444696657, -0.0176312979, 0.0142302932, 0.00972461328, 0.0011084798, -0.00782840047, 0.0048318631, -0.0123688737, 0.00717603415, 0.0223544333, 0.0104987556, -0.0124906488, -0.0191882811, -0.000540920766, -0.0279734861, 0.0130647309, 0.00624532439, 0.00268557644, 0.0231546704, 0.000976375537, 0.00994206872, -0.0196057949, -0.00466224784, 0.0325835459, -0.0181270968, -0.00318572437, -0.0144042578, 0.00878520589, 0.00568863796, 0.0181270968, -0.0106292292, -0.0150392279, -0.0124384593, -0.0183010623, 0.00848946627, 0.0127255, -0.0219543148, 0.0055625136, -0.0178835467, -0.0349494591, -0.0181792863, 0.00185707072, -0.00980289746, 0.0182662681, -0.0206495821, 0.00427735131, 0.00146782515, 0.0197449662, 0.0251378659, 0.0112641994, -0.0214846116, -0.0342014134, 0.000157791204, 0.00272689294, 0.0147521868, -0.000176818576, 0.0203016531, -0.00721517624, 0.0192926601, -0.00168201886, -0.00828940701, 0.0138388732, 0.00361193717, -0.00859819353, -0.0147608845, 0.0069977208, -0.0179879256, -0.0253292266, -0.0258685164, -0.00707600452, -0.00196797308, 0.0141085181, -0.00405772123, 0.00197014748, 7.24398924e-05, -0.00474923, 0.00142868317, -0.018822955, 0.00017491584, -0.00413817959, -0.032914076, -0.0115860337, 0.00476227701, 0.0166831929, -0.00845467299, 0.0157611798, 0.0124819502, -0.0140824234, 0.0268949065, -0.00958544202, -0.0124210631, 0.00174073188, -0.00235069473, -0.0115860337, -0.0260250848, 0.0245985761, 0.0368456729, -0.0144216539, 0.0311918277, -0.012177513, 0.0078414483, -0.00574517623, 0.00438390439, 0.00896786805, -0.015778577, -0.00494494, 0.00109923794, 0.0276951436, 0.00530156726, -0.0160308257, -0.00192448194, -0.0102986963, 0.00886783842, -0.00158633851, 0.0152827781, 0.000106621192, 0.00280735153, -0.0174921267, 0.00925490912, 0.03200946, -0.018161891, -0.0179531332, 0.0183880441, 0.00202994794, -0.00488840137, -0.00214628666, -0.0251378659, 0.0162134878, -0.0227197595, -0.00137758115, -0.00684985099, -0.0199363269, 0.0229111202, -0.00718038343, 0.0046013603, -0.00207343907, -0.00378372706, 0.00860689208, -0.00118839473, 0.00462745456, 0.0160395242, 0.00357496971, 0.0170920081, -0.0073413006, 0.0162569787, 0.00287258811, -0.00903745368, -0.0061192, -0.00264426, 0.0020353843, 0.00985508692, -0.0129951453, 0.00233112392, -0.00869822316, 0.0158046708, 0.0209627189, 0.0150218317, 0.0114120692, -0.0309308823, -0.00221369788, -0.00681505771, -0.0114294654, 0.0165701155, 0.0158655588, 0.00519283907, -0.0155437253, -0.0219369195, 0.019275263, -0.000849707692, -0.00682810508, 0.0438390449, 0.0155785177, 0.0141607076, 0.0106901163, 0.00375980698, -0.00451002875, 0.00651931809, -0.0192578658, 0.00333141955, 0.0108988741, 0.0055625136, -0.0137431929, 0.00271819485, -0.00184076151, 0.00843727682, -0.00358366803, 0.00729780924, 0.0242680423, -0.0233808234, -0.0121427197, 0.0014069376, 0.018944731, -0.00874606334, -0.00765008712, -0.00379459979, 0.00419036904, 0.0114381639, 0.0254683979, 0.0168136656, -0.0213280432, -0.0250160899, -0.00661064964, -0.00180488126, 0.0133952638, -0.0106640216, 0.000314766949, -0.00778925885, -0.00043436751, 0.00664544245, -0.00192774367, -0.0196579844, 0.0274168, 0.00408164132, 0.0151349083, -0.000149500716, -0.0119687552, 0.00353582785, 0.00276168599, 0.0155872162, 0.000160781216, -0.00486665592, 0.0291564446, -0.00092907896, -0.0154741388, -0.0157176889, -0.018370647, -0.0193622448, 0.0304089878, 0.012281891, -0.0132126007, -0.0103073949, 0.0126211215, -0.00619313493, 0.00865908153, 0.0255031902, -0.015221891, -0.0209801141, 0.014378163, -0.00161243312, -0.0023789641, 0.0129690506, -0.00905485079, -0.0159090497, -0.0298523027, -0.0110902349, -0.013864968, 0.0186141971, 0.0202494636, 0.0138823641, 0.0173268598, 0.0168223642, -0.0148043763, 0.00136127195, -0.0223022439, -0.0330880396, 0.00200059125, -0.00415557623, 0.0188403521, -0.0208931323, 0.0128820688, -0.0154393464, 0.00831550173, 0.0173964463, -0.00517979171, 0.0261816513, 0.000662152248, 0.0142389918, -0.00126885332, 0.0158220679, -0.0023376476, -0.000855687715, 0.00504496926, 0.0104639623, 0.0178487543, 0.0037119668, 0.00182336499, 0.00135583559, -0.0022169596, -0.0118208854, -0.0126994057, -0.00655411137, -0.0108553823, 0.00952455401, -0.0151001159, -0.00474053156, -0.00439695176, 0.0179009438, 0.0058626025, -0.000862211396, 0.00694553135, 0.00314658228, 0.0340796374, 0.0114555601, 0.00360758812, 0.0146912988, 0.00229198183, 0.00419906713, 0.0124732517, -0.00637144875, 0.0155872162, -0.00086927868, -0.00686724717, 0.015778577, -0.00815458409, 0.000557773572, -0.0245637819, -0.0172833689, -0.00191795826, -0.0206843745, 0.0110815363, 0.0108292876, 0.0167701747, -0.00301610888, 0.00399031, 0.0175791085, -0.0208061505, -0.00110304344, 0.00665849, 0.00061159383, -0.0316093415, -0.000711623405, -0.00701946625, 0.00350103481, -0.00200167857, -0.00624532439, 0.00310526579, -0.031331, -0.0248769186, -0.0128211807, -0.0248595215, 0.0221456755, 0.00657585682, -0.00324661192, -0.00505366782, -0.00511890417, 0.00346406735, 0.00909834169, 4.56656708e-05, -0.00506671518, 0.0215715934, -0.00426212931, 0.00987248309, 0.0346711166, -0.00420559105, 3.52006209e-05, -0.0128907664, -0.0245637819, 0.0111946138, 0.00776751339, 0.0258685164, 0.0333663858, -0.0179009438, -0.0050623659, 0.0138214771, 0.00958544202, 0.0163265653, -0.00991597492, -0.0161960907, -0.0326009393, 0.031000467, 0.00568428868, -0.00982899219, 0.00680201035, -0.00679766154, -0.0395247266, -0.0116382223, -0.010942365, 0.00420124177, -0.0304611772, -0.000119192839, -0.00308352, -0.00502322381, -0.00797627, -0.00167223345, -0.0201276895, -0.0234678071, -0.0156915952, 0.000680636, 0.0137518905, 0.0196405873, -1.72690306e-05, 0.0161786955, -0.0172485765, -0.0232764445, -0.0128124831, -0.000804042036, -0.033940468, 0.0186489914, 0.00751961395, 0.0414731279, 0.0192056764, 0.00302263256, 0.0144825419, 0.00409033941, 0.00212019193, -0.0122731933, -0.015326269, 0.0161439031, -0.0116556194, -0.00729346, -0.0020940972, 0.0119426604, -0.00419471832, -0.00568863796, 0.012342779, -0.0118817734, -0.0253814161, 0.00294869766, 0.0108031929, 0.0402205847, 0.00562775042, -0.0179357361, -0.000682266895, -0.0335229523, -0.00543204043, 0.0177443754, 0.0243202318, -0.000969851913, 0.000387342763, 0.0300436635, -0.00873736478, -0.030774314, 0.0136301154, -0.00155154557, 0.00717168488, 0.0186315943, 0.00941147748, 0.00942887366, -0.0193970371, 0.0159612391, 0.0391420051, -0.0219717119, 0.012342779, 0.0124384593, 0.00232677464, 0.0063931942, 0.0111250272, -0.0134648494, 0.00772402203, 0.00349016208, -0.00221369788, 0.00465354929, 0.0264599957, -0.0044295704, -0.0198667422, 0.0207887534, -0.00902875606, 0.0157002937, 0.019049108, 0.000117493968, -0.0317659117, -0.000255102583, 0.00797192194, -0.0308612958, 0.0180053227, -0.00544943707, -0.0042860494, 0.0063236081, -0.0276603494, -0.0236765631, 0.00257902313, 0.00444044312, 0.000164994417, 0.00333141955, 0.00437955558, -0.00448393403, 0.00905485079, 0.0100290515, 0.00774576794, -0.00792408176, -0.0209453218, -0.0144216539, 0.0163613576, 0.000808934739, -0.00876345951, 0.02266757, 0.008485117, -0.00729780924, -0.0139954416, 0.00732825324, 0.0135083403, -0.0074239336, -0.00475357892, -0.014212897, 0.0216237828, 0.00902875606, 0.0217107646, 0.00534940744, 0.00357062067, 0.0289650839, 0.00523633044, -0.0198145527, 0.00354670058, -0.0304089878, -0.011272897, 0.0188751444, 0.0276603494, -0.0172311794, -0.00331837218, 0.00414035423, -0.0246333685, 0.00718038343, 0.00706730643, -0.00627141912, 0.0158916544, 0.0135170389, -0.0126211215, 0.0114120692, -0.0032379136, -0.0252770372, 0.00852425862, -0.00376198161, -0.00756310532, -0.0131430151, -0.0014471669, -0.012055737, 0.00129494793, 0.0100290515, 0.0107857967, 0.00671067927, -0.0337838978, 0.0174921267, 0.00697162608, -0.0102291107, 4.42725977e-05, -0.0196057949, -0.0139693469, 0.00962893292, 0.00841118209, -0.0130647309, -0.00660195155, -0.00228980719, -0.0264078062, 0.0178487543, 0.0118295839, -0.00540159643, 0.00212671561, 0.019049108, 0.00706730643, -0.021084493, 0.029208634, 0.00221152324, 0.005018875, 0.00542769115, 0.00365107926, 0.0166831929, 0.0134561509, -0.00272689294, -0.0114555601, 0.0089026317, -0.00643233629, -0.00111445982, -0.00306394906, 0.0215020087, -0.00233112392, 0.0144651448, -0.0244246107, 0.0140650272, -0.0137518905, -0.00489709945, 0.000999208423, 0.00612789812, 0.0154567426, 0.0156307071, -0.0133604705, -0.00588869723, 0.00454917084, 0.012855974, -0.0251030717, 0.0376459099, 0.00730650732, 0.00313353492, 0.0226501729, -0.00848076772, 0.0111511219, 0.0092462115, -0.00511020608, -0.0102117136, -0.000163227596, 0.0152914766, 0.00710644852, 0.00882434752, -0.0127776898, -0.01042917, 0.000962240971, 0.00577562, 0.00946366694, -0.0264773909, -0.0139432522, -0.00798931811, 0.0249465033, 0.00104269956, 0.00801106356, -0.0054059457, -0.00225718901, -0.0129081635, -0.00916792732, 0.0118382815, -0.00951585639, -0.0192056764, -0.0224066228, 0.00870692171, -0.0128124831, 0.0181444939, 0.0155089321, 0.0151262106, -0.00955934729, -0.0067802649, -0.00875476189, -0.00815023482, -0.00575387478, 0.00352712953, 0.0206843745, -0.00121122762, 0.0326531306, -0.0407772698, 0.00645408174, 0.00404249923, 0.00263556163, -0.02085834, 0.0342362076, -0.00827201, -0.00360541348, 0.00105900865, 0.00939408131, -0.00263338699, -0.00716733607, -0.020406032, 0.0136214178, 0.00856774952, 0.0148043763, -0.0292434264, -0.0130125424, -0.0104987556, 0.0281126574, 0.00539724762, 0.0131082227, 0.0107944952, 0.00541899307, -0.0183532517, -0.00012347399, 0.0157698784, -0.0233808234, -0.00125145691, -0.00792843, -0.00692813471, -0.0164048485, -0.0109597612, -0.00745437713, 0.052189339, 0.0121340211, -0.00171137543, -0.00874606334, -0.00700641889, -0.0343057923, 0.0166136064, -0.0108988741, -0.00809804536, 0.00594958477, -0.00262686331, -0.0109597612, 0.00981159601, 0.0149087543, 0.000364238105, -0.0100029567, -0.00584520586, 0.018492423, 0.0223892275, -0.0268427171, -0.00312266219, 0.0103508858, 0.0221804697, -0.0294347871, -0.0139084589, -0.0213454403, -0.00531461462, 0.0214498192, 0.00640189229, -0.0304785743, -0.00396856433, -5.82373214e-05, 0.00338578341, -0.0184054412, -0.00115142728, -0.0152479857, 0.018492423, -0.00501017645, -0.0173094645, -0.0172311794, -0.00706730643, -0.0104900571, 0.0225283988, -0.00239853514, -0.00398378633, 0.00967242382, -0.000166761252, -0.00524937781, 0.00870692171, 0.00914183259, -0.00727171451, 0.00656280946, -0.00908964314, -0.0022169596, 0.00918532349, 0.0121514183, -0.0108640809, 0.0368456729, 0.00688899262, -0.00338360877, -0.00541464379, 0.00371849048, 0.0118382815, 0.0239897, 0.0101595251, -0.00701511698, -0.00340317981, 0.00434693694, -0.0101334304, 0.0127081042, 0.0118121868, -0.0349320658, -0.0167440791, 0.0280952603, -0.0182662681, -0.00339230709, 0.00482751383, -0.00191904546, -0.0160134286, 0.0175443161, 0.00296391966, -0.0022811091, -0.00932449568, 0.00655846, -0.000907333393, 0.0332620069, -0.0152305886, -0.0135170389, -0.0180227179, 0.0195883978, -0.0211192854, -0.00251596118, -0.00241810596, 0.0111598205, -0.00908964314, 0.0168832522, -0.00230068015, -0.0163265653, -0.0235026, 0.0117078088, -0.00191143458, 0.0174312387, 0.01003775, -0.0312614143, -0.000644755783, -0.0043012714, -0.0202494636, 0.00205278071, 0.0330706462, -0.0106118321, 0.00333359395, -2.2459084e-05, -0.0139519498, -0.000508030585, 0.00313570956, 0.0211192854, 0.00549292797, -0.00946366694, 0.0190665051, -0.0193796419, 0.00951585639, 0.0304089878, -0.00622792775, 0.0273820069, 0.00782840047, 0.0102726016, 0.00216042111, -0.0061192, -0.00710644852, 0.0035988898, -0.0106118321, -0.0168919489, 0.0175530147, 0.00584955513, -0.00548423, 0.00492754346, 0.0105509451, -0.00984638836, -0.0059060934, 0.00695422944, -0.00996816345, -0.0150827188, -0.0189621262, 0.00635840138, -0.00964633, -0.0133865653, 0.00411208486, -0.00786319375, -0.00591914076, 0.00627576793, -0.0267035458, -0.0224240199, -0.0045317742, 0.0198841374, 0.019623192, -0.00556686288, -0.00236156769, 0.012568933, -0.00644973246, -0.0164918303, 0.014317275, -0.00262251426, -0.00553641887, -0.0317311175, -0.00651496928, 0.00904615223, -0.0149174528, 0.000950824528, 0.0153349675, -0.0137431929, 0.00254205568, -0.00564949587, -0.0073413006, -0.00319007342, -0.0169876292, 0.0359758511, 0.00250508823, 0.020632185, 0.0121601159, 0.0128733702, 0.0131082227, 0.0151957963, -0.0252074506, 0.0104726609, -0.0215715934, 0.0102465069, -0.0170833096, 0.0071542887, -0.0114120692, -0.00682810508, 0.0324443728, -0.0257815327, -0.0143520683, 0.00615399284, -0.0214498192, -0.000263257156, -0.0141781038, 0.00571038341, 0.0282518286, -0.00510585681, 0.000201282324, 0.0155872162, -0.0262512378, -0.0186663866, 0.026373012, -0.00125798059, -1.21469329e-05, -0.00782840047, -0.00366195198, 0.00580606423, -0.00399031, -0.00441869721, 0.0125515359, -0.0160569195, -0.017361654, 0.00382939284, 0.0176747888, -0.00934189186, -0.0300088692, 0.0109945545, -0.0494059063, -0.0140998196, 0.00446653785, 0.011664317, -0.0116034299, 0.00694553135, 0.00519283907, 0.0115338443, -0.00394029496, -0.0175617132, 0.00278343144, 0.0171615947, 0.0141607076, -0.0137431929, -0.0103247911, -0.0131952045, 0.0125515359, 0.0131778084, -0.00512760272, -0.0314179808, 0.00237244042, 0.00832854863, 0.00254857936, -0.0103073949, 0.0222326592, 0.0190839022, 0.0172920674, -0.0402553789, -0.0281126574, -0.00226806174, -0.00352712953, -0.00552337198, -0.00340100517, -0.00838943664, 0.00214737398, -0.0158916544, 0.0267383382, 0.0124123646, 0.025033487, 0.00485795783, -0.00576257287, -0.0211018901, 0.0136910034, -0.00561905233, 0.00883739442, 0.00771097466, 0.0128820688, -0.00574082742, -0.00550162606, -0.0212758537, -0.0174486358, -0.0190317128, -0.0126211215, -0.0126646133, -0.0109684598, 0.00837638881, 0.00910703931, -0.0112815956, -0.0138997603, 0.00983769074, 0.0119339619, 0.0048014191, 0.0064671291, 0.00792408176, 0.00492754346, -0.00869387388, 0.0259033088, -0.00616704, -0.00234417105, 0.0105509451, -0.0190317128, -0.0272254385, 0.0177617725, -0.00462310575, -0.0114555601, 0.000350647111, -0.000294652302, 0.0333141945, 0.00602786848, -0.0101334304, 0.0200059135, 0.00503192237, 0.00393377151, -0.00273124198, 0.00965502765, -0.000344123458, 0.00507976254, -0.0225805882, 0.0203538425, -0.0331054367, -0.0272950251, -0.0133952638, -0.000391148234, 0.00122427486, -0.0197797604, 0.0178835467, -0.0157524832, 0.00138301752, 0.0273298174, 0.0190317128, -0.0261468589, -0.0078849392, 0.00974201, -0.00880260207, 0.0243376289, -0.0221282803, 0.000759463641, 0.00928100385, -0.0102117136, -0.00959414057, 0.00723257242, -0.0133691691, 0.00374675961, 0.0111424243, 0.0195362102, -0.00739348959, -0.00115034007, 0.00224414165, -0.0219369195, 2.28498247e-05, -0.0143955592, -0.0100986371, -0.0199711211, -0.00559730688, -0.000681179634, 0.00355539867, -0.0118556786, -0.0107162111, 0.000634970318, 0.0122992881, 0.00547553133, -0.0136127193, 0.0166397, -0.0154741388, -0.0232938416, -0.0153001742, 0.00100355747, -0.00168962986, 0.0113946721, -0.00782405213, 0.00972461328, -0.00210062088, -0.0122470986, 0.0156220086, 0.00568863796, 0.00541899307, 0.020406032, 0.019623192, 0.00160917128, 0.00682375627, 0.0007649, 0.00584085705, 0.00618008757, -0.0196057949, 0.00703686243, -0.00839813426, -0.00132213, -0.00952455401, 0.019049108, 0.00221043592, -0.00592349, 0.0178835467, -3.59481273e-05, -0.0126559148, -0.0145695237, -0.026947096, 0.00964633, 0.0116208261, 0.0161526, 0.000831223966, -0.00849816389, -0.0158568602, 0.00606701057, -0.00489275064, -0.0187185761, 0.0126211215, 0.0182662681, -0.0158916544, 0.00235286937, -0.0112033114, 0.0139780445, 0.00505801663, -0.0199015345, -0.00278778048, 0.01639615, -0.00795452483, 0.010655323, 0.0142476894, -0.03200946, -0.0150392279, -0.0143085774, -0.00607136, 0.00808934774, -0.00188533985, 0.024581179, -0.000365053565, 0.000907877053, 0.0161091089, -0.000501506962, 0.015552423, -0.00347494, -0.00652801665, -0.0177269783, -0.0238679238, 0.0164309442, 0.0233112387, -0.00408816477, -0.00650192192, -0.00507106399, -0.0145173343, 0.000539018, 0.00828940701, 0.0174660329, 0.0213802326, 0.0112033114, 0.0230850838, -0.0164309442, -0.00971591566, 0.00986378547, 0.0235199947, -0.0191360917, 0.0129429558, -0.0192230735, 0.0100638447, 0.00113837991, -0.0127081042, -0.00842422899, 0.00339013245, -0.00714124134, 0.0229633097, 0.0138823641, 0.0140128378, -9.42534e-05, 0.02266757, 0.00875041261, 0.0244941972, 0.000225474258, 0.0145260328, 0.00383374188, -0.0123514766, -0.00552337198, 0.0243202318, -0.00908094551, 0.0202146713, 0.00131016993, 0.0206147898, 0.0233634282, 0.0238679238, -0.00955934729, 0.00757180341, -0.0246507637, 0.00418384559, 0.00178639765, 0.00912443642, -0.00853295717, 0.0143868616, -0.00187337981, 0.00811544247, -0.0184750259, -0.0415775068, -0.0115860337, 0.00665414054, 0.00784579758, -0.0159786362, 0.00310744019, -0.0301306453, 0.00542769115, -0.0122123053, -0.00269644917, -0.0310352612, 0.00955064874, -0.0235373918, 0.0161352046, 0.0217281617, 0.0122210039, 0.0145347314, 0.00524067972, 0.00805890374, 0.002535532, -0.00311831292, 0.0458918251, -0.00579736568, -0.00403162651, 0.000124425365, -0.00263773627, -0.0200928953, 0.000543095288, 0.0136736073, 0.0100986371, 0.000260267145, 0.0152392872, -0.00533636, -0.0231894627, -0.0180575121, 0.00986378547, 0.000199651404, 0.0253292266, -0.00981159601, -0.0023224256, -0.0184402335, 0.0103160925, 0.0135518322, 0.0355409384, -0.0151783992, 0.00283127162, -0.0186141971, 0.011664317, 0.013082128, 0.0289824791, -0.0096028382, -0.00761529431, 0.0146999974, -0.00479272101, 0.0175965056, -0.0130299386, -0.0249639, -0.00803715829] |
07 Jan, 2025 | Python String upper() Method
07 Jan, 2025
upper() method in Python is a built-in string method that converts all lowercase letters in a string to uppercase. This method is simple to use and does not modify the original string; instead, it returns a new string with the modifications applied.
Example:
Python
s = "learn python with gfg!"
res = s.upper()
print(res)
OutputLEARN PYTHON WITH GFG!
Explanation:The upper() method converts all the lowercase letters to uppercase and returns a new string.The original string ‘s’ remains unchanged.Table of Content
Syntax of upper() methodExample of upper() method Frequently Asked Question on upper() Method Syntax of upper() method string.upper()
ParametersThe upper() method does not take any parameters. Return TypeThis method returns a new string in which all lowercase characters in the original string are converted to uppercase. If the original string has no lowercase letters then it returns the string unchanged.Example of upper() method1. Standardizing case for comparisonLet’s consider a scenario where we want to compare two strings without considering their case. The upper() method can help us standardize both strings to uppercase before comparison.
Python
s1 = "Python"
s2 = "PYTHON"
# Using upper() for comparison
res = s1.upper() == s2.upper()
print(res)
OutputTrue
ExplanationThe upper() method converts both s1 and s2 to uppercase.The comparison s1.upper() == s2.upper() evaluates to True as both strings become “PYTHON”.2. Handling mixed-case stringsupper() method is also very useful when we have a string with a mix of lowercase and uppercase letters, and we want to convert all characters to uppercase.
Python
# Converting mixed-case string to uppercase
s = "PyThoN is FuN"
res = s.upper()
print(res)
OutputPYTHON IS FUN
ExplanationThe upper() method processes the string ‘s’ and converts all lowercase letters to their uppercase equivalents.Non-alphabetic characters like spaces remain unchanged.Frequently Asked Question on upper() Method Q1. What does upper() method return? The upper() method returns a new string with all lowercase letters converted to uppercase and leaving other characters unchanged.
Q2. Does the upper() method modify the original string? No, upper() method does not modify the original string but it returns a new string instead.
Q3. Can the upper() method convert non-alphabetic characters?No, the upper() method only affects alphabetic characters. Non-alphabetic characters such as digits, spaces, and symbols remain unchanged.
Q4. Is the upper() method locale-sensitive?No, the upper() method is not locale-sensitive. For locale-specific behavior, consider using the locale module.
Q5. Can the upper() method handle empty strings? Yes, upper() method can handle empty strings and will return an empty string if called on one. | NLP/Natural Language Processing (NLP) Tutorial/AI ML DS - Projects/30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated]/Does Artificial Intelligence Require Coding?/Artificial Intelligence – Boon or Bane/Artificial Intelligence Examples/Agents in Artificial Intelligence/What are Diffusion Models?/ML | Common Loss Functions/Loss Functions in Deep Learning/Kaiming Initialization in Deep Learning/Swift - Initialization/Swift – If Statement/6 Best iOS Project Ideas For Beginners/Swift Programming Language/Introduction to Visual Programming Language/What is D Programming Language: Usage and Applications/Best Programming Languages for Data Science in 2024/5 Best Languages for Competitive Programming/MEX (Minimum Excluded) in Competitive Programming/Rearrange Array to maximize sum of MEX of all Subarrays starting from first index/Minimize moves to segregate even and odd by swapping adjacent elements/Minimum elements to be removed such that sum of adjacent elements is always even/Maximum sum such that exactly half of the elements are selected and no two adjacent/Maximum length subsequence such that adjacent elements in the subsequence have a common factor/Longest subsequence such that difference between adjacents is one/Longest Increasing Subsequence using Longest Common Subsequence Algorithm/Longest Common Subsequence (LCS)/Minimum insertions to form a palindrome with permutations allowed/Print longest palindrome word in a sentence/Python String split()/Python String strip() Method/Python String rindex() Method/Python String istitle() Method/Python String isdigit() Method/expandtabs() method in Python/String capitalize() Method in Python/Python String upper() Method | https://www.geeksforgeeks.org/python-string-upper/ | NLP | Python String upper() Method | Artificial Intelligence – Boon or Bane, AI ML DS - Projects, Longest Common Subsequence (LCS), Rearrange Array to maximize sum of MEX of all Subarrays starting from first index, Python String istitle() Method, MEX (Minimum Excluded) in Competitive Programming, Swift - Initialization, Minimum insertions to form a palindrome with permutations allowed, Longest Increasing Subsequence using Longest Common Subsequence Algorithm, 6 Best iOS Project Ideas For Beginners, ML | Common Loss Functions, Python String strip() Method, Python String isdigit() Method, Artificial Intelligence Examples, Python String split(), expandtabs() method in Python, Longest subsequence such that difference between adjacents is one, What is D Programming Language: Usage and Applications, 30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated], Swift – If Statement, Natural Language Processing (NLP) Tutorial, Python String rindex() Method, Loss Functions in Deep Learning, Python String upper() Method, Minimize moves to segregate even and odd by swapping adjacent elements, Maximum length subsequence such that adjacent elements in the subsequence have a common factor, Does Artificial Intelligence Require Coding?, Print longest palindrome word in a sentence, Best Programming Languages for Data Science in 2024, String capitalize() Method in Python, NLP, 5 Best Languages for Competitive Programming, Maximum sum such that exactly half of the elements are selected and no two adjacent, Swift Programming Language, Minimum elements to be removed such that sum of adjacent elements is always even, Agents in Artificial Intelligence, What are Diffusion Models?, Kaiming Initialization in Deep Learning, Introduction to Visual Programming Language | GeeksforGeeks | [-0.00702303136, 0.0298567973, -0.00430026976, 0.0521558151, 0.0399991944, 0.0248301607, 0.0306589194, 0.00218689884, 0.00983046181, -0.0676991716, -0.0342239104, 0.0435998365, 0.00395268342, 0.0123526929, -0.0268978551, 0.0368263535, -0.00938483793, 0.0247588605, 0.00203204458, -0.0149283987, 0.000684032566, -0.00178026722, -0.0383593, -0.0311401933, 0.0159444213, 0.0187340267, -0.00866292696, 0.0138945514, 0.0425303392, 0.00107562449, 0.00744637428, -0.0189301, 0.00129899348, -0.00673337607, -0.0259531327, -0.0260422565, -0.00388583983, 0.0267196056, -0.0359529294, -0.0180299394, 0.0132617652, -0.00103663246, 0.0468439758, 0.0198926479, -0.0185379516, 0.0412825905, 0.00161427236, 0.0211582202, -0.00488849357, 0.0117288195, -0.0278960522, -0.00840892177, 0.00380339939, -0.0111495079, 0.0209799707, 0.0105078099, 0.00812372286, -0.0126735419, -0.00718345633, -0.0671287775, 0.0206056461, -0.0268800296, 0.00502218073, -0.00547226053, 0.00517369248, 0.0297141969, 0.0206234716, -0.0211760439, 0.0692677647, -0.019286599, 0.00615406502, 0.0619595386, 0.0187518504, -0.0153383724, -0.0048751249, -0.0223703161, 0.020926496, -0.0353825316, -0.0212473441, 0.0287694745, 0.0118714189, 0.000564828224, 0.029874621, -0.00623873342, 0.0069651003, 0.0315323435, 0.0114168823, -0.0138499886, -0.00399278942, 0.0529401116, 0.00106782606, 0.0400348455, 0.0130478656, -0.022495091, -0.0232080892, -0.00704976916, -0.016639594, 0.0103384731, -0.0302311201, 0.0157929081, 0.00210780068, -0.000108690438, -0.000667878718, -0.0482343249, -0.000734165253, -0.00236626249, -0.00222254894, 0.0258105323, -0.0194826741, 0.00537868, -0.00682695722, -0.0391435958, 0.0013179325, 0.04987422, -0.0199817717, -0.0122903055, -0.0164256953, 0.00534302974, 0.0190905258, 0.0198035222, 0.0353290588, 0.0332970135, 0.00935810059, 0.0385375507, -0.0562199019, 0.0294468235, -0.00544106681, 0.0161672328, 0.011345583, -0.00105501444, 0.0117733814, 0.00552127929, -0.00391034922, -0.00759788649, -0.0159622449, 0.000754775363, 0.00262695248, 0.0308728199, 0.0172010791, 0.0175397545, -0.0184666514, 0.0199104734, 0.0272721779, 0.00497761834, 0.00458992552, -0.0196965728, 0.0476639234, 0.0356677324, 0.0239923876, -0.02670178, -0.00310377, -0.0468439758, 0.0297854971, 0.00027238758, -0.00671109511, 0.0015117788, 0.0137341265, 0.00791873503, 0.00658632, 0.0296785478, -0.0181368906, 0.00427576061, 0.0370759033, -0.023618063, -0.0157750845, 0.0368976519, 0.0274682529, 0.00381008373, -0.00802568533, 0.0229407139, 0.00540541718, -0.0104721598, -0.00994632393, -0.0219068676, -0.0371828526, -0.0147234118, 0.0134845767, -0.0121566178, -0.0136004398, 0.0241528116, -0.0503376685, -0.0396783464, 0.0131815532, 0.00869412068, 0.0359885804, 0.00363629055, 0.00551682292, 0.0311758425, 0.0135380523, 0.00181146082, -0.00630557723, 0.00537868, 0.0186270755, -0.0344556347, 0.0120585812, 0.0142421378, -0.0178873409, 0.0301063452, 0.0195539743, 0.0221920665, 0.00923332572, -0.0182171017, -0.0417460389, -0.000725252787, 0.0470222272, 0.0123794302, -0.00550345425, -0.00313719176, 0.0154631473, 0.0167287178, -0.0100800106, -0.00369644957, -0.0221029427, 0.0223881416, 0.00179029373, 0.00715226261, -0.0356142558, -0.00811035372, -0.0104008606, -0.0164078698, -0.020409571, 0.0235645883, 0.0118357688, -7.15087e-05, -0.040854793, 0.00320626353, -0.0425303392, 0.0100354487, -0.0136004398, 0.00930462591, -0.00237963116, 0.0348477848, 0.00134912611, 0.00175687193, 0.00837772805, 0.000396605203, -0.000723024656, 0.0046434, -0.0318888426, 0.0582876, 0.0376106501, 0.0168624055, 0.0262383316, -0.0304806698, 0.0263631064, 0.0356499068, 0.0189657509, 0.0259353071, -0.0562555529, 0.0129052661, -0.0047548064, -0.0144025618, 0.000878435967, 0.0517636649, -0.0350260325, -0.00617634645, -0.0309262946, -0.0164346062, -0.0154987965, -0.0167643689, 0.00448520388, 0.0416747406, 0.0193935484, -0.000601592183, 0.00381899625, 0.000248435274, 0.0110603832, -0.00241305307, -0.0367194042, -0.0104275979, 0.0176377911, -0.000565663737, -0.0164435189, 0.00395045523, -0.00395268342, 0.0160602834, -0.0259174816, -0.00412202, 0.024741035, -0.0250797085, 0.0194292, -0.0123170428, 0.0430294387, -0.00219358341, 0.0423877388, -0.0180477649, -0.0548295565, 0.00319957919, -0.00767809851, 0.00881889556, 0.0150442608, 0.00899714511, 0.0115238326, 0.0173525922, 0.00610059034, 0.0408904441, -0.00105557148, -0.0141084502, -0.0221029427, 0.0128250541, -0.0284129754, -0.0203026216, -0.0398209468, 0.0260422565, -0.031550169, -0.00773602957, 0.0185557771, 0.0153116351, 0.0115327444, 0.00590897212, 0.0455605797, -0.0429937877, -0.00916202553, 0.0225307401, 0.00680022, -0.0204986967, 0.0378958508, 0.0258105323, -0.0474500246, -0.0100710988, -0.00565496646, 0.0122368308, 0.0130656911, 0.0050845677, 0.0681982711, -0.0242241118, -0.00589560345, 0.0215860177, 0.026060082, -0.017076306, -0.0113634076, 0.031799715, -0.0262383316, 0.0300350469, 0.00270270859, 0.00794992875, -0.0502307191, -0.0289655495, 0.0124774668, 0.00892138947, 0.00926897582, -0.00374101195, -0.03584598, -0.0177714787, 0.0255075078, 0.0123259556, -0.0162830949, 0.0284842756, -0.0184666514, 0.0467013791, 0.000340623723, 0.0118981563, 0.0535461605, -0.00588223478, 0.0139747635, -0.0384305976, 6.15866084e-05, 0.0336178616, 0.0044740634, 0.00717008766, -0.0101334862, 0.00427576061, 0.0183775276, -0.0145362495, -0.0349725597, -0.051799316, 0.0189479254, -0.0160424579, 0.012949829, -0.0314432159, -0.0224237908, -0.0342239104, 0.007758311, -0.0283416752, 0.0212829933, -0.0086762961, -0.0169247929, 0.0404269956, 0.0193400737, 0.0112297209, 0.0102849985, 0.00917093828, 0.00107451051, 0.000444788282, -0.0293220486, 0.0546156578, -0.0238319617, -0.0470578782, -0.0135826143, 0.0424946882, -0.0329405144, -0.0286981743, 0.0257392321, -0.0444554351, -0.0323701166, 0.00361178117, -0.0203739218, 0.0110603832, 0.00477708736, 0.018484477, -0.00934918784, -0.0369689539, -0.0291794483, -0.00182594371, 0.00233952515, -0.0499455184, -0.013671739, -0.0125220297, 0.0117020821, -0.0229763649, -0.00896595139, 0.0343665108, -0.0162207074, -0.0433502868, -0.00215124898, 0.0150264353, -0.0313719176, 0.0271295793, 0.0269869789, -0.010908871, 0.0558990538, 0.0143490871, 0.018484477, -0.0120585812, 0.00856934581, -0.00593125308, 0.0301598217, 0.0331900641, -0.0158998575, -0.00142154, -0.0205165204, -0.0216394924, 0.00698738173, 0.025578808, -0.0167019814, -0.0443128347, 0.00833762158, -0.0214968938, 0.0035204282, -0.0504089668, -0.0117555568, 0.0166930687, -0.00235735, 0.0081994785, -0.0371472, 0.0515854135, 0.0177803915, 0.010908871, 0.0293755233, 0.00292774849, 0.0141262757, -0.0172723792, 0.0257392321, 0.0268978551, 0.0151690356, -0.00798112247, 0.00348923448, 0.01543641, 0.0304806698, 0.0188766252, 0.0165059064, -0.0148214484, 0.0324592404, -0.0181814525, 0.055613853, -0.00515141152, 0.0169069674, -0.0327800885, -0.0231011398, 0.0202134978, -0.00798557885, -0.0357390307, -0.0363450795, -0.00228605024, -0.00391703332, -0.0106949722, 0.0116396947, 0.0306232702, 0.0444910824, -0.00638133334, 0.0351686329, 0.0117020821, 0.00268934, -0.0248836353, -0.0179942902, -0.0328692123, -0.000762573793, -0.0100532733, -0.00441613235, -0.00557921035, -0.0224594418, 0.0148214484, 0.0150799109, -0.0267552547, 0.0189657509, 0.0480917245, -0.00150732265, -0.00585549697, -0.00232392829, 0.00522716762, 0.00834653433, -0.00096867478, -0.0136360889, 0.034562584, -0.00228159409, -0.00631448952, -0.0105880219, 0.028145602, -0.030712394, -0.0205165204, 0.0156681333, 0.00812372286, -0.034598235, 0.0266304798, 0.00124440459, 0.0176199656, 0.000418050855, 0.0344912857, 0.00623427751, -0.0158909466, -0.0284129754, 0.00813263468, -0.0289655495, 0.0345447585, 0.00791873503, -0.0116307819, 0.0171297807, -0.00129230914, -0.030070696, -0.00339342537, -0.0164078698, -0.00787417311, 0.00253337156, -0.016238533, 0.0236715376, -0.0310510676, -0.0178695153, -0.0219781678, -0.00999979861, -0.00296562654, -0.0353290588, 0.040854793, -0.0117733814, -0.0335822105, 0.0179319028, 0.00650610775, -0.00226822519, -0.00983937457, -0.00366748404, 0.0267909039, -0.0244023614, -0.0179051664, -0.0356677324, -0.00522716762, -0.00184599671, -0.0163009204, -0.0381810516, -0.00555692939, -0.0128250541, -0.0041665826, -0.0270048045, 0.0256144572, -0.0140995383, 0.0060471152, 0.0186270755, 0.00317061367, 0.000842786045, 0.0285021011, -0.0108553963, 0.0331900641, -0.00875205174, -0.000230888851, 0.0558990538, 0.0154185845, 0.0104186852, 0.00393931475, -0.00790091, -0.0157661717, 0.00965221226, 0.0341169611, 0.000568448915, 0.0130033037, -0.0104810726, 0.00694727572, 0.0310510676, -0.00351820025, -0.0161850583, 0.000141137425, -0.0297854971, -0.0138143385, 0.0138232512, 0.0225129165, -0.00473252498, -0.0127181038, 0.0131280776, 0.0289833732, 0.0038992085, 0.0164524317, 0.00299236411, 0.0183775276, -0.00898377597, 0.0106414966, 0.0356677324, -0.00399278942, -0.00375215267, -0.0102760857, 0.0285734, -0.0301598217, 0.0446336828, -0.0331009366, 0.0164702572, 0.0168534927, 0.0423520878, -0.0165415574, -0.0143669127, -0.0212829933, -0.00983937457, -0.000686260697, -0.00284753623, 0.00585549697, 0.0187875014, -0.0309084691, 0.0368976519, 0.0320670903, -0.00374769652, 0.0140549755, -0.00135246827, -0.0238319617, -0.00580202229, -0.022209892, -0.0276465025, -0.0507298186, -0.0123170428, 0.0173971541, -0.000644483487, -0.00603374653, -0.0277891029, 0.0291616227, -0.0292863976, 0.0304271951, -0.0398209468, -0.00741963694, -0.018199278, 0.062351685, -0.00626547122, 0.0224416163, -0.00343575981, 0.0186627265, 0.00666207634, -0.00514695514, -0.0402130932, -0.0200708974, -0.01932225, 0.00976807438, -0.0164613444, 0.00335777551, -0.00169671269, -0.00876542088, -0.000813820516, -0.00366525608, 0.0334396139, -0.0052806423, 0.0124418177, -0.0273256525, 0.0116753448, 0.0152938096, 0.0231189635, 0.0150709981, 0.0419955887, 0.0300885215, 0.0178249534, 0.0206947699, -0.00170673931, -0.00529846735, -0.0209621452, -0.00598027185, 0.0313362665, 0.0133687146, 0.0134221902, -0.00304583879, 0.0232437383, 0.00296339858, -0.0253292583, -0.0280208271, -0.0280921254, -0.00848913379, 0.00241750921, 0.00287204562, -0.00409305468, -0.00083331659, -0.00613624, 0.0103830351, -0.00183262804, 0.0160068087, 0.0214077681, 0.000628886628, 0.0347943082, -0.0147679737, -0.0135024022, 0.0209621452, -0.0190727, 0.00842229, -0.0288407747, 0.0136271771, -0.00650610775, 0.0345804095, -0.00114191102, 0.0248123351, -0.0229228903, 0.0124061676, 0.0146699362, 0.0194648486, -0.00180032023, 0.00966112502, -0.019767873, 0.0166841559, 0.00031277223, 0.0141441, 0.028947724, -0.00554356026, -0.00989284925, -0.00982154906, -0.0276821516, 0.0105523728, -0.022691166, 0.00142711028, 0.0284129754, 0.0185379516, 0.00996414851, -0.0165504683, 0.0351329818, -0.0235824138, 0.0209977943, -4.28216663e-05, -0.00218244269, 0.00271830545, -0.0302845947, -0.0198748223, -0.0422807895, 0.0198391732, -0.00399501761, -0.00289432681, -0.0261492059, -0.0109801712, 0.0123526929, -0.0413538925, 0.0678061247, -8.15352323e-05, 0.011746644, -0.0195183232, -0.00145273365, 0.0332078896, 0.0703729168, 0.0149194859, -0.0165237319, -0.00211448502, 0.00840892177, -0.00136583706, -0.0176467039, 0.0280208271, -0.00349146267, -0.00521379896, -0.00933136325, -0.0104543352, 0.0074419179, -0.00494642463, -0.030070696, 0.0154274972, -0.0119783683, 0.00959873758, 0.00933136325, -0.0131369904, 0.0051558679, -0.0120407557, 0.0185736, 0.0132172024, 0.0448119342, -0.0381097496, -0.0164256953, 0.0160424579, -0.0206412952, -0.0397496447, 0.0227624662, 0.0160602834, -0.0108108344, -0.0598561913, 0.0377176, -0.0194648486, -0.00208551949, -0.0220851172, 0.0163633078, 0.0387158, -0.00162986922, 0.0310510676, -0.00270270859, -0.0222277176, -0.0232080892, -0.0277891029, -0.0032196322, -0.0139747635, 0.00796329789, 0.0106325848, 0.0119694564, -0.00250217784, 0.0516210645, 0.01230813, 0.00471915631, 0.00666207634, 0.0016632909, 0.0116218692, -0.00703194411, 0.00644372078, -0.0219781678, 0.00698738173, -0.00069851533, 0.0193579, 0.0105167227, 0.0290190242, -0.0103295604, 0.00351820025, -0.000128464992, -0.0002971754, -0.0424233899, 0.00621199608, -0.0164791699, 0.0330474637, 0.0250975341, 0.00513804285, -0.00938483793, 0.0347051844, -0.003197351, 0.00289432681, -0.0197500475, -0.00332435383, -0.0409973934, 0.00892138947, 0.00742854923, 0.007179, 0.00106838311, 0.0215147194, -0.0189657509, 0.0295359474, 0.00193289341, 0.0148660112, 0.00558366673, 0.01824384, -0.00867184, 0.00532966107, -0.00707205, -0.0115594817, -0.00236849068, -0.0156503096, 0.0575032979, 0.0268800296, 0.0306945704, -0.00500881206, -0.01615832, -0.0279673524, -0.00920658838, -0.0144916866, -0.0258105323, 0.00332435383, -0.00419109222, -0.00690271333, 0.0170317423, -0.00610950263, 0.00554801663, 0.0101245735, 0.0154720591, 0.00901051424, 0.00530292373, -0.032280989, 0.0367194042, 0.0219603423, -0.00912637636, 0.0131548159, 0.000356220553, -0.0292863976, -0.0367907025, 0.0266304798, 0.0290190242, 0.0158285592, 0.0466657281, -0.00487066852, -0.019767873, -0.000772600295, 0.0202847961, -0.00627438352, 0.00455204723, -0.00535194203, 0.0081638284, 0.0270582791, 0.0117822941, -0.0314075686, -0.0188766252, 0.0133776274, 0.0477708764, 0.0221564174, 0.00557921035, -0.00488849357, 0.0106058475, -0.0207304209, -0.00247766846, -0.0322275162, -0.0144293, -0.00933136325, 0.0141084502, 0.00529846735, 0.00392594608, 0.00991067383, -0.000143156649, -0.00533857336, -0.0127626667, -0.00672446378, -0.00946505, 0.0106504094, -0.00868075248, 0.00509793684, 0.0233685132, 0.0179497283, 0.00967895, 0.00696955668, 0.0235467628, 0.00448743207, -0.00912637636, -0.000646154571, -0.0206412952, 0.0250440594, 0.0154185845, -0.0115683945, -0.0105523728, -0.00863619, 0.00788754225, -0.00572181, 0.0118357688, 0.00186604983, -0.0515141152, 0.0263631064, -0.00814154744, 0.0174506288, -0.00527618639, -0.0133419773, -0.0195005, 0.0123794302, -0.0314788669, -0.0495533682, 0.0222990159, -0.00621199608, 0.00271162111, 0.0104899853, 0.00685815094, 0.011666432, 0.0414608419, 0.00568616, -0.0223881416, 0.00144493522, 0.00778059196, -0.0149373105, -0.0103652105, 0.00247766846, 0.000161538643, -0.00339788175, 0.00505337445, 0.0198569987, -0.0291438, 0.00433814805, -0.0598561913, -0.0235645883, -0.0232793894, 0.0175664909, 0.0335287377, -0.0266839545, 0.00471024401, -0.00072692387, 0.0233685132, 0.0230833143, -0.0273078289, -0.0187162012, -0.0224416163, -0.00437379768, -0.00112464314, -0.00346026896, -0.00389029598, -0.00806133542, -0.00694727572, -0.0508724153, -0.0316036418, -0.00402398314, 0.010302823, 0.0175664909, 0.0157929081, 0.00466568163, -0.0145005994, 0.000858382904, 0.0154720591, 0.0108732218, 0.0106593221, 0.000203733653, -0.00762908, 0.00324636954, 0.00873868354, 0.0198391732, -0.0354538336, -0.0553999543, 0.0227981154, 0.00125665916, 0.000881778134, 0.0325840153, 0.0118535943, -0.0094294, 0.0146164615, -0.0299637467, -0.0224594418, -0.00292774849, -0.017762566, 0.0258283578, -0.00299682026, -0.0248836353, 0.037325453, 0.0272900034, -0.0347943082, -0.022209892, 0.00648828316, -0.00829306, -0.00297231087, 0.00376552134, -0.0108375717, 0.00557475397, 0.025899658, 0.0087253144, -0.0159265958, -0.0097146, -0.0251331832, 0.0176467039, 0.0268978551, 0.00352265639, -0.027664328, 0.00029216212, 0.0178784281, -0.00433146348, -0.00681804447, -0.0124061676, -0.0234219879, 0.0168624055, -0.00437379768, -0.00962547492, 0.00199639471, -0.00330875698, -0.00777167967, 0.0104454225, -0.0169158801, 0.00528955506, 0.000263475085, 0.0256679319, 0.00997306127, 0.0138678132, -0.0547226071, 0.00931353774, -0.00678685075, 0.025864007, 0.0162028819, 0.0121120559, 0.0151422974, -0.0126824547, 0.00988393649, 0.0149729606, 0.0206234716, 0.000977587304, 0.00838664081, 0.0172099918, -0.0112653701, -0.0149818733, -0.00823958497, -0.00107506744, 0.01792299, -0.000183123542, -0.00922441296, 0.00234175334, -0.0192152988, -0.0405695923, -0.00390589284, 0.00655958289, 0.00600255281, 0.00641252706, -0.0113366703, -0.0111584207, 0.0147857983, -0.0314788669, -0.0152403349, -0.00466122525, -0.012227918, 0.0286803506, 0.00943831261, -0.0188231505, -0.0088456329, -0.00123549206, -0.0043983073, 0.0200174227, -0.0230833143, 0.0124418177, -0.0136895645, -0.0236002374, -0.00492859958, -0.000850027485, 0.0372185037, 0.00170673931, 0.00411087973, -0.0229228903, 0.0154007599, -0.00598027185, 0.0161048453, -0.0112831956, -0.000466512458, -0.00916202553, -0.000408024323, -0.0108732218, 0.0232080892, -0.00565942284, 0.017040655, -0.0383593, 0.0304806698, -5.94455241e-06, 0.00960764941, 0.00262249634, -0.00243533426, -0.0158374701, 0.0087609645, -0.0102136983, -0.0101869609, 0.0108910464, 0.0087119462, 0.0130656911, 0.0177447405, -0.00228159409, -0.0109266965, -0.0215860177, 0.0339921862, -0.00154520059, -0.0201065466, 0.0201421976, 0.0175932292, -0.00933136325, 0.00336891622, -0.00558812264, -0.01792299, 0.0204986967, -0.0154096717, -0.0429581366, 0.00108119485, 0.00434928853, 0.00750876172, 0.00950961281, -0.0239210874, 0.00343130343, -0.0204808712, -0.0193044245, -0.0158018209, -0.00343130343, -0.0157394335, 0.023778487, -0.0210690945, -0.0195005, -0.00751767401, 0.00421114499, 0.0134043647, 0.000314443314, 0.00561931636, 0.0114792697, -0.00245761545, 0.0365055054, 0.0233685132, -0.0205699969, 0.00122657954, 0.00225151447, -0.033796113, -0.0154007599, -0.0183597021, 0.0147412363, -0.015997896, 0.0035003752, 0.00937592518, -0.00667990139, 0.0123348674, -0.0134489276, 0.0277534518, -0.0193579, 0.00537868, -0.0185201261, -0.0398565941, 0.00686260685, 0.00363629055, -0.00230833143, -0.0275395531, -0.00488849357, 0.0372185037, -0.0140638882, 0.00827077869, 0.0144471247, 0.00804351, 0.00914420094, 0.0256679319, -0.0217642672, -0.0143847372, 0.00624319, 0.0007347223, -0.0198748223, 0.0197322238, -0.00582875963, -0.006916082, -0.0147234118, -0.012548767, 0.0018905591, -0.0152492477, -0.0170050059, -0.0196252726, 0.00626101485, 0.00466568163, -0.032797914, 0.0118446816, -0.041852992, 0.0333326608, -0.00642143935, -0.0048751249, 0.0189657509, 0.0208373703, 0.00515141152, -0.00357835926, -0.00468350668, -0.0104186852, 0.00755778, -0.0304093696, 0.0256501082, 0.0095452629, -0.0347230099, -0.0204986967, 0.00272276159, -0.0185557771, 0.0218712185, 0.0193579, -0.00167554559, 0.0376106501, -0.0306945704, 0.0137786893, -0.000967560743, 0.0080301417, -0.00502663665, 0.00421782956, -0.0214077681, 0.00645263307, 0.00230610324, 0.000132224945, 0.0189657509, 0.0090684453, 0.0185023, -0.0223168414, -0.0166930687, -0.0105167227, 0.00728595, 0.0124150803, -0.00594016584, 0.00537868, 0.0221920665, -0.00721019367, 0.0107751843, -0.0274682529, 0.000484615914, 0.0151333855, 0.00626101485, 0.0190370493, -0.0450971313, -0.0115149198, -0.00826632231, -0.00601146556, -0.000313329248, -0.0240280367, 0.0162741821, 0.000189947154, 0.00174684543, 0.00295448606, -0.010302823, 2.90874e-05, -0.00517814886, 0.00378334639, -0.0127448412, -0.00122657954, 0.0269869789, 0.00968786236, 0.007758311, -0.00798112247, 0.0056817038, 0.00251109037, -0.0262561552, -0.00392371789, 0.0114347078, -0.00357390312, -0.0230298396, -0.0248658098, -0.0367907025, 0.00997306127, -0.0159800705, -0.0185201261, 0.0019562887, -0.0144114746, 0.00610059034, 0.0342060849, -0.00762462383, -0.0142421378, 0.00010639269, 0.00577528495, -0.000605491397, 0.00502663665, -0.0109712584, 0.00489294948, 0.0104186852, 0.0117288195, 0.0138232512, 0.0106682349, 0.00683141313, -0.00926006306, -0.0400348455, -0.0210156199, -0.00179697806, 0.00321740401, 0.0223524906, 0.00412202, -0.000642812403, 0.0125576798, -0.0243488867, 0.0110514713, 0.033796113, 0.00620754, -0.00364743103, -0.0263096318, 0.035525132, -0.0115951318, -0.0324592404, 0.0204986967, 0.00893030129, 0.043065086, -0.0158552956, -0.0135558769, -0.0142510505, -2.47356038e-05, 0.0251331832, 0.0189301, 0.00243533426, -0.0254896823, -0.00924223848, 0.0104454225, -0.0171119552, -0.00300573278, -0.00299013592, -0.000511631835, 0.000506897108, 0.0146253742, 0.0182171017, -0.0168178435, 0.00612732768, 0.0301776454, -0.000431141059, 0.0111673335, 0.00324636954, -0.00979481172, -0.013030041, 0.0148838358, -0.0235645883, -0.0048394748, -0.00405294867, 0.0134578394, 0.0176288784, 0.0141886631, 0.0151422974, 0.0203917474, 0.0128874416, 0.00914420094, -0.0166930687, -0.00470133126, -0.0354716554, -0.0138143385, -0.0173258539, -0.0134400148, 0.0136806518, 0.0119427191, 0.0104186852, 0.0248658098, 0.0045163976, -0.004786, 0.0163365696, 0.0108197462, -0.00031416479, -0.0241528116, 0.00131681841, 0.0433502868, 0.00693390658, -0.00322854472, 0.0356499068, -0.0268443804, -0.0377532504, -0.00963438768, -0.00274504279, -0.0135024022, 0.00926897582, -0.025418384, -0.00128673878, 0.00116196414, 0.0142956125, -0.0292151, -0.00253114337, -0.00555247301, 0.0152848978, 0.00206546648, -0.0198391732, 0.0223168414, 0.0136984764, -0.00475035, -0.0102493484, -0.0208730195, 0.0151244728, -0.00365634356, 0.0180923268, -0.0272008795, 0.00430918252, -0.0225842167, 0.0119159808, -0.00181146082, -0.022655515, 0.00736616179, -0.0113099329, 0.0214077681, -0.00126334361, 0.0264700558, -0.015757259, -0.000876764883, 0.00279406132, 0.0157661717, 0.00271830545, 0.019126175, -0.0284842756, 0.0103384731, 0.00530292373, 0.0201956723, -0.0122011807, 0.00557921035, 0.0370759033, 0.0107484469, 0.00403512362, 0.00625210255, 0.0241528116, -0.0392148979, -0.0137786893, -0.00337114418, -0.0133152399, 0.0199817717, -0.0289655495, 0.0297498461, -0.02317244, 0.0127715794, -0.0107395342, 0.0203204472, -0.0269513298, -0.00174127507, -0.0264700558, 0.016639594, -0.0179408155, -0.0181101523, 0.0112921083, 0.0145273367, -0.011907069, 0.0156681333, 0.0240280367, -0.00390812103, 0.0246340856, 0.0219603423, 0.00484838709, 0.000874536752, 0.033760462, -0.00583321601, -0.0353290588, -0.0329939872, 6.59035868e-05, 0.00656403881, -0.00394599885, -0.0191796497, -0.020890845, -0.00856043398, -0.0216394924, 0.0169515312, 0.0261848569, -0.0213542935, 0.00574854761, 0.0128250541, -0.000933581905, 0.0319779664, -0.00226265495, 0.0240280367, 0.00893921405, 3.92706e-05, 0.0249549337, 0.0222990159, -0.0167287178, 0.000321684696, 0.0201600213, -0.000231445883, 0.00465231296, -0.0411756411, 0.0147234118, -0.00630112085, -0.0157661717, 0.0430294387, -0.00316615729, 0.00429135747, 0.043065086, -0.0288407747, 0.0198035222, 0.0167287178, 0.011104946, -0.0291616227, 0.0339387096, -0.00796775427, 0.00586440973, 0.0134132775, -0.0261670314, -0.00521825487, 0.00687151961, 0.0135024022, 0.0301419962, -0.00223257532, 0.0190014, 0.0197322238, -0.0115238326, 0.0346338823, 0.0404982939, 0.000343687367, -0.00400838628, 0.0132172024, -0.00193400739, -0.00440276368, 0.0168267563, 0.0114347078, -0.00446960703, 0.0128072286, 0.00758451782, 0.010026536, 0.00829306, -0.00171230955, -0.0146075496, -0.0140193254, 0.00189278717, -0.0101423981, -0.0287338253, 0.00519151753, 0.00247766846, -0.00484838709, 0.00463003153, 0.010222611, 0.0368620045, -0.0121120559, -0.00112018688, 0.0101602236, 0.00962547492, 0.00213231, -0.0148392739, -0.00227490976, -0.0169426184, -0.00134912611, -0.00479936879, -0.00111016037, 0.00534302974, -0.0211938694, 0.0197322238, 0.0293576978, 0.0162830949, 0.00936701335, 0.0193579, 0.0138232512, -0.0086272778, 0.0068046758, -0.00577082857, 0.00484838709, 0.01439365, 0.0175932292, -0.00704531278, 0.0274682529, -0.0136450017, 0.0142064877, 0.0168178435, -0.0206234716, 0.0203204472, 0.0325661898, 0.0284486245, 0.00809698459, 0.00450971304, -0.00870749, 0.00948287547, -0.000241890186, 0.0249905847, 0.00247989665, -0.00299459207, -0.00180700468, -0.0205343459, -0.0154007599, 0.0102582602, -0.0121922679, -0.00168668618, -0.0203917474, 0.00834653433, -0.00500435568, 0.0240815114, -0.00350928772, -0.0100443615, 0.00566387875, 0.00923332572, -0.012147706, 0.000719682488, 0.00197077147, 0.0108910464, 0.0128607042, 0.00613624, -0.0269156788, 0.045025833, 0.00198748219, 0.009572, -0.0006751201, 0.0016309832, 0.0234576389, 0.00022768593, -0.0313006192, -0.0101602236, 0.000925783534, -0.00934027508, 0.0253470838, 0.0181190651, -0.00660414528, 0.0126557164, -0.0068046758, -0.000806579133, -0.00626992714, -0.0159265958, 0.0113990577, -0.0263274554, 0.00543215452, 0.0138410758, 0.00186604983, 0.0155344466, 0.00983937457, 0.018163627, 0.0123437801, 0.0108286589, 0.0255431589, -0.000812706479, 0.0228159409, 0.00395268342, 0.00347586581, 0.000830531411, 0.00841783453, -0.00326419459, -0.00510239275, 0.00476817507, -0.0176288784, 0.00554356026, 0.0191974752, -0.0045163976, -0.00856489, 0.00477708736, -0.0114168823, -0.00225708471, -0.022013817, -0.00164323789, 0.0167643689, 0.00532520469, -0.00235735, 0.0170941297, -0.0221920665, 0.00882780831, 0.0124952924, 0.00666207634, -0.0413895398, 0.0270404536, -0.0236002374, -0.0243132357, 0.00125443109, -0.00363183417, 0.00198636833, 0.0134400148, 0.00912192, -0.0140104135, -0.00618971512, -0.0313540921, 0.0233685132, 0.00630112085, -0.0122992173, -0.00936701335, 0.0105167227, -0.0251153596, -0.0295537729, -0.0053653107, -0.0220672917, 0.0156592205, -0.00733051216, 0.00697401306, 0.0105791101, 0.00434483215, -0.00375438086, 0.0224059671, 0.0112831956, -0.0167554561, -0.00144382124, 0.00237071887, -0.0198926479, 0.0205521714, 0.00156525371, -0.0196965728, 0.0334039629, -0.0286625251, 0.0065996889, -0.00815491658, 0.0131993778, -0.0330296382, 0.0125220297, 0.0167732816, 0.0108732218, -0.00663088262, 0.0109890839, 0.0315679908, 0.0106771467, -0.00227268157, -0.0199639481, 0.00273167412, 0.0128250541, -0.0355073065, -0.0181279778, -0.013992588, -0.0164078698, -0.0158642083, 0.0173525922, 0.00872085802, 0.0437067859, -0.0216038432, 0.00256233709, 0.00719236862, -0.0153829344, 0.00758006144, 0.000626658497, -1.64933044e-05, 0.00705422508, -0.00625655847, 0.00909072626, 0.00483501842, 0.0322631672, 0.00245315908, -0.00456764409, 0.00593125308, -0.01932225, 0.0259353071, -0.00783852302, -0.00953635, 0.00167220342, 9.97779644e-05, -0.00127671228, 0.018003203, -0.00170673931, 0.0137786893, -0.0110069085, -0.013912376, 0.0162296202, -0.0169782676, -0.00402843952, 0.00699629402, 0.0227089897, -0.000607162481, -0.0205521714, 0.0185201261, 0.00579311, 0.0145986369, -0.00889910758, -0.0117109939, 0.0169604439, -0.019144, 0.00419777632, 0.0385375507, -0.0029388892, 0.00426239194, -0.0184131768, 0.000998754404, 0.00403735181, 0.00430695433, -0.0280743018, -0.00960764941, 0.006354596, -0.00289432681, 0.0175308418, -0.0151601229, -0.00881443918, 0.0213542935, 0.0155790094, 0.00786080398, -0.00524499267, 0.0264344048, 0.0103384731, -0.0127002792, 0.0262561552, -0.0224059671, -0.00405294867, -0.00303247012, 0.000291326578, 0.0130746029, 0.0124596423, -0.00261135562, -0.0284308, 0.00571289752, 0.0104721598, -0.0263631064, -0.0162830949, 0.00598027185, 0.0209977943, 0.00339119742, 0.00496424967, -0.00843565911, -0.0108019216, -0.0316392928, 0.0162474457, -0.0115505699, 0.00524944859, 0.0077226609, -0.00692945067, 0.0051202178, 0.00108509406, 0.0116129573, 0.00831979699, 0.00893030129, 0.0094294, -2.38913549e-06, 0.014233225, -0.0198391732, 0.0029812234, 0.0136539144, 0.0108553963, 0.000964775623, 0.00952743739, 0.00433814805, 0.0132885026, -0.019928297, -0.0107751843, -0.00222923327, -0.0139658507, -0.028306026, 0.00248880917, -0.0112921083, -0.0341347866, 0.0125576798, 0.00379448687, -0.0117733814, 0.00200530724, -0.00910855085, 0.00370981847, -0.0021401085, -0.0227981154, 0.0178427789, 0.0329761617, 0.00203872914, 0.0186805502, 0.029910272, 0.00525390496, -0.00473252498, 0.00833762158, -0.0227981154, 0.00697846897, 0.0117288195, 0.00516032381, -0.00289878296, 0.0161137581, 0.00690716924, 0.00902833883, -0.0443128347, -0.00426239194, 0.00849804655, 0.00461666286, 0.0136628263, -0.00473698135, -0.0197856985, 0.0331009366, 0.000600478088, -0.0152581604, 0.00259575876, -0.0237250123, -0.0285199247, 0.00929571316, 0.00231278758, 0.00745083066, -0.000516366621, 0.00571289752, -0.00999979861, 0.0195361488, -0.00716563128, 0.0185914263, 0.0254362077, -0.00251331832, -0.00573517848, -0.00119427184, 0.00614960864, -0.00605602795, 0.0199104734, -0.00108732213, 0.0128963534, 0.0156859588, 0.0186270755, 0.0114881825, -0.0224059671, -0.00686706323, 0.0228694156, -0.0103741232, 0.00972351246, -0.00994632393, 0.00616297778, 0.00678239483, 0.0250975341, -0.0260066073, 0.00449411618, -0.00685369456, -0.00547671691, 0.0309441183, 0.00595353451, -0.0077226609, 0.0236893632, -0.0133865401, -0.0248479843, -0.0292329229, -0.00499989931, -0.00142933847, 0.0104008606, -0.00819502212, 0.000420836, -0.00286758924, 0.0131993778, 0.0312827937, 0.000730823085, 0.000472639775, -0.0472004749, 0.0011018049, 0.0117377313, -0.00454313494, -0.00499544293, 0.00720573729, -0.00215013488, 0.014554074, -0.0177893043, 0.00476817507, 0.00108286587, -0.00600255281, 0.0144025618, 6.77835633e-05, 0.0184488259, -0.0352577567, -0.0333326608, -0.0217286181, -0.00114191102, -0.00551682292, -0.0106504094, -0.0184666514, 0.00430918252, -4.60942138e-05, -0.00787417311, -0.00602483423, -0.0296963714, 0.0157750845, -0.00144159305, -0.00352711254, 0.000140789285, -0.000628886628, 0.00949178729, -0.0127983168, 0.00895703863, -0.0156413969, -0.00781178568, 0.00150955073, -0.00874759536, -0.0184131768, -0.00313719176, -0.00373432762, -0.0152403349, -0.0129409162, 0.0148392739, 0.0254896823, 0.00490631815, 0.0113723204, -0.0138856387, 0.0106504094, -0.00664870767, -0.000422785612, -0.000120736207, -0.00225374242, 0.00120095618, 0.0194292, 0.00749093667, 0.00493305596, -0.0085916277, 0.00857380219, -0.0113188457, 0.011746644, 0.00229496276, 0.00745083066, -0.000268906122, 0.0056817038, -0.0134132775, -0.00222254894, 0.0467726775, -0.00917093828, -0.0040819142, 0.00372987147, 0.00316838548, -0.00544552319, -0.00725921243, -0.0123616047, 0.00687597552, -0.0141797503, 0.000366804103, 0.00664870767, -0.00822175946, 0.00784743577, 0.00350483134, 0.00894812681, 0.00315947295, -0.0122190053, -0.0128250541, 0.00478154374, -0.00212451164, 0.0178784281, -0.0136093516, 0.0121566178, -0.00368085294, 0.0226020403, 0.00691162562, -0.00866738334, 0.0191618241, -0.0156681333, 0.0127983168, 0.00637687696, -0.0183062274, -0.0121298805, 0.000843900139, 0.0198213477, 0.0172010791, 0.012147706, 0.00696955668, -0.019928297, -0.000280046719, -0.0138589013, -0.0182260145, -0.000575968821, 0.0108108344, -0.00364743103, -0.00379671506, -0.00680913217, 0.0359351039, -0.00400393, 0.00762016745, 0.031033244, 0.0148036238, -0.00217910064, -0.00575746, 0.0104810726, 0.012147706, 0.0072725811, -0.0200352482, -0.00917093828, 0.00404626457, 0.0174951907, -0.00897486415, 0.00937592518, 0.00798112247, 0.00458992552, -0.0168178435, 0.0136539144, 0.0100443615, -0.00454981951, 0.00881889556, 0.00467013754, 0.0133954519, 0.017441716, -0.0182527527, 0.00865401514, -0.00044896602, 0.0129676536, 0.0147234118, 0.0181368906, -0.0157483462, -0.00389252417, -0.0274147782, -0.00217130221, 0.0381454, -0.00387024297, -0.00489294948, 0.0188766252, 0.0275573786, 0.0046434, -0.00458992552, -0.0192331243, 0.0168089308, 0.00626992714, 0.00694727572, -0.010784097, 0.00590005936, 0.0176556166, -0.00491968729, 0.0185914263, 0.00785634853, -0.00583321601, 0.013190465, 0.00301910145, -0.0336178616, -0.00729486207, 0.000287427363, -0.0182884019, 0.0353647061, 0.011345583, 0.0177803915, 0.00411087973, 0.0155433593, 0.00058432424, 0.00675565749, 0.0262383316, 0.010062186, -0.0106682349, -0.00961656217, -0.0232080892, -0.00843565911, 0.00642589573, 0.00472361268, -0.0162920076, -0.022013817, -0.0158463828, 0.01054346, 0.0156146586, 0.0150442608, 0.0105791101, 0.0178873409, 0.0235467628, -0.0211760439, -0.00908181351, -0.0327800885, -0.0259887818, 0.0103384731, 0.010864309, 0.00377889, -0.0260957312, 0.00293666101, -0.0152848978, -0.00958982483, -0.000303302717, 0.0145184249, 0.0168534927, -0.00244424678, 0.0305341445, -0.00558366673, 0.00249772146, 0.00975916162, -0.0254540332, 0.00959873758, -0.00680913217, -0.00351374387, 0.00212451164, -0.000894589815, 0.00683141313, 0.000183541313, -0.000677905278, -0.010908871, 0.00621645246, 0.00322186039, 0.00636796467, 0.0163454823, 0.0165326446, -0.0158018209, 0.0267196056, -0.0144649493, -0.00935810059, 0.00109010725, 0.0139658507, 0.0412112921, 0.0109712584, 0.00579311, 0.00770483585, -0.0132350279, 0.00541878585, 0.0223168414, -0.0125042051, 0.0109356092, 0.0153740225, -0.00934027508, -0.00379225891, 0.000437825423, -0.00307480432, -0.0276821516, -0.00469241897, 0.00152737566, -0.00812372286, 0.0092868, -0.00377666205, 0.0198569987, 0.0036607997, -0.0191083495, 0.0166485067, -0.00606494024, 0.0125042051, -0.0108910464, -0.00396605209, -0.0378958508, -0.00527618639, 0.00530737964, 0.00428021699, 0.00460329419, -0.00467459392, 0.00103329029, -0.0224416163, -0.00995523669, -0.0247766841, -0.0193044245, 0.0147412363, 0.00769146718, 0.00111405959, 0.0105167227, -0.00569061656, 0.0133241527, 0.00497316197, -0.0219781678, -0.00138477609, -0.00776276691, -0.00254451204, 0.0102760857, 0.0155700967, -0.00920658838, 0.017040655, -0.00964329951, -0.0298567973, 0.000943051418, -0.01335089, -0.00134912611, 0.0167911053, -0.0196430981, -0.00575300353, 0.0140817128, 0.0115416571, 0.00936701335, -0.00221475051, -0.00935810059, -0.019286599, 0.012709192, 0.000496313558, -0.0290190242, 0.0186805502, 0.00733496808, -0.0243132357, -0.0112386327, 0.00736170588, 0.0076379925, -0.0251866598, 0.0141441, -0.0184131768, -0.00294334535, 0.000661194383, -0.016318744, -0.00329984445, -0.0157929081, -0.0132974153, 0.00619862741, 0.0206234716, -0.00180700468, -1.47612891e-05, 0.0123972548, -0.00940266252, 0.00532966107, -0.00807916, -0.00569952885, -0.0225485656, 0.0157661717, 0.010623672, 0.0272543542, 0.0220316425, -0.00194069173, 0.00974133704, 0.0102760857, 0.00734833675, 0.00335331936, -0.0272187032, 0.0074419179, 0.00807470363, 0.00798557885, -0.00975916162, 0.0105701974, -0.0124507295, 0.00498207426, 0.00319289486, 0.00174461724, -0.00563714141, 0.00415544212, 0.0118625062, 0.0202669725, 0.00479936879, -0.0153918471, 0.00502218073, -0.0232080892, -0.0144293, 0.0289298985, 0.037254151, -0.00806133542, -0.00888128299, 0.0227089897, -0.0172902048, -0.00702303136, 0.00555692939, -0.00450971304, 0.00567279151, 0.0295002982, 0.0141351875, 0.0293220486, -0.0061228713, -0.0166663304, 0.0368976519, -0.00721910596, -0.00480828108, -0.00413761707, -0.0295537729, 0.00899268873, 0.0138678132, -0.0166841559, 0.0150086107, 0.00546780461, 0.00890802, -0.0140549755, 0.0131815532, 0.000529456825, -0.00235512201, 0.0188231505, -0.0123437801, -0.00122992182, 0.0322275162, 0.010302823, -0.0146877617, -0.012949829, 0.0230654888, -0.00225374242, 0.0290190242, -0.00809698459, -0.00786526, 0.00264923368, -0.0308728199, 0.00597581547, -0.00330207264, -0.00403958, -0.00136806513, -0.0138856387, 0.000126028, 0.00782515481, 0.00624319, -0.00380339939, 0.00369422161, -0.00712106889, -0.00936701335, -0.00222032075, 0.0181547143, -0.00926897582, -0.0257570576, 0.0164078698, -0.000259018852, 0.00278292084, -0.0124061676, 0.00589560345, 0.0113544948, 0.000751433196, -0.00367194042, -0.0145184249, 0.0135380523, 0.0106147593, 0.0171476044, -0.0126022417, -0.01439365, 0.0185023, 0.00912637636, -0.0158552956, -0.0178695153, 0.00826186594, -0.00846239645, -0.0112208081, 0.024901459, -0.00818610936, 0.013190465, 0.00693836296, -0.0384662487, -0.00486175623, 0.000829974364, 0.0118179442, -0.00157862238, 0.0176288784, -0.0165772066, 0.0175575782, -0.000691273948, -0.0166039448, 0.00388138345, 0.0146164615, -0.0113723204, -0.0261670314, -0.00529846735, -0.0112118954, 0.0129676536, 0.00833762158, 0.00237071887, -0.00960764941, -0.0067200074, -0.00865401514, 0.0129765663, -0.00703194411, -0.00260689948, -0.0177180041, -0.00500435568, -0.0180566777, 0.0157126971, -0.00686260685, -0.0276108533, -0.0128072286, -0.00860499591, 0.0141886631, 0.0105612846, 0.00457210047, 0.019767873, 0.00903279521, 0.0148214484, -0.0206412952, 0.0310154185, 0.0104365097, 0.000843343092, 0.00676011341, 0.0144203873, 0.024741035, 0.0115238326, -0.00248435279, -0.0026581462, 0.0056817038, 0.0048573, 0.0117555568, -0.0185023, 0.0119694564, -0.00737061817, 0.0191083495, -0.00819502212, 0.0145184249, -0.00970568694, -0.00861390866, 0.00912637636, -0.00191618246, -0.0046790503, 0.0206234716, -0.0342595614, -0.00504000532, -0.00476371869, -0.00700966269, -0.018003203, 0.0264165811, 0.0114168823, -0.0095007, 0.0217107926, -0.0118446816, -0.0093224505, 0.0160157196, -0.0118268561, -0.00332212565, -0.0020409571, 0.000482666306, -0.0122100934, 0.00838664081, -0.00613624, -0.000556194223, -0.00156302564, 0.0049241432, -0.00268265535, -0.0163633078, -0.00186047947, -0.0240280367, 0.0239389129, -0.00501326798, -0.0102939103, 0.00209108973, 0.000515252526, -0.0189479254, -0.00659523252, 0.0168980565, -0.00210334454, -0.0208730195, -0.0112386327, -0.00360509683, -0.0245627854, 0.0213899445, 0.019928297, 0.0113901449, 0.00240191235, -0.00497761834, -0.0116931694, 0.00374992448, 0.0121566178, 0.00126891385, 0.016880231, 0.0118268561, 0.0332257114, -0.0192687754, -0.011987281, 0.0143045252, -0.0145629868, -0.0284486245, 0.0280921254, -0.00889465213, 0.00163321139, -0.00621645246, 0.0206591208, -0.00825741, -0.0137163019, -0.0250975341, 0.012709192, 0.0123705175, 0.00616297778, -0.00188721693, -0.0251153596, 0.00591788441, 0.0254718587, 0.0129943909, 0.0270404536, 0.00484838709, -0.00124774675, -0.0119605437, -0.00807470363, 0.0379315019, -0.0229763649, -0.0181814525, 0.00163655356, -0.00720573729, -0.0139212888, -0.00214345055, -0.0156681333, 0.0365411527, -0.00129230914, -0.0027561835, -0.00140371511, 0.00567724742, -0.0342773832, 0.0038011712, -0.0136182643, -0.0119248936, 0.0155077092, -0.00344021595, -0.00621645246, 0.0203739218, -0.0144560374, -0.0213186443, 0.00776276691, -0.00452085398, 0.0160602834, -0.00315947295, -0.0261492059, 0.0261313822, 0.0102047855, 0.0140015008, -0.0259174816, -0.0101602236, -0.0201421976, -0.00325528206, 0.0278425775, -0.00205655396, -0.0241349861, -0.00787862949, -0.00837772805, -0.0055970354, 0.00386133045, -0.00391257741, -0.0144114746, 0.0201956723, 0.01158622, -0.0312471427, 0.00256902142, -0.00339788175, -0.0286803506, 0.0158285592, 0.00397719257, -0.00764244888, 0.00681358855, 0.00697846897, -0.0273613036, 0.00962547492, 0.000997083378, -0.0229228903, -0.00733496808, -0.00141931185, 0.00135803863, 0.0148481857, 0.00578419724, -0.00353156892, 0.0273256525, 0.00257793395, -0.00467459392, -0.00557475397, 0.0158820339, 0.00197522761, 0.000624430366, 0.0108999591, -0.00360732502, 0.0149996979, -0.0113188457, -0.00661751395, 0.0113544948, 0.00401061447, -0.0465231277, -0.0176021419, 0.00715226261, -0.0163633078, 0.012548767, 0.0128963534, -0.00362514984, -0.0212829933, 0.0239923876, 0.00902833883, 0.00675120112, -0.0285199247, -0.0123616047, 0.0127002792, 0.0222277176, -0.000585995323, -0.0238854382, -0.0283238515, 0.0143401753, -0.0232615639, -0.00327087892, 0.00473252498, 0.00687597552, -0.00827523414, 0.0137073891, 0.01615832, -0.0199995972, -0.0194648486, -0.00579756591, -0.00319066667, -0.00160758803, 0.0204986967, -0.0357390307, -0.00545443548, 0.00346249714, -0.00966112502, 0.00844011549, 0.0259709563, -0.000331432733, -0.0119516309, 0.000755889399, -0.0174684543, -0.0242062863, 0.00809252914, 0.0257748831, 0.00351374387, 0.00483056251, 0.0202669725, -0.0101423981, 0.00973242428, -0.00264032115, 0.00104944408, 0.0182260145, 0.00626101485, -0.0060382029, 0.00693836296, -0.015757259, -0.00269825221, 0.00487958081, 0.0125665916, 0.00321071967, 0.0141886631, 0.0194826741, -0.00354716578, 0.00782515481, 0.00401507085, 0.0157305207, -0.0196787491, -0.00171230955, -0.0039214897, 0.00203650096, -0.0140371509, 0.0149729606, -0.0250618849, -0.00651947688, 0.0137430392, -0.0010583566, -0.0102404356, -0.00979481172, -0.00217018812, -0.0110069085, -0.00692053791, 0.00807470363, 0.00250886218, -0.0113634076, 0.000379058765, -0.00737953046, 0.00413984526, -0.0305697955, 0.0292863976, 0.0112386327, -0.00470578764, -0.0347586572, 0.0103562977, -0.00770038, -0.0083688153, -0.00399056124, -0.00798557885, -0.0225307401, 0.0262739807, -0.00380562758, -0.014634287, 0.0115594817, -0.00772711728, 0.0411756411, -0.011746644, 0.0268443804, 0.025382733, 0.0117288195, 0.0173169412, 0.0110692959, -0.0190548748, 0.0223881416, 0.000808807265, 0.023136789, -0.0245627854, 0.00393708656, 0.00137586356, -0.00705868145, 0.0295537729, -0.00991958659, -0.00631003361, 0.00866738334, 0.0101691354, -0.0103919478, -0.0121298805, -0.000658409204, 0.0196787491, -0.00430918252, 0.00712106889, 0.00737953046, -0.039001, -0.00233729696, 0.0252044834, -0.000506897108, 0.00193734956, -0.0168980565, 0.0194113739, 0.00215459126, -0.00131124817, -0.00249549351, 0.0185379516, -0.0196787491, -0.00375660881, -0.0266483054, -0.00975916162, 0.000748091, -0.025382733, 0.0128339659, -0.0197500475, -0.00496424967, -0.00234398129, 0.0022593129, -0.0118357688, -0.0120853186, 0.00409082696, 0.0137252137, -0.0130033037, 0.00144270714, 0.013030041, 0.00236403453, -0.00364297489, -0.0187340267, -0.0097146, 0.00364297489, -0.00223034737, 0.00651056413, -0.00627884, -0.0331722386, -0.0102671729, 0.0137608638, -0.00630112085, 0.021051269, 0.00234175334, 0.00483056251, 0.0311758425, -0.0288229492, -0.0179675519, -0.00413984526, -0.00572181, -0.0216394924, -0.0139480261, -0.0150799109, -0.00376552134, 0.00224037375, 0.0141797503, 0.0246875603, 0.0171297807, -0.00480828108, -0.0112653701, -0.008640646, -0.0030792607, -0.00395045523, -0.00381454, 0.00546780461, 0.0207125954, -0.0117288195, -0.0243310612, -3.89572706e-05, -0.0188766252, -0.0206947699, -0.00949178729, -0.0174506288, -0.0134489276, 0.0235824138, 0.0104097724, -0.00720573729, 0.000595464837, 0.00262918067, 0.0031215949, -0.00356721878, -0.00557475397, 0.00441836, 0.0220851172, 0.0117733814, 0.0139836762, 0.00264477753, -0.0166128557, 0.00814600382, -0.00642589573, -0.0189479254, -0.0126557164, -0.0165504683, -0.00745528657, 0.00241082488, -0.0168089308, 0.0298211463, -0.00505783036, -0.00024537163, 0.0167019814, 0.00029076956, -0.00866292696, -0.00999088585, 0.00556584168, -0.00776276691, 0.00385910249, -0.0278425775, 0.0232437383, -0.0252579581, -0.0273969527, -0.00880107097, -0.0133865401, 0.0150977354, -0.021532543, 0.0125665916, -0.0106147593, 0.00714780623, 0.0145273367, 0.0151512101, -0.0130122155, -0.00821284764, 0.00793210417, 7.54775392e-05, 0.0205343459, -0.0248658098, 0.00763353612, 0.0162474457, 0.00565942284, -0.0148927486, 0.00404403638, -0.0190014, -0.00202981662, 0.0159355085, 0.0248479843, 0.0133865401, -0.00595353451, 0.00522271125, -0.00777613604, -0.00131013407, -0.0381810516, 0.0149640478, -0.00106782606, -0.0118625062, 0.000400225894, -0.00863173325, -0.00736616179, 0.00637242058, -0.00134912611, 0.00944722537, 0.0300885215, -0.0163543951, 0.00391926151, -0.0119605437, -0.0236715376, -0.00650165183, -0.0110871205, 0.0223524906, 0.0171476044, 0.016559381, -0.00712106889, 0.00200753543, -0.00958982483, 0.0155879213, 0.00986611191, 0.0259887818, -0.00879215822, 0.0219781678, 0.0124596423, -0.0100800106, 5.0724524e-05, 0.0140460627, 0.000813263468, -0.0237428378, 0.00597581547, -0.00342461909, -0.000235902116, -0.0216573179, 0.0198926479, 0.0184131768, 0.00497316197, 0.00677348208, -0.00035176432, -0.0105167227, 0.00402398314, -0.0333326608, 0.0229941905, 0.0178338662, 0.0326018408, -0.0157305207, -0.00380562758, -0.0243132357, -0.00867184, -0.0069651003, -0.0204630457, 0.0149462232, 0.00861390866, -0.0183597021, -0.00792764779, -0.0102047855, 0.00106894015, -0.00084668526, -0.0213899445, -0.013030041, 0.0157126971, -0.00195517461, -0.00609167758, 0.000982043566, -0.0166039448, -0.0153651098, 0.0124507295, 0.00320403534, -0.0019005856, 0.0043626572, 0.0115773072, -0.0036830809, 0.00826186594, 0.012789404, 4.27172236e-05, 0.0307480451, -0.00192843715, -0.0122546554, -0.00240859692, -0.0268087294, -0.00016098161, 0.0227089897, 0.00294557353, -0.0129409162, -0.0164791699, 0.00983046181, 0.00499098701, 0.00360732502, 0.000954192, 0.0140460627, 0.00746865524, 0.0105880219, 0.0136628263, 0.00458992552, -0.000713555142, 0.034526933, -0.0103206476, 0.0233150385, -0.0100800106, -0.0117377313, 0.0194113739, -0.00106894015, -0.0203560963, -0.00522271125, -0.00943831261, 0.0223703161, 0.00620308379, 0.0154809719, -0.00354493759, 0.0219246931, 0.00860499591, 0.0289655495, 0.0152670722, 0.0182081889, 0.0194648486, -0.00769146718, 0.0111138588, 0.0111316834, 0.00313719176, 0.00582430325, -0.0130656911, 0.001122972, 0.012869616, 0.0132528525, -0.0137341265, 0.011425795, -0.009572, 0.00167220342, -0.00758006144, -0.00892138947, -0.0111584207, 0.00286981743, 0.0206412952, 0.000481552241, -0.0142064877, -0.0198035222, -0.0168980565, 0.00364297489, 0.0227981154, -0.0219959915, 0.0117912069, -0.0352221094, 0.0037165028, -0.00776722329, 0.0265948307, -0.0154096717, 0.0142599624, -0.0263809301, 0.0170495678, 0.0195361488, 0.00254896842, 0.00912637636, 0.0205521714, 0.0268622041, 0.00086451025, -0.0044740634, 0.0231011398, -0.014955136, -0.0095007, -0.0206412952, -0.0101245735, -0.0214434192, -0.00436711358, 0.00594016584, 0.00590451574, -0.00142711028, 0.0264700558, -0.0104721598, -0.0187696759, -0.0103562977, 0.00833762158, -0.00367639656, 0.0220672917, -0.0317818932, 0.00704976916, -0.0051558679, 0.0104008606, -0.00382122444, 0.00846685283, -0.0150888227, 0.00442950102, -0.00675565749, 0.0141619258, -0.00705868145, 0.0122190053, -0.00912637636, -0.00425347965, 0.000707427855, 0.00783852302, 0.0194292, -0.0132439407, 0.00160201767, -0.0215147194] |
27 Dec, 2024 | Python – String startswith()
27 Dec, 2024
startswith() method in Python is a built-in string method that checks whether a given string starts with a specific prefix. It helps in efficiently verifying whether a string begins with a certain substring, which can be useful in various scenarios like filtering or validating input. In this article, we will understand about startswith() method.
Let’s understand by taking a simple example:
Python
s = "GeeksforGeeks"
res = s.startswith("for")
print(res)
OutputFalse
Explanation:We create a string 's' with the value "GeeksforGeeks!".We then call the startswith() method on 's', passing "Geeks" as the prefix.The method checks if the string starts with "Geeks", and since it does, the result is True.Table of Content
Syntax of startswith() methodExamples of startswith() methodSyntax of startswith() methodstring.startswith(prefix[, start[, end]])
Parameters:prefix: The substring or a tuple of substrings to check for at the start of the string.start (optional): The index where the search for the prefix begins. By default, it starts from index 0.end (optional): The index where the search for the prefix ends. If not specified, the search goes till the end of the string.Return Type:The method returns a Boolean:True if the string starts with the specified prefix.False if it does not.Examples of startswith() methodBasic Prefix CheckHere’s a simple example where we check if the string starts with the word “Python”.
Python
s = "GeeksforGeeks"
res = s.startswith("for")
print(res)
OutputFalse
Explanation: The string starts with the word "Python", so the method returns True.Using start and end ParametersLet’s check the string using the start parameter to begin from a specific index.
Python
s = "GeeksforGeeks"
res = s.startswith("for", 9)
print(res)
OutputFalse
Explanation:
We start the check from index 9, where "Python" begins in the string.The method returns True because the substring at that position is "Python".3. Checking Multiple PrefixesWe can also check if the string starts with any one of several prefixes by passing a tuple of prefixes.
Python
s = "GeeksforGeeks"
res = s.startswith(("Geeks", "G"))
print(res)
OutputTrue
Explanation:
We pass a tuple with two prefixes: "Geeks" and "G".Since the string starts with "Geeks", the method returns True.FAQ’s on String startswith()Can startswith() check multiple prefixes?Yes, we can pass a tuple of prefixes, and it will return True if the string starts with any one of them.
What happens if we pass invalid start and end indices?If the start or end index is out of bounds, it will raise an IndexError.
Does the method modify the original string?No, the startswith() method only checks the prefix and returns a Boolean value. It doesn’t modify the string. | NLP/Natural Language Processing (NLP) Tutorial/AI ML DS - Projects/30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated]/Does Artificial Intelligence Require Coding?/Artificial Intelligence – Boon or Bane/Artificial Intelligence Examples/Agents in Artificial Intelligence/What are Diffusion Models?/ML | Common Loss Functions/Loss Functions in Deep Learning/Kaiming Initialization in Deep Learning/Swift - Initialization/Swift – If Statement/6 Best iOS Project Ideas For Beginners/Swift Programming Language/Introduction to Visual Programming Language/What is D Programming Language: Usage and Applications/Best Programming Languages for Data Science in 2024/5 Best Languages for Competitive Programming/MEX (Minimum Excluded) in Competitive Programming/Rearrange Array to maximize sum of MEX of all Subarrays starting from first index/Minimize moves to segregate even and odd by swapping adjacent elements/Minimum elements to be removed such that sum of adjacent elements is always even/Maximum sum such that exactly half of the elements are selected and no two adjacent/Maximum length subsequence such that adjacent elements in the subsequence have a common factor/Longest subsequence such that difference between adjacents is one/Longest Increasing Subsequence using Longest Common Subsequence Algorithm/Longest Common Subsequence (LCS)/Minimum insertions to form a palindrome with permutations allowed/Print longest palindrome word in a sentence/Python String split()/Python String strip() Method/Python String rindex() Method/Python String istitle() Method/Python String isdigit() Method/expandtabs() method in Python/String capitalize() Method in Python/Python String upper() Method/Python – String startswith() | https://www.geeksforgeeks.org/python-string-startswith/?ref=lbp | NLP | Python – String startswith() | Artificial Intelligence – Boon or Bane, AI ML DS - Projects, Longest Common Subsequence (LCS), Rearrange Array to maximize sum of MEX of all Subarrays starting from first index, Python String istitle() Method, MEX (Minimum Excluded) in Competitive Programming, Swift - Initialization, Minimum insertions to form a palindrome with permutations allowed, Longest Increasing Subsequence using Longest Common Subsequence Algorithm, 6 Best iOS Project Ideas For Beginners, ML | Common Loss Functions, Python String strip() Method, Python String isdigit() Method, Artificial Intelligence Examples, Python String split(), expandtabs() method in Python, Longest subsequence such that difference between adjacents is one, What is D Programming Language: Usage and Applications, 30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated], Swift – If Statement, Natural Language Processing (NLP) Tutorial, Python String rindex() Method, Loss Functions in Deep Learning, Python String upper() Method, Minimize moves to segregate even and odd by swapping adjacent elements, Maximum length subsequence such that adjacent elements in the subsequence have a common factor, Does Artificial Intelligence Require Coding?, Print longest palindrome word in a sentence, Python – String startswith(), Best Programming Languages for Data Science in 2024, String capitalize() Method in Python, NLP, 5 Best Languages for Competitive Programming, Maximum sum such that exactly half of the elements are selected and no two adjacent, Swift Programming Language, Minimum elements to be removed such that sum of adjacent elements is always even, Agents in Artificial Intelligence, What are Diffusion Models?, Kaiming Initialization in Deep Learning, Introduction to Visual Programming Language | GeeksforGeeks | [0.0275586452, 0.0329940878, -0.00124562217, 0.045352567, -0.0220850594, -0.00858704466, 0.0294658188, -0.0114907157, 0.0148187317, -0.0469927341, -0.0336997397, 0.0351491943, -0.00649392279, 0.0364651419, -0.022199491, 0.00654160231, 0.0266241301, 0.0320023559, 0.0179655664, -0.00617447169, 0.00699932361, -0.007476117, -0.0722818449, -0.0271581393, 0.00467972504, 0.0207500383, -0.00508738309, 0.00659881765, -0.000753929198, -0.0194817688, 0.0316399932, -0.0343291089, 0.0312013458, -0.00424107537, -0.0284359455, -0.0295802485, 0.00911151711, 0.0221232027, -0.026280839, -0.0159916431, -0.0213794056, -0.00532101188, 0.00638902839, 0.0475267433, -0.0471453071, 0.0622882582, -0.0290462393, -0.000678238284, 0.00702316361, -0.038048096, 0.00666556833, 0.0224855654, 0.00540206674, 0.0114335, 0.0308580548, 0.0447804146, 0.00635565305, -0.0157055669, -0.0106229521, -0.0156102087, -0.00561662344, -0.00600759406, 0.0283024423, -0.0157437101, -0.00266050594, 0.0179178882, -0.00731877517, -0.00809118059, 0.0358548462, -0.0297900382, 0.00689919712, 0.0285313036, 0.0104513066, -0.00654637, 0.004732172, -0.0670943335, -0.0176985618, -0.00770497788, -0.00165447232, 0.0277302917, 0.0117005045, -0.017631812, 0.0353208371, -0.0106324879, 0.0347677581, 0.0189191531, 0.0244690254, -0.0250983927, 0.0163063258, 0.00714236172, 0.00697548408, 0.0141989011, -0.0254035406, 0.00913059, -0.0293704588, 0.0317162834, 0.0249458179, 0.0310297, 0.0109662432, 0.033184804, -0.00397168705, -0.00406943, -0.00235059042, -0.0119293649, -0.015800925, -0.00965983, -0.0218752716, 0.0337378867, -0.00791476667, -0.0228860714, 0.0211314727, -0.0389444679, -0.00227668742, 0.0385821052, -0.00330894464, 0.00886835344, -0.0283787288, -0.00396453543, 0.0360455625, 0.0136076771, 0.0187570434, 0.0132929934, -0.0119102933, 0.0333945937, -0.0264906287, 0.0088588167, -0.0166686885, -0.02176084, -0.00614586379, -0.0100031206, 0.0123012634, 0.0117863268, -0.0139032891, 0.0218180548, 0.0660263151, 0.00691826874, 0.019224301, 0.0366367884, 0.0142847234, 0.0165447239, -0.0358357765, 0.0146852294, 0.00979333185, 0.0446659848, 0.0146852294, -0.0127875926, 0.0190812629, 0.00619831122, -0.00755717186, -0.0472978838, -0.0284168739, -0.045352567, -0.00389063219, 0.0249648914, 0.00232675066, 0.0183279291, 0.0118435426, 0.00687058968, 0.0361027792, -0.00118840695, -0.00929746684, -0.0380290225, 0.0322502889, 0.00830573682, 0.0285885185, 0.031449277, 0.0155816013, -0.0325172953, -0.00662742509, 0.0247169584, -0.00232317485, 0.022599997, 8.91007221e-05, -0.0162014328, -0.0342337489, -0.0212649759, 0.0269102063, -0.00214795326, -0.0265097, 0.0180990696, -0.0734261498, -0.012768521, 0.0258231182, -0.0188047234, -0.00902092643, 0.00349012599, 0.003564029, 0.0262999106, -0.00692303665, -0.0423773788, -0.00349966181, 0.00040557218, 0.0106706312, 0.0143324025, 0.00279877591, 0.0124824457, -0.0396691933, 0.013559998, 0.0206928235, 0.0277302917, 0.0231149327, -0.0142942593, -0.0216654819, 0.00921164453, 0.0162967909, 0.00434596976, -0.029065311, 0.0316018499, -0.00742366957, -0.000991133857, -0.0325172953, -0.0345389, -0.00909244549, 0.0402032, 0.00116873928, -0.00205378653, -0.0377429463, 0.00423153955, -0.012968774, 0.000933322648, -0.0157913901, 0.0145135839, 0.00518750958, -0.00170930347, -0.00424584327, -0.0267767049, -0.0212840475, 0.0235726535, 0.0044031851, 0.017784385, 0.0378383063, 0.00614109589, -0.037857376, -0.0134264957, 0.0128734158, -0.00390970381, 0.00627459818, 0.00166758418, -0.0117958635, 0.00490143383, 0.0497009195, -0.0138174659, -0.00587409176, -0.0458102897, 0.0110234581, 0.0410805, 0.0127399135, 0.0192052294, -0.0313348472, -0.00240184553, -0.0314874202, -0.0337760299, -0.0016032171, 0.026128266, -0.0281689409, -0.0195199121, -0.0166210104, -0.0240113046, 0.0249458179, 0.00667510461, 0.00824375357, -0.0135981413, 0.0273107123, 0.0246597435, -0.0115670022, -0.0274632871, -0.00480369106, -0.0211696178, -0.00546881789, -0.0176508836, 0.0364079252, 0.0069897878, 0.0237443, 0.0111569604, -0.0140844705, 0.00887312088, 0.00116635533, 0.012568268, 0.0092688594, -0.0169166215, -0.0318307132, 0.0114239641, 0.0337188132, -0.0256514736, 0.0423010886, -0.0289318096, -0.0262426957, 0.0405464917, -0.0396691933, -0.00161156093, 0.019472234, 0.0263952706, 0.0121296179, 0.0427588113, 0.0109471716, 0.0162300393, 0.013512319, -0.012072403, -0.0424918085, -0.0114239641, -0.0260901228, -0.00474170828, -0.0419959426, 0.0126540912, -0.0156102087, -0.0419959426, 0.0313157737, 0.0265097, -0.00162586477, -0.0284740888, 0.00787185505, -0.0506545082, -0.00106682477, 0.00045831743, -0.0153432041, 0.00789569505, 0.0511503704, -0.00109543232, -0.0246788152, -0.0306864083, 0.0261473376, -0.037857376, 0.0453907102, -0.00576919736, 0.027387, -0.0554224402, -0.0196057353, 0.0218180548, 0.0019345883, -0.0406609215, -0.00451523112, 0.0204639621, -0.0194436256, 0.00253415573, -0.0139509682, 0.0162205044, -0.0242973808, -0.0322884321, 0.0127208419, 0.033528097, -0.00811025221, -0.00965506211, 0.00193578028, -0.0289508812, 0.028111726, 0.0263571274, -0.00713282591, 0.0286838766, -0.0517988093, 0.0502349287, 0.000400506251, 0.0179178882, -0.00725679193, 0.0040336703, -0.0163063258, -0.0269864928, -0.0301714726, -0.0121868337, -0.000435073773, 0.0214175489, 0.0113190701, -0.0480988957, 0.0391351841, -0.00493480917, -0.00241495739, -0.0261854809, 0.000882663357, -0.0132453144, 0.0205783937, 0.00203352282, -0.0148091959, -0.038353242, 0.0405464917, -0.0268339198, 0.0170978028, 0.00482514687, 0.00125754194, 0.0208263267, -0.0114430357, 0.000764657045, -0.0277302917, 0.0104417708, -0.0152859893, -0.0373805836, -0.0290843844, 0.00487282639, 0.0029108224, 0.035511557, 0.00400267867, 0.0390398242, -0.0502349287, 0.00235774228, -0.0130927404, -0.0529049709, 0.00384295289, -0.0253272541, -0.0656830296, 0.0128924875, 0.00472263619, -0.00688966131, 0.0225618538, -0.0150571289, -0.0178511366, -0.00687058968, -0.0388872512, -0.0530956872, -0.0318497829, -0.00342337508, 0.0040265182, 0.0151810944, 0.00847738236, 0.0782703683, -0.0265097, 0.00813409127, 0.00949772, 0.0282261558, -0.0315064937, 0.0160870012, 0.0227144267, 0.0356832, 0.00406704564, -0.00659881765, 0.00650822697, 0.0200443845, 0.00050301681, -0.00497772079, 0.00241495739, 0.0466113, -0.000225880765, 0.0257086884, -0.00916873291, -0.0181658193, 0.0398599096, 0.00230171904, -0.0370563641, -0.00735691888, 0.00471786829, -0.0232865792, 0.0149808414, -0.0259184763, 0.00269626547, 0.0130736688, -0.00494434498, 0.00109424035, 0.00686582178, 0.0605336614, -0.016001178, 0.00773835322, 0.0306864083, 0.025289109, -0.000239439571, 0.00232079066, -0.0056929104, 0.037895523, 0.00314921886, -0.0313157737, 0.0171740893, -0.00476316363, 0.0485947616, 0.00863949209, -0.00233867043, -0.0318688564, 0.000222602815, -0.00637949258, 0.0611821, -0.0144277615, 0.0272916406, -0.0439794026, -0.0144849764, -0.00144706725, -0.00342575903, -0.0368656479, 0.0102033736, 0.0333945937, 0.00223973603, 0.020959828, -0.0181276761, 0.0401650555, -0.016840335, 0.026528772, 0.0545832813, -0.00441987254, -0.0246978868, 0.00104179303, 0.00243402924, -0.0178702082, -5.12180159e-05, -0.0328415148, 0.0171073396, -0.0213031191, -0.0434072502, 0.0220087729, 0.0326698683, -0.0348059, -0.00683244597, 0.0365795717, -0.0340239592, 0.0142465802, 0.0174124874, -0.0159439631, -0.00185830134, 0.00366653944, -0.00959784631, 0.0392877571, -0.0270437095, -0.00778126437, -0.0186330769, 0.00935468171, 0.0198536683, -0.0150380563, -0.00527333235, 0.00708991429, -0.0410042144, 0.0295421053, -0.00744274165, 0.0319832861, -0.000458615425, 0.0209789, 0.00353303738, -0.028264299, -0.0149331624, 0.0105371289, -0.0319642127, 0.00332324835, -0.0354543403, 0.014656622, 0.0122821918, -0.0139414323, -0.0267767049, 0.0174029507, -0.0256514736, 0.00385725684, 0.0100126565, 0.0213794056, 0.0111951036, 0.00193101238, -0.0136648919, 0.00412902888, -0.000719957694, -0.0236489419, -0.0326507948, 0.0340430327, -0.0155816013, -0.0462298654, -0.0110711372, 0.00197392376, -0.00222304813, 0.00993637, -0.00834388, -0.00599805824, -0.00650822697, 0.00918780454, 0.0362744257, 0.023992233, 0.00570244621, -0.0304384753, -0.0266432017, 0.0197773799, 0.00681337435, -0.00851075817, -0.025136536, 0.0150762005, -0.0110616013, -0.0245643836, 0.0295993201, 0.0169643015, -0.017984638, -0.00667987252, -0.0213794056, 0.0388681777, -0.0217417683, 0.0223329924, 0.0151715586, -0.00881590601, -0.00337807974, 0.0252509657, 0.0434835367, -0.022867, 0.0145421922, 0.0100984797, -0.0212459043, 0.00408850145, -0.0240494478, -0.0242973808, 0.0260138363, -0.0144468332, -0.025136536, -0.0149808414, -0.0310297, 0.0205402505, -0.00301094889, 0.0208453983, -0.00454622274, 0.0143514741, -0.0270246379, 0.016992908, -0.0271962825, -0.00264381804, 0.00400029449, 0.0269864928, 0.0156102087, 0.0140367914, 0.0242401641, 0.0128543442, 0.0169738363, -0.000869551557, -0.0100126565, -0.00889219251, 0.0214938354, -0.0303049739, -0.00463204551, 0.0125015173, 0.0111951036, -0.0486710481, -0.00776696065, -0.00973611698, -0.00388586428, 0.0183660723, -0.0236870851, 0.0175745972, -0.0121772978, -0.0148950191, 0.0073426147, 0.0212268326, 0.0397836231, 0.0181753561, 0.00513506262, -0.0330894478, -0.000347165042, -0.0512266569, 0.00331132859, -0.0239731614, 0.0045295353, 0.0233247224, 0.00518750958, -0.0027367929, 0.00640333211, 0.0554987267, -0.000393354363, -0.00569767831, 0.0225237086, -0.00703746732, 0.00412902888, 0.0728158504, 0.00596945034, 0.0100794081, 5.51292105e-05, 0.0429495275, 0.0104131633, -0.0232675076, -0.0187665801, 0.00225284765, -0.00573105412, 0.0123298718, 0.0165065788, -0.0126445545, 0.0254416838, 0.0112046394, 0.0205593221, -0.0381815955, 0.0211314727, 0.0196057353, -0.020959828, -0.00252938783, 0.0149808414, 0.0122821918, 0.00708514638, 0.0260138363, 0.0197964534, 0.0262999106, -0.00247694063, -0.027119996, -0.0173552707, 0.00671801576, 0.00725202402, -0.00581687689, -0.0336997397, 0.0162681825, 0.0219706297, 0.00770497788, 0.0250221062, -0.00341860694, -0.03764759, -0.0194531623, -0.031449277, -0.00842493493, 0.0242210925, -0.0368084311, -0.0174601655, -0.00595991453, -0.0110425297, 9.3049166e-05, 0.0369037911, 0.037952736, 0.0377238765, 0.00148401875, -0.00459867, -0.0281880125, 0.00953586306, 0.00996497739, -0.00934037846, 0.0162681825, -0.00188571704, -0.0113095343, 0.00875392277, 0.0212840475, -0.00210384978, -0.00259137084, 0.0191098712, 0.0140463272, -0.00933084264, 0.00591700338, -0.0223329924, 0.0542781353, -0.00467972504, 0.0119007574, 0.012120082, 0.00890649669, 0.0156292804, -0.00619831122, -0.0260901228, 0.0191098712, 0.0119389007, 0.00922118, -0.0153050609, -0.00908767805, -0.0121105462, 0.021360334, -0.00887788925, -0.00822945, 0.0296756066, -0.00689919712, 0.00867763534, 0.0102605894, -0.0055832481, -0.00612679217, -0.00201445119, -0.019815525, -0.0143514741, 0.016344469, 0.0148282675, -0.00586455595, -0.0232293624, -0.00786708761, -0.00514936633, -0.0271962825, -0.00326126534, 0.00183088577, -0.00295611774, 0.010184302, 0.0302477591, -0.00427683489, 0.0427588113, 0.0207118951, -0.0179941747, 0.00956923887, 0.0342146792, -0.0020716663, -0.0109567074, 0.0166686885, 0.00156149769, 0.00990776252, 0.00420054793, 0.00178678241, -0.0131880995, -0.00438411301, -0.0279019363, 0.00944050495, -0.00528763607, -0.00259613874, 0.00802919734, -0.000818892266, -0.0108994916, -0.0223711357, -0.0131022763, 0.0166972969, 0.012568268, -0.022867, 0.023591727, 0.0238778014, -0.00914012548, -0.00641763629, 0.0217226967, -0.00781940762, 0.00687058968, -0.0204067472, 0.00952156, -0.00823421776, 0.0312204175, -0.0454288535, -0.0153241325, -0.00310392352, 0.0418052264, -0.00436742557, 0.0249267463, 0.00452715112, -0.0079433741, -0.0466494448, 0.00522565329, 0.0264524855, 0.0288745947, 0.0150380563, 0.0434835367, -0.0200253129, 0.033127591, -0.0266813468, 0.00236012624, -0.0153050609, -0.0289890245, 0.020616537, 0.00107099663, -0.00986961834, -0.0436361097, 0.0270437095, 0.0115383947, 0.0126159471, -0.0318307132, 0.0354924835, -0.0034376788, -0.0151048079, -0.0172313061, -0.0181753561, -0.0127113061, 0.0160202514, 0.002794008, 0.0466113, 0.0171740893, -0.0131022763, 0.000420173979, 0.0136648919, -0.000269984128, 0.0215129089, -0.0428350978, 0.0220659878, -0.0177080985, 0.0199490264, -0.0123298718, 0.00618877541, -0.0112809269, 0.0468783043, -0.0204830356, 0.00505877566, -0.0407753512, 0.00440556882, -0.00667510461, 0.0116432896, -0.00483706687, 0.0091591971, 0.0187189, 0.0540111288, 0.0189000815, -0.0153145967, 0.0404702052, 0.0260710511, 0.0165447239, 0.0197583083, -0.00357118086, -0.0100698723, -0.00592177128, -0.0113476776, -0.00525426073, 0.0230577178, -0.0243927389, 0.018280251, -0.0186521485, -0.00778126437, 0.0295611769, 0.0251937509, 0.0292941723, -0.0128066642, 0.0064081, -0.0182421077, -0.00843447167, -0.000829024124, 0.00395023124, -0.0105752721, 0.00436027348, -0.0236298703, -0.03566413, -0.00132548506, 0.0628222674, 0.0214175489, -0.00534961931, 0.0140653988, -0.0121486904, 0.0107755261, 0.000529836398, -0.0300761126, 0.0127303777, 0.00774312112, 0.027367929, 0.00768113788, -0.00149593863, -0.016792655, 0.00237085414, -0.00111748395, 0.0413475037, -0.0020192191, -0.00385248894, -0.00941189751, 0.0166972969, -0.00607911311, -0.00927362684, -0.0143228667, 0.0302859023, -0.0128257368, 0.00420054793, 0.000455039495, -0.0144849764, -0.0146089429, -0.0044604, -0.0372280106, -0.030495692, 0.0201588161, -0.0151810944, 0.00738552632, 0.021360334, 0.0201778878, 0.0131594911, 0.00890172832, 0.00850122236, 0.00519704539, -0.0136648919, 0.00140415586, -0.00249601225, 0.00176413474, -0.0193005875, -0.00217417697, -0.00436980929, -0.0389063247, -0.0293132439, -0.0173552707, -0.0176890269, -0.0239540897, -0.0223329924, -0.0251937509, -0.0699550956, 0.0483277552, -0.0392496139, -0.000265216193, 0.0188714731, 0.0541637056, -0.00659881765, -0.00166758418, -0.0164970439, -0.0437124, 0.0494720601, -0.0175650604, -0.0180895329, 0.0185472537, 0.0301714726, -0.0022623837, 0.0101175513, -0.0148187317, -0.00500156032, -0.0178797431, -0.00444848044, -0.0397073366, 0.00577396527, -0.0370372944, -0.0115574664, 0.0210551862, 0.0124824457, -0.00248886039, -1.17568629e-06, 0.0126350187, -0.0240494478, -0.0513410904, -0.00769067369, -0.0157913901, 0.0236680135, -0.0204830356, 0.0241066627, -0.00751902815, 0.0156864952, -0.00280354382, -0.0283596572, -0.0284550171, -0.0157055669, 0.00749995653, 0.0159344282, 0.0291416, -0.00948818401, -0.00956923887, 0.0115956096, -0.0412712172, 0.00299187726, 0.0121010104, 0.0137221077, 0.0179560315, 0.0200062413, 0.00507307937, -0.0258421898, -0.014952234, -0.0045295353, -0.0152573818, 0.00217656093, 0.00600759406, -0.0345007554, -0.000600461382, 0.00661312137, -0.0025127, -0.0286838766, -0.0161156096, 0.0149140907, 0.0139318965, -0.00318259443, 0.0310869142, -0.00313491514, -0.0102987327, 0.00368084339, -0.0475267433, 0.000282797962, -0.00772881741, -0.00756670767, -0.0251174644, -0.0165065788, -0.0250983927, 0.00508261519, 0.0195675921, -0.00590269966, -0.0177271701, -0.00943573657, 0.00281784777, 0.000936898577, -0.00927839521, -0.0242783092, -0.00145302725, -6.55590629e-05, -0.00346151832, -0.0229051448, -0.0188333299, -0.00214914512, 0.020120671, 0.014008183, -0.00151024235, -0.019176621, 0.00278685614, 0.000636518875, -0.0178225283, 0.0342718922, -0.029904468, -0.0250411779, 0.00143514748, 0.00918780454, -0.026280839, 0.0223902073, -0.028664805, -0.0135981413, -0.00355926109, 0.0196057353, 0.0120247239, -0.0126731629, 0.027367929, 0.00493480917, 0.00826759357, -0.0155053139, -0.00862518884, -0.00866333209, 0.0180132464, 0.022504637, -0.023591727, 0.0129306307, -0.0255179703, 0.0113572134, 0.0298472531, -0.022599997, -0.00151024235, -0.00167950394, 0.0154671706, 0.00654160231, -0.0254035406, -0.0147424452, 0.00308485189, 0.0287983082, -0.0349203311, -0.00153050607, 0.00701362779, 0.00444848044, -0.0333755203, 0.00359263667, -0.0147424452, -0.00567383878, 0.00443656044, 0.00538299512, 0.0148091959, -0.00215272116, -0.033337377, 0.0187379718, 0.00140296388, -0.0146756936, -0.00113536371, 0.00274394476, -0.0212649759, -0.00898755156, 0.0349775478, 0.0118435426, -0.0200062413, -0.0391351841, -0.00394546334, -0.0207500383, 0.0157437101, -0.0068848934, 0.019424554, 0.05931307, 0.0030204847, 0.00987915415, 0.00475362781, 0.00570721412, 0.00636518886, 0.0330703743, -0.0149236266, -0.00727109611, -0.015648352, -0.013464639, -0.0072854, -0.0153813474, -0.025289109, 0.0143610099, -0.0232102908, 0.0197583083, 0.00829143357, 0.00791476667, -0.00504447194, 0.00333040021, 0.00504924, 0.0182707142, -0.00903046224, 0.00429829024, 0.0103654834, 0.0230577178, -0.0132834576, -0.00706607476, -0.00226953556, -0.011776791, -0.00731877517, 0.0188142583, 0.000241078553, -0.00661788927, 0.0189477615, 0.022352064, -0.023000503, -0.00294419774, -0.013264386, -0.00279877591, -0.0329940878, -0.0105085215, -0.00412426097, -0.0171073396, -0.00969320536, 0.0129020233, 0.00475362781, -0.0134074241, -0.0141893644, -0.0151429512, 0.0161060728, -0.00834388, -0.0212840475, -0.0172694493, 0.0170215163, -0.0137030361, 0.00867763534, -0.00880637, 0.00384056894, 0.0169643015, -0.0171740893, 0.0218180548, 0.00158652931, 0.00722818449, -0.00556894438, 0.0185281821, -0.010975779, 0.0097551886, 0.0159535, 0.000876703474, -0.0128352726, -0.00423630746, 0.00609818473, 0.00760008302, 0.0223329924, 0.00879683439, -0.00363793201, 0.0138460733, 0.023896873, 0.0050254, -0.0282833707, 0.000579899701, -0.0182421077, -0.024888603, 0.0409660712, 0.00596468244, -0.013512319, -0.00708514638, -0.0386774614, 0.0290271677, -0.0246978868, 0.00710898638, 0.0220087729, 0.0136362845, 0.0236870851, 0.0154957781, 0.0101270871, 0.00622691866, 0.00353065343, -0.00650345907, -0.0260519795, 0.00374759431, -0.00672755158, -0.0246025268, -0.0181658193, 0.0081007164, 0.00177605462, -0.0161156096, 0.000182373391, -0.0291416, 0.0125778038, 0.00953586306, -0.0146184787, -0.00251746806, -0.0133025292, 0.0105562005, 0.00711852219, -0.0322502889, 0.0278447215, 0.0246788152, 0.0311822742, -0.00833911262, -0.00841063168, -0.0116051454, 0.0160393231, 0.00989822671, 0.00781464, 0.0276158601, -0.00576442946, -0.00770020951, 0.0111951036, 0.015200166, 0.0104894498, 0.00828666519, 0.0237061568, 0.0108041335, -0.0232293624, 0.0319451429, -0.00257229921, -0.000257170323, -0.00750472443, 0.0076954416, -0.019224301, -0.0167545117, 0.0191098712, 0.00809594803, 0.0184042156, 0.00578350108, 0.0202351026, 0.0165637955, -0.0400124826, 0.00553556858, 0.00611248845, 0.00722818449, -0.011128353, 0.00553556858, -0.0150857363, -0.0207881816, 0.00249839621, -0.0499297827, -0.00107278465, 0.00268672942, -0.0207118951, 0.012167762, 0.010975779, -0.0219515581, 0.00501109613, 0.00626983028, 0.024144806, -0.0109185632, -0.000858823711, 0.0180418529, 0.00236012624, 0.00768113788, -0.00632704562, 0.00216702488, -0.0164970439, 0.0123775508, -0.0328224413, -0.00653683441, 0.00881113764, -0.0129020233, -0.016792655, 0.00582164479, -0.00156507362, -0.00934037846, -0.0257659033, 0.0154290274, 0.00398599077, 0.0020251791, 0.0107945977, -0.0112141753, -0.00799105316, -0.0112427827, -0.00975995604, -0.0327842981, -0.00702316361, -0.0230577178, 0.00104656105, 0.0115479305, -0.0058264127, -0.001818966, 0.00520658167, 0.00848215073, 0.00177486264, 0.0228479281, -0.0174220223, 0.0148091959, 0.0328987278, 0.0186044704, 0.00568337459, 0.0254607555, 0.0069945557, 0.000477985159, -0.0221613459, -0.0107755261, -0.0141416853, -0.0361599959, -0.0267004184, 0.0112809269, 0.00608864892, 0.000187588317, 0.00883497763, -0.00664649671, 0.00233390252, -0.0110139223, 0.00267004175, 0.027367929, 0.00811978802, -0.0290271677, -0.011128353, 0.027272569, -0.0238015149, 0.0368275046, -0.000622215099, -0.0245453119, -0.00977426, -4.40288713e-05, 0.0285885185, -0.00247932458, 0.0122535843, 0.00381672941, -0.0262999106, 0.00371183478, -0.0203304607, 0.0226381402, -0.00163540058, 0.00687058968, 0.0129497023, -0.0163063258, 0.0143610099, -0.0075905472, 0.0143800825, 0.00190002075, -0.00245786877, -0.0055832481, -0.0157913901, 0.0065272986, -0.0173075926, 0.0147710526, -0.00600282615, -0.0216464102, 0.00779556856, 0.0201397445, 0.000353720941, 0.00163778453, 0.00344959856, -0.00599329034, 0.00669894414, 0.0394021869, -0.0132739218, -0.00431736233, -0.0177653134, -0.0165828671, -0.00427206699, -0.0116909686, -0.0120628672, -0.0349203311, -0.026280839, 0.00954063144, 0.00212649745, -0.00724725612, 0.0158676766, 0.0266622733, 0.0150094489, 0.00687058968, -0.00106324872, 0.0437124, 0.0266050585, -0.0214938354, 0.0253272541, -0.00532578, -0.018728435, 0.0485184714, 0.00334470416, -0.0263952706, 0.0406990647, 0.00849168655, -0.0118530784, 0.014751981, 0.0191098712, -0.0443608351, 0.00221351231, -0.00532578, -0.0154290274, -0.0264143422, -0.0252318941, 0.0274060722, 0.0086728679, 0.00253415573, 0.00419816375, 0.0109853148, 0.0302096158, 0.0165733304, 0.00202398701, -0.00543067418, 0.0200443845, -0.0172313061, 0.018623542, 0.00649869116, 0.00417909212, -0.0316590667, 0.00267957756, 0.0172980558, -0.00255561131, 0.0048609064, -0.0194340888, -0.00133740483, -0.00464396551, -0.00854413398, -0.00458913436, 0.00478461944, -0.035721343, 0.023591727, -0.00658928184, 0.0288555231, -0.00271533709, -0.0274442155, -0.00462966179, 0.0115288589, 0.0104989856, 0.0118244709, 0.0212459043, -0.0382197425, 0.0048537543, 0.0378383063, -0.00233151857, -0.0070183957, 0.00277493638, 0.023496367, -0.00670848, 0.00102331734, 0.00804826897, 0.0303621888, 0.000215897904, -0.0252700374, 0.00691350084, -0.00684675, -0.0102701252, -0.00187379715, 0.0244308822, 0.00391924, -0.00101854943, -0.0165351871, 0.040432062, 0.00338284764, 0.00560708763, -0.0126826987, -0.0264524855, -0.0255179703, 0.0211505443, 0.010479914, -0.0125873396, -0.0109281, 0.00172241533, 0.016392149, -0.011128353, -0.0124919815, -0.00160083303, 0.00420293165, 0.00684198225, 0.000625791, 0.00102629734, 0.0146089429, 0.0274060722, 0.017431559, -0.00156745757, 0.0393259, 0.00617447169, -0.00875869, 0.0025127, 0.00934037846, 0.029904468, 0.0154290274, -0.00232913462, -0.00208477816, 0.0220087729, -0.000494672917, -0.0162109677, -0.0177748501, 0.0137983942, -0.000999477692, -0.0122154411, 0.00586932385, -0.020216031, 0.0282070842, 0.00804350059, -0.0269483496, 0.00855843723, 0.0280354377, -0.0170787312, -0.00863949209, -0.00909721386, 0.0253272541, 0.0157532468, 0.00873008277, -0.008320041, 0.0152287735, -0.0126731629, -0.0150666647, 0.0153718116, -0.00625552656, 0.0154671706, -0.00961215049, -0.0168784782, 0.0110902088, 0.0314111337, 0.00835341681, -0.000454443507, 0.0134169599, -0.0112523185, 0.0229432881, 0.0142847234, 0.0125205889, -0.0126731629, -0.00572151784, 0.00284407125, -0.00431259442, 0.00987915415, -0.00172479928, -0.000216344895, -0.00504924, -0.00938805752, -0.0054735858, -0.0158772133, 0.00508261519, 0.000987557811, 0.00400744658, 0.0184900388, 0.0221041311, 0.0348631181, -0.0131690279, -0.0123489434, 0.0057978048, -0.00976472441, -0.00732831098, -0.00622215075, 0.00813409127, 0.00773358531, -0.0155243855, -0.0097313486, 0.000284287933, -0.0139223607, -0.0154576348, 0.00207285839, 0.0204639621, 0.00445563206, 0.00225523161, 0.00134098076, -0.0030371726, -0.013960504, 0.00299426122, 0.000229605706, 0.0268339198, 0.0265859868, 0.0167449769, 0.000414512062, 0.0218371265, -0.00325888139, 0.0115479305, -0.0073712226, 0.00185353344, -0.00187022123, 0.0287792366, -0.00722818449, -0.00223139208, 0.0101175513, -0.00563569553, 0.00057393976, 0.00211100187, -0.00783848, -0.028912738, 0.0158772133, 0.010384555, -0.00852029398, -0.0206928235, -0.000171794542, -0.000510466693, 0.0171740893, -0.00276540034, 0.0180609245, 0.00715666544, 0.0249076746, 0.00722818449, -0.0282833707, 0.0147424452, 0.00413379679, -0.0127208419, -0.000122103753, 0.0188047234, 0.0154957781, 0.00554987276, 0.0184900388, -0.02572776, 0.0206356086, 0.000597183476, 0.0165637955, -0.00760485092, 0.0199490264, 0.0112523185, 0.022352064, -0.0277112201, -0.0234010089, -0.0141226137, -0.00622215075, 0.0184518956, 0.0159916431, -0.0110711372, 0.0129973823, -0.00545451371, 0.0131594911, -0.00588362757, -0.0188619383, 0.0107087744, -0.0329368711, -0.0141512211, -0.00186783727, 0.000650822709, -0.000612679229, 0.0162491109, -0.00399314286, 0.0150952721, 0.0174410939, -0.0113572134, 0.00790046249, 0.0293132439, -0.00232198276, -0.00208001025, -2.24241794e-05, -0.00527810026, -0.0326317251, -0.0112427827, 0.00873008277, -0.00162824872, 0.00541160256, 0.0263380557, 0.0200062413, -0.0105371289, 0.0015448099, 0.0113476776, 0.0160679296, -0.0143896183, -0.0175555255, -0.00517797377, 0.0207881816, -0.00540206674, 0.00470833248, -0.00389063219, -0.0031945142, -0.00654160231, 0.011671897, -0.0171359461, 0.0233819373, 0.00339476741, -0.0143037951, -0.00144825922, -0.0142179728, 0.00416717213, 0.040088769, -0.00190717273, 0.00382626522, -0.00488236221, -0.00981240347, 0.00529717235, -0.0019298204, -0.0141989011, -0.00287744682, -0.0147996601, -0.0283024423, 0.000429709849, 0.00742366957, -0.00370229897, -0.0149999131, 0.00230648695, 0.0148854833, 0.00553556858, -0.024144806, -0.0340048894, 0.0139986472, -0.00595037872, -0.00349251, -0.00427921861, 0.0151429512, -0.0131404195, 0.00316113862, 0.0120628672, -0.00881113764, 0.0119484365, -0.0149903772, 0.0222185627, 0.00196319586, -0.0152859893, -0.0135313906, 0.0258040465, -0.00316829071, -0.0113572134, 0.0294658188, 0.0189096164, 0.0134360315, 0.011080673, 2.89428353e-05, -0.00670371205, -0.00746181328, 0.0161728244, -0.0259184763, 0.00307054794, 0.00761438673, -0.00402413448, -0.0145803355, 0.0288555231, 0.00394069543, 0.0231530759, -0.00983147509, -0.00371183478, -0.00994590577, 0.000532816397, 0.0145326555, -0.00130641332, 0.00288221473, -0.0076954416, -0.00513506262, -0.026528772, -0.00630320562, 0.0200062413, 0.00980286766, 0.0162014328, -0.0015817614, -0.0419196561, 0.0153718116, -0.0149045549, -0.0231912192, -0.0307436232, 0.00288459868, 0.0119198291, 0.0218371265, -0.00128018972, 0.00374521036, 0.0148759466, -0.00250078016, 0.0151334153, -0.000837964, 0.0106134163, 0.0101938378, 0.0113286059, -0.00465588551, 0.00186187739, 0.0155243855, 0.00287983078, 0.0106420238, -0.00530194025, 0.038200669, 0.0182897858, -0.012320336, 0.00475124409, 0.0235535819, 0.00407896563, 0.00345913437, -0.00994590577, -0.012072403, -0.00583594851, 0.00464873342, -0.0116051454, -0.00424822699, -0.00178082252, 0.0177939218, 0.0305910502, 0.00663219299, -0.00155911362, 0.00236370205, 0.00805780478, 0.00795291, 0.00543544209, 0.0168975499, 0.0129115591, -0.00503970403, 0.0202541742, -0.0109376358, -0.00986961834, -0.00257945107, -0.0128734158, 0.0231340043, -0.00632704562, -0.0182039626, -0.0159725714, 0.00714236172, 0.0503493585, -0.00115860743, -0.00354018924, -0.00190478878, -0.00368322735, 0.0068848934, 0.0175555255, 0.0114335, -0.0193387307, 0.0034376788, 0.00309677166, -0.0176222753, -0.0154576348, -0.00625075866, -0.0265097, 0.00542590627, -0.00424345909, 0.0107278461, 0.00797198154, 0.0129115591, 0.000435371767, -9.36358447e-06, 0.0184614323, -0.0045128474, -0.00356641295, 0.0229051448, 0.00801012572, -0.0053353156, 0.0258612614, 0.00163182465, -0.0167449769, 0.00505877566, 0.00482037896, 0.0142847234, -0.00510645472, 0.00806734059, 0.0030204847, -0.0106515596, -0.0316972099, -0.00139938795, 0.0123966224, -0.0170215163, -0.00334708812, -0.0208072532, 0.016592402, -0.00600282615, 0.00543544209, 0.00606004102, 0.0166496169, -0.00461297389, 0.018623542, 0.0221422743, -0.00543544209, -0.00137435633, -0.00267957756, -0.00479892315, 0.00365700363, -0.0067466232, -0.00893510412, -0.00827712938, 0.0157532468, -0.00278208824, 0.013512319, -0.0305719785, 0.00389063219, 0.00469164504, -0.000953586365, 0.00889219251, -0.0159535, -0.00629367, 0.0208263267, 0.0129210949, 0.0045247674, 0.0163635425, -0.00812455546, 0.00418624422, 0.00392639171, 0.000583177665, 0.00638426049, 0.0202541742, -0.00212649745, 0.0104036266, 0.00407896563, -0.00430305861, 0.0154290274, 0.000713997753, 0.00678953482, -0.023896873, -0.0130355256, 0.000536988315, -1.36891786e-05, 0.00143872341, -0.0106515596, -0.0149617698, 0.0199299548, 0.0161442161, 0.00667987252, -0.0170978028, 0.0015448099, 0.018280251, -0.0277112201, -0.00247217249, -0.0261854809, 0.00734738261, 0.0312013458, 0.0182993226, -0.00883497763, -0.000612679229, 0.00877299439, -0.00418862794, 0.010432235, 0.00957400724, -0.0113286059, 0.0163158625, -0.00353065343, 0.00216225698, -0.0099745132, -0.0048775943, -0.0194913056, -0.0173838791, 0.011576538, -0.0193482675, -0.0100221923, 0.0225237086, 0.0440175459, 0.00588839548, -0.0170215163, -0.0267194901, 0.0233819373, 0.000847499876, 0.0228479281, 0.0204067472, 0.00497295288, 0.00862995628, 0.00911628548, -0.00927362684, -0.00334232021, 0.0238587297, -0.00993637, 0.00295373378, 0.0148854833, 9.66251173e-05, -0.0148664108, -0.040584635, -0.0157532468, 0.00623645447, 0.0150666647, 0.000656186603, -0.00618877541, -0.00689442921, 0.0146661578, -0.00469641294, -0.0079672141, -0.0400124826, 0.0161442161, -0.00494911335, 0.000192654246, -0.000888623297, 0.0165351871, 0.0185949337, -0.00128734158, -0.0014232276, -0.00652253069, 0.0148950191, -0.00337569555, 0.00776219275, -0.0215129089, -0.00419101212, -0.0123394076, -0.00601236196, -0.0317925699, -0.0156006729, 0.024144806, -0.0283787288, -0.00843923911, -0.00202160305, -0.00369037921, -0.00811025221, 0.00123012636, -0.00010981143, -0.00884451345, 0.00714712963, 0.00534961931, 0.015696032, -0.0209789, -0.0307817664, 0.0126254829, 0.00190359668, 0.0128924875, 0.00256037945, 0.00659404974, 0.00447947206, 0.00671801576, -0.0153336683, -0.0110997455, 0.0152097018, -0.000649630674, -0.00889219251, -0.00268911361, 0.00733784679, 0.00895417575, 0.000877895451, -0.0250411779, -0.00624122284, -0.0236489419, 0.0204067472, -0.0094548082, -0.000898755156, 0.00643194, 0.0097313486, -0.000755121175, 0.00260805874, 0.00514459843, -0.0105085215, 0.0164875071, 0.0197392367, 0.0202541742, -0.00825328939, -0.00220159255, -2.43984014e-05, 0.00250316411, -0.0163826142, 0.00503970403, -0.0099745132, -0.0139318965, 0.0222567059, 0.0187665801, -0.0105562005, -0.0066417288, 0.0102224452, 0.0310297, 0.000252402388, 0.0131976353, 0.0209407564, -0.0244690254, -0.0175173804, -0.000239737565, -0.0275586452, 0.00401221449, 0.0171454828, 0.0147329094, -0.00591223547, -0.0212649759, 0.0302668307, -0.0141416853, -0.00116099138, 0.00211338582, -0.00283930334, -0.0029155903, -0.0081865387, -0.00704223523, -0.00779556856, -0.000618639169, -0.0144086899, -0.00651299488, 0.0146184787, 0.00223258394, -0.0104417708, 0.00992683414, 0.0109662432, 0.0230386462, -0.00960261468, -0.0120628672, 0.000463681354, -0.0152669176, 0.00822468195, 0.00624122284, 0.00749995653, -0.00716620125, -0.0383913852, -5.84816626e-05, -0.00156984152, 9.37196601e-05, 0.0186044704, 0.00740936585, -0.0120056523, -0.0112809269, -0.00382626522, -0.00243283715, 0.00399552658, 0.00221708836, -0.00201802701, -0.00157818536, 0.019224301, 0.0166686885, 0.0214938354, 0.00169499975, 0.00556417648, -0.0197964534, 0.0126159471, 0.00269388151, 0.000556954, 0.0316018499, 0.00596945034, 0.00843447167, -0.00715189753, 0.00616493588, 0.00733784679, -0.00552603276, 0.00957400724, -0.00592653919, -0.0193101242, -0.00672755158, 0.0298091099, 0.000196379187, 0.0134932464, 0.0100031206, -0.00462012598, -0.0204830356, 0.0197583083, 0.0295421053, -0.00346151832, 0.00334470416, 0.0109376358, -0.00418147631, -0.00731400726, -0.00148997863, 0.0230386462, -0.00960738212, -0.0134837106, -0.00739029422, 0.0209407564, 0.0265478436, 0.0184518956, 0.0235154387, 0.0305910502, -0.00369514711, -0.00161990477, 0.00268672942, -0.00630320562, -0.0085393656, 0.0043793451, 0.00836295262, 0.0105657363, 0.00164851244, 0.0207500383, -0.0306101218, -0.0106420238, -0.00693734083, 0.00916873291, 0.0222185627, -0.00733784679, 0.0159630347, 0.026280839, 0.00815793127, 0.00290128635, -0.0105943447, -0.0165351871, -0.0243355241, -0.00455575855, 0.00996497739, 0.0215701237, -0.0257849749, -0.017431559, -0.00327556906, -0.0222757775, -0.00768113788, -0.00164136046, 0.0209216848, 0.00621738285, 0.00705177104, -0.0174506307, -0.015448099, -0.0121772978, -0.00543544209, 0.00289413449, 0.00503016775, 0.02275257, 0.0137221077, 0.00566430297, 0.031048771, -0.0186807569, -0.00999358483, 0.0153050609, -0.0124252299, 0.0143133309, 0.000762273092, -0.00683721388, 0.0104608424, -0.00125873403, -0.00166520011, -0.0264143422, 0.0233056508, 0.00697071617, -0.000395738345, 0.00902092643, -0.00170930347, 0.00105788489, -0.0012182066, -0.0261854809, 0.0202732459, -0.0201588161, 0.00791476667, -0.0257659033, -0.00937375333, -0.00396215124, 0.0239159446, 0.0229242165, 0.00104298501, 0.0142370444, 0.00517320586, -0.00364031596, -0.0330513045, -0.00972181279, 0.000741413387, -0.0166877601, 0.00269864942, 0.00974088442, -0.0410423577, 0.0108708842, -0.0183756091, -0.00990776252, 0.00391924, -0.0173075926, -0.0110139223, 0.00680860644, 0.00200133934, 0.031907, 0.0233819373, -0.00134098076, 0.0193959456, 0.00987915415, 0.0125491964, 0.00623645447, 0.00467018923, 0.00774312112, 0.0326317251, -0.00592177128, -0.0284168739, -0.00955016725, 0.014704301, 0.00130402937, 0.00651776278, -0.0210170429, 0.00011256789, 0.0289318096, 0.00572151784, -0.0267576333, 0.00177247857, -0.000393950351, -0.00453907112, 0.0153908832, -0.0040551261, -0.00750472443, -0.0222948492, 0.0271581393, 0.00222900813, -0.00120151881, 0.0107850619, 0.00129210949, 0.00768113788, -0.00848215073, -0.0340048894, 0.00619354332, 0.0188142583, -0.00259613874, -1.5980022e-05, -0.0169166215, 2.51806396e-05, 0.0106992386, -0.00441987254, -0.00601236196, -0.00324219349, 0.00840109587, -0.0059313071, 0.00180347019, -0.00126946182, -0.012167762, 0.0125110531, 0.0167735834, -0.00293227797, -0.00535915513, -0.0113858208, 0.00323027372, 0.015247846, -0.03358531, -0.00250554807, 0.0266241301, -0.0229623597, -0.000439245719, -0.00573582202, -0.0192338359, 0.0127113061, -0.000750949257, 0.00985054672, -0.0134264957, -0.00739029422, -0.00814839546, -0.00550696114, -0.0305147637, 0.012968774, 0.0152859893, 0.0328033715, 0.00207524234, 0.0185949337, 0.00846784655, 0.00194650807, -0.0258421898, 0.0093451459, -0.00858227722, 0.0281689409, 0.00917826872, 0.00762869092, 0.00534485141, -0.0115574664, -0.0163730774, 0.0203304607, -0.0160393231, 0.0143705467, 0.0279782228, -0.0243927389, 0.0196629502, -0.00234224647, -0.00552126486, 0.0185663253, 0.00793860666, 0.00388586428, 0.0233628657, 0.0197010934, -0.0116623612, -0.0170215163, 0.00163182465, -0.00246740459, -0.00310392352, 0.0152192377, -0.00453430321, -0.0231149327, -0.0152287735, 0.00282261567, -0.0253272541, 0.000691946072, -0.00996497739, -0.00240899739, -0.00992683414, -0.029656535, -0.0173648074, -0.0252700374, 0.0183374658, -0.0088588167, -0.0196438786, -0.0146089429, 0.0207881816, 0.00609341683, 0.00332563231, 0.00336615974, 0.00646531535, -0.00744274165, -0.0166686885, 0.0247169584, 0.0174124874, -0.0348440446, 0.0278637931, -0.0100603355, 0.00578350108, 0.00770020951, 0.00702793151, 0.018032318, 0.00229337509, -0.00567860669, 0.00804350059, -0.000521194539, -0.0143610099, 0.0217226967, -0.00387394452, -0.0100889439, 0.0012444302, -0.0126540912, -0.0151620228, 0.00626506237, -0.0173743423, -0.00572151784, 0.00536869094, -0.00657974556, 0.0198727399, -0.0217417683, 0.0197010934, -0.0167068336, 0.00352350157, -0.00689442921, 0.0173171274, -0.00304670841, 0.0270818528, -0.0139509682, -0.0116146812, -0.0207118951, -0.00795767829, 0.00965506211, -0.0318116397, -0.015200166, -0.00802442897, 0.00726156, -0.0189191531, 0.00975042, 0.0166782252, 0.0069945557, -0.0124538373, -0.0207691099, 0.000516724598, 0.00980286766, -0.014704301, 0.00527810026, 0.0114430357, 0.00725202402, -0.0110043865, -0.00347105437, -2.333679e-05, -0.000722341647, 0.000525962445, -0.0157246385, -0.00400744658, 0.0189477615, -0.00264858617, 0.00869193953, 0.0300951842, 0.0153145967, -0.00195723586, 0.00914489292, -0.00436742557, -0.00426014699, -0.00685628597, 0.00537822722, -0.0036856113, 0.00981240347, 0.0132262427, 0.00619354332, 0.0149331624, 0.0137507152, 0.0204639621, -0.002366086, 0.00212292164, -0.00696118036, 0.00648915488, -0.00522565329, -0.000306339614, 0.0126064112, 0.0075905472, 0.0244118106, 0.000141771467, 0.0100889439, 0.0424536653, -0.00265573803, -0.0046344297, -0.00125039008, -0.0162967909, -0.0229814313, -0.0100317281, 0.00638902839, 0.00327556906, 0.0170119796, 0.00962645374, 0.000975638046, -0.0130736688, -0.010184302, -0.00112821185, 0.00990776252, 0.00700885942, -0.0246025268, 0.0220659878, 0.0028416873, -0.0125110531, 0.00513029471, -0.00797198154, 0.0115479305, 0.0165161155, -0.00583118061, -0.0225237086, 0.013512319, 0.00638902839, 0.00763345882, 0.00334470416, 0.014551728, -0.0214175489, -0.00778126437, 0.0171264112, -0.028111726, -0.00519227749, -0.00588362757, -0.00573582202, -0.0345198251, 0.00849168655, -0.0115479305, -0.00144468329, 0.0135790696, 0.00850599, -0.0114907157, -0.00627936609, 0.0099745132, -0.000611487252, 0.0144849764, -0.0145612638, 0.0100031206, -0.00836295262, 0.0103464117, 0.0145803355, -0.0112809269, -0.0274251439, 0.00660358556, -0.0172122344, 0.0318688564, -0.0233628657, 0.0192910526, 0.00616016798, -0.0125968754, -0.0264334138, 0.0151143437, -0.0155720646, 0.0130355256, -0.0233056508, -0.0134837106, -0.00306101213, -0.00554987276, 0.00277732033, 0.0137125719, 0.00159368117, -0.0170119796, -0.0140463272, -0.00808164384, 0.0177080985, 0.00586932385, -0.00605050521, 0.00227787928, -0.0201016, -0.00722341659, 0.00380242546, 0.0241257343, 0.00725202402, 0.0204448905, -0.0107850619, -0.0254607555, 0.000597481441, -0.0257468317, 0.0162967909, -0.00126826984, -0.013760251, 0.018347, 0.0147615168, 0.025880333, 0.0012706538, 0.0166019388, -0.00430305861, 0.0089160325, -0.0113953566, 0.0316972099, -0.0099745132, -0.0381625257, 0.0185186472, 0.000376368611, 0.0118244709, -0.00686582178, -0.0180227812, -0.00627936609, 0.00107159268, 0.0281498693, -0.0269483496, 0.0101652304, -0.0231149327, -0.00998404901, 0.00596945034, -0.0175745972, 0.00821991451, 0.00553556858, 0.0147996601, 0.00209073815, -0.00965029374, -0.0180513896, 0.0137221077, -0.0181753561, 0.0180609245, 0.00513506262, 0.0148950191, -0.00780510437, 0.0122821918, 0.000710421824, 0.00605527312, 0.014656622, -0.0162300393, -0.011471644, 0.0140749346, 0.0256133284, 0.0160202514, 0.0226190686, -0.0206546802, 0.0209026132, -0.00241614948, 0.00897801574, -0.0215510521, -0.00525902864, 0.0060743452, -0.0110616013, 0.00244356506, -0.00834864844, 0.00871577952, -0.00156149769, 0.00938329, 0.00680860644, -0.000758101116, -0.031048771, -0.00611725636, 0.0112809269, -0.0235726535, 0.0177939218, -0.00111033209, -0.0163158625, -0.0163349342, 0.0122440485, 0.00813886, -0.000653206662, -0.00555464067, -0.0117386477, -0.00263666618, 0.0342528224, -0.00913059, -0.0054735858, -0.0175459888, 0.00948341656, -0.0376857333, 0.0111664962, -0.0143133309, 0.00978379603, -0.0341956057, -0.00611725636, 0.0184614323, -0.0217226967, -0.0117005045, 0.00346151832, 0.00546881789, -0.00807210803, 0.019424554, -0.0150285205, 0.0017820145, 0.00740936585, -0.00667987252, 0.0139414323, 0.00795767829, -0.0107469177, -0.0146661578, -0.0210170429, 0.00644624373, -0.0115097873, 0.0131785637, 0.04550514, -0.0106229521, -0.00480369106, 0.0193578023, -0.00423153955, 0.0058264127, 0.00215868116, 0.00985054672, 0.00736645469, 0.0063985642, 0.0183756091, 0.00513506262, 0.00027460308, 0.0124347657, 0.0206928235, -0.0143228667, 0.00935468171, 0.0135313906, 0.0183565374, 0.020120671, -0.0362362824, 0.0106992386, -0.00737599051, -0.0235535819, -0.00242091739, -0.00629367, -0.0214366205, -0.000328987284, 0.0192815159, -0.0129401665, -0.0178129934, 0.0160297863, 0.00240899739, -0.0178416, -0.00873008277, 0.0190717261, -0.0204830356, -0.00381672941, 0.00986961834, -0.00559755182, -0.00373090664, 0.00403128611, 0.0114239641, 0.0304003321, 0.00267004175, 0.0131404195, 0.014551728, -0.0153050609, -0.0268148482, 0.00982193928, 0.00474170828, -0.00922594778, 0.0173075926, 0.00253177178, -0.0175650604, 0.00233628647, 0.00668464042, 0.00294896588, 0.020616537, -0.00030604162, 0.0444371253, -0.00574059, 0.0360455625, 0.00856797304, 0.00242568529, 0.0314111337, -0.000411830115, -0.00225999975, -0.00144587527, -0.0142465802, 0.0152097018, -0.0187665801, 0.0133025292, 0.0128352726, -0.0136744278, 0.0290271677, -0.0162014328, 0.00287506287, 0.011176032, -0.00749518862, -0.0143610099, -0.0125587322, -0.00380957755, 0.0227716416, 0.0100603355, -0.00860611722, 0.0293895304, -0.0100889439, -0.0239350181, 0.0305147637, 0.000847499876, 0.0030729319, 0.00328748883, 0.00331371254, 0.00411949307, -0.00521134958, 0.00674185529, 0.00804350059, -0.0013648204, -0.0102891969, -0.0125968754, -0.00805303641, -0.0104226992, -0.036694, -0.0277112201, -0.05752033, -0.0138651459, 0.00210504187, 0.00370945083, -0.0114144282, -0.00541637046, 0.00675139111, 0.0133788167, -0.0210551862, -0.012072403, -0.00386917661, 0.000291588833, 0.0197773799, -0.00232317485, -0.0309724845, 0.00270580128, 0.0181753561, -0.00654637, 0.0136935, -0.0181658193, -0.0371707976, -0.00449377578, -0.0230958611, -0.00828666519, -0.0112713911, 0.00478938734, 0.00852983, -0.0360455625, -0.0241257343, 0.00417909212, -0.0394784734, -0.004744092, -0.0141130779, 0.00205021072, 0.0024244932, -0.0119770449, 0.0179464947, 0.0279782228, 0.0145326555, 0.0157055669, -0.0133311367, -0.0184423607, -0.00766206626, 0.00238634972, 0.0089208, 0.00780033646, -0.00175698288, -0.0145898713, 0.021112401, -0.0372470841, -0.0242592357, 0.00253892364, -0.0155434571, -0.0231149327, -0.0160583947, 0.0040384382, 0.00946434401, 0.0137507152, -0.00789092667, 0.0141035421, -0.0078337118, 0.0237633716, -0.0109281, 0.015247846, 0.00441987254, 0.00297995727, 0.0081865387, -0.015896285, -0.0100317281, 0.00684675, -0.00659404974, -0.0161632877, -0.0396691933, 0.0136839645, 0.00067287439, -0.00446993578, 0.00437696138, 0.00880637, -0.00151501026, -0.0146375503, 0.0243736673, -0.00825328939, 0.0048489864, -0.0199490264, -0.01385561, -0.00466780504, 0.0251556076, -0.0155243855, 0.0128829516, -0.0184614323, -0.020368604, 0.0032112021, -0.000483051088, -0.00895417575, -0.00659881765, 0.0135409264, 0.00741890166, -0.001818966, 0.0298663247, 0.0157723185, 0.00329940883, -0.011128353, 0.0285503753, -0.0092926994, -0.00255799526, -0.0341574624, 0.00437219348, 0.0274632871, 0.0209026132, 0.00450331159, 0.0203113891, -0.00099351781, 0.00195008412, 0.0153908832, -0.00692780502, 0.0167735834, 0.0165828671, -0.00711375428, -0.00657497765, 0.00116575928, -0.0330513045, -0.0120247239, 0.0122440485, 0.00543544209, 0.00177247857, -0.0265097, -0.00126111798, 0.00282976753, -0.00481084315, -0.00856797304, 0.0119102933, -0.00786231924, 0.0124061583, -0.0186712202, 0.00924501941, -0.00178678241, -0.00192028447, -0.00648915488, -0.00177963055, -0.0160965379, -0.00319213024, 0.00889696088, -0.0368275046, 0.00300141308, -0.00332801626, 0.00332324835, -0.00123727834, -0.0151715586, 0.00405989401, 0.00309438771, 0.0132453144, 0.0224474221, -0.0142942593, -0.00395023124, 0.0134169599, -0.00982193928, -0.0091019813, 0.00612679217, 0.00789569505, -0.0111855678, -0.0281689409, -0.0120533314, 0.00428398652, -0.00238515786, 0.00276301638, -0.00287744682, 0.00372375478, 0.0210170429, 0.00382149732, -0.0107469177, -0.00316829071, -0.0177557785, -0.00532578, 0.000504208787, -0.0315064937, 0.0265097, 0.0212840475, -0.0206928235, 0.0131118121, 0.0109662432, 0.0159535, -0.000501228846, -0.0326507948, 0.00204425072, -0.00111629197, -0.0136744278, 0.00322550582, 0.00760008302, 0.00816269871, -0.00830096938, 0.0158772133, -0.00958354305, 0.00327318511, -0.00387394452, 0.00906383805, 0.000336735189, 0.00595991453, 0.0292941723, 0.00916873291, 0.0130832046, 0.00195008412, 0.00489666592, 0.0212268326, -0.017984638, 0.00197988376, 0.0178225283, -0.0180609245, -0.0174410939, -0.00265097013, 0.0148568749, -0.0190812629, 0.00411710888, -0.0129306307, 0.0163826142, 0.0145231197, 0.00698502, -0.00447708787, 0.000541458256, -0.000283244939, 0.0109948507, 0.00264381804, 0.0259375479, 0.00879206602, 0.0243355241, 0.0188714731, -0.0174220223, -0.00770974578, -0.00182135, 0.013312065, 0.00577873318, 0.0138079301, 0.0139891114, -0.00591700338, 0.0161060728, 0.00241257343, 0.00376428221, 0.0196248069, 0.0011627794, 0.00311822724, 0.0078337118, 0.018184891, 0.0121772978, 0.0042696828, 0.0100317281, 0.00128495763, 0.00554510439, -0.00159129722, 0.0061554, 0.00316829071, 0.0209026132, -0.00854413398, -0.0125110531, 0.0061506317, -0.0166877601, 0.0189572964, 0.00470594876, -0.00834864844, 0.0137507152, -0.00754763605, -0.0295611769, -0.00845831074, 0.00783848, 0.0166305453, -0.0118149351, -0.00357356481, -0.012968774, 4.57050955e-05, -0.00423869118, 0.00472502038, -0.0244308822, 0.00239826972, -0.00764776254, 0.00696594827, -0.00436980929, -0.00287744682, 0.00822945, 0.00554033648, 0.0109662432, -0.00535438722, 0.00264143408, 0.00276778429, -0.0136839645, -0.0123775508, -0.0125015173, 0.0015972571, -0.020959828, -0.0124824457, -0.00216583302, -0.00725679193, 0.00200372329, -0.00579303689, -0.0303240456, -0.0193482675, -0.00525426073, 0.0197201651, 0.00190240471, 0.00530670816, -0.0106610954, 0.0121391546, -0.00745704537, -0.0101938378, -0.0117481835, 0.0215510521, 0.00125873403, -0.0112999985, -0.0107278461, -0.00103404524, 0.00022841373, 0.0137888584, 0.0239731614, -0.0223711357, 0.0159916431, -0.00891126413, 0.0177939218, 0.000832600053, -0.0180609245, -0.00387632847] |
12 Nov, 2024 | Python String rstrip() Method
12 Nov, 2024
The rstrip() method removes trailing whitespace characters from a string. We can also specify custom characters to remove from end of string.
Let’s take an example to remove whitespace from the ends of a string.
Python
s = "Hello Python! "
res = s.rstrip()
print(res)
OutputHello Python!
Syntax of rstrip() Methods.rstrip(chars)
s: The input stringchars (optional): A set of characters to remove as trailing charactersTable of Content
Syntax of rstrip() MethodExamples of rstrip() MethodRemove trailing whitespacesRemove Custom CharactersRemove Newline CharactersFrequently Asked Questions (FAQs) on Python rstrip() MethodExamples of rstrip() MethodRemove Trailing Whitespaces
Python
s = " Hello Python! "
res = s.rstrip()
print(res)
Output Hello Python!
Remove Custom CharactersIf we have a string with various characters that we want to remove from end of the string.
Python
s = ' ##*#Hello Python!#**## '
# removes all occurrences of '#', '*', and ' '
# from the end of string
res = s.rstrip('#* ')
print(res)
Output ##*#Hello Python!
Notes:
rstrip(‘#* ‘) removes any #, *, and spaces from the end of string.It stops stripping characters from the end of string once it encounters a character that are not in the specified set of characters.Remove Newline CharactersWe can also remove the trailing newline characters (\n) from a string.
Python
s = '\nHello Python!\n'
# Removing newline characters
# from the end of string
res = s.rstrip()
print(res)
OutputHello Python!
Frequently Asked Questions (FAQs) on Python rstrip() MethodWhat characters does rstrip() remove by default?By default, rstrip() removes whitespace characters including spaces, tabs (\t), and newlines (\n), from the right end of the string.
Can rstrip() remove characters from the middle of a string?No, rstrip() only removes characters from the end of a string. Characters in the middle of the string remain unaffected.
How is rstrip() different from strip() and lstrip()?The rstrip() method removes characters only from the end of a string, while lstrip() removes characters from left only and strip() removes characters from both end. | NLP/Natural Language Processing (NLP) Tutorial/AI ML DS - Projects/30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated]/Does Artificial Intelligence Require Coding?/Artificial Intelligence – Boon or Bane/Artificial Intelligence Examples/Agents in Artificial Intelligence/What are Diffusion Models?/ML | Common Loss Functions/Loss Functions in Deep Learning/Kaiming Initialization in Deep Learning/Swift - Initialization/Swift – If Statement/6 Best iOS Project Ideas For Beginners/Swift Programming Language/Introduction to Visual Programming Language/What is D Programming Language: Usage and Applications/Best Programming Languages for Data Science in 2024/5 Best Languages for Competitive Programming/MEX (Minimum Excluded) in Competitive Programming/Rearrange Array to maximize sum of MEX of all Subarrays starting from first index/Minimize moves to segregate even and odd by swapping adjacent elements/Minimum elements to be removed such that sum of adjacent elements is always even/Maximum sum such that exactly half of the elements are selected and no two adjacent/Maximum length subsequence such that adjacent elements in the subsequence have a common factor/Longest subsequence such that difference between adjacents is one/Longest Increasing Subsequence using Longest Common Subsequence Algorithm/Longest Common Subsequence (LCS)/Minimum insertions to form a palindrome with permutations allowed/Print longest palindrome word in a sentence/Python String split()/Python String strip() Method/Python String rindex() Method/Python String istitle() Method/Python String isdigit() Method/expandtabs() method in Python/String capitalize() Method in Python/Python String upper() Method/Python String rstrip() Method | https://www.geeksforgeeks.org/python-string-rstrip/?ref=lbp | NLP | Python String rstrip() Method | Artificial Intelligence – Boon or Bane, AI ML DS - Projects, Longest Common Subsequence (LCS), Rearrange Array to maximize sum of MEX of all Subarrays starting from first index, Python String istitle() Method, MEX (Minimum Excluded) in Competitive Programming, Swift - Initialization, Minimum insertions to form a palindrome with permutations allowed, Longest Increasing Subsequence using Longest Common Subsequence Algorithm, 6 Best iOS Project Ideas For Beginners, ML | Common Loss Functions, Python String strip() Method, Python String isdigit() Method, Artificial Intelligence Examples, Python String split(), expandtabs() method in Python, Longest subsequence such that difference between adjacents is one, What is D Programming Language: Usage and Applications, 30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated], Swift – If Statement, Natural Language Processing (NLP) Tutorial, Python String rindex() Method, Loss Functions in Deep Learning, Python String upper() Method, Minimize moves to segregate even and odd by swapping adjacent elements, Maximum length subsequence such that adjacent elements in the subsequence have a common factor, Does Artificial Intelligence Require Coding?, Print longest palindrome word in a sentence, Best Programming Languages for Data Science in 2024, String capitalize() Method in Python, NLP, 5 Best Languages for Competitive Programming, Maximum sum such that exactly half of the elements are selected and no two adjacent, Swift Programming Language, Minimum elements to be removed such that sum of adjacent elements is always even, Agents in Artificial Intelligence, What are Diffusion Models?, Python String rstrip() Method, Kaiming Initialization in Deep Learning, Introduction to Visual Programming Language | GeeksforGeeks | [-0.0198686887, 0.00561662251, -0.00308600697, 0.0534609295, 0.0108301379, -0.0283787232, 0.0164557174, -0.01800544, 0.0102030821, -0.0788297877, -0.0534609295, 0.00194387091, -0.0253688581, 0.0317289904, -0.00662886817, -0.0050477935, 0.00196402613, -0.00242983853, -0.0120663317, -0.0208719783, 0.049053628, 0.0266767163, -0.0609855875, -0.0288266204, -0.00226635626, 0.0239714216, -0.0326964445, 0.00286653778, 0.00294939848, -0.00424158, 0.0296686646, 0.00500748307, 0.0182025135, -0.0126933875, -0.0251538679, -0.00653928891, 0.00832191762, 0.0146641321, 0.0120215425, -0.0195641201, 0.0165273808, 0.00375113334, 0.0364408605, 0.00817411114, -0.0225739852, 0.0385907628, -0.0155599248, -0.017459007, 0.0287907887, -0.0139564555, 0.0192416348, 0.00770829897, 0.0215348639, -0.0349896774, 0.034918014, 0.033968471, 0.0260496605, -0.00919979438, -0.0553241782, -0.0446821563, -0.00848316, 0.0146730896, 0.0194745399, -0.0314960815, -0.0174321327, 0.00233130134, 0.0106509794, -0.0158017892, 0.0213198736, -0.0331622586, 0.0543208905, 0.0446463227, 0.00819650665, -0.00406690035, -0.0276979208, -0.0225381535, 0.0119409207, -0.0253151115, 0.0137325069, 0.0290953573, 0.0156315882, 0.0109734647, 0.024419317, -0.0124156913, 0.0110272123, 0.0187399909, 0.0288624521, 0.00841597561, 0.0386982597, -0.0241326634, 0.0101135029, 0.0609139241, -0.00815171655, -0.0469395556, -0.0230218805, 0.0178531557, -0.00197746302, 0.0333951637, -0.0160974, 0.0159988627, 7.25032514e-05, 0.000260339846, -0.00823681708, -0.0167513303, -0.00786058418, -0.0333055854, 0.00186660874, 0.00860857125, -0.0205315761, 0.00664230529, -0.0137056336, -0.03470302, -0.000574427308, 0.0539984033, -0.0274470989, -0.0203882493, 0.00418783259, -0.0390565768, 0.00999705, 0.0112690767, -0.0144849736, 0.0231831241, 0.0321052223, 0.0343984514, -0.0301703084, -0.00599285541, -0.030940691, -0.0284683015, 0.00540611101, 0.0077172569, -0.0052807, -0.00906094629, -0.0124604814, 0.00719769718, 0.00500300387, 0.0375158116, 0.0112601183, 0.0257630069, 0.019456625, 0.00861752871, -0.0475128628, 0.0208003148, 0.0179069024, -0.00897136703, -0.0398807041, 0.00642731506, 0.0093431212, 0.0051284153, -0.00755153503, -0.0288803671, -0.00937895291, -0.0298836548, -0.0120752901, 0.0363512821, 0.0175037961, 0.0215348639, -0.0209615566, 0.0357779749, 0.00643627299, -0.0194745399, -0.00814275816, -0.00636908831, 0.00271201343, 0.0262467358, 0.0148612065, 0.0112869926, 0.033484742, -0.00620336691, -0.0255301017, 0.015963031, -0.0334489122, -0.00890418235, -0.0236668512, 0.00933416374, -0.0228248071, -0.0476203561, -0.0223231614, -0.011063044, 0.00260451832, 0.00345552154, -0.0401673578, 0.0251897, 0.00590327615, -0.0166527927, 0.0138489604, 0.000934424112, -0.0102568306, -0.0026672238, -0.00669605285, -0.0247238874, -0.0228964705, 0.00720665511, -0.0354913212, -0.00639596209, 0.00379592297, 0.0350613408, -0.0118782157, 0.019223718, 0.0507735498, 0.0223769099, 0.014744753, -0.0337176509, -0.0372649916, -0.00636908831, 0.0147178797, -0.0175217111, -0.0354375727, 0.00854138657, 0.0236131046, 0.0139295813, -0.00497165136, -0.00262691313, -0.0171723515, 0.026479641, -0.0439296886, -0.00283518503, -0.0329831, -0.0118692573, -0.000412624649, 0.0201015957, -0.022484405, -0.0305465423, -0.0121379951, -0.0254763532, -0.0346492752, -0.0154793039, -0.0260317456, 0.0472978726, -0.00540611101, 0.0160257369, -0.00825025421, 0.00672740582, -0.0266767163, -0.0144401835, -0.0147357956, 0.0255480167, 0.00738581363, 0.012747135, -0.0171096474, 0.0122186169, 0.0153180612, -0.0159988627, 0.0111974124, -0.0263363142, 0.0253330264, 0.00161242741, 0.0298478231, -0.0234339461, -0.0307615325, 0.0227352269, -0.0144580994, -0.0259063337, 0.00764111429, 0.0423889272, -0.0136698019, 0.00654824683, -0.027070865, -0.0489819609, 0.0136250118, 0.0058853603, 0.00670053205, 0.00766798854, 0.0354734026, -0.00669605285, 0.00998809189, -0.0118961316, -0.00524486834, -0.0144939311, 0.0278591625, -0.0338968076, 0.0349359289, -0.0276441723, 0.0191878863, -0.00156315882, -0.0330010168, 0.00760976179, -0.0305286255, 0.00444537308, 0.015757, -0.0192953814, -0.0135175167, -0.00211183215, 0.0217677709, 0.0123619437, 0.0342013761, -0.0147089213, -0.011233245, 0.00944165885, 0.0134279374, 0.0240789168, 0.0146193421, 0.00166953425, 0.0240430851, 0.0329472683, 0.0112690767, -0.000624815642, 0.0241684951, 0.00846524443, -0.0515976772, 0.0248313826, 0.0122365328, 0.0136877177, 0.00862200744, 0.0129531668, -0.00130673812, -0.0434638783, 0.014995575, 0.0241326634, 0.0383757725, -0.0140191605, 0.0380174555, -0.0289341155, -0.0293999277, 0.0232368708, -0.0259959139, 0.00115445326, 0.057509914, 0.0143685201, -0.0434280448, -0.0139474971, -0.0299911499, 0.012263407, 0.0190803912, 0.0223231614, 0.0177098289, -0.0300090667, -0.00463125, 0.00248806505, 0.0231293757, -0.0273933504, -0.0169484038, 0.0282712281, -0.0230218805, 0.0190803912, -0.00570620177, 0.00786506291, 0.0263542309, -0.0202986691, 0.0380532891, 0.0204061642, -0.00882356148, 0.000265238719, 0.0145387212, -0.0309227761, 0.0494477749, -0.0200836789, -0.00843837, 0.023326451, -0.0351509191, 0.0414214693, 0.000368954759, 0.0124694388, 0.0638879612, -0.00127538526, -0.00617649313, -0.0193849616, -0.0201195106, 0.0214273687, -0.00979101751, 0.0083801439, 0.0287012085, -0.00272545032, 0.0257809237, -0.0264079776, 0.0201195106, -0.0141893616, 0.0137952128, -0.0108390953, 0.0287907887, 0.00506570935, 0.00364811718, -0.0223589931, 0.012326112, -0.0271066967, 0.00527174212, -0.0192058031, 0.0311198495, 0.00187780615, 0.00461781304, -0.00666022114, 0.0153359771, 0.041313976, -0.0121200792, -0.0239714216, -0.0306540374, 0.0128277559, -0.0104270307, 0.00532548968, 0.0172619317, 0.0229502171, -0.0477278531, 0.0123709021, 0.00936999545, -0.0198507737, -0.00589431822, -0.0135802226, -0.0209257249, 0.00541506894, 0.00997913443, -0.00882804, -0.0197970252, -0.0247059725, 0.0362258703, -0.00524038915, -0.0388774164, -0.0145924687, -0.0113228243, 0.00302554085, 0.0428547375, 0.00712155458, 0.00936999545, 0.0878593773, -0.00894897245, -0.012326112, 0.032015644, -0.0153270187, -0.0079636, 0.00305241463, 0.0093072895, -0.00169304886, 0.03285769, 0.000590103678, -0.0272321086, 0.0330368467, 0.0142699825, 0.0201374274, 0.012326112, 0.00777996238, -0.0302598886, 0.0193849616, -0.0318364836, -0.000896912767, 0.0243476536, -0.00293596159, -0.00729623437, -0.0494477749, -0.00102960214, -0.0153986821, 0.0203524176, -0.00319126272, -0.0397373773, -0.00391461561, 0.00582713354, -0.0144760152, 0.0205853246, 0.0429264, 0.0159361586, -0.00658407854, -0.00148813613, -3.318983e-05, 0.034326788, 0.00167961197, -0.0204957444, 0.0461870879, 0.000596262224, -0.0352225825, -0.0314602517, -0.0103016198, 0.0248672143, 0.000135558672, 0.0126396399, -0.0264617261, 0.0227710586, 0.0179337766, 0.00757393, -0.0424964204, 0.00574651221, 0.00335474499, -0.0187758226, 0.0417081229, -0.0536400862, -0.0280920696, -0.0190087277, -0.0110899173, 0.0336818174, 0.0375516452, -0.0382682793, 0.0464020781, 0.0345417783, -0.0221798345, -0.0126485974, -0.00906542502, 0.0207644831, -0.0142251933, 0.013840002, 0.0367633477, 0.0058450494, -0.00270305551, -0.00471635, -0.0278591625, 0.0121648693, 0.0481936634, 0.03470302, -0.0299911499, -0.00740820821, 0.0390924066, -0.0285041332, -0.0025418126, 0.0120752901, -0.00792776793, 0.0223231614, 0.0134100216, -0.0307436176, 0.0116453096, -0.00184309413, -0.0338788927, -0.0203882493, 0.00198530126, -0.0415289663, 0.00820098538, 0.00925354194, 0.0167154986, -0.0298478231, 0.00982684921, -0.000859401422, 0.00580025977, -0.0149059957, 0.0385549329, 0.000619216939, -0.0122723645, -0.0336639024, 0.0268021282, -0.010642021, 0.0232727025, -0.0191878863, -0.0120573742, 0.0209615566, -0.0232189558, -0.0158286635, 0.0132577363, -0.00485519832, 0.015586799, -0.00247686775, 0.0083801439, -0.00666470034, -0.0467245653, -0.00238728849, 0.0177635755, 0.0165452976, 0.0130696204, -0.0202628374, 0.012935251, 0.00945061632, -0.0229681339, 0.0232547875, 0.00248582568, -0.010874927, -0.013230863, -0.000225907803, 0.030815281, -0.0238997582, 0.025745092, 0.00394820794, -0.00359884859, 0.0135712642, -0.0338968076, 0.0138131287, -0.0022999486, 0.00603316585, -0.00185429153, -0.0533892661, -0.00158555363, 0.0263363142, 0.0137862545, 0.0127381766, 0.00550912693, 0.00669605285, -0.00897584576, -0.0242401585, 0.0545358807, -0.0101851663, -0.0126396399, -0.00248134672, 0.0167513303, -0.00686625345, 0.00800839, 0.00870262925, -0.0209436417, 0.000435019494, 0.0524218082, -0.00369738578, -0.00224172208, -0.0215886123, 0.0016504986, 0.0286295451, -0.00543746352, -0.0220185928, -0.0199045204, -0.0263542309, 0.0104628624, 0.00825473294, 0.0389849134, 0.0178083647, 0.0108390953, -0.0204419978, 0.0244372338, 0.00496717216, -0.0174500477, 0.0199224371, 0.00902959332, 0.00913708843, 0.0078785, 0.0179337766, 0.0266050529, -0.00161018793, -0.032750193, 0.0231114607, -0.0177456606, 0.00846076477, 0.00593910785, 0.00494477758, 0.0141535299, 0.0213377904, -0.001008327, 0.0106330635, -0.0110540856, -0.0355092362, 0.0174769219, 0.018614579, 0.024903046, 3.9260929e-05, -0.0243655704, 0.0290774424, -0.00727831852, 0.0463662483, -0.0118961316, -0.00806661602, -0.0194207933, -0.0375516452, -0.00773069402, 0.0260675773, -0.0176292062, -0.0219290126, 0.00812932197, -0.00754257711, 0.00497165136, 0.00686625345, 0.0320873074, -0.00365259615, 0.00282398751, 0.0253151115, -0.015228481, 0.033484742, 0.0445029959, -0.00273888721, 0.0110361697, -0.00658407854, 0.0574024171, 0.0259779971, -0.0249926262, -0.0214632, -0.0224485733, 0.00116677047, 0.00362572237, 0.0177546181, 0.016805077, -0.00377128855, -0.0187399909, 0.00134033035, 0.00279487413, 0.0239176732, 0.00887283, -0.0195999518, 0.00813827943, 0.0027164924, 0.0349538438, 0.0170827731, -0.0254584383, 0.00746643497, 0.0145655945, -0.0123529863, -0.00512393611, 0.00846972317, 0.00736789778, 0.0137414653, 0.00583161274, 0.00399971567, 0.00587192317, 0.0263542309, 0.0221081711, 0.0215527806, -0.00601972919, -0.0153897246, -0.0121021634, -0.0111167915, 0.00655272603, 0.0219110977, -0.00376904919, -0.0249209628, 0.0125679765, -0.0131681571, 0.0279308259, 0.0162586439, 0.0133921057, 0.00713499123, 0.00656616269, 0.0195641201, 0.00678115338, 0.0223052464, 0.0278412476, -0.0159540735, 0.0109913805, 0.0205136612, -0.0154345138, -0.00469843438, 0.0401315279, 8.32807564e-05, -0.0263184, -0.0106599368, 0.0238280948, 0.00242759916, 0.00794120505, -0.030331552, 0.0281995647, 0.0235951878, 0.0292566, 0.0035451008, 0.0100060077, 0.0186683275, -0.0155688832, -0.0170200672, -0.0182831362, -0.00655720476, -0.00265602628, -0.028754957, -0.00985372346, -0.0121827852, -0.00069479947, 0.0230397973, -0.0096835224, -0.00361900381, -0.0124873547, 0.00847868063, -0.00932520535, 0.000270697463, 0.00287773507, -0.0426755808, -0.0316214934, -0.00710363872, 0.0126933875, 0.00555839576, 0.0127023449, -0.0129173351, -0.0139385397, -0.0131233679, 0.00962977484, 0.024885131, 0.00913708843, 0.00564797502, -0.00554048, 0.00352718495, -0.0137862545, 0.0586923584, 0.03154983, -0.00171656336, 0.0176829547, 0.0313885882, -0.00515976781, 0.00535684219, 0.0325710326, 0.00726936059, -0.00327412342, -0.015774915, -0.00586296525, -0.00115893222, 0.0337713957, -0.00940582715, 0.00300314603, 0.00211071223, -0.0010021684, -0.00242983853, -0.018525, 0.00864888169, -0.0224306565, 0.0146103846, 0.00143102941, 0.00831295922, -0.0353121608, -0.0134189799, 0.00868919212, -0.0115019828, -0.0244372338, -0.0115019828, 0.00238952786, 0.0365304388, 0.011905089, 0.0289161988, -0.0105703576, -0.00958498567, -0.0015900326, 0.0726309, 0.00143326889, 0.0286832936, 0.0337534808, 0.00919083692, -0.0422814302, -0.00461333431, 0.00820546411, -0.00115333358, 1.53177116e-05, 0.0258884188, 0.0238818415, -0.00898480415, -0.00490894588, 0.0430338979, -0.00594358658, 0.00476561906, 0.00148813613, -0.00450136, 0.000763103657, 0.00223500351, -0.00946853217, -0.0324635394, 0.0342551246, -0.0186504107, 0.029131189, 0.0299553182, 0.0252971947, 0.000736789778, 0.00289117196, -0.0203345, -0.0118871732, -0.019832857, -0.0262646507, -0.0181218926, 0.0317289904, 0.00735894, 0.0181487668, -0.0113317817, 0.0237206, -0.00810244773, 0.0329293534, -0.00983580761, 0.00436027255, -0.0416722931, 0.018614579, -0.00980893336, -0.010642021, 0.0150941126, 0.0133473165, -0.0429980643, -0.0045842207, -0.0313169248, -0.00473426608, 0.00411169, 0.0136250118, -0.0206211563, 0.0402390212, 0.0035451008, -0.000504163501, -0.0115019828, -0.0168319512, 0.0513110235, -0.00201553432, 0.000973615039, -0.0115736462, 0.0154076405, -0.0231831241, -0.00825025421, 0.00561662251, -0.0202449225, 0.0238639265, -0.0305107106, 0.0119588366, -0.0177456606, 0.00397284189, 0.0171186049, 0.027912911, -0.0157480408, -0.0169036146, 0.0166348759, -0.0187220741, 0.0141176982, -0.00598389748, 0.00318230479, 0.00165497756, -0.0267483797, -0.0267304648, 0.0147268372, -6.20406645e-05, 0.0318902321, 0.00468499772, 0.0152463969, 0.0113496976, -0.0124246497, -0.00234921719, 0.0184533373, -0.0473337024, 0.0025821235, -0.000514801068, 0.0349717587, 0.0200836789, 0.0149328699, -0.022000676, -0.000974174938, 0.0117259305, 0.0273754355, -0.0224485733, -0.00442297803, -0.0183189679, 0.0078785, -0.0194745399, -0.032015644, -0.0527442917, -0.0110272123, -0.0119230049, -0.004548389, -0.0101672504, -0.00440282281, -0.00589431822, 0.00586296525, -0.0275904257, -0.00387430494, 0.0067139687, -0.0121738268, 0.0151389018, -0.00157211674, 0.00205696467, 0.0190266445, -0.00442297803, -0.0296865813, 0.00910125673, -0.0215169489, 0.0165094659, -0.0257630069, 0.0251717847, -0.0249567945, -0.0161063578, -0.0268379599, -0.0113317817, -0.011233245, -0.00226747617, -0.0280204061, -0.00754257711, 0.0229323022, 0.00174119766, -0.0282712281, 0.0351330042, -0.0226814803, 0.00961185899, 0.0121111218, 0.00939686876, -0.0333593339, 0.0171544366, 0.00903855171, -0.0319618955, -0.00119364425, 0.00537923723, -0.0142251933, -0.0132756531, 0.00677219545, 0.0350255072, 0.0128008826, -0.0152016077, -0.00543746352, -0.00741716614, 6.1235849e-05, -0.0170648564, -0.025745092, 0.00734998193, 0.00566141214, 0.0053344476, -0.00459541846, -0.00225515896, -0.0112690767, -0.000726152211, -0.0355271511, -0.0116721829, -0.00795912091, -0.0212482102, 0.011484067, -0.0106241051, 0.0245626457, -0.0207644831, 0.0272321086, 0.0393790603, -0.0321231373, -0.0249388777, 0.00220589037, -0.0010094468, 0.0189908128, -0.0102120405, -0.00618097186, -0.00745299784, 0.00183749548, -0.0293999277, -0.0159092844, 0.0462229215, 0.00373769645, 0.00814275816, -0.0159540735, -0.00400643423, -0.0467245653, 0.00490446668, -0.0199045204, -0.0202628374, 0.0293282643, -0.00417887466, -0.0170469414, -0.0131592, -0.0405256748, 0.0088011669, -0.0343805365, 0.0170200672, -0.00651689433, 0.0206928197, 0.00767694646, 0.00889970362, -0.00902063586, 0.0200120155, -0.00113205845, -0.0631354898, -0.00971039664, -0.00561662251, -0.0363333635, 0.00231114612, 0.0061272243, -0.0558616519, -0.0019830619, 0.055467505, -0.0203165859, -0.0240251683, 0.00189348252, 0.00539715309, 0.00246343086, -0.00196962501, 0.00560766412, 0.0220544245, 0.0317289904, 0.00777100446, -0.0158824101, 0.00666470034, -0.011233245, 0.00593910785, -0.00399747631, -0.0125948498, -0.0111347074, -0.00801286846, 0.024419317, -0.013293569, 0.0174948387, -0.0151120285, 0.00704093324, -0.00616305601, 0.00948644802, -0.0290236939, 0.0185070839, -0.0128277559, 0.00167737249, 0.00791433174, 0.00952228, 0.00945061632, -0.010937633, 0.0197791103, 0.00713499123, -0.0107136844, 0.00355629832, -0.0174231753, 0.0101762088, 0.0144670578, -0.00388102327, 0.011905089, -0.00117908756, -0.00794120505, -0.0209615566, 0.0120932059, -0.00928937364, -0.00664678449, 0.015586799, -0.0197611935, 0.00908334088, -0.0385191, -0.0234339461, -0.0134010641, 0.00815171655, 0.00260675768, -0.0101403771, 0.0026672238, 0.0144939311, -0.0495911, 0.00624367734, -0.0383757725, 0.0130427461, -0.00919083692, -0.0221619196, 0.0159092844, 0.0273575187, -0.0301882252, -0.00565245422, -0.013777297, -0.00736789778, 0.00649002055, -0.00283070607, 0.0324635394, 0.0125411022, 0.0156942941, 0.00806661602, 0.0017120844, -0.017584417, 0.00622576149, -0.00735894, 0.0104897367, -0.0103016198, 0.00351822702, 0.0107943062, 0.00782923121, -0.0144401835, 0.00565693295, 0.0039616446, 0.00340625294, 0.00959394313, -0.0192774665, -0.0339863859, -0.0252434481, -0.0427114107, 0.0146551738, -0.0112511609, -0.0153718088, -0.0125411022, -0.0288624521, 0.0156763773, 0.0149597432, 0.0050477935, -0.0180502292, 3.88060325e-05, -0.0319618955, -0.00563005917, -0.0107047269, -0.00951332226, -0.00460437639, 0.0103464099, -0.0161780212, 0.0236131046, 0.00128434331, -0.019832857, -0.00300314603, 0.0264079776, -0.0227710586, -0.00483280327, 0.0215169489, 0.0115557304, -0.00319574168, 0.00507466728, -0.00388998119, -0.0287728719, -0.0188654, -0.0274291821, -0.00341297151, 0.0103553673, 0.0104001574, -0.0181666818, 0.00713947043, -0.0381249525, -0.0402031913, 0.00511497818, -0.0350792557, 0.0148970382, -0.00235817512, -0.0249209628, 0.017647123, -0.00429980643, -0.00405794242, -0.0202449225, 0.0386982597, 0.0556824952, -0.0242759902, 0.0185429156, 0.0170738157, 0.0189012326, -0.00672292663, 0.00252165738, 0.00722009176, -0.00272992929, 0.0151120285, -0.0190087277, 0.00148813613, -0.00241864123, 0.0285041332, 0.0138220862, -0.0172261, -0.00234025926, -0.00406018179, 0.0139116654, 0.0135443909, -0.000730071333, -0.0148343323, 0.0127381766, -0.0210690517, -0.0282533113, 0.0200299323, -0.00862648711, -0.0223052464, -0.0282174796, -0.019223718, 0.0236131046, 0.018489169, 0.0238997582, 0.00122499699, 0.00259332079, 0.00497613, -0.0042550168, -0.0112422025, 0.00659303647, 0.00310168345, 0.00022100893, -0.0211765468, 0.0127113033, -0.0194387082, 0.0248493, 0.0021510229, 0.00150717178, -0.0188833177, -0.037587475, -0.00653033098, -0.0165452976, 0.00810244773, 0.00662438944, 0.00137952121, 0.0381966159, -0.00810244773, 0.03705, -0.000375953125, -0.0223231614, 0.0325531177, 0.0369425043, 0.0124246497, -0.0100507978, -0.00737237651, -0.00556735368, 0.0197970252, 0.00541058974, 0.0366379358, 0.0133383581, 0.0217140224, -0.0107136844, 0.0125858923, -0.0423172638, 0.010642021, 0.0034980718, 0.0220365077, -0.00391685497, -0.0260854922, 0.0286832936, 0.00137728173, -0.00280383206, -0.0148522481, 0.0141266556, -0.029722413, -0.00248582568, 0.00200993568, 0.0112063708, 0.0243118219, 0.00295611704, -0.00175575435, 0.00341073191, -0.022842722, 0.00373097789, -0.000492126273, 0.0110540856, -0.00742164534, -0.014870164, 0.00361900381, -0.00860857125, -0.0109286746, -0.0124336071, -0.00238952786, 0.0035451008, -0.04206644, -0.0282712281, -0.000328924, -0.0276441723, -0.00101896457, 0.025870502, 0.00670053205, -0.0185070839, 0.016133232, 0.0104986941, 0.00570620177, -0.0129800411, -0.0151209859, 0.0154345138, -0.00290236948, 0.036387112, -0.0293282643, 0.00537475804, 0.0292924326, 0.00477905571, -0.0109555488, 0.0128367143, -0.00388102327, 0.00107271213, 0.0160705261, 0.0145745529, 0.00196178677, -0.0273754355, -0.00645418884, -0.0184712522, 0.0123798596, -0.0216602758, -0.0241326634, 0.0140191605, -0.0210153051, 0.0088369986, -0.0395582207, -0.0258167554, 0.0190803912, -0.00255077053, 0.00656168396, 0.00174455694, 0.00687521137, -0.00786058418, -0.0398807041, -9.99369076e-05, 0.00639596209, 0.0087205451, -0.00574651221, 0.00107663125, 0.0254763532, 0.00306809111, -0.0159182418, 0.0126038082, 0.0118603, -0.00447000703, -0.013481685, -0.0339147225, -0.0152643127, 0.00781131536, -0.00871606637, -0.0129442094, 0.022842722, -0.018972896, -0.000983132864, 0.0226456486, 0.0126844291, -0.0105793159, -0.0183458403, 0.0201374274, -0.0107584745, 0.0500210822, -0.0263363142, -0.0361900367, 0.0140191605, -3.13352612e-05, 0.0107943062, -0.0164915491, 0.00212302944, 0.00610035053, -0.0108301379, 0.016993193, -0.0245984774, -0.00118356652, 0.00111470243, -0.00366379344, 0.029364096, -0.00865336, 0.0212123785, 0.0135712642, 0.0223231614, 0.00980893336, 0.00995226, 0.00843837, -0.0217498541, -0.000161522679, 0.00653928891, 0.00929833204, -0.0268379599, -0.0112780342, 0.00420126924, 0.00889970362, 0.0071305125, 0.00593910785, 0.00757393, 0.024903046, 0.00753361918, 0.0354554877, -0.027680004, -0.000782139308, -0.0258167554, -0.016384054, -0.00495821424, -0.0107674319, -0.00658855774, -0.00444985181, 0.00687969057, 0.0129710827, -0.0078785, -0.0216065273, 0.0102209989, 0.0370858312, 0.000424661877, 0.00130673812, 0.0106778527, 0.0283070598, 0.0144760152, -0.0114751086, -0.0141983191, -0.0176023338, 0.00697374856, 0.00959394313, 0.0190983079, -0.0395940505, 0.0302957203, 0.00478353491, -0.00426397473, 0.0253509432, 0.0258346703, -0.0393790603, -0.0217319392, -0.00431996165, -0.00486863498, -0.0284862183, -0.00667365827, 0.0119409207, -0.0127650509, -0.00574651221, -0.00949540641, -0.0182652194, 0.0348284319, -0.013230863, 0.00986268092, 0.00412064791, 0.0052807, -0.0255301017, 0.00506123062, -0.0144849736, -0.0144580994, -0.0111347074, -0.016975278, 0.0227531437, -0.0178352389, 0.0316752419, -0.00710811745, 0.0411706492, 0.0258884188, -0.0158376209, 0.0218215175, 0.0144133102, 0.00378696504, -0.0111794965, -0.00517768366, 0.0303136352, 0.00435803318, 0.00451703649, 0.0144133102, 0.0292207692, 0.0112690767, -0.00959394313, 0.0117617622, -0.00883251894, -0.00213198736, 0.0321410522, -0.00286877714, -0.00108782866, -0.0012104403, 0.0293999277, -0.0023357803, 0.0247418042, 0.00595702371, 0.00181174139, -0.00915500429, -0.0340401344, -0.0163571816, -0.0168140344, 0.000622576161, 0.0184354205, 0.00791433174, -0.00889074616, 0.00105031731, 0.00795912091, 0.00397284189, 0.0233981144, 0.0254584383, -0.00657064188, 0.0214632, -0.0166886244, 0.0121827852, -0.00744851911, -0.00973727, -0.00560318539, -0.0155240931, 0.0115378145, -0.0242580753, 0.00516872574, -0.00575994933, 0.0197253618, -0.01800544, 0.00828160625, 0.0537117496, 0.0190983079, 0.00850107614, -0.00428637, -0.026587138, 0.00955811143, -0.0222873297, -0.0196357835, -0.0149149541, 0.0509168766, 0.0123619437, -0.0087563768, -0.0141714457, 0.00169976731, 0.0152822286, -0.0128456717, 0.0169036146, -0.0657870397, 0.0150314067, -0.00329651823, 0.00216445979, 0.0226993952, -0.0259959139, 0.00257316558, 0.00397508172, -0.0113049084, -0.00554048, 0.0481578335, -0.00286877714, 0.00986268092, 0.00355629832, -0.00693791686, 0.00261571561, 0.019582035, -0.00743060326, -0.0031307966, -0.018525, 0.00339729502, 0.0338968076, 0.00348687428, 0.0234876927, 0.0240430851, -0.0196178667, 0.0144580994, 0.0340401344, 0.0216781907, 0.000839806, -0.00911917258, 0.0120215425, 0.00673636375, -0.00810692646, -0.0073007131, -0.0143506043, -0.00221036933, 0.0171723515, -0.00776204653, 0.0134189799, 0.0162676014, -0.00146574131, -0.017584417, -0.00190244045, 0.00072559237, 0.00132577366, 0.00719321799, -0.00862648711, -0.00355853769, -0.00791881047, 0.014995575, 0.0097193541, -0.0130069144, -0.0118692573, 0.0315319151, -0.00367723033, 0.0146372579, 0.00128210383, -0.0182652194, 0.0110809598, 0.00279039517, -0.00973727, -0.00858169701, -0.0202628374, -0.015712209, 0.0187579058, 0.0169573613, 0.0166348759, 0.0189370643, 0.00701853819, 0.000697038951, 0.00495821424, -0.0101314187, 0.010642021, -0.00706780702, 0.0150672384, 0.00178038864, -0.00858617574, 0.0229681339, -0.00747987162, 0.0416006297, 0.00637804624, 0.0194028765, 0.00864888169, -0.0017120844, 0.0306002889, 0.0302240569, -1.20197228e-05, -0.00343088736, -0.0118782157, -0.00261795521, 0.00431772228, -0.0283966381, -0.00261571561, 0.0179158598, -0.0269096233, -0.000490446691, 0.0257809237, -0.00991642848, 0.00489550875, -0.0181756411, 0.0100687137, 0.00209615566, 0.00850107614, 0.00106655352, 0.00369514618, 0.0233981144, 0.00175687403, -0.00964769069, 0.00328756031, 0.0120125841, -0.00951332226, 0.0141535299, 0.027070865, -0.0168677829, 0.0382682793, 0.0113138659, -0.00390565768, -0.00590775488, 0.0101762088, 0.00421470637, -0.00653928891, 0.00300986459, -0.0169484038, 0.0101941247, -0.00623471942, 0.0265692212, 0.00183077704, -0.00528965797, 0.0168946572, 0.00678563211, -0.00235369615, 0.0040489845, -0.0133831482, 0.00530309463, -0.0405256748, -0.0227531437, 0.00975518581, -0.014744753, 0.00745299784, 0.00398403965, 0.0150134908, 0.00600181334, -0.00648106262, -0.013902708, 0.0202986691, 0.0286474619, 0.0166796669, -0.00626607239, 0.0131233679, -0.00909229927, 0.00418111403, -0.0234697778, -0.000991531, -0.0049179038, 0.00641387794, 0.0229681339, 0.0131233679, 0.00507018855, -0.00780235743, -0.019814942, 0.00645418884, 0.000153684494, -0.00424158, -0.0105345258, 0.0240789168, 0.0039818, 0.00687969057, -0.00232010405, -0.0134727275, -0.00218461524, 0.00173559901, -0.0105793159, 0.00343984528, -0.00889522489, -0.00731862895, 0.00532101048, -0.014556637, 0.00777548365, 0.00792776793, 0.0189191494, -0.00148365716, -0.0147178797, -0.0275904257, 0.0184712522, 0.00899824128, -0.0080531789, 0.00816515367, 0.00657512061, -0.0221081711, 0.0133025264, -0.00485071912, -0.0065796, -0.00564797502, -0.00871606637, -0.00532101048, 0.0203703325, -0.0261571556, -0.01129595, 0.0170200672, -0.0141176982, -0.00692448, 0.0097193541, -0.00984476507, -0.0124246497, 0.00378024648, 0.00662438944, -0.0097193541, 0.0116632255, -0.00911917258, 0.0112153282, 0.00431324355, 0.00365035655, -0.0163392648, 0.0288624521, 0.00255524972, -0.0058450494, 0.0103195356, 0.0265333895, 0.00149037561, 0.00430876436, -0.0150761968, 0.000925466185, 0.00318230479, 0.00963873323, -0.0206749029, 0.00724248681, 0.00477009779, -0.0109734647, -0.0235593561, 0.00252389675, -0.00042858097, 0.0344522, -0.0136877177, -0.00718873926, 0.0104001574, -0.0187758226, 0.00532996841, 0.00857274, -0.00875189807, 0.00736341858, 0.0132577363, -0.0229860488, -0.0110182539, 0.0286474619, -0.00290236948, -0.001480298, -0.00704989117, -0.0281995647, 0.0013571264, -0.00820546411, -0.0302598886, -0.00559870619, 0.0102389148, -0.00379816233, 0.00756049296, 0.00191475765, -0.00291580637, 0.0058853603, -0.0109645063, 0.00354957976, 0.00137504225, -0.00103632058, 0.0176560804, 0.0223052464, -0.0205136612, 8.21610156e-05, 0.0242401585, 0.00119140476, 0.0399882, -0.0148343323, -0.00568828592, 0.0111347074, 0.0106151477, 0.0152195236, 0.0142341508, -0.0118871732, 0.00272992929, -0.00406242115, -0.00618097186, 0.00294268015, -0.0145835103, -0.0300090667, 0.00148701645, -0.0138668763, 0.000994890113, 0.0281458162, 0.0150224492, -0.00141759252, -0.00935208, 0.0097193541, 0.0220544245, 0.00476114, 0.00986268092, -0.00913261, -0.0106241051, -0.0104091149, -0.021875266, -0.00422590366, -0.00475666113, -0.000530197518, -0.012747135, 0.00730967103, -0.0173335951, -0.00952228, 0.00145118474, 0.0302240569, -0.00537027931, 0.0144939311, -0.00704989117, 0.00257316558, 0.00457078405, 0.00230890652, 0.00445433101, 0.0371933281, -0.011000338, 0.013293569, -0.0219648443, -0.00978206, 0.00610035053, -0.025261363, -0.00168409094, 0.00184981257, 0.011484067, -0.0154972197, 0.00725144474, 0.015165776, -3.87098044e-06, 0.0193670448, -0.0424605906, -0.00398851838, 0.0275187623, 0.00414080312, -0.00313527556, 0.00452823378, 0.0161869805, 0.00472082943, 0.0025821235, -0.00782027282, 0.0222156662, -0.00549121108, 0.0121021634, -0.00366155407, -0.018614579, -0.0451838, 0.000255161052, -0.00533892633, -0.0141445715, -0.00643627299, -0.00935208, 0.0173604693, 0.016428845, 0.0097999759, -0.00840701722, 0.011233245, 0.00298523018, 0.0189370643, 0.0393073969, -0.000999928918, -0.00945061632, -0.0183637571, -0.029364096, 0.0124246497, 0.00747987162, -0.0039661238, -0.00879668724, 0.0122544486, 0.0197074469, 0.0161690637, -0.0250463728, 0.0187579058, 0.00274336617, 0.0178889874, 0.00670949, -0.0263900626, -0.0138579179, 0.0128456717, 0.0106868111, -0.00306137255, 0.000225767842, -0.0109286746, -0.020656988, 0.0241505802, -0.014682048, 0.0156674199, 0.0236310195, -0.0199403521, 0.0144760152, 0.00747987162, -0.021266127, 0.0140191605, -0.00325844716, 0.0193312131, -0.0161690637, 0.00937895291, -0.00502539892, -0.00708124368, -0.0195462033, 0.0266767163, -0.0155420089, 0.0081338007, 0.0190087277, -0.00217901659, -0.00466260267, -0.0023357803, 0.009096778, -0.00782475248, -0.0196357835, -0.00266946317, -0.00253733364, -0.0252434481, -0.00972831249, 0.000261039677, -0.00680802716, 0.0102389148, -0.0069603119, 0.0178441964, 0.00850107614, -0.0242222436, -0.00664678449, -0.0220544245, 0.0140997823, -0.00725144474, -0.00368618825, -0.0232547875, -0.0109465905, -0.00752018252, -0.00622128276, 0.00442969659, 0.0108032636, 0.0413498059, 0.00386086805, 0.00833087508, -0.0319798104, -0.0195641201, 0.0100866295, 0.0331622586, 0.0147268372, 0.0212123785, 0.0146283, -0.0215886123, -0.0153359771, 0.0185608324, 0.0353121608, -0.0177277438, 0.00647210469, -0.00325620756, 0.00808453187, -0.00940582715, -0.0285399649, -0.0144580994, -0.00194723008, -0.0170827731, 0.0226635635, -0.0246880557, -0.0113317817, 0.0256555118, -0.00532101048, 0.00111470243, -0.0289878622, 0.00824577454, -0.00981789175, -0.00726040266, 0.0119230049, 0.0142878983, 0.0149149541, -0.0110361697, 0.0196357835, 0.0141624874, -0.00722904969, 0.0116453096, -0.00158443395, -0.0160884429, -0.0165721718, 0.00304793566, 0.00491342461, -0.00180278346, -0.00549121108, 0.0193491299, -0.0169842355, 0.0208540615, -0.00373545685, -0.0183995888, -0.0166975819, -0.0124604814, -0.00444089388, 0.00495821424, -0.0108301379, -0.00417663483, 0.0159272, 0.000206872195, -0.00431996165, 0.0145387212, -0.000744627963, 0.0173604693, 0.00815619528, 0.0187399909, -0.00110798399, 0.0178262815, -0.010032882, -0.0161063578, 0.0365304388, -0.0085458653, -0.0278591625, 0.0158197042, 0.021642359, 0.0107226428, -0.0104180733, -0.0110899173, -0.017414216, -0.0185429156, 0.00543298479, -0.0300448984, -0.0128008826, 0.0244730655, -0.0190803912, -0.00904303, -0.00114549533, -0.0196178667, -0.0214273687, 0.0267483797, 0.0229502171, 0.0212302953, -0.00921771, 0.011421361, -0.00872950349, 0.00442073867, -0.00914604682, 0.0192416348, 0.00367499096, -0.00638700416, -0.00381383882, 0.000163902136, -0.0277695842, 0.0057509914, -0.000330323674, 0.00932520535, 0.0102478722, -0.00790985208, 0.00676323753, -0.0226635635, -0.0179606508, 0.00260003936, -0.00268066069, 0.000628174865, 0.00819650665, -0.0102030821, 0.00143326889, -0.0215348639, 0.030098645, -0.00710811745, 0.00213534664, 0.0453987904, -0.00586296525, -0.0189908128, 5.8786416e-05, -0.00155979965, 0.011905089, -0.02246649, -0.000971375557, -0.0124604814, -0.0092625, 0.00241640164, -0.0476561897, 0.00664678449, -0.0109465905, 0.0164019708, -0.0140549922, -0.00464916602, 0.00769486232, 0.0256017651, 0.0156763773, -0.00939686876, 0.0207107347, 0.00294044055, -0.0202986691, 0.0116363512, 0.00047309068, -0.00302554085, 0.0288624521, 0.022717312, -0.00750226667, -0.0194207933, -0.0162586439, 0.0130337887, 0.00181845983, 0.0114751086, -0.0079636, 0.00958498567, 0.0122096585, 0.0150224492, 0.00489550875, -0.0016449, 0.0140191605, -0.0190803912, 0.0262467358, 0.00812036358, -0.015165776, 0.0135264751, -0.00582265481, -0.000778780086, 0.0033771398, -0.0144939311, 0.0140370764, -4.29000866e-05, 0.0102657881, 0.00644523092, -0.00265378691, -0.0229143854, 0.0237206, -0.00695135398, 0.0114034452, 0.0163482223, 0.0229143854, -0.00797255803, -0.00552256405, 0.0381607823, 0.00465364475, 0.00692895893, 0.00510602025, 0.00191475765, -0.023451861, 0.0191878863, -0.0154703455, -0.000609139272, 0.014682048, 0.00782475248, 0.00552704278, 0.00332339224, -0.0087205451, 0.0153180612, 0.0362079553, 0.000467212056, -0.0276620891, -0.0161511488, -0.00651241513, -0.024293907, 0.0165721718, 0.00522695249, 0.00482384535, -0.0289341155, 0.0317827351, -0.0108928429, 0.000933864212, 0.00945061632, 0.0114930244, 0.003717541, 0.00169304886, 0.0139206238, 0.00852794945, 0.00845180731, 0.00697822776, -0.013651886, -0.0068886485, -0.00438042777, 0.0106509794, 0.00485071912, -0.00355629832, 0.00173223973, 0.00376233063, -0.0135264751, -0.0328935198, -0.00532101048, -0.0056748488, 0.0131502412, -0.0304569621, 0.00328532094, -0.00748435082, -0.00138847914, 0.00537027931, -0.0226098169, 0.0101224612, -0.00069479947, 0.0204957444, 0.00852794945, 0.000844844792, 0.00076926226, 0.00676771626, -0.000801734743, 0.0199582689, -0.0129710827, 0.00391685497, -0.000133809081, -0.0045842207, -0.00418559276, -0.00273888721, -0.00696927, -0.0120842475, -0.0136250118, 4.10455177e-05, -0.0210511368, 0.0023357803, -0.0057509914, 0.00690656435, -0.0070902016, -0.010812222, -0.00449688081, 0.00661991024, 0.0218036026, -0.00520007871, -0.0076814252, -0.0132039888, 0.033233922, -0.00443417532, 0.00450807856, -0.00288445363, 0.000166701488, -0.00312407827, -0.0305286255, -0.0156674199, -0.0205853246, -0.00663782656, 0.0110540856, -0.0122723645, -0.00368842785, 0.0081338007, -0.0129621252, 0.00507914647, 0.00825921167, -0.0188295692, -0.0249567945, 0.00477009779, -0.00704989117, 0.029973235, 0.00423934031, 0.00911469385, -5.28028e-05, 0.0139206238, -0.00780683616, 0.0144312261, -0.0241505802, -0.0080531789, 0.0152822286, -0.00502539892, 0.0100866295, -0.0053344476, -7.85218581e-05, 0.00425053807, 0.0159809478, 0.0024231202, 0.00353614287, 0.00690656435, 0.0187758226, 0.00659303647, 0.00680802716, -0.00349359284, -0.0146372579, -0.0120125841, 0.00743060326, -0.00896241, -0.0504510626, 0.0320873074, 0.00729623437, -0.0214452855, 0.00299866707, -0.00678115338, -0.00110462483, -0.0166617502, -0.000787738, 0.0159719903, 0.0228248071, -0.0186683275, -1.76621688e-05, -0.0155061772, -0.00134256983, 0.00435355399, -0.012326112, -0.0183368828, 0.00114885462, 0.0175485853, 0.00720665511, 0.00563005917, 0.0145208053, -0.00224172208, 0.0224127416, -0.00496269343, -0.0140549922, -0.00714842835, -0.0101851663, -0.018847486, 0.00432891957, -0.0257271752, -0.00380712026, 0.0161780212, -0.00933416374, 0.00749778748, 0.00903855171, -0.00842045434, -0.0102478722, -0.011233245, 0.0281279013, -0.0157390833, -0.00572411763, -0.00922666863, -0.00416543754, -0.0177994072, 0.00998809189, 0.029005779, 0.0214632, -0.0186324958, -0.0371933281, 0.0139295813, 0.000996009912, -0.0249209628, 0.000771501742, 0.0147626689, 0.00914156809, 0.0213019587, 0.0111794965, 0.00248806505, -0.00193379319, 0.00290236948, 0.0174858794, -0.0201732591, 0.0216244441, 0.02549427, 0.000978653901, 0.0211586319, -0.00887730904, -0.0131502412, -0.00935208, 0.0143685201, 0.0186324958, -0.00399747631, 0.00120036269, -0.00489103, -0.00821890123, 0.022842722, -0.0166707076, 0.00749330875, -0.00763663556, 0.00521351537, -0.014870164, -0.00500748307, -0.000917628, -0.0338968076, 0.0054688165, -0.0124783972, 0.00167401321, -0.00731415, 0.00020715213, 0.00773965195, -0.00167849218, -0.0112780342, -0.00359436963, -0.0185966641, -0.0092625, -0.0198686887, 0.0117438463, 0.0172977634, -0.00712155458, -0.00622576149, -0.00756049296, 0.00401763152, -0.002839664, -0.0177635755, 0.0080890106, 0.008003911, -0.00654824683, -0.00830400176, -0.00524486834, 0.000368394889, -0.00513737323, -0.00442969659, 0.00554943783, -0.0101762088, -0.00649002055, -0.00328308134, 0.00964769069, -0.00624367734, -0.0139295813, 0.00866231881, 0.00829056464, 0.00393477082, 0.0113049084, -0.00830400176, -0.0158017892, -0.00652137306, 0.0162765589, 0.019456625, 0.0159092844, 0.0248134676, -0.0209615566, 0.00610482926, -0.00622576149, 0.0225919, -0.0013078578, 0.0300807301, -0.0231114607, 0.00988955516, -0.00824577454, -0.00601525, 0.0134458533, -0.00164154067, -0.00420350861, -0.0100149661, -0.0187937375, -0.0138668763, 0.0102478722, -0.0013582462, 0.0133652324, -0.00602420792, -0.0211765468, 0.0183637571, 0.016805077, -0.0203345, 0.00317558623, -0.0177635755, -0.0110361697, -0.00466260267, -0.00558079034, 0.0165721718, -0.0155599248, 0.000880676496, -0.0181487668, -0.010391199, 0.0399523675, -0.00998809189, -0.0120932059, 0.0153359771, 0.00866679754, 0.000638252532, 0.0242222436, 0.00821890123, -0.0199403521, -0.0259779971, -0.0137593811, -0.00839358103, 0.00967456494, 0.00279711373, -0.00251717842, 0.024885131, -0.00149709405, 0.00572859636, -0.0065796, -0.000674084236, 0.00122163771, -0.00423486158, -0.0123171546, 0.00648554135, 0.0122275744, -0.0102478722, -0.00466708187, 0.000717194285, -0.008097969, 0.0166707076, -0.0161780212, -0.0190983079, 0.00819202699, -0.00206144364, -0.016742371, 0.000619216939, 0.000200993556, 0.014682048, 0.0137056336, -0.00217005867, -0.000994330272, -0.0218394343, -0.000735110138, -0.0130427461, -0.00693343813, 0.00262691313, -0.0198507737, 0.0171365198, 0.00401987135, -0.00331443409, 0.0110540856, -0.0134100216, 0.0145835103, -0.0280920696, 0.010812222, -0.00361004588, 0.0156674199, 0.0192595497, 0.0101135029, 0.0197970252, 0.000144306658, -0.0126485974, 0.00116453099, 0.0209257249, -0.0118871732, -0.0285041332, -0.00533892633, -0.00515081, -0.0331443436, 0.0179069024, -0.000726152211, -0.00724696554, 0.00339729502, 0.00673636375, -0.00375785166, 0.00373769645, 0.0296328329, 0.00687521137, 0.0194745399, 0.00666470034, 0.0167154986, -0.0278412476, 0.00551360613, 0.00236265408, -0.0232189558, -0.0269275382, -0.0085100336, -0.00422814302, 0.0236131046, -0.0302061401, 0.00744851911, -0.00802630559, 0.018614579, -0.015291187, 0.0195999518, 0.00483280327, -0.0177098289, -0.0131950313, -0.00337042124, 0.0070902016, -0.00713947043, -0.0141535299, 0.0170827731, -0.0111167915, -0.0109824222, -0.00916844141, -0.0207823981, 0.0281279013, -0.0217319392, 0.0129889986, -0.0156226307, -0.00150269282, -0.00335474499, -0.00795016345, 0.0147716273, 0.0126396399, 0.00845180731, -0.00936999545, -0.00541954767, 0.0106241051, -0.0365841873, 0.0121021634, -0.0151568176, -0.0185608324, 0.0113765718, 0.00574203348, -0.0047118715, -0.00170984492, -0.00122835615, -0.00301434356, -2.84659236e-05, -0.0230935439, 0.0238997582, -0.0278770793, -0.00559422746, 0.0226993952, 0.0136429276, -0.00648106262, 0.00293148262, -0.0070946808, 0.00321813649, 0.00906990469, 0.0188116543, 0.00713499123, 0.00966560654, -0.000331163494, 0.00694687478, 0.0230577122, -0.0183368828, 0.00325620756, -0.0162407272, 0.010032882, 0.0124336071, -0.013481685, 0.00705437, -0.00990747102, -0.00899824128, 0.0355809, 0.0213198736, 0.000638812431, -0.0079636, 0.00197970262, -0.0208540615, 0.013714591, 0.0376233086, -0.0330547616, 0.00289117196, 0.021642359, 0.026712548, -0.0144133102, -0.00776204653, 0.00179606501, 0.0175575428, 0.0273754355, 0.0182831362, -0.0356704779, -0.00765455142, -0.0208540615, 0.00177814916, 0.00371306203, -0.0110899173, 0.014744753, -0.0122813229, -0.0101135029, -0.00344208465, -0.00311959931, -0.0455779508, -0.0217140224, 0.00603316585, -0.0223948248, -0.0112601183, 0.000954019546, 0.0177277438, -0.00181286118, -0.00182517827, 0.0112780342, -0.000584505, -0.00150605198, -0.00105815555, 0.0132577363, 0.0354913212, -0.00482384535, -0.000281474961, -0.00994330272, 0.0257630069, -0.00919979438, 0.00797703676, 0.00846524443, -0.00665574241, -0.0141535299, 0.00307480968, 0.028289143, -0.00726488139, -0.0177277438, 0.0154076405, 0.00498956721, 0.0128008826, -0.00122723647, -0.0402748547, -0.00356301665, 0.0532459393, 0.00330323679, 0.00708572287, 0.0401673578, 0.00840701722, -0.00649002055, -0.0173425525, 0.00322485482, -0.020191174, 0.001835256, 0.00551808486, 0.00803974271, -0.012263407, 0.0144580994, -0.00345104258, 0.0197074469, 0.00843389146, -0.016195938, -0.00527174212, 0.015649505, 0.0232368708, 0.0106957685, 0.00499404594, 0.0013078578, 0.00502987765, -0.0160794854, 0.00334578706, -0.000225767842, 0.0181039777, 0.00386534701, -0.00478801364, 0.0158824101, 0.00636013038, -0.0105076525, 0.0143774785, 0.0134548116, -0.0247418042, 0.00250150193, 0.0127023449, -0.00626607239, -0.0269812867, -0.00232682237, 0.00231786445, -0.011063044, 0.00649002055, 0.0162586439, -0.0187579058, 0.00725144474, -0.000937223434, 0.0118692573, -0.00331667368, 0.0106061893, 0.00819202699, 0.0277337525, -0.0201553423, -0.00547329523, 0.000165161837, -0.0139295813, -0.0301703084, 0.0111436648, -0.0231114607, -0.00522695249, 0.0291670207, 0.0172977634, -0.0155330515, -0.0177904498, -0.0165721718, 0.00548673235, -0.0139564555, -0.0124336071, 0.037694972, -0.00378696504, 0.0266588014, 0.00839806, 0.0159988627, 0.0345417783, 0.00863544457, -0.0478711799, -0.00516424701, -0.00415424025, 0.0307257, -0.0134100216, -0.0266050529, 0.00601972919, 0.00682146382, 0.0466529019, -0.0342372097, -0.0177456606, -0.0037556123, -0.0149059957, -0.0132846106, 0.0106061893, -0.00272768969, 0.0186504107, 0.0104449466, 0.0158017892, 0.0290595256, -0.00819202699, -0.008003911, 0.0258346703, -0.0267483797, 0.00348239532, -0.00806661602, 0.00433115941, -0.00155867985, 0.00408033701, 0.00343536632, 0.0131950313, -0.00193827215, -0.0163930133, -0.00665126322, -0.0138310445, -0.00808005314, -0.0274112672, -0.00947749056, -0.015165776, 0.00338385813, 0.0173335951, 0.00547329523, -0.0131412838, 0.00687969057, 0.00426845392, 0.00944165885, -0.0310481861, -0.0256734286, 0.00326516549, -0.00887283, 0.00359436963, 0.0143326884, -0.000296451501, -0.0289520305, -0.000242424, 0.00237833057, 0.0154972197, -0.0106778527, -0.00347791635, -0.00217565731, -0.0125321448, -0.0213557053, 0.0147268372, -0.000235005704, 0.0121917427, -0.0301523935, -0.0201553423, -0.0104718208, -0.0137235494, -0.0116184354, 0.0157390833, -0.0124156913, 0.00197970262, -0.0111974124, 0.0148164164, 0.0219827611, 0.0190803912, 0.000318566395, -0.00615409808, -0.00442073867, -0.0209615566, -0.0291849375, 0.00811588485, 0.00791881047, 0.00839358103, -0.00547777442, -0.0140191605, -0.0200478472, -0.0217140224, 0.0108838854, -0.0266229697, -0.0199403521, -0.00648106262, 0.00476114, 0.0183368828, 0.016007822, -0.0154793039, 0.0193491299, -0.0027993531, 0.00908782054, -0.0154076405, 0.00765007222, 0.031514, -0.000865000125, 0.0100507978, -0.00581817562, -0.0288445354, 0.0261392407, 0.00292700366, -0.0329831, -0.018489169, -0.00490446668, 0.00153516536, 0.00615409808, 0.00348687428, 0.0144580994, -0.0200299323, -0.0281816479, 0.00730967103, -0.00770382024, -0.0137952128, -0.00931624789, -0.00339281606, -0.0118961316, -0.0230397973, -0.0141176982, 0.0350792557, -0.00655272603, -0.00592567073, 0.000997689436, -0.0130964937, -0.00451703649, -0.0133652324, 0.0111615807, 0.015774915, 0.0117886364, 0.0191878863, 0.0097193541, -0.0035831721, 0.000966336753, 0.0163930133, 0.00240968331, -0.000576666789, -0.0192774665, 0.00959394313, 0.00667365827, 0.00598389748, 0.0174321327, 0.00373993581, -0.0139922872, 0.00258884183, 0.0145476786, 0.0134727275, -0.00106095488, 0.00302330148, 0.0264258943, -0.0230218805, 0.0071305125, -0.0102478722, -0.0223589931, -0.0147716273, 0.00209951494, -0.000469451537, -0.0238639265, -0.0267483797, -0.00388774183, -0.0183189679, -0.0296686646, 0.0085548237, -0.00995226, -0.00307257, -0.0102478722, -0.0210511368, 0.0013324921, -9.20287348e-05, -0.0154703455, 0.0163571816, 0.00177926884, 0.000229407, -0.00311288075, -0.0151836919, 0.00157883519, 0.00740820821, -0.0109018013, -0.0048775929, -0.00967456494, 0.0108570112, 0.00578234391, 0.000584505, 0.00975518581, 0.00340401358, 0.00397508172, 0.00781131536, -0.0156763773, -0.00216893875, 0.00277695828, -0.00474322401, 0.00531653175, -0.00324948924, 0.00520455744, 0.00247686775, -0.0246701408, -0.00978206, -0.0363154486, -0.00848763902, 0.027554594, 0.0163034331, -0.00331219472, -0.015461388, -0.0219110977, 0.0215527806, 0.00839806, -0.000476729852, 0.0113496976, 0.0181039777, -0.0197791103, 0.032284379, 0.00945957471, 0.0226993952, 0.020424081, -0.0146103846, 0.000367835019, -0.00652585225, 0.0236668512, -0.0038765443, -0.00255301013, 0.000407585816, -0.00335698435, 0.0121469535, -0.0126038082, -0.00946853217, -0.0134906434, 0.0254046898, -0.00450583873, -0.00321141793, -0.000994890113, 0.000579466112, 0.0300090667, 0.00123843388, -0.00940582715, 0.0204599127, -0.0240968317, -0.00463125, 0.0211944636, -0.021391537, -0.013965413, 0.00837566517, 0.0102120405, -0.000702637655, -0.00696927, 0.00264035, 0.0179696083, 0.00658855774, -0.0180771034, -0.0139922872, -0.00858617574, 0.0131144095, 0.0170469414, -0.00996121857, 0.0194028765, 0.0214094538, 0.0239355899, 0.0225560684, -0.0159272, -0.000766462937, -0.0140102031, -0.000469171588, -0.0175665021, -0.0166527927, 0.00725592347, 0.00117236911, 0.0205136612, -0.00156203914, 0.0178889874, -0.00243655709, 0.0191341396, 0.0012473918, 0.00618097186, -0.000203792908, 0.000960738049, -3.57617355e-05, 0.0253151115, 0.0158824101, -0.0132487789, 0.0080890106, 0.00985372346, 0.00969248079, -0.0258346703, -0.00822338, -0.0023738516, -0.00706780702, -0.0219290126, 0.0257988386, 0.0372649916, -0.00014710601, 0.017772533, 0.00201217504, -0.0144043518, 0.000855482358, 0.0162944756, 0.0135891801, -0.0248493, -0.0069603119, -0.00714842835, 0.00532548968, -0.00274336617, 0.0117528047, -0.00466708187, 0.00517320493, -0.00234697782, 0.0217677709, -0.00699614361, -0.0104091149, 0.00827264879, 0.0308869444, 0.0338968076, -0.0026672238, 0.00691104308, 0.00910573639, -0.00246343086, -0.0148522481, -0.00261123665, 0.0145208053, -0.0230218805, -0.0113049084, 0.00701405946, -0.0135623068, 0.00199873815, 0.0124246497, -0.00569724385, 0.00328532094, -0.00969248079, 0.0218394343, 0.000406746025, 0.00216445979, -0.0334130786, -0.00931624789, -0.0228606388, 0.00931624789, -0.0119588366, 0.0413498059, -0.000963537372, 0.00732758688, -0.0120752901, -0.00535684219, 0.00973727, 0.0077172569, 0.0128187984, -0.00636013038, -0.00992538687, 0.00939686876, 0.00786058418, -0.0214452855, -0.0178621132, -0.0119857108] |
02 Jan, 2025 | Python String zfill()
02 Jan, 2025
zfill() method in Python is used to pad a string with zeros (0) on the left until it reaches a specified width. In this article, we’ll see how zfill() method works.
Python
s = "42"
padded_text = s.zfill(5)
print(padded_text)
Output00042
Explanation:The string "42" is padded with three zeros on the left to make its total length 5.The zfill() method ensures that the string is right-aligned and padded with zeros.Table of Content
Syntax of zfill() methodExamples of String zfill() methodFrequently Asked Questions (FAQs) on zfill()Syntax of zfill() methodstring.zfill(width)
Parameterswidth (required): The total length of the string after padding.If the specified width is less than or equal to the length of the original string, no padding is applied.Return TypeReturns a new string with zeros padded on the left to meet the specified width.Examples of String zfill() method1. Padding a shorter stringLet’s see how zfill() behaves with a string shorter than the specified width:
Python
s = "7"
padded_text = s.zfill(3)
print(padded_text)
Output007
Explanation:The original string "7" has a length of 1.The zfill(3) method pads the string with two zeros on the left to make its total length 3.2. String equal to the specified widthWhat happens when the string length matches the specified width?
Python
s = "12345"
padded_text = s.zfill(5)
print(padded_text)
Output12345
Explanation:The string "12345" already has a length of 5.No padding is added because the string length matches the specified width.3. String longer than the specified widthLet’s see how zfill() handles a string longer than the specified width:
Python
s = "Python"
padded_text = s.zfill(4)
print(padded_text)
OutputPython
Explanation:The string "Python" has a length of 6, which is greater than the specified width of 4.The method returns the original string without any changes.4. Using zfill() with negative and positive numbersWhen dealing with strings representing numbers, the zfill() method correctly handles the sign:
Python
#positive and negative numbers
s1 = "42"
s2 = "-42"
print(s1.zfill(5))
print(s2.zfill(5))
Output00042
-0042
Explanation:For "42", zeros are added to the left to make its total length 5.For "-42", the minus sign is preserved, and zeros are added after the sign to maintain the width.Frequently Asked Questions (FAQs) on zfill()1. Can zfill() be used with non-numerical strings?Yes, zfill()works with any string, not just numerical strings. For example:
s = "abc"
print(s.zfill(6)) # Output: 000abc2. What happens if the width is less than the string’s length?If the specified width is less than the string’s length, zfill() returns the original string without any changes.
3. Does zfill() modify the original string?No, the method returns a new string and does not alter the original string.
4. How does zfill() handle strings with a leading sign?If the string starts with a + or -, the zeros are added after the sign to maintain the correct numerical representation. | NLP/Natural Language Processing (NLP) Tutorial/AI ML DS - Projects/30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated]/Does Artificial Intelligence Require Coding?/Artificial Intelligence – Boon or Bane/Artificial Intelligence Examples/Agents in Artificial Intelligence/What are Diffusion Models?/ML | Common Loss Functions/Loss Functions in Deep Learning/Kaiming Initialization in Deep Learning/Swift - Initialization/Swift – If Statement/6 Best iOS Project Ideas For Beginners/Swift Programming Language/Introduction to Visual Programming Language/What is D Programming Language: Usage and Applications/Best Programming Languages for Data Science in 2024/5 Best Languages for Competitive Programming/MEX (Minimum Excluded) in Competitive Programming/Rearrange Array to maximize sum of MEX of all Subarrays starting from first index/Minimize moves to segregate even and odd by swapping adjacent elements/Minimum elements to be removed such that sum of adjacent elements is always even/Maximum sum such that exactly half of the elements are selected and no two adjacent/Maximum length subsequence such that adjacent elements in the subsequence have a common factor/Longest subsequence such that difference between adjacents is one/Longest Increasing Subsequence using Longest Common Subsequence Algorithm/Longest Common Subsequence (LCS)/Minimum insertions to form a palindrome with permutations allowed/Print longest palindrome word in a sentence/Python String split()/Python String strip() Method/Python String rindex() Method/Python String istitle() Method/Python String isdigit() Method/expandtabs() method in Python/String capitalize() Method in Python/Python String upper() Method/Python String zfill() | https://www.geeksforgeeks.org/python-string-zfill/?ref=next_article | NLP | Python String zfill() | Artificial Intelligence – Boon or Bane, Python String zfill(), AI ML DS - Projects, Longest Common Subsequence (LCS), Rearrange Array to maximize sum of MEX of all Subarrays starting from first index, Python String istitle() Method, MEX (Minimum Excluded) in Competitive Programming, Swift - Initialization, Minimum insertions to form a palindrome with permutations allowed, Longest Increasing Subsequence using Longest Common Subsequence Algorithm, 6 Best iOS Project Ideas For Beginners, ML | Common Loss Functions, Python String strip() Method, Python String isdigit() Method, Artificial Intelligence Examples, Python String split(), expandtabs() method in Python, Longest subsequence such that difference between adjacents is one, What is D Programming Language: Usage and Applications, 30+ Best Artificial Intelligence Project Ideas with Source Code [2025 Updated], Swift – If Statement, Natural Language Processing (NLP) Tutorial, Python String rindex() Method, Loss Functions in Deep Learning, Python String upper() Method, Minimize moves to segregate even and odd by swapping adjacent elements, Maximum length subsequence such that adjacent elements in the subsequence have a common factor, Does Artificial Intelligence Require Coding?, Print longest palindrome word in a sentence, Best Programming Languages for Data Science in 2024, String capitalize() Method in Python, NLP, 5 Best Languages for Competitive Programming, Maximum sum such that exactly half of the elements are selected and no two adjacent, Swift Programming Language, Minimum elements to be removed such that sum of adjacent elements is always even, Agents in Artificial Intelligence, What are Diffusion Models?, Kaiming Initialization in Deep Learning, Introduction to Visual Programming Language | GeeksforGeeks | [6.18575868e-05, 0.0191875901, 0.00636177976, 0.0269053057, 0.0443501882, 0.0223173555, 0.0405446775, 0.00423896359, -0.0123056648, -0.0432832204, -0.0346585847, 0.0177560784, -0.0167780276, 0.0130258668, -0.00594388507, 0.0126791028, -0.0258916896, 0.028007837, 0.0218194388, -0.019027546, 0.0309953392, 0.00458795, -0.0513210259, -0.0289503224, -0.0431765243, 0.0194365494, -0.0206102114, 0.00795333646, 0.0122967735, 0.0255182516, 0.0202012081, -0.00348097389, 0.00970938336, -0.0195432454, -0.0138171995, -0.0429275669, -0.00392109714, 0.0232420582, -0.00878912583, 0.00612171274, 0.000932483119, 0.0407580696, 0.00268964143, 0.0159866959, 0.000864130678, 0.0352632, 0.00397666823, -0.0116299205, 0.0110697635, -0.00895806216, -0.0274032224, -0.0360278599, 0.0240422823, 0.00514810719, 0.0237044096, 0.0538817421, -0.00489025703, 0.0232420582, 0.010687435, -0.0287191458, -0.00899807271, -0.00167269027, -0.00145818572, 0.00280300644, -0.0313509926, 0.0148041425, -0.0311198179, -0.0141728539, 0.0466263779, -0.00838901382, -0.000188386039, 0.0211614762, 0.0277233124, -0.00092136889, -0.00912255235, -0.032987006, -0.00246291142, 0.00678856624, -0.0372015201, 0.0210014321, -0.0107496744, -0.0159778036, 0.024540199, 0.00999390706, 0.0221039616, 0.0388019681, 0.0319022611, -0.00906031299, 0.0296971984, 0.0129458448, 0.0125368414, 0.026193995, -0.0135682411, -0.0151331229, -0.0160933919, 0.0182451047, -0.0107585657, 0.0287902784, -0.0393710174, -0.00790443365, 0.00831343699, -0.00252292817, -0.018067278, -0.0194898974, -0.00359433889, 0.00449681375, -0.0189564154, -0.0320089571, -0.00526369503, -0.0282745771, -0.00489025703, -0.0654405355, 0.00892249681, 0.0905497819, -0.0438167043, 0.0123056648, 0.0273320917, -0.0124479271, 0.0478711724, 0.0303373765, 0.0361879021, -0.00167713594, 0.0231353622, 0.0695305616, -0.0336094052, 0.0143773556, -0.0311198179, -0.0305507705, 0.00734872278, -0.0117099434, -0.0062061809, -0.0104829334, 0.0248069409, -0.0160044786, 0.0308175106, 0.0193654187, 0.00259183627, -0.0054548597, 0.000319255982, 0.043034263, -0.0257849917, 0.0287902784, -0.0116299205, 0.0412915535, 0.00649515074, -0.000922480307, 0.0246291123, -0.00862463564, 0.00490359403, -0.00345874554, -0.0233309716, -0.0746875629, 0.0157288443, 0.0111231124, 0.0322934799, 0.000480134331, -0.0295905, 0.0179250147, -0.016493503, -0.004450134, 0.0395488441, -0.01892085, 0.0129991928, 0.0296438504, -0.0054548597, 0.0184762813, 0.0294660218, 0.0381973535, -0.0256071649, 0.019774422, -0.00238288892, -0.0353698954, -0.0359567255, -0.0231709275, -0.0258916896, -0.0411137268, 0.0019461, -0.00234732335, 0.00718423212, 0.00439678552, -0.0501118, -0.0113631794, 0.00393221108, -0.0150886662, -0.00175271265, 0.00694861077, -0.00559267588, 0.00685525127, -0.00352320797, -0.0505385846, -0.00496138819, 0.0246113297, 0.0064862594, -0.0115943551, 0.00660184724, -0.0181650817, -0.0274565704, -0.0309064258, -0.00291859428, 0.0251270309, -0.0250914656, -0.0186718907, -0.0392287523, 0.0291637145, -0.00207502511, 0.0384818763, -0.0345163234, 0.0184229314, -0.00804225, 0.0183518, 0.0158444326, 0.00599278789, -0.0213748701, -0.00430564908, -0.0141550712, 0.00574382907, -0.0226196628, 0.00728648296, 0.00299639395, -0.0126435375, -0.0149108386, 0.0035120938, -0.00536594586, -0.0303729419, 0.0142084202, -0.00645958493, -0.0121811861, 0.0127413431, -0.00802002195, 0.00671298942, 0.0170892254, -0.0142617682, 0.0134437615, 0.0407580696, 0.025660513, 0.0334493592, -0.0014815256, -0.00384552032, 0.01582665, 0.046128463, 0.0314932577, 0.00403668499, 0.0265852157, -0.0357077681, -0.0218550041, 0.0172670539, 0.0313332118, 0.0235265829, -0.0137905255, -0.0107852397, -0.0444924496, 0.0208591688, -0.0239711516, 0.0253582057, -0.0153731899, -0.00246735709, 0.0059394394, -0.0124123618, -0.0120833805, -0.0088069085, 0.000237010754, -0.00974494871, 0.0471242964, -0.0146796629, 0.045274891, 0.0113276141, -0.00925592333, -0.00257183076, 0.0220683962, -0.0280967504, -0.00128480396, -0.00615283241, 0.0135593498, -0.00544152269, -0.00876245182, 0.00548153371, -0.00589053705, 0.00847792719, 0.0109008281, 0.00251848251, 0.0134081962, 0.0226196628, 0.0189564154, 0.0470176, 0.000215338034, -0.0231353622, -0.0342673659, 0.000474021508, -0.00423451792, -0.00228063809, 0.0100294724, -0.00477022352, 0.0261762124, -0.00259183627, 0.0174182076, -0.0362945981, -0.0271720476, 0.0148041425, -0.0260517336, 0.0289325397, -0.037735004, -0.0280967504, -0.0127057768, 0.0132303685, 0.00655294443, -0.0266919117, -0.0220328309, -0.00288747461, 0.00678856624, 0.0141106145, 0.00604613591, -0.0509298071, -0.0242201108, -0.00127035542, -0.00665074959, -9.84303188e-05, 0.0539173074, 0.00217505312, -0.0394421481, -0.0174893383, 0.00891360547, 0.0211970415, 0.0286302324, 0.0231887102, 0.0171159, -0.0305863358, 0.0156043656, 0.00102028542, -0.0102073, -0.0674322, -0.0215882622, -0.00962046906, -0.026567433, 0.0236688443, -0.0253759883, -0.00345874554, -0.0262117777, -0.00561045855, 0.0300706364, 0.0186185427, 0.0228686202, -0.026620781, 0.00346319121, -0.0234910175, 0.027207613, 0.00323868403, 0.0159689132, -0.0237577576, -0.0252337269, 0.00104362529, 0.00043873387, 0.00456572184, 0.00962046906, 0.0273498744, 0.008340111, -0.0393710174, -0.0283990577, 0.0246824622, -0.00115143321, -0.017933907, -0.00532593438, -0.0166357663, 0.00481912633, -0.00933594536, -0.0224774, -0.0507519767, 0.00815783814, 0.018494064, 0.00941596739, -0.0154087553, -0.0291814972, -0.0372015201, 0.0122167515, -0.00336760888, -0.001169216, 0.010874154, 0.0631999075, 0.0364546441, 0.0508231074, 0.00530815171, 0.00520145521, 0.0218372215, 0.00386997173, -0.0165379606, -0.0310664698, 0.0141017232, -0.0449192338, 0.0196855087, 0.0151420143, 0.0261050817, -0.0130614322, -0.0189919807, -0.00292748585, -0.0341784507, -0.0119322278, 0.0169558544, -0.0104029104, 0.00653516175, 0.0336805359, -0.0121011632, -0.00749098463, -0.0336627513, 0.0141461799, 0.00924703199, -0.00521034654, -0.00520145521, -0.0214815661, -0.00542818522, 0.0348008499, -0.00966492668, -0.00589942839, 0.0462707244, -0.0124301445, -0.0432120897, -0.0123856878, 0.0212859549, -0.0655116662, 0.00818006694, -0.00811338145, 0.0287547112, 0.027260961, -0.025287075, 0.0289503224, 0.00986053701, 0.0449192338, -0.0480845645, -0.0139950272, 0.0359922908, 0.0136393718, -0.000673521776, 0.00175938115, 0.0221217442, 0.018227322, 0.0419317335, -0.0140483752, -0.023793323, 0.0442790538, -0.0259094723, 0.00331426063, -0.0562646315, -0.0210903455, 0.0183340181, -0.0204146, -0.0158533249, -0.0282923598, 0.00745097362, 0.00503251934, 0.000922480307, 0.0295549352, 0.00755322445, 0.0237044096, -0.0375927389, -0.0052681407, 0.0390864909, 0.0282567944, 0.00170381006, 0.0144307045, -0.0233131889, 0.0234198868, 0.0140217012, -0.00689970842, -0.0381973535, -0.0221217442, -0.00152375968, 0.0604257956, -0.0284701884, 0.0242201108, -0.0341962352, -0.0313332118, 0.0424652137, -0.0239000209, 0.0172848366, -0.0250559, 0.00957601238, -0.0135237835, -0.00609059306, -0.0414693803, 0.0584696941, 0.0194543321, -0.0223351382, 0.00565936137, -0.0344985425, -0.0414693803, -0.0341428854, 0.0179161243, 0.002411786, -0.0174448807, 0.00937151071, 0.0154887782, -0.0207169075, -0.0137638506, 0.0162712187, 0.0337872319, -0.0322579145, -0.0055482192, 0.0588609129, -0.0468397737, -0.00993166771, -0.00131036667, -0.004063359, 0.0160845, 0.0171425734, -0.0278833564, 0.033360444, 0.0118433135, 0.000979718519, 0.00498361653, 0.00206057657, 0.000687970256, 0.0103495624, 0.0191875901, 0.00868242886, -0.0227797069, -7.52293854e-05, -0.00650848774, 0.0262117777, -0.0162978936, -0.0064862594, 0.000245485338, -0.017160356, -0.00594833074, 0.0234198868, -0.0174359903, 0.0064862594, 0.00185051782, 0.0116921598, 0.0045434935, -0.0201834254, -0.0277588777, 0.0236688443, -0.00414782716, 0.0237221923, 0.00391887408, -0.00669076107, 0.0040878104, -0.0223707035, -0.00954933837, -0.00163267902, 0.00256293942, -0.0220328309, -0.0130792148, 0.0230108835, -0.00559712155, -0.0216060448, 0.0210903455, 0.0129636275, -0.00788665097, 0.0228508376, -0.00513032451, 0.00624619192, 0.00263184751, 0.0054548597, -0.000402890495, -0.00135482347, 0.00280522928, -0.00588164572, -0.0159866959, -0.0133103905, 0.00496583385, 0.0185829774, -0.0132926079, 0.00369214406, -0.0166891143, 0.0213037375, 0.0111764604, -0.0107674571, -0.0216593929, 0.0262651257, -0.0333782285, 0.0231353622, -0.00876689702, 0.00562379556, 0.0271720476, -0.00160822773, -0.0422518216, 0.0120211411, 0.00481912633, -0.0276521817, 0.00982497074, 0.0155776916, -0.00478356052, -0.00580606889, -0.0152042536, 0.000825786614, 0.0129725188, -0.00692193676, 0.00618839823, 0.0059394394, -0.0139861358, -0.0102250827, 0.0259806029, 0.0327558331, -0.00580606889, 0.0163512416, 0.00496583385, 0.0314399078, 0.0172137059, 0.0147863589, 0.016626874, -0.00717978645, 0.0199878141, 0.0173292924, 0.0295371525, 0.0222640075, -0.0113098314, -0.0387664028, 0.0168313757, 0.0025940591, 0.0037877264, -0.0161734149, 0.00798890181, 0.0257316437, 0.0308708604, -0.0452393256, -0.0193832014, -0.0162089802, -0.0285768844, -0.0110519808, -0.00291637145, -0.00174826698, -0.00641512824, -0.00886914786, 0.025820557, -0.00474799518, 0.0124212531, -0.000700751611, 0.00698862225, -0.0334493592, -0.010260649, -0.0558378436, 0.0142528769, -0.0396911055, -0.00539706554, -0.00945153367, -0.00876245182, -0.0175871421, 0.0150797749, 0.0334849246, -0.0076821493, -0.0315466039, 0.0109630674, -0.00187608053, -0.00454127043, 0.0512498952, -0.00876245182, 0.0319022611, -0.0295015872, 0.0121189468, -0.00500584487, -0.0190631114, -0.00928259734, -0.0508231074, -0.000885803369, 0.0193832014, -0.00898029, 0.0432832204, 0.018494064, 0.0276166163, -0.00539262, 0.00733983144, 0.00405891333, -0.040793635, -0.0125546241, 0.00608170172, -0.0129991928, -0.00878912583, 0.00119811296, -0.00312754163, 0.0182451047, -0.016253436, -0.0152487112, -0.00144707155, 0.00339428312, 0.00216838438, 0.017560469, 0.00347430538, 0.0182628874, -0.00350320246, -0.00552154472, 0.00925592333, 0.0145018352, 0.0202189907, -0.0152931679, -0.00413671276, -0.00771326944, -0.0151597969, 0.00664185826, -0.00170825573, -0.0216593929, -0.00381884631, 0.019400984, -0.0106340861, 0.0130792148, -0.00275854953, 0.0227974895, 0.0190097634, -0.00561490422, 0.00139816897, -0.0205390807, 0.0346941501, -0.0237044096, 0.0254115537, -0.00567269837, -0.0148841646, -0.0232598409, 0.0394065827, -0.0117455088, 0.00787776, 0.0280256197, 0.000947487308, -0.00767325796, 0.0181561913, 0.00891360547, 0.0142084202, 0.0134081962, -0.00386330322, -0.00642401958, 0.00431231782, 0.0150797749, -0.0155065609, -0.0304618571, -0.0106963264, 0.00257849926, -0.00642401958, -0.0227974895, -0.00621951791, -0.0136482632, -0.0118077481, -0.0196499415, -0.0109097194, 0.0115943551, -0.00979829673, -0.00928259734, 0.0150797749, -0.0127946911, -0.00111364492, -0.0580429062, 0.0091581177, -0.0324179605, -0.0535260886, -0.0354765914, 0.0108385878, -0.0210014321, -0.0369169973, -0.00959379505, -0.0124034705, 0.0230286662, 0.0183695834, 0.00661518425, 0.0237577576, 0.0197566394, 0.00549487071, 0.0491159633, 0.0414338149, -0.0348008499, 0.00850460213, 0.0220328309, -0.031866692, 0.0153287333, 0.0413626842, -0.0101806261, 0.00559267588, -0.0247358102, -0.00848681852, 0.0217483081, 0.00878023449, -0.0314576887, 0.0308352932, 0.0133014992, -0.042892, 0.00509031303, -0.0260161683, 0.0130881062, -0.00165268464, -0.0478000417, 0.0154532129, -0.00350542529, -0.0171425734, 0.0354410261, -0.0114254188, 0.0128569305, -0.0122434255, -0.00307419337, 0.00449903635, -0.00182940078, -0.0395844094, 0.0323468298, -0.0444213189, 0.019294288, -0.0209480841, 1.58203984e-05, 0.00571270939, -0.0125457328, 0.0340717547, -0.0290036704, -0.026994219, -0.0162267629, -0.0523879901, 0.0200767275, -0.0153642986, 0.031386558, 0.0171247907, 0.0243979376, 0.0208236035, 0.0220328309, -0.00343651697, 0.00672632642, -0.0041700555, -0.0239178035, -0.00403001625, 0.00305418787, 0.0153376246, -0.0127769085, 0.0101183867, -0.0152398199, 0.000816895219, 0.00684191426, 0.0233665369, 0.0150619922, -0.0101361694, -0.0251270309, 0.0221217442, -0.0304618571, -0.00542818522, -0.0229753163, 0.0411492921, 0.0488314405, -0.0109097194, 0.0157466289, 0.0351031534, 0.0282567944, -0.00551265338, -0.026247343, -0.00215838174, 0.00494360551, -0.0115943551, -0.00367880706, -0.00809115265, -0.0194898974, 0.0177294053, -0.0766792297, 0.0176227093, 0.00773994345, 0.00634844275, 0.0152842766, -0.00798890181, 0.00116699317, -0.0214637835, -0.00145374, -0.0101183867, 0.00429675775, -0.000474577217, 0.0227974895, 0.0164668299, 0.00607725605, 0.033840578, 0.0062061809, 0.00376549806, -0.0210014321, -0.0304262899, -0.0234198868, -0.00462796167, 0.0101450607, 0.0127591258, -0.0104651507, -0.00189830887, -0.000411504036, 0.0154621042, -0.00739317946, 0.0127502345, 0.017240379, -0.0248069409, 0.0361701213, -0.0217305236, -0.00256071636, 0.000576272374, -0.0237399749, -0.00314087886, -0.0329514407, 0.0219083522, -0.00894472469, 0.0302128978, 0.0272253957, 0.0200411621, -0.00553043606, 0.00128146971, 0.0124301445, -0.0368814319, -0.0099049937, -0.0213037375, 0.0315643884, -0.00844680797, -0.00636622589, -0.0232776236, -0.000343985128, 0.00641068257, 0.0234376695, 0.00484135468, 0.00158044219, -0.0137282852, 0.00394999422, 0.00357211055, -0.0314221233, -0.025340423, 0.0101717347, -0.0253582057, -0.0060061249, -0.0026740816, -0.00720646093, 0.0143773556, 0.0211970415, -0.0105451727, 0.00754877878, 0.0153820813, 0.0128035825, 0.027260961, -0.00713977544, 0.0161911976, -0.00302306795, -0.0105807381, 0.00762880128, 0.0231887102, -0.00854461268, 0.0188141521, -0.00295415986, -0.0135593498, -0.0335027054, 0.00956712104, -0.0155776916, -0.00974494871, -0.0113809621, -0.0140217012, 0.00419450691, -0.0196499415, -0.018227322, -0.0119322278, -0.058220733, 0.0482268259, -0.0238111075, -0.00336983171, -0.00629509473, 0.00986053701, -3.75104937e-05, -0.00802002195, -0.0115232244, -0.0426074751, -0.00427897507, -0.00709087308, -0.0124568185, 0.0501473658, 0.0109275021, -0.0104918247, 0.0175515767, -0.00855795, -0.000461795862, 0.00461017899, 0.00472576683, -0.0325957872, 0.00217394158, -0.0228686202, -0.000177688606, -0.00900251884, -0.000685747422, 0.0110341981, -0.0251803789, 0.0132570425, -0.0134348702, -0.0176049266, -0.0173292924, 0.0187608041, 0.000332037336, -0.0529926047, 0.0203434695, 0.00225174124, 0.01860076, -0.00843791664, -0.0225129649, -0.035867814, 0.0017993924, 0.0039699995, 0.0220328309, 0.0084290253, 0.00274743536, 0.0347297154, 0.0166713316, -0.0451326296, -0.00512587884, -0.0213926528, 0.00759768113, 0.0254115537, -0.00481468067, -0.0204146, 0.00653516175, -0.0327024832, 0.0111586777, 0.00589498272, 0.0160311516, -0.0198989, -0.0126346461, 0.0167157874, -0.0136571545, -5.9912596e-05, 0.00483246334, -0.0218194388, 0.00908254087, -0.0301951151, 0.000715200091, 0.0108652618, -0.00858017802, 0.0028696917, -0.0199700315, 0.000194221007, -0.00579717755, 0.00858906936, 0.0059394394, 0.0105718467, -0.0379483961, -0.0420028642, -0.033093702, 0.0370592587, -0.0140039185, 0.00319422712, 0.00599723356, -0.000369269983, -0.00781996548, -0.016013369, -0.0144218132, 0.0187430214, 0.0278655738, -0.00883358251, -0.0167157874, -0.0162445456, -0.0019060889, -0.00706419861, 0.00691304542, -0.00685525127, -0.0143684642, -0.0192053728, 0.00617061555, -0.0110608721, 0.00328980945, 0.0101183867, -0.0139061129, -0.0234732348, 0.0238644555, -0.0310309045, 0.015639931, -0.0367391668, -0.01673357, 0.00303418236, 0.0185118467, 0.0298394598, -0.0124746012, 0.0234021042, -0.00673521776, -0.000829120865, -0.0197566394, 0.00236732909, 0.00806447864, 0.00969160069, -0.00130925525, 0.0140039185, -0.0141195059, -0.0030564107, 0.0145640746, -0.0133904135, -0.0019505457, 0.00935372803, -0.0116921598, -0.00662852125, 0.00293415436, -0.000927481742, -0.00520145521, 0.00116143608, 0.00931816269, -0.00641512824, -0.0054548597, 0.0131147802, -0.0122612081, -0.0449192338, 0.0247535929, 0.00100861548, 0.0113720708, -0.000946931599, 0.00687747961, 0.0135949152, 0.00300528528, -0.00832677446, -0.000538484, -0.0102962144, -0.00919368304, -0.00774438912, -0.00428119767, 0.0248069409, -0.017240379, 0.00535705453, -0.0154532129, 0.0111320037, -0.0165290684, 0.0150264269, -0.00270964694, 0.0164846126, -0.00142706593, 0.0275988337, 0.0191342421, 0.00641068257, 0.0113542881, -0.0207524728, -0.00413226709, 0.0282567944, 0.0211970415, -0.0146085322, 0.0202545561, 0.0133904135, -0.0104029104, -0.00318978145, -0.0244690683, -0.0114254188, -0.0101361694, 0.00300528528, 0.00766436663, 0.00287858327, 0.000154348745, 0.0122167515, 2.61878831e-05, -0.0123412311, 0.00749987597, -0.00516589, -0.00088858197, 0.017240379, -0.00128480396, -0.00540151121, 0.00370992697, -0.0313509926, -0.0175960343, -0.0391220562, 0.0386241414, -0.00252515101, 0.00331870629, 0.0168847237, -0.00689081708, -0.0099049937, -0.00798445661, 0.0149997519, 0.0117277261, -0.0124746012, -0.0148130339, -0.0492226593, -0.00051292131, -0.0108208051, 0.0100383637, 0.0111142211, -0.00745097362, -0.00940707605, 0.00070464157, 0.00147152285, -0.0279189218, 0.0126168635, -0.0311909486, 0.0069575021, -0.0247358102, -0.00333871203, -0.0148574905, -0.00744652795, 0.0466975085, -0.00673077209, 0.0312265139, 0.0217660908, 0.0154887782, -0.00713977544, 0.00525480369, -0.00347875105, 0.0141817462, 0.0415760763, -0.00802002195, 0.00548597937, -0.00621951791, 0.00847348198, -0.00589053705, 0.0188497193, 0.00190275465, -0.0248069409, 0.00158266502, 0.00497917086, -0.00212059333, -0.0289858878, -0.00605058158, -0.0126968855, -0.0235977136, 0.00808670744, 0.0297505464, 0.0163690243, -0.0333426632, -0.0340184085, 0.0260161683, 0.000634066295, 0.00368992123, -0.00492582284, -0.0128302565, -0.00368992123, 0.0120300325, 0.0135326749, -0.0206813421, 0.0206635594, -0.0155332349, -0.0157555193, -0.0127324518, -0.0440656617, 0.0233309716, -0.0113631794, -0.00688637141, 0.0151064489, -0.0228330549, -0.0218194388, -0.0282923598, 0.0170447696, 0.0212326068, -0.0154532129, 0.00882469118, -0.0208236035, 0.0163601339, -0.0247180276, -0.015613257, -0.00142817735, 0.0105273901, 0.00240956317, -0.0104118017, 0.00795333646, -0.0067574461, -0.0056549157, 0.0109541761, -0.00174382119, 0.00334760337, 0.0173915327, -0.00889137667, 0.000998612726, -0.01582665, 0.00240956317, 0.0210547801, 0.0212326068, -0.00881135464, -0.0131770205, 0.0232776236, -0.0170180947, 0.0129280612, -0.00137927476, 0.0137105025, -0.018654108, -0.0138171995, 0.019667726, -0.00149152847, 0.00557489321, 0.00459239585, -0.0109008281, 0.018440716, -0.0102695404, 0.00672632642, -0.00889582187, 0.00062128494, -0.00411670748, -0.0143951392, 0.00236732909, -0.0183340181, -0.0253226403, -0.0348719805, -0.0117544, -0.00507697603, 0.00104862673, 0.0144573785, -0.00311642746, 0.0137371765, 0.00173270702, 0.0279367045, 0.0173292924, -0.0414338149, 0.00568158971, -0.00552599039, -0.0181028433, -0.0031497702, 0.00152153685, -0.00375438388, -0.00572160073, 0.00401445664, -0.0147952503, -0.000526814081, 0.035601072, -0.00289414311, -0.00810004398, 0.0164223723, -0.0100383637, 6.94638802e-05, -0.00765102962, -0.0185651947, -0.0153376246, -0.0127591258, -0.0113542881, -0.0225307476, -0.0221039616, -0.00603724457, -0.0141283972, -0.00356766488, -0.0209125187, 0.00877134316, -0.0129369525, 0.00658406457, 0.00273632118, -0.0263718236, 0.00534816319, 0.00774883479, 0.0118699875, 0.00870021246, -0.0359211601, 0.00842457917, 0.0213215202, 0.0201122947, 0.00408336474, -0.0014437373, 0.00988721102, 0.0282745771, -0.018654108, -0.0280434024, -0.00454793917, -0.0309597738, -0.0101806261, 0.00276077236, -0.0366324708, 0.0146707715, 0.00188386044, 0.0112209171, 0.0295905, -0.0111764604, 0.00817117468, -0.0225307476, 0.0424652137, 0.00593499374, -0.00325424387, 0.0174982287, -0.0212148242, 0.0520323366, -0.0256782956, -0.0318489112, -0.00418783817, 6.65463958e-05, 0.0588253476, -0.00807337, 0.0168313757, 0.00181161799, -0.0116299205, 0.0479423031, -0.0167246796, -0.000846903597, -0.0117188348, 0.00885136519, 0.0189386327, 0.0161823053, 0.00507697603, 0.0118877701, -0.00067574461, 0.00869576633, 0.0167157874, -0.0133904135, -0.0110875471, -0.0114787668, -0.0350142419, -0.00644624792, -0.00686858827, 0.0145374006, -0.0101628434, 0.00995834172, 0.0220861789, 0.0149730779, 0.00872688647, 0.00878468, 0.00418561557, 0.0158888903, -0.00483690901, -0.00147707993, -0.0304796398, 0.00690859975, -0.0251270309, 0.00182717794, 0.00321645546, 0.00554377353, -0.00641512824, 0.00776661746, -0.0308886431, -0.0198277701, -0.00100027991, 0.0150619922, -0.00923814066, 0.00528592337, 0.0164579377, 0.0251981616, 0.0223707035, -0.0031497702, 0.00101695117, -0.0144573785, -0.0035120938, 0.0127502345, -0.0072375806, -0.0240778476, 0.00345652271, -0.0121634034, 0.0297861118, 0.0169825293, 0.0261228643, -0.0344985425, -0.0137549592, 0.00481912633, 0.0140839405, -0.0163334589, -0.0033320433, 0.00812671799, 0.0114076361, 0.00790888, -0.00513921585, -0.00439900858, 0.0376283042, 0.0219083522, 0.0385530107, -0.0136749372, -0.0111586777, -0.00756656146, 0.0145818572, -0.0212503895, -0.0128658218, -0.0154265389, -0.0137816342, 0.00437011151, -0.00960268639, 0.0095315557, -0.0454527177, 0.0026940871, -0.0200233795, 0.0126346461, -0.0129636275, -0.0111408951, -0.0323823951, 0.00172714994, -0.00955823, 0.0073042661, 0.00604613591, 0.0167424623, 0.0129547361, 0.0137282852, 0.00420784391, 0.00825119764, -0.0106163034, -0.00483246334, 0.00781552, 0.0219083522, 0.00312309596, 0.0135326749, -0.00585052604, -0.000547653239, 0.00406558206, 0.00820674095, 0.00396333123, 0.0180494953, 0.0149908606, 0.0137282852, -0.0152576026, 0.00397222256, -0.0318133458, -0.00690415408, 0.0237221923, -0.0159155633, -0.0158533249, 0.00107585662, 0.0237221923, 0.026620781, 0.0412915535, 0.00545041403, -0.0260161683, -0.0309597738, 0.0199344661, -0.0120833805, -0.00991388503, -0.0263184756, 0.0128213651, 0.0112653738, -0.0103317797, -0.0143240076, -0.0240067169, 0.0167691372, -0.0182451047, 0.0169291813, 0.0149730779, 0.0252515096, 0.0149641866, -0.0126257548, 0.0191520248, 0.0265496504, -0.00409225607, -0.00102417544, -0.000936373079, 0.0325602219, -0.0103406711, -0.0128658218, -0.00643291092, 0.00942486, 0.0133014992, -0.0132570425, 0.0105896294, -0.0243090242, -0.0100027984, -0.0145551832, -2.68477888e-05, -0.0163779166, -0.00693527376, 0.0273676571, -0.00932705402, -0.0373437814, -0.0152220372, 0.0132125858, -0.0102250827, -0.00805114117, 0.0207169075, -0.0144840525, 0.0123679051, 0.0430698283, -0.00781552, 0.0127324518, 0.0244868509, 0.0063795629, 0.0132659338, -0.00292304, -0.00437011151, 0.0080600325, -0.0212148242, 0.0245579816, 0.062061809, -0.00714866677, 0.0358500294, 0.0225307476, 0.0307108145, 0.0148397079, -0.0105718467, 0.0155599089, 0.00630398607, -0.0041700555, 0.0148930559, 0.00970049202, 0.0244335029, 0.0295905, -0.0166535489, 0.00258516776, -0.00365213305, -0.00400778791, 0.00036843642, 0.0221573114, 0.0105896294, -0.0188497193, 0.00643291092, 0.0497561432, -0.00853572134, -0.0123679051, -0.0139150042, -0.00315199303, -0.0286657978, -0.0183340181, -0.00123923563, -0.0049080397, -0.0148752732, -0.0110519808, -0.0150886662, 0.0330225714, -0.0264785197, -0.0244868509, 0.0166535489, 0.0240067169, -0.00265185302, -0.0059394394, 0.016493503, -0.00575272087, -0.0245224163, 0.0003467637, 0.0192409381, -0.0119233364, 0.0162978936, 0.0014693, 0.00568603538, 0.00893138815, -0.00459239585, 0.0191342421, 0.0274565704, -0.00260517327, 0.0306574665, 0.036241252, -0.00170936715, 0.0178894494, -0.0121456208, 0.0182095394, -0.0102517577, -0.00303195952, -0.00772660645, -0.000220200498, 0.0109275021, 0.0178449936, -0.0403668508, 0.00319645, 0.00380328624, 0.00847792719, -0.000207002362, -0.00932705402, 0.00863352697, -0.00937151071, 0.0234376695, -0.0200055968, 0.0160933919, 0.0150797749, 0.0138349822, -0.00679745758, -0.00514366152, 0.0060194619, -0.00540151121, 0.00572604639, 0.0145907486, -0.0153376246, 0.0103228884, -0.0145374006, 0.00734427711, 0.0177916437, 0.032506872, 0.00207391358, 0.0151420143, 0.0173026193, -0.0113809621, -0.0261584297, -0.00627286639, 0.00644180225, -0.0173826404, -0.00901585631, 0.00336316321, 0.015639931, 0.0321156532, -0.0137994168, -0.0210192148, -0.002125039, -0.0169025064, -0.0157555193, 0.0143951392, -0.00132814934, 0.00310309045, 0.00390776, -0.00310086762, 0.0106163034, -0.00743319094, 0.0106785437, 0.0119944671, 0.0111231124, -0.00253848801, 0.00962046906, 0.00234732335, -0.0116477031, -0.0189030673, 0.018547412, -0.00132370368, 0.00514366152, -0.00773105212, 0.0275632683, 0.00755767, -0.0146440975, 0.00814450067, -0.03288031, -0.0072242436, -0.00984275434, -0.0133459559, 0.0135949152, 0.00301639945, -0.000543207512, -0.000975272851, -0.00978940539, -0.0132125858, -0.00814005546, -0.00501029054, -0.0146440975, -4.22687699e-05, 0.00395888556, -0.0192587227, 0.00361434463, 0.0204857308, -0.00350097963, 0.0367391668, -0.000766325509, -0.0215704795, -0.00103862397, -0.0216771755, 0.00852683, 0.00091747893, -0.00810893532, 0.00430120341, 0.00131258951, -0.028434623, 0.00131592376, -0.0156221483, -0.0394421481, 0.0119233364, -0.0105540641, 0.0144040305, 0.0038922, -0.0197388567, -0.0101628434, 0.0180761684, 0.00621951791, -0.0213215202, 0.0108208051, -0.00404779939, -0.0171692483, -0.0035187623, 0.0126613202, -0.00998501573, 0.0175693594, 0.00699751358, -0.0145196179, 0.0119944671, 0.0217305236, -0.0101717347, 0.031866692, 0.0112920487, -0.0133726308, 0.0107318917, 0.0204323828, -0.0129903015, 0.00459684152, -0.00481023453, -0.00766881229, -0.0202367734, 0.00229175226, -0.0172759444, -0.0103851277, -0.0168402679, -0.00489025703, -0.00301195378, -0.0154354302, 0.0170803349, 0.0283101425, -0.00352987647, -0.00493916, -0.0142973335, -0.0121367294, 0.0182984527, 0.00518367253, 0.0145285092, 0.00502362801, 0.00400778791, -0.0129547361, -0.00970938336, 0.025767209, 0.00532593438, -0.00648181373, 0.00977162272, -0.0382684842, 0.0133726308, 0.00204279367, -0.0222817902, -0.0100917127, 0.0126702115, 0.0245224163, -0.00350542529, 0.0173115097, -0.00733538577, 0.01007393, -0.00579717755, 0.0130969975, -0.0210725628, 0.00368769839, -0.00450570509, -0.00240289443, -0.0126968855, -0.0225840975, 0.00797111914, 0.017427098, 0.0232064929, 0.00217394158, 0.00696194777, 0.0227974895, -0.0284701884, 0.00316310721, 0.0050814217, -0.00806892384, -0.0145018352, 0.000339539431, -0.0175515767, -0.0145196179, 0.0102695404, -0.0181028433, 0.009460425, -0.000477355788, 0.0132392598, -0.00957601238, 0.00566825271, 0.00133926363, 0.0112298084, 0.000857462117, 0.00486358302, -0.0111675691, 0.0267986096, 0.0144484872, 0.004450134, -0.00826008897, -0.00120255863, -0.0143684642, -0.00376327522, -0.0115587898, -0.00189830887, 0.00287636044, -0.00257849926, 0.0101984087, 0.0114520928, 0.0144395959, -0.0149552952, -0.0102073, 0.0164134819, -0.00922035798, 0.00456572184, -0.0133192819, 0.0174715556, -0.0117455088, -0.0079622278, 0.00119033305, -0.0115765724, 0.00171159, -0.00114476471, -0.031759996, 0.00557044754, -0.00717089511, 0.00631732307, 0.0133993048, 0.0201300774, 0.0119411191, -4.12658846e-06, 0.0110786557, -0.0222640075, -0.00734427711, 0.0303729419, -0.00468130969, 0.0108474791, -0.00249625393, 0.00968270935, 0.00312754163, -0.0112653738, 0.00374104665, -0.00297194254, -0.0154709956, -0.0114432015, 0.0182628874, 0.00136371492, -0.0295371525, -0.00399667397, 0.00904697552, -0.00943375099, 0.00571715506, -0.0140394839, -0.00870465767, 0.00969160069, 0.00702418759, -0.00285190903, -0.00749098463, 0.0159866959, -0.00704197027, 0.0208947342, 0.0306752492, 0.00344540854, 0.0194187667, -0.0170892254, 0.0266385637, -0.0221395269, 0.00726870028, -0.00421006698, 0.0195965935, 0.0125012752, 0.0225663148, -0.0354054607, 0.0288969744, -0.0213393047, -0.0143240076, 0.0255360343, -0.017427098, 0.0151686883, 0.017240379, 0.0106963264, -0.00681079458, 0.00301417662, -0.016573526, 0.000900807616, -0.00206168788, 0.00584608, 0.0301951151, 0.0206279941, -0.0134170875, 0.00275410386, 0.000169908657, -0.0163334589, -0.00012197857, 0.0113187227, 0.00798445661, -0.0028741376, 0.00973605737, 0.00737539679, -0.026887523, -0.000102806545, 0.0138794389, -0.0155776916, 0.026140647, 0.0135415662, -0.00653516175, -0.00382996048, 0.0118433135, 0.0318489112, -0.00874911435, -0.00441234559, 0.00599278789, 0.0259272549, 0.00956712104, -0.00976273138, 0.000566825271, 0.0254826862, -0.00636177976, -0.00489914836, 0.0143240076, 0.00907809567, -0.00170158723, 0.0207346901, 0.00543263089, 0.000998612726, -0.0168402679, -0.00111864635, -0.00554377353, 0.000542096095, -0.0114698755, -0.0091759, -0.0106340861, 0.0021194818, -0.0182451047, 0.0107674571, -0.0147419022, -0.0100027984, 0.00245179702, -0.00127702393, 0.021446, 0.00967381801, 0.000702974445, 0.00834455714, -0.00368325273, -0.00170714431, 0.0120744891, -0.00209947629, -0.00117477309, 0.00748653896, -0.0115676811, 0.0272431783, -0.00878023449, -0.0103051057, -0.0166002, 0.00289414311, -0.0136749372, 0.0058327429, -0.00040844761, 0.0170358773, 0.0234910175, -0.0127413431, -0.0024940311, -0.0320978686, 0.000210753409, 0.0222817902, 0.000281467655, 0.00756656146, 0.009086987, 0.0295193698, 0.00504141068, -0.0065707271, 0.00265407586, -0.00696194777, 0.00497027952, -0.00970049202, -0.0328625292, 0.00506363902, 0.00554377353, 0.00218283292, -8.99557272e-05, -0.00896695349, 0.000209086284, 0.0119589018, 0.00668186974, -0.000176855043, 0.00297638844, 0.0105184987, -0.0138705475, 0.00839790516, -0.01007393, 0.0152664939, 0.000910254661, 0.0237755403, -0.0203612521, -0.00664185826, 0.00483690901, -0.0174359903, 0.0061928439, 0.0113720708, 0.0162267629, -0.0110875471, 0.0152753852, -0.0133815221, -0.0264963023, 0.0287902784, -0.0159955863, -0.0137727428, -0.00823786, -0.00591721106, -0.00210503349, -0.000236316118, -0.00992277637, -0.00651737908, -0.00438789418, -0.0210014321, -0.0316177346, 0.00101695117, 0.009647144, -0.00468575535, -0.00545930536, -0.00388997723, 0.00739317946, 0.00517033553, 0.0152487112, 0.0377705693, -0.000628509209, 0.0135326749, 0.0128391478, -0.00122256426, 0.00497472519, 0.0163156763, 0.0171781387, -0.00251625967, -0.0230286662, 0.00931816269, 0.000318978127, -0.0261228643, 0.00741985394, 0.00316088437, 0.0145551832, 0.00441456866, -0.0174626634, 0.00294304569, -0.00428119767, -0.016066717, -0.017800536, -0.00538817421, 0.00123034429, 0.0357077681, -0.0183518, -0.0139505696, -0.00991388503, 0.0204501655, -0.0112475911, 0.00266741309, 0.0337694474, 0.0166713316, -0.0157555193, -0.0154443216, 0.00788665097, 0.0122167515, 0.000829120865, 0.00199277978, -0.010287323, -0.00995834172, 0.0262117777, -0.0138616562, 0.0103584537, 0.0156577136, 0.0262295604, -0.0209480841, 0.000426786079, 0.017533794, 0.0102695404, 0.0288614091, 0.0077755088, 0.00244512851, 0.0255360343, -0.0264429543, 0.00980718806, 0.0303195938, 0.0161556322, 0.0124123618, 0.0142795509, 0.00599278789, -0.0132570425, 0.0065796189, -0.0101183867, 0.0169291813, 0.00356099638, 0.000644624815, 0.0152842766, -0.00623730058, 0.0006029465, 0.0100205811, -0.00486358302, 0.0206813421, -0.00554377353, 0.0165557433, 0.00751321344, -0.00214059884, 0.000611837837, -0.00263851602, 0.00654405309, 0.0006251749, 0.00645958493, 0.00310753612, 0.0159955863, 0.000974161434, 0.00217060721, -0.00264963019, -0.0194365494, 0.026834175, -0.0347830653, 0.0124390358, 0.0132036945, 0.0156577136, -0.017347075, 0.00270964694, 0.00939818472, 0.0019060889, 0.0162089802, 0.00863797218, -0.0315466039, -0.0246291123, 0.0323823951, -0.00336316321, -0.0269230884, 0.00106974377, -0.0176849477, 0.000896917598, 0.0214282181, 0.0216238275, 0.0227974895, 0.00367436139, 0.027634399, -0.00561045855, 0.0115587898, -0.0284879711, -0.0229575336, 0.0298038945, -0.00306752487, 0.0133370645, -0.0300172884, 0.0172314886, -0.0129991928, 0.00421228958, 0.00202056533, 0.0214993488, -0.0105985207, -0.0223173555, 0.00977162272, 0.017293727, 0.010474042, -0.00319422712, -0.0045457161, 0.00214059884, -0.035494376, 0.00265185302, 0.00914922636, 0.0107941311, -0.0021439332, -0.00373437814, -0.0324713066, -0.0223529208, -0.00525924936, -0.0161911976, -0.00113809621, 0.00182273216, 0.0141995288, 0.0128569305, 0.000860796426, -0.00396333123, 0.00653516175, -0.00346541405, 0.0172492713, 0.0210192148, 0.00332759763, -0.00604169024, 0.00853572134, -0.00932705402, -0.0169647466, 0.0293415431, 0.00676189177, 0.00019672171, -0.0137193939, -0.0109808501, -0.0074109626, -0.00941596739, 0.00233398634, -0.0276699644, -0.00907364953, -0.0253048576, -0.0281678811, 0.00588609139, -0.000691304507, -0.000436511, 0.0106163034, -0.0051881182, 0.0090647582, 0.0208413862, -0.00439234, -0.00772216078, 0.0169380717, 0.00719312346, 0.0035187623, -0.00955823, -0.00341428863, 0.0051747812, -0.0152931679, -0.0248958543, -0.0171959233, 0.0224774, -0.00148708269, -0.0305685531, 0.00970049202, 0.00721535226, -0.0250025503, -5.92874203e-05, -0.0017993924, 0.00918479171, -0.000354821503, 0.00237177475, -0.0299105905, 0.00950488169, 0.00419673, 0.0150531009, 0.0108385878, -0.00237177475, 0.00508586736, -0.00967381801, -0.0326491334, 0.0136927199, 0.00363657298, 0.00436788891, 0.0101895174, -0.00419450691, -0.0205924287, -0.00215949304, -0.0218016561, 0.00847792719, -0.0106074121, -0.00181384082, 0.015933346, 0.0137727428, 0.00801557582, -0.00734872278, 0.0176227093, -0.00551709905, -0.0417183377, 0.0124390358, -0.000270770193, -0.0119233364, -0.0246113297, 0.0243445896, -0.0074109626, 0.00354988221, 0.0186185427, 0.00942486, -0.0119500104, -0.0378061347, -0.0187430214, 0.0176049266, 0.0395844094, -0.0165201779, -1.56554215e-05, 0.0235265829, -0.0131770205, -0.0143328989, -0.0135060009, -0.00254515652, -0.0144395959, 0.00462796167, -0.0119855758, -0.00539262, 0.00759768113, 0.00773105212, 0.00654405309, 0.0232776236, 0.000530148332, -0.00647736806, -0.0242556762, -0.00553932786, 0.00895361602, -0.00753544178, -0.00516144419, 0.00225952105, 0.00966492668, -9.89860273e-05, 0.00256960792, 0.00175048981, 0.00217060721, -0.00284524052, 0.00293415436, 0.0068641426, -0.0227619242, -0.00209725345, -0.00710421, 0.00512587884, -0.0245757643, 0.0163245667, 0.00148708269, 0.00791332498, -0.0172225963, 0.0180228204, 0.004250078, -0.0139505696, 0.00194832287, 0.004076696, -0.00884247385, 0.0187430214, 0.0221395269, -0.00396777689, -0.0343918465, 0.0140305925, 0.0336983167, 0.00405669073, -0.000295638281, 0.016973637, -0.00784219429, -0.00847792719, -0.00609503873, 0.00641068257, 0.00940707605, 0.00315199303, 0.00912255235, -0.00322534679, 0.000866353512, -0.0123590138, 0.0177649707, 0.0117988568, 0.0119855758, 0.0080600325, 0.018654108, 0.0224774, -0.00900696497, -0.0254115537, 0.0181028433, -0.0328269638, 0.00108141371, -0.0197032914, 0.00345429988, 0.00291637145, -0.0140305925, -0.0071442211, -0.000955267285, 0.00556600187, -0.017560469, -0.0327558331, 0.0168224853, -0.0188141521, 0.0231887102, -0.000373159972, 0.00860240683, -0.025767209, 0.00996723305, 0.00100750406, -0.0131503465, -0.00237844326, 0.00203612517, -3.03383495e-05, 0.00901141, -0.00632176874, 0.0100650387, -0.0231531449, 0.0213570874, 0.0111497864, 0.0185651947, -0.00814005546, -0.00341206579, -0.000477355788, 0.0273498744, -0.00614394108, -0.0123856878, 0.0307108145, -0.00252515101, -0.0131414542, 0.016813593, 0.010313997, -0.00754877878, -0.000810782425, 0.0131414542, 0.00858017802, -0.0035320993, 0.0276521817, -0.021446, 0.0191698074, -0.000273826619, 0.0143595729, -0.0018871947, 0.0232776236, -0.00608614739, 0.0329692252, -0.00207613641, 0.00724647194, 0.00226285541, -0.00965603534, 0.00217283, -0.00202834536, -0.00746875629, -0.004436797, 0.00886470266, 0.0166891143, 0.0197388567, -0.00757545279, -0.0222106595, 0.00351431663, 0.0123501224, -0.024913637, -0.01007393, -0.0262829084, 0.00834455714, 5.35219187e-05, 0.00741985394, 0.0163512416, -0.0245046336, 0.00575716654, -0.00724202627, 0.00787776, 0.0155421263, -0.00534371752, 0.0014437373, 0.031759996, 0.00418339251, 0.000593499397, 0.0235799309, 0.0112298084, -0.00599723356, -0.015613257, -0.0140305925, 0.0219617, 0.0144129219, 0.00910477, -0.027260961, -0.000359822909, -0.00451015076, -0.00118033029, -0.0184051488, 0.00582385156, -0.00237622042, 0.00289636594, 0.0155954743, -0.00704641594, -0.00709976442, -0.000129619599, 0.00326313521, -0.0168847237, -0.00190275465, 0.00623730058, -0.0209658667, 0.00478800619, -9.9194418e-05, -0.00665074959, -0.0178361014, 0.0224062689, -0.0124212531, 0.0180850606, -0.00136927201, -0.0113720708, -0.00238733459, -0.033253748, 0.0128391478, 0.00694861077, 0.00710421, -0.00344985421, -0.00254515652, 0.0273854397, -0.0179694723, -0.00171047857, 0.0145196179, -0.000223395837, 0.00783774815, -0.0135771325, -0.00369881256, 0.00943375099, -0.0133192819, 0.016306784, 0.0136215892, 0.000314254605, 0.000294804719, -0.0198099874, -0.0185296293, 0.023793323, 0.00257183076, -0.0242378935, 0.00170492148, 0.0239711516, -0.0136482632, 0.0111675691, 0.00376772089, 0.0173292924, -0.00479689753, 0.0334493592, 0.00193165161, 0.00377216656, -0.00300973095, -0.0136393718, -0.00355655071, 0.00570826372, 0.00926481467, -0.0276166163, -0.00723313494, -0.00497027952, -0.00525035802, -0.0118255308, -0.0106696524, -0.000732427172, 0.0082467515, -0.0273854397, 0.0104206931, -0.0130792148, -0.00438789418, -0.0219439175, 0.0264785197, 0.00731315743, -0.0108830454, -0.0283101425, -0.00954933837, 0.0145996409, 0.049187094, -0.0242912415, 0.0135060009, -0.00776661746, 0.00148485985, 0.000816895219, -0.000101347803, 0.0120833805, -0.0048013432, 0.00265852152, -0.00589942839, -0.00601057056, -0.00724647194, 0.00898918137, 0.036241252, 0.0229931, 0.00422562659, 0.0121100554, -0.0145374006, 0.0291459318, -0.00968270935, 0.00759323547, -0.004823572, -0.000209364138, -0.00232954067, 0.00607281039, -0.00233176351, -0.00847792719, -0.0190986767, -0.0157910846, -0.00448792242, 0.00365657872, 0.0118166395, -0.0211792588, -0.0204857308, 0.00783330295, 0.0462707244, 0.0200411621, -0.027581051, -0.0365613401, 0.0125190578, 0.00828676298, -0.000945820182, -0.00821118616, -0.00218505575, 0.00114031904, 0.00302306795, -8.64130634e-05, -0.00280745211, -0.0117455088, -0.0226907935, -0.00806447864, 0.00547708804, -0.0410781614, 0.00978051405, 0.000737984257, -0.00784663949, 0.0174537729, 0.0208058208, 0.00849571079, -0.0120389238, 0.00772216078, -0.0171425734, -0.00560601288, 0.0371303894, -0.0275632683, -0.0216416102, 0.00286524603, 0.0269764364, -0.00310086762, 0.0221395269, -0.0120300325, 0.0410425961, 0.0346408039, -0.0200055968, -0.00747764762, 0.00708198128, 0.000619617815, 0.000544041104, 0.00449014502, 0.00247180276, -0.00829565432, 0.00555711053, 0.00342318, 0.00503251934, -0.0160756093, -0.0336983167, -0.0213215202, 0.00970049202, -0.0139950272, 0.00759323547, -0.00726425461, -0.0125012752, -0.0173381846, 0.0027807781, -0.0252337269, 0.0145818572, -0.00720646093, -0.00329870079, 0.00667297794, 0.0194365494, -0.0149375126, 0.00776661746, -0.0146796629, -0.00531259738, -0.0303551592, 0.000521256938, -0.010100604, -0.0107585657, -0.0052814777, -0.00930038, 0.00965603534, -0.0230108835, -0.00242956867, 0.00209614215, -0.00704197027, 0.0130169755, 0.0215882622, -0.0241311956, 0.0010747452, 0.0236866269, 0.0120922718, 0.00972716603, 0.0278477911, -0.00478800619, -0.00634844275, -0.00102639827, -0.028808061, -0.0204323828, 0.0169914216, 0.0210725628, 0.00959379505, -0.017293727, 0.0178983416, -0.00551265338, 0.0147685762, 0.0138972215, 0.0146885542, -0.000271464844, 0.00128258113, 0.000555988867, 0.025020333, 0.0115943551, -0.0243268069, -0.00434566, 0.0111497864, 0.00469464669, 0.0256249476, -0.0043545519, 0.00171603565, -0.00113198336, -0.00516144419, -0.00631732307, -0.0164045896, -0.0112031344, 0.0137549592, 0.0219617, -0.0161734149, 0.0243090242, -0.00483690901, -0.0128747132, 0.0219083522, -0.00966492668, -0.00394332549, 0.00299417111, 0.0104651507, 0.00103695679, 0.00226174388, 0.0297861118, 0.00746875629, 0.00951377302, -0.000268686301, 0.00812227279, 0.0335738398, -0.0243445896, 0.00413893582, 0.0116388118, 0.0072375806, -0.0238288902, -0.0148574905, 0.00537928287, -0.00949599, -0.00835789368, 0.0167869199, -0.0135771325, 0.0105362814, -0.00923814066, -0.000715755799, 0.00156154798, -0.0105451727, 0.0443146229, 0.00690859975, 0.0114520928, -0.0109897414, -0.00364546431, 0.0173026193, 0.0187963694, -0.00377438939, 0.00577939488, -0.0242734589, 0.034374062, -0.025393771, 0.00673966343, 0.00240956317, -0.00811782666, 0.05302817, 0.00424563233, -0.0101450607, -0.00140817172, -0.00488136569, 0.00309419911, -0.017533794, 0.016946964, 0.0436744429, 0.00415005, -0.0215704795, 0.0269230884, 0.0245046336, -0.00401445664, 0.00797111914, -0.00105807383, -0.0128924958, -0.00707309, 0.0175249036, 0.0189919807, 0.0152398199, 0.0155421263, 0.0125635155, -0.00171159, -0.000805225282, -0.0103317797, 0.0129191699, -0.00595722254, -0.0337694474, 0.0138349822, -0.0213037375, 0.0159244556, 0.0163690243, -0.000156154798, -0.00517033553, 0.00914922636, 0.0162801109, 0.0230820142, -0.0141372886, -0.00396110816, -0.0105096074, 0.0149375126, -0.0135593498, -0.00939818472, 0.00706864428, -0.0200233795, 0.0372726507, 0.0169113986, -0.00457905885, -0.0228686202, 0.00101361691, -0.0136393718, 0.00398778263, -0.0143773556, -0.0111231124, 0.00297638844, 0.0109452847, -0.0497917086, -0.0296616331, -0.0024006716, -0.0232954063, -0.0033253748, 0.000387886306, -0.000362323597, 0.0208591688, 0.0212681722, -0.00122923288, 0.0305329878, 0.00649959641, -0.00223729271, -0.00885136519, 0.00693971943, 0.00246735709, -0.00572604639, 0.00725980895, 0.0182628874, 0.0314932577, 0.0137282852, -0.0161911976, 0.000796889653, -0.00187608053, 0.0169825293, -0.00453904783, -0.0178627763, -0.0045301565, 0.0125901895, -0.0170092043, 0.0213926528, 0.00187052332, 0.00259628193, 0.00428342074, 0.0107496744, -0.00509920437, 0.0139327869, -0.00245401985, -0.00408558734, 0.0322223492, -4.87983743e-05, -0.032133434, 0.00331203779, 0.0037054813, -0.0260695163, -0.00618839823, -0.00978940539, 0.0173115097, -0.00938040204, -0.00358767039, 0.016013369, -0.0144395959, -0.0065796189, -0.00521479221, -0.0103317797, 0.0228686202, -0.0305685531, -0.00706419861, 0.00191831449, -0.00221728696, -0.00663741259, 0.0189030673, -0.0213037375, -0.0107763484, -0.00108474796, -0.00707309, -0.0119233364, -0.0114520928, 0.0103762364, -0.0304796398, -0.00985164568, 0.00936261937, 0.0143151162, -0.0172492713, -0.0242912415, 0.0073042661, -0.0244335029, 0.0299283732, -0.00776217179, 0.0137282852, 0.0246468969, 0.0123056648, 0.00325202104, 0.00404779939, 0.00415227283, 0.0137638506, 0.0114698755, 0.0106251948, 0.0195254628, 0.00336316321, -0.00615727808, -0.0168936159, -0.0039699995, -0.0293771084, 0.00715311244, -0.0333426632, -0.0030430737, 0.00551709905, -0.00582829723, 0.0139861358, -0.00551265338, 0.00102917687, -0.0133726308, -0.015879998, -0.017613817, 0.00671298942, -0.00839346, -0.0166179836, 0.00177382969, -0.00859351549, 0.00837123115, -0.00140817172, 0.0187074561, -0.0204857308, 0.004450134, -0.00816672947, 0.0259806029, -0.017240379, 0.00682413159, -0.0031564387, -0.00743763661, 0.0132125858, -0.00216616155, 0.00183606928, 0.0028808061, -3.34468568e-05, -0.00683746859, -0.00202834536, -0.0139594609, -0.0113187227, -0.017853884, -0.00537928287, -0.00530370604, -0.0153909726, 0.0178183187, 0.00731315743, -0.0149197299, 0.00886025652, -0.0503251925, 0.0150619922, 0.0214282181, 0.0122700995, -0.00252292817, -0.00715311244, -0.033360444, 0.00891805068, -0.00418783817, 0.0122878822, 0.0226374455, -0.0039944509, -0.0205390807, 0.0147241196, -0.00707753561, 0.0193120707, 0.0172848366, -0.0228330549, 0.021446, -0.0152931679, 0.00835344847, 0.017240379, -0.0157821942, -0.0112653738, -0.0362056866, 0.00649515074, -0.0113809621, -5.62310124e-05, 0.00161045056, 0.01892085, -0.0057393834, -0.0160578266, 0.0252337269, -0.0136215892, 0.0248780716, -0.0103495624, 0.00855795, 0.0141372886, -0.000553766033, 0.00902474765, 0.0146085322, -0.0251981616, -0.00955823, -0.00484135468, 0.0200589448, 0.00879801717, -0.00570826372, -0.00149152847, 0.0312265139, 0.0250559, -0.0171247907, -0.0209303014, -0.00527703203, -0.0174537729, 0.0116121378, -0.00550376205, 0.0291637145, -0.00116143608, 0.00536594586, -0.00668186974, -0.00970938336, 0.00813560933, -0.018093951, 0.0071442211, -0.0157644115, 0.0199166834, -0.00612615841, 0.00950488169, 0.00895361602, 0.0101094954, 0.0190808941, 0.00354099064, 0.000965270097, -0.00889137667, -0.00354765938, 0.0120478151, -0.016120065, 0.0284524057, 0.00264963019, -0.00447680801, 0.00951377302, 0.0161378477, -0.00107141084, 0.00840679649, 0.0235799309, -0.0220150482, 0.00872244, 0.00812227279, -0.00709531875, 0.00101306126, -0.000418450421, -0.00910477, 0.0115143331, -0.0176049266, -0.0145907486, 0.0185118467, 0.00224618404, 0.000348430825, -0.0117810741, 0.0045301565, -0.0122345341, 0.0152042536, -0.000930816, -0.00621062657, -0.00702418759, 0.0119322278, -0.0250025503, 0.00907364953, 0.00108085794, -0.00233620917, 0.000522646238, 0.0380195267, 0.0383040495, -0.0150708836, 0.0115676811, 0.0261762124, -0.00982497074, -0.0218372215, -0.00196388271, -0.00469909236, -0.0114609841, 0.0030564107, 0.0106429774, -0.0113631794, -0.0077755088, 0.0114254188, -0.0162890013, -0.0202901214, -0.0259628203, 0.0343384966, -0.0236154962, -0.00410114741, 0.00863797218, -0.0163779166, 0.00142262026, 0.0187074561, -0.00451681949, 0.0095315557, -0.000425396807, 3.93860209e-05, -0.00910032354, -3.02341541e-05, 0.00660184724, 0.00653071608, -0.000876356324, 0.00545041403, 0.00814005546, 0.0239711516, 0.00621951791, -0.0161467399, -0.00342095713, -0.00525035802] |
26 Mar, 2025 | Git Tutorial
26 Mar, 2025
Git is a powerful version control system widely used for tracking changes in source code during software development. Created by Linus Torvalds in 2005, Git has become an essential tool for developers worldwide. Understanding Git can significantly enhance your coding efficiency and collaboration.
This Git Tutorial from beginner to advanced will walk you through the basics of Git, making it easy to learn and implement in your projects. you will learn GitHub fundamentals and advanced concepts like branches, pushing merge conflicts, and many useful Git Commands.
Table of Content
Prerequisites
What is Git?
Why Use Git?
Working with Git
What is Github?
Introduction to Git
Git Basics
Git Installation
Git Commands
Git and GitHub
Git and GitHub in VS Code
Git and GitHub in Android Studio
Git and GitHub in Pycharm
Git and GitHub Deployment
Git Collaborating
Git Advanced
Git Workflow
Internal Working of Git
Git vs GitHub: Difference between Git and GitHub
Best Practices for Git
Common Git Problems and Their Fixes
Prerequisites
A Command Line Interface (CLI) installed.
Text Editor (e.g., Visual Studio Code, Sublime Text).
Basic Understanding of Programming Concepts
What is Git?
Git is a distributed version control system (DVCS) that allows developers to track and manage changes to their codebase. Unlike traditional version control systems, Git enables multiple developers to work on a project simultaneously without interfering with each other’s work.
Git was developed by Linus Torvalds in 2005 for Linux kernel development.
Git is 2.45.1 is the Latest Versions of GIT, released on May 2024.
Why Use Git?
Git offers numerous benefits to developers and development teams:
Version Control: Git helps in tracking changes, allowing you to revert to previous states if something goes wrong.
Collaboration: It enables multiple developers to work on a project simultaneously without interfering with each other’s work.
Backup: Your entire project history is saved in a Git repository, providing a backup of all versions.
Branching and Merging: Git’s branching model allows you to experiment with new features or bug fixes independently from the main project.
Open Source Projects: Most open source projects use Git for version control. Learning Git allows you to contribute to these projects.
Industry Standard: Git is widely used in the software industry, making it an essential skill for developers.
Working with Git
Initializing a Repository: When you initialize a folder with Git, it becomes a repository. Git logs all changes made to a hidden folder within that repository.
Staging Changes: Git marks modified files as “staged.” Staging prepares changes for a snapshot you want to keep.
Committing Changes: Once staged changes are satisfactory, commit them. Git maintains a complete record of each commit.
What is Github?
GitHub, a hosting service for Git repositories, allows you to access and download projects from any computer. Here’s what you can do with GitHub:
Store Repositories: GitHub hosts your repositories.
Collaborate: Work with other developers from any location.
Version Control: Manage collaborative workflows using Git and GitHub.
Introduction to Git
Version Control System
Introduction and Installation of Git
History of Git
Git Features
Introduction to GitHub
Git Repository
Git Features
Bare Repositories in Git
Git Ignore
Readme.md File
GitHub Readme File
GitHub Labels
Difference between CVS and GitHub
Git Basics
Git – SubGit
Git Environment Setup
Using Git on CLI
How to Setup a Repository
Working with Git Repositories
Using GitHub with SSH
Working on Git with GUI
Difference Between Git and GitHub
Working on Git Bash
States of a File in Git Working Directory
Use of Submodules in GitHub
How to Write Good Commit Messages on GitHub?
Deleting a Local GitHub Repository
Git Workflow Etiquettes
Git Packfiles
Git Garbage Collection
Git Flow vs GitHub Flow
Git – Difference Between HEAD, Working Tree and Index
Git Ignore
Git Installation
How to Install Git on Ubuntu
How to Use Git in Ubuntu
How to Setup Git Server on Ubuntu?
How to Add GIT Credentials in MacOS?
How to add GIT credentials on Windows?
How to add GIT credentials on Linux?
How to Setup Git on Anypoint Studio?
How to Install Git With Spyder
How to Install Git on VMWare
How to Install GIT in Conda?
How to Install GIT on GoDaddy Server on Linux?
How to Install Git on Windows Using Chocolatey?
How to install GIT by NPM Packages?
How to Install Git on Cygwin?
How to Install Git Large File Storage on Linux?
How to Install Sourcetree for GIT on Windows?
How to Install Sourcetree for GIT in MacOs?
How to Install Git on Raspberry Pi?
How to Install Git on Termux?
How to Set Up Git Using Git Config?
Git Commands
Useful Git Commands and Basic Concepts
Basic Git Commands with Examples
Essential Git Commands
Top 12 Most Used Git Commands For Developers
Save a File in Git
Difference between “add -A”, “add -u”, “add .”, and “add *”
Difference between “git add -A” and “git add”
Debugging in a Git
How to Add Code on GitHub Repository?
Pushing Changes to Git Repository
Examining Git
Git Checkout and Merge
Overturning Changes in Git
Git Submodules
Git Head
Git Clean
Git Rename
Git Fork
Git Init
Git Add
Git Commit
Git Origin Master
How to Set Upstream Branch on Git?
Git Push
Git Pull
Git Pull and Fetch
Git Merge
Git Stash
Git Remote
Git Patch
Git Patch Operations
Git Rebase
Git Clone
Git Alias
Git Ref and Reflog
Git Undo Commit
Git Undo
Git Stage
Git Squash
Git Move Files
Git diff
Git Status
Git Blame
Git Index
Git Prune
Git Checkout and Merge
Git Merge and Merge Conflicts
Recovering Lost Commits in Git
Git Tags
Git Hooks
Git Subtree
Git – Filtering the Commit History
Git – Cherry Pick
Git – git-show Command Line Utility
Git – Working Tree
Git Logs
Git – Changing History
Shallow Clone on Git Linux
Sync your fork with a master in GitHub
Error Searching and Handling in Git
Delete a Git Branch Locally and Remotely
How to Push Git Branch to Remote?
How to Add an Empty Directory to a Git Repository?
Difference Between Git Push Origin and Git Push Origin Master
Difference Between Git remote prune, Git prune, on and Git fetch –prune
Git – Difference Between Merging and Rebasing
How to Use Git Log to Format the Commit History?
How to Remove Local Untracked Files From Current Git Working Tree?
Git and GitHub
Create a Repository on GitHub
Introduction to Git Branch
How to Add Code of Conduct to Your Project on GitHub?
Difference Between Fork and Clone in GitHub
How to Add Audio Files on README .md File in a GitHub Repository From the Local System?
How to Add Videos on README .md File in a GitHub Repository?
How to Upload a Project on GitHub
How to Export a Git Project?
How to Push a Project and Contribute on GitHub?
How to Push Anything to GitHub using Git Bash?
How to Push Folders From a Local PC to GitHub using Git Commands?
How to Add Images on README .md File in a GitHub Repository From the Local System?
How to Transfer Local Repository to GitHub Organization?
How to Generate Personal Access Token in GitHub?
How to Add GIFs on README .md File in a GitHub Repository?
How to Change the Visibility of the GitHub Repository?
Issues in GitHub
Git – How to Solve “remote: Invalid username or password. fatal: Authentication failed”
Git – A lock file already exists in the repository, which blocks this operation from completing
Common Git Problems and Their Fixes
How to add a README to your GitHub profile?
How to Upload a Project through GitHub Desktop on GitHub
How to configure an OAuth App from GitHub?
How to move the most recent commit(s) to a new branch with Git
How to Use GIT with R and RStudio?
How to Use Git with Eclipse?
Git–Pack Objects
Git and GitHub in VS Code
How to Add GIT Credentials in VSCode?
How to Clone a Project From GitHub using VSCode?
How to Open a GitHub Repository in VS Code Online?
How to Integrate Git Bash with VS Code
Creating a Pull Request on any Public Repository from GitHub using VS Code
How to Install GitHub Copilot on VSCode?
Git and GitHub in Android Studio
How to Upload Project on GitHub from Android Studio
How to Clone Android Project from GitHub in Android Studio?
How to use Git Commands in Android Studio Terminal
How to Create a New Branch on GitHub using Android Studio?
How to Create a Pull Request on GitHub using Android Studio?
Git and GitHub in Pycharm
How to Create a New Branch on Github using Pycharm?
Create a Pull Request on GitHub using Pycharm
How to Upload a Project on GitHub from Pycharm?
How to Push Code to GitHub using Pycharm?
Git and GitHub Deployment
How to deploy the Node.js app on Heroku from GitHub?
Deployment of React Application using GitHub Pages
How to Publish a Static Website on GitHub
Host a free Static Website using GitHub
Publish Websites on GitHub Pages with a Custom Domain
How to Deploy a Basic Static HTML Website to Heroku using Git?
How to Deploy Angular Application to Firebase using GitHub?
How to Add Custom Domain To GitHub Pages?
How to Deploy a Django Application to Heroku with Git CLI?
How to create a cv using HTML and host it in GitHub?
Deployment of Angular Application using Github Pages
How to Build Portfolio Website And Host It on GitHub Pages?
Git Collaborating
What is Git Collaboration
What are GitHub Collaborators
GitHub Discussion
Forking Workflow in Open Source Ecosystem
How to Clone Github Repository and Push Changes in Colaboratory?
How to make your first Open Source Pull Request
How to setup Gitlab Repository in Windows 10
Merge Strategies in Git
How to Handle Merge Conflicts
GitHub App to Add or Remove Labels to Issues
How to Create Pull Request on GitHub without Using any IDE?
How to Clone Web Project from GitHub in Pycharm using Git?
How to Clone a project from GitHub using Eclipse?
How to Export Eclipse Projects to GitHub?
Creating New Branch on Github without using any IDE
How to Upload Project on GitHub from Jupyter Notebook?
Git Advanced
How to Handle Big Repositories with Git?
How to Protect Your Private Email Addresses in Git & Github?
How to send an Email using Git send-email via Gmail?
Dynamic Quote Generator for GitHub Readme
Automating some git commands with Python
How to Install and Use Git in Google Colab?
Downloading gists from Github made simple
Introduction to Bitbucket
Difference between Bitbucket and GitHub
Using Bitbucket as an extension to GitHub Capabilities
Working on Bitbucket using Git
Introduction to Mercurial
Difference between MERCURIAL and GIT
How to Make a GitHub Bot
Jenkins and GIT Integration using SSH Key
GitHub App to Build Form using Typeform and Probot
How to Trigger WebHooks without Events – Probot Github App
Difference between Gitlab and GitHub
Difference between Git and SVN
Link your GitHub Account with R Studio
Continuous Integration and Continuous Development(CI/CD)
How to Add GIT Credentials in Jenkins?
Implementation of CI/CD in .NET application Using Shell Executor on GitLab
Implementation of CI/CD in Java application(Linux) Using Shell and Docker Executor on GitLab
Implementation of CI/CD in C/C++ Application(Linux) Using Shell and Docker Executor on GitLab
How to Publish Docker Image to Dockerhub Using Github Actions?
Installing Private Git Server on K8s Cluster with Gitea and AKS
Flutter – Building and Releasing APK using GitHub Actions
How to Upload Android APK to Testers Group in Firebase Using GitHub Actions?
Basic CI Workflow For Android using GitHub Actions
GitHub Actions For Android
Git Workflow
A Git workflow is a set of guidelines that help teams collaborate effectively. Some common workflows include:
Feature Branch Workflow: Each feature gets its own branch.
GitFlow Workflow: A more structured workflow involving feature, release, and hotfix branches.
Forking Workflow: Fork the project, make changes, and then create a pull request.
Internal Working of Git
Git uses a decentralized model where each developer has their own copy of the repository and works immediately on the project. Git manages the projects with repositories and can clone a project to operate locally on it.
With staging and committing it track changes and control. You can pull the latest code of the project to the local copy, and push local updates to the main projects.
Git vs GitHub: Difference between Git and GitHub
Aspect
Git
GitHub
Definition
Git is a distributed version control system that tracks changes in the source code.
GitHub is a cloud-based Git repository hosting service that enhances collaboration and code management.
Purpose
To manage versions of code and track changes locally.
To host Git repositories online and allow collaboration and version control via Git.
Installation
Git is a command-line tool installed locally on your machine.
GitHub is accessed via the web and requires no installation.
Maintenance
Maintained by the Linux community.
Maintained by Microsoft since 2018.
Focus
Git focuses on version control and managing code changes.
GitHub focuses on hosting, collaboration, and project management.
History
Git was released in 2005 by Linus Torvalds.
GitHub was launched in 2008 as a platform for Git repository hosting.
User Management
Git does not have built-in user management.
GitHub includes built-in user management, allowing for collaboration and permissions.
Licensing
Git is open-source and free to use.
GitHub offers free-tier and paid plans with additional features.
Tool Integration
Git has minimal external tool integration.
GitHub provides an active marketplace for integrations, including CI/CD, project management, and more.
Interface
Git provides the Git GUI for graphical management.
GitHub provides GitHub Desktop and web interfaces for managing repositories.
Competition
Git competes with CVS, Mercurial, and Subversion.
GitHub competes with GitLab, Bitbucket, and SourceForge.
Best Practices for Git
Commit Frequently: Commit your changes regularly to avoid large, hard-to-merge commits.
Write Meaningful Commit Messages: Write clear, concise commit messages that describe what changes were made.
Use Branches for Features: Always create a new branch for new features or bug fixes to keep the main branch stable.
Keep Your Repositories Organized: Maintain a clean and structured directory in your repository.
Common Git Problems and Their Fixes
Merge Conflicts: Always check for conflicting code before merging. Resolve conflicts manually and commit the resolved files.
Detached HEAD State: When in a detached HEAD state, use git checkout <branch_name> to switch back to your branch.
Commit Not Pushed: Ensure that you have pushed your commits to the remote repository using git push.
Git and GitHub – FAQs
What is GitHub?
Git and GitHub are not the same, GitHub makes tools that use Git. GitHub is the popular host of code and maintained by Microsoft since 2018.
Why Should I Use Git?
Git is a useful tool that helps to manage changes in code or any documents, It generally allows collaboration between developers and writers and enables them easy version control.
Can Git be used for non-code files?
Yes, Git can be used to manage changes happening in any text-based files, documents, configuration files, and even images. However, Git may not be the best tool for managing large binary files.
How do I resolve conflicts in Git?
When multiple developers make changes to the same file, a conflict can occur. To resolve this, you need to identify the conflicting lines of code, make the necessary modifications, and then commit the changes to the repository.
Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today. | Git/Git Tutorial | https://www.geeksforgeeks.org/git-tutorial/?ref=outindfooter | Git | Git Tutorial | Git Tutorial, Git | GeeksforGeeks | [-0.029190788, 0.0227194652, -0.0209503267, 0.0438249782, 0.00217262655, 0.0295011625, -0.00448880158, 0.0217883401, -0.0138194561, 0.0052414611, 0.00203295751, -0.0432663038, 0.0264905244, -0.0536949113, -0.00359065318, 0.0457803421, -0.00807751436, -0.00505135627, -0.0270647183, -0.0473011807, 0.0426765904, -0.0339240097, -0.029842576, -0.0145488381, 0.00863619056, 0.0229677651, 0.00566046778, 0.0247524232, -0.0424593277, 0.0114450855, 0.0314099714, 0.00197573216, 0.0171327107, -0.039355576, -0.00264012907, 0.00727441907, -0.0180483181, -0.0193053372, -0.0498772971, 0.0135866748, -0.0117632207, 0.00524922088, 0.00803095847, -0.000728896761, -0.00194178487, 0.0108786514, 0.00995528512, -0.0429248922, -0.00510567194, -0.0232936591, -0.000439859868, 0.01789313, 0.0641855896, 0.0121046333, 0.000901543, 0.00216486701, -0.0028864895, -0.0605542026, -0.0121123921, -0.0251559112, 0.0256680287, -0.024597235, 0.000108813183, -0.0215865951, 0.0313634165, 0.0101492694, -0.0395107642, 0.0142074255, -0.00255283597, -0.0092647, 0.0395418, 0.0148204165, -0.00820942409, -0.00432973402, 0.0092647, -0.0139358472, 0.00106691476, 0.0222849399, -0.0159377661, 0.0136720277, 0.00869826507, -0.00258775335, -0.0336446725, -0.0149445664, -0.0092181433, -0.00434137322, 0.0033850295, -0.0582884625, 0.0381761491, 0.00938109, -0.00480693579, 0.00941212848, 0.0198640134, -0.030897852, -0.0298891328, 0.000525213, 0.0138116963, 0.00108146365, -0.00698344223, -0.003466503, -0.0038622315, 0.0317824222, -0.0195846763, -0.0231384709, -0.0233246963, -0.0183897316, 0.0140134403, 0.00475262, 0.0664823726, 0.0338619351, 0.0226729084, 0.000576618942, -0.0245817155, 0.00364690879, -0.0614232533, 0.00893880613, 0.0130978338, -0.0408143401, 0.0106148319, -0.00599800097, 0.00529189734, 0.0428628176, -0.0228280965, 0.0243954919, -0.0454078913, 0.0424593277, 0.00524922088, -0.0199881624, 0.0056798663, 0.0257766601, -0.00997856259, 0.0192277431, 0.00920262467, 0.0292373449, 0.00142869586, -0.0206709895, 0.0335515589, 0.0353207, -0.0212762207, 0.0219900832, -0.0398211405, -0.0417765044, -0.00986993127, 0.00971474405, 0.00321238348, -0.000893298653, -0.0227349848, 0.0501876697, -0.0313789323, 0.0255438797, -0.0474874079, 0.00320268422, 0.0255904365, 0.0246593095, 0.042769704, -0.0392003879, -0.0232005473, 0.0044965609, -0.0189328883, -0.0188397747, 0.0238368157, -0.0125701958, 0.0111967856, 0.0327135473, -0.0342964604, 0.0179086495, 0.0236505903, -0.0105605163, -0.0393866152, 0.056922812, -0.0299201701, 0.00598248234, 0.0127719399, 0.0227815397, -0.0336757116, -0.00394952437, 0.0277630631, -0.0345137231, 0.0120968735, -0.0180172808, -0.0163878109, -0.0418075398, 0.00734425336, -2.87339553e-05, 0.0375554, 0.0534155741, 0.00693300599, 0.00919486582, -0.0199881624, -0.0305409208, 0.0116390707, -0.0135323592, 0.0575125255, 0.0450044051, 0.0281975884, 0.0175517183, -0.0441353545, 0.00626182, 0.020329576, -0.0252335034, -0.00866722781, 0.00784473307, -0.0178776123, 0.0280889571, 0.0513981357, 0.0164188482, 0.00597472256, -0.0170085616, 0.0259473678, -0.0106458692, -0.033054959, 0.0072589, -0.0257301051, -0.0133616524, 0.0355689973, -0.00569538493, 0.00649460126, 0.00780981593, -0.0292839017, 0.00975354109, -0.0211520698, 0.0216486715, 0.0103898104, -0.0154566849, -0.0317824222, -0.0261335932, -0.00822494272, -0.0254352484, -0.0320927948, 0.010529479, 0.0218038578, -0.00196991256, -0.00308435364, -0.0124538047, 0.00495824404, -0.0277165063, -0.00396116357, -0.00187292043, -0.0644959658, 0.0391383134, -0.00256641489, 0.0192898195, -0.0294235703, -0.0156041132, -0.0155420387, 0.0187156256, 0.0341723114, 0.0500014462, 0.0151307909, 0.00105042604, -0.00716190785, 0.00347620226, 0.0119494451, 0.0131443897, -0.0256214738, 0.0250162408, -0.00216680695, -0.0140832746, 0.0291442312, -0.0274837241, 0.0399763249, 0.0202519819, -0.0384554863, 0.0235574786, 0.0112976572, -0.0175051615, 0.00021750512, 0.0108243357, -0.0200657565, -0.00971474405, 0.072938174, -0.0125236399, -0.0167447422, 0.00966818724, -0.0378347374, 0.0317203477, -0.00589712895, 0.0150376791, 0.00332683418, 0.00205235602, 0.0432663038, -0.00595920393, 0.0147117851, 0.0299046505, -3.78572877e-05, -0.0473322198, -0.00861291215, 0.00189716846, -0.0442284681, 0.0211986266, -0.0233712532, 0.0126167517, 0.0297805015, 0.0198019389, 0.0332411863, -0.00986217242, -0.00338890939, 0.0349792875, -0.0361897498, -0.00252761808, 0.0249541663, -0.0329928845, 0.00624242146, 0.00780205661, 0.00146846275, 0.010001841, 0.0280424, 0.0346068367, -0.008620671, -0.0258852914, 0.0697102696, -0.0259939227, -0.033830896, -0.0403487757, 0.00851979945, 0.0415592417, 0.0289580077, 0.0136797875, -0.0124460459, -0.0183586944, -0.000988836, -0.00704551721, -0.0157903396, 0.042117916, 0.0459355302, -0.00737917051, -0.0661099181, 0.0238988902, -0.0135090807, -0.0333342962, -0.0143626127, -0.0315341204, 0.0190725569, -0.0297805015, 0.0337998606, -0.0368415378, -0.00659159338, 0.0466183573, 0.026630193, -0.00603679754, -0.032806661, -0.0156506691, -0.0114994012, -0.0414971635, 0.0147117851, -0.0203450955, -0.0379588865, 0.0271578301, 0.0244265292, -0.0117244236, 0.00161589088, 0.0166516304, -0.0123529332, 0.000118936747, -0.00613766955, 0.00388550968, 0.029516682, -0.0199881624, 0.0150531977, 0.0275302809, 0.0287252255, -0.0487599447, -0.00694076577, 0.0326825082, -0.00222306233, -0.0293304566, -0.0224556457, -0.0391383134, 0.0189328883, -0.0196622685, -0.0282131061, 0.00397280278, 0.0258387364, -0.00622690236, -0.0309288893, -0.000662942068, -0.00840340834, 0.00078709214, -0.0364380479, 0.010203585, 0.0158446543, 0.051273983, 0.00287873, 0.0243954919, 0.0399763249, 0.00690584816, -0.0181879867, -0.00275845965, 0.0258852914, -0.0301374327, -0.0346999466, 0.0212917384, -0.00300288014, 0.00688257, -0.00578073831, 0.00453535793, 1.56551559e-05, 0.0110260788, 0.0140522374, -0.0087137837, 0.0442284681, 0.0152704604, 0.0135323592, 0.0243489351, -0.0312392637, -0.00644416502, -0.00599024165, 0.00328803738, 0.00701835938, 0.00247912202, -0.00604067743, 0.0310064834, -0.0212141462, 0.023821298, 0.0240540784, 0.0338929743, -0.00197476218, 0.0649304911, 0.0176913869, 0.0145643568, 0.0153014977, 0.0116002737, 0.0490082465, -0.0110959141, 0.0150531977, -0.0122675803, 0.00473322207, 0.00836461224, 0.00846548378, 0.00383895333, -0.0112898983, -0.00447328249, -0.00632389495, 0.00595144462, -0.00910175312, -0.0553399, 0.0176913869, -0.010490682, 0.0259473678, 0.031223746, 0.000670216454, 0.0102966977, 0.0333342962, -0.0475805178, -0.0638131425, -0.00428317767, -0.0805113316, -0.0163878109, -0.0100328783, -0.0212141462, -0.00331519521, -0.010001841, -0.0379278511, 0.00796112418, 0.00559451291, -0.0112433415, -0.000499025162, -0.005082394, 0.014354853, -0.0376485139, 0.00472546229, 0.00321626314, 0.020733064, 0.0294856448, 0.0280889571, 0.00767790666, -0.0128650526, -0.00938885, -0.0142229442, -0.0149988821, 0.00684765307, -0.0237281844, 0.0898225829, 0.00497376267, -0.00760419248, -0.0178620927, 0.00761195179, -0.0229212083, 0.00782921445, -0.0524223708, 0.0331170335, 0.0291752703, -0.019026, -0.0370588, -0.00445776386, 0.0405350029, 0.0208572131, -0.0242403038, 0.0261956677, -0.0142384628, -0.0216486715, 0.0223780517, -0.000618325605, -0.00322208251, 0.0141608687, -0.00521818316, -0.0550916, -0.0138194561, 0.0191967059, 0.0347620249, 0.00208339351, 0.00170997344, -0.0114062885, 0.0372760631, 0.0295011625, 0.00948972162, -0.0101337507, 0.04643213, -0.00339472876, -0.0034781422, -0.010327735, 0.046959769, -0.0322169475, 0.0169309676, -0.0203606132, 0.00241316715, -0.0118563334, 0.00898536202, 0.00638984935, -0.0225177221, 0.00452371873, -0.0395418, 0.0132995779, 0.0163257364, -0.00853531808, -0.0012929067, 0.0120891146, -0.0144790038, -0.0066226311, -0.0310840774, -0.011584755, 0.00504747685, -0.0259628855, 0.0193984509, 0.00443060603, -0.0154023692, 0.01577482, 0.00361975096, -0.00474486081, 0.0254352484, -0.0517085083, -0.00184770243, -0.0478908941, -0.00632389495, -0.0131987054, 0.0019999803, 0.00263042981, 0.00485349214, 0.0377416238, 0.0184828434, -0.00457027508, 0.00310375215, 0.0125158802, 0.00588936964, -0.00581565546, 0.00493108621, -0.00535785221, -0.00126186921, 0.0153092574, -0.0241161529, 0.004228862, 0.00674290117, 0.0500324816, 0.0263508558, -0.00190104812, -0.0313168578, 0.000374390103, -0.000589227944, -0.00405427627, -0.00989321, -0.00105236599, -0.0140367188, 0.0153247761, -0.00579237752, 0.0120192794, -0.0066109919, 0.0436077155, -0.0284924433, 0.0089232875, 0.00598248234, 0.027809618, 0.0111657484, 0.0143160569, 0.0138970502, 0.0346999466, -0.0110803945, -0.0054393257, -0.00722786272, -0.0254042111, 0.00967594702, -0.00910175312, 0.0207641013, -0.00336175156, -0.00672738254, 0.000959253346, 0.00829477701, 0.0171637498, -0.00311151147, 0.0101337507, 0.0112123042, 0.0122830989, -0.0146807469, 0.0401935875, 0.033706747, -0.0252024662, -0.0156739485, -0.00346068363, -0.00962163135, -0.00278173783, -0.00348008191, -0.0168378558, 0.00415902771, 0.0404108502, 0.0147273038, 5.51037228e-05, -0.0346689112, -0.0446009189, 0.00954403728, -0.0189949628, -0.0220676772, 0.00586609123, 0.0280268807, 0.0245817155, 0.00645968411, -0.00495436415, 0.0181414317, -0.00253149774, 0.000121240315, -0.00360811176, -0.00528801745, -0.0104674036, -0.00172743201, -0.00767402677, -0.0124227675, -0.0165274795, 0.00674678106, 0.00515610818, 0.000723562203, -0.0301374327, -0.0111579886, -0.0106691476, 0.0173965301, -0.0136254719, 0.161022663, -0.0047487407, 0.0270647183, -0.0116080325, 0.0172568616, 0.0100096008, -0.026630193, -0.0183121376, -0.0408764146, 0.00272548222, 0.0334584489, -0.00140153803, -0.0219124891, 0.00169639452, -0.0321859084, 0.00748004252, -0.00298154191, 0.0232626218, -0.00989321, 0.0178620927, 0.00597860245, 0.00481081568, -0.0419627279, 0.0126865869, 0.0248455349, 0.00769730518, 0.0456872322, 0.0212917384, -0.0187311433, -0.0102811791, 0.0197398625, -0.0199416075, -0.00550140068, -0.00412411056, 0.0278251376, -0.00641700719, 0.00119494449, -0.0389210507, -0.0256214738, 0.0205623582, -0.00731709553, -0.0107467417, -0.0130202398, -0.0405660383, -0.0287252255, -0.0204847641, 0.00203295751, 0.00251597911, -0.00810079277, 0.019351894, -0.0145333195, 0.00365466811, 0.00561003201, 0.00151210919, -0.0375243612, -0.00533845369, -0.026428448, 0.0124615645, -0.0169309676, -0.026956087, -0.0163102169, -0.0255593974, 0.0186535493, -0.0122598205, 0.00824822113, -0.014028959, 0.0154256476, 0.0285545196, 0.00557899429, -0.00668082619, 0.00239764852, -0.0239609666, 0.0304633267, 0.00141802675, -0.0158524141, -0.00819390547, 0.0193829313, -0.0214624461, 0.0106225917, 0.00153829716, -0.0431731902, -0.00437241094, -0.0103898104, -0.0144014098, -0.00472546229, -0.0433904529, -0.0187311433, 0.0199881624, -0.00664590904, 0.0375554, -0.00760807237, -0.0274371691, -0.0211365521, 0.0248765722, 0.00537337083, -0.00144615443, 0.0156351514, 0.0131288711, -0.0115149198, -0.0107234633, 0.0144014098, 0.0158213768, -0.0319996849, 0.0158679318, 0.0275458, -0.0115381982, 0.0203140564, 0.00423662178, -0.0092181433, 0.0500014462, -0.0491634309, -0.00549364137, -0.00914055, 0.00267504621, 0.00652175909, 0.0154799633, 0.0194294881, 0.0226418711, 0.0178155378, -0.00803095847, -0.00913279, -0.00997080375, 0.00135789148, -0.0473322198, 0.0118097765, 0.00475262, -0.0119494451, 0.0142074255, 0.0495048463, 0.0447871424, 0.0184518062, 0.000430645596, 0.00884569343, 0.00192917592, -0.0515222847, -0.0190104805, 0.00122210232, -0.0148281753, -0.00918710604, -0.0178310554, 0.00692524668, 0.0177689809, 0.0090862345, 0.0467735454, 0.000363478466, 0.00288260984, 0.0542846248, -0.0229522474, 0.0334584489, 0.0103820506, 0.0403487757, 0.0147273038, -0.0320617594, -0.0126865869, -0.0149057694, 0.0130900741, -0.0263508558, -0.000201380157, -0.0225797966, 0.00297960197, 0.0201899074, 0.0078059365, -0.0335205235, 0.00246166345, -0.00783309434, -0.00683213444, 0.0411247164, -0.0110415984, 0.0184673257, -0.0112511013, 0.0283062197, 0.0194450058, -0.0104363663, 0.0219745655, -0.0170861557, 0.0127641801, 0.0493186191, -0.0161084738, 0.00396116357, 0.0272664614, -0.036593236, -0.0282907, 0.0361587107, -0.00635105278, -0.00859739352, 0.0275768377, 0.00780981593, -0.00388744939, 0.0216021147, -0.0425834768, 0.0155110005, -0.0166205931, 0.0218969714, -0.00178271765, -0.0106458692, 0.0212141462, 0.0358173, -0.0180638377, -0.0108320946, -0.0151618291, 0.0035227586, -0.00722786272, 0.0250162408, 0.00555959577, 0.00628897781, 0.0244730841, -0.00476038, 0.0220211204, 0.00350723974, 0.00314060901, 0.00709983287, 0.0167292245, 0.0323100574, -0.000166220474, 0.00857411511, 0.0130435182, 0.000191680941, 0.0351965502, 0.0100716753, -0.0202675015, 0.0115925139, 0.0308357775, -0.0161084738, -0.0174275674, -0.0139436061, 0.0172258243, 0.00619586511, -0.0195846763, -0.0354448482, 0.00457027508, 0.042769704, 0.0202364642, -0.00536949094, -0.0136797875, 0.00300481985, -0.0243799724, -0.00284381281, 0.0265681185, 0.00302809803, -0.0120425578, -0.00848876219, 0.0050009205, -0.00958283432, -0.0165119618, -0.0186069943, -0.0133538935, 0.00284575275, -0.0297649819, -0.00941212848, -0.036593236, -0.0281975884, -0.010366532, 0.0422110297, 0.00975354109, 0.00737141119, -0.0148592126, -0.00952851865, 0.00749168172, 0.0243799724, 0.0056682271, 0.00595144462, 0.0236505903, -0.0338929743, 0.00101744873, -0.0234798845, -0.0016100714, 0.0170240793, 0.00815510843, 0.0241782293, -0.0244265292, -0.046307981, -0.000722592289, 0.0143082971, -0.0411867909, 0.00157127448, 0.0168068167, 0.00396504346, 0.00229095691, 0.0176913869, -0.00889224932, 0.0355069228, 0.0168068167, -0.00438792957, -0.017846575, 0.00484573282, 0.00347620226, -0.0047371015, 0.0112511013, 0.000517938635, -0.00540052867, 0.00132006453, -0.0325583592, -0.00629673712, -0.0161860678, 0.0339550488, -0.0288804136, -0.00429093745, 0.0292528626, 0.0564882867, -0.022812577, 0.00249658059, -0.0118485736, 0.0190570373, 0.0172258243, 0.010125991, 0.00542380661, -0.0032589396, -0.0109096887, -0.00374584086, -0.000324439083, -0.0250162408, -0.0210279208, -0.011910649, -0.0177534614, -0.0291752703, 0.00379239698, 0.0180017613, 0.00637821062, 0.0104363663, -0.00761583168, 0.0212141462, 0.0204226878, 0.0116623482, 0.00538501, -0.0316893086, 0.00309599261, 0.0218193773, 0.00506299548, -0.032154873, 0.00618034648, 0.0163102169, 0.00737529062, -0.00528413802, -0.0523292609, -0.0309599265, -0.011344214, -0.00439180899, -0.0203140564, -0.00218232558, 0.00986217242, 0.00544320513, 0.022812577, -0.0404108502, -0.00265564793, -0.00862843078, -0.00578849763, 0.011871852, -0.0121511891, -0.00429093745, -0.0097613, -0.00731709553, -0.00483021419, 0.00624630088, 0.0314410068, 0.00865170918, -0.0193984509, -0.00273518148, 0.00680497661, -0.0187156256, 0.010490682, -0.0102966977, 0.0428317785, 0.0395418, 0.0303391758, 0.00773610221, 0.014106553, 0.0274992436, -0.011584755, -0.0488530584, -0.0097225029, -0.0170395989, 0.0123374145, 0.0200192016, -0.0256369915, -0.00754987681, 0.005772979, -0.0182811, -0.0118563334, -0.00685929228, 0.0193674136, -0.0215555578, 0.010327735, 0.0147893783, -0.0130435182, 0.00310569187, -0.000482293981, 0.00775550026, -0.0157670602, -0.000187801241, 0.00379627664, -0.0138194561, 0.0298891328, -0.0168999303, -0.0123218959, -0.0563020632, -0.00458191382, 0.011670108, 0.0165585168, 0.00152762793, -0.0202364642, 0.0125624361, -0.0126477899, -0.00723562203, -0.018172469, -0.0066885855, 0.00528413802, -0.0167447422, 0.00338308979, -0.0141220717, -0.0108398544, -0.0121589489, -0.0110028014, 0.00197379244, -0.0122443018, -0.00417066691, 0.00276233931, 0.00920262467, -0.0162481423, -0.0281975884, 0.0124538047, -0.00194469467, -0.0115769953, 0.0270026438, 0.00862843078, 0.00373808132, 0.0150144007, 0.0143005373, 0.0121744676, -0.0123917302, 0.0182190239, -0.00579237752, 0.00471382355, -0.00626957929, -0.0100328783, -0.0135866748, -0.013904809, 0.0171016734, 0.00445388444, 0.0107389819, 0.0388279371, 0.037369173, -0.00011190481, -0.0326514728, -0.0103587722, -0.0044150874, -0.0201433506, -0.0197709, 0.00111735077, -0.026304299, -0.0227039456, 0.0239764843, -0.00344710471, 0.00165565778, 0.0101027125, 0.0772834271, -0.00181181531, 0.00357125467, -0.0280889571, -0.00215516775, -0.00622302294, 0.0138504934, 0.00147234241, 0.00376329944, -0.00746452389, 0.024271341, 0.0136642689, -0.0218659341, 0.0133150965, -0.0157515425, 0.00359647279, -0.00693300599, 0.00700672, 0.0193053372, -0.0247524232, -0.0287717823, 0.00422110269, 0.00483797351, -0.0283217374, 0.0125391586, 0.0124693243, 0.0143781314, -0.0210899953, -0.0451285541, -0.0130667966, 0.015573076, 0.0154178888, 0.0126167517, 0.00122598209, -0.0044150874, 0.00913279, 0.00068379537, 0.0147738596, -0.0214314088, 0.000793881598, 0.0092647, -0.0165274795, -0.022486683, 0.010327735, 0.00423662178, 0.00290394807, -0.0104674036, 0.0141143128, 0.0112976572, 0.00475262, 0.00134140288, -0.017117193, -0.00742572686, 0.00797664281, -0.00133849308, 0.0220211204, 0.0261180736, 0.00633165427, 0.00803095847, -0.00858963374, -0.0016944547, -0.0147428224, 0.0122443018, -0.0245506782, 0.0317513831, 0.00828701816, -0.0426765904, -0.0023394532, -0.016139511, -0.0061066323, 0.00340248831, 0.0163412541, -0.0129659241, 0.00679333741, -0.00648296205, 0.0172568616, 0.0102966977, 0.00521430327, 0.0127176242, -0.0333653353, 0.0261646304, 0.0125546772, 0.0118330549, 0.0247989781, -0.0151773477, 0.0103044566, -0.0118796108, -0.0140134403, -0.0129426457, -0.0188863315, 0.00469442504, -0.017567236, -0.00817838684, -0.0261801481, 0.0103432536, -0.00421334337, 0.0178155378, 0.022766022, 0.00394952437, -0.0170706362, 0.0124150086, 0.0229832847, 0.00547812227, -0.00470606424, -0.017970724, 0.00238406961, -0.000768178608, 0.0138039375, -0.0172878988, 0.019351894, 0.0197243448, -0.00396892289, 0.0226729084, 0.00481857499, 0.0276233926, -0.0044150874, 0.00671574334, 0.00153441739, 0.0132219838, -0.00642088708, -0.00710371276, 0.0138582531, -0.00376329944, -0.00937333144, -0.00131909468, 0.00386611116, -0.0135866748, 0.0262887795, -0.014960085, 0.0178000182, -0.0200502388, 0.0320307203, -0.0139358472, -0.0123218959, -0.0035227586, 0.0286165942, -0.0280424, 0.0161705483, -0.0176758673, -0.014595394, -0.0185914747, 0.00841116812, 0.00274876039, -0.00413187, 0.0105062006, -0.0110959141, -0.0200657565, -0.0086439494, 0.00387775013, 0.00749556115, -0.00698344223, -0.0173189361, 0.0191811882, 0.0249696858, 0.0209503267, -0.00993976556, 0.00900088064, -0.00599412108, 0.000361781102, -0.0268940125, 0.0279027317, 0.0424282923, 0.0191967059, -0.0217883401, -0.0063704513, 0.00535397232, -0.0176293124, 0.00540440809, 0.0107932976, 0.0131754279, -0.0136332307, 0.0130124809, -0.00033535072, -0.0202519819, 0.00777877867, -0.0166981854, 0.0225332398, 0.0151773477, 0.0159688052, -0.00962939113, 6.52272865e-05, 0.00661875121, -0.00916382764, 0.0139358472, -0.00462459074, -0.018948406, 0.00250627985, 0.00811631139, 0.00218814518, 0.000588742958, -0.00807751436, -0.0129348869, -0.00206011534, -0.0228280965, 0.0148669723, 0.0221918281, -0.0166826677, 0.00124732032, -0.00108340348, 0.0180172808, -0.0386417136, 0.00955179706, 0.00146555295, 0.00560615212, -0.00786413159, -0.0210124012, -0.0160774365, 0.0106691476, 0.0112355826, -0.0179552063, 0.0121899862, -0.00105333584, -0.0125003615, 0.013028, 0.00609499309, -0.000440102333, 0.000279337692, -0.0112123042, 0.00742572686, 0.0157127455, 0.0183276553, 0.000128029773, -0.0150687164, -0.0139280874, 0.013578915, -0.00645968411, 0.027685469, 0.0250162408, 0.0459355302, 0.023216065, -0.0309909638, 0.00810855255, 0.0155808358, -0.0178000182, 0.027080236, -0.00806975551, 0.0143858911, -0.0440112054, -0.0227505025, 0.00787965, 0.00808527414, 0.0246593095, -0.0256990679, 0.0153325349, -0.00629285723, 0.000109964967, 0.00268668542, 0.000632389507, 0.00480305636, 0.00100096, -0.0194760449, -0.0138349747, 0.0190880746, -0.0063588121, -0.00756927533, 0.0129038496, -0.00783697423, 0.0126865869, -0.00180890551, -0.0256990679, -0.00311539113, 0.0270957556, 0.0114140483, 0.0102656595, -0.0384244509, 0.027281981, -0.00669634528, 0.00487289065, -0.00513670966, 0.00793008693, -0.0242868606, 0.0269716047, 0.00510955183, 0.00526473951, -0.0233867727, 0.0103587722, 0.0197398625, 0.00273906114, -0.0296097938, -0.00950524, -0.0214003697, 0.0364380479, 0.000634814263, -0.0167757794, 0.00578461774, 0.0106225917, -0.000815219886, 0.0120425578, -0.0176758673, -0.00174295076, 0.00719294557, -0.00813183, -0.0171792675, -0.0128262555, -0.0159222484, 0.0160929542, 0.0209348071, 0.000388938934, -0.00373420166, 0.0120968735, -0.0107157044, -0.00429481687, -0.0230763964, 0.0102346223, 0.00561003201, -0.00916382764, 0.000691554742, -0.0107001849, -0.013028, 0.00935005303, 0.00269832439, -0.0477667451, -0.00965266861, -0.0151695879, -0.0094974814, -0.00788353, -0.00741796754, 0.0223004594, -0.00111832062, -0.0217728205, 0.00380015653, -0.00603679754, 0.0094043687, 0.00674290117, -0.000675066083, -0.0105605163, -0.00206787488, 0.02065547, 0.000298251165, -0.00390490796, -0.0068631717, -0.0414040536, -0.0177379437, 0.0255593974, 0.00828701816, -0.00569538493, 0.00498152198, 0.017443087, 0.0213382952, -0.0067816982, -0.0180793554, 0.00203101779, -0.0189794432, 0.0178310554, 0.00977681857, -0.0172723811, -0.00481469557, 0.0184518062, -0.0140987942, -0.00905519631, -0.017194787, -0.021509001, -0.0265991557, 0.0212762207, 0.029842576, 0.0186535493, -0.0175051615, 0.0411867909, -0.0247369036, -0.00938885, -0.00718518626, 0.0335205235, -0.0109252073, -0.0265060421, -0.00923366286, 0.0125779556, -0.00783309434, -0.0282596629, 0.0244575664, 0.0468666553, 0.011708905, 0.00789129, 0.0292994194, 0.00156448502, 0.00137244037, 0.0190725569, 0.0258387364, 0.0103742909, 0.0134004494, -0.0148592126, -0.0193674136, 0.0114838826, -0.0120503176, -0.0140832746, -0.0163257364, -0.0167292245, -0.00914830901, 0.0128184957, 0.0129348869, -0.0157980975, 0.0243178979, -0.0194605254, 0.0224556457, 0.0258232169, -0.0196933076, 0.0246748291, -0.0374312513, 0.0142617412, 0.00153732719, 0.00112705, 0.00887673069, 0.0109872827, -0.00129484653, 0.0103587722, 0.0252800602, -0.0178155378, -0.00838789, -0.0118796108, 0.0249852035, -0.00308047398, 0.0213227775, 0.00649072137, -0.0178310554, -0.0212451834, 0.0184828434, -0.00496600335, 0.0227349848, -0.00181957462, -0.000473322201, 0.00364690879, -0.0159843229, 0.0063704513, -0.0090164, 0.00365466811, -0.0149523253, -0.00158485339, 0.0445698798, 0.0111424699, 0.0124382861, 0.00188164972, 0.00770894438, -0.0195691567, -0.0197709, -0.00971474405, -0.0174586046, -0.00275458, -0.00319880457, -0.00547812227, -0.00237825, -0.00705715641, 0.0183121376, 0.0257766601, -0.0267077871, -0.0106381103, -0.00656443555, 0.00768954586, 0.00759255327, -0.000727441919, -0.0115537168, 0.00790680852, 0.0192432627, 0.000416824216, -0.0137729, 0.0211365521, -0.0152394222, 0.00857411511, -0.0121589489, -0.0164188482, 0.028337257, -0.000142457371, -0.00982337538, -0.0179396868, -0.0143005373, 0.000606201589, 0.0088301748, 0.00179629656, 0.00196021353, 0.0088301748, 0.00571478345, 0.00741796754, 0.00408531353, -0.0145876352, -0.00799992122, 0.0145100411, 0.0237747412, -0.00855859648, -0.00068816, 0.00392624643, -0.00235885149, -0.0033462327, -0.00488453, 0.0244265292, -0.0112588611, 0.0122520616, 0.0217262637, 0.0423662141, 0.00749944104, 0.00219202484, 0.0065178792, 0.0172878988, 0.0140212, -0.0221297517, -0.00827925839, 0.00293886522, 0.00542380661, 0.00288067, 0.0153868506, 0.00857411511, -0.0208106581, -0.0267698616, -0.00898536202, -0.0044034482, 0.0210124012, 0.0270957556, -0.000995140523, -0.00775162084, 0.00766238803, 0.00733261416, -0.00183800317, 0.00316582713, 0.0116313109, -0.0316582695, -0.0215400402, 0.0213227775, 0.0214779638, -0.00731321564, -0.015123032, 0.00509791262, 0.0179396868, -0.00487289065, 0.0302460641, -0.00350142037, -0.00513283, -0.0229832847, 0.0121356705, -0.00235303212, 0.0171016734, 0.0130435182, 0.00629285723, -0.00835685246, 0.00239958824, 0.00989321, -0.00298736128, -0.0019495443, -0.00615706807, -0.00948196277, -0.00140153803, 0.0105760349, -6.10748102e-05, 0.0147893783, -0.00418230612, 0.0125624361, -0.0242092665, -0.00900088064, -0.00373808132, 0.0112666199, -0.00921038445, -0.0127098644, 0.00190492778, 0.00732485484, 0.00446940307, -0.00492332689, 0.00178174768, 0.00980009697, 0.00555571634, 0.0124615645, -0.00941212848, -0.000152035354, -0.0247369036, -0.00516774738, 0.0189018492, -0.0166205931, 0.0158058573, 0.00107661402, -0.0030513762, -0.0190880746, 0.00397280278, 0.00502419844, 0.000608141418, -0.0236040354, -0.00850428082, 0.0284148511, 0.00297766225, 0.0195536371, 0.00249852031, 0.0207020268, -0.00280307606, 0.0119261676, -0.0158679318, 0.00172937184, -0.00425989972, -0.0164809227, 0.00457027508, -0.022812577, 0.00459743291, 0.0264439676, 0.0144790038, 0.023091916, -0.0240230411, 0.00700672, 0.0129348869, 0.00112317025, -0.0331791081, 0.000329531176, -0.011181267, 0.0111424699, -0.0160619169, -0.0078214556, 0.014882491, -0.00474486081, -0.0268319361, -0.00274488074, -0.0117166638, -0.00969922543, 0.00390296825, -0.0414971635, 0.00134431256, -0.00524534099, -0.022890171, -0.00629285723, 0.000736656133, -0.0192898195, 0.00273518148, -0.0125313988, 0.022160789, 0.0138504934, 0.0117554609, 0.00435301242, -0.00311539113, 0.00813183, 0.00329191703, 0.0151540693, 0.017520681, -0.0133461338, 0.0198950507, 0.00100677961, 0.00377105875, -0.00331325526, -0.0282751806, -0.0102501409, 0.0185138807, 0.0164964423, 0.00482633431, 0.00862843078, -0.00348978117, 0.0184518062, -0.020981364, -0.0182345435, -0.00522594247, 0.0204537269, 0.0164964423, 0.0154023692, 0.00888449047, -0.0222539026, 0.0120270392, -0.00518714543, -0.0016294698, 0.00652175909, -0.00380403618, 0.00377299869, 0.0459044948, 0.0194450058, 0.000714347931, 0.00374778057, 0.00277979788, -0.0183276553, 0.00155963539, -0.00371286343, -0.000152520312, -0.00138504931, 0.0143781314, 0.00653339829, -0.00190880755, 0.0123762116, -0.00557899429, -0.0188708119, -0.0035596157, -0.00673514185, -0.0124615645, 0.0222694203, -0.0148281753, -0.00275458, -0.0206399504, -0.00270608393, 0.00333459373, -0.0061842259, 0.0145178, -0.00640924787, -0.0122287832, -0.00821718387, -0.0234643649, 0.0088301748, 0.0134237278, -0.011421808, 0.0010125991, -0.0294546075, 0.00194760447, 0.00612991024, -0.00799992122, 0.00877585914, -0.00337727019, 0.0174586046, -0.0180793554, -0.00525698, 0.0120968735, -0.0313323773, -0.0336136334, 0.011344214, 0.00751495967, 0.00261491118, 0.0422731042, 0.00468278583, -0.0136642689, 5.44672112e-05, 0.00112026057, 0.0087137837, 0.0031386693, 0.0136797875, 0.0317669027, 0.0173654929, -0.0115381982, -0.00685541239, 0.0187001061, -0.0150997536, 0.0104674036, -0.0101415096, 0.00460907165, 0.0195226, 0.0191811882, -0.00504359696, -0.00403875718, 0.0119649647, 0.0107932976, 0.0289890449, -0.0250162408, -0.00162559014, 0.0098156156, -0.0355069228, -0.0082327025, -0.00495436415, -0.00268862513, 0.021384852, 0.0167292245, -0.011181267, -1.84739929e-05, -0.00252179848, -0.00870602485, -0.00734813279, 0.0238057785, 0.0247369036, 0.0121279107, -0.00364884851, 0.0111347102, 0.00393982511, -0.00574582117, -0.00984665379, 0.0325273201, 0.00246360316, -0.0114295669, 0.0252800602, -0.0109872827, 0.00355573604, 0.00280113635, -0.00584669318, -0.00567598641, 0.0111269513, -0.0047565, 0.0035596157, 0.00572254276, 0.00706879515, -0.0114528453, 0.0013995982, -0.0102811791, -0.00554407714, 0.0136332307, -0.00789517, -0.0198795311, -0.00867498666, 0.0120037608, 0.0148281753, -0.000524728093, -0.00829477701, 0.0224090908, -0.0158058573, 0.00439180899, 0.0170085616, -0.01288833, -0.0146109127, 0.0034839618, 0.0157593, 0.00905519631, 0.00269638468, 0.000327833812, 0.0102423821, 0.0181259122, 0.00761195179, -0.00541604729, 0.0243334156, 0.012034799, 0.0106148319, -0.000303100795, 0.0283217374, 0.0178310554, -0.00160813157, 0.01577482, -0.0154023692, -0.00177204842, -0.00982337538, 0.0279648062, -0.00764686894, -0.00791068841, -0.0181879867, 0.00807751436, -0.00435689185, 0.0144479657, -0.0262267049, 0.00735977199, 0.018296618, -0.00859739352, -0.0124926018, 0.00834133383, -0.00565270847, -0.0114606041, 0.00745676411, -0.0184052493, -0.00164498854, -0.011545958, 0.0116778668, 0.00698732166, -0.0132918181, 0.0160774365, -0.00643252628, 0.0168844108, 0.00874482188, -0.0146264313, -0.0168068167, 0.0260715168, -0.00490392838, 0.000374632567, 0.00463622948, 0.00164401869, -0.00393400574, -0.017443087, -0.0143082971, -0.00663039042, -0.00443448592, 0.00965266861, -0.00169251475, 0.00633553369, 0.0223314967, -0.00239764852, 0.0137108248, 0.0043219747, -0.0166205931, 0.00580401625, -0.00504359696, 0.038052, -0.00505523616, -0.0169464871, -0.00644416502, 0.0069562844, 0.00732485484, -0.00770894438, -0.0043219747, 0.00690584816, 0.000146337057, -0.0227194652, -0.0168068167, -0.00735201268, -0.00677781878, -0.00792620704, -0.00706491573, 0.00259163301, 0.00715802843, 0.00258387369, -0.00839564949, -0.0117942579, -0.00238600932, -0.0202209447, 0.00286903093, -0.00207369425, -0.00384671264, 0.00519490521, -0.0063704513, 0.00684377318, -0.00247912202, -0.00364108919, -0.00825598091, -0.037369173, -0.0166205931, 0.0107389819, -0.0163878109, -0.0183121376, 3.18862039e-05, 0.00218232558, -0.00360229216, 0.00709595298, 0.0239609666, 0.0168223362, -0.00429869676, 0.00343546551, 0.00600963971, -0.00324730063, -0.00166147726, -0.0139513658, -0.00977681857, 0.00779817719, 0.0225487594, -0.0176293124, 0.0113985296, 0.00638209, -0.00102908781, 0.0199726447, -0.00535397232, -0.0195226, -0.000608141418, 0.0168378558, 0.00412799045, 0.0039883214, 0.00822494272, -0.00407367479, 0.00812407117, 0.00739856903, 0.00444612466, -0.0116157923, -0.00434137322, -0.00328027806, -0.01764483, -0.00634717289, 0.0138970502, -0.00739856903, -0.00209309277, 0.0103742909, 0.00125023013, 0.0127331428, -0.00329191703, 0.0107932976, 0.0192587823, 0.0240851156, 0.00273130182, -0.00473322207, -0.0073015769, 0.00653727772, -0.00893880613, -0.0211520698, 0.00856635533, -0.0102811791, 0.016465405, 0.020981364, -0.00770894438, -0.0382071882, -0.00924918149, -0.000386271655, 0.0173189361, 0.00516386749, -0.00381373544, -0.00489616906, -0.0130978338, -0.0117399422, 0.00743348617, 0.00330161629, 0.00653339829, -0.00206399523, 0.00536173163, 0.0140212, -0.00483409362, -0.00421722326, 0.00434137322, -0.00627345871, 0.0214624461, -0.0116313109, -0.00568374619, 0.00516774738, 0.00407755421, 0.0194450058, -0.00128126761, 0.00542380661, -0.01101832, 0.0138427345, -0.00573418196, -0.00310375215, 0.0122055048, 0.000289279385, -0.0540673621, 0.0184362866, -0.0181259122, -0.00210667169, 0.00976906, 0.0187932178, -0.00812407117, 0.0083258152, 0.00692136725, -0.0359104127, -0.0102346223, 0.00212801, -0.00682437466, 0.00953627843, 0.00141317712, 0.00790680852, -0.0152394222, -0.00737917051, 0.00346456328, -0.00526861893, 0.00132782396, -0.0133616524, -0.00193984504, -0.0180328, -0.0167757794, 0.00727441907, 0.00944316573, 0.00803095847, 0.00589324906, 0.00569538493, 0.0200192016, 0.0114140483, -0.0311151147, -0.0213538148, -3.78876e-05, 0.0139358472, -0.00816286821, -0.00757703464, 0.0246437918, 0.0124693243, 0.00432585459, -0.00886897184, -8.25040333e-05, 0.0230298396, -0.0123218959, 0.0128184957, -0.0158601739, -0.0145721156, -0.0080464771, 0.00420170417, 0.00647132285, -0.0105217192, -0.010731223, 0.0205933955, -0.0108786514, -0.00945092458, 0.010203585, 0.0152627006, -0.0162326228, 0.0185449179, 0.0055207992, -0.000350384507, -0.00388938934, 0.00714638922, 0.00528025813, 0.0150066409, 0.022766022, 0.00084868219, 0.0073015769, 0.00158194359, 0.00417454634, 0.00166341709, -0.00322208251, -0.011057117, -0.00860515237, 0.0125701958, 0.0061842259, -0.00978457835, 0.0136099532, -0.00317164673, -0.0160463974, 0.0304633267, 0.0212917384, -0.0165119618, 0.00712699071, 0.0122830989, -0.0275458, -0.0119339265, -0.0104130879, -0.0070493971, -0.000787577068, 0.00919486582, -0.0146341911, -0.0161084738, -0.0353517346, -0.00756151602, 0.0206399504, 0.0232315846, 0.0117632207, -0.00155963539, 0.009513, -0.0136720277, 0.0244110096, 0.018948406, -0.01439365, 0.0039766822, -0.00967594702, 0.00748004252, -0.00695240451, 0.00998632237, -0.00526085962, -0.00632389495, -0.0119960019, -0.000260424189, -0.0191656686, 0.0209037699, 0.00763910962, -0.000246117852, -0.0302150268, -0.0178620927, -0.0148204165, 0.00616870727, 0.00145682367, -0.00418618554, 0.0236350726, 0.0270957556, -0.0114761237, -0.0161550287, 0.00838013086, 0.0139668845, 0.024597235, 0.00646356354, 0.00128805707, -0.00468666572, -0.019677788, 0.00865946803, 0.0250938348, 0.00948972162, -0.0109640043, 0.00301839877, 0.00680109672, -0.0168688931, 0.00607171515, 0.00612991024, 0.00129484653, -0.0323100574, 0.0106070731, 0.00264012907, -0.00248106173, -0.00544708502, -0.00740244845, 0.0240540784, 0.0245817155, -0.0258232169, -0.0147350626, 0.000445436919, 0.00580013683, 0.0171792675, 0.00882241502, -0.00303391763, 0.0295011625, -0.0109872827, -0.0148747321, -0.00936557166, -0.0139979217, 0.00621914305, -0.0143858911, 0.00222694222, -0.0161084738, 0.00183218368, -0.0127176242, 0.0167447422, -0.0118485736, -0.00738693, 0.00907847472, 0.0128495339, -0.016139511, 0.000754114764, -0.00645580422, -0.0192122255, -0.0150997536, -0.000234115054, -0.00870602485, -0.0203140564, -0.00952851865, 0.027033681, -0.00477977796, -0.0054276865, 0.0150299193, 0.0225022025, 0.00612215092, -0.00571478345, 0.00834133383, 0.0269716047, 0.0238368157, 0.0178155378, -1.73222106e-05, 0.00177592819, 0.0268940125, 0.013377171, 0.0152549418, -0.00547424285, 0.00389520894, -8.37770567e-05, -0.00796888303, -0.0229988024, 0.00425214041, 0.00390102831, 0.0131133525, -0.0054393257, -0.000665366824, 0.00335981161, -0.0229212083, 0.00779041788, 0.00123180158, -0.00382925407, 0.0113364542, -3.1764961e-05, 0.00142869586, -0.00441120751, 0.00486901123, 0.000826374, -0.0181259122, -0.00656443555, -0.00450432, -0.0280889571, -0.0102734193, 0.00335981161, -0.00468278583, 0.0109640043, -0.00231423508, 0.0352275856, 0.0135013219, -0.0113752512, 0.0097225029, 0.00770894438, -0.0236661099, 0.0072084642, -0.00554019725, -0.00685929228, 0.0417144261, -0.0137108248, 0.0157515425, 0.0128340144, -0.0113597326, 0.0143858911, -0.0039883214, 0.00082928373, 0.0119727235, -0.00799216144, -0.00536561152, 0.0208416954, -0.0129892025, -0.0089931218, -0.0173965301, 0.00555571634, 0.0194760449, -0.0101492694, -0.00488065, -0.0118408138, -0.0185449179, 0.00588161033, 0.0187311433, -0.0120580764, 0.0140987942, 0.00208921311, -0.0191967059, -0.0285079628, 0.0224090908, -0.00463622948, -0.00338696945, 0.022486683, -0.0079533644, 0.0173189361, 0.0121279107, 0.0149756037, 0.0180172808, 0.0226263534, -0.00704163732, -0.000304555666, -0.0132064652, 0.0230298396, 0.00413962919, 0.0160153601, 0.00376523915, -0.000217141409, 0.00683989376, -0.0088301748, 0.00365078845, 0.0120115206, -0.000705618644, 0.0231539905, -0.00164110889, 0.0146264313, -0.00424050121, 0.0171327107, -0.0145333195, -0.00793784577, -0.0220056027, 0.0152704604, -0.00248494139, 0.0319065712, 0.00420558406, 0.0102268634, 0.000758479408, -0.00526861893, 0.00451595942, 0.00486125145, 0.0126633085, -0.00160910143, -0.00476038, 0.00523370178, 0.0138349747, 0.0174120497, 0.00214158883, 0.0193208568, 0.00810079277, 0.0290200822, 0.00493884552, 0.016543, -0.0169775244, 0.0173965301, 0.00869050622, 0.00301063946, -0.0270647183, -0.00732873473, 0.0145022813, 0.000872930279, 0.00862843078, 0.010653629, -0.00523370178, -0.0244886037, 0.018296618, -0.00250627985, 0.0196001939, -0.0278251376, -0.000249997538, -0.0016575976, 0.0130823152, 0.023821298, 0.00189522863, -0.0174275674, -0.0240851156, 0.0083258152, 0.00585445249, 0.00221724296, -0.0163412541, -0.010001841, -0.000220414891, 0.0087137837, -0.00792620704, 0.00164886832, -0.000512119092, -0.0121744676, -0.0134392465, -0.00733649405, -0.0146652283, -0.0143005373, 0.00670798402, -0.0036857056, -0.0324342102, -0.0147273038, -0.0115304394, 0.0110338386, -0.0119028892, -0.00777877867, -0.00290782773, -0.00964491, 0.00154120685, -0.00126962853, 0.00910951197, -0.00328609743, -0.0072084642, 0.00195245398, 0.0077011846, 0.0317203477, 0.0247369036, 0.000804065785, -0.018622512, -0.00734425336, 0.00513283, 0.00384477293, 0.00296020345, -0.0108864103, -0.00156351505, 0.0161084738, -0.0218504146, -0.00354991644, -0.00980785675, 0.00549364137, 0.00984665379, -0.000186952573, 0.00205041631, 0.0324031711, 0.0212451834, 0.00567210699, 0.00351887895, 0.0040814341, -0.0173189361, -0.00656055612, -0.00328415772, 0.0159532856, -0.00463622948, -0.00623854157, -0.00697568292, 0.00420558406, 0.0113054169, -0.0094974814, 0.00274682068, 0.00735977199, -0.00874482188, 0.00995528512, 0.0141686285, 0.000921426399, -0.00017979939, 0.00820942409, -0.00578461774, -0.000168645274, -0.0703310221, -0.0196157135, 0.00432585459, 0.0257611424, 0.00803095847, -0.0279492866, 0.0186845865, 0.00289812847, 0.00572642265, 0.0175827555, 0.0121899862, -0.00878361799, 0.00402711844, 0.00538501, -0.0197243448, 0.00138213963, 0.00489228917, 0.0114994012, 0.000842377718, -0.00712699071, 0.0191811882, -0.00692524668, -0.00872930232, -0.00387193076, 0.000409549772, 0.000136274117, 0.00133558328, 0.00830253679, -0.00327833812, -0.0088301748, -0.00794560555, -0.0036042321, 0.00513283, 0.00414738851, 0.0103432536, -0.00916382764, 0.00534233311, -0.0158446543, 0.00203877711, 0.00707267504, -0.00186031137, 0.00123180158, -0.0224556457, -0.00243838527, -0.017241342, 0.00315224822, 0.00402323855, -0.000807945442, -0.00710759219, -0.0171792675, -0.0316272341, 0.0236350726, -0.00652563851, 0.00796112418, -0.00648684194, -0.0061725867, -0.0128650526, -0.021384852, 0.0156196319, 0.000752174936, -0.0198640134, -0.0310064834, -0.00903191883, -0.000804550713, 0.0027603996, 0.00460131234, 0.0086439494, 0.00281471526, -0.00572254276, -0.00613379, 0.00446940307, -0.0096837068, -0.00751495967, 0.021710746, -0.0130357584, 0.00656831544, -0.00203489745, -0.000888934, -0.00312703, 0.010203585, 0.0197398625, 0.00815510843, 0.0341723114, 0.000231447761, 0.00291558704, 0.0176758673, -0.0273285378, -0.0205468386, -0.012725383, 0.0132995779, 0.0128572928, -0.00934229326, 0.00463235, 0.0119882422, -0.0116080325, 0.00210473198, -0.0203140564, 0.00344516477, 0.0106225917, -0.0139436061, -0.000766723766, -0.0216021147, 0.00463622948, 0.010568276, 0.0270026438, -0.018296618, 0.00568762561, 0.0072899377, -0.0247369036, 0.0236971471, 0.0174741242, 0.00415902771, 0.00529965665, -0.00353633752, 0.0227349848, -0.00184673246, 0.00147428224, 0.00612603081, -0.00692136725, -0.00464398926, -0.0186690688, -0.0304322895, -0.00183509337, -0.00236661104, 0.00749556115, -0.0271578301, -0.0164033305, 0.0061842259, -0.0149833634, -0.0170085616, -0.00336175156, -0.00433361391, 0.00301063946, -0.0111347102, -0.00181957462, 0.0112588611, 0.0158213768, 0.00145294389, -0.00568762561, 0.0106846662, 0.00138892909, -0.0173034184, 0.0141220717, 0.00346262334, -0.0464631692, -0.0132685397, -0.0154178888, -0.00242868601, -0.0103432536, -0.00702611869, 0.00996304397, -0.00451595942, -0.00923366286, 0.00489228917, -0.0164964423, -0.0107467417, 0.00303391763, -0.00885345321, 0.00872154348, -0.00225216, 0.00894656498, -0.0262267049, -0.000101599384, -0.00658771396, -0.00122113246, 0.00478365785, -0.00181375514, -0.0208572131, -0.0121822264, -0.0202209447, 0.00982337538, 0.0110493572, -0.00308629335, 0.0148902507, 0.00716578774, -0.00379821658, -0.00154411665, -0.00374390092, 0.011181267, 0.0126400301, 0.0122908577, 0.000942764687, -0.00571866333, -0.0163722914, -0.00467114663, -0.0251403917, 0.00471382355, 0.0195846763, 0.00386805111, 0.0145643568, 0.0136875464, 0.0169775244, 0.00772058312, -0.00955179706, 0.00553243794, 0.000199804039, -0.00424826052, 0.0114606041, 0.000336805591, 0.0182345435, 0.0121744676, 0.0089232875, 0.00362169067, -0.0047487407, 0.00719294557, -0.0132840592, -0.00505523616, 0.0200347193, -0.011708905, 0.0118097765, 0.0206244327, 0.00431809528, 0.000592137687, 0.0120658362, -0.00377105875, 0.0146186724, -0.0302460641, 0.0158291347, -0.00342964614, -0.00290976767, 0.0306185149, -0.0180793554, 0.0164188482, 0.00412799045, 0.0267698616, -0.00555183645, 0.022160789, 0.0133616524, 0.0148281753, -0.0192432627, 0.00765462872, 0.00157903391, 0.000744900492, 0.00361587107, -0.0033908491, 0.00645580422, -0.0038564119, 0.0118020177, 0.013214224, 0.0233712532, 0.0417144261, 0.0207020268, -0.0167602617, 0.00813959, 0.0033520523, 0.00283993315, 0.0041512684, -0.00809303392, 0.00250821956, -0.0104674036, 0.0174275674, 0.019351894, -0.00977681857, 0.00935005303, 0.0069446452, -0.0146419508, 0.00728605781, -0.00966818724, -0.0145876352, 0.0105372379, -0.0141531099, -0.000735686219, 0.012360693, -0.00906295609, -0.0109407259, -0.00920262467, -0.0089931218, -0.00435301242, 0.0183121376, -0.0203606132, 0.00872930232, -0.000747325306, -0.0283527747, -0.00320074428, -0.000927730871, -0.0185294, -0.0122675803, 0.0138892904, -0.0040814341, -0.00326281926, -0.0352896601, -0.0246437918, -0.0186690688, -0.00339278905, -0.0038059759, -0.0177689809, -0.0293459762, 0.0132607808, -0.00799216144, 0.0128107369, 0.0126555488, -0.0144479657, 0.0128107369, 0.0075537567, -0.0159998424, -0.0286476314, -0.00831805542, 0.00343934516, 0.000847712276, -0.010327735, -0.000838013075, -0.0329618454, -0.00332683418, 0.00263624941, -0.0153635731, -0.00422498258, -0.0034781422, -0.00833357405, -0.0101104723, -0.0233867727, -0.0202519819, 0.00664978893, 0.00338890939, -0.021509001, -0.00914055, 0.00777877867, 0.00640536845, -0.0053345738, 0.0113209356, 0.0104441261, -0.00891552772, 0.0169309676, -0.0126477899, -0.00801544, 0.00448104227, -0.0124460459, 0.0124150086, -0.00803095847, -0.00698344223, 0.00989321, 0.0014839815, 0.00320850359, -0.00621914305, -0.0141375903, -0.00307659432, -0.0123218959, -0.00283023389, -0.0135478778, -0.0039320658, -0.0166205931, 0.00105333584, 0.0332411863, 0.000531032565, -0.0176758673, 0.0206244327, -0.00630061654, -0.00263042981, 0.00983889401, 0.0066885855, -0.0111269513, -0.0077826581, -0.00192335632, 0.00905519631, 0.00529965665, 0.00119882426, 0.011220064, 0.0127952183, -0.0163257364, 0.0149911223, 0.00570702413, -0.00311151147, -0.0217883401, -0.00582341477, -0.0133228553, 0.0068631717, 0.00182151445, 0.00162753, -0.000811340171, -0.0109717632, -0.0139203276, 0.00255089626, -0.00726278, 0.00140929746, 0.0969612151, -0.000501934905, 0.00455475599, -0.0140599972, -0.00476425933, 0.00159552251, -0.0153170163, 0.0480460823, 0.00691360794, 0.0174896438, 0.00138310948, -0.0134237278, -0.0202830192, 0.0107622603, -0.0199416075, -0.00757703464, -0.00700672, -0.00232393434, 0.00790680852, -0.00930349715, -0.00626182, -0.0065295184, 0.00387969, -0.00340054836, -0.0155342789, -0.0203606132, -0.0107001849, 0.000331228541, -0.00859739352, 0.0114140483, 0.014882491, -0.0112666199, -0.00489616906, -0.0122753391, -0.0284924433, 0.0102656595, 0.0205933955, 0.0183897316, 0.0288028196, -0.0196312312, 0.0160308797, 0.00610275241, -0.010816576, 0.00386611116, 0.0148592126, -0.00279531674, 0.00642476697, -0.0190415196, 0.0107234633, -0.00502031902, -0.0063704513, -0.00541216787, 0.0263353363, -0.0218814518, 0.014758341, 0.0116856266, 0.0205002818, 0.00323372171, 0.00439180899, 0.00446940307, 0.00290782773, 0.0204537269, 0.0257145856, -0.0020814538, -0.00984665379, -0.0266612303, -0.00127738796, 0.000412702037, -0.00882241502, 0.00168863509, 0.00573030207, -0.0104674036, 0.0175051615, 0.00130163599, 0.0122365421, 0.00355379609, 0.000960223319, 0.0152006261, -0.00111832062, -0.0044034482, -0.0162015855, 0.0191346314, -0.0322169475, -0.0126633085, -0.00135595165, -0.0270957556, -0.0123994891, -0.00238988898, -0.0119028892, 0.00144130492, -0.0037245024, 0.0289114509, -0.0155653162, -0.00255283597, 0.00776713947, -0.0102889379, -0.016543, 0.0239299294, 0.0188397747, -0.000411247136, 0.0214624461, 0.00946644414, 0.00835685246, -0.0219280086, 0.0125158802, 0.0143315755, 0.00826374, 0.00739468914, 0.0164809227, 0.00812407117, -0.00510179251, 0.0024092875, 0.0059436853, 0.0306340326, 0.00505523616, 0.00822494272, 0.012360693, 0.00401935913, 0.0268164184, -0.0220211204, 0.00488453, 0.0272509437, 0.00213576946, -0.00304943649, 0.00558287418, 0.00347038289, 0.0193984509, 0.00193208561, 0.0266612303, 0.00143063569, 0.00851979945, -0.0142229442, 0.0153247761, -0.00344322505, 0.024271341, 0.0420868769, -0.00526473951, 0.00264788838, -0.0118873706, 0.0144557254, 0.00768178655, 2.08230249e-05, 0.0150997536, 0.0165740363, 0.00539276935, -0.00948972162, -0.0164809227, -0.0131987054, -0.0124615645, -0.00863619056, 0.000135182956, 0.0192898195, -0.00427929824, -0.0224246085, -0.000962648075, -0.0043219747, -0.00835685246, -0.0106148319, -0.00239764852, -0.0144246882, -0.0113054169, -0.000491023296, 0.0131987054, -0.00728217838, 0.00989321, -0.0024655431, 0.013377171, -0.0172723811, 0.00502807833, -0.00842668675, 0.0185449179, -0.00780981593, 0.00526861893, 0.0170395989, -0.005082394, 0.0152627006, -0.0021629273, -0.00583505398, -0.000273033191, -0.00810079277, -0.00680885604, 0.00309793255, 0.00636657141, 0.0298736133, -0.0174275674, 0.00958283432, 0.00636657141, 0.0055983928, 0.0183276553, 0.0138737718, -0.0149290478, 0.0152006261, -0.0108088162, -0.00119979412, 0.00225991942, 0.00352857821, 0.0162481423, 0.0121822264, -0.0036100517, -0.00667694677, -0.00130066613, -0.00535397232, -0.0171482302, 0.00734425336, -0.0105605163, 0.0140056815, 0.00682825455, -0.00753823761, 0.00163625926, 0.00943540595, 0.00946644414] |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.