index
int64
0
731k
package
stringlengths
2
98
name
stringlengths
1
76
docstring
stringlengths
0
281k
code
stringlengths
4
8.19k
signature
stringlengths
2
42.8k
embed_func_code
listlengths
768
768
24,384
py3rijndael.rijndael
__init__
null
def __init__(self, key, block_size: int = 16): if block_size not in (16, 24, 32): raise ValueError('Invalid block size: %s' % str(block_size)) if len(key) not in (16, 24, 32): raise ValueError('Invalid key size: %s' % str(len(key))) self.block_size = block_size self.key = key rounds = num_rounds[len(key)][block_size] b_c = block_size // 4 # encryption round keys k_e = [[0] * b_c for _ in range(rounds + 1)] # decryption round keys k_d = [[0] * b_c for _ in range(rounds + 1)] round_key_count = (rounds + 1) * b_c k_c = len(key) // 4 # copy user material bytes into temporary ints tk = [] for i in range(0, k_c): tk.append((ord(key[i * 4:i * 4 + 1]) << 24) | (ord(key[i * 4 + 1:i * 4 + 1 + 1]) << 16) | (ord(key[i * 4 + 2: i * 4 + 2 + 1]) << 8) | ord(key[i * 4 + 3:i * 4 + 3 + 1])) # copy values into round key arrays t = 0 j = 0 while j < k_c and t < round_key_count: k_e[t // b_c][t % b_c] = tk[j] k_d[rounds - (t // b_c)][t % b_c] = tk[j] j += 1 t += 1 r_con_pointer = 0 while t < round_key_count: # extrapolate using phi (the round key evolution function) tt = tk[k_c - 1] tk[0] ^= (S[(tt >> 16) & 0xFF] & 0xFF) << 24 ^ \ (S[(tt >> 8) & 0xFF] & 0xFF) << 16 ^ \ (S[tt & 0xFF] & 0xFF) << 8 ^ \ (S[(tt >> 24) & 0xFF] & 0xFF) ^ \ (r_con[r_con_pointer] & 0xFF) << 24 r_con_pointer += 1 if k_c != 8: for i in range(1, k_c): tk[i] ^= tk[i - 1] else: for i in range(1, k_c // 2): tk[i] ^= tk[i - 1] tt = tk[k_c // 2 - 1] tk[k_c // 2] ^= (S[tt & 0xFF] & 0xFF) ^ \ (S[(tt >> 8) & 0xFF] & 0xFF) << 8 ^ \ (S[(tt >> 16) & 0xFF] & 0xFF) << 16 ^ \ (S[(tt >> 24) & 0xFF] & 0xFF) << 24 for i in range(k_c // 2 + 1, k_c): tk[i] ^= tk[i - 1] # copy values into round key arrays j = 0 while j < k_c and t < round_key_count: k_e[t // b_c][t % b_c] = tk[j] k_d[rounds - (t // b_c)][t % b_c] = tk[j] j += 1 t += 1 # inverse MixColumn where needed for r in range(1, rounds): for j in range(b_c): tt = k_d[r][j] k_d[r][j] = ( U1[(tt >> 24) & 0xFF] ^ U2[(tt >> 16) & 0xFF] ^ U3[(tt >> 8) & 0xFF] ^ U4[tt & 0xFF] ) self.Ke = k_e self.Kd = k_d
(self, key, block_size: int = 16)
[ 0.04601527377963066, -0.049750540405511856, -0.06592343747615814, 0.0841626524925232, -0.0024810696486383677, -0.040928956121206284, -0.039001721888780594, 0.021120136603713036, 0.011970726773142815, -0.013103227131068707, 0.007281777914613485, 0.024915006011724472, 0.0030001322738826275, 0.086626335978508, -0.053406327962875366, 0.02696145325899124, 0.05543290823698044, -0.030815929174423218, -0.015576845966279507, -0.048836592584848404, 0.006407567299902439, -0.007490396499633789, 0.0038221883587539196, 0.07959291338920593, -0.02807408571243286, 0.03459092974662781, 0.038624219596385956, 0.02870987541973591, 0.05400238186120987, -0.040849484503269196, 0.008399376645684242, 0.027060795575380325, 0.042518433183431625, 0.04303501173853874, -0.04355159029364586, -0.0890900194644928, 0.08062607049942017, 0.0013423605123534799, -0.05269106477499008, -0.01122566033154726, 0.05722106620669365, -0.009084837511181831, 0.09290476143360138, -0.0544394887983799, -0.0003070292586926371, 0.048717379570007324, -0.011623029597103596, 0.030041059479117393, -0.008339772000908852, 0.005073899403214455, 0.000012592390703503042, -0.06477107107639313, 0.027617111802101135, 0.03727316856384277, -0.03208750858902931, -0.006953949108719826, -0.035167112946510315, -0.02549119107425213, -0.07204291224479675, -0.010202436707913876, -0.03864409029483795, -0.01757362298667431, 0.051300276070833206, 0.053406327962875366, -0.017772307619452477, -0.006040001288056374, -0.028312506154179573, 0.004028323572129011, 0.030339086428284645, 0.03049803338944912, 0.0426773801445961, 0.036716852337121964, 0.01122566033154726, 0.004435626324266195, -0.054399751126766205, 0.005751909222453833, -0.06628107279539108, 0.04132632538676262, -0.009894476272165775, -0.0401938259601593, 0.03870369493961334, 0.04359132796525955, 0.02783566527068615, 0.00267478683963418, 0.042717114090919495, 0.024040795862674713, 0.062188174575567245, 0.042717114090919495, -0.014066845178604126, -0.04875711724162102, -0.05634685605764389, 0.020176386460661888, -0.031213296577334404, 0.03705461323261261, 0.021120136603713036, -0.006993685849010944, -0.0069340807385742664, -0.013679411262273788, -0.0008624138426966965, -0.02882908657193184, 0.02400105819106102, 0.004897566977888346, 0.009874607436358929, -0.02956421859562397, -0.006412534508854151, -0.018835267052054405, -0.053724225610494614, 0.02257053181529045, -0.04645238071680069, -0.028650270774960518, -0.008280166424810886, 0.029584085568785667, -0.04371053725481033, 0.024140138179063797, -0.04303501173853874, -0.01930217631161213, -0.015020529739558697, 0.030021192505955696, 0.019719412550330162, 0.04031303524971008, 0.058293960988521576, -0.021636715158820152, -0.019093558192253113, 0.013669476844370365, -0.008126186206936836, -0.0201068464666605, 0.05590974912047386, 0.040372639894485474, 0.023802373558282852, -0.03926001116633415, -0.005404212046414614, 0.0074506597593426704, -0.004015905782580376, 0.040849484503269196, -0.055949486792087555, 0.011354805901646614, 0.025709742680191994, 0.009536844678223133, 0.04482316970825195, 0.04077000916004181, 0.05535343661904335, 0.013341648504137993, 0.04100843146443367, 0.01837829314172268, -0.015239083208143711, -0.019282307475805283, 0.01812993921339512, -0.03931961581110954, 0.04530001059174538, 0.0036980106960982084, -0.0033801160752773285, 0.07553975284099579, 0.04136606305837631, 0.046174220740795135, 0.04434632509946823, -0.02121947892010212, 0.023643426597118378, -0.018298819661140442, -0.05253211781382561, 0.02857079729437828, -0.00875204149633646, -0.011185923591256142, -0.022530796006321907, -0.023981189355254173, 0.025809084996581078, 0.014186056330800056, 0.008980528451502323, -0.04553843289613724, -0.0026400170754641294, -0.009973949752748013, -0.013500595465302467, -0.02739856019616127, -0.06449291110038757, 0.025948164984583855, 0.058731067925691605, 0.027478033676743507, -0.07581791281700134, -0.04875711724162102, -0.00039147009374573827, -0.0959247574210167, -0.025312375277280807, 0.017901452258229256, 0.012507174164056778, -0.007152633275836706, -0.005270100198686123, 0.08456002175807953, 0.10434897243976593, -0.011364739388227463, 0.04418737813830376, -0.07303633540868759, -0.07128791511058807, -0.0015919576399028301, -0.022491058334708214, 0.055075276643037796, 0.0020439643412828445, 0.04669079929590225, 0.006988718640059233, 0.03363724425435066, -0.03564395755529404, 0.03606119379401207, -0.04712790623307228, -0.03471013903617859, 0.01818954385817051, -0.03814737871289253, -0.009546779096126556, -0.07597686350345612, -0.003926497884094715, 0.019947899505496025, 0.03941895812749863, 0.01891474239528179, 0.02523290179669857, -0.04522053897380829, 0.05145922303199768, 0.04104816913604736, 0.025093821808695793, -0.03176961466670036, 0.03043842874467373, 0.034292902797460556, -0.0222725048661232, 0.008573225699365139, 0.0581350140273571, 0.04414764419198036, -0.022153295576572418, -0.030299348756670952, -0.026802506297826767, 0.002600280335173011, -0.020444611087441444, 0.02052408456802368, -0.04537948593497276, 0.0053197708912193775, 0.03723343089222908, -0.00534957367926836, -0.050942644476890564, 0.04998895898461342, 0.003787418594583869, -0.03661751002073288, -0.013123095035552979, -0.022173162549734116, 0.00829010084271431, -0.01652059704065323, -0.003092023776844144, -0.03435250744223595, 0.045856326818466187, -0.016133161261677742, -0.0002306600072188303, -0.01837829314172268, 0.04192237928509712, 0.011990594677627087, -0.01657026819884777, 0.03743211552500725, -0.017355069518089294, -0.027994612231850624, 0.021934742107987404, 0.026504481211304665, 0.022252637892961502, -0.01762329414486885, 0.018596846610307693, 0.006730429362505674, 0.015348359011113644, -0.019262438639998436, 0.0037725174333900213, -0.005786679219454527, -0.01694776676595211, -0.002808898687362671, 0.03369684889912605, 0.0040481919422745705, 0.00014808186097070575, 0.04224027320742607, -0.03784935176372528, -0.007987107150256634, 0.08201686292886734, 0.02634553238749504, -0.07947370409965515, 0.058969490230083466, -0.0030224842485040426, 0.008374541997909546, 0.04176343232393265, 0.04112764075398445, 0.0076543111354112625, 0.014762240462005138, 0.028431717306375504, -0.015636451542377472, -0.009074904024600983, 0.016192767769098282, -0.0036831095349043608, 0.016927899792790413, -0.0426773801445961, -0.07430791109800339, 0.07657291740179062, -0.05598922446370125, -0.008141087368130684, -0.007167534902691841, 0.008737140335142612, 0.011493884027004242, 0.051181066781282425, -0.008563291281461716, -0.06810896098613739, -0.009223916567862034, 0.025511059910058975, -0.014732438139617443, -0.017146451398730278, -0.02326592616736889, 0.06612212210893631, 0.04363106191158295, 0.042399220168590546, -0.01774250529706478, 0.05145922303199768, -0.0009971465915441513, -0.0026574020739644766, -0.03353790193796158, 0.007490396499633789, -0.007634442765265703, 0.04120711609721184, -0.028670139610767365, 0.006084705237299204, -0.01583513617515564, 0.024338820949196815, 0.029027771204710007, 0.02833237498998642, 0.07840080559253693, 0.022312242537736893, -0.013987371698021889, -0.04657159000635147, 0.032008033245801926, 0.007038389798253775, -0.07959291338920593, 0.031948428601026535, -0.09632212668657303, -0.0031988166738301516, 0.01873592659831047, -0.055273961275815964, 0.01596428081393242, 0.004090412054210901, 0.032822638750076294, -0.07089054584503174, -0.012576713226735592, -0.020861847326159477, 0.012745595537126064, 0.009362995624542236, -0.019192898645997047, 0.07097002118825912, -0.015288753435015678, -0.006670824252068996, -0.024974610656499863, -0.027199875563383102, -0.011543555185198784, -0.012546910904347897, -0.03852487727999687, -0.0170173067599535, 0.028471454977989197, 0.05054527521133423, -0.018328623846173286, 0.021120136603713036, 0.06334054470062256, 0.05265132710337639, -0.009114640764892101, -0.03222658857703209, -0.08479844033718109, 0.003886760910972953, 0.0008251605904661119, 0.02882908657193184, 0.0011138736736029387, -0.005019261036068201, -0.0035961850080639124, -0.028650270774960518, 0.0032559384126216173, -0.05741975083947182, -0.058413174003362656, 0.021934742107987404, 0.043948959559202194, -0.020504215732216835, -0.051181066781282425, -0.01242770068347454, 0.04442580044269562, 0.024140138179063797, 0.00484044523909688, -0.08694422990083694, 0.06608238816261292, 0.018020661547780037, -0.015219214372336864, 0.02926619164645672, 0.015696056187152863, 0.02133869007229805, 0.05388317257165909, -0.019779017195105553, 0.0426773801445961, 0.023861980065703392, 0.029345665127038956, 0.0687050148844719, 0.008886153809726238, -0.054280538111925125, 0.01311316154897213, 0.06381738185882568, -0.048161063343286514, 0.013927767053246498, 0.0612344890832901, 0.003782451618462801, 0.003320510732010007, -0.045856326818466187, -0.08070554584264755, 0.007937435992062092, -0.018537241965532303, -0.013272108510136604, 0.018666386604309082, 0.0034620731603354216, 0.0042617772705852985, 0.0352664552628994, 0.017345136031508446, -0.012268752790987492, -0.02696145325899124, -0.04935317113995552, 0.05646606534719467, 0.026881979778409004, -0.010088193230330944, -0.04748553782701492, -0.05698264762759209, -0.02974303439259529, -0.06461212038993835, -0.0023780022747814655, 0.04843922331929207, 0.029405269771814346, 0.018020661547780037, 0.01596428081393242, -0.028968164697289467, -0.010877963155508041, 0.026802506297826767, -0.011066713370382786, 0.025650138035416603, -0.02288842760026455, -0.0006187151884660125, -0.029464876279234886, 0.005890988279134035, 0.020623426884412766, 0.0046765306033194065, -0.05531369894742966, 0.00040544007788412273, 0.030200008302927017, -0.00036384054692462087, 0.009695791639387608, 0.0031292771454900503, -0.015149674378335476, 0.010212371125817299, 0.028789348900318146, 0.024100400507450104, 0.021815530955791473, -0.016371583566069603, -0.0408097468316555, 0.05157843232154846, -0.005816481541842222, 0.0266038216650486, 0.026067374274134636, 0.024895137175917625, -0.01812993921339512, -0.010570002719759941, 0.01169256865978241, -0.007793390192091465, 0.0031565960962325335, 0.04045211523771286, -0.015000661835074425, -0.04768422245979309, 0.02845158614218235, 0.004080478101968765, -0.022669874131679535, 0.009149409830570221, 0.002692171838134527, 0.057618435472249985, -0.0042518433183431625, -0.013033687137067318, 0.02839198149740696, -0.017583556473255157, -0.026186585426330566, -0.022431453689932823, 0.011026976630091667, 0.026703163981437683, 0.017970992252230644, -0.005881054326891899, 0.03167027235031128, -0.0025332244113087654, -0.07724843919277191, -0.07192370295524597, -0.05741975083947182, -0.07005607336759567, -0.03810764104127884, -0.04581658914685249, 0.0315510593354702, -0.05209501460194588, -0.00354899768717587, 0.01385822705924511, 0.002572961151599884, -0.030299348756670952, -0.05102211982011795, 0.026305796578526497, -0.0021793178748339415, 0.08686476200819016, -0.01645105704665184, 0.017792174592614174, -0.048081591725349426, -0.017057044431567192, -0.030537771061062813, -0.04677027463912964, -0.021259216591715813, 0.0618305429816246, -0.012974082492291927, -0.04192237928509712, 0.006094639655202627, 0.0028163495007902384, -0.03846527263522148, -0.013709213584661484, 0.01788158342242241, -0.0445450097322464, -0.04160448536276817, -0.04426685348153114, 0.02988211251795292, -0.04589606449007988, 0.01718618907034397, 0.004872731398791075, -0.044068168848752975, 0.01233829278498888, -0.032385535538196564, -0.0327829010784626, 0.049830012023448944, 0.0451410636305809, -0.012199213728308678, 0.0550355389714241, -0.008677534759044647, 0.08010949194431305, 0.01973928138613701, -0.048399485647678375, 0.02982250787317753, -0.004212106112390757, -0.09878581762313843, -0.018328623846173286, -0.00530486973002553, 0.03284250944852829, -0.02429908514022827, 0.03296171873807907, -0.005786679219454527, 0.004967106506228447, 0.026186585426330566, -0.018030596897006035, -0.02213342674076557, 0.02982250787317753, 0.03161066398024559, -0.07987107336521149, -0.0420415885746479, 0.0785200223326683, 0.0032037836499512196, 0.011076647788286209, -0.056942909955978394, -0.01749414950609207, -0.002957911929115653, 0.0063082254491746426, 0.043313167989254, -0.03625987842679024, 0.09179212898015976, -0.07291712611913681, 0.027299217879772186, -0.03240540251135826, -0.03178948163986206, -0.0055482578463852406, 0.01996776834130287, 0.0023854528553783894, -0.03310079872608185, -0.04422711580991745, 0.005265132989734411, 0.00308457319624722, -0.0053595080971717834, -0.004783323500305414, 0.0009033925016410649, 0.05078369751572609, -0.05455869808793068, 0.03618040308356285, 0.04537948593497276, 0.008026843890547752, -0.05221422389149666, -0.04581658914685249, -0.0556713305413723, -0.004428175278007984, 0.006407567299902439, -0.12143582105636597, 0.043273430317640305, -0.0006090914248488843, 0.06262528151273727, 0.010579937137663364, 0.01069914735853672, 0.014225793071091175, 0.020385004580020905, 0.032504744827747345, -0.006998653057962656, -0.004703850019723177, 0.0025419166777282953, -0.023921584710478783, -0.0287694800645113, -0.017722636461257935, -0.0012144575593993068, -0.020245926454663277, 0.015179477632045746, 0.060519225895404816, 0.0077139162458479404, 0.008528522215783596, -0.029166849330067635, -0.06198948994278908, 0.019272373989224434, 0.03886264190077782, -0.012844937853515148, -0.022749347612261772, -0.009685857221484184, 0.017951123416423798, 0.026206454262137413, 0.020881716161966324, 0.007326481863856316, 0.0315311923623085, 0.006924146320670843, -0.0680294930934906, 0.003730297088623047, -0.038187116384506226, -0.002982747508212924, -0.0006885651382617652, 0.0501081719994545, 0.007386087439954281, -0.05920790880918503, 0.048836592584848404, -0.04192237928509712, 0.03012053295969963, -0.06520817428827286, 0.010808424092829227, -0.0281535591930151, 0.022173162549734116, 0.010967371053993702, -0.026067374274134636, 0.024259347468614578, 0.008915956132113934, 0.059048961848020554, 0.03685592859983444, 0.015874871984124184, 0.003655790351331234, 0.02449776977300644, 0.007803324144333601, -0.00462189270183444, 0.05602896213531494, 0.053167909383773804, -0.016043754294514656, 0.018646517768502235, 0.020027372986078262, -0.049830012023448944, -0.02300763688981533, 0.043313167989254, -0.004845412448048592, -0.020583689212799072, 0.0244381632655859, -0.018348490819334984, 0.02745816484093666, 0.013709213584661484, -0.08265265077352524, -0.048518694937229156, -0.05741975083947182, 0.029365533962845802, -0.02523290179669857, -0.013649608939886093, -0.016808688640594482, -0.03620027378201485, 0.018716057762503624, -0.04490264132618904, -0.030716586858034134, 0.005841317120939493, -0.034610796719789505, 0.04152501001954079, 0.06016159430146217, 0.007500330917537212, 0.026564085856080055, -0.009541811421513557, -0.02529250644147396, -0.05126053839921951, -0.021497637033462524, 0.007048324216157198, -0.0010933843441307545, 0.027537638321518898, -0.05420106649398804, 0.028471454977989197, 0.007530133239924908, 0.003491875948384404, 0.05459843575954437, -0.03333921730518341, -0.014424477703869343, 0.011662766337394714, 0.05400238186120987, -0.03222658857703209, 0.013917832635343075, -0.06671817600727081, -0.1285884529352188, 0.04347211495041847, -0.010281910188496113, 0.026703163981437683, -0.03174974396824837, -0.04923395812511444, -0.02839198149740696, 0.006482074037194252, 0.012536976486444473, -0.02976290136575699, 0.0157755296677351, -0.03320014104247093, -0.05364475026726723, -0.020424742251634598, -0.01725572720170021, -0.023345399647951126, 0.013152898289263248, -0.01351052988320589, 0.008985496126115322, -0.023047374561429024, 0.018835267052054405, 0.04597553610801697, 0.041087906807661057, 0.008260298520326614, -0.06191001459956169, 0.005702238064259291, 0.086626335978508, -0.019838623702526093, 0.004798224661499262, -0.042280010879039764, 0.013788687996566296, -0.03067684918642044, 0.022789085283875465, 0.03316040337085724, 0.017086846753954887, -0.04216080158948898, -0.01681862212717533, -0.01961013674736023, -0.0020501732360571623, -0.012576713226735592, 0.026325663551688194, 0.03767053410410881, 0.004986974876374006, -0.017901452258229256, 0.006725462153553963, -0.0058512515388429165, -0.05102211982011795, 0.0194909255951643, -0.0835268646478653, 0.00794240366667509, 0.06957922875881195, -0.03808777406811714, -0.03482935205101967, -0.023345399647951126, 0.022729478776454926, -0.059168171137571335, 0.06854607164859772, 0.012278687208890915, 0.0036607575602829456, 0.03661751002073288, 0.041485272347927094, 0.024835532531142235, 0.03922027349472046, -0.019679676741361618, 0.023603690788149834, 0.006208883132785559, -0.0494723804295063, -0.01527881994843483, 0.009402732364833355, -0.018338557332754135, -0.054399751126766205, -0.03169013932347298, -0.04100843146443367, -0.008141087368130684, 0.05571106821298599, -0.027994612231850624, 0.002590346150100231, 0.03331935033202171, 0.004318899009376764 ]
24,385
py3rijndael.rijndael
decrypt
null
def decrypt(self, cipher): if len(cipher) != self.block_size: raise ValueError( 'wrong block length, expected %s got %s' % ( str(self.block_size), str(len(cipher)) ) ) k_d = self.Kd b_c = self.block_size // 4 rounds = len(k_d) - 1 if b_c == 4: s_c = 0 elif b_c == 6: s_c = 1 else: s_c = 2 s1 = shifts[s_c][1][1] s2 = shifts[s_c][2][1] s3 = shifts[s_c][3][1] a = [0] * b_c # temporary work array t = [0] * b_c # cipher to ints + key for i in range(b_c): t[i] = (ord(cipher[i * 4: i * 4 + 1]) << 24 | ord(cipher[i * 4 + 1: i * 4 + 1 + 1]) << 16 | ord(cipher[i * 4 + 2: i * 4 + 2 + 1]) << 8 | ord(cipher[i * 4 + 3: i * 4 + 3 + 1])) ^ k_d[0][i] # apply round transforms for r in range(1, rounds): for i in range(b_c): a[i] = (T5[(t[i] >> 24) & 0xFF] ^ T6[(t[(i + s1) % b_c] >> 16) & 0xFF] ^ T7[(t[(i + s2) % b_c] >> 8) & 0xFF] ^ T8[t[(i + s3) % b_c] & 0xFF]) ^ k_d[r][i] t = copy.copy(a) # last round is special result = [] for i in range(b_c): tt = k_d[rounds][i] result.append((Si[(t[i] >> 24) & 0xFF] ^ (tt >> 24)) & 0xFF) result.append((Si[(t[(i + s1) % b_c] >> 16) & 0xFF] ^ (tt >> 16)) & 0xFF) result.append((Si[(t[(i + s2) % b_c] >> 8) & 0xFF] ^ (tt >> 8)) & 0xFF) result.append((Si[t[(i + s3) % b_c] & 0xFF] ^ tt) & 0xFF) out = bytes() for xx in result: out += bytes([xx]) return out
(self, cipher)
[ 0.03880281746387482, 0.005892021581530571, -0.031642891466617584, 0.08106626570224762, 0.007115175481885672, -0.043755099177360535, -0.020505230873823166, 0.03548140823841095, -0.02185766026377678, 0.005504192318767309, 0.024303967133164406, 0.02627294696867466, 0.001157894148491323, 0.041209347546100616, -0.041368454694747925, 0.03741060942411423, 0.008358217775821686, -0.018993690609931946, -0.0027570684906095266, -0.05314255505800247, 0.008611799217760563, -0.03981713950634003, 0.004691242706030607, 0.09252214431762695, -0.052705004811286926, 0.047812387347221375, 0.06789995729923248, 0.002154192654415965, 0.010202893055975437, -0.03862381726503372, 0.024840962141752243, 0.03916081413626671, 0.011386269703507423, 0.05608607828617096, -0.055012091994285583, -0.0250000711530447, 0.05791584029793739, -0.01735287345945835, -0.008258774876594543, -0.0050268638879060745, -0.005787606351077557, -0.013106640428304672, 0.08941950649023056, -0.05719984695315361, -0.00612571369856596, 0.009596288204193115, -0.013832577504217625, 0.04005580395460129, -0.02498018369078636, 0.002476140856742859, 0.006399183068424463, -0.08377112448215485, 0.008303523994982243, 0.01237075962126255, 0.04478931054472923, -0.013494470156729221, -0.03890226036310196, -0.011883486993610859, -0.025855286046862602, -0.00868638139218092, 0.0032841183710843325, -0.029594358056783676, 0.04912504181265831, 0.07883872836828232, -0.046420179307460785, 0.04988081008195877, 0.005698107182979584, -0.005792578216642141, 0.016388272866606712, 0.04582352191209793, 0.05883071944117546, 0.05457454174757004, 0.009084154851734638, 0.02426419034600258, -0.04530641436576843, -0.022553764283657074, -0.04116956889629364, -0.023906193673610687, -0.025059737265110016, -0.06487687677145004, 0.026730386540293694, 0.0106106111779809, 0.05202879011631012, 0.01687554642558098, 0.025358067825436592, 0.00868638139218092, 0.06881483644247055, 0.035421740263700485, -0.04785216599702835, -0.06328578293323517, -0.03577973693609238, -0.006951094139367342, -0.01735287345945835, 0.038842592388391495, -0.018496472388505936, 0.0035899069625884295, -0.014190574176609516, -0.006568236742168665, 0.004614173900336027, -0.03293565660715103, 0.0769691914319992, 0.03357209265232086, -0.010620555840432644, -0.04168667644262314, 0.008586937561631203, -0.007070425897836685, -0.06300733983516693, 0.05393810197710991, -0.008905156515538692, -0.056523632258176804, 0.01200281921774149, 0.03671450540423393, -0.0494830384850502, -0.030608680099248886, -0.06344489008188248, -0.026869608089327812, -0.013583969324827194, 0.007373728323727846, -0.03880281746387482, 0.04984103515744209, 0.057398732751607895, -0.03727138787508011, -0.0019677362870424986, -0.008472577668726444, 0.006269906647503376, -0.04900570958852768, -0.00181608519051224, 0.02953469194471836, 0.054216545075178146, -0.01671643555164337, -0.0071997023187577724, 0.05401765555143356, 0.02195710316300392, 0.06260956823825836, -0.06229135021567345, 0.01919257640838623, -0.01489662192761898, -0.004382967948913574, 0.013603857718408108, -0.0009670871077105403, 0.03577973693609238, -0.011237104423344135, 0.07116170227527618, 0.05580763891339302, 0.012340926565229893, -0.02209632471203804, 0.025059737265110016, -0.048806823790073395, 0.026491722092032433, 0.0457041896879673, 0.01699487864971161, 0.09443145990371704, 0.06527464836835861, 0.0034084226936101913, 0.043635766953229904, -0.01218181662261486, 0.01692526787519455, 0.013216027989983559, -0.06980927288532257, -0.00666270824149251, 0.026829831302165985, 0.0016084971139207482, -0.06388244032859802, 0.01782025769352913, 0.03245832771062851, 0.004624118097126484, 0.009382485412061214, -0.0017004822148010135, -0.02816237136721611, -0.020505230873823166, -0.005074099637567997, -0.001301465556025505, -0.054136987775564194, 0.023031093180179596, 0.0384845957159996, 0.006269906647503376, -0.07183791697025299, -0.056245189160108566, 0.03373120352625847, -0.1000002846121788, -0.04506774991750717, 0.04538596794009209, -0.0021889980416744947, 0.028699366375803947, -0.00021162799384910613, 0.061058249324560165, 0.07923650741577148, 0.010272503830492496, 0.035938847810029984, -0.08345290273427963, -0.08011160790920258, 0.010968607850372791, -0.017551761120557785, 0.018725192174315453, 0.000018966109564644285, 0.05552919581532478, 0.014488903805613518, 0.050835467875003815, -0.04184578359127045, -0.00040181350777857006, -0.0010447772219777107, -0.03653550520539284, 0.018039032816886902, -0.03747027367353439, -0.02426419034600258, -0.03287598863244057, -0.027625378221273422, 0.05202879011631012, 0.030767789110541344, 0.01876497082412243, 0.06455865502357483, -0.00981009192764759, 0.025318291038274765, 0.017969423905014992, 0.010183004662394524, 0.0038410015404224396, -0.010302336886525154, 0.026292836293578148, 0.015254618600010872, -0.011555323377251625, -0.021797994151711464, 0.03500407934188843, -0.009352652356028557, -0.022036658599972725, -0.009745453484356403, -0.015751834958791733, 0.018705304712057114, 0.03019101731479168, -0.03273676708340645, -0.005583747290074825, 0.01584133505821228, -0.010322225280106068, -0.031046230345964432, 0.06109802797436714, 0.052108343690633774, -0.033015210181474686, -0.015204896219074726, -0.04470975324511528, -0.02400563843548298, -0.01867547072470188, 0.01565239205956459, -0.025338180363178253, 0.039459142833948135, 0.005519108846783638, 0.029236361384391785, -0.0006675138720311224, 0.009710648097097874, 0.003473060904070735, -0.021042224019765854, 0.0510343536734581, -0.03444719687104225, -0.079713836312294, 0.031145675107836723, -0.002154192654415965, 0.015543004497885704, -0.010700110346078873, 0.05620541051030159, -0.007149980869144201, 0.009362596087157726, 0.014538626186549664, 0.029594358056783676, 0.0015736918430775404, -0.04057290777564049, -0.02273276261985302, 0.013245861046016216, 0.000587026821449399, 0.012460258789360523, 0.012211649678647518, -0.010660332627594471, -0.0000797101019998081, 0.05656340718269348, -0.022692983970046043, -0.04645995795726776, 0.05369943752884865, -0.017760591581463814, 0.022155990824103355, 0.04027457907795906, 0.07247435301542282, 0.010272503830492496, 0.024045415222644806, 0.04335732385516167, -0.0061505744233727455, -0.028102705255150795, 0.01678604632616043, -0.026929274201393127, 0.01917268894612789, -0.024801185354590416, -0.04367554187774658, 0.0812651515007019, -0.017740704119205475, -0.006135657895356417, 0.0011995360255241394, 0.007110203616321087, -0.018168309703469276, 0.04315843805670738, 0.03645595163106918, -0.03192133456468582, -0.0013922076905146241, 0.018377142027020454, 0.013116585090756416, -0.05783628299832344, -0.043516434729099274, 0.06901372224092484, 0.024821072816848755, 0.01931190863251686, -0.025079626590013504, 0.03924036771059036, -0.021499663591384888, 0.01281825453042984, -0.03760949522256851, 0.01116749458014965, -0.03689350187778473, 0.06515531986951828, -0.04836927354335785, -0.02008756808936596, -0.045783743262290955, 0.001476734527386725, 0.030012018978595734, 0.029872799292206764, 0.061058249324560165, 0.0532618872821331, 0.011416102759540081, -0.02893803082406521, 0.04383465275168419, 0.03446708247065544, -0.01855613850057125, 0.007503004744648933, -0.06857617199420929, 0.024920517578721046, 0.0040672351606190205, -0.004556993953883648, 0.02889825403690338, -0.011237104423344135, -0.01773075945675373, -0.05202879011631012, -0.003050426486879587, -0.016388272866606712, -0.0189041905105114, -0.0031424115877598524, -0.019650015980005264, 0.07155947387218475, -0.027346936985850334, -0.015493282116949558, -0.007746641058474779, -0.021877549588680267, 0.01249009184539318, -0.033532317727804184, -0.013196139596402645, -0.06539398431777954, 0.06555309146642685, 0.02653150074183941, -0.017462261021137238, 0.022036658599972725, 0.06034225597977638, -0.0023443782702088356, 0.03383064642548561, -0.006404155399650335, -0.02247420884668827, 0.014558514580130577, -0.01293758675456047, -0.005419665481895208, 0.002458738163113594, 0.015443560667335987, -0.00793061126023531, -0.012639257125556469, -0.016109831631183624, -0.05469387397170067, -0.07004793733358383, 0.018118588253855705, 0.03255777060985565, -0.013265750370919704, -0.01237075962126255, 0.011276882141828537, 0.014886677265167236, 0.01940140873193741, -0.01560267060995102, -0.07657141983509064, 0.06933194398880005, -0.0033761034719645977, 0.015881111845374107, 0.003739072009921074, -0.005210834555327892, 0.01560267060995102, 0.043516434729099274, 0.00055253243772313, 0.022673096507787704, -0.03965802863240242, -0.002024916233494878, 0.013723189942538738, -0.0013076807372272015, -0.07454277575016022, -0.008457661606371403, 0.057398732751607895, -0.020763782784342766, 0.04773283377289772, 0.04077179729938507, 0.022175878286361694, -0.009710648097097874, -0.06730329245328903, -0.06420066207647324, -0.012480147182941437, -0.013703301548957825, -0.008273690938949585, 0.0017775509040802717, -0.008000222034752369, -0.0031797029078006744, 0.04419264942407608, 0.01673632487654686, -0.03512341156601906, -0.03496430069208145, -0.0028788866475224495, 0.07326990365982056, 0.009427234530448914, -0.03094678744673729, -0.06797951459884644, -0.038584042340517044, -0.043118659406900406, -0.017969423905014992, 0.013494470156729221, 0.06384266912937164, 0.0462212935090065, -0.027724821120500565, 0.049085263162851334, -0.05998426303267479, -0.007353839930146933, -0.0013511872384697199, -0.019341742619872093, 0.07183791697025299, -0.032120220363140106, -0.013932021334767342, -0.012639257125556469, -0.021499663591384888, 0.015970610082149506, -0.00032163725700229406, -0.03400964289903641, 0.01704460009932518, 0.035938847810029984, 0.014389460906386375, 0.033393096178770065, 0.0002938241814263165, 0.007433394435793161, 0.01591094397008419, 0.024562520906329155, 0.020296398550271988, 0.021797994151711464, -0.011784043163061142, -0.03194122016429901, 0.04630085080862045, -0.0654735341668129, 0.011714433319866657, 0.03446708247065544, 0.02287198230624199, -0.015682224184274673, -0.003885751124471426, -0.015523115172982216, -0.013106640428304672, 0.03349253907799721, 0.05898982658982277, -0.021062113344669342, 0.004037402104586363, 0.011674655601382256, -0.023647641763091087, -0.005300333257764578, -0.007284229155629873, 0.030151240527629852, 0.012629312463104725, -0.0371122770011425, -0.01621921919286251, 0.05127301812171936, -0.009636065922677517, -0.007811279501765966, -0.03854426369071007, -0.00801513809710741, 0.017959479242563248, 0.03528251871466637, 0.005837327800691128, 0.0128878653049469, 0.0018496473785489798, -0.043516434729099274, -0.03665483742952347, -0.08703286945819855, -0.042999327182769775, -0.032040663063526154, -0.05712028965353966, 0.046778175979852676, -0.08973772823810577, -0.006861594971269369, 0.002941038692370057, -0.0011150091886520386, -0.011475768871605396, -0.04291977360844612, 0.039200589060783386, -0.010018923319876194, 0.01661699265241623, 0.0006134415161795914, 0.014827011153101921, -0.02854025736451149, -0.029892686754465103, -0.023687418550252914, -0.01579161174595356, -0.0014382002409547567, 0.04864771291613579, 0.006269906647503376, -0.08886262774467468, 0.0032120218966156244, -0.028878364711999893, -0.00616051908582449, -0.007662114221602678, 0.007458255160599947, -0.007110203616321087, -0.07271301746368408, 0.019848903641104698, 0.06372333317995071, -0.029833020642399788, -0.006772095803171396, 0.00410204054787755, -0.04832949489355087, 0.029017586261034012, 0.002650166628882289, -0.01509550865739584, 0.02388630621135235, 0.032159995287656784, 0.012539813295006752, 0.06849661469459534, 0.019083188846707344, 0.09474967420101166, 0.0023605378810316324, -0.04773283377289772, -0.019550573080778122, -0.011207271367311478, -0.115115687251091, 0.011595101095736027, 0.006657735910266638, 0.030787678435444832, -0.03552118316292763, 0.048289716243743896, -0.005867160856723785, -0.0019664934370666742, -0.01049127895385027, -0.027108272537589073, -0.028619810938835144, 0.015204896219074726, 0.04996036738157272, -0.0665077492594719, -0.06304711848497391, 0.08249824494123459, -0.039339810609817505, 0.05091502144932747, -0.003577476367354393, 0.01692526787519455, -0.02816237136721611, -0.008845490403473377, 0.04256177693605423, -0.027943596243858337, 0.08981728553771973, -0.051471907645463943, 0.018138477578759193, -0.012957475148141384, -0.03649573028087616, 0.01509550865739584, 0.014916510321199894, -0.007761557586491108, -0.010889052413403988, -0.06893416494131088, 0.02677016519010067, -0.006866567302495241, 0.03752994164824486, -0.032398659735918045, -0.008030055090785027, 0.011316659860312939, -0.04586329683661461, 0.02346864342689514, 0.028838587924838066, 0.0016644339775666595, -0.022016769275069237, 0.010342113673686981, -0.0645984336733818, -0.07541787624359131, 0.02297142706811428, -0.07291190326213837, 0.01763131469488144, -0.021260999143123627, 0.07378700375556946, 0.018784858286380768, 0.006876511499285698, -0.012420481070876122, 0.024323856458067894, -0.00142204063013196, 0.007110203616321087, 0.01814842037856579, 0.03532229736447334, -0.04876704514026642, -0.02426419034600258, 0.018526306375861168, -0.0012635528109967709, 0.001658218796364963, 0.0005469387397170067, 0.057756729423999786, -0.00848749466240406, -0.005009461659938097, -0.05039791762828827, -0.08735108375549316, 0.02842092514038086, 0.011823820881545544, 0.007378700654953718, 0.042601555585861206, -0.009223375469446182, -0.0045122443698346615, -0.005543969571590424, -0.005464415065944195, 0.009556511417031288, 0.020167121663689613, 0.027963485568761826, -0.060421813279390335, 0.016398217529058456, -0.04252199828624725, 0.00029102733242325485, -0.026551388204097748, 0.028878364711999893, -0.03329365327954292, -0.02726738154888153, 0.10620555281639099, -0.028500480577349663, 0.0023829126730561256, -0.04701684042811394, 0.033532317727804184, -0.005842300131917, 0.028122594580054283, 0.024920517578721046, 0.02549728937447071, 0.010550945065915585, 0.009148793295025826, 0.059427376836538315, 0.06455865502357483, -0.0008483765413984656, 0.0015799071406945586, 0.030012018978595734, 0.0014655471313744783, -0.022315099835395813, 0.0347057469189167, 0.0774862989783287, -0.008104637265205383, -0.0012927642092108727, -0.02653150074183941, -0.050835467875003815, -0.0726732388138771, 0.054216545075178146, 0.019530683755874634, -0.05254589393734932, 0.04093090444803238, -0.041487786918878555, 0.05668273940682411, 0.013743078336119652, -0.09992073476314545, -0.025735953822731972, -0.09045372158288956, 0.08321423828601837, 0.007552726659923792, -0.004191539715975523, -0.01572200283408165, 0.00865157600492239, 0.02410508133471012, -0.07708852738142014, -0.04478931054472923, 0.0017017252976074815, -0.047295283526182175, 0.05457454174757004, 0.04996036738157272, 0.013385082595050335, -0.007632281165570021, -0.000021694977476727217, -0.021022336557507515, -0.03975747153162956, -0.012012762948870659, 0.0166667141020298, -0.004293468780815601, 0.007015732116997242, -0.04586329683661461, 0.08082760125398636, -0.017581593245267868, -0.0006118877208791673, 0.006210240535438061, -0.03476541489362717, 0.007050537504255772, 0.0043058996088802814, 0.05620541051030159, -0.025974616408348083, -0.03255777060985565, -0.0764520913362503, -0.10835353285074234, 0.024602297693490982, -0.008422856219112873, 0.010381891392171383, -0.036436062306165695, 0.006777068134397268, -0.009556511417031288, -0.0016731353243812919, 0.017999256029725075, -0.0341886430978775, 0.02346864342689514, -0.02615361474454403, -0.07708852738142014, 0.03194122016429901, -0.01389224361628294, -0.03042968176305294, 0.012629312463104725, -0.014190574176609516, -0.021042224019765854, -0.04208444803953171, -0.005096474662423134, 0.044630199670791626, 0.017402594909071922, -0.011028273962438107, -0.004758366849273443, 0.014170684851706028, 0.06913305819034576, -0.07573609799146652, -0.012877920642495155, -0.0007626066217198968, 0.03991658240556717, -0.05365966260433197, 0.007145008537918329, 0.013295583426952362, 0.04824994131922722, -0.06360400468111038, -0.010133283212780952, 0.006429016124457121, 0.019391464069485664, 0.011276882141828537, 0.036555394530296326, -0.005290389060974121, -0.00568816252052784, 0.020385898649692535, -0.009268125519156456, -0.02350842021405697, 0.002652652794495225, -0.006931205280125141, -0.05723962187767029, 0.0008601854206062853, 0.017760591581463814, -0.0058472719974815845, 0.007249424234032631, -0.025039849802851677, 0.05982515215873718, -0.0714799165725708, 0.057040736079216, -0.04188556224107742, 0.014538626186549664, 0.03981713950634003, 0.026969050988554955, 0.007796362973749638, 0.016268940642476082, -0.05544964224100113, -0.000730287516489625, -0.025537066161632538, -0.0140911303460598, -0.03373120352625847, 0.012072429060935974, -0.030529124662280083, -0.011575212702155113, -0.02589506283402443, -0.02247420884668827, -0.008268719539046288, 0.062211792916059494, -0.03257765993475914, -0.004325788002461195, 0.0009552782285027206, 0.009546566754579544 ]
24,386
py3rijndael.rijndael
encrypt
null
def encrypt(self, source): if len(source) != self.block_size: raise ValueError( 'Wrong block length, expected %s got %s' % ( str(self.block_size), str(len(source)) ) ) k_e = self.Ke b_c = self.block_size // 4 rounds = len(k_e) - 1 if b_c == 4: s_c = 0 elif b_c == 6: s_c = 1 else: s_c = 2 s1 = shifts[s_c][1][0] s2 = shifts[s_c][2][0] s3 = shifts[s_c][3][0] a = [0] * b_c # temporary work array t = [] # source to ints + key for i in range(b_c): t.append((ord(source[i * 4: i * 4 + 1]) << 24 | ord(source[i * 4 + 1: i * 4 + 1 + 1]) << 16 | ord(source[i * 4 + 2: i * 4 + 2 + 1]) << 8 | ord(source[i * 4 + 3: i * 4 + 3 + 1])) ^ k_e[0][i]) # apply round transforms for r in range(1, rounds): for i in range(b_c): a[i] = (T1[(t[i] >> 24) & 0xFF] ^ T2[(t[(i + s1) % b_c] >> 16) & 0xFF] ^ T3[(t[(i + s2) % b_c] >> 8) & 0xFF] ^ T4[t[(i + s3) % b_c] & 0xFF]) ^ k_e[r][i] t = copy.copy(a) # last round is special result = [] for i in range(b_c): tt = k_e[rounds][i] result.append((S[(t[i] >> 24) & 0xFF] ^ (tt >> 24)) & 0xFF) result.append((S[(t[(i + s1) % b_c] >> 16) & 0xFF] ^ (tt >> 16)) & 0xFF) result.append((S[(t[(i + s2) % b_c] >> 8) & 0xFF] ^ (tt >> 8)) & 0xFF) result.append((S[t[(i + s3) % b_c] & 0xFF] ^ tt) & 0xFF) out = bytes() for xx in result: out += bytes([xx]) return out
(self, source)
[ -0.014698290266096592, -0.036572858691215515, -0.0409272164106369, 0.03718956932425499, 0.010259835980832577, -0.04634680226445198, -0.04601041227579117, 0.026425153017044067, 0.033171601593494415, -0.018267741426825523, 0.03098507970571518, 0.00025754712987691164, 0.03700269013643265, 0.06350259482860565, -0.034274209290742874, 0.018604129552841187, 0.012848155573010445, -0.031059833243489265, -0.016679242253303528, -0.04915003478527069, 0.023435035720467567, -0.04642155393958092, 0.021678343415260315, 0.05980232357978821, -0.030742133036255836, 0.05677483230829239, 0.061633773148059845, 0.012053905986249447, -0.029396580532193184, -0.05931643024086952, 0.04122622683644295, -0.004415093455463648, -0.005531715229153633, 0.033208977431058884, -0.02814446948468685, -0.03631122410297394, 0.04414159059524536, -0.03476010262966156, -0.011661453172564507, -0.037488583475351334, 0.0011668461374938488, 0.0010920932982116938, 0.035881396383047104, -0.043693073093891144, 0.019529197365045547, 0.020743930712342262, -0.024518953636288643, 0.03158310428261757, 0.015800895169377327, -0.0008608264615759254, -0.018548065796494484, -0.0494864247739315, 0.027322188019752502, 0.005779333878308535, 0.068025141954422, 0.001979784108698368, -0.056662704795598984, -0.047841861844062805, -0.02937789261341095, 0.005900807678699493, 0.0246871467679739, -0.008045281283557415, 0.09867383539676666, 0.06357734650373459, -0.030031980946660042, 0.028424791991710663, -0.026555970311164856, -0.0008544023730792105, 0.017688406631350517, 0.035470254719257355, 0.06454913318157196, 0.016034498810768127, 0.0029504038393497467, 0.0038100623060017824, -0.0843212753534317, 0.029583463445305824, -0.05483125522732735, 0.04103934392333031, -0.00960574857890606, -0.06155901774764061, 0.06301669776439667, 0.010493439622223377, 0.0230425838381052, 0.0104373749345541, 0.06451176106929779, -0.016884813085198402, -0.014558129012584686, 0.050458211451768875, -0.0212858896702528, -0.10517734289169312, -0.015501883812248707, 0.021341955289244652, -0.035470254719257355, 0.04462748393416405, 0.008876907639205456, -0.0062371958047151566, -0.0003083557530771941, -0.05128049477934837, 0.013072414323687553, -0.006681040860712528, 0.044440604746341705, 0.050495587289333344, -0.0018758306978270411, -0.01604384183883667, 0.01651104912161827, -0.0349469855427742, -0.044440604746341705, 0.050084445625543594, 0.001693620579317212, -0.01728660985827446, 0.022407183423638344, -0.011343753896653652, -0.06847365945577621, -0.05311194062232971, -0.02717268094420433, -0.027210058644413948, 0.03890888765454292, 0.03875938057899475, -0.007344473153352737, 0.03134015575051308, 0.10271049290895462, -0.02078130841255188, -0.00702210096642375, 0.0019120392389595509, 0.013240608386695385, -0.05789612606167793, 0.02597663551568985, -0.011773582547903061, 0.03352667763829231, -0.08148066699504852, 0.007283736485987902, 0.038871511816978455, -0.008774122223258018, 0.06425012648105621, -0.0383482426404953, 0.012894876301288605, -0.0034643299877643585, -0.0033148243092000484, 0.02915363386273384, -0.024930093437433243, 0.04182425141334534, 0.00539155350998044, 0.05176638811826706, 0.009689845144748688, 0.010530815459787846, -0.038180045783519745, 0.03259226679801941, -0.0408150851726532, 0.0824524536728859, 0.041861627250909805, 0.04302029684185982, 0.04836513102054596, 0.047281213104724884, 0.033676184713840485, 0.019622638821601868, -0.01213800348341465, 0.007764958310872316, -0.006718417629599571, -0.039843298494815826, 0.025621559470891953, 0.04111409932374954, 0.000843890244141221, -0.051243118941783905, 0.016576457768678665, 0.017408082261681557, 0.001440161489881575, -0.0267989169806242, 0.029041504487395287, -0.026462528854608536, -0.046832695603370667, 0.01714644767343998, -0.0467953197658062, -0.05161688104271889, 0.027658576145768166, 0.08155541867017746, 0.007166935130953789, -0.07239819318056107, -0.010100986808538437, 0.006681040860712528, -0.09000249952077866, -0.04492649808526039, 0.042235393077135086, -0.007596764247864485, 0.031975556164979935, -0.014287149533629417, 0.031601790338754654, 0.08058363199234009, 0.03279783949255943, 0.04537501558661461, -0.07535093277692795, -0.0571112222969532, -0.013137822970747948, -0.03362011909484863, 0.050047069787979126, -0.017688406631350517, 0.056438446044921875, -0.009671157225966454, 0.018697571009397507, -0.03130277991294861, 0.055690914392471313, -0.052850306034088135, -0.0174734927713871, 0.032162439078092575, -0.019977714866399765, 0.005727941635996103, -0.06335309147834778, 0.00013278861297294497, 0.011642765253782272, 0.006433422211557627, 0.008115362375974655, 0.03709613159298897, -0.01025049202144146, 0.010110330767929554, 0.016062531620264053, -0.007923807948827744, -0.0009326593135483563, -0.014016170054674149, 0.02978903241455555, 0.007573403883725405, 0.0018185980152338743, -0.016081219539046288, 0.03765677660703659, -0.013633061200380325, -0.03872200474143028, 0.03442371264100075, -0.02491140551865101, -0.01522156037390232, 0.034909605979919434, -0.027004487812519073, -0.016697930172085762, 0.07609845697879791, -0.005251391790807247, -0.0459730364382267, 0.08073314279317856, 0.05954068899154663, -0.028088403865695, 0.004127762280404568, -0.06454913318157196, -0.030835574492812157, -0.023509789258241653, 0.005741957575082779, -0.027938898652791977, 0.052289657294750214, -0.021304577589035034, 0.03391912952065468, -0.008750761859118938, 0.01567007787525654, 0.008162083104252815, -0.010876547545194626, 0.03803054243326187, -0.031508348882198334, -0.011325065046548843, 0.011670797131955624, -0.0024504936300218105, 0.01117555983364582, -0.003770349780097604, 0.08544257283210754, 0.019248872995376587, 0.006779154296964407, 0.010792450979351997, -0.005438273772597313, -0.007886432111263275, -0.025621559470891953, -0.03913314640522003, 0.042048510164022446, 0.009820663370192051, -0.028835933655500412, 0.05314931645989418, -0.010998021811246872, 0.005732613615691662, 0.05640106648206711, 0.004590295720845461, -0.04896315559744835, 0.06929594278335571, 0.00985803920775652, -0.031414907425642014, 0.03640466555953026, 0.08828318119049072, 0.032255880534648895, -0.004387061111629009, 0.037955787032842636, 0.027191368862986565, -0.044440604746341705, -0.021080318838357925, -0.01078310701996088, 0.009717877954244614, -0.021398019045591354, -0.06432487815618515, 0.04612254351377487, -0.039282653480768204, -0.008007905445992947, 0.012166035361588001, -0.0174734927713871, -0.030929015949368477, 0.04059083014726639, 0.02455632947385311, -0.019846897572278976, -0.0185293760150671, 0.006470798514783382, 0.025528118014335632, -0.04130098223686218, -0.0007311768713407218, 0.06922119110822678, 0.02786414511501789, -0.010745730251073837, -0.009535667486488819, 0.02037016674876213, -0.018006106838583946, 0.011979153379797935, -0.07239819318056107, -0.023322906345129013, -0.02377142384648323, 0.03898363932967186, -0.04096459224820137, 0.008853547275066376, -0.01926756091415882, 0.017323985695838928, 0.03649810701608658, 0.009507635608315468, 0.056027304381132126, 0.027826769277453423, 0.022500624880194664, -0.022033419460058212, 0.027023175731301308, 0.02408912405371666, -0.03857250139117241, 0.03479747846722603, -0.06772613525390625, 0.02091212570667267, -0.02840610407292843, -0.017501523718237877, 0.006568911485373974, 0.027938898652791977, 0.0024831981863826513, -0.10398129373788834, -0.0008462262339890003, 0.015305657871067524, -0.00085323431994766, 0.003693260718137026, -0.02266881801187992, 0.0818544328212738, -0.008900268003344536, 0.0030975735280662775, 0.00940485019236803, -0.03476010262966156, -0.012119314633309841, -0.034274209290742874, -0.04130098223686218, -0.0579335018992424, 0.05341095104813576, 0.013960105367004871, -0.007872415706515312, 0.06036297231912613, 0.04754284769296646, 0.02840610407292843, 0.0009338273084722459, -0.014838451519608498, -0.06671696901321411, 0.004309972282499075, 0.018604129552841187, 0.016258757561445236, 0.0022332430817186832, 0.016352199018001556, 0.0037096128799021244, -0.06361472606658936, 0.033265043050050735, -0.046272050589323044, -0.04451535642147064, 0.027210058644413948, 0.042048510164022446, -0.0349469855427742, -0.03991805389523506, -0.012857499532401562, 0.026182206347584724, 0.004915003664791584, -0.022313741967082024, -0.05658794939517975, 0.05098148062825203, 0.004524887073785067, -0.015941057354211807, 0.03233063220977783, 0.018333150073885918, -0.01068966556340456, 0.03423682972788811, 0.02165965549647808, 0.029452644288539886, 0.04059083014726639, 0.0035367468371987343, 0.042235393077135086, 0.01314716786146164, -0.06671696901321411, 0.0011487419251352549, 0.08656386286020279, -0.03700269013643265, 0.022500624880194664, 0.039282653480768204, 0.0011738542234525084, 0.0023605567403137684, -0.060063961893320084, -0.06118525564670563, 0.014941236935555935, -0.011829647235572338, 0.013567652553319931, 0.003284455742686987, -0.009867384098470211, -0.04201113432645798, 0.04649630934000015, -0.021024255082011223, 0.004821562673896551, -0.04459010809659958, -0.056662704795598984, 0.08095739781856537, 0.026462528854608536, -0.027920210734009743, -0.061858031898736954, -0.03746989369392395, -0.07019297778606415, -0.08686287701129913, -0.012661273591220379, 0.05714859813451767, 0.035376813262701035, -0.011820303276181221, 0.031059833243489265, -0.04642155393958092, 0.00689595565199852, -0.028088403865695, -0.011166215874254704, 0.05468175187706947, -0.028443481773138046, 0.007900447584688663, -0.034554529935121536, -0.00871338602155447, 0.04571140184998512, -0.013782567344605923, -0.0571112222969532, 0.01646432839334011, 0.05172901228070259, 0.01733333058655262, 0.05531715229153633, 0.01733333058655262, 0.04059083014726639, -0.006610960233956575, -0.00866666529327631, 0.05374734103679657, 0.025714999064803123, -0.014670257456600666, -0.06873529404401779, 0.01843593642115593, -0.040441323071718216, 0.04361832141876221, 0.023808801546692848, -0.007872415706515312, -0.003933871630579233, 0.01059622410684824, -0.004214195068925619, -0.003985264338552952, 0.02238849550485611, 0.05318669229745865, -0.058232516050338745, -0.017183823511004448, 0.03135884553194046, -0.005765317939221859, 0.04152524098753929, 0.00573728559538722, 0.012324885465204716, -0.001416801125742495, -0.03879676014184952, -0.0012999997707083821, 0.060437723994255066, -0.00364420423284173, 0.0035250666551291943, -0.029265763238072395, -0.030723445117473602, 0.03457321971654892, 0.04814087226986885, 0.002541598863899708, -0.009124526754021645, 0.024481577798724174, -0.008699369616806507, -0.044029463082551956, -0.06959495693445206, -0.06036297231912613, 0.02496747113764286, -0.047430720180273056, 0.049411673098802567, -0.07146377861499786, 0.03603089973330498, -0.0047327931970357895, 0.025995323434472084, -0.016296133399009705, -0.033171601593494415, 0.02978903241455555, -0.019015271216630936, 0.05057034268975258, -0.03287259116768837, 0.01890314184129238, -0.03507780283689499, -0.026014011353254318, -0.042459651827812195, 0.0032704395707696676, 0.0039058392867445946, 0.043693073093891144, -0.022967830300331116, -0.07931283116340637, 0.0379931665956974, 0.007666844874620438, -0.03853512182831764, 0.008433062583208084, -0.00008183399040717632, 0.004583287518471479, -0.05513026937842369, 0.0035811313427984715, 0.06111050024628639, -0.011511947959661484, -0.0026747523806989193, 0.013623717240989208, -0.042683910578489304, 0.03890888765454292, -0.02418256551027298, -0.02584581822156906, 0.007428570184856653, 0.04615991935133934, -0.009180591441690922, 0.04522550851106644, -0.010213116183876991, 0.10360752791166306, 0.034367647022008896, -0.0630914568901062, -0.04201113432645798, 0.024238629266619682, -0.11549323797225952, 0.021323267370462418, 0.012166035361588001, 0.036666300147771835, -0.050458211451768875, 0.053261447697877884, -0.013623717240989208, 0.007522011175751686, 0.03246144950389862, -0.027714639902114868, -0.0349469855427742, 0.01848265528678894, 0.0302001740783453, -0.040067557245492935, -0.042683910578489304, 0.07381849735975266, -0.0034433058463037014, 0.03621778264641762, -0.04111409932374954, -0.02685498259961605, -0.017893977463245392, -0.033302418887615204, 0.05378471687436104, 0.005942855961620808, 0.06425012648105621, -0.08170492947101593, 0.03593745827674866, -0.012997661717236042, -0.038834135979413986, 0.03853512182831764, 0.04130098223686218, -0.012894876301288605, -0.03756333515048027, -0.0571112222969532, -0.031153274700045586, 0.006288588047027588, 0.017725782468914986, -0.014324525371193886, -0.018361182883381844, 0.030405744910240173, -0.04313242807984352, 0.0391705222427845, 0.01567942276597023, 0.011848336085677147, -0.03429289534687996, -0.007012757007032633, -0.08110690116882324, -0.0477297306060791, 0.019921649247407913, -0.09740303456783295, 0.0033124880865216255, -0.02147277258336544, 0.07389324903488159, 0.008115362375974655, 0.03640466555953026, -0.01139981858432293, 0.015473851934075356, -0.019790831953287125, -0.03610565513372421, 0.042272768914699554, 0.007685533259063959, -0.053261447697877884, -0.03180736303329468, 0.029433956369757652, 0.03950691223144531, -0.024612395092844963, 0.008760105818510056, 0.048664141446352005, -0.0006646000547334552, 0.005765317939221859, -0.04470223933458328, -0.05755973979830742, 0.021902602165937424, 0.038834135979413986, 0.012866844423115253, 0.00940485019236803, -0.019043302163481712, -0.02065049111843109, 0.0185293760150671, -0.005031805019825697, 0.01770709455013275, 0.03423682972788811, 0.001503234263509512, -0.10166395455598831, -0.033115535974502563, -0.030499186366796494, -0.008816170506179333, -0.004858938977122307, 0.017585622146725655, -0.016931533813476562, -0.028032340109348297, 0.07819154113531113, -0.038834135979413986, 0.0025906553491950035, -0.03098507970571518, 0.03761940076947212, -0.017875289544463158, 0.03535812348127365, 0.02160358987748623, -0.0029877801425755024, 0.009302064776420593, 0.028424791991710663, 0.04571140184998512, 0.031190650537610054, 0.011278344318270683, 0.010231804102659225, 0.009867384098470211, 0.024107811972498894, -0.04959855228662491, 0.029863785952329636, 0.016398919746279716, 0.007942495867609978, -0.011362441815435886, 0.003326504258438945, -0.041263602674007416, -0.04739334434270859, 0.02685498259961605, -0.015333689749240875, -0.07692074030637741, 0.007694877218455076, -0.010213116183876991, 0.007694877218455076, 0.03476010262966156, -0.049224790185689926, -0.00969919003546238, -0.013913384638726711, 0.043693073093891144, -0.02175309509038925, 0.004651032388210297, -0.05199064686894417, 0.016576457768678665, 0.03274177387356758, -0.07430438697338104, -0.03700269013643265, -0.012025874108076096, -0.030704757198691368, 0.026724163442850113, 0.026518594473600388, -0.011773582547903061, 0.01567942276597023, -0.0221081729978323, -0.05733548104763031, -0.05352308228611946, 0.008456422947347164, 0.0494864247739315, -0.027004487812519073, 0.012418326921761036, -0.05752236023545265, 0.0035484270192682743, -0.011932432651519775, -0.049224790185689926, 0.01009164284914732, -0.03218112513422966, -0.025023534893989563, -0.003092901548370719, 0.05180376395583153, -0.0511309877038002, -0.017538901418447495, -0.05849415063858032, -0.10323376208543777, 0.028854621574282646, 0.006755793932825327, 0.004807546269148588, 0.0031816705595701933, -0.01142785046249628, -0.004309972282499075, 0.023472413420677185, 0.0025252467021346092, -0.054868634790182114, 9.581366384736612e-7, -0.0006225515389814973, -0.0365915484726429, 0.03221850097179413, -0.031844738870859146, -0.017323985695838928, -0.007423898205161095, 0.003975920379161835, -0.009031085297465324, -0.01971607841551304, 0.008680681698024273, 0.049224790185689926, 0.00790512003004551, 0.007274392060935497, 0.012352918274700642, 0.023435035720467567, 0.07034248858690262, -0.04219801723957062, -0.008325604721903801, -0.018744291737675667, 0.05901741981506348, -0.03743251785635948, 0.03780628368258476, -0.006545551586896181, 0.010007545351982117, -0.07796727865934372, 0.004966396372765303, -0.02055704966187477, -0.0007837375160306692, -0.008017249405384064, 0.03560107201337814, -0.004807546269148588, 0.007152918726205826, 0.00963378045707941, 0.000608535367064178, 0.008853547275066376, 0.022220302373170853, -0.030779508873820305, -0.029004128649830818, -0.022407183423638344, 0.021229825913906097, -0.017875289544463158, 0.0015336025971919298, -0.03433027118444443, -0.01480107568204403, -0.01453009620308876, 0.040291815996170044, 0.030312303453683853, 0.004433781839907169, 0.02515435218811035, 0.04182425141334534, 0.008451750501990318, 0.03842299431562424, -0.00790979154407978, 0.002604671521112323, -0.004559927154332399, -0.0408150851726532, -0.05987707898020744, 0.04496387392282486, -0.015137463808059692, -0.0022601073142141104, -0.04003018140792847, -0.02106163091957569, 0.0208747498691082, 0.055840421468019485, -0.009568371810019016, -0.004431445617228746, 0.033863067626953125, 0.036759741604328156 ]
24,387
py3rijndael.rijndael
RijndaelCbc
null
class RijndaelCbc(Rijndael): def __init__(self, key: bytes, iv: bytes, padding: PaddingBase, block_size: int=16): super().__init__(key=key, block_size=block_size) self.iv = iv self.padding = padding def encrypt(self, source: bytes): ppt = self.padding.encode(source) offset = 0 ct = bytes() v = self.iv while offset < len(ppt): block = ppt[offset:offset + self.block_size] block = self.x_or_block(block, v) block = super().encrypt(block) ct += block offset += self.block_size v = block return ct def decrypt(self, cipher): assert len(cipher) % self.block_size == 0 ppt = bytes() offset = 0 v = self.iv while offset < len(cipher): block = cipher[offset:offset + self.block_size] decrypted = super().decrypt(block) ppt += self.x_or_block(decrypted, v) offset += self.block_size v = block pt = self.padding.decode(ppt) return pt def x_or_block(self, b1, b2): i = 0 r = bytes() while i < self.block_size: r += bytes([ord(b1[i:i+1]) ^ ord(b2[i:i+1])]) i += 1 return r
(key: bytes, iv: bytes, padding: py3rijndael.paddings.PaddingBase, block_size: int = 16)
[ 0.046681053936481476, -0.1231682077050209, 0.021653031930327415, 0.1036766842007637, -0.006351808551698923, -0.08244078606367111, -0.022676905617117882, 0.03721970319747925, 0.04106871038675308, -0.020136181265115738, 0.0395897813141346, 0.02775835245847702, 0.03094373643398285, 0.09290705621242523, -0.05987764894962311, 0.0229992363601923, 0.02595709264278412, -0.04095494747161865, -0.005664485972374678, -0.0443299375474453, 0.038945119827985764, -0.008375855162739754, 0.00030781386885792017, 0.07538744062185287, -0.043950725346803665, 0.08608122915029526, 0.040006913244724274, 0.01570887677371502, -0.01588900201022625, -0.04520212486386299, 0.031000617891550064, -0.031379830092191696, 0.0016436490695923567, 0.05589591711759567, -0.037181783467531204, -0.033048365265131, 0.07902787625789642, 0.024990100413560867, -0.025653723627328873, -0.023037157952785492, 0.023662857711315155, -0.0010552771855145693, 0.08941829949617386, -0.08524695783853531, 0.00996380764991045, -0.008214689791202545, -0.009627256542444229, 0.0512695237994194, -0.06348016858100891, -0.00012198494368931279, 0.02218392863869667, -0.05396193265914917, 0.03170216083526611, 0.017007678747177124, 0.009887965396046638, 0.02538827434182167, -0.04053781181573868, 0.05748860910534859, -0.03450833261013031, 0.026829281821846962, -0.028289249166846275, -0.04046196863055229, 0.041713371872901917, 0.003929588943719864, -0.010001728311181068, 0.022923393175005913, -0.060787755995988846, 0.0007394643034785986, 0.027094731107354164, 0.028858067467808723, 0.03649919852614403, 0.02277170866727829, -0.01773766241967678, 0.019197631627321243, -0.046453528106212616, 0.0015595112927258015, -0.05608552321791649, 0.04876672104001045, 0.023871423676609993, -0.04213050380349159, -0.000006087211659178138, -0.010826515965163708, 0.052255477756261826, 0.007347241509705782, 0.056047603487968445, -0.026867203414440155, -0.004147636238485575, -0.002659227466210723, 0.04804622009396553, -0.015140057541429996, -0.04277516528964043, 0.005266312975436449, -0.012352845631539822, 0.03581661731004715, 0.04304061457514763, 0.022259771823883057, 0.0317780040204525, 0.003851376473903656, 0.0006120725884102285, 0.011859869584441185, -0.017301568761467934, 0.05233132094144821, -0.02051539346575737, -0.05206587165594101, -0.028270289301872253, 0.009646217338740826, -0.05847456306219101, 0.02134966105222702, 0.022240810096263885, -0.05915714427828789, -0.015083176083862782, -0.008906752802431583, -0.03780748322606087, -0.028023801743984222, -0.016514703631401062, -0.015983805060386658, -0.04527796804904938, 0.012286483310163021, -0.02656383253633976, 0.007953980937600136, 0.06351808458566666, -0.029711296781897545, 0.00333706964738667, -0.014751364476978779, 0.002777731278911233, -0.03570285439491272, 0.019662166014313698, -0.0038016049657016993, 0.01275101862847805, -0.018590891733765602, 0.003325219266116619, 0.02990090288221836, 0.004031502641737461, 0.019245032221078873, -0.0074704852886497974, 0.01304490864276886, 0.04197882115840912, 0.028308210894465446, -0.02290443331003189, 0.04827374592423439, 0.07235373556613922, -0.00014420443039853126, 0.05199002847075462, 0.04304061457514763, -0.027473943307995796, 0.0019043575739488006, 0.02500906214118004, -0.06878913938999176, 0.0412583164870739, 0.019719047471880913, 0.013509443961083889, 0.0366508848965168, 0.015433947555720806, 0.04633976146578789, 0.046074315905570984, 0.003479274222627282, 0.028175486251711845, 0.00010850512626348063, -0.04281308874487877, 0.01956736296415329, -0.00880246888846159, 0.004377533681690693, -0.04971475526690483, -0.018714135512709618, 0.06310095638036728, 0.013613726943731308, 0.005337415263056755, -0.045240048319101334, -0.018059993162751198, -0.044178251177072525, 0.00886883120983839, -0.021197976544499397, -0.039893150329589844, 0.009850043803453445, 0.03141775354743004, 0.03579765558242798, -0.07993798702955246, -0.05062486231327057, 0.0417892150580883, -0.09389300644397736, -0.008390075527131557, 0.03947601839900017, -0.025786448270082474, -0.00007462042412953451, 0.003702061716467142, 0.03619582951068878, 0.048690881580114365, 0.04258555918931961, 0.03947601839900017, -0.05839871987700462, -0.056275129318237305, 0.010295618325471878, -0.0066362181678414345, 0.03143671154975891, 0.008778768591582775, 0.03951393812894821, 0.011537538841366768, 0.052483003586530685, -0.03794020786881447, 0.0663621798157692, -0.005493840668350458, -0.0020927786827087402, 0.050359416753053665, -0.05028357356786728, -0.000604073575232178, -0.026374226436018944, -0.04068949818611145, 0.030811011791229248, -0.01981385052204132, -0.040044836699962616, 0.04387488216161728, 0.030033627524971962, 0.020951488986611366, 0.014135144650936127, 0.001795334042981267, -0.02599501423537731, 0.0035693373065441847, 0.029559612274169922, -0.02017410285770893, 0.018941663205623627, 0.059119224548339844, 0.008404295891523361, -0.02360597625374794, 0.02347325161099434, 0.023700779303908348, -0.004048093222081661, 0.005868312902748585, 0.008266831748187542, -0.014267869293689728, 0.0067073204554617405, 0.022809630259871483, 0.007342501077800989, -0.025179708376526833, 0.05771613493561745, 0.015367585234344006, -0.05255884677171707, 0.010561066679656506, -0.018477126955986023, -0.05016980692744255, -0.01382229384034872, 0.017007678747177124, 0.0059915566816926, 0.04163752868771553, 0.01783246546983719, 0.01579419896006584, -0.036688804626464844, 0.009224343113601208, 0.06336640566587448, -0.032422665506601334, 0.02442128211259842, -0.03259330987930298, -0.031948648393154144, 0.003585927886888385, -0.01297854632139206, 0.018609851598739624, -0.007773855235427618, -0.037542033940553665, 0.04448162019252777, 0.027436021715402603, 0.005029305350035429, 0.0246677715331316, 0.029123516753315926, -0.0479324534535408, -0.024174794554710388, 0.06571751832962036, -0.006939588114619255, -0.02990090288221836, -0.00028115048189647496, -0.007807036396116018, 0.03970354422926903, 0.11861766129732132, -0.014827207662165165, -0.0077454145066440105, 0.0694338008761406, -0.0035693373065441847, -0.023416370153427124, -0.004228218924254179, 0.0380539707839489, -0.011717665009200573, -0.03454625606536865, 0.03285875916481018, -0.037542033940553665, -0.03283979743719101, 0.006475052796304226, 0.048197902739048004, -0.004145266022533178, -0.0074610053561627865, -0.08335089683532715, 0.038945119827985764, -0.03621479123830795, -0.020325787365436554, -0.006422910839319229, -0.0035053452011197805, 0.023511173203587532, 0.031000617891550064, 0.014267869293689728, -0.002701888792216778, -0.02136862277984619, -0.016865475103259087, 0.0026213061064481735, -0.04759116470813751, -0.0229992363601923, 0.010020689107477665, 0.008887792006134987, 0.010580027475953102, -0.02990090288221836, -0.0010606098221614957, 0.01297854632139206, 0.013187113218009472, -0.006086360197514296, 0.015519269742071629, -0.012788940221071243, 0.029237281531095505, -0.028858067467808723, -0.01593640446662903, 0.004545809235423803, 0.060560230165719986, -0.0013307987246662378, 0.02015514299273491, 0.029787138104438782, 0.04421617463231087, 0.0031924948561936617, -0.0886598750948906, 0.06158410385251045, -0.023321567103266716, -0.02444024384021759, 0.017074041068553925, -0.021653031930327415, -0.0021141094621270895, 0.03898303955793381, -0.0367836095392704, 0.045012518763542175, -0.004064683802425861, 0.002825132803991437, -0.06275966018438339, 0.018808938562870026, -0.035987261682748795, 0.013556845486164093, 0.014571239240467548, -0.044784992933273315, 0.07686636596918106, -0.0018972473917528987, -0.03509611263871193, -0.05540294200181961, -0.07186076045036316, -0.022714827209711075, -0.04341982677578926, 0.004216368775814772, -0.06556583195924759, 0.04554341733455658, 0.01688443496823311, -0.030905814841389656, -0.002820392604917288, 0.009504012763500214, -0.013139711692929268, -0.002654487267136574, -0.020799802616238594, -0.022487299516797066, 0.04671897366642952, -0.029844021424651146, 0.03306732699275017, 0.007214516866952181, -0.008209949359297752, -0.05092823505401611, -0.07675260305404663, 0.03547532483935356, -0.02464880980551243, -0.04872880131006241, 0.0020690779201686382, 0.01588900201022625, 0.010087051428854465, -0.04140999913215637, 0.012058956548571587, -0.011243649758398533, 0.01850556768476963, -0.023530133068561554, -0.07402227073907852, 0.0107317129150033, -0.010523146018385887, 0.009973287582397461, 0.022108087316155434, -0.05092823505401611, 0.02692408487200737, -0.004621651954948902, -0.0166569072753191, 0.006304407026618719, 0.025577880442142487, 0.020686039701104164, 0.023549094796180725, 0.020212024450302124, -0.05362064391374588, 0.008764548227190971, 0.017254166305065155, -0.028611579909920692, -0.024990100413560867, 0.021406544372439384, 0.06492117047309875, 0.020837724208831787, -0.008584422059357166, -0.08274415880441666, 0.03761787712574005, 0.023549094796180725, -0.0061432416550815105, 0.006958548445254564, 0.02180471643805504, 0.03084893338382244, 0.027834193781018257, 0.022809630259871483, -0.021084213629364967, -0.01103508286178112, -0.005545982159674168, 0.054492831230163574, 0.05085239186882973, -0.019775930792093277, -0.04516420513391495, -0.06753773987293243, -0.0007045056554488838, -0.06283550709486008, -0.0038253057282418013, 0.040006913244724274, 0.02207016572356224, 0.0037423530593514442, 0.030336996540427208, -0.03602518513798714, -0.042054660618305206, 0.0007584249251522124, 0.025672683492302895, 0.009077398106455803, -0.028270289301872253, 0.0041286759078502655, -0.04815998300909996, -0.02229769341647625, -0.027246415615081787, 0.04118247330188751, -0.05441698804497719, -0.02064811810851097, 0.028137564659118652, 0.02489529736340046, 0.0013687199680134654, 0.04516420513391495, -0.010873917490243912, -0.0020501173567026854, 0.015073695220053196, 0.06867537647485733, -0.015301222912967205, -0.0036831009201705456, -0.043116457760334015, 0.044898755848407745, -0.023700779303908348, 0.017974670976400375, 0.023037157952785492, 0.02254418097436428, 0.003166424110531807, 0.033048365265131, -0.04842543229460716, -0.02358701452612877, -0.00555072259157896, 0.008627083152532578, -0.007925540208816528, 0.047856613993644714, -0.020306827500462532, 0.0107317129150033, -0.010172374546527863, -0.013092310167849064, -0.04129623621702194, 0.024838415905833244, 0.028744304552674294, -0.023321567103266716, 0.024231676012277603, 0.014827207662165165, 0.0018853970104828477, -0.03748515248298645, -0.0016578694339841604, 0.008987335488200188, 0.03593038022518158, -0.01517797913402319, 0.029370004311203957, -0.019377756863832474, -0.03864175081253052, -0.04360943287611008, -0.0897216647863388, 0.005380076821893454, -0.04467122629284859, -0.06291134655475616, 0.05771613493561745, -0.07940708845853806, 0.04622599855065346, 0.028990792110562325, -0.01656210422515869, 0.006361288949847221, -0.07045767456293106, 0.06109112873673439, -0.055668387562036514, 0.0707610473036766, -0.026184620335698128, 0.00890201237052679, -0.05953635647892952, -0.03354134038090706, -0.024876337498426437, -0.05691979080438614, -0.023037157952785492, 0.029237281531095505, 0.01441007386893034, -0.06200123578310013, 0.02220289036631584, -0.01735845021903515, -0.05024565011262894, 0.0002710776461753994, 0.04213050380349159, -0.00021078879944980145, -0.033370696008205414, -0.019330354407429695, 0.050473179668188095, -0.030659327283501625, -0.007124454248696566, 0.00555072259157896, -0.03723866492509842, -0.006432391237467527, 0.030071549117565155, -0.03928641229867935, 0.04937346279621124, 0.053772326558828354, -0.015566671267151833, 0.032081373035907745, 0.018458167091012, 0.10883397608995438, 0.026298385113477707, -0.07368098199367523, -0.011907271109521389, 0.01899854466319084, -0.11027498543262482, 0.0033418098464608192, -0.004237699322402477, 0.007655351422727108, -0.0417892150580883, 0.02942688763141632, 0.0010505369864404202, 0.04410240799188614, -0.037295546382665634, -0.017045600339770317, -0.033636145293712616, 0.03996899351477623, 0.0448608323931694, -0.029692335054278374, -0.06154618412256241, 0.06939587742090225, -0.0020880387164652348, 0.002373632974922657, -0.01180298812687397, 0.014808246865868568, -0.027587706223130226, -0.03026115521788597, -0.0033939515706151724, -0.0024459203705191612, 0.03710594028234482, -0.05009396746754646, 0.0024151094257831573, 0.010532625950872898, -0.012722577899694443, 0.03951393812894821, 0.04330606386065483, 0.03105750121176243, 0.019349316135048866, -0.05756445229053497, -0.004996124189347029, 0.032422665506601334, 0.04368527606129646, 0.018183236941695213, 0.026829281821846962, 0.05490996316075325, -0.03970354422926903, 0.04918385669589043, -0.0044912975281476974, -0.0015867671463638544, -0.023643897846341133, 0.047742847353219986, -0.08001382648944855, -0.026962006464600563, 0.009101099334657192, -0.08145483583211899, -0.0030692508444190025, -0.04197882115840912, 0.059119224548339844, -0.05786782130599022, 0.007664831820875406, -0.0015820269472897053, -0.025198668241500854, 0.02076188288629055, -0.01739637181162834, 0.019756969064474106, -0.02231665328145027, -0.040158599615097046, 0.015215899795293808, -0.004323021974414587, 0.02076188288629055, 0.030905814841389656, -0.024155834689736366, 0.0630251094698906, -0.017026638612151146, -0.0033418098464608192, -0.02929416298866272, -0.05820911377668381, 0.009622516110539436, 0.056161366403102875, 0.007731194142252207, 0.0229992363601923, -0.04247179627418518, -0.005090927239507437, -0.0001425749942427501, 0.01606912724673748, 0.026469029486179352, 0.037295546382665634, 0.019965536892414093, -0.006257005501538515, -0.04474706947803497, -0.05210379138588905, -0.07068520039319992, 0.013139711692929268, 0.017813505604863167, 0.031000617891550064, -0.03238474577665329, 0.07254334539175034, -0.08524695783853531, 0.02279066853225231, -0.09427221864461899, 0.012419207952916622, -0.01149961818009615, 0.018315961584448814, 0.007859177887439728, 0.04979059472680092, 0.029976744204759598, 0.02834613062441349, 0.0630251094698906, 0.04804622009396553, -0.013718010857701302, -0.002226688200607896, 0.013917096890509129, 0.03060244582593441, -0.006361288949847221, 0.0744394063949585, 0.015870042145252228, -0.03259330987930298, -0.006200123578310013, -0.0019920505583286285, -0.030545564368367195, -0.04330606386065483, 0.018448686227202415, -0.020818764343857765, -0.02480049431324005, -0.03084893338382244, -0.00792080070823431, 0.003602518467232585, 0.06420066952705383, -0.085322804749012, 0.0007400567992590368, -0.04580886662006378, 0.005053006112575531, 0.0021532156970351934, 0.03206241503357887, 0.006840044632554054, 0.00810092594474554, -0.012390767224133015, -0.03555116802453995, -0.01590796187520027, -0.005138328764587641, -0.018287520855665207, 0.040992867201566696, -0.003360770409926772, -0.00038099000812508166, -0.009717319160699844, 0.027587706223130226, 0.0012182199861854315, -0.07864866405725479, -0.004882360342890024, 0.0044438960030674934, -0.046453528106212616, -0.030792051926255226, -0.05191418528556824, 0.03084893338382244, 0.02406102977693081, 0.009504012763500214, 0.059498436748981476, -0.04558133706450462, -0.018230639398097992, 0.014466955326497555, 0.007935021072626114, -0.03285875916481018, -0.003827675711363554, -0.05206587165594101, -0.15297430753707886, -0.024098951369524002, -0.00643713166937232, 0.07466693222522736, -0.03441353142261505, -0.012798420153558254, -0.044064488261938095, 0.0255020372569561, -0.006655178498476744, -0.051762502640485764, 0.010722232051193714, -0.04053781181573868, -0.03399639576673508, -0.017775584012269974, 0.019719047471880913, -0.027303297072649002, 0.013120750896632671, 0.0034058019518852234, -0.039438094943761826, -0.0024625109508633614, -0.0010161709506064653, 0.04360943287611008, 0.018827898427844048, 0.03414808213710785, -0.041940897703170776, 0.009470831602811813, 0.08896324038505554, -0.021615110337734222, -0.015433947555720806, -0.026829281821846962, -0.010456783697009087, -0.034204963594675064, 0.0381866954267025, 0.025445155799388885, 0.014751364476978779, -0.019756969064474106, -0.039893150329589844, -0.02419375441968441, -0.014239427633583546, 0.011480657383799553, 0.03794020786881447, -0.01956736296415329, 0.024117913097143173, 0.0019719048868864775, -0.006356548983603716, -0.017841946333646774, -0.016979238018393517, -0.03473586216568947, -0.08403348177671432, -0.04888048768043518, 0.05965011939406395, -0.015130577608942986, -0.02324572391808033, 0.009878484532237053, 0.03685945272445679, 0.020723961293697357, 0.045619260519742966, -0.0077454145066440105, 0.033048365265131, 0.03866070881485939, 0.011698704212903976, 0.02358701452612877, -0.000008864646588335745, -0.011129885911941528, 0.06082567945122719, 0.033256933093070984, -0.01809791475534439, -0.027815233916044235, 0.04057573154568672, -0.02586228959262371, -0.036575041711330414, -0.010115492157638073, -0.03602518513798714, 0.012466609477996826, 0.04341982677578926, 0.003232786199077964, 0.02990090288221836, 0.0021591410040855408, 0.08016551285982132 ]
24,388
py3rijndael.rijndael
__init__
null
def __init__(self, key: bytes, iv: bytes, padding: PaddingBase, block_size: int=16): super().__init__(key=key, block_size=block_size) self.iv = iv self.padding = padding
(self, key: bytes, iv: bytes, padding: py3rijndael.paddings.PaddingBase, block_size: int = 16)
[ 0.029817774891853333, -0.07578078657388687, -0.023126957938075066, 0.046108461916446686, -0.03647223114967346, -0.014563437551259995, 0.007895346730947495, 0.0042272149585187435, 0.029835956171154976, 0.010599855333566666, -0.0008403294486925006, 0.038835834711790085, 0.0020431538578122854, 0.06083553284406662, -0.0007249900954775512, 0.05123566463589668, 0.037217672914266586, 0.0005113566876389086, -0.027326900511980057, -0.022745143622159958, 0.026708725839853287, 0.04312668368220329, -0.024563301354646683, 0.06894451379776001, 0.020763352513313293, 0.07832620292901993, 0.002777234883978963, 0.002684054197743535, 0.04909024015069008, -0.06661727279424667, 0.0007477171020582318, 0.003859038231894374, -0.011872565373778343, 0.11388935893774033, -0.009836229495704174, -0.05679922550916672, 0.043926674872636795, -0.011645295657217503, -0.0937441736459732, 0.029290510341525078, 0.01956336945295334, -0.00743626244366169, 0.05585378408432007, -0.04243578389286995, -0.006309004966169596, 0.03227228671312332, 0.06905360519886017, 0.02203606255352497, -0.012936186976730824, 0.016845224425196648, -0.009627141058444977, 0.021490616723895073, 0.030599582940340042, 0.006595364771783352, -0.03419953212141991, 0.05694467946887016, -0.0009903274476528168, 0.0005147657357156277, -0.05316291004419327, 0.0667990893125534, -0.0600719079375267, -0.047672078013420105, 0.019163375720381737, -0.019599732011556625, -0.019054286181926727, 0.03250864893198013, -0.07941710203886032, 0.011636205017566681, -0.0028067799285054207, -0.002695417730137706, 0.0875624418258667, 0.0007954437169246376, -0.031835928559303284, 0.040617626160383224, -0.03063594549894333, 0.026145098730921745, -0.07534442842006683, 0.04614482447504997, -0.026654182001948357, -0.046944815665483475, 0.030563220381736755, -0.015245246700942516, -0.021654250100255013, 0.01689067855477333, 0.034872252494096756, -0.002140879863873124, -0.011354390531778336, -0.032799553126096725, 0.025236019864678383, -0.009718049317598343, -0.056108325719833374, 0.03701767697930336, -0.05094476044178009, 0.04058126360177994, 0.034072261303663254, -0.009618050418794155, 0.03734494373202324, -0.041017621755599976, 0.0017261127941310406, 0.023672403767704964, -0.02699963189661503, -0.04385394603013992, -0.00967259518802166, -0.06229006126523018, -0.041744884103536606, -0.025363290682435036, -0.059853728860616684, 0.006072644609957933, -0.008395340293645859, -0.02432694099843502, 0.05043567717075348, 0.02629055082798004, -0.03756312280893326, 0.04458121210336685, -0.02594510093331337, 0.03350863233208656, 0.02656327374279499, -0.015936145558953285, 0.0017011131858453155, 0.03427226096391678, 0.05687195062637329, -0.02287241630256176, -0.027654169127345085, 0.004259032662957907, 0.02567237801849842, -0.054326530545949936, -0.013036185875535011, 0.006013554520905018, -0.014563437551259995, -0.02354513294994831, 0.027272354811429977, -0.015745239332318306, -0.03981763869524002, 0.008199888281524181, -0.023108776658773422, -0.05316291004419327, 0.06752635538578033, 0.004509029444307089, -0.04574483260512352, 0.08523520082235336, 0.03796311840415001, 0.022908778861165047, 0.02796325460076332, 0.008854424580931664, -0.01559978723526001, -0.0014829343417659402, -0.007595350965857506, -0.06985359638929367, 0.013218001462519169, -0.009890774264931679, 0.0048181163147091866, 0.039344917982816696, 0.006245369557291269, 0.0527992807328701, 0.03645404800772667, -0.02796325460076332, 0.007018086034804583, -0.014908887445926666, -0.0025772375520318747, -0.017181584611535072, -0.022272422909736633, -0.00644536642357707, -0.008436248637735844, -0.054762888699769974, 0.004072671756148338, 0.011690749786794186, -0.03658131882548332, -0.03890855982899666, 0.0026749635580927134, -0.007008995395153761, -0.01344527117908001, -0.07374444603919983, -0.07439898699522018, 0.00925441924482584, 0.039235830307006836, 0.023508770391345024, -0.02696326933801174, -0.060580991208553314, 0.027272354811429977, -0.04843570291996002, 0.004406758118420839, 0.011418025940656662, 0.02198151871562004, -0.012727099470794201, 0.018354294821619987, 0.024363303557038307, 0.03847220167517662, 0.06454457342624664, 0.042690325528383255, -0.08050799369812012, 0.0029476871713995934, 0.022908778861165047, -0.0299086831510067, 0.003847674699500203, 0.00612264359369874, 0.02421785145998001, 0.03418135270476341, 0.012818006798624992, -0.057962846010923386, 0.045599378645420074, 0.03521770238876343, -0.00668172724545002, 0.00560446921736002, -0.07898074388504028, -0.023272410035133362, 0.02901778556406498, -0.057635579258203506, 0.004286305047571659, 0.015308882109820843, -0.03596314415335655, 0.03047231212258339, -0.002652236493304372, 0.038944922387599945, 0.03181774914264679, -0.027363263070583344, -0.031345028430223465, -0.017281582579016685, 0.015063431113958359, 0.0000027964817945758114, 0.022690599784255028, 0.14057989418506622, -0.010072589851915836, -0.03698131442070007, -0.023526951670646667, -0.0012511193053796887, 0.018636109307408333, 0.01719067431986332, -0.027490533888339996, -0.0627627819776535, 0.014336167834699154, 0.022999687120318413, 0.014827070757746696, -0.03850856423377991, 0.07276264578104019, 0.007263537496328354, -0.0006471502711065114, 0.007931710220873356, -0.046944815665483475, -0.036308594048023224, -0.07599896192550659, 0.04472666233778, -0.001072144485078752, 0.00730899116024375, 0.038726743310689926, -0.005972645711153746, -0.019272465258836746, -0.0506538562476635, 0.08792607486248016, -0.03261773660778999, -0.007404444273561239, -0.005781739484518766, -0.022745143622159958, -0.011108939535915852, 0.007263537496328354, 0.035035885870456696, 0.015799785032868385, -0.012045290321111679, -0.0007369217928498983, 0.023508770391345024, -0.008077162317931652, 0.011372571811079979, -0.014336167834699154, -0.053272001445293427, 0.005154475104063749, 0.07170811295509338, 0.039781276136636734, -0.012372558936476707, -0.007954437285661697, -0.007318081799894571, -0.014717981219291687, 0.11876201629638672, -0.025581469759345055, 0.004584028385579586, 0.02561783231794834, 0.028145071119070053, -0.022799689322710037, 0.0018545201746746898, 0.019472461193799973, -0.02772689424455166, -0.0030590491369366646, 0.06287187337875366, -0.049672048538923264, 0.012990731745958328, 0.0317995660007, 0.017936119809746742, -0.018854288384318352, 0.003365863114595413, 0.006613546051084995, -0.010490765795111656, -0.021126985549926758, -0.021763339638710022, 0.030290495604276657, -0.022745143622159958, 0.04738117381930351, 0.018545201048254967, 0.004165852442383766, -0.02141788974404335, 0.043708495795726776, -0.011636205017566681, -0.044763024896383286, -0.03707222267985344, -0.005531742703169584, -0.021290618926286697, 0.02772689424455166, -0.022563328966498375, 0.017354309558868408, 0.019217919558286667, 0.029508689418435097, -0.009354418143630028, -0.007618078030645847, 0.043708495795726776, 0.035417698323726654, 0.035090431571006775, 0.0006289687007665634, 0.005031749606132507, 0.03009049966931343, 0.025472380220890045, -0.03927219286561012, 0.006059008184820414, 0.034072261303663254, 0.024581482633948326, -0.0015079339500516653, -0.06421730667352676, 0.007958982139825821, 0.007031722459942102, -0.0333995446562767, 0.027872346341609955, -0.020708808675408363, -0.02494511380791664, 0.0641082152724266, -0.03829038515686989, 0.04210851714015007, 0.028308704495429993, -0.02465420961380005, -0.08858060836791992, -0.00115850695874542, -0.050399310886859894, 0.04083580523729324, 0.0045181200839579105, -0.010854397900402546, 0.04585392028093338, -0.05956282466650009, -0.02179970219731331, -0.010218042880296707, -0.02096335031092167, -0.06218096986413002, -0.01526342798024416, -0.07694440335035324, -0.03163593262434006, 0.006790816318243742, 0.00031618887442164123, -0.025872373953461647, 0.03850856423377991, 0.04410848766565323, 0.02890869602560997, -0.04407212510704994, -0.01918155699968338, -0.01756339706480503, 0.00129316421225667, -0.0032090472523123026, 0.007449898403137922, 0.007995345629751682, -0.012190742418169975, -0.012099835090339184, 0.0007170356693677604, 0.005881737917661667, 0.04265396296977997, -0.045490287244319916, 0.000777830311562866, 0.06079917028546333, 0.002590873744338751, -0.07970800250768661, -0.022908778861165047, 0.02823597937822342, 0.04367213323712349, -0.037890393286943436, -0.07636259496212006, 0.010545310564339161, -0.0076498957350850105, 0.002820416120812297, 0.00851352047175169, 0.006477184593677521, 0.062035515904426575, 0.02163606882095337, -0.0028113252483308315, 0.029290510341525078, 0.031181393191218376, 0.0030113225802779198, 0.09985318034887314, 0.036544956266880035, -0.03952673450112343, 0.029781412333250046, 0.013308909721672535, 0.034472256898880005, 0.007222628686577082, 0.019527006894350052, -0.0030726853292435408, -0.01398162730038166, -0.023163320496678352, -0.04494484141469002, 0.015590696595609188, -0.013390726409852505, 0.00025468404055573046, 0.02756326086819172, 0.024399667978286743, -0.006104462314397097, 0.02241787686944008, 0.020454267039895058, 0.0033749539870768785, -0.027199629694223404, 0.02349058911204338, 0.029108693823218346, -0.007186265662312508, -0.02163606882095337, -0.0105725834146142, -0.04989022761583328, 0.0049408418126404285, -0.028835970908403397, -0.006718090269714594, -0.011954382061958313, 0.03176320344209671, 0.03629041463136673, 0.00033067731419578195, -0.02616328001022339, -0.023472407832741737, 0.02839961275458336, 0.0069817230105400085, -0.0011920292163267732, 0.02699963189661503, -0.05447198450565338, -0.02309059351682663, 0.08472611755132675, 0.013272546231746674, 0.03187229111790657, -0.009945319034159184, -0.0029545051511377096, -0.012781644240021706, -0.04345395416021347, -0.000434653164120391, 0.05541742593050003, -0.03699949383735657, -0.04396303743124008, 0.01120893843472004, 0.04567210376262665, 0.0016931587597355247, 0.01411798968911171, -0.07658077031373978, 0.1031985953450203, 0.03025413304567337, -0.01742703467607498, 0.03432680293917656, -0.02561783231794834, 0.005645377561450005, -0.023054230958223343, -0.006927178241312504, -0.031181393191218376, -0.03699949383735657, 0.028308704495429993, 0.030854124575853348, -0.03521770238876343, -0.02845415659248829, 0.016254324465990067, -0.0063635497353971004, -0.03814493492245674, -0.03792675584554672, 0.059235554188489914, 0.02029063180088997, -0.029654141515493393, 0.026145098730921745, 0.010054408572614193, -0.01020895130932331, 0.021672431379556656, -0.006986268330365419, -0.0034408620558679104, 0.04141761735081673, -0.015163430012762547, 0.04709026589989662, -0.060471903532743454, -0.06054462864995003, -0.03792675584554672, 0.002190879313275218, -0.02405421808362007, -0.026763271540403366, 0.022526966407895088, 0.017772484570741653, -0.020545175299048424, -0.016799770295619965, 0.05043567717075348, 0.003654495580121875, 0.025454198941588402, -0.055999238044023514, 0.05665377154946327, -0.07290809601545334, 0.06010827049612999, 0.01581796631217003, -0.0042363060638308525, -0.019472461193799973, 0.0035090430174022913, -0.01729976385831833, -0.018090661615133286, -0.04250851273536682, -0.006581728346645832, 0.0013465725351125002, -0.06396276503801346, -0.007131720893085003, -0.020454267039895058, -0.08152616024017334, 0.012781644240021706, 0.045599378645420074, 0.0012772553600370884, 0.0371813103556633, 0.002126107458025217, -0.021836066618561745, -0.02214515209197998, 0.035872239619493484, 0.027654169127345085, -0.0799989104270935, 0.004029490519315004, 0.014627072960138321, -0.01834520511329174, 0.05239928513765335, 0.05167202278971672, 0.014545256271958351, -0.012345286086201668, 0.012636191211640835, 0.06287187337875366, -0.014672527089715004, -0.06156279519200325, 0.006077189929783344, 0.021726977080106735, -0.0978168472647667, -0.033963173627853394, -0.019381554797291756, 0.0022579238284379244, -0.04887206107378006, 0.04079944267868996, 0.030963214114308357, 0.011263483203947544, -0.01727249100804329, -0.04407212510704994, -0.03627223148941994, 0.019672458991408348, 0.007399898953735828, -0.02505420334637165, -0.0487629696726799, 0.053417451679706573, -0.0420357920229435, 0.017281582579016685, -0.011536206118762493, 0.005536288022994995, -0.03176320344209671, -0.03507224842905998, -0.0022113334853202105, -0.03330863639712334, 0.03629041463136673, -0.09556233137845993, 0.0350177027285099, -0.030490493401885033, -0.01356345135718584, 0.04461757466197014, 0.05490834265947342, 0.03876310959458351, 0.02583601139485836, -0.027326900511980057, -0.0049817501567304134, 0.015336154960095882, -0.03650859370827675, -0.007040813099592924, 0.005327200051397085, 0.05239928513765335, -0.034254077821969986, 0.01990881934762001, 0.0018192933639511466, 0.03478134423494339, -0.052253831177949905, 0.011181665584445, -0.05385380983352661, 0.06178097426891327, 0.018945196643471718, -0.09010786563158035, -0.013845265842974186, 0.01322709210216999, 0.033690448850393295, -0.006095371209084988, -0.01000895444303751, 0.040181271731853485, -0.003136320970952511, 0.007640805095434189, -0.002493147738277912, 0.037890393286943436, -0.028363250195980072, -0.04509029537439346, -0.014972522854804993, 0.01492706872522831, -0.035417698323726654, 0.030017772689461708, 0.00441130343824625, 0.019217919558286667, 0.019945181906223297, -0.009845320135354996, -0.02225424163043499, -0.014972522854804993, -0.01159984152764082, 0.08698063343763351, -0.003081776201725006, 0.027217810973525047, -0.0350177027285099, 0.07476262003183365, -0.021854247897863388, 0.0014988431939855218, 0.008554428815841675, 0.008572610095143318, 0.013127094134688377, -0.06985359638929367, 0.0022158788051456213, -0.01271800883114338, -0.02136334590613842, 0.08203524351119995, 0.029454143717885017, -0.004234033171087503, -0.04734480753540993, 0.05196292698383331, -0.060362812131643295, 0.05229019746184349, -0.08203524351119995, -0.010127134621143341, -0.02090880647301674, -0.01929064653813839, -0.017036130651831627, -0.020199725404381752, 0.038835834711790085, 0.008386249653995037, 0.0025499651674181223, 0.054217442870140076, 0.01889065094292164, 0.016799770295619965, 0.026308732107281685, 0.031163211911916733, 0.04679936170578003, 0.07628986984491348, 0.03730858117341995, -0.030726853758096695, 0.02712690271437168, 0.03241774067282677, 0.004365849774330854, -0.03974491357803345, -0.02572692185640335, 0.0029272327665239573, -0.017281582579016685, -0.01378163043409586, 0.009736230596899986, -0.019272465258836746, 0.017772484570741653, -0.06290823221206665, -0.026763271540403366, -0.07199902087450027, 0.00441130343824625, 0.02521783858537674, 0.03254501149058342, -0.008731699548661709, 0.000957373296841979, 0.011863474734127522, -0.028145071119070053, 0.03439953178167343, 0.044144853949546814, -0.014254351146519184, -0.009527143090963364, -0.047562986612319946, -0.011090758256614208, 0.02041790261864662, 0.04963568598031998, -0.0005016977083869278, -0.05290836840867996, 0.020490629598498344, -0.0004366417706478387, -0.037272218614816666, 0.01238164957612753, -0.025599651038646698, 0.06189006567001343, 0.04210851714015007, 0.012818006798624992, 0.01745430752635002, 0.035254064947366714, -0.058071933686733246, -0.03467225283384323, 0.015427062287926674, -0.06269005686044693, 0.02834506891667843, -0.025181474164128304, -0.12021654099225998, -0.02270878106355667, -0.0773080363869667, 0.02465420961380005, -0.01848156563937664, -0.03730858117341995, -0.04145397990942001, -0.009945319034159184, -0.05098112300038338, 0.005072657950222492, 0.0211451668292284, -0.05439925938844681, -0.024126943200826645, -0.03376317769289017, 0.010181679390370846, -0.008408975787460804, -0.0033249547705054283, -0.00839079450815916, -0.00204088119789958, 0.0022545147221535444, -0.01613614335656166, 0.07963527739048004, 0.002995413728058338, 0.00011448707664385438, -0.07701712846755981, 0.041126713156700134, 0.12152561545372009, 0.003434044076129794, -0.01780884899199009, -0.05781739205121994, 0.015027067624032497, -0.013472543098032475, 0.002001109067350626, 0.029217783361673355, 0.01576342061161995, -0.011736203916370869, -0.03876310959458351, 0.0003585178346838802, 0.05076294392347336, 0.021890610456466675, 0.04701754078269005, 0.03236319497227669, 0.025526924058794975, -0.04134489223361015, -0.07068994641304016, -0.042908504605293274, -0.043708495795726776, -0.01804520934820175, -0.03014504350721836, -0.015017976984381676, 0.05694467946887016, -0.04178124666213989, 0.0038272205274552107, 0.0023726949002593756, 0.050908397883176804, -0.005877192597836256, 0.0428357794880867, 0.021726977080106735, -0.02325422875583172, 0.0029499598313122988, 0.049126602709293365, -0.020890623331069946, 0.06079917028546333, -0.02839961275458336, 0.03719949349761009, 0.0374540351331234, -0.03003595396876335, -0.007386262994259596, 0.02476329915225506, 0.0003056776477023959, -0.055999238044023514, -0.058581020683050156, -0.06818088889122009, 0.02481784299015999, -0.013190729543566704, -0.009008968248963356, 0.046108461916446686, 0.029872320592403412, 0.029672322794795036 ]
24,389
py3rijndael.rijndael
decrypt
null
def decrypt(self, cipher): assert len(cipher) % self.block_size == 0 ppt = bytes() offset = 0 v = self.iv while offset < len(cipher): block = cipher[offset:offset + self.block_size] decrypted = super().decrypt(block) ppt += self.x_or_block(decrypted, v) offset += self.block_size v = block pt = self.padding.decode(ppt) return pt
(self, cipher)
[ 0.0755571722984314, 0.0006530872778967023, 0.0154183404520154, 0.08527584373950958, 0.02866276726126671, -0.03766897693276405, 0.036481548100709915, 0.03872853145003319, 0.02172086015343666, 0.05688709765672684, 0.03799780458211899, 0.003135275561362505, -0.006919071543961763, 0.019510410726070404, -0.001952411257661879, 0.08724880963563919, 0.015619290061295033, -0.02893679030239582, 0.0078324805945158, -0.04709535837173462, 0.05221044644713402, -0.0014294846914708614, 0.01257763896137476, 0.036938250064849854, -0.046401165425777435, 0.027365727350115776, 0.034362439066171646, -0.009490316733717918, 0.00914778932929039, -0.03191450238227844, -0.007773108780384064, 0.005297770723700523, 0.0007290143985301256, 0.07204968482255936, -0.04957982897758484, 0.0032837046310305595, 0.037230540066957474, 0.013564120046794415, 0.008261782117187977, 0.005727073177695274, -0.021830469369888306, 0.0015996071742847562, 0.06645962595939636, -0.027018630877137184, -0.016094261780381203, -0.0042199487797915936, 0.03681037202477455, 0.00027630614931695163, -0.030708802863955498, 0.008846363984048367, 0.04230909422039986, -0.009928753599524498, 0.03724880889058113, 0.009362439624965191, 0.045451220124959946, -0.027749357745051384, -0.02756667695939541, 0.03580562397837639, -0.018048956990242004, 0.0468030646443367, -0.007439714390784502, -0.030416512861847878, -0.013911215588450432, 0.015582753345370293, -0.012769455090165138, 0.048739492893218994, 0.017464375123381615, 0.009472048841416836, 0.007923820987343788, 0.014313115738332272, 0.007727438118308783, 0.03410668298602104, -0.029758857563138008, 0.04819144681096077, -0.0057773105800151825, -0.05999268963932991, 0.017035074532032013, -0.004900438245385885, 0.0015801971312612295, -0.05977347120642662, -0.007480817846953869, -0.00039990179357118905, 0.044208984822034836, 0.06934599578380585, 0.046547312289476395, 0.024223601445555687, 0.0277858953922987, -0.0007307270425371826, -0.016505297273397446, 0.003932224586606026, -0.004135458264499903, -0.00024348052102141082, -0.01903543807566166, 0.03483740985393524, -0.0019295760430395603, 0.00813390500843525, 0.004505388904362917, 0.05626598000526428, -0.03507489711046219, -0.01806722581386566, 0.015774570405483246, 0.08578735589981079, -0.014440992847084999, -0.035750821232795715, -0.001496848650276661, 0.01982096955180168, -0.04797222837805748, 0.04066495969891548, 0.02953963913023472, -0.05516989156603813, 0.001505982712842524, 0.024698574095964432, -0.06350018084049225, -0.03748629614710808, -0.018359515815973282, -0.021592983976006508, -0.03938618674874306, -0.002838417887687683, -0.059517715126276016, 0.04062842205166817, 0.061563752591609955, -0.036262329667806625, -0.010449396446347237, -0.025922540575265884, -0.04439166560769081, -0.05564486235380173, -0.019437339156866074, 0.029576176777482033, 0.02807818539440632, -0.002701406367123127, -0.011728168465197086, 0.044355131685733795, -0.02108147367835045, 0.014386188238859177, -0.04921446368098259, -0.01815856620669365, 0.016012055799365044, 0.002049461007118225, -0.019053706899285316, 0.00838052574545145, 0.02457069605588913, 0.037139199674129486, 0.07402265071868896, 0.05907927826046944, -0.022195832803845406, -0.02690902166068554, 0.0008654548437334597, -0.013381438329815865, -0.002804165007546544, 0.017263425514101982, -0.012047861702740192, 0.0555717907845974, 0.0274205319583416, -0.028991594910621643, 0.0555717907845974, 0.007974058389663696, -0.021611250936985016, 0.060906097292900085, -0.05063938349485397, -0.0421629473567009, 0.0026991229970008135, 0.007668066769838333, -0.08301059156656265, 0.024753378704190254, 0.02952137216925621, -0.006256849970668554, 0.04373401403427124, -0.04088417813181877, -0.007891851477324963, -0.03134818747639656, -0.010851296596229076, -0.017318230122327805, -0.014203506521880627, 0.005466751754283905, 0.01618560403585434, -0.0007449990371242166, -0.03489221632480621, -0.05052977427840233, 0.041943732649087906, -0.07095359265804291, -0.022725610062479973, 0.03748629614710808, 0.014130434021353722, -0.0020802884828299284, 0.0025095907039940357, -0.0059599922969937325, 0.05308731645345688, 0.06536353379487991, -0.003932224586606026, -0.09616367518901825, -0.07036901265382767, -0.001317592104896903, -0.011198391206562519, -0.03260869160294533, -0.021830469369888306, 0.024022649973630905, 0.02866276726126671, 0.08344902843236923, -0.07318231463432312, -0.021592983976006508, -0.006101570557802916, -0.044793564826250076, -0.01053160335868597, -0.05155279114842415, -0.08564120531082153, -0.009312202222645283, -0.04453781247138977, 0.05034709349274635, -0.04439166560769081, -0.043770547956228256, 0.10084033012390137, 0.019218120723962784, 0.04782608523964882, 0.005028315354138613, -0.029612712562084198, -0.0178571417927742, -0.05780050903558731, 0.02886371687054634, 0.04004384204745293, 0.03679210692644119, -0.008462732657790184, 0.00452137365937233, -0.030379975214600563, 0.0037152902223169804, 0.012778588570654392, -0.017811471596360207, -0.01989404298365116, -0.012294482439756393, -0.03169528394937515, -0.002226433949545026, 0.029685785993933678, -0.01144501194357872, -0.03388746455311775, 0.0558275431394577, 0.06269637495279312, -0.013290097936987877, -0.02959444373846054, -0.04238216578960419, -0.06569235771894455, -0.012531968764960766, 0.01757398433983326, 0.0033567773643881083, 0.02142857015132904, 0.0274205319583416, 0.03905735909938812, 0.024040918797254562, -0.030580926686525345, 0.051297035068273544, -0.014879428781569004, 0.048812564462423325, -0.0069008031859993935, -0.04344172030687332, 0.008645414374768734, 0.011097916401922703, 0.01850566267967224, -0.008339421823620796, -0.015445742756128311, 0.009709535166621208, 0.025484105572104454, 0.0529046356678009, 0.02952137216925621, 0.010038362815976143, -0.03660942241549492, -0.024753378704190254, 0.06043112650513649, 0.003176379017531872, 0.0021579281892627478, -0.020094992592930794, -0.00013337195559870452, 0.00261691608466208, -0.010193642228841782, -0.065071240067482, 0.014395322650671005, 0.03200584277510643, 0.026196563616394997, 0.015171719714999199, 0.0010658338433131576, 0.05473145470023155, 0.013774204067885876, 0.0038888377603143454, 0.07862623035907745, -0.012468029744923115, -0.017108146101236343, 0.020643038675189018, -0.011143587529659271, 0.018907561898231506, 0.014842892996966839, -0.06708074361085892, 0.060394588857889175, 0.01903543807566166, -0.004617281258106232, -0.008152172900736332, 0.0005497579113580287, 0.01352758426219225, 0.025849469006061554, 0.0687614157795906, -0.006005662493407726, 0.030215563252568245, 0.0333942249417305, 0.009645597077906132, -0.03902082145214081, -0.03149433434009552, 0.018277309834957123, 0.028534891083836555, -0.0160303246229887, 0.01603945903480053, -0.009070148691534996, 0.002038043225184083, 0.0371757373213768, -0.05210083723068237, 0.02508220449090004, -0.009088417515158653, 0.05023748427629471, -0.030434779822826385, -0.006695286370813847, -0.01483375858515501, -0.01016623992472887, 0.02084398828446865, 0.03818048536777496, 0.03635367006063461, 0.06309828162193298, 0.006037632003426552, -0.04238216578960419, 0.05476798862218857, 0.025356227532029152, 0.014724149368703365, -0.03562294319272041, -0.010440262034535408, -0.00239541451446712, 0.019729629158973694, -0.008608877658843994, 0.026415782049298286, -0.0266898050904274, -0.023456336930394173, -0.06616733223199844, 0.04965290054678917, -0.061344534158706665, 0.011426744051277637, 0.031165506690740585, 0.01756484992802143, 0.09082937240600586, -0.05553525313735008, -0.02047862485051155, -0.023164046928286552, -0.0014899980742484331, 0.010686882771551609, -0.03227986767888069, -0.015436608344316483, -0.04282060265541077, 0.03492875024676323, -0.01126233022660017, -0.013253561221063137, 0.020661305636167526, -0.007380343042314053, -0.045085858553647995, -0.024077454581856728, 0.0039436426013708115, 0.0065582748502492905, 0.007855315692722797, -0.01851479522883892, 0.004092071205377579, 0.016724513843655586, 0.0021898974664509296, -0.015464010648429394, -0.048885636031627655, -0.014559735544025898, -0.03916696831583977, -0.05743514373898506, 0.015427473932504654, 0.029630981385707855, -0.03607964515686035, 0.0018724879482761025, 0.018048956990242004, 0.008024295791983604, -0.006138106808066368, -0.046693455427885056, -0.08505662530660629, 0.0497259721159935, 0.008430763147771358, 0.022104492411017418, 0.0038340333849191666, -0.0133449025452137, 0.02135549671947956, 0.019638288766145706, -0.007882717996835709, 0.01012970320880413, -0.0677749291062355, -0.037285346537828445, 0.0036148151848465204, 0.01655096746981144, -0.06445012241601944, -0.005402812734246254, 0.010056630708277225, 0.029850197955965996, 0.04738764837384224, 0.027018630877137184, 0.026342708617448807, -0.0526488833129406, -0.0504566989839077, -0.05253927409648895, 0.03916696831583977, 0.015171719714999199, -0.03417975828051567, 0.01086043007671833, 0.0016030323458835483, -0.00961819477379322, 0.02340153232216835, 0.043989766389131546, -0.06189258024096489, -0.022652538493275642, 0.0065582748502492905, 0.024040918797254562, 0.015180854126811028, -0.04687613993883133, -0.0026054985355585814, -0.06302520632743835, 0.019218120723962784, 0.0023588782642036676, 0.016596637666225433, 0.03396053984761238, 0.034234561026096344, -0.025264887139201164, 0.008069966919720173, -0.066788449883461, -0.06613079458475113, 0.019565215334296227, -0.059590790420770645, 0.03368651494383812, -0.0365728884935379, -0.0020357598550617695, -0.026708072051405907, -0.0555717907845974, 0.033924002200365067, 0.017071610316634178, -0.011746437288820744, 0.03624406084418297, 0.0385093130171299, -0.008937705308198929, -0.014166969805955887, 0.0475337915122509, 0.0019341431325301528, 0.02798684500157833, 0.026086954399943352, 0.0704420879483223, 0.016450492665171623, 0.031457796692848206, -0.05221044644713402, 0.05221044644713402, -0.0665326938033104, -0.011426744051277637, 0.03591523319482803, 0.02944829873740673, 0.008691084571182728, -0.015984654426574707, -0.028845449909567833, -0.029996344819664955, 0.015263061039149761, 0.04556082934141159, -0.014294846914708614, 0.037212274968624115, -0.02917427569627762, -0.010193642228841782, -0.017765801399946213, -0.048227984458208084, 0.004014431498944759, -0.0154183404520154, -0.03039824403822422, -0.02515527792274952, 0.016313480213284492, 0.03534891828894615, 0.001213691895827651, -0.05856776982545853, 0.025502372533082962, -0.004669802263379097, 0.00409892201423645, 0.021392034366726875, 0.05374497175216675, -0.017674459144473076, -0.030416512861847878, -0.0013575537595897913, -0.08527584373950958, -0.006256849970668554, -0.07541102916002274, -0.051004745066165924, 0.024735109880566597, -0.02259773388504982, -0.041724514216184616, 0.04139568656682968, -0.032261598855257034, 0.023164046928286552, -0.06284252554178238, 0.07519181072711945, -0.021392034366726875, 0.002022058703005314, 0.009937887080013752, -0.023492874577641487, 0.009234562516212463, -0.026196563616394997, 0.02654365822672844, -0.021483374759554863, -0.022926559671759605, 0.04208987578749657, 0.059371571987867355, -0.1294117569923401, -0.01888929307460785, -0.03872853145003319, 0.021392034366726875, 0.020898792892694473, 0.03184143081307411, 0.03344902768731117, 0.010522468946874142, 0.05133357271552086, 0.03302885964512825, -0.024113992229104042, -0.014897697605192661, 0.012897332198917866, -0.022579465061426163, 0.021976614370942116, 0.05886005982756615, -0.02011326141655445, 0.01742783933877945, 0.0409572497010231, 0.024662036448717117, 0.012440627440810204, 0.03836316987872124, 0.08271829783916473, -0.06671537458896637, -0.045378148555755615, -0.04307635873556137, -0.01918158493936062, -0.06065034121274948, 0.009718669578433037, -0.006663316860795021, -0.03154914081096649, -0.008572340942919254, 0.03953233361244202, -0.007795943878591061, 0.013911215588450432, -0.05447569862008095, -0.01954694837331772, -0.02084398828446865, 0.02108147367835045, 0.002232142724096775, -0.025264887139201164, -0.05502374470233917, 0.07468029856681824, -0.059736933559179306, 0.008818961679935455, 0.029996344819664955, 0.05739860609173775, -0.08330287784337997, -0.010084033012390137, -0.012586773373186588, 0.0051607596687972546, 0.04117646813392639, -0.05721592530608177, -0.0003625091048888862, 0.03956886753439903, -0.022360246628522873, 0.04344172030687332, 0.057252462953329086, 0.01655096746981144, 0.03971501439809799, -0.022689074277877808, 0.04018998518586159, 0.018998902291059494, -0.004309006035327911, -0.025210082530975342, 0.00896967388689518, 0.009120387025177479, -0.011499816551804543, 0.01793934777379036, -0.017519179731607437, -0.007636097259819508, 0.006891669239848852, -0.003486938076093793, -0.04373401403427124, -0.008942271582782269, 0.024625500664114952, -0.005804712884128094, -0.02712824009358883, -0.04282060265541077, 0.07738399505615234, -0.012440627440810204, -0.02508220449090004, 0.011463279835879803, 0.05535257235169411, 0.021264156326651573, 0.04797222837805748, 0.034070149064064026, 0.0022252921480685472, -0.05001826584339142, 0.022762145847082138, 0.047643400728702545, -0.0037769454065710306, 0.007028680760413408, -0.006055900361388922, 0.06335403025150299, -0.047497257590293884, -0.03456338867545128, -0.011508950963616371, -0.05206429958343506, 0.021757397800683975, 0.040263060480356216, 0.01617646962404251, 0.048008766025304794, -0.04282060265541077, 0.041505295783281326, -0.020222870633006096, 0.010120568796992302, -0.0031877965666353703, 0.005818414036184549, 0.02617829479277134, -0.0380343422293663, 0.03920350596308708, -0.011024843901395798, -0.02661673165857792, -0.03149433434009552, -0.001789139467291534, -0.01989404298365116, -0.034070149064064026, 0.12239677459001541, -0.0694556012749672, 0.02420533262193203, -0.030416512861847878, 0.03275483846664429, -0.010257580317556858, -0.0007649798644706607, 0.012623309157788754, 0.03187796473503113, 0.003528041299432516, 0.011856045573949814, 0.035531602799892426, 0.06879794597625732, -0.02020460180938244, 0.0014009407022967935, 0.009092984721064568, -0.024844719097018242, 0.006265984382480383, -0.012659845873713493, 0.10405553132295609, -0.03766897693276405, -0.010385457426309586, -0.021556446328759193, -0.04497624933719635, -0.05681402608752251, 0.049251001328229904, 0.029795395210385323, -0.04702228307723999, -0.0037312747444957495, -0.024040918797254562, 0.030708802863955498, 0.03953233361244202, -0.07563024759292603, -0.01771099679172039, -0.08673729747533798, 0.05823894217610359, 0.02886371687054634, 0.00046241318341344595, -0.006037632003426552, 0.011244062334299088, -0.006964741740375757, -0.06233101338148117, 0.007974058389663696, -0.00022207251458894461, -0.0409572497010231, 0.011956521309912205, 0.013564120046794415, -0.0030644864309579134, -0.009992691688239574, 0.02871757186949253, 0.030361708253622055, -0.0392400398850441, -0.021337229758501053, 0.015290463343262672, -0.060833025723695755, -0.007279867772012949, -0.03909389674663544, 0.09842892736196518, 0.024735109880566597, -0.003169528441503644, 0.006864266935735941, -0.0058503830805420876, -0.0137102659791708, -0.031037630513310432, 0.06795760989189148, -0.008878333494067192, -0.03792473301291466, -0.048081837594509125, -0.1204238161444664, -0.0033567773643881083, -0.03737668693065643, 0.0304713174700737, -0.03737668693065643, -0.02201315201818943, -0.02115454711019993, 0.007444281596690416, -0.009019911289215088, -0.020168066024780273, 0.06302520632743835, -0.060248441994190216, -0.05199122801423073, 0.022323710843920708, -0.014459260739386082, -0.0407014936208725, 0.001710357959382236, 0.01712641492486, -0.02886371687054634, -0.058421626687049866, -0.032389476895332336, 0.02281695045530796, 0.004025849048048258, -0.016870660707354546, -0.07665326446294785, 0.043989766389131546, 0.0943368598818779, -0.11033978313207626, 0.006722688674926758, -0.004208530765026808, 0.04351479560136795, -0.041943732649087906, 0.02084398828446865, 0.04106685891747475, 0.03766897693276405, -0.04731457307934761, -0.013646326959133148, -0.01012970320880413, 0.01655096746981144, -0.0035896964836865664, 0.05400072783231735, -0.01976616680622101, 0.02771282196044922, 0.04092071205377579, -0.0035737117286771536, -0.045889656990766525, 0.012367554940283298, -0.060394588857889175, -0.034526851028203964, -0.01969309337437153, 0.001059554168023169, -0.007722871378064156, 0.06726342439651489, -0.015719765797257423, 0.09711362421512604, -0.018396053463220596, 0.01982096955180168, -0.06540007144212723, 0.016605772078037262, 0.007905553095042706, 0.011107050813734531, -0.010823894292116165, 0.021538179367780685, -0.061417605727910995, 0.025922540575265884, -0.004576177801936865, 0.023237118497490883, -0.011472414247691631, 0.032334670424461365, -0.032188523560762405, -0.022542929276823997, -0.061709895730018616, -0.04103032127022743, -0.015363535843789577, 0.028370477259159088, -0.03151260316371918, -0.010202775709331036, -0.0011771555291488767, 0.028827181085944176 ]
24,390
py3rijndael.rijndael
encrypt
null
def encrypt(self, source: bytes): ppt = self.padding.encode(source) offset = 0 ct = bytes() v = self.iv while offset < len(ppt): block = ppt[offset:offset + self.block_size] block = self.x_or_block(block, v) block = super().encrypt(block) ct += block offset += self.block_size v = block return ct
(self, source: bytes)
[ -0.029419897124171257, -0.07373730093240738, 0.010583660565316677, 0.03290312737226486, 0.019559677690267563, -0.04569283500313759, -0.01852363906800747, 0.034117791801691055, 0.0872415155172348, 0.011834051460027695, 0.048265065997838974, -0.031706325709819794, 0.034993067383766174, 0.05240921676158905, -0.004092795308679342, 0.03715445473790169, 0.018228905275464058, -0.0609118714928627, -0.014040096662938595, -0.04947973042726517, 0.04887240007519722, -0.002200463553890586, 0.02297145687043667, 0.005707138683646917, -0.037440259009599686, 0.060483165085315704, 0.025079257786273956, -0.007069170940667391, -0.05094447359442711, -0.0703076645731926, 0.0306345634162426, -0.026722626760601997, -0.021685341373085976, 0.019130971282720566, -0.0061760349199175835, 0.0005420218803919852, 0.034367870539426804, -0.024668414145708084, 0.008944756351411343, -0.040941350162029266, -0.017023170366883278, 0.00886437389999628, 0.00529629597440362, -0.029705701395869255, 0.016531946137547493, 0.005622290540486574, 0.002893760334700346, 0.01943463832139969, 0.03449290990829468, 0.00017765031952876598, 0.0017751076957210898, 0.003262178972363472, 0.04694322496652603, -0.0033827524166554213, 0.07881031185388565, 0.016799887642264366, -0.02279282920062542, -0.0003363215073477477, -0.00927968230098486, 0.04737193137407303, 0.01918455958366394, -0.007310317829251289, 0.05758940428495407, 0.00716741569340229, -0.018809443339705467, 0.013245206326246262, -0.027776528149843216, 0.013923989608883858, 0.023007182404398918, 0.009181437082588673, 0.031063267961144447, -0.007430891040712595, -0.011834051460027695, 0.03997676447033882, -0.07645243406295776, 0.021328086033463478, -0.021685341373085976, 0.0695931538939476, 0.012191305868327618, -0.06512746959924698, 0.04876522347331047, -0.034153517335653305, 0.018184248358011246, 0.053230900317430496, 0.08316881954669952, -0.002256284700706601, -0.08545524626970291, 0.015996064990758896, 0.017934169620275497, -0.034993067383766174, 0.006158172152936459, 0.04254899546504021, -0.03270663693547249, 0.05033713951706886, 0.040977075695991516, 0.02702629379928112, 0.010020985268056393, -0.0016121104126796126, -0.006787833292037249, 0.04151295870542526, -0.008828648366034031, 0.10160314291715622, -0.011316032148897648, -0.009985259734094143, 0.006551152095198631, -0.0259723924100399, -0.037547435611486435, 0.031706325709819794, 0.037440259009599686, -0.00748447934165597, 0.03363550081849098, -0.04705040156841278, -0.06755680590867996, -0.0609118714928627, 0.011896570213139057, -0.04015539214015007, 0.020506400614976883, 0.018193179741501808, -0.03390343859791756, 0.028973329812288284, 0.09474386274814606, 0.008324027061462402, 0.025472236797213554, -0.004800605587661266, -0.015076134353876114, -0.05626756325364113, -0.0024025356397032738, -0.009967396967113018, -0.006314470898360014, -0.08002498000860214, 0.011450002901256084, 0.002407001331448555, -0.013557803817093372, 0.029276996850967407, -0.00294511578977108, -0.02297145687043667, 0.03452863544225693, 0.0071450877003371716, 0.001320724724791944, -0.010333582758903503, 0.04215601459145546, 0.040941350162029266, 0.0312776193022728, 0.015656672418117523, 0.0062162261456251144, -0.02338229864835739, 0.03183136507868767, -0.018791580572724342, 0.044335268437862396, 0.015290487557649612, 0.01911310851573944, 0.01589781977236271, 0.026936979964375496, 0.021649615839123726, 0.01947036385536194, 0.014191930182278156, -0.022346261888742447, 0.0006391503848135471, -0.0026079569943249226, 0.010878395289182663, 0.03038448467850685, -0.009779838845133781, -0.05573168396949768, 0.024346886202692986, 0.01757691614329815, 0.008931359276175499, -0.025472236797213554, 0.004012413322925568, -0.03513596951961517, -0.0612691268324852, 0.0217389278113842, -0.06669939309358597, -0.027329958975315094, 0.025865215808153152, 0.06855711340904236, -0.00419550621882081, -0.04512122645974159, -0.00855177640914917, 0.012432452291250229, -0.07895321398973465, -0.03640422224998474, 0.04337068274617195, -0.0013519845670089126, 0.019827617332339287, -0.018139591440558434, -0.032224345952272415, 0.05984010919928551, 0.06319829821586609, 0.02279282920062542, -0.070736363530159, -0.04944400489330292, -0.026490412652492523, -0.02072075381875038, 0.009069795720279217, -0.013531009666621685, 0.03172418847680092, -0.0037109798286110163, 0.015013614669442177, -0.0431920550763607, 0.04951545596122742, -0.04019111767411232, -0.027633626013994217, 0.029491348192095757, -0.03390343859791756, -0.009034070186316967, -0.029437759891152382, -0.02527574636042118, 0.00372437690384686, -0.03442145884037018, -0.06262668967247009, 0.06294821947813034, 0.016639122739434242, 0.02268565259873867, 0.0013776621781289577, -0.04415664076805115, -0.006961994804441929, -0.02968783862888813, 0.0021569232922047377, 0.018362874165177345, 0.013307725079357624, 0.01988120563328266, 0.024596963077783585, -0.03292099013924599, -0.0306345634162426, 0.0528021976351738, -0.05048004165291786, -0.033974889665842056, 0.002440494019538164, -0.023507338017225266, -0.01988120563328266, 0.10367521643638611, 0.006917337886989117, -0.02713347040116787, 0.09145712107419968, 0.051480356603860855, -0.017621571198105812, -0.005872368812561035, -0.06927162408828735, -0.0695931538939476, -0.011753669008612633, -0.011074885725975037, -0.01794310100376606, 0.06009018421173096, 0.008609830401837826, 0.02768721431493759, 0.006260883063077927, -0.022739240899682045, 0.04765773192048073, 0.014459870755672455, 0.03851202130317688, -0.03333183377981186, -0.0008434552582912147, -0.026508275419473648, -0.00862322747707367, -0.0008127536857500672, 0.0174697395414114, 0.0610547736287117, 0.049622632563114166, 0.02268565259873867, 0.027472861111164093, -0.032653048634529114, 0.01659446582198143, -0.04858659580349922, -0.03224220871925354, 0.06884291768074036, 0.012468177825212479, -0.0308846402913332, 0.013522078283131123, -0.0035211883950978518, 0.0035814750008285046, 0.021167321130633354, -0.01128923799842596, 0.021238772198557854, 0.06934307515621185, 0.04204884171485901, -0.05219486355781555, 0.02118518389761448, 0.0696646049618721, 0.036046966910362244, -0.03084891475737095, 0.0524449422955513, 0.033385422080755234, -0.03890500217676163, -0.04233464226126671, -0.020595714449882507, 0.0022428876254707575, 0.009127849712967873, -0.09924526512622833, -0.012468177825212479, -0.01486178208142519, -0.023078633472323418, -0.00000836442723084474, -0.012646804563701153, 0.008082880638539791, 0.02534719742834568, 0.037475984543561935, -0.03150983527302742, 0.012021609582006931, -0.005595496855676174, 0.02034563571214676, -0.02688339166343212, 0.005943819880485535, 0.015549496747553349, 0.027472861111164093, -0.03347473591566086, 0.011494659818708897, -0.021470988169312477, 0.013039784505963326, -0.0027396944351494312, -0.07423745840787888, -0.007774748373776674, 0.0029696770943701267, 0.028348134830594063, -0.02366810292005539, 0.015433388762176037, 0.008163262158632278, 0.012503903359174728, 0.020810067653656006, 0.01596927084028721, 0.026097431778907776, 0.04226319119334221, 0.024829179048538208, -0.046157266944646835, 0.03193854168057442, -0.015031477436423302, -0.00016034580767154694, 0.04315632954239845, -0.020327774807810783, 0.0005409054574556649, -0.02388245426118374, -0.014379488304257393, 0.023185808211565018, 0.030152268707752228, -0.003333629807457328, -0.11517880856990814, 0.024829179048538208, -0.02016700990498066, 0.017782336100935936, 0.020506400614976883, -0.0016456029843539, 0.07359439879655838, 0.006350196432322264, 0.0033872181084007025, -0.005591031163930893, -0.035761162638664246, -0.0441923663020134, -0.03322465717792511, -0.027740802615880966, -0.051516082137823105, 0.019559677690267563, -0.01988120563328266, 0.015424457378685474, 0.07673823833465576, -0.0003603245422709733, -0.015495908446609974, -0.04036974534392357, 0.025847354903817177, -0.044442445039749146, 0.0008077298407442868, 0.009127849712967873, 0.029437759891152382, 0.032438695430755615, 0.023685965687036514, -0.0010907422984018922, -0.06448441743850708, 0.04930110275745392, -0.02009555883705616, -0.049944162368774414, -0.005720535758882761, 0.053338076919317245, -0.05055149272084236, -0.04408518970012665, -0.013138029724359512, 0.005917025730013847, -0.011065954342484474, -0.0522305890917778, -0.06248379126191139, 0.012066266499459743, 0.001233643968589604, 0.0018141823820769787, 0.048050712794065475, 0.005457060411572456, -0.008940290659666061, -0.006957529112696648, 0.01601392775774002, 0.029348446056246758, 0.03511810675263405, -0.021238772198557854, 0.0355110839009285, 0.024025356397032738, -0.06355555355548859, -0.005153394304215908, 0.04572856053709984, 0.012316344305872917, 0.006265348754823208, -0.0035948720760643482, 0.012852226383984089, -0.0215603020042181, -0.019059520214796066, -0.0610547736287117, 0.05626756325364113, 0.020488537847995758, 0.03368908911943436, 0.00568034453317523, -0.0001336912828264758, -0.05544587969779968, 0.04058409854769707, -0.018720129504799843, -0.014308037236332893, -0.03722590580582619, -0.04890812560915947, 0.05794665962457657, 0.04190593957901001, -0.017451876774430275, -0.006265348754823208, -0.09131421893835068, -0.022953594103455544, -0.07802435755729675, -0.009753044694662094, 0.04194166511297226, 0.024829179048538208, -0.02264992706477642, 0.009753044694662094, -0.033760540187358856, -0.014075822196900845, -0.023292984813451767, -0.025293609127402306, 0.025079257786273956, -0.019666852429509163, 0.0008607597555965185, -0.04840796813368797, -0.006711916532367468, 0.046478793025016785, 0.018291423097252846, -0.0441923663020134, 0.032224345952272415, 0.04697895050048828, -0.002169203944504261, 0.03672574833035469, 0.07395165413618088, 0.02888401597738266, -0.023721691220998764, -0.01600499637424946, 0.08324027061462402, 0.005975079257041216, 0.025650864467024803, -0.08859908580780029, 0.03038448467850685, -0.044656798243522644, 0.02038136124610901, 0.02888401597738266, -0.023936042562127113, 0.0037801978178322315, 0.01688920147716999, -0.05076584592461586, 0.0003064572811126709, 0.018175316974520683, 0.015951408073306084, -0.06616351008415222, 0.010405033826828003, -0.00612691231071949, 0.01932746171951294, 0.048086438328027725, -0.015263693407177925, -0.005095340311527252, -0.02097083255648613, -0.04019111767411232, -0.023167945444583893, 0.048050712794065475, 0.04251326993107796, 0.03708300366997719, -0.027580037713050842, -0.02450764924287796, 0.02027418650686741, 0.04783635959029198, 0.012798638083040714, 0.015469114296138287, 0.003684185678139329, -0.016246141865849495, -0.013263069093227386, -0.044442445039749146, -0.023060770705342293, 0.008297232910990715, -0.037475984543561935, 0.02206045761704445, -0.035207416862249374, 0.03658284619450569, 0.033242519944906235, 0.044299542903900146, 0.004063768312335014, -0.0347965769469738, 0.06698519736528397, -0.046085815876722336, 0.03318893164396286, -0.02122090943157673, -0.010128161869943142, -0.029705701395869255, -0.04086989909410477, -0.0065824119374156, 0.004438885487616062, -0.041334331035614014, 0.04905102401971817, 0.006153706461191177, -0.09717319160699844, 0.04169158637523651, 0.011575041338801384, -0.019684715196490288, 0.037940412759780884, 0.027526449412107468, 0.04858659580349922, 0.001288348576053977, 0.005394541192799807, 0.01579064317047596, -0.01267359871417284, -0.007453219499439001, 0.008029292337596416, -0.042906250804662704, 0.03460008651018143, 0.010637248866260052, -0.06305539608001709, 0.01347742136567831, 0.06405571103096008, -0.002096636686474085, -0.009395790286362171, 0.01925601065158844, 0.09338629245758057, -0.010306788608431816, -0.07566647976636887, -0.07212965935468674, 0.0433349572122097, -0.0863841101527214, -0.0027888170443475246, 0.011968021281063557, 0.006738710682839155, -0.04847941920161247, 0.04515695199370384, -0.030473798513412476, 0.030134405940771103, -0.00320412521250546, -0.03259946033358574, -0.04322778061032295, 0.020184872671961784, 0.007680968847125769, 0.024525512009859085, -0.03990531340241432, 0.08009643107652664, -0.00924395676702261, 0.0010081272339448333, -0.020542126148939133, 0.025668727234005928, -0.07323714345693588, -0.03633277118206024, -0.007872993126511574, 0.0610547736287117, 0.03322465717792511, -0.07838161289691925, -0.00082280149217695, 0.02524002082645893, -0.02359665185213089, 0.08402623236179352, 0.08359752595424652, 0.0006330101168714464, 0.002717365976423025, -0.053230900317430496, -0.02443620003759861, 0.013682842254638672, -0.0076229153200984, -0.019059520214796066, 0.0024985477793961763, 0.046121541410684586, -0.005385609809309244, 0.021578164771199226, -0.0351538322865963, 0.03615414351224899, -0.02695484273135662, 0.004313846584409475, -0.09352919459342957, 0.01496895868331194, 0.016272936016321182, -0.05626756325364113, -0.04394228756427765, -0.034993067383766174, 0.09381499886512756, -0.025811629369854927, 0.026204608380794525, 0.0022350726649165154, 0.021863967180252075, -0.0029317187145352364, -0.022632064297795296, 0.04372793436050415, -0.03192067891359329, -0.04733620584011078, -0.0016500686760991812, 0.03704727813601494, 0.037404533475637436, -0.01995265670120716, -0.022328399121761322, 0.05076584592461586, -0.008524982258677483, -0.024007493630051613, -0.01444200798869133, -0.014433076605200768, -0.005461526103317738, 0.08488363772630692, 0.020149147137999535, 0.021024420857429504, -0.0439780130982399, 0.007555929943919182, -0.004186574835330248, -0.015138654038310051, 0.034153517335653305, 0.03808331489562988, 0.009547622874379158, -0.10017412900924683, -0.03872637450695038, -0.00869914423674345, -0.03869064897298813, 0.0019448035163804889, 0.003096948843449354, 0.0031527697574347258, -0.02516856975853443, 0.06934307515621185, -0.07352294772863388, 0.00011254908167757094, -0.0352252796292305, 0.03363550081849098, -0.023150082677602768, 0.027955153957009315, -0.004095028154551983, 0.004391996189951897, 0.025436511263251305, 0.025114983320236206, 0.021274497732520103, 0.05537442862987518, -0.003641761839389801, -0.0005004352424293756, -0.02552582509815693, 0.003333629807457328, -0.032510146498680115, 0.011968021281063557, 0.020542126148939133, -0.0008456881041638553, -0.003954359330236912, 0.016040721908211708, -0.028098056092858315, -0.05612466111779213, -0.0076988316141068935, -0.012173443101346493, -0.09760189801454544, -0.03704727813601494, 0.007788145449012518, -0.042834799736738205, 0.05926850065588951, -0.030545249581336975, 0.0023623446468263865, 0.001436832477338612, 0.019613265991210938, 0.017371494323015213, 0.026633312925696373, -0.04576428607106209, 0.030027229338884354, 0.017300043255090714, -0.037547435611486435, 0.004979232791811228, -0.008569639176130295, -0.021274497732520103, -0.007613983936607838, -0.04172731190919876, -0.00955655425786972, -0.010672974400222301, 0.0028156109619885683, -0.01638011261820793, -0.0868842601776123, 0.017567984759807587, 0.03295671567320824, -0.07155805081129074, 0.01729111187160015, -0.05637473985552788, 0.034153517335653305, 0.014674223028123379, -0.05566023290157318, 0.008721472695469856, 0.017049964517354965, -0.0703791081905365, -0.037761788815259933, 0.03826194256544113, -0.06130485236644745, -0.02972356416285038, -0.017532259225845337, -0.1228955015540123, -0.0009506315691396594, -0.02804446779191494, 0.006095652934163809, 0.00001078915192920249, 0.0031929609831422567, 0.0004577321815304458, 0.03554680943489075, -0.02020273543894291, -0.05898269638419151, 0.013611392118036747, -0.017005307599902153, -0.01496895868331194, 0.0076229153200984, -0.017166072502732277, -0.01984548009932041, -0.0132898623123765, 0.046550244092941284, -0.019684715196490288, -0.010681905783712864, -0.010092436335980892, 0.053445253521203995, 0.0005149486823938787, -0.004168712068349123, -0.02005983330309391, 0.05562450736761093, 0.09524401277303696, -0.06323402374982834, -0.008105208165943623, -0.006903940811753273, 0.0617692805826664, -0.003641761839389801, 0.04869377240538597, -0.0013229575706645846, -0.009368996135890484, -0.053266625851392746, 0.002360111800953746, -0.027615763247013092, -0.007578258402645588, 0.017657296732068062, 0.04476397484540939, -0.025704452767968178, 0.044871147722005844, 0.011968021281063557, -0.029527073726058006, -0.0065958090126514435, 0.05733932554721832, -0.08552669733762741, -0.020363498479127884, -0.05991156026721001, 0.013182686641812325, -0.03651139885187149, 0.03399275243282318, -0.0020162544678896666, 0.00606439309194684, 0.042941976338624954, -0.002256284700706601, 0.028491036966443062, -0.023685965687036514, 0.01409368496388197, 0.03879782557487488, -0.004349572118371725, 0.05058721825480461, -0.02082793042063713, -0.004456748254597187, 0.01863081566989422, -0.00041726193740032613, -0.03858347237110138, 0.04890812560915947, -0.00714062200859189, -0.00018281376105733216, -0.04237036779522896, -0.035296730697155, 0.044513896107673645, 0.025668727234005928, 0.007654175162315369, 0.009154642932116985, 0.04069127142429352, 0.08266866207122803 ]
24,391
py3rijndael.rijndael
x_or_block
null
def x_or_block(self, b1, b2): i = 0 r = bytes() while i < self.block_size: r += bytes([ord(b1[i:i+1]) ^ ord(b2[i:i+1])]) i += 1 return r
(self, b1, b2)
[ 0.01748071052134037, -0.06066060811281204, 0.026751715689897537, 0.07872898131608963, -0.016243992373347282, -0.051187872886657715, -0.055433060973882675, 0.047012850642204285, 0.006850193254649639, -0.02468174695968628, 0.09479755163192749, 0.000823382695671171, 0.021576793864369392, 0.04567965120077133, -0.07550123333930969, -0.016217678785324097, -0.00015431572683155537, -0.030803941190242767, -0.01805082894861698, -0.03645250201225281, -0.008692114613950253, 0.022383728995919228, 0.020348845049738884, 0.04224139451980591, -0.027646362781524658, 0.04911790415644646, -0.01006039883941412, 0.023120498284697533, -0.059923842549324036, 0.016033487394452095, 0.054731376469135284, -0.08272857964038849, 0.03215468302369118, -0.014007373712956905, 0.024506324902176857, 0.017726300284266472, 0.060765862464904785, 0.07872898131608963, 0.00919206440448761, -0.034926336258649826, -0.0021576792933046818, -0.03420710936188698, 0.03440007567405701, -0.022980161011219025, -0.03220731019973755, -0.05045110359787941, -0.03408431634306908, 0.017963118851184845, -0.019576992839574814, 0.046626921743154526, 0.028435757383704185, -0.01889285072684288, 0.007683443371206522, 0.02436598762869835, 0.05441562086343765, -0.015051128342747688, -0.03255815431475639, 0.0388382263481617, -0.09100845456123352, 0.052345652133226395, 0.008849993348121643, 0.030698688700795174, -0.01567387394607067, -0.02120840921998024, 0.017621047794818878, 0.009455196559429169, -0.05150362849235535, -0.017822781577706337, 0.0016007173107936978, 0.06918607652187347, -0.013621446676552296, 0.06332700699567795, -0.031382832676172256, 0.0206295195966959, -0.060064177960157394, -0.01307764183729887, 0.006468652281910181, 0.09472738206386566, 0.014761683531105518, -0.029961921274662018, 0.03810145705938339, -0.02455895207822323, 0.06469529122114182, -0.017261434346437454, -0.008819295093417168, 0.0018320538802072406, -0.011121696792542934, 0.017901720479130745, 0.016094883903861046, -0.08785087615251541, -0.026909593492746353, 0.006740555167198181, -0.012568920850753784, 0.027014845982193947, 0.0528368279337883, 0.011823381297290325, -0.03592623770236969, 0.030558351427316666, -0.016796568408608437, 0.00007763753092149273, -0.016094883903861046, 0.08672818541526794, -0.013630217872560024, -0.004903019405901432, 0.013621446676552296, 0.023295920342206955, -0.029277779161930084, -0.016480810940265656, 0.0029887366108596325, -0.03662792220711708, -0.0235239677131176, -0.04711810126900673, -0.04564456641674042, -0.007192264311015606, -0.03408431634306908, 0.028769057244062424, 0.04574981704354286, 0.05438053607940674, 0.02512029930949211, 0.03117232583463192, 0.09262233227491379, 0.00903418567031622, 0.037048932164907455, 0.029540909454226494, 0.02873397246003151, 0.010139338672161102, 0.06785287708044052, 0.009271004237234592, -0.007183493115007877, -0.01978749781847, 0.056906599551439285, 0.03539997339248657, -0.033768557012081146, 0.048240795731544495, -0.03375101462006569, 0.02147153951227665, 0.01599840261042118, 0.0026357017923146486, 0.04813554510474205, -0.017840323969721794, 0.030488183721899986, -0.008108839392662048, 0.07374702394008636, 0.04118886962532997, -0.04455695301294327, 0.018945476040244102, -0.021997803822159767, -0.023366088047623634, 0.08820171654224396, 0.029154984280467033, 0.03880314156413078, 0.02550622448325157, 0.0407678596675396, 0.029540909454226494, -0.0195419080555439, 0.03234764561057091, 0.012384728528559208, -0.007740455213934183, -0.028874309733510017, -0.0023374860174953938, 0.05715218931436539, 0.0022081127390265465, 0.007108939345926046, -0.001646765391342342, 0.015121296979486942, -0.03754011169075966, 0.010174422524869442, 0.030610978603363037, 0.017919262871146202, -0.018612176179885864, 0.01889285072684288, 0.001435163663700223, -0.03192663565278053, 0.0017432470340281725, 0.022471440955996513, -0.008819295093417168, -0.08546514809131622, -0.03555785492062569, -0.008779824711382389, -0.08651767671108246, 0.022524066269397736, 0.03368084877729416, -0.020068172365427017, -0.019506823271512985, 0.01314780954271555, 0.020927734673023224, 0.042767658829689026, 0.03701384738087654, 0.057608284056186676, -0.02248898334801197, -0.06974741816520691, 0.007608889602124691, -0.026944678276777267, -0.0030457484535872936, 0.048240795731544495, 0.008332501165568829, 0.017243891954421997, 0.03648758307099342, -0.047468945384025574, 0.02975141443312168, -0.030944278463721275, -0.0410134494304657, -0.0026378945913165808, 0.011402370408177376, 0.03331246227025986, -0.06374802440404892, 0.040136344730854034, 0.05374901741743088, -0.022927535697817802, -0.04417102783918381, 0.037961121648550034, 0.0035676262341439724, -0.004089504014700651, 0.04003109037876129, -0.012033886276185513, 0.045469142496585846, -0.019489282742142677, 0.02890939451754093, -0.035768359899520874, 0.007266818080097437, 0.06069569289684296, 0.005582775920629501, 0.03624199703335762, -0.010253362357616425, 0.010253362357616425, 0.044767457991838455, -0.039224155247211456, 0.011191864497959614, -0.0019416920840740204, 0.02755865268409252, 0.05199480801820755, 0.0629761666059494, -0.010955046862363815, 0.026383331045508385, 0.009920062497258186, -0.050170429050922394, 0.02036638744175434, -0.026909593492746353, -0.04883722960948944, 0.025611476972699165, -0.0185770932585001, -0.010420012287795544, 0.059151988476514816, -0.025558851659297943, -0.000512010301463306, -0.04441661760210991, 0.0314880833029747, -0.02222585119307041, -0.03662792220711708, 0.02583952434360981, -0.02936548925936222, -0.004030299372971058, 0.0255763940513134, -0.012568920850753784, 0.03527718037366867, 0.003306687343865633, 0.04648658633232117, -0.030681146308779716, 0.02236618846654892, 0.06381818652153015, 0.006578290369361639, 0.07444870471954346, -0.04950382933020592, -0.0658530741930008, 0.02911989949643612, -0.008762283250689507, -0.023944977670907974, 0.053573597222566605, -0.018857765942811966, 0.026716630905866623, 0.047714535146951675, -0.0658530741930008, -0.0158668365329504, 0.07522056251764297, -0.0316108800470829, -0.025979861617088318, 0.08272857964038849, 0.009718327783048153, 0.023681845515966415, -0.033522967249155045, 0.011121696792542934, 0.03143545612692833, -0.034031689167022705, 0.0007954249740578234, -0.01792803406715393, 0.0050389706157147884, 0.01806837134063244, -0.08195672929286957, -0.00019707462342921644, -0.08055336028337479, 0.030032088980078697, 0.018787598237395287, 0.019191065803170204, -0.009709556587040424, 0.005113524384796619, 0.01774384267628193, 0.006525664124637842, 0.00007386872312054038, 0.009227149188518524, 0.04525863751769066, -0.06929132342338562, -0.003451409749686718, -0.0019066078821197152, -0.0024756300263106823, 0.005806437693536282, -0.06872998178005219, 0.06518647074699402, 0.04094327986240387, -0.0038110229652374983, -0.008332501165568829, -0.01249875221401453, -0.0050740549340844154, 0.036803342401981354, -0.028137540444731712, 0.013910891488194466, 0.04297816380858421, 0.06020451337099075, 0.07634325325489044, -0.006214291788637638, 0.03432990610599518, 0.049959924072027206, -0.026014946401119232, 0.006144123151898384, 0.04981958866119385, -0.028558552265167236, -0.013796867802739143, -0.023313460871577263, -0.04543406143784523, -0.0024120397865772247, 0.03117232583463192, -0.039750415831804276, 0.028242794796824455, 0.037890952080488205, 0.03599640727043152, -0.04620591178536415, -0.012454897165298462, 0.02666400372982025, 0.017059700563549995, -0.0021357517689466476, -0.016884278506040573, 0.011884777806699276, 0.02326083555817604, 0.0253308042883873, -0.05602949485182762, -0.01845429837703705, -0.019506823271512985, -0.04617082700133324, 0.02410285733640194, -0.025716731324791908, 0.014779225923120975, 0.01620013639330864, -0.005267017986625433, 0.023822182789444923, -0.03013734146952629, 0.018226251006126404, 0.019559450447559357, -0.041680049151182175, 0.0011687430087476969, -0.0009631713619455695, 0.06978250294923782, -0.019296318292617798, 0.015068670734763145, -0.023541508242487907, -0.010174422524869442, -0.036663006991147995, 0.0064204116351902485, -0.05522255599498749, 0.034926336258649826, -0.06448478996753693, -0.019612077623605728, -0.06399361044168472, 0.012419812381267548, 0.00026381685165688396, -0.04280274361371994, 0.005455595441162586, -0.008569319732487202, -0.07543106377124786, -0.02661137841641903, 0.01599840261042118, 0.004635502118617296, 0.020647061988711357, -0.03606657311320305, -0.007867635227739811, 0.01307764183729887, -0.02610265649855137, 0.06694068759679794, -0.017243891954421997, -0.028716430068016052, 0.01626153476536274, 0.059362493455410004, -0.0009604304214008152, -0.03964516520500183, 0.0015294525073841214, -0.020278677344322205, -0.007955346256494522, 0.006845807656645775, 0.0434342585504055, 0.012551378458738327, -0.019612077623605728, -0.07802729308605194, 0.0012323331320658326, 0.08609666675329208, -0.041925638914108276, -0.00525386119261384, 0.015515994280576706, 0.003429482225328684, 0.0037825170438736677, 0.012718028388917446, -0.029084814712405205, -0.0066396878100931644, -0.10525264590978622, 0.002004185924306512, 0.026014946401119232, -0.05866080895066261, -0.05546814575791359, -0.04389035329222679, -0.00433947890996933, -0.01567387394607067, 0.014858165755867958, 0.03404923155903816, 0.015033586882054806, -0.01034984365105629, 0.021418914198875427, -0.0721331462264061, 0.0008294127765111625, -0.014796768315136433, 0.033330004662275314, 0.05192463845014572, -0.009516594000160694, 0.04104853421449661, -0.0253308042883873, 0.004234226420521736, 0.003348349826410413, -0.006608989089727402, -0.0035106143914163113, -0.028330504894256592, 0.07486971467733383, -0.031189868226647377, 0.06680034846067429, 0.063712939620018, 0.039820585399866104, 0.020138340070843697, 0.017059700563549995, -0.001904415083117783, -0.03189155086874962, -0.013858265243470669, -0.031277578324079514, 0.019647160544991493, -0.004225455224514008, 0.039434660226106644, 0.015612476505339146, -0.0005832751048728824, 0.009402570314705372, -0.03989075496792793, -0.010560348629951477, -0.014700287021696568, 0.0138144101947546, -0.017182495445013046, -0.0407678596675396, -0.013963517732918262, -0.008981559425592422, -0.0028549782000482082, -0.06799320876598358, 0.007806238252669573, -0.011612875387072563, -0.007902720011770725, 0.005245090462267399, -0.002850592602044344, 0.06448478996753693, 0.05146854370832443, -0.03925923630595207, -0.0919206440448761, 0.009946375153958797, 0.006157279945909977, 0.056661009788513184, 0.015401970595121384, 0.002017342485487461, 0.015366886742413044, 0.0006293231272138655, -0.08616683632135391, -0.1160585880279541, -0.030803941190242767, -0.04301324859261513, -0.05417003110051155, 0.0851844772696495, -0.07023859769105911, 0.017200037837028503, -0.008911390788853168, 0.01992783509194851, -0.056520670652389526, 0.026523668318986893, 0.028997104614973068, -0.05662592500448227, 0.006863349582999945, -0.013182894326746464, -0.008600018918514252, -0.043153587728738785, -0.023892350494861603, -0.010753312148153782, -0.00030314954346977174, -0.012875907123088837, 0.04003109037876129, -0.016296617686748505, -0.07416803389787674, 0.01352496538311243, 0.008148308843374252, 0.01729651913046837, -0.06518647074699402, -0.002460280666127801, -0.004155287053436041, -0.060765862464904785, -0.04620591178536415, 0.00030013450304977596, 0.027997205033898354, -0.04364476352930069, 0.022664403542876244, 0.009911291301250458, 0.017121097072958946, -0.009884977713227272, -0.03436499089002609, 0.020138340070843697, 0.026523668318986893, -0.03308441489934921, -0.03224239498376846, 0.003348349826410413, -0.03231256455183029, -0.015323031693696976, -0.06922116130590439, 0.0013452604180201888, -0.023366088047623634, -0.0967622697353363, -0.04389035329222679, 0.006499351002275944, -0.044767457991838455, -0.08441262692213058, 0.02627807855606079, -0.019033188000321388, 0.06616882979869843, -0.043153587728738785, 0.019506823271512985, -0.00634585740044713, 0.005828365217894316, 0.03669809177517891, -0.030768858268857002, -0.05469629168510437, 0.09430637210607529, -0.017121097072958946, 0.01785786636173725, 0.0038241795264184475, 0.041294123977422714, -0.03996092081069946, -0.05957299843430519, 0.013937205076217651, 0.027225350961089134, -0.02648858353495598, -0.03894348070025444, -0.033189669251441956, 0.019261235371232033, -0.029839126393198967, 0.026576293632388115, 0.059923842549324036, 0.023559050634503365, 0.0009955146815627813, -0.048872314393520355, -0.037890952080488205, 0.012226849794387817, 0.037750616669654846, -0.027804240584373474, 0.05834505334496498, 0.0530824176967144, -0.02519046701490879, 0.07388735562562943, -0.0330493301153183, 0.008490379899740219, 0.030382931232452393, 0.02897956222295761, -0.023488882929086685, -0.04757419601082802, -0.0215943343937397, -0.060906197875738144, -0.028821684420108795, -0.023436255753040314, 0.032487984746694565, -0.04859163984656334, 0.02661137841641903, -0.012595233507454395, 0.010200736112892628, 0.019962919875979424, 0.04259223863482475, 0.016173822805285454, -0.036347247660160065, -0.056976765394210815, 0.0069115906953811646, -0.014288047328591347, -0.0029404959641397, 0.0247343722730875, 0.021646961569786072, 0.053187672048807144, -0.04687251150608063, -0.007113324943929911, 0.04304833337664604, -0.0305232685059309, 0.05750302970409393, -0.013217978179454803, 0.0004333448887336999, 0.028523467481136322, -0.05701185017824173, -0.007108939345926046, 0.005341571755707264, 0.012174222618341446, 0.05795912444591522, 0.028698889538645744, 0.0026225452311336994, -0.001870427280664444, -0.04290799796581268, -0.0033242295030504465, -0.017761385068297386, -0.009060499258339405, -0.027014845982193947, 0.028260335326194763, -0.042136143893003464, 0.04146954417228699, -0.027523567900061607, 0.008209706284105778, -0.06473037600517273, 0.010612975805997849, 0.028260335326194763, 0.0533280074596405, 0.07858864217996597, 0.042381733655929565, -0.015472139231860638, -0.01638432964682579, 0.045153386890888214, -0.018033286556601524, 0.009499051608145237, -0.01034984365105629, -0.02719026803970337, 0.028453299775719643, -0.030768858268857002, 0.03355805203318596, -0.007108939345926046, 0.01826133392751217, -0.04936349391937256, -0.03399660438299179, -0.041539713740348816, -0.022383728995919228, 0.017445625737309456, 0.0016851387917995453, -0.0369085967540741, -0.017787696793675423, -0.016015945002436638, 0.002418618183583021, 0.0634673461318016, -0.028962019830942154, -0.005946774501353502, -0.01978749781847, 0.02526063472032547, -0.021050529554486275, 0.018524466082453728, -0.05094228312373161, 0.011262033134698868, -0.02911989949643612, 0.003629023674875498, -0.015963317826390266, -0.03375101462006569, 0.0018287647981196642, 0.05623999983072281, -0.02975141443312168, -0.016375558450818062, -0.03432990610599518, 0.015779126435518265, -0.002162064891308546, -0.07458904385566711, -0.025050129741430283, 0.030821483582258224, -0.0019066078821197152, -0.023190665990114212, -0.012025115080177784, 0.01831396110355854, 0.006587061565369368, -0.020138340070843697, -0.013516194187104702, -0.003942588809877634, -0.05150362849235535, -0.021611876785755157, 0.008981559425592422, -0.0627305805683136, 0.06294108182191849, -0.003109338693320751, -0.07283483445644379, -0.0017947768792510033, -0.00360709591768682, 0.029207609593868256, 0.009130666963756084, -0.03399660438299179, 0.036277078092098236, 0.06118687242269516, -0.027997205033898354, -0.03873297572135925, 0.05224039778113365, -0.013744241558015347, -0.07557140290737152, -0.017577191814780235, -0.019769955426454544, -0.028874309733510017, 0.012226849794387817, -0.01178829651325941, -0.025418514385819435, -0.027997205033898354, 0.006512507796287537, -0.01567387394607067, -0.006652844604104757, -0.01191986259073019, -0.0032255551777780056, -0.010586662217974663, 0.036733172833919525, -0.0776764526963234, 0.0006545399082824588, -0.006648459006100893, 0.06048518791794777, -0.09086812287569046, 0.041750218719244, -0.022418813779950142, 0.028681347146630287, -0.01468274462968111, -0.001302501535974443, -0.008823680691421032, -0.007889563217759132, -0.011770754121243954, 0.03915398567914963, -0.008683343417942524, 0.0021905708126723766, -0.004179407376796007, 0.009595532901585102, 0.01792803406715393, 0.03371593356132507, -0.02475191466510296, -0.07550123333930969, 0.04069769009947777, 0.038908395916223526, 0.05487171560525894, -0.010744540952146053, 0.00393820321187377, -0.0026664005126804113, -0.047012850642204285, 0.012226849794387817, 0.01985766552388668, 0.04027668014168739, 0.017015844583511353, 0.004753911402076483, -0.00928854662925005, 0.020857566967606544, 0.01613873988389969, 0.03520701080560684, 0.050416018813848495, 0.02745339833199978, -0.01722634956240654, 0.044311363250017166, -0.06648459285497665, -0.015542307868599892, 0.021541709080338478, 0.012595233507454395, 0.0013463568175211549, 0.041223954409360886, -0.02827787771821022, -0.015638789162039757, -0.0106743723154068, 0.08764037489891052 ]
24,392
py3rijndael.paddings
ZeroPadding
Specified for hashes and MACs as Padding Method 1 in ISO/IEC 10118-1 and ISO/IEC 9797-1.
class ZeroPadding(PaddingBase): """ Specified for hashes and MACs as Padding Method 1 in ISO/IEC 10118-1 and ISO/IEC 9797-1. """ def encode(self, source): pad_size = self.block_size - ((len(source) + self.block_size - 1) % self.block_size + 1) return source + b'\0' * pad_size def decode(self, source): assert len(source) % self.block_size == 0 offset = len(source) if offset == 0: return b'' end = offset - self.block_size + 1 while offset > end: offset -= 1 if source[offset]: return source[:offset + 1] return source[:end]
(block_size)
[ 0.0006937977159395814, -0.018014082685112953, 0.022793328389525414, 0.00529483100399375, -0.028227142989635468, -0.06516990810632706, -0.06577964872121811, 0.041067443788051605, 0.011979498900473118, -0.013279669918119907, 0.05143294110894203, 0.06380697339773178, 0.0582834929227829, 0.05340561270713806, 0.00676985178142786, 0.04372158646583557, 0.02892654575407505, 0.009504692628979683, 0.03776770457625389, -0.014597773551940918, 0.03977624326944351, 0.004052944481372833, 0.013745937496423721, 0.08026982098817825, -0.05562935024499893, 0.017036713659763336, -0.014517072588205338, -0.012885135598480701, -0.024837734177708626, -0.02795814350247383, 0.03211868926882744, -0.028280943632125854, -0.0010401362087577581, 0.04623226076364517, 0.009217758662998676, -0.07037059217691422, 0.05727922171354294, -0.01371007040143013, -0.06391457468271255, -0.015458575449883938, 0.031670354306697845, -0.02829887717962265, 0.01778094843029976, -0.06359177082777023, 0.00941502582281828, 0.017126379534602165, 0.022739529609680176, 0.048994001001119614, -0.05878562852740288, -0.0027281157672405243, -0.014633639715611935, 0.013772837817668915, 0.0591084286570549, 0.036871034651994705, -0.0069178021512925625, 0.02704354003071785, -0.012804434634745121, -0.05211440846323967, -0.0385567732155323, 0.04217931628227234, -0.01580827683210373, -0.0026675905101001263, 0.03559776395559311, -0.024514934048056602, -0.018937651067972183, 0.005205164197832346, -0.025555070489645004, -0.02150212600827217, 0.01995985396206379, 0.03014601580798626, 0.026505539193749428, 0.02134072408080101, -0.020946189761161804, 0.06452430784702301, -0.014194272458553314, 0.020013654604554176, -0.029374880716204643, 0.054947882890701294, -0.02037232182919979, -0.05656188726425171, 0.05207854136824608, 0.023169929161667824, 0.047308262437582016, 0.029536280781030655, 0.04587359353899956, -0.0014514831127598882, 0.033678892999887466, 0.0800546184182167, 0.02754567563533783, -0.013378303498029709, -0.010715195909142494, 0.013719037175178528, -0.0036584099289029837, 0.03281809017062187, 0.013172069564461708, -0.009746793657541275, 0.0125802680850029, 0.008419723249971867, -0.05609561875462532, -0.011011096648871899, -0.012921001762151718, 0.039058905094861984, -0.05602388456463814, -0.009953027591109276, -0.03215455263853073, 0.006796752102673054, -0.043793320655822754, 0.03852090612053871, 0.0023335814476013184, -0.04716479405760765, 0.05035693570971489, -0.010051661171019077, -0.0207489226013422, -0.07969594746828079, 0.03705036640167236, 0.0014626914635300636, 0.0339658260345459, 0.010033727623522282, 0.012185732834041119, -0.002371689770370722, 0.06585138291120529, -0.03841330483555794, -0.030970951542258263, -0.05914429575204849, 0.017494013532996178, -0.020533721894025803, 0.010751063004136086, -0.015315108001232147, 0.041605446487665176, -0.0126789016649127, 0.029446613043546677, 0.050536271184682846, -0.026469672098755836, 0.053728412836790085, -0.026613138616085052, -0.033678892999887466, 0.0436139851808548, 0.014346705749630928, -0.009603326208889484, 0.005971816368401051, 0.047989729791879654, -0.01469640713185072, 0.044582389295101166, 0.022739529609680176, -0.02867547795176506, 0.023958997800946236, 0.015628943219780922, -0.03253115713596344, 0.03369682654738426, 0.027384275570511818, 0.013970104977488518, 0.03459349274635315, 0.027384275570511818, 0.05638255551457405, 0.049962401390075684, -0.0018998177256435156, 0.016301443800330162, -0.013997005298733711, -0.028532011434435844, 0.008110372349619865, 0.014884707517921925, -0.0203364547342062, -0.03482662886381149, -0.04594532400369644, 0.03500596061348915, 0.024837734177708626, -0.013692137785255909, -0.037624236196279526, -0.009809560142457485, -0.01391630433499813, 0.023797597736120224, -0.010257895104587078, -0.016041411086916924, -0.015628943219780922, 0.12216220051050186, -0.0008826586417853832, -0.054983749985694885, -0.03660203143954277, -0.025842003524303436, -0.0771135464310646, 0.01339623611420393, 0.027151141315698624, -0.02905207872390747, -0.01761058159172535, 0.008621473796665668, 0.047774530947208405, 0.019816387444734573, 0.05293934419751167, 0.05218614265322685, -0.03224422037601471, -0.03127581998705864, -0.000717335264198482, 0.0013012910494580865, 0.036871034651994705, 0.027312541380524635, 0.007585820741951466, 0.042322780936956406, 0.04963960126042366, -0.032728422433137894, -0.011037996970117092, -0.0347907617688179, 0.008738040924072266, -0.026218604296445847, -0.053979478776454926, -0.029321080073714256, -0.06255163997411728, -0.011656698770821095, 0.04002730920910835, -0.07302473485469818, -0.035526029765605927, 0.013763871043920517, 0.013736970722675323, 0.04763106256723404, 0.04146197810769081, -0.013082402758300304, -0.03791116923093796, -0.0029679748695343733, 0.0377318374812603, 0.007886204868555069, -0.015288208611309528, 0.04020664468407631, -0.02092825621366501, -0.01836378313601017, 0.006276683881878853, 0.01316310279071331, 0.020049521699547768, -0.00913705863058567, 0.0031383419409394264, 0.014624672941863537, 0.036368899047374725, 0.08148928731679916, 0.014427405782043934, -0.03197522088885307, 0.052473075687885284, 0.04565839096903801, 0.00028945598751306534, 0.03375062718987465, -0.08600850403308868, -0.038126371800899506, -0.06427324563264847, -0.01004269439727068, -0.010786929167807102, 0.0545174814760685, 0.024765999987721443, 0.04931680113077164, 0.00512446416541934, 0.004886846523731947, 0.03651236742734909, -0.020300589501857758, 0.007563403807580471, -0.07151833176612854, -0.0017899756785482168, 0.0005685442592948675, -0.02155592478811741, 0.06405804306268692, -0.027778809890151024, 0.010580695234239101, 0.02247052825987339, 0.02331339754164219, 0.04824079945683479, -0.013656270690262318, -0.04784626513719559, -0.04088811203837395, -0.07302473485469818, 0.038807839155197144, 0.00550106493756175, -0.02851407788693905, 0.039596907794475555, -0.0540870800614357, 0.041354380548000336, 0.09992480278015137, -0.09590772539377213, -0.015862077474594116, 0.015862077474594116, 0.028460277244448662, -0.029841147363185883, 0.028119543567299843, 0.024120399728417397, 0.02876514568924904, -0.006872968748211861, 0.05168400704860687, -0.024640467017889023, -0.03547222912311554, 0.018883852288126945, 0.0102758277207613, 0.0582834929227829, 0.005218614358454943, -0.04806146398186684, 0.06039963290095329, -0.04088811203837395, 0.0037592852022498846, 0.036153700202703476, -0.0356336310505867, 0.01945772022008896, 0.026613138616085052, 0.036458566784858704, 0.029787348583340645, 0.011055930517613888, 0.01693807914853096, -0.04892226681113243, -0.08715623617172241, 0.0019121469231322408, 0.048742931336164474, 0.04013491049408913, -0.006016649771481752, -0.020031588152050972, -0.02783260866999626, 0.047989729791879654, 0.04813319817185402, -0.02679247222840786, -0.026218604296445847, -0.010033727623522282, 0.03556189686059952, -0.01747608184814453, -0.01211399957537651, 0.048527732491493225, 0.0326925553381443, 0.022075993940234184, 0.024748068302869797, 0.05900082737207413, 0.015745509415864944, 0.0241024661809206, -0.09346878528594971, 0.03093508444726467, -0.01802304945886135, -0.06039963290095329, -0.003938619047403336, -0.043075982481241226, -0.03450382873415947, 0.05082320421934128, -0.003866885555908084, 0.020695123821496964, 0.06864898651838303, -0.007025402504950762, -0.07194872945547104, 0.0074333869852125645, -0.025931671261787415, 0.04178478196263313, -0.06986846029758453, -0.05035693570971489, 0.07983941584825516, -0.034647293388843536, 0.0326925553381443, -0.021824926137924194, -0.03215455263853073, -0.01371007040143013, -0.062192969024181366, 0.022075993940234184, -0.0779743492603302, 0.03202902153134346, 0.024963269010186195, 0.03346369042992592, 0.051038406789302826, 0.04888639971613884, 0.062874436378479, -0.048527732491493225, -0.02112552337348461, 0.004729929380118847, 0.017081545665860176, -0.006662251427769661, 0.06563618034124374, 0.007872754707932472, -0.011055930517613888, -0.0574226900935173, -0.02691800706088543, -0.0011387697886675596, -0.0014156163670122623, 0.04117504507303238, -0.01673184521496296, -0.0033266423270106316, -0.03064814954996109, -0.08170448988676071, -0.0020219888538122177, -0.047308262437582016, -0.025806136429309845, -0.03068401664495468, -0.05907256156206131, 0.006899868603795767, -0.04842013120651245, -0.0026743155904114246, -0.01961912028491497, -0.03236975520849228, -0.026523472741246223, 0.015691708773374557, 0.009944060817360878, 0.009051874279975891, 0.004055186174809933, -0.014283939264714718, 0.056454285979270935, 0.02297266200184822, -0.025519203394651413, 0.027491874992847443, 0.021448325365781784, -0.003337850794196129, -0.004588704090565443, 0.05182747542858124, 0.013118268921971321, 0.03529289737343788, -0.034647293388843536, -0.04017077758908272, 0.020641323179006577, -0.023331331089138985, 0.04967546835541725, 0.01790648140013218, -0.0026227571070194244, -0.019099052995443344, 0.0228471290320158, -0.025465402752161026, -0.02092825621366501, -0.01877625100314617, -0.004954096861183643, 0.013324502855539322, -0.0040036276914179325, -0.03495216369628906, 0.028352677822113037, -0.05186334252357483, -0.0024591151159256697, -0.04512038826942444, -0.009450891986489296, 0.027025606483221054, 0.016238678246736526, -0.014373606070876122, 0.021017923951148987, 0.026344139128923416, 0.016695978119969368, 0.006101833190768957, -0.0326925553381443, 0.04347051680088043, -0.026846272870898247, 0.01295686885714531, 0.03791116923093796, -0.004052944481372833, 0.016678044572472572, 0.01371007040143013, -0.029249345883727074, 0.01819341629743576, 0.030074281617999077, -0.011136630550026894, -0.009657125920057297, 0.03432449325919151, 0.007836887612938881, -0.041354380548000336, 0.006568101234734058, 0.06631764769554138, 0.01588897593319416, -0.014552939683198929, -0.03039708361029625, 0.018049949780106544, -0.050500404089689255, 0.03977624326944351, 0.0016465086955577135, -0.04824079945683479, -0.010141327977180481, 0.011396664194762707, -0.05340561270713806, -0.015915876254439354, 0.011997432447969913, 0.04311184957623482, -0.04221518337726593, -0.004086569417268038, -0.017843715846538544, 0.04881466552615166, -0.016534578055143356, 0.0021195015870034695, -0.021107591688632965, 0.01911698468029499, -0.018130648881196976, -0.011916732415556908, -0.006581551395356655, 0.01635524444282055, -0.032764289528131485, -0.014203238300979137, -0.036333031952381134, 0.005375531502068043, 0.03841330483555794, -0.01790648140013218, 0.017422281205654144, -0.04411612078547478, -0.08543463051319122, -0.04881466552615166, -0.02134072408080101, -0.044797588139772415, -0.03644063323736191, -0.0343782939016819, 0.026900073513388634, -0.08873437345027924, 0.012768568471074104, 0.016704944893717766, 0.02566266991198063, -0.00804760493338108, -0.04748759791254997, 0.00481062987819314, -0.06556444615125656, 0.040565311908721924, 0.025895804166793823, 0.006115283351391554, -0.004671646282076836, -0.02162765897810459, -0.05293934419751167, -0.06201363727450371, -0.029733547940850258, 0.03156275302171707, 0.01673184521496296, -0.06176256760954857, 0.0031069584656506777, 0.004886846523731947, -0.05602388456463814, -0.004373503383249044, 0.03748076781630516, 0.010015794076025486, -0.019762586802244186, -0.016695978119969368, 0.017251914367079735, -0.0031473084818571806, -0.02695387415587902, 0.0666763186454773, -0.038126371800899506, -0.06968912482261658, 0.022040126845240593, -0.000826616829726845, -0.006258750334382057, 0.08199142664670944, -0.03970450907945633, -0.0236899983137846, 0.017162246629595757, 0.0607941672205925, -0.0025958570186048746, -0.04920919984579086, -0.007177836261689663, -0.021950459107756615, -0.07395727187395096, 0.04451065510511398, -0.021161390468478203, 0.01635524444282055, -0.042322780936956406, 0.053226277232170105, -0.022398794069886208, -0.0026227571070194244, 0.009576425887644291, -0.03023568168282509, -0.023761730641126633, 0.04433131963014603, -0.00524103082716465, -0.05781722441315651, -0.05989749729633331, 0.07090859115123749, -0.042789049446582794, 0.027187008410692215, 0.023205796256661415, 0.016292477026581764, -0.09418612718582153, -0.034485895186662674, 0.04103158041834831, -0.021179324015975, 0.059431228786706924, -0.06922285258769989, 0.03556189686059952, 0.01965498737990856, -0.015207508578896523, 0.06890005618333817, 0.010302728042006493, 0.012786501087248325, 0.0025555070023983717, -0.04537145793437958, -0.03895130753517151, 0.021896660327911377, -0.03005634807050228, -0.00512446416541934, -0.023654131218791008, 0.03948930650949478, -0.027760876342654228, 0.030074281617999077, -0.0005363202071748674, 0.01958325318992138, -0.009459858760237694, -0.008998074568808079, -0.06588725000619888, -0.01148633100092411, 0.026846272870898247, -0.06488297879695892, 0.008347989059984684, 0.011306997388601303, 0.026111004874110222, -0.040063176304101944, 0.03357129171490669, -0.015359941869974136, 0.004725445993244648, 0.0021374349016696215, -0.06402217596769333, -0.013405202887952328, -0.06312550604343414, -0.08084368705749512, 0.03719383478164673, 0.00018143538909498602, -0.008352472446858883, 0.036835167557001114, -0.012652001343667507, 0.019296320155262947, -0.013109302148222923, 0.010383428074419498, 0.02905207872390747, 0.011504264548420906, 0.023259596899151802, 0.022524328902363777, 0.10193334519863129, 0.03841330483555794, -0.05512721836566925, 0.0540870800614357, -0.027814675122499466, -0.059682294726371765, 0.0008944274159148335, 0.09239278733730316, 0.02447906695306301, -0.04099571332335472, 0.0013091368600726128, -0.04472585394978523, -0.015817243605852127, -0.02247052825987339, -0.016669079661369324, -0.004584220703691244, -0.03005634807050228, 0.05634668841958046, -0.09899227321147919, 0.04490518942475319, -0.054983749985694885, 0.024712201207876205, -0.06222883611917496, 0.03966864198446274, 0.004734412766993046, 0.00924465898424387, 0.05394361540675163, 0.04547905921936035, 0.03568743169307709, 0.03052261658012867, 0.028406476601958275, -0.0011578239500522614, -0.017754048109054565, 0.007285436615347862, 0.012418867088854313, 0.055198948830366135, 0.013073435984551907, -0.05914429575204849, 0.01933218538761139, -0.03391202539205551, -0.03299742192029953, -0.019099052995443344, 0.023797597736120224, -0.015117840841412544, -0.046734392642974854, -0.017305713146924973, -0.008738040924072266, -0.04637572541832924, 0.07198459655046463, -0.03407342731952667, 0.030468815937638283, -0.056454285979270935, -0.0026698322035372257, -0.006958152167499065, -0.009024974890053272, -0.04892226681113243, 0.014633639715611935, -0.030719883739948273, -0.06717845052480698, 0.05839109420776367, 0.0064874012023210526, -0.016077276319265366, 0.03556189686059952, -0.002287626964971423, 0.025124669075012207, -0.011988465674221516, 0.013055502437055111, 0.028119543567299843, -0.037803567945957184, 0.011199397034943104, 0.016821512952446938, -0.04411612078547478, 0.01794234849512577, -0.032728422433137894, 0.059718161821365356, 0.031347550451755524, 0.005375531502068043, -0.0019300802377983928, -0.05193507671356201, -0.048994001001119614, 0.01584414392709732, 0.02553713694214821, -0.007832405157387257, -0.012302299961447716, -0.029787348583340645, -0.110684834420681, 0.018543116748332977, -0.06233643740415573, 0.03254908695816994, 0.06818272173404694, -0.04304011911153793, 0.024712201207876205, -0.022649861872196198, -0.005079630296677351, -0.024245932698249817, -0.005590731743723154, -0.0012542159529402852, 0.004306253511458635, -0.008061055094003677, -0.010177194140851498, -0.009423992596566677, 0.02670280635356903, -0.02406659908592701, -0.017099479213356972, 0.01062552910298109, -0.00021464016754180193, 0.01385353785008192, 0.04364985227584839, 0.014687440358102322, -0.042573850601911545, 0.03540049493312836, 0.023403063416481018, -0.05935949459671974, 0.010150294750928879, -0.04662679508328438, 0.04684199392795563, -0.02578820288181305, 0.025680603459477425, 0.05035693570971489, 0.020103322342038155, -0.06366350501775742, -0.006518784444779158, -0.07173352688550949, -0.003420792752876878, -0.02419213205575943, 0.0553424172103405, 0.008150721900165081, 0.041533712297677994, 0.006101833190768957, 0.022075993940234184, -0.000782904215157032, 0.004680612590163946, -0.021053791046142578, -0.030002549290657043, -0.007635137531906366, 0.035651564598083496, -0.036871034651994705, -0.014194272458553314, 0.028621677309274673, 0.06861311942338943, 0.003721176879480481, 0.0251605361700058, -0.0016891004052013159, 0.017511947080492973, -0.0006411184440366924, 0.06348416954278946, 0.013665237464010715, -0.01618487760424614, -0.052222009748220444, 0.0036516848485916853, 0.01790648140013218, 0.00333336740732193, -0.0695815235376358, 0.022649861872196198, -0.02469426766037941, -0.018507249653339386, -0.040601179003715515, -0.010087527334690094, 0.009800593368709087, 0.009226725436747074, -0.021950459107756615, 0.026738673448562622, 0.022882996127009392, 0.04372158646583557 ]
24,394
py3rijndael.paddings
decode
null
def decode(self, source): assert len(source) % self.block_size == 0 offset = len(source) if offset == 0: return b'' end = offset - self.block_size + 1 while offset > end: offset -= 1 if source[offset]: return source[:offset + 1] return source[:end]
(self, source)
[ -0.0025220909155905247, -0.00906809326261282, -0.03398555889725685, -0.008966946043074131, -0.04049418121576309, -0.07085602730512619, -0.03743337094783783, 0.07486674189567566, 0.062166135758161545, -0.05382806062698364, 0.03943873196840286, 0.0413033626973629, 0.006416269578039646, 0.047847166657447815, 0.04904334619641304, 0.06747857481241226, -0.0009625504026189446, 0.005549919325858355, -0.003663298673927784, 0.020370228216052055, -0.021109044551849365, 0.0248910803347826, 0.0303618423640728, 0.057557325810194016, -0.051048703491687775, 0.029112890362739563, 0.003889781190082431, -0.039790548384189606, -0.07011720538139343, -0.030696067959070206, 0.05527051165699959, -0.014952239580452442, -0.005057374946773052, 0.04503262788057327, -0.02796948328614235, 0.005624680779874325, 0.00810939073562622, 0.002724386053159833, -0.0003993677091784775, -0.05783877894282341, -0.0389813669025898, -0.033774469047784805, 0.018153777346014977, -0.0028585162945091724, 0.024416128173470497, -0.012700608000159264, -0.013070016168057919, -0.06227168068289757, -0.023008856922388077, 0.0388406403362751, 0.03080161288380623, 0.04295690357685089, 0.01109983865171671, 0.0035049808211624622, 0.05695923790335655, 0.0052948519587516785, -0.039368368685245514, 0.0014050707686692476, 0.028233345597982407, 0.06462885439395905, 0.011777087114751339, -0.0019448905950412154, 0.010915135033428669, -0.04337908700108528, 0.003709474578499794, 0.014591626822948456, -0.0003727065632119775, -0.009912455454468727, -0.024363355711102486, -0.004263587296009064, -0.005365215241909027, 0.037222281098365784, -0.0508727952837944, 0.0571703277528286, -0.0024517273996025324, -0.01109983865171671, 0.008434821851551533, 0.02767043747007847, -0.002889300463721156, -0.04355499520897865, 0.08584344387054443, 0.021812679246068, 0.07669619470834732, 0.01530405692756176, 0.04534926265478134, -0.025981714949011803, 0.01489946711808443, 0.06096995621919632, -0.004155843053013086, -0.0334402434527874, 0.04552517086267471, 0.0028739082626998425, -0.0448567196726799, 0.06980057060718536, -0.02242835983633995, -0.014934648759663105, 0.021795088425278664, 0.04767125844955444, -0.038875821977853775, -0.006886825431138277, -0.017010370269417763, 0.0972423255443573, -0.06371413171291351, 0.015884555876255035, 0.0028321300633251667, 0.0773998275399208, 0.015559124760329723, 0.03799627721309662, 0.0008042326080612838, -0.061005137860774994, 0.04577144235372543, -0.0402127280831337, -0.07725910097360611, -0.04056454449892044, -0.011240566149353981, 0.0005958907422609627, 0.026562213897705078, 0.005492749158293009, -0.027371393516659737, 0.0124455401673913, 0.04161999747157097, -0.02883143536746502, -0.06096995621919632, -0.010624885559082031, 0.03018593229353428, -0.022973675280809402, 0.02526048943400383, -0.018769457936286926, 0.061181046068668365, -0.00024778390070423484, 0.024943852797150612, 0.036166828125715256, -0.07127820700407028, 0.004934239201247692, -0.040283091366291046, 0.011460451409220695, -0.009868478402495384, -0.012313609011471272, -0.01855836808681488, -0.02918325364589691, 0.04014236479997635, 0.035199329257011414, 0.11293338239192963, 0.01610444113612175, -0.015145738609135151, -0.03548078611493111, 0.030291477218270302, -0.005558714736253023, 0.042253270745277405, 0.037081554532051086, -0.014090286567807198, -0.013439424335956573, 0.035181738436222076, 0.03171633929014206, 0.06111068278551102, -0.019930455833673477, -0.03996645659208298, 0.03270142897963524, -0.0008174257236532867, 0.029359161853790283, 0.048832256346940994, -0.005013397894799709, -0.05389842391014099, -0.04207736253738403, -0.009965227916836739, -0.04221808910369873, 0.026632577180862427, -0.01253349520266056, -0.07901819050312042, -0.013017243705689907, 0.0017612858209758997, -0.004492268431931734, -0.015321647748351097, -0.006310724653303623, 0.03957945853471756, -0.0064206672832369804, -0.03275420144200325, 0.03852400556206703, -0.012401563115417957, -0.05027470737695694, -0.03018593229353428, 0.05998486652970314, -0.022041359916329384, -0.040846001356840134, 0.03386242315173149, 0.013087606988847256, 0.009903660044074059, 0.05759250745177269, 0.06628239899873734, -0.023993946611881256, -0.049078527837991714, -0.027265848591923714, 0.0008960349368862808, -0.032543107867240906, 0.00751569913700223, -0.033774469047784805, 0.014582831412553787, 0.06923766434192657, -0.03757409751415253, -0.023184766992926598, -0.020440591499209404, -0.03317638114094734, -0.005541123915463686, -0.0071726772002875805, -0.08718035370111465, 0.013747264631092548, 0.004657182842493057, 0.05235042795538902, -0.005923725664615631, -0.020669272169470787, -0.022164495661854744, 0.018488004803657532, 0.03495305776596069, -0.04031827300786972, -0.023096812888979912, -0.029411934316158295, -0.05266706272959709, 0.010264272801578045, 0.06508621573448181, 0.04137372598052025, -0.008373253978788853, 0.012621449306607246, -0.018593549728393555, -0.02028227224946022, -0.0011467047734186053, 0.025981714949011803, -0.05463724210858345, -0.005734623409807682, 0.02531326189637184, -0.0032631063368171453, 0.05534087494015694, -0.024820717051625252, 0.035252101719379425, 0.02360694669187069, 0.07388165593147278, 0.0010571012971922755, 0.023202357813715935, -0.0713837519288063, -0.059703413397073746, 0.009657387621700764, -0.024064309895038605, -0.030291477218270302, 0.042992085218429565, 0.026210395619273186, 0.03449569642543793, 0.013905582949519157, 0.007502506021410227, 0.021795088425278664, -0.00690001854673028, 0.03078402206301689, -0.05189306661486626, -0.004067888483405113, 0.025418806821107864, 0.0062447586096823215, 0.05379287898540497, -0.012691812589764595, 0.06793593615293503, -0.05059134215116501, 0.010061977431178093, 0.05942196026444435, -0.007700403220951557, -0.07922928035259247, -0.035867784172296524, -0.02649185061454773, 0.011777087114751339, 0.008061015978455544, -0.012278427369892597, 0.020141545683145523, 0.03245515376329422, 0.024539263918995857, 0.03231442719697952, -0.04271063208580017, -0.013967150822281837, 0.011407678946852684, 0.0423939973115921, -0.04140890762209892, 0.009138456545770168, 0.019033322110772133, 0.0773998275399208, -0.04573626071214676, 0.013228334486484528, 0.03319397196173668, -0.013879196718335152, -0.004325155168771744, 0.012841334566473961, -0.0018998140003532171, 0.007915891706943512, -0.1404455006122589, 0.025489170104265213, 0.013624128885567188, 0.03669455274939537, -0.025366034358739853, -0.06776002794504166, -0.008113788440823555, 0.03141729533672333, 0.035621512681245804, 0.012093722820281982, 0.02649185061454773, 0.010396203957498074, -0.013650515116751194, -0.08098836243152618, -0.026632577180862427, 0.026087259873747826, 0.04190145060420036, -0.05773323401808739, -0.025225307792425156, -0.09189470112323761, -0.028690708801150322, -0.0008839411893859506, -0.04584180563688278, 0.0063459062948822975, 0.004015116021037102, 0.047776803374290466, -0.02471517212688923, -0.008896582759916782, -0.009428706020116806, 0.008012641221284866, 0.07937000691890717, 0.06424185633659363, 0.02883143536746502, 0.012137699872255325, -0.014055104926228523, -0.04728425666689873, 0.031487658619880676, -0.05660741776227951, 0.010457771830260754, 0.0008690989343449473, 0.006174395326524973, 0.009842092171311378, -0.016394691541790962, 0.024169854819774628, -0.02932398021221161, 0.05108388513326645, -0.03606128320097923, 0.008214936591684818, -0.0334402434527874, -0.003614923683926463, -0.020423000678420067, 0.019332366064190865, -0.07163002341985703, 0.06610649079084396, -0.035304874181747437, 0.06540285795927048, 0.03609646484255791, -0.00014402525266632438, 0.0022890118416398764, -0.0044526890851557255, -0.030889566987752914, 0.009059297852218151, -0.0025198920629918575, -0.01536562480032444, -0.023079222068190575, 0.023941174149513245, 0.018470413982868195, -0.017995459958910942, -0.041092272847890854, -0.0022021569311618805, -0.0009295675554312766, 0.00026496246573515236, 0.017432551831007004, 0.02930638939142227, 0.025049399584531784, -0.03122379444539547, -0.011214179918169975, -0.05013398081064224, -0.015611897222697735, -0.08366217464208603, 0.01745014265179634, -0.003788633504882455, 0.0377500057220459, -0.07937000691890717, -0.02629834972321987, -0.04292172193527222, 0.01971936598420143, -0.04271063208580017, -0.05354660749435425, -0.03905173018574715, 0.006403076462447643, 0.021038681268692017, 0.03484751284122467, -0.011636360548436642, 0.00032762993942014873, -0.08950234949588776, -0.0034588046837598085, 0.03305324539542198, 0.06459367275238037, -0.04260508716106415, -0.006148009095340967, -0.031874656677246094, -0.010976702906191349, -0.01764364168047905, -0.011293338611721992, 0.012181677855551243, -0.017344597727060318, -0.02624557726085186, -0.0034280207473784685, 0.015638282522559166, 0.029112890362739563, 0.004208615515381098, -0.018787048757076263, 0.021179407835006714, 0.009930046275258064, -0.018945366144180298, 0.03338747099041939, -0.007282620295882225, -0.03190983831882477, 0.054989058524370193, 0.018347276374697685, -0.02464480884373188, -0.05421506240963936, 0.0048682731576263905, 0.005822577979415655, -0.010712839663028717, -0.04320317506790161, -0.023888401687145233, -0.046193625777959824, 0.009024116210639477, -0.027617665007710457, 0.0036039294209331274, 0.010651271790266037, 0.015216102823615074, 0.03245515376329422, 0.03361615166068077, -0.0895727127790451, -0.015198512002825737, -0.0029640616849064827, -0.015277670696377754, 0.054848331958055496, -0.040107183158397675, 0.04654544219374657, -0.027336211875081062, -0.031434886157512665, 0.0039029743056744337, -0.041092272847890854, -0.02999243326485157, 0.03498823940753937, 0.0042899735271930695, 0.04031827300786972, 0.031874656677246094, 0.0309775210916996, 0.031047886237502098, 0.009085684083402157, 0.006719712167978287, 0.04207736253738403, 0.027424165979027748, -0.011513224802911282, -0.0521041564643383, 0.024662399664521217, -0.04246436059474945, 0.0003347762394696474, -0.03523451089859009, -0.03190983831882477, 0.00013268737529870123, -0.036413099616765976, -0.05045061558485031, -0.029464706778526306, 0.04450489953160286, 0.06473439931869507, -0.008263311348855495, 0.00004992096364730969, -0.004512058105319738, 0.008456810377538204, 0.02385322004556656, -0.03004520572721958, 0.022357996553182602, 0.028866617009043694, -0.035551149398088455, 0.0377500057220459, 0.007832334376871586, 0.023554174229502678, -0.020387819036841393, -0.039192456752061844, -0.008272106759250164, 0.01862873136997223, 0.07388165593147278, 0.006759291980415583, 0.023993946611881256, 0.007731187157332897, -0.00690001854673028, -0.034759558737277985, -0.023431038483977318, -0.05636114627122879, -0.03732782602310181, -0.01991286501288414, -0.010660067200660706, -0.08211418241262436, 0.006381087936460972, 0.0022417365107685328, 0.028690708801150322, 0.0045736259780824184, -0.05734623596072197, 0.05291333794593811, -0.03509378433227539, 0.012982062064111233, 0.015805397182703018, 0.0004199820104986429, 0.020141545683145523, -0.029429525136947632, 0.06360858678817749, -0.025858579203486443, 0.0017766779055818915, 0.042745813727378845, 0.017714006826281548, -0.0849287211894989, 0.01116140652447939, 0.01905091293156147, 0.009147251956164837, -0.005136534105986357, -0.014318968169391155, 0.03073124960064888, -0.039544276893138885, 0.07922928035259247, 0.0027793573681265116, 0.0026848064735531807, -0.04000163823366165, 0.07528892159461975, -0.00011090494081145152, 0.022287631407380104, -0.022604268044233322, 0.014169445261359215, -0.009024116210639477, 0.06568431109189987, 0.007669619284570217, -0.01912127621471882, 0.017916301265358925, 0.005413589999079704, -0.031118249520659447, -0.057381417602300644, -0.02888420782983303, -0.00854036770761013, -0.03563910350203514, -0.0048682731576263905, 0.015392011031508446, -0.011548406444489956, -0.0005629078368656337, 0.024416128173470497, 0.00596330501139164, 0.02986929751932621, -0.02765284664928913, -0.013052425347268581, 0.003975536674261093, 0.0462288074195385, 0.008751457557082176, 0.01966659165918827, -0.05034507066011429, 0.05572787672281265, -0.014952239580452442, 0.06733784824609756, 0.019596228376030922, 0.02974616177380085, -0.07599255442619324, -0.012929289601743221, 0.031610794365406036, 0.004373529925942421, 0.04045899957418442, -0.09590542316436768, 0.0047627282328903675, 0.0536169707775116, -0.016667349264025688, 0.05604451149702072, 0.031628385186195374, 0.008197345770895481, -0.054918695241212845, -0.0024627218954265118, -0.036413099616765976, 0.09766451269388199, 0.0042899735271930695, -0.022850539535284042, 0.018892593681812286, 0.0014743347419425845, 0.02336067520081997, -0.024820717051625252, -0.0009295675554312766, 0.054109517484903336, 0.0462288074195385, -0.005079363472759724, -0.023272721096873283, -0.015567920170724392, 0.024803126230835915, -0.041338544338941574, 0.020669272169470787, -0.040353454649448395, 0.06899139285087585, -0.017256643623113632, -0.02390599250793457, -0.058049872517585754, 0.005074965767562389, -0.010431385599076748, 0.004094275180250406, 0.010528136044740677, 0.02439853735268116, -0.05305406451225281, 0.026949211955070496, 0.02286813035607338, 0.013764855451881886, 0.01022909115999937, -0.020352637395262718, 0.021619178354740143, -0.028233345597982407, -0.0019668792374432087, 0.00024256161123048514, 0.008615128695964813, 0.018259322270751, 0.05446133390069008, 0.0827474519610405, 0.028110209852457047, -0.054109517484903336, -0.0003971688565798104, -0.006970382295548916, 0.0035731454845517874, 0.004160240758210421, 0.013914378359913826, 0.003566548926755786, -0.027054758742451668, -0.015866965055465698, -0.014248604886233807, -0.007832334376871586, -0.04271063208580017, -0.015119352377951145, 0.012076131999492645, 0.015963714569807053, 0.057064782828092575, -0.050802432000637054, 0.03285974636673927, -0.01924441196024418, 0.05432060733437538, -0.025242898613214493, 0.017907505854964256, 0.022410769015550613, 0.014705967158079147, 0.0009669481078162789, 0.0004573626210913062, 0.017247848212718964, 0.02077481709420681, 0.012674221768975258, 0.0377500057220459, -0.015559124760329723, 0.02047577314078808, -0.013070016168057919, 0.027512120082974434, 0.008030232042074203, -0.04140890762209892, -0.010325840674340725, -0.012832539156079292, -0.05059134215116501, -0.04647507891058922, 0.0268084853887558, 0.044962264597415924, -0.06547322124242783, 0.007942277938127518, -0.030748840421438217, 0.0051805111579597, 0.031135840341448784, 0.034267015755176544, 0.03461883217096329, 0.00962220598012209, 0.040599726140499115, 0.0160340778529644, -0.03996645659208298, -0.023765265941619873, 0.04584180563688278, -0.01843523234128952, -0.036166828125715256, 0.03609646484255791, -0.027054758742451668, -0.01407269574701786, 0.0027001984417438507, 0.014046309515833855, 0.013166765682399273, -0.03078402206301689, -0.00403930339962244, -0.003566548926755786, -0.07268547266721725, -0.03280697390437126, 0.04359017685055733, -0.04960625246167183, 0.026034487411379814, -0.05678332969546318, 0.07585182785987854, 0.0402127280831337, -0.03479474037885666, 0.004283376969397068, -0.03176911175251007, -0.029675796627998352, 0.012093722820281982, 0.060512591153383255, -0.0692024827003479, -0.040529362857341766, -0.0020801203791052103, -0.08816543966531754, 0.05724069103598595, 0.009235206991434097, 0.021214589476585388, 0.008887787349522114, -0.041268181055784225, 0.0705745667219162, -0.017626050859689713, -0.03905173018574715, -0.03449569642543793, 0.047530531883239746, 0.013500992208719254, -0.06600094586610794, 0.004850682336837053, -0.033281926065683365, 0.0002792550658341497, 0.009208820760250092, -0.011108634062111378, 0.023378266021609306, -0.05495387688279152, 0.0026474259793758392, 0.008958150632679462, 0.008443617261946201, -0.028532391414046288, -0.023219948634505272, 0.05766287073493004, 0.007841130718588829, -0.13256479799747467, -0.0005310243577696383, -0.021548815071582794, 0.07944037020206451, -0.06188467890024185, 0.03368651494383812, -0.004934239201247692, 0.04246436059474945, -0.03644828125834465, 0.015048989094793797, -0.05572787672281265, -0.0037512530107051134, -0.049817342311143875, 0.05766287073493004, -0.024926261976361275, 0.026474259793758392, -0.0001172266565845348, -0.013421833515167236, -0.017502915114164352, 0.02385322004556656, -0.07718873769044876, -0.015840578824281693, 0.028725890442728996, -0.003529168199747801, -0.02992206998169422, 0.03799627721309662, -0.028250936418771744, 0.11117430031299591, -0.028725890442728996, -0.0008663503685966134, 0.03922763839364052, -0.0006701021920889616, 0.003984332084655762, 0.02119699865579605, -0.018470413982868195, -0.009710160084068775, -0.026016896590590477, 0.025682669132947922, -0.04647507891058922, -0.018224140629172325, -0.06047740951180458, 0.055833421647548676, -0.04038863629102707, 0.012436744756996632, -0.020669272169470787, 0.004912250209599733, 0.05973859503865242, 0.012586267665028572, -0.07578146457672119, 0.009138456545770168, 0.013439424335956573, 0.04056454449892044 ]
24,395
py3rijndael.paddings
encode
null
def encode(self, source): pad_size = self.block_size - ((len(source) + self.block_size - 1) % self.block_size + 1) return source + b'\0' * pad_size
(self, source)
[ -0.059961948543787, -0.0206432044506073, 0.000552326557226479, 0.011184612289071083, 0.014593502506613731, -0.04228749871253967, -0.07594490051269531, 0.028772760182619095, 0.08312514424324036, -0.009570783004164696, 0.060963042080402374, -0.033950820565223694, 0.055543337017297745, 0.05650990828871727, 0.04180421307682991, 0.032017678022384644, 0.010563245043158531, -0.057614561170339584, 0.020902106538414955, 0.015180349349975586, 0.00270337937399745, 0.014282818883657455, 0.04011271521449089, -0.01998731680214405, -0.028013311326503754, 0.045601461082696915, 0.008129555732011795, -0.010010918602347374, -0.10273273289203644, -0.03569410368800163, 0.042252980172634125, -0.06755644083023071, 0.01979745365679264, 0.005342033226042986, 0.01576719619333744, -0.02059142291545868, 0.002422901103273034, -0.00273358472622931, -0.03239740431308746, -0.09859028458595276, -0.008630102500319481, -0.013014193624258041, -0.04118284583091736, -0.01576719619333744, 0.03450314700603485, 0.005605251528322697, 0.020746765658259392, -0.0017702496843412519, 0.038386695086956024, -0.005398128647357225, -0.009242839179933071, 0.03326041251420975, 0.006101482082158327, -0.002500572009012103, 0.059547703713178635, 0.048294052481651306, -0.035003695636987686, -0.04542885720729828, 0.0023991684429347515, 0.03279438614845276, 0.019348688423633575, 0.021696075797080994, 0.07960405945777893, -0.04587762430310249, -0.007723941467702389, 0.03776532784104347, -0.06879917532205582, 0.017165273427963257, 0.025752224028110504, 0.003497348865494132, 0.056958675384521484, -0.0005326390964910388, -0.021368132904171944, 0.04756912216544151, -0.06085947901010513, 0.045601461082696915, -0.036177389323711395, 0.0483630932867527, -0.006709904409945011, -0.037868887186050415, 0.08443691581487656, -0.04266722500324249, 0.03700587898492813, 0.036177389323711395, 0.08036351203918457, -0.044289685785770416, -0.07573777437210083, 0.03408890217542648, -0.008716403506696224, -0.057856205850839615, 0.045221734791994095, 0.03255274519324303, -0.024336887523531914, 0.050261713564395905, -0.018727321177721024, -0.01857198029756546, 0.040319837629795074, 0.00626976927742362, -0.006420795805752277, 0.021126490086317062, -0.046498991549015045, 0.058753736317157745, -0.05454224348068237, -0.005708812735974789, 0.008466130122542381, 0.0016494282754138112, -0.00042584160109981894, 0.027495505288243294, -0.023922642692923546, -0.009950507432222366, 0.05847757309675217, -0.04335763305425644, -0.04190777614712715, -0.08105392009019852, 0.03745464235544205, -0.031465351581573486, 0.050779521465301514, 0.04415160045027733, 0.04218393936753273, 0.027823450043797493, 0.07677339017391205, -0.0002471715270075947, -0.002778892870992422, -0.007460723165422678, -0.005484429653733969, -0.035003695636987686, 0.018917184323072433, 0.011538446880877018, -0.005687237251549959, -0.0799492672085762, 0.006161892786622047, 0.04466940835118294, -0.03346753492951393, 0.03017083741724491, 0.017829790711402893, -0.011184612289071083, -0.03648807108402252, -0.0248374342918396, -0.0067185345105826855, 0.019296908751130104, 0.050883080810308456, 0.021005667746067047, 0.0903053879737854, 0.01908978633582592, 0.026649754494428635, -0.02366374060511589, 0.04850117489695549, -0.00926009938120842, 0.053610194474458694, 0.015283910557627678, 0.04863925650715828, 0.002772420411929488, 0.03679875656962395, 0.03308781236410141, 0.01515445951372385, 0.005626826547086239, -0.008500650525093079, 0.009337770752608776, 0.024250587448477745, 0.02097114734351635, 0.03956038877367973, -0.02459579147398472, -0.04435872659087181, -0.006088537164032459, -0.012410086579620838, -0.016733767464756966, -0.018796361982822418, 0.01213392335921526, -0.023025112226605415, -0.03831765428185463, 0.03429602459073067, -0.09900452941656113, -0.032259322702884674, 0.009605303406715393, 0.059961948543787, -0.004612789489328861, -0.04339215159416199, 0.014852405525743961, -0.03474479168653488, -0.068419449031353, -0.008940786123275757, 0.030567821115255356, -0.014541721902787685, -0.0041165584698319435, 0.007080998737365007, -0.06293070316314697, 0.019486770033836365, 0.038731899112463, 0.04076860100030899, -0.047292958945035934, 0.013885834254324436, -0.0031780351419001818, -0.0096657145768404, -0.013376657851040363, 0.0058253188617527485, -0.014783364720642567, 0.04339215159416199, 0.005803743842989206, -0.018537459895014763, 0.03384726122021675, -0.023249495774507523, -0.012047622352838516, 0.03220754116773605, -0.04166613146662712, 0.00408419594168663, -0.005829634144902229, 0.004543748684227467, -0.010942969471216202, -0.029117964208126068, -0.05588854104280472, 0.02809961326420307, 0.02233470417559147, 0.026408111676573753, -0.0122547447681427, -0.035089995712041855, -0.012315155938267708, -0.06037619337439537, 0.01565500535070896, 0.0277544092386961, 0.004526488482952118, -0.053230468183755875, -0.008181336335837841, -0.026131948456168175, -0.04435872659087181, 0.02949768863618374, -0.01058050524443388, -0.021575255319476128, -0.014015286229550838, 0.0024142710026353598, -0.0042222775518894196, 0.057614561170339584, 0.006757369730621576, -0.029290566220879555, 0.04397900030016899, 0.02102292887866497, 0.017139382660388947, 0.02846207655966282, -0.08326322585344315, -0.08443691581487656, -0.0177262295037508, -0.028876321390271187, -0.009872836992144585, 0.05737292021512985, -0.01006269920617342, 0.04273626580834389, -0.0032362882047891617, 0.0016267742030322552, 0.033105071634054184, -0.004407824482768774, 0.027512764558196068, -0.04984746873378754, 0.006731479428708553, -0.029187005013227463, 0.0058512091636657715, 0.04118284583091736, 0.027771668508648872, 0.06227481737732887, -0.0035469720605760813, -0.026563454419374466, 0.06403535604476929, -0.04439324513077736, -0.002011892618611455, -0.05278170481324196, -0.048190489411354065, 0.04491105303168297, 0.021609775722026825, -0.05599210411310196, 0.024474969133734703, 0.010079959407448769, 0.00940681155771017, 0.06624466180801392, 0.001351689686998725, -0.023715520277619362, 0.027737148106098175, 0.04760364443063736, -0.07394271343946457, -0.012332416139543056, 0.06182605028152466, 0.04104476422071457, -0.0761520192027092, 0.04080312326550484, 0.022679908201098442, -0.022835250943899155, -0.03505547344684601, 0.004440187476575375, 0.032966990023851395, 0.014360490255057812, -0.06700411438941956, -0.009044347330927849, -0.030550561845302582, -0.0025652977637946606, 0.03341575711965561, -0.05602662265300751, 0.02380182221531868, 0.01781253144145012, -0.007262230850756168, 0.016837328672409058, 0.024871954694390297, 0.024354148656129837, 0.015352951362729073, -0.06734931468963623, 0.031189188361167908, 0.04912254214286804, 0.030274398624897003, -0.02965303137898445, -0.013488849624991417, -0.07290710508823395, -0.013920354656875134, -0.036833275109529495, -0.04166613146662712, -0.022472785785794258, 0.018882663920521736, 0.03358835726976395, -0.021040188148617744, 0.01587938703596592, 0.013359397649765015, 0.013238576240837574, 0.021195530891418457, 0.05112472549080849, 0.033674657344818115, 0.013851313851773739, -0.0029903303366154432, -0.04787980765104294, 0.02347387745976448, -0.0006165129016153514, 0.01656116545200348, 0.028824541717767715, -0.010269821621477604, -0.005389498546719551, -0.05133184790611267, 0.01071858685463667, -0.01965937204658985, 0.04163161292672157, -0.026149209588766098, -0.05250554159283638, -0.006222303491085768, 0.013825424015522003, -0.00977790541946888, -0.010451053269207478, -0.034330546855926514, 0.03203493729233742, -0.0052686771377921104, 0.04349571466445923, 0.03569410368800163, -0.02639085240662098, -0.026356332004070282, -0.04373735561966896, -0.03869737684726715, -0.07553065568208694, 0.01781253144145012, -0.0235256589949131, -0.005915935151278973, 0.08243473619222641, 0.0005490902694873512, 0.0020011048763990402, -0.04221845790743828, -0.008384143933653831, -0.00940681155771017, -0.017691709101200104, 0.02809961326420307, 0.03590122610330582, 0.0024984146002680063, 0.02823769487440586, -0.0011327009415253997, -0.03745464235544205, 0.0561647042632103, -0.03220754116773605, 0.0074564083479344845, -0.006412165705114603, 0.042632702738046646, -0.05847757309675217, -0.07387367635965347, -0.038248613476753235, 0.027581805363297462, -0.029290566220879555, -0.012194334529340267, -0.05457676574587822, -0.01473158411681652, -0.005821004044264555, -0.05571594089269638, 0.00030582924955524504, 0.015344321727752686, -0.04794884845614433, -0.012047622352838516, 0.05685511231422424, 0.053748276084661484, 0.04132092744112015, 0.0059029897674918175, -0.012703510001301765, -0.015301170758903027, -0.048570215702056885, 0.003404575167223811, 0.03403712436556816, 0.00900119636207819, -0.037213001400232315, -0.009337770752608776, 0.0016213804483413696, 0.014110216870903969, 0.0029924879781901836, -0.009372291155159473, 0.03717847913503647, -0.02790975011885166, 0.04204585775732994, 0.03189685568213463, 0.007797297090291977, -0.03364013880491257, 0.01421377807855606, 0.018364857882261276, 0.0023214975371956825, -0.020902106538414955, -0.07884461432695389, 0.044703930616378784, 0.0035102940164506435, -0.009769275784492493, -0.017389655113220215, -0.05285074561834335, -0.0509176030755043, -0.0850582867860794, -0.007736886385828257, 0.028686460107564926, 0.009268729947507381, 0.03752368316054344, 0.017225684598088264, 0.00744777824729681, 0.0043776193633675575, -0.029773851856589317, 0.0038878610357642174, 0.04794884845614433, -0.04246010258793831, 0.0483630932867527, -0.009950507432222366, -0.0024358462542295456, 0.03131001070141792, -0.0015178192406892776, -0.0399746336042881, 0.02230018377304077, 0.035089995712041855, 0.01590527780354023, 0.01889992319047451, 0.05685511231422424, 0.05899537727236748, -0.021851418539881706, -0.018502939492464066, 0.03312233090400696, 0.024578530341386795, 0.0008959124679677188, -0.058753736317157745, 0.004440187476575375, -0.029256045818328857, 0.033105071634054184, 0.014032546430826187, -0.03531437739729881, 0.02069498412311077, -0.007969899103045464, -0.03956038877367973, -0.01642308384180069, 0.05896085873246193, -0.03450314700603485, -0.042011335492134094, -0.02809961326420307, -0.004914843011647463, 0.020902106538414955, 0.055646900087594986, -0.008043254725635052, 0.002597660757601261, -0.0042999484576284885, -0.04359927400946617, 0.01070132665336132, 0.017967872321605682, 0.017527736723423004, 0.020056357607245445, 0.010287081822752953, -0.01331624761223793, 0.01781253144145012, 0.07304518669843674, -0.0056181964464485645, -0.023249495774507523, 0.004461762961000204, -0.029998235404491425, -0.01876184158027172, -0.04891541972756386, -0.04760364443063736, 0.016302263364195824, -0.0059547703713178635, 0.02083306573331356, -0.019504031166434288, 0.021799637004733086, 0.03327767550945282, 0.06438056379556656, 0.03305329009890556, -0.006545932497829199, 0.06396631896495819, -0.06417343765497208, 0.019158827140927315, -0.025769485160708427, 0.01720842346549034, -0.026563454419374466, -0.06065235659480095, -0.04028531536459923, 0.02361195906996727, -0.03583218529820442, 0.008561061695218086, -0.016405824571847916, -0.08284898102283478, 0.021954979747533798, -0.0020766183733940125, -0.018468419089913368, 0.0235601793974638, -0.004655939992517233, 0.05209129676222801, -0.02200675942003727, 0.015076788142323494, -0.007698051165789366, -0.011952691711485386, -0.02295607142150402, 0.03600478544831276, -0.025389760732650757, 0.011512556113302708, -0.0019255914958193898, -0.021316351369023323, -0.01619870215654373, 0.06997286528348923, -0.007210450246930122, -0.031931377947330475, 0.010822148062288761, 0.0496748685836792, 0.02404346503317356, -0.051400888711214066, -0.06482932716608047, 0.06327591091394424, -0.08057063072919846, 0.012401456944644451, 0.012289265170693398, 0.03869737684726715, -0.029376868158578873, 0.08754375576972961, -0.001463881111703813, 0.06189509108662605, 0.02440592832863331, -0.05506005138158798, -0.044186122715473175, 0.03398534283041954, 0.014679803512990475, -0.018313076347112656, -0.0261146891862154, 0.05827045068144798, -0.0036613207776099443, 0.013980765827000141, 0.01215981412678957, -0.027271121740341187, -0.07787804305553436, -0.008095035329461098, 0.031741514801979065, 0.04439324513077736, 0.03638451173901558, -0.08851032704114914, 0.04808693006634712, 0.03058508224785328, -0.012349676340818405, 0.07960405945777893, 0.06203317269682884, 0.02404346503317356, -0.010615025646984577, -0.05958222597837448, -0.04691323637962341, 0.0593751035630703, -0.02652893401682377, -0.04363379627466202, -0.014541721902787685, 0.022369224578142166, 0.016008839011192322, 0.01585349813103676, -0.01857198029756546, 0.031827814877033234, -0.0076635307632386684, -0.011581596918404102, -0.05619922652840614, 0.028272215276956558, 0.014671173878014088, -0.07194053381681442, -0.039284225553274155, 0.0034390955697745085, 0.023214975371956825, -0.008297842927277088, 0.011452145874500275, -0.043288592249155045, 0.018744582310318947, 0.0013473746366798878, -0.03921518474817276, 0.01862375997006893, -0.0010312971426174045, -0.045325297862291336, 0.007098258938640356, 0.006994697730988264, 0.04280530661344528, -0.01922786794602871, -0.05150444805622101, 0.004763816483318806, -0.004794021602720022, -0.019072525203227997, 0.021713336929678917, -0.013342137448489666, -0.027599066495895386, 0.0851273238658905, 0.09099579602479935, 0.02078128606081009, -0.04014723375439644, 0.008030310273170471, -0.027650848031044006, -0.03614286705851555, -0.004407824482768774, 0.060169070959091187, 0.011055161245167255, -0.09396455436944962, -0.04401351884007454, -0.02285251021385193, -0.010356122627854347, -0.018054174259305, 0.008008734323084354, 0.007180245127528906, 0.006394905503839254, 0.05847757309675217, -0.07449503988027573, -0.0036181702744215727, 0.007736886385828257, 0.05367923527956009, -0.02200675942003727, 0.041217368096113205, 0.00874229334294796, -0.016440344974398613, 0.016448974609375, 0.004694775678217411, 0.005920249968767166, 0.025648662820458412, -0.015275280922651291, -0.016457604244351387, -0.037109438329935074, 0.04242558032274246, -0.011184612289071083, -0.00042961727012880147, 0.011572967283427715, 0.00017772616411093622, -0.025061815977096558, -0.028030572459101677, -0.027495505288243294, -0.026994958519935608, -0.023180454969406128, -0.0074564083479344845, -0.13103947043418884, -0.04439324513077736, -0.03924970328807831, -0.054266080260276794, 0.07069779932498932, 0.010692696087062359, 0.05985838919878006, 0.02960124984383583, 0.029066184535622597, 0.01889992319047451, 0.00032281974563375115, -0.034106165170669556, 0.04190777614712715, 0.002841461217030883, -0.021834157407283783, -0.010520094074308872, -0.03686779737472534, -0.011296804063022137, -0.013851313851773739, -0.06600301712751389, -0.011460775509476662, -0.03248370438814163, -0.0020453340839594603, -0.02809961326420307, -0.08485116064548492, -0.0034369381610304117, 0.04618830606341362, -0.04549789801239967, 0.0167769193649292, -0.03918066248297691, 0.03686779737472534, -0.012461867183446884, -0.0312582291662693, -0.0026127633173018694, -0.005057239904999733, -0.05409348011016846, -0.013359397649765015, 0.019158827140927315, -0.057994287461042404, -0.03058508224785328, -0.020608684048056602, -0.06741835922002792, 0.029842892661690712, -0.006105797365307808, 0.004422927275300026, 0.018364857882261276, -0.01710486225783825, 0.05764908343553543, 0.014446791261434555, -0.031465351581573486, -0.03275986760854721, 0.00690408144146204, 0.01121913269162178, -0.00554915564134717, 0.008254692889750004, -0.011063790880143642, 0.024060724303126335, 0.020159918814897537, 0.07553065568208694, 0.005795113742351532, 0.0005555628449656069, 0.0019223552662879229, 0.042770784348249435, 0.012824331410229206, -0.02281798981130123, -0.002841461217030883, 0.010545984841883183, 0.04294338822364807, -0.056958675384521484, 0.01889992319047451, -0.014783364720642567, 0.07801612466573715, -0.00940681155771017, 0.03068864345550537, 0.0037476217839866877, 0.013333507813513279, -0.0483630932867527, 0.007240655831992626, -0.04401351884007454, -0.014153367839753628, 0.006071276962757111, 0.028306735679507256, -0.0248374342918396, 0.041735172271728516, 0.024285107851028442, -0.02342209778726101, 0.005178061313927174, 0.05105568468570709, -0.0864391028881073, -0.027460984885692596, -0.021005667746067047, 0.014800624921917915, -0.013721861876547337, 0.054507724940776825, 0.006619288120418787, 0.03586670383810997, 0.060721397399902344, 0.025648662820458412, 0.08222761005163193, -0.03370917961001396, 0.002366805449128151, 0.049364183098077774, 0.0008058357634581625, 0.036453552544116974, -0.040699560195207596, -0.013022824190557003, 0.016733767464756966, 0.002468209248036146, -0.05789072439074516, 0.07214765250682831, 0.00048463416169397533, -0.00015601605991832912, -0.01079625729471445, -0.040699560195207596, 0.03600478544831276, -0.00942407175898552, -0.035089995712041855, 0.048432134091854095, 0.043426673859357834, 0.04542885720729828 ]
24,399
okta_jwt_verifier.jwt_verifier
AccessTokenVerifier
null
class AccessTokenVerifier(): def __init__(self, issuer=None, audience='api://default', request_executor=RequestExecutor, max_retries=MAX_RETRIES, request_timeout=REQUEST_TIMEOUT, max_requests=MAX_REQUESTS, leeway=LEEWAY, cache_jwks=True, proxy=None): """ Args: issuer: string, full URI of the token issuer, required audience: string, expected audience, optional request_executor: RequestExecutor class or its subclass, optional max_retries: int, number of times to retry a failed network request, optional request_timeout: int, max request timeout, optional max_requests: int, max number of concurrent requests leeway: int, amount of time to expand the window for token expiration (to work around clock skew) cache_jwks: bool, optional """ self._jwt_verifier = BaseJWTVerifier(issuer=issuer, client_id='client_id_stub', audience=audience, request_executor=request_executor, max_retries=max_retries, request_timeout=request_timeout, max_requests=max_requests, leeway=leeway, cache_jwks=cache_jwks, proxy=proxy) async def verify(self, token, claims_to_verify=('iss', 'aud', 'exp')): await self._jwt_verifier.verify_access_token(token, claims_to_verify)
(issuer=None, audience='api://default', request_executor=<class 'okta_jwt_verifier.request_executor.RequestExecutor'>, max_retries=1, request_timeout=30, max_requests=10, leeway=120, cache_jwks=True, proxy=None)
[ 0.046054910868406296, -0.03411753848195076, -0.009969777427613735, 0.08390051871538162, -0.002852542558684945, -0.04240214824676514, -0.021276388317346573, 0.011353683657944202, -0.011579628102481365, -0.0012415149249136448, 0.04748588800430298, 0.039427220821380615, 0.05610941722989082, -0.003353855572640896, 0.019026363268494606, -0.010657023638486862, 0.059423260390758514, 0.019092263653874397, 0.025738783180713654, -0.011287783272564411, -0.012342188507318497, 0.02647309936583042, -0.060289379209280014, 0.02287682518362999, -0.04854029417037964, 0.04718463122844696, -0.016051435843110085, -0.0006525308708660305, 0.023705286905169487, -0.0013238904066383839, -0.0186968632042408, 0.01906402036547661, 0.06981667876243591, 0.05128927901387215, 0.001008510240353644, -0.06096721068024635, -0.007187841925770044, 0.021596476435661316, -0.16132397949695587, -0.0014957019593566656, -0.035925090312957764, 0.015222974121570587, 0.04609256610274315, -0.002270030789077282, 0.0002715446171350777, -0.017887229099869728, 0.0009249580907635391, 0.04895452409982681, -0.021991878747940063, -0.03340204805135727, 0.034286994487047195, -0.0452641062438488, 0.007338471245020628, 0.026529585942626, 0.006693589501082897, 0.05674958974123001, 0.02411951683461666, 0.030483605340123177, 0.04119711369276047, 0.014516899362206459, -0.048126064240932465, -0.008378755301237106, 0.058368854224681854, 0.017378855496644974, 0.03229115530848503, 0.026021212339401245, -0.02965514361858368, 0.01720939762890339, -0.006792440079152584, 0.0113160265609622, 0.05049847438931465, -0.022801510989665985, 0.004457686096429825, -0.0003745138819795102, 0.03950253501534462, -0.04733525961637497, -0.11462890356779099, 0.0010426371591165662, -0.026491928845643997, -0.0019723025616258383, 0.05539392679929733, -0.033138446509838104, -0.009051879867911339, -0.06661581248044968, 0.06567437946796417, -0.0000066056613832188305, 0.01864037662744522, -0.08427709341049194, -0.027226246893405914, 0.00017798969929572195, -0.029146770015358925, 0.009150730445981026, -0.010271036066114902, -0.014046182855963707, -0.048464979976415634, 0.013038849458098412, 0.022311965003609657, -0.030314147472381592, -0.047071658074855804, 0.016757510602474213, 0.017510656267404556, 0.045151133090257645, -0.055958785116672516, 0.061532068997621536, 0.009080123156309128, 0.02494797855615616, 0.0002365350810578093, -0.046921029686927795, 0.046921029686927795, -0.015185317024588585, -0.03901299089193344, -0.07008028030395508, -0.006204044446349144, 0.020636213943362236, 0.020579729229211807, 0.03812804073095322, -0.0019970149733126163, 0.018028445541858673, 0.002342991763725877, 0.009560253471136093, 0.06623923778533936, -0.007526758126914501, -0.00609107268974185, 0.011438412591814995, 0.013500151224434376, -0.019233480095863342, 0.015590133145451546, 0.020504413172602654, 0.027452191337943077, -0.04488753154873848, 0.022123679518699646, 0.057352107018232346, -0.0001762245228746906, 0.06913884729146957, 0.006185215897858143, 0.05656130239367485, 0.0347953699529171, 0.02033495530486107, -0.019638296216726303, -0.031010808423161507, -0.03699832409620285, 0.026021212339401245, -0.012812905013561249, -0.05290854349732399, -0.019393522292375565, -0.056147072464227676, -0.09098009765148163, -0.030314147472381592, 0.06390447914600372, -0.020052526146173477, 0.06559906154870987, -0.06021406501531601, 0.012652861885726452, 0.02854425273835659, -0.022745024412870407, -0.05791696906089783, -0.008562334813177586, 0.008614113554358482, 0.03215935453772545, 0.005573284346610308, -0.053661689162254333, -0.01851798966526985, -0.0017134083900600672, -0.05320980027318001, 0.03291250392794609, 0.018612133339047432, 0.027659306302666664, -0.020203154534101486, -0.07260332256555557, 0.022236650809645653, -0.005601527169346809, 0.02773462049663067, -0.05618473142385483, 0.00030714255990460515, -0.005013131536543369, 0.020937472581863403, 0.03897533193230629, 0.013415422290563583, -0.03637697547674179, -0.02033495530486107, -0.03430582582950592, 0.003059657756239176, -0.06190864369273186, -0.06333962082862854, -0.006519424729049206, 0.05328511446714401, -0.006580617744475603, 0.03070954978466034, 0.023196913301944733, 0.01213507354259491, -0.030257660895586014, 0.013782581314444542, 0.057352107018232346, -0.02268853969871998, -0.0217282772064209, -0.022123679518699646, -0.015769004821777344, 0.07188783586025238, 0.020918644964694977, -0.059423260390758514, -0.008378755301237106, 0.025023292750120163, 0.015298288315534592, -0.007338471245020628, 0.012323359958827496, 0.006980726961046457, 0.003596274647861719, -0.0022041304036974907, -0.03681003674864769, -0.005714499391615391, -0.03155684098601341, -0.021314047276973724, -0.029353884980082512, 0.038561102002859116, -0.014046182855963707, 0.002400654600933194, 0.08051136136054993, 0.027094446122646332, 0.07938164472579956, 0.046582113951444626, 0.08947380632162094, 0.003203226253390312, -0.03123675100505352, -0.015608961693942547, 0.08939848840236664, 0.024929149076342583, 0.03291250392794609, 0.013274207711219788, -0.01662570983171463, -0.06330196559429169, -0.029918745160102844, 0.02869488298892975, 0.016136163845658302, -0.00502254581078887, -0.06970371305942535, -0.04756120219826698, 0.07591716945171356, -0.01136309839785099, -0.009230752475559711, 0.018216731026768684, 0.04330592602491379, 0.022763853892683983, 0.05618473142385483, 0.015608961693942547, 0.0015816077357158065, 0.03507779911160469, -0.01742592826485634, 0.025098606944084167, 0.002866663970053196, -0.00006108282832428813, -0.05829354003071785, -0.01965712383389473, -0.009715589694678783, -0.03285601735115051, -0.000775505555793643, 0.01984541118144989, -0.022236650809645653, -0.052795570343732834, 0.03901299089193344, 0.027358047664165497, 0.058933716267347336, 0.014498070813715458, -0.042213860899209976, 0.01990189589560032, -0.03867407515645027, -0.03626400604844093, 0.019638296216726303, -0.006161679979413748, -0.0024853835348039865, -0.03984145075082779, 0.07282926887273788, -0.011570213362574577, 0.0025418694131076336, 0.00930135976523161, -0.03364682197570801, 0.0028337137773633003, -0.01535477489233017, 0.0113160265609622, -0.04492519050836563, 0.013151820749044418, -0.04319295287132263, -0.06247350201010704, 0.02027847059071064, 0.03935190662741661, 0.0059828078374266624, -0.048126064240932465, -0.013274207711219788, -0.001044402364641428, -0.002238257322460413, 0.016616294160485268, 0.02105044573545456, -0.05610941722989082, 0.07309287041425705, -0.03234764188528061, 0.006707711145281792, -0.051778823137283325, -0.04368249699473381, -0.017821328714489937, -0.027696963399648666, -0.0010755873518064618, -0.013839066959917545, 0.05535626783967018, -0.015590133145451546, -0.027452191337943077, 0.07388367503881454, 0.015608961693942547, -0.01993955485522747, 0.011080668307840824, 0.006076951045542955, 0.013471907936036587, -0.006703004240989685, -0.0180472731590271, -0.006448816973716021, -0.09354079514741898, 0.04921812564134598, -0.016230307519435883, -0.004716580267995596, 0.023460514843463898, 0.03893767669796944, 0.04387078434228897, 0.0027230954729020596, 0.02974928729236126, 0.028958484530448914, -0.008392876945436, -0.005959271918982267, -0.0783272385597229, -0.02033495530486107, 0.02244376577436924, -0.04104648530483246, -0.01126895472407341, -0.09964128583669662, -0.04507581889629364, 0.002165296347811818, -0.04695868492126465, -0.019374694675207138, 0.018998121842741966, -0.004264692310243845, 0.016089092940092087, 0.044134385883808136, -0.007752702105790377, 0.008181054145097733, -0.08503024280071259, -0.0033632698468863964, 0.046017251908779144, -0.116511769592762, -0.040105052292346954, 0.004351774696260691, -0.022519081830978394, 0.03893767669796944, 0.004568304400891066, -0.00639233086258173, 0.03123675100505352, 0.04997127130627632, 0.019638296216726303, 0.05433952063322067, -0.010054506361484528, 0.022895654663443565, -0.052117738872766495, -0.03965316340327263, -0.012643447145819664, -0.052983857691287994, 0.025870582088828087, -0.03411753848195076, -0.007635022979229689, -0.03291250392794609, -0.042025577276945114, 0.0347953699529171, -0.05467843636870384, 0.031782783567905426, -0.02820533700287342, -0.0834486335515976, -0.032837189733982086, -0.044812217354774475, 0.01752007007598877, 0.046921029686927795, 0.009080123156309128, -0.06300070881843567, 0.020975129678845406, -0.07354475557804108, 0.08548212796449661, 0.004337653052061796, 0.02835596725344658, 0.014338026754558086, 0.013999111019074917, -0.0094755245372653, -0.027565162628889084, -0.052795570343732834, -0.000042364492401247844, 0.029824601486325264, 0.049519382417201996, -0.010007434524595737, -0.032837189733982086, -0.04677039757370949, 0.016079677268862724, -0.030389461666345596, 0.0046742158010602, -0.0713982880115509, 0.03138738125562668, 0.0026642559096217155, -0.028261823579669, 0.029429201036691666, 0.04790011793375015, 0.052644941955804825, -0.019261721521615982, 0.00047660054406151175, 0.06040235236287117, 0.05136459320783615, 0.007008969783782959, -0.011193640530109406, 0.025927068665623665, -0.03509662672877312, -0.08826877176761627, 0.05061144754290581, -0.040443968027830124, 0.0011667887447401881, -0.004702458623796701, -0.025795267894864082, 0.010365178808569908, 0.03972847759723663, -0.01662570983171463, 0.021219903603196144, -0.0018499161815270782, -0.010261621326208115, -0.015524232760071754, -0.0076820943504571915, -0.015270045958459377, 0.013641366735100746, 0.007394957356154919, -0.08156576752662659, -0.03965316340327263, 0.07847786694765091, 0.0313308946788311, -0.004624790512025356, -0.02080567181110382, -0.02052324265241623, 0.033420875668525696, -0.04458627477288246, 0.02120107412338257, -0.002185301622375846, -0.014507484622299671, 0.01215390209108591, 0.057502735406160355, 0.01097711082547903, -0.008411705493927002, 0.08021010458469391, 0.012897633947432041, -0.02033495530486107, 0.050234872847795486, 0.06849867850542068, -0.03699832409620285, -0.017256470397114754, 0.031763955950737, -0.047259945422410965, -0.023479342460632324, -0.05516798421740532, 0.012332774698734283, -0.006505303084850311, 0.035642657428979874, -0.01371668092906475, 0.00341740227304399, 0.05528095364570618, -0.05121396481990814, 0.008369340561330318, -0.055431582033634186, -0.005300268530845642, 0.06465762853622437, 0.016569223254919052, 0.04797543212771416, -0.029523342847824097, 0.005639184731990099, 0.01616440713405609, -0.0273957047611475, -0.02647309936583042, -0.011956200934946537, 0.023140426725149155, -0.005888664163649082, 0.01535477489233017, -0.0028949070256203413, -0.022029535844922066, 0.021841248497366905, -0.04963235557079315, 0.07749877870082855, 0.0217282772064209, 0.03637697547674179, 0.012888220138847828, -0.04609256610274315, -0.011513727717101574, -0.05814291164278984, 0.007738580461591482, -0.03396690636873245, -0.03296899050474167, 0.05513032525777817, 0.015580718405544758, 0.04631851240992546, 0.017378855496644974, -0.021803591400384903, 0.002457140479236841, -0.009885048493742943, 0.042213860899209976, -0.04142305999994278, 0.009414331056177616, 0.011937372386455536, 0.04330592602491379, 0.016889311373233795, 0.06285008043050766, 0.04206323251128197, -0.1235913410782814, -0.06635221093893051, -0.02312159724533558, 0.0043729571625590324, -0.011833814904093742, 0.03581211715936661, 0.007983352988958359, 0.003535081399604678, 0.01160787045955658, -0.0021464675664901733, -0.025889411568641663, 0.003994029946625233, -0.00599692901596427, 0.02378060109913349, 0.007239621132612228, 0.01835794560611248, 0.04669508337974548, -0.046054910868406296, 0.012812905013561249, 0.005587405525147915, 0.0304271187633276, 0.02398771606385708, 0.01829204522073269, 0.007884502410888672, -0.0031279115937650204, -0.03278070315718651, -0.015533646568655968, -0.025682296603918076, 0.012850562110543251, -0.02532455138862133, -0.02268853969871998, -0.00030125860939733684, 0.026755530387163162, 0.03274304419755936, 0.030031718313694, 0.032893672585487366, -0.05851948633790016, -0.01799078658223152, -0.06465762853622437, 0.021257560700178146, -0.031933411955833435, 0.03424933925271034, 0.007442029193043709, -0.009560253471136093, 0.03089783526957035, -0.0006131083355285227, 0.0904528945684433, -0.019544152542948723, -0.04680805653333664, -0.016540979966521263, 0.06458231061697006, -0.018894562497735023, 0.04469924420118332, 0.00970617588609457, 0.02690615877509117, 0.039088305085897446, -0.025286894291639328, -0.056523647159338, -0.021596476435661316, -0.005893371533602476, 0.0784025490283966, 0.01960063725709915, -0.013443665578961372, 0.023460514843463898, 0.005606234539300203, -0.02287682518362999, 0.015891391783952713, 0.009800318628549576, -0.09474582970142365, 0.03554851561784744, -0.027376875281333923, -0.008967150934040546, 0.04217620566487312, -0.025456352159380913, 0.06823507696390152, -0.013293036259710789, 0.008472898043692112, -0.07105937600135803, -0.01097711082547903, 0.005333218723535538, -0.013048263266682625, -0.01215390209108591, -0.003233822761103511, 0.015608961693942547, -0.08615995943546295, -0.034531768411397934, -0.051590535789728165, 0.01419681217521429, 0.03473888337612152, 0.057502735406160355, -0.04262809455394745, 0.019788924604654312, 0.017971958965063095, 0.019581809639930725, 0.03136855363845825, 0.00263601285405457, -0.018414432182908058, -0.014140325598418713, 0.02340402826666832, 0.013161235488951206, -0.02604004181921482, -0.052644941955804825, 0.0019781864248216152, -0.003323259064927697, -0.020749187096953392, 0.04594193771481514, 0.02315925620496273, -0.009357845410704613, 0.020749187096953392, 0.0392012745141983, -0.1009969487786293, 0.05147756636142731, -0.012022101320326328, 0.04323061183094978, 0.036113373935222626, 0.00812456849962473, -0.0094755245372653, 0.02148350514471531, -0.024684377014636993, -0.013227135874330997, 0.04597959667444229, -0.0366029217839241, -0.05441483482718468, -0.018000202253460884, 0.014789914712309837, 0.029711630195379257, -0.00570508511736989, -0.05309683084487915, 0.03424933925271034, 0.017576556652784348, 0.02105044573545456, -0.005846299696713686, 0.029542172327637672, 0.03946487605571747, -0.0679338127374649, -0.010035677812993526, -0.017039939761161804, 0.04319295287132263, -0.037939757108688354, 0.008378755301237106, -0.03089783526957035, 0.001326243975199759, 0.05983749032020569, 0.002909028436988592, -0.01742592826485634, 0.08021010458469391, 0.023893574252724648, -0.0016404472989961505, 0.005130810663104057, -0.024778520688414574, -0.026830844581127167, 0.02907145582139492, 0.08548212796449661, -0.014902886934578419, 0.023968888446688652, -0.004252924118191004, -0.005206125322729349, -0.017633043229579926, 0.00599692901596427, -0.016512736678123474, -0.009513181634247303, 0.02315925620496273, 0.020109012722969055, 0.02411951683461666, 0.04748588800430298, -0.01360370870679617, 0.009800318628549576, 0.005662720184773207, 0.0343623086810112, -0.02677435800433159, 0.0055309198796749115, -0.06420574337244034, 0.0032291156239807606, 0.00175694958306849, -0.022123679518699646, 0.0199960395693779, -0.02229313738644123, 0.010421665385365486, -0.024571405723690987, -0.021464675664901733, 0.020391441881656647, 0.011372512206435204, -0.03519077226519585, -0.04285403713583946, 0.006651225034147501, -0.05117630586028099, 0.025682296603918076, -0.020918644964694977, -0.03980379179120064, 0.0060722436755895615, -0.012671690434217453, 0.018273217603564262, -0.01410266850143671, -0.0035115457139909267, -0.005460312124341726, -0.03694183751940727, 0.01965712383389473, -0.03296899050474167, 0.024251317605376244, 0.010581708513200283, -0.010619365610182285, -0.016230307519435883, -0.014997029677033424, -0.05121396481990814, 0.008458776399493217, -0.027998222038149834, 0.0870637372136116, -0.022707367315888405, 0.05098801851272583, -0.0023147487081587315, -0.053849976509809494, -0.019581809639930725, 0.04816371947526932, -0.00917897280305624, 0.001318006427027285, 0.03123675100505352, -0.021652963012456894, 0.030144689604640007, -0.0400673933327198, 0.004530646838247776, -0.023912401869893074, 0.014733429066836834, 0.039427220821380615, -0.03745020925998688, 0.02272619679570198, 0.0021111639216542244, -0.041498374193906784, -0.0015157073503360152, -0.03257358819246292, -0.0256634671241045, -0.05863245576620102, -0.02455257624387741, 0.012747004628181458, 0.05848182737827301, 0.021596476435661316, 0.013283621519804, -0.0141497403383255, 0.010195720940828323, 0.030445948243141174, 0.06883759051561356, -0.020316127687692642, -0.03618869185447693, 0.051590535789728165, -0.03761966899037361, 0.028506595641374588, -0.0013038848992437124, -0.05915965884923935, 0.02067387104034424, 0.01095828227698803, 0.050197213888168335, -0.012643447145819664, -0.007611487060785294, -0.01835794560611248, -0.0007749171345494688, -0.00843524094671011, 0.036056891083717346, -0.020391441881656647, -0.05204242467880249, -0.07700923085212708, 0.030596576631069183, -0.0014721660409122705, 0.019544152542948723 ]
24,400
okta_jwt_verifier.jwt_verifier
__init__
Args: issuer: string, full URI of the token issuer, required audience: string, expected audience, optional request_executor: RequestExecutor class or its subclass, optional max_retries: int, number of times to retry a failed network request, optional request_timeout: int, max request timeout, optional max_requests: int, max number of concurrent requests leeway: int, amount of time to expand the window for token expiration (to work around clock skew) cache_jwks: bool, optional
def __init__(self, issuer=None, audience='api://default', request_executor=RequestExecutor, max_retries=MAX_RETRIES, request_timeout=REQUEST_TIMEOUT, max_requests=MAX_REQUESTS, leeway=LEEWAY, cache_jwks=True, proxy=None): """ Args: issuer: string, full URI of the token issuer, required audience: string, expected audience, optional request_executor: RequestExecutor class or its subclass, optional max_retries: int, number of times to retry a failed network request, optional request_timeout: int, max request timeout, optional max_requests: int, max number of concurrent requests leeway: int, amount of time to expand the window for token expiration (to work around clock skew) cache_jwks: bool, optional """ self._jwt_verifier = BaseJWTVerifier(issuer=issuer, client_id='client_id_stub', audience=audience, request_executor=request_executor, max_retries=max_retries, request_timeout=request_timeout, max_requests=max_requests, leeway=leeway, cache_jwks=cache_jwks, proxy=proxy)
(self, issuer=None, audience='api://default', request_executor=<class 'okta_jwt_verifier.request_executor.RequestExecutor'>, max_retries=1, request_timeout=30, max_requests=10, leeway=120, cache_jwks=True, proxy=None)
[ 0.012662915512919426, -0.029731137678027153, -0.003503156593069434, 0.05440085753798485, -0.008993388153612614, -0.03207438811659813, -0.03394898399710655, 0.006879777647554874, -0.06876028329133987, 0.021107982844114304, 0.04345320165157318, 0.04960188642144203, 0.02174534648656845, 0.027256667613983154, 0.014012626372277737, 0.01126633957028389, 0.05964973568916321, 0.009340188466012478, 0.019439589232206345, -0.030612198635935783, -0.0019378665601834655, 0.010029103606939316, -0.015784122049808502, 0.06943514198064804, -0.04277834668755531, 0.02067682519555092, -0.04101622477173805, -0.03211187943816185, 0.011809973046183586, 0.005909672938287258, -0.027537858113646507, 0.018633512780070305, 0.04315326735377312, 0.05792510509490967, 0.028268950060009956, -0.04941442608833313, -0.03402397036552429, 0.01808987930417061, -0.14456906914710999, 0.019645795226097107, -0.025569528341293335, 0.024725958704948425, 0.04690246284008026, -0.020358143374323845, 0.01735878549516201, 0.02506338618695736, 0.05631294846534729, 0.038429275155067444, 0.002240145578980446, -0.024744704365730286, 0.007029745727777481, -0.00910117756575346, 0.016965119168162346, 0.006776674650609493, -0.02774406224489212, 0.06546099483966827, 0.048289667814970016, 0.004944254644215107, 0.004555275198072195, 0.0416535884141922, -0.06962259858846664, 0.01080706249922514, 0.02868136204779148, 0.04255339503288269, 0.03323663771152496, 0.014059491455554962, -0.06707314401865005, 0.0398164801299572, -0.0011405762052163482, 0.014434411190450191, 0.08833109587430954, -0.047202400863170624, -0.022832613438367844, 0.01130383089184761, 0.06051205098628998, -0.044652946293354034, -0.09035566449165344, -0.043903104960918427, -0.04251590371131897, -0.01644023135304451, 0.06501109153032303, -0.014612497761845589, -0.0607370026409626, -0.04517783224582672, 0.07625868171453476, 0.007226578425616026, 0.0223827101290226, -0.10730203986167908, -0.03617975860834122, 0.012737899087369442, -0.06977257132530212, 0.004278772044926882, -0.018436679616570473, -0.013543976470828056, -0.02933747135102749, -0.019683288410305977, 0.0147249735891819, -0.019270876422524452, -0.003259458811953664, 0.011641259305179119, 0.015456067398190498, 0.04776477813720703, -0.090280681848526, 0.05518819019198418, 0.014621871523559093, 0.01996447704732418, 0.0024440083652734756, -0.06081198528409004, 0.042928311973810196, -0.025625767186284065, -0.024538498371839523, -0.0172463096678257, -0.016027819365262985, 0.039479050785303116, -0.01640274003148079, 0.06857282668352127, -0.004484977573156357, 0.01729317381978035, 0.05012677237391472, 0.00906837172806263, 0.04157860204577446, -0.00023080997925717384, -0.0199082400649786, 0.01212865486741066, 0.01168812345713377, -0.03454885631799698, 0.008341965265572071, 0.006181489676237106, 0.0072781299240887165, -0.036835867911577225, 0.028175219893455505, 0.023788658902049065, -0.013065953738987446, 0.06778549402952194, 0.006476738955825567, 0.024875927716493607, 0.021070491522550583, 0.013965761289000511, -0.024800943210721016, 0.002339733764529228, -0.008721571415662766, 0.037698183208703995, -0.004630259238183498, -0.039291590452194214, -0.027500364929437637, -0.008937150239944458, -0.06564845144748688, -0.032468050718307495, 0.01817423664033413, -0.01808987930417061, 0.021857822313904762, -0.04877706244587898, 0.004447485785931349, 0.02946869470179081, 0.01291598565876484, -0.05380098894238472, -0.007915494032204151, 0.01557791605591774, 0.024763450026512146, 0.005309801083058119, -0.03044348582625389, -0.009710421785712242, 0.016871389001607895, -0.07558382302522659, 0.001125345123000443, 0.009719794616103172, 0.0054972609505057335, -0.0005653087282553315, -0.06002465635538101, 0.015999700874090195, -0.04067879542708397, -0.013244041241705418, -0.08998074382543564, -0.00040860395529307425, -0.0345863476395607, 0.023807404562830925, 0.03932908549904823, 0.022195249795913696, -0.06347391754388809, -0.008187310770154, -0.010703959502279758, -0.021332934498786926, -0.041128698736429214, -0.05605050548911095, -0.00583937531337142, 0.034248922020196915, 0.0054269637912511826, 0.05106407403945923, 0.008168564178049564, 0.030855897814035416, 0.0030110743828117847, 0.023076312616467476, 0.016693303361535072, 0.0016719078412279487, -0.03917911648750305, 0.0048973895609378815, 0.024426022544503212, 0.04262837767601013, -0.013618960976600647, -0.008768436498939991, -0.00522075779736042, 0.03977898880839348, 0.028025252744555473, -0.0233012642711401, 0.014996791258454323, -0.0006022148882038891, -0.009766659699380398, 0.012344233691692352, -0.03145577013492584, -0.00987913552671671, -0.0028892254922538996, -0.011510036885738373, -0.028381425887346268, 0.03809184953570366, -0.03790438920259476, 0.005965910851955414, 0.016871389001607895, 0.01338463556021452, 0.05751269310712814, 0.015830988064408302, 0.10722705721855164, 0.05181391164660454, -0.013159683905541897, -0.03902914747595787, 0.04967686906456947, 0.04529030993580818, 0.05815005674958229, -0.021239204332232475, -0.04866458475589752, -0.03996644914150238, -0.034230176359415054, 0.008571603335440159, 0.019645795226097107, -0.004822405520826578, -0.0537634938955307, -0.04172857105731964, 0.048064716160297394, 0.010188444517552853, -0.004231906961649656, 0.001028100261464715, 0.04866458475589752, 0.02262640744447708, 0.061111923307180405, -0.008365397341549397, 0.007123475428670645, 0.05736272409558296, -0.017611855641007423, 0.029206249862909317, 0.01567164622247219, -0.012063043192029, -0.017921164631843567, -0.016693303361535072, -0.041991014033555984, -0.02609441615641117, 0.017677467316389084, 0.008843420073390007, 0.02616940066218376, -0.0849568173289299, 0.025438306853175163, 0.0009490156662650406, 0.03647969290614128, 0.009316756390035152, -0.04671500250697136, 0.04056631773710251, -0.03809184953570366, -0.034155189990997314, 0.007910807617008686, 0.002584603149443865, 0.014471903443336487, -0.03394898399710655, 0.09185534715652466, -0.001475075026974082, 0.024482261389493942, 0.014134475030004978, -0.03393023833632469, -0.02693798579275608, -0.02684425562620163, 0.026338113471865654, -0.032543037086725235, 0.022082773968577385, -0.03544866293668747, -0.04499037191271782, 0.050689153373241425, 0.027950268238782883, 0.0199082400649786, -0.024894673377275467, -0.050689153373241425, 0.022288979962468147, -0.04056631773710251, 0.006982880644500256, 0.011050759814679623, 0.008032656274735928, 0.05747520178556442, 0.005370725877583027, 0.036873359233140945, -0.06756054610013962, -0.03925409913063049, 0.0007135191699489951, 0.04221596568822861, 0.01996447704732418, -0.0129815973341465, 0.06527353078126907, -0.012662915512919426, -0.030124804005026817, 0.048064716160297394, -0.005408217664808035, 0.006851658690720797, 0.012700406834483147, 0.000009276884156861342, 0.038579244166612625, 0.037735674530267715, 0.002736914437264204, -0.007339054718613625, -0.057625167071819305, 0.0313807837665081, -0.01468748226761818, 0.00821542926132679, -0.0022378023713827133, 0.01904592476785183, 0.03406146168708801, 0.024144833907485008, 0.013815793208777905, 0.011547529138624668, -0.02858763188123703, -0.028325188905000687, -0.04705243185162544, -0.01517487782984972, 0.028418919071555138, -0.059424784034490585, -0.01805238611996174, -0.07385919243097305, -0.04319075867533684, -0.0006531805265694857, -0.056875329464673996, -0.02613190747797489, 0.0032383694779127836, 0.004021014552563429, 0.019364606589078903, -0.005000492557883263, -0.006008089520037174, -0.013609588146209717, -0.10077843815088272, -0.024557245895266533, 0.06527353078126907, -0.10475258529186249, -0.062011729925870895, 0.029881106689572334, -0.036742135882377625, 0.05796259641647339, 0.010179071687161922, -0.004011641722172499, 0.03631097823381424, 0.061111923307180405, 0.05987468734383583, 0.06579841673374176, -0.0486270934343338, -0.011922448873519897, -0.039404068142175674, -0.04191603139042854, -0.019720779731869698, -0.048927031457424164, 0.014293815940618515, -0.03634847328066826, 0.03044348582625389, -0.02429480105638504, -0.04937693476676941, 0.03809184953570366, -0.04686497151851654, 0.020283158868551254, -0.04049133509397507, -0.02783779241144657, -0.06381134688854218, -0.06171179562807083, 0.0278940312564373, 0.025719495490193367, -0.0007264070445671678, -0.08383206278085709, 0.017902418971061707, -0.08923090249300003, 0.0486270934343338, -0.009813524782657623, 0.051513977348804474, 0.006214295048266649, 0.020376889035105705, -0.0016402739565819502, -0.0050286115147173405, -0.0209205225110054, -0.003974149469286203, 0.06857282668352127, 0.03992895409464836, 0.014893688261508942, -0.038654226809740067, -0.020451873540878296, 0.053426068276166916, -0.02778155542910099, 0.015446694567799568, -0.066248320043087, 0.035842329263687134, -0.0007826450164429843, -0.03188692778348923, 0.048927031457424164, 0.020601840689778328, 0.05979970470070839, 0.013684571720659733, -0.004330323543399572, 0.06639829277992249, 0.06066201999783516, 0.01167875062674284, 0.015915343537926674, 0.03812934085726738, -0.017743078991770744, -0.05912484973669052, 0.029712392017245293, -0.04757731780409813, -0.006640766281634569, -0.027219176292419434, 0.0011323748622089624, 0.0447654202580452, 0.06594838947057724, -0.004037417471408844, -0.006781361531466246, -0.026431843638420105, 0.015418575145304203, -0.0023666811175644398, -0.018867837265133858, 0.01384391263127327, 0.0033250697888433933, -0.007887374609708786, -0.05031423270702362, -0.06249912455677986, 0.03829805552959442, 0.055900536477565765, 0.010150953195989132, -0.031568244099617004, 0.011959941126406193, 0.028250204399228096, -0.03966651111841202, 0.019289622083306313, -0.023788658902049065, -0.012869121506810188, 0.005112968385219574, -0.012034924700856209, 0.018671004101634026, -0.011144489981234074, 0.047427352517843246, 0.03228059411048889, -0.059312306344509125, 0.07970794290304184, 0.03884168714284897, -0.008548170328140259, 0.01809925213456154, 0.0006537663284689188, -0.02251393161714077, -0.007681168615818024, -0.032393068075180054, -0.01653396151959896, 0.0208267942070961, 0.02167036198079586, 0.026338113471865654, -0.02590695582330227, 0.06797295808792114, -0.040191400796175, 0.05886240303516388, -0.03323663771152496, -0.03799811750650406, 0.09410486370325089, 0.003690616460517049, 0.02776280976831913, 0.007062551099807024, -0.0021241549402475357, 0.010657094419002533, 0.03351782634854317, -0.05571307614445686, -0.016993239521980286, 0.011322577483952045, -0.013928269036114216, 0.030818404629826546, -0.02180158533155918, -0.05368851125240326, -0.012231757864356041, -0.020658079534769058, 0.027950268238782883, 0.03389274701476097, 0.0381668321788311, 0.018521036952733994, -0.05455082654953003, -0.05949976667761803, -0.04319075867533684, 0.0013040178455412388, 0.01259730476886034, -0.06182426959276199, 0.07843321561813354, -0.0023690243251621723, 0.025607019662857056, -0.009166788309812546, 0.018530409783124924, 0.02264515496790409, 0.0017340038903057575, -0.006879777647554874, -0.001983559923246503, 0.02688174694776535, -0.014846823178231716, 0.03366779536008835, 0.018671004101634026, 0.03151200711727142, 0.015887225046753883, -0.12282371520996094, -0.0521138496696949, -0.038429275155067444, 0.00029188088956288993, 0.012325487099587917, 0.034417636692523956, -0.038541752845048904, -0.008885598741471767, -0.01337526272982359, 0.01083518099039793, -0.03370528668165207, 0.022288979962468147, -0.01339400839060545, 0.0400039404630661, 0.024950910359621048, 0.029299980029463768, 0.06332395225763321, -0.024463515728712082, 0.031680721789598465, 0.008660647086799145, 0.01639336720108986, 0.018867837265133858, 0.05736272409558296, 0.05623796582221985, -0.010863300412893295, -0.030724674463272095, -0.050689153373241425, -0.006476738955825567, 0.0021944523323327303, -0.0008570431382395327, -0.031586989760398865, 0.0008623154717497528, 0.04870207980275154, -0.02950618602335453, 0.012672288343310356, 0.03902914747595787, -0.04244091734290123, -0.04247840866446495, -0.0776083916425705, 0.00565660186111927, -0.06137436628341675, 0.056875329464673996, -0.0015652900328859687, -0.023001328110694885, 0.02435103990137577, -0.023863643407821655, 0.03762320056557655, -0.01120072789490223, -0.0572502501308918, -0.022139012813568115, 0.07168465852737427, -0.005698780529201031, 0.03537368029356003, 0.048964522778987885, 0.02435103990137577, 0.04877706244587898, -0.026188146322965622, -0.019589558243751526, 0.006036208476871252, -0.013094073161482811, 0.027575349435210228, 0.00626584654673934, -0.024913419038057327, 0.029262488707900047, -0.010778943076729774, -0.008946523070335388, 0.005576931405812502, 0.009176161140203476, -0.09178035706281662, 0.05552561953663826, -0.02776280976831913, 0.009227712638676167, 0.0267880167812109, -0.015306099317967892, 0.06456118822097778, 0.029075028374791145, -0.01913028210401535, -0.08375708013772964, -0.03571110963821411, -0.007732720114290714, -0.007474963087588549, -0.008459127508103848, -0.032505545765161514, 0.022813867777585983, -0.05203886330127716, -0.011613139882683754, -0.05991217866539955, 0.03481129929423332, 0.005052044056355953, 0.054138414561748505, -0.0627615675330162, 0.0018371068872511387, 0.02858763188123703, 0.0059846569783985615, 0.014368800446391106, 0.015324845910072327, -0.030949627980589867, 0.0038921358063817024, 0.011828718706965446, -0.035936061292886734, -0.036967091262340546, -0.022738883271813393, 0.017527500167489052, -0.00734374113380909, -0.0007644848665222526, 0.00987913552671671, 0.012250503525137901, -0.028025252744555473, 0.0023163012228906155, 0.0035547080915421247, -0.05278870463371277, 0.025588274002075195, 0.023001328110694885, -0.023076312616467476, 0.009588573127985, -0.004175669047981501, -0.027387889102101326, 0.0345863476395607, -0.06268658488988876, -0.03282422572374344, 0.047164905816316605, -0.06478613615036011, -0.018802227452397346, -0.00909180473536253, 0.009298010729253292, 0.009307383559644222, -0.021182967349886894, -0.06178677827119827, 0.039366576820611954, 0.050576675683259964, 0.04795223847031593, -0.007737406995147467, 0.06253661960363388, 0.019402097910642624, -0.031736958771944046, 0.030518468469381332, 0.013750182464718819, 0.023095058277249336, -0.06823539733886719, -0.00006586725066881627, -0.03899165615439415, -0.01045088842511177, 0.04345320165157318, 0.0015160818584263325, -0.0345863476395607, 0.06471115350723267, 0.012109908275306225, -0.02161412499845028, -0.029150012880563736, -0.022757630795240402, -0.008557544089853764, 0.043790630996227264, 0.10265303403139114, 0.007334367837756872, 0.029206249862909317, 0.0029431201983243227, 0.07730845361948013, -0.007943612523376942, -0.023694928735494614, -0.01644023135304451, -0.001309875980950892, -0.028100237250328064, 0.017855554819107056, 0.018521036952733994, 0.0330304317176342, -0.02601943165063858, 0.022926343604922295, 0.0049958061426877975, 0.021839076653122902, 0.005398844834417105, 0.0008582148002460599, -0.05196388065814972, 0.018783479928970337, 0.010197817347943783, -0.022795122116804123, 0.025569528341293335, -0.017536872997879982, 0.004817719105631113, -0.031643230468034744, -0.01917714625597, 0.02080804668366909, 0.05575057119131088, -0.04446548596024513, -0.0590873546898365, 0.001494992640800774, -0.055113207548856735, 0.008496619760990143, -0.02787528559565544, -0.05391346290707588, -0.005276995711028576, -0.04169107973575592, -0.031024610623717308, 0.008862165734171867, 0.014171967282891273, -0.009199594147503376, -0.010619602166116238, -0.009513589553534985, -0.0020362830255180597, 0.01899905875325203, 0.03722953423857689, 0.01433130819350481, -0.02695673145353794, 0.0024627542588859797, -0.07494646310806274, 0.045440275222063065, 0.01091016549617052, 0.07048491388559341, -0.044690437614917755, 0.017208818346261978, 0.01661831885576248, -0.05095159634947777, 0.014415665529668331, 0.027500364929437637, -0.01833357661962509, 0.04341571033000946, 0.008037342689931393, -0.024707213044166565, 0.01824921928346157, 0.007952985353767872, -0.02350747026503086, -0.005755018442869186, 0.017161952331662178, 0.03717329353094101, -0.053276099264621735, 0.029974834993481636, -0.005516007076948881, -0.01735878549516201, -0.013656452298164368, -0.006069013848900795, -0.08848106861114502, -0.0029126580338925123, -0.013806420378386974, 0.030031073838472366, 0.0779833123087883, 0.014912433922290802, 0.012934732250869274, -0.004006954841315746, 0.038429275155067444, 0.005469141993671656, 0.07123475521802902, 0.008360710926353931, -0.06249912455677986, 0.06478613615036011, -0.024763450026512146, 0.0049958061426877975, -0.02759409509599209, -0.029262488707900047, -0.009513589553534985, -0.041203681379556656, 0.0004613270575646311, -0.017011985182762146, 0.02003946155309677, -0.034155189990997314, 0.0078217638656497, -0.027969015762209892, -0.023057565093040466, 0.007535887416452169, -0.0710098072886467, -0.04783976450562477, 0.0603620819747448, 0.03383651003241539, -0.012381725013256073 ]
24,401
okta_jwt_verifier.jwt_verifier
verify
null
def __init__(self, issuer=None, audience='api://default', request_executor=RequestExecutor, max_retries=MAX_RETRIES, request_timeout=REQUEST_TIMEOUT, max_requests=MAX_REQUESTS, leeway=LEEWAY, cache_jwks=True, proxy=None): """ Args: issuer: string, full URI of the token issuer, required audience: string, expected audience, optional request_executor: RequestExecutor class or its subclass, optional max_retries: int, number of times to retry a failed network request, optional request_timeout: int, max request timeout, optional max_requests: int, max number of concurrent requests leeway: int, amount of time to expand the window for token expiration (to work around clock skew) cache_jwks: bool, optional """ self._jwt_verifier = BaseJWTVerifier(issuer=issuer, client_id='client_id_stub', audience=audience, request_executor=request_executor, max_retries=max_retries, request_timeout=request_timeout, max_requests=max_requests, leeway=leeway, cache_jwks=cache_jwks, proxy=proxy)
(self, token, claims_to_verify=('iss', 'aud', 'exp'))
[ 0.012662915512919426, -0.029731137678027153, -0.003503156593069434, 0.05440085753798485, -0.008993388153612614, -0.03207438811659813, -0.03394898399710655, 0.006879777647554874, -0.06876028329133987, 0.021107982844114304, 0.04345320165157318, 0.04960188642144203, 0.02174534648656845, 0.027256667613983154, 0.014012626372277737, 0.01126633957028389, 0.05964973568916321, 0.009340188466012478, 0.019439589232206345, -0.030612198635935783, -0.0019378665601834655, 0.010029103606939316, -0.015784122049808502, 0.06943514198064804, -0.04277834668755531, 0.02067682519555092, -0.04101622477173805, -0.03211187943816185, 0.011809973046183586, 0.005909672938287258, -0.027537858113646507, 0.018633512780070305, 0.04315326735377312, 0.05792510509490967, 0.028268950060009956, -0.04941442608833313, -0.03402397036552429, 0.01808987930417061, -0.14456906914710999, 0.019645795226097107, -0.025569528341293335, 0.024725958704948425, 0.04690246284008026, -0.020358143374323845, 0.01735878549516201, 0.02506338618695736, 0.05631294846534729, 0.038429275155067444, 0.002240145578980446, -0.024744704365730286, 0.007029745727777481, -0.00910117756575346, 0.016965119168162346, 0.006776674650609493, -0.02774406224489212, 0.06546099483966827, 0.048289667814970016, 0.004944254644215107, 0.004555275198072195, 0.0416535884141922, -0.06962259858846664, 0.01080706249922514, 0.02868136204779148, 0.04255339503288269, 0.03323663771152496, 0.014059491455554962, -0.06707314401865005, 0.0398164801299572, -0.0011405762052163482, 0.014434411190450191, 0.08833109587430954, -0.047202400863170624, -0.022832613438367844, 0.01130383089184761, 0.06051205098628998, -0.044652946293354034, -0.09035566449165344, -0.043903104960918427, -0.04251590371131897, -0.01644023135304451, 0.06501109153032303, -0.014612497761845589, -0.0607370026409626, -0.04517783224582672, 0.07625868171453476, 0.007226578425616026, 0.0223827101290226, -0.10730203986167908, -0.03617975860834122, 0.012737899087369442, -0.06977257132530212, 0.004278772044926882, -0.018436679616570473, -0.013543976470828056, -0.02933747135102749, -0.019683288410305977, 0.0147249735891819, -0.019270876422524452, -0.003259458811953664, 0.011641259305179119, 0.015456067398190498, 0.04776477813720703, -0.090280681848526, 0.05518819019198418, 0.014621871523559093, 0.01996447704732418, 0.0024440083652734756, -0.06081198528409004, 0.042928311973810196, -0.025625767186284065, -0.024538498371839523, -0.0172463096678257, -0.016027819365262985, 0.039479050785303116, -0.01640274003148079, 0.06857282668352127, -0.004484977573156357, 0.01729317381978035, 0.05012677237391472, 0.00906837172806263, 0.04157860204577446, -0.00023080997925717384, -0.0199082400649786, 0.01212865486741066, 0.01168812345713377, -0.03454885631799698, 0.008341965265572071, 0.006181489676237106, 0.0072781299240887165, -0.036835867911577225, 0.028175219893455505, 0.023788658902049065, -0.013065953738987446, 0.06778549402952194, 0.006476738955825567, 0.024875927716493607, 0.021070491522550583, 0.013965761289000511, -0.024800943210721016, 0.002339733764529228, -0.008721571415662766, 0.037698183208703995, -0.004630259238183498, -0.039291590452194214, -0.027500364929437637, -0.008937150239944458, -0.06564845144748688, -0.032468050718307495, 0.01817423664033413, -0.01808987930417061, 0.021857822313904762, -0.04877706244587898, 0.004447485785931349, 0.02946869470179081, 0.01291598565876484, -0.05380098894238472, -0.007915494032204151, 0.01557791605591774, 0.024763450026512146, 0.005309801083058119, -0.03044348582625389, -0.009710421785712242, 0.016871389001607895, -0.07558382302522659, 0.001125345123000443, 0.009719794616103172, 0.0054972609505057335, -0.0005653087282553315, -0.06002465635538101, 0.015999700874090195, -0.04067879542708397, -0.013244041241705418, -0.08998074382543564, -0.00040860395529307425, -0.0345863476395607, 0.023807404562830925, 0.03932908549904823, 0.022195249795913696, -0.06347391754388809, -0.008187310770154, -0.010703959502279758, -0.021332934498786926, -0.041128698736429214, -0.05605050548911095, -0.00583937531337142, 0.034248922020196915, 0.0054269637912511826, 0.05106407403945923, 0.008168564178049564, 0.030855897814035416, 0.0030110743828117847, 0.023076312616467476, 0.016693303361535072, 0.0016719078412279487, -0.03917911648750305, 0.0048973895609378815, 0.024426022544503212, 0.04262837767601013, -0.013618960976600647, -0.008768436498939991, -0.00522075779736042, 0.03977898880839348, 0.028025252744555473, -0.0233012642711401, 0.014996791258454323, -0.0006022148882038891, -0.009766659699380398, 0.012344233691692352, -0.03145577013492584, -0.00987913552671671, -0.0028892254922538996, -0.011510036885738373, -0.028381425887346268, 0.03809184953570366, -0.03790438920259476, 0.005965910851955414, 0.016871389001607895, 0.01338463556021452, 0.05751269310712814, 0.015830988064408302, 0.10722705721855164, 0.05181391164660454, -0.013159683905541897, -0.03902914747595787, 0.04967686906456947, 0.04529030993580818, 0.05815005674958229, -0.021239204332232475, -0.04866458475589752, -0.03996644914150238, -0.034230176359415054, 0.008571603335440159, 0.019645795226097107, -0.004822405520826578, -0.0537634938955307, -0.04172857105731964, 0.048064716160297394, 0.010188444517552853, -0.004231906961649656, 0.001028100261464715, 0.04866458475589752, 0.02262640744447708, 0.061111923307180405, -0.008365397341549397, 0.007123475428670645, 0.05736272409558296, -0.017611855641007423, 0.029206249862909317, 0.01567164622247219, -0.012063043192029, -0.017921164631843567, -0.016693303361535072, -0.041991014033555984, -0.02609441615641117, 0.017677467316389084, 0.008843420073390007, 0.02616940066218376, -0.0849568173289299, 0.025438306853175163, 0.0009490156662650406, 0.03647969290614128, 0.009316756390035152, -0.04671500250697136, 0.04056631773710251, -0.03809184953570366, -0.034155189990997314, 0.007910807617008686, 0.002584603149443865, 0.014471903443336487, -0.03394898399710655, 0.09185534715652466, -0.001475075026974082, 0.024482261389493942, 0.014134475030004978, -0.03393023833632469, -0.02693798579275608, -0.02684425562620163, 0.026338113471865654, -0.032543037086725235, 0.022082773968577385, -0.03544866293668747, -0.04499037191271782, 0.050689153373241425, 0.027950268238782883, 0.0199082400649786, -0.024894673377275467, -0.050689153373241425, 0.022288979962468147, -0.04056631773710251, 0.006982880644500256, 0.011050759814679623, 0.008032656274735928, 0.05747520178556442, 0.005370725877583027, 0.036873359233140945, -0.06756054610013962, -0.03925409913063049, 0.0007135191699489951, 0.04221596568822861, 0.01996447704732418, -0.0129815973341465, 0.06527353078126907, -0.012662915512919426, -0.030124804005026817, 0.048064716160297394, -0.005408217664808035, 0.006851658690720797, 0.012700406834483147, 0.000009276884156861342, 0.038579244166612625, 0.037735674530267715, 0.002736914437264204, -0.007339054718613625, -0.057625167071819305, 0.0313807837665081, -0.01468748226761818, 0.00821542926132679, -0.0022378023713827133, 0.01904592476785183, 0.03406146168708801, 0.024144833907485008, 0.013815793208777905, 0.011547529138624668, -0.02858763188123703, -0.028325188905000687, -0.04705243185162544, -0.01517487782984972, 0.028418919071555138, -0.059424784034490585, -0.01805238611996174, -0.07385919243097305, -0.04319075867533684, -0.0006531805265694857, -0.056875329464673996, -0.02613190747797489, 0.0032383694779127836, 0.004021014552563429, 0.019364606589078903, -0.005000492557883263, -0.006008089520037174, -0.013609588146209717, -0.10077843815088272, -0.024557245895266533, 0.06527353078126907, -0.10475258529186249, -0.062011729925870895, 0.029881106689572334, -0.036742135882377625, 0.05796259641647339, 0.010179071687161922, -0.004011641722172499, 0.03631097823381424, 0.061111923307180405, 0.05987468734383583, 0.06579841673374176, -0.0486270934343338, -0.011922448873519897, -0.039404068142175674, -0.04191603139042854, -0.019720779731869698, -0.048927031457424164, 0.014293815940618515, -0.03634847328066826, 0.03044348582625389, -0.02429480105638504, -0.04937693476676941, 0.03809184953570366, -0.04686497151851654, 0.020283158868551254, -0.04049133509397507, -0.02783779241144657, -0.06381134688854218, -0.06171179562807083, 0.0278940312564373, 0.025719495490193367, -0.0007264070445671678, -0.08383206278085709, 0.017902418971061707, -0.08923090249300003, 0.0486270934343338, -0.009813524782657623, 0.051513977348804474, 0.006214295048266649, 0.020376889035105705, -0.0016402739565819502, -0.0050286115147173405, -0.0209205225110054, -0.003974149469286203, 0.06857282668352127, 0.03992895409464836, 0.014893688261508942, -0.038654226809740067, -0.020451873540878296, 0.053426068276166916, -0.02778155542910099, 0.015446694567799568, -0.066248320043087, 0.035842329263687134, -0.0007826450164429843, -0.03188692778348923, 0.048927031457424164, 0.020601840689778328, 0.05979970470070839, 0.013684571720659733, -0.004330323543399572, 0.06639829277992249, 0.06066201999783516, 0.01167875062674284, 0.015915343537926674, 0.03812934085726738, -0.017743078991770744, -0.05912484973669052, 0.029712392017245293, -0.04757731780409813, -0.006640766281634569, -0.027219176292419434, 0.0011323748622089624, 0.0447654202580452, 0.06594838947057724, -0.004037417471408844, -0.006781361531466246, -0.026431843638420105, 0.015418575145304203, -0.0023666811175644398, -0.018867837265133858, 0.01384391263127327, 0.0033250697888433933, -0.007887374609708786, -0.05031423270702362, -0.06249912455677986, 0.03829805552959442, 0.055900536477565765, 0.010150953195989132, -0.031568244099617004, 0.011959941126406193, 0.028250204399228096, -0.03966651111841202, 0.019289622083306313, -0.023788658902049065, -0.012869121506810188, 0.005112968385219574, -0.012034924700856209, 0.018671004101634026, -0.011144489981234074, 0.047427352517843246, 0.03228059411048889, -0.059312306344509125, 0.07970794290304184, 0.03884168714284897, -0.008548170328140259, 0.01809925213456154, 0.0006537663284689188, -0.02251393161714077, -0.007681168615818024, -0.032393068075180054, -0.01653396151959896, 0.0208267942070961, 0.02167036198079586, 0.026338113471865654, -0.02590695582330227, 0.06797295808792114, -0.040191400796175, 0.05886240303516388, -0.03323663771152496, -0.03799811750650406, 0.09410486370325089, 0.003690616460517049, 0.02776280976831913, 0.007062551099807024, -0.0021241549402475357, 0.010657094419002533, 0.03351782634854317, -0.05571307614445686, -0.016993239521980286, 0.011322577483952045, -0.013928269036114216, 0.030818404629826546, -0.02180158533155918, -0.05368851125240326, -0.012231757864356041, -0.020658079534769058, 0.027950268238782883, 0.03389274701476097, 0.0381668321788311, 0.018521036952733994, -0.05455082654953003, -0.05949976667761803, -0.04319075867533684, 0.0013040178455412388, 0.01259730476886034, -0.06182426959276199, 0.07843321561813354, -0.0023690243251621723, 0.025607019662857056, -0.009166788309812546, 0.018530409783124924, 0.02264515496790409, 0.0017340038903057575, -0.006879777647554874, -0.001983559923246503, 0.02688174694776535, -0.014846823178231716, 0.03366779536008835, 0.018671004101634026, 0.03151200711727142, 0.015887225046753883, -0.12282371520996094, -0.0521138496696949, -0.038429275155067444, 0.00029188088956288993, 0.012325487099587917, 0.034417636692523956, -0.038541752845048904, -0.008885598741471767, -0.01337526272982359, 0.01083518099039793, -0.03370528668165207, 0.022288979962468147, -0.01339400839060545, 0.0400039404630661, 0.024950910359621048, 0.029299980029463768, 0.06332395225763321, -0.024463515728712082, 0.031680721789598465, 0.008660647086799145, 0.01639336720108986, 0.018867837265133858, 0.05736272409558296, 0.05623796582221985, -0.010863300412893295, -0.030724674463272095, -0.050689153373241425, -0.006476738955825567, 0.0021944523323327303, -0.0008570431382395327, -0.031586989760398865, 0.0008623154717497528, 0.04870207980275154, -0.02950618602335453, 0.012672288343310356, 0.03902914747595787, -0.04244091734290123, -0.04247840866446495, -0.0776083916425705, 0.00565660186111927, -0.06137436628341675, 0.056875329464673996, -0.0015652900328859687, -0.023001328110694885, 0.02435103990137577, -0.023863643407821655, 0.03762320056557655, -0.01120072789490223, -0.0572502501308918, -0.022139012813568115, 0.07168465852737427, -0.005698780529201031, 0.03537368029356003, 0.048964522778987885, 0.02435103990137577, 0.04877706244587898, -0.026188146322965622, -0.019589558243751526, 0.006036208476871252, -0.013094073161482811, 0.027575349435210228, 0.00626584654673934, -0.024913419038057327, 0.029262488707900047, -0.010778943076729774, -0.008946523070335388, 0.005576931405812502, 0.009176161140203476, -0.09178035706281662, 0.05552561953663826, -0.02776280976831913, 0.009227712638676167, 0.0267880167812109, -0.015306099317967892, 0.06456118822097778, 0.029075028374791145, -0.01913028210401535, -0.08375708013772964, -0.03571110963821411, -0.007732720114290714, -0.007474963087588549, -0.008459127508103848, -0.032505545765161514, 0.022813867777585983, -0.05203886330127716, -0.011613139882683754, -0.05991217866539955, 0.03481129929423332, 0.005052044056355953, 0.054138414561748505, -0.0627615675330162, 0.0018371068872511387, 0.02858763188123703, 0.0059846569783985615, 0.014368800446391106, 0.015324845910072327, -0.030949627980589867, 0.0038921358063817024, 0.011828718706965446, -0.035936061292886734, -0.036967091262340546, -0.022738883271813393, 0.017527500167489052, -0.00734374113380909, -0.0007644848665222526, 0.00987913552671671, 0.012250503525137901, -0.028025252744555473, 0.0023163012228906155, 0.0035547080915421247, -0.05278870463371277, 0.025588274002075195, 0.023001328110694885, -0.023076312616467476, 0.009588573127985, -0.004175669047981501, -0.027387889102101326, 0.0345863476395607, -0.06268658488988876, -0.03282422572374344, 0.047164905816316605, -0.06478613615036011, -0.018802227452397346, -0.00909180473536253, 0.009298010729253292, 0.009307383559644222, -0.021182967349886894, -0.06178677827119827, 0.039366576820611954, 0.050576675683259964, 0.04795223847031593, -0.007737406995147467, 0.06253661960363388, 0.019402097910642624, -0.031736958771944046, 0.030518468469381332, 0.013750182464718819, 0.023095058277249336, -0.06823539733886719, -0.00006586725066881627, -0.03899165615439415, -0.01045088842511177, 0.04345320165157318, 0.0015160818584263325, -0.0345863476395607, 0.06471115350723267, 0.012109908275306225, -0.02161412499845028, -0.029150012880563736, -0.022757630795240402, -0.008557544089853764, 0.043790630996227264, 0.10265303403139114, 0.007334367837756872, 0.029206249862909317, 0.0029431201983243227, 0.07730845361948013, -0.007943612523376942, -0.023694928735494614, -0.01644023135304451, -0.001309875980950892, -0.028100237250328064, 0.017855554819107056, 0.018521036952733994, 0.0330304317176342, -0.02601943165063858, 0.022926343604922295, 0.0049958061426877975, 0.021839076653122902, 0.005398844834417105, 0.0008582148002460599, -0.05196388065814972, 0.018783479928970337, 0.010197817347943783, -0.022795122116804123, 0.025569528341293335, -0.017536872997879982, 0.004817719105631113, -0.031643230468034744, -0.01917714625597, 0.02080804668366909, 0.05575057119131088, -0.04446548596024513, -0.0590873546898365, 0.001494992640800774, -0.055113207548856735, 0.008496619760990143, -0.02787528559565544, -0.05391346290707588, -0.005276995711028576, -0.04169107973575592, -0.031024610623717308, 0.008862165734171867, 0.014171967282891273, -0.009199594147503376, -0.010619602166116238, -0.009513589553534985, -0.0020362830255180597, 0.01899905875325203, 0.03722953423857689, 0.01433130819350481, -0.02695673145353794, 0.0024627542588859797, -0.07494646310806274, 0.045440275222063065, 0.01091016549617052, 0.07048491388559341, -0.044690437614917755, 0.017208818346261978, 0.01661831885576248, -0.05095159634947777, 0.014415665529668331, 0.027500364929437637, -0.01833357661962509, 0.04341571033000946, 0.008037342689931393, -0.024707213044166565, 0.01824921928346157, 0.007952985353767872, -0.02350747026503086, -0.005755018442869186, 0.017161952331662178, 0.03717329353094101, -0.053276099264621735, 0.029974834993481636, -0.005516007076948881, -0.01735878549516201, -0.013656452298164368, -0.006069013848900795, -0.08848106861114502, -0.0029126580338925123, -0.013806420378386974, 0.030031073838472366, 0.0779833123087883, 0.014912433922290802, 0.012934732250869274, -0.004006954841315746, 0.038429275155067444, 0.005469141993671656, 0.07123475521802902, 0.008360710926353931, -0.06249912455677986, 0.06478613615036011, -0.024763450026512146, 0.0049958061426877975, -0.02759409509599209, -0.029262488707900047, -0.009513589553534985, -0.041203681379556656, 0.0004613270575646311, -0.017011985182762146, 0.02003946155309677, -0.034155189990997314, 0.0078217638656497, -0.027969015762209892, -0.023057565093040466, 0.007535887416452169, -0.0710098072886467, -0.04783976450562477, 0.0603620819747448, 0.03383651003241539, -0.012381725013256073 ]
24,402
okta_jwt_verifier.jwt_verifier
BaseJWTVerifier
null
class BaseJWTVerifier(): def __init__(self, issuer=None, client_id='client_id_stub', audience='api://default', request_executor=RequestExecutor, max_retries=MAX_RETRIES, request_timeout=REQUEST_TIMEOUT, max_requests=MAX_REQUESTS, leeway=LEEWAY, cache_jwks=True, proxy=None): """ Args: issuer: string, full URI of the token issuer, required client_id: string, expected client_id, required audience: string, expected audience, optional request_executor: RequestExecutor class or its subclass, optional max_retries: int, number of times to retry a failed network request, optional request_timeout: int, max request timeout, optional max_requests: int, max number of concurrent requests leeway: int, amount of time to expand the window for token expiration (to work around clock skew) cache_jwks: bool, optional """ # validate input data before any processing config = {'issuer': issuer, 'client_id': client_id, 'audience': audience, 'max_retries': max_retries, 'request_timeout': request_timeout, 'max_requests': max_requests, 'leeway': leeway, 'cache_jwks': cache_jwks} ConfigValidator(config).validate_config() self.issuer = issuer self.client_id = client_id self.audience = audience self.request_executor = request_executor(max_retries=max_retries, max_requests=max_requests, request_timeout=request_timeout, proxy=proxy) self.max_retries = max_retries self.request_timeout = request_timeout self.max_requests = max_requests self.leeway = leeway self.cache_jwks = cache_jwks def parse_token(self, token): """Parse JWT token, get headers, claims and signature. Return: tuple (headers, claims, signing_input, signature) """ return JWTUtils.parse_token(token) async def verify_access_token(self, token, claims_to_verify=('iss', 'aud', 'exp')): """Verify acess token. Algorithm: 1. Retrieve and parse your Okta JSON Web Keys (JWK), which should be checked periodically and cached by your application. 2. Decode the access token, which is in JSON Web Token format 3. Verify the signature used to sign the access token 4. Verify the claims found inside the access token Default claims to verify for access token: 'exp' Expiration - The time after which the token is invalid. 'iss' Issuer - The principal that issued the JWT. 'aud' Audience - The recipient that the JWT is intended for. Raise an Exception if any validation is failed, return None otherwise. """ try: headers, claims, signing_input, signature = self.parse_token(token) if headers.get('alg') != 'RS256': raise JWTValidationException('Header claim "alg" is invalid.') self.verify_claims(claims, claims_to_verify=claims_to_verify, leeway=self.leeway) okta_jwk = await self.get_jwk(headers['kid']) self.verify_signature(token, okta_jwk) except JWTValidationException: raise except Exception as err: raise JWTValidationException(str(err)) async def verify_id_token(self, token, claims_to_verify=('iss', 'exp'), nonce=None): """Verify id token. Algorithm: 1. Retrieve and parse your Okta JSON Web Keys (JWK), which should be checked periodically and cached by your application. 2. Decode the access token, which is in JSON Web Token format. 3. Verify the signature used to sign the access token. 4. Verify the claims found inside the access token. 5. Verify claim "cid" matches provided client_id. 6. If claim "nonce" was provided for token generation, it should be validated too. Default claims to verify for id token: 'exp' Expiration - The time after which the token is invalid. 'iss' Issuer - The principal that issued the JWT. 'aud' Audience - The recipient that the JWT is intended for. For ID token 'aud' should match Client ID Raise an Exception if any validation is failed, return None otherwise. """ try: headers, claims, signing_input, signature = self.parse_token(token) if headers.get('alg') != 'RS256': raise JWTValidationException('Header claim "alg" is invalid.') self.verify_claims(claims, claims_to_verify=claims_to_verify, leeway=self.leeway) okta_jwk = await self.get_jwk(headers['kid']) self.verify_signature(token, okta_jwk) # verify client_id and nonce self.verify_client_id(claims['aud']) if 'nonce' in claims and claims['nonce'] != nonce: raise JWTValidationException('Claim "nonce" is invalid.') except JWTValidationException: raise except Exception as err: raise JWTValidationException(str(err)) def verify_client_id(self, aud): """Verify client_id match aud or one of its elements.""" if isinstance(aud, str): if aud != self.client_id: raise JWTValidationException('Claim "aud" does not match Client ID.') elif isinstance(aud, list): for elem in aud: if elem == self.client_id: return raise JWTValidationException('Claim "aud" does not contain Client ID.') else: raise JWTValidationException('Claim "aud" has unsupported format.') def verify_signature(self, token, okta_jwk): """Verify token signature using received jwk.""" JWTUtils.verify_signature(token, okta_jwk) def verify_claims(self, claims, claims_to_verify, leeway=LEEWAY): """Verify claims are present and valid.""" JWTUtils.verify_claims(claims, claims_to_verify, self.audience, self.issuer, leeway) def verify_expiration(self, token, leeway=LEEWAY): """Verify if token is not expired.""" JWTUtils.verify_expiration(token, leeway) def _get_jwk_by_kid(self, jwks, kid): """Loop through given jwks and find jwk which matches by kid. Return: str if jwk match found, None - otherwise """ okta_jwk = None for key in jwks['keys']: if key['kid'] == kid: okta_jwk = key return okta_jwk async def get_jwk(self, kid): """Get JWK by kid. If key not found, clear cache and retry again to support keys rollover. Return: str - represents JWK Raise JWKException if key not found after retry. """ jwks = await self.get_jwks() okta_jwk = self._get_jwk_by_kid(jwks, kid) if not okta_jwk: # retry logic self._clear_requests_cache() jwks = await self.get_jwks() okta_jwk = self._get_jwk_by_kid(jwks, kid) if not okta_jwk: raise JWKException('No matching JWK.') return okta_jwk async def get_jwks(self): """Get jwks_uri from claims and download jwks. version from okta_jwt_verifier.__init__.py """ jwks_uri = self._construct_jwks_uri() headers = {'User-Agent': f'okta-jwt-verifier-python/{version}',
(issuer=None, client_id='client_id_stub', audience='api://default', request_executor=<class 'okta_jwt_verifier.request_executor.RequestExecutor'>, max_retries=1, request_timeout=30, max_requests=10, leeway=120, cache_jwks=True, proxy=None)
[ 0.03799699991941452, -0.036973923444747925, -0.03848807513713837, 0.08462874591350555, -0.007396830711513758, -0.03713761642575264, -0.02903486229479313, 0.0213004183024168, -0.03883592039346695, 0.010281901806592941, 0.019745344296097755, 0.051767583936452866, 0.0745207667350769, 0.014036586508154869, 0.005938949063420296, -0.004491298459470272, 0.056350961327552795, 0.03531654179096222, 0.048698361963033676, -0.018384654074907303, -0.0239399503916502, 0.001500083482824266, -0.00895702000707388, 0.06289863586425781, -0.03652377054095268, 0.018200501799583435, 0.01228712871670723, -0.018660884350538254, 0.04051376134157181, 0.002286572242155671, -0.02541317790746689, 0.022077955305576324, 0.07247462123632431, 0.05201312527060509, 0.02758209779858589, -0.08274628967046738, 0.002716263523325324, -0.010148902423679829, -0.13373634219169617, 0.03118332102894783, -0.02512671798467636, 0.031776703894138336, 0.046447597444057465, -0.05393650382757187, -0.004355741199105978, 0.03179716691374779, 0.006716486066579819, 0.08716597408056259, 0.004470836836844683, 0.000521448440849781, 0.02938270941376686, -0.033024854958057404, -0.005672949831932783, 0.006680678576231003, -0.0014144008746370673, 0.03445715829730034, 0.0036856268998235464, -0.003854434471577406, 0.020553572103381157, -0.01043536327779293, -0.03279977664351463, -0.01070136297494173, 0.0409434549510479, 0.07087862491607666, 0.02895301766693592, 0.010527439415454865, -0.024492410942912102, 0.009315095841884613, -0.006793216802179813, 0.008767751045525074, 0.0468159019947052, -0.06236664205789566, -0.00718710059300065, 0.02011365070939064, 0.027418404817581177, -0.026845483109354973, -0.08479244261980057, -0.053363583981990814, -0.042846374213695526, -0.028646094724535942, 0.07206539064645767, -0.03693300113081932, -0.01778103969991207, -0.0574558824300766, 0.0893758162856102, 0.04313283413648605, 0.038794998079538345, -0.053568195551633835, -0.04886205121874809, -0.028257327154278755, -0.04853466898202896, 0.009647595696151257, 0.00404114555567503, -0.001786544336937368, -0.004568029195070267, -0.009212789125740528, -0.017013734206557274, -0.0383039191365242, -0.04288729652762413, -0.006041256710886955, 0.02265087701380253, 0.02723425067961216, -0.07591214776039124, 0.06420817226171494, 0.023858103901147842, 0.023899028077721596, -0.02735702134668827, -0.02733655832707882, 0.02457425743341446, -0.013197665102779865, -0.06347156316041946, -0.04661128669977188, 0.0028978593181818724, 0.00303341681137681, 0.011796052567660809, 0.028646094724535942, -0.006665332242846489, 0.02680456079542637, -0.021034417673945427, -0.0032303587067872286, 0.07169708609580994, -0.03449808433651924, -0.0013088963460177183, 0.002478398848325014, 0.034313928335905075, -0.021627802401781082, 0.009724326431751251, 0.023367028683423996, 0.0426008366048336, -0.05618726834654808, -0.0026088408194482327, 0.0872478187084198, 0.010936670005321503, 0.05082635581493378, -0.02639533020555973, 0.023571643978357315, 0.007243369705975056, 0.014711815863847733, -0.04747067019343376, -0.007120600901544094, 0.019131498411297798, 0.022364415228366852, 0.011212900280952454, -0.07722168415784836, -0.024553796276450157, -0.03237008675932884, -0.06973277777433395, -0.045056216418743134, 0.013862663879990578, -0.04861651360988617, 0.052831582725048065, -0.05201312527060509, -0.004846816882491112, 0.022384876385331154, -0.00619983347132802, -0.07247462123632431, -0.011724437586963177, 0.003677953965961933, 0.00497725885361433, -0.013688741251826286, -0.02715240605175495, -0.01608273573219776, -0.002716263523325324, -0.043050989508628845, 0.017668502405285835, 0.05078543350100517, 0.013340895995497704, 0.012000667862594128, -0.03842668980360031, 0.013514818623661995, 0.006788101512938738, 0.053690966218709946, -0.06150725856423378, 0.016430580988526344, -0.03210408613085747, 0.042068835347890854, 0.04264175891876221, -0.006829024292528629, -0.04599744454026222, -0.016000889241695404, -0.02991470694541931, -0.005514373071491718, -0.04178237542510033, -0.017054656520485878, 0.011376592330634594, 0.07926783710718155, 0.0057036420330405235, 0.029321324080228806, 0.029648708179593086, 0.019745344296097755, -0.02925993874669075, 0.0239399503916502, 0.02224164642393589, 0.008834251202642918, -0.019765805453062057, 0.004596163518726826, 0.03918376564979553, 0.040820684283971786, -0.011570976115763187, -0.026252100244164467, -0.012051821686327457, 0.013207895681262016, -0.007141062058508396, -0.028687017038464546, 0.0035219350829720497, -0.01378081738948822, -0.01266566663980484, 0.013422741554677486, -0.009852210059762001, 0.005263719707727432, -0.018016347661614418, -0.02831871062517166, -0.022262107580900192, 0.03578715771436691, 0.019295191392302513, -0.047716207802295685, 0.024860717356204987, 0.029873784631490707, 0.04280545189976692, 0.0075451768934726715, 0.08344198018312454, 0.0125019745901227, -0.014220739714801311, -0.0409434549510479, 0.06645894050598145, 0.00723825441673398, 0.06609063595533371, 0.03490731120109558, -0.003880011150613427, -0.041557297110557556, -0.005061662755906582, 0.006762524601072073, 0.05659649893641472, 0.010036364197731018, -0.08012721687555313, -0.04309191182255745, 0.048698361963033676, -0.0009866277687251568, 0.025883791968226433, -0.00835852138698101, 0.02723425067961216, -0.0196839589625597, 0.053568195551633835, -0.0006969697424210608, -0.002864609472453594, 0.05766049772500992, 0.014865277335047722, 0.01819027028977871, 0.012747512198984623, -0.01409797091037035, -0.04276452586054802, -0.010015902109444141, -0.004616625141352415, -0.006967139430344105, -0.024287795647978783, -0.016277119517326355, 0.025454102084040642, -0.06163002550601959, 0.05737403407692909, -0.014998276717960835, 0.04174145311117172, 0.021361801773309708, -0.02850286476314068, 0.04227345064282417, -0.05733311176300049, -0.009755018167197704, 0.04182329773902893, 0.013484125956892967, -0.014926661737263203, -0.03754684701561928, 0.029607785865664482, -0.011836975812911987, -0.014026355929672718, 0.0032329163514077663, -0.030364859849214554, -0.008332944475114346, -0.03466177359223366, 0.03253377974033356, -0.03850853443145752, 0.012307589873671532, -0.04460606351494789, -0.06621339917182922, 0.046242982149124146, 0.024512872099876404, -0.02201656997203827, -0.024001335725188255, -0.04108668491244316, -0.028441479429602623, -0.009801057167351246, -0.01740250177681446, -0.01218482106924057, -0.042928218841552734, 0.04902574419975281, 0.004562913440167904, 0.01446627825498581, -0.04403313994407654, -0.035071004182100296, -0.03063086047768593, 0.03161301091313362, -0.010281901806592941, -0.013750125654041767, 0.09011243283748627, 0.037096694111824036, -0.05725126713514328, 0.05242235213518143, 0.0003612732980400324, -0.0033889352343976498, -0.00973967183381319, -0.0030615513678640127, 0.03971576318144798, -0.03545977175235748, -0.030057938769459724, -0.004557798150926828, -0.05152204632759094, 0.04190514609217644, -0.03253377974033356, 0.025576870888471603, 0.029607785865664482, 0.026538560166954994, 0.05078543350100517, 0.02097303420305252, 0.01661473512649536, -0.0005626911297440529, -0.004662663675844669, 0.03734223172068596, -0.09395918995141983, 0.010629747062921524, -0.013064665719866753, -0.03543931245803833, -0.0034605504479259253, -0.0744798481464386, -0.03828345984220505, -0.00043224910041317344, -0.030262552201747894, -0.017627578228712082, 0.018548347055912018, -0.013678510673344135, -0.0025193216279149055, -0.007458215579390526, -0.015090353786945343, -0.008327828720211983, -0.07112415879964828, -0.0036523770540952682, 0.0585198774933815, -0.09903363883495331, -0.073456771671772, 0.03230870142579079, -0.02287595346570015, 0.03713761642575264, 0.01690119504928589, -0.012266666628420353, 0.049844205379486084, 0.06314417719841003, 0.0787358358502388, 0.07853122055530548, -0.048984821885824203, -0.007355907931923866, -0.008235752582550049, -0.01798565499484539, 0.0071717542596161366, -0.03505054488778114, -0.005923603195697069, -0.03521423414349556, 0.0034477622248232365, -0.014507200568914413, -0.029853323474526405, 0.046652212738990784, -0.05332265794277191, 0.009872672148048878, -0.05553250014781952, -0.02565871551632881, -0.03766961395740509, -0.06506755948066711, -0.015049430541694164, 0.04845282435417175, 0.018599500879645348, -0.03564392775297165, 0.03310669958591461, -0.09305888414382935, 0.06510847806930542, 0.007059216033667326, 0.04395129531621933, 0.010113094933331013, 0.03785376623272896, 0.005580873228609562, -0.03257470205426216, -0.029075786471366882, -0.02788901887834072, 0.03597130998969078, 0.03394562378525734, 0.003227801062166691, -0.020676342770457268, 0.015468890778720379, 0.032943010330200195, -0.016635196283459663, 0.04118899255990982, -0.06785032153129578, 0.02883024886250496, 0.023878566920757294, -0.026947790756821632, 0.016706811264157295, 0.0024195718578994274, 0.05827433988451958, 0.01776057854294777, -0.008737059310078621, 0.04923035949468613, 0.06842324137687683, 0.0017571309581398964, -0.025188101455569267, 0.03374100849032402, -0.07509369403123856, -0.042518988251686096, 0.024512872099876404, -0.018077731132507324, -0.004491298459470272, -0.013238588348031044, -0.005611565429717302, 0.05520511791110039, 0.01978626661002636, 0.03249285742640495, -0.026211176067590714, -0.009652710519731045, 0.01973511278629303, 0.02702963724732399, -0.02064565010368824, -0.0000573881043237634, -0.005427411757409573, 0.013862663879990578, -0.08798443526029587, -0.021852878853678703, 0.07996352761983871, 0.04231437295675278, -0.01446627825498581, -0.038774535059928894, -0.014988046139478683, 0.04106622189283371, -0.05577803775668144, 0.020175036042928696, 0.013207895681262016, -0.011632360517978668, 0.015745121985673904, 0.039531610906124115, -0.015878120437264442, 0.015427968464791775, 0.07267923653125763, 0.01993972808122635, -0.028114095330238342, 0.0701829344034195, 0.023980872705578804, -0.00720756221562624, 0.016031581908464432, -0.0032789548859000206, -0.044442370533943176, -0.014548123814165592, -0.05450942739844322, 0.010123325511813164, 0.04775713384151459, 0.02758209779858589, -0.007811176124960184, -0.0478799007833004, 0.06011587753891945, -0.009852210059762001, 0.03766961395740509, 0.010194940492510796, -0.009882902726531029, 0.052094969898462296, -0.005220239050686359, 0.041884683072566986, -0.02606794610619545, 0.01628735102713108, 0.009125826880335808, 0.0045040869154036045, -0.05659649893641472, -0.00804136786609888, 0.03245193138718605, -0.0058468724600970745, 0.04215068370103836, -0.008220406249165535, -0.05897003039717674, -0.0029387823306024075, -0.009918710216879845, 0.028871171176433563, 0.03715807572007179, 0.010051709599792957, 0.028380095958709717, -0.05467311665415764, -0.025269947946071625, -0.042723603546619415, -0.007739561144262552, -0.02213933877646923, -0.06662262976169586, 0.04088206961750984, 0.005877564661204815, 0.07091954350471497, -0.011294745840132236, -0.011008284986019135, 0.0009124548523686826, 0.001269252155907452, 0.014190047979354858, -0.016686350107192993, 0.015663275495171547, 0.006210064049810171, 0.014036586508154869, 0.054959580302238464, 0.04865743964910507, 0.0019157076021656394, -0.11106500029563904, -0.04828913137316704, -0.020400112494826317, -0.016860272735357285, -0.03599177300930023, 0.04616113379597664, 0.011376592330634594, -0.02148457057774067, -0.00147578539326787, 0.018885960802435875, -0.022528108209371567, 0.0026088408194482327, -0.012143897823989391, 0.030467167496681213, 0.0013031415874138474, -0.002088351408019662, 0.07038754969835281, -0.01431281678378582, 0.013964971527457237, 0.04509713873267174, 0.01815957762300968, -0.0022072838619351387, 0.03897915035486221, 0.02629302255809307, -0.0585608035326004, -0.023653490468859673, -0.02092188037931919, -0.012634973973035812, -0.02809363417327404, -0.025044871494174004, -0.027684403583407402, -0.02490164153277874, 0.0377514623105526, -0.010752515867352486, 0.010097748599946499, 0.008767751045525074, -0.044524215161800385, -0.06858693808317184, -0.07705799490213394, 0.05385465919971466, -0.03382285311818123, 0.03173578158020973, -0.017740117385983467, -0.009939171373844147, 0.03331131488084793, 0.002557686995714903, 0.07697615027427673, 0.004954239819198847, -0.02799132652580738, -0.03488685190677643, 0.0627758726477623, -0.011581206694245338, 0.028891632333397865, 0.01879388466477394, 0.030671782791614532, 0.026579484343528748, -0.04202791303396225, -0.046979594975709915, 0.001819794299080968, -0.016195274889469147, 0.03636007755994797, 0.03161301091313362, -0.034968696534633636, 0.057742342352867126, -0.018374424427747726, -0.001391381723806262, 0.015325660817325115, -0.03308624029159546, -0.10762747377157211, 0.00301807071082294, -0.07615768909454346, 0.03312716260552406, 0.011182207614183426, -0.03619638830423355, 0.08110937476158142, 0.02576102316379547, 0.04168006777763367, -0.05258604511618614, 0.019141729921102524, 0.009821518324315548, 0.004463163670152426, 0.012645204551517963, -0.020758187398314476, 0.018098194152116776, -0.08528351783752441, 0.0021254378370940685, -0.0500488206744194, 0.008097637444734573, 0.022180261090397835, 0.10721824318170547, -0.008788212202489376, 0.01656358130276203, 0.022262107580900192, 0.006501640658825636, 0.026845483109354973, -0.009263942018151283, -0.01212343666702509, -0.02637486904859543, 0.02776625007390976, 0.0028364749159663916, -0.034845929592847824, -0.021832415834069252, 0.04652944207191467, -0.03597130998969078, -0.0050514317117631435, 0.021955184638500214, 0.04051376134157181, -0.04939405247569084, -0.005872449371963739, 0.010721824131906033, -0.07791737467050552, 0.05234050750732422, 0.010783208534121513, -0.023264721035957336, 0.01940772868692875, -0.005340450443327427, -0.027704866603016853, 0.023858103901147842, -0.024881180375814438, -0.020860495045781136, 0.01740250177681446, -0.042928218841552734, -0.04035007208585739, -0.010031248442828655, 0.020451266318559647, 0.011335669085383415, 0.0049056438729166985, -0.05811065062880516, 0.061875563114881516, 0.04427867755293846, 0.02424687333405018, -0.02715240605175495, 0.014967584051191807, 0.06502663344144821, -0.07570753246545792, 0.007212677504867315, -0.014599277637898922, 0.04689775034785271, -0.0468159019947052, 0.01053767092525959, -0.02680456079542637, -0.027397943660616875, 0.052299585193395615, 0.0022008896339684725, -0.04927128180861473, 0.08855735510587692, 0.005632027052342892, -0.04296914115548134, -0.027377482503652573, -0.0031101475469768047, -0.004276452586054802, 0.020451266318559647, 0.03861084207892418, -0.0008095079683698714, 0.037730999290943146, -0.019970420747995377, 0.03994084149599075, -0.027950404211878777, -0.01441512443125248, -0.018077731132507324, 0.01425143238157034, -0.011315206997096539, 0.045178983360528946, 0.02213933877646923, 0.017903808504343033, -0.045588213950395584, 0.028973478823900223, 0.01679888926446438, 0.011693744920194149, -0.005826410837471485, 0.0393679179251194, -0.057824186980724335, 0.009586211293935776, -0.019336113706231117, 0.009652710519731045, 0.04693867266178131, -0.014895969070494175, 0.00694156251847744, -0.02107534185051918, -0.05225866287946701, 0.04800267145037651, 0.031142396852374077, -0.025781486183404922, -0.05860172584652901, -0.0020423131063580513, -0.05843803286552429, 0.024819795042276382, 0.011345899663865566, -0.05823341757059097, -0.010067055933177471, -0.02948501519858837, 0.06093433499336243, -0.01425143238157034, -0.007309869397431612, -0.024615179747343063, -0.044646985828876495, 0.011929051950573921, -0.014936892315745354, 0.03159255161881447, 0.04755251854658127, -0.008931443095207214, -0.032288242131471634, -0.006322602275758982, -0.06191648915410042, 0.00582129554823041, 0.02619071491062641, 0.07955429702997208, -0.07578938454389572, -0.0036677231546491385, 0.0103842094540596, -0.03627823293209076, -0.010046594776213169, 0.03691253811120987, -0.022282568737864494, 0.005683180410414934, 0.019387267529964447, -0.02733655832707882, 0.022630413994193077, -0.008240867406129837, 0.0011017236392945051, 0.01724904216825962, 0.0013133722823113203, 0.007330331020057201, -0.008614289574325085, 0.019284959882497787, 0.0313674733042717, -0.03118332102894783, 0.013207895681262016, -0.0038416460156440735, -0.06629525125026703, -0.008609174750745296, -0.031142396852374077, -0.017791271209716797, 0.07427523285150528, 0.025249486789107323, 0.005754795856773853, -0.0276639424264431, 0.01932588405907154, 0.024431025609374046, 0.08110937476158142, 0.009105365723371506, -0.045260827988386154, 0.03631915524601936, -0.0329839326441288, 0.03169485926628113, -0.013269280083477497, -0.05540973320603371, -0.03627823293209076, -0.02351025864481926, 0.061670951545238495, -0.03662607818841934, 0.016103196889162064, -0.027213789522647858, 0.01945888251066208, -0.04202791303396225, 0.002680456032976508, -0.029341785237193108, -0.01404681708663702, -0.03253377974033356, 0.03222685679793358, 0.002171476371586323, 0.011100362055003643 ]
24,403
okta_jwt_verifier.jwt_verifier
__init__
Args: issuer: string, full URI of the token issuer, required client_id: string, expected client_id, required audience: string, expected audience, optional request_executor: RequestExecutor class or its subclass, optional max_retries: int, number of times to retry a failed network request, optional request_timeout: int, max request timeout, optional max_requests: int, max number of concurrent requests leeway: int, amount of time to expand the window for token expiration (to work around clock skew) cache_jwks: bool, optional
def __init__(self, issuer=None, client_id='client_id_stub', audience='api://default', request_executor=RequestExecutor, max_retries=MAX_RETRIES, request_timeout=REQUEST_TIMEOUT, max_requests=MAX_REQUESTS, leeway=LEEWAY, cache_jwks=True, proxy=None): """ Args: issuer: string, full URI of the token issuer, required client_id: string, expected client_id, required audience: string, expected audience, optional request_executor: RequestExecutor class or its subclass, optional max_retries: int, number of times to retry a failed network request, optional request_timeout: int, max request timeout, optional max_requests: int, max number of concurrent requests leeway: int, amount of time to expand the window for token expiration (to work around clock skew) cache_jwks: bool, optional """ # validate input data before any processing config = {'issuer': issuer, 'client_id': client_id, 'audience': audience, 'max_retries': max_retries, 'request_timeout': request_timeout, 'max_requests': max_requests, 'leeway': leeway, 'cache_jwks': cache_jwks} ConfigValidator(config).validate_config() self.issuer = issuer self.client_id = client_id self.audience = audience self.request_executor = request_executor(max_retries=max_retries, max_requests=max_requests, request_timeout=request_timeout, proxy=proxy) self.max_retries = max_retries self.request_timeout = request_timeout self.max_requests = max_requests self.leeway = leeway self.cache_jwks = cache_jwks
(self, issuer=None, client_id='client_id_stub', audience='api://default', request_executor=<class 'okta_jwt_verifier.request_executor.RequestExecutor'>, max_retries=1, request_timeout=30, max_requests=10, leeway=120, cache_jwks=True, proxy=None)
[ 0.008244810625910759, -0.03570229932665825, -0.032506491988897324, 0.043152887374162674, -0.014362233690917492, -0.01045729499310255, -0.04364455118775368, 0.015988504514098167, -0.04126187413930893, -0.0018330994062125683, 0.03137188404798508, 0.05669252946972847, 0.015175368636846542, 0.034454233944416046, -0.004179135896265507, 0.033054884523153305, 0.06452132016420364, 0.012868334539234638, 0.009464513510465622, -0.0490906648337841, 0.0000037487830013560597, 0.0037654771003872156, -0.032355211675167084, 0.06297069042921066, -0.017416218295693398, 0.04024072736501694, -0.03248758241534233, -0.015024088323116302, 0.015487385913729668, -0.02220047637820244, -0.007474223617464304, 0.025320647284388542, 0.018456274643540382, 0.055822666734457016, 0.0220491960644722, -0.06142006069421768, -0.028478635475039482, 0.012631958350539207, -0.16519878804683685, 0.008235355839133263, -0.028573187068104744, 0.005748675670474768, 0.05555792525410652, -0.022711049765348434, 0.00013222308189142495, 0.035059355199337006, 0.03689363971352577, 0.026322882622480392, -0.004354054573923349, -0.04073239117860794, 0.002307034330442548, -0.005417748354375362, 0.0003273813927080482, 0.0036803814582526684, -0.044930439442396164, 0.07004307210445404, 0.029802344739437103, 0.010835496708750725, -0.01790788024663925, 0.04319070652127266, -0.07287959009408951, 0.014154222793877125, 0.03823625668883324, 0.040997132658958435, 0.01983671262860298, 0.023543095216155052, -0.06992961466312408, 0.02537737600505352, 0.002619051141664386, 0.02730620838701725, 0.09984541684389114, -0.01828608289361, -0.014466239139437675, 0.0070818387903273106, 0.05540664121508598, -0.055368822067976, -0.08623013645410538, -0.0199123527854681, -0.044627875089645386, 0.009213954210281372, 0.028894659131765366, -0.0010577846551313996, -0.02830844558775425, -0.050641294568777084, 0.05778931826353073, -0.0026663264725357294, 0.024242769926786423, -0.07431676238775253, -0.05824315920472145, 0.03470006585121155, -0.06293287128210068, 0.017766054719686508, -0.030180547386407852, -0.018096981570124626, -0.01821044273674488, -0.014466239139437675, 0.006041782442480326, -0.025093724951148033, -0.004361145664006472, 0.02036619558930397, -0.0174067635089159, 0.0490906648337841, -0.08479296416044235, 0.026587624102830887, 0.02668217569589615, -0.02168990485370159, -0.01519427914172411, -0.056200865656137466, 0.04682144895195961, -0.026190511882305145, -0.023883476853370667, -0.023127073422074318, 0.006987288128584623, 0.03800933435559273, -0.014475694857537746, 0.03918176144361496, -0.0013615284115076065, 0.014683705754578114, 0.045308638364076614, 0.01968543231487274, 0.0236754659563303, -0.018021341413259506, -0.012735963799059391, 0.02545301802456379, 0.025093724951148033, -0.01237667165696621, 0.002562320791184902, 0.011629722081124783, 0.020252734422683716, -0.060814935714006424, 0.026322882622480392, -0.004413148388266563, 0.024583151564002037, 0.06342453509569168, 0.0014986267779022455, 0.01653689704835415, 0.012887245044112206, 0.03810388594865799, -0.05128423869609833, 0.01974216289818287, 0.010258737951517105, 0.03649652376770973, -0.009937266819179058, -0.03184463828802109, -0.027192747220396996, -0.023013612255454063, -0.06350017338991165, -0.042547762393951416, 0.020328376442193985, -0.009001215919852257, 0.029291771352291107, -0.039597783237695694, 0.0068265520967543125, 0.05491498112678528, -0.005431931000202894, -0.05370473116636276, -0.014021852053701878, 0.00601814454421401, 0.019571971148252487, 0.008060437627136707, -0.030842401087284088, -0.004493516404181719, 0.04606504365801811, -0.07662378996610641, 0.011989014223217964, 0.008140805177390575, -0.028724467381834984, -0.03492698445916176, -0.04440095275640488, 0.01515645906329155, -0.04281250387430191, -0.0015695396577939391, -0.08373399823904037, -0.005384655669331551, -0.047086190432310104, 0.022276118397712708, 0.02522609569132328, 0.004798442125320435, -0.05446113646030426, -0.003954578191041946, -0.02515045553445816, -0.015364469960331917, -0.04667016863822937, -0.042623404413461685, -0.007162206806242466, 0.03471897542476654, 0.02167099341750145, 0.0490906648337841, 0.0303129181265831, 0.02074439823627472, -0.01168645266443491, 0.014088037423789501, 0.042245201766490936, 0.023562004789710045, -0.03519172593951225, -0.014362233690917492, 0.004424967337399721, 0.032506491988897324, 0.0018000067211687565, 0.014201497659087181, -0.010769311338663101, 0.04965796694159508, 0.05154898017644882, -0.03850099816918373, 0.038765739649534225, -0.00991835631430149, -0.01951524056494236, 0.002028109971433878, -0.0445900559425354, 0.02853536605834961, -0.03148534521460533, -0.003448732662945986, -0.014683705754578114, 0.03819843754172325, -0.03366000950336456, 0.021122600883245468, 0.0320715568959713, 0.025906860828399658, 0.03831189498305321, 0.009937266819179058, 0.10203899443149567, 0.049166303128004074, -0.009001215919852257, -0.06402965635061264, 0.04353109002113342, 0.025018084794282913, 0.05415857583284378, -0.013359997421503067, -0.03844426944851875, -0.02615269087255001, -0.027968062087893486, 0.025036994367837906, 0.010618031024932861, -0.001860282733105123, -0.026946917176246643, -0.06429439783096313, 0.04235866293311119, 0.0032478126231580973, -0.024129308760166168, 0.008169170469045639, 0.04761567339301109, 0.015827767550945282, 0.05517972260713577, 0.0012338851811364293, -0.020271645858883858, 0.04311506822705269, -0.023883476853370667, 0.028024792671203613, 0.0067698219791054726, -0.008750656619668007, -0.009502333588898182, -0.012792694382369518, -0.04216955974698067, -0.0209145899862051, 0.004831534810364246, -0.006117422599345446, 0.020082544535398483, -0.07106421887874603, 0.011601356789469719, 0.012187570333480835, 0.030899131670594215, 0.011298795230686665, -0.05926430597901344, 0.04394711181521416, -0.03700709715485573, -0.02377001754939556, 0.012215935625135899, 0.0005865091225132346, 0.02044183574616909, -0.017094746232032776, 0.09016343951225281, 0.0209145899862051, 0.022805601358413696, 0.014844441786408424, -0.04073239117860794, -0.023543095216155052, -0.013586918823421001, 0.006377437151968479, -0.058356620371341705, 0.007540408987551928, -0.01989344321191311, -0.02337290532886982, 0.05782713741064072, 0.019070852547883987, 0.01728384755551815, -0.021387342363595963, -0.04803169518709183, 0.04697272926568985, -0.010788221843540668, -0.006391619332134724, -0.013095255941152573, 0.017217662185430527, 0.06811424344778061, -0.0028317898977547884, 0.04591376334428787, -0.05775149539113045, -0.040997132658958435, -0.0007776785641908646, 0.020196005702018738, 0.005573756992816925, -0.012622502632439137, 0.04372018948197365, -0.023580916225910187, -0.012925065122544765, 0.059907250106334686, -0.008358271792531013, 0.0206687580794096, 0.02560429833829403, -0.004800805822014809, 0.04542209953069687, 0.03937086462974548, 0.008315724320709705, 0.0035361917689442635, -0.06573156267404556, 0.028327355161309242, -0.012660323642194271, 0.02454533241689205, -0.013293812051415443, 0.040316369384527206, 0.03023727610707283, -0.0011860189260914922, 0.020385105162858963, 0.026341792196035385, -0.011743182316422462, -0.026890186592936516, -0.01053293514996767, -0.010636940598487854, 0.04243430122733116, -0.058886103332042694, -0.005540664307773113, -0.06750911474227905, -0.017548589035868645, -0.026568714529275894, -0.04504389688372612, -0.020630937069654465, -0.011346070095896721, 0.009317959658801556, 0.002567048417404294, -0.001855555223301053, -0.015326649881899357, 0.01268868800252676, -0.07972504943609238, -0.027136018499732018, 0.06429439783096313, -0.08418784290552139, -0.034605514258146286, 0.04364455118775368, -0.026719994843006134, 0.06315979361534119, 0.004940268117934465, -0.006467259954661131, 0.009530698880553246, 0.06565592437982559, 0.06766039878129959, 0.09114675968885422, -0.04216955974698067, -0.012442857027053833, -0.05400729551911354, -0.038917019963264465, -0.03530518710613251, -0.03396257013082504, -0.018267173320055008, -0.010712580755352974, 0.050716932862997055, -0.04958232492208481, -0.028100432828068733, 0.01576158218085766, -0.040921494364738464, 0.05446113646030426, -0.040845852345228195, -0.030350737273693085, -0.06735783815383911, -0.03800933435559273, 0.027816781774163246, 0.029272861778736115, -0.007748420350253582, -0.10332487523555756, -0.0018969210796058178, -0.0811622217297554, 0.06315979361534119, -0.0004653661453630775, 0.02783569134771824, 0.013076345436275005, 0.005280650220811367, 0.00655708322301507, -0.012915609404444695, -0.001421804423443973, -0.0008610012591816485, 0.06194954365491867, 0.03269559144973755, 0.03787696361541748, -0.025566477328538895, -0.016319431364536285, 0.04016508907079697, -0.03642088547348976, 0.002156935166567564, -0.04205609858036041, 0.036061592400074005, -0.006363254506140947, -0.06758476048707962, 0.04511953890323639, 0.03887920081615448, 0.05654124915599823, 0.03261995315551758, 0.002961797174066305, 0.05608740821480751, 0.06542900204658508, 0.024658791720867157, 0.037536583840847015, 0.030104905366897583, -0.040316369384527206, -0.04428749531507492, 0.026020320132374763, -0.030672209337353706, -0.029140491038560867, -0.03592922165989876, -0.02507481537759304, 0.05177589878439903, 0.05007398873567581, -0.013482913374900818, 0.015997959300875664, -0.01049511507153511, 0.0029594332445412874, 0.008121895603835583, -0.013076345436275005, 0.021954646334052086, 0.0028199711814522743, -0.003548010718077421, -0.04772913455963135, -0.05922648683190346, 0.013908390887081623, 0.05899956449866295, -0.005384655669331551, -0.03186354786157608, 0.0164045263081789, 0.027892421931028366, -0.05775149539113045, 0.01813480257987976, -0.004276050254702568, -0.016092509031295776, -0.02876228839159012, -0.013539643958210945, 0.02675781585276127, -0.02021491527557373, 0.05215410143136978, 0.00013347883941605687, -0.06089057773351669, 0.06977833062410355, 0.038841381669044495, -0.014229862950742245, -0.005914139095693827, 0.014012396335601807, -0.015648121014237404, -0.006230883300304413, -0.046254146844148636, -0.017075834795832634, 0.012187570333480835, 0.039068300276994705, 0.024961354210972786, -0.012244300916790962, 0.058886103332042694, -0.036364153027534485, 0.05120859667658806, -0.02498026378452778, -0.02475334331393242, 0.11777220666408539, 0.029821254312992096, 0.025698848068714142, 0.003874210175126791, -0.012310486286878586, -0.00020668166689574718, 0.019647611305117607, -0.04667016863822937, -0.008897209540009499, 0.006854917388409376, -0.016527442261576653, 0.02753313072025776, -0.017690414562821388, -0.06452132016420364, -0.03316834568977356, -0.0033494543749839067, 0.017454037442803383, 0.03592922165989876, 0.023164892569184303, -0.014995723031461239, -0.05268358439207077, -0.02985907532274723, -0.054272036999464035, 0.014154222793877125, 0.007285122759640217, -0.054347675293684006, 0.07295522838830948, -0.0021002048160880804, 0.015222644433379173, -0.0031816272530704737, 0.020309465005993843, 0.0010837860172614455, 0.020082544535398483, 0.003933304455131292, -0.01685836911201477, -0.0029145218431949615, -0.025415197014808655, 0.005975597072392702, 0.013000705279409885, 0.046254146844148636, 0.025566477328538895, -0.12707598507404327, -0.020612027496099472, -0.025207186117768288, -0.012386126443743706, 0.006230883300304413, 0.017227116972208023, -0.028516456484794617, -0.00767750758677721, -0.018645375967025757, 0.0045407917350530624, -0.03604268282651901, 0.031598806381225586, -0.04296378418803215, 0.022332847118377686, 0.05313742905855179, 0.04103495180606842, 0.04973360896110535, -0.0263039730489254, 0.008821569383144379, 0.006391619332134724, 0.024469690397381783, 0.008188080973923206, 0.04394711181521416, 0.03704492002725601, -0.009455058723688126, -0.042093921452760696, -0.04598940536379814, 0.0017598227132111788, 0.003864755155518651, 0.0026615988463163376, -0.040770210325717926, -0.010816587135195732, 0.03471897542476654, -0.021708814427256584, 0.006561810616403818, 0.05899956449866295, -0.03834971785545349, -0.04024072736501694, -0.06542900204658508, -0.007923338562250137, -0.029651062563061714, 0.05752457678318024, -0.012329395860433578, -0.03800933435559273, 0.03795260563492775, -0.024507511407136917, 0.04897720366716385, -0.030256187543272972, -0.04958232492208481, -0.03239303082227707, 0.072652667760849, -0.030104905366897583, 0.03318725526332855, 0.02675781585276127, 0.01648016646504402, 0.03662889823317528, -0.057902779430150986, -0.028176074847579002, 0.01833335869014263, -0.011572991497814655, 0.028819018974900246, 0.0077720582485198975, -0.035910312086343765, 0.02220047637820244, -0.00854264572262764, -0.0206687580794096, 0.021311702206730843, 0.031050411984324455, -0.08494424819946289, 0.06126878038048744, -0.0338112898170948, -0.001867374056018889, 0.03672344610095024, -0.006741456687450409, 0.08237247169017792, 0.024110399186611176, -0.022786689922213554, -0.09477750957012177, -0.027741141617298126, 0.00775314774364233, -0.011658087372779846, 0.001731457537971437, -0.011743182316422462, 0.01576158218085766, -0.0383308082818985, -0.008178625255823135, -0.0593777671456337, 0.03485134616494179, -0.002860155189409852, 0.05960468947887421, -0.04027855023741722, 0.0006748547893948853, 0.03816061466932297, 0.014768801629543304, -0.0066421786323189735, 0.033508725464344025, -0.02915940061211586, 0.018929027020931244, 0.0021699359640479088, -0.022540859878063202, -0.07227446883916855, -0.015610301867127419, 0.008050981909036636, -0.012187570333480835, -0.002402766840532422, -0.011166423559188843, 0.010183097794651985, -0.0338112898170948, -0.021727724000811577, 0.010353288613259792, -0.04126187413930893, 0.04375800862908363, 0.03662889823317528, -0.0343218632042408, 0.04614068567752838, -0.021614262834191322, -0.0440983921289444, 0.02838408574461937, -0.08675961941480637, -0.006320706568658352, 0.0320715568959713, -0.06830333918333054, -0.036685626953840256, 0.021028049290180206, 0.028270624577999115, 0.022105926647782326, -0.010589665733277798, -0.030029265210032463, 0.0325632207095623, 0.07522444427013397, 0.07250139117240906, 0.007573501672595739, 0.05378037318587303, 0.007923338562250137, 0.007729510311037302, 0.023429634049534798, -0.012093019671738148, 0.008282631635665894, -0.07745584100484848, -0.0013449820689857006, -0.0485990010201931, -0.013133076019585133, 0.05343998968601227, 0.02462097257375717, -0.03038855828344822, 0.06909756362438202, 0.022408489137887955, -0.005058456212282181, -0.023164892569184303, -0.02290015108883381, -0.015222644433379173, 0.05083039402961731, 0.09530699253082275, -0.012178115546703339, 0.02168990485370159, 0.014910627156496048, 0.07223664969205856, -0.01441896427422762, -0.06391619145870209, -0.031144961714744568, -0.0030965316109359264, -0.035380829125642776, 0.024412961676716805, 0.032203927636146545, 0.031901367008686066, -0.016915099695324898, 0.008107712492346764, 0.024261679500341415, 0.017529677599668503, -0.015496840700507164, 0.01172427274286747, -0.04474133625626564, 0.023637646809220314, 0.023618735373020172, -0.01968543231487274, 0.03471897542476654, -0.03309270367026329, 0.007824060507118702, -0.03123951330780983, -0.03734748065471649, 0.03071003034710884, 0.04443877562880516, -0.05922648683190346, -0.08123786002397537, 0.005677762441337109, -0.047161832451820374, 0.010126367211341858, -0.016896190121769905, -0.0445900559425354, -0.003930940758436918, -0.055973947048187256, -0.054877158254384995, -0.00984271615743637, 0.03176899626851082, 0.002723056823015213, -0.01653689704835415, -0.007077111396938562, -0.011714817024767399, 0.0038434811867773533, 0.023164892569184303, 0.007469496224075556, -0.015459020622074604, -0.0012468858622014523, -0.04765349626541138, 0.06353799253702164, 0.01535501517355442, 0.07450585812330246, -0.028894659131765366, 0.004767713136970997, 0.027797872200608253, -0.0646347776055336, 0.0169056449085474, 0.00686437264084816, 0.00033624551724642515, 0.008897209540009499, 0.005058456212282181, -0.00085804658010602, 0.012764329090714455, 0.025131545960903168, -0.026114871725440025, -0.012934519909322262, 0.027911333367228508, 0.05952904745936394, -0.04667016863822937, 0.024715522304177284, -0.0021049324423074722, -0.034510962665081024, -0.006921102758497, 0.002824698807671666, -0.09666851907968521, 0.03193918615579605, -0.01848463900387287, 0.04198046028614044, 0.07348471134901047, -0.01245231181383133, 0.0046684350818395615, -0.023278353735804558, 0.0440983921289444, -0.01828608289361, 0.048334259539842606, 0.01623433455824852, -0.06357581168413162, 0.07253921031951904, -0.005171916913241148, -0.0029145218431949615, -0.02329726330935955, -0.015988504514098167, 0.009871081449091434, -0.027211658656597137, -0.03918176144361496, -0.027098197489976883, 0.03649652376770973, -0.005720310378819704, -0.0008030890021473169, -0.014135312288999557, -0.026266152039170265, 0.023278353735804558, -0.062441207468509674, -0.02985907532274723, 0.050716932862997055, 0.043077245354652405, -0.00569194508716464 ]
24,404
okta_jwt_verifier.jwt_verifier
_clear_requests_cache
Clear whole cache.
def _clear_requests_cache(self): """Clear whole cache.""" self.request_executor.clear_cache()
(self)
[ -0.027167420834302902, -0.0066290972754359245, -0.02702665701508522, 0.016311010345816612, -0.028680631890892982, 0.00860418938100338, -0.10268722474575043, 0.02876861020922661, 0.009220031090080738, -0.018545635044574738, 0.024915199726819992, 0.00667308596894145, 0.024580884724855423, 0.02289171889424324, 0.008168702013790607, -0.0014241341268643737, 0.04729665070772171, -0.04515000060200691, 0.021448889747262, -0.09015923738479614, -0.025759782642126083, 0.013583710417151451, 0.043214499950408936, 0.019003119319677353, -0.016126258298754692, -0.011032366193830967, 0.002403982449322939, -0.04954887181520462, 0.05683340132236481, 0.008129111491143703, -0.014463484287261963, 0.00048580020666122437, -0.032287705689668655, 0.007873977534472942, 0.010724444873631, -0.009052874520421028, 0.03355458006262779, 0.016143852844834328, -0.04976001754403114, -0.01636379584670067, -0.042510680854320526, -0.009132053703069687, -0.03603554144501686, -0.04029364883899689, 0.033167481422424316, 0.008942903019487858, -0.005670143291354179, -0.01500894408673048, 0.025654209777712822, -0.018633613362908363, -0.018211321905255318, 0.008806537836790085, 0.00667308596894145, 0.057431645691394806, 0.01556320209056139, -0.00033651356352493167, 0.01067165844142437, 0.048422761261463165, 0.0018332290928810835, 0.029120519757270813, 0.0112611074000597, 0.03902677446603775, -0.034909430891275406, 0.0037500367034226656, 0.0598246306180954, 0.016267022117972374, -0.03385370224714279, 0.07010038942098618, 0.01595030352473259, -0.011067557148635387, -0.022399045526981354, -0.04029364883899689, -0.026305243372917175, 0.005674542393535376, -0.009272817522287369, -0.019390219822525978, 0.01478900108486414, -0.025267109274864197, -0.005313835106790066, 0.008032336831092834, 0.04180686175823212, -0.047648560255765915, -0.03740799054503441, -0.03913234919309616, 0.04187724366784096, -0.061091504991054535, 0.03842853009700775, -0.023683516308665276, -0.04427022859454155, 0.020797858014702797, -0.02447531186044216, 0.028293531388044357, -0.0240706168115139, -0.034575119614601135, 0.046839166432619095, -0.002452370012179017, -0.03381851315498352, -0.026006119325757027, -0.043179307132959366, -0.0679185539484024, 0.05113246664404869, 0.03505019471049309, -0.002119155600667, 0.0041833254508674145, 0.034100040793418884, -0.008555802516639233, 0.037161655724048615, -0.08375448733568192, -0.010284557938575745, 0.006457541137933731, -0.020815452560782433, 0.047648560255765915, -0.027220208197832108, -0.005929676815867424, 0.017806624993681908, 0.013117430731654167, -0.09923850744962692, -0.027272993698716164, 0.019214265048503876, 0.012897486798465252, -0.028698228299617767, 0.055284999310970306, -0.021149767562747, -0.009114458225667477, 0.055144235491752625, 0.06784816831350327, -0.018633613362908363, 0.034170422703027725, -0.02255740575492382, -0.03179503232240677, -0.012765521183609962, -0.01919666863977909, 0.01251918449997902, 0.04497404769062996, 0.02766009420156479, 0.01413796842098236, 0.02510875090956688, -0.004099746700376272, -0.02063949778676033, 0.08009462803602219, -0.03614111617207527, 0.016451774165034294, 0.004167929291725159, -0.014393102377653122, 0.08375448733568192, -0.005956070031970739, 0.037971045821905136, 0.020727476105093956, -0.0348566472530365, -0.06531441956758499, 0.03899158537387848, 0.0009210134157910943, -0.01131389383226633, -0.04789489507675171, -0.042510680854320526, 0.026006119325757027, -0.032551638782024384, 0.05605920031666756, 0.005041105207055807, -0.05176590383052826, 0.0209738127887249, 0.02322603389620781, -0.005261048674583435, -0.10557287931442261, 0.017445918172597885, 0.008903312496840954, -0.010530894622206688, 0.009413582272827625, -0.023067673668265343, -0.021994350478053093, -0.0768570601940155, 0.01591511256992817, -0.022293472662568092, -0.005423806607723236, 0.020797858014702797, 0.024246571585536003, -0.015176101587712765, 0.0012943674810230732, 0.004662802442908287, -0.014621843583881855, -0.05602400749921799, -0.06767221540212631, -0.04275701567530632, 0.021061789244413376, -0.001568197156302631, -0.020692285150289536, 0.0008891216129995883, -0.03459271416068077, -0.01207049936056137, 0.04585381969809532, -0.014357911422848701, 0.02090343087911606, -0.00860418938100338, -0.04124380648136139, 0.00004924672612105496, -0.013768463395535946, -0.01223765593022108, -0.05021750181913376, 0.043108925223350525, -0.010407726280391216, -0.07791278511285782, 0.018703995272517204, 0.08628823608160019, -0.01122591644525528, 0.031548697501420975, 0.0300882700830698, -0.0038182190619409084, -0.012651150114834309, 0.007702421396970749, 0.10043500363826752, -0.014674630016088486, 0.049021005630493164, 0.03541970252990723, -0.007715617772191763, 0.008766948245465755, 0.03976578637957573, 0.0024787632282823324, 0.041630905121564865, 0.00395898288115859, -0.009343200363218784, 0.023753898218274117, -0.017199581488966942, -0.05616477131843567, -0.043812744319438934, 0.010530894622206688, 0.002311606192961335, 0.031073618680238724, 0.01875678263604641, 0.004044760949909687, -0.039449065923690796, 0.023982638493180275, 0.035278938710689545, 0.07460483908653259, -0.03888601064682007, 0.026604365557432175, -0.07129688560962677, -0.030369797721505165, 0.012369622476398945, 0.02049873396754265, -0.04515000060200691, -0.03285076096653938, -0.013398958370089531, 0.034205611795186996, -0.02621726505458355, -0.0240706168115139, 0.026305243372917175, 0.012879891321063042, 0.0477893240749836, 0.001552801113575697, -0.05778355523943901, 0.05081574618816376, -0.023613134399056435, -0.026428410783410072, -0.07020596414804459, 0.02292690984904766, -0.07777202129364014, 0.02927887812256813, 0.034205611795186996, 0.019583769142627716, 0.015325662679970264, 0.014410697855055332, -0.005986861884593964, -0.05334949493408203, -0.022662978619337082, 0.02688589319586754, 0.007992747239768505, 0.036422643810510635, 0.05475713312625885, -0.021466486155986786, 0.019513387233018875, 0.12591326236724854, -0.005502986256033182, 0.06499770283699036, 0.013504531234502792, -0.029806742444634438, 0.018598422408103943, -0.00489154364913702, 0.04631130397319794, -0.058205846697092056, 0.016179043799638748, 0.10606555640697479, -0.037091270089149475, 0.019337432458996773, 0.019777320325374603, -0.0070909783244132996, 0.0012668746057897806, -0.013205408118665218, 0.04032884165644646, -0.0002174691326217726, 0.017401929944753647, 0.0022676174994558096, 0.03726722672581673, 0.011093949899077415, -0.02188877761363983, -0.027343375608325005, -0.0023138055112212896, -0.008428234606981277, -0.003116599516943097, 0.03513817489147186, 0.11514481902122498, -0.04472770914435387, -0.02897975593805313, -0.0407511331140995, -0.013610104098916054, 0.07713858783245087, 0.03112640418112278, 0.008019139990210533, 0.043108925223350525, 0.01757788471877575, 0.046205729246139526, 0.007464882452040911, 0.02632283791899681, -0.05032307282090187, -0.005920879077166319, 0.01253677997738123, 0.017234772443771362, -0.011903341859579086, 0.03552527353167534, 0.006426749285310507, 0.04057517647743225, -0.03617630526423454, 0.05795951187610626, 0.05035826563835144, 0.02414099872112274, 0.01198252197355032, 0.0066334959119558334, 0.036281879991292953, 0.027167420834302902, -0.03072170726954937, -0.021572059020400047, 0.023683516308665276, -0.02883899211883545, -0.03436397388577461, -0.016698110848665237, -0.04740222170948982, 0.013847642578184605, 0.0030000293627381325, -0.016302213072776794, 0.0003744538116734475, 0.015290471725165844, -0.011340286582708359, -0.02433454804122448, 0.019337432458996773, 0.01331098098307848, -0.07777202129364014, -0.024827223271131516, 0.08861083537340164, 0.04198281466960907, 0.055144235491752625, -0.0780535489320755, 0.03656340762972832, -0.0036290676798671484, 0.09839392453432083, 0.04106784984469414, 0.1258428692817688, -0.019267050549387932, 0.014181956648826599, 0.010583681054413319, -0.01346054207533598, -0.04578343778848648, 0.022135114297270775, 0.032762784510850906, -0.01831689476966858, -0.022698169574141502, 0.029859529808163643, -0.04208838939666748, 0.0044494569301605225, -0.025126345455646515, 0.058768901973962784, -0.09255222231149673, -0.01253677997738123, -0.03079208917915821, -0.008709762245416641, 0.02426416613161564, 0.007319719530642033, 0.0020300785545259714, -0.028821395710110664, -0.003987575881183147, -0.07502713054418564, 0.05898004770278931, 0.016416583210229874, 0.005164273548871279, -0.005670143291354179, -0.03459271416068077, -0.012633554637432098, 0.004119541961699724, 0.009651120752096176, -0.0169796384871006, 0.034135229885578156, 0.01801777072250843, 0.03966021165251732, -0.036387450993061066, -0.023120461031794548, 0.037020888179540634, 0.0013251595664769411, 0.013108632527291775, -0.00922882929444313, 0.013126228004693985, -0.0663701519370079, -0.09466367959976196, 0.044692520052194595, 0.022768551483750343, 0.015167303383350372, 0.030070675536990166, 0.05229376628994942, -0.011199522763490677, 0.009070469997823238, -0.005208262242376804, 0.056516680866479874, 0.009545547887682915, -0.040082503110170364, -0.036246687173843384, 0.03325545787811279, -0.028592655435204506, -0.026446007192134857, -0.006813849788159132, 0.004851953592151403, -0.007640837226063013, 0.0885404571890831, 0.05792431905865669, 0.01620543748140335, 0.04275701567530632, -0.005555772688239813, 0.024915199726819992, 0.01568637043237686, -0.015211292542517185, 0.003026422578841448, -0.01408518198877573, -0.025566233322024345, 0.030000293627381325, -0.010997175239026546, -0.006140822544693947, -0.04722626879811287, -0.001332857646048069, -0.01621423475444317, 0.031108809635043144, -0.03666897863149643, 0.007548460736870766, -0.019355028867721558, 0.020076442509889603, -0.04286259040236473, 0.00915844738483429, 0.03079208917915821, -0.06397716701030731, 0.03466309607028961, 0.03246366232633591, -0.015281674452126026, 0.08917389065027237, -0.008146706968545914, -0.0361059233546257, -0.0021807397715747356, 0.03508538752794266, -0.00019561225781217217, -0.01724356971681118, -0.04124380648136139, 0.0013911426067352295, -0.023648325353860855, 0.026516389101743698, -0.0299123153090477, 0.0013746469048783183, -0.0030792090110480785, 0.026199670508503914, 0.02185358665883541, -0.03680974245071411, 0.005885688122361898, 0.05577767267823219, 0.037865474820137024, 0.04050479456782341, 0.035349320620298386, -0.0009127655066549778, -0.03807662054896355, -0.030510561540722847, -0.05429965257644653, -0.06278067082166672, -0.03244606405496597, 0.0008060929249040782, -0.03775990009307861, 0.0030946051701903343, -0.01923185959458351, 0.004313092213124037, -0.014419496059417725, 0.014146765694022179, 0.049865592271089554, 0.007706820033490658, -0.0015571999829262495, -0.05327911302447319, 0.028645440936088562, -0.032622020691633224, -0.023085270076990128, -0.04638168588280678, -0.057326074689626694, 0.01144585944712162, -0.02275095507502556, -0.026674747467041016, 0.01775383949279785, 0.025742188096046448, -0.029507620260119438, 0.03983616828918457, -0.011014770716428757, -0.03543729707598686, 0.02621726505458355, -0.04437579959630966, -0.032692402601242065, 0.06376601755619049, 0.034100040793418884, 0.02370111085474491, 0.028557464480400085, -0.03536691516637802, -0.030211439356207848, 0.003939188085496426, -0.032921142876148224, -0.024193784222006798, 0.0062507945112884045, -0.004440659191459417, 0.017894603312015533, -0.011771376244723797, -0.04377755522727966, -0.04807085171341896, 0.007064585108309984, 0.011058758944272995, 0.026270052418112755, 0.04363679140806198, 0.04965444654226303, 0.008714161813259125, -0.047648560255765915, -0.0150441350415349, 0.01216727402061224, 0.009184840135276318, 0.011516241356730461, 0.03263961523771286, 0.007073382847011089, -0.006180412136018276, -0.002815276850014925, 0.022135114297270775, 0.06359006464481354, 0.011744982562959194, -0.05250491201877594, -0.12443523854017258, 0.002562341745942831, 0.01621423475444317, -0.033290646970272064, 0.006541119888424873, 0.04954887181520462, -0.003862207755446434, -0.06309739500284195, 0.015369651839137077, -0.0026987066958099604, 0.06974848359823227, -0.014727416448295116, -0.01831689476966858, -0.04208838939666748, 0.0007742011221125722, 0.052962396293878555, -0.052117813378572464, -0.019583769142627716, -0.04895062372088432, -0.015017742291092873, -0.0019596966449171305, -0.0034575117751955986, 0.02444012090563774, 0.02067468874156475, 0.0034487140364944935, 0.02019961178302765, 0.025777379050850868, 0.003099004039540887, 0.04430541768670082, 0.00261732772924006, 0.01565117947757244, 0.01408518198877573, -0.00043933713459409773, 0.0105748837813735, -0.033167481422424316, 0.04212357848882675, -0.02067468874156475, -0.015088124200701714, 0.01216727402061224, -0.03165426850318909, -0.0656663328409195, 0.0047815716825425625, -0.025706997141242027, 0.012114487588405609, -0.03422321006655693, -0.021237744018435478, -0.04895062372088432, -0.029859529808163643, -0.004922335501760244, 0.020146824419498444, 0.03204137086868286, 0.003404725342988968, 0.014366709627211094, -0.014357911422848701, 0.04880985990166664, 0.024158593267202377, 0.009624728001654148, -0.020217206329107285, 0.05908562242984772, -0.026709938421845436, -0.00228521297685802, -0.09705666452646255, 0.02736097201704979, 0.01203530840575695, 0.021994350478053093, 0.022275878116488457, 0.020692285150289536, -0.00422731414437294, 0.025091154500842094, -0.05007673799991608, 0.022575000301003456, 0.022575000301003456, -0.00025224770070053637, -0.017445918172597885, -0.03473347797989845, 0.09177802503108978, 0.051378801465034485, 0.0134957330301404, -0.04884505271911621, -0.03895639255642891, -0.0021565461065620184, -0.029701169580221176, -0.04057517647743225, -0.020621903240680695, -0.013240599073469639, -0.03677455335855484, 0.007931162603199482, -0.055953625589609146, 0.04324968904256821, 0.0413493774831295, -0.01131389383226633, -0.04828199744224548, 0.084599070250988, -0.009004486724734306, -0.07256375998258591, 0.009395986795425415, 0.02602371573448181, 0.05039345473051071, -0.01746351458132267, -0.012835903093218803, 0.029736360535025597, -0.019038310274481773, -0.042334724217653275, 0.09339680522680283, -0.03381851315498352, -0.009070469997823238, -0.02602371573448181, -0.0777016431093216, -0.023877065628767014, -0.028786204755306244, -0.046240922063589096, 0.08347295969724655, 0.016117459163069725, -0.05753722041845322, 0.04138457030057907, 0.08213569968938828, 0.02861024998128414, -0.008806537836790085, -0.007029394153505564, -0.044657327234745026, -0.024316953495144844, 0.03216453641653061, -0.10198340564966202, 0.005832901690155268, -0.011832959949970245, 0.029630787670612335, -0.013865238055586815, 0.0004599568492267281, -0.053701404482126236, -0.024616075679659843, 0.0403992235660553, -0.010134996846318245, 0.06059883162379265, -0.007544062100350857, -0.022680573165416718, 0.021096980199217796, -0.04370717331767082, -0.027484139427542686, 0.0209738127887249, 0.020833048969507217, -0.006818248424679041, -0.05792431905865669, 0.032956335693597794, -0.054370034486055374, 0.040891896933317184, -0.03197098895907402, -0.015457629226148129, -0.032956335693597794, 0.008863722905516624, -0.0266923438757658, -0.05313834920525551, -0.004548431374132633, -0.024616075679659843, -0.00981827825307846, -0.05271605774760246, 0.017885806038975716, -0.0069282203912734985, -0.06834084540605545, 0.02326122485101223, -0.014349114149808884, -0.06010615825653076, 0.05190666764974594, 0.01868640072643757, 0.002623925916850567, -0.006457541137933731, 0.005441402085125446, -0.011718589812517166, 0.005265447311103344, 0.04705031216144562, -0.042440298944711685, 0.0015956901479512453, -0.061161886900663376, 0.017560288310050964, 0.03821738436818123, -0.027712881565093994, -0.006840243004262447, 0.032622020691633224, 0.010917995125055313, 0.023683516308665276, -0.08016500622034073, -0.028381509706377983, 0.037056080996990204, 0.027185017243027687, -0.017815424129366875, 0.021448889747262, 0.040856704115867615, 0.03028182126581669, 0.050604600459337234, -0.013161418959498405, -0.06820008158683777, -0.019302241504192352, 0.03821738436818123, 0.011173130013048649, -0.031038427725434303, -0.015422438271343708, 0.01216727402061224, -0.0030000293627381325, 0.021536868065595627, -0.05394774302840233, 0.013539722189307213, -0.021431295201182365, -0.010601276531815529, -0.011797768995165825, -0.022715764120221138, -0.08178379386663437, -0.020129229873418808, 0.04434061050415039, 0.028680631890892982, -0.0024017831310629845, 0.025355087593197823, 0.03506779298186302, -0.008049932308495045, -0.0225222148001194, 0.018475253134965897, -0.033765725791454315, 0.007420893758535385, 0.03153109923005104, 0.02692108415067196, 0.00029499921947717667, -0.012879891321063042, 0.05158994719386101, 0.011692196130752563, 0.06710916012525558, -0.00991505291312933, -0.016856469213962555, -0.06735549867153168, -0.04279220849275589, 0.06123226881027222, -0.04141975939273834, 0.08966656774282455, -0.013354969210922718 ]
24,405
okta_jwt_verifier.jwt_verifier
_construct_jwks_uri
Construct URI for JWKs download. Issuer URL should end with '/', automatic add '/' otherwise. If the issuer URL does not contain /oauth2/, then: jwks_uri_base = {issuer}/oauth2. Otherwise: jwks_uri_base = {issuer}. Final JWKS URI: {jwks_uri_base}/v1/keys
def _construct_jwks_uri(self): """Construct URI for JWKs download. Issuer URL should end with '/', automatic add '/' otherwise. If the issuer URL does not contain /oauth2/, then: jwks_uri_base = {issuer}/oauth2. Otherwise: jwks_uri_base = {issuer}. Final JWKS URI: {jwks_uri_base}/v1/keys """ jwks_uri_base = self.issuer if not jwks_uri_base.endswith('/'): jwks_uri_base = jwks_uri_base + '/' if '/oauth2/' not in jwks_uri_base: jwks_uri_base = urljoin(jwks_uri_base, 'oauth2/') return urljoin(jwks_uri_base, 'v1/keys')
(self)
[ -0.056476399302482605, -0.03199842572212219, -0.03701814264059067, 0.05304473638534546, 0.00130740855820477, 0.0025828734505921602, -0.016565071418881416, 0.043917976319789886, 0.08455032110214233, 0.051840003579854965, 0.002048957860097289, 0.04085138440132141, 0.029333410784602165, 0.03511977940797806, 0.02590174973011017, 0.020060621201992035, 0.06480000913143158, -0.011664001271128654, 0.014703212305903435, -0.000663971877656877, -0.038441918790340424, -0.039902202785015106, 0.022597860544919968, 0.012868734076619148, -0.028311213478446007, 0.05914141237735748, 0.039792679250240326, 0.017578141763806343, 0.004643240012228489, -0.024952566251158714, -0.027854876592755318, 0.004243943840265274, 0.0668444037437439, 0.03482772037386894, 0.08484237641096115, 0.004214282147586346, 0.016044845804572105, 0.02431369200348854, -0.06783009320497513, 0.028292959555983543, 0.025317635387182236, 0.03475470840930939, 0.07140778005123138, -0.07086017727851868, 0.055709753185510635, 0.09039144217967987, -0.03774828463792801, 0.03263729810714722, 0.013845297507941723, -0.04274975135922432, -0.026285072788596153, 0.0541764572262764, -0.009131324477493763, -0.06417938321828842, -0.096232570707798, 0.0051657469011843204, -0.007999606430530548, -0.005772676784545183, -0.03997521474957466, 0.06271910667419434, -0.013553240336477757, -0.01628214307129383, 0.06903482228517532, 0.05782715976238251, -0.03869746997952461, 0.03491898998618126, -0.08009646087884903, -0.007739493623375893, 0.010249353013932705, 0.053738370537757874, 0.1014895886182785, -0.005179437343031168, -0.09301995486021042, -0.020370932295918465, 0.004310112912207842, -0.017377354204654694, -0.036087214946746826, -0.03851493448019028, -0.06929036974906921, -0.04194659739732742, 0.011992564424872398, -0.07166332751512527, -0.02323673479259014, -0.05976203456521034, 0.08754389733076096, 0.06553014367818832, -0.04260372370481491, -0.05413994938135147, 0.008925972506403923, 0.01372664887458086, -0.028858819976449013, 0.007556958589702845, 0.003390591824427247, -0.013069522567093372, 0.04453859478235245, -0.032016679644584656, -0.05355583503842354, -0.045451272279024124, 0.00932298693805933, -0.037930820137262344, 0.05114636942744255, -0.04829882085323334, -0.049832116812467575, 0.032527778297662735, -0.01771504431962967, -0.030665919184684753, 0.02380259335041046, -0.016765860840678215, -0.03420710191130638, 0.005056225694715977, -0.0459623709321022, -0.04975910484790802, 0.01409171987324953, -0.00260797212831676, -0.014538930729031563, 0.04399099200963974, 0.01704879105091095, 0.029534200206398964, 0.07173634320497513, -0.017340846359729767, -0.004704845603555441, 0.012348508462309837, -0.004910197574645281, 0.018819382414221764, 0.05906840041279793, -0.06166040152311325, -0.00922259222716093, 0.031177017837762833, 0.04939403384923935, -0.07268552482128143, 0.016108734533190727, 0.06319369375705719, -0.059469979256391525, -0.02801915816962719, -0.029643721878528595, -0.02069949544966221, -0.009893408976495266, 0.0338967926800251, -0.014484170824289322, 0.12310175597667694, 0.004266760777682066, -0.02208676189184189, -0.010933860205113888, 0.02889532595872879, -0.044064003974199295, -0.0023170565254986286, -0.0172495786100626, -0.02261611446738243, -0.007059549912810326, -0.017067043110728264, 0.029369918629527092, 0.03316665068268776, 0.04034028574824333, 0.01485836785286665, 0.03466343879699707, -0.043297357857227325, 0.012056452222168446, 0.012138593010604382, -0.0022132396697998047, 0.010796958580613136, 0.033148396760225296, 0.011883043684065342, 0.012302874587476254, -0.04012124240398407, 0.019695552065968513, 0.08279798179864883, 0.030428621917963028, 0.0005903873825445771, 0.02044394612312317, -0.0023615495301783085, -0.029552454128861427, 0.016957523301243782, -0.031286537647247314, -0.02312721312046051, 0.030921468511223793, -0.005339155439287424, 0.023291494697332382, 0.007666479796171188, -0.009049183689057827, -0.04913848266005516, 0.0023683945182710886, -0.009012676775455475, -0.014201240614056587, -0.007588902022689581, -0.000667394429910928, 0.03774828463792801, -0.021301861852407455, 0.0415085107088089, 0.0012549296952784061, 0.011545353569090366, -0.07885521650314331, 0.0035252117086201906, -0.06001758202910423, 0.038149863481521606, 0.019640790298581123, -0.04829882085323334, 0.07326964288949966, 0.028913579881191254, -0.0873248502612114, 0.07392676919698715, -0.027873128652572632, 0.01663808524608612, -0.05465104803442955, -0.01745949499309063, 0.06761104613542557, -0.029734989628195763, -0.039537131786346436, -0.03687211498618126, 0.0029958593659102917, 0.058228738605976105, 0.018426930531859398, 0.006333972327411175, -0.05278918892145157, 0.01410997286438942, -0.05129240080714226, 0.01525081880390644, -0.04764169454574585, 0.022068509832024574, -0.011864789761602879, 0.03601419925689697, 0.0010279015405103564, -0.020790763199329376, 0.07710287719964981, -0.06071121618151665, -0.005330028478056192, -0.005092733073979616, 0.07498547434806824, -0.024861298501491547, -0.04742265120148659, -0.042932286858558655, 0.005115550011396408, -0.05289870873093605, 0.06133183836936951, 0.028110425919294357, 0.03176112845540047, -0.06323020160198212, 0.004047718830406666, 0.0038058594800531864, 0.031195269897580147, 0.0454147644340992, 0.018408678472042084, -0.0011237325379624963, -0.014064338989555836, 0.012248113751411438, -0.02874929830431938, 0.04840834438800812, 0.004640958271920681, 0.023601805791258812, 0.01575279049575329, -0.01421949453651905, -0.0007255775271914899, 0.006776620168238878, -0.015342085622251034, -0.025810481980443, -0.012019944377243519, -0.011435831896960735, -0.03431662172079086, -0.02194073423743248, 0.007347043137997389, -0.04464811831712723, 0.015469860285520554, 0.03712766617536545, -0.05052575096487999, 0.03176112845540047, -0.049101974815130234, -0.024386705830693245, 0.03851493448019028, 0.004389972425997257, 0.022324059158563614, 0.03382377699017525, 0.059506483376026154, 0.030300848186016083, -0.02173994667828083, -0.01792495884001255, -0.004996901843696833, 0.00829166267067194, -0.02414941042661667, -0.0015127607621252537, -0.0010187746956944466, -0.01122591644525528, 0.008770817890763283, -0.020571719855070114, 0.055965300649404526, 0.013881804421544075, 0.04322434216737747, -0.04212912917137146, -0.01537859346717596, -0.04786073789000511, 0.026540622115135193, -0.007461127359420061, 0.03714592009782791, -0.0010866550728678703, -0.013534987345337868, 0.015460734255611897, 0.018837636336684227, -0.02524462155997753, 0.03986569494009018, -0.053738370537757874, 0.05968901887536049, 0.04650997743010521, -0.056476399302482605, 0.06950941681861877, 0.019385240972042084, -0.023455776274204254, 0.021137580275535583, -0.02652236819267273, 0.0052068172954022884, -0.05388439819216728, 0.030246088281273842, 0.030684171244502068, -0.055344682186841965, -0.049978144466876984, 0.05541769415140152, 0.00036877821548841894, 0.018782874569296837, -0.0031259157694876194, 0.029132623225450516, -0.021502649411559105, 0.010623550042510033, 0.03261904418468475, -0.007196451537311077, 0.013425465673208237, 0.032272227108478546, -0.05081780627369881, -0.000333126779878512, -0.03336744010448456, -0.008647606708109379, 0.06695391982793808, -0.02106456458568573, 0.019129691645503044, -0.014429409988224506, -0.0017888452857732773, 0.006270084995776415, -0.00021975529671180993, -0.033403947949409485, -0.029844509437680244, 0.03039211593568325, -0.02734377793967724, 0.027617579326033592, -0.0055581978522241116, 0.009354930371046066, -0.09791189432144165, -0.03364124149084091, 0.01973205804824829, -0.05238761007785797, -0.03851493448019028, 0.03125002980232239, -0.039062537252902985, -0.01150884572416544, -0.057206541299819946, -0.07797905057668686, 0.01159098744392395, 0.03187065199017525, 0.04453859478235245, 0.07608067989349365, 0.032984115183353424, -0.04964958131313324, -0.03508327156305313, -0.012750085443258286, 0.03125002980232239, 0.06377781182527542, 0.0038309581577777863, -0.03362298756837845, 0.008072620257735252, -0.026449354365468025, 0.013078649528324604, 0.057973187416791916, -0.008748000487685204, 0.03039211593568325, -0.02559143863618374, -0.015460734255611897, -0.0070230429992079735, -0.008871211670339108, -0.00015301586245186627, -0.02801915816962719, -0.011937803588807583, -0.0037260004319250584, -0.0721014142036438, -0.0008339578052982688, -0.053847894072532654, -0.04840834438800812, 0.016555944457650185, 0.004814366810023785, 0.057608116418123245, 0.0113536911085248, -0.010806085541844368, -0.011609240435063839, -0.021648678928613663, 0.027599327266216278, 0.06458096206188202, 0.022743890061974525, 0.020845523104071617, 0.08958829194307327, 0.024532735347747803, -0.02152090333402157, 0.011371945030987263, -0.01596270501613617, -0.018262648954987526, -0.008916845545172691, 0.01264969166368246, 0.034900736063718796, -0.02312721312046051, 0.005019718781113625, 0.027380283921957016, 0.0014591410290449858, -0.024039888754487038, 0.01498614251613617, -0.0047961133532226086, -0.00020435389888007194, -0.03263729810714722, -0.061842937022447586, -0.07761397957801819, -0.050963837653398514, -0.016601579263806343, 0.04972259700298309, -0.016236508265137672, -0.04227516055107117, 0.009446198120713234, 0.022324059158563614, 0.07651876658201218, -0.05176699161529541, -0.018664227798581123, 0.058849357068538666, 0.007607155479490757, -0.03287459537386894, 0.015369466505944729, -0.040668848901987076, -0.012366761453449726, 0.015205184929072857, -0.012941747903823853, 0.0017626058543100953, 0.04446558281779289, -0.004437887575477362, -0.03825938329100609, -0.03141431137919426, 0.040413301438093185, 0.004250789061188698, 0.03415234014391899, 0.01874636858701706, -0.06352225691080093, -0.042822763323783875, -0.025481918826699257, -0.0321444533765316, 0.04034028574824333, 0.036032453179359436, 0.03280157968401909, -0.02363831177353859, 0.03285634145140648, -0.024605749174952507, 0.002007887465879321, -0.026668397709727287, -0.009519211947917938, -0.0012355353683233261, -0.029789749532938004, -0.039573635905981064, -0.026905693113803864, 0.04274975135922432, 0.03464518487453461, 0.019951101392507553, -0.03807684779167175, 0.05618434399366379, -0.0038994087371975183, 0.07688383758068085, -0.010906480252742767, -0.028311213478446007, -0.006918085273355246, 0.014666705392301083, 0.028402481228113174, 0.008789070881903172, 0.0030027045868337154, -0.03610546886920929, 0.029041355475783348, -0.015634141862392426, 0.018874142318964005, 0.023711325600743294, 0.041325975209474564, 0.02703346684575081, 0.01580755040049553, -0.017130931839346886, -0.03928158059716225, -0.1242699846625328, -0.023090707138180733, -0.022579608485102654, 0.03327617049217224, -0.006959155667573214, -0.022725636139512062, -0.10273082554340363, -0.021593917161226273, -0.002795070642605424, 0.029114369302988052, 0.04552428424358368, 0.11514322459697723, -0.020827269181609154, 0.06392383575439453, 0.008515268564224243, 0.021137580275535583, 0.03398805856704712, 0.03858794644474983, -0.006416113115847111, 0.041325975209474564, 0.05227809026837349, -0.017112677916884422, 0.04304180666804314, 0.05746208876371384, -0.004531437065452337, 0.003390591824427247, -0.11791776120662689, -0.020571719855070114, -0.01003943756222725, -0.0160722266882658, 0.018518198281526566, 0.024605749174952507, -0.014995269477367401, -0.015898818150162697, -0.026157299056649208, -0.018527325242757797, -0.009437071159482002, 0.043808456510305405, 0.021210594102740288, 0.03928158059716225, -0.0030027045868337154, 0.027179496362805367, 0.0009178099571727216, -0.0023033663164824247, -0.025719214230775833, 0.008309916593134403, 0.0133433248847723, 0.015159551054239273, -0.034225355833768845, 0.07356169819831848, -0.03811335563659668, 0.003431662218645215, -0.013352451846003532, 0.034170594066381454, -0.02287166379392147, 0.04373544082045555, -0.04052282124757767, -0.03557611629366875, -0.016154367476701736, 0.020571719855070114, 0.003529774956405163, -0.031286537647247314, -0.017934085801243782, -0.09199775755405426, -0.03451741114258766, 0.09995628893375397, -0.012786592356860638, 0.004750479478389025, 0.028548508882522583, -0.046582989394664764, 0.049978144466876984, 0.024240678176283836, 0.03362298756837845, 0.014246874488890171, 0.0080863106995821, -0.01817138120532036, 0.022780396044254303, -0.010924733243882656, -0.026504116132855415, 0.021666930988430977, -0.025938255712389946, 0.003194366581737995, -0.03502850979566574, -0.002066070679575205, -0.0323452427983284, 0.010368000715970993, 0.004531437065452337, -0.010203719139099121, -0.00875256396830082, 0.02946118637919426, -0.034590426832437515, 0.02915087528526783, 0.006347662769258022, -0.028092171996831894, -0.054724059998989105, -0.010121578350663185, 0.002082042396068573, -0.017340846359729767, 0.025153353810310364, -0.029077861458063126, 0.027927890419960022, 0.01171876210719347, 0.08674073964357376, -0.00849701464176178, 0.02873104438185692, -0.017286086454987526, 0.03280157968401909, -0.014639325439929962, -0.05253363773226738, -0.0009628733387216926, -0.05048924311995506, -0.027435045689344406, -0.03415234014391899, -0.005571887828409672, 0.018554706126451492, -0.026595382019877434, -0.005069916136562824, -0.024277186021208763, 0.004951267968863249, -0.00044492961023934186, 0.0229811854660511, 0.028493748977780342, -0.002217802917584777, 0.06399685144424438, -0.008519832044839859, -0.02674141153693199, -0.011435831896960735, 0.011563606560230255, -0.04358941316604614, -0.011143775656819344, 0.017541635781526566, 0.01947650872170925, 0.0010404507629573345, -0.02292642556130886, -0.011581860482692719, 0.04683854058384895, -0.0231819748878479, -0.009218028746545315, -0.06067470833659172, 0.013608001172542572, 0.013398085720837116, -0.016519438475370407, -0.004978648386895657, 0.05136541277170181, -0.04815279319882393, -0.02940642461180687, 0.033969804644584656, -0.001964535331353545, 0.0008698944584466517, -0.007319662719964981, 0.010331493802368641, 0.03610546886920929, 0.02957070618867874, -0.07878220826387405, 0.039573635905981064, 0.09155967086553574, 0.037784792482852936, 0.046327441930770874, 0.02606603130698204, 0.0360507071018219, 0.0029912961181253195, 0.02584698796272278, -0.027435045689344406, 0.0068587614223361015, -0.057206541299819946, -0.026157299056649208, 0.0003807570901699364, 0.01700315624475479, -0.06987448781728745, -0.02590174973011017, -0.0607842318713665, -0.005813747178763151, 0.06217150017619133, -0.01097036711871624, 0.004013493191450834, 0.0014773944858461618, 0.05110986530780792, -0.022159777581691742, 0.01473059318959713, -0.06030964106321335, 0.04534175246953964, -0.05476056784391403, 0.009646986611187458, 0.00267185945995152, -0.04610839858651161, -0.005115550011396408, 0.018664227798581123, -0.04512270912528038, 0.008410310372710228, -0.017112677916884422, 0.023784339427947998, -0.03137780725955963, 0.005074479151517153, -0.0011573873925954103, -0.027672341093420982, -0.0017192537197843194, 0.0023296058643609285, -0.023364508524537086, 0.05330028757452965, 0.007050423417240381, 0.018207889050245285, -0.01787932589650154, -0.0340975821018219, 0.04829882085323334, 0.001450014184229076, -0.021593917161226273, 0.07637274265289307, 0.042786259204149246, -0.07819809019565582, -0.04052282124757767, 0.007155381143093109, -0.06647933274507523, -0.006201634183526039, -0.011782648973166943, -0.015889691188931465, -0.023930368945002556, 0.00036877821548841894, 0.012111212126910686, 0.0216304250061512, -0.01916619949042797, 0.016555944457650185, 0.010869973339140415, 0.012065578252077103, 0.0068587614223361015, -0.005430423188954592, 0.018837636336684227, 0.04395448416471481, -0.03135955333709717, -0.006918085273355246, -0.006306592375040054, -0.017340846359729767, 0.03384203091263771, -0.008282535709440708, -0.07100620120763779, 0.012941747903823853, -0.036288004368543625, -0.06034614518284798, -0.0029068735893815756, -0.00940056424587965, -0.015077410265803337, 0.041179947555065155, -0.038806989789009094, 0.006082986481487751, 0.017450368031859398, 0.028110425919294357, -0.0019440001342445612, -0.020060621201992035, 0.006375042721629143, 0.007420056965202093, -0.02414941042661667, -0.024897804483771324, 0.011709635145962238, 0.020316170528531075, 0.01916619949042797, 0.055089130997657776, -0.026102537289261818, 0.012813973240554333, -0.03475470840930939, 0.0015971832908689976, 0.04928451031446457, -0.02126535400748253, 0.024861298501491547, -0.029497692361474037, -0.0029023101087659597, 0.02776360884308815, 0.024496227502822876, 0.019440002739429474, -0.03858794644474983, 0.010577916167676449, 0.010632677003741264, 0.03110400214791298, 0.032728567719459534, -0.009847776032984257, -0.06812214851379395, -0.03698163852095604, -0.03869746997952461, -0.050854314118623734, 0.028347721323370934, -0.03723718598484993, 0.006712732836604118, -0.015223437920212746, -0.019403494894504547, 0.03869746997952461, 0.004054563585668802, -0.02292642556130886, 0.061112795025110245, 0.009231719188392162, -0.03727369382977486 ]
24,406
okta_jwt_verifier.jwt_verifier
_get_jwk_by_kid
Loop through given jwks and find jwk which matches by kid. Return: str if jwk match found, None - otherwise
def _get_jwk_by_kid(self, jwks, kid): """Loop through given jwks and find jwk which matches by kid. Return: str if jwk match found, None - otherwise """ okta_jwk = None for key in jwks['keys']: if key['kid'] == kid: okta_jwk = key return okta_jwk
(self, jwks, kid)
[ 0.08434553444385529, -0.017474448308348656, -0.0658012181520462, 0.051207177340984344, -0.017154404893517494, 0.02249458059668541, 0.040270786732435226, 0.045976728200912476, 0.07238499820232391, -0.013350442051887512, -0.025987641885876656, 0.031675297766923904, 0.006931256968528032, -0.033302951604127884, 0.000014868154721625615, -0.04158754274249077, 0.021287554875016212, 0.04696429520845413, 0.023939354345202446, -0.0020288557279855013, -0.02110467106103897, -0.011969677172601223, 0.07790806144475937, 0.06433816254138947, -0.025475570932030678, 0.015289000235497952, 0.08127310127019882, 0.009107561782002449, 0.04195330664515495, 0.012655488215386868, -0.029700161889195442, -0.016980664804577827, 0.06228987127542496, 0.023427283391356468, 0.022549446672201157, 0.021196113899350166, -0.0022540302015841007, -0.011960533447563648, -0.04934177175164223, -0.00976593978703022, 0.029425838962197304, 0.06510626524686813, 0.03253484517335892, -0.0930507555603981, 0.00810627918690443, 0.07827382534742355, -0.0038382522761821747, 0.033485837280750275, 0.021159537136554718, 0.011247290298342705, 0.015618189238011837, 0.021891068667173386, -0.06287509948015213, -0.06704482436180115, -0.04114862531423569, -0.0351317822933197, -0.023024940863251686, -0.01770305261015892, -0.031913042068481445, -0.012884091585874557, -0.04005132615566254, -0.06543545424938202, 0.04612303525209427, 0.09012462943792343, -0.0658012181520462, 0.0012264576507732272, 0.016066251322627068, -0.03357727825641632, -0.04861024022102356, -0.0075027658604085445, -0.001969418954104185, -0.03341268375515938, -0.032992053776979446, -0.010982110165059566, -0.004965267144143581, -0.005815672222524881, -0.038039617240428925, -0.07172662019729614, -0.07209239155054092, -0.028548000380396843, 0.04634249582886696, -0.004377756267786026, -0.055303748697042465, -0.04217276722192764, 0.014822648838162422, 0.09868354350328445, 0.06302140653133392, -0.010972966440021992, -0.012408596463501453, 0.00033290378632955253, -0.009276729077100754, 0.009701930917799473, 0.055779244750738144, 0.027377551421523094, 0.0499269962310791, 0.01807796210050583, -0.03771042823791504, -0.025146381929516792, -0.03249827027320862, 0.027340974658727646, 0.04722033068537712, -0.03480259329080582, -0.023774759843945503, -0.002658658195286989, 0.021196113899350166, 0.021159537136554718, -0.047586098313331604, -0.0007298165583051741, 0.02339070662856102, 0.007475333288311958, -0.06104626879096031, -0.05559636279940605, -0.03953925520181656, 0.020135393366217613, -0.0030289958231151104, 0.01782192662358284, 0.009701930917799473, 0.022878635674715042, 0.021854491904377937, -0.03921006619930267, 0.03377844765782356, -0.00790510792285204, 0.009272156283259392, 0.004098860081285238, 0.0408194363117218, -0.0544259138405323, 0.01885521411895752, 0.02611565962433815, 0.029645297676324844, -0.012838371098041534, 0.05080483481287956, 0.06613040715456009, -0.038734570145606995, -0.045537810772657394, -0.0476592518389225, 0.050731681287288666, 0.0062225861474871635, 0.017337286844849586, 0.0059482622891664505, 0.0034496262669563293, 0.0204645823687315, -0.020318275317549706, 0.018891790881752968, -0.006067135836929083, -0.0352780856192112, -0.011311299167573452, -0.06433816254138947, 0.009500759653747082, 0.01722755655646324, -0.010140849277377129, -0.017218412831425667, 0.006853532046079636, 0.03589988872408867, 0.04447709023952484, 0.002484919736161828, -0.01201539859175682, 0.0238662026822567, -0.02088521234691143, -0.005042992532253265, -0.053694382309913635, 0.049158889800310135, -0.04173384979367256, -0.0032210228964686394, -0.045537810772657394, 0.007173576857894659, 0.048281051218509674, -0.023902777582406998, 0.043270062655210495, 0.0018939797300845385, 0.0294807031750679, -0.021488726139068604, 0.0522313192486763, -0.04626934230327606, -0.011951388791203499, 0.004951551090925932, 0.029645297676324844, 0.000742961245123297, -0.016523458063602448, -0.002875831676647067, -0.024469714611768723, -0.038076192140579224, 0.02997448667883873, 0.008261729031801224, 0.05702284723520279, 0.02090350165963173, 0.030596287921071053, -0.015481026843190193, 0.026188813149929047, 0.03811277076601982, 0.008705220185220242, -0.04158754274249077, 0.008417179808020592, -0.005408757831901312, 0.033302951604127884, -0.03814934566617012, -0.023939354345202446, 0.08076103031635284, 0.03322979807853699, -0.13116352260112762, 0.07099509239196777, 0.009829948656260967, -0.00416744127869606, -0.06466735154390335, 0.023335842415690422, 0.06305798143148422, -0.002496349858120084, -0.017986521124839783, 0.016102828085422516, -0.03226052224636078, 0.035332951694726944, 0.009866525419056416, -0.008636638522148132, -0.031437549740076065, 0.016633188351988792, 0.03699718415737152, 0.012554902583360672, -0.004242880269885063, 0.01802309788763523, -0.03425394371151924, -0.024908633902668953, -0.04217276722192764, 0.0030221377965062857, 0.05534032732248306, -0.011951388791203499, 0.006030559539794922, -0.0284016951918602, 0.06660590320825577, 0.023043230175971985, -0.001237887772731483, -0.03652168810367584, 0.015865080058574677, -0.0408560112118721, 0.10475525259971619, -0.014036253094673157, -0.01955016888678074, -0.047549519687891006, -0.026481425389647484, -0.017693908885121346, 0.07542085647583008, 0.005783667787909508, 0.04367240518331528, 0.007754229474812746, 0.028676018118858337, -0.013981387950479984, -0.008042270317673683, 0.019806204363703728, 0.029407549649477005, -0.014914089813828468, 0.01123814657330513, 0.018215123564004898, -0.003847396234050393, 0.0013750498183071613, 0.05592555180191994, 0.0011498754611238837, 0.008307449519634247, -0.03953925520181656, -0.033046916127204895, -0.030267098918557167, 0.01909296214580536, -0.00953733641654253, 0.005015559960156679, 0.05263366177678108, 0.02410394884645939, 0.01785850338637829, -0.08463814854621887, -0.0015042107552289963, 0.03385160118341446, 0.009445895440876484, -0.04359925165772438, 0.01905638538300991, 0.05131690576672554, -0.038917455822229385, 0.011073552072048187, -0.009573913179337978, -0.012628055177628994, -0.016779493540525436, -0.0329006090760231, 0.08580859750509262, -0.03041340596973896, 0.029627008363604546, -0.021269265562295914, -0.024414850398898125, 0.004231450147926807, 0.03344925865530968, -0.025621876120567322, -0.05267023667693138, 0.04615961015224457, 0.005184726789593697, 0.0067666624672710896, -0.021964220330119133, -0.04952465370297432, -0.019038096070289612, -0.008997832424938679, -0.04356267675757408, -0.03110835887491703, 0.0033033201470971107, -0.003915977198630571, -0.050951141864061356, 0.06389924138784409, 0.028328541666269302, -0.004350324161350727, 0.03829565271735191, -0.009295016527175903, -0.01760246604681015, 0.028035929426550865, 0.04634249582886696, 0.0013899090699851513, -0.0453915037214756, -0.052341047674417496, 0.05705942586064339, -0.08229725062847137, -0.0589979812502861, -0.014932378195226192, -0.0386614166200161, -0.05585239827632904, -0.05248735472559929, -0.011036975309252739, -0.013130983337759972, -0.003856540424749255, 0.03728979825973511, 0.05146321281790733, -0.03337610512971878, 0.004814389161765575, -0.000229603610932827, 0.016057107597589493, -0.09861039370298386, -0.02227512188255787, 0.018910078331828117, -0.0031913043931126595, 0.021433860063552856, 0.0014390588039532304, -0.015883369371294975, 0.029425838962197304, -0.027158090844750404, 0.01738300733268261, 0.010634632781147957, 0.0052030147053301334, -0.035991329699754715, -0.05179240182042122, 0.012765217572450638, 0.028474846854805946, -0.09246552735567093, -0.003774243174120784, 0.07212896645069122, 0.0026815186720341444, 0.022878635674715042, 0.027066649869084358, -0.025749893859028816, 0.022970076650381088, -0.0374361053109169, 0.010726074688136578, 0.003867970546707511, 0.0016448019305244088, 0.039868444204330444, 0.053730957210063934, 0.059107713401317596, -0.0159108005464077, 0.005070424638688564, -0.03708862513303757, 0.04447709023952484, 0.015444450080394745, -0.024597732350230217, -0.030559711158275604, -0.03110835887491703, -0.033705294132232666, 0.022165391594171524, 0.0088195214048028, -0.04978068917989731, 0.005344748962670565, -0.011841659434139729, -0.03312006965279579, 0.022183680906891823, -0.05131690576672554, -0.052779968827962875, -0.01829742081463337, 0.05833960324525833, -0.007900536060333252, 0.005299028474837542, -0.016285710036754608, 0.013780216686427593, -0.05588897690176964, -0.021616743877530098, 0.03560727462172508, 0.05925401672720909, -0.031218089163303375, -0.007571346592158079, -0.06843473017215729, -0.045318350195884705, 0.0142008475959301, 0.03591817617416382, 0.03246169164776802, 0.020391428843140602, 0.05629131570458412, -0.014008820056915283, -0.004414333030581474, 0.023116381838917732, -0.0009949966333806515, -0.05855906382203102, -0.01712697185575962, 0.021982509642839432, 0.014557468704879284, -0.03110835887491703, -0.04586699977517128, 0.04700087383389473, -0.02317124791443348, 0.035552412271499634, -0.004732091911137104, 0.003995988517999649, -0.06539887934923172, -0.012692064046859741, 0.0060717081651091576, -0.060717079788446426, 0.0015807929448783398, -0.038478534668684006, -0.006400897167623043, 0.015883369371294975, 0.020318275317549706, 0.034875743091106415, -0.05468194931745529, 0.06671563535928726, -0.04447709023952484, -0.04729348421096802, 0.025841334834694862, 0.024872057139873505, 0.003248455235734582, -0.011768506839871407, -0.00374223873950541, -0.04429420828819275, -0.0013407593360170722, -0.010241434909403324, -0.021397285163402557, 0.02567674219608307, -0.014127694070339203, 0.012445172294974327, 0.00033061776775866747, 0.05241420120000839, 0.0014927806332707405, 0.055267173796892166, -0.002768388018012047, -0.03840538114309311, 0.013249856419861317, 0.010378597304224968, -0.059363748878240585, -0.0227140411734581, -0.02000737562775612, 0.014228279702365398, 0.011896524578332901, 0.02404908463358879, -0.019477015361189842, -0.00235690176486969, 0.02909664995968342, -0.05384068936109543, -0.027798181399703026, -0.022403139621019363, 0.016651475802063942, -0.015737062320113182, 0.051682669669389725, 0.037362951785326004, 0.017931655049324036, -0.05570609122514725, 0.014328865334391594, 0.0038611125200986862, 0.08376030623912811, -0.009912245906889439, -0.0036370812449604273, 0.02267746441066265, -0.034217365086078644, 0.025585299357771873, 0.04601330682635307, -0.02565845288336277, 0.030998630449175835, 0.017291566357016563, 0.0032004485838115215, -0.022329986095428467, 0.07011725753545761, 0.01397224422544241, -0.023756472393870354, -0.011795938946306705, 0.004777812398970127, 0.016413729637861252, -0.10775452852249146, -0.02679232694208622, 0.02631683088839054, 0.012344587594270706, 0.01034202054142952, -0.09041724354028702, -0.04294087365269661, -0.05175582319498062, -0.04063655063509941, -0.01933070831000805, 0.04177042469382286, 0.06909310817718506, 0.04341636970639229, -0.023463860154151917, 0.028529712930321693, -0.010817515663802624, 0.024195391684770584, 0.05866879224777222, -0.0226957518607378, 0.038990605622529984, 0.0014767784159630537, 0.01752016879618168, -0.009573913179337978, 0.009217292070388794, -0.033284664154052734, -0.07286049425601959, 0.0018779775127768517, 0.010424317792057991, 0.03672286123037338, 0.025823047384619713, -0.004978983663022518, 0.0352780856192112, -0.009683642536401749, -0.011448461562395096, -0.004562925081700087, 0.003877114737406373, -0.019842781126499176, 0.023244399577379227, 0.0008212579414248466, 0.034839168190956116, 0.007612495217472315, -0.03262628614902496, 0.018224269151687622, 0.014365442097187042, 0.03154727816581726, 0.04476970434188843, -0.0033101781737059355, 0.01631314307451248, -0.02816394716501236, 0.05629131570458412, -0.08237040042877197, -0.008600062690675259, -0.05204843729734421, 0.018434584140777588, -0.03183989226818085, -0.024652598425745964, -0.035332951694726944, -0.0034290519542992115, 0.010954678058624268, -0.012454316951334476, 0.013652198947966099, -0.03730808570981026, 0.02404908463358879, -0.049195464700460434, 0.005367609206587076, 0.090929314494133, -0.08975886553525925, -0.015334720723330975, 0.012070262804627419, -0.011567335575819016, 0.03249827027320862, -0.012353731319308281, 0.012993820942938328, 0.024670885875821114, 0.03707033768296242, 0.015499315224587917, 0.01542616169899702, -0.03652168810367584, -0.03355898708105087, -0.004647508263587952, 0.03540610522031784, -0.009939678944647312, 0.06258248537778854, -0.02203737385571003, 0.010982110165059566, -0.07289707660675049, -0.007827382534742355, -0.026097372174263, 0.017995664849877357, -0.002056288067251444, -0.015371297486126423, -0.004610931966453791, 0.062070414423942566, -0.01802309788763523, -0.07172662019729614, 0.015645621344447136, -0.01802309788763523, 0.024231966584920883, 0.004960695281624794, -0.0374361053109169, 0.027853045612573624, 0.0066432165913283825, 0.12765216827392578, 0.03491232171654701, 0.007347315549850464, 0.007109567988663912, 0.0066432165913283825, -0.0238662026822567, -0.05965635925531387, -0.012719497084617615, 0.004480627831071615, 0.01569134183228016, -0.05471852421760559, 0.004814389161765575, 0.02882232517004013, 0.0215984545648098, 0.010524903424084187, 0.041660696268081665, 0.06199726089835167, -0.04820789769291878, -0.0013384732883423567, -0.0075393421575427055, 0.030815746635198593, 0.017090395092964172, 0.029627008363604546, 0.03041340596973896, -0.004318319261074066, -0.04195330664515495, 0.01613026112318039, 0.002459773328155279, -0.0038405382074415684, -0.017511025071144104, 0.06832500547170639, 0.006661504972726107, 0.02243971638381481, 0.05380411073565483, 0.016752062365412712, -0.030011063441634178, -0.05062195286154747, -0.0374361053109169, 0.015837648883461952, 0.0007721082074567676, 0.030797459185123444, 0.027377551421523094, -0.031657006591558456, -0.01880034990608692, 0.014813504181802273, 0.01638629660010338, 0.02589620091021061, 0.021049806848168373, -0.0005143578164279461, 0.01631314307451248, 0.07143401354551315, -0.06975148618221283, -0.02227512188255787, 0.05738861486315727, 0.009038981050252914, -0.077176533639431, -0.06309455633163452, 0.05402357131242752, -0.059144288301467896, 0.04447709023952484, -0.03589988872408867, 0.011521615087985992, -0.025530435144901276, -0.03269943967461586, 0.04337979480624199, 0.003095290856435895, -0.06174122542142868, 0.006341460160911083, -0.021763049066066742, -0.009729363955557346, 0.0019191261380910873, 0.00295127066783607, 0.032114215195178986, 0.03637538477778435, 0.026627732440829277, 0.03619249910116196, -0.02404908463358879, 0.0007583919796161354, 0.011997110210359097, -0.055303748697042465, -0.04063655063509941, -0.017712196335196495, 0.010012831538915634, -0.007091279607266188, -0.036869168281555176, -0.06086338683962822, 0.021635031327605247, -0.056218165904283524, 0.00020902929827570915, 0.016203412786126137, 0.042099613696336746, -0.05139005929231644, -0.07681076228618622, -0.020958365872502327, 0.006364320404827595, -0.0030564283952116966, 0.04180700331926346, -0.03913691267371178, 0.05402357131242752, -0.013030397705733776, 0.04400159418582916, 0.060717079788446426, 0.0204097181558609, 0.0024917777627706528, 0.04809816926717758, 0.01933070831000805, -0.0028552573639899492, -0.06214356794953346, -0.012628055177628994, -0.056181587278842926, 0.05738861486315727, 0.06598410755395889, -0.022092238068580627, -0.025073228403925896, -0.008462900295853615, 0.10146336257457733, -0.0011967391474172473, 0.008087990805506706, -0.013130983337759972, 0.05237762629985809, -0.0025717890821397305, -0.03814934566617012, -0.024378273636102676, -0.011366164311766624, 0.003659941488876939, 0.006117428652942181, 0.0008189718937501311, -0.03275430575013161, -0.035113491117954254, 0.04198988527059555, 0.023555301129817963, -0.07417725026607513, 0.027889622375369072, -0.0012104553170502186, -0.059802666306495667, -0.0386614166200161, 0.05592555180191994, -0.028913766145706177, 0.02247629314661026, -0.026060795411467552, -0.02382962591946125, 0.05969293788075447, -0.030157368630170822, 0.008101706393063068, 0.033302951604127884, -0.016596611589193344, -0.024890344589948654, 0.05197528377175331, 0.005701370537281036, -0.012335442937910557, -0.03942952677607536, -0.0373995266854763, 0.03811277076601982, -0.008508620783686638, 0.002862115390598774, -0.04155096411705017, 0.015325576066970825, 0.04722033068537712, -0.03315664827823639, 0.05749834328889847, -0.02225683256983757, -0.004818961024284363, 0.0329371877014637, -0.01631314307451248, 0.035991329699754715, -0.0010350021766498685, 0.04005132615566254, 0.012518325820565224, 0.03606448322534561, 0.021269265562295914, -0.018782060593366623, -0.036448538303375244, -0.013926522806286812, 0.023463860154151917, -0.08712535351514816, 0.017492737621068954, 0.0014527749735862017, 0.03611934930086136, -0.054572220891714096, -0.02245800383388996, -0.06653275340795517, 0.0454280823469162, -0.0306328646838665, -0.0034473403356969357, -0.009939678944647312, 0.008339454419910908 ]
24,407
okta_jwt_verifier.jwt_verifier
get_jwk
Get JWK by kid. If key not found, clear cache and retry again to support keys rollover. Return: str - represents JWK Raise JWKException if key not found after retry.
def _get_jwk_by_kid(self, jwks, kid): """Loop through given jwks and find jwk which matches by kid. Return: str if jwk match found, None - otherwise """ okta_jwk = None for key in jwks['keys']: if key['kid'] == kid: okta_jwk = key return okta_jwk
(self, kid)
[ 0.08434553444385529, -0.017474448308348656, -0.0658012181520462, 0.051207177340984344, -0.017154404893517494, 0.02249458059668541, 0.040270786732435226, 0.045976728200912476, 0.07238499820232391, -0.013350442051887512, -0.025987641885876656, 0.031675297766923904, 0.006931256968528032, -0.033302951604127884, 0.000014868154721625615, -0.04158754274249077, 0.021287554875016212, 0.04696429520845413, 0.023939354345202446, -0.0020288557279855013, -0.02110467106103897, -0.011969677172601223, 0.07790806144475937, 0.06433816254138947, -0.025475570932030678, 0.015289000235497952, 0.08127310127019882, 0.009107561782002449, 0.04195330664515495, 0.012655488215386868, -0.029700161889195442, -0.016980664804577827, 0.06228987127542496, 0.023427283391356468, 0.022549446672201157, 0.021196113899350166, -0.0022540302015841007, -0.011960533447563648, -0.04934177175164223, -0.00976593978703022, 0.029425838962197304, 0.06510626524686813, 0.03253484517335892, -0.0930507555603981, 0.00810627918690443, 0.07827382534742355, -0.0038382522761821747, 0.033485837280750275, 0.021159537136554718, 0.011247290298342705, 0.015618189238011837, 0.021891068667173386, -0.06287509948015213, -0.06704482436180115, -0.04114862531423569, -0.0351317822933197, -0.023024940863251686, -0.01770305261015892, -0.031913042068481445, -0.012884091585874557, -0.04005132615566254, -0.06543545424938202, 0.04612303525209427, 0.09012462943792343, -0.0658012181520462, 0.0012264576507732272, 0.016066251322627068, -0.03357727825641632, -0.04861024022102356, -0.0075027658604085445, -0.001969418954104185, -0.03341268375515938, -0.032992053776979446, -0.010982110165059566, -0.004965267144143581, -0.005815672222524881, -0.038039617240428925, -0.07172662019729614, -0.07209239155054092, -0.028548000380396843, 0.04634249582886696, -0.004377756267786026, -0.055303748697042465, -0.04217276722192764, 0.014822648838162422, 0.09868354350328445, 0.06302140653133392, -0.010972966440021992, -0.012408596463501453, 0.00033290378632955253, -0.009276729077100754, 0.009701930917799473, 0.055779244750738144, 0.027377551421523094, 0.0499269962310791, 0.01807796210050583, -0.03771042823791504, -0.025146381929516792, -0.03249827027320862, 0.027340974658727646, 0.04722033068537712, -0.03480259329080582, -0.023774759843945503, -0.002658658195286989, 0.021196113899350166, 0.021159537136554718, -0.047586098313331604, -0.0007298165583051741, 0.02339070662856102, 0.007475333288311958, -0.06104626879096031, -0.05559636279940605, -0.03953925520181656, 0.020135393366217613, -0.0030289958231151104, 0.01782192662358284, 0.009701930917799473, 0.022878635674715042, 0.021854491904377937, -0.03921006619930267, 0.03377844765782356, -0.00790510792285204, 0.009272156283259392, 0.004098860081285238, 0.0408194363117218, -0.0544259138405323, 0.01885521411895752, 0.02611565962433815, 0.029645297676324844, -0.012838371098041534, 0.05080483481287956, 0.06613040715456009, -0.038734570145606995, -0.045537810772657394, -0.0476592518389225, 0.050731681287288666, 0.0062225861474871635, 0.017337286844849586, 0.0059482622891664505, 0.0034496262669563293, 0.0204645823687315, -0.020318275317549706, 0.018891790881752968, -0.006067135836929083, -0.0352780856192112, -0.011311299167573452, -0.06433816254138947, 0.009500759653747082, 0.01722755655646324, -0.010140849277377129, -0.017218412831425667, 0.006853532046079636, 0.03589988872408867, 0.04447709023952484, 0.002484919736161828, -0.01201539859175682, 0.0238662026822567, -0.02088521234691143, -0.005042992532253265, -0.053694382309913635, 0.049158889800310135, -0.04173384979367256, -0.0032210228964686394, -0.045537810772657394, 0.007173576857894659, 0.048281051218509674, -0.023902777582406998, 0.043270062655210495, 0.0018939797300845385, 0.0294807031750679, -0.021488726139068604, 0.0522313192486763, -0.04626934230327606, -0.011951388791203499, 0.004951551090925932, 0.029645297676324844, 0.000742961245123297, -0.016523458063602448, -0.002875831676647067, -0.024469714611768723, -0.038076192140579224, 0.02997448667883873, 0.008261729031801224, 0.05702284723520279, 0.02090350165963173, 0.030596287921071053, -0.015481026843190193, 0.026188813149929047, 0.03811277076601982, 0.008705220185220242, -0.04158754274249077, 0.008417179808020592, -0.005408757831901312, 0.033302951604127884, -0.03814934566617012, -0.023939354345202446, 0.08076103031635284, 0.03322979807853699, -0.13116352260112762, 0.07099509239196777, 0.009829948656260967, -0.00416744127869606, -0.06466735154390335, 0.023335842415690422, 0.06305798143148422, -0.002496349858120084, -0.017986521124839783, 0.016102828085422516, -0.03226052224636078, 0.035332951694726944, 0.009866525419056416, -0.008636638522148132, -0.031437549740076065, 0.016633188351988792, 0.03699718415737152, 0.012554902583360672, -0.004242880269885063, 0.01802309788763523, -0.03425394371151924, -0.024908633902668953, -0.04217276722192764, 0.0030221377965062857, 0.05534032732248306, -0.011951388791203499, 0.006030559539794922, -0.0284016951918602, 0.06660590320825577, 0.023043230175971985, -0.001237887772731483, -0.03652168810367584, 0.015865080058574677, -0.0408560112118721, 0.10475525259971619, -0.014036253094673157, -0.01955016888678074, -0.047549519687891006, -0.026481425389647484, -0.017693908885121346, 0.07542085647583008, 0.005783667787909508, 0.04367240518331528, 0.007754229474812746, 0.028676018118858337, -0.013981387950479984, -0.008042270317673683, 0.019806204363703728, 0.029407549649477005, -0.014914089813828468, 0.01123814657330513, 0.018215123564004898, -0.003847396234050393, 0.0013750498183071613, 0.05592555180191994, 0.0011498754611238837, 0.008307449519634247, -0.03953925520181656, -0.033046916127204895, -0.030267098918557167, 0.01909296214580536, -0.00953733641654253, 0.005015559960156679, 0.05263366177678108, 0.02410394884645939, 0.01785850338637829, -0.08463814854621887, -0.0015042107552289963, 0.03385160118341446, 0.009445895440876484, -0.04359925165772438, 0.01905638538300991, 0.05131690576672554, -0.038917455822229385, 0.011073552072048187, -0.009573913179337978, -0.012628055177628994, -0.016779493540525436, -0.0329006090760231, 0.08580859750509262, -0.03041340596973896, 0.029627008363604546, -0.021269265562295914, -0.024414850398898125, 0.004231450147926807, 0.03344925865530968, -0.025621876120567322, -0.05267023667693138, 0.04615961015224457, 0.005184726789593697, 0.0067666624672710896, -0.021964220330119133, -0.04952465370297432, -0.019038096070289612, -0.008997832424938679, -0.04356267675757408, -0.03110835887491703, 0.0033033201470971107, -0.003915977198630571, -0.050951141864061356, 0.06389924138784409, 0.028328541666269302, -0.004350324161350727, 0.03829565271735191, -0.009295016527175903, -0.01760246604681015, 0.028035929426550865, 0.04634249582886696, 0.0013899090699851513, -0.0453915037214756, -0.052341047674417496, 0.05705942586064339, -0.08229725062847137, -0.0589979812502861, -0.014932378195226192, -0.0386614166200161, -0.05585239827632904, -0.05248735472559929, -0.011036975309252739, -0.013130983337759972, -0.003856540424749255, 0.03728979825973511, 0.05146321281790733, -0.03337610512971878, 0.004814389161765575, -0.000229603610932827, 0.016057107597589493, -0.09861039370298386, -0.02227512188255787, 0.018910078331828117, -0.0031913043931126595, 0.021433860063552856, 0.0014390588039532304, -0.015883369371294975, 0.029425838962197304, -0.027158090844750404, 0.01738300733268261, 0.010634632781147957, 0.0052030147053301334, -0.035991329699754715, -0.05179240182042122, 0.012765217572450638, 0.028474846854805946, -0.09246552735567093, -0.003774243174120784, 0.07212896645069122, 0.0026815186720341444, 0.022878635674715042, 0.027066649869084358, -0.025749893859028816, 0.022970076650381088, -0.0374361053109169, 0.010726074688136578, 0.003867970546707511, 0.0016448019305244088, 0.039868444204330444, 0.053730957210063934, 0.059107713401317596, -0.0159108005464077, 0.005070424638688564, -0.03708862513303757, 0.04447709023952484, 0.015444450080394745, -0.024597732350230217, -0.030559711158275604, -0.03110835887491703, -0.033705294132232666, 0.022165391594171524, 0.0088195214048028, -0.04978068917989731, 0.005344748962670565, -0.011841659434139729, -0.03312006965279579, 0.022183680906891823, -0.05131690576672554, -0.052779968827962875, -0.01829742081463337, 0.05833960324525833, -0.007900536060333252, 0.005299028474837542, -0.016285710036754608, 0.013780216686427593, -0.05588897690176964, -0.021616743877530098, 0.03560727462172508, 0.05925401672720909, -0.031218089163303375, -0.007571346592158079, -0.06843473017215729, -0.045318350195884705, 0.0142008475959301, 0.03591817617416382, 0.03246169164776802, 0.020391428843140602, 0.05629131570458412, -0.014008820056915283, -0.004414333030581474, 0.023116381838917732, -0.0009949966333806515, -0.05855906382203102, -0.01712697185575962, 0.021982509642839432, 0.014557468704879284, -0.03110835887491703, -0.04586699977517128, 0.04700087383389473, -0.02317124791443348, 0.035552412271499634, -0.004732091911137104, 0.003995988517999649, -0.06539887934923172, -0.012692064046859741, 0.0060717081651091576, -0.060717079788446426, 0.0015807929448783398, -0.038478534668684006, -0.006400897167623043, 0.015883369371294975, 0.020318275317549706, 0.034875743091106415, -0.05468194931745529, 0.06671563535928726, -0.04447709023952484, -0.04729348421096802, 0.025841334834694862, 0.024872057139873505, 0.003248455235734582, -0.011768506839871407, -0.00374223873950541, -0.04429420828819275, -0.0013407593360170722, -0.010241434909403324, -0.021397285163402557, 0.02567674219608307, -0.014127694070339203, 0.012445172294974327, 0.00033061776775866747, 0.05241420120000839, 0.0014927806332707405, 0.055267173796892166, -0.002768388018012047, -0.03840538114309311, 0.013249856419861317, 0.010378597304224968, -0.059363748878240585, -0.0227140411734581, -0.02000737562775612, 0.014228279702365398, 0.011896524578332901, 0.02404908463358879, -0.019477015361189842, -0.00235690176486969, 0.02909664995968342, -0.05384068936109543, -0.027798181399703026, -0.022403139621019363, 0.016651475802063942, -0.015737062320113182, 0.051682669669389725, 0.037362951785326004, 0.017931655049324036, -0.05570609122514725, 0.014328865334391594, 0.0038611125200986862, 0.08376030623912811, -0.009912245906889439, -0.0036370812449604273, 0.02267746441066265, -0.034217365086078644, 0.025585299357771873, 0.04601330682635307, -0.02565845288336277, 0.030998630449175835, 0.017291566357016563, 0.0032004485838115215, -0.022329986095428467, 0.07011725753545761, 0.01397224422544241, -0.023756472393870354, -0.011795938946306705, 0.004777812398970127, 0.016413729637861252, -0.10775452852249146, -0.02679232694208622, 0.02631683088839054, 0.012344587594270706, 0.01034202054142952, -0.09041724354028702, -0.04294087365269661, -0.05175582319498062, -0.04063655063509941, -0.01933070831000805, 0.04177042469382286, 0.06909310817718506, 0.04341636970639229, -0.023463860154151917, 0.028529712930321693, -0.010817515663802624, 0.024195391684770584, 0.05866879224777222, -0.0226957518607378, 0.038990605622529984, 0.0014767784159630537, 0.01752016879618168, -0.009573913179337978, 0.009217292070388794, -0.033284664154052734, -0.07286049425601959, 0.0018779775127768517, 0.010424317792057991, 0.03672286123037338, 0.025823047384619713, -0.004978983663022518, 0.0352780856192112, -0.009683642536401749, -0.011448461562395096, -0.004562925081700087, 0.003877114737406373, -0.019842781126499176, 0.023244399577379227, 0.0008212579414248466, 0.034839168190956116, 0.007612495217472315, -0.03262628614902496, 0.018224269151687622, 0.014365442097187042, 0.03154727816581726, 0.04476970434188843, -0.0033101781737059355, 0.01631314307451248, -0.02816394716501236, 0.05629131570458412, -0.08237040042877197, -0.008600062690675259, -0.05204843729734421, 0.018434584140777588, -0.03183989226818085, -0.024652598425745964, -0.035332951694726944, -0.0034290519542992115, 0.010954678058624268, -0.012454316951334476, 0.013652198947966099, -0.03730808570981026, 0.02404908463358879, -0.049195464700460434, 0.005367609206587076, 0.090929314494133, -0.08975886553525925, -0.015334720723330975, 0.012070262804627419, -0.011567335575819016, 0.03249827027320862, -0.012353731319308281, 0.012993820942938328, 0.024670885875821114, 0.03707033768296242, 0.015499315224587917, 0.01542616169899702, -0.03652168810367584, -0.03355898708105087, -0.004647508263587952, 0.03540610522031784, -0.009939678944647312, 0.06258248537778854, -0.02203737385571003, 0.010982110165059566, -0.07289707660675049, -0.007827382534742355, -0.026097372174263, 0.017995664849877357, -0.002056288067251444, -0.015371297486126423, -0.004610931966453791, 0.062070414423942566, -0.01802309788763523, -0.07172662019729614, 0.015645621344447136, -0.01802309788763523, 0.024231966584920883, 0.004960695281624794, -0.0374361053109169, 0.027853045612573624, 0.0066432165913283825, 0.12765216827392578, 0.03491232171654701, 0.007347315549850464, 0.007109567988663912, 0.0066432165913283825, -0.0238662026822567, -0.05965635925531387, -0.012719497084617615, 0.004480627831071615, 0.01569134183228016, -0.05471852421760559, 0.004814389161765575, 0.02882232517004013, 0.0215984545648098, 0.010524903424084187, 0.041660696268081665, 0.06199726089835167, -0.04820789769291878, -0.0013384732883423567, -0.0075393421575427055, 0.030815746635198593, 0.017090395092964172, 0.029627008363604546, 0.03041340596973896, -0.004318319261074066, -0.04195330664515495, 0.01613026112318039, 0.002459773328155279, -0.0038405382074415684, -0.017511025071144104, 0.06832500547170639, 0.006661504972726107, 0.02243971638381481, 0.05380411073565483, 0.016752062365412712, -0.030011063441634178, -0.05062195286154747, -0.0374361053109169, 0.015837648883461952, 0.0007721082074567676, 0.030797459185123444, 0.027377551421523094, -0.031657006591558456, -0.01880034990608692, 0.014813504181802273, 0.01638629660010338, 0.02589620091021061, 0.021049806848168373, -0.0005143578164279461, 0.01631314307451248, 0.07143401354551315, -0.06975148618221283, -0.02227512188255787, 0.05738861486315727, 0.009038981050252914, -0.077176533639431, -0.06309455633163452, 0.05402357131242752, -0.059144288301467896, 0.04447709023952484, -0.03589988872408867, 0.011521615087985992, -0.025530435144901276, -0.03269943967461586, 0.04337979480624199, 0.003095290856435895, -0.06174122542142868, 0.006341460160911083, -0.021763049066066742, -0.009729363955557346, 0.0019191261380910873, 0.00295127066783607, 0.032114215195178986, 0.03637538477778435, 0.026627732440829277, 0.03619249910116196, -0.02404908463358879, 0.0007583919796161354, 0.011997110210359097, -0.055303748697042465, -0.04063655063509941, -0.017712196335196495, 0.010012831538915634, -0.007091279607266188, -0.036869168281555176, -0.06086338683962822, 0.021635031327605247, -0.056218165904283524, 0.00020902929827570915, 0.016203412786126137, 0.042099613696336746, -0.05139005929231644, -0.07681076228618622, -0.020958365872502327, 0.006364320404827595, -0.0030564283952116966, 0.04180700331926346, -0.03913691267371178, 0.05402357131242752, -0.013030397705733776, 0.04400159418582916, 0.060717079788446426, 0.0204097181558609, 0.0024917777627706528, 0.04809816926717758, 0.01933070831000805, -0.0028552573639899492, -0.06214356794953346, -0.012628055177628994, -0.056181587278842926, 0.05738861486315727, 0.06598410755395889, -0.022092238068580627, -0.025073228403925896, -0.008462900295853615, 0.10146336257457733, -0.0011967391474172473, 0.008087990805506706, -0.013130983337759972, 0.05237762629985809, -0.0025717890821397305, -0.03814934566617012, -0.024378273636102676, -0.011366164311766624, 0.003659941488876939, 0.006117428652942181, 0.0008189718937501311, -0.03275430575013161, -0.035113491117954254, 0.04198988527059555, 0.023555301129817963, -0.07417725026607513, 0.027889622375369072, -0.0012104553170502186, -0.059802666306495667, -0.0386614166200161, 0.05592555180191994, -0.028913766145706177, 0.02247629314661026, -0.026060795411467552, -0.02382962591946125, 0.05969293788075447, -0.030157368630170822, 0.008101706393063068, 0.033302951604127884, -0.016596611589193344, -0.024890344589948654, 0.05197528377175331, 0.005701370537281036, -0.012335442937910557, -0.03942952677607536, -0.0373995266854763, 0.03811277076601982, -0.008508620783686638, 0.002862115390598774, -0.04155096411705017, 0.015325576066970825, 0.04722033068537712, -0.03315664827823639, 0.05749834328889847, -0.02225683256983757, -0.004818961024284363, 0.0329371877014637, -0.01631314307451248, 0.035991329699754715, -0.0010350021766498685, 0.04005132615566254, 0.012518325820565224, 0.03606448322534561, 0.021269265562295914, -0.018782060593366623, -0.036448538303375244, -0.013926522806286812, 0.023463860154151917, -0.08712535351514816, 0.017492737621068954, 0.0014527749735862017, 0.03611934930086136, -0.054572220891714096, -0.02245800383388996, -0.06653275340795517, 0.0454280823469162, -0.0306328646838665, -0.0034473403356969357, -0.009939678944647312, 0.008339454419910908 ]
24,408
okta_jwt_verifier.jwt_verifier
get_jwks
Get jwks_uri from claims and download jwks. version from okta_jwt_verifier.__init__.py
def _get_jwk_by_kid(self, jwks, kid): """Loop through given jwks and find jwk which matches by kid. Return: str if jwk match found, None - otherwise """ okta_jwk = None for key in jwks['keys']: if key['kid'] == kid: okta_jwk = key return okta_jwk
(self)
[ 0.0843421220779419, -0.017510315403342247, -0.0657985582947731, 0.0512051023542881, -0.01715371012687683, 0.022511957213282585, 0.0402691550552845, 0.045938290655612946, 0.07252836972475052, -0.013349901884794235, -0.02602316439151764, 0.031674012541770935, 0.00695383595302701, -0.03330160304903984, -0.000006781925549148582, -0.041549284011125565, 0.021304979920387268, 0.046998970210552216, 0.023956673219799995, -0.002024201676249504, -0.021085530519485474, -0.011978336609899998, 0.07790490239858627, 0.06433555483818054, -0.025474539026618004, 0.015334099531173706, 0.08126981556415558, 0.009088905528187752, 0.041915033012628555, 0.01260925643146038, -0.02969895862042904, -0.01701655238866806, 0.0623239241540432, 0.02338975854218006, 0.022511957213282585, 0.02119525521993637, -0.002257367828860879, -0.011969192884862423, -0.04933977499604225, -0.009765544906258583, 0.029424646869301796, 0.06506705284118652, 0.03249695152044296, -0.09304698556661606, 0.008096806704998016, 0.07827065885066986, -0.003810665337368846, 0.03342961519956589, 0.021122105419635773, 0.011228547431528568, 0.0155809810385108, 0.0219450443983078, -0.06287255138158798, -0.06704211235046387, -0.041183531284332275, -0.03516693413257599, -0.02304229512810707, -0.017638329416513443, -0.03194832801818848, -0.012865281663835049, -0.040122855454683304, -0.06543280929327011, 0.04608459025621414, 0.09012097865343094, -0.0657985582947731, 0.0012378375977277756, 0.016047313809394836, -0.033521056175231934, -0.04857169836759567, -0.007516177371144295, -0.001932763960212469, -0.03341132774949074, -0.03297242894768715, -0.01095423474907875, -0.004923919215798378, -0.005829152185469866, -0.03807464987039566, -0.07172371447086334, -0.07197974622249603, -0.02854684367775917, 0.04637719318270683, -0.004322716500610113, -0.05526493489742279, -0.04217106103897095, 0.014803760685026646, 0.0986795499920845, 0.06301885098218918, -0.010945091024041176, -0.012353231199085712, 0.0003274611954111606, -0.009267209097743034, 0.009738112799823284, 0.055776987224817276, 0.027358153834939003, 0.04992497339844704, 0.01813209243118763, -0.03767232596874237, -0.025145363062620163, -0.03253352642059326, 0.027339866384863853, 0.04718184471130371, -0.034837756305933, -0.0237920843064785, -0.002665408421307802, 0.021158680319786072, 0.021158680319786072, -0.047584168612957, -0.0007572182803414762, 0.023371471092104912, 0.007516177371144295, -0.061007220298051834, -0.05559411272406578, -0.03953765332698822, 0.0201162900775671, -0.0029945841524749994, 0.017812060192227364, 0.009738112799823284, 0.022877708077430725, 0.021817030385136604, -0.03924505412578583, 0.03377708047628403, -0.007932218722999096, 0.009212346747517586, 0.004116981755942106, 0.040817782282829285, -0.054387133568525314, 0.018872737884521484, 0.026114601641893387, 0.02971724607050419, -0.012837850488722324, 0.05080277472734451, 0.0661277323961258, -0.03873300179839134, -0.045535966753959656, -0.0476573184132576, 0.05065647512674332, 0.0061354683712124825, 0.0173457283526659, 0.005975452717393637, 0.0034746320452541113, 0.020427178591489792, -0.020317453891038895, 0.018945887684822083, -0.006048602517694235, -0.03520350903272629, -0.011301697231829166, -0.06433555483818054, 0.00952780619263649, 0.017236003652215004, -0.010113007389008999, -0.017144566401839256, 0.0068532545119524, 0.03591672331094742, 0.044475287199020386, 0.002477961126714945, -0.01206063013523817, 0.023865235969424248, -0.02090265415608883, -0.005047359969466925, -0.053692206740379333, 0.04915689677000046, -0.04176873341202736, -0.003175173420459032, -0.045535966753959656, 0.0071549988351762295, 0.04824252054095268, -0.023901810869574547, 0.04323173686861992, 0.0019099046476185322, 0.029497796669602394, -0.021487856283783913, 0.052229203283786774, -0.046304043382406235, -0.011978336609899998, 0.00493763480335474, 0.02968067117035389, 0.0007149283774197102, -0.016467927023768425, -0.002905432367697358, -0.024432148784399033, -0.03811122477054596, 0.02997327223420143, 0.008197388611733913, 0.05709368735551834, 0.02090265415608883, 0.030576761811971664, -0.015480400063097477, 0.026114601641893387, 0.03807464987039566, 0.008704867213964462, -0.041585858911275864, 0.008430554531514645, -0.005454257596284151, 0.03328331559896469, -0.03811122477054596, -0.023938385769724846, 0.0807577595114708, 0.03328331559896469, -0.13115821778774261, 0.07106536626815796, 0.009802119806408882, -0.004169558174908161, -0.06466472893953323, 0.023334896191954613, 0.06305542588233948, -0.0025168221909552813, -0.018022367730736732, 0.01612960733473301, -0.03227750211954117, 0.035331521183252335, 0.00987526960670948, -0.008636289276182652, -0.03150942549109459, 0.01665080152451992, 0.03701397404074669, 0.012545250356197357, -0.004313572775572538, 0.018031511455774307, -0.034234266728162766, -0.02488933689892292, -0.04217106103897095, 0.0029785824008286, 0.05533808469772339, -0.012005767785012722, 0.006062318570911884, -0.028382256627082825, 0.06660320609807968, 0.023005720227956772, -0.0012332657352089882, -0.03652020916342735, 0.01593758724629879, -0.040817782282829285, 0.10475100576877594, -0.014035684056580067, -0.019622527062892914, -0.047584168612957, -0.026480352506041527, -0.017674904316663742, 0.07549095153808594, 0.005728570744395256, 0.04363406077027321, 0.007721912115812302, 0.028674857690930367, -0.013980821706354618, -0.008032800629734993, 0.01978711411356926, 0.029424646869301796, -0.014840335585176945, 0.011201116256415844, 0.018214385956525803, -0.0038472404703497887, 0.0013864238280802965, 0.05588671192526817, 0.0011286839144304395, 0.008302541449666023, -0.03957422822713852, -0.033082153648138046, -0.030265873298048973, 0.01907389983534813, -0.009591813199222088, 0.0049970694817602634, 0.052558381110429764, 0.024084685370326042, 0.017848635092377663, -0.08463472127914429, -0.0014927202137187123, 0.033868517726659775, 0.009482087567448616, -0.04356091096997261, 0.01907389983534813, 0.051314827054739, -0.03887930139899254, 0.011018240824341774, -0.009600956924259663, -0.012618400156497955, -0.016751384362578392, -0.03282612934708595, 0.08580511808395386, -0.03041217289865017, 0.02964409627020359, -0.02123183012008667, -0.024358998984098434, 0.004295285325497389, 0.03342961519956589, -0.02560255117714405, -0.05270468071103096, 0.04612116888165474, 0.005161656998097897, 0.0067526730708777905, -0.0219816192984581, -0.04952264949679375, -0.01903732493519783, -0.008983752690255642, -0.04359748587012291, -0.031088812276721, 0.0033123299945145845, -0.003902103053405881, -0.051022227853536606, 0.06389665603637695, 0.028309106826782227, -0.004434727597981691, 0.03829410299658775, -0.009363219141960144, -0.017620041966438293, 0.028016505762934685, 0.046340618282556534, 0.0013349901419132948, -0.04546281695365906, -0.05233892798423767, 0.05705711245536804, -0.08244021236896515, -0.05895901843905449, -0.014886055141687393, -0.03869642689824104, -0.055776987224817276, -0.05241207778453827, -0.0109725221991539, -0.013057300820946693, -0.0038335248827934265, 0.03732486069202423, 0.051461126655340195, -0.033484477549791336, 0.0047593312337994576, -0.0002165930054616183, 0.016065601259469986, -0.0986064001917839, -0.02232908271253109, 0.018927600234746933, -0.003175173420459032, 0.021432992070913315, 0.0013772801030427217, -0.015864437445998192, 0.029461221769452095, -0.027193566784262657, 0.017409734427928925, 0.01058848388493061, 0.005230235401540995, -0.036008160561323166, -0.051790304481983185, 0.012737269513309002, 0.028455406427383423, -0.09253493696451187, -0.0038152371998876333, 0.07216262072324753, 0.002772847656160593, 0.022877708077430725, 0.02704726718366146, -0.025767138227820396, 0.022987432777881622, -0.037489451467990875, 0.010707352310419083, 0.0039249625988304615, 0.0016493072034791112, 0.03993998095393181, 0.05380193144083023, 0.059105318039655685, -0.01591929979622364, 0.005047359969466925, -0.03703226149082184, 0.044511862099170685, 0.015443824231624603, -0.024615023285150528, -0.030558474361896515, -0.031088812276721, -0.03370393067598343, 0.022219356149435043, 0.008828308433294296, -0.04974209889769554, 0.005362819880247116, -0.011859467253088951, -0.033137015998363495, 0.022182781249284744, -0.0513514019548893, -0.05277783051133156, -0.018351543694734573, 0.058337241411209106, -0.007913931272923946, 0.005280526354908943, -0.016385633498430252, 0.0137065090239048, -0.05588671192526817, -0.02159758098423481, 0.03562412038445473, 0.05928819254040718, -0.03118024952709675, -0.007584755774587393, -0.06846853345632553, -0.04531651362776756, 0.014191128313541412, 0.03586185723543167, 0.032460376620292664, 0.020390603691339493, 0.05628903582692146, -0.013980821706354618, -0.004391294904053211, 0.023133734241127968, -0.00102010159753263, -0.0585566908121109, -0.01708970218896866, 0.02199990674853325, 0.014547735452651978, -0.0311619620770216, -0.045901715755462646, 0.046998970210552216, -0.023206884041428566, 0.03555097058415413, -0.004731900058686733, 0.004014114383608103, -0.06535965204238892, -0.012718982063233852, 0.006025743205100298, -0.06075119599699974, 0.0015567265218123794, -0.03851355239748955, -0.006414353381842375, 0.015873581171035767, 0.020390603691339493, 0.0349109061062336, -0.05460658296942711, 0.06671293079853058, -0.04443871229887009, -0.04729156941175461, 0.025895152240991592, 0.02488933689892292, 0.0032643252052366734, -0.011740598827600479, -0.0037489449605345726, -0.04432898759841919, -0.0013292753137648106, -0.010213589295744896, -0.021414704620838165, 0.0256939884275198, -0.014181984588503838, 0.012398949824273586, 0.00035975011996924877, 0.05241207778453827, 0.0014915772480890155, 0.05530150979757309, -0.0027637039311230183, -0.03836725279688835, 0.013276751153171062, 0.010378177277743816, -0.05939791724085808, -0.02269483357667923, -0.019951703026890755, 0.014181984588503838, 0.011859467253088951, 0.024048110470175743, -0.019549377262592316, -0.002397953299805522, 0.029168620705604553, -0.05383850634098053, -0.02781534381210804, -0.022420519962906837, 0.01670566387474537, -0.015754712745547295, 0.05164400488138199, 0.03737972304224968, 0.01788520999252796, -0.05570383742451668, 0.014309997670352459, 0.0038975311908870935, 0.08375691622495651, -0.009847838431596756, -0.00361178838647902, 0.02269483357667923, -0.034252554178237915, 0.0255842637270689, 0.045974865555763245, -0.0256208386272192, 0.030942512676119804, 0.017309153452515602, 0.0031843173783272505, -0.02232908271253109, 0.07011441141366959, 0.013898528181016445, -0.023718934506177902, -0.011768030002713203, 0.00475475937128067, 0.016385633498430252, -0.10767701268196106, -0.02675466611981392, 0.02631576545536518, 0.012353231199085712, 0.010332457721233368, -0.09034042805433273, -0.04293913394212723, -0.051753729581832886, -0.04056175425648689, -0.019329925999045372, 0.04173215851187706, 0.06920003890991211, 0.043378036469221115, -0.02344462089240551, 0.02852855622768402, -0.010817077942192554, 0.02417612262070179, 0.0587029904127121, -0.02265825681388378, 0.03902560472488403, 0.0014801474753767252, 0.017482884228229523, -0.009591813199222088, 0.009212346747517586, -0.03326502814888954, -0.07282096892595291, 0.0018458982231095433, 0.01042389590293169, 0.036721374839544296, 0.025822002440690994, -0.004978782031685114, 0.035276658833026886, -0.009701537899672985, -0.011438854038715363, -0.004599315579980612, 0.0038243811577558517, -0.019878551363945007, 0.023280033841729164, 0.0008040801039896905, 0.03481946885585785, 0.007593899499624968, -0.03260667622089386, 0.018205242231488228, 0.014364860020577908, 0.03152771294116974, 0.044804465025663376, -0.0032917566131800413, 0.01628505066037178, -0.02821766957640648, 0.05628903582692146, -0.08244021236896515, -0.008645433001220226, -0.05204632878303528, 0.018470412120223045, -0.03182031214237213, -0.024669887498021126, -0.035331521183252335, -0.003458630293607712, 0.010963378474116325, -0.012435524724423885, 0.013651645742356777, -0.03737972304224968, 0.024084685370326042, -0.04919347167015076, 0.00538567965850234, 0.09099878370761871, -0.08975522965192795, -0.015279237180948257, 0.012024055235087872, -0.011603442020714283, 0.032460376620292664, -0.012371518649160862, 0.012984151020646095, 0.024633312597870827, 0.03708712384104729, 0.0155444061383605, 0.015388961881399155, -0.03655678406357765, -0.033502768725156784, -0.004642748273909092, 0.03538638353347778, -0.009994138963520527, 0.06250680238008499, -0.022036481648683548, 0.010908515192568302, -0.07289411872625351, -0.007845353335142136, -0.026059739291667938, 0.017949217930436134, -0.0021030667703598738, -0.015352386981248856, -0.004619888961315155, 0.062031324952840805, -0.018031511455774307, -0.07172371447086334, 0.015644988045096397, -0.018031511455774307, 0.02421269752085209, 0.004978782031685114, -0.03743458539247513, 0.02785191871225834, 0.00667037907987833, 0.12764699757099152, 0.03481946885585785, 0.007365305442363024, 0.007077276706695557, 0.006615516263991594, -0.023920098319649696, -0.05965394526720047, -0.012691549956798553, 0.00447130249813199, 0.01569070667028427, -0.054716307669878006, 0.0048507689498364925, 0.02887601964175701, 0.02159758098423481, 0.010579340159893036, 0.041585858911275864, 0.061994750052690506, -0.048169370740652084, -0.001297272159717977, -0.007516177371144295, 0.03079621121287346, 0.017162853851914406, 0.02962580882012844, 0.03044874779880047, -0.004377578850835562, -0.041915033012628555, 0.01609303243458271, 0.0024368141312152147, -0.0038426686078310013, -0.017546892166137695, 0.06832223385572433, 0.0066612353548407555, 0.022475382313132286, 0.05380193144083023, 0.016751384362578392, -0.03000984713435173, -0.05058332532644272, -0.03739801049232483, 0.01588272489607334, 0.0007726484327577055, 0.03077792376279831, 0.027358153834939003, -0.031655725091695786, -0.018817875534296036, 0.014840335585176945, 0.016385633498430252, 0.02598658949136734, 0.021067241206765175, -0.000499192625284195, 0.01630333811044693, 0.07150426506996155, -0.0697852373123169, -0.022255931049585342, 0.05745944008231163, 0.00907518994063139, -0.07717340439558029, -0.06309200078248978, 0.054021384567022324, -0.059105318039655685, 0.04443871229887009, -0.03584356978535652, 0.011502860113978386, -0.025547688826918602, -0.03269811347126961, 0.043414611369371414, 0.0031020233873277903, -0.06177529692649841, 0.006332059390842915, -0.021780455484986305, -0.009747256524860859, 0.0019579094368964434, 0.0029740105383098125, 0.03211291506886482, 0.03637390956282616, 0.026644941419363022, 0.03615446016192436, -0.024011535570025444, 0.0007086420664563775, 0.011969192884862423, -0.05530150979757309, -0.04059833288192749, -0.01772976666688919, 0.010012426413595676, -0.00705441739410162, -0.03686767444014549, -0.06089749559760094, 0.02165244333446026, -0.056215886026620865, 0.00023873808095231652, 0.016175325959920883, 0.04209790751338005, -0.0513879768550396, -0.0768076553940773, -0.020975803956389427, 0.006414353381842375, -0.003063162323087454, 0.04184188321232796, -0.03917190432548523, 0.054021384567022324, -0.01301158219575882, 0.0439998134970665, 0.06067804619669914, 0.020372316241264343, 0.002484818920493126, 0.04805964604020119, 0.019275063648819923, -0.002800279064103961, -0.0621410496532917, -0.01262754388153553, -0.056179311126470566, 0.05738629028201103, 0.0660180076956749, -0.022109631448984146, -0.025090500712394714, -0.008480845019221306, 0.10145924985408783, -0.001153829274699092, 0.008078519254922867, -0.013093875721096992, 0.05237550288438797, -0.002573970705270767, -0.03814779967069626, -0.024377286434173584, -0.011393135413527489, 0.003673508996143937, 0.00612175278365612, 0.0008189387153834105, -0.032752979546785355, -0.03511207178235054, 0.04202475771307945, 0.023554347455501556, -0.07413767278194427, 0.027925068512558937, -0.0012161211343482137, -0.059836819767951965, -0.038623277097940445, 0.05592328682541847, -0.02894916944205761, 0.022511957213282585, -0.02604145184159279, -0.0238286592066288, 0.05969052016735077, -0.030192723497748375, 0.008101378567516804, 0.03330160304903984, -0.01661422662436962, -0.02487104944884777, 0.05197317898273468, 0.005655420478433371, -0.012334943749010563, -0.039391353726387024, -0.03732486069202423, 0.03814779967069626, -0.008517419919371605, 0.0028597135096788406, -0.041512709110975266, 0.015315812081098557, 0.04725499451160431, -0.033155303448438644, 0.05753258988261223, -0.02229250781238079, -0.0047913347370922565, 0.0329175665974617, -0.01633991301059723, 0.036063022911548615, -0.0009852410294115543, 0.03997655585408211, 0.01244466844946146, 0.036081310361623764, 0.02126840502023697, -0.018726438283920288, -0.036447059363126755, -0.01392595935612917, 0.023499485105276108, -0.08712182193994522, 0.017546892166137695, 0.0014995780074968934, 0.03615446016192436, -0.05453343316912651, -0.022475382313132286, -0.06653005629777908, 0.04546281695365906, -0.030631624162197113, -0.0034311991184949875, -0.009939275681972504, 0.008334544487297535 ]
24,409
okta_jwt_verifier.jwt_verifier
parse_token
Parse JWT token, get headers, claims and signature. Return: tuple (headers, claims, signing_input, signature)
def parse_token(self, token): """Parse JWT token, get headers, claims and signature. Return: tuple (headers, claims, signing_input, signature) """ return JWTUtils.parse_token(token)
(self, token)
[ 0.044428128749132156, 0.03351350128650665, 0.008863761089742184, 0.0602053627371788, 0.021252037957310677, -0.06240927800536156, -0.0011271013645455241, 0.05299890786409378, -0.02189921960234642, 0.041209712624549866, 0.042399127036333084, 0.05604241043329239, 0.030627422034740448, -0.021864237263798714, 0.018628329038619995, 0.02394571155309677, 0.050620079040527344, 0.028091171756386757, -0.013477114960551262, 0.0326739139854908, -0.028231101110577583, -0.015619810670614243, -0.030819827690720558, 0.031152164563536644, -0.03080233559012413, 0.011518079787492752, -0.003410820849239826, -0.03246401995420456, 0.015506116673350334, -0.030365051701664925, -0.031047215685248375, 0.0012342361733317375, 0.08074025064706802, 0.026184609159827232, -0.02002764120697975, -0.046876922249794006, -0.013923145830631256, 0.016197025775909424, -0.14524848759174347, 0.0314670093357563, -0.0629340186715126, -0.018156060948967934, 0.009008065797388554, -0.02130451239645481, -0.030872302129864693, 0.005518533289432526, -0.002953858347609639, 0.06485807150602341, -0.03277886286377907, 0.004727047868072987, 0.03360095992684364, 0.003500464139506221, -0.033093709498643875, -0.04274895414710045, -0.03680188208818436, -0.031939275562763214, 0.07045531272888184, 0.023333512246608734, -0.006725438870489597, 0.05513285845518112, 0.02259887382388115, 0.015112560242414474, 0.005212434101849794, 0.006340628489851952, 0.03648703917860985, -0.023333512246608734, 0.05086496099829674, -0.007022792939096689, -0.034090716391801834, -0.01690542697906494, -0.029507974162697792, -0.012969865463674068, -0.031344570219516754, 0.025257565081119537, 0.00991761777549982, -0.06167463958263397, -0.023123616352677345, -0.03249900043010712, -0.004932571668177843, -0.01673051342368126, 0.011561808176338673, -0.015549845062196255, -0.04582744091749191, 0.005006910301744938, -0.011719230562448502, 0.028790825977921486, -0.011867907829582691, -0.03795631602406502, -0.08843646198511124, 0.03557748720049858, -0.014395412988960743, 0.007101504132151604, -0.006467441096901894, 0.03165941312909126, -0.041804421693086624, -0.034562986344099045, -0.032236628234386444, 0.026674367487430573, -0.06464817374944687, 0.0016048349207267165, -0.030085189267992973, 0.06867119669914246, -0.13979117572307587, 0.035857345908880234, -0.009375385008752346, -0.00021454281522892416, -0.031432025134563446, -0.035140201449394226, 0.05142468214035034, -0.02259887382388115, -0.05156461521983147, -0.04051005840301514, -0.004464677069336176, 0.034283123910427094, 0.054223306477069855, -0.03823617473244667, 0.037886347621679306, -0.0022388978395611048, -0.022144097834825516, 0.009261690080165863, 0.04582744091749191, -0.004573998041450977, 0.036906830966472626, -0.03463295102119446, -0.01529621984809637, -0.006393102928996086, 0.06884610652923584, -0.0645432248711586, 0.04152455925941467, -0.01632821187376976, -0.004020832944661379, 0.07871124893426895, 0.02405066043138504, -0.01731647551059723, -0.051774512976408005, -0.07885117828845978, 0.03431810438632965, 0.0086494917050004, -0.01740393228828907, -0.037886347621679306, 0.006707947701215744, 0.0375715047121048, -0.01808609627187252, -0.05684701353311539, -0.07703207433223724, -0.014509106986224651, 0.0057065654546022415, 0.018051113933324814, 0.03335607796907425, -0.03865597024559975, 0.015488624572753906, -0.02434801310300827, 0.07647234946489334, -0.03321614861488342, 0.029315568506717682, -0.039565522223711014, 0.0082078343257308, -0.014001856558024883, -0.012567562982439995, -0.01799863949418068, 0.023036159574985504, 0.001763350679539144, -0.0027855036314576864, -0.006559270899742842, 0.04477795585989952, 0.01779748871922493, 0.09354394674301147, 0.012550071813166142, -0.02984030917286873, -0.07178466022014618, 0.011229472234845161, 0.04397335276007652, 0.002689301036298275, 0.012357666157186031, -0.0574767030775547, 0.0002042939595412463, -0.023036159574985504, 0.07920101284980774, -0.04428819566965103, -0.01739518716931343, 0.037676453590393066, 0.002440048847347498, 0.01798114739358425, -0.017911182716488838, -0.02102464996278286, 0.044428128749132156, 0.006974691525101662, 0.013809451833367348, 0.018838226795196533, 0.008098512887954712, 0.03295377641916275, -0.039565522223711014, -0.03228910267353058, -0.02454041875898838, -0.037886347621679306, 0.006266290321946144, 0.03479037433862686, 0.021759288385510445, -0.0027964357286691666, -0.052649080753326416, 0.009252944961190224, -0.0005821352824568748, -0.0708051398396492, -0.004123595077544451, -0.01680047996342182, -0.015864690765738487, -0.010564799420535564, 0.06443827599287033, -0.05408337339758873, 0.01691417396068573, 0.010879644192755222, -0.039145730435848236, -0.007411976344883442, 0.05082997679710388, 0.018925683572888374, -0.026569420471787453, -0.019415441900491714, -0.01847090758383274, 0.04838118329644203, -0.05905092880129814, 0.08318904787302017, 0.003026010235771537, 0.02217908203601837, -0.01135191135108471, 0.06226934492588043, 0.04348359256982803, 0.010258699767291546, -0.02210911549627781, -0.042399127036333084, -0.033968277275562286, 0.0004315453697927296, -0.048066336661577225, 0.0389358326792717, -0.010940863750874996, -0.0596456378698349, -0.013625792227685452, 0.06874115765094757, -0.022074133157730103, 0.01927551068365574, -0.0044143893755972385, 0.03785136714577675, -0.006965945474803448, -0.008470205590128899, 0.008413358591496944, -0.007049029693007469, 0.03599727898836136, 0.00944534968584776, -0.002907943446189165, -0.009611518122255802, -0.011719230562448502, -0.07871124893426895, 0.04617726802825928, 0.011736721731722355, 0.040440090000629425, -0.01945042423903942, -0.04950062930583954, 0.01985272578895092, 0.00002073686118819751, 0.07098005712032318, -0.0007854726864024997, 0.03507023677229881, -0.032708898186683655, 0.04789142310619354, -0.03069738857448101, -0.025065161287784576, -0.021147089079022408, -0.01363453734666109, 0.054922960698604584, 0.02413811720907688, -0.04554757848381996, 0.03648703917860985, -0.07087510824203491, 0.022458944469690323, -0.06391353905200958, 0.04127967730164528, -0.044043317437171936, 0.00405800249427557, 0.02786378189921379, -0.006515542510896921, 0.04379843920469284, -0.05184447765350342, -0.0708051398396492, 0.006345001515001059, 0.02259887382388115, -0.02560739405453205, 0.05027025192975998, 0.011518079787492752, 0.0014310142723843455, -0.021654339507222176, 0.00408423924818635, 0.006546152289956808, -0.022563891485333443, -0.009515315294265747, 0.01026744581758976, 0.013031085021793842, 0.014045585878193378, -0.02777632512152195, -0.03879589959979057, 0.04362352564930916, -0.009629009291529655, 0.02394571155309677, 0.10753706097602844, 0.0013610486639663577, -0.057161860167980194, 0.0500953383743763, 0.046282216906547546, -0.0019699677359312773, 0.05152963101863861, -0.03900579735636711, 0.0093928761780262, 0.01946791633963585, 0.05870110169053078, -0.00491508049890399, -0.016371939331293106, -0.007407603319734335, -0.029682887718081474, -0.00667296489700675, 0.05947072431445122, 0.040125247091054916, 0.012926136143505573, 0.03746655583381653, -0.022563891485333443, 0.04782145842909813, 0.03176436200737953, 0.08067028969526291, -0.06041525676846504, -0.07374369353055954, -0.02611464448273182, -0.0301026813685894, 0.09928112477064133, -0.03715170919895172, 0.02238897792994976, 0.0009434418170712888, 0.010687238536775112, -0.03795631602406502, 0.037676453590393066, -0.03883088380098343, 0.0002280713088111952, -0.03932064399123192, -0.024715332314372063, -0.02424306608736515, -0.106767438352108, 0.047366682440042496, 0.041209712624549866, -0.07003552466630936, -0.0708051398396492, 0.020062623545527458, -0.01749138906598091, 0.015488624572753906, -0.047961387783288956, -0.04481294006109238, 0.003417380154132843, 0.07668224722146988, 0.07290410995483398, 0.04505781829357147, -0.026674367487430573, -0.055692583322525024, 0.008666982874274254, 0.003082857234403491, 0.018995648249983788, 0.044148266315460205, 0.028283575549721718, -0.0022913720458745956, -0.012829934246838093, -0.0059995464980602264, -0.048066336661577225, -0.021479425951838493, 0.030837319791316986, 0.033688414841890335, -0.008247190155088902, -0.01799863949418068, 0.011500588618218899, -0.05027025192975998, -0.018138570711016655, -0.009550298564136028, 0.03071487881243229, -0.0219167098402977, 0.05222928896546364, -0.08458835631608963, -0.03022512048482895, 0.002899197628721595, 0.03012017160654068, 0.005116231273859739, 0.033408552408218384, 0.0045084054581820965, 0.02464536763727665, -0.07864128798246384, -0.03372339904308319, 0.019782761111855507, 0.024120625108480453, -0.0653478279709816, -0.008553288877010345, -0.021759288385510445, 0.024085642769932747, -0.07003552466630936, 0.031432025134563446, -0.04642214626073837, 0.00425696698948741, -0.02455791085958481, 0.004167323466390371, 0.05457313358783722, -0.009095522575080395, -0.005912089720368385, -0.03538507968187332, -0.002897011348977685, 0.013179761357605457, -0.022931210696697235, -0.009690229780972004, -0.03659198433160782, -0.0035135827492922544, 0.03631212189793587, -0.07458328455686569, 0.026831790804862976, -0.051984407007694244, 0.035437554121017456, 0.027601411566138268, 0.048451147973537445, 0.05331375449895859, 0.03480786457657814, 0.012506343424320221, -0.004348796792328358, -0.030190138146281242, -0.02658691070973873, -0.0005247416556812823, -0.0920746698975563, 0.04173445329070091, -0.019013140350580215, 0.01290864497423172, -0.02209162525832653, -0.04705183580517769, 0.02560739405453205, 0.02504766918718815, -0.015068831853568554, -0.027409005910158157, -0.006637982092797756, 0.0211121067404747, -0.03508772701025009, 0.025100143626332283, 0.004906334448605776, -0.01349460706114769, 0.04225919768214226, 0.061849553138017654, -0.020674820989370346, -0.0036972423549741507, 0.04603733494877815, -0.011255708523094654, -0.008973082527518272, 0.05023526772856712, 0.010599781759083271, -0.04974551126360893, 0.01163177378475666, -0.014080568216741085, 0.010442359372973442, -0.0465620793402195, 0.0359622947871685, -0.014299210160970688, 0.05072502791881561, 0.04208428040146828, 0.05229925364255905, -0.004504032898694277, 0.03335607796907425, 0.02658691070973873, 0.03559497743844986, -0.005938326474279165, 0.004788267891854048, 0.02718161791563034, 0.009559043683111668, 0.033496011048555374, -0.011378148570656776, -0.02863340452313423, 0.04516276717185974, -0.0058421241119503975, -0.0729740783572197, 0.012838679365813732, 0.019118087366223335, 0.022563891485333443, 0.06954576075077057, -0.010145005770027637, 0.00034846126800403, 0.011098286136984825, -0.02795124053955078, -0.005474804900586605, -0.040719952434301376, 0.01074845902621746, 0.010416122153401375, 0.007984818890690804, -0.00923545379191637, -0.0647881031036377, 0.029070688411593437, -0.019817743450403214, -0.04673699289560318, 0.04537266492843628, 0.01350335218012333, -0.003144077258184552, 0.030767353251576424, 0.039740435779094696, 0.047751493752002716, -0.013870671391487122, 0.010827169753611088, 0.015672285109758377, 0.006340628489851952, -0.031222129240632057, 0.007180215325206518, -0.017089087516069412, -0.014500361867249012, 0.024767806753516197, -0.05859615281224251, -0.04799637198448181, 0.006690456531941891, -0.03209669888019562, -0.027496464550495148, 0.06006542965769768, -0.01566353812813759, -0.0033583466429263353, -0.005592871457338333, 0.007556280121207237, -0.01255881693214178, 0.05243918299674988, -0.025782307609915733, 0.024085642769932747, -0.02912316285073757, -0.03372339904308319, 0.03482535481452942, -0.05761663615703583, -0.00040667480789124966, 0.022808771580457687, -0.030924776569008827, -0.0049194530583918095, 0.02160186506807804, -0.02963041327893734, -0.006821641698479652, 0.015794724225997925, -0.036417070776224136, 0.022826261818408966, -0.02308863401412964, 0.0030150781385600567, -0.014404159039258957, -0.0013020152691751719, -0.012611291371285915, 0.012366412207484245, -0.006152596324682236, -0.04355355724692345, -0.02170681394636631, 0.028196118772029877, -0.058036427944898605, 0.07759179919958115, -0.06191951781511307, -0.027793817222118378, -0.02943800762295723, 0.012655019760131836, -0.01267251092940569, -0.03493030369281769, -0.013039830140769482, 0.010652256198227406, 0.0030019597616046667, 0.0004883923684246838, 0.031939275562763214, -0.05495794489979744, 0.014089314267039299, 0.005614736117422581, 0.007337637711316347, -0.0020727296359837055, -0.0358048751950264, 0.031519483774900436, -0.06618741899728775, -0.025782307609915733, -0.03207920864224434, 0.03578738123178482, -0.08025049418210983, 0.011133269406855106, 0.02063983865082264, -0.002031187526881695, 0.03802628070116043, -0.0032533984631299973, 0.011133269406855106, 0.034178175032138824, 0.006441203877329826, 0.05387347936630249, 0.0031834328547120094, 0.028615912422537804, 0.056567151099443436, 0.03851603716611862, 0.01859334670007229, -0.038271158933639526, -0.01182417944073677, -0.008640746586024761, -0.06230432912707329, -0.040440090000629425, -0.014640293084084988, 0.03351350128650665, -0.06846129894256592, -0.028528455644845963, 0.04750661179423332, 0.03430061414837837, -0.02326354756951332, 0.0021262969821691513, 0.014596563763916492, 0.028423506766557693, -0.03020762838423252, -0.015514861792325974, 0.07311400771141052, -0.013415895402431488, 0.021356986835598946, -0.007648109924048185, 0.0362071767449379, -0.019625337794423103, -0.037711434066295624, -0.00035447394475340843, -0.008863761089742184, 0.002365710446611047, -0.004368474241346121, 0.00967273861169815, -0.022721314802765846, 0.0036338360514491796, 0.05250915139913559, 0.0844484269618988, -0.02677931636571884, -0.02698921412229538, 0.056357257068157196, 0.014893917366862297, 0.052054375410079956, 0.017036613076925278, -0.052474167197942734, 0.029210619628429413, 0.03354848548769951, -0.03841109201312065, 0.02074478752911091, -0.05093492567539215, -0.039145730435848236, -0.003935562446713448, 0.008933726698160172, -0.04537266492843628, 0.04176943749189377, -0.058141376823186874, -0.0076087540946900845, 0.0602053627371788, -0.009156742133200169, -0.01158804539591074, 0.025310039520263672, 0.04897588863968849, -0.015042594633996487, -0.0093928761780262, -0.04047507420182228, 0.006773540284484625, -0.0044143893755972385, -0.008352138102054596, -0.030295085161924362, 0.007779295090585947, 0.06744679808616638, 0.024190591648221016, -0.01242763176560402, 0.031554464250802994, -0.038271158933639526, 0.026132134720683098, -0.02160186506807804, -0.06328384578227997, 0.0077005838975310326, 0.011771705001592636, -0.0193454772233963, -0.012690003030002117, 0.0362071767449379, -0.015628555789589882, 0.005225552711635828, 0.06513793021440506, -0.03925067558884621, -0.04722674936056137, -0.04037012532353401, 0.036137208342552185, -0.013800705783069134, -0.02298368513584137, 0.06447325646877289, 0.005929580889642239, 0.03820119425654411, -0.0086494917050004, 0.05453814938664436, -0.003082857234403491, 0.046002354472875595, -0.04134964197874069, 0.04106978327035904, 0.037501540035009384, 0.04058002308011055, 0.009576535783708096, 0.030732370913028717, -0.0044100163504481316, -0.0330762155354023, 0.03052247315645218, 0.0850081518292427, 0.05702192708849907, -0.03144951909780502, -0.00032386399107053876, 0.04428819566965103, -0.04470799118280411, 0.0021776780486106873, -0.025170108303427696, -0.018943173810839653, 0.04037012532353401, -0.02912316285073757, 0.047961387783288956, 0.018558364361524582, 0.019572865217924118, -0.038096245378255844, -0.04138462617993355, 0.019205546006560326, 0.0001996478094952181, -0.016371939331293106, -0.020377468317747116, 0.028773335739970207, -0.023228565230965614, -0.023228565230965614, -0.04155953973531723, -0.026744334027171135, -0.004313813988119364, 0.03792133182287216, -0.006511169485747814, 0.055972445756196976, 0.006961572915315628, -0.06436831504106522, 0.03519267588853836, 0.06576762348413467, -0.004945690277963877, -0.006135104689747095, -0.017928672954440117, 0.023228565230965614, 0.08885625749826431, -0.03274387866258621, -0.015611064620316029, 0.014159279875457287, 0.023490935564041138, -0.027409005910158157, -0.022144097834825516, -0.031554464250802994, 0.04820626974105835, -0.03207920864224434, 0.03304123505949974, -0.014649038203060627, -0.031536974012851715, -0.015917163342237473, 0.02649945393204689, 0.013573317788541317, 0.05737175792455673, 0.04603733494877815, 0.0492907352745533, -0.03165941312909126, 0.03746655583381653, 0.03449301794171333, 0.02034248597919941, -0.018418433144688606, -0.025362513959407806, 0.01750888116657734, 0.040125247091054916, 0.002890452044084668, -0.012095295824110508, -0.034283123910427094, -0.05457313358783722, -0.05905092880129814, 0.08136994391679764, -0.045127782970666885, 0.0016201399266719818, -0.03288381174206734, 0.0021437883842736483, -0.03493030369281769, 0.03493030369281769, -0.041804421693086624, -0.014334193430840969, -0.054223306477069855, 0.004412203095853329, 0.01908310502767563, -0.0059601906687021255 ]
24,410
okta_jwt_verifier.jwt_verifier
verify_access_token
Verify acess token. Algorithm: 1. Retrieve and parse your Okta JSON Web Keys (JWK), which should be checked periodically and cached by your application. 2. Decode the access token, which is in JSON Web Token format 3. Verify the signature used to sign the access token 4. Verify the claims found inside the access token Default claims to verify for access token: 'exp' Expiration - The time after which the token is invalid. 'iss' Issuer - The principal that issued the JWT. 'aud' Audience - The recipient that the JWT is intended for. Raise an Exception if any validation is failed, return None otherwise.
def parse_token(self, token): """Parse JWT token, get headers, claims and signature. Return: tuple (headers, claims, signing_input, signature) """ return JWTUtils.parse_token(token)
(self, token, claims_to_verify=('iss', 'aud', 'exp'))
[ 0.044428128749132156, 0.03351350128650665, 0.008863761089742184, 0.0602053627371788, 0.021252037957310677, -0.06240927800536156, -0.0011271013645455241, 0.05299890786409378, -0.02189921960234642, 0.041209712624549866, 0.042399127036333084, 0.05604241043329239, 0.030627422034740448, -0.021864237263798714, 0.018628329038619995, 0.02394571155309677, 0.050620079040527344, 0.028091171756386757, -0.013477114960551262, 0.0326739139854908, -0.028231101110577583, -0.015619810670614243, -0.030819827690720558, 0.031152164563536644, -0.03080233559012413, 0.011518079787492752, -0.003410820849239826, -0.03246401995420456, 0.015506116673350334, -0.030365051701664925, -0.031047215685248375, 0.0012342361733317375, 0.08074025064706802, 0.026184609159827232, -0.02002764120697975, -0.046876922249794006, -0.013923145830631256, 0.016197025775909424, -0.14524848759174347, 0.0314670093357563, -0.0629340186715126, -0.018156060948967934, 0.009008065797388554, -0.02130451239645481, -0.030872302129864693, 0.005518533289432526, -0.002953858347609639, 0.06485807150602341, -0.03277886286377907, 0.004727047868072987, 0.03360095992684364, 0.003500464139506221, -0.033093709498643875, -0.04274895414710045, -0.03680188208818436, -0.031939275562763214, 0.07045531272888184, 0.023333512246608734, -0.006725438870489597, 0.05513285845518112, 0.02259887382388115, 0.015112560242414474, 0.005212434101849794, 0.006340628489851952, 0.03648703917860985, -0.023333512246608734, 0.05086496099829674, -0.007022792939096689, -0.034090716391801834, -0.01690542697906494, -0.029507974162697792, -0.012969865463674068, -0.031344570219516754, 0.025257565081119537, 0.00991761777549982, -0.06167463958263397, -0.023123616352677345, -0.03249900043010712, -0.004932571668177843, -0.01673051342368126, 0.011561808176338673, -0.015549845062196255, -0.04582744091749191, 0.005006910301744938, -0.011719230562448502, 0.028790825977921486, -0.011867907829582691, -0.03795631602406502, -0.08843646198511124, 0.03557748720049858, -0.014395412988960743, 0.007101504132151604, -0.006467441096901894, 0.03165941312909126, -0.041804421693086624, -0.034562986344099045, -0.032236628234386444, 0.026674367487430573, -0.06464817374944687, 0.0016048349207267165, -0.030085189267992973, 0.06867119669914246, -0.13979117572307587, 0.035857345908880234, -0.009375385008752346, -0.00021454281522892416, -0.031432025134563446, -0.035140201449394226, 0.05142468214035034, -0.02259887382388115, -0.05156461521983147, -0.04051005840301514, -0.004464677069336176, 0.034283123910427094, 0.054223306477069855, -0.03823617473244667, 0.037886347621679306, -0.0022388978395611048, -0.022144097834825516, 0.009261690080165863, 0.04582744091749191, -0.004573998041450977, 0.036906830966472626, -0.03463295102119446, -0.01529621984809637, -0.006393102928996086, 0.06884610652923584, -0.0645432248711586, 0.04152455925941467, -0.01632821187376976, -0.004020832944661379, 0.07871124893426895, 0.02405066043138504, -0.01731647551059723, -0.051774512976408005, -0.07885117828845978, 0.03431810438632965, 0.0086494917050004, -0.01740393228828907, -0.037886347621679306, 0.006707947701215744, 0.0375715047121048, -0.01808609627187252, -0.05684701353311539, -0.07703207433223724, -0.014509106986224651, 0.0057065654546022415, 0.018051113933324814, 0.03335607796907425, -0.03865597024559975, 0.015488624572753906, -0.02434801310300827, 0.07647234946489334, -0.03321614861488342, 0.029315568506717682, -0.039565522223711014, 0.0082078343257308, -0.014001856558024883, -0.012567562982439995, -0.01799863949418068, 0.023036159574985504, 0.001763350679539144, -0.0027855036314576864, -0.006559270899742842, 0.04477795585989952, 0.01779748871922493, 0.09354394674301147, 0.012550071813166142, -0.02984030917286873, -0.07178466022014618, 0.011229472234845161, 0.04397335276007652, 0.002689301036298275, 0.012357666157186031, -0.0574767030775547, 0.0002042939595412463, -0.023036159574985504, 0.07920101284980774, -0.04428819566965103, -0.01739518716931343, 0.037676453590393066, 0.002440048847347498, 0.01798114739358425, -0.017911182716488838, -0.02102464996278286, 0.044428128749132156, 0.006974691525101662, 0.013809451833367348, 0.018838226795196533, 0.008098512887954712, 0.03295377641916275, -0.039565522223711014, -0.03228910267353058, -0.02454041875898838, -0.037886347621679306, 0.006266290321946144, 0.03479037433862686, 0.021759288385510445, -0.0027964357286691666, -0.052649080753326416, 0.009252944961190224, -0.0005821352824568748, -0.0708051398396492, -0.004123595077544451, -0.01680047996342182, -0.015864690765738487, -0.010564799420535564, 0.06443827599287033, -0.05408337339758873, 0.01691417396068573, 0.010879644192755222, -0.039145730435848236, -0.007411976344883442, 0.05082997679710388, 0.018925683572888374, -0.026569420471787453, -0.019415441900491714, -0.01847090758383274, 0.04838118329644203, -0.05905092880129814, 0.08318904787302017, 0.003026010235771537, 0.02217908203601837, -0.01135191135108471, 0.06226934492588043, 0.04348359256982803, 0.010258699767291546, -0.02210911549627781, -0.042399127036333084, -0.033968277275562286, 0.0004315453697927296, -0.048066336661577225, 0.0389358326792717, -0.010940863750874996, -0.0596456378698349, -0.013625792227685452, 0.06874115765094757, -0.022074133157730103, 0.01927551068365574, -0.0044143893755972385, 0.03785136714577675, -0.006965945474803448, -0.008470205590128899, 0.008413358591496944, -0.007049029693007469, 0.03599727898836136, 0.00944534968584776, -0.002907943446189165, -0.009611518122255802, -0.011719230562448502, -0.07871124893426895, 0.04617726802825928, 0.011736721731722355, 0.040440090000629425, -0.01945042423903942, -0.04950062930583954, 0.01985272578895092, 0.00002073686118819751, 0.07098005712032318, -0.0007854726864024997, 0.03507023677229881, -0.032708898186683655, 0.04789142310619354, -0.03069738857448101, -0.025065161287784576, -0.021147089079022408, -0.01363453734666109, 0.054922960698604584, 0.02413811720907688, -0.04554757848381996, 0.03648703917860985, -0.07087510824203491, 0.022458944469690323, -0.06391353905200958, 0.04127967730164528, -0.044043317437171936, 0.00405800249427557, 0.02786378189921379, -0.006515542510896921, 0.04379843920469284, -0.05184447765350342, -0.0708051398396492, 0.006345001515001059, 0.02259887382388115, -0.02560739405453205, 0.05027025192975998, 0.011518079787492752, 0.0014310142723843455, -0.021654339507222176, 0.00408423924818635, 0.006546152289956808, -0.022563891485333443, -0.009515315294265747, 0.01026744581758976, 0.013031085021793842, 0.014045585878193378, -0.02777632512152195, -0.03879589959979057, 0.04362352564930916, -0.009629009291529655, 0.02394571155309677, 0.10753706097602844, 0.0013610486639663577, -0.057161860167980194, 0.0500953383743763, 0.046282216906547546, -0.0019699677359312773, 0.05152963101863861, -0.03900579735636711, 0.0093928761780262, 0.01946791633963585, 0.05870110169053078, -0.00491508049890399, -0.016371939331293106, -0.007407603319734335, -0.029682887718081474, -0.00667296489700675, 0.05947072431445122, 0.040125247091054916, 0.012926136143505573, 0.03746655583381653, -0.022563891485333443, 0.04782145842909813, 0.03176436200737953, 0.08067028969526291, -0.06041525676846504, -0.07374369353055954, -0.02611464448273182, -0.0301026813685894, 0.09928112477064133, -0.03715170919895172, 0.02238897792994976, 0.0009434418170712888, 0.010687238536775112, -0.03795631602406502, 0.037676453590393066, -0.03883088380098343, 0.0002280713088111952, -0.03932064399123192, -0.024715332314372063, -0.02424306608736515, -0.106767438352108, 0.047366682440042496, 0.041209712624549866, -0.07003552466630936, -0.0708051398396492, 0.020062623545527458, -0.01749138906598091, 0.015488624572753906, -0.047961387783288956, -0.04481294006109238, 0.003417380154132843, 0.07668224722146988, 0.07290410995483398, 0.04505781829357147, -0.026674367487430573, -0.055692583322525024, 0.008666982874274254, 0.003082857234403491, 0.018995648249983788, 0.044148266315460205, 0.028283575549721718, -0.0022913720458745956, -0.012829934246838093, -0.0059995464980602264, -0.048066336661577225, -0.021479425951838493, 0.030837319791316986, 0.033688414841890335, -0.008247190155088902, -0.01799863949418068, 0.011500588618218899, -0.05027025192975998, -0.018138570711016655, -0.009550298564136028, 0.03071487881243229, -0.0219167098402977, 0.05222928896546364, -0.08458835631608963, -0.03022512048482895, 0.002899197628721595, 0.03012017160654068, 0.005116231273859739, 0.033408552408218384, 0.0045084054581820965, 0.02464536763727665, -0.07864128798246384, -0.03372339904308319, 0.019782761111855507, 0.024120625108480453, -0.0653478279709816, -0.008553288877010345, -0.021759288385510445, 0.024085642769932747, -0.07003552466630936, 0.031432025134563446, -0.04642214626073837, 0.00425696698948741, -0.02455791085958481, 0.004167323466390371, 0.05457313358783722, -0.009095522575080395, -0.005912089720368385, -0.03538507968187332, -0.002897011348977685, 0.013179761357605457, -0.022931210696697235, -0.009690229780972004, -0.03659198433160782, -0.0035135827492922544, 0.03631212189793587, -0.07458328455686569, 0.026831790804862976, -0.051984407007694244, 0.035437554121017456, 0.027601411566138268, 0.048451147973537445, 0.05331375449895859, 0.03480786457657814, 0.012506343424320221, -0.004348796792328358, -0.030190138146281242, -0.02658691070973873, -0.0005247416556812823, -0.0920746698975563, 0.04173445329070091, -0.019013140350580215, 0.01290864497423172, -0.02209162525832653, -0.04705183580517769, 0.02560739405453205, 0.02504766918718815, -0.015068831853568554, -0.027409005910158157, -0.006637982092797756, 0.0211121067404747, -0.03508772701025009, 0.025100143626332283, 0.004906334448605776, -0.01349460706114769, 0.04225919768214226, 0.061849553138017654, -0.020674820989370346, -0.0036972423549741507, 0.04603733494877815, -0.011255708523094654, -0.008973082527518272, 0.05023526772856712, 0.010599781759083271, -0.04974551126360893, 0.01163177378475666, -0.014080568216741085, 0.010442359372973442, -0.0465620793402195, 0.0359622947871685, -0.014299210160970688, 0.05072502791881561, 0.04208428040146828, 0.05229925364255905, -0.004504032898694277, 0.03335607796907425, 0.02658691070973873, 0.03559497743844986, -0.005938326474279165, 0.004788267891854048, 0.02718161791563034, 0.009559043683111668, 0.033496011048555374, -0.011378148570656776, -0.02863340452313423, 0.04516276717185974, -0.0058421241119503975, -0.0729740783572197, 0.012838679365813732, 0.019118087366223335, 0.022563891485333443, 0.06954576075077057, -0.010145005770027637, 0.00034846126800403, 0.011098286136984825, -0.02795124053955078, -0.005474804900586605, -0.040719952434301376, 0.01074845902621746, 0.010416122153401375, 0.007984818890690804, -0.00923545379191637, -0.0647881031036377, 0.029070688411593437, -0.019817743450403214, -0.04673699289560318, 0.04537266492843628, 0.01350335218012333, -0.003144077258184552, 0.030767353251576424, 0.039740435779094696, 0.047751493752002716, -0.013870671391487122, 0.010827169753611088, 0.015672285109758377, 0.006340628489851952, -0.031222129240632057, 0.007180215325206518, -0.017089087516069412, -0.014500361867249012, 0.024767806753516197, -0.05859615281224251, -0.04799637198448181, 0.006690456531941891, -0.03209669888019562, -0.027496464550495148, 0.06006542965769768, -0.01566353812813759, -0.0033583466429263353, -0.005592871457338333, 0.007556280121207237, -0.01255881693214178, 0.05243918299674988, -0.025782307609915733, 0.024085642769932747, -0.02912316285073757, -0.03372339904308319, 0.03482535481452942, -0.05761663615703583, -0.00040667480789124966, 0.022808771580457687, -0.030924776569008827, -0.0049194530583918095, 0.02160186506807804, -0.02963041327893734, -0.006821641698479652, 0.015794724225997925, -0.036417070776224136, 0.022826261818408966, -0.02308863401412964, 0.0030150781385600567, -0.014404159039258957, -0.0013020152691751719, -0.012611291371285915, 0.012366412207484245, -0.006152596324682236, -0.04355355724692345, -0.02170681394636631, 0.028196118772029877, -0.058036427944898605, 0.07759179919958115, -0.06191951781511307, -0.027793817222118378, -0.02943800762295723, 0.012655019760131836, -0.01267251092940569, -0.03493030369281769, -0.013039830140769482, 0.010652256198227406, 0.0030019597616046667, 0.0004883923684246838, 0.031939275562763214, -0.05495794489979744, 0.014089314267039299, 0.005614736117422581, 0.007337637711316347, -0.0020727296359837055, -0.0358048751950264, 0.031519483774900436, -0.06618741899728775, -0.025782307609915733, -0.03207920864224434, 0.03578738123178482, -0.08025049418210983, 0.011133269406855106, 0.02063983865082264, -0.002031187526881695, 0.03802628070116043, -0.0032533984631299973, 0.011133269406855106, 0.034178175032138824, 0.006441203877329826, 0.05387347936630249, 0.0031834328547120094, 0.028615912422537804, 0.056567151099443436, 0.03851603716611862, 0.01859334670007229, -0.038271158933639526, -0.01182417944073677, -0.008640746586024761, -0.06230432912707329, -0.040440090000629425, -0.014640293084084988, 0.03351350128650665, -0.06846129894256592, -0.028528455644845963, 0.04750661179423332, 0.03430061414837837, -0.02326354756951332, 0.0021262969821691513, 0.014596563763916492, 0.028423506766557693, -0.03020762838423252, -0.015514861792325974, 0.07311400771141052, -0.013415895402431488, 0.021356986835598946, -0.007648109924048185, 0.0362071767449379, -0.019625337794423103, -0.037711434066295624, -0.00035447394475340843, -0.008863761089742184, 0.002365710446611047, -0.004368474241346121, 0.00967273861169815, -0.022721314802765846, 0.0036338360514491796, 0.05250915139913559, 0.0844484269618988, -0.02677931636571884, -0.02698921412229538, 0.056357257068157196, 0.014893917366862297, 0.052054375410079956, 0.017036613076925278, -0.052474167197942734, 0.029210619628429413, 0.03354848548769951, -0.03841109201312065, 0.02074478752911091, -0.05093492567539215, -0.039145730435848236, -0.003935562446713448, 0.008933726698160172, -0.04537266492843628, 0.04176943749189377, -0.058141376823186874, -0.0076087540946900845, 0.0602053627371788, -0.009156742133200169, -0.01158804539591074, 0.025310039520263672, 0.04897588863968849, -0.015042594633996487, -0.0093928761780262, -0.04047507420182228, 0.006773540284484625, -0.0044143893755972385, -0.008352138102054596, -0.030295085161924362, 0.007779295090585947, 0.06744679808616638, 0.024190591648221016, -0.01242763176560402, 0.031554464250802994, -0.038271158933639526, 0.026132134720683098, -0.02160186506807804, -0.06328384578227997, 0.0077005838975310326, 0.011771705001592636, -0.0193454772233963, -0.012690003030002117, 0.0362071767449379, -0.015628555789589882, 0.005225552711635828, 0.06513793021440506, -0.03925067558884621, -0.04722674936056137, -0.04037012532353401, 0.036137208342552185, -0.013800705783069134, -0.02298368513584137, 0.06447325646877289, 0.005929580889642239, 0.03820119425654411, -0.0086494917050004, 0.05453814938664436, -0.003082857234403491, 0.046002354472875595, -0.04134964197874069, 0.04106978327035904, 0.037501540035009384, 0.04058002308011055, 0.009576535783708096, 0.030732370913028717, -0.0044100163504481316, -0.0330762155354023, 0.03052247315645218, 0.0850081518292427, 0.05702192708849907, -0.03144951909780502, -0.00032386399107053876, 0.04428819566965103, -0.04470799118280411, 0.0021776780486106873, -0.025170108303427696, -0.018943173810839653, 0.04037012532353401, -0.02912316285073757, 0.047961387783288956, 0.018558364361524582, 0.019572865217924118, -0.038096245378255844, -0.04138462617993355, 0.019205546006560326, 0.0001996478094952181, -0.016371939331293106, -0.020377468317747116, 0.028773335739970207, -0.023228565230965614, -0.023228565230965614, -0.04155953973531723, -0.026744334027171135, -0.004313813988119364, 0.03792133182287216, -0.006511169485747814, 0.055972445756196976, 0.006961572915315628, -0.06436831504106522, 0.03519267588853836, 0.06576762348413467, -0.004945690277963877, -0.006135104689747095, -0.017928672954440117, 0.023228565230965614, 0.08885625749826431, -0.03274387866258621, -0.015611064620316029, 0.014159279875457287, 0.023490935564041138, -0.027409005910158157, -0.022144097834825516, -0.031554464250802994, 0.04820626974105835, -0.03207920864224434, 0.03304123505949974, -0.014649038203060627, -0.031536974012851715, -0.015917163342237473, 0.02649945393204689, 0.013573317788541317, 0.05737175792455673, 0.04603733494877815, 0.0492907352745533, -0.03165941312909126, 0.03746655583381653, 0.03449301794171333, 0.02034248597919941, -0.018418433144688606, -0.025362513959407806, 0.01750888116657734, 0.040125247091054916, 0.002890452044084668, -0.012095295824110508, -0.034283123910427094, -0.05457313358783722, -0.05905092880129814, 0.08136994391679764, -0.045127782970666885, 0.0016201399266719818, -0.03288381174206734, 0.0021437883842736483, -0.03493030369281769, 0.03493030369281769, -0.041804421693086624, -0.014334193430840969, -0.054223306477069855, 0.004412203095853329, 0.01908310502767563, -0.0059601906687021255 ]
24,411
okta_jwt_verifier.jwt_verifier
verify_claims
Verify claims are present and valid.
def verify_claims(self, claims, claims_to_verify, leeway=LEEWAY): """Verify claims are present and valid.""" JWTUtils.verify_claims(claims, claims_to_verify, self.audience, self.issuer, leeway)
(self, claims, claims_to_verify, leeway=120)
[ 0.032524459064006805, -0.036598723381757736, 0.02977346070110798, 0.09221067279577255, -0.030435092747211456, -0.03289009630680084, 0.008313934318721294, -0.009985426440834999, -0.06107912212610245, 0.06017373129725456, -0.03820056840777397, 0.012684190645813942, 0.07340638339519501, 0.012083497829735279, -0.002396241296082735, -0.017829254269599915, 0.022826319560408592, -0.028781011700630188, 0.06745168566703796, -0.014651676639914513, -0.01468649972230196, 0.06191486865282059, 0.006720792967826128, 0.03551921620965004, -0.02798008918762207, 0.02085883356630802, -0.007277957163751125, 0.005754461511969566, 0.027440335601568222, 0.0391756072640419, -0.004940479062497616, 0.004426843486726284, 0.0575968474149704, 0.0032646339386701584, 0.04123014956712723, -0.020945891737937927, 0.03191506117582321, -0.06396941095590591, -0.049309030175209045, -0.025142034515738487, 0.007382425479590893, 0.03036544844508171, 0.08183348923921585, 0.013598288409411907, -0.04575710743665695, 0.04331951588392258, 0.0402551107108593, 0.06574537605047226, 0.009611082263290882, 0.03537992388010025, 0.0007807916263118386, -0.07159559428691864, 0.03635496273636818, 0.010934347286820412, 0.002981698838993907, -0.015069549903273582, -0.00737807247787714, 0.008361815474927425, 0.0478464737534523, 0.03625049442052841, 0.004574840422719717, -0.04109085723757744, 0.024410756304860115, -0.04060333967208862, 0.0682874321937561, 0.02364465408027172, -0.004557428881525993, 0.031688712537288666, 0.008675220422446728, -0.01958780363202095, 0.01700221374630928, -0.03339502960443497, -0.013972632586956024, 0.028763601556420326, -0.022025397047400475, -0.02139858715236187, -0.06167111173272133, 0.03005204349756241, -0.031114136800169945, 0.02181646041572094, 0.03562368452548981, -0.028467606753110886, -0.05077158659696579, -0.056726276874542236, 0.03537992388010025, 0.04377220943570137, 0.014094512909650803, -0.06748650968074799, 0.0014070571633055806, 0.015052138827741146, -0.04123014956712723, 0.03356914222240448, 0.034474533051252365, -0.017489731311798096, 0.04168284684419632, -0.03370843455195427, 0.0051885913126170635, 0.04234447702765465, -0.004605310037732124, 0.0715259537100792, 0.0159488245844841, -0.0025855901185423136, -0.04997066408395767, 0.05178144574165344, 0.032263290137052536, 0.09172315150499344, -0.03889702260494232, -0.08740513026714325, 0.031949885189533234, 0.008553341031074524, -0.048020586371421814, -0.06139252707362175, -0.0006246332777664065, 0.010725410655140877, 0.017097976058721542, -0.013789813034236431, 0.0467669703066349, 0.03134048357605934, -0.04345880448818207, -0.009288971312344074, 0.07396354526281357, -0.054079748690128326, 0.04502582922577858, -0.05017960071563721, 0.030313214287161827, -0.019256986677646637, 0.0032428696285933256, 0.018926171585917473, 0.0303480364382267, -0.007225723005831242, -0.025403205305337906, -0.0061418646946549416, -0.0360763818025589, 0.008427108637988567, -0.02461969293653965, 0.015974942594766617, 0.08378356695175171, 0.003031756728887558, 0.00636385940015316, -0.04001135379076004, -0.022599972784519196, 0.06633736193180084, 0.04359809681773186, -0.06414352357387543, -0.030121687799692154, 0.007604420650750399, -0.06261132657527924, -0.051119811832904816, -0.02460228092968464, 0.0008172466768883169, 0.022286567836999893, -0.0603826679289341, 0.02085883356630802, -0.052930597215890884, -0.021328940987586975, -0.06567572802305222, -0.02042355015873909, 0.008992978371679783, -0.06891424208879471, 0.022338801994919777, -0.03753893822431564, 0.05080641061067581, -0.02040613815188408, -0.02716175466775894, 0.00016295963723678142, 0.03677283599972725, -0.0039045021403580904, 0.017472321167588234, -0.010264009237289429, 0.0018510473892092705, 0.012980184517800808, 0.017489731311798096, -0.04126497358083725, 0.012579722329974174, 0.007469482254236937, -0.038409505039453506, 0.007591362111270428, -0.02434111014008522, -0.053487762808799744, -0.005358352325856686, -0.030400270596146584, -0.006577149033546448, -0.023731712251901627, -0.05401010438799858, 0.02980828285217285, 0.05690039321780205, -0.05801472067832947, 0.026360830292105675, -0.016436344012618065, 0.0030709323473274708, -0.02406252734363079, 0.03806127980351448, 0.030017219483852386, 0.015661537647247314, -0.0011763564543798566, -0.05331364646553993, 0.01843865215778351, 0.04154355451464653, -0.036842480301856995, -0.04575710743665695, -0.000879818806424737, -0.0093673225492239, 0.01524366345256567, -0.045687463134527206, -0.0010767850326374173, -0.0104903569445014, -0.003401748603209853, 0.046627677977085114, -0.0031449305824935436, -0.032541871070861816, -0.006067865993827581, 0.0032820452470332384, 0.002111129928380251, -0.00321892905049026, 0.022460680454969406, -0.013528643175959587, -0.00253335596062243, -0.03579779714345932, 0.019831562414765358, 0.029616758227348328, 0.08970343321561813, 0.005941633600741625, -0.027370691299438477, -0.011831033043563366, 0.0082834642380476, 0.07856015115976334, 0.014547208324074745, 0.02418440766632557, -0.015705065801739693, -0.056830745190382004, -0.048055410385131836, 0.028432784602046013, -0.001262325095012784, -0.03146236389875412, -0.06114877015352249, -0.03541474789381027, 0.06494445353746414, 0.06407388299703598, 0.030452504754066467, 0.0010370654053986073, 0.06759098172187805, 0.007930884137749672, -0.019396277144551277, 0.009045212529599667, 0.03438747674226761, 0.04387667775154114, 0.03118378296494484, -0.01847347430884838, -0.030731087550520897, -0.007573950570076704, -0.05679592490196228, 0.010960464365780354, 0.04697590321302414, 0.03090520016849041, 0.003360396483913064, 0.027248810976743698, -0.04593122377991676, -0.05178144574165344, 0.016671396791934967, 0.011796209961175919, 0.0805102214217186, 0.05212967470288277, 0.022425858303904533, 0.04213554039597511, -0.036598723381757736, 0.040464047342538834, -0.0005832812748849392, 0.03255928307771683, 0.037434469908475876, -0.07375460863113403, 0.005001419223845005, -0.025107210502028465, -0.009027800522744656, 0.009994132444262505, 0.014172864146530628, -0.004418137948960066, -0.0013613522751256824, -0.03135789558291435, 0.01845606416463852, 0.047358956187963486, -0.04906526952981949, -0.05637805163860321, 0.021886104717850685, 0.031532011926174164, -0.018299361690878868, -0.03663354367017746, -0.0845496654510498, 0.007495599333196878, -0.038096100091934204, -0.021868694573640823, -0.012675485573709011, -0.10210033506155014, 0.04234447702765465, 0.011874561198055744, 0.014416622929275036, -0.01678457111120224, -0.005258237011730671, -0.06156664341688156, 0.02697022818028927, 0.0012111791875213385, -0.012849599123001099, 0.04864739626646042, 0.0032428696285933256, -0.07145630568265915, 0.08308710902929306, -0.052373431622982025, -0.02463710308074951, 0.012962772510945797, -0.03156683221459389, 0.009245443157851696, -0.02266961708664894, -0.018560532480478287, -0.04084710031747818, -0.021450821310281754, 0.08106739073991776, -0.02643047645688057, -0.024550046771764755, 0.0019653094932436943, -0.0033255736343562603, 0.014042278751730919, 0.046906258910894394, -0.045408882200717926, -0.0034126306418329477, 0.0729188621044159, 0.04143908619880676, -0.06508374214172363, 0.0237665344029665, 0.012797364965081215, -0.014642971567809582, -0.022007985040545464, -0.02644788660109043, -0.03144495189189911, 0.038792554289102554, -0.030870378017425537, -0.04460795596241951, -0.0104903569445014, -0.03677283599972725, 0.05268683657050133, 0.006699028890579939, 0.05021442100405693, 0.008762277662754059, -0.04213554039597511, 0.015583185479044914, 0.0026552355848252773, -0.05024924501776695, -0.02054542861878872, -0.027631860226392746, -0.0394890122115612, -0.008888510055840015, -0.01278865896165371, -0.05697003751993179, 0.008509811945259571, 0.02449781261384487, 0.03719070926308632, 0.021764226257801056, 0.037852343171834946, 0.031532011926174164, 0.002173157874494791, -0.03301197662949562, -0.017367852851748466, 0.02599519118666649, -0.014390505850315094, -0.05829330161213875, -0.05766649171710014, -0.028032323345541954, 0.019622625783085823, 0.027649272233247757, -0.03464864566922188, -0.015069549903273582, 0.02000567689538002, 0.02211245335638523, -0.03339502960443497, -0.017472321167588234, 0.015322014689445496, 0.05738791078329086, 0.030156511813402176, -0.01446885708719492, 0.0679740309715271, -0.023871002718806267, 0.05637805163860321, -0.030278390273451805, 0.05282612890005112, -0.003105754964053631, -0.009358617477118969, 0.004783777054399252, 0.016741042956709862, -0.06055678054690361, -0.0187346450984478, 0.0014299096073955297, 0.03315126895904541, -0.03356914222240448, 0.007099490612745285, -0.05206002667546272, -0.021450821310281754, -0.053766343742609024, 0.017237266525626183, -0.03889702260494232, 0.019657447934150696, 0.018125247210264206, -0.07869943976402283, 0.04892598092556, 0.019135108217597008, -0.03914078325033188, -0.016262229532003403, -0.04742860049009323, 0.09130527824163437, -0.029338177293539047, 0.04408561438322067, -0.00887980405241251, 0.06052196025848389, 0.02573402039706707, -0.03332538157701492, 0.022878553718328476, -0.07319744676351547, 0.003591097192838788, 0.004553075879812241, -0.014764850959181786, -0.005084122996777296, 0.06362118571996689, -0.045513350516557693, -0.012605839408934116, 0.010925641283392906, -0.00951531995087862, 0.001707403571344912, 0.019901208579540253, 0.026256361976265907, -0.0178814884275198, -0.007848179899156094, 0.0363897867500782, -0.038792554289102554, 0.04836881533265114, 0.017150210216641426, -0.03384772315621376, -0.017515849322080612, -0.00587634090334177, 0.04659285396337509, -0.012579722329974174, 0.007382425479590893, -0.03480535000562668, -0.03428300842642784, 0.037399645894765854, 0.025002742186188698, -0.04910009354352951, -0.02016237936913967, 0.02030166983604431, 0.029198884963989258, -0.03820056840777397, -0.0058589293621480465, 0.04906526952981949, 0.012144437991082668, -0.0034343949519097805, -0.020057911053299904, -0.05477620288729668, -0.0433543361723423, 0.007095137611031532, 0.04882151260972023, 0.02613448165357113, 0.019779328256845474, -0.02307008020579815, -0.02237362414598465, -0.012884421274065971, -0.013171709142625332, -0.007896061055362225, -0.009985426440834999, 0.048751864582300186, 0.07145630568265915, -0.011343514546751976, 0.04589639976620674, 0.0035040404181927443, 0.018299361690878868, 0.04822952300310135, -0.02112000435590744, -0.030696263536810875, -0.005506349261850119, 0.07640113681554794, 0.01899581588804722, 0.024654515087604523, 0.04224000871181488, -0.035449571907520294, 0.010864701122045517, -0.03257669135928154, 0.07626184821128845, -0.02435852214694023, 0.017472321167588234, 0.01568765379488468, -0.03060920722782612, -0.023801356554031372, -0.03621567040681839, 0.0066772643476724625, -0.0637952983379364, -0.04589639976620674, -0.006546678952872753, 0.009698138572275639, 0.09165351092815399, -0.027179164811968803, -0.0187346450984478, 0.012248906306922436, -0.039245251566171646, 0.012431725859642029, -0.01670621894299984, -0.01426862645894289, 0.020615074783563614, -0.02406252734363079, 0.037852343171834946, -0.019796740263700485, 0.005040594842284918, -0.06839190423488617, -0.046906258910894394, -0.009114857763051987, 0.0017541965935379267, 0.019222164526581764, 0.04544370248913765, -0.016201289370656013, -0.022478092461824417, -0.024550046771764755, 0.02697022818028927, -0.00447037210687995, -0.008853686973452568, -0.011500217020511627, 0.05547265708446503, 0.0394890122115612, -0.006842672824859619, 0.03438747674226761, -0.0020218966528773308, 0.032228466123342514, 0.005597759038209915, -0.04074263200163841, -0.00901038944721222, 0.04530441388487816, -0.033360205590724945, 0.004392020870000124, -0.0171850323677063, -0.007225723005831242, -0.018299361690878868, -0.007291015703231096, -0.009672021493315697, -0.022060219198465347, -0.016540812328457832, 0.037817519158124924, 0.011491511017084122, 0.0057283444330096245, -0.023557597771286964, -0.0447472482919693, 0.055019963532686234, -0.0495527908205986, -0.010855996049940586, -0.016775865107774734, -0.047324132174253464, 0.010028955526649952, 0.046244628727436066, 0.009175797924399376, -0.02925111912190914, 0.04899562522768974, 0.009393439628183842, -0.023609831929206848, -0.019413689151406288, 0.041891783475875854, -0.03163648024201393, 0.03229811042547226, -0.006559737492352724, 0.015400365926325321, -0.004426843486726284, 0.09248925745487213, -0.0089407442137599, -0.01413804106414318, -0.0634818971157074, 0.0655016154050827, 0.03677283599972725, 0.021590111777186394, 0.015156607143580914, 0.010264009237289429, 0.06093983352184296, 0.026343418285250664, -0.029686404392123222, -0.02124188467860222, -0.027039874345064163, -0.06149699538946152, 0.027805974707007408, -0.004600957501679659, -0.026813525706529617, 0.003902325639501214, 0.006820908281952143, -0.05484585091471672, -0.018125247210264206, -0.052791304886341095, -0.046244628727436066, -0.03102708049118519, -0.0023940647952258587, -0.06163628771901131, 0.05286095291376114, -0.10223962366580963, -0.010742821730673313, -0.04485171660780907, 0.026778703555464745, 0.06800885498523712, 0.012536194175481796, 0.017864076420664787, 0.052791304886341095, -0.01300630159676075, 0.027666684240102768, 0.06915800273418427, -0.03496205061674118, 0.025542495772242546, -0.025525083765387535, -0.03537992388010025, 0.03161906823515892, 0.021207062527537346, -0.036598723381757736, 0.01929181069135666, 0.009445673786103725, 0.006477033719420433, 0.04951796680688858, 0.033621374517679214, 0.039210427552461624, 0.01861276663839817, 0.021729402244091034, -0.08225136250257492, -0.0059590451419353485, -0.024706749245524406, 0.05146804079413414, 0.027370691299438477, -0.07472964376211166, -0.016340579837560654, 0.025229090824723244, 0.003684683470055461, -0.06184522435069084, 0.019378867000341415, -0.02827608212828636, -0.04136944189667702, -0.06779991835355759, 0.0202842578291893, -0.030139099806547165, -0.007230076007544994, -0.0811370313167572, 0.037295177578926086, 0.04150873050093651, -0.005515054799616337, -0.016262229532003403, 0.03931489586830139, 0.02994757518172264, -0.048612575978040695, 0.013180415146052837, -0.016871627420186996, -0.018090425059199333, 0.024515224620699883, 0.014016161672770977, -0.06880977749824524, 0.0015365543076768517, 0.053069889545440674, 0.00755653902888298, -0.02179904840886593, 0.07361532002687454, 0.04154355451464653, 0.028902892023324966, -0.005702227354049683, -0.0034409239888191223, 0.010742821730673313, 0.03271598368883133, 0.04098638892173767, -0.016122939065098763, 0.018821703270077705, -0.014773556031286716, 0.0388622023165226, -0.047184839844703674, 0.03527545556426048, -0.0315842442214489, 0.04349362850189209, 0.05300024151802063, -0.017724785953760147, 0.029999809339642525, 0.005219061393290758, -0.027509981766343117, 0.020945891737937927, -0.005358352325856686, 0.03983723744750023, -0.023853590711951256, -0.013842047192156315, -0.055298544466495514, -0.006685970351099968, -0.0015985823702067137, 0.005253884010016918, -0.011561157181859016, -0.037399645894765854, -0.03833986073732376, -0.004313669633120298, -0.0064465636387467384, 0.019831562414765358, 0.03396960347890854, -0.04380703344941139, -0.0014875847846269608, 0.007534774951636791, -0.08148526400327682, 0.019535569474101067, 0.037678226828575134, 0.002933817682787776, 0.00821381900459528, -0.031653888523578644, 0.06313366442918777, 0.027475159615278244, 0.010264009237289429, -0.014860613271594048, 0.01706315390765667, -0.011648213490843773, -0.029164062812924385, 0.04377220943570137, 0.02138117514550686, 0.013345823623239994, -0.006298567168414593, -0.03593708947300911, -0.0696803480386734, -0.04297128692269325, 0.0268657598644495, 0.0492393858730793, -0.05206002667546272, 0.03837468475103378, -0.04001135379076004, -0.045408882200717926, 0.02334866113960743, 0.03677283599972725, -0.04927420616149902, 0.047533068805933, 0.06306402385234833, 0.005488937720656395, -0.013128180988132954, -0.050144776701927185, -0.045791931450366974, 0.004431196488440037, 0.02897253818809986, 0.02435852214694023, -0.05300024151802063, 0.05414939299225807, 0.005945986602455378, -0.021607523784041405, 0.044573135673999786, -0.047637537121772766, 0.009811312891542912, -0.08636044710874557, -0.04990101605653763, 0.011230340227484703, 0.04265788197517395, 0.0659543126821518, 0.02923370897769928, 0.030278390273451805, 0.007177841849625111, 0.03022615611553192, 0.04850810766220093, -0.021729402244091034, -0.040498871356248856, 0.04575710743665695, -0.018212303519248962, -0.0013102063676342368, -0.014225098304450512, -0.047637537121772766, -0.008784041740000248, -0.01958780363202095, 0.07779404520988464, -0.01497378759086132, 0.011787504889070988, -0.014773556031286716, -0.019344042986631393, -0.006995022296905518, 0.059094224125146866, -0.03214140981435776, -0.009828723967075348, -0.016949979588389397, 0.020023087039589882, -0.011447982862591743, 0.058954935520887375 ]
24,412
okta_jwt_verifier.jwt_verifier
verify_client_id
Verify client_id match aud or one of its elements.
def verify_client_id(self, aud): """Verify client_id match aud or one of its elements.""" if isinstance(aud, str): if aud != self.client_id: raise JWTValidationException('Claim "aud" does not match Client ID.') elif isinstance(aud, list): for elem in aud: if elem == self.client_id: return raise JWTValidationException('Claim "aud" does not contain Client ID.') else: raise JWTValidationException('Claim "aud" has unsupported format.')
(self, aud)
[ 0.0017551666824147105, -0.005387037061154842, -0.04071373492479324, 0.0640137642621994, -0.04393719881772995, -0.01743122562766075, 0.051400214433670044, -0.039242155849933624, 0.04999871179461479, 0.005264405161142349, -0.03014988824725151, -0.004909649025648832, 0.016274983063340187, -0.03815598785877228, -0.01214930135756731, -0.020777320489287376, 0.035405535250902176, 0.0373501218855381, 0.04067869856953621, -0.018307166174054146, -0.02172333560883999, 0.03531793877482414, -0.02284453995525837, 0.07701273262500763, -0.06331301480531693, 0.05161044001579285, 0.0452335923910141, -0.024946797639131546, 0.05490398034453392, -0.029939662665128708, 0.024000782519578934, -0.007292208727449179, 0.1012587770819664, 0.03903193026781082, 0.012368286028504372, -0.039627570658922195, -0.009355049580335617, -0.032147035002708435, -0.11569428443908691, 0.015810733661055565, -0.013585844077169895, 0.04551389068365097, 0.08577214181423187, -0.011387232691049576, 0.00939884688705206, 0.0850713849067688, 0.06383857876062393, 0.024841684848070145, -0.022984690964221954, 0.00769514124840498, 0.02419348992407322, -0.05111991614103317, -0.034284330904483795, -0.018464835360646248, -0.02790747955441475, -0.014163965359330177, 0.015407801605761051, 0.02279198355972767, -0.016415134072303772, 0.0010626259027048945, -0.04631975665688515, -0.08198807388544083, 0.04071373492479324, -0.02035686746239662, 0.029098758473992348, 0.01913055032491684, 0.008001720532774925, -0.0038081533275544643, -0.0212678462266922, -0.033723726868629456, -0.02340514212846756, -0.04032832011580467, -0.03661433234810829, 0.0005814058240503073, 0.015285169705748558, -0.03526538237929344, -0.011352194473147392, 0.05171555280685425, -0.012990204617381096, -0.021022582426667213, 0.08584221452474594, -0.03671944513916969, 0.004362185951322317, 0.042956143617630005, 0.002012474462389946, 0.04442772641777992, -0.03244485333561897, -0.0374552346765995, -0.024613941088318825, 0.04943810775876045, 0.013051520101726055, 0.033215682953596115, 0.006284876260906458, 0.03931222856044769, 0.016599081456661224, 0.03910200297832489, 0.007949164137244225, 0.01715092360973358, 0.002724176272749901, 0.050489235669374466, -0.007143298629671335, 0.012158060446381569, -0.006280496716499329, -0.021197771653532982, -0.002971629612147808, 0.016931938007473946, 0.010563847608864307, -0.03857643902301788, 0.05213600769639015, 0.04446276277303696, -0.0038037735503166914, -0.06082534044981003, 0.0068235802464187145, 0.0021394859068095684, 0.0027066576294600964, -0.0005710039986297488, 0.0481417141854763, -0.00745425745844841, -0.022581757977604866, -0.006718466989696026, 0.05434337630867958, -0.02014664188027382, 0.004861472174525261, 0.03742019832134247, 0.07862445712089539, -0.021390479058027267, -0.06716715544462204, 0.018464835360646248, -0.01327926479279995, -0.02806514874100685, -0.01319167111068964, 0.01105437520891428, 0.014566898345947266, -0.015539192594587803, 0.027767328545451164, 0.01956852152943611, 0.023387623950839043, 0.01750130020081997, -0.025297174230217934, -0.04050350934267044, -0.023212434723973274, 0.06499481946229935, 0.030395152047276497, -0.013156632892787457, -0.024824166670441628, 0.011939074844121933, -0.07806386053562164, -0.017203480005264282, 0.015311447903513908, 0.01709836721420288, -0.014672011137008667, 0.032041918486356735, -0.0009038615971803665, 0.0038125331047922373, -0.03777057304978371, -0.0984557643532753, -0.025227099657058716, -0.04947314411401749, 0.010555088520050049, -0.03021996282041073, 0.02172333560883999, 0.0033285757526755333, 0.033495981246232986, -0.016423892229795456, 0.015810733661055565, 0.04849209263920784, -0.04355178400874138, 0.00995944906026125, -0.019813785329461098, 0.005470251198858023, -0.01479464303702116, -0.005115495063364506, -0.0030986410565674305, 0.0028314790688455105, -0.03307553008198738, -0.02307228557765484, 0.004681904334574938, 0.020672205835580826, -0.016450170427560806, -0.01671295426785946, -0.021232808008790016, 0.0670270025730133, 0.03941734507679939, 0.050033748149871826, 0.03466974198818207, 0.04386712238192558, 0.00872875191271305, 0.016450170427560806, 0.046214643865823746, -0.0212678462266922, -0.027644697576761246, 0.0427459180355072, -0.020777320489287376, 0.001561364741064608, -0.010485013015568256, -0.04642486944794655, 0.05900338292121887, -0.012753700837492943, -0.042430579662323, -0.025104468688368797, 0.008198807016015053, -0.058828193694353104, -0.04660005867481232, -0.029273947700858116, 0.010528810322284698, 0.017702767625451088, -0.0029278327710926533, 0.05350247398018837, 0.01110693160444498, -0.02447379007935524, -0.05287179723381996, -0.010301065631210804, 0.012201857753098011, 0.01958603970706463, 0.04449779912829399, -0.018464835360646248, 0.013559565879404545, -0.02266935259103775, 0.016783028841018677, -0.026120560243725777, 0.06345316022634506, 0.018604986369609833, -0.006333053112030029, -0.042500656098127365, 0.02846808172762394, -0.000227470911340788, 0.028765901923179626, 0.05479886755347252, -0.0030329455621540546, 0.038506366312503815, -0.03510771319270134, 0.019936416298151016, 0.05795225501060486, -0.0014869098085910082, -0.11001818627119064, 0.025332212448120117, 0.020829876884818077, 0.0052906833589077, 0.04495329037308693, 0.04600441828370094, 0.042851030826568604, 0.012061706744134426, 0.025630032643675804, 0.047160662710666656, 0.03037763200700283, 0.061911508440971375, -0.020129123702645302, 0.039837796241045, -0.0032081338576972485, -0.004730081185698509, -0.06425902992486954, 0.009854336269199848, -0.004931547679007053, 0.02205619402229786, -0.0025183302350342274, 0.03146379813551903, -0.04158967733383179, -0.029887106269598007, -0.018534909933805466, -0.02757462114095688, -0.004822054877877235, 0.0531170591711998, 0.039522457867860794, 0.058863233774900436, -0.07343889027833939, -0.02727680094540119, 0.031761620193719864, 0.06450429558753967, 0.04271088168025017, -0.0032081338576972485, -0.027522064745426178, 0.014137687161564827, 0.022827021777629852, -0.014540620148181915, 0.033671170473098755, 0.007138918619602919, -0.03959253057837486, 0.07694265246391296, -0.016800547018647194, 0.028871014714241028, -0.05388788878917694, -0.0013588033616542816, 0.03847132623195648, 0.034739818423986435, 0.0010429172543808818, -0.05991436168551445, 0.003155577229335904, -0.00317966565489769, -0.036929670721292496, -0.03165650740265846, -0.016677916049957275, -0.046389833092689514, 0.02335258573293686, -0.020619649440050125, -0.04155464097857475, 0.02328251115977764, 0.04982352256774902, -0.03678952157497406, -0.004263642709702253, 0.03370620682835579, -0.027136651799082756, 0.044918254017829895, -0.024631459265947342, -0.09621335566043854, -0.000880868115928024, -0.022459127008914948, -0.021478071808815002, -0.03162146732211113, -0.039522457867860794, -0.002303724642843008, -0.05998443812131882, 0.023264991119503975, -0.08458086103200912, -0.026733718812465668, 0.03640410676598549, 0.0009536807192489505, -0.025700107216835022, -0.008750650100409985, -0.009363808669149876, 0.028958607465028763, 0.01928821951150894, -0.02345769852399826, 0.029974699020385742, 0.02492927946150303, 0.026225673034787178, -0.011965353973209858, 0.04656502231955528, 0.009784260764718056, -0.03240981698036194, -0.0010571512393653393, -0.05287179723381996, -0.016038479283452034, -0.03037763200700283, -0.05185570567846298, 0.0936906486749649, -0.02981702983379364, -0.010782833211123943, -0.014715808443725109, 0.0014770554844290018, 0.006389989517629147, 0.018710099160671234, -0.09719441086053848, 0.07883469015359879, 0.04257073253393173, -0.05248638242483139, -0.025051912292838097, -0.020777320489287376, -0.0033066770993173122, 0.0099857272580266, 0.03544057160615921, -0.027049057185649872, 0.029063720256090164, 0.03573838993906975, 0.009346290491521358, 0.0670270025730133, 0.037209972739219666, 0.007384182419627905, -0.010774074122309685, 0.0008381659863516688, 0.032707635313272476, 0.069199338555336, -0.05087465047836304, 0.027154169976711273, -0.06047496572136879, -0.05490398034453392, 0.055604733526706696, 0.0007297683041542768, -0.10497276484966278, 0.004611829295754433, 0.02379055693745613, -0.048176754266023636, 0.016783028841018677, -0.015197576023638248, -0.049368031322956085, 0.015574229881167412, 0.003626395482569933, -0.053082022815942764, 0.025805220007896423, -0.040363360196352005, 0.035352978855371475, -0.024543866515159607, 0.0005124254385009408, 0.04330652207136154, 0.02386063151061535, -0.05388788878917694, -0.04978848248720169, -0.03218207135796547, -0.02648845501244068, -0.07547107338905334, 0.02958928607404232, 0.007476156111806631, -0.051960818469524384, 0.010940502397716045, -0.04737088829278946, -0.07063587754964828, -0.02897612750530243, -0.025227099657058716, 0.017256036400794983, 0.04201012849807739, -0.04127433896064758, -0.016415134072303772, 0.003777495352551341, 0.008365236222743988, 0.01890280656516552, -0.02880093827843666, 0.04106411337852478, 0.0034030305687338114, 0.05329224839806557, -0.018972881138324738, -0.0008748460095375776, 0.007752077654004097, -0.04078381136059761, 0.040433432906866074, -0.019988972693681717, 0.02633078582584858, -0.030973272398114204, 0.03014988824725151, 0.009092267602682114, -0.036649368703365326, 0.007892227731645107, 0.0010943787638098001, 0.027837403118610382, 0.013086558319628239, 0.07067091763019562, 0.0048439535312354565, -0.006898035295307636, 0.0023825594689697027, 0.015942124649882317, -0.0047344607301056385, -0.040923960506916046, 0.010502532124519348, 0.03717493265867233, -0.00763820530846715, -0.07512069493532181, -0.006030853372067213, 0.051400214433670044, -0.05479886755347252, 0.042851030826568604, 0.022879578173160553, -0.05154036730527878, 0.004962205421179533, 0.019761228933930397, -0.036929670721292496, -0.001252595568075776, 0.045373741537332535, -0.02014664188027382, -0.032041918486356735, 0.04029328376054764, 0.046494945883750916, -0.02913379669189453, -0.00808931514620781, -0.024894241243600845, -0.06310278922319412, -0.030132368206977844, 0.02491176128387451, 0.020041529089212418, 0.012779979035258293, 0.04800156503915787, 0.015959644690155983, -0.04730081185698509, -0.004441020544618368, -0.025735145434737206, -0.008768169209361076, -0.045654043555259705, 0.02920387126505375, 0.07336881756782532, 0.013971257954835892, 0.00995944906026125, 0.03139372542500496, 0.0635933130979538, 0.04123929888010025, 0.009556516073644161, 0.01928821951150894, 0.013314303010702133, 0.05374773591756821, -0.005027900915592909, 0.04400727525353432, 0.018867768347263336, -0.055219318717718124, 0.05963405966758728, -0.014391710050404072, 0.08493123203516006, -0.025121986865997314, 0.017282314598560333, 0.045023366808891296, -0.06783286482095718, -0.06065015122294426, -0.04204516485333443, -0.05371269956231117, -0.01175512745976448, -0.029291465878486633, -0.00140260043554008, 0.018972881138324738, 0.026978980749845505, 0.0506293885409832, -0.04134441167116165, -0.003652673913165927, -0.004905269481241703, -0.016809307038784027, 0.02149559184908867, 0.022511683404445648, -0.013542047701776028, -0.04568907991051674, 0.011904037557542324, 0.019025437533855438, -0.044532839208841324, -0.048246826976537704, -0.033776283264160156, -0.0007363378535956144, 0.015364004299044609, -0.02627822943031788, 0.05069946125149727, 0.06580068171024323, 0.019393332302570343, 0.04123929888010025, 0.0020639358554035425, -0.01428659725934267, -0.027294320985674858, -0.022827021777629852, 0.014225280843675137, 0.015118741430342197, -0.04449779912829399, -0.011518623679876328, 0.02300220914185047, 0.04197509214282036, -0.000020546975065371953, -0.06008955091238022, -0.036544255912303925, 0.03381131961941719, -0.012850053608417511, -0.04600441828370094, 0.042395543307065964, 0.01279749721288681, 0.031078385189175606, -0.043061256408691406, -0.0199188981205225, 0.03365365043282509, -0.05108487606048584, 0.03403906524181366, 0.021670779213309288, 0.0012865383177995682, 0.04989359527826309, -0.005373897962272167, 0.003786254907026887, -0.03857643902301788, 0.05900338292121887, -0.05259149521589279, -0.002507380908355117, -0.05798729136586189, -0.021670779213309288, 0.02009408548474312, -0.028450561687350273, 0.039066966623067856, -0.013366859406232834, -0.011448548175394535, -0.012166819535195827, 0.05609525740146637, -0.007957923226058483, -0.02042694389820099, 0.007765216752886772, 0.021530628204345703, -0.03295289725065231, 0.027101613581180573, -0.006162244826555252, -0.007489295210689306, -0.05371269956231117, 0.06569556891918182, -0.01834220439195633, 0.026978980749845505, -0.005058559123426676, -0.029273947700858116, -0.05637555941939354, 0.009144823998212814, 0.02503439225256443, -0.09488192200660706, -0.015477877110242844, -0.05161044001579285, -0.034231774508953094, 0.0005477368249557912, 0.00253803888335824, 0.024719053879380226, 0.00814187154173851, 0.03675448149442673, -0.014873477630317211, 0.019498445093631744, 0.010108358226716518, 0.011273359879851341, -0.023983264341950417, -0.06821828335523605, -0.00469942344352603, -0.035125233232975006, -0.006735986098647118, -0.048246826976537704, 0.011474826373159885, 0.014137687161564827, 0.07056580483913422, 0.0611056424677372, 0.011282119899988174, -0.04029328376054764, 0.005619161296635866, 0.025227099657058716, 0.016721712425351143, 0.03582598641514778, 0.009407605975866318, 0.0056673381477594376, -0.007756457198411226, 0.023562811315059662, -0.0660809874534607, 0.00854918360710144, -0.029781993478536606, -0.009757982566952705, 0.06597587466239929, 0.006845478434115648, -0.007852810434997082, 0.049192845821380615, 0.013489490374922752, -0.06450429558753967, 0.03505515679717064, -0.005978296976536512, 0.04950818419456482, 0.06874384731054306, -0.013743513263761997, 0.008566702716052532, 0.005194330122321844, -0.018482353538274765, -0.03416169807314873, 0.004362185951322317, -0.04470802843570709, -0.03489748761057854, -0.0531170591711998, 0.05203089490532875, -0.0036592434626072645, 0.012166819535195827, -0.03146379813551903, 0.0029738196171820164, 0.028450561687350273, 0.043516747653484344, -0.029098758473992348, -0.001782539882697165, 0.06250714510679245, -0.03678952157497406, -0.007572509814053774, -0.042851030826568604, 0.04208020493388176, 0.021110177040100098, 0.028310412541031837, -0.08296912908554077, -0.04299118369817734, -0.0025227100122720003, -0.0035628897603601217, 0.005264405161142349, 0.09313004463911057, 0.009293733164668083, -0.009249936789274216, -0.0007648059399798512, 0.054939016699790955, 0.0725279152393341, 0.02368544414639473, -0.004686284344643354, 0.0665014386177063, 0.03808591142296791, 0.01800934597849846, 0.05374773591756821, -0.06979497522115707, -0.0034862449392676353, -0.03510771319270134, 0.04144952446222305, -0.022073712199926376, 0.04439268633723259, -0.0005263857892714441, -0.050314050167798996, 0.020567093044519424, 0.0018066281918436289, 0.024105895310640335, -0.0058556655421853065, -0.0006991103873588145, 0.01170257106423378, -0.04681028425693512, 0.034564629197120667, -0.04765118658542633, -0.030535301193594933, -0.018990399315953255, 0.01689690165221691, -0.04887750744819641, -0.0071695768274366856, -0.06138594076037407, 0.031183497980237007, 0.006232319865375757, -0.012981444597244263, -0.05788217857480049, 0.005102355964481831, -0.10062810033559799, 0.011825202964246273, 0.010064561851322651, 0.009661628864705563, -0.019936416298151016, -0.013918701559305191, 0.10160914808511734, -0.02981702983379364, 0.09376072138547897, -0.03892681747674942, 0.008373995311558247, 0.02953672967851162, 0.007204614579677582, 0.007309727370738983, 0.0036723825614899397, -0.015618027187883854, -0.03146379813551903, 0.019848821684718132, -0.05802232772111893, -0.00047027081018313766, 0.024088377133011818, 0.019953934475779533, -0.03903193026781082, 0.02694394439458847, -0.010082080028951168, -0.023019729182124138, -0.022984690964221954, 0.04123929888010025, -0.006674670148640871, -0.01851739175617695, 0.0307630468159914, -0.04838697984814644, -0.01763269118964672, -0.017212240025401115, -0.024631459265947342, 0.03773553669452667, 0.021688297390937805, 0.006262978073209524, -0.042395543307065964, 0.030692970380187035, -0.03612380474805832, -0.03568583354353905, -0.026978980749845505, -0.019428370520472527, -0.007953544147312641, -0.030955754220485687, -0.04950818419456482, -0.021425515413284302, 0.0252621378749609, 0.04758111387491226, 0.008242604322731495, 0.02104010246694088, 0.023107321932911873, -0.06008955091238022, 0.004283351358026266, 0.013480731286108494, -0.04572411999106407, 0.031043346971273422, -0.05833766981959343, 0.02790747955441475, 0.02857319451868534, -0.055604733526706696, -0.015512914396822453, 0.0080148596316576, 0.010213471949100494, -0.08163769543170929, 0.062366995960474014, 0.016117313876748085, 0.01750130020081997, -0.009337530471384525, 0.07329873740673065, 0.01277121901512146, -0.0048439535312354565, -0.03579094633460045, 0.018429797142744064, -0.023054765537381172, 0.023194916546344757 ]
24,413
okta_jwt_verifier.jwt_verifier
verify_expiration
Verify if token is not expired.
def verify_expiration(self, token, leeway=LEEWAY): """Verify if token is not expired.""" JWTUtils.verify_expiration(token, leeway)
(self, token, leeway=120)
[ 0.0815395936369896, 0.015113545581698418, 0.04738963395357132, 0.07551518827676773, 0.0035616655368357897, -0.04147030785679817, 0.001434955047443509, 0.0035441527143120766, -0.01732015796005726, 0.02253897301852703, 0.025008277967572212, -0.002769211307168007, 0.06921058148145676, -0.036916982382535934, 0.006983228959143162, -0.010700320824980736, 0.016006698831915855, -0.0021464123856276274, 0.004960500635206699, -0.012591702863574028, 0.016391979530453682, 0.03628652170300484, -0.018493516370654106, 0.0027757787611335516, -0.036636777222156525, 0.0500866062939167, -0.0015247081173583865, 0.04227589815855026, -0.020192258059978485, 0.007136465981602669, -0.043571844696998596, -0.0023467151913791895, 0.05845772475004196, 0.05845772475004196, 0.00809091329574585, -0.027425043284893036, -0.04213579371571541, -0.023764869198203087, -0.11446365714073181, -0.00417242432013154, 0.006667998153716326, 0.04563835635781288, 0.027197377756237984, 0.029981913045048714, -0.01810823380947113, 0.00619953079149127, -0.00507871201261878, 0.05996382609009743, -0.023449638858437538, -0.005398320499807596, 0.01739896647632122, -0.04062969610095024, 0.03681190311908722, -0.014448059722781181, 0.013012009672820568, 0.03427254781126976, 0.02647935226559639, 0.08160964399576187, 0.03705708310008049, 0.019439207389950752, -0.026076558977365494, -0.017276376485824585, -0.017206326127052307, -0.02789788879454136, 0.04020938649773598, 0.048895735293626785, -0.027372505515813828, 0.008029618300497532, 0.026251686736941338, 0.020805206149816513, 0.026636967435479164, -0.018160773441195488, -0.03628652170300484, 0.02672453224658966, -0.024955738335847855, -0.031050194054841995, -0.09590008854866028, 0.00286115356720984, -0.07092683762311935, 0.0262166615575552, -0.009299296885728836, -0.04514799639582634, 0.006173261906951666, 0.023327048867940903, 0.01586659625172615, 0.017784247174859047, 0.019894540309906006, -0.054429780691862106, -0.031347911804914474, 0.012311497703194618, -0.0148946363478899, 0.018265848979353905, -0.017372697591781616, -0.03341441974043846, 0.008077778853476048, -0.05211809277534485, 0.016400735825300217, 0.02397502213716507, -0.002166114281862974, 0.011251973919570446, 0.024710560217499733, 0.03532331809401512, -0.045007895678281784, 0.04539317637681961, 0.05992880091071129, 0.0429413840174675, -0.04090989753603935, -0.09674070030450821, 0.044692665338516235, -0.06567300111055374, -0.04301143437623978, -0.05176783353090286, 0.015157327987253666, -0.010472654365003109, 0.013309727422893047, 0.030174553394317627, 0.03518321365118027, 0.017442747950553894, -0.04826527461409569, -0.05159270763397217, 0.07085678726434708, -0.03206593543291092, 0.04549825191497803, -0.0490008145570755, 0.03954390063881874, -0.039158619940280914, -0.007482343353331089, -0.003738982602953911, 0.05183788761496544, -0.023186946287751198, -0.014281688258051872, 0.07390401512384415, -0.013721277937293053, 0.00007381370960501954, -0.06357146054506302, -0.0401393361389637, 0.08006852120161057, 0.05285362899303436, -0.04003426060080528, -0.03873831406235695, -0.021260539069771767, 0.05292367935180664, -0.017915593460202217, -0.04350179433822632, 0.0057091726921498775, -0.013703765347599983, -0.09905239194631577, 0.009956026449799538, 0.015840327367186546, -0.004597109742462635, 0.03558600693941116, -0.030997654423117638, 0.0317331925034523, -0.027705248445272446, 0.03392229229211807, -0.03567357361316681, -0.047249533236026764, 0.042170822620391846, -0.054745011031627655, 0.013502368703484535, 0.005315134767442942, 0.016663428395986557, -0.047529738396406174, -0.05758208408951759, 0.04602363705635071, 0.017985645681619644, -0.012688023038208485, 0.03698703274130821, -0.01070907711982727, 0.04539317637681961, 0.01518359687179327, 0.030454758554697037, -0.004995525814592838, 0.010761614888906479, -0.014132829383015633, 0.029439015313982964, 0.04157538712024689, 0.029141297563910484, -0.0037586844991892576, 0.008003349415957928, -0.054709985852241516, -0.010980525054037571, -0.023554714396595955, -0.03122532181441784, 0.020682616159319878, 0.0133797787129879, -0.022679075598716736, 0.03365959972143173, -0.0311902966350317, 0.029474040493369102, 0.005551557522267103, 0.04203071817755699, 0.025831378996372223, -0.02642681449651718, -0.036041341722011566, 0.003351511899381876, -0.01614680141210556, 0.04266117885708809, 0.024868175387382507, 0.00834484864026308, 0.003684255061671138, 0.014491841197013855, -0.006961337756365538, -0.07152227312326431, 0.04812517389655113, -0.024447867646813393, -0.0362514965236187, 0.01365998387336731, -0.038037799298763275, -0.0037827647756785154, -0.01754782535135746, -0.01952677220106125, -0.027354992926120758, 0.06931565701961517, -0.007013875991106033, -0.00536329485476017, -0.024973252788186073, -0.0035988802555948496, -0.011812383309006691, 0.011803627014160156, 0.04378199949860573, -0.05372926965355873, -0.04851045459508896, -0.03176821768283844, 0.07754667848348618, 0.03817790374159813, 0.05033178627490997, 0.04563835635781288, -0.009885975159704685, -0.05187291279435158, -0.04119010269641876, 0.009973539039492607, -0.007526125758886337, -0.022941766306757927, -0.039719030261039734, -0.04273122921586037, 0.06784458458423615, 0.0020227283239364624, 0.03290655091404915, 0.01725010760128498, 0.06276587396860123, -0.020700128749012947, 0.008769534528255463, 0.029666682705283165, 0.04812517389655113, 0.04269620403647423, 0.004969256930053234, 0.03255629539489746, -0.022679075598716736, 0.006632972974330187, -0.08238020539283752, -0.009202975779771805, 0.023852432146668434, 0.004553327802568674, 0.010752858594059944, 0.0012193286092951894, -0.023029331117868423, -0.029719220474362373, 0.04006928578019142, -0.0068825301714241505, 0.07887765020132065, 0.005757332779467106, -0.025411071255803108, 0.015568878501653671, -0.026847122237086296, 0.018283363431692123, 0.020962821319699287, -0.018528541550040245, 0.02588391676545143, -0.06490243226289749, 0.015148571692407131, -0.10521689802408218, -0.02786286361515522, -0.019701899960637093, 0.02120799943804741, -0.002491195686161518, 0.033326856791973114, -0.03534083068370819, -0.019299104809761047, 0.027144839987158775, -0.03138293698430061, -0.04984142631292343, 0.04322158917784691, -0.004675917327404022, -0.09975290298461914, 0.07607559859752655, -0.03348447382450104, 0.025130867958068848, -0.008598784916102886, 0.00274950941093266, -0.02845829911530018, -0.028020478785037994, 0.04090989753603935, 0.022171204909682274, 0.009903487749397755, -0.0014218203723430634, 0.00869948323816061, -0.021383127197623253, 0.020174745470285416, 0.013134599663317204, 0.02059505134820938, 0.061960283666849136, -0.06111966818571091, -0.06977099180221558, 0.05292367935180664, -0.010209961794316769, -0.02954409271478653, 0.03957892581820488, -0.002858964493498206, 0.009544475935399532, 0.011505909264087677, -0.0042096390388906, -0.04150533303618431, -0.0662684366106987, 0.07509488612413406, 0.02089276909828186, -0.01169854961335659, -0.012425331398844719, 0.011602229438722134, 0.024920713156461716, 0.029053734615445137, 0.04458758607506752, 0.004305959679186344, 0.014588162302970886, 0.034114934504032135, -0.08616296947002411, 0.027792813256382942, 0.009386860765516758, 0.0067292931489646435, -0.007591798435896635, -0.039964206516742706, -0.03712713345885277, 0.05789731442928314, -0.05019168183207512, -0.040244411677122116, 0.014115315861999989, -0.00991224404424429, -0.006173261906951666, 0.0038243576418608427, 0.037967748939991, -0.00932556577026844, -0.04010431095957756, -0.008283554576337337, 0.0007754886755719781, -0.03465782850980759, -0.04875563457608223, -0.003916299901902676, 0.008379874750971794, 0.050576966255903244, 0.01251289527863264, -0.07908780127763748, 0.05330896005034447, 0.05040183663368225, 0.049175940454006195, 0.06637351214885712, -0.029684195294976234, 0.010639025829732418, 0.03178573027253151, -0.03465782850980759, 0.017355185002088547, -0.020717641338706017, 0.00509622460231185, -0.03490300849080086, -0.028843579813838005, -0.009404373355209827, -0.02453543245792389, 0.05590085685253143, -0.04157538712024689, 0.03034968115389347, 0.002968419576063752, -0.023309536278247833, -0.038598209619522095, 0.00417242432013154, -0.01015742402523756, 0.07134714722633362, -0.004750346764922142, -0.006243313197046518, 0.049140915274620056, -0.018230823799967766, 0.05372926965355873, 0.03365959972143173, 0.027670223265886307, 0.02977175824344158, 0.002154074376448989, 0.04451753571629524, -0.010717833414673805, -0.03479793295264244, 0.007977080531418324, 0.024728072807192802, -0.007990214973688126, -0.029736733064055443, -0.006300229579210281, -0.025831378996372223, 0.020262308418750763, -0.05583080276846886, 0.019369157031178474, -0.07537508755922318, -0.0006939446902833879, -0.03010450303554535, -0.008353604935109615, 0.056741468608379364, 0.08062893152236938, -0.03483295813202858, -0.04105000197887421, 0.012994497083127499, 0.054219625890254974, -0.0018246148247271776, -0.008248528465628624, -0.03406239300966263, 0.024693047627806664, 0.005503397434949875, -0.063921719789505, 0.030997654423117638, -0.04490281641483307, 0.024150149896740913, 0.009956026449799538, 0.00668988935649395, 0.009010335430502892, 0.05330896005034447, -0.03241619095206261, 0.014859610237181187, -0.03919364511966705, -0.02537604607641697, 0.009842193685472012, -0.06024403125047684, 0.019684387370944023, -0.01973692514002323, 0.018195798620581627, -0.063921719789505, -0.03206593543291092, 0.029176324605941772, 0.021243026480078697, -0.024850662797689438, -0.0014459005324169993, 0.014176610857248306, 0.01838843896985054, -0.03716215863823891, -0.024395329877734184, -0.05162773281335831, -0.02873850427567959, 0.03824795410037041, 0.01717129908502102, 0.03124283440411091, 0.01642700657248497, 0.0790177509188652, 0.002909313887357712, -0.011418345384299755, 0.02369481697678566, 0.06080443784594536, -0.03444767743349075, 0.00009563630010234192, -0.013476098887622356, -0.02788037620484829, -0.025848891586065292, 0.002872099168598652, -0.005210057832300663, 0.008051509968936443, 0.015568878501653671, 0.014299200847744942, -0.0018793422495946288, -0.019912052899599075, 0.04003426060080528, 0.01945671997964382, -0.013064548373222351, 0.029193837195634842, 0.043887075036764145, -0.002626919886097312, 0.022171204909682274, 0.006812478881329298, 0.01627814769744873, 0.004719699267297983, -0.049140915274620056, -0.043081484735012054, -0.015087276697158813, 0.019631847739219666, 0.0015061007579788566, 0.03642662242054939, 0.043887075036764145, -0.003723659086972475, 0.003386537544429302, -0.01583157107234001, 0.03695200756192207, 0.028493324294686317, -0.023782381787896156, -0.010525192134082317, -0.063921719789505, -0.058667879551649094, -0.020822718739509583, -0.01689109578728676, -0.04399215057492256, -0.07796698063611984, -0.03422001004219055, 0.009833436459302902, 0.06637351214885712, 0.04872060939669609, -0.04504292085766792, -0.007893893867731094, 0.03185578063130379, 0.014772046357393265, -0.03220603987574577, -0.012784343212842941, 0.04623379185795784, -0.0031829513609409332, 0.050261735916137695, 0.043046459555625916, 0.020122205838561058, -0.0552353709936142, -0.04241599887609482, 0.007749413605779409, -0.007482343353331089, 0.015306186862289906, 0.019544284790754318, 0.04126015678048134, 0.02730245515704155, -0.007565529551357031, 0.043361689895391464, -0.012092587538063526, -0.01251289527863264, 0.04105000197887421, 0.02810804359614849, -0.022136177867650986, 0.009238001890480518, 0.04735460877418518, -0.050016555935144424, 0.0038440595380961895, -0.001927502453327179, -0.03211847320199013, -0.033589549362659454, 0.024622995406389236, 0.030209578573703766, 0.03091009147465229, -0.028843579813838005, 0.006295851431787014, -0.04633886739611626, -0.03061237372457981, 0.019859515130519867, -0.06675878912210464, -0.02337958663702011, -0.033326856791973114, -0.023537201806902885, -0.013826355338096619, -0.0546049103140831, -0.0071890042163431644, 0.014351739548146725, -0.10745853930711746, 0.03618144243955612, -0.012477869167923927, 0.04602363705635071, -0.019579309970140457, 0.044132255017757416, 0.0065760561265051365, -0.021610794588923454, 0.04598861187696457, -0.019299104809761047, -0.02313440851867199, -0.011190678924322128, 0.022118665277957916, -0.01253040786832571, 0.03283650055527687, 0.0005004829727113247, -0.010971768759191036, -0.00422277394682169, 0.01766165904700756, -0.00031468310044147074, -0.02539355866611004, -0.05681152269244194, 0.03427254781126976, -0.027249915525317192, 0.0072021386586129665, 0.050016555935144424, 0.0023095004726201296, -0.03372965008020401, 0.056146033108234406, -0.04486779123544693, -0.026111584156751633, 0.015647687017917633, -0.051172398030757904, 0.011532178148627281, 0.01491214893758297, -0.05190793797373772, 0.04686425253748894, -0.008441169746220112, -0.004093616735190153, -0.05152265727519989, -0.015236135572195053, -0.044447485357522964, -0.00015009017079137266, -0.005188166629523039, -0.05884300544857979, 0.08217005431652069, -0.07054155319929123, -0.006738049443811178, -0.004675917327404022, 0.012968228198587894, 0.017766734585165977, 0.03509565070271492, 0.004632135387510061, 0.012197664938867092, -0.016155557706952095, 0.0865132287144661, 0.08616296947002411, 0.01730264537036419, 0.009439398534595966, -0.027390018105506897, -0.011400832794606686, 0.0168385561555624, 0.024430355057120323, -0.049491170793771744, 0.011505909264087677, -0.04283630847930908, -0.004492033272981644, 0.027372505515813828, 0.015253648161888123, 0.020472463220357895, 0.03716215863823891, 0.07383396476507187, -0.06521766632795334, 0.009010335430502892, -0.01659337803721428, 0.04560333117842674, -0.0022263145074248314, 0.0064228191040456295, 0.002436468144878745, 0.0008986255270428956, 0.011041820049285889, -0.053624190390110016, 0.037792619317770004, -0.004397901706397533, -0.08700358867645264, -0.03947385028004646, -0.026584429666399956, -0.013414803892374039, 0.0029355830047279596, -0.041645437479019165, -0.02674204483628273, 0.012565433979034424, -0.009264270775020123, -0.025253456085920334, 0.01745150424540043, 0.015647687017917633, -0.06111966818571091, 0.0001971558085642755, -0.05768715962767601, 0.023204458877444267, -0.019106464460492134, 0.022066127508878708, -0.03450021520256996, 0.027390018105506897, 0.022118665277957916, 0.005376429297029972, 0.006103210616856813, 0.012915689498186111, 0.01863361895084381, 0.014054021798074245, -0.03628652170300484, -0.042766254395246506, 0.007526125758886337, 0.03376467898488045, 0.03166314214468002, -0.03768754377961159, 0.025200918316841125, -0.028213119134306908, -0.030016938224434853, 0.014807071536779404, -0.011514665558934212, -0.052468348294496536, -0.002289798576384783, 0.005048064514994621, -0.03434259817004204, 0.05492014065384865, 0.018843771889805794, -0.048930760473012924, 0.04066472128033638, 0.019018899649381638, 0.07551518827676773, -0.009229245595633984, -0.01544628944247961, -0.010087372735142708, 0.01863361895084381, 0.07761672884225845, 0.028055503964424133, 0.025761328637599945, -0.012372792698442936, -0.0059061916545033455, -0.011208191514015198, 0.049491170793771744, 0.007386023178696632, 0.060033876448869705, -0.036111392080783844, -0.05124245211482048, -0.015910377725958824, -0.06560294330120087, -0.012644241563975811, -0.021645819768309593, -0.018248336389660835, -0.01017493661493063, -0.060349106788635254, 0.13232670724391937, 0.02506081573665142, -0.02425522729754448, -0.029351452365517616, -0.007088305428624153, 0.04378199949860573, -0.015647687017917633, 0.07285324484109879, -0.049491170793771744, -0.016453275457024574, -0.029088759794831276, -0.03684692829847336, -0.05383434519171715, -0.0323636531829834, -0.0002201413590228185, 0.07845734059810638, -0.03593626618385315, 0.016251876950263977, -0.006506004836410284, -0.0429413840174675, -0.03891343995928764, 0.058948080986738205, -0.026321737095713615, -0.002736374968662858, 0.00613823626190424, 0.013589932583272457, 0.007210894953459501, -0.06987606734037399, 0.004649648442864418, -0.007758169900625944, 0.008646944537758827, 0.04868558049201965, -0.03947385028004646, 0.017346428707242012, 0.04048959165811539, 0.030787501484155655, 0.026584429666399956, -0.03308167681097984, 0.005376429297029972, -0.1126423254609108, 0.012153882533311844, 0.0033777812495827675, 0.09674070030450821, 0.034412652254104614, 0.03716215863823891, 0.018546054139733315, 0.00071528839180246, 0.08301066607236862, 0.02203110232949257, -0.06956084072589874, -0.03122532181441784, 0.012933202087879181, -0.0006862828158773482, -0.016488300636410713, -0.014307957142591476, -0.03922867029905319, 0.008104047738015652, 0.01781051605939865, 0.07719641923904419, -0.047459688037633896, 0.0025568685960024595, -0.02399253472685814, 0.0220135897397995, 0.0021267104893922806, 0.05435973033308983, -0.010402603074908257, -0.004960500635206699, -0.0507170669734478, -0.008077778853476048, 0.0033974831458181143, 0.07106693834066391 ]
24,414
okta_jwt_verifier.jwt_verifier
verify_id_token
Verify id token. Algorithm: 1. Retrieve and parse your Okta JSON Web Keys (JWK), which should be checked periodically and cached by your application. 2. Decode the access token, which is in JSON Web Token format. 3. Verify the signature used to sign the access token. 4. Verify the claims found inside the access token. 5. Verify claim "cid" matches provided client_id. 6. If claim "nonce" was provided for token generation, it should be validated too. Default claims to verify for id token: 'exp' Expiration - The time after which the token is invalid. 'iss' Issuer - The principal that issued the JWT. 'aud' Audience - The recipient that the JWT is intended for. For ID token 'aud' should match Client ID Raise an Exception if any validation is failed, return None otherwise.
def parse_token(self, token): """Parse JWT token, get headers, claims and signature. Return: tuple (headers, claims, signing_input, signature) """ return JWTUtils.parse_token(token)
(self, token, claims_to_verify=('iss', 'exp'), nonce=None)
[ 0.044428128749132156, 0.03351350128650665, 0.008863761089742184, 0.0602053627371788, 0.021252037957310677, -0.06240927800536156, -0.0011271013645455241, 0.05299890786409378, -0.02189921960234642, 0.041209712624549866, 0.042399127036333084, 0.05604241043329239, 0.030627422034740448, -0.021864237263798714, 0.018628329038619995, 0.02394571155309677, 0.050620079040527344, 0.028091171756386757, -0.013477114960551262, 0.0326739139854908, -0.028231101110577583, -0.015619810670614243, -0.030819827690720558, 0.031152164563536644, -0.03080233559012413, 0.011518079787492752, -0.003410820849239826, -0.03246401995420456, 0.015506116673350334, -0.030365051701664925, -0.031047215685248375, 0.0012342361733317375, 0.08074025064706802, 0.026184609159827232, -0.02002764120697975, -0.046876922249794006, -0.013923145830631256, 0.016197025775909424, -0.14524848759174347, 0.0314670093357563, -0.0629340186715126, -0.018156060948967934, 0.009008065797388554, -0.02130451239645481, -0.030872302129864693, 0.005518533289432526, -0.002953858347609639, 0.06485807150602341, -0.03277886286377907, 0.004727047868072987, 0.03360095992684364, 0.003500464139506221, -0.033093709498643875, -0.04274895414710045, -0.03680188208818436, -0.031939275562763214, 0.07045531272888184, 0.023333512246608734, -0.006725438870489597, 0.05513285845518112, 0.02259887382388115, 0.015112560242414474, 0.005212434101849794, 0.006340628489851952, 0.03648703917860985, -0.023333512246608734, 0.05086496099829674, -0.007022792939096689, -0.034090716391801834, -0.01690542697906494, -0.029507974162697792, -0.012969865463674068, -0.031344570219516754, 0.025257565081119537, 0.00991761777549982, -0.06167463958263397, -0.023123616352677345, -0.03249900043010712, -0.004932571668177843, -0.01673051342368126, 0.011561808176338673, -0.015549845062196255, -0.04582744091749191, 0.005006910301744938, -0.011719230562448502, 0.028790825977921486, -0.011867907829582691, -0.03795631602406502, -0.08843646198511124, 0.03557748720049858, -0.014395412988960743, 0.007101504132151604, -0.006467441096901894, 0.03165941312909126, -0.041804421693086624, -0.034562986344099045, -0.032236628234386444, 0.026674367487430573, -0.06464817374944687, 0.0016048349207267165, -0.030085189267992973, 0.06867119669914246, -0.13979117572307587, 0.035857345908880234, -0.009375385008752346, -0.00021454281522892416, -0.031432025134563446, -0.035140201449394226, 0.05142468214035034, -0.02259887382388115, -0.05156461521983147, -0.04051005840301514, -0.004464677069336176, 0.034283123910427094, 0.054223306477069855, -0.03823617473244667, 0.037886347621679306, -0.0022388978395611048, -0.022144097834825516, 0.009261690080165863, 0.04582744091749191, -0.004573998041450977, 0.036906830966472626, -0.03463295102119446, -0.01529621984809637, -0.006393102928996086, 0.06884610652923584, -0.0645432248711586, 0.04152455925941467, -0.01632821187376976, -0.004020832944661379, 0.07871124893426895, 0.02405066043138504, -0.01731647551059723, -0.051774512976408005, -0.07885117828845978, 0.03431810438632965, 0.0086494917050004, -0.01740393228828907, -0.037886347621679306, 0.006707947701215744, 0.0375715047121048, -0.01808609627187252, -0.05684701353311539, -0.07703207433223724, -0.014509106986224651, 0.0057065654546022415, 0.018051113933324814, 0.03335607796907425, -0.03865597024559975, 0.015488624572753906, -0.02434801310300827, 0.07647234946489334, -0.03321614861488342, 0.029315568506717682, -0.039565522223711014, 0.0082078343257308, -0.014001856558024883, -0.012567562982439995, -0.01799863949418068, 0.023036159574985504, 0.001763350679539144, -0.0027855036314576864, -0.006559270899742842, 0.04477795585989952, 0.01779748871922493, 0.09354394674301147, 0.012550071813166142, -0.02984030917286873, -0.07178466022014618, 0.011229472234845161, 0.04397335276007652, 0.002689301036298275, 0.012357666157186031, -0.0574767030775547, 0.0002042939595412463, -0.023036159574985504, 0.07920101284980774, -0.04428819566965103, -0.01739518716931343, 0.037676453590393066, 0.002440048847347498, 0.01798114739358425, -0.017911182716488838, -0.02102464996278286, 0.044428128749132156, 0.006974691525101662, 0.013809451833367348, 0.018838226795196533, 0.008098512887954712, 0.03295377641916275, -0.039565522223711014, -0.03228910267353058, -0.02454041875898838, -0.037886347621679306, 0.006266290321946144, 0.03479037433862686, 0.021759288385510445, -0.0027964357286691666, -0.052649080753326416, 0.009252944961190224, -0.0005821352824568748, -0.0708051398396492, -0.004123595077544451, -0.01680047996342182, -0.015864690765738487, -0.010564799420535564, 0.06443827599287033, -0.05408337339758873, 0.01691417396068573, 0.010879644192755222, -0.039145730435848236, -0.007411976344883442, 0.05082997679710388, 0.018925683572888374, -0.026569420471787453, -0.019415441900491714, -0.01847090758383274, 0.04838118329644203, -0.05905092880129814, 0.08318904787302017, 0.003026010235771537, 0.02217908203601837, -0.01135191135108471, 0.06226934492588043, 0.04348359256982803, 0.010258699767291546, -0.02210911549627781, -0.042399127036333084, -0.033968277275562286, 0.0004315453697927296, -0.048066336661577225, 0.0389358326792717, -0.010940863750874996, -0.0596456378698349, -0.013625792227685452, 0.06874115765094757, -0.022074133157730103, 0.01927551068365574, -0.0044143893755972385, 0.03785136714577675, -0.006965945474803448, -0.008470205590128899, 0.008413358591496944, -0.007049029693007469, 0.03599727898836136, 0.00944534968584776, -0.002907943446189165, -0.009611518122255802, -0.011719230562448502, -0.07871124893426895, 0.04617726802825928, 0.011736721731722355, 0.040440090000629425, -0.01945042423903942, -0.04950062930583954, 0.01985272578895092, 0.00002073686118819751, 0.07098005712032318, -0.0007854726864024997, 0.03507023677229881, -0.032708898186683655, 0.04789142310619354, -0.03069738857448101, -0.025065161287784576, -0.021147089079022408, -0.01363453734666109, 0.054922960698604584, 0.02413811720907688, -0.04554757848381996, 0.03648703917860985, -0.07087510824203491, 0.022458944469690323, -0.06391353905200958, 0.04127967730164528, -0.044043317437171936, 0.00405800249427557, 0.02786378189921379, -0.006515542510896921, 0.04379843920469284, -0.05184447765350342, -0.0708051398396492, 0.006345001515001059, 0.02259887382388115, -0.02560739405453205, 0.05027025192975998, 0.011518079787492752, 0.0014310142723843455, -0.021654339507222176, 0.00408423924818635, 0.006546152289956808, -0.022563891485333443, -0.009515315294265747, 0.01026744581758976, 0.013031085021793842, 0.014045585878193378, -0.02777632512152195, -0.03879589959979057, 0.04362352564930916, -0.009629009291529655, 0.02394571155309677, 0.10753706097602844, 0.0013610486639663577, -0.057161860167980194, 0.0500953383743763, 0.046282216906547546, -0.0019699677359312773, 0.05152963101863861, -0.03900579735636711, 0.0093928761780262, 0.01946791633963585, 0.05870110169053078, -0.00491508049890399, -0.016371939331293106, -0.007407603319734335, -0.029682887718081474, -0.00667296489700675, 0.05947072431445122, 0.040125247091054916, 0.012926136143505573, 0.03746655583381653, -0.022563891485333443, 0.04782145842909813, 0.03176436200737953, 0.08067028969526291, -0.06041525676846504, -0.07374369353055954, -0.02611464448273182, -0.0301026813685894, 0.09928112477064133, -0.03715170919895172, 0.02238897792994976, 0.0009434418170712888, 0.010687238536775112, -0.03795631602406502, 0.037676453590393066, -0.03883088380098343, 0.0002280713088111952, -0.03932064399123192, -0.024715332314372063, -0.02424306608736515, -0.106767438352108, 0.047366682440042496, 0.041209712624549866, -0.07003552466630936, -0.0708051398396492, 0.020062623545527458, -0.01749138906598091, 0.015488624572753906, -0.047961387783288956, -0.04481294006109238, 0.003417380154132843, 0.07668224722146988, 0.07290410995483398, 0.04505781829357147, -0.026674367487430573, -0.055692583322525024, 0.008666982874274254, 0.003082857234403491, 0.018995648249983788, 0.044148266315460205, 0.028283575549721718, -0.0022913720458745956, -0.012829934246838093, -0.0059995464980602264, -0.048066336661577225, -0.021479425951838493, 0.030837319791316986, 0.033688414841890335, -0.008247190155088902, -0.01799863949418068, 0.011500588618218899, -0.05027025192975998, -0.018138570711016655, -0.009550298564136028, 0.03071487881243229, -0.0219167098402977, 0.05222928896546364, -0.08458835631608963, -0.03022512048482895, 0.002899197628721595, 0.03012017160654068, 0.005116231273859739, 0.033408552408218384, 0.0045084054581820965, 0.02464536763727665, -0.07864128798246384, -0.03372339904308319, 0.019782761111855507, 0.024120625108480453, -0.0653478279709816, -0.008553288877010345, -0.021759288385510445, 0.024085642769932747, -0.07003552466630936, 0.031432025134563446, -0.04642214626073837, 0.00425696698948741, -0.02455791085958481, 0.004167323466390371, 0.05457313358783722, -0.009095522575080395, -0.005912089720368385, -0.03538507968187332, -0.002897011348977685, 0.013179761357605457, -0.022931210696697235, -0.009690229780972004, -0.03659198433160782, -0.0035135827492922544, 0.03631212189793587, -0.07458328455686569, 0.026831790804862976, -0.051984407007694244, 0.035437554121017456, 0.027601411566138268, 0.048451147973537445, 0.05331375449895859, 0.03480786457657814, 0.012506343424320221, -0.004348796792328358, -0.030190138146281242, -0.02658691070973873, -0.0005247416556812823, -0.0920746698975563, 0.04173445329070091, -0.019013140350580215, 0.01290864497423172, -0.02209162525832653, -0.04705183580517769, 0.02560739405453205, 0.02504766918718815, -0.015068831853568554, -0.027409005910158157, -0.006637982092797756, 0.0211121067404747, -0.03508772701025009, 0.025100143626332283, 0.004906334448605776, -0.01349460706114769, 0.04225919768214226, 0.061849553138017654, -0.020674820989370346, -0.0036972423549741507, 0.04603733494877815, -0.011255708523094654, -0.008973082527518272, 0.05023526772856712, 0.010599781759083271, -0.04974551126360893, 0.01163177378475666, -0.014080568216741085, 0.010442359372973442, -0.0465620793402195, 0.0359622947871685, -0.014299210160970688, 0.05072502791881561, 0.04208428040146828, 0.05229925364255905, -0.004504032898694277, 0.03335607796907425, 0.02658691070973873, 0.03559497743844986, -0.005938326474279165, 0.004788267891854048, 0.02718161791563034, 0.009559043683111668, 0.033496011048555374, -0.011378148570656776, -0.02863340452313423, 0.04516276717185974, -0.0058421241119503975, -0.0729740783572197, 0.012838679365813732, 0.019118087366223335, 0.022563891485333443, 0.06954576075077057, -0.010145005770027637, 0.00034846126800403, 0.011098286136984825, -0.02795124053955078, -0.005474804900586605, -0.040719952434301376, 0.01074845902621746, 0.010416122153401375, 0.007984818890690804, -0.00923545379191637, -0.0647881031036377, 0.029070688411593437, -0.019817743450403214, -0.04673699289560318, 0.04537266492843628, 0.01350335218012333, -0.003144077258184552, 0.030767353251576424, 0.039740435779094696, 0.047751493752002716, -0.013870671391487122, 0.010827169753611088, 0.015672285109758377, 0.006340628489851952, -0.031222129240632057, 0.007180215325206518, -0.017089087516069412, -0.014500361867249012, 0.024767806753516197, -0.05859615281224251, -0.04799637198448181, 0.006690456531941891, -0.03209669888019562, -0.027496464550495148, 0.06006542965769768, -0.01566353812813759, -0.0033583466429263353, -0.005592871457338333, 0.007556280121207237, -0.01255881693214178, 0.05243918299674988, -0.025782307609915733, 0.024085642769932747, -0.02912316285073757, -0.03372339904308319, 0.03482535481452942, -0.05761663615703583, -0.00040667480789124966, 0.022808771580457687, -0.030924776569008827, -0.0049194530583918095, 0.02160186506807804, -0.02963041327893734, -0.006821641698479652, 0.015794724225997925, -0.036417070776224136, 0.022826261818408966, -0.02308863401412964, 0.0030150781385600567, -0.014404159039258957, -0.0013020152691751719, -0.012611291371285915, 0.012366412207484245, -0.006152596324682236, -0.04355355724692345, -0.02170681394636631, 0.028196118772029877, -0.058036427944898605, 0.07759179919958115, -0.06191951781511307, -0.027793817222118378, -0.02943800762295723, 0.012655019760131836, -0.01267251092940569, -0.03493030369281769, -0.013039830140769482, 0.010652256198227406, 0.0030019597616046667, 0.0004883923684246838, 0.031939275562763214, -0.05495794489979744, 0.014089314267039299, 0.005614736117422581, 0.007337637711316347, -0.0020727296359837055, -0.0358048751950264, 0.031519483774900436, -0.06618741899728775, -0.025782307609915733, -0.03207920864224434, 0.03578738123178482, -0.08025049418210983, 0.011133269406855106, 0.02063983865082264, -0.002031187526881695, 0.03802628070116043, -0.0032533984631299973, 0.011133269406855106, 0.034178175032138824, 0.006441203877329826, 0.05387347936630249, 0.0031834328547120094, 0.028615912422537804, 0.056567151099443436, 0.03851603716611862, 0.01859334670007229, -0.038271158933639526, -0.01182417944073677, -0.008640746586024761, -0.06230432912707329, -0.040440090000629425, -0.014640293084084988, 0.03351350128650665, -0.06846129894256592, -0.028528455644845963, 0.04750661179423332, 0.03430061414837837, -0.02326354756951332, 0.0021262969821691513, 0.014596563763916492, 0.028423506766557693, -0.03020762838423252, -0.015514861792325974, 0.07311400771141052, -0.013415895402431488, 0.021356986835598946, -0.007648109924048185, 0.0362071767449379, -0.019625337794423103, -0.037711434066295624, -0.00035447394475340843, -0.008863761089742184, 0.002365710446611047, -0.004368474241346121, 0.00967273861169815, -0.022721314802765846, 0.0036338360514491796, 0.05250915139913559, 0.0844484269618988, -0.02677931636571884, -0.02698921412229538, 0.056357257068157196, 0.014893917366862297, 0.052054375410079956, 0.017036613076925278, -0.052474167197942734, 0.029210619628429413, 0.03354848548769951, -0.03841109201312065, 0.02074478752911091, -0.05093492567539215, -0.039145730435848236, -0.003935562446713448, 0.008933726698160172, -0.04537266492843628, 0.04176943749189377, -0.058141376823186874, -0.0076087540946900845, 0.0602053627371788, -0.009156742133200169, -0.01158804539591074, 0.025310039520263672, 0.04897588863968849, -0.015042594633996487, -0.0093928761780262, -0.04047507420182228, 0.006773540284484625, -0.0044143893755972385, -0.008352138102054596, -0.030295085161924362, 0.007779295090585947, 0.06744679808616638, 0.024190591648221016, -0.01242763176560402, 0.031554464250802994, -0.038271158933639526, 0.026132134720683098, -0.02160186506807804, -0.06328384578227997, 0.0077005838975310326, 0.011771705001592636, -0.0193454772233963, -0.012690003030002117, 0.0362071767449379, -0.015628555789589882, 0.005225552711635828, 0.06513793021440506, -0.03925067558884621, -0.04722674936056137, -0.04037012532353401, 0.036137208342552185, -0.013800705783069134, -0.02298368513584137, 0.06447325646877289, 0.005929580889642239, 0.03820119425654411, -0.0086494917050004, 0.05453814938664436, -0.003082857234403491, 0.046002354472875595, -0.04134964197874069, 0.04106978327035904, 0.037501540035009384, 0.04058002308011055, 0.009576535783708096, 0.030732370913028717, -0.0044100163504481316, -0.0330762155354023, 0.03052247315645218, 0.0850081518292427, 0.05702192708849907, -0.03144951909780502, -0.00032386399107053876, 0.04428819566965103, -0.04470799118280411, 0.0021776780486106873, -0.025170108303427696, -0.018943173810839653, 0.04037012532353401, -0.02912316285073757, 0.047961387783288956, 0.018558364361524582, 0.019572865217924118, -0.038096245378255844, -0.04138462617993355, 0.019205546006560326, 0.0001996478094952181, -0.016371939331293106, -0.020377468317747116, 0.028773335739970207, -0.023228565230965614, -0.023228565230965614, -0.04155953973531723, -0.026744334027171135, -0.004313813988119364, 0.03792133182287216, -0.006511169485747814, 0.055972445756196976, 0.006961572915315628, -0.06436831504106522, 0.03519267588853836, 0.06576762348413467, -0.004945690277963877, -0.006135104689747095, -0.017928672954440117, 0.023228565230965614, 0.08885625749826431, -0.03274387866258621, -0.015611064620316029, 0.014159279875457287, 0.023490935564041138, -0.027409005910158157, -0.022144097834825516, -0.031554464250802994, 0.04820626974105835, -0.03207920864224434, 0.03304123505949974, -0.014649038203060627, -0.031536974012851715, -0.015917163342237473, 0.02649945393204689, 0.013573317788541317, 0.05737175792455673, 0.04603733494877815, 0.0492907352745533, -0.03165941312909126, 0.03746655583381653, 0.03449301794171333, 0.02034248597919941, -0.018418433144688606, -0.025362513959407806, 0.01750888116657734, 0.040125247091054916, 0.002890452044084668, -0.012095295824110508, -0.034283123910427094, -0.05457313358783722, -0.05905092880129814, 0.08136994391679764, -0.045127782970666885, 0.0016201399266719818, -0.03288381174206734, 0.0021437883842736483, -0.03493030369281769, 0.03493030369281769, -0.041804421693086624, -0.014334193430840969, -0.054223306477069855, 0.004412203095853329, 0.01908310502767563, -0.0059601906687021255 ]
24,415
okta_jwt_verifier.jwt_verifier
verify_signature
Verify token signature using received jwk.
def verify_signature(self, token, okta_jwk): """Verify token signature using received jwk.""" JWTUtils.verify_signature(token, okta_jwk)
(self, token, okta_jwk)
[ 0.07860295474529266, -0.01456059142947197, -0.014396113343536854, 0.11800830811262131, -0.03351879119873047, -0.043110430240631104, -0.0027247003745287657, 0.03802028298377991, -0.003785147797316313, 0.060146842151880264, 0.03130267187952995, 0.011331637389957905, 0.08268892019987106, -0.08732891827821732, -0.018940888345241547, -0.03346685320138931, 0.04224475845694542, 0.01876775361597538, 0.012785964645445347, 0.0130802933126688, -0.022611333057284355, 0.018109843134880066, -0.047023262828588486, 0.046919383108615875, -0.034626852720975876, 0.0205164086073637, 0.021157005801796913, 0.006717609241604805, 0.020897304639220238, -0.013114919885993004, -0.04913550242781639, -0.03138924017548561, 0.10041786730289459, 0.04463401064276695, 0.019616112112998962, -0.03940535709261894, 0.03445371612906456, -0.02849789895117283, -0.08850622922182083, 0.015599397011101246, -0.0074101462960243225, 0.04006326571106911, 0.02726864628493786, -0.01138357724994421, 0.020689543336629868, 0.037500880658626556, -0.016075516119599342, 0.10727398842573166, -0.019841186702251434, 0.004878057632595301, -0.000098064323537983, -0.0368775948882103, -0.007271638605743647, -0.037674013525247574, -0.02112237922847271, 0.015166561119258404, 0.03351879119873047, 0.019044768065214157, -0.0019715663511306047, 0.026229839771986008, 0.019252529367804527, 0.008756265044212341, 0.03822804242372513, -0.005254624877125025, 0.0013991412706673145, 0.021711036562919617, 0.030437001958489418, -0.001856864895671606, 0.0053282068111002445, 0.028480585664510727, -0.00607701251283288, -0.0230787955224514, -0.02112237922847271, 0.0389898344874382, -0.02337312512099743, -0.035440582782030106, -0.04276416078209877, 0.0031250733882188797, -0.06603340804576874, -0.004934326279908419, 0.013132233172655106, -0.040548041462898254, 0.01108059287071228, -0.004865072667598724, -0.0156426802277565, 0.0409981906414032, 0.011565368622541428, -0.010344771668314934, 0.01610148511826992, -0.005146415904164314, -0.026108646765351295, 0.03663520887494087, -0.012275218963623047, -0.04072117805480957, 0.021157005801796913, -0.030610136687755585, 0.0220399908721447, -0.0156253669410944, -0.06309012323617935, 0.00466163968667388, 0.004432236775755882, 0.012379099614918232, -0.07527877390384674, 0.05505669489502907, 0.032254911959171295, 0.06700295954942703, -0.027770735323429108, -0.06520236283540726, 0.019875813275575638, 0.003200819483026862, -0.014958799816668034, -0.046399980783462524, 0.01215402502566576, 0.004730893764644861, 0.02493133209645748, -0.04314505681395531, 0.050001174211502075, -0.006847459822893143, -0.07202385365962982, -0.026212526485323906, 0.0851128026843071, -0.042521774768829346, 0.05668415501713753, -0.027216704562306404, 0.0029389539267867804, -0.04685012996196747, 0.0799880251288414, 0.006674325559288263, 0.041794609278440475, -0.04473789036273956, 0.015859097242355347, 0.10658144950866699, 0.007951190695166588, 0.010535219684243202, -0.08185787498950958, -0.03095640428364277, 0.050797589123249054, -0.0038241029251366854, -0.026610735803842545, -0.050416696816682816, 0.010370741598308086, 0.03014267422258854, -0.022853722795844078, -0.02849789895117283, -0.04861610010266304, 0.013980591669678688, -0.09487757086753845, -0.03086983785033226, 0.05211341008543968, -0.008717309683561325, 0.020551037043333054, -0.004213654901832342, 0.08213489502668381, -0.02295760251581669, 0.0015744396951049566, -0.05838087201118469, 0.046399980783462524, -0.020672230049967766, -0.036669835448265076, 0.003259252291172743, 0.03760476037859917, 0.011928950436413288, -0.02605670504271984, -0.03940535709261894, 0.015244470909237862, 0.04387222230434418, 0.003616341855376959, 0.03559640422463417, -0.04047878831624985, -0.009453130885958672, 0.0034973120782524347, 0.05394863337278366, -0.00861342903226614, 0.02924237586557865, 0.0204990953207016, 0.028653720393776894, 0.022853722795844078, 0.03130267187952995, -0.007678504101932049, -0.0038111177273094654, -0.04543042927980423, 0.041171327233314514, -0.007483728229999542, -0.003263580845668912, -0.028134316205978394, 0.049481771886348724, -0.029069241136312485, 0.007916564121842384, 0.014906859956681728, -0.02747640572488308, -0.018508052453398705, 0.018109843134880066, 0.01570327766239643, -0.0030926107428967953, -0.00402537127956748, 0.0041876849718391895, 0.04532654955983162, 0.04601908475160599, -0.025381481274962425, -0.011097906157374382, 0.06215519830584526, -0.060042958706617355, -0.057584453374147415, 0.017512530088424683, 0.01970267854630947, -0.012595517560839653, 0.017408650368452072, 0.06423281133174896, -0.040755804628133774, 0.00923671294003725, 0.04072117805480957, -0.07527877390384674, -0.04245252162218094, 0.0830351859331131, 0.019633425399661064, -0.02011820115149021, -0.017261484637856483, -0.0038782074116170406, -0.0008505220175720751, -0.018282977864146233, 0.06689907610416412, 0.04214087873697281, 0.007475071586668491, -0.031960584223270416, 0.041171327233314514, 0.022524766623973846, 0.06205131858587265, 0.021676408126950264, -0.00938387680798769, -0.06894206255674362, -0.009911935776472092, -0.014967456459999084, 0.00958298146724701, 0.02574506402015686, -0.10388055443763733, -0.0533253513276577, 0.06139340624213219, -0.03095640428364277, 0.010050443932414055, -0.013565069064497948, 0.050693709403276443, -0.05775758624076843, 0.011141189374029636, 0.00416171457618475, -0.006462235935032368, 0.02605670504271984, 0.02224775217473507, 0.01701909676194191, 0.01906208135187626, 0.0028480584733188152, -0.08351996541023254, 0.006574773229658604, 0.00011152280785609037, -0.019010141491889954, -0.009219398722052574, -0.008072384633123875, 0.012327158823609352, -0.0023611183278262615, 0.07216235995292664, 0.008643727749586105, 0.04678087681531906, 0.03680834174156189, 0.026818497106432915, 0.03601192682981491, -0.04636535421013832, 0.0018168275710195303, 0.00938387680798769, 0.02295760251581669, -0.0035622373688966036, -0.03833192586898804, 0.025294914841651917, -0.07777190953493118, -0.036773715168237686, -0.025381481274962425, 0.020274020731449127, -0.014742381870746613, -0.003417237428948283, 0.02172834984958172, 0.01703641004860401, 0.03701610490679741, 0.010370741598308086, -0.08795220404863358, 0.07133131474256516, 0.03497311845421791, -0.06236295774579048, 0.03874744847416878, 0.0015116784488782287, -0.016032231971621513, 0.006215519737452269, -0.04871997982263565, -0.04051341488957405, -0.03355341777205467, 0.033085957169532776, 0.0036812671460211277, -0.01188566628843546, 0.008704325184226036, 0.0012303353287279606, -0.020793424919247627, 0.01855999231338501, 0.0022204469423741102, 0.014266262762248516, 0.08532056212425232, -0.0035362672060728073, -0.062293704599142075, 0.05031281337141991, 0.017798202112317085, 0.031545061618089676, 0.01991043984889984, -0.03653132915496826, -0.013720889575779438, -0.039336103945970535, 0.032964762300252914, -0.00779536971822381, -0.06180892884731293, 0.04051341488957405, -0.013937307521700859, 0.01595432125031948, -0.012621487490832806, -0.0003492442483548075, 0.04034028202295303, 0.05495281144976616, -0.016075516119599342, -0.011669249273836613, -0.010059100575745106, 0.060666244477033615, -0.09404652565717697, -0.025693124160170555, -0.036254312843084335, -0.020014319568872452, 0.013097606599330902, -0.05668415501713753, 0.02318267710506916, 0.07465548813343048, -0.021174319088459015, -0.02964058518409729, 0.013106263242661953, -0.02822088450193405, 0.008704325184226036, -0.03642744943499565, 0.008267160505056381, -0.03601192682981491, -0.07451698184013367, 0.01379880029708147, 0.02666267566382885, -0.05259818583726883, -0.033778492361307144, -0.06423281133174896, -0.0440799817442894, 0.035734910517930984, -0.004821788985282183, -0.055956993252038956, 0.03919759392738342, 0.04092893749475479, 0.0543295294046402, 0.04730027914047241, 0.02626446634531021, 0.010111040435731411, 0.02676655538380146, -0.02574506402015686, 0.05626863241195679, 0.017763575538992882, 0.02932894229888916, -0.05495281144976616, -0.056337885558605194, 0.02029133401811123, -0.027978496626019478, 0.036773715168237686, -0.012855218723416328, -0.01585044153034687, 0.007760743144899607, 0.0013266413006931543, 0.00162854406516999, -0.04376833885908127, -0.008163279853761196, 0.03556177765130997, 0.016066858544945717, -0.032982077449560165, 0.020758796483278275, -0.039336103945970535, -0.02380596101284027, -0.010742980986833572, 0.036565955728292465, 0.039232224225997925, 0.021382080391049385, 0.008128653280436993, -0.02891342155635357, -0.11142920702695847, -0.012586860917508602, 0.017235515639185905, 0.018698500469326973, -0.033501479774713516, -0.0358734168112278, 0.003560073208063841, 0.02808237634599209, -0.023546259850263596, 0.0204990953207016, -0.09356175363063812, 0.0009311376488767564, -0.04238326475024223, 0.007760743144899607, 0.007384175900369883, 0.012907158583402634, -0.05938505008816719, -0.04269490763545036, -0.0007958765490911901, 0.051628634333610535, -0.029294315725564957, 0.000306231202557683, -0.030904464423656464, -0.011980890296399593, 0.003215968841686845, -0.05374087393283844, 0.01885432004928589, -0.02758028730750084, -0.0040296996012330055, 0.01885432004928589, 0.05405251681804657, 0.025052526965737343, 0.02491401880979538, 0.014699098654091358, -0.0031618643552064896, 0.013617008924484253, 0.017365366220474243, 0.02891342155635357, -0.0348692387342453, 0.020568350329995155, -0.02674924209713936, 0.0027117154095321894, -0.015348351560533047, -0.024481184780597687, 0.015798501670360565, 0.01878506690263748, -0.019633425399661064, 0.014084471389651299, -0.040028639137744904, 0.05796534940600395, -0.04030565544962883, 0.004109774250537157, 0.005306565202772617, -0.01770297810435295, 0.00607701251283288, 0.03360535949468613, -0.022836407646536827, 0.008977010846138, 0.05159400776028633, 0.008115667849779129, 0.01722685806453228, 0.006700295954942703, 0.01868118718266487, -0.02666267566382885, 0.01672476902604103, 0.0023113423958420753, -0.057065051048994064, -0.08358921855688095, -0.016906559467315674, -0.007059549447149038, 0.056649528443813324, -0.02124357409775257, -0.004756863694638014, -0.0156426802277565, 0.012526263482868671, 0.031025659292936325, 0.012405069544911385, -0.013686263002455235, 0.02328655682504177, 0.025104466825723648, -0.013461188413202763, 0.025883572176098824, 0.019771931692957878, -0.004036192316561937, 0.06180892884731293, 0.0014586561592295766, -0.04175998270511627, -0.010691040195524693, 0.04030565544962883, 0.03978625312447548, 0.03784715011715889, 0.040028639137744904, -0.036150433123111725, 0.014854919165372849, -0.0799880251288414, 0.023026855662465096, -0.0019856335129588842, 0.01764238066971302, 0.007206713315099478, 0.0017735440051183105, -0.04134446009993553, -0.07396295666694641, 0.0024433571379631758, -0.04622684791684151, -0.009851339273154736, -0.01016298122704029, 0.01855999231338501, 0.048962369561195374, 0.07029251009225845, -0.01868118718266487, 0.003510297043249011, 0.03365730121731758, -0.03753550723195076, -0.004018879029899836, -0.02501790039241314, 0.02676655538380146, 0.03601192682981491, 0.01733073964715004, 0.028757600113749504, -0.029484763741493225, -0.03293013572692871, -0.05263281241059303, 0.005219997838139534, 0.009002981707453728, -0.03815878927707672, 0.03770864009857178, 0.014906859956681728, 0.021382080391049385, 0.03621968626976013, 0.010639100335538387, -0.0543295294046402, -0.03601192682981491, 0.012734024785459042, 0.02377133257687092, -0.022542079910635948, -0.02790924161672592, 0.06523698568344116, -0.05550684407353401, 0.025970138609409332, 0.006392982322722673, -0.031233420595526695, -0.006102982442826033, 0.025814317166805267, 0.012976412661373615, -0.02439461648464203, 0.014430739916861057, 0.002891342155635357, -0.014621187932789326, -0.03597730025649071, -0.007899250835180283, -0.018300291150808334, -0.02470625936985016, 0.006401638966053724, -0.016231335699558258, -0.02183222956955433, -0.04047878831624985, -0.049897294491529465, -0.004774176981300116, -0.07025787979364395, 0.10748174786567688, -0.03291282057762146, -0.018386857584118843, -0.026108646765351295, 0.009046264924108982, 0.004397610202431679, -0.001741081359796226, 0.04366445913910866, 0.0032051480375230312, -0.004601042717695236, 0.020222080871462822, 0.05394863337278366, -0.020533723756670952, 0.02184954285621643, -0.019010141491889954, 0.009254026226699352, -0.005557609722018242, 0.0036488045006990433, -0.004631341435015202, -0.048339083790779114, -0.021918796002864838, 0.019408350810408592, -0.002729028696194291, -0.03743162751197815, 0.018542679026722908, -0.004449550528079271, -0.02624715305864811, 0.049585651606321335, -0.051420874893665314, -0.027026258409023285, -0.016179395839571953, -0.017045067623257637, 0.038920581340789795, -0.04006326571106911, -0.024948647245764732, 0.06672593951225281, 0.004116266965866089, 0.04061729833483696, 0.0037548490799963474, -0.0025861929170787334, -0.0021392900962382555, -0.016482381150126457, -0.03488655388355255, -0.061289526522159576, 0.0328262560069561, -0.07188533991575241, -0.03312058374285698, 0.007561638485640287, -0.03344953805208206, -0.008881787769496441, 0.043318189680576324, 0.02584894374012947, -0.004146565683186054, 0.022853722795844078, 0.0005708020180463791, 0.09792473912239075, -0.025866258889436722, 0.02624715305864811, -0.04418386146426201, 0.011989546939730644, 0.02255939319729805, -0.037812523543834686, -0.020170141011476517, 0.030540883541107178, -0.007704474497586489, -0.004259102512151003, 0.02860177867114544, 0.016646858304739, -0.023044168949127197, 0.050001174211502075, 0.08906026184558868, -0.04428774118423462, 0.0006487123901024461, 0.013504471629858017, 0.07264713197946548, 0.03138924017548561, -0.006929698400199413, 0.014932829886674881, 0.014430739916861057, 0.008353727869689465, -0.019460290670394897, -0.008280145935714245, -0.035908043384552, -0.04882385954260826, -0.042002372443675995, -0.003958282060921192, -0.013686263002455235, 0.04297192394733429, -0.05426027625799179, 0.02399640716612339, -0.006038057152181864, -0.045084159821271896, -0.011998203583061695, -0.018421484157443047, 0.06544475257396698, -0.05353311076760292, -0.01045730896294117, -0.07056952267885208, 0.034713417291641235, 0.011366263963282108, 0.014456710778176785, -0.015824470669031143, 0.004261266905814409, 0.004882385954260826, 0.020758796483278275, 0.008799548260867596, 0.03417670354247093, -0.02349431812763214, 0.014967456459999084, 0.010145667009055614, -0.004834773950278759, 0.028982674703001976, 0.013054323382675648, 0.01570327766239643, -0.019027454778552055, 0.032151032239198685, -0.03538864105939865, -0.01906208135187626, 0.013608352281153202, 0.00858313124626875, -0.03086983785033226, -0.000754757144022733, -0.007886265404522419, -0.012474323622882366, 0.018629245460033417, 0.009063578210771084, -0.016170740127563477, 0.02697431668639183, -0.0021771632600575686, 0.021260887384414673, 0.01714029163122177, 0.013054323382675648, -0.036669835448265076, 0.0748632550239563, 0.01595432125031948, 0.021866856142878532, 0.017564469948410988, 0.01343521848320961, -0.008470593951642513, -0.0061505944468081, 0.014586561359465122, 0.0318220779299736, 0.06984236091375351, -0.02860177867114544, -0.028445959091186523, -0.015166561119258404, -0.09501607716083527, 0.026714615523815155, 0.0032332823611795902, -0.04196774214506149, 0.04068655148148537, -0.028584465384483337, 0.10367279499769211, 0.015755217522382736, -0.0287056602537632, -0.024654317647218704, -0.01302835252135992, 0.04092893749475479, 0.0006990295369178057, 0.014828949235379696, -0.005029550287872553, -0.024359989911317825, -0.053706247359514236, -0.020343275740742683, -0.05048594996333122, -0.04504953324794769, -0.03576953709125519, 0.04574207216501236, -0.060354601591825485, 0.03528476133942604, 0.036150433123111725, -0.09279996156692505, -0.043837592005729675, 0.08504354953765869, -0.03402088209986687, -0.027649540454149246, -0.007769399788230658, -0.020170141011476517, 0.026818497106432915, -0.03261849284172058, -0.011418203823268414, 0.02553730271756649, 0.018906261771917343, -0.010085070505738258, -0.027822675183415413, 0.018404170870780945, 0.024585064500570297, -0.04636535421013832, 0.03339759632945061, -0.03206446394324303, 0.004665968008339405, -0.05304833501577377, 0.007271638605743647, 0.0042742518708109856, 0.09196891635656357, 0.03649670258164406, 0.03864356502890587, -0.00686910143122077, -0.008059399202466011, 0.12583397328853607, 0.04092893749475479, -0.0482005774974823, -0.04546505585312843, -0.005207012873142958, -0.005570594687014818, 0.04172535613179207, 0.01194626372307539, -0.06437131762504578, -0.04356057941913605, 0.00031001854222267866, 0.0840739980340004, -0.04830445721745491, 0.008336414583027363, -0.017010441049933434, -0.021884169429540634, -0.020672230049967766, 0.043941475450992584, -0.022542079910635948, 0.01656029187142849, -0.05176714435219765, 0.032860882580280304, -0.00728462403640151, 0.034713417291641235 ]
24,416
okta_jwt_verifier.jwt_verifier
IDTokenVerifier
null
class IDTokenVerifier(): def __init__(self, issuer=None, client_id='client_id_stub', audience='api://default', request_executor=RequestExecutor, max_retries=MAX_RETRIES, request_timeout=REQUEST_TIMEOUT, max_requests=MAX_REQUESTS, leeway=LEEWAY, cache_jwks=True, proxy=None): """ Args: issuer: string, full URI of the token issuer, required client_id: string, expected client_id, required audience: string, expected audience, optional request_executor: RequestExecutor class or its subclass, optional max_retries: int, number of times to retry a failed network request, optional request_timeout: int, max request timeout, optional max_requests: int, max number of concurrent requests leeway: int, amount of time to expand the window for token expiration (to work around clock skew) cache_jwks: bool, optional """ self._jwt_verifier = BaseJWTVerifier(issuer, client_id, audience, request_executor, max_retries, request_timeout, max_requests, leeway, cache_jwks, proxy) async def verify(self, token, claims_to_verify=('iss', 'exp'), nonce=None): await self._jwt_verifier.verify_id_token(token, claims_to_verify, nonce)
(issuer=None, client_id='client_id_stub', audience='api://default', request_executor=<class 'okta_jwt_verifier.request_executor.RequestExecutor'>, max_retries=1, request_timeout=30, max_requests=10, leeway=120, cache_jwks=True, proxy=None)
[ 0.059042103588581085, -0.01975482888519764, -0.00009215193858835846, 0.07635074108839035, -0.005851394962519407, -0.024035658687353134, -0.0020767124369740486, 0.008478268049657345, -0.033394183963537216, 0.014482549391686916, 0.013287252746522427, 0.024313634261488914, 0.05340845510363579, 0.00497113773599267, 0.015288679860532284, -0.007676770444959402, 0.06111765652894974, 0.03250465914607048, 0.023887405171990395, -0.031856048852205276, -0.005995015613734722, 0.06386035680770874, -0.028668591752648354, 0.03980616480112076, -0.02902069501578808, 0.05029512569308281, -0.024721331894397736, -0.02003280445933342, 0.0002604577166493982, -0.007783328182995319, -0.018161099404096603, 0.026982204988598824, 0.06697368621826172, 0.0644904300570488, -0.010479695163667202, -0.07827804237604141, -0.010961520485579967, 0.036062754690647125, -0.16723036766052246, 0.01562225166708231, -0.041548147797584534, 0.03600715845823288, 0.06949400156736374, -0.02045903354883194, 0.0017188183264806867, 0.0037271948531270027, 0.005313974805176258, 0.03876838833093643, -0.029928749427199364, -0.008320748805999756, 0.043067749589681625, -0.02774200588464737, 0.0003020093427039683, 0.011943702585995197, 0.010989317670464516, 0.06374916434288025, 0.03267144784331322, 0.018374213948845863, 0.03735997527837753, 0.01464006956666708, -0.03287529572844505, -0.019958676770329475, 0.03685961663722992, 0.02564791962504387, 0.016567369922995567, 0.02590736374258995, -0.023887405171990395, 0.04076981544494629, -0.01934712938964367, 0.016771219670772552, 0.041548147797584534, -0.04925734922289848, 0.001612260821275413, 0.010535290464758873, 0.07245907932519913, -0.03344978019595146, -0.09933008998632431, -0.02887244150042534, -0.01590949296951294, 0.025295816361904144, 0.03962084650993347, -0.054853931069374084, 0.009163942188024521, -0.05718893185257912, 0.041696399450302124, 0.005494658835232258, 0.03778620436787605, -0.08094660937786102, -0.05996869131922722, -0.04358663782477379, -0.03374628722667694, 0.015668580308556557, -0.020811136811971664, -0.022478992119431496, -0.0448097325861454, 0.00921490415930748, 0.032560255378484726, -0.011109774000942707, -0.043216001242399216, 0.013463304378092289, -0.0028770517092198133, 0.039139021188020706, -0.05870853364467621, 0.029372798278927803, 0.014473283663392067, 0.00808446854352951, -0.014751260168850422, -0.03602569177746773, 0.026111213490366936, -0.02227514423429966, -0.02197863534092903, -0.02674129232764244, -0.014176776632666588, 0.0252031572163105, 0.028112640604376793, 0.007014261092990637, 0.00906665064394474, 0.029521051794290543, -0.006120104808360338, -0.004934073891490698, 0.03684108704328537, -0.03660017251968384, -0.028668591752648354, 0.0023558465763926506, -0.0028770517092198133, -0.04243766888976097, 0.005874559748917818, 0.022052763029932976, 0.0364704504609108, -0.06886392086744308, 0.000011383262062736321, 0.06048757955431938, -0.005096226930618286, 0.07857455313205719, 0.005559519864618778, 0.034654341638088226, 0.01569637842476368, 0.041696399450302124, 0.004174272995442152, -0.011637928895652294, -0.005976484157145023, 0.03717465698719025, -0.017957249656319618, -0.04440203309059143, -0.03695227578282356, -0.03813830763101578, -0.10526024550199509, -0.015881694853305817, 0.043364256620407104, -0.02829795703291893, 0.033431246876716614, -0.04332719370722771, 0.05214829742908478, 0.05055456981062889, -0.00008042482659220695, -0.05644766241312027, 0.013277987018227577, 0.011387750506401062, 0.019977208226919174, -0.0336536280810833, -0.03267144784331322, -0.005735571496188641, 0.01847613789141178, -0.05140702798962593, 0.035766247659921646, 0.008070570416748524, 0.017670007422566414, -0.004619034472852945, -0.06708487868309021, 0.049220286309719086, 0.0013516583712771535, 0.031707797199487686, -0.06508345156908035, 0.0091176126152277, -0.02957664616405964, 0.01664149761199951, 0.03899076581001282, 0.02842767909169197, -0.0560770258307457, 0.03350537270307541, -0.014334295876324177, 0.006453676149249077, -0.024906650185585022, -0.05856027826666832, 0.005263012368232012, 0.037897396832704544, -0.002383644226938486, 0.04232648015022278, 0.024758396670222282, -0.01449181605130434, -0.022794032469391823, -0.003919461742043495, 0.0406215600669384, 0.016178203746676445, -0.04695941135287285, 0.014964374713599682, -0.003926411271095276, 0.021200302988290787, 0.0070744892582297325, -0.07379336655139923, 0.03239347040653229, 0.014584474265575409, 0.012842491269111633, -0.037119060754776, -0.00994227547198534, 0.006235928274691105, -0.02379474602639675, 0.0014605323085561395, -0.00615716865286231, 0.003433003555983305, -0.008311482146382332, -0.025147562846541405, -0.030466170981526375, 0.06560233980417252, 0.0007024685037322342, -0.020421970635652542, 0.039287276566028595, 0.010424099862575531, 0.07068002969026566, 0.008469002321362495, 0.12557102739810944, 0.0066760568879544735, -0.01931006647646427, 0.0007580637466162443, 0.046032827347517014, 0.03700787201523781, 0.04747830331325531, 0.018448341637849808, -0.01906915381550789, -0.04451322555541992, -0.004422134719789028, 0.021385621279478073, 0.025870300829410553, 0.004213653039187193, -0.10118326544761658, -0.07079122215509415, 0.05285250395536423, 0.0028006082866340876, 0.009970072656869888, 0.04080687835812569, 0.026945140212774277, 0.009289031848311424, 0.06271138787269592, 0.003518712939694524, -0.00019400408200453967, 0.05915329232811928, -0.008941561914980412, 0.024165380746126175, -0.003307914361357689, -0.0017257677391171455, -0.06293376535177231, -0.054594486951828, -0.008672851137816906, -0.017438361421227455, 0.014056320302188396, 0.023887405171990395, -0.023442642763257027, -0.051036395132541656, 0.037044934928417206, 0.011369219049811363, 0.04269711300730705, 0.024684268981218338, -0.04610695317387581, 0.03559945896267891, -0.07034645974636078, -0.03697080910205841, -0.0034144718665629625, 0.014584474265575409, 0.022478992119431496, -0.058337897062301636, 0.06560233980417252, -0.029057757928967476, 0.001089318422600627, 0.01595582254230976, -0.026593036949634552, -0.004480046685785055, -0.048553142696619034, 0.03391307219862938, -0.050665758550167084, 0.0068243108689785, -0.053853217512369156, -0.06256313621997833, 0.0357477143406868, -0.0046537816524505615, 0.004892377648502588, -0.019588042050600052, -0.02648184821009636, 0.014936577528715134, -0.018800443038344383, -0.0037202455569058657, -0.006342486012727022, -0.03317180275917053, 0.034228112548589706, -0.026593036949634552, -0.007241274695843458, -0.034821126610040665, -0.04380901902914047, -0.02913188561797142, -0.0013227025046944618, -0.011248762719333172, -0.031188907101750374, 0.06356384605169296, -0.03176338970661163, -0.05626234412193298, 0.03235640749335289, 0.011165369302034378, -0.013917331583797932, 0.013991459272801876, -0.01589096151292324, 0.008816472254693508, -0.003794372547417879, 0.004264615010470152, -0.04017679765820503, -0.10044199973344803, 0.08087248355150223, 0.00003782355634029955, -0.012972213327884674, -0.007343199569731951, 0.022664310410618782, 0.05129583925008774, 0.012416261248290539, 0.02509196661412716, 0.03463580831885338, 0.009367791004478931, -0.01134142093360424, -0.07034645974636078, -0.007885253056883812, -0.0133057851344347, -0.028946567326784134, 0.007695302367210388, -0.07097654044628143, -0.029873155057430267, 0.019254472106695175, -0.0770178884267807, 0.014408422634005547, 0.0008570926729589701, 0.025740578770637512, 0.024832522496581078, 0.04073274880647659, 0.028353553265333176, 0.012935150414705276, -0.08813692629337311, -0.0006960982573218644, 0.05363083630800247, -0.11430373042821884, -0.040843941271305084, -0.018012845888733864, -0.03302355110645294, 0.05374202877283096, 0.00906665064394474, 0.002282877918332815, 0.009228803217411041, 0.03741557151079178, 0.020977921783924103, 0.05407559871673584, -0.02690807729959488, 0.013472570106387138, 0.008858168497681618, -0.024702800437808037, 0.000027707113986252807, -0.06678836792707443, -0.004415185656398535, -0.016243064776062965, -0.0133057851344347, -0.03554386645555496, -0.04455028846859932, 0.04888671264052391, -0.06426805257797241, 0.02716752141714096, -0.002559695625677705, -0.06990169733762741, -0.02214542217552662, -0.053853217512369156, -0.0005768002010881901, 0.046848222613334656, 0.005022099707275629, -0.08472708612680435, 0.016622964292764664, -0.07327447831630707, 0.0546315498650074, -0.0009995553409680724, 0.03976910188794136, 0.03319033607840538, 0.02058875560760498, -0.01589096151292324, -0.02438776195049286, -0.04143695533275604, 0.030781209468841553, 0.015751972794532776, 0.046996477991342545, 0.015177490189671516, -0.03359803184866905, -0.0266115702688694, 0.023627961054444313, -0.03891663998365402, -0.0016620648093521595, -0.05922742187976837, 0.02677835524082184, 0.024202443659305573, -0.04214116185903549, 0.02577764168381691, 0.04688528552651405, 0.051332902163267136, 0.008246621116995811, 0.012935150414705276, 0.05222242698073387, 0.040287990123033524, -0.0011072710622102022, -0.021663596853613853, -0.0012184614315629005, -0.01947685144841671, -0.06426805257797241, 0.055965837091207504, -0.04703354090452194, -0.01029437780380249, -0.03723025321960449, -0.016539571806788445, 0.041251640766859055, 0.018846772611141205, -0.006379549391567707, 0.015223818831145763, 0.01148967444896698, 0.0026593038346618414, -0.00567071046680212, -0.04718179255723953, -0.0012427844339981675, 0.02857593260705471, 0.0266301017254591, -0.07297796756029129, -0.03474700078368187, 0.06319320946931839, 0.03055882826447487, 0.017762666568160057, -0.021793318912386894, -0.010739139281213284, 0.03880545124411583, -0.04836782440543175, 0.03836068883538246, 0.020792605355381966, -0.002306042704731226, -0.005017466843128204, 0.047552429139614105, -0.017827527597546577, -0.01490877941250801, 0.07320034503936768, -0.010683543980121613, -0.01225874200463295, 0.06645479798316956, 0.06067289412021637, -0.021904509514570236, 0.00037497805897146463, 0.0030646855011582375, -0.04214116185903549, -0.02496224455535412, -0.033801883459091187, -0.0004383913183119148, 0.023498238995671272, 0.06656599044799805, -0.01685461215674877, -0.015353540889918804, 0.032134026288986206, -0.04221528768539429, 0.005494658835232258, -0.006291523575782776, -0.02086673118174076, 0.058078452944755554, -0.004612085409462452, 0.032560255378484726, -0.02001427300274372, 0.00032054109033197165, 0.01945831999182701, 0.005957952234894037, -0.013806141912937164, 0.011054178699851036, 0.02855740115046501, 0.02607414871454239, 0.019513916224241257, -0.0068428427912294865, -0.056670039892196655, 0.021200302988290787, -0.02394299954175949, 0.06827090680599213, 0.03795298933982849, 0.006055243778973818, 0.010331441648304462, -0.05956099182367325, 0.005874559748917818, -0.030021408572793007, 0.024202443659305573, -0.020088398829102516, -0.031300097703933716, 0.053445518016815186, 0.008404141291975975, 0.02045903354883194, 0.04555100202560425, -0.03196724131703377, -0.00015636150783393532, -0.02549966610968113, 0.031726326793432236, -0.03319033607840538, 0.01830008625984192, -0.01345403864979744, 0.04673703387379646, 0.021348556503653526, 0.07635074108839035, 0.009418753907084465, -0.13669006526470184, -0.02718605287373066, -0.02677835524082184, 0.015409136191010475, 0.00010286559700034559, 0.006036712322384119, -0.0017500906251370907, -0.010989317670464516, 0.018661456182599068, 0.004461514763534069, -0.026166807860136032, 0.0065000057220458984, -0.011434080079197884, 0.026277998462319374, -0.011888107284903526, 0.013704217039048672, 0.04254886135458946, -0.035377077758312225, 0.02016252651810646, 0.027352839708328247, -0.03291235864162445, 0.0007933898596093059, 0.04525449499487877, 0.013407709077000618, -0.010646481066942215, -0.02813117206096649, -0.019958676770329475, -0.021923040971159935, -0.030077002942562103, -0.021608000621199608, -0.00455880630761385, -0.024313634261488914, 0.006208130624145269, -0.012286539189517498, 0.018355682492256165, 0.05867146700620651, -0.05166647210717201, -0.004795086104422808, -0.05826377123594284, 0.04736711084842682, -0.061970118433237076, 0.07924169301986694, -0.005295442882925272, -0.003977373242378235, 0.025388475507497787, 0.0010626791045069695, 0.059449803084135056, -0.034116920083761215, -0.06219249963760376, -0.0392502136528492, 0.04788599908351898, -0.008607990108430386, 0.02983609028160572, 0.031281568109989166, 0.020496098324656487, 0.046144016087055206, 0.0015392921632155776, -0.04540274664759636, 0.006078408565372229, -0.0064444104209542274, 0.06404567509889603, -0.025944426655769348, -0.028260894119739532, 0.010665012523531914, -0.019588042050600052, -0.004234501160681248, 0.021348556503653526, -0.0005362620577216148, -0.11015262454748154, 0.04232648015022278, -0.03763795271515846, -0.00801960751414299, 0.049516793340444565, -0.02913188561797142, 0.04088100418448448, 0.025944426655769348, 0.02929867058992386, -0.08391168713569641, -0.0034237378276884556, 0.00398895563557744, -0.019680701196193695, 0.010516759008169174, -0.012759098783135414, 0.02846474200487137, -0.07412693649530411, -0.025240221992135048, -0.05755956470966339, 0.01918034441769123, 0.037897396832704544, 0.0700128898024559, -0.0007424275972880423, 0.025277284905314445, 0.029502520337700844, 0.0003008511266671121, 0.049813300371170044, 0.008390242233872414, -0.004239134024828672, -0.016558103263378143, 0.032727040350437164, -0.0196251068264246, -0.03824949637055397, -0.05422385409474373, -0.0074729216285049915, -0.035766247659921646, -0.014380625449120998, 0.006106206215918064, 0.05711480230093002, -0.012749833054840565, 0.02116324007511139, 0.02381327748298645, -0.06775201857089996, 0.05244480445981026, -0.016456179320812225, 0.0074173263274133205, 0.04688528552651405, -0.007760163396596909, -0.018290821462869644, -0.006643626373261213, -0.010989317670464516, -0.0018045275937765837, 0.018522467464208603, -0.02296081744134426, -0.06363797187805176, -0.032300811260938644, -0.017558816820383072, 0.029521051794290543, -0.007153249345719814, -0.07068002969026566, 0.05281544104218483, 0.018198162317276, 0.02635212615132332, 0.007282971404492855, 0.01800357922911644, 0.040250927209854126, -0.05381615459918976, 0.014760525897145271, -0.052037108689546585, 0.0434383824467659, -0.04143695533275604, 0.0037804737221449614, -0.0315595418214798, -0.009636501781642437, 0.04736711084842682, 0.0074729216285049915, -0.02394299954175949, 0.08769216388463974, 0.005842129234224558, -0.02281256392598152, -0.005304708611220121, -0.024758396670222282, -0.029187479987740517, 0.0175124891102314, 0.06982757151126862, 0.008737712167203426, 0.06752964109182358, 0.02648184821009636, 0.0032893826719373465, -0.024258039891719818, -0.011573067866265774, -0.015464731492102146, 0.022775501012802124, 0.006018180400133133, 0.01988455094397068, 0.002897899830713868, 0.045884571969509125, -0.008941561914980412, -0.005179619416594505, -0.0025110498536378145, 0.005059163086116314, -0.0329308919608593, -0.0010649955365806818, -0.06193305552005768, 0.014019256457686424, 0.020811136811971664, -0.016409849748015404, -0.005559519864618778, -0.014343561604619026, -0.002266662660986185, -0.04510623961687088, -0.036637239158153534, 0.04128870368003845, 0.0043109445832669735, -0.03865719586610794, -0.06519463658332825, 0.009275132790207863, -0.03602569177746773, 0.04566219076514244, -0.02173772267997265, -0.022108357399702072, 0.01093372330069542, -0.03081827238202095, 0.019124748185276985, -0.009451184421777725, -0.016900941729545593, -0.037915926426649094, -0.0518147274851799, 0.013713482767343521, -0.046144016087055206, 0.021663596853613853, 0.030651487410068512, -0.0025179993826895952, -0.019569510594010353, 0.018402012065052986, -0.042956557124853134, 0.011776916682720184, -0.017327170819044113, 0.08205851912498474, -0.048701394349336624, 0.04569925367832184, 0.006578765343874693, -0.0406215600669384, -0.024072721600532532, 0.040584497153759, -0.009849616326391697, 0.02086673118174076, 0.022052763029932976, -0.03167073428630829, 0.014223105274140835, -0.04373489320278168, 0.01906915381550789, 0.03055882826447487, 0.03839775174856186, 0.04688528552651405, -0.026426251977682114, 0.039732035249471664, 0.02227514423429966, -0.04803425446152687, 0.0033750920556485653, -0.03754529356956482, -0.025110499933362007, -0.03500644490122795, -0.03196724131703377, -0.013231657445430756, 0.04214116185903549, 0.01599288545548916, 0.016141140833497047, 0.0005660865572281182, 0.034821126610040665, 0.03939846530556679, 0.07805566489696503, 0.015251616947352886, -0.031707797199487686, 0.05014687031507492, -0.02900216355919838, 0.03615541383624077, 0.003931044135242701, -0.07909344136714935, -0.012731300666928291, 0.007732365746051073, 0.05144409090280533, -0.018040642142295837, 0.0002577069099061191, -0.018930165097117424, 0.0026755190920084715, -0.016585901379585266, -0.002809874014928937, -0.015019970014691353, -0.07116185873746872, -0.06048757955431938, 0.03988029062747955, 0.0244989525526762, 0.049665044993162155 ]
24,417
okta_jwt_verifier.jwt_verifier
__init__
Args: issuer: string, full URI of the token issuer, required client_id: string, expected client_id, required audience: string, expected audience, optional request_executor: RequestExecutor class or its subclass, optional max_retries: int, number of times to retry a failed network request, optional request_timeout: int, max request timeout, optional max_requests: int, max number of concurrent requests leeway: int, amount of time to expand the window for token expiration (to work around clock skew) cache_jwks: bool, optional
def __init__(self, issuer=None, client_id='client_id_stub', audience='api://default', request_executor=RequestExecutor, max_retries=MAX_RETRIES, request_timeout=REQUEST_TIMEOUT, max_requests=MAX_REQUESTS, leeway=LEEWAY, cache_jwks=True, proxy=None): """ Args: issuer: string, full URI of the token issuer, required client_id: string, expected client_id, required audience: string, expected audience, optional request_executor: RequestExecutor class or its subclass, optional max_retries: int, number of times to retry a failed network request, optional request_timeout: int, max request timeout, optional max_requests: int, max number of concurrent requests leeway: int, amount of time to expand the window for token expiration (to work around clock skew) cache_jwks: bool, optional """ self._jwt_verifier = BaseJWTVerifier(issuer, client_id, audience, request_executor, max_retries, request_timeout, max_requests, leeway, cache_jwks, proxy)
(self, issuer=None, client_id='client_id_stub', audience='api://default', request_executor=<class 'okta_jwt_verifier.request_executor.RequestExecutor'>, max_retries=1, request_timeout=30, max_requests=10, leeway=120, cache_jwks=True, proxy=None)
[ 0.009520978666841984, -0.03072252683341503, 0.0012887123739346862, 0.05265645682811737, -0.010844902135431767, -0.030422061681747437, -0.018985619768500328, 0.024431545287370682, -0.05652494356036186, 0.020487943664193153, 0.02771787904202938, 0.05588645488023758, 0.01676030270755291, 0.03224363178014755, 0.003990548197180033, 0.01618754118680954, 0.06140749529004097, 0.014140625484287739, 0.021671025082468987, -0.03445955738425255, -0.00020759653125423938, 0.005319165997207165, -0.01845041662454605, 0.07447771728038788, -0.03276944160461426, 0.02302311547100544, -0.04405565187335014, -0.020431607961654663, 0.028788285329937935, -0.010816733352839947, -0.020487943664193153, 0.02957700565457344, 0.04236553981900215, 0.05840284749865532, 0.01514530461281538, -0.057651687413454056, -0.02985868975520134, 0.012535016052424908, -0.1531619429588318, 0.027323517948389053, -0.01615937240421772, 0.03235630318522453, 0.049726925790309906, -0.02214050106704235, 0.01861942932009697, 0.03421543166041374, 0.05599913001060486, 0.025952648371458054, 0.004568004049360752, -0.024976138025522232, 0.005521040875464678, -0.013567863963544369, 0.0037839787546545267, 0.0066383942030370235, -0.03380228951573372, 0.06576423346996307, 0.04968936741352081, -0.007215850055217743, -0.00812193937599659, 0.03421543166041374, -0.08555735647678375, -0.002408413216471672, 0.035454846918582916, 0.03894774988293648, 0.040863215923309326, 0.016027919948101044, -0.0672665610909462, 0.03906042501330376, -0.0019506738753989339, 0.007840253412723541, 0.07395190000534058, -0.041802167892456055, -0.013333125971257687, 0.015248589217662811, 0.06212110072374344, -0.048149485141038895, -0.08720991015434265, -0.04777390509843826, -0.04341716691851616, -0.019041957333683968, 0.061482612043619156, -0.02499491721391678, -0.05314471200108528, -0.04465658217668533, 0.056562501937150955, 0.011267430149018764, 0.021689804270863533, -0.10839267820119858, -0.04608378931879997, 0.019286084920167923, -0.05813994258642197, 0.010319088585674763, -0.029933806508779526, -0.013999782502651215, -0.03449711576104164, -0.0030046480242162943, 0.02230951189994812, -0.021351780742406845, -0.0021748486906290054, 0.030196713283658028, 0.01647861674427986, 0.03947356343269348, -0.09915338456630707, 0.04007449373602867, 0.019041957333683968, 0.010431762784719467, 0.006098496727645397, -0.06486283987760544, 0.04968936741352081, -0.02460055612027645, -0.021840035915374756, -0.025145148858428, -0.005023396108299494, 0.03402763977646828, -0.0024882243014872074, 0.06497551500797272, 0.012995103374123573, 0.025070032104849815, 0.054609477519989014, 0.015849519520998, 0.04187728464603424, -0.017924603074789047, -0.02099497802555561, 0.022553639486432076, 0.012685248628258705, -0.0415768176317215, -0.002645498840138316, 0.00757265230640769, 0.011220483109354973, -0.041426584124565125, 0.029558226466178894, 0.025070032104849815, -0.006328539922833443, 0.066139817237854, -0.002809815341606736, 0.02645968273282051, 0.011164145544171333, 0.01661946065723896, -0.01676030270755291, 0.0027792993932962418, -0.007197071332484484, 0.044919490814208984, -0.0036595675628632307, -0.02694793790578842, -0.03106055036187172, -0.013652369379997253, -0.07233690470457077, -0.026760147884488106, 0.023811835795640945, -0.00046155386371538043, 0.022647535428404808, -0.04165193438529968, 0.008389540947973728, 0.04582088440656662, 0.0016924618976190686, -0.07797061651945114, -0.013239230960607529, 0.0173612330108881, 0.03164270147681236, 0.0012981018517166376, -0.017840098589658737, -0.007628989405930042, 0.030008923262357712, -0.06426191329956055, 0.0005965282907709479, 0.006746374070644379, -0.0016302563017234206, -0.006502246484160423, -0.06625249236822128, 0.01587768644094467, -0.02891973778605461, -0.019811898469924927, -0.09051502496004105, -0.00171593576669693, -0.029332878068089485, 0.018825998529791832, 0.04315425828099251, 0.02351137064397335, -0.06366097927093506, 0.005647799465805292, -0.00520649179816246, -0.010262751020491123, -0.038421936333179474, -0.038684844970703125, -0.004335613455623388, 0.03111688606441021, 0.01678847149014473, 0.0508536696434021, 0.01996213011443615, 0.02296677976846695, -0.011455221101641655, 0.025839973241090775, 0.01979311928153038, 0.004380213562399149, -0.033539384603500366, 0.000060188325733179227, 0.03171781823039055, 0.03252531588077545, -0.021558349952101707, -0.00986839085817337, -0.013464579358696938, 0.024506662040948868, 0.026422124356031418, -0.039285775274038315, 0.028393924236297607, 0.006995196454226971, -0.008614889346063137, 0.0007734621758572757, -0.027586424723267555, -0.003349713049829006, -0.004915416706353426, -0.010591384954750538, -0.030910316854715347, 0.036506474018096924, -0.04112612083554268, -0.0017933993367478251, 0.005422451067715883, 0.017182830721139908, 0.04890064895153046, 0.013173503801226616, 0.09141641855239868, 0.057388778775930405, -0.018497364595532417, -0.03913554176688194, 0.04499460384249687, 0.0393608920276165, 0.056900523602962494, -0.011812022887170315, -0.04461902379989624, -0.0281685758382082, -0.036055777221918106, 0.017229778692126274, 0.024506662040948868, -0.01498568244278431, -0.06696609407663345, -0.055360641330480576, 0.04619646444916725, 0.0051454599015414715, -0.003377881832420826, 0.003577409079298377, 0.05119169130921364, 0.014196962118148804, 0.06707876920700073, -0.00815010815858841, 0.005164239089936018, 0.06407412141561508, -0.02754886820912361, 0.01824384741485119, 0.008187666535377502, 0.00739425141364336, -0.01599036157131195, -0.02259119786322117, -0.03400886058807373, -0.021239105612039566, 0.02110765315592289, 0.019070126116275787, 0.025670962408185005, -0.08983898162841797, 0.0003124951326753944, 0.005675968248397112, 0.03211217746138573, 0.011107808910310268, -0.04946402087807655, 0.038140252232551575, -0.04604623094201088, -0.03669426590204239, 0.010657111182808876, 0.009441168047487736, 0.0165349543094635, -0.03186804801225662, 0.09419571608304977, 0.0019095947500318289, 0.026046542450785637, 0.015220420435070992, -0.03641257807612419, -0.02388695254921913, -0.035680197179317474, 0.030534736812114716, -0.036656707525253296, 0.016722744330763817, -0.048637740314006805, -0.044919490814208984, 0.059304241091012955, 0.03149246796965599, 0.012732196599245071, -0.03154880553483963, -0.046947628259658813, 0.03954868018627167, -0.030703747645020485, 0.0011824934044852853, 0.024093521758913994, 0.005422451067715883, 0.056562501937150955, 0.0073895566165447235, 0.02771787904202938, -0.06636516749858856, -0.03346426784992218, -0.006187697406858206, 0.02313579060137272, 0.0136711485683918, -0.021013757213950157, 0.05096634477376938, -0.02685404196381569, -0.032619211822748184, 0.041802167892456055, 0.004678330849856138, -0.0042205918580293655, 0.01347396895289421, -0.0020304848439991474, 0.04604623094201088, 0.025239044800400734, -0.0015480979345738888, -0.028506599366664886, -0.07098481059074402, 0.04187728464603424, -0.010140687227249146, 0.011164145544171333, -0.017567802220582962, 0.0322624072432518, 0.024469103664159775, 0.020487943664193153, 0.010093740187585354, 0.01457254309207201, -0.011502168141305447, -0.034741245210170746, -0.033877406269311905, -0.018347132951021194, 0.018741492182016373, -0.056787848472595215, -0.013558474369347095, -0.07560446113348007, -0.026121659204363823, 0.0012323751579970121, -0.0721866711974144, -0.0016443405766040087, 0.0010340214939787984, 0.020581839606165886, 0.020300153642892838, -0.016347164288163185, -0.004577393643558025, 0.00047211706987582147, -0.09900315850973129, -0.016544343903660774, 0.07256225496530533, -0.10456175357103348, -0.041426584124565125, 0.022816546261310577, -0.03641257807612419, 0.06035586819052696, 0.012488069012761116, -0.0018438680563122034, 0.026591135188937187, 0.068881556391716, 0.050290297716856, 0.06433703005313873, -0.042027514427900314, -0.002511698054149747, -0.035360950976610184, -0.045520417392253876, -0.01076978538185358, -0.043229375034570694, 0.0002548375923652202, -0.02957700565457344, 0.029877468943595886, -0.032450199127197266, -0.033539384603500366, 0.03678816184401512, -0.06035586819052696, 0.014638270251452923, -0.03040328249335289, -0.03012159653007984, -0.056449826806783676, -0.06005540490150452, 0.02225317433476448, 0.028731947764754295, -0.006840269081294537, -0.09689990431070328, 0.017220389097929, -0.09329432249069214, 0.05663761869072914, -0.01787765696644783, 0.04424344375729561, 0.023811835795640945, 0.02202782593667507, -0.005281608086079359, -0.004100874997675419, -0.013060829602181911, -0.00542714586481452, 0.052844248712062836, 0.03641257807612419, 0.025670962408185005, -0.04784902185201645, -0.023173348978161812, 0.04860018193721771, -0.016178151592612267, 0.00789659097790718, -0.063398078083992, 0.037482984364032745, 0.015774402767419815, -0.03421543166041374, 0.05490994453430176, 0.026046542450785637, 0.056074246764183044, 0.02067573554813862, -0.005915401037782431, 0.07567957788705826, 0.04987715929746628, 0.02082596719264984, 0.018431637436151505, 0.02208416350185871, -0.015398821793496609, -0.04416832700371742, 0.021896373480558395, -0.03706984594464302, -0.0018790788017213345, -0.03395252302289009, -0.012835481204092503, 0.05036541447043419, 0.05554843321442604, -0.007290966343134642, 0.009614873677492142, -0.005718220956623554, 0.01924852654337883, -0.0041360859759151936, -0.024037184193730354, 0.007783916313201189, 0.010478709824383259, 0.004415424074977636, -0.046008672565221786, -0.05892866104841232, 0.04533262923359871, 0.05660006031394005, 0.014375363476574421, -0.030797643586993217, 0.0069388593547046185, 0.03776467218995094, -0.04281623661518097, 0.023041894659399986, -0.01888233609497547, -0.01514530461281538, -0.006633699871599674, -0.0056806630454957485, 0.008769816718995571, -0.023004336282610893, 0.051041461527347565, 0.031192002817988396, -0.05149215832352638, 0.08330386877059937, 0.04285379499197006, -0.010215803980827332, 0.013915276154875755, -0.0012945807538926601, -0.029182644560933113, -0.007718189619481564, -0.039886701852083206, -0.012610132806003094, 0.010948186740279198, 0.04052519053220749, 0.021464454010128975, -0.02602776512503624, 0.06490039825439453, -0.04619646444916725, 0.05502261966466904, -0.037482984364032745, -0.032994791865348816, 0.09472153335809708, 0.0028450260870158672, 0.02854415774345398, 0.003762852167710662, 0.0008520994451828301, 0.014948124065995216, 0.027361076325178146, -0.05216820165514946, -0.0064271301962435246, 0.02291044220328331, -0.0038778739981353283, 0.028337586671113968, -0.024844683706760406, -0.06775481253862381, -0.006398961413651705, -0.021689804270863533, 0.04330449178814888, 0.02565218321979046, 0.02811223827302456, 0.016995040699839592, -0.046008672565221786, -0.06538865715265274, -0.03575531393289566, 0.006586751900613308, 0.0034717770759016275, -0.059567149728536606, 0.09081549197435379, -0.005239354912191629, 0.019887015223503113, -0.007577347103506327, 0.017229778692126274, 0.01457254309207201, -0.003687736112624407, 0.0034295241348445415, 0.006126665510237217, 0.019755560904741287, -0.015323705039918423, 0.021314222365617752, 0.025990206748247147, 0.03464734926819801, 0.007431809324771166, -0.126796156167984, -0.05156727135181427, -0.03804635629057884, -0.007577347103506327, 0.01249745860695839, 0.031680259853601456, -0.04326693341135979, 0.0031713121570646763, -0.010722838342189789, 0.0038919581566005945, -0.033389151096343994, 0.022271953523159027, -0.027023054659366608, 0.03265677019953728, 0.02033771201968193, 0.016168761998414993, 0.054158780723810196, -0.021520791575312614, 0.032994791865348816, -0.00260324589908123, 0.020863525569438934, 0.020431607961654663, 0.07136039435863495, 0.048637740314006805, -0.020318932831287384, -0.029821133241057396, -0.046234022825956345, 0.003478819038718939, -0.0118965283036232, -0.00933788251131773, -0.025670962408185005, -0.009520978666841984, 0.043004024773836136, -0.03045962005853653, 0.013088998384773731, 0.051154132932424545, -0.036994729191064835, -0.045745767652988434, -0.06805527955293655, 0.013661758974194527, -0.06249668076634407, 0.05198041349649429, -0.00859611015766859, -0.034591011703014374, 0.03077886439859867, -0.028506599366664886, 0.035680197179317474, -0.016769692301750183, -0.06302249431610107, -0.015408211387693882, 0.07211155444383621, -0.008971691131591797, 0.030328167602419853, 0.04326693341135979, 0.02093864232301712, 0.04856262356042862, -0.020713292062282562, -0.02302311547100544, 0.023473814129829407, -0.01369931735098362, 0.026290670037269592, 0.009398914873600006, -0.02831880934536457, 0.030271830037236214, -0.015107746236026287, -0.023905731737613678, 0.01315472461283207, 0.019718002527952194, -0.10012989491224289, 0.05772680044174194, -0.03175537288188934, 0.00933788251131773, 0.03511682525277138, -0.015915244817733765, 0.0530320405960083, 0.037426646798849106, -0.004030453972518444, -0.07143551111221313, -0.03629990667104721, -0.000740598828997463, -0.0066383942030370235, -0.004035148303955793, -0.02891973778605461, 0.020581839606165886, -0.046985186636447906, -0.01713588461279869, -0.06974539160728455, 0.03613089397549629, 0.001314533525146544, 0.053069598972797394, -0.045745767652988434, 0.005004616919904947, 0.025577066466212273, 0.009605484083294868, 0.016196930781006813, 0.017229778692126274, -0.024919800460338593, 0.013924665749073029, -0.000865010020788759, -0.03504170849919319, -0.03973647207021713, -0.018168730661273003, 0.019661666825413704, -0.01282609160989523, -0.004218244459480047, 0.013098387978971004, 0.012516236864030361, -0.037107404321432114, -0.004715889226645231, 0.004281623754650354, -0.0426660031080246, 0.03214973583817482, 0.01673213392496109, -0.02460055612027645, 0.018638208508491516, -0.018149953335523605, -0.028562936931848526, 0.025633404031395912, -0.05588645488023758, -0.03183048963546753, 0.04214018955826759, -0.058703310787677765, -0.012525626458227634, -0.0002386993437539786, 0.01956777088344097, 0.013990392908453941, -0.026534799486398697, -0.05603668838739395, 0.04893820732831955, 0.05829017236828804, 0.05276913195848465, -0.005624325480312109, 0.06414923816919327, 0.027792995795607567, -0.03199950233101845, 0.02373672090470791, 0.001194230280816555, 0.02946433052420616, -0.07301294803619385, 0.0067229000851511955, -0.04567065089941025, -0.016516175121068954, 0.03558630123734474, -0.0035046404227614403, -0.030497178435325623, 0.06948249042034149, 0.015051408670842648, -0.024525439366698265, -0.027023054659366608, -0.012272109277546406, 0.0012711070012301207, 0.03723885864019394, 0.09149153530597687, 0.016638237982988358, 0.034421999007463455, 0.004746404942125082, 0.08300340175628662, -0.014797891490161419, -0.0363750196993351, -0.023098232224583626, 0.005849674344062805, -0.030084040015935898, 0.025821194052696228, 0.016309605911374092, 0.024844683706760406, -0.017661696299910545, 0.006783931981772184, 0.0047346679493784904, 0.01673213392496109, -0.004793352913111448, 0.005807421635836363, -0.03898530825972557, 0.024375207722187042, -0.0001820687612053007, -0.025708520784974098, 0.03149246796965599, -0.02078840881586075, -0.002015226986259222, -0.03017793409526348, -0.0453701876103878, 0.017915213480591774, 0.058102384209632874, -0.04739832505583763, -0.06475016474723816, -0.002774604829028249, -0.055473316460847855, 0.02033771201968193, -0.025708520784974098, -0.047060299664735794, 0.0016044351505115628, -0.04232798144221306, -0.029990144073963165, -0.003211217699572444, 0.029163865372538567, -0.015192251652479172, -0.01350213773548603, -0.008591415360569954, -0.001280496479012072, 0.01492934487760067, 0.03111688606441021, 0.024412766098976135, -0.0237930566072464, 0.001868515508249402, -0.07643073797225952, 0.04773634672164917, 0.011098419316112995, 0.07060923427343369, -0.03421543166041374, 0.014018561691045761, 0.010112518444657326, -0.05614935979247093, 0.0014729817630723119, 0.023098232224583626, -0.020807188004255295, 0.03558630123734474, 0.004288665484637022, -0.03445955738425255, 0.015239199623465538, 0.018253237009048462, -0.023267243057489395, -0.0023063020780682564, 0.026215555146336555, 0.03154880553483963, -0.053445179015398026, 0.031361013650894165, -0.014225130900740623, -0.017492685467004776, -0.017342453822493553, -0.0015610086265951395, -0.07665608823299408, 0.006248729303479195, -0.014807281084358692, 0.02886340022087097, 0.07736968994140625, 0.0077228844165802, 0.010976355522871017, 0.0026619303971529007, 0.034684907644987106, -0.008732258342206478, 0.07184864580631256, 0.009187650866806507, -0.06317272782325745, 0.06497551500797272, -0.0205067228525877, 0.0036243568174540997, -0.015492716804146767, -0.02957700565457344, -0.025013696402311325, -0.025332938879728317, 0.006647783797234297, -0.04390542209148407, 0.02208416350185871, -0.028037123382091522, 0.013905887492001057, -0.02493857964873314, -0.024863462895154953, 0.00992472842335701, -0.08480619639158249, -0.0415768176317215, 0.06084412336349487, 0.02537049725651741, -0.008685311302542686 ]
24,418
okta_jwt_verifier.jwt_verifier
verify
null
def __init__(self, issuer=None, client_id='client_id_stub', audience='api://default', request_executor=RequestExecutor, max_retries=MAX_RETRIES, request_timeout=REQUEST_TIMEOUT, max_requests=MAX_REQUESTS, leeway=LEEWAY, cache_jwks=True, proxy=None): """ Args: issuer: string, full URI of the token issuer, required client_id: string, expected client_id, required audience: string, expected audience, optional request_executor: RequestExecutor class or its subclass, optional max_retries: int, number of times to retry a failed network request, optional request_timeout: int, max request timeout, optional max_requests: int, max number of concurrent requests leeway: int, amount of time to expand the window for token expiration (to work around clock skew) cache_jwks: bool, optional """ self._jwt_verifier = BaseJWTVerifier(issuer, client_id, audience, request_executor, max_retries, request_timeout, max_requests, leeway, cache_jwks, proxy)
(self, token, claims_to_verify=('iss', 'exp'), nonce=None)
[ 0.009520978666841984, -0.03072252683341503, 0.0012887123739346862, 0.05265645682811737, -0.010844902135431767, -0.030422061681747437, -0.018985619768500328, 0.024431545287370682, -0.05652494356036186, 0.020487943664193153, 0.02771787904202938, 0.05588645488023758, 0.01676030270755291, 0.03224363178014755, 0.003990548197180033, 0.01618754118680954, 0.06140749529004097, 0.014140625484287739, 0.021671025082468987, -0.03445955738425255, -0.00020759653125423938, 0.005319165997207165, -0.01845041662454605, 0.07447771728038788, -0.03276944160461426, 0.02302311547100544, -0.04405565187335014, -0.020431607961654663, 0.028788285329937935, -0.010816733352839947, -0.020487943664193153, 0.02957700565457344, 0.04236553981900215, 0.05840284749865532, 0.01514530461281538, -0.057651687413454056, -0.02985868975520134, 0.012535016052424908, -0.1531619429588318, 0.027323517948389053, -0.01615937240421772, 0.03235630318522453, 0.049726925790309906, -0.02214050106704235, 0.01861942932009697, 0.03421543166041374, 0.05599913001060486, 0.025952648371458054, 0.004568004049360752, -0.024976138025522232, 0.005521040875464678, -0.013567863963544369, 0.0037839787546545267, 0.0066383942030370235, -0.03380228951573372, 0.06576423346996307, 0.04968936741352081, -0.007215850055217743, -0.00812193937599659, 0.03421543166041374, -0.08555735647678375, -0.002408413216471672, 0.035454846918582916, 0.03894774988293648, 0.040863215923309326, 0.016027919948101044, -0.0672665610909462, 0.03906042501330376, -0.0019506738753989339, 0.007840253412723541, 0.07395190000534058, -0.041802167892456055, -0.013333125971257687, 0.015248589217662811, 0.06212110072374344, -0.048149485141038895, -0.08720991015434265, -0.04777390509843826, -0.04341716691851616, -0.019041957333683968, 0.061482612043619156, -0.02499491721391678, -0.05314471200108528, -0.04465658217668533, 0.056562501937150955, 0.011267430149018764, 0.021689804270863533, -0.10839267820119858, -0.04608378931879997, 0.019286084920167923, -0.05813994258642197, 0.010319088585674763, -0.029933806508779526, -0.013999782502651215, -0.03449711576104164, -0.0030046480242162943, 0.02230951189994812, -0.021351780742406845, -0.0021748486906290054, 0.030196713283658028, 0.01647861674427986, 0.03947356343269348, -0.09915338456630707, 0.04007449373602867, 0.019041957333683968, 0.010431762784719467, 0.006098496727645397, -0.06486283987760544, 0.04968936741352081, -0.02460055612027645, -0.021840035915374756, -0.025145148858428, -0.005023396108299494, 0.03402763977646828, -0.0024882243014872074, 0.06497551500797272, 0.012995103374123573, 0.025070032104849815, 0.054609477519989014, 0.015849519520998, 0.04187728464603424, -0.017924603074789047, -0.02099497802555561, 0.022553639486432076, 0.012685248628258705, -0.0415768176317215, -0.002645498840138316, 0.00757265230640769, 0.011220483109354973, -0.041426584124565125, 0.029558226466178894, 0.025070032104849815, -0.006328539922833443, 0.066139817237854, -0.002809815341606736, 0.02645968273282051, 0.011164145544171333, 0.01661946065723896, -0.01676030270755291, 0.0027792993932962418, -0.007197071332484484, 0.044919490814208984, -0.0036595675628632307, -0.02694793790578842, -0.03106055036187172, -0.013652369379997253, -0.07233690470457077, -0.026760147884488106, 0.023811835795640945, -0.00046155386371538043, 0.022647535428404808, -0.04165193438529968, 0.008389540947973728, 0.04582088440656662, 0.0016924618976190686, -0.07797061651945114, -0.013239230960607529, 0.0173612330108881, 0.03164270147681236, 0.0012981018517166376, -0.017840098589658737, -0.007628989405930042, 0.030008923262357712, -0.06426191329956055, 0.0005965282907709479, 0.006746374070644379, -0.0016302563017234206, -0.006502246484160423, -0.06625249236822128, 0.01587768644094467, -0.02891973778605461, -0.019811898469924927, -0.09051502496004105, -0.00171593576669693, -0.029332878068089485, 0.018825998529791832, 0.04315425828099251, 0.02351137064397335, -0.06366097927093506, 0.005647799465805292, -0.00520649179816246, -0.010262751020491123, -0.038421936333179474, -0.038684844970703125, -0.004335613455623388, 0.03111688606441021, 0.01678847149014473, 0.0508536696434021, 0.01996213011443615, 0.02296677976846695, -0.011455221101641655, 0.025839973241090775, 0.01979311928153038, 0.004380213562399149, -0.033539384603500366, 0.000060188325733179227, 0.03171781823039055, 0.03252531588077545, -0.021558349952101707, -0.00986839085817337, -0.013464579358696938, 0.024506662040948868, 0.026422124356031418, -0.039285775274038315, 0.028393924236297607, 0.006995196454226971, -0.008614889346063137, 0.0007734621758572757, -0.027586424723267555, -0.003349713049829006, -0.004915416706353426, -0.010591384954750538, -0.030910316854715347, 0.036506474018096924, -0.04112612083554268, -0.0017933993367478251, 0.005422451067715883, 0.017182830721139908, 0.04890064895153046, 0.013173503801226616, 0.09141641855239868, 0.057388778775930405, -0.018497364595532417, -0.03913554176688194, 0.04499460384249687, 0.0393608920276165, 0.056900523602962494, -0.011812022887170315, -0.04461902379989624, -0.0281685758382082, -0.036055777221918106, 0.017229778692126274, 0.024506662040948868, -0.01498568244278431, -0.06696609407663345, -0.055360641330480576, 0.04619646444916725, 0.0051454599015414715, -0.003377881832420826, 0.003577409079298377, 0.05119169130921364, 0.014196962118148804, 0.06707876920700073, -0.00815010815858841, 0.005164239089936018, 0.06407412141561508, -0.02754886820912361, 0.01824384741485119, 0.008187666535377502, 0.00739425141364336, -0.01599036157131195, -0.02259119786322117, -0.03400886058807373, -0.021239105612039566, 0.02110765315592289, 0.019070126116275787, 0.025670962408185005, -0.08983898162841797, 0.0003124951326753944, 0.005675968248397112, 0.03211217746138573, 0.011107808910310268, -0.04946402087807655, 0.038140252232551575, -0.04604623094201088, -0.03669426590204239, 0.010657111182808876, 0.009441168047487736, 0.0165349543094635, -0.03186804801225662, 0.09419571608304977, 0.0019095947500318289, 0.026046542450785637, 0.015220420435070992, -0.03641257807612419, -0.02388695254921913, -0.035680197179317474, 0.030534736812114716, -0.036656707525253296, 0.016722744330763817, -0.048637740314006805, -0.044919490814208984, 0.059304241091012955, 0.03149246796965599, 0.012732196599245071, -0.03154880553483963, -0.046947628259658813, 0.03954868018627167, -0.030703747645020485, 0.0011824934044852853, 0.024093521758913994, 0.005422451067715883, 0.056562501937150955, 0.0073895566165447235, 0.02771787904202938, -0.06636516749858856, -0.03346426784992218, -0.006187697406858206, 0.02313579060137272, 0.0136711485683918, -0.021013757213950157, 0.05096634477376938, -0.02685404196381569, -0.032619211822748184, 0.041802167892456055, 0.004678330849856138, -0.0042205918580293655, 0.01347396895289421, -0.0020304848439991474, 0.04604623094201088, 0.025239044800400734, -0.0015480979345738888, -0.028506599366664886, -0.07098481059074402, 0.04187728464603424, -0.010140687227249146, 0.011164145544171333, -0.017567802220582962, 0.0322624072432518, 0.024469103664159775, 0.020487943664193153, 0.010093740187585354, 0.01457254309207201, -0.011502168141305447, -0.034741245210170746, -0.033877406269311905, -0.018347132951021194, 0.018741492182016373, -0.056787848472595215, -0.013558474369347095, -0.07560446113348007, -0.026121659204363823, 0.0012323751579970121, -0.0721866711974144, -0.0016443405766040087, 0.0010340214939787984, 0.020581839606165886, 0.020300153642892838, -0.016347164288163185, -0.004577393643558025, 0.00047211706987582147, -0.09900315850973129, -0.016544343903660774, 0.07256225496530533, -0.10456175357103348, -0.041426584124565125, 0.022816546261310577, -0.03641257807612419, 0.06035586819052696, 0.012488069012761116, -0.0018438680563122034, 0.026591135188937187, 0.068881556391716, 0.050290297716856, 0.06433703005313873, -0.042027514427900314, -0.002511698054149747, -0.035360950976610184, -0.045520417392253876, -0.01076978538185358, -0.043229375034570694, 0.0002548375923652202, -0.02957700565457344, 0.029877468943595886, -0.032450199127197266, -0.033539384603500366, 0.03678816184401512, -0.06035586819052696, 0.014638270251452923, -0.03040328249335289, -0.03012159653007984, -0.056449826806783676, -0.06005540490150452, 0.02225317433476448, 0.028731947764754295, -0.006840269081294537, -0.09689990431070328, 0.017220389097929, -0.09329432249069214, 0.05663761869072914, -0.01787765696644783, 0.04424344375729561, 0.023811835795640945, 0.02202782593667507, -0.005281608086079359, -0.004100874997675419, -0.013060829602181911, -0.00542714586481452, 0.052844248712062836, 0.03641257807612419, 0.025670962408185005, -0.04784902185201645, -0.023173348978161812, 0.04860018193721771, -0.016178151592612267, 0.00789659097790718, -0.063398078083992, 0.037482984364032745, 0.015774402767419815, -0.03421543166041374, 0.05490994453430176, 0.026046542450785637, 0.056074246764183044, 0.02067573554813862, -0.005915401037782431, 0.07567957788705826, 0.04987715929746628, 0.02082596719264984, 0.018431637436151505, 0.02208416350185871, -0.015398821793496609, -0.04416832700371742, 0.021896373480558395, -0.03706984594464302, -0.0018790788017213345, -0.03395252302289009, -0.012835481204092503, 0.05036541447043419, 0.05554843321442604, -0.007290966343134642, 0.009614873677492142, -0.005718220956623554, 0.01924852654337883, -0.0041360859759151936, -0.024037184193730354, 0.007783916313201189, 0.010478709824383259, 0.004415424074977636, -0.046008672565221786, -0.05892866104841232, 0.04533262923359871, 0.05660006031394005, 0.014375363476574421, -0.030797643586993217, 0.0069388593547046185, 0.03776467218995094, -0.04281623661518097, 0.023041894659399986, -0.01888233609497547, -0.01514530461281538, -0.006633699871599674, -0.0056806630454957485, 0.008769816718995571, -0.023004336282610893, 0.051041461527347565, 0.031192002817988396, -0.05149215832352638, 0.08330386877059937, 0.04285379499197006, -0.010215803980827332, 0.013915276154875755, -0.0012945807538926601, -0.029182644560933113, -0.007718189619481564, -0.039886701852083206, -0.012610132806003094, 0.010948186740279198, 0.04052519053220749, 0.021464454010128975, -0.02602776512503624, 0.06490039825439453, -0.04619646444916725, 0.05502261966466904, -0.037482984364032745, -0.032994791865348816, 0.09472153335809708, 0.0028450260870158672, 0.02854415774345398, 0.003762852167710662, 0.0008520994451828301, 0.014948124065995216, 0.027361076325178146, -0.05216820165514946, -0.0064271301962435246, 0.02291044220328331, -0.0038778739981353283, 0.028337586671113968, -0.024844683706760406, -0.06775481253862381, -0.006398961413651705, -0.021689804270863533, 0.04330449178814888, 0.02565218321979046, 0.02811223827302456, 0.016995040699839592, -0.046008672565221786, -0.06538865715265274, -0.03575531393289566, 0.006586751900613308, 0.0034717770759016275, -0.059567149728536606, 0.09081549197435379, -0.005239354912191629, 0.019887015223503113, -0.007577347103506327, 0.017229778692126274, 0.01457254309207201, -0.003687736112624407, 0.0034295241348445415, 0.006126665510237217, 0.019755560904741287, -0.015323705039918423, 0.021314222365617752, 0.025990206748247147, 0.03464734926819801, 0.007431809324771166, -0.126796156167984, -0.05156727135181427, -0.03804635629057884, -0.007577347103506327, 0.01249745860695839, 0.031680259853601456, -0.04326693341135979, 0.0031713121570646763, -0.010722838342189789, 0.0038919581566005945, -0.033389151096343994, 0.022271953523159027, -0.027023054659366608, 0.03265677019953728, 0.02033771201968193, 0.016168761998414993, 0.054158780723810196, -0.021520791575312614, 0.032994791865348816, -0.00260324589908123, 0.020863525569438934, 0.020431607961654663, 0.07136039435863495, 0.048637740314006805, -0.020318932831287384, -0.029821133241057396, -0.046234022825956345, 0.003478819038718939, -0.0118965283036232, -0.00933788251131773, -0.025670962408185005, -0.009520978666841984, 0.043004024773836136, -0.03045962005853653, 0.013088998384773731, 0.051154132932424545, -0.036994729191064835, -0.045745767652988434, -0.06805527955293655, 0.013661758974194527, -0.06249668076634407, 0.05198041349649429, -0.00859611015766859, -0.034591011703014374, 0.03077886439859867, -0.028506599366664886, 0.035680197179317474, -0.016769692301750183, -0.06302249431610107, -0.015408211387693882, 0.07211155444383621, -0.008971691131591797, 0.030328167602419853, 0.04326693341135979, 0.02093864232301712, 0.04856262356042862, -0.020713292062282562, -0.02302311547100544, 0.023473814129829407, -0.01369931735098362, 0.026290670037269592, 0.009398914873600006, -0.02831880934536457, 0.030271830037236214, -0.015107746236026287, -0.023905731737613678, 0.01315472461283207, 0.019718002527952194, -0.10012989491224289, 0.05772680044174194, -0.03175537288188934, 0.00933788251131773, 0.03511682525277138, -0.015915244817733765, 0.0530320405960083, 0.037426646798849106, -0.004030453972518444, -0.07143551111221313, -0.03629990667104721, -0.000740598828997463, -0.0066383942030370235, -0.004035148303955793, -0.02891973778605461, 0.020581839606165886, -0.046985186636447906, -0.01713588461279869, -0.06974539160728455, 0.03613089397549629, 0.001314533525146544, 0.053069598972797394, -0.045745767652988434, 0.005004616919904947, 0.025577066466212273, 0.009605484083294868, 0.016196930781006813, 0.017229778692126274, -0.024919800460338593, 0.013924665749073029, -0.000865010020788759, -0.03504170849919319, -0.03973647207021713, -0.018168730661273003, 0.019661666825413704, -0.01282609160989523, -0.004218244459480047, 0.013098387978971004, 0.012516236864030361, -0.037107404321432114, -0.004715889226645231, 0.004281623754650354, -0.0426660031080246, 0.03214973583817482, 0.01673213392496109, -0.02460055612027645, 0.018638208508491516, -0.018149953335523605, -0.028562936931848526, 0.025633404031395912, -0.05588645488023758, -0.03183048963546753, 0.04214018955826759, -0.058703310787677765, -0.012525626458227634, -0.0002386993437539786, 0.01956777088344097, 0.013990392908453941, -0.026534799486398697, -0.05603668838739395, 0.04893820732831955, 0.05829017236828804, 0.05276913195848465, -0.005624325480312109, 0.06414923816919327, 0.027792995795607567, -0.03199950233101845, 0.02373672090470791, 0.001194230280816555, 0.02946433052420616, -0.07301294803619385, 0.0067229000851511955, -0.04567065089941025, -0.016516175121068954, 0.03558630123734474, -0.0035046404227614403, -0.030497178435325623, 0.06948249042034149, 0.015051408670842648, -0.024525439366698265, -0.027023054659366608, -0.012272109277546406, 0.0012711070012301207, 0.03723885864019394, 0.09149153530597687, 0.016638237982988358, 0.034421999007463455, 0.004746404942125082, 0.08300340175628662, -0.014797891490161419, -0.0363750196993351, -0.023098232224583626, 0.005849674344062805, -0.030084040015935898, 0.025821194052696228, 0.016309605911374092, 0.024844683706760406, -0.017661696299910545, 0.006783931981772184, 0.0047346679493784904, 0.01673213392496109, -0.004793352913111448, 0.005807421635836363, -0.03898530825972557, 0.024375207722187042, -0.0001820687612053007, -0.025708520784974098, 0.03149246796965599, -0.02078840881586075, -0.002015226986259222, -0.03017793409526348, -0.0453701876103878, 0.017915213480591774, 0.058102384209632874, -0.04739832505583763, -0.06475016474723816, -0.002774604829028249, -0.055473316460847855, 0.02033771201968193, -0.025708520784974098, -0.047060299664735794, 0.0016044351505115628, -0.04232798144221306, -0.029990144073963165, -0.003211217699572444, 0.029163865372538567, -0.015192251652479172, -0.01350213773548603, -0.008591415360569954, -0.001280496479012072, 0.01492934487760067, 0.03111688606441021, 0.024412766098976135, -0.0237930566072464, 0.001868515508249402, -0.07643073797225952, 0.04773634672164917, 0.011098419316112995, 0.07060923427343369, -0.03421543166041374, 0.014018561691045761, 0.010112518444657326, -0.05614935979247093, 0.0014729817630723119, 0.023098232224583626, -0.020807188004255295, 0.03558630123734474, 0.004288665484637022, -0.03445955738425255, 0.015239199623465538, 0.018253237009048462, -0.023267243057489395, -0.0023063020780682564, 0.026215555146336555, 0.03154880553483963, -0.053445179015398026, 0.031361013650894165, -0.014225130900740623, -0.017492685467004776, -0.017342453822493553, -0.0015610086265951395, -0.07665608823299408, 0.006248729303479195, -0.014807281084358692, 0.02886340022087097, 0.07736968994140625, 0.0077228844165802, 0.010976355522871017, 0.0026619303971529007, 0.034684907644987106, -0.008732258342206478, 0.07184864580631256, 0.009187650866806507, -0.06317272782325745, 0.06497551500797272, -0.0205067228525877, 0.0036243568174540997, -0.015492716804146767, -0.02957700565457344, -0.025013696402311325, -0.025332938879728317, 0.006647783797234297, -0.04390542209148407, 0.02208416350185871, -0.028037123382091522, 0.013905887492001057, -0.02493857964873314, -0.024863462895154953, 0.00992472842335701, -0.08480619639158249, -0.0415768176317215, 0.06084412336349487, 0.02537049725651741, -0.008685311302542686 ]
24,419
okta_jwt_verifier.jwt_utils
JWTUtils
Contains different utils and common methods for jwt verification.
class JWTUtils: """Contains different utils and common methods for jwt verification.""" @staticmethod def parse_token(token): """Parse JWT token, get headers, claims and signature. Return: tuple (headers, claims, signing_input, signature) """ headers, payload, signing_input, signature = jws._load(token) claims = json.loads(payload.decode('utf-8')) return (headers, claims, signing_input, signature) @staticmethod def verify_claims(claims, claims_to_verify, audience, issuer, leeway=LEEWAY): """Verify claims are present and valid.""" # Check if required claims are present, because library "jose" doesn't raise an exception for claim in claims_to_verify: if claim not in claims: raise JWTValidationException(f'Required claim "{claim}" is not present.') # Overwrite defaults in python-jose library options = {'verify_aud': 'aud' in claims_to_verify, 'verify_iat': 'iat' in claims_to_verify, 'verify_exp': 'exp' in claims_to_verify, 'verify_nbf': 'nbf' in claims_to_verify, 'verify_iss': 'iss' in claims_to_verify, 'verify_sub': 'sub' in claims_to_verify, 'verify_jti': 'jti' in claims_to_verify, 'leeway': leeway} # Validate claims jwt._validate_claims(claims, audience=audience, issuer=issuer, options=options) @staticmethod def verify_signature(token, okta_jwk): """Verify token signature using received jwk.""" headers, claims, signing_input, signature = JWTUtils.parse_token(token) jws._verify_signature(signing_input=signing_input, header=headers, signature=signature, key=okta_jwk, algorithms=['RS256']) @staticmethod def verify_expiration(token, leeway=LEEWAY): """Verify if token is not expired.""" headers, claims, signing_input, signature = JWTUtils.parse_token(token) try: JWTUtils.verify_claims(claims, claims_to_verify=('exp',), audience=None, issuer=None, leeway=LEEWAY) except ExpiredSignatureError: raise JWTValidationException('Signature has expired.')
()
[ 0.037227921187877655, -0.045386943966150284, -0.021023718640208244, 0.09297493100166321, -0.01588163524866104, -0.06857375800609589, -0.018680371344089508, 0.014543935656547546, -0.0030477752443403006, 0.033774565905332565, 0.029277615249156952, 0.04364129528403282, 0.09418929368257523, 0.00019256127416156232, -0.03348995000123978, -0.0014740795595571399, 0.06375423818826675, 0.04052947834134102, 0.03485611081123352, -0.022997064515948296, 0.0011538852704688907, 0.01998012326657772, -0.004779195878654718, 0.07111633569002151, -0.049751073122024536, 0.04341360181570053, 0.0018488254863768816, 0.003673932747915387, 0.042844366282224655, -0.015834199264645576, -0.023926813155412674, 0.0026445675175637007, 0.05658188462257385, 0.023319629952311516, 0.025444772094488144, -0.05715112015604973, 0.026772985234856606, 0.0069920942187309265, -0.08470205962657928, 0.02794940210878849, -0.039618704468011856, 0.03356584906578064, 0.07271019369363785, -0.055367518216371536, -0.0130544388666749, 0.03923921659588814, -0.01273187343031168, 0.10253806412220001, -0.014847527258098125, -0.012067766860127449, 0.03855613246560097, -0.026393495500087738, 0.024439124390482903, -0.0075233797542750835, -0.006702733691781759, 0.02168782614171505, 0.031421732157468796, 0.043717190623283386, 0.01052134670317173, -0.0034533545840531588, -0.013709058985114098, -0.015606505796313286, 0.0457664355635643, 0.020663203671574593, 0.02016986720263958, 0.026450419798493385, -0.02588118426501751, -0.010976734571158886, 0.0042099617421627045, 0.02992274798452854, 0.03868895396590233, -0.054912131279706955, -0.015283940359950066, 0.015350351110100746, 0.030055569484829903, -0.015929073095321655, -0.08538513630628586, -0.037133049219846725, -0.029258640483021736, -0.03476123884320259, 0.08007228374481201, -0.03314840793609619, -0.046297721564769745, -0.024097584187984467, 0.08409487456083298, 0.04424847662448883, 0.032996613532304764, -0.046335671097040176, 0.016318049281835556, 0.007039530202746391, -0.08637180924415588, -0.010663655586540699, 0.0002911396150011569, -0.015416760928928852, 0.021327311173081398, -0.005554777570068836, -0.010777502320706844, -0.017020104452967644, -0.05734086409211159, 0.0015487915370613337, -0.0005117178661748767, 0.025217078626155853, -0.09100158512592316, 0.042806416749954224, 0.02242783084511757, 0.041971538215875626, -0.02320578321814537, -0.03629817068576813, 0.0237180944532156, -0.03646894171833992, -0.08083126693964005, -0.037740230560302734, -0.025482719764113426, -0.002877004910260439, 0.040263835340738297, -0.01132776215672493, 0.007456969004124403, 0.0164888184517622, -0.05115518718957901, -0.0032066863495856524, 0.05464648827910423, -0.02694375440478325, 0.022484753280878067, 0.017152925953269005, 0.060338832437992096, -0.05779625102877617, 0.008372487500309944, 0.02527400106191635, 0.06284346431493759, -0.004385475534945726, -0.013528801500797272, 0.06386808305978775, -0.0033347641583532095, 0.012950079515576363, -0.011498532257974148, 0.012323921546339989, -0.002378924982622266, 0.04838491231203079, -0.03309148550033569, 0.014819065108895302, 0.010416987352073193, 0.013225209899246693, -0.0118590472266078, -0.04052947834134102, -0.04295821115374565, -0.015739327296614647, -0.052976734936237335, -0.041288457810878754, 0.010037497617304325, -0.00394431920722127, 0.041554100811481476, -0.04512130469083786, 0.017731647938489914, -0.009895188733935356, 0.03802485018968582, -0.0906979963183403, -0.010872374288737774, 0.006626835558563471, -0.037645358592271805, 0.018927039578557014, -0.024666817858815193, 0.027475040405988693, -0.03815767168998718, -0.032484300434589386, 0.01629907451570034, 0.04956132918596268, 0.059883445501327515, 0.02288321778178215, -0.008908516727387905, 0.005716060753911734, 0.004769708961248398, 0.0474361889064312, -0.032901741564273834, 0.03629817068576813, -0.01710548996925354, 0.034742265939712524, 0.002090750029310584, 0.009202620945870876, -0.013908290304243565, -0.031023267656564713, -0.022997064515948296, 0.006859272718429565, -0.03827151656150818, -0.01549265906214714, 0.014885475859045982, 0.08553693443536758, -0.016830360516905785, 0.016308560967445374, 0.006631579250097275, 0.01058775745332241, -0.0150562459602952, 0.025255026295781136, 0.004947594366967678, 0.03269302099943161, -0.009159928187727928, 0.012703411281108856, 0.026810934767127037, 0.021479105576872826, -0.010331601835787296, -0.02956223301589489, -0.0070822229608893394, 0.0104264747351408, 0.011783149093389511, -0.023793991655111313, -0.009866727516055107, -0.018756268545985222, -0.007589790038764477, 0.03798690065741539, -0.05369776487350464, -0.016014456748962402, -0.0025307207833975554, -0.02614682726562023, -0.048271067440509796, 0.03726587072014809, 0.021327311173081398, -0.012599051930010319, 0.031004292890429497, 0.018576011061668396, 0.019809352234005928, 0.009430314414203167, 0.08212152868509293, 0.00555952126160264, -0.03185814619064331, -0.00005080860501038842, 0.08090716600418091, 0.038973573595285416, 0.04083307087421417, 0.020018070936203003, -0.012845720164477825, -0.0417058989405632, 0.026905806735157967, -0.01846216432750225, 0.035159703344106674, 0.009895188733935356, -0.08971132338047028, -0.05844138562679291, 0.05753060802817345, -0.009672238491475582, 0.08576463162899017, -0.0066790152341127396, 0.044324375689029694, -0.026867857202887535, 0.01452496089041233, 0.030833521857857704, 0.02214321307837963, 0.013462390750646591, 0.013044951483607292, 0.021023718640208244, -0.0011011125752702355, -0.020188841968774796, -0.05328032746911049, 0.04531104862689972, 0.0036881635896861553, -0.016479332000017166, -0.03633612021803856, -0.0013720918213948607, -0.011337249539792538, -0.02246577851474285, 0.04834696277976036, -0.026317598298192024, 0.0802999809384346, -0.01819652132689953, 0.02178269810974598, 0.009933138266205788, -0.050623901188373566, -0.02108064293861389, 0.04470386356115341, 0.01794036664068699, 0.02081499993801117, -0.021536029875278473, 0.005948497913777828, -0.03730382025241852, -0.04364129528403282, -0.014487012289464474, -0.014600859023630619, 0.004662977531552315, -0.054077256470918655, 0.03688637912273407, 0.01846216432750225, 0.016090355813503265, -0.046753108501434326, -0.06880144774913788, 0.04603207856416702, 0.023471426218748093, -0.00902236346155405, -0.01482855249196291, -0.044324375689029694, -0.028860177844762802, -0.009283262304961681, 0.0039277165196835995, -0.004644002765417099, -0.04189564287662506, 0.03168737515807152, 0.000637423770967871, -0.0010258075781166553, -0.031288910657167435, -0.03747458755970001, -0.0682322159409523, 0.08250101655721664, -0.02362322248518467, -0.023262707516551018, 0.0923677459359169, 0.008581206202507019, -0.0780230462551117, 0.02016986720263958, -0.016355998814105988, -0.001687542418949306, -0.03591868281364441, -0.0037355998065322638, 0.0301124919205904, -0.03436277434229851, -0.026374520733952522, -0.023831941187381744, -0.028215045109391212, 0.07035735249519348, -0.024989385157823563, 0.015397787094116211, 0.02123243734240532, 0.0020516151562333107, 0.04724644497036934, 0.05001671612262726, 0.015710866078734398, -0.025843236595392227, 0.002476169029250741, 0.03643099218606949, -0.10769912600517273, -0.021991416811943054, 0.0025212334003299475, 0.0096200592815876, -0.0002960314741358161, -0.07210300862789154, -0.01823447085916996, 0.046715158969163895, -0.016318049281835556, 0.0067691439762711525, 0.012399819679558277, -0.010777502320706844, 0.01597650907933712, 0.0028058504685759544, -0.017636774107813835, -0.003678676439449191, -0.09593494981527328, -0.016450870782136917, 0.026962729170918465, -0.08470205962657928, -0.08963542431592941, 0.030264288187026978, -0.009221594780683517, 0.04033973440527916, -0.015046759508550167, -0.006631579250097275, 0.06113576143980026, 0.04637361690402031, 0.04838491231203079, 0.012418794445693493, -0.03772125765681267, -0.02237090654671192, -0.03988434746861458, 0.028385816141963005, 0.012722386047244072, 0.009847752749919891, -0.0009516885620541871, -0.06804247200489044, -0.020340638235211372, -0.006095550488680601, -0.032579176127910614, 0.049067992717027664, -0.04967517778277397, 0.006043370347470045, -0.027152474969625473, 0.006247346289455891, -0.019410887733101845, -0.062046535313129425, -0.039391010999679565, 0.028252994641661644, 0.02094782143831253, 0.027019653469324112, 0.04641156643629074, -0.07817483693361282, 0.009178902953863144, 0.0046890671364963055, 0.033679693937301636, -0.018092162907123566, 0.0345335453748703, 0.017987802624702454, -0.011887509375810623, -0.010796476155519485, 0.005749266128987074, -0.00028565479442477226, 0.04508335515856743, -0.046715158969163895, -0.019714480265975, -0.007632482796907425, 0.020796025171875954, -0.04937158524990082, 0.02923966757953167, -0.06940863281488419, 0.044324375689029694, -0.010227242484688759, 0.022389881312847137, 0.025957083329558372, 0.005768240429461002, 0.026374520733952522, -0.006958888843655586, -0.034514572471380234, 0.08204562962055206, 0.010843913070857525, 0.03673458471894264, -0.009254800155758858, 0.05809984356164932, -0.016583692282438278, -0.04075717180967331, 0.01058775745332241, -0.046753108501434326, -0.010227242484688759, -0.03007454425096512, 0.004475604277104139, 0.024192456156015396, 0.024382201954722404, 0.03950485959649086, -0.03813869506120682, -0.01593855954706669, 0.02265552431344986, 0.03563406690955162, -0.048688504844903946, 0.008301332592964172, -0.007376327179372311, 0.0015926699852570891, -0.06367833912372589, -0.011669302359223366, 0.03639304265379906, 0.04637361690402031, -0.04944748431444168, -0.08143845200538635, 0.00714863371104002, 0.024552971124649048, -0.04599412903189659, -0.0009629546548239887, -0.011802123859524727, -0.014012650586664677, 0.006161960773169994, 0.04838491231203079, -0.0361463762819767, 0.027228372171521187, 0.039808448404073715, -0.001299751573242247, -0.031061217188835144, 0.06720758974552155, 0.018680371344089508, -0.003337135771289468, 0.031478654593229294, 0.011972893960773945, -0.026867857202887535, -0.046335671097040176, -0.01871832087635994, 0.000842585286591202, 0.04967517778277397, 0.02104269340634346, 0.03901152312755585, -0.04022588953375816, 0.06352654099464417, -0.0063754236325621605, 0.014012650586664677, -0.01823447085916996, -0.050396207720041275, 0.0313648097217083, 0.0003314603818580508, 0.02178269810974598, -0.030681727454066277, 0.03646894171833992, 0.06443732231855392, -0.0003614044690039009, -0.036810483783483505, -0.017513440921902657, 0.03563406690955162, 0.03360379487276077, 0.047170545905828476, -0.0020326406229287386, -0.020739100873470306, -0.01816806010901928, -0.005388751160353422, 0.011963406577706337, 0.00499503081664443, 0.005668624769896269, 0.052559297531843185, -0.04959927871823311, -0.019543709233403206, -0.04443822056055069, 0.011878021992743015, -0.037740230560302734, -0.04424847662448883, 0.019116783514618874, 0.001093404134735465, 0.07631534337997437, 0.008927490562200546, -0.037740230560302734, -0.017285747453570366, -0.01988525129854679, 0.015113169327378273, -0.028158120810985565, 0.03660176321864128, -0.009534673765301704, 0.02946736104786396, 0.03999819606542587, 0.050396207720041275, -0.0015606506494805217, -0.08439847081899643, -0.039163317531347275, -0.02459092065691948, -0.035254575312137604, -0.04075717180967331, 0.07510097324848175, 0.009601084515452385, -0.012997515499591827, 0.001991134136915207, -0.019866276532411575, -0.028385816141963005, 0.02362322248518467, 0.023509375751018524, 0.01675446145236492, -0.00208600633777678, -0.01620420254766941, 0.06789067387580872, 0.006802349351346493, -0.011631353758275509, 0.04402078315615654, -0.017836006358265877, 0.0025615543127059937, 0.04724644497036934, 0.021517055109143257, -0.036127399653196335, 0.007665688171982765, -0.03889767453074455, -0.02514117956161499, -0.026810934767127037, -0.008676079101860523, -0.017086515203118324, -0.02536887302994728, 0.05438084527850151, 0.0009665123652666807, 0.011612378992140293, 0.026355545967817307, -0.050813645124435425, -0.015027784742414951, -0.08530924469232559, 0.058820873498916626, -0.03684843331575394, 0.04701875150203705, -0.035159703344106674, -0.01581522449851036, 0.007902869023382664, 0.006361193023622036, 0.05487418174743652, 0.017674723640084267, 0.012494692578911781, -0.03912536799907684, 0.043034110218286514, -0.00094101537251845, 0.03834741562604904, 0.017703184857964516, 0.0022271291818469763, 0.0021192117128521204, -0.041554100811481476, -0.022674499079585075, -0.04466591402888298, -0.027380168437957764, 0.04189564287662506, 0.038195617496967316, -0.047170545905828476, 0.023357579484581947, -0.007793765980750322, 0.03307251259684563, 0.010862886905670166, -0.05088954418897629, -0.06648655980825424, 0.006987350527197123, -0.04880234971642494, 0.04796747490763664, -0.006223627831786871, -0.0265263170003891, 0.06902914494276047, -0.0027275809552520514, 0.007419019937515259, -0.07396250218153, 0.03085249662399292, -0.029846850782632828, -0.021422183141112328, -0.011384685523808002, -0.027095550671219826, 0.05271109193563461, -0.06804247200489044, 0.0025615543127059937, -0.025198103860020638, -0.009074542671442032, 0.021991416811943054, 0.09616263955831528, 0.006816580425947905, 0.01794036664068699, 0.007110684644430876, 0.016450870782136917, 0.033224307000637054, -0.036677662283182144, 0.025160154327750206, -0.0530526340007782, 0.025520669296383858, 0.02620375156402588, -0.035102780908346176, -0.027285296469926834, 0.024875536561012268, -0.03337610140442848, -0.019809352234005928, 0.01627061329782009, 0.02591913379728794, -0.013443415984511375, 0.03973255306482315, 0.02656426653265953, -0.10155139118432999, 0.004022588953375816, 0.019904224202036858, -0.004748362582176924, -0.003536367788910866, -0.022313984110951424, -0.04144025593996048, 0.0160998422652483, 0.0005659730522893369, -0.04876440390944481, 0.006095550488680601, -0.017987802624702454, -0.04550079256296158, -0.024742716923356056, 0.022959114983677864, -0.03252224996685982, 0.06576552987098694, -0.09593494981527328, 0.019467812031507492, 0.04872645437717438, 0.009444545023143291, -0.01617574132978916, 0.014809577725827694, 0.06993991881608963, -0.05024440959095955, -0.03295866400003433, -0.0401499904692173, 0.03927716612815857, -0.03946691006422043, 0.025938108563423157, -0.02197244204580784, -0.02311091125011444, 0.058555230498313904, -0.0059817032888531685, -0.031478654593229294, 0.07343122363090515, 0.014316242188215256, -0.034097131341695786, -0.032674048095941544, -0.0019318388076499104, 0.027987351641058922, -0.008595437742769718, 0.04872645437717438, 0.007831715047359467, 0.012969054281711578, -0.014325728639960289, 0.053621869534254074, -0.005459905136376619, -0.0026255929842591286, -0.03794895112514496, 0.02430630289018154, 0.015283940359950066, 0.05593675374984741, 0.00007056132744764909, 0.04751208797097206, -0.037095099687576294, 0.04364129528403282, 0.015568557195365429, 0.006048114039003849, 0.01691574417054653, 0.04770183190703392, -0.062501922249794, 0.0014302011113613844, -0.0019555569160729647, 0.031934041529893875, 0.03320533037185669, -0.03815767168998718, -0.0010228428291156888, -0.009534673765301704, -0.04189564287662506, 0.06690400093793869, 0.03168737515807152, -0.04185769334435463, -0.03424892947077751, -0.007357352878898382, -0.05217980593442917, 0.014041111804544926, -0.01068262942135334, -0.025065282359719276, -0.030548905953764915, -0.026412470266222954, 0.06409578025341034, 0.02058730646967888, -0.0023160718847066164, -0.0329207144677639, -0.026051955297589302, 0.01429726742208004, -0.008173255249857903, 0.02762683667242527, 0.014354190789163113, -0.023167835548520088, -0.029448386281728745, 0.026716060936450958, -0.09047029912471771, -0.0065129888243973255, 0.025482719764113426, 0.07809893786907196, -0.08083126693964005, 0.02601400576531887, 0.002184436423704028, -0.03030223771929741, 0.000697312003467232, 0.03872690349817276, -0.020985769107937813, 0.034875087440013885, 0.016223177313804626, -0.010843913070857525, -0.013215722516179085, -0.048650555312633514, -0.026184776797890663, -0.004653490148484707, -0.016384460031986237, 0.023604247719049454, -0.013462390750646591, -0.004852721933275461, 0.04796747490763664, -0.039163317531347275, 0.062236279249191284, -0.029182743281126022, -0.05411520600318909, -0.034969959408044815, -0.022541677579283714, -0.005393494851887226, 0.08614411950111389, 0.014145471155643463, 0.01836729235947132, 0.018576011061668396, 0.018889090046286583, 0.048650555312633514, 0.056657783687114716, -0.002803478855639696, -0.020340638235211372, 0.004584707785397768, -0.01674497500061989, 0.01668805070221424, -0.03155455365777016, -0.05521572381258011, -0.062008585780858994, 0.010284165851771832, 0.05073774605989456, -0.06299526244401932, -0.012371358461678028, -0.029543258249759674, -0.020701153203845024, -0.04276846721768379, 0.04273051768541336, -0.041288457810878754, 0.0076087648048996925, 0.0066031175665557384, 0.05559521168470383, -0.009610571898519993, 0.0546085424721241 ]
24,420
okta_jwt_verifier.jwt_utils
parse_token
Parse JWT token, get headers, claims and signature. Return: tuple (headers, claims, signing_input, signature)
@staticmethod def parse_token(token): """Parse JWT token, get headers, claims and signature. Return: tuple (headers, claims, signing_input, signature) """ headers, payload, signing_input, signature = jws._load(token) claims = json.loads(payload.decode('utf-8')) return (headers, claims, signing_input, signature)
(token)
[ 0.025455381721258163, -0.01876036636531353, -0.01856345310807228, 0.042676251381635666, -0.004327593836933374, -0.04972929134964943, 0.003452677046880126, 0.0532379075884819, -0.023038731887936592, 0.05685393512248993, 0.03734172135591507, 0.05227125063538551, 0.04092194512486458, -0.005043638404458761, -0.018017470836639404, 0.0045088427141308784, 0.062152665108442307, 0.022770214825868607, -0.0051510450430214405, 0.01747148670256138, -0.04142317548394203, -0.027245493605732918, -0.013828609138727188, 0.059216879308223724, -0.021499237045645714, 0.009917216375470161, 0.009809809736907482, -0.014338791370391846, 0.03823677822947502, -0.028981901705265045, -0.012933554127812386, -0.021463433280587196, 0.059539102017879486, 0.03549790754914284, -0.011564118787646294, -0.03716270998120308, -0.0006662570522166789, -0.011528316885232925, -0.1386978179216385, 0.034423839300870895, -0.04894164204597473, -0.023575766012072563, 0.03845158964395523, -0.04593425616621971, -0.028015241026878357, 0.01707766205072403, -0.009970920160412788, 0.055600855499506, -0.014276137575507164, -0.0005733949947170913, 0.024810941889882088, 0.017122413963079453, -0.017919013276696205, -0.021696148440241814, -0.041709594428539276, -0.007245475426316261, 0.04969348758459091, 0.03372569754719734, -0.001278810785152018, 0.05663911998271942, 0.006292241159826517, -0.019243696704506874, 0.027621416375041008, 0.02210787497460842, 0.016952354460954666, -0.006726343184709549, 0.012799295596778393, -0.021839357912540436, -0.02042516879737377, -0.01601254567503929, 0.005526968743652105, -0.008507504127919674, -0.01990603655576706, 0.02642204239964485, 0.020228257402777672, -0.03769974410533905, -0.05871564894914627, -0.045504629611968994, -0.013748054392635822, -0.006856126245111227, 0.02139182947576046, -0.019601717591285706, -0.05792799964547157, 0.014956379309296608, 0.03578432276844978, 0.052414458245038986, 0.031094232574105263, -0.046041663736104965, -0.1031104102730751, 0.05875145271420479, -0.042497240006923676, 0.005697029177099466, -0.034262727946043015, 0.030825715512037277, -0.02305663377046585, -0.03431643173098564, -0.023146139457821846, 0.011975844390690327, -0.08578213304281235, 0.020031346008181572, -0.03182817995548248, 0.06698596477508545, -0.1611100137233734, 0.04332069307565689, 0.007751181721687317, -0.009326479397714138, -0.030843617394566536, -0.03623185306787491, 0.046972520649433136, -0.02815845049917698, -0.04224662482738495, -0.0405639223754406, 0.004976509138941765, 0.03635716065764427, 0.0619378499686718, -0.041924405843019485, 0.06061316654086113, 0.029160913079977036, -0.029143011197447777, -0.0014276137808337808, 0.053595930337905884, -0.020980104804039, 0.03963306173682213, -0.0033497456461191177, 0.03549790754914284, -0.01717611774802208, 0.051662612706422806, -0.05649591237306595, 0.06122180446982384, 0.0065786587074398994, -0.0055538201704621315, 0.051662612706422806, 0.021731950342655182, -0.024900447577238083, -0.03259792551398277, -0.04969348758459091, 0.024721436202526093, -0.004567021504044533, -0.014481999911367893, -0.002220856724306941, 0.002086598426103592, 0.030825715512037277, -0.00890580378472805, -0.04486018791794777, -0.10167831927537918, 0.005934218876063824, -0.008552256971597672, 0.009559194557368755, 0.004819874651730061, -0.027800427749753, 0.018670860677957535, -0.03002016618847847, 0.04514660686254501, -0.034960873425006866, 0.031774476170539856, -0.06365635991096497, 0.006802422925829887, 0.025598591193556786, -0.016576429829001427, -0.009165369905531406, 0.0027053055819123983, 0.03243681788444519, -0.0405639223754406, -0.02210787497460842, 0.02590291015803814, 0.04357130825519562, 0.096952423453331, -0.006560757756233215, -0.04357130825519562, -0.0619378499686718, 0.00326247769407928, 0.05137619376182556, -0.02853437326848507, 0.015448660589754581, -0.023002929985523224, -0.007988371886312962, -0.019243696704506874, 0.058250222355127335, -0.009075864218175411, -0.015744028612971306, 0.0033944984897971153, -0.008811823092401028, 0.0021928863134235144, -0.014696813188493252, 0.023343050852417946, 0.06745139509439468, 0.005840238183736801, 0.031076332554221153, 0.027334999293088913, 0.005607523489743471, 0.009738205000758171, -0.015126440674066544, -0.021875159814953804, -0.0033027552999556065, -0.032544221729040146, -0.007858588360249996, 0.020675785839557648, 0.023164039477705956, -0.06999335438013077, -0.0427478589117527, -0.0064802030101418495, 0.0017889924347400665, -0.05334531515836716, -0.009997771121561527, -0.003195348661392927, -0.00956814456731081, -0.007563220337033272, 0.05212803930044174, -0.060505762696266174, -0.0023875609040260315, -0.00309689249843359, -0.023718973621726036, -0.012020597234368324, 0.053918153047561646, 0.018867772072553635, -0.043642912060022354, -0.01756994239985943, -0.003721193876117468, 0.053918153047561646, -0.06419339030981064, 0.08685620129108429, 0.00819423422217369, -0.014866874553263187, -0.02683376707136631, 0.043821923434734344, 0.03769974410533905, -0.00034991081338375807, -0.03342137858271599, -0.0795525461435318, -0.04657869413495064, 0.020890599116683006, -0.052987292408943176, 0.05721195787191391, -0.011232947930693626, -0.06519585102796555, -0.010275239124894142, 0.056388504803180695, -0.0211770161986351, 0.04543302580714226, -0.00041983704431913793, 0.040814537554979324, -0.0276035163551569, -0.014329840429127216, 0.040456514805555344, -0.0007652725907973945, 0.03991948068141937, 0.02891029790043831, -0.004784072283655405, -0.007003810256719589, 0.0006763263954780996, -0.07310814410448074, 0.05212803930044174, 0.010830173268914223, 0.031774476170539856, -0.03231151029467583, -0.0619378499686718, -0.0016670410986989737, 0.013479538261890411, 0.058071210980415344, -0.033851005136966705, 0.03709110617637634, -0.03290224447846413, 0.057104550302028656, 0.0020452020689845085, -0.03513988479971886, -0.004560308530926704, 0.004128444008529186, 0.053023096174001694, 0.024542424827814102, -0.03544420376420021, 0.05126878619194031, -0.04142317548394203, -0.002432313747704029, -0.05782059580087662, 0.020496774464845657, -0.052056435495615005, -0.0175162386149168, 0.016039397567510605, 0.02099800482392311, 0.0439293310046196, -0.02925041876733303, -0.06959952414035797, 0.029322022572159767, 0.036697279661893845, 0.007021711673587561, 0.021875159814953804, -0.001483554719015956, -0.006516004912555218, -0.012217509560286999, -0.016889700666069984, -0.006860601250082254, -0.01530545111745596, 0.01620945706963539, -0.0005602489109151065, 0.03394050896167755, 0.01840234361588955, -0.03283064067363739, -0.050194721668958664, 0.05850083753466606, -0.009630798362195492, 0.01586933620274067, 0.09236974269151688, 0.01369435153901577, -0.06508844345808029, 0.029143011197447777, 0.01794586516916752, -0.023325148969888687, 0.032186198979616165, -0.040062692016363144, 0.020890599116683006, -0.01840234361588955, 0.0284985713660717, -0.011904239654541016, 0.009451787918806076, -0.008095778524875641, -0.017149265855550766, -0.027281295508146286, 0.04339229688048363, 0.05567245930433273, 0.024864645674824715, 0.04500339552760124, -0.023307248950004578, 0.048333004117012024, 0.035372599959373474, 0.06601930409669876, -0.0779772475361824, -0.06720077991485596, -0.02192886359989643, -0.01575297862291336, 0.053202107548713684, -0.06677114963531494, 0.01547551155090332, 0.007361832540482283, 0.0021749851293861866, -0.029160913079977036, 0.0202819611877203, -0.01985233463346958, -0.003244576742872596, -0.03394050896167755, -0.02550908550620079, 0.0005451448378153145, -0.11886338889598846, 0.020854797214269638, 0.0469009168446064, -0.029160913079977036, -0.05642430856823921, 0.011179245077073574, -0.012342817150056362, 0.0328485406935215, -0.04414414241909981, -0.02398749068379402, -0.00992616731673479, 0.09179690480232239, 0.09365861862897873, 0.032955948263406754, -0.022447995841503143, -0.051483601331710815, -0.015681374818086624, 0.010964431799948215, 0.015779830515384674, 0.03544420376420021, 0.02248379774391651, -0.02515106275677681, -0.005325580947101116, -0.005025737453252077, -0.041530583053827286, 0.0028171876911073923, 0.014562555588781834, 0.026332536712288857, -0.008238987065851688, -0.013211021199822426, 0.024506622925400734, -0.05871564894914627, -0.00005401800444815308, -0.008552256971597672, 0.04686511307954788, -0.008963982574641705, 0.0364108644425869, -0.10303880274295807, -0.023486260324716568, -0.021517137065529823, 0.030306583270430565, -0.003974047023802996, 0.039883680641651154, 0.020890599116683006, 0.013076762668788433, -0.0753994882106781, -0.018241234123706818, -0.0021179253235459328, 0.0532379075884819, -0.05570826306939125, -0.0018885673489421606, -0.01520699542015791, 0.018491849303245544, -0.04840460792183876, 0.028784988448023796, -0.05760578066110611, 0.010275239124894142, 0.004063552711158991, 0.01471471507102251, 0.044000934809446335, -0.024864645674824715, -0.001886329730041325, 0.009433886036276817, -0.048333004117012024, 0.041387371718883514, -0.020729487761855125, -0.013837560079991817, -0.026690559461712837, 0.005321105942130089, 0.06061316654086113, -0.04564783722162247, 0.011143442243337631, -0.06859706342220306, 0.01808907464146614, -0.004672190640121698, 0.03467445448040962, 0.060505762696266174, 0.014840022660791874, 0.030127571895718575, -0.017856359481811523, -0.009630798362195492, 0.015797732397913933, 0.021696148440241814, -0.08184389024972916, 0.03488926962018013, -0.015636621043086052, 0.012468124739825726, -0.013810708187520504, -0.04303427413105965, 0.018250184133648872, 0.028033142909407616, -0.026386240497231483, -0.0577847920358181, 0.009174319915473461, 0.03173867240548134, -0.053381118923425674, 0.0009716947679407895, -0.012656087055802345, 0.004757220856845379, -0.00013244026922620833, 0.07912291586399078, -0.029966462403535843, -0.0017341702478006482, 0.033242367208004, -0.023307248950004578, -0.04203181341290474, 0.04296267032623291, -0.002210787497460842, -0.045110803097486496, -0.0013671974884346128, 0.013828609138727188, 0.016853896901011467, -0.057104550302028656, 0.038200974464416504, -0.017480436712503433, 0.07121062278747559, 0.04213922098278999, 0.06061316654086113, -0.034065816551446915, 0.04514660686254501, 0.012933554127812386, 0.028856594115495682, -0.017560992389917374, -0.006520480383187532, 0.014222433790564537, 0.0048691025003790855, 0.036142345517873764, -0.01509958878159523, -0.009621848352253437, 0.06823904067277908, 0.01782950758934021, -0.04876263067126274, -0.030145473778247833, 0.0461132675409317, 0.02833746187388897, 0.057140350341796875, 0.005473265424370766, -0.010400546714663506, -0.011241898871958256, -0.03390470892190933, -0.012360718101263046, -0.03288434445858002, 0.019189992919564247, 0.0066413129679858685, -0.0032110121101140976, 0.009997771121561527, -0.08127105236053467, 0.03642876446247101, -0.04296267032623291, -0.0338331013917923, 0.05914527550339699, 0.010570607148110867, -0.0011456712381914258, 0.035372599959373474, 0.005880515556782484, 0.02831955999135971, 0.01295145507901907, 0.031201640143990517, 0.007912292145192623, 0.008185284212231636, -0.03397631272673607, 0.004891478922218084, -0.026350438594818115, -0.010892827063798904, -0.0018729039002209902, -0.038021963089704514, -0.0354263037443161, 0.003083466552197933, -0.0461132675409317, -0.03916763514280319, 0.07504146546125412, -0.03437013551592827, -0.009782957844436169, -0.010436348617076874, 0.00803312472999096, -0.004323118831962347, 0.047151532024145126, -0.030252881348133087, 0.030539298430085182, -0.005934218876063824, -0.04145897552371025, 0.04783177375793457, -0.019369004294276237, -0.016254210844635963, 0.04582684859633446, -0.03755653277039528, 0.0026180376298725605, 0.01741778291761875, 0.0009582689381204545, -0.024094898253679276, 0.0037100056651979685, -0.05495641753077507, 0.01369435153901577, -0.039131831377744675, -0.01520699542015791, -0.020192455500364304, -0.016827046871185303, 0.012468124739825726, 0.014338791370391846, -0.008574632927775383, -0.042282428592443466, -0.06512425094842911, 0.010346842929720879, -0.07604392617940903, 0.07804885506629944, -0.05782059580087662, 0.004488703794777393, -0.029966462403535843, 0.009899315424263477, -0.005361383315175772, -0.020228257402777672, -0.009125092066824436, 0.007697478402405977, -0.0018482898594811559, -0.006775571033358574, 0.01424928568303585, -0.07396739721298218, 0.0014634159160777926, 0.0029872481245547533, 0.011698377318680286, -0.015985693782567978, -0.026905372738838196, 0.04310587793588638, -0.06877607852220535, -0.020962202921509743, -0.014302989467978477, 0.05502802133560181, -0.09902895241975784, 0.018456047400832176, 0.018115926533937454, 0.005643325857818127, 0.04221082478761673, 0.002915643621236086, -0.008534355089068413, 0.01689865067601204, 0.017981667071580887, 0.05438357964158058, 0.029769551008939743, 0.0056657022796571255, 0.0581786148250103, 0.037449128925800323, 0.00763930007815361, -0.05932428687810898, 0.008176333270967007, -0.005025737453252077, -0.03769974410533905, -0.0307720135897398, 0.007473714649677277, 0.04278365895152092, -0.05932428687810898, 0.01059745904058218, 0.029608439654111862, 0.017507288604974747, 0.005464314483106136, 0.028247956186532974, 0.023128237575292587, 0.03377940133213997, -0.029859056696295738, -0.01547551155090332, 0.041960209608078, -0.006310142111033201, 0.035175684839487076, -0.0360170379281044, 0.0431416817009449, -0.006301191635429859, -0.03848739340901375, -0.008046549744904041, 0.006377271376550198, -0.011018134653568268, -0.00740658538416028, -0.023790579289197922, -0.007178346160799265, 0.007840687409043312, 0.055815670639276505, 0.07035136967897415, -0.042855262756347656, -0.03769974410533905, 0.041029348969459534, 0.005276353098452091, 0.04375031962990761, -0.01501903310418129, -0.05667492374777794, 0.0309689249843359, 0.029125111177563667, -0.03390470892190933, 0.02438131533563137, -0.030843617394566536, -0.02550908550620079, -0.00021747054415754974, 0.019744927063584328, -0.030306583270430565, 0.0738241896033287, -0.08313276618719101, 0.014625209383666515, 0.07454023510217667, 0.0021268760319799185, -0.027800427749753, 0.0283016599714756, 0.031273242086172104, -0.018903575837612152, -0.007710904348641634, -0.041029348969459534, 0.0028127122204750776, -0.023736875504255295, 0.02404119446873665, -0.03626765310764313, -0.017032908275723457, 0.06920570135116577, 0.012163805775344372, -0.009979870170354843, 0.042855262756347656, -0.019780728965997696, 0.035945434123277664, -0.02423810586333275, -0.046614497900009155, 0.011492514051496983, 0.003092417260631919, 0.018330739811062813, -0.014392494224011898, 0.022555401548743248, -0.0009532342664897442, 0.015824584290385246, 0.03623185306787491, -0.04160218685865402, -0.05191322788596153, -0.033492982387542725, 0.031237442046403885, 0.031255342066287994, -0.031971387565135956, 0.06755880266427994, 0.014929528348147869, 0.05463419482111931, 0.00627881521359086, 0.004828825127333403, 0.00326247769407928, 0.04722313582897186, -0.049228060990571976, 0.04256884753704071, 0.032186198979616165, 0.05406136065721512, 0.009272776544094086, 0.02962634153664112, -0.02123071998357773, -0.0389886237680912, -0.004918330814689398, 0.08456485718488693, 0.03526519238948822, -0.02307453379034996, -0.016827046871185303, 0.007782508619129658, -0.06641312688589096, 0.006260914262384176, 0.008051025681197643, -0.00787648931145668, 0.030306583270430565, -0.017587842419743538, 0.035354696214199066, 0.024345513433218002, 0.020299861207604408, -0.04020589962601662, -0.03698369860649109, 0.0012295827036723495, -0.014652060344815254, -0.001963528338819742, -0.013193120248615742, 0.0309689249843359, -0.008852099999785423, -0.003369884565472603, -0.04514660686254501, -0.023593666031956673, 0.004904904868453741, 0.039310842752456665, -0.029608439654111862, 0.054490987211465836, 0.020335664972662926, -0.09494750201702118, 0.03589173033833504, 0.047008320689201355, 0.012441273778676987, -0.0003507499350234866, -0.000217890104977414, 0.030324485152959824, 0.05592307448387146, -0.03454914689064026, -0.036661479622125626, 0.0025799977593123913, 0.0283016599714756, -0.008001797832548618, -0.020335664972662926, -0.01164467353373766, 0.03653617203235626, -0.053739141672849655, 0.05667492374777794, -0.023593666031956673, -0.029536835849285126, -0.015242797322571278, 0.019010981544852257, 0.023181941360235214, 0.07171186059713364, 0.022573303431272507, 0.03884541615843773, -0.016119951382279396, 0.05721195787191391, 0.0066994912922382355, 0.02756771445274353, 0.010785420425236225, -0.03655407205224037, -0.0007887677638791502, 0.03000226430594921, 0.011877388693392277, -0.00029452925082296133, -0.03095102310180664, -0.06086378172039986, -0.029769551008939743, 0.06086378172039986, -0.047724366188049316, -0.008212135173380375, -0.046435486525297165, -0.017032908275723457, -0.0364108644425869, 0.056173693388700485, -0.05667492374777794, -0.002555383834987879, -0.046256475150585175, 0.027657218277454376, 0.022268984466791153, 0.011134492233395576 ]
24,421
okta_jwt_verifier.jwt_utils
verify_claims
Verify claims are present and valid.
@staticmethod def verify_claims(claims, claims_to_verify, audience, issuer, leeway=LEEWAY): """Verify claims are present and valid.""" # Check if required claims are present, because library "jose" doesn't raise an exception for claim in claims_to_verify: if claim not in claims: raise JWTValidationException(f'Required claim "{claim}" is not present.') # Overwrite defaults in python-jose library options = {'verify_aud': 'aud' in claims_to_verify, 'verify_iat': 'iat' in claims_to_verify, 'verify_exp': 'exp' in claims_to_verify, 'verify_nbf': 'nbf' in claims_to_verify, 'verify_iss': 'iss' in claims_to_verify, 'verify_sub': 'sub' in claims_to_verify, 'verify_jti': 'jti' in claims_to_verify, 'leeway': leeway} # Validate claims jwt._validate_claims(claims, audience=audience, issuer=issuer, options=options)
(claims, claims_to_verify, audience, issuer, leeway=120)
[ 0.016955865547060966, -0.04383319243788719, 0.013103478588163853, 0.09753421694040298, -0.03975734859704971, -0.05291445553302765, 0.01623186655342579, -0.011414148844778538, -0.041044458746910095, 0.0417952686548233, -0.018099961802363396, 0.019896550104022026, 0.07794156670570374, 0.0074008735828101635, -0.006457887589931488, -0.012593998573720455, 0.05062626302242279, 0.015472115948796272, 0.061781205236911774, -0.02588517963886261, 0.0017608357593417168, 0.04111596196889877, 0.005197593942284584, 0.053879790008068085, -0.05337924510240555, 0.0333218052983284, -0.00619867816567421, 0.0066724056378006935, 0.027833718806505203, 0.016768163070082664, 0.0008111464558169246, -0.004113831091672182, 0.07543885707855225, 0.02179145999252796, 0.031659290194511414, -0.02407965250313282, 0.034054744988679886, -0.00942985713481903, -0.0698971375823021, -0.0007966217817738652, -0.032535240054130554, 0.025116490200161934, 0.10196758806705475, -0.005751765798777342, -0.027351053431630135, 0.03914954885840416, 0.021505435928702354, 0.07987222820520401, -0.017822876572608948, 0.016321249306201935, 0.03367933630943298, -0.04908888414502144, 0.050268735736608505, 0.012576121836900711, -0.012817454524338245, 0.0013910155976191163, 0.015373795293271542, 0.029299592599272728, 0.037254638969898224, 0.03707587346434593, -0.004024448338896036, -0.032964278012514114, 0.021004894748330116, -0.035234592854976654, 0.048945873975753784, 0.030032530426979065, -0.013890044763684273, 0.00019398801669012755, 0.0002631198149174452, -0.011432025581598282, 0.013979427516460419, -0.043332651257514954, -0.01595478132367134, 0.04122322052717209, 0.008978474885225296, -0.041938282549381256, -0.07182779908180237, 0.017885444685816765, -0.01169123500585556, -0.014086686074733734, 0.06460569053888321, -0.040615420788526535, -0.04819506034255028, -0.04254608228802681, 0.06814523786306381, 0.07472379505634308, 0.012468862347304821, -0.06760894507169724, 0.00039607632788829505, 0.012817454524338245, -0.05337924510240555, -0.011601852253079414, 0.023722123354673386, 0.00126476283185184, 0.009590744972229004, -0.006936084013432264, 0.019914427772164345, 0.018082085996866226, -0.022327756509184837, 0.052092138677835464, 0.021755708381533623, 0.006113764829933643, -0.06163819134235382, 0.04926764965057373, 0.02860241010785103, 0.056597016751766205, -0.019985932856798172, -0.06285379081964493, 0.048266567289829254, -0.0007312608067877591, -0.06546376645565033, -0.07665445655584335, -0.015025203116238117, -0.0067170970141887665, 0.011396272107958794, -0.013049849309027195, 0.0341620035469532, 0.02298918552696705, -0.04158075153827667, -0.0029406852554529905, 0.05069776996970177, -0.04036514833569527, 0.02134454809129238, -0.032481610774993896, 0.062031473964452744, -0.028924185782670975, -0.004813249222934246, 0.02179145999252796, 0.026707500219345093, 0.0038076958153396845, -0.005720481742173433, 0.028924185782670975, -0.028530903160572052, 0.004449015483260155, -0.010663336142897606, 0.029978899285197258, 0.0525926798582077, 0.011601852253079414, -0.009143833070993423, -0.017152506858110428, -0.019682032987475395, 0.0530574694275856, 0.029102951288223267, -0.052950210869312286, -0.037898194044828415, -0.0026099698152393103, -0.062174487859010696, -0.06335433572530746, -0.0022647299338132143, 0.011726987548172474, 0.032052576541900635, -0.0382557213306427, 0.010189608670771122, -0.03303578123450279, 0.008169563487172127, -0.08466313034296036, -0.017045248299837112, -0.008987413719296455, -0.05516689643263817, 0.003190956311300397, -0.041974034160375595, 0.07032617181539536, -0.04472701624035835, -0.029317470267415047, 0.0015831880737096071, 0.04118746891617775, 0.0323922298848629, 0.04200978949666023, -0.015168215148150921, 0.005640037357807159, -0.019968057051301003, 0.014703425578773022, -0.05981478840112686, 0.013773847371339798, -0.01893121935427189, -0.013148169964551926, 0.0036870292387902737, -0.015874337404966354, -0.05059051141142845, -0.014774931594729424, -0.012844269163906574, 0.01668771728873253, -0.01382747758179903, -0.05219939723610878, 0.029978899285197258, 0.060208071023225784, -0.05169885605573654, 0.037683673202991486, -0.011378396302461624, 0.0009603035287000239, -0.004670237191021442, 0.04279635474085808, 0.014694487676024437, 0.04394045099616051, -0.024901973083615303, -0.03605691343545914, 0.023900888860225677, 0.05101954564452171, -0.04630015045404434, -0.04090144485235214, 0.007928229868412018, -0.0033808941952884197, 0.005492556374520063, -0.03646807000041008, 0.014220760203897953, -0.020379217341542244, 0.0025451674591749907, 0.03548486530780792, -0.033178795129060745, -0.038792017847299576, -0.017009494826197624, -0.0026479572989046574, -0.015338041819632053, -0.004207682330161333, 0.022202620282769203, 0.016330188140273094, 0.015489992685616016, -0.007691366598010063, 0.019413884729146957, 0.028620285913348198, 0.09603258967399597, 0.017840752378106117, -0.00748131750151515, 0.01247780118137598, 0.05709755793213844, 0.05895671620965004, 0.030336430296301842, 0.01823403500020504, -0.007736057974398136, -0.03957858309149742, -0.05066201835870743, 0.03013978898525238, 0.016330188140273094, -0.016088854521512985, -0.07829909771680832, -0.02590305730700493, 0.053200479596853256, 0.023114321753382683, 0.04562084376811981, 0.024026023223996162, 0.05967177450656891, 0.014667673036456108, -0.01955689676105976, 0.013005157932639122, 0.03886352479457855, 0.04326114431023598, 0.03829147666692734, 0.004243435338139534, -0.027601324021816254, -0.0028222533874213696, -0.0563109926879406, 0.018537936732172966, 0.030497318133711815, 0.026028191670775414, -0.017179321497678757, 0.026439351961016655, -0.04143774136900902, -0.06939659267663956, 0.024258418008685112, 0.009014228358864784, 0.09917885065078735, 0.03355420008301735, 0.03224921599030495, 0.024651700630784035, -0.05934999883174896, -0.0023127729073166847, 0.008857809007167816, 0.027976730838418007, 0.04229581356048584, -0.048016294836997986, 0.019860798493027687, -0.008147217333316803, -0.0105650145560503, -0.01010916382074356, 0.012227529659867287, 0.005371890030801296, -0.03314303979277611, 0.004705990198999643, 0.007664551958441734, 0.05505963787436485, -0.04637165740132332, -0.0683240070939064, 0.016491075977683067, 0.03178442642092705, -0.0061316415667533875, -0.05616798251867294, -0.07182779908180237, -0.009465609677135944, -0.03718313202261925, -0.0001283477176912129, -0.013916859403252602, -0.06532075256109238, 0.05041174590587616, 0.00889356154948473, -0.027547694742679596, -0.01619611494243145, -0.006600899621844292, -0.07443776726722717, 0.06464144587516785, 0.011557160876691341, -0.005523840431123972, 0.0767974704504013, 0.006247838959097862, -0.09360138326883316, 0.04976819083094597, -0.036092665046453476, -0.028477273881435394, -0.013192861340939999, -0.025348884984850883, 0.016812853515148163, -0.028888434171676636, -0.027547694742679596, -0.02590305730700493, -0.036539576947689056, 0.06939659267663956, -0.026475105434656143, -0.012647627852857113, -0.0031417959835380316, 0.0007301435107365251, 0.013729155994951725, 0.05112680792808533, -0.031623538583517075, -0.007450033910572529, 0.02811974287033081, 0.005389766301959753, -0.11719837039709091, -0.010645459406077862, 0.04075843468308449, -0.005586408078670502, -0.00597075279802084, -0.07093397527933121, -0.04547782987356186, 0.04072267934679985, -0.03178442642092705, -0.023024939000606537, -0.024812590330839157, -0.025277379900217056, 0.04136623442173004, 0.005993098486214876, 0.034054744988679886, 0.004437842406332493, -0.08773788809776306, -0.00831257551908493, 0.014122439548373222, -0.07794156670570374, -0.03954283148050308, 0.0019496564054861665, -0.04075843468308449, 0.016821792349219322, 0.010976174846291542, -0.010529262013733387, 0.0382557213306427, 0.03739764913916588, 0.03153415769338608, 0.005666852463036776, 0.027958855032920837, 0.0018234036397188902, -0.04247457906603813, -0.010314743965864182, -0.006877985782921314, 0.027940979227423668, -0.024633824825286865, -0.05123406648635864, -0.059028223156929016, -0.023007063195109367, 0.0018044097814708948, 0.024580195546150208, -0.04293936863541603, -0.010743780061602592, 0.00669922074303031, 0.014605104923248291, -0.030050406232476234, -0.026850512251257896, 0.018305541947484016, 0.037004366517066956, 0.03771942853927612, -0.01735808700323105, 0.06574978679418564, -0.050304487347602844, 0.05019722878932953, -0.03829147666692734, 0.05395129323005676, -0.020593734458088875, 0.012585059739649296, 0.0016077682375907898, -0.01643744669854641, -0.05384403467178345, 0.004290361423045397, -0.013747032731771469, 0.040651172399520874, -0.029621370136737823, -0.007610922213643789, -0.00567579036578536, -0.0036959676072001457, -0.06746593117713928, 0.009814201854169369, -0.05066201835870743, 0.04369017854332924, 0.015811769291758537, -0.039900362491607666, 0.04025788977742195, 0.016812853515148163, -0.018359171226620674, -0.03384022414684296, -0.05713331326842308, 0.10218210518360138, -0.01316604670137167, 0.04819506034255028, -0.004283657763153315, 0.06721565872430801, 0.031927440315485, -0.04258183762431145, 0.009403041563928127, -0.07779855281114578, -0.0012658800696954131, -0.011726987548172474, 0.013014095835387707, -0.003269165987148881, 0.039936114102602005, -0.015096709132194519, -0.008044427260756493, -0.023972393944859505, 0.016088854521512985, 0.030979985371232033, 0.028244879096746445, 0.002764154691249132, -0.003921658266335726, -0.008486870676279068, -0.007038874085992575, -0.03739764913916588, 0.03380447253584862, 0.01227222103625536, -0.03484131023287773, -0.07322216778993607, -0.011476716957986355, 0.04640740901231766, -0.022113237529993057, 0.004898162558674812, -0.03189168497920036, -0.026046069338917732, 0.023793628439307213, 0.02949623391032219, -0.051877617835998535, -0.005943938158452511, 0.01395261287689209, 0.005434457678347826, -0.030747590586543083, 0.04522756114602089, 0.049160391092300415, 0.018537936732172966, 0.007378527894616127, 0.008196378126740456, -0.046228643506765366, -0.050948042422533035, 0.012745948508381844, 0.01821615919470787, 0.02388301119208336, 0.03986460715532303, 0.01961052604019642, -0.03337543457746506, 0.028280632570385933, -0.02500923164188862, 0.03330393135547638, -0.016044164076447487, 0.008571784943342209, 0.06889605522155762, -0.004337287042289972, 0.03914954885840416, -0.023132197558879852, 0.029549863189458847, 0.047158222645521164, -0.019449638202786446, -0.014935820363461971, -0.015686633065342903, 0.058420419692993164, 0.0033585485070943832, 0.03875626623630524, 0.039042290300130844, -0.026653870940208435, 0.012593998573720455, -0.02227412536740303, 0.045334819704294205, -0.028906309977173805, 0.03376872092485428, 0.03187381103634834, -0.02608182281255722, -0.03796969726681709, -0.045370571315288544, -0.011414148844778538, -0.03080121986567974, -0.04147349298000336, -0.010439879260957241, 0.0177781842648983, 0.057490844279527664, -0.005783049389719963, -0.04612138494849205, 0.015043079853057861, -0.02788734808564186, -0.005622161086648703, -0.015606189146637917, 0.004683644510805607, -0.00020292626868467778, -0.0036177579313516617, 0.017429593950510025, -0.014703425578773022, -0.0036468072794377804, -0.06553526967763901, -0.055703192949295044, -0.0166162122040987, -0.004357398487627506, -0.008960598148405552, 0.08201740682125092, -0.012325850315392017, -0.01169123500585556, -0.004138411022722721, 0.021076399832963943, 0.0149626350030303, 0.002784265670925379, 0.008674574084579945, 0.05069776996970177, 0.03535972908139229, -0.030264923349022865, 0.053665269166231155, 0.01663408800959587, 0.03594965487718582, 0.03671834245324135, -0.03148052841424942, 0.007512601558119059, 0.04075843468308449, -0.03280338644981384, -0.009563930332660675, -0.0006446714978665113, -0.015686633065342903, -0.005568531341850758, -0.039936114102602005, -0.02568853832781315, -0.016991619020700455, -0.017045248299837112, 0.06839551031589508, 0.006784134078770876, 0.013344811275601387, 0.00866116676479578, -0.051663100719451904, 0.04526331275701523, -0.05888520926237106, 0.02742256037890911, -0.04165225848555565, 0.0022747854236513376, 0.0017172618536278605, 0.0069182077422738075, 0.004051262978464365, -0.0059037161991000175, 0.07965771108865738, 0.01623186655342579, 0.00557746971026063, -0.031355392187833786, 0.06049409508705139, -0.012719133868813515, 0.009277906268835068, 0.0075930459424853325, 0.0013720218557864428, -0.003832275979220867, 0.052807196974754333, -0.03280338644981384, -0.016803914681077003, -0.05784837156534195, 0.0558462031185627, 0.02631421573460102, 0.008629882708191872, 0.005523840431123972, -0.0034568693954497576, 0.04776602238416672, 0.019753538072109222, -0.032964278012514114, -0.072042316198349, -0.01572238653898239, -0.049196142703294754, 0.008477932773530483, -0.009724819101393223, -0.013648712076246738, 0.022631656378507614, -0.021469684317708015, -0.034555286169052124, -0.03668259084224701, -0.03215983510017395, -0.04018638655543327, -0.039292559027671814, -0.01329118199646473, -0.05856343358755112, 0.061566684395074844, -0.07500981539487839, -0.008401957340538502, -0.05155584216117859, 0.016535768285393715, 0.05291445553302765, 0.05874219909310341, 0.029317470267415047, 0.028870556503534317, 0.011297951452434063, 0.012611874379217625, 0.024580195546150208, -0.05309322103857994, 0.034805554896593094, -0.008616475388407707, -0.0007223225547932088, 0.027082907035946846, 0.01181637030094862, -0.04958942532539368, 0.0220596082508564, -0.007172947749495506, -0.014900067821145058, 0.04708671569824219, 0.028870556503534317, 0.02000381052494049, 0.019217243418097496, 0.014891128987073898, -0.09703367203474045, -0.01823403500020504, 0.0058858394622802734, 0.04340415447950363, 0.01237054169178009, -0.04165225848555565, -0.02499135583639145, 0.0215948186814785, -0.01417606882750988, -0.07758403569459915, 0.014086686074733734, -0.03914954885840416, -0.04651466757059097, -0.04519180580973625, 0.009930399246513844, -0.029174458235502243, 0.04340415447950363, -0.10325469821691513, 0.031355392187833786, 0.06789496541023254, 0.008741611614823341, -0.017259765416383743, 0.03058670088648796, 0.022113237529993057, -0.05559593439102173, -0.004366336390376091, -0.03893502801656723, -0.007910354062914848, 0.001006112084724009, 0.014247574843466282, -0.05520264804363251, -0.011056618764996529, 0.06660786271095276, -0.009546054527163506, -0.0007200880208984017, 0.09481699019670486, 0.023096445947885513, -0.005564062390476465, 0.00466129882261157, 0.013478885404765606, 0.0323922298848629, 0.03194531425833702, 0.051663100719451904, 0.008714796975255013, 0.02045072242617607, -0.004283657763153315, 0.04837382584810257, -0.06145942583680153, 0.042188555002212524, -0.04161650687456131, 0.03224921599030495, 0.022452890872955322, 0.018377047032117844, 0.021308794617652893, 0.02584942802786827, -0.023007063195109367, 0.03553849458694458, -0.004301534034311771, 0.021487560123205185, -0.011548222973942757, 0.0010563897667452693, -0.05244966968894005, 0.00977844838052988, -0.016732409596443176, -0.01013597846031189, -0.008227662183344364, -0.04862409457564354, -0.009528177790343761, 0.0026546611916273832, -0.027333177626132965, 0.05248542129993439, 0.03173079714179039, -0.05084078386425972, -0.011628666892647743, 0.004350694362074137, -0.09989391267299652, 0.010296867229044437, 0.004194275010377169, -0.02184508927166462, -0.011834247037768364, -0.02994314767420292, 0.06653635203838348, 0.01912786066532135, 0.026725376024842262, -0.01572238653898239, 0.014935820363461971, 0.0011966086458414793, -0.02449081279337406, 0.0166162122040987, 0.0204328466206789, 0.02021832764148712, -0.017670925706624985, -0.009832078590989113, -0.07887114584445953, -0.03986460715532303, 0.04122322052717209, 0.048731353133916855, -0.07801306992769241, 0.026868388056755066, -0.026367846876382828, -0.05416581407189369, 0.013523576781153679, 0.03235647454857826, -0.04254608228802681, 0.04340415447950363, 0.047158222645521164, -0.008902499452233315, -0.05105530098080635, -0.06625033169984818, -0.052306655794382095, -0.002522821770980954, 0.022381385788321495, 0.03371509164571762, -0.04833807051181793, 0.036539576947689056, 0.00048629683442413807, -0.017277643084526062, 0.06768044829368591, -0.0530574694275856, -0.013461008667945862, -0.06549951434135437, -0.04683644324541092, 0.021970225498080254, 0.03571726009249687, 0.04562084376811981, 0.06439117342233658, 0.028012484312057495, 0.02499135583639145, 0.05788412690162659, 0.061959970742464066, -0.01271019596606493, -0.04118746891617775, 0.039292559027671814, -0.029746506363153458, 0.0003684236144181341, -0.0058947778306901455, -0.05380828306078911, -0.02522374875843525, -0.00416969507932663, 0.04994695633649826, -0.016955865547060966, 0.006623245310038328, -0.02990739420056343, -0.009626498445868492, -0.02679688297212124, 0.08666530251502991, -0.02878117375075817, 0.004044559318572283, -0.023561233654618263, 0.05759810283780098, -0.006426603998988867, 0.03818421810865402 ]
24,422
okta_jwt_verifier.jwt_utils
verify_expiration
Verify if token is not expired.
@staticmethod def verify_expiration(token, leeway=LEEWAY): """Verify if token is not expired.""" headers, claims, signing_input, signature = JWTUtils.parse_token(token) try: JWTUtils.verify_claims(claims, claims_to_verify=('exp',), audience=None, issuer=None, leeway=LEEWAY) except ExpiredSignatureError: raise JWTValidationException('Signature has expired.')
(token, leeway=120)
[ 0.07789721339941025, -0.01213094312697649, 0.02523380145430565, 0.08286478370428085, -0.0141917634755373, -0.05950281769037247, 0.005844990722835064, -0.00646593701094389, -0.02364994026720524, 0.03722075745463371, 0.02712363749742508, 0.013300841674208641, 0.07883313298225403, -0.03488096222281456, -0.0008836105116643012, -0.006276953499764204, 0.03187522292137146, 0.027627592906355858, 0.0018380898982286453, -0.013318839482963085, 0.014857705682516098, 0.030489344149827957, -0.03772471472620964, 0.011222022585570812, -0.04154038056731224, 0.04823580011725426, 0.006942895241081715, 0.021958086639642715, 0.0011288392124697566, -0.010691069066524506, -0.019600292667746544, -0.009170201607048512, 0.0789051279425621, 0.0586748905479908, 0.0006378194666467607, -0.030705325305461884, -0.030993299558758736, -0.025935741141438484, -0.11360610276460648, 0.01873636804521084, -0.020554209128022194, 0.04236831143498421, 0.028131550177931786, 0.00297424104064703, -0.02077019028365612, -0.0006040724110789597, 0.00902621354907751, 0.07400955259799957, -0.048415783792734146, 0.004625597037374973, 0.03207320719957352, -0.037976693361997604, 0.04758785665035248, -0.026061730459332466, 0.006470436230301857, 0.03437700495123863, 0.04456411674618721, 0.08459263294935226, 0.03302712365984917, 0.019924264401197433, -0.011968957260251045, -0.014416744001209736, -0.0034939455799758434, -0.022948000580072403, 0.042440302670001984, 0.04046047478914261, -0.013336838223040104, -0.006839404348284006, -0.0028819988947361708, 0.011195024475455284, 0.021526124328374863, -0.040676455944776535, -0.03866063430905342, 0.052087463438510895, -0.023019995540380478, -0.047335878014564514, -0.11101432889699936, 0.001970828277990222, -0.04568002000451088, 0.001393753569573164, 0.013408832252025604, -0.0434122197329998, -0.01428175624459982, -0.0014882453251630068, 0.04485209286212921, 0.03205520659685135, 0.020014256238937378, -0.04902772977948189, -0.039416566491127014, 0.023235976696014404, -0.025161808356642723, 0.007671831641346216, -0.022642027586698532, -0.016657549887895584, 0.009773149155080318, -0.03666280582547188, 0.017809448763728142, -0.00047414618893526495, -0.01627958193421364, 0.015181677415966988, 0.02201208285987377, 0.04935169965028763, -0.06702616065740585, 0.052231449633836746, 0.04326822981238365, 0.04236831143498421, -0.02982340194284916, -0.09639960527420044, 0.051763489842414856, -0.048307791352272034, -0.04607598856091499, -0.05568714812397957, 0.01687353104352951, -0.017980434000492096, 0.01148299966007471, 0.0010680945124477148, 0.05482322350144386, 0.042548295110464096, -0.0434122197329998, -0.043052248656749725, 0.07314562797546387, -0.034952957183122635, 0.026277711614966393, -0.03660881146788597, 0.03840865567326546, -0.042260318994522095, -0.005584013648331165, -0.02253403700888157, 0.05028761923313141, -0.025647766888141632, -0.024189893156290054, 0.0892002284526825, -0.005988978315144777, -0.003086731070652604, -0.06529831141233444, -0.036410827189683914, 0.06976192444562912, 0.043520208448171616, -0.061734624207019806, -0.031497254967689514, -0.025323795154690742, 0.05723501369357109, -0.0028774994425475597, -0.04967567324638367, -0.018988346680998802, -0.005107054952532053, -0.07782521843910217, -0.01283288188278675, 0.018241411074995995, -0.00003517076402204111, 0.04071245342493057, -0.028293535113334656, 0.0286715030670166, -0.0044771102257072926, 0.05061159282922745, -0.07325361669063568, -0.03725675493478775, 0.016999518498778343, -0.061914607882499695, 0.0017762202769517899, -0.0047335876151919365, 0.03804868459701538, -0.037652719765901566, -0.06853803247213364, 0.028347531333565712, 0.031947217881679535, 0.019384311512112617, 0.04424014687538147, -0.02773558348417282, 0.028275536373257637, 0.008175787515938282, 0.03583487868309021, -0.021976085379719734, 0.014389746822416782, -0.025125810876488686, 0.04265628382563591, 0.03201921284198761, 0.03365707024931908, -0.01997826062142849, 0.0024365377612411976, -0.023685937747359276, -0.006929396651685238, -0.022714020684361458, -0.03619484603404999, 0.037040773779153824, 0.02742961049079895, -0.031191283836960793, 0.024927828460931778, -0.026097726076841354, 0.026709673926234245, 0.01902434229850769, 0.05043160915374756, 0.018664374947547913, -0.011968957260251045, -0.033369094133377075, 0.006416440941393375, -0.016801536083221436, 0.04233231395483017, 0.01387679111212492, 0.0004980503581464291, 0.02186809480190277, 0.02158012054860592, -0.010997042059898376, -0.06036674231290817, 0.03122727945446968, -0.03043534979224205, -0.027825577184557915, 0.01853838562965393, -0.06407441943883896, 0.006074470933526754, -0.03380105644464493, -0.02631370723247528, -0.027141636237502098, 0.06346247345209122, 0.0034444499760866165, 0.006717914715409279, -0.015658635646104813, -0.0008234282722696662, 0.006438939366489649, -0.00137912982609123, 0.0649743378162384, -0.023541949689388275, -0.024315882474184036, -0.0038111680187284946, 0.08588851988315582, 0.04488809034228325, 0.05946682021021843, 0.031173285096883774, -0.018628377467393875, -0.05187148228287697, -0.042404305189847946, 0.01642356999218464, -0.009719153866171837, -0.029211455956101418, -0.04521206021308899, -0.028581511229276657, 0.08495260030031204, -0.0024815339129418135, 0.04460011422634125, 0.016189590096473694, 0.06785409152507782, -0.015145680867135525, 0.0005849490407854319, 0.015433656051754951, 0.034017037600278854, 0.04978366196155548, 0.021958086639642715, 0.0312452781945467, -0.03380105644464493, 0.008279278874397278, -0.07552142441272736, -0.0005978854023851454, 0.025719759985804558, 0.017323490232229233, 0.011707980185747147, 0.00974615104496479, -0.03133527189493179, -0.04949568957090378, 0.05943082273006439, 0.0009955383138731122, 0.08668044954538345, 0.010484087280929089, -0.003898910479620099, 0.01575762778520584, -0.04323223605751991, 0.014452741481363773, 0.029571425169706345, -0.0030889809131622314, 0.027159634977579117, -0.049387697130441666, 0.027033645659685135, -0.07321762293577194, -0.029553426429629326, -0.03326110169291496, 0.03421501815319061, 0.005471523385494947, 0.01116802729666233, -0.019402310252189636, -0.005925983656197786, 0.049243710935115814, -0.02931944653391838, -0.0774652510881424, 0.043376222252845764, 0.011195024475455284, -0.06666619330644608, 0.056191105395555496, -0.047335878014564514, 0.016459565609693527, -0.0073118628934025764, 0.014155766926705837, -0.021526124328374863, -0.015865618363022804, 0.04917171597480774, 0.008247781544923782, -0.010844055563211441, -0.004864076152443886, -0.003221719292923808, -0.051439519971609116, 0.01873636804521084, 0.019546298310160637, 0.03992052376270294, 0.09301590174436569, -0.0145967286080122, -0.08221683651208878, 0.05745099484920502, -0.013048863038420677, -0.02568376250565052, 0.03309911862015724, 0.003716676263138652, 0.0014522485435009003, -0.0016614802880212665, 0.005804494488984346, -0.05111554637551308, -0.07134578377008438, 0.06925796717405319, 0.015433656051754951, -0.011644985526800156, -0.004945069085806608, 0.010034126229584217, 0.019276320934295654, 0.02966141700744629, 0.04388017952442169, -0.00001668018740019761, 0.012859879992902279, 0.035258930176496506, -0.09834343194961548, -0.007487347815185785, 0.005943982396274805, -0.004936070181429386, 0.01784544624388218, -0.03515093773603439, -0.03182122856378555, 0.04467210918664932, -0.03484496474266052, -0.04280027374625206, -0.001311635714955628, -0.008288278244435787, -0.0014747465029358864, -0.004063146188855171, 0.021436132490634918, -0.008135291747748852, -0.06591025739908218, 0.001790844020433724, 0.011788973584771156, -0.045896001160144806, -0.05410328879952431, 0.011635986156761646, -0.010214109905064106, 0.043052248656749725, 0.018916351720690727, -0.06040273979306221, 0.050503600388765335, 0.04711989685893059, 0.05338335037231445, 0.06950994580984116, -0.026241714134812355, -0.00008992185757961124, 0.012769888155162334, -0.038588639348745346, 0.02201208285987377, 0.0036559314467012882, -0.001412876881659031, -0.040352486073970795, -0.04373618960380554, -0.014650723896920681, -0.027393614873290062, 0.04834378883242607, -0.039416566491127014, 0.012364923022687435, 0.006483935285359621, -0.013120857067406178, -0.04521206021308899, -0.009521170519292355, -0.006209459155797958, 0.0605827234685421, 0.024639854207634926, -0.014308753423392773, 0.05410328879952431, -0.021850096061825752, 0.04697590693831444, 0.015388659201562405, 0.030057381838560104, 0.017125507816672325, 0.004760585259646177, 0.04917171597480774, -0.010502085089683533, -0.03851664438843727, 0.0013318839482963085, 0.03459298610687256, -0.0024140398018062115, -0.04139639437198639, -0.01768345944583416, -0.01079006027430296, 0.013399832881987095, -0.0646863654255867, 0.021994084119796753, -0.08639247715473175, 0.008490760810673237, -0.016756540164351463, -0.008670744486153126, 0.030507342889904976, 0.07465749979019165, -0.03675279766321182, -0.05151151493191719, 0.00841426756232977, 0.05745099484920502, -0.002183434786275029, -0.011366009712219238, -0.029121464118361473, 0.028131550177931786, 0.023019995540380478, -0.06727813929319382, 0.02105816639959812, -0.052411433309316635, 0.048847746104002, 0.011294016614556313, 0.02649369277060032, -0.007122879382222891, 0.037796709686517715, -0.020068252459168434, 0.006002477370202541, -0.015721630305051804, -0.014290755614638329, 0.024189893156290054, -0.033225104212760925, 0.01752147451043129, -0.03216319903731346, 0.006996890529990196, -0.0583869144320488, -0.03326110169291496, 0.029247451573610306, 0.031803231686353683, -0.04139639437198639, -0.027303621172904968, 0.00034590737777762115, 0.00649293465539813, -0.03912859037518501, -0.01402077917009592, -0.04413215443491936, -0.020032254979014397, 0.042872264981269836, 0.022750018164515495, 0.011923961341381073, 0.027645591646432877, 0.08034500479698181, -0.01600060611963272, 0.0030484844464808702, 0.04467210918664932, 0.05327535793185234, -0.04006450995802879, 0.007230869960039854, -0.015667635947465897, -0.027303621172904968, -0.04391617327928543, 0.01904234103858471, -0.008166789077222347, 0.011195024475455284, 0.010592077858746052, 0.01663055084645748, -0.007208372000604868, -0.01999625749886036, 0.034988950937986374, 0.01723349839448929, -0.025881744921207428, 0.0118789654225111, 0.04107242077589035, 0.0004853952268604189, 0.031191283836960793, -0.004200384020805359, 0.012616900727152824, 0.028761494904756546, -0.05154750868678093, -0.053815312683582306, -0.03027336299419403, 0.022480042651295662, 0.006002477370202541, 0.052699409425258636, 0.03457498922944069, -0.001135026104748249, 0.0029337445739656687, -0.012940872460603714, 0.021958086639642715, 0.0003914659027941525, 0.010241108015179634, -0.0037301750853657722, -0.03615885227918625, -0.053671326488256454, -0.029571425169706345, -0.01142000500112772, -0.031803231686353683, -0.05903485789895058, -0.03642882779240608, 0.008301776833832264, 0.06666619330644608, 0.04107242077589035, -0.03804868459701538, -0.001532116555608809, 0.032919131219387054, 0.002546778181567788, -0.034628983587026596, -0.011581990867853165, 0.02523380145430565, 0.0008644871995784342, 0.04460011422634125, 0.03237918019294739, 0.017431480810046196, -0.058890871703624725, -0.04326822981238365, 0.019474303349852562, -0.020536210387945175, -0.00863924715667963, 0.03693278133869171, 0.03984852880239487, 0.03029136173427105, -0.011150028556585312, 0.04139639437198639, -0.008540255948901176, -0.008787734434008598, 0.03869662806391716, 0.04046047478914261, -0.0015681134536862373, -0.0016693546203896403, 0.043988168239593506, -0.057630978524684906, 0.007932809181511402, 0.017800450325012207, -0.016369573771953583, -0.024153895676136017, 0.03245117515325546, 0.008891225792467594, 0.0266196820884943, -0.006213958840817213, 0.018934350460767746, -0.023847922682762146, -0.04218832403421402, 0.004715589340776205, -0.05219545215368271, -0.03155125305056572, -0.011357010342180729, -0.03192921727895737, -0.02188609354197979, -0.042260318994522095, -0.013525822199881077, 0.03673480078577995, -0.09179200232028961, 0.039560552686452866, -0.02172410860657692, 0.03045334666967392, -0.0015591142000630498, 0.02332596853375435, 0.0016952273435890675, -0.01713450811803341, 0.056839048862457275, -0.024963825941085815, -0.014461739920079708, -0.0007092507439665496, 0.04046047478914261, -0.015928613021969795, 0.02804155834019184, -0.012553906999528408, -0.011393007822334766, -0.006542430259287357, 0.034664981067180634, -0.015883617103099823, -0.04211633279919624, -0.06036674231290817, 0.02586374804377556, 0.00678090937435627, -0.01182497013360262, 0.04110841825604439, -0.003525442909449339, -0.02505381777882576, 0.055723145604133606, -0.05892686918377876, -0.024495866149663925, 0.028095552697777748, -0.04816380515694618, 0.02015824429690838, 0.009737151674926281, -0.04697590693831444, 0.06151864305138588, -0.015658635646104813, -0.025953739881515503, -0.05327535793185234, -0.02804155834019184, -0.043052248656749725, -0.029931392520666122, -0.014866705052554607, -0.050647590309381485, 0.08293677866458893, -0.07267767190933228, -0.014470739290118217, 0.00015523648471571505, -0.005624509882181883, 0.026259712874889374, 0.04935169965028763, 0.021634114906191826, 0.013975782319903374, -0.01760246604681015, 0.05802694708108902, 0.06720614433288574, 0.005309537518769503, 0.02408190257847309, -0.021220151335000992, 0.0023847923148423433, 0.004272378049790859, 0.03309911862015724, -0.04182835668325424, 0.01015111617743969, -0.054463256150484085, -0.006326449103653431, 0.043520208448171616, -0.008747237734496593, 0.012994867749512196, 0.030669327825307846, 0.060978688299655914, -0.07602538168430328, 0.0034601986408233643, -0.00019221763068344444, 0.029103465378284454, 0.003041735151782632, -0.010673070326447487, -0.01967228576540947, 0.004461361560970545, 0.0032239691354334354, -0.058242928236722946, 0.025467781350016594, -0.022174067795276642, -0.08588851988315582, -0.0357808843255043, -0.007797820959240198, -0.023073989897966385, 0.00519254757091403, -0.06198659911751747, -0.006789908744394779, 0.044348135590553284, 0.0008403018000535667, -0.02062620408833027, 0.020086251199245453, 0.03477296978235245, -0.061626631766557693, -0.003374706022441387, -0.08387269824743271, 0.019474303349852562, -0.018754366785287857, 0.011348011903464794, -0.04420414939522743, 0.007464849855750799, 0.05593912675976753, -0.006092469207942486, 0.016900528222322464, 0.024477867409586906, 0.0012126443907618523, -0.0032622157596051693, -0.030345356091856956, -0.022390048950910568, 0.01789044216275215, 0.029733410105109215, 0.02678166702389717, -0.02379392832517624, 0.0319112204015255, -0.021004170179367065, -0.005570514593273401, 0.009089208208024502, -0.0004308374773245305, -0.0690779834985733, -0.0033882048446685076, -0.003847164800390601, -0.013705805875360966, 0.04298025742173195, 0.0305793359875679, -0.05719901621341705, 0.029409438371658325, 0.018223412334918976, 0.0507555790245533, -0.016684547066688538, -0.007550342474132776, -0.018610378727316856, 0.02631370723247528, 0.05849490314722061, 0.03826466575264931, 0.025449782609939575, -0.018448393791913986, -0.006605424452573061, -0.0187003705650568, 0.026421697810292244, 0.03837265819311142, 0.053815312683582306, -0.033189110457897186, -0.051907479763031006, -0.0052870395593345165, -0.07580939680337906, 0.005732500459998846, -0.012553906999528408, -0.03619484603404999, -0.004085644148290157, -0.046219974756240845, 0.12778887152671814, 0.018286406993865967, -0.009845142252743244, -0.034035034477710724, 0.0013532571028918028, 0.030561337247490883, -0.013390833511948586, 0.05741499736905098, -0.036860790103673935, -0.007496347185224295, -0.023109987378120422, -0.04420414939522743, -0.060042768716812134, -0.025899743661284447, 0.005728001240640879, 0.06551429629325867, -0.03556490316987038, 0.03446699678897858, 0.002225056290626526, -0.04060446470975876, -0.03295512869954109, 0.05971879884600639, -0.02741161175072193, -0.002333046868443489, 0.0193663127720356, 0.0008909223834052682, 0.007662832736968994, -0.08574452996253967, -0.0027132637333124876, -0.019240323454141617, 0.024387875571846962, 0.040532469749450684, -0.042908262461423874, 0.024009909480810165, 0.034952957183122635, 0.019078338518738747, 0.03446699678897858, -0.03522293269634247, -0.02681766450405121, -0.10388695448637009, 0.007149877026677132, 0.01052908319979906, 0.0897761806845665, 0.028887484222650528, 0.05820693075656891, -0.000024835728254402056, 0.008216284215450287, 0.09647160023450851, 0.039416566491127014, -0.06360646337270737, -0.02615172229707241, 0.006362445652484894, -0.003930407576262951, 0.001093967235647142, -0.01770145818591118, -0.042584292590618134, 0.00037037397851236165, 0.00807229708880186, 0.06436239182949066, -0.03500695154070854, 0.0097551504150033, -0.02426188625395298, 0.0118789654225111, -0.005278040189296007, 0.05410328879952431, -0.01900634542107582, -0.00016254834190476686, -0.06090669333934784, 0.016495563089847565, -0.008873227052390575, 0.052555423229932785 ]
24,423
okta_jwt_verifier.jwt_utils
verify_signature
Verify token signature using received jwk.
@staticmethod def verify_signature(token, okta_jwk): """Verify token signature using received jwk.""" headers, claims, signing_input, signature = JWTUtils.parse_token(token) jws._verify_signature(signing_input=signing_input, header=headers, signature=signature, key=okta_jwk, algorithms=['RS256'])
(token, okta_jwk)
[ 0.07166905701160431, -0.043986622244119644, -0.03165441006422043, 0.10608130693435669, -0.033007312566041946, -0.05498328059911728, -0.0020521164406090975, 0.03550497442483902, 0.0037378224078565836, 0.04901663959026337, 0.0314636193215847, 0.0233288686722517, 0.08339419960975647, -0.07791321724653244, -0.03292058780789375, -0.028584366664290428, 0.061713095754384995, 0.02053634263575077, 0.011525674723088741, 0.013841216452419758, -0.02161172404885292, 0.010120739229023457, -0.0376037061214447, 0.06067240238189697, -0.030388236045837402, 0.026364222168922424, 0.02508070133626461, 0.006885918788611889, 0.022218795493245125, -0.01562773995101452, -0.03708336129784584, -0.03673646226525307, 0.09213601797819138, 0.04627614840865135, 0.021698448807001114, -0.043813176453113556, 0.024629734456539154, -0.014058027416467667, -0.10386116057634354, 0.018992647528648376, -0.008681113831698895, 0.02442159503698349, 0.03108203038573265, -0.03297262266278267, 0.019565029069781303, 0.03909536823630333, -0.007766171358525753, 0.10476309806108475, -0.022322865203022957, -0.005346560385078192, 0.013294853270053864, -0.020085373893380165, 0.002727482933551073, -0.033683761954307556, -0.03227882832288742, 0.015107393264770508, 0.03562638908624649, 0.03363172709941864, -0.003171945456415415, 0.029260817915201187, 0.009314202703535557, -0.014222804456949234, 0.044125381857156754, 0.010337550193071365, -0.00536390533670783, 0.020241478458046913, 0.018038678914308548, -0.007558032870292664, 0.005641423165798187, 0.01667710579931736, 0.0029161085840314627, -0.029191438108682632, -0.0218718983232975, 0.034082695841789246, -0.027387570589780807, -0.04391724616289139, -0.06160902604460716, -0.012323539704084396, -0.05807067081332207, -0.013043352402746677, 0.024889906868338585, -0.03961571305990219, 0.00907137431204319, -0.012765834107995033, 0.009504996240139008, 0.044645730406045914, 0.02948630228638649, -0.018715128302574158, -0.01135222613811493, 0.012228142470121384, -0.0415930300951004, 0.018923267722129822, -0.018489645794034004, -0.03659770265221596, 0.02133420668542385, -0.021941278129816055, 0.024369560182094574, -0.028844540938735008, -0.07555431127548218, -0.0013897587778046727, -0.001180536113679409, 0.02150765433907509, -0.09650693088769913, 0.06441889703273773, 0.03992792218923569, 0.05338754877448082, -0.027942607179284096, -0.05661369860172272, 0.02948630228638649, -0.00030705862445756793, -0.010311532765626907, -0.03611204773187637, 0.026589706540107727, -0.005225146189332008, 0.0426684133708477, -0.03618142753839493, 0.05293658375740051, 0.00764042092487216, -0.06611869484186172, -0.03233086317777634, 0.08221474289894104, -0.04894725978374481, 0.05352630838751793, -0.028116054832935333, 0.02896595560014248, -0.036389563232660294, 0.06486986577510834, 0.0015144251519814134, 0.038748469203710556, -0.013147421181201935, 0.003560037352144718, 0.11093787103891373, 0.018784508109092712, 0.01414475217461586, -0.06497393548488617, -0.015168100595474243, 0.039685092866420746, 0.008642087690532207, -0.030526993796229362, -0.020362893119454384, 0.018316196277737617, 0.024647079408168793, -0.025549013167619705, -0.03614673763513565, -0.05314472317695618, 0.0021626900415867567, -0.09067904949188232, -0.025150081142783165, 0.053838517516851425, -0.0005924361757934093, 0.02641625702381134, -0.01194195169955492, 0.06903263181447983, -0.007545024156570435, 0.014456960372626781, -0.05990922823548317, 0.054532311856746674, -0.005927613936364651, -0.023693110793828964, -0.009912600740790367, 0.026797844097018242, 0.028185434639453888, -0.044229451566934586, -0.039025988429784775, 0.013069369830191135, 0.0512714758515358, 0.024785839021205902, 0.03753432631492615, -0.046241458505392075, -0.014621736481785774, 0.005988320801407099, 0.04870443046092987, -0.0263989120721817, 0.028462953865528107, 0.02350231632590294, 0.032781828194856644, 0.019825201481580734, 0.028584366664290428, -0.0004181742842774838, -0.01920078508555889, -0.0520346499979496, 0.03137689456343651, -0.02055368572473526, -0.01019879151135683, -0.009296857751905918, 0.0638638585805893, -0.020206788554787636, 0.014032010920345783, 0.004284186288714409, -0.0234849713742733, -0.020206788554787636, 0.028983300551772118, 0.017310192808508873, 0.010372240096330643, -0.015315531753003597, -0.004487988539040089, 0.037430256605148315, 0.04808001592755318, -0.04776780679821968, -0.010580378584563732, 0.03833219036459923, -0.03524480387568474, -0.054636381566524506, 0.01207203883677721, 0.02404000796377659, -0.015593050047755241, 0.012748489156365395, 0.06362102925777435, -0.05245092511177063, -0.0036099038552492857, 0.017050020396709442, -0.05661369860172272, -0.037950605154037476, 0.077358178794384, 0.016200121492147446, -0.012783179059624672, -0.023970628157258034, 0.011152760125696659, 0.009504996240139008, -0.024092042818665504, 0.07347292453050613, 0.02721412107348442, -0.0002371370792388916, -0.022305520251393318, 0.05553831532597542, 0.022045345976948738, 0.05963170900940895, 0.022756487131118774, -0.03135954961180687, -0.06726345419883728, -0.007558032870292664, -0.001746412948705256, 0.038089364767074585, 0.019963961094617844, -0.1091340035200119, -0.057029977440834045, 0.06365571916103363, -0.025392908602952957, 0.03080451302230358, -0.003477649064734578, 0.04547828435897827, -0.04710870236158371, 0.006790521554648876, 0.021247481927275658, -0.0072718420997262, 0.029156748205423355, 0.033302176743745804, 0.022097380831837654, 0.021594379097223282, 0.0014515499351546168, -0.08721007406711578, 0.008984649553894997, -0.0068772463127970695, -0.012861231341958046, -0.017258157953619957, -0.030925927683711052, -0.0032218119595199823, -0.004041357897222042, 0.06913670152425766, 0.00649999501183629, 0.04353565722703934, 0.030457615852355957, 0.03739556670188904, 0.023398246616125107, -0.05109802633523941, 0.002035855781286955, 0.015905257314443588, 0.037707775831222534, -0.00046614374150522053, -0.023311523720622063, 0.024768494069576263, -0.0781213566660881, -0.03815874457359314, -0.03028416633605957, 0.030076026916503906, -0.015827205032110214, -0.0156190674751997, 0.03881784901022911, 0.01959971711039543, 0.03632018715143204, 0.006829547695815563, -0.08394923806190491, 0.06764504313468933, 0.03725681081414223, -0.03892191872000694, 0.023432936519384384, -0.008282181806862354, -0.010632413439452648, 0.003950297366827726, -0.0509592667222023, -0.041003305464982986, -0.014942617155611515, 0.04162771999835968, -0.002475982066243887, -0.007553696632385254, 0.017414262518286705, -0.0002756210451480001, -0.0448191799223423, 0.03628549724817276, 0.0021193278953433037, 0.00914942566305399, 0.100392185151577, 0.0014667266514152288, -0.07326478511095047, 0.02400531806051731, 0.013754492625594139, 0.02282586693763733, 0.021837208420038223, -0.026242807507514954, 0.00875049363821745, -0.03697929158806801, 0.021993311122059822, -0.012392919510602951, -0.05487921088933945, 0.031186100095510483, -0.004321043845266104, 0.008819873444736004, -0.014118734747171402, 0.01866309344768524, 0.03460304066538811, 0.05057767778635025, -0.018853887915611267, -0.009843220934271812, -0.0006162853678688407, 0.0376037061214447, -0.11822272092103958, -0.029434267431497574, -0.03266041353344917, -0.01959971711039543, 0.02599998004734516, -0.0643148273229599, 0.018368231132626534, 0.06639621406793594, -0.022184105589985847, -0.035175424069166183, 0.008438285440206528, -0.02095261961221695, 0.006786185782402754, -0.045825179666280746, 0.00022643203556071967, -0.013893251307308674, -0.09463368356227875, 0.004527014680206776, 0.037291500717401505, -0.045963939279317856, -0.03331952169537544, -0.04700463265180588, -0.03999730199575424, 0.04579049348831177, -0.007211135234683752, -0.02483787201344967, 0.03269510343670845, 0.06150495633482933, 0.08797324448823929, 0.04027481749653816, 0.017726469784975052, -0.005056033376604319, 0.006088053807616234, -0.018090713769197464, 0.04603331908583641, 0.010589051060378551, 0.020362893119454384, -0.05324879288673401, -0.047420911490917206, 0.011421605944633484, -0.023953283205628395, 0.04416007176041603, -0.015003323554992676, -0.010138084180653095, 0.00634389091283083, 0.003113406477496028, -0.0008152095251716673, -0.044749800115823746, -0.008299526758491993, 0.024178767576813698, 0.03319810703396797, -0.031428929418325424, 0.019131405279040337, -0.05803598091006279, -0.024855216965079308, -0.011378243565559387, 0.04166240990161896, 0.025046011433005333, 0.026086704805493355, 0.004256000742316246, -0.023953283205628395, -0.10809331387281418, -0.003961137495934963, 0.0200333409011364, 0.03040558099746704, -0.03739556670188904, -0.03767308592796326, 0.005637086927890778, 0.025323528796434402, -0.02681518904864788, 0.021819863468408585, -0.09366236627101898, 0.00630052899941802, -0.013433611951768398, 0.018090713769197464, 0.013147421181201935, 0.0020748816896229982, -0.027855882421135902, -0.025965290144085884, -0.02468176931142807, 0.0621640607714653, -0.02268710732460022, 0.008841554634273052, -0.02853233367204666, -0.006421943195164204, 0.006517339963465929, -0.05113271623849869, 0.009713134728372097, -0.04416007176041603, -0.013919268734753132, 0.011690450832247734, 0.045963939279317856, 0.02214941568672657, 0.005255499389022589, 0.02790791727602482, -0.0011902926489710808, -0.00015285178960766643, 0.03427349030971527, 0.042494963854551315, -0.037013981491327286, 0.018090713769197464, -0.011560364626348019, -0.002130168490111828, -0.025444943457841873, -0.03175847977399826, 0.023276833817362785, 0.018888577818870544, -0.02573980577290058, -0.023051349446177483, -0.02573980577290058, 0.05442824214696884, -0.050230782479047775, 0.001070504542440176, -0.002280852058902383, -0.0023220463190227747, 0.004821877460926771, 0.04842691496014595, -0.03187989443540573, 0.005554698873311281, 0.04974512383341789, -0.00707237608730793, 0.005467974580824375, 0.01247097086161375, 0.017448952421545982, -0.033007312566041946, 0.010441619902849197, 0.002783853793516755, -0.038366880267858505, -0.07250161468982697, -0.004622411448508501, -0.02119544707238674, 0.058764465153217316, -0.012054693885147572, 0.015150755643844604, -0.031307514756917953, 0.020605720579624176, 0.026763154193758965, 0.020068030804395676, -0.013572371564805508, 0.0019111892906948924, 0.00691193575039506, -0.01708471029996872, 0.0320013090968132, 0.0024673095904290676, 0.0012130577815696597, 0.05987453833222389, 0.0023719128221273422, -0.042113374918699265, -0.010779844596982002, 0.05727280303835869, 0.037569016218185425, 0.03749963641166687, 0.03829750046133995, -0.03659770265221596, 0.013095387257635593, -0.08429612964391708, 0.010693120770156384, -0.004713471978902817, 0.019981306046247482, 0.01613941416144371, -0.0016325871692970395, -0.03120344504714012, -0.0730566456913948, 0.010311532765626907, -0.05057767778635025, -0.010797189548611641, 0.014734478667378426, 0.015462963841855526, 0.05189589038491249, 0.057585012167692184, -0.021785173565149307, 0.006647426635026932, 0.034516315907239914, -0.0287057813256979, 0.001021721982397139, -0.02372780069708824, 0.0164256040006876, 0.022929934784770012, 0.008698458783328533, 0.03536621853709221, -0.04124613106250763, -0.03656301274895668, -0.06500862538814545, 0.009895255789160728, -0.012462298385798931, -0.04613738879561424, 0.050647057592868805, 0.014240149408578873, 0.016174104064702988, 0.02362373098731041, 0.01528084184974432, -0.04239089414477348, -0.03172378987073898, 0.010701793245971203, 0.018715128302574158, -0.02110872231423855, -0.042113374918699265, 0.07187719643115997, -0.047559671103954315, 0.02374514564871788, 0.019669096916913986, -0.02759571000933647, -0.0019079371122643352, 0.012297522276639938, 0.017102055251598358, -0.033302176743745804, 0.01340759452432394, -0.01737090013921261, -0.011265501379966736, -0.05661369860172272, -0.0035882226657122374, -0.02721412107348442, -0.035140734165906906, 0.02270445227622986, -0.0062311491928994656, -0.023276833817362785, -0.035019319504499435, -0.0578625313937664, -0.01081453450024128, -0.08124343305826187, 0.11523940414190292, -0.051583681255578995, 0.0014233645051717758, -0.027456950396299362, -0.012314867228269577, 0.015393584035336971, 0.0017442448297515512, 0.04565173387527466, 0.004579049069434404, 0.0008162935846485198, 0.012444953434169292, 0.049155399203300476, -0.03732618689537048, 0.01949564926326275, -0.010658430866897106, 0.011603727005422115, -0.014422270469367504, -0.0005707550444640219, -0.005944958887994289, -0.05529548600316048, -0.02404000796377659, 0.014751823619008064, 0.004592057783156633, -0.05723811313509941, 0.023554351180791855, 0.00933154672384262, -0.015055358409881592, 0.049849193543195724, -0.04527014493942261, -0.03165441006422043, -0.011395588517189026, -0.0015653757145628333, 0.03057902865111828, -0.01614808663725853, -0.022912589833140373, 0.058625705540180206, 0.005637086927890778, 0.02244427800178528, -0.023970628157258034, -0.00016857057926245034, 0.0050083352252841, -0.016573036089539528, -0.02789057232439518, -0.052242789417505264, 0.04017074778676033, -0.06566772609949112, -0.00986923836171627, 0.008923942223191261, -0.03913005813956261, -0.00006162176578072831, 0.05553831532597542, 0.016755158081650734, 0.00862040650099516, 0.034204110503196716, 0.007701128255575895, 0.0765950009226799, -0.02227083034813404, 0.028844540938735008, -0.04533952474594116, 0.027422260493040085, 0.01737090013921261, -0.04239089414477348, -0.031411584466695786, 0.03172378987073898, -0.01920078508555889, -0.010953294113278389, 0.012783179059624672, 0.010883914306759834, -0.027058018371462822, 0.053595688194036484, 0.08498992770910263, -0.04991857334971428, -0.002374080941081047, 0.018975302577018738, 0.04572111368179321, 0.021958623081445694, -0.00353835616260767, -0.0119332792237401, 0.013659095391631126, 0.007085384801030159, -0.02214941568672657, -0.0025627065915614367, -0.03573045879602432, -0.039823852479457855, -0.03198396414518356, -0.012973972596228123, -0.008052362129092216, 0.05269375443458557, -0.06122743710875511, 0.03593859821557999, 0.006547693628817797, -0.033284831792116165, -0.01724081300199032, -0.02039758302271366, 0.06684718281030655, -0.060256123542785645, -0.013624405488371849, -0.06629214435815811, 0.03505400940775871, -0.002160521922633052, 0.02830684930086136, -0.007566705346107483, -0.008585717529058456, 0.018853887915611267, 0.009028011932969093, 0.0028662418480962515, 0.046623047441244125, -0.027266155928373337, 0.0164256040006876, 0.007384583819657564, -0.014005993492901325, 0.020744480192661285, 0.008806864731013775, 0.03547028452157974, -0.015306859277188778, 0.023970628157258034, -0.031307514756917953, -0.011508329771459103, 0.012028676457703114, -0.004396928008645773, -0.03965040296316147, 0.007514670491218567, -0.012982645072042942, 0.009028011932969093, 0.012575040571391582, 0.025011321529746056, -0.010892586782574654, 0.019963961094617844, 0.003766007721424103, 0.009782514534890652, 0.013893251307308674, 0.013329543173313141, -0.02547963336110115, 0.06251095980405807, 0.009721807204186916, 0.0330766923725605, 0.01153434719890356, 0.011204794980585575, -0.0011664433404803276, -0.011152760125696659, -0.0006596475723199546, 0.049432918429374695, 0.052520304918289185, -0.02573980577290058, -0.03798529505729675, -0.027821192517876625, -0.09491120278835297, 0.03227882832288742, 0.023519661277532578, -0.04232151433825493, 0.0426684133708477, -0.027248810976743698, 0.09123408794403076, 0.01434421818703413, -0.0287057813256979, -0.027543675154447556, -0.010484982281923294, 0.029815854504704475, -0.0024954951368272305, 0.014118734747171402, 0.008113069459795952, -0.003193626645952463, -0.061713095754384995, -0.009843220934271812, -0.05189589038491249, -0.041419580578804016, -0.02107403241097927, 0.05057767778635025, -0.07236285507678986, 0.030110716819763184, 0.045686423778533936, -0.09296857565641403, -0.038089364767074585, 0.07826011627912521, -0.023641075938940048, -0.022773832082748413, -0.007354230619966984, -0.020779170095920563, 0.020605720579624176, -0.04391724616289139, -0.023294178768992424, 0.008850227110087872, 0.032209448516368866, -0.004154099617153406, -0.02280852198600769, 0.01748364232480526, 0.0175009872764349, -0.04540890455245972, 0.05706466734409332, -0.02853233367204666, -0.007384583819657564, -0.033284831792116165, 0.0057758460752666, 0.018056023865938187, 0.08568372577428818, 0.035418253391981125, 0.04839222505688667, -0.020709790289402008, 0.00009824250446399674, 0.11933279782533646, 0.04790656641125679, -0.03704867139458656, -0.042494963854551315, -0.003479817183688283, -0.019565029069781303, 0.04651897773146629, 0.006257166620343924, -0.054775141179561615, -0.05269375443458557, 0.011967969126999378, 0.07527679204940796, -0.05588521435856819, 0.011421605944633484, -0.03857501968741417, -0.018992647528648376, -0.033683761954307556, 0.053977277129888535, -0.022305520251393318, 0.0103982575237751, -0.053595688194036484, 0.043570347130298615, 0.0009322874830104411, 0.02681518904864788 ]
24,424
okta_jwt_verifier.jwt_verifier
JWTVerifier
null
class JWTVerifier(BaseJWTVerifier): def __init__(self, issuer=None, client_id='client_id_stub', audience='api://default', request_executor=RequestExecutor, max_retries=MAX_RETRIES, request_timeout=REQUEST_TIMEOUT, max_requests=MAX_REQUESTS, leeway=LEEWAY, cache_jwks=True, proxy=None): """ Args: issuer: string, full URI of the token issuer, required client_id: string, expected client_id, required audience: string, expected audience, optional request_executor: RequestExecutor class or its subclass, optional max_retries: int, number of times to retry a failed network request, optional request_timeout: int, max request timeout, optional max_requests: int, max number of concurrent requests leeway: int, amount of time to expand the window for token expiration (to work around clock skew) cache_jwks: bool, optional """ warnings.simplefilter('module') warnings.warn('JWTVerifier will be deprecated soon. ' 'For token verification use IDTokenVerifier or AccessTokenVerifier. ' 'For different jwt utils use JWTUtils.', DeprecationWarning) super().__init__(issuer=issuer, client_id=client_id, audience=audience, request_executor=request_executor, max_retries=max_retries, request_timeout=request_timeout, max_requests=max_requests, leeway=leeway, cache_jwks=cache_jwks, proxy=proxy)
(issuer=None, client_id='client_id_stub', audience='api://default', request_executor=<class 'okta_jwt_verifier.request_executor.RequestExecutor'>, max_retries=1, request_timeout=30, max_requests=10, leeway=120, cache_jwks=True, proxy=None)
[ 0.04443622753024101, -0.04890570417046547, 0.035072483122348785, 0.08185426145792007, -0.018524328246712685, -0.05644102394580841, -0.016474278643727303, 0.01207867544144392, -0.03667927905917168, 0.023972660303115845, 0.0272785983979702, 0.04159201309084892, 0.025819553062319756, 0.005577614530920982, 0.004656476899981499, -0.025505581870675087, 0.04399297386407852, 0.03167420253157616, 0.02792501077055931, -0.020648254081606865, -0.006094744428992271, 0.022291988134384155, -0.005009694956243038, 0.07823435217142105, -0.045248858630657196, 0.03474004194140434, -0.023972660303115845, -0.029384054243564606, 0.03424138203263283, 0.002421737415716052, -0.05496351048350334, 0.025930367410182953, 0.04680024832487106, 0.06800257414579391, 0.03355802968144417, -0.06109519302845001, -0.01075814664363861, 0.03597746044397354, -0.1514451652765274, 0.023843377828598022, -0.04041000083088875, 0.030750755220651627, 0.05163910612463951, -0.037196408957242966, 0.02659524790942669, 0.020445097237825394, 0.03769506886601448, 0.06593405455350876, -0.028811518102884293, -0.017739400267601013, 0.05304274335503578, -0.044288475066423416, 0.026779936626553535, 0.0073829516768455505, -0.00573921762406826, 0.048203885555267334, 0.05839873105287552, 0.01603102497756481, 0.021220792084932327, 0.030178219079971313, -0.0545571967959404, -0.020722130313515663, 0.03361343964934349, 0.027537163347005844, 0.03304089978337288, 0.00623787846416235, -0.054335568100214005, 0.029975060373544693, 0.008033981546759605, 0.01257733628153801, 0.04635699465870857, -0.06467816233634949, -0.019761746749281883, 0.024563666433095932, 0.06198170408606529, -0.019613994285464287, -0.11679746210575104, -0.05725365877151489, -0.009705418720841408, -0.01557853538542986, 0.07978574186563492, -0.06061500310897827, -0.037270285189151764, -0.04354971647262573, 0.07963798940181732, -0.004732661414891481, 0.010952070355415344, -0.09906730055809021, -0.0013505399692803621, -0.0010827406076714396, -0.07904698699712753, 0.0054298629984259605, -0.011930923908948898, 0.0038346098735928535, -0.01826576329767704, 0.0019196135690435767, 0.020611317828297615, -0.011229104362428188, -0.01990949735045433, 0.009686949662864208, 0.04897958040237427, 0.05932217836380005, -0.08096775412559509, 0.03656846657395363, -0.0011214098194614053, 0.034518416970968246, 0.00457567535340786, -0.05300580710172653, 0.01853356324136257, -0.02563486434519291, -0.04897958040237427, -0.03413056954741478, -0.027334004640579224, 0.022938400506973267, 0.01994643546640873, 0.03544186055660248, -0.012835901230573654, 0.014479635283350945, 0.021405480802059174, 0.010185610502958298, 0.04846245050430298, 0.01456274464726448, -0.016640499234199524, -0.00016160306404344738, 0.01607719622552395, -0.04824082553386688, 0.0014648163923993707, 0.006145533639937639, 0.04173976555466652, -0.02984577789902687, 0.020555909723043442, 0.06955396384000778, -0.05647796392440796, 0.0450272336602211, 0.010047093965113163, 0.027020033448934555, 0.017434662207961082, 0.029143959283828735, 0.0035598846152424812, -0.0130390590056777, 0.000379767210688442, 0.03978205844759941, 0.0008899711538106203, -0.023584812879562378, -0.041444260627031326, -0.020260406658053398, -0.06914764642715454, -0.015393846668303013, 0.016972938552498817, -0.016123369336128235, 0.040151435881853104, -0.044842541217803955, 0.020518971607089043, -0.001669128774665296, 0.013380734249949455, -0.0736909955739975, -0.01353771984577179, 0.005088188219815493, 0.009326805360615253, -0.02175639010965824, -0.023363186046481133, -0.00379536347463727, 0.0006585324881598353, -0.05182379484176636, 0.015273798257112503, 0.020260406658053398, 0.03566348925232887, 0.013269920833408833, -0.06925845891237259, 0.023178497329354286, -0.013343796133995056, -0.00036620409809984267, -0.06412409991025925, 0.03808291628956795, -0.023326247930526733, 0.07007109373807907, 0.024378977715969086, 0.018930645659565926, -0.045211922377347946, 0.012900542467832565, -0.002560254419222474, -0.0029134724754840136, -0.040446940809488297, -0.06508447974920273, 0.02912548929452896, 0.027260128408670425, 0.007336779497563839, 0.040557753294706345, 0.011829344555735588, 0.013251451775431633, 0.0008466846193186939, 0.02107303962111473, 0.011589248664677143, -0.007156707346439362, -0.02539476752281189, -0.0023236211854964495, 0.020722130313515663, 0.023566344752907753, -0.007424506824463606, -0.020482035353779793, -0.013269920833408833, 0.025062326341867447, 0.0130390590056777, -0.03577430173754692, 0.0008599591674283147, 0.01029642391949892, -0.0008005123236216605, -0.0014336500316858292, -0.0237510334700346, -0.02343706227838993, 0.0249515138566494, -0.018284233286976814, -0.03296702727675438, 0.03900636360049248, -0.0136023610830307, -0.041998330503702164, 0.024914575740695, 0.018792128190398216, 0.06035643815994263, 0.02295687049627304, 0.11236491799354553, 0.03882167488336563, -0.04210914298892021, 0.00017487761215306818, 0.05252561345696449, 0.02816510573029518, 0.07402344048023224, -0.01703757978975773, -0.03900636360049248, -0.042958714067935944, -0.025542519986629486, -0.0023282384499907494, 0.03481391817331314, 0.006016251165419817, -0.07309999316930771, -0.04092713072896004, 0.0642349123954773, -0.0021400863770395517, 0.017896385863423347, 0.009331422857940197, 0.03405669331550598, 0.014239538460969925, 0.06017174944281578, 0.00838027335703373, 0.01881983131170273, 0.05030934512615204, -0.013380734249949455, 0.038673922419548035, 0.02354787476360798, 0.014479635283350945, -0.03132329136133194, -0.024803761392831802, -0.030916975811123848, -0.01795179210603237, 0.012614273466169834, 0.029587212949991226, -0.0014705879148095846, -0.09212297946214676, 0.041444260627031326, -0.02851601503789425, 0.039227988570928574, -0.002657216042280197, -0.02391725406050682, 0.030270563438534737, -0.04798226058483124, -0.04170282557606697, 0.006884290836751461, -0.002444823505356908, 0.01688982918858528, -0.03488779440522194, 0.0687413290143013, -0.019964905455708504, -0.007156707346439362, 0.006431802175939083, -0.030972382053732872, -0.015495426021516323, -0.05115891247987747, 0.041037943214178085, -0.013269920833408833, 0.02162710763514042, -0.055222075432538986, -0.07358018308877945, 0.03621755540370941, 0.0038184495642781258, 0.006251730024814606, -0.01994643546640873, -0.048610202968120575, -0.0023894167970865965, -0.03616214916110039, 0.011635420843958855, 0.013168341480195522, -0.0237140953540802, 0.035183295607566833, -0.015070640482008457, -0.011681593023240566, -0.04583986476063728, -0.03372425213456154, -0.015855569392442703, 0.04565517604351044, 0.006293285172432661, -0.02243974059820175, 0.06608179956674576, -0.043438903987407684, -0.043365027755498886, 0.024526728317141533, 0.00039044456207193434, -0.01093360222876072, -0.012882073409855366, -0.013870160095393658, 0.016326526179909706, 0.003864621976390481, 0.003585279453545809, -0.05252561345696449, -0.08606517314910889, 0.050050780177116394, -0.017213035374879837, 0.008574197068810463, 0.014304179698228836, 0.013214513659477234, 0.06150151044130325, 0.029051614925265312, 0.019891029223799706, -0.011543076485395432, -0.015015233308076859, -0.004783450625836849, -0.0759442076086998, -0.000533867278136313, -0.0022439740132540464, -0.02816510573029518, -0.0030127428472042084, -0.08244527131319046, -0.046246182173490524, 0.023492468520998955, -0.06885214149951935, -0.002410194370895624, 0.02343706227838993, 0.03348415717482567, 0.03736262768507004, -0.002128543332219124, -0.004065471235662699, 0.0026202783919870853, -0.10475572943687439, -0.011524607427418232, 0.039191052317619324, -0.1370394080877304, -0.06105825677514076, 0.0011046724393963814, -0.029771901667118073, 0.04753900691866875, 0.035478800535202026, -0.0014648163923993707, 0.02059284783899784, 0.052821118384599686, 0.03848923370242119, 0.05126972869038582, -0.05492657423019409, -0.009493025951087475, -0.02227352000772953, -0.014608917757868767, -0.015356908552348614, -0.04188751429319382, -0.0020973768550902605, -0.03136023133993149, 0.0004724003956653178, -0.006616491358727217, -0.053929250687360764, 0.05839873105287552, -0.06312677264213562, -0.0028488312382251024, -0.009991686791181564, -0.03400128707289696, -0.03477698192000389, -0.053264372050762177, -0.010120969265699387, 0.04846245050430298, 0.003107396187260747, -0.04547048732638359, 0.040040623396635056, -0.08296240121126175, 0.05466800928115845, -0.006547233089804649, 0.04790838435292244, 0.017914853990077972, 0.019078396260738373, -0.011746234260499477, -0.0010065562091767788, -0.029771901667118073, 0.010564223863184452, 0.03717793896794319, 0.02395419217646122, -0.022291988134384155, -0.03710406273603439, -0.028054293245077133, 0.045359671115875244, -0.04188751429319382, 0.025856491178274155, -0.08355340361595154, 0.04162894934415817, 0.016271119937300682, 0.002677993616089225, 0.034389134496450424, 0.002052359050139785, 0.03745497390627861, -0.013713174499571323, -0.006316371262073517, 0.06571242213249207, 0.04089019447565079, 0.02162710763514042, -0.0017303071217611432, 0.015421549789607525, -0.013223747722804546, -0.06079969182610512, 0.04114875942468643, -0.04451010376214981, 0.01099824346601963, -0.02011265605688095, 0.029254771769046783, 0.04321727901697159, 0.041555073112249374, 0.004908116068691015, 0.0025371680967509747, -0.010407237336039543, 0.026096586138010025, 0.021017633378505707, -0.02155323140323162, 0.014045614749193192, -0.0011646964121609926, -0.013694705441594124, -0.07228735834360123, -0.04018837586045265, 0.06478897482156754, 0.028368264436721802, 0.008911254815757275, -0.03989287093281746, -0.006242495495826006, 0.019410837441682816, -0.02522854693233967, 0.026299744844436646, -0.015523129142820835, -0.007327544968575239, 0.013297623954713345, 0.01471973117440939, -0.0021527837961912155, 0.02203342318534851, 0.06567548960447311, 0.02135007455945015, -0.02799888513982296, 0.06493672728538513, 0.03978205844759941, -0.01341767143458128, 0.015356908552348614, -0.00807091873139143, -0.05651490017771721, -0.022218113765120506, -0.02059284783899784, -0.0025302423164248466, 0.01918921060860157, 0.033668845891952515, 0.03475851193070412, -0.01557853538542986, 0.07232429832220078, -0.03398281708359718, 0.025579456239938736, -0.030787693336606026, -0.041481200605630875, 0.05939605459570885, -0.02062978595495224, 0.04879489168524742, -0.015005999244749546, 0.014876716770231724, 0.040483877062797546, 0.01918921060860157, -0.04591374099254608, -0.01942930556833744, 0.01744389720261097, 0.02282758802175522, 0.030861569568514824, -0.02291993238031864, -0.03444454073905945, 0.019170740619301796, -0.04923814535140991, 0.06072581559419632, 0.031581856310367584, 0.012346474453806877, 0.03084309957921505, -0.08022899925708771, -0.04380828142166138, -0.040446940809488297, -0.0026133523788303137, 0.019133802503347397, -0.0497552752494812, 0.07095760107040405, -0.007937019690871239, 0.07236123830080032, 0.0012466522166505456, 0.0018480465514585376, 0.010924367234110832, -0.032985493540763855, 0.008015512488782406, -0.008449532091617584, 0.03885861113667488, 0.0011566162575036287, 0.036549996584653854, 0.028054293245077133, 0.05344906076788902, -0.010656568221747875, -0.10010156035423279, -0.03738109767436981, -0.032782334834337234, 0.01662202924489975, -0.02243974059820175, 0.04643087089061737, -0.009945514611899853, 0.009345274418592453, 0.007235200144350529, -0.003656846471130848, -0.03328099846839905, 0.024101942777633667, 0.004079323261976242, 0.04233076795935631, 0.005577614530920982, 0.021183853968977928, 0.053301308304071426, -0.028128167614340782, 0.03533104807138443, 0.018376577645540237, 0.005028164014220238, 0.0006135145085863769, 0.08118937909603119, 0.059026673436164856, -0.01820112206041813, -0.02751869335770607, -0.044399287551641464, 0.010102500207722187, 0.002966570667922497, -0.007960105314850807, -0.02190414071083069, 0.0020754451397806406, 0.0366608090698719, -0.040114499628543854, 0.020168062299489975, 0.01593868061900139, -0.04469479247927666, -0.0330963097512722, -0.08828144520521164, 0.030658410862088203, -0.05869423598051071, 0.07542707771062851, -0.027223190292716026, -0.018395045772194862, -0.0049127331003546715, -0.004536428954452276, 0.041407324373722076, -0.0067411563359200954, -0.032505303621292114, -0.007512234151363373, 0.06807644665241241, 0.024619072675704956, 0.04354971647262573, 0.05740141123533249, 0.02295687049627304, 0.03187736123800278, -0.007955487817525864, -0.023658689111471176, -0.012697383761405945, -0.011007477529346943, 0.04993996396660805, 0.04041000083088875, -0.03660540282726288, 0.02703850157558918, -0.001300904667004943, -0.010425706394016743, 0.004000830464065075, -0.00711053516715765, -0.09914117306470871, 0.03937574103474617, -0.017591647803783417, 0.02751869335770607, 0.020759068429470062, -0.040151435881853104, 0.030732287093997, 0.031988173723220825, -0.002055821940302849, -0.05887892469763756, -0.0248406995087862, -0.019521649926900864, -0.008334101177752018, -0.006902759429067373, -0.05773384869098663, 0.029273241758346558, -0.07206573337316513, -0.027389410883188248, -0.051491353660821915, 0.021885672584176064, 0.017259208485484123, 0.060430314391851425, -0.04609842970967293, -0.002735709073022008, 0.016714373603463173, 0.027334004640579224, 0.012605039402842522, -0.021165383979678154, -0.009770059958100319, -0.022605961188673973, 0.040040623396635056, -0.014950592070817947, -0.021645575761795044, -0.03540492430329323, 0.006815032102167606, -0.012992886826395988, -0.011810875497758389, 0.030215157195925713, 0.02563486434519291, -0.026946157217025757, 0.009945514611899853, 0.012189488857984543, -0.08850307762622833, 0.016972938552498817, 0.004314802121371031, -0.005706897005438805, 0.020537441596388817, 0.018044136464595795, -0.006676515098661184, 0.013242216780781746, -0.022661367431282997, -0.025099264457821846, 0.031544920057058334, -0.02532089129090309, -0.033908940851688385, -0.0295687448233366, 0.010481113567948341, 0.00031628028955310583, 0.01950318180024624, -0.07550095021724701, 0.025708738714456558, 0.031230947002768517, 0.004111643880605698, -0.007830822840332985, 0.039634305983781815, 0.026890750974416733, -0.059026673436164856, 0.010822787880897522, -0.01139532495290041, 0.0236771572381258, -0.07498382031917572, -0.015486191026866436, -0.019484713673591614, -0.019059928134083748, 0.04609842970967293, -0.02519160881638527, -0.011339917778968811, 0.08429215848445892, 0.012900542467832565, -0.022569023072719574, -0.008214052766561508, -0.010628864169120789, 0.0004799033922608942, 0.0357188954949379, 0.07956411689519882, 0.01590174250304699, 0.029070083051919937, 0.006002399604767561, 0.05684734135866165, -0.029753433540463448, 0.012854369357228279, 0.009345274418592453, 0.025099264457821846, -0.004137038718909025, 0.027537163347005844, -0.01408255286514759, 0.030418314039707184, -0.03595899045467377, -0.0055037387646734715, -0.02395419217646122, 0.02563486434519291, -0.023621750995516777, -0.00471188360825181, -0.05466800928115845, -0.0004539314832072705, -0.014350352808833122, 0.0024679095949977636, 0.021202322095632553, -0.031230947002768517, 0.013288388960063457, -0.0342598520219326, -0.019761746749281883, 0.009109796024858952, 0.04325421527028084, -0.04587680101394653, -0.048093073070049286, 0.0017533933278173208, -0.04451010376214981, 0.046283118426799774, -0.03667927905917168, -0.03660540282726288, -0.016677437350153923, -0.011930923908948898, 0.009396064095199108, -0.0002380759542575106, -0.005545293912291527, -0.02151629328727722, -0.02576414681971073, -0.003961583599448204, 0.0011970170307904482, 0.035349518060684204, 0.04417766258120537, 0.013805518858134747, -0.06212945282459259, 0.02203342318534851, -0.08606517314910889, 0.02107303962111473, 0.003338257549330592, 0.07527932524681091, -0.06257271021604538, 0.033668845891952515, 0.009197522886097431, -0.03900636360049248, -0.013482312671840191, 0.04417766258120537, -0.030492190271615982, 0.03967124596238136, 0.016234181821346283, -0.044362351298332214, 0.026779936626553535, -0.03163726255297661, -0.0021331605967134237, 0.0020050322636961937, -0.002203573239967227, 0.014535041525959969, -0.030215157195925713, 0.02066672407090664, 0.008758886717259884, -0.02559792622923851, -0.0005024123820476234, -0.010868960991501808, -0.05862035974860191, -0.040446940809488297, -0.024619072675704956, -0.006242495495826006, 0.07147473096847534, 0.03232061490416527, 0.009927045553922653, -0.001592944492585957, 0.04402991011738777, 0.04214607924222946, 0.07889923453330994, 0.013094466179609299, -0.016252651810646057, 0.04210914298892021, -0.04070550575852394, 0.00470264907926321, -0.019540119916200638, -0.0497552752494812, -0.011986330151557922, -0.014110255986452103, 0.03808291628956795, -0.032191332429647446, 0.008324866183102131, -0.030547596514225006, -0.008435680530965328, -0.03285621106624603, 0.0019046076340600848, -0.026890750974416733, -0.053412120789289474, -0.05699509382247925, 0.055185139179229736, 0.017702462151646614, 0.020648254081606865 ]
24,425
okta_jwt_verifier.jwt_verifier
__init__
Args: issuer: string, full URI of the token issuer, required client_id: string, expected client_id, required audience: string, expected audience, optional request_executor: RequestExecutor class or its subclass, optional max_retries: int, number of times to retry a failed network request, optional request_timeout: int, max request timeout, optional max_requests: int, max number of concurrent requests leeway: int, amount of time to expand the window for token expiration (to work around clock skew) cache_jwks: bool, optional
def __init__(self, issuer=None, client_id='client_id_stub', audience='api://default', request_executor=RequestExecutor, max_retries=MAX_RETRIES, request_timeout=REQUEST_TIMEOUT, max_requests=MAX_REQUESTS, leeway=LEEWAY, cache_jwks=True, proxy=None): """ Args: issuer: string, full URI of the token issuer, required client_id: string, expected client_id, required audience: string, expected audience, optional request_executor: RequestExecutor class or its subclass, optional max_retries: int, number of times to retry a failed network request, optional request_timeout: int, max request timeout, optional max_requests: int, max number of concurrent requests leeway: int, amount of time to expand the window for token expiration (to work around clock skew) cache_jwks: bool, optional """ warnings.simplefilter('module') warnings.warn('JWTVerifier will be deprecated soon. ' 'For token verification use IDTokenVerifier or AccessTokenVerifier. ' 'For different jwt utils use JWTUtils.', DeprecationWarning) super().__init__(issuer=issuer, client_id=client_id, audience=audience, request_executor=request_executor, max_retries=max_retries, request_timeout=request_timeout, max_requests=max_requests, leeway=leeway, cache_jwks=cache_jwks, proxy=proxy)
(self, issuer=None, client_id='client_id_stub', audience='api://default', request_executor=<class 'okta_jwt_verifier.request_executor.RequestExecutor'>, max_retries=1, request_timeout=30, max_requests=10, leeway=120, cache_jwks=True, proxy=None)
[ -0.005864658858627081, -0.040356479585170746, 0.004036124795675278, 0.0518760047852993, -0.009178428910672665, -0.012463591992855072, -0.028474586084485054, 0.022333383560180664, -0.03928844630718231, 0.001299284165725112, 0.0267581008374691, 0.05519454553723335, 0.016134964302182198, 0.03476836532354355, 0.007061430718749762, 0.027044182643294334, 0.06907900422811508, 0.011843749321997166, 0.020483393222093582, -0.037762679159641266, 0.004245917312800884, -0.0014816607581451535, -0.018995773047208786, 0.05954297259449959, -0.0251179039478302, 0.05065539479255676, -0.037266805768013, -0.018995773047208786, 0.0234777070581913, -0.014094253070652485, -0.02153235673904419, 0.03228899836540222, 0.029428189620375633, 0.0711769312620163, 0.020559681579470634, -0.05542340874671936, -0.034997232258319855, 0.018414074555039406, -0.16630837321281433, 0.027463767677545547, -0.03164054825901985, 0.022066375240683556, 0.054279085248708725, -0.028722522780299187, 0.015887025743722916, 0.03251786530017853, 0.0420348234474659, 0.03440599888563156, -0.010346593335270882, -0.027559127658605576, 0.01355069875717163, -0.017975417897105217, 0.005430769175291061, 0.0013755724066868424, -0.0453152172267437, 0.06892643123865128, 0.03978431969881058, 0.0035855474416166544, -0.017937272787094116, 0.03799154609441757, -0.07678411900997162, 0.00493966368958354, 0.02740655094385147, 0.03444414213299751, 0.03667557239532471, 0.008711163885891438, -0.07392330467700958, 0.022505031898617744, 0.0009154588915407658, 0.017193462699651718, 0.08513768017292023, -0.03658021241426468, -0.01989215984940529, 0.010003295727074146, 0.05607185885310173, -0.04760386422276497, -0.08773148059844971, -0.030229216441512108, -0.04020390287041664, -0.00996515154838562, 0.05355434492230415, -0.01651640422642231, -0.035950835794210434, -0.034215278923511505, 0.055232688784599304, -0.003678523702546954, 0.009927007369697094, -0.08262016624212265, -0.046497683972120285, 0.022371526807546616, -0.05958111956715584, 0.011881893500685692, -0.03247971832752228, -0.014799918979406357, -0.028074072673916817, -0.0025175120681524277, 0.010194016620516777, -0.020693186670541763, -0.0029776254668831825, 0.023897292092442513, 0.003425818867981434, 0.055614128708839417, -0.08216243982315063, 0.022810185328125954, 0.025918930768966675, -0.010222624987363815, -0.004872911609709263, -0.06358624994754791, 0.05549969524145126, -0.027597272768616676, -0.031411685049533844, -0.031240034848451614, -0.000454749446362257, 0.03825855255126953, -0.017250679433345795, 0.043255433440208435, 0.012120294384658337, 0.01569630578160286, 0.06133574619889259, 0.01320740208029747, 0.04008947312831879, -0.0020848147105425596, -0.011490916833281517, 0.012415912002325058, 0.019548863172531128, -0.02456481382250786, -0.012883177027106285, 0.018557114526629448, 0.020807618275284767, -0.055881138890981674, 0.01561048161238432, 0.00958847813308239, -0.007676504552364349, 0.05473681539297104, 0.004181549418717623, 0.021951941773295403, 0.017756087705492973, 0.030667873099446297, -0.03286116197705269, 0.013417194597423077, -0.00600769929587841, 0.04306471347808838, 0.0016139731742441654, -0.02191379852592945, -0.030839521437883377, -0.015791665762662888, -0.06316666305065155, -0.035435888916254044, 0.01561048161238432, -0.002443607896566391, 0.028856027871370316, -0.030152928084135056, 0.013874923810362816, 0.04478120058774948, 0.0034377388656139374, -0.06530273705720901, -0.016163570806384087, 0.007800472900271416, 0.025194192305207253, 0.007852921262383461, -0.02101741172373295, 0.0007682464201934636, 0.04462862387299538, -0.07388516515493393, -0.0006728861480951309, 0.007495319936424494, -0.014952495694160461, -0.01941535808146, -0.05347805842757225, 0.015524657443165779, -0.04501006379723549, -0.013483947142958641, -0.07579237222671509, -0.007991193793714046, -0.04573480039834976, 0.02706325426697731, 0.03282301500439644, 0.010251232422888279, -0.06419655680656433, 0.0032851623836904764, 0.00012784240243490785, -0.017794232815504074, -0.03820133954286575, -0.04287399351596832, 0.003912156447768211, 0.029714271426200867, 0.023897292092442513, 0.049091484397649765, 0.017145782709121704, 0.02927561290562153, -0.0007301022997125983, 0.02744469605386257, 0.02733026258647442, 0.003356682602316141, -0.036427635699510574, -0.007857688702642918, 0.022676680237054825, 0.01716485433280468, -0.011500452645123005, 0.0019477341556921601, -0.01018448080867529, 0.036122482270002365, 0.03770546242594719, -0.034005485475063324, 0.04264512658119202, 0.001298092189244926, -0.009745823219418526, -0.003335226560011506, -0.0404709130525589, 0.011080867610871792, -0.00861580390483141, 0.005893266759812832, -0.03148797154426575, 0.03263229504227638, -0.03873535618185997, 0.002009718446061015, 0.008563355542719364, 0.01523857656866312, 0.05309661850333214, 0.007204471156001091, 0.10779529064893723, 0.06091616302728653, -0.018309177830815315, -0.04642139747738838, 0.03795340284705162, 0.04012761637568474, 0.06701922416687012, -0.01747000776231289, -0.029981279745697975, -0.02075040154159069, -0.041615236550569534, 0.010394273325800896, 0.004191085230559111, 0.005235280841588974, -0.04912962764501572, -0.04668840393424034, 0.04848117753863335, 0.0008504947181791067, -0.012692456133663654, 0.006260403897613287, 0.043255433440208435, 0.02218080684542656, 0.06354810297489166, 0.003576011396944523, -0.005569041706621647, 0.04077606648206711, -0.02364935539662838, 0.01877644471824169, 0.002949017332866788, -0.0009738670778460801, -0.005998163018375635, -0.02948540635406971, -0.0267962459474802, -0.02412615716457367, 0.012606631964445114, 0.002944249426946044, 0.010422881692647934, -0.0872737467288971, -0.010260769166052341, -0.012177511118352413, 0.02361121214926243, 0.016630837693810463, -0.06652335077524185, 0.03347146511077881, -0.04733685404062271, -0.03347146511077881, 0.008320186287164688, 0.004727486986666918, 0.0070423586294054985, -0.01934860646724701, 0.09932729601860046, 0.006503572687506676, 0.01993030309677124, 0.014933424070477486, -0.034005485475063324, -0.029294684529304504, -0.04237812012434006, 0.026700885966420174, -0.05611000210046768, 0.01301668118685484, -0.04741314426064491, -0.03122096322476864, 0.0518760047852993, 0.027253974229097366, 0.020349888131022453, -0.03661835566163063, -0.04642139747738838, 0.0405471995472908, -0.03736216574907303, 0.0021503749303519726, 0.01216797437518835, 0.010518241673707962, 0.05637701228260994, 0.010308449156582355, 0.02351585030555725, -0.06370068341493607, -0.03686629235744476, 0.007342743221670389, 0.021284420043230057, 0.004057581070810556, -0.012425447814166546, 0.054584238678216934, -0.04508635029196739, -0.02256224863231182, 0.05683474242687225, -0.012778280302882195, 0.006899318192154169, 0.009407293982803822, -0.0025175120681524277, 0.04413275048136711, 0.030362721532583237, 0.005554737523198128, -0.02126534841954708, -0.08185728639364243, 0.02429780550301075, -0.007328439503908157, 0.01274967286735773, -0.017012277618050575, 0.03751474246382713, 0.033357035368680954, 0.009345309808850288, 0.007614520378410816, 0.016392435878515244, -0.008158073760569096, -0.0315261147916317, -0.02279111184179783, -0.0019095900934189558, 0.033357035368680954, -0.050731681287288666, -0.0027130006346851587, -0.07548721879720688, -0.026472020894289017, -0.014923887327313423, -0.07079549133777618, -0.024107085540890694, -0.011767461895942688, 0.023058122023940086, 0.020349888131022453, -0.003056297777220607, -0.0010686314199119806, -0.0050970083102583885, -0.08605314046144485, -0.012492199428379536, 0.061106882989406586, -0.1069561168551445, -0.03402455523610115, 0.03795340284705162, -0.028856027871370316, 0.06480686366558075, 0.013169257901608944, -0.002813128987327218, 0.004343661945313215, 0.06480686366558075, 0.04741314426064491, 0.07941605895757675, -0.04237812012434006, -0.017517687752842903, -0.041691526770591736, -0.037800826132297516, -0.022810185328125954, -0.04077606648206711, -0.020979266613721848, -0.014523373916745186, 0.039097726345062256, -0.03862092271447182, -0.03282301500439644, 0.02528955228626728, -0.05931410938501358, 0.03389105200767517, -0.033566828817129135, -0.032536935061216354, -0.06278522312641144, -0.04676469415426254, 0.025346769019961357, 0.03820133954286575, -0.007247383240610361, -0.10604065656661987, 0.006594165228307247, -0.094063401222229, 0.07079549133777618, 0.0008379786740988493, 0.034787438809871674, 0.019949374720454216, 0.018318714573979378, 0.0023434795439243317, -0.0074428715743124485, -0.004067116882652044, -0.0047727832570672035, 0.0517234280705452, 0.02528955228626728, 0.03289930522441864, -0.03921215608716011, -0.02744469605386257, 0.04607809707522392, -0.03551217541098595, -0.003943148534744978, -0.055270832031965256, 0.03333796188235283, 0.006427284330129623, -0.04928220435976982, 0.05763576924800873, 0.033261675387620926, 0.057178039103746414, 0.015896562486886978, 0.005850354675203562, 0.07422845810651779, 0.050693538039922714, 0.018213817849755287, 0.024850895628333092, 0.025613777339458466, -0.029809631407260895, -0.05607185885310173, 0.03078230656683445, -0.028379226103425026, -0.00024287078122142702, -0.034215278923511505, -0.01716485433280468, 0.05252445489168167, 0.04893890768289566, -0.012635240331292152, 0.013617451302707195, -0.012530343607068062, 0.006374836433678865, 0.007962585426867008, -0.0170313511043787, 0.018061241135001183, -0.0018154217395931482, -0.002660552505403757, -0.04676469415426254, -0.05763576924800873, 0.03537867218255997, 0.062327492982149124, -0.004925359506160021, -0.018900413066148758, 0.009803039021790028, 0.034653935581445694, -0.04340801015496254, 0.023840075358748436, -0.018347322940826416, -0.011452772654592991, -0.012263335287570953, -0.01907206140458584, 0.017174391075968742, -0.018166137859225273, 0.07003260403871536, 0.017975417897105217, -0.05450794845819473, 0.08551912009716034, 0.04172967001795769, -0.015991922467947006, 0.008911420591175556, -0.003831100184470415, -0.025136975571513176, -0.010737570002675056, -0.05279146507382393, -0.013827243819832802, 0.008897116407752037, 0.04241626337170601, 0.03133539482951164, -0.020254528149962425, 0.07285527139902115, -0.047756440937519073, 0.04134822636842728, -0.029370972886681557, -0.02805500105023384, 0.110007643699646, 0.010575457476079464, 0.02532769739627838, -0.0060744513757526875, 0.00042345933616161346, 0.008692091330885887, 0.01996844820678234, -0.050045087933540344, -0.018681082874536514, 0.010146336629986763, 0.0015925171319395304, 0.02279111184179783, -0.024049868807196617, -0.057216182351112366, -0.001995414262637496, -0.01856665126979351, 0.023458635434508324, 0.02849365957081318, 0.013827243819832802, 0.006489268504083157, -0.05412650853395462, -0.05519454553723335, -0.04134822636842728, -0.0012814040528610349, 0.009578942321240902, -0.045544080436229706, 0.08124697953462601, -0.020178239792585373, 0.02507976070046425, -0.00471079908311367, 0.023096265271306038, -0.001189619768410921, 0.000626994005870074, 0.008739772252738476, 0.0019310461357235909, 0.00822482630610466, -0.025480274111032486, 0.017288822680711746, 0.034005485475063324, 0.04642139747738838, 0.01647826097905636, -0.12564674019813538, -0.025823570787906647, -0.029123036190867424, -0.013846316374838352, -0.00047054351307451725, 0.03881164267659187, -0.027787992730736732, 0.006083987187594175, -0.009564638137817383, -0.004276909865438938, -0.044247180223464966, 0.03265136852860451, -0.022581320255994797, 0.019548863172531128, 0.041310083121061325, 0.03202199190855026, 0.04954921454191208, -0.02014009654521942, 0.03381476551294327, 0.002059782622382045, 0.024793678894639015, 0.017288822680711746, 0.06022956967353821, 0.05218115821480751, -0.007542999926954508, -0.02879881113767624, -0.05027395114302635, 0.009412062354385853, -0.002053822623565793, 0.006060147192329168, -0.03572196885943413, -0.0033876746892929077, 0.04603995382785797, -0.02364935539662838, 0.01972051151096821, 0.05252445489168167, -0.04111936315894127, -0.036561138927936554, -0.0779665857553482, 0.0010495593305677176, -0.0502358078956604, 0.06068729609251022, -0.011757925152778625, -0.034653935581445694, 0.01958700641989708, -0.02248596027493477, 0.0486718975007534, -0.018480826169252396, -0.05973369628190994, -0.01887180469930172, 0.07090992480516434, -0.01843314617872238, 0.03064880147576332, 0.03350961208343506, 0.015305329114198685, 0.04562037065625191, -0.03009571135044098, -0.02904674783349037, 0.011376484297215939, -0.013274154625833035, 0.0357028990983963, 0.016535475850105286, -0.03122096322476864, 0.019396286457777023, -0.016049139201641083, -0.03394826874136925, 0.005282960832118988, 0.026815317571163177, -0.09307165443897247, 0.06782025098800659, -0.022028230130672455, 0.005735922139137983, 0.04363687336444855, -0.018900413066148758, 0.06652335077524185, 0.028169434517621994, -0.002598568331450224, -0.08078925311565399, -0.03202199190855026, 0.0013493483420461416, -0.003597467439249158, -0.0021491828374564648, -0.02231431193649769, 0.008549051359295845, -0.0437513068318367, -0.01582981087267399, -0.05763576924800873, 0.0267581008374691, -0.012291942723095417, 0.05408836528658867, -0.058207929134368896, -0.00010422583000035957, 0.03307095170021057, 0.019224638119339943, 0.010327520780265331, 0.025003472343087196, -0.025232335552573204, 0.015305329114198685, -0.006622773129492998, -0.028913244605064392, -0.0452389270067215, -0.014771311543881893, 0.014780847355723381, -0.014685486443340778, -0.003905004356056452, 0.00924994982779026, 0.0021992470137774944, -0.04089049994945526, -0.028932316228747368, 0.0006991102127358317, -0.04481934383511543, 0.03185034170746803, 0.0371905192732811, -0.033223528414964676, 0.03246064856648445, -0.01859525963664055, -0.03047715313732624, 0.028989532962441444, -0.07472433149814606, -0.00811992958188057, 0.039708029478788376, -0.05595742538571358, -0.04069977626204491, 0.0064177485182881355, 0.029847774654626846, 0.01975865475833416, -0.012616167776286602, -0.03856370598077774, 0.035340528935194016, 0.06221306324005127, 0.04863375425338745, -0.00042137334821745753, 0.06099244952201843, 0.02078854665160179, -0.008115162141621113, 0.02450759895145893, -0.00861580390483141, 0.02446945384144783, -0.08529025316238403, 0.0016962214140221477, -0.047794584184885025, -0.029123036190867424, 0.04790901765227318, 0.0012849800987169147, -0.023592138662934303, 0.08162841945886612, 0.015982387587428093, -0.016020530834794044, -0.015105072408914566, -0.013445802964270115, -0.007404727395623922, 0.044895630329847336, 0.09505514800548553, 0.004829999525099993, 0.03921215608716011, 0.010680354200303555, 0.0872737467288971, -0.010813858360052109, -0.04508635029196739, -0.026128724217414856, 0.004005132708698511, -0.03549310564994812, 0.023706572130322456, 0.024927183985710144, 0.024869967252016068, -0.025480274111032486, -0.008587195537984371, 0.007786168716847897, 0.024755535647273064, -0.004486702382564545, 0.004257837776094675, -0.04806159436702728, 0.027654487639665604, 0.005640562158077955, -0.011853286065161228, 0.03427249193191528, -0.026815317571163177, 0.01071849837899208, -0.04592552408576012, -0.03232714161276817, 0.011386020109057426, 0.055003821849823, -0.057826489210128784, -0.07480062544345856, 0.01109040342271328, -0.06244192644953728, 0.01610635593533516, -0.017841912806034088, -0.04825231432914734, 0.0005238856538198888, -0.05443166196346283, -0.041691526770591736, -0.006012467201799154, 0.03146890178322792, 0.0005921279080212116, -0.018070777878165245, -0.00596478721126914, 0.002013294491916895, 0.0014566286699846387, 0.02961890958249569, 0.017822841182351112, -0.028856027871370316, 0.0022850711829960346, -0.05954297259449959, 0.057178039103746414, 0.013197866268455982, 0.06999446451663971, -0.03425342217087746, 0.016678517684340477, 0.013522091321647167, -0.05061724781990051, -0.002922793384641409, 0.014466158114373684, -0.004958735778927803, 0.025842642411589622, 0.016087282449007034, -0.011319268494844437, 0.02549934573471546, 0.028474586084485054, -0.0234777070581913, -0.007137718610465527, 0.031163746491074562, 0.045200783759355545, -0.058360505849123, 0.039669886231422424, -0.001172335701994598, -0.028302937746047974, -0.017346039414405823, 0.0050493283197283745, -0.07747071236371994, 0.011643493548035622, -0.016354292631149292, 0.030400864779949188, 0.0663326308131218, -0.0013970284489914775, 0.00372381997294724, -0.018042169511318207, 0.04912962764501572, -0.00914505310356617, 0.06515015661716461, 0.021723076701164246, -0.05675845220685005, 0.07075734436511993, -0.011061795055866241, 0.004315053578466177, -0.014342189766466618, -0.023763787001371384, -0.005058864131569862, -0.02321069873869419, -0.016230324283242226, -0.04157709330320358, 0.02784520946443081, -0.014437549747526646, 0.008968636393547058, -0.01737464778125286, -0.023897292092442513, 0.011300195939838886, -0.07007075101137161, -0.034692078828811646, 0.05893266946077347, 0.02986684814095497, -0.005554737523198128 ]
24,445
encodings.utf_8
IncrementalDecoder
null
class IncrementalDecoder(codecs.BufferedIncrementalDecoder): _buffer_decode = codecs.utf_8_decode
(errors='strict')
[ -0.009950964711606503, -0.034120019525289536, -0.08300105482339859, 0.06864723563194275, -0.0365462563931942, 0.009628597646951675, -0.02597600594162941, 0.08646226674318314, 0.008814196102321148, -0.013666670769453049, 0.03563005477190018, -0.017458725720643997, 0.01379392109811306, 0.0586029551923275, 0.005832300521433353, 0.029352378100156784, 0.0005652029067277908, 0.014896756038069725, -0.06437163054943085, 0.016152290627360344, -0.0421452634036541, 0.001774079748429358, 0.008882063440978527, 0.09487774223089218, -0.02660377323627472, 0.05605795234441757, -0.017475692555308342, -0.020953863859176636, -0.04272213205695152, -0.04221313074231148, 0.017967727035284042, -0.0394984595477581, -0.028130775317549706, 0.022871101275086403, -0.036885589361190796, -0.014786472544074059, -0.030404312536120415, -0.001596989925019443, -0.0586029551923275, -0.014540455304086208, 0.020105529576539993, 0.03459508344531059, 0.0008122803992591798, -0.039294857531785965, 0.007367786020040512, -0.0068375770933926105, -0.015711156651377678, -0.050458941608667374, 0.005989242345094681, -0.01022243220359087, 0.016907308250665665, -0.024550803005695343, 0.018290095031261444, 0.0042056189849972725, 0.03535858541727066, 0.03742852434515953, -0.006625493057072163, 0.031558047980070114, -0.039362724870443344, -0.0009596784948371351, -0.06521996110677719, -0.053580813109874725, 0.03902339190244675, 0.022429967299103737, -0.03525678440928459, -0.0015079147415235639, 0.026094771921634674, -0.03228761628270149, -0.0067442599684000015, -0.017696259543299675, -0.010841716080904007, 0.033594049513339996, -0.05503994971513748, -0.0019363237079232931, -0.060062091797590256, 0.010985933244228363, -0.03997352719306946, 0.005649908445775509, 0.004954274278134108, 0.0067654685117304325, 0.06338756531476974, -0.0032682090532034636, 0.07139583677053452, 0.030048010870814323, 0.05320754647254944, -0.07662158459424973, 0.023973936215043068, 0.0028122293297201395, -0.02706187404692173, 0.051443010568618774, 0.019562596455216408, -0.014464105479419231, -0.02192096598446369, 0.0539880134165287, -0.004568282049149275, -0.04289179667830467, 0.020597564056515694, 0.04302753135561943, -0.021819166839122772, -0.021310165524482727, -0.023091668263077736, 0.04414733126759529, -0.061521224677562714, -0.0714637041091919, -0.05066254362463951, 0.014073871076107025, 0.027808409184217453, -0.010027315467596054, -0.0036223887000232935, -0.027333341538906097, 0.04652266949415207, -0.02597600594162941, 0.006583076436072588, -0.01834099367260933, -0.012606251984834671, 0.020563630387187004, -0.008309437893331051, 0.03276268392801285, 0.0375303216278553, 0.035799719393253326, 0.009077180176973343, -0.005679600406438112, -0.04051646217703819, 0.013352787122130394, 0.02699400670826435, -0.0060486258007586, 0.04224706441164017, 0.05324148014187813, 0.07349970936775208, 0.02772357501089573, -0.011359200812876225, 0.06908836960792542, 0.0013732416555285454, -0.0021187157835811377, 0.0625731572508812, -0.028402242809534073, 0.01932506263256073, 0.028470110148191452, -0.0684775710105896, 0.012767435982823372, 0.024703504517674446, 0.037055253982543945, 0.07614651322364807, 0.029606876894831657, -0.07431410998106003, -0.005047590937465429, 0.03671592101454735, -0.00012844316370319575, -0.06046929210424423, 0.03525678440928459, 0.013717570342123508, -0.007164185866713524, -0.028979109600186348, 0.09182373434305191, 0.08408692479133606, -0.03512105345726013, -0.018544593825936317, 0.04709953814744949, -0.0005058195092715323, 0.012385684996843338, 0.015482106246054173, 0.03837865591049194, -0.024516869336366653, -0.034052152186632156, 0.004453756846487522, 0.04961060732603073, -0.00931471399962902, -0.04183986410498619, -0.029674744233489037, 0.006455826573073864, 0.03993959352374077, 0.016737641766667366, 0.003565126098692417, 0.003416667692363262, 0.029589911922812462, 0.022837167605757713, 0.005378441419452429, 0.051205478608608246, 0.02219243347644806, 0.0325930155813694, 0.008513038046658039, 0.026094771921634674, -0.032677847892045975, -0.055752549320459366, 0.07499277591705322, 0.0176114272326231, 0.05503994971513748, 0.020919932052493095, 0.04933914169669151, -0.06219989433884621, 0.02341403439640999, -0.0008000856032595038, 0.018256161361932755, -0.03286448121070862, 0.008703912608325481, -0.042314931750297546, 0.040244992822408676, -0.01538878958672285, 0.030014079064130783, -0.024771369993686676, -0.03356011584401131, 0.04272213205695152, 0.0246865376830101, -0.05751708522439003, -0.0454368032515049, 0.029606876894831657, -0.02989531122148037, 0.03875192627310753, -0.04723526909947395, -0.00782164465636015, -0.02577240578830242, -0.00864452961832285, 0.0707850381731987, -0.0008727242238819599, 0.016211673617362976, -0.050187475979328156, -0.0658307671546936, -0.01188516803085804, 0.06460916250944138, -0.0013340061996132135, 0.06773103773593903, 0.03031947836279869, -0.047744270414114, -0.04078792780637741, -0.002021157182753086, -0.05106974393129349, -0.009170496836304665, -0.0011251037940382957, -0.004763398785144091, 0.005747466813772917, 0.009085663594305515, -0.01381088700145483, -0.008025245741009712, 0.0018567923689261079, 0.06094435974955559, 0.003601180389523506, 0.004559798631817102, -0.021055664867162704, -0.03525678440928459, -0.01188516803085804, 0.005845025647431612, 0.013344303704798222, 0.025008903816342354, 0.018001660704612732, -0.014353821985423565, 0.04394373297691345, 0.03739459067583084, 0.07784318178892136, -0.01288620289415121, 0.015202156268060207, -0.005501450039446354, -0.027146708220243454, -0.02650197222828865, 0.0024686537217348814, 0.02699400670826435, -0.054530948400497437, -0.010247882455587387, -0.03634265437722206, 0.01771322637796402, 0.04519926756620407, -0.031727712601423264, 0.05049287527799606, -0.025229470804333687, 0.049237340688705444, -0.006723051890730858, 0.0010381494648754597, 0.0008615898550488055, -0.031727712601423264, 0.024618670344352722, 0.03167681396007538, 0.04119512811303139, -0.041296929121017456, -0.01974922977387905, 0.0041695646941661835, -0.021276231855154037, -0.006269192788749933, 0.017365409061312675, 0.026943106204271317, 0.020360030233860016, -0.021971866488456726, -0.0038344725035130978, 0.00010279429261572659, 0.02712974138557911, -0.03664805367588997, 0.044520601630210876, -0.004848232492804527, -0.030590945854783058, -0.014235055074095726, 0.02100476436316967, -0.06874903291463852, 0.04526713490486145, 0.0011038953671231866, -0.013997521251440048, 0.05001780763268471, 0.04991600662469864, 0.02699400670826435, -0.01097744982689619, 0.00915353000164032, 0.008343370631337166, -0.008542729541659355, -0.06861330568790436, -0.042586397379636765, 0.02324436791241169, 0.018849994987249374, -0.06498242914676666, -0.018391894176602364, -0.03844652324914932, -0.010951999574899673, -0.0026913415640592575, 0.003563005244359374, 0.0020402446389198303, 0.03308504819869995, -0.021971866488456726, -0.0028207125142216682, -0.07696091383695602, -0.04289179667830467, 0.012224501930177212, 0.062301695346832275, 0.055854350328445435, 0.027333341538906097, -0.014531971886754036, -0.03607118874788284, -0.02887731045484543, -0.027791442349553108, -0.018391894176602364, 0.0385143905878067, 0.09440267831087112, -0.0013297644909471273, 0.03661412000656128, -0.015015522949397564, -0.022888068109750748, -0.03305111452937126, -0.029623843729496002, -0.024550803005695343, 0.026451073586940765, -0.07499277591705322, -0.04682806879281998, -0.021802200004458427, 0.034323617815971375, -0.055922217667102814, 0.05161267891526222, -0.04112726077437401, 0.009654047898948193, 0.022905034944415092, -0.019375963136553764, 0.014582871459424496, 0.008788746781647205, -0.010578732937574387, 0.046760205179452896, 0.007321127690374851, 0.008262778632342815, -0.06942770630121231, 0.018154360353946686, 0.031727712601423264, 0.0008621200686320662, -0.04014319181442261, 0.011121666990220547, -0.04404553398489952, 0.022837167605757713, -0.041602328419685364, -0.0454368032515049, 0.01883302815258503, -0.005628699902445078, -0.01817132718861103, -0.0325930155813694, -0.014735572040081024, -0.04526713490486145, 0.004360439721494913, -0.021157465875148773, 0.058127887547016144, -0.010960482992231846, 0.05741528794169426, 0.0031176297925412655, 0.04431699961423874, -0.08157585561275482, -0.010867166332900524, -0.01582992449402809, 0.04652266949415207, -0.018748193979263306, -0.0020010091830044985, 0.016703708097338676, 0.010621149092912674, -0.07811465114355087, 0.010875649750232697, 0.04326506331562996, 0.0008515158551745117, -0.004424064885824919, -0.015490589663386345, -0.017492659389972687, 0.024177536368370056, -0.016483141109347343, -0.025144638493657112, -0.012351752258837223, -0.05537928268313408, -0.025891171768307686, -0.006510968320071697, 0.014523488469421864, 0.04849080741405487, 0.04893194139003754, 0.03834472596645355, -0.020326096564531326, 0.03993959352374077, 0.007486552931368351, 0.029674744233489037, 0.017475692555308342, 0.03042127937078476, 0.07417837530374527, 0.02265053428709507, -0.04058432579040527, 0.017933793365955353, -0.013649703934788704, 0.004945790860801935, -0.004029589239507914, -0.06043535843491554, -0.042484596371650696, -0.045810069888830185, -0.03647838905453682, -0.08347612619400024, -0.02555183880031109, 0.03383158519864082, -0.016381341964006424, 0.09460627287626266, -0.021310165524482727, 0.02943721041083336, -0.022277267649769783, -0.03220278024673462, 0.014294438064098358, 0.04530106857419014, -0.03970205783843994, 0.02699400670826435, 0.011367683298885822, -0.09616721421480179, -0.005878958851099014, -0.07377117872238159, -0.009085663594305515, 0.025212503969669342, -0.019036628305912018, 0.013310370035469532, 0.018782127648591995, 0.020919932052493095, 0.04224706441164017, 0.03671592101454735, 0.062403492629528046, 0.016618875786662102, 0.08116865158081055, -0.024177536368370056, -0.028334375470876694, 0.04737100377678871, -0.03569791838526726, -0.023227401077747345, -0.004082610365003347, 0.02310863509774208, -0.0375303216278553, -0.04112726077437401, 0.023973936215043068, -0.06186055764555931, 0.06718809902667999, 0.03793752193450928, -0.006943618878722191, -0.007079352159053087, -0.020461831241846085, 0.04638693481683731, 0.01375998742878437, -0.02472047135233879, -0.03186344727873802, 0.01883302815258503, -0.012852269224822521, 0.026213539764285088, -0.04075399413704872, 0.034917451441287994, -0.016254091635346413, 0.02768964134156704, -0.00332547165453434, -0.01351397018879652, -0.007919203490018845, -0.018748193979263306, -0.003280934179201722, -0.027570875361561775, 0.004059281200170517, -0.002002069726586342, -0.008665737695991993, -0.042314931750297546, -0.015482106246054173, -0.04458846524357796, -0.02495800331234932, -0.03400124981999397, 0.056804485619068146, -0.022328166291117668, 0.0008048574673011899, 0.023329202085733414, -0.03607118874788284, 0.07553571462631226, -0.05551501736044884, 0.024092702195048332, 0.05748315155506134, -0.003700859611853957, 0.004699773620814085, -0.028266509994864464, 0.012852269224822521, -0.040244992822408676, 0.005382683128118515, -0.04564040154218674, -0.02548397146165371, -0.05938342213630676, 0.0000854962199809961, -0.010875649750232697, 0.00785133708268404, 0.001180245541036129, 0.007011485751718283, 0.013675154186785221, -0.03875192627310753, 0.03766605630517006, -0.01750962622463703, -0.015253055840730667, -0.002292624209076166, 0.018120426684617996, -0.026858273893594742, -0.04889800772070885, -0.01866336166858673, 0.02307470142841339, 0.008241570554673672, 0.028860343620181084, 0.01731450855731964, -0.05283427983522415, -0.001985102891921997, -0.004436790011823177, -0.06040142476558685, -0.038073256611824036, 0.0008207637583836913, -0.005789883900433779, -0.04418126493692398, -0.02433023601770401, 0.061351560056209564, 0.0017793818842619658, 0.005946825724095106, -0.026790406554937363, 0.05280034616589546, -0.012979519553482533, -0.011316783726215363, 0.01487978920340538, -0.005895925685763359, 0.04289179667830467, -0.0057856421917676926, -0.04085579514503479, -0.026756472885608673, 0.027333341538906097, -0.026298372074961662, 0.02656983956694603, 0.02058059722185135, 0.041534461081027985, -0.0813043862581253, -0.018154360353946686, -0.019375963136553764, 0.011953034438192844, -0.019070561975240707, -0.07560358196496964, 0.006057109218090773, 0.02117443084716797, 0.03902339190244675, 0.023006834089756012, 0.014777989126741886, 0.04760853946208954, -0.06786676496267319, 0.010646599344909191, -0.026841307058930397, 0.06593256443738937, 0.016975175589323044, 0.02103869803249836, -0.0030243129003793, 0.021887032315135002, 0.019579563289880753, -0.015142772346735, 0.018476728349924088, -0.02775750868022442, 0.004018985200673342, -0.019664395600557327, -0.013284919783473015, -0.03837865591049194, 0.06593256443738937, -0.02446597069501877, -0.000032177067623706535, 0.035833653062582016, 0.009000830352306366, -0.04638693481683731, 0.04302753135561943, -0.020648464560508728, 0.03539251908659935, 0.06274282932281494, 0.01387875434011221, -0.030641846358776093, -0.025704538449645042, -0.05052680894732475, 0.01883302815258503, -0.05008567497134209, -0.017560526728630066, 0.007893753238022327, -0.016508592292666435, 0.01837492734193802, -0.027808409184217453, -0.04058432579040527, -0.001604412798769772, 0.005314816255122423, -0.06491456180810928, 0.050458941608667374, 0.063217893242836, 0.017136359587311745, -0.012843785807490349, 0.03865012526512146, 0.011528867296874523, 0.036953456699848175, -0.02824954316020012, -0.019630461931228638, 0.018816061317920685, -0.020173396915197372, -0.001979800872504711, -0.02748604118824005, 0.008720879442989826, -0.027808409184217453, -0.011961517855525017, 0.04743887111544609, 0.0243641696870327, 0.06610222905874252, -0.0638626292347908, 0.010129115544259548, -0.04940700903534889, 0.07858971506357193, -0.011791851371526718, -0.0002908197056967765, 0.015117323026061058, -0.02723154053092003, -0.005556591786444187, 0.08999133855104446, 0.001366879092529416, 0.01109621673822403, -0.008385787717998028, 0.022141532972455025, -0.04435093328356743, 0.011461000889539719, 0.04628513753414154, 0.02640017308294773, 0.014116288162767887, -0.016279540956020355, -0.039091259241104126, 0.0016775816911831498, -0.062301695346832275, 0.028164708986878395, 0.0338994525372982, -0.033458318561315536, 0.024601703509688377, 0.008037970401346684, 0.0016510712448507547, 0.04234886169433594, 0.037021324038505554, 0.03793752193450928, -0.015168222598731518, 0.0010089880088344216, 0.03569791838526726, 0.0049033742398023605, 0.028436176478862762, 0.019935863092541695, 0.012411135248839855, -0.013429136946797371, -0.0012003934243693948, -0.02614567242562771, 0.008720879442989826, -0.0049797240644693375, -0.002154769841581583, 0.010086698457598686, 0.05425948277115822, -0.06762923300266266, -0.0038238682318478823, -0.0052002910524606705, -0.020393963903188705, -0.04547073319554329, 0.010417548939585686, -0.01051934901624918, 0.010672049596905708, -0.017322992905974388, 0.13390113413333893, 0.02341403439640999, -0.01974922977387905, 0.03976992517709732, -0.023651568219065666, -0.026620740070939064, -0.0549720823764801, 0.018714262172579765, -0.0365462563931942, -0.02037699706852436, 0.05789035186171532, -0.07064930349588394, 0.07411050796508789, 0.022260300815105438, -0.02159859985113144, -0.040312860161066055, -0.046862002462148666, 0.005310574546456337, 0.0071769109927117825, -0.08015065640211105, -0.019409894943237305, -0.030115878209471703, 0.022345133125782013, -0.04183986410498619, 0.022463900968432426, -0.04014319181442261, 0.038242924958467484, 0.09243454039096832, -0.034221816807985306, -0.03269481658935547, -0.026586806401610374, 0.007707119919359684, 0.021971866488456726, 0.0553114153444767, -0.055922217667102814, -0.028690677136182785, 0.01668674126267433, 0.029708677902817726, -0.010578732937574387, 0.028690677136182785, -0.027265474200248718, 0.09263814240694046, -0.03378068283200264, 0.03508711978793144, -0.03395035117864609, 0.07451771199703217, -0.062369558960199356, -0.0112743666395545, -0.07336397469043732, 0.03980385884642601, -0.027570875361561775, -0.0024856203235685825, -0.0029946211725473404, 0.014659222215414047, -0.04618333652615547, -0.015609356574714184, -0.05717775225639343, -0.059247687458992004, -0.02857190929353237, -0.059145890176296234, 0.07404264807701111, -0.01771322637796402, -0.06376083195209503, -0.04994994029402733, -0.035969387739896774, 0.09630294144153595, -0.04869440570473671, -0.002064634347334504, 0.10098575055599213, 0.019664395600557327, -0.022429967299103737, -0.0002022747794399038, 0.0068375770933926105, 0.02531430497765541, -0.06963130086660385, 0.047031670808792114, -0.026332305744290352, -0.017475692555308342, -0.004992449190467596, 0.04540286958217621, -0.011893651448190212, 0.021021731197834015, -0.05717775225639343, -0.03848045691847801, 0.04665840417146683, -0.008054937236011028, -0.0339164175093174, 0.00814825389534235, 0.021089598536491394, 0.04384193196892738 ]
24,446
codecs
__init__
null
def __init__(self, errors='strict'): IncrementalDecoder.__init__(self, errors) # undecoded input that is kept between calls to decode() self.buffer = b""
(self, errors='strict')
[ 0.004362620413303375, -0.004204290919005871, -0.055081557482481, 0.05025464668869972, -0.05559505894780159, 0.009114645421504974, -0.034849613904953, 0.046043939888477325, 0.024083204567432404, -0.03099835477769375, 0.0404638908803463, 0.03878645598888397, -0.018109474331140518, 0.07278022915124893, -0.003551716450601816, 0.047926776111125946, 0.007278879173099995, 0.027900230139493942, -0.05758059769868851, 0.02394627034664154, -0.0674055889248848, 0.027506545186042786, -0.02454535663127899, 0.1213916763663292, -0.03207670524716377, 0.05412302166223526, -0.002556807827204466, -0.03519194573163986, -0.0022722426801919937, -0.027865996584296227, 0.004289874341338873, -0.012075835838913918, 0.009063296020030975, 0.04429803416132927, -0.033805493265390396, -0.04758444055914879, -0.04200439527630806, 0.0175018310546875, -0.10728751122951508, 0.008969154208898544, 0.0034169224090874195, -0.007693959400057793, -0.009071853943169117, -0.012957346625626087, 0.018811259418725967, 0.005481624975800514, 0.003930423408746719, -0.02670206129550934, -0.015028467401862144, -0.014848741702735424, -0.00421926798298955, 0.026565127074718475, 0.008387185633182526, 0.028311030939221382, 0.004737048409879208, 0.05840219929814339, 0.0043283868581056595, 0.04378453269600868, -0.04525656998157501, -0.003932563122361898, -0.09708595275878906, -0.0000388468979508616, 0.024134555831551552, -0.0022187528666108847, -0.026907460764050484, 0.0035025058314204216, -0.026496659964323044, 0.0004043821827508509, 0.016089703887701035, 0.001989817013964057, 0.035037897527217865, 0.024699406698346138, -0.05990846827626228, 0.04258636385202408, 0.010372723452746868, -0.010295698419213295, -0.04761867597699165, 0.02481922321021557, -0.0174504816532135, -0.0024690846912562847, 0.046797074377536774, 0.04313409700989723, 0.020146362483501434, 0.03734865039587021, 0.025521008297801018, -0.06511195003986359, 0.023432770743966103, -0.013616339303553104, -0.04395569860935211, 0.05655359476804733, -0.01612393744289875, 0.015310892835259438, -0.02201208285987377, 0.0635029748082161, -0.013462289236485958, -0.013282563537359238, -0.009020503610372543, 0.004437505733221769, 0.0016699485713616014, -0.022902151569724083, -0.023158902302384377, 0.02641107700765133, -0.08715826272964478, -0.04549620300531387, -0.032744258642196655, 0.03628741577267647, 0.04207286238670349, -0.03512347862124443, 0.03183707222342491, -0.017852723598480225, 0.05634819343686104, -0.0016100400825962424, -0.023929154500365257, 0.043271031230688095, -0.025863341987133026, 0.02064274623990059, -0.00000900131453818176, 0.004360480699688196, 0.022388650104403496, 0.04789254069328308, 0.0302965696901083, -0.012897437438368797, -0.0552869588136673, 0.023569703102111816, 0.052445586770772934, 0.00561855873093009, 0.03632165119051933, 0.007749588694423437, 0.06281831115484238, -0.01964997872710228, 0.01182764396071434, 0.035037897527217865, 0.008528398349881172, 0.02841373160481453, -0.00642732298001647, -0.00701784947887063, 0.031392037868499756, -0.010021830908954144, -0.07346490025520325, -0.003066029865294695, 0.03395954519510269, 0.05340412259101868, 0.08291332423686981, -0.027900230139493942, -0.054568056017160416, 0.03407936170697212, 0.02558947540819645, -0.027814647182822227, -0.038683753460645676, -0.004148661624640226, 0.029320916160941124, -0.020796798169612885, -0.012067277915775776, 0.06747405230998993, 0.05025464668869972, 0.010655148886144161, -0.006401647813618183, 0.04094316065311432, -0.01103171706199646, 0.012709153816103935, 0.004801236093044281, -0.004369039088487625, -0.007749588694423437, -0.05631396174430847, 0.011596567928791046, 0.020368879660964012, 0.011202883906662464, -0.02435707300901413, -0.020625630393624306, 0.03611624985933304, 0.011348376050591469, 0.006842403206974268, -0.004578718915581703, 0.0020679119043052197, 0.039436887949705124, 0.0429629310965538, 0.0036501374561339617, 0.039813458919525146, -0.02659936062991619, 0.03276137635111809, -0.0038790733087807894, 0.028738949447870255, -0.02435707300901413, -0.03188842162489891, 0.06596778333187103, 0.023021969944238663, 0.03618471696972847, 0.0336514450609684, 0.06791909039020538, -0.04087469354271889, 0.05412302166223526, 0.02911551669239998, 0.024630939587950706, -0.034849613904953, 0.022251717746257782, -0.03840988874435425, 0.03478114679455757, -0.011014600284397602, 0.03464421257376671, 0.00935427937656641, -0.04378453269600868, 0.041730526834726334, -0.003095984226092696, -0.05936073511838913, -0.05655359476804733, 0.04508540406823158, -0.03519194573163986, 0.04214132949709892, -0.008006338961422443, -0.010860549286007881, -0.02213190123438835, -0.010081739164888859, 0.07182169705629349, 0.0018411156488582492, 0.015850069001317024, -0.044332265853881836, -0.007877963595092297, -0.010894782841205597, 0.055218491703271866, 0.019975194707512856, 0.12775908410549164, 0.006863798946142197, -0.04782407730817795, -0.06435881555080414, -0.048748377710580826, 0.020916614681482315, -0.010612357407808304, -0.0195301603525877, -0.04761867597699165, 0.012366820126771927, 0.01564466953277588, -0.016372129321098328, -0.027848880738019943, 0.02264540083706379, 0.04272329807281494, 0.030741604045033455, 0.029320916160941124, -0.037382885813713074, -0.07127396017313004, -0.055081557482481, -0.0013051488203927875, -0.011921785771846771, 0.010774966329336166, -0.006213364191353321, -0.007535629440099001, 0.04734480753540993, 0.017467597499489784, 0.06363990902900696, -0.04477730020880699, 0.005943776108324528, 0.0005498741520568728, -0.013778948225080967, -0.03159743919968605, 0.0024669452104717493, 0.033737026154994965, -0.05501309037208557, -0.00875091552734375, -0.06935688853263855, 0.05042581632733345, 0.033497393131256104, -0.016594646498560905, 0.011288467794656754, -0.03570544719696045, 0.05090508237481117, 0.024562472477555275, 0.012383936904370785, -0.018451808020472527, -0.03899185359477997, 0.022730985656380653, 0.006752540357410908, 0.07777830958366394, -0.03604778274893761, -0.027027279138565063, 0.002080749487504363, -0.0228850357234478, -0.008395744487643242, 0.021464349702000618, 0.022902151569724083, 0.02059139683842659, -0.015961328521370888, 0.04895377904176712, -0.0037250230088829994, 0.03899185359477997, -0.024836339056491852, 0.026445310562849045, -0.02517867460846901, -0.014318124391138554, 0.011065950617194176, -0.009953364729881287, -0.05912110209465027, 0.03135780617594719, 0.009542562998831272, -0.003508924739435315, 0.037690985947847366, 0.06511195003986359, -0.007719634100794792, -0.030108286067843437, 0.02264540083706379, -0.021618399769067764, -0.037793684750795364, -0.0766143724322319, -0.057614829391241074, 0.014455057680606842, 0.04477730020880699, -0.05278791859745979, -0.03539734706282616, -0.03271002322435379, 0.0029226774349808693, 0.0007477860781364143, 0.015071258880198002, 0.050631213933229446, 0.07168476283550262, -0.007266041357070208, 0.0175275057554245, -0.04029272496700287, -0.02993711829185486, 0.05655359476804733, 0.043510664254426956, 0.02011212892830372, 0.0635029748082161, -0.010903341695666313, -0.052685219794511795, -0.010749290697276592, -0.03772521764039993, -0.027746180072426796, 0.03428476303815842, 0.05925803631544113, -0.008759474381804466, 0.002043306827545166, -0.01622663624584675, -0.03871798887848854, -0.014788833446800709, -0.027078628540039062, -0.044161099940538406, -0.0012227746192365885, -0.06928842514753342, -0.058915700763463974, -0.0524798184633255, 0.013684806413948536, -0.08065391331911087, 0.04378453269600868, -0.07524503767490387, 0.01694553904235363, 0.035979315638542175, -0.004272757563740015, -0.027369612827897072, -0.022337300702929497, -0.029269566759467125, 0.029047049582004547, 0.00902906246483326, -0.017904074862599373, -0.031922657042741776, 0.024391304701566696, 0.06387954205274582, 0.03940265625715256, -0.04936457797884941, -0.023193135857582092, 0.017493274062871933, 0.02065986394882202, -0.04323679953813553, -0.021190481260418892, 0.03065601922571659, -0.020813914015889168, -0.02764347940683365, -0.009285813197493553, -0.03587661683559418, -0.016089703887701035, -0.014549199491739273, -0.00491249468177557, 0.061209339648485184, -0.02706151083111763, -0.011836201883852482, -0.07209556549787521, 0.00791647657752037, -0.052685219794511795, 0.0018154405988752842, -0.031871307641267776, 0.029577666893601418, -0.03161455690860748, 0.005995125975459814, -0.012075835838913918, 0.01994096115231514, -0.05829950049519539, 0.0021866592578589916, 0.0114425178617239, 0.007865126244723797, -0.06528311222791672, 0.0067953323014080524, 0.039505355060100555, 0.055389657616615295, -0.01723652333021164, -0.010115972720086575, 0.0009590703994035721, -0.0375540517270565, -0.027266912162303925, 0.03407936170697212, 0.023518353700637817, 0.04217556118965149, 0.009456980042159557, -0.0033976661507040262, -0.011613684706389904, -0.003301384625956416, 0.015516293235123158, 0.05467075854539871, 0.030690252780914307, 0.028430847451090813, 0.09290947765111923, 0.012786178849637508, -0.016046911478042603, -0.0052505494095385075, 0.008832219988107681, -0.015422151423990726, -0.0037934898864477873, -0.06518041342496872, -0.03748558461666107, -0.04197016358375549, -0.03454151377081871, -0.06497501581907272, 0.005597162526100874, 0.021036431193351746, -0.02800293080508709, 0.1034533679485321, -0.00542599568143487, 0.017467597499489784, -0.03728018328547478, 0.006350297946482897, 0.018554508686065674, 0.019923845306038857, -0.01715949736535549, 0.027489429339766502, -0.011528100818395615, -0.004664302337914705, 0.009491213597357273, -0.06511195003986359, -0.025384074077010155, 0.01865720935165882, -0.041388195008039474, 0.00034875288838520646, 0.004540206398814917, 0.051144715398550034, 0.03724595159292221, 0.035260412842035294, 0.08455652743577957, 0.031135287135839462, 0.05193208530545235, -0.01894819363951683, -0.025863341987133026, 0.08455652743577957, -0.047447506338357925, -0.016192402690649033, -0.005708421114832163, -0.025110207498073578, -0.021738216280937195, -0.057683296501636505, -0.014891534112393856, -0.03407936170697212, 0.028961466625332832, 0.04590700566768646, -0.009782196953892708, -0.023723753169178963, -0.03796485438942909, 0.03669821843504906, -0.015045584179461002, -0.008883570320904255, -0.039984624832868576, 0.06685785204172134, 0.005451670847833157, 0.04135395959019661, -0.06093547120690346, 0.03087853640317917, -0.03334334120154381, 0.02942361682653427, -0.003196544712409377, -0.0052505494095385075, -0.004296293016523123, -0.021447231993079185, 0.03428476303815842, -0.043921466916799545, -0.02701016142964363, -0.041388195008039474, -0.01714238151907921, -0.054157257080078125, -0.008245972916483879, -0.0034960871562361717, 0.00492533203214407, -0.019684212282299995, 0.020095013082027435, -0.03748558461666107, 0.015773044899106026, 0.03265867382287979, -0.058813001960515976, 0.08017464727163315, -0.07503964006900787, -0.022251717746257782, 0.023672403767704964, 0.013333913870155811, -0.005511579103767872, -0.0009237672202289104, 0.008164668455719948, -0.04190169647336006, -0.016928421333432198, -0.043852999806404114, -0.036561284214258194, -0.0872267335653305, 0.0031152404844760895, -0.004471739288419485, -0.0376567542552948, -0.016543295234441757, -0.006260435096919537, 0.02858489751815796, -0.04943304508924484, 0.04505116865038872, -0.003128078067675233, 0.010526773519814014, -0.006204805802553892, 0.026085859164595604, -0.031152404844760895, -0.033446043729782104, -0.05987423658370972, 0.015250984579324722, 0.0303479190915823, 0.050973549485206604, 0.02230306714773178, -0.061448972672224045, 0.007484279572963715, -0.025811992585659027, -0.04207286238670349, -0.04494846984744072, 0.009200229309499264, -0.024031855165958405, -0.01709103025496006, -0.04648897424340248, 0.026513777673244476, 0.021840916946530342, 0.007026407867670059, -0.0024926201440393925, 0.06148320809006691, 0.0031580321956425905, -0.06312640756368637, -0.02023194544017315, -0.0036758126225322485, 0.061859775334596634, 0.0114681925624609, -0.053096022456884384, -0.01012453157454729, 0.010680824518203735, -0.047447506338357925, 0.07065775990486145, 0.01650906167924404, -0.0038812130223959684, -0.09051313996315002, -0.06007963791489601, -0.016663113608956337, -0.0032029636204242706, 0.0013639874523505569, -0.07859991490840912, 0.042278263717889786, 0.03686938434839249, 0.042038630694150925, 0.03611624985933304, 0.016740137711167336, 0.03960805758833885, -0.07168476283550262, -0.012991579249501228, -0.036732450127601624, 0.04823487624526024, 0.01388164795935154, 0.007993501611053944, -0.027746180072426796, 0.021344531327486038, 0.019085125997662544, -0.005772608797997236, 0.01208439376205206, 0.037793684750795364, 0.005785446614027023, -0.00861826166510582, -0.03171725571155548, 0.051692452281713486, 0.04525656998157501, -0.02411743812263012, 0.0431683324277401, 0.04553043842315674, -0.03459286317229271, -0.04772137477993965, 0.03171725571155548, -0.030193869024515152, 0.02577775903046131, 0.004088752903044224, 0.005682746414095163, -0.03553428128361702, -0.015987003222107887, -0.06322911381721497, -0.02906416542828083, -0.0011457494692876935, -0.013094279915094376, 0.03128933906555176, 0.006637002807110548, -0.023723753169178963, -0.013008696027100086, -0.013094279915094376, -0.021806683391332626, 0.017955424264073372, -0.04713940620422363, 0.02124183252453804, 0.054157257080078125, 0.014523524791002274, -0.04529080167412758, 0.06716595590114594, 0.003868375439196825, 0.033497393131256104, -0.028105631470680237, -0.005935217719525099, 0.015875743702054024, -0.023792220279574394, -0.013487963937222958, -0.023929154500365257, -0.004030984360724688, 0.01929052732884884, 0.013410938903689384, 0.049330346286296844, 0.03418206050992012, 0.02901281602680683, -0.06237327679991722, 0.035157714039087296, -0.06114087253808975, 0.04570160433650017, -0.013505080714821815, -0.01858874224126339, -0.01156233437359333, -0.015730252489447594, 0.032744258642196655, 0.050391580909490585, 0.015653226524591446, -0.00019323156448081136, -0.0015265961410477757, 0.028259681537747383, -0.030108286067843437, 0.022559817880392075, 0.06843259185552597, 0.060216572135686874, -0.011759176850318909, -0.03363432735204697, -0.023518353700637817, -0.01824640855193138, -0.056519363075494766, -0.027814647182822227, 0.00795498862862587, -0.007390137761831284, 0.034438811242580414, 0.017270756885409355, 0.0008922083070501685, 0.0525825209915638, 0.03342892602086067, 0.029577666893601418, 0.009585355408489704, -0.014797392301261425, 0.030039818957448006, 0.04898801073431969, 0.03312082588672638, 0.015096934512257576, -0.02942361682653427, 0.007381579373031855, 0.019513044506311417, 0.00523343263193965, -0.012229885905981064, 0.027797529473900795, -0.014523524791002274, -0.012247002683579922, 0.021019315347075462, -0.02476787380874157, -0.03140915557742119, 0.008952037431299686, -0.005614279303699732, -0.03164878860116005, -0.0004485111858230084, 0.002595320576801896, 0.031203754246234894, -0.04214132949709892, 0.09448421746492386, 0.01923917792737484, -0.03041638620197773, 0.03837565332651138, -0.01496855914592743, -0.06658398360013962, -0.029509199783205986, 0.008310160599648952, -0.00853267777711153, 0.01877702586352825, 0.03940265625715256, -0.07147936522960663, 0.03957382217049599, 0.010937575250864029, 0.016928421333432198, -0.0289443489164114, -0.05716979503631592, 0.010894782841205597, -0.031392037868499756, -0.061448972672224045, -0.0025204347912222147, -0.02995423413813114, 0.025914693251252174, -0.032795608043670654, -0.007471442222595215, -0.028430847451090813, 0.02476787380874157, 0.052924852818250656, -0.03181995451450348, -0.025863341987133026, -0.02011212892830372, -0.011211441829800606, 0.03823871910572052, 0.058504898101091385, -0.021036431193351746, -0.04737904295325279, -0.008280206471681595, 0.034438811242580414, -0.030262336134910583, 0.04464036971330643, -0.0234841201454401, 0.06822718679904938, -0.03560274839401245, 0.012075835838913918, -0.0009799314429983497, 0.08585739880800247, -0.005105057265609503, -0.01126279216259718, -0.06668668240308762, -0.0012933810940012336, 0.02416878752410412, -0.013282563537359238, 0.01424109935760498, 0.02805428020656109, -0.08257098495960236, -0.018605859950184822, -0.06247597560286522, -0.07079469412565231, -0.011040274985134602, -0.024921923875808716, 0.08394032716751099, 0.0362531840801239, -0.03611624985933304, -0.05111048370599747, -0.008138993754982948, 0.07983231544494629, -0.0469682402908802, 0.0057512130588293076, 0.07168476283550262, 0.020676979795098305, -0.039334189146757126, -0.0028756065294146538, -0.0021363787818700075, 0.0009098598966374993, -0.04357913136482239, 0.05871029943227768, 0.002180240349844098, -0.015944210812449455, -0.038923390209674835, 0.06425610929727554, -0.0005102917784824967, 0.0003760326362680644, -0.08229712396860123, -0.02254270203411579, 0.06500925123691559, 0.001386453164741397, -0.026804761961102486, 0.055218491703271866, 0.007993501611053944, 0.01580727845430374 ]
24,447
codecs
decode
null
def decode(self, input, final=False): # decode input (taking the buffer into account) data = self.buffer + input (result, consumed) = self._buffer_decode(data, self.errors, final) # keep undecoded input until the next call self.buffer = data[consumed:] return result
(self, input, final=False)
[ -0.008207496255636215, 0.002534923842176795, -0.06760957837104797, 0.0343618169426918, -0.027172643691301346, -0.03136777877807617, -0.020610127598047256, 0.029505208134651184, 0.06315333396196365, -0.06538145244121552, 0.05566823482513428, 0.044109851121902466, -0.030810749158263206, 0.044388365000486374, 0.023360466584563255, 0.059880778193473816, 0.018625706434249878, 0.022698992863297462, -0.05873190239071846, 0.028826327994465828, -0.053126782178878784, 0.029627058655023575, 0.015126858837902546, 0.07631317526102066, -0.04014100879430771, 0.02924410067498684, 0.04313504695892334, -0.05068977549672127, -0.004423605278134346, -0.01911310851573944, -0.006445016711950302, 0.021410860121250153, 0.0022368256468325853, 0.032725539058446884, -0.03547587990760803, 0.012280781753361225, -0.005317900329828262, 0.02602376788854599, 0.021602338179945946, 0.04306541755795479, -0.0417424701154232, -0.0398624949157238, 0.018242748454213142, 0.0007359982701018453, 0.037007711827754974, 0.01207189541310072, -0.03739067167043686, -0.004310458432883024, -0.008216199465095997, 0.04104618355631828, 0.014221684075891972, 0.0034009322989732027, -0.013255584985017776, 0.0007017278694547713, 0.019443845376372337, -0.008620916865766048, 0.030375568196177483, 0.047034259885549545, -0.01864311471581459, 0.005753080360591412, -0.019269773736596107, 0.008412030525505543, -0.016153883188962936, -0.021254194900393486, -0.031106671318411827, 0.010609690099954605, -0.007267507258802652, -0.016284437850117683, -0.041289884597063065, 0.048914238810539246, -0.03749511390924454, 0.05135124921798706, -0.03470996022224426, 0.03916620463132858, 0.017912011593580246, -0.044806137681007385, 0.06785327941179276, -0.02654598467051983, -0.03885287791490555, -0.0008458812371827662, 0.07387616485357285, 0.02602376788854599, 0.05584230646491051, 0.024300454184412956, -0.022698992863297462, -0.019095702096819878, 0.03397886082530022, -0.006314462516456842, -0.04028026759624481, 0.026441540569067, 0.01562296412885189, -0.0001668643526500091, -0.025362294167280197, 0.056225262582302094, 0.010357285849750042, -0.030862970277667046, -0.062039270997047424, 0.014047612436115742, -0.048914238810539246, 0.004240829963237047, -0.013977983966469765, 0.11342532932758331, -0.03359590098261833, -0.036659568548202515, 0.021933075040578842, 0.0942077785730362, 0.01911310851573944, 0.014813529327511787, -0.0010993736796081066, -0.005814005620777607, 0.05720006674528122, 0.04289134591817856, -0.0425432026386261, 0.03256887570023537, -0.04115062579512596, 0.0283215194940567, -0.04327430576086044, -0.011488753370940685, -0.05862746015191078, 0.07366728037595749, -0.035319212824106216, 0.019147923216223717, 0.0061403908766806126, -0.022298626601696014, -0.009983031079173088, -0.006832327228039503, 0.02584969624876976, -0.0015960228629410267, 0.05761783942580223, -0.02238566242158413, -0.01617129147052765, 0.05201272293925285, -0.009086559526622295, 0.013560211285948753, -0.06172594055533409, 0.029000399634242058, 0.006836678832769394, -0.020192354917526245, -0.0910048559308052, 0.017912011593580246, 0.04623353108763695, 0.06579922884702682, 0.09539146721363068, 0.04167284443974495, -0.037843257188797, -0.02344750240445137, 0.07150878757238388, -0.007176119368523359, -0.028060410171747208, -0.002822142792865634, -0.028269296512007713, -0.052256423979997635, -0.020122725516557693, 0.10214546322822571, 0.06332740187644958, 0.04790462180972099, 0.0017635672120377421, 0.00914748478680849, -0.04968015477061272, 0.024874892085790634, 0.007498152554035187, -0.019478660076856613, -0.00421471893787384, 0.0016863227356225252, 0.0023282133042812347, -0.021289009600877762, 0.04675574600696564, -0.013055401854217052, -0.03392663970589638, -0.01876496523618698, 0.04870535433292389, 0.05949781835079193, 0.004608557093888521, 0.006371036171913147, -0.01864311471581459, 0.0013262112624943256, -0.014117240905761719, -0.011436532251536846, 0.0013447063975036144, -0.006958529353141785, -0.004149442072957754, 0.00422124657779932, 0.011819490231573582, -0.021428266540169716, 0.019356809556484222, -0.004682537633925676, -0.0436224490404129, 0.05305715277791023, 0.04999348521232605, -0.022768620401620865, -0.030079646036028862, 0.015013712458312511, 0.021706782281398773, -0.053544554859399796, -0.01353409979492426, -0.04125507175922394, -0.04055878147482872, 0.11398236453533173, 0.025832287967205048, 0.011758564971387386, -0.05138606205582619, -0.00273945857770741, -0.01433483138680458, -0.008063886314630508, -0.09741070866584778, -0.005648637190461159, -0.036311425268650055, 0.04424910992383957, -0.001091214013285935, -0.004055878147482872, -0.030253717675805092, 0.04870535433292389, 0.03840028867125511, -0.034657739102840424, 0.0016515083843842149, -0.019078293815255165, -0.014717789366841316, -0.03599809482693672, 0.03686845675110817, -0.0036859752144664526, 0.03131555765867233, -0.03239480406045914, 0.05048088729381561, 0.013142437674105167, -0.041011370718479156, -0.0016939383931457996, 0.0004351800598669797, 0.0022607604041695595, 0.021724188700318336, 0.00211062328889966, 0.001586231286637485, -0.0017940298421308398, -0.0019224078860133886, 0.002528396202251315, 0.03504069894552231, 0.045641686767339706, 0.03389182314276695, -0.052674196660518646, -0.05939337611198425, 0.04048915207386017, -0.04292616248130798, 0.021898260340094566, -0.0060402993112802505, 0.017589978873729706, -0.02409156784415245, 0.07742723822593689, 0.031193707138299942, 0.04968015477061272, -0.005853171925991774, 0.060402993112802505, -0.03178555145859718, 0.0019017368322238326, -0.015596853569149971, 0.04835720732808113, 0.012280781753361225, 0.0013893123250454664, -0.04010619595646858, -0.06350147724151611, 0.04988904297351837, 0.06471998244524002, 0.015126858837902546, -0.0664258822798729, 0.008451197296380997, 0.03324775770306587, 0.004730407148599625, -0.028965584933757782, -0.015553335659205914, -0.0455024279654026, 0.0327429473400116, 0.03934027627110481, 0.046686116605997086, -0.024178603664040565, 0.001402367721311748, -0.027799302712082863, 0.019774582237005234, 0.016841469332575798, 0.03383960202336311, 0.024648599326610565, 0.026981163769960403, -0.03253406286239624, 0.04320467635989189, 0.0050350334495306015, -0.00534836295992136, -0.010070066899061203, 0.007363246753811836, 0.002665477804839611, 0.0032747299410402775, -0.03486662730574608, 0.025484144687652588, -0.025292664766311646, 0.021480487659573555, -0.03401367366313934, -0.03773881494998932, 0.05058532953262329, 0.03996693715453148, 0.0012500546872615814, -0.052674196660518646, -0.018677927553653717, 0.016110366210341454, 0.04132469743490219, -0.07150878757238388, -0.037599556148052216, 0.022228997200727463, 0.025275258347392082, -0.022942693904042244, -0.05726969614624977, -0.04195135831832886, -0.017442017793655396, -0.043518006801605225, 0.017294056713581085, 0.03652030974626541, 0.023534538224339485, 0.022141961380839348, -0.039653606712818146, -0.10207583755254745, -0.036659568548202515, 0.03187258914113045, 0.07902870327234268, 0.03345664218068123, -0.000060245241911616176, -0.009904698468744755, -0.05768746882677078, -0.053022339940071106, -0.02168937399983406, -0.05121199041604996, 0.019374215975403786, -0.026284875348210335, 0.027155235409736633, 0.022994915023446083, -0.006858437787741423, -0.029975203797221184, 0.0002432928595226258, -0.03749511390924454, -0.026685241609811783, 0.00036799913505092263, -0.055528976023197174, -0.030253717675805092, -0.04296097531914711, 0.02936595119535923, -0.0677836462855339, 0.009164892137050629, -0.04177728667855263, 0.020557906478643417, 0.03282998502254486, -0.008973413147032261, 0.0003244811377953738, -0.004295227117836475, 0.01998346857726574, 0.03141999989748001, -0.05239567905664444, -0.05068977549672127, -0.057478584349155426, -0.004160321317613125, 0.00031251367181539536, -0.006984639912843704, -0.006179556716233492, -0.009895994327962399, -0.004182080272585154, 0.014569828286767006, -0.027799302712082863, 0.032447025179862976, 0.013159845024347305, -0.0162409208714962, -0.01113190595060587, -0.05580748990178108, -0.057060811668634415, -0.07095175981521606, 0.009878587909042835, 0.03148962929844856, 0.029191879555583, -0.028826327994465828, -0.0013588498113676906, -0.03329997882246971, 0.03874843195080757, -0.03319553658366203, 0.02485748566687107, -0.016327956691384315, 0.042578019201755524, -0.014830936677753925, 0.042055800557136536, -0.013020587153732777, 0.0078506488353014, -0.10416469722986221, -0.017589978873729706, 0.06231778487563133, 0.04014100879430771, -0.0630837008357048, 0.000164552460773848, -0.005827060900628567, 0.03479699790477753, -0.04104618355631828, -0.006022891961038113, 0.02847818285226822, -0.0323425829410553, -0.029226692393422127, 0.029470393434166908, -0.029470393434166908, -0.00437138369306922, -0.05173420533537865, 0.016005922108888626, -0.025362294167280197, 0.07129990309476852, 0.006819271482527256, 0.0010830543469637632, 0.037007711827754974, -0.03457070514559746, 0.09358111768960953, 0.022420477122068405, -0.025693031027913094, -0.00731102516874671, -0.0029570485930889845, -0.00826842151582241, -0.04344837740063667, -0.01254188921302557, -0.029104841873049736, -0.003973193932324648, 0.009121374227106571, -0.05128161981701851, 0.010305063799023628, 0.03371775150299072, -0.006788808852434158, 0.04191654548048973, -0.009634886868298054, -0.047869808971881866, -0.05068977549672127, -0.003877454437315464, -0.027642637491226196, 0.058697085827589035, -0.04835720732808113, 0.025884510949254036, -0.02696375735104084, -0.04038470983505249, -0.024161197245121002, -0.05424084514379501, -0.024335268884897232, 0.02877410501241684, -0.016502028331160545, -0.007219637278467417, -0.010757651180028915, 0.027346715331077576, 0.004773925524204969, 0.04028026759624481, 0.062457043677568436, 0.016502028331160545, 0.034309595823287964, -0.004543279763311148, -0.00561382295563817, 0.046268343925476074, -0.07457245886325836, -0.006388443522155285, -0.002315158024430275, 0.0004914815071970224, -0.022194182500243187, -0.04915793985128403, -0.018086083233356476, -0.03183777257800102, 0.018416820093989372, 0.02738153003156185, -0.019879024475812912, 0.03909657523036003, -0.02619783952832222, 0.019426438957452774, 0.00508290296420455, 0.041986171156167984, 0.015483706258237362, 0.01266373973339796, -0.03603290766477585, 0.006832327228039503, -0.05692155286669731, 0.038713619112968445, -0.06266593188047409, -0.014970194548368454, 0.005239568185061216, -0.012681147083640099, 0.05156013369560242, -0.018799778074026108, 0.09135299921035767, -0.0353018082678318, -0.006749643012881279, -0.023813053965568542, 0.023168986663222313, -0.0397232361137867, -0.03843510150909424, -0.012872626073658466, -0.010557468049228191, 0.015022415667772293, -0.0007000959012657404, 0.031332965940237045, 0.022107146680355072, 0.04048915207386017, -0.04706907644867897, 0.04417948052287102, -0.02755560167133808, -0.031228521838784218, -0.018608300015330315, -0.009573961608111858, 0.012568000704050064, -0.015831850469112396, 0.04209061712026596, -0.014230388216674328, -0.009034338407218456, -0.026041174307465553, 0.006418906152248383, -0.06743550300598145, -0.031054450199007988, -0.01544889248907566, -0.016754431650042534, -0.0009976503206416965, 0.03171592205762863, 0.0510031022131443, -0.06137779727578163, 0.09671441465616226, 0.03269072622060776, -0.014717789366841316, -0.0017211372032761574, 0.03380478918552399, 0.022994915023446083, 0.012132820673286915, -0.028808919712901115, 0.008625268936157227, -0.0020681931637227535, 0.05751339718699455, 0.0003337287053000182, -0.056120820343494415, -0.011889119632542133, -0.0010901261121034622, -0.03410071134567261, -0.0593237467110157, -0.033682938665151596, -0.05344011262059212, -0.02168937399983406, -0.008938598446547985, 0.03773881494998932, -0.02121938019990921, 0.000582597334869206, 0.023168986663222313, 0.029174471274018288, 0.03329997882246971, -0.10325952619314194, -0.04484095424413681, 0.008938598446547985, 0.042821720242500305, 0.013055401854217052, -0.004860961344093084, -0.023813053965568542, 0.03547587990760803, -0.03303886950016022, 0.025658216327428818, 0.06896733492612839, 0.012324299663305283, -0.10047437250614166, -0.0008105228771455586, 0.027938559651374817, 0.012089301832020283, 0.06708735972642899, -0.03161147981882095, 0.0040210639126598835, 0.043343935161828995, -0.012228559702634811, 0.008581751026213169, -0.0208016075193882, 0.05953263118863106, -0.06597329676151276, 0.013064105994999409, -0.0015579446917399764, 0.008794989436864853, -0.02842596173286438, 0.0056790998205542564, -0.03187258914113045, -0.005605119280517101, 0.048217952251434326, 0.003126768860965967, 0.0010112497257068753, 0.0277818962931633, 0.05222160741686821, -0.02163715288043022, -0.034657739102840424, 0.004730407148599625, 0.04062841087579727, 0.01720701903104782, 0.042578019201755524, 0.014247795566916466, -0.0015677361516281962, -0.012550593353807926, -0.017912011593580246, -0.03488403558731079, -0.022820843383669853, -0.007210933603346348, -0.014830936677753925, -0.03592846542596817, 0.01763349585235119, 0.002312981989234686, 0.014082427136600018, -0.005326604004949331, 0.01477001141756773, 0.006118631921708584, -0.02233344130218029, 0.020174948498606682, -0.009251927956938744, -0.05563341826200485, -0.02003568969666958, 0.014900565147399902, -0.03833065927028656, 0.010087474249303341, 0.03881806135177612, 0.027851523831486702, -0.08404197543859482, 0.04355281963944435, -0.02255973406136036, 0.019565695896744728, -0.01224596705287695, -0.0055920640006661415, 0.00044578759116120636, -0.004517169203609228, 0.004865312948822975, -0.04055878147482872, 0.002724227262660861, -0.008938598446547985, -0.011532271280884743, 0.048740167170763016, 0.018712742254137993, 0.06879326701164246, -0.042055800557136536, 0.012611518613994122, -0.01705905795097351, 0.016223512589931488, -0.036903269588947296, 0.001010705716907978, 0.03345664218068123, 0.016432398930191994, -0.013960576616227627, 0.04759129136800766, -0.0019702776335179806, 0.04658167436718941, 0.03822621703147888, 0.015831850469112396, -0.04261283203959465, 0.005618174560368061, 0.04665130376815796, 0.0068758451379835606, -0.012916143983602524, 0.002046434208750725, -0.016127772629261017, -0.05298752337694168, -0.029087435454130173, -0.06273555755615234, 0.05135124921798706, 0.032255545258522034, 0.030758526176214218, 0.013020587153732777, -0.014578532427549362, 0.05232604965567589, 0.05239567905664444, 0.02508377842605114, 0.016606470569968224, -0.055598605424165726, 0.061517052352428436, 0.05486750230193138, 0.01521389465779066, 0.011445235460996628, -0.024700820446014404, -0.02490970678627491, 0.009652294218540192, -0.011845601722598076, -0.0389225035905838, 0.007928980514407158, -0.010244138538837433, 0.016475917771458626, 0.01591888628900051, -0.045223914086818695, 0.013638542965054512, -0.0314025953412056, -0.008507770486176014, -0.03840028867125511, 0.058697085827589035, -0.04379652068018913, 0.02268158458173275, -0.048740167170763016, 0.13577617704868317, 0.002339092781767249, -0.005705210845917463, -0.013751690275967121, -0.02929632179439068, 0.041638027876615524, 0.009338963776826859, 0.05270900949835777, -0.012411335483193398, -0.03517995774745941, -0.03954916447401047, -0.058279313147068024, 0.071125827729702, -0.004538928158581257, 0.01350798923522234, -0.0758257731795311, -0.03329997882246971, 0.0983855128288269, -0.03846991807222366, -0.035319212824106216, -0.04097655415534973, 0.0009356371592730284, 0.018538670614361763, -0.055250462144613266, 0.00676704989746213, -0.03822621703147888, -0.0334218293428421, 0.06506812572479248, -0.041812099516391754, -0.010661911219358444, -0.046163901686668396, -0.016928505152463913, -0.000518136250320822, 0.03124592825770378, -0.06231778487563133, -0.02720745839178562, 0.019304588437080383, 0.016919801011681557, -0.03559773042798042, 0.03195962309837341, 0.0034009322989732027, 0.04773055016994476, -0.03927065059542656, -0.044806137681007385, 0.030079646036028862, 0.08237088471651077, -0.022490106523036957, -0.022768620401620865, -0.07077768445014954, -0.029992610216140747, 0.01099264807999134, 0.08257976919412613, -0.026058582589030266, 0.07854130119085312, -0.03645068407058716, 0.016780544072389603, -0.042229872196912766, -0.03645068407058716, -0.05807042866945267, -0.006371036171913147, 0.03295183554291725, -0.013394842855632305, -0.011053573340177536, 0.020940864458680153, 0.025275258347392082, 0.06632144004106522, -0.009069152176380157, -0.0020061801187694073, -0.008089997805655003, -0.0015198664041236043, -0.029104841873049736, 0.008516473695635796, 0.020000874996185303, -0.001761391293257475, -0.04250838980078697, 0.027050793170928955, 0.005648637190461159, 0.02092345803976059, -0.006806216202676296, 0.05504157394170761, 0.011706343851983547, 0.011166720651090145, -0.03714697062969208, 0.024230826646089554, 0.08411160111427307, -0.018956443294882774, -0.06785327941179276, 0.020888643339276314, -0.026232654228806496, 0.012829108163714409 ]
24,448
codecs
getstate
null
def getstate(self): # additional state info is always 0 return (self.buffer, 0)
(self)
[ -0.022663138806819916, -0.03560323640704155, -0.021117517724633217, -0.013335486873984337, 0.05575024336576462, -0.0063217757269740105, -0.011897698976099491, 0.018367746844887733, 0.04241475835442543, -0.09719449281692505, -0.019356226548552513, 0.00826278980821371, -0.03303318843245506, 0.023130420595407486, -0.03362627699971199, 0.021530881524086, 0.01994931325316429, -0.0517963245511055, -0.04945991933345795, 0.015078805387020111, -0.00721140718087554, 0.019697701558470726, 0.04442765936255455, 0.02832443080842495, -0.03287143632769585, 0.008869357407093048, -0.011232721619307995, -0.07084701955318451, 0.08173827081918716, -0.004991821479052305, -0.044571440666913986, -0.06984057277441025, 0.02681475318968296, -0.028450237587094307, -0.040329962968826294, 0.014063367620110512, 0.009372582659125328, 0.026635030284523964, 0.011070970445871353, -0.038388948887586594, 0.008127997629344463, -0.08080370724201202, -0.03968295827507973, 0.004063998814672232, -0.00256330706179142, -0.02187235653400421, 0.02629355527460575, -0.05553457513451576, 0.03571106866002083, -0.037238720804452896, 0.04647650942206383, 0.03749033063650131, 0.0027699891943484545, 0.022285720333456993, -0.00826278980821371, -0.04536222293972969, 0.052047938108444214, -0.016381802037358284, -0.029564524069428444, 0.05571429803967476, -0.01613018848001957, 0.04342120885848999, 0.013802768662571907, -0.03466867282986641, 0.0008907548035494983, -0.036843325942754745, -0.004356049466878176, -0.004699770826846361, -0.02203410677611828, 0.08274471759796143, 0.004906452726572752, -0.01191567163914442, 0.019679728895425797, 0.011529265902936459, -0.07584333419799805, -0.023148393258452415, -0.003994355909526348, 0.07764057070016861, -0.007683181669563055, -0.021171433851122856, -0.005162558984011412, 0.055929966270923615, 0.01191567163914442, 0.07045163214206696, 0.0254129096865654, -0.01662442833185196, 0.02839631959795952, 0.012050463818013668, -0.11142859607934952, 0.03231429308652878, -0.020596317946910858, 0.05255116522312164, -0.03628618270158768, 0.037777889519929886, 0.032943326979875565, -0.04108480364084244, -0.028108762577176094, 0.031954847276210785, 0.026059914380311966, -0.025215214118361473, -0.1028018668293953, 0.030499085783958435, -0.06347835808992386, -0.025718439370393753, -0.02149493619799614, 0.013937560841441154, 0.028647933155298233, -0.006986753083765507, 0.03409355506300926, -0.021099545061588287, 0.02392120473086834, -0.0013995971530675888, -0.015483183786273003, 0.004167339764535427, 0.022699084132909775, 0.014270049519836903, -0.0018545223865658045, 0.0000018428684143145801, -0.05362950637936592, 0.008379610255360603, 0.0148451654240489, -0.006106107495725155, -0.00018997340521309525, 0.02102765440940857, -0.0018938368884846568, 0.06890600919723511, 0.0254129096865654, 0.009435486048460007, 0.0401502400636673, -0.044643327593803406, -0.01991336978971958, 0.004870508331805468, -0.008384103886783123, 0.04155208542943001, -0.04381659999489784, 0.004517800640314817, 0.06638988107442856, -0.027623509988188744, -0.03357235714793205, 0.035908766090869904, 0.04277420416474342, 0.002370104193687439, 0.025988025590777397, 0.004598676227033138, 0.02149493619799614, 0.029600467532873154, 0.05618157982826233, 0.006784563884139061, -0.0009171517449431121, 0.00402805395424366, 0.07807190716266632, -0.024711987003684044, -0.01192465703934431, 0.032458074390888214, -0.013020970858633518, 0.033464524894952774, 0.0012311063474044204, -0.0331769660115242, -0.02442442998290062, -0.044571440666913986, -0.024208761751651764, -0.04399632290005684, -0.0042235031723976135, -0.05898526683449745, 0.019841479137539864, 0.0661742091178894, -0.040329962968826294, -0.031900931149721146, -0.025574659928679466, -0.051904160529375076, -0.01708272285759449, 0.01072051003575325, -0.01367696188390255, 0.036340102553367615, -0.01072051003575325, 0.03080461546778679, -0.04881291463971138, 0.049495864659547806, 0.02149493619799614, -0.05323411524295807, 0.03752627596259117, -0.010100463405251503, -0.07893458008766174, 0.044571440666913986, 0.008667168207466602, 0.007750577758997679, 0.043241485953330994, -0.025646550580859184, 0.06355024874210358, 0.02388525940477848, -0.011035026051104069, 0.018367746844887733, 0.011061984114348888, -0.007620278280228376, -0.012086408212780952, 0.015060833655297756, -0.019338253885507584, 0.005517513025552034, 0.03655577078461647, 0.011906685307621956, -0.0002931740309577435, -0.05959632992744446, -0.03646590933203697, 0.020344706252217293, -0.04302581772208214, -0.004569471348077059, 0.002702592872083187, -0.025233186781406403, -0.04748295992612839, 0.019823506474494934, -0.015375349670648575, -0.01602235436439514, 0.015995396301150322, 0.04866913706064224, 0.012023505754768848, -0.08353550732135773, 0.009390555322170258, 0.04719540476799011, 0.00801117718219757, 0.010064519010484219, 0.06534748524427414, -0.05679263919591904, 0.01897880621254444, -0.04820185527205467, -0.013470279984176159, 0.003888768143951893, -0.010900232940912247, -0.028486182913184166, -0.05902121216058731, -0.004358295816928148, 0.029905999079346657, 0.016849081963300705, 0.012364979833364487, -0.002424021251499653, 0.011079956777393818, 0.047590795904397964, 0.02045254036784172, -0.05107743293046951, -0.056864529848098755, -0.0029609454795718193, -0.025736412033438683, 0.009812905453145504, 0.10538988560438156, 0.01602235436439514, -0.022573277354240417, -0.0008682893821969628, 0.0655631497502327, 0.0399705171585083, -0.030337335541844368, -0.01167304441332817, -0.03429125249385834, -0.0022375581320375204, -0.02634747140109539, -0.05172443762421608, 0.023256227374076843, -0.06275945901870728, -0.029151160269975662, 0.02446037530899048, -0.01340737659484148, 0.0020836698822677135, 0.001163710025139153, -0.021638715639710426, -0.04942397400736809, -0.013092860579490662, 0.036340102553367615, 0.05503135174512863, 0.026203693822026253, 0.00899965688586235, -0.035872820764780045, 0.07257236540317535, 0.15686270594596863, -0.0037292635533958673, -0.08454195410013199, 0.008217859081923962, -0.03673549368977547, -0.07893458008766174, 0.03574701398611069, 0.0032485031988471746, -0.020776042714715004, -0.02828848548233509, 0.03914378955960274, 0.044140104204416275, -0.02593410760164261, 0.008981684222817421, -0.022249775007367134, -0.0053422823548316956, 0.012248159386217594, -0.006492513231933117, 0.016282953321933746, -0.013838713057339191, 0.018439635634422302, 0.06290324032306671, -0.0035023626405745745, -0.012994012795388699, 0.10704334825277328, -0.026203693822026253, -0.052946556359529495, 0.0535576157271862, 0.022339636459946632, 0.04040185362100601, -0.021638715639710426, -0.0312359519302845, -0.08137882500886917, 0.031397704035043716, -0.0333566889166832, 0.024783877655863762, 0.02582627348601818, 0.05564241111278534, -0.027964983135461807, -0.026473278179764748, 0.022213829681277275, 0.009120970033109188, 0.052047938108444214, -0.010828344151377678, -0.0028328923508524895, -0.07778435200452805, -0.012562676332890987, 0.05309033766388893, -0.022806918248534203, 0.08288849890232086, -0.04715945944190025, -0.021171433851122856, 0.018673276528716087, -0.013551155105233192, 0.008694126270711422, 0.0031631344463676214, 0.005378227215260267, -0.02934885583817959, 0.01664240099489689, 0.02828848548233509, -0.09755393862724304, -0.025610605254769325, -0.017693784087896347, 0.013964519836008549, -0.02438848465681076, 0.014836179092526436, -0.005823042709380388, 0.010316131636500359, -0.005787098314613104, -0.06261568516492844, 0.03964701294898987, -0.04212719947099686, -0.051904160529375076, 0.01753203198313713, 0.04866913706064224, -0.017388252541422844, 0.004477363079786301, 0.011394472792744637, 0.06883411854505539, -0.03567512333393097, -0.023148393258452415, -0.047123514115810394, -0.04834563285112381, 0.06045900285243988, 0.04036590829491615, 0.00008824707038002089, -0.02091982029378414, -0.013524197041988373, 0.040294017642736435, 0.04011429473757744, -0.0036573742982000113, 0.01998525857925415, -0.02825254201889038, 0.004542512819170952, 0.0036438950337469578, -0.05226360633969307, -0.010873274877667427, 0.022806918248534203, -0.010154380463063717, -0.021530881524086, -0.02733595110476017, -0.05323411524295807, -0.06290324032306671, 0.042199090123176575, -0.00250714342109859, -0.0350281186401844, -0.03021152876317501, -0.010774427093565464, -0.020111065357923508, -0.033446550369262695, 0.01899677887558937, -0.023651618510484695, -0.029151160269975662, 0.021099545061588287, 0.0003799468104261905, 0.041731808334589005, -0.022735029458999634, -0.004627881571650505, -0.003837097669020295, 0.028576044365763664, -0.06718066334724426, -0.01101705338805914, -0.08022858947515488, -0.018125120550394058, 0.011726961471140385, 0.01602235436439514, 0.0888553187251091, -0.003140669083222747, -0.0007857288583181798, -0.018349774181842804, 0.0116910170763731, 0.025700466707348824, -0.046045172959566116, -0.03350047022104263, -0.016714289784431458, 0.0018365499563515186, 0.02056037448346615, 0.04248664528131485, -0.04183964058756828, -0.09187467396259308, -0.002884562825784087, -0.0017253460828214884, -0.009471431374549866, -0.04935208708047867, 0.003616936504840851, -0.03321291133761406, -0.0033563373144716024, 0.05851798877120018, 0.029151160269975662, 0.03510000929236412, -0.01000161562114954, 0.04978342354297638, -0.008159449324011803, 0.007750577758997679, 0.00465034693479538, 0.03227834776043892, -0.03448894992470741, 0.03508203476667404, -0.005930877290666103, 0.025628577917814255, 0.010280187241733074, -0.037849780172109604, 0.009453458711504936, -0.006964287254959345, -0.02774931490421295, 0.0019342746818438172, -0.0007683181902393699, -0.0459732823073864, -0.005980301182717085, 0.09640371054410934, 0.03549540042877197, 0.06739632785320282, 0.05301844701170921, 0.05211982876062393, 0.055822134017944336, -0.05844609811902046, -0.026149775832891464, -0.001980328932404518, 0.028072817251086235, -0.01651659421622753, -0.013254611752927303, -0.008932259865105152, 0.017720742151141167, -0.013101846911013126, -0.018367746844887733, 0.013074887916445732, -0.08475762605667114, 0.018125120550394058, -0.06372997164726257, -0.04777051880955696, -0.001081711146980524, 0.04140830412507057, -0.07548388838768005, 0.024586182087659836, 0.011637100018560886, -0.08231338113546371, -0.007997698150575161, -0.02933088317513466, -0.029888026416301727, 0.022717056795954704, -0.017217515036463737, 0.012544703669846058, -0.0467640683054924, -0.049100473523139954, 0.021351156756281853, -0.008177421055734158, -0.021117517724633217, -0.016058299690485, -0.023220282047986984, -0.04730323702096939, -0.029007380828261375, -0.032529961317777634, -0.02052442915737629, -0.020093092694878578, -0.007395624183118343, -0.000796399952378124, 0.029636412858963013, 0.0038707959465682507, 0.011250694282352924, -0.03137972950935364, -0.042666371911764145, -0.005863480735570192, -0.02782120555639267, -0.03524378687143326, 0.02730000764131546, 0.03702305257320404, -0.009597237221896648, -0.0070002321153879166, -0.0032844478264451027, 0.02873779460787773, -0.0019836986903101206, -0.05208388343453407, 0.018745165318250656, -0.014404842630028725, -0.009480416774749756, -0.0650239810347557, 0.002868837211281061, -0.05075392872095108, 0.02390323206782341, 0.029115214943885803, 0.03474056348204613, 0.044247936457395554, -0.004445911385118961, -0.006550923455506563, -0.022159913554787636, -0.029169131070375443, 0.0024105419870465994, -0.0060027665458619595, -0.026563139632344246, 0.020182954147458076, 0.008748043328523636, 0.07242859154939651, 0.052443329244852066, -0.03350047022104263, -0.02733595110476017, 0.01412627100944519, -0.05607374757528305, -0.04942397400736809, -0.013344473205506802, -0.0009362473501823843, 0.00828076247125864, -0.03867650777101517, 0.020722124725580215, 0.05657697096467018, -0.013685948215425014, -0.044176049530506134, 0.06484425812959671, 0.008891822770237923, -0.11854565143585205, -0.053881119936704636, 0.055894024670124054, -0.05172443762421608, -0.000585786416195333, -0.026149775832891464, -0.004374021664261818, 0.028971435502171516, -0.015006916597485542, -0.011870739981532097, -0.02886360138654709, -0.04798618704080582, -0.023112447932362556, -0.08684241771697998, 0.017469128593802452, -0.062256235629320145, 0.08101937174797058, -0.0011771892895922065, 0.04061752185225487, 0.028899546712636948, -0.010010601952672005, -0.012400925159454346, 0.024262679740786552, 0.012580648064613342, -0.07735301554203033, 0.014791248366236687, 0.010154380463063717, 0.002021889900788665, 0.02350783906877041, 0.0312359519302845, 0.03368019312620163, 0.015582031570374966, 0.02056037448346615, 0.031146090477705002, -0.0012412157375365496, -0.0007649483741261065, 0.038856230676174164, -0.03254793584346771, -0.008240324445068836, 0.049100473523139954, 0.04011429473757744, 0.00980391912162304, 0.09999818354845047, -0.0031721205450594425, -0.01944608800113201, -0.04295392706990242, 0.021854383870959282, 0.04730323702096939, -0.03425530716776848, 0.019895397126674652, 0.03576498478651047, -0.015788713470101357, -0.003376556094735861, -0.007458527106791735, 0.05229955166578293, -0.020272815600037575, 0.0040258076041936874, 0.0002627052890602499, 0.03448894992470741, -0.009857836179435253, -0.07519633322954178, 0.008181914687156677, 0.012814288958907127, 0.016417745500802994, 0.027012448757886887, -0.02393917739391327, 0.016300925984978676, -0.042666371911764145, -0.009767974726855755, 0.05427651107311249, -0.025448855012655258, 0.03560323640704155, 0.004937904421240091, -0.044643327593803406, -0.00045183624024502933, -0.039718903601169586, -0.017657838761806488, 0.003780934028327465, 0.035351622849702835, 0.039790794253349304, -0.012257145717740059, 0.056828584522008896, 0.01897880621254444, 0.048525359481573105, -0.030409224331378937, 0.02437051385641098, 0.0009317542426288128, -0.032386183738708496, 0.015770740807056427, -0.007377651520073414, 0.007256338372826576, -0.022088024765253067, 0.020596317946910858, 0.02870185114443302, 0.03792166709899902, -0.041767753660678864, 0.0038752888794988394, 0.02293272502720356, 0.005962328519672155, 0.028540099039673805, 0.003235023934394121, 0.055822134017944336, -0.01705576479434967, 0.035818904638290405, 0.009866822510957718, -0.08252905309200287, -0.013551155105233192, -0.009696085005998611, -0.011601154692471027, 0.007391131017357111, 0.042702313512563705, -0.019284335896372795, -0.01957189477980137, 0.0030508071649819613, 0.023328116163611412, 0.017945395782589912, -0.02873779460787773, 0.011906685307621956, -0.003688825760036707, 0.06674932688474655, 0.011106914840638638, -0.02839631959795952, -0.07677789777517319, 0.015087791718542576, 0.02393917739391327, 0.012940095737576485, -0.002297091530635953, 0.023094475269317627, -0.054384347051382065, 0.06879817694425583, 0.058302320539951324, -0.027605537325143814, 0.024514291435480118, 0.009750002063810825, 0.012311062775552273, 0.00292949378490448, -0.029492633417248726, -0.0020634508691728115, 0.04532627761363983, 0.0006762098637409508, 0.08360739052295685, 0.0272640623152256, 0.008653689175844193, 0.04061752185225487, 0.0190147515386343, -0.026473278179764748, 0.04715945944190025, 0.010603689588606358, -0.016732262447476387, 0.025287102907896042, 0.05039448291063309, -0.05327006056904793, -0.04489494115114212, -0.029151160269975662, 0.043169595301151276, 0.025071434676647186, -0.04787835478782654, 0.018835028633475304, -0.002868837211281061, -0.03716683015227318, 0.03269171342253685, -0.048489414155483246, -0.002345392247661948, -0.00033276938484050333, 0.020758070051670074, -0.04259448125958443, 0.03188295662403107, 0.009210831485688686, -0.004423446021974087, -0.048525359481573105, -0.0450027771294117, -0.0045582386665046215, 0.0033271322026848793, 0.012284104712307453, -0.04719540476799011, 0.02341797761619091, 0.002006164053454995, -0.0014950752956792712, -0.02981613576412201, 0.004591936711221933, -0.020686179399490356, 0.10833735764026642, -0.07329126447439194, 0.013847699388861656, 0.04277420416474342, 0.050430428236722946, -0.008119011297821999, 0.043708767741918564, -0.010648620314896107, -0.008644702844321728, -0.013641017489135265, 0.016193091869354248, -0.015860602259635925, -0.04252259060740471, -0.07214102894067764, -0.011277652345597744, 0.02241152711212635, 0.026509223505854607, 0.046548400074243546, -0.01602235436439514, 0.04529033228754997, 0.04342120885848999, 0.04050968587398529, 0.05406084284186363, 0.03270968422293663, 0.027102310210466385, -0.02931291051208973, 0.006842974107712507, -0.007409103214740753, -0.026437334716320038, -0.04945991933345795, 0.0012850234052166343, 0.02877373993396759, 0.018906917423009872, 0.04963964223861694, -0.023813370615243912, 0.03953918069601059, -0.026023969054222107, -0.01601336896419525, 0.007642743643373251, -0.0028306457679718733, 0.019374199211597443, -0.028540099039673805, -0.02692258730530739, -0.002233064966276288, 0.04521844536066055, -0.04820185527205467, 0.03456083685159683, -0.05506729334592819, 0.02149493619799614 ]
24,449
codecs
reset
null
def reset(self): IncrementalDecoder.reset(self) self.buffer = b""
(self)
[ -0.010848458856344223, 0.023483313620090485, -0.03621355816721916, 0.009738464839756489, -0.05723407492041588, 0.01114330068230629, -0.09060327708721161, 0.0480419360101223, 0.03697668015956879, 0.006612270139157772, -0.01289501041173935, -0.04908255487680435, -0.00786534883081913, 0.07818521559238434, -0.017725219950079918, 0.017759906128048897, 0.03519028425216675, -0.010336820967495441, -0.03954354301095009, -0.001999940723180771, -0.021714260801672935, 0.012201263569295406, 0.016502492129802704, 0.06552433967590332, -0.04152071848511696, -0.0077049206010997295, -0.01103056687861681, -0.04540569707751274, -0.016519835218787193, -0.010146040469408035, 0.0015208220575004816, -0.04308164864778519, 0.010172056034207344, 0.02511361800134182, -0.041347283869981766, -0.037427615374326706, -0.013267898932099342, -0.005328839179128408, -0.022980347275733948, -0.0020660634618252516, 0.03121858648955822, 0.014039691537618637, 0.005038332659751177, -0.02424643561244011, -0.007488124538213015, 0.0006200358038768172, 0.041832905262708664, -0.030941087752580643, 0.03033405914902687, -0.013779536820948124, 0.013666803017258644, 0.07093556225299835, -0.0292414091527462, 0.041590094566345215, 0.010215414687991142, 0.01573069766163826, 0.02533908560872078, 0.015843432396650314, -0.02816610224545002, -0.00714125158265233, -0.04342852160334587, -0.003421036759391427, -0.019771771505475044, -0.04190228134393692, 0.003529434558004141, -0.01814146712422371, -0.010241430252790451, 0.05265534669160843, 0.050296612083911896, -0.0074577732011675835, -0.012860323302447796, 0.03354263678193092, -0.04526694864034653, 0.03975166752934456, -0.04301227256655693, -0.02400362305343151, -0.013224540278315544, 0.053140971809625626, -0.015817416831851006, -0.061257801949977875, 0.04169415682554245, 0.0727739930152893, 0.01984114572405815, 0.06646090000867844, 0.0012736748903989792, -0.024593308568000793, 0.024090342223644257, 0.016277024522423744, -0.02251206897199154, -0.019320836290717125, 0.03035140223801136, 0.03300498425960541, -0.0191994309425354, 0.011802359484136105, 0.02967499941587448, -0.0231364406645298, -0.01834959164261818, 0.01684069260954857, 0.010232758708298206, -0.038537610322237015, -0.034635286778211594, 0.02946687676012516, -0.04318571090698242, -0.009200811386108398, -0.030628900974988937, 0.04217977821826935, 0.05171879008412361, -0.018297560513019562, 0.03971697762608528, 0.015080311335623264, 0.004570053890347481, 0.002060643397271633, -0.027385637164115906, -0.01899130642414093, 0.0032367603853344917, 0.019147399812936783, -0.012279310263693333, 0.042041029781103134, 0.04512820020318031, 0.0515800416469574, 0.030628900974988937, -0.0037158788181841373, -0.05005379766225815, -0.01876583881676197, 0.045301638543605804, 0.013753521256148815, 0.04325508326292038, 0.05005379766225815, 0.04308164864778519, -0.03780917450785637, -0.028062039986252785, 0.08845265954732895, -0.009382919408380985, 0.037843864411115646, -0.006300083827227354, 0.011880406178534031, 0.018852557986974716, -0.04564851149916649, -0.029779061675071716, -0.02119395136833191, -0.016008196398615837, 0.016892723739147186, 0.08442892879247665, 0.025911426171660423, 0.004981965757906437, 0.03652574494481087, 0.05539564788341522, 0.008103824220597744, -0.07305148988962173, 0.002777153393253684, 0.026535797864198685, 0.007674568798393011, -0.02027473784983158, 0.017196238040924072, 0.023847531527280807, 0.04634225741028786, -0.032016392797231674, 0.07943395525217056, -0.01836693473160267, -0.00784366950392723, -0.0057884459383785725, 0.020205361768603325, 0.0075531634502112865, -0.06562840193510056, 0.0025538536719977856, 0.01612093113362789, -0.03428841382265091, 0.020916452631354332, -0.0068290657363832, -0.0051770820282399654, 0.010388851165771484, -0.004756498616188765, 0.01013736892491579, -0.04217977821826935, 0.046654440462589264, 0.06274935603141785, -0.01747373677790165, -0.0016042884672060609, -0.009643074125051498, 0.051441293209791183, -0.00863280612975359, 0.005909851752221584, -0.04235321655869484, -0.020847078412771225, 0.0546325258910656, -0.005667040590196848, 0.011516189202666283, 0.016424445435404778, 0.007232305593788624, -0.05435502529144287, 0.04523226246237755, 0.037635739892721176, -0.002857367740944028, -0.02509627491235733, 0.055742520838975906, -0.0349474735558033, 0.05373065546154976, -0.03666449338197708, 0.05650563910603523, -0.046411629766225815, -0.0216101985424757, 0.021506136283278465, 0.012600167654454708, -0.032883577048778534, -0.025148306041955948, 0.018037404865026474, -0.0006834485684521496, 0.015149685554206371, -0.04523226246237755, 0.0023197142872959375, 0.014221800491213799, -0.00448333565145731, 0.10017697513103485, -0.03909260779619217, 0.006685980595648289, -0.07353711128234863, -0.009495653212070465, 0.006508207879960537, 0.04523226246237755, 0.024732057005167007, 0.02842625603079796, -0.0009598631295375526, -0.04818068444728851, -0.06139655038714409, -0.043948832899332047, 0.016858035698533058, -0.0314093641936779, -0.04873568192124367, -0.05830937996506691, -0.011637595482170582, 0.017629828304052353, -0.01945958472788334, -0.03777448832988739, -0.004038904327899218, 0.05941937491297722, 0.01221860758960247, 0.011880406178534031, -0.038329485803842545, -0.10309071093797684, -0.04294290021061897, -0.016701944172382355, -0.006586254574358463, 0.042457275092601776, 0.000781006645411253, -0.028079383075237274, 0.08415143191814423, 0.04200633987784386, 0.008814914152026176, -0.012773605063557625, 0.007570507004857063, 0.02226925827562809, -0.04387945681810379, -0.00015907386841718107, -0.002718618605285883, 0.07971145212650299, -0.09823448210954666, -0.007813318632543087, -0.04256133735179901, 0.016493819653987885, 0.0658712163567543, -0.02098582684993744, -0.018436308950185776, -0.043567270040512085, 0.007605194579809904, 0.0684380754828453, 0.05307159572839737, -0.020899109542369843, 0.012790948152542114, 0.017352331429719925, -0.00818187091499567, 0.0970551148056984, -0.06979088485240936, -0.025425802916288376, 0.00818620715290308, -0.0032887912821024656, 0.04054947569966316, 0.011325409635901451, 0.04034135118126869, 0.005376534070819616, -0.009530340321362019, 0.07138650119304657, -0.009625731036067009, 0.063616544008255, -0.002334889955818653, 0.01854037120938301, 0.008489720523357391, -0.006070280447602272, 0.010831114836037159, 0.015227732248604298, -0.02620626799762249, 0.047937873750925064, 0.05713001266121864, -0.012678214348852634, 0.014369221404194832, 0.04054947569966316, -0.027767198160290718, -0.030229996889829636, 0.025026898831129074, -0.0023500658571720123, 0.020916452631354332, -0.08637142181396484, -0.06836870312690735, -0.026743922382593155, 0.036352310329675674, -0.038572296500205994, -0.019598335027694702, -0.005818797741085291, 0.009252841584384441, 0.03690730407834053, -0.0051293871365487576, 0.03014327958226204, 0.06267998367547989, -0.02202644571661949, -0.010258774273097515, 0.0056540328077971935, -0.03860698267817497, 0.04842349514365196, 0.04283883795142174, 0.03867635875940323, 0.05390409007668495, -0.021315356716513634, -0.05373065546154976, -0.022616131231188774, -0.013077118434011936, -0.033282481133937836, 0.05869094282388687, 0.018470996990799904, 0.022598788142204285, -0.00982518307864666, -0.041173845529556274, -0.013727505691349506, -0.02403831109404564, -0.04603007063269615, -0.03402825817465782, 0.010120024904608727, -0.08928515762090683, -0.04238790273666382, -0.0576850101351738, 0.024298466742038727, -0.047937873750925064, 0.010232758708298206, -0.04523226246237755, 0.035727936774492264, -0.011498846113681793, 0.010276117362082005, 0.04197165369987488, 0.012209936045110226, -0.012027827091515064, 0.03399357199668884, 0.020864421501755714, 0.018921932205557823, -0.0203267689794302, 0.08567767590284348, 0.03597074747085571, 0.06326966732740402, -0.049013178795576096, -0.01504562422633171, 0.05869094282388687, 0.012738917022943497, -0.03250201791524887, -0.061049677431583405, 0.0349474735558033, -0.016086243093013763, -0.02202644571661949, 0.014499298296868801, -0.04294290021061897, -0.06483059376478195, 0.0064171538688242435, -0.017196238040924072, 0.05015785992145538, -0.04949880391359329, -0.060390621423721313, -0.07319024205207825, 0.00031814773683436215, -0.024523934349417686, -0.001779892947524786, -0.028478287160396576, 0.009200811386108398, 0.022373320534825325, -0.006143990904092789, 0.042700089514255524, -0.006135319359600544, -0.021905040368437767, 0.0016682432033121586, 0.019979894161224365, 0.01940755359828472, -0.047695063054561615, -0.026761265471577644, 0.008216558024287224, 0.005970554426312447, 0.011785016395151615, -0.01662389747798443, 0.011880406178534031, -0.03335185721516609, 0.02204379066824913, 0.026102205738425255, 0.0019229782046750188, 0.010553616099059582, -0.00927885714918375, -0.0015468376222997904, -0.006738011259585619, 0.013528053648769855, -0.010744396597146988, 0.03125327453017235, 0.026587828993797302, 0.046168819069862366, 0.059731561690568924, -0.02464533969759941, 0.0024086006451398134, -0.02357003279030323, -0.008381322957575321, 0.01681467704474926, 0.011741656810045242, -0.03673386946320534, 0.03170420974493027, -0.030195310711860657, 0.02729891799390316, -0.056887201964855194, 0.05279409885406494, 0.07492460310459137, -0.03638699650764465, 0.1266087144613266, -0.003154377918690443, 0.044191643595695496, -0.0056453607976436615, 0.018887244164943695, 0.014039691537618637, 0.007288672495633364, -0.06028655916452408, 0.04564851149916649, -0.01984114572405815, -0.04720943793654442, -0.01766451634466648, -0.003069827565923333, -0.04387945681810379, 0.024974867701530457, -0.021696917712688446, -0.01560929324477911, -0.044018205255270004, 0.029102658852934837, 0.061882175505161285, 0.01408305112272501, 0.07867083698511124, 0.012851650826632977, 0.07929521054029465, -0.0056540328077971935, -0.009027373977005482, 0.07610397785902023, -0.05695657432079315, 0.011204003356397152, -0.027437668293714523, 0.017361002042889595, -0.04717475175857544, -0.052898161113262177, -0.005094699561595917, -0.016875380650162697, 0.026327673345804214, 0.0658712163567543, -0.032016392797231674, -0.043948832899332047, -0.04505882412195206, 0.04495476186275482, -0.03649105876684189, 0.0045180232264101505, 0.016528507694602013, 0.05040067061781883, 0.010206743143498898, 0.024732057005167007, -0.052377849817276, 0.04037603735923767, -0.03999447822570801, -0.045093514025211334, -0.010709709487855434, 0.0019197262590751052, -0.010570960119366646, -0.0100419782102108, 0.0040367366746068, -0.0019923527725040913, 0.01418711245059967, -0.02639704942703247, -0.050539422780275345, -0.034583255648612976, -0.03683793172240257, -0.007574842777103186, 0.0004512061132118106, 0.0033451581839472055, 0.028478287160396576, -0.05022723600268364, -0.03411497548222542, 0.0036703518126159906, -0.041590094566345215, 0.025425802916288376, -0.10191133618354797, -0.021662229672074318, 0.02159285545349121, 0.005762430839240551, -0.037011366337537766, -0.015375153161585331, -0.029102658852934837, -0.058378756046295166, -0.020448174327611923, -0.039612915366888046, -0.07145587354898453, -0.0536612793803215, 0.004713139496743679, -0.01834959164261818, -0.013866255059838295, -0.03323045000433922, -0.020708328112959862, 0.02077770233154297, -0.06264529377222061, 0.024992212653160095, 0.0003043270262423903, 0.021471450105309486, 0.006738011259585619, 0.004535366781055927, -0.018852557986974716, -0.05105973035097122, -0.01680600456893444, -0.023518001660704613, -0.01069236546754837, 0.04960286244750023, 0.012617511674761772, -0.01528843492269516, -0.0007604110287502408, -0.021783635020256042, -0.04020260274410248, -0.02879047393798828, 0.0216101985424757, -0.03101046197116375, 0.003598809242248535, -0.00589684396982193, 0.06306154280900955, 0.03343857452273369, 0.025911426171660423, -0.03801729902625084, 0.06573246419429779, -0.06711995601654053, -0.020795047283172607, -0.01745639182627201, -0.04252665117383003, 0.005723407492041588, 0.0033690056297928095, -0.04148603230714798, -0.03673386946320534, 0.05116379261016846, -0.02769782394170761, 0.043983519077301025, -0.003969530109316111, 0.01201915554702282, -0.09878948330879211, -0.07541023194789886, 0.015392497181892395, -0.023292534053325653, -0.030854368582367897, -0.0546325258910656, 0.038953859359025955, 0.03749699145555496, 0.04623819515109062, 0.015193045139312744, 0.008507064543664455, 0.027628447860479355, -0.026258299127221107, 0.008931984193623066, 0.03206842392683029, 0.04436507821083069, 0.013484694994986057, 0.0002535155217628926, 0.009530340321362019, 0.00896667130291462, 0.025599241256713867, -0.02383018657565117, 0.046376943588256836, 0.00852007232606411, 0.028114071115851402, 0.010935177095234394, -0.015114998444914818, 0.0054068854078650475, 0.00787402130663395, 0.004531031008809805, 0.02620626799762249, 0.019528958946466446, -0.03826010972261429, -0.07256586849689484, 0.01750842295587063, -0.02507892996072769, 0.03687261790037155, -0.0020205362234264612, 0.00038372844574041665, -0.05744219943881035, -0.06465715914964676, -0.002447623759508133, 0.01528843492269516, -0.017178893089294434, -0.034149665385484695, 0.047521624714136124, 0.02905062772333622, -0.016719287261366844, -0.0028530319686979055, 0.009322216734290123, 0.028287507593631744, 0.012990400195121765, -0.029536250978708267, 0.037462301552295685, 0.025599241256713867, 0.018505683168768883, -0.04408758133649826, 0.08748141676187515, 0.05047004669904709, 0.04412226751446724, -0.0401679128408432, -0.006794378161430359, 0.037635739892721176, -0.014031019993126392, -0.007336367852985859, -0.02688267081975937, 0.009088077582418919, -0.004674116149544716, -0.0054242294281721115, 0.05758094787597656, 0.015843432396650314, 0.040722910314798355, -0.0782545879483223, 0.008585111238062382, -0.05636689066886902, 0.04842349514365196, -0.03933541849255562, 0.030195310711860657, -0.012799620628356934, 0.010813770815730095, 0.0106056472286582, -0.023726124316453934, -0.004377105738967657, 0.037115428596735, -0.00524645671248436, 0.016251008957624435, -0.07041525095701218, 0.051198482513427734, 0.04609944671392441, 0.017092175781726837, 0.040306661278009415, -0.032606080174446106, 0.014776797033846378, -0.06032124534249306, -0.08262518793344498, -0.01638108491897583, 0.01704014465212822, -0.016684599220752716, -0.008433354087173939, 0.007071876898407936, -0.01876583881676197, 0.00448333565145731, 0.03715011849999428, 0.03473934903740883, 0.010570960119366646, -0.004407457076013088, 0.05085160583257675, 0.00037207567947916687, -0.0011912925401702523, 0.00022289311164058745, -0.03576262295246124, 0.019997239112854004, 0.033559978008270264, 0.007934723980724812, 0.00719761848449707, 0.004002049099653959, -0.022858941927552223, 0.02774985320866108, 0.002569029340520501, -0.025026898831129074, -0.049429427832365036, 0.01397031731903553, -0.03735823929309845, -0.05941937491297722, -0.00491259153932333, 0.02266816236078739, 0.028114071115851402, -0.03212045505642891, 0.05539564788341522, 0.04492007568478584, -0.05733813717961311, 0.03694199398159981, -0.016658583655953407, -0.053626593202352524, -0.012478762306272984, 0.021905040368437767, -0.03819073736667633, -0.015010937117040157, 0.016424445435404778, -0.07346773892641068, 0.037843864411115646, 0.0022546756081283092, 0.03272748365998268, -0.029987186193466187, -0.0930313840508461, 0.011221347376704216, -0.01038017962127924, -0.08463705331087112, -0.02641439251601696, -0.03642168268561363, 0.016649913042783737, -0.005792782176285982, -0.017326315864920616, -0.034184351563453674, 0.03600543737411499, 0.0798502042889595, -0.005506611429154873, -0.019320836290717125, -0.08630204945802689, 0.011724313721060753, 0.04190228134393692, 0.050782233476638794, -0.0620209239423275, 0.03708074241876602, 0.013441335409879684, 0.0344618484377861, -0.06462246924638748, -0.023760812357068062, -0.01726561225950718, 0.07596522569656372, -0.028062039986252785, 0.032866232097148895, -0.005931531079113483, 0.07811583578586578, 0.030507495626807213, -0.010414866730570793, -0.07065806537866592, 0.025599241256713867, -0.0002410497545497492, -0.0036941992584615946, -0.02206113375723362, -0.03244998678565025, 0.011785016395151615, -0.027628447860479355, -0.02100316993892193, -0.05133723095059395, 0.033733416348695755, -0.03139202296733856, 0.07339836657047272, -0.00011639221338555217, -0.06535090506076813, -0.04873568192124367, -0.031773582100868225, 0.045717883855104446, -0.006139655131846666, 0.0007940143696032465, 0.07527147978544235, 0.03343857452273369, -0.031756240874528885, 0.0036291605792939663, 0.0015240740031003952, -0.011091269552707672, -0.015193045139312744, 0.03597074747085571, 0.011585564352571964, 0.0019078024197369814, -0.040063850581645966, 0.05934999883174896, -0.019997239112854004, 0.03683793172240257, -0.01793334260582924, -0.015591949224472046, 0.053140971809625626, -0.015999525785446167, -0.009573699906468391, 0.05085160583257675, 0.01965036615729332, -0.004769505932927132 ]
24,450
codecs
setstate
null
def setstate(self, state): # ignore additional state info self.buffer = state[0]
(self, state)
[ -0.05012275278568268, 0.024575620889663696, -0.0038118299562484026, 0.0051139239221811295, -0.020455695688724518, 0.004893535282462835, -0.03234770521521568, 0.02966705709695816, 0.023676075041294098, -0.04731616750359535, -0.05116622895002365, 0.021085379645228386, -0.03538817539811134, 0.05458450689911842, -0.06501924991607666, 0.021085379645228386, 0.04551707208156586, 0.004358304664492607, -0.055771905928850174, 0.018656602129340172, -0.014185854233801365, 0.002081326674669981, 0.04184691980481148, 0.060557495802640915, -0.03756507858633995, -0.020617615431547165, -0.011136390268802643, -0.04051559045910835, 0.05048257112503052, -0.026158824563026428, 0.016434721648693085, -0.07005671411752701, 0.0050689466297626495, -0.00003998766987933777, -0.007137904409319162, -0.017757056280970573, 0.0036836445797234774, 0.028947418555617332, 0.01738824136555195, -0.019700076431035995, -0.018764548003673553, -0.019052403047680855, -0.02092345990240574, 0.04616474732756615, 0.0059415074065327644, 0.012926489114761353, 0.0431782491505146, 0.021823007613420486, 0.04425770789384842, -0.004056956619024277, -0.010398762300610542, 0.018251806497573853, -0.025834986940026283, 0.021373234689235687, -0.014320786111056805, -0.003589192172512412, 0.07009269297122955, 0.02506137639284134, -0.005361299496144056, 0.00995798408985138, -0.043681997805833817, 0.025852978229522705, 0.001178406411781907, -0.08455740660429001, -0.010164880193769932, -0.04774795100092888, -0.022092871367931366, 0.05181390047073364, -0.003008984262123704, 0.04548108950257301, -0.008766084909439087, 0.036035846918821335, 0.003712879726663232, -0.0034430157393217087, -0.05757100135087967, 0.03333720937371254, -0.07656943053007126, 0.0976548120379448, -0.06696227192878723, -0.018980439752340317, 0.026842478662729263, 0.06512719392776489, 0.022092871367931366, 0.08498919010162354, -0.03868051618337631, -0.02324429154396057, 0.03551411256194115, 0.023712055757641792, -0.051274172961711884, -0.01538225170224905, 0.0009332799236290157, 0.048899367451667786, -0.033661045134067535, 0.015391247346997261, 0.04299833998084068, 0.014239827170968056, -0.02205689065158367, 0.02157113514840603, -0.01752317324280739, 0.006031461991369724, -0.08729203045368195, -0.01000296138226986, -0.0016135622281581163, -0.051274172961711884, -0.016974449157714844, -0.013196352869272232, 0.05210175737738609, -0.011954978108406067, 0.021823007613420486, -0.031106332316994667, -0.012089909985661507, 0.017882991582155228, -0.02810184471309185, 0.006742103956639767, -0.0029617580585181713, 0.03882444277405739, 0.026698552072048187, -0.02434173971414566, -0.03519027307629585, 0.04569698125123978, 0.020959442481398582, 0.029415182769298553, -0.0019688832107931376, 0.054332632571458817, -0.015787048265337944, 0.04051559045910835, 0.04235066846013069, 0.05987384170293808, 0.07707317918539047, -0.09312109649181366, -0.05084238946437836, 0.020131859928369522, -0.02533124014735222, 0.046344656497240067, -0.012035937048494816, 0.021607115864753723, -0.05904625728726387, -0.06692628562450409, -0.02506137639284134, -0.03315730020403862, 0.002288222312927246, 0.0025254779029637575, 0.04699232801795006, -0.00792051013559103, 0.06491130590438843, 0.04803580418229103, 0.026338733732700348, -0.017199337482452393, 0.005928013939410448, 0.036413658410310745, 0.044869400560855865, -0.015346270054578781, -0.003559956792742014, -0.005383788142353296, -0.029415182769298553, 0.05397281423211098, -0.015724079683423042, -0.0009209111449308693, 0.01217086985707283, 0.036413658410310745, 0.011613150127232075, -0.04987087845802307, -0.013196352869272232, -0.004835064522922039, -0.033750999718904495, -0.010020952671766281, -0.06271640956401825, -0.015220333822071552, -0.028785500675439835, -0.06491130590438843, -0.008410763926804066, -0.03857257217168808, 0.012692607007920742, 0.046524565666913986, 0.01212589256465435, 0.04537314549088478, -0.03159208595752716, -0.00409968476742506, -0.0029235274996608496, -0.03205985203385353, 0.024593612179160118, 0.011001458391547203, -0.039616044610738754, 0.061852846294641495, 0.003103436902165413, -0.01881852187216282, -0.028119836002588272, -0.006089932285249233, 0.03175400570034981, 0.017649110406637192, 0.039616044610738754, -0.004605680238455534, -0.02680649794638157, -0.0358019657433033, -0.007488728035241365, 0.021427206695079803, -0.008671632036566734, -0.09002665430307388, 0.04361003264784813, 0.04756803810596466, -0.006040457170456648, -0.019628113135695457, 0.021355243399739265, 0.00982305221259594, 0.018584638833999634, 0.013745076954364777, 0.014716587029397488, 0.001113189267925918, 0.04656054824590683, 0.007749596610665321, 0.015652116388082504, -0.02094145119190216, 0.024863475933670998, 0.01826080121099949, -0.005383788142353296, -0.07901620119810104, -0.00384331401437521, 0.04767598584294319, 0.07563390582799911, 0.0029595093801617622, 0.0532531775534153, 0.0008950491319410503, 0.00631481921300292, -0.04325021430850029, -0.018980439752340317, 0.010839540511369705, -0.00525785144418478, -0.06444353610277176, -0.06656646728515625, 0.02883947268128395, -0.008392772637307644, 0.023927947506308556, 0.001788973924703896, -0.0027098851278424263, 0.024017902091145515, 0.010596662759780884, 0.019304275512695312, -0.037960879504680634, -0.11471021920442581, 0.02223679982125759, -0.03040468506515026, -0.013987953774631023, 0.06512719392776489, -0.02286648191511631, -0.07642550766468048, 0.03542415797710419, 0.025637086480855942, 0.05152604728937149, -0.06149302423000336, 0.038428641855716705, -0.006778086069971323, -0.018962448462843895, -0.044581543654203415, -0.02774202637374401, 0.035855937749147415, -0.04051559045910835, 0.030908431857824326, 0.02112136036157608, -0.024035893380641937, 0.0009439620189368725, -0.046416621655225754, -0.06170891597867012, -0.026122841984033585, -0.016731571406126022, 0.07685728371143341, 0.030170802026987076, 0.01028182078152895, 0.02166108973324299, -0.029613083228468895, 0.010587667115032673, 0.14910888671875, 0.01680353656411171, -0.023837992921471596, 0.05217371881008148, -0.018206829205155373, -0.044509582221508026, 0.02349616400897503, 0.00031793361995369196, -0.015948966145515442, -0.03364305570721626, 0.09506411850452423, 0.02727426216006279, 0.024593612179160118, 0.0656309425830841, -0.02946915663778782, -0.020599624142050743, 0.025763023644685745, 0.047891877591609955, 0.015094396658241749, -0.016614630818367004, 0.025924941524863243, 0.08002369105815887, 0.018026920035481453, 0.01910637691617012, 0.044509582221508026, -0.022434700280427933, -0.0757058635354042, 0.06167293339967728, 0.035586073994636536, 0.0367015115916729, 0.009805060923099518, -0.06113320589065552, -0.057067256420850754, 0.04361003264784813, -0.0018778041703626513, -0.020365741103887558, 0.0062473532743752, 0.03922024369239807, 0.006175389513373375, -0.006751099601387978, 0.041019339114427567, 0.045301180332899094, -0.08736399561166763, -0.01812586933374405, 0.043214231729507446, -0.03821275383234024, 0.013493203558027744, 0.0010119902435690165, -0.017927968874573708, 0.05444057658314705, -0.05242559313774109, -0.09614357352256775, -0.03781695291399956, -0.012503702193498611, -0.04271048679947853, 0.032545607537031174, 0.04382592439651489, -0.00257270410656929, -0.02534923143684864, -0.016749562695622444, -0.07045251131057739, -0.0038230742793530226, -0.0026896451599895954, 0.004284092225134373, -0.056059762835502625, -0.02121131494641304, -0.02277652733027935, -0.03628772124648094, 0.01684851385653019, -0.030872449278831482, 0.009805060923099518, 0.008104917593300343, -0.03814078867435455, 0.004090689588338137, 0.027957918122410774, 0.02855161763727665, -0.030350713059306145, -0.010758580639958382, 0.07433855533599854, 0.006922013591974974, -0.06552299857139587, -0.03405684605240822, 0.010731594637036324, 0.015004442073404789, 0.03911229968070984, -0.0034317714162170887, -0.02009587734937668, 0.007736103143543005, -0.005383788142353296, -0.047064293175935745, -0.03661155700683594, 0.009535197168588638, -0.02194894477725029, -0.030026875436306, 0.014176859520375729, -0.009760083630681038, -0.04436565190553665, -0.01872856728732586, -0.00261768139898777, 0.0009124779026024044, -0.004272847902029753, -0.10729795694351196, -0.05692332610487938, 0.09628749638795853, 0.024575620889663696, 0.0032788484822958708, -0.08002369105815887, -0.02175104431807995, -0.0059415074065327644, 0.024665575474500656, 0.032185789197683334, -0.06080937013030052, 0.04389788955450058, 0.043214231729507446, 0.004441512748599052, 0.04864749684929848, 0.008473731577396393, -0.020455695688724518, 0.0576789453625679, 0.017999934032559395, -0.03803284093737602, 0.001238001394085586, 0.01738824136555195, -0.006688131019473076, 0.026158824563026428, 0.011208354495465755, 0.048899367451667786, -0.005986484698951244, 0.03626973181962967, 0.018476692959666252, -0.00010991338785970584, 0.020167840644717216, -0.05253353714942932, 0.019682085141539574, 0.03065655753016472, 0.015724079683423042, 0.023945938795804977, 0.0541527234017849, -0.03868051618337631, -0.09945390373468399, 0.03546013683080673, -0.009301315061748028, 0.004311078693717718, -0.05739109218120575, 0.006809569895267487, 0.009265333414077759, 0.02873152866959572, -0.04285441339015961, 0.04188290238380432, 0.041559066623449326, 0.018287789076566696, 0.06689030677080154, 0.010758580639958382, 0.0002657879958860576, 0.008352292701601982, 0.01608389802277088, 0.005491734016686678, -0.03472251072525978, 0.031897932291030884, 0.041559066623449326, -0.02700439840555191, -0.010731594637036324, -0.025960924103856087, 0.04731616750359535, -0.0021476682741194963, 0.015868008136749268, -0.017397236078977585, -0.024647584185004234, -0.024179819971323013, 0.038356680423021317, 0.058434564620256424, 0.01738824136555195, 0.028947418555617332, -0.004252607934176922, 0.030152812600135803, -0.025025393813848495, -0.018017923459410667, 0.04335816204547882, -0.002029602648690343, -0.01662362739443779, -0.029001392424106598, -0.004531467333436012, -0.035783976316452026, -0.04130719229578972, 0.008257840760052204, 0.017954956740140915, -0.022254791110754013, 0.02846166305243969, -0.016209835186600685, -0.015805039554834366, -0.0127195930108428, 0.011550182476639748, -0.055232178419828415, 0.04148710146546364, 0.03222176805138588, -0.01253968384116888, -0.03763704374432564, -0.0015168609097599983, -0.006229362450540066, 0.01635376177728176, -0.023190319538116455, -0.023352237418293953, 0.01275557465851307, 0.010074925608932972, 0.01736125536262989, -0.026014896109700203, -0.021876979619264603, -0.00817688088864088, -0.04281843081116676, 0.0006043830653652549, -0.027400199323892593, -0.026878461241722107, 0.011154381558299065, -0.018782539293169975, 0.006188882514834404, -0.0001345806522294879, 0.055951815098524094, -0.019628113135695457, 0.03391291946172714, 0.0261768139898777, -0.04105532169342041, -0.01874655671417713, -0.029253264889121056, -0.02910933829843998, 0.014671609736979008, 0.03229373320937157, -0.06228462606668472, -0.009472228586673737, 0.013232334516942501, -0.00785304419696331, -0.01939423196017742, -0.03767302259802818, -0.02745417132973671, -0.034380681812763214, 0.033373188227415085, -0.008266836404800415, -0.003577947849407792, -0.012845529243350029, -0.017568150535225868, 0.012422742322087288, 0.017379246652126312, 0.05548405274748802, 0.006026964168995619, -0.025637086480855942, 0.014680605381727219, -0.04289039596915245, -0.027526134625077248, 0.025007404386997223, -0.03134021535515785, -0.018026920035481453, 0.01582302898168564, 0.04519323632121086, 0.048899367451667786, -0.0009613907313905656, 0.002124055055901408, -0.0396520271897316, 0.016569653525948524, -0.05656350776553154, 0.005653652362525463, -0.016902485862374306, 0.0004320636217016727, -0.004983489867299795, 0.026950424537062645, 0.08772381395101547, 0.0449773445725441, -0.016740567982196808, 0.04325021430850029, -0.011442236602306366, -0.05390084907412529, -0.04951106011867523, -0.01212589256465435, -0.052677467465400696, -0.00009283605322707444, -0.028299745172262192, -0.017100386321544647, 0.02689645253121853, -0.07836852222681046, -0.013268317095935345, -0.03983193635940552, -0.03756507858633995, -0.05447655916213989, -0.08923505246639252, -0.00974209327250719, 0.001320085022598505, 0.010677621699869633, -0.062392573803663254, 0.061852846294641495, 0.05051855370402336, 0.021445197984576225, -0.012845529243350029, -0.026788506656885147, 0.028317736461758614, -0.014626632444560528, 0.03315730020403862, 0.059550005942583084, -0.01271059736609459, 0.0018957951106131077, -0.006975986063480377, 0.028443673625588417, -0.0036701513454318047, 0.07020063698291779, 0.04076746478676796, -0.03152012452483177, 0.06354399025440216, 0.02480950392782688, -0.026842478662729263, 0.04163103178143501, 0.048071786761283875, 0.03288743272423744, 0.04296236112713814, 0.053109247237443924, 0.009445242583751678, -0.03749311342835426, -0.03828471526503563, 0.03056660294532776, 0.03546013683080673, -0.010299812071025372, 0.04396985098719597, -0.003600436495617032, -0.06728611141443253, -0.02387397550046444, -0.017154360190033913, 0.0641556829214096, -0.027328234165906906, -0.03803284093737602, 0.013933981768786907, 0.0730791911482811, -0.06519915908575058, -0.009580174461007118, 0.03313930705189705, -0.014635628089308739, 0.014959464780986309, 0.005289335735142231, -0.0258889589458704, 0.023568129166960716, -0.03810480609536171, -0.029055364429950714, 0.07736103236675262, -0.005127417389303446, 0.03083646669983864, 0.009220356121659279, 0.02407187409698963, 0.004682141821831465, 0.00003851185101666488, -0.05544807016849518, 0.0027818488888442516, 0.039903901517391205, 0.01612887531518936, -0.041738975793123245, 0.02230876311659813, -0.0019059149781242013, 0.03058459423482418, -0.037421151995658875, -0.02230876311659813, -0.047532059252262115, -0.04987087845802307, 0.017712078988552094, -0.016002940014004707, -0.018044911324977875, -0.04371798038482666, -0.01029081642627716, -0.018089888617396355, 0.004329069517552853, -0.0320778414607048, 0.011172372847795486, -0.0016855259891599417, -0.01473457831889391, 0.045948855578899384, 0.007016465999186039, 0.028857463970780373, -0.0029707537032663822, -0.03058459423482418, 0.06361595541238785, -0.08016762137413025, -0.012701601721346378, 0.002865056972950697, -0.01561613380908966, 0.00026213357341475785, -0.019430212676525116, 0.006026964168995619, -0.01253068819642067, 0.01633577235043049, -0.0010828295489773154, 0.056599490344524384, 0.011811050586402416, 0.05260550230741501, 0.025924941524863243, 0.03745713457465172, 0.06469541043043137, -0.025960924103856087, -0.04799982160329819, 0.048251695930957794, 0.038428641855716705, 0.03396689146757126, 0.03223976120352745, 0.02995491214096546, -0.05364897847175598, 0.016209835186600685, -0.007340302690863609, -0.010623648762702942, -0.022272780537605286, -0.013655121438205242, -0.0378529317677021, -0.049403116106987, 0.026842478662729263, -0.0411272831261158, 0.04040764644742012, -0.03968800976872444, 0.05195782706141472, 0.01854865625500679, -0.07880030572414398, 0.032923415303230286, 0.05544807016849518, -0.03378698229789734, 0.0070119681768119335, 0.06771788746118546, -0.02846166305243969, 0.022722555324435234, 0.02873152866959572, -0.05458450689911842, -0.0041446625255048275, -0.01253968384116888, -0.027885952964425087, -0.017145363613963127, -0.06253650039434433, -0.008473731577396393, -0.031807977706193924, -0.09607160836458206, -0.008883025497198105, -0.02250666357576847, 0.01258466113358736, 0.018980439752340317, 0.006643153727054596, -0.04710027575492859, 0.0204017236828804, -0.0054647475481033325, -0.01304342970252037, -0.03904033452272415, -0.04616474732756615, -0.056527525186538696, 0.04065952077507973, -0.035945892333984375, -0.022974427789449692, 0.06969689577817917, 0.021643098443746567, 0.014590650796890259, -0.06365194171667099, -0.06296828389167786, -0.012791557237505913, 0.07556194067001343, -0.04569698125123978, -0.0005714934086427093, -0.001712512457743287, 0.02049167826771736, 0.008374781347811222, -0.03774498775601387, -0.022740544751286507, 0.02883947268128395, 0.019682085141539574, -0.015004442073404789, -0.03141217678785324, -0.015409238636493683, -0.05656350776553154, -0.03599986806511879, -0.0055232178419828415, -0.008999967016279697, 0.05134613811969757, 0.008662636391818523, 0.052317649126052856, 0.05170595645904541, -0.009229350835084915, -0.011730091646313667, -0.01657865010201931, -0.04051559045910835, -0.04346610605716705, 0.02727426216006279, -0.003559956792742014, -0.0261768139898777, -0.06958894431591034, 0.039975862950086594, -0.0032158801332116127, 0.02223679982125759, 0.018422720953822136, 0.011118399910628796, 0.06814967095851898, -0.023927947506308556, -0.024089865386486053, 0.04897133260965347, -0.008100420236587524, -0.0030112331733107567, -0.03344515338540077, 0.007713614497333765, 0.04069550335407257, -0.0039872415363788605, 0.018854502588510513, 0.02774202637374401, -0.02707636170089245, -0.011586164124310017 ]
24,451
encodings.utf_8
StreamReader
null
class StreamReader(codecs.StreamReader): decode = codecs.utf_8_decode
(stream, errors='strict')
[ -0.014397763647139072, -0.029440073296427727, -0.03423061594367027, 0.01844795048236847, -0.04773124307394028, 0.020015764981508255, -0.015024889260530472, 0.09197845309972763, 0.09553216397762299, -0.0011388430139049888, 0.02093903347849846, 0.02480630949139595, -0.0067503126338124275, 0.0489158108830452, 0.014267112128436565, 0.06327002495527267, -0.02985815703868866, 0.04522273689508438, -0.014267112128436565, 0.03241892158985138, -0.08347741514444351, -0.007281627506017685, -0.021182915195822716, 0.04508337751030922, -0.002003318630158901, 0.06891416013240814, -0.030206559225916862, -0.051772717386484146, -0.04428204894065857, -0.03227955847978592, -0.004733928944915533, -0.005622357130050659, -0.024545006453990936, 0.03752302750945091, -0.024039821699261665, -0.01060887798666954, -0.053445056080818176, -0.022890090942382812, -0.04968230053782463, 0.017115307971835136, -0.0468602329492569, 0.03470095992088318, -0.014127750881016254, -0.018029866740107536, -0.01762920245528221, -0.007638740818947554, -0.03741850703954697, -0.04442141205072403, -0.03755786642432213, 0.029962677508592606, 0.01874409429728985, 0.017768563702702522, -0.003004977712407708, -0.004524887073785067, 0.004908130504190922, 0.003682186594232917, -0.042923279106616974, 0.006271257996559143, -0.04567566141486168, 0.023656578734517097, -0.05138947442173958, -0.018343430012464523, 0.043654922395944595, 0.013962259516119957, -0.056162599474191666, 0.008165700361132622, 0.05759105458855629, -0.07504605501890182, -0.011009542271494865, 0.023012032732367516, -0.011549566872417927, 0.022524269297719002, -0.07595190405845642, 0.0021688099950551987, 0.026583166792988777, 0.0427490770816803, -0.06821735203266144, 0.0018922650488093495, -0.02553795650601387, 0.018778933212161064, 0.07434924691915512, 0.023586899042129517, 0.032523442059755325, 0.024980511516332626, 0.02078225277364254, -0.05731233209371567, 0.07609126716852188, 0.0030790134333074093, 0.0018922650488093495, 0.08417421579360962, -0.007551639806479216, -0.012211533263325691, -0.017184989526867867, 0.04490917548537254, -0.012211533263325691, -0.03637329488992691, 0.03856823593378067, 0.055082548409700394, -0.04543178156018257, -0.033255089074373245, -0.02715803124010563, 0.07901784777641296, -0.06065700203180313, -0.05421154201030731, -0.025050191208720207, -0.03125176951289177, 0.010086273774504662, -0.006088346242904663, 0.01836084946990013, -0.012803818099200726, 0.03214019909501076, -0.04487433657050133, -0.007582125253975391, 0.07044713199138641, -0.004459561314433813, -0.036477819085121155, 0.006545625627040863, 0.03630361706018448, 0.011976361274719238, -0.014023229479789734, 0.0022580884397029877, 0.0649423599243164, -0.04497885704040527, -0.0008356233593076468, 0.0548735074698925, 0.021792622283101082, 0.02912651002407074, 0.033115725964307785, 0.09365078806877136, 0.03609457239508629, 0.01046951673924923, 0.024179182946681976, 0.007268562447279692, -0.05285276845097542, 0.012795108370482922, 0.0033816888462752104, 0.013483204878866673, 0.035676490515470505, -0.03679138049483299, -0.0009771621553227305, 0.050448786467313766, 0.022890090942382812, 0.036268774420022964, -0.0564761608839035, -0.10932893306016922, -0.03001493774354458, 0.03389963507652283, -0.05299213156104088, -0.022158445790410042, 0.038742437958717346, -0.0009042152669280767, -0.014328083023428917, -0.03783658891916275, 0.07124845683574677, 0.05567483603954315, -0.048114486038684845, 0.0025542310904711485, -0.016401082277297974, 0.01141891535371542, 0.03431771695613861, -0.002573828911408782, 0.03409125655889511, -0.01470261625945568, -0.013143511489033699, 0.002377852099016309, 0.02208876423537731, 0.05205143988132477, -0.07762423902750015, 0.011183743365108967, -0.02670510672032833, -0.01716756820678711, -0.008291997015476227, -0.04654667153954506, 0.02203650400042534, 0.026652846485376358, -0.0250327717512846, 0.022942353039979935, 0.055291593074798584, 0.0027110124938189983, 0.006314808502793312, 0.01174989901483059, -0.01357030589133501, -0.027279973030090332, -0.04281875491142273, 0.07623062282800674, 0.007090005557984114, 0.02700125053524971, 0.04490917548537254, 0.02539859525859356, -0.06110992655158043, -0.00014562165597453713, -0.06466364115476608, -0.03431771695613861, -0.026304444298148155, -0.011471176519989967, -0.02978847548365593, 0.030990466475486755, 0.0007142266258597374, 0.01620946079492569, -0.029370391741394997, -0.01627914048731327, 0.0813869908452034, 0.016261721029877663, -0.057033609598875046, -0.05881046503782272, 0.03686106204986572, -0.019876403734087944, -0.007547284942120314, -0.06215513497591019, 0.01060887798666954, -0.033115725964307785, -0.05414186045527458, 0.044456250965595245, 0.01639237254858017, 0.05553547292947769, -0.04118126258254051, -0.07825136184692383, -0.02707093022763729, 0.03396931290626526, 0.011619247496128082, 0.08452261984348297, 0.036547496914863586, -0.06020407751202583, -0.024719208478927612, 0.02926587127149105, -0.03811531141400337, -0.02670510672032833, -0.039125680923461914, 0.008731856010854244, 0.016627544537186623, 0.021722940728068352, 0.0003247226995881647, 0.005461220629513264, 0.03447449952363968, 0.02707093022763729, 0.03118208795785904, -0.005744297988712788, -0.025938620790839195, -0.037139784544706345, -0.007586480118334293, 0.013587725348770618, -0.03562422841787338, -0.026443805545568466, 0.015286191366612911, 0.008840732276439667, -0.0014730923576280475, 0.02531149424612522, 0.0861949548125267, 0.005208628252148628, 0.006079636048525572, 0.04017089307308197, -0.015834925696253777, -0.01039112638682127, -0.0025999590288847685, 0.012777687981724739, -0.05706844851374626, -0.019806724041700363, -0.053967658430337906, -0.003867275780066848, -0.0031682918779551983, -0.03125176951289177, 0.020869353786110878, 0.017071757465600967, 0.053445056080818176, -0.00802633911371231, -0.020991293713450432, -0.005953340325504541, -0.01255122572183609, 0.042296152561903, -0.0244579054415226, 0.09169972687959671, -0.0022428457159549, -0.03769722953438759, 0.027123190462589264, -0.030624642968177795, -0.05546579509973526, -0.016470761969685555, -0.001966300653293729, 0.048044804483652115, -0.009729159995913506, -0.030572382733225822, 0.01945831999182701, 0.008936543017625809, 0.0036996067501604557, 0.07191042602062225, -0.03327250853180885, -0.014058070257306099, -0.05954211205244064, -0.00035112511250190437, -0.021060975268483162, 0.020433848723769188, -0.02780257724225521, -0.05079719051718712, -0.0014894237974658608, 0.05159851908683777, 0.00024864557781256735, -0.020886773243546486, -0.02158357948064804, 0.04104189947247505, -0.03410867601633072, -0.042853597551584244, -0.026583166792988777, 0.007686646189540625, 0.03236665949225426, -0.05497802793979645, -0.015207801014184952, -0.012316053733229637, -0.005199918057769537, -0.03550228849053383, 0.012533806264400482, 0.0013718376867473125, 0.044595614075660706, -0.028481964021921158, -0.035537127405405045, -0.0665450170636177, 0.034805480390787125, 0.0035319377202540636, 0.06215513497591019, 0.03672169893980026, 0.026914149522781372, -0.008688305504620075, -0.051180433481931686, 0.014685195870697498, -0.03616425395011902, 0.00042951584327965975, 0.0224023275077343, 0.019057655707001686, -0.017585651949048042, 0.038603078573942184, 0.01968478225171566, -0.0050779771991074085, -0.016261721029877663, 0.011863130144774914, -0.03153049200773239, 0.012577356770634651, -0.014240982010960579, -0.0053566996939480305, 0.022715890780091286, 0.033255089074373245, -0.027837418019771576, 0.04201743006706238, -0.04759187996387482, 0.02707093022763729, 0.0067503126338124275, -0.028481964021921158, 0.026008300483226776, -0.030694324523210526, -0.007830362766981125, 0.04215678945183754, 0.006336583755910397, 0.01584363728761673, -0.028063880279660225, 0.030554963275790215, -0.015233931131660938, -0.04637246951460838, -0.00580091355368495, -0.015382002107799053, -0.007246787194162607, 0.02217586524784565, -0.020137706771492958, -0.0170282069593668, 0.00028879361343570054, -0.021548738703131676, -0.022123605012893677, -0.03811531141400337, -0.016793034970760345, -0.017907924950122833, 0.03327250853180885, 0.014005810022354126, 0.06988968700170517, -0.008988803252577782, 0.04543178156018257, -0.03668686002492905, 0.008178765885531902, -0.07344339787960052, -0.02590378001332283, -0.01269929762929678, 0.022663630545139313, -0.030241400003433228, 0.031356289982795715, 0.010722109116613865, 0.04856741055846214, -0.07344339787960052, -0.009014933370053768, 0.006719827186316252, -0.04539693892002106, -0.027610955759882927, 0.030345920473337173, 0.012751557864248753, 0.027976779267191887, -0.04382912442088127, -0.0001528346911072731, 0.011732478626072407, -0.03755786642432213, -0.024701789021492004, -0.0017616137629374862, -0.014423893764615059, 0.03741850703954697, 0.04734799638390541, 0.040205731987953186, -0.055953558534383774, 0.05034426599740982, -0.01598299853503704, 0.030241400003433228, 0.03264538198709488, 0.06867027282714844, 0.025868939235806465, 0.03473580256104469, -0.01829116977751255, -0.013491914607584476, 0.048706769943237305, -0.0418432280421257, 0.0030703034717589617, -0.06347906589508057, -0.029683955013751984, -0.04703443497419357, -0.0537237785756588, -0.03395189344882965, -0.0024780179373919964, -0.024701789021492004, -0.026583166792988777, 0.0489158108830452, -0.05379345640540123, -0.0151468301191926, -0.012873498722910881, -0.017907924950122833, 0.005652842111885548, 0.027837418019771576, -0.00030213090940378606, 0.021252596750855446, 0.00965947937220335, -0.07184074819087982, -0.005165077745914459, -0.07309499382972717, -0.0023125263396650553, 0.006175447255373001, -0.08243220299482346, 0.0085141034796834, -0.017960187047719955, 0.019406059756875038, 0.051981762051582336, 0.0205732099711895, 0.06410619616508484, -0.011009542271494865, 0.08069019019603729, -0.010678558610379696, -0.0014828912680968642, 0.07985401898622513, -0.021705521270632744, -0.05640648305416107, -0.04107673838734627, -0.003481854684650898, -0.0489158108830452, -0.04734799638390541, 0.015347162261605263, -0.05187724158167839, 0.06372295320034027, 0.017820825800299644, -0.013012859970331192, 0.011357945390045643, -0.023168815299868584, 0.013038991019129753, 0.017681464552879333, -0.05619743838906288, -0.03257570043206215, 0.03214019909501076, -0.006079636048525572, 0.018918294459581375, 0.003139984095469117, 0.0025389885995537043, -0.01537329237908125, 0.05874078348278999, -0.02656574547290802, -0.028412282466888428, -0.013822898268699646, 0.010852760635316372, -0.021165495738387108, -0.014441313222050667, -0.006079636048525572, 0.04194774851202965, -0.013970969244837761, -0.060552481561899185, 0.008827666752040386, -0.021409377455711365, -0.03139112889766693, -0.07971465587615967, 0.06076152250170708, -0.02890004776418209, 0.029318131506443024, 0.029544593766331673, 0.036477819085121155, 0.08096890896558762, -0.012490255758166313, 0.04400332644581795, 0.0763699859380722, 0.00860555935651064, -0.008718790486454964, 0.0071248458698391914, 0.0017104421276599169, -0.02489341050386429, -0.016627544537186623, -0.029457492753863335, -0.03358606994152069, -0.010957281105220318, 0.03140855208039284, 0.02487599104642868, 0.011863130144774914, 0.0064367493614554405, 0.06281710416078568, -0.016880135983228683, -0.0071204910054802895, 0.04522273689508438, -0.003895583562552929, -0.03367317095398903, 0.006785152945667505, 0.0031247413717210293, -0.03672169893980026, 0.05093654990196228, -0.016958527266979218, 0.029370391741394997, 0.02977105602622032, -0.00022278753749560565, 0.002974492497742176, -0.06511656194925308, -0.016880135983228683, -0.012960599735379219, -0.03424803540110588, 0.007847782224416733, 0.004677313379943371, 0.006724182050675154, -0.008631689473986626, -0.05786977708339691, -0.021095816045999527, -0.05776525288820267, 0.006976774428039789, 0.017437580972909927, -0.004677313379943371, 0.028795527294278145, 0.011009542271494865, 0.055953558534383774, 0.005535256117582321, 0.0340564139187336, -0.026287022978067398, 0.005239113699644804, -0.022297807037830353, -0.00210566190071404, -0.03363833203911781, -0.004463916178792715, 0.010121113620698452, 0.012951890006661415, -0.0067024072632193565, -0.029370391741394997, -0.009912071749567986, -0.009363336488604546, 0.03693074360489845, -0.054838668555021286, -0.010277895256876945, 0.03637329488992691, 0.007630030624568462, 0.008962673135101795, 0.015286191366612911, 0.06783410906791687, -0.0681128278374672, 0.03419577702879906, -0.04856741055846214, 0.03271506354212761, -0.01984156295657158, 0.022158445790410042, -0.012176692485809326, 0.016793034970760345, 0.04675571247935295, 0.027785157784819603, 0.03508420288562775, 0.03964828699827194, 0.04295811802148819, -0.0005770428688265383, 0.05863626301288605, 0.00794359389692545, 0.019127337262034416, -0.011401495896279812, 0.02386562153697014, -0.01982414349913597, -0.01474616676568985, -0.042923279106616974, 0.01364869624376297, -0.026722528040409088, 0.005243468564003706, 0.04647698998451233, 0.016192039474844933, -0.0006516228895634413, 0.014397763647139072, -0.07504605501890182, 0.04752219840884209, -0.03214019909501076, 0.001149730640463531, -0.050832029432058334, 0.0008062268607318401, -0.023586899042129517, -0.01591331698000431, -0.028708426281809807, -0.009093323722481728, 0.010774369351565838, -0.033411867916584015, -0.006266903132200241, 0.0660572499036789, 0.001708264579065144, -0.026304444298148155, 0.02128743752837181, -0.015303611755371094, 0.08215347677469254, 0.006684986874461174, -0.04522273689508438, -0.0024148698430508375, -0.05936791002750397, 0.05152883753180504, 0.0050779771991074085, 0.023813361302018166, -0.07281627506017685, -0.014754876494407654, -0.002636977005749941, 0.07853008806705475, 0.020381588488817215, -0.026356704533100128, 0.02590378001332283, -0.025363754481077194, 0.0669979378581047, -0.013378683477640152, -0.021060975268483162, -0.025085031986236572, -0.049438416957855225, 0.010138534009456635, 0.03489258140325546, 0.007294692564755678, -0.004816674627363682, -0.032697644084692, 0.024701789021492004, 0.0012803818099200726, 0.0010816830908879638, 0.038533397018909454, 0.02613024227321148, 0.017907924950122833, -0.03693074360489845, -0.04766156151890755, 0.0018813774222508073, -0.07107425481081009, 0.01288220938295126, 0.017158858478069305, -0.025450855493545532, 0.028412282466888428, -0.01390999834984541, 0.003815015312284231, 0.0738614872097969, 0.042296152561903, 0.055500634014606476, 0.019336378201842308, -0.037801750004291534, 0.06961096078157425, 0.04104189947247505, 0.054699305444955826, 0.03759270906448364, 0.02818582020699978, -0.028481964021921158, 0.015652013942599297, 0.02670510672032833, 0.040867697447538376, -0.013561595231294632, -0.024248864501714706, 0.048637088388204575, 0.019406059756875038, -0.05278308689594269, -0.0072119468823075294, 0.05731233209371567, 0.0062973881140351295, -0.030990466475486755, -0.005783493630588055, -0.018256328999996185, 0.0017529036849737167, -0.05473414808511734, 0.12075655907392502, 0.027698056772351265, -0.02964911423623562, 0.08403486013412476, -0.02093903347849846, 0.0017006432171911001, -0.02670510672032833, 0.027558695524930954, -0.051912080496549606, 0.0032575700897723436, 0.04696475341916084, -0.026252182200551033, 0.05724265053868294, -0.011349234730005264, -0.033481549471616745, -0.023290755227208138, -0.03236665949225426, 0.023691419512033463, 0.01730692945420742, -0.07184074819087982, 0.020834513008594513, 0.014632935635745525, 0.012795108370482922, -0.04773124307394028, 0.02999751828610897, -0.040658656507730484, 0.025729577988386154, 0.010521776974201202, -0.05957695096731186, 0.012829949147999287, 0.014589385129511356, 0.027349652722477913, -0.001134488033130765, -0.0007316467817872763, -0.015521363355219364, -0.0443517304956913, 0.04675571247935295, 0.0018868212355300784, -0.014580675400793552, 0.06616177409887314, -0.014040649868547916, 0.03241892158985138, -0.010800500400364399, 0.002408337313681841, -0.018482791259884834, 0.09999172389507294, -0.044595614075660706, 0.017751144245266914, -0.12556451559066772, 0.017960187047719955, -0.019893823191523552, -0.01083534024655819, 0.0174898412078619, 0.03895147889852524, -0.09149068593978882, 0.006589176133275032, -0.07922689616680145, -0.06598757207393646, -0.00869701523333788, 0.005726878065615892, 0.09664705395698547, -0.005260888487100601, -0.03769722953438759, -0.017115307971835136, -0.03349896892905235, 0.03557197004556656, 0.014955208636820316, 0.0007447118987329304, 0.059751152992248535, -0.007551639806479216, -0.03745334595441818, 0.03602489456534386, 0.027123190462589264, 0.009990462101995945, -0.05278308689594269, 0.050832029432058334, -0.016540443524718285, -0.009380756877362728, -0.02860390394926071, -0.02715803124010563, -0.03205309808254242, 0.03079884499311447, -0.052434686571359634, 0.015242640860378742, 0.004520531743764877, 0.005099751986563206, -0.023900460451841354, 0.009424307383596897, 0.017367901280522346, 0.015747826546430588 ]
24,453
codecs
__exit__
null
def __exit__(self, type, value, tb): self.stream.close()
(self, type, value, tb)
[ 0.020204272121191025, 0.007130424492061138, -0.021163975819945335, 0.011811080388724804, -0.028471186757087708, -0.020507335662841797, -0.036468710750341415, 0.07785379886627197, 0.011844754219055176, -0.03821974992752075, 0.0075892298482358456, -0.011625874787569046, 0.006524296477437019, 0.011625874787569046, -0.026972703635692596, 0.06623633950948715, -0.04010548070073128, 0.022325720638036728, -0.01228251401335001, 0.035189107060432434, -0.0678190067410469, 0.01703893579542637, -0.027427298948168755, -0.04155345261096954, -0.003150603733956814, 0.017695575952529907, -0.0008323739166371524, -0.028521697968244553, 0.005863448139280081, -0.016752708703279495, -0.07792114466428757, -0.053608670830726624, 0.012846549972891808, 0.028841597959399223, 0.03576156124472618, 0.005514082498848438, -0.06589960306882858, 0.007959641516208649, -0.009942186065018177, 0.041317738592624664, 0.035828910768032074, -0.0005135252722539008, -0.018823647871613503, -0.0013164345873519778, 0.013713649474084377, 0.018688952550292015, -0.023992573842406273, -0.003247415879741311, -0.004133457317948341, -0.03135029599070549, 0.0031148253474384546, 0.048321884125471115, 0.025676263496279716, 0.015313155017793179, 0.006183349061757326, 0.044213682413101196, 0.026753824204206467, 0.017190467566251755, -0.0009412876097485423, -0.037984032183885574, -0.02328542433679104, 0.03640136495232582, -0.0037904055789113045, -0.015523616224527359, 0.0049079544842243195, -0.00220773764885962, -0.023403281345963478, 0.015380502678453922, 0.011617456562817097, 0.03414522111415863, -0.0029064686968922615, -0.005164717324078083, -0.04862494766712189, 0.06418223679065704, 0.0025129064451903105, -0.040677934885025024, -0.061252620071172714, 0.004143980331718922, -0.011390158906579018, -0.05290152132511139, 0.038522813469171524, 0.05721176415681839, 0.001215413212776184, 0.040677934885025024, 0.03369062393903732, -0.03724320977926254, 0.06276793777942657, -0.01766190119087696, -0.07347620278596878, 0.06936800479888916, -0.0036367690190672874, 0.03358960151672363, -0.005341504700481892, -0.025137482210993767, 0.06866085529327393, -0.029885485768318176, -0.025070134550333023, 0.028151286765933037, -0.003899845527485013, -0.043035101145505905, 0.029060477390885353, -0.008923553861677647, 0.0024455587845295668, -0.027881896123290062, 0.02683800831437111, 0.029481399804353714, 0.044988181442022324, -0.024649212136864662, -0.033000312745571136, 0.002386629581451416, -0.03296663612127304, -0.04643615335226059, -0.06276793777942657, 0.011878428049385548, -0.019901208579540253, -0.023403281345963478, -0.02899313159286976, 0.06172405183315277, -0.00803119782358408, -0.010649335570633411, 0.035828910768032074, 0.04037487134337425, -0.055629096925258636, -0.0054635717533528805, 0.0220731683075428, 0.08108647912740707, 0.013082265853881836, 0.020389478653669357, 0.02574361115694046, 0.08795592933893204, -0.054248470813035965, 0.035828910768032074, -0.006301207467913628, -0.0013627361040562391, -0.011928939260542393, 0.02358848787844181, 0.005909749772399664, -0.006229650694876909, -0.032899290323257446, -0.0188741572201252, -0.00798068754374981, 0.02811761200428009, -0.015127948485314846, -0.04209223389625549, 0.022325720638036728, 0.037546273320913315, -0.0021309193689376116, 0.0014342928770929575, -0.037883009761571884, -0.03402736037969589, -0.011600620113313198, -0.0018878367263823748, -0.02348746731877327, 0.10054992884397507, 0.016946332529187202, 0.020877748727798462, -0.022005820646882057, 0.04586369916796684, -0.0003398947883397341, -0.028403839096426964, -0.01682005636394024, 0.021904798224568367, -0.006671619135886431, -0.027629341930150986, -0.004280779976397753, 0.012989663518965244, 0.01628127694129944, 0.07017616927623749, 0.009731724858283997, -0.03197326138615608, -0.0883600190281868, -0.013545281253755093, -0.012189910747110844, 0.015212133526802063, -0.03949935361742973, 0.06600062549114227, 0.027932407334446907, 0.027881896123290062, -0.008090127259492874, 0.00035304861376062036, -0.009992696344852448, -0.0829722136259079, -0.04657084867358208, 0.023100217804312706, 0.026686476543545723, -0.028605882078409195, -0.006229650694876909, -0.024699723348021507, -0.016449645161628723, -0.03017171286046505, 0.0022308884654194117, -0.007332467008382082, -0.016929496079683304, -0.0036472920328378677, 0.06583225727081299, -0.02983497455716133, -0.020978769287467003, 0.021079789847135544, 0.03219214081764221, 0.004529124591499567, -0.04603206738829613, 0.0549556203186512, -0.004461776930838823, -0.07118638604879379, 0.026804335415363312, 0.002980130258947611, 0.043270815163850784, 0.014008295722305775, -0.08856206387281418, 0.05448418855667114, 0.007639740593731403, 0.014185083098709583, 0.008746766485273838, 0.03825342282652855, 0.0808170884847641, -0.06563021242618561, -0.03155233711004257, -0.03027273528277874, 0.006027607712894678, 0.039600372314453125, 0.03133345767855644, -0.03350541740655899, 0.01476595550775528, 0.0010375735582783818, -0.024918602779507637, 0.005812937393784523, -0.006726338993757963, -0.009091922082006931, 0.022864501923322678, -0.03283194079995155, -0.011002910323441029, 0.03933098167181015, 0.01852058246731758, -0.01351160742342472, -0.011499598622322083, 0.022056329995393753, -0.02035580389201641, 0.024868091568350792, -0.12142767757177353, -0.0018667905824258924, 0.0020667286589741707, -0.041856516152620316, 0.004423893988132477, -0.01454707607626915, 0.02508697099983692, 0.03266357257962227, 0.062330178916454315, 0.05896279960870743, 0.01713995821774006, -0.005779263563454151, 0.06707818061113358, -0.02542370930314064, 0.0016647478332743049, -0.04936577379703522, 0.030121203511953354, -0.05977097153663635, 0.018992016091942787, -0.09852950274944305, 0.06320569664239883, -0.024059921503067017, 0.02522166632115841, 0.014841721393167973, 0.01873946189880371, 0.04855760186910629, 0.01820068247616291, 0.002090931637212634, 0.013317982666194439, -0.06445162743330002, 0.018941504880785942, 0.014563912525773048, 0.05071272328495979, -0.022578274831175804, -0.07132107764482498, -0.026905355975031853, -0.06963739544153214, 0.02166908234357834, 0.011743733659386635, -0.011971031315624714, -0.002481337171047926, -0.011609038338065147, 0.08465590327978134, 0.051891304552555084, 0.02929619513452053, -0.02821863442659378, -0.005067904945462942, 0.009841164574027061, 0.006111792288720608, 0.0011396472109481692, -0.0049668834544718266, -0.03515543416142464, -0.028201796114444733, -0.02175326645374298, -0.02468288689851761, 0.047783102840185165, 0.06542816758155823, -0.00845212023705244, -0.07293742150068283, -0.02724209427833557, 0.012728691101074219, 0.001739461557008326, -0.007576602045446634, -0.05505664274096489, 0.021786941215395927, 0.06172405183315277, -0.0188573207706213, 0.009192943572998047, 0.03650238364934921, -0.008338471874594688, -0.025827795267105103, 0.05205967649817467, 0.058895453810691833, 0.02983497455716133, -0.013865182176232338, -0.03330337628722191, 0.02500278688967228, 0.018133334815502167, 0.020170599222183228, 0.00942866038531065, -0.03175438195466995, 0.07132107764482498, -0.045526959002017975, -0.10203157365322113, 0.08135586977005005, -0.033017147332429886, 0.020338967442512512, -0.03566053882241249, -0.01766190119087696, 0.028403839096426964, 0.01131439208984375, -0.027191583067178726, -0.06300365924835205, -0.018470073118805885, 0.0017605077009648085, -0.03364011272788048, 0.025474220514297485, 0.008974064141511917, -0.011928939260542393, -0.03454930707812309, 0.018554257228970528, -0.08263547718524933, -0.03848914057016373, -0.021399691700935364, 0.015776168555021286, -0.026164531707763672, -0.04468511417508125, 0.03332021087408066, -0.040139153599739075, -0.03468400239944458, 0.0927376076579094, 0.021029280498623848, 0.0355258472263813, 0.04707595333456993, 0.018773136660456657, 0.042395297437906265, 0.014942742884159088, 0.004198700189590454, 0.011398577131330967, 0.018183844164013863, 0.01604555919766426, -0.008797276765108109, 0.025928815826773643, 0.025592077523469925, -0.0032326835207641125, 0.009032993577420712, 0.027663016691803932, -0.05849136784672737, -0.03586258366703987, 0.045729003846645355, 0.005362550728023052, 0.045627981424331665, -0.03535747528076172, -0.045627981424331665, -0.006364345550537109, 0.016752708703279495, -0.0006066543282940984, 0.0015742495888844132, 0.017215723171830177, 0.013966203667223454, 0.006431693211197853, 0.01614658161997795, 0.004870071541517973, 0.026349738240242004, -0.023234913125634193, -0.04586369916796684, -0.031299784779548645, -0.0463688038289547, -0.044988181442022324, 0.022140515968203545, -0.021904798224568367, 0.053271930664777756, 0.03566053882241249, -0.021147137507796288, 0.04589737206697464, -0.0506453774869442, 0.03158601373434067, 0.044853486120700836, -0.031636521220207214, -0.002723367651924491, 0.0172578152269125, 0.027831384912133217, -0.043035101145505905, 0.07388029247522354, -0.07037821412086487, 0.037108514457941055, 0.0484902523458004, -0.024379821494221687, 0.026585454121232033, -0.058760758489370346, 0.08277016878128052, -0.02865639328956604, -0.025911979377269745, -0.057380132377147675, -0.019042527303099632, -0.05185763165354729, 0.050274964421987534, -0.00398613465949893, 0.046503499150276184, 0.004537542816251516, 0.07179251313209534, 0.02023794688284397, 0.015776168555021286, 0.04566165432333946, 0.023133892565965652, -0.001193314790725708, -0.024076757952570915, -0.08667632937431335, -0.04178917035460472, -0.014084061607718468, -0.0018331167520955205, 0.00584240211173892, -0.026046674698591232, -0.05997301638126373, -0.011945775710046291, 0.02338644489645958, -0.006275951862335205, 0.019951719790697098, -0.08452120423316956, -0.018924668431282043, 0.045964717864990234, 0.06495673209428787, 0.05185763165354729, 0.04020650312304497, 0.024110430851578712, -0.0071262153796851635, 0.013696813024580479, -0.019901208579540253, 0.06347508728504181, 0.02197214588522911, 0.0005614051478914917, 0.004112411290407181, -0.012838131748139858, -0.04643615335226059, -0.023942062631249428, -0.039600372314453125, -0.0024539772421121597, -0.06536082178354263, 0.017527205869555473, -0.03286561742424965, -0.02283082716166973, -0.02153438702225685, 0.0019415043061599135, 0.025693099945783615, 0.022595111280679703, -0.03670442849397659, -0.06950269639492035, 0.020305294543504715, 0.0031064068898558617, -0.02023794688284397, 0.013940948061645031, 0.007147261407226324, -0.037108514457941055, 0.04721064865589142, -0.06229650601744652, 0.01254348549991846, -0.004958465229719877, -0.022915011271834373, 0.006793686654418707, 0.02272980660200119, 0.010523058474063873, -0.009327638894319534, 0.00904141180217266, -0.029447726905345917, 0.03677177429199219, 0.010102136060595512, -0.07798849046230316, 0.021366018801927567, 0.07071495056152344, -0.06074751168489456, 0.06162302941083908, 0.0732068121433258, -0.00391036830842495, 0.009192943572998047, -0.0258783046156168, -0.04532491788268089, 0.011701640672981739, -0.015877190977334976, -0.029818138107657433, -0.0226287841796875, -0.004457567352801561, -0.10492751747369766, -0.024160942062735558, -0.005408851895481348, -0.0549556203186512, -0.04061058908700943, 0.026804335415363312, -0.018941504880785942, 0.024110430851578712, -0.02899313159286976, -0.01692107878625393, -0.025945652276277542, -0.03821974992752075, 0.031097741797566414, -0.03037375584244728, 0.01734200119972229, 0.013427422381937504, -0.03569421544671059, -0.02540687285363674, -0.0253226887434721, -0.024800743907690048, 0.03138396888971329, 0.0473790168762207, 0.0603434257209301, 0.016777964308857918, -0.01684531196951866, -0.004143980331718922, -0.08310690522193909, 0.010354689322412014, 0.016314949840307236, 0.02123132348060608, 0.017476694658398628, 0.042496319860219955, -0.06556286662817001, -0.01865527778863907, -0.0808844342827797, 0.03939833119511604, -0.0290941521525383, -0.017830269411206245, -0.033993687480688095, -0.0237063467502594, -0.03439777344465256, -0.020389478653669357, -0.007210399489849806, -0.009554937481880188, -0.02714107185602188, -0.01357053592801094, 0.00824165903031826, -0.0006082328036427498, 0.0035147015005350113, 0.041317738592624664, 0.008426865562796593, -0.010952399112284184, -0.041317738592624664, 0.08364568650722504, 0.017964964732527733, -0.04556063562631607, 0.02336960844695568, 0.010085299611091614, 0.026905355975031853, 0.028420675545930862, 0.008229032158851624, 0.007845992222428322, 0.10001114755868912, -0.015422594733536243, 0.010767193511128426, 0.03188907727599144, 0.0049668834544718266, 0.03458297997713089, 0.003992448560893536, 0.01065775379538536, -0.017375674098730087, -0.005366759840399027, -0.01459758635610342, 0.0646536722779274, -0.020221108570694923, 0.05098211392760277, 0.0137389050796628, 0.013966203667223454, 0.042934078723192215, 0.030761005356907845, -0.03199009597301483, -0.013124358840286732, 0.009066667407751083, -0.02629922702908516, -0.0948253870010376, -0.01249297522008419, -0.0004972144961357117, 0.0018583721248432994, -0.0056529869325459, -0.014277685433626175, 0.04549328610301018, 0.0030011762864887714, 0.029498238116502762, -0.04448307305574417, -0.08862940967082977, 0.03535747528076172, -0.005993933882564306, 0.026097185909748077, 0.0031926960218697786, -0.0068947081454098225, 0.037007492035627365, -0.037108514457941055, 0.01907620020210743, -0.03919629007577896, 0.019093036651611328, -0.0006524296477437019, 0.002336119068786502, -0.018116498365998268, 0.03545849770307541, -0.020507335662841797, 0.07489050179719925, -0.01574249565601349, -0.011971031315624714, 0.02660229243338108, -0.008435283787548542, -0.015532034449279308, -0.0043312907218933105, 0.002281398978084326, 0.019446611404418945, -0.031838566064834595, 0.05670665577054024, 0.025238502770662308, -0.02456502802670002, -0.00422606011852622, 0.006941009312868118, -0.015380502678453922, 0.03262989968061447, -0.012139400467276573, 0.038960572332143784, -0.05054435506463051, -0.03859015926718712, -0.06448530405759811, 0.025019623339176178, 0.04535859078168869, -0.014479728415608406, 0.0014826989499852061, 0.048759642988443375, 0.019749676808714867, 0.019480286166071892, 0.018554257228970528, -0.02338644489645958, 0.019648654386401176, -0.010969236493110657, 0.04761473461985588, -0.019867533817887306, -0.05916484445333481, -0.04838923364877701, 0.06690981239080429, -0.02293184958398342, 0.019530797377228737, -0.08849471062421799, 0.04316979646682739, 0.07617010921239853, -0.008797276765108109, -0.042058560997247696, 0.025996163487434387, -0.032899290323257446, 0.07576601952314377, 0.055561747401952744, -0.005644568707793951, 0.05727911368012428, -0.023723183199763298, -0.026433922350406647, 0.011070257984101772, 0.001379573019221425, 0.028201796114444733, -0.007172516547143459, -0.013014919124543667, 0.04549328610301018, -0.0420248880982399, -0.04263101518154144, -0.022679295390844345, 0.01713995821774006, -0.02187112532556057, -0.023032870143651962, -0.04899536073207855, -0.027982916682958603, 0.007955431938171387, -0.02284766547381878, -0.03262989968061447, 0.009950604289770126, -0.02757883258163929, 0.032478366047143936, -0.010152647271752357, -0.03576156124472618, 0.04657084867358208, 0.08048035204410553, -0.05788524076342583, 0.028201796114444733, -0.009496008045971394, -0.06829044222831726, 0.028370166197419167, -0.03286561742424965, -0.026433922350406647, -0.04481980949640274, -0.11132553964853287, 0.03202377259731293, -0.008165893144905567, -0.05828932672739029, -0.017375674098730087, -0.0061791399493813515, 0.002723367651924491, -0.036468710750341415, 0.060814861208200455, -0.04084630310535431, 0.02239306829869747, -0.008048035204410553, 0.007113587576895952, -0.004423893988132477, 0.02875741384923458, 0.014151409268379211, 0.003350541926920414, 0.01652541197836399, -0.026114022359251976, 0.012863386422395706, 0.0027844011783599854, 0.039162613451480865, -0.07509254664182663, 0.030087528750300407, 0.016651688143610954, -0.005379387643188238, -0.011516435071825981, 0.030306408181786537, 0.007235655095428228, -0.024531353265047073, -0.008056453429162502, -0.034094709903001785, -0.06849247962236404, 0.041856516152620316, 0.024800743907690048, 0.017089447006583214, -0.023571651428937912, -0.036468710750341415, -0.04340551048517227, 0.050578027963638306, -0.04330449178814888, 0.005669823847711086, 0.004474404267966747, 0.022376231849193573, 0.09085188060998917, 0.002325595822185278, -0.025373198091983795, 0.008115382865071297, 0.02134918048977852, -0.026972703635692596, 0.05428214371204376, -0.0030874654185026884, -0.012619251385331154, 0.04791779816150665, -0.015691984444856644, -0.014698607847094536, 0.06502408534288406, -0.007189353462308645, 0.02608034759759903, 0.07596806436777115, 0.04481980949640274, -0.03478502109646797, 0.011053420603275299, -0.009117177687585354, -0.02801659144461155, 0.04219325631856918, -0.008645744994282722, 0.026787497103214264, 0.030222224071621895, 0.008128010667860508, 0.04855760186910629, 0.0463351309299469, 0.0008576292893849313, 0.01352002564817667 ]
24,454
codecs
__getattr__
Inherit all other methods from the underlying stream.
def __getattr__(self, name, getattr=getattr): """ Inherit all other methods from the underlying stream. """ return getattr(self.stream, name)
(self, name, getattr=<built-in function getattr>)
[ 0.011793593876063824, -0.0793951153755188, -0.020586401224136353, 0.0069697038270533085, -0.03052755445241928, -0.03284101188182831, 0.030577847734093666, 0.034735362976789474, 0.039194632321596146, 0.012841355055570602, -0.013981318101286888, 0.013604124076664448, 0.0005935564404353499, 0.06420677155256271, -0.023939235135912895, 0.0745670273900032, 0.00518431980162859, 0.04801258444786072, -0.011693009175360203, 0.008415613323450089, -0.019144682213664055, 0.015448182821273804, -0.03781997039914131, -0.04167572781443596, -0.000839256274048239, 0.14457421004772186, -0.012690477073192596, -0.020368468016386032, 0.03745115548372269, -0.04861609637737274, -0.03317629545927048, -0.038322895765304565, 0.008214443922042847, -0.00021596965962089598, 0.016982104629278183, 0.024391869083046913, -0.062329187989234924, 0.04435799643397331, -0.07282355427742004, 0.04060282185673714, 0.025800058618187904, -0.0003536192234605551, 0.0024957659188658, -0.049689002335071564, 0.013277223333716393, 0.013402954675257206, -0.010058502666652203, 0.05867459625005722, 0.039865199476480484, -0.013386189937591553, 0.008809572085738182, 0.049554888159036636, 0.01994936354458332, 0.005167555529624224, -0.005016678012907505, 0.02757706120610237, 0.011064352467656136, 0.05391357094049454, -0.03466830402612686, 0.06410618871450424, -0.03280748054385185, -0.00811804924160242, 0.027124427258968353, -0.02181018516421318, -0.01917821168899536, -0.049554888159036636, -0.012581510469317436, -0.01877587102353573, -0.024844501167535782, 0.043117448687553406, 0.008323410525918007, 0.010821271687746048, -0.022380167618393898, 0.0144004225730896, 0.0011169128119945526, 0.01352868601679802, -0.05190187320113182, 0.01402322854846716, 0.024274518713355064, -0.02695678547024727, 0.033092472702264786, 0.009052651934325695, -0.04462622106075287, -0.015003932639956474, -0.06065277010202408, -0.06279858201742172, 0.03421567380428314, -0.07711518555879593, -0.06356973201036453, 0.02258133701980114, -0.06246329843997955, 0.07336001098155975, 0.0013495157472789288, 0.017535323277115822, 0.0008591637597419322, -0.06645317375659943, -0.03000786527991295, 0.01974819228053093, 0.023168083280324936, -0.025431247428059578, -0.038892876356840134, 0.06749255210161209, -0.013746620155870914, -0.045967355370521545, -0.010251290164887905, -0.015020696446299553, 0.025364190340042114, -0.03379656746983528, 0.003470183350145817, 0.03357863426208496, 0.03755174204707146, 0.008675457909703255, -0.03644530847668648, 0.04757671803236008, 0.0009288398432545364, -0.007820485159754753, 0.027778230607509613, -0.001560115604661405, -0.0351041741669178, -0.008222825825214386, -0.02072051540017128, 0.034198906272649765, -0.00811804924160242, -0.017719728872179985, -0.00015009171329438686, 0.03020903468132019, 0.013478392735123634, -0.022950150072574615, 0.08221149444580078, -0.018055012449622154, -0.02147490344941616, -0.01800471916794777, 0.00023666293418500572, 0.05139894783496857, 0.0132520766928792, 0.04489444941282272, 0.04787847027182579, 0.03466830402612686, -0.025448011234402657, 0.029085835441946983, 0.010603337548673153, -0.03133223578333855, 0.05408121272921562, -0.02095521241426468, -0.05149953067302704, 0.01830647513270378, 0.04355331510305405, -0.013612506911158562, -0.0028415268752723932, -0.0222628191113472, 0.0012353098718449473, 0.0289181936532259, -0.028599675744771957, 0.05176775902509689, 0.04526326060295105, 0.03684764727950096, -0.03490300476551056, 0.013545449823141098, -0.06051865592598915, -0.022631630301475525, -0.013402954675257206, 0.00419732928276062, -0.02695678547024727, -0.08013273775577545, 0.03446713462471962, -0.00018034579989034683, 0.025263605639338493, -0.052840664982795715, 0.049789585173130035, 0.03275718912482262, -0.054483555257320404, 0.027845287695527077, 0.0007585787097923458, 0.020435523241758347, 0.08147387206554413, 0.041943956166505814, -0.028499089181423187, 0.07027540355920792, 0.003564481856301427, -0.01702401600778103, 0.005322623997926712, -0.045430902391672134, -0.07590816169977188, 0.00042250947444699705, 0.03862464800477028, 0.06685551255941391, 0.03329364210367203, -0.02289985679090023, -0.03476889058947563, -0.012070203199982643, 0.024827737361192703, -0.0033863624557852745, 0.01953025907278061, -0.0046143378131091595, 0.006546408403664827, -0.01702401600778103, -0.057434048503637314, 0.05287419259548187, 0.024458924308419228, 0.06420677155256271, -0.01896027661859989, 0.07208593189716339, -0.01637859456241131, 0.03054431825876236, -0.03520475700497627, 0.03148311376571655, 0.06645317375659943, 0.022849565371870995, -0.07449997216463089, -0.003346547484397888, -0.012288137339055538, 0.000065223102865275, 0.06139039248228073, -0.008641930297017097, 0.02945464849472046, 0.007108008489012718, 0.02367100864648819, -0.02878408133983612, 0.007275650277733803, 0.0460008829832077, 0.09327584505081177, 0.03399773687124252, -0.020787572488188744, 0.015582296997308731, 0.010611720383167267, 0.0007019996410235763, 0.02749324031174183, -0.07570699602365494, -0.061558034271001816, -0.04184336960315704, 0.05113071948289871, 0.0462355837225914, 0.004157514311373234, 0.04898490756750107, -0.022061647847294807, 0.052069514989852905, -0.012958703562617302, 0.049554888159036636, -0.06286563724279404, -0.010259672068059444, 0.01822265423834324, 0.00763607956469059, 0.0054315910674631596, 0.0336289256811142, -0.023386018350720406, -0.04372095689177513, 0.02521331235766411, 0.03959697112441063, -0.0073343245312571526, 0.009245440363883972, 0.07222004979848862, -0.03317629545927048, -0.054148271679878235, -0.03567415475845337, -0.012237844988703728, -0.05039309710264206, -0.08301617205142975, -0.019798485562205315, -0.003503711661323905, -0.03567415475845337, -0.023704538121819496, 0.01679769903421402, -0.025163020938634872, 0.0198487788438797, 0.03621060773730278, 0.04425740987062454, -0.00849943421781063, -0.038121722638607025, 0.004270672332495451, 0.0068816919811069965, 0.024391869083046913, -0.05297477915883064, -0.02781175822019577, 0.02400629222393036, -0.026587974280118942, -0.018071776255965233, 0.0019750287756323814, -0.009044270031154156, 0.04442505165934563, -0.022296346724033356, 0.039429329335689545, 0.03698176145553589, -0.012422250583767891, -0.010217761620879173, 0.003357025096192956, -0.021072562783956528, 0.008369511924684048, 0.015087753534317017, -0.01885969191789627, -0.05505353584885597, 0.08013273775577545, -0.001079193432815373, -0.012179169803857803, 0.010620102286338806, 0.06551437824964523, -0.002286213682964444, -0.05069485306739807, -0.00917000137269497, 0.024173934012651443, -0.0353388711810112, -0.04784494265913963, -0.04807963967323303, -0.013335897587239742, 0.041943956166505814, -0.02400629222393036, -0.0209384486079216, 0.018624993041157722, 0.024593038484454155, -0.0394628569483757, -0.0031097535975277424, 0.039328742772340775, 0.03490300476551056, -0.034534189850091934, -0.032220736145973206, 0.02466009557247162, 0.03785349801182747, -0.0029421120416373014, 0.09736630320549011, 0.012849736958742142, 0.09133119881153107, -0.06380443274974823, -0.0007811055984348059, -0.007686372380703688, 0.000665327999740839, -0.006789489183574915, -0.005850695539265871, -0.005649525672197342, -0.019144682213664055, -0.02246398851275444, 0.0007140489178709686, -0.05827225744724274, 0.017384445294737816, 0.0121037308126688, -0.007053524721413851, -0.07597522437572479, 0.018155597150325775, -0.035942383110523224, 0.013855586759746075, 0.0019498826004564762, 0.016068456694483757, 0.00030254089506343007, 0.0015276350313797593, 0.02747647650539875, -0.009698072448372841, -0.008591637015342712, 0.022816035896539688, -0.0036210608668625355, 0.046537335962057114, 0.07336001098155975, -0.05532176420092583, 0.03895993158221245, -0.07208593189716339, -0.025816822424530983, 0.039429329335689545, 0.02856614626944065, -0.015892433002591133, 0.008327601477503777, -0.0057417284697294235, -0.01367956306785345, -0.032237499952316284, 0.012447396293282509, 0.023805122822523117, -0.051432475447654724, 0.005569895729422569, 0.014148959890007973, 0.0018356767250224948, -0.013880733400583267, 0.02517978474497795, 0.00681463535875082, -0.006089584901928902, -0.04784494265913963, -0.034534189850091934, -0.0549529530107975, -0.01003335602581501, -0.03785349801182747, -0.01648756116628647, 0.006538026500493288, 0.010435695759952068, 0.012095348909497261, 0.05156658962368965, 0.033092472702264786, 0.011307433247566223, -0.03260631114244461, 0.02551506832242012, 0.01602654717862606, 0.0008188249776139855, -0.022162234410643578, 0.014911729842424393, 0.035942383110523224, 0.05609291419386864, 0.004167991690337658, -0.005750110372900963, -0.07838926464319229, -0.028750551864504814, -0.0323045551776886, -0.0177867840975523, -0.01897704042494297, -0.022832799702882767, 0.01896027661859989, -0.03862464800477028, 0.03367921710014343, 0.03818878158926964, -0.006324283313006163, 0.05810461565852165, 0.016319919377565384, 0.04097163304686546, 0.08348556607961655, 0.005217847879976034, 0.026353275403380394, -0.05833931267261505, -0.0065757459960877895, -0.012656948529183865, -0.04013342410326004, -0.0421115979552269, 0.06427382677793503, -0.013151491992175579, 0.07704813033342361, -0.010485989041626453, 0.024157170206308365, 0.017635907977819443, -0.007242121733725071, 0.01756885088980198, -0.0036671622656285763, -0.02714119292795658, 0.007870778441429138, -0.01963084377348423, -0.02626945450901985, 0.0006553743151016533, 0.0024203271605074406, 0.03872523456811905, -0.0035581951960921288, 0.008180915378034115, -0.044123295694589615, 0.004647866357117891, 0.04851550981402397, -0.02714119292795658, -0.045967355370521545, -0.02365424484014511, -0.023721301928162575, 0.03470183163881302, 0.0031579507049173117, 0.019832013174891472, -0.01112302765250206, -0.03500358760356903, -0.014039993286132812, -0.03210338577628136, 0.001980267697945237, 0.08315028995275497, 0.03721645846962929, -0.0672578513622284, 0.011156555265188217, -0.020670222118496895, 0.0355735681951046, 0.011885796673595905, -0.021240204572677612, -0.04828081279993057, 0.0697389468550682, -0.019345853477716446, 0.0314495824277401, -0.02256457321345806, -0.009572341106832027, -0.005083734635263681, -0.05900987982749939, -0.05113071948289871, -0.04496150463819504, 0.035741209983825684, 0.0099830636754632, -0.019781721755862236, -0.03989872708916664, 0.0025062435306608677, 0.08449141681194305, 0.0037614607717841864, -0.034735362976789474, -0.056227028369903564, -0.007573213893920183, -0.005310051143169403, -7.776348525112553e-7, -0.003189383540302515, -0.02016729675233364, -0.026101814582943916, -0.04546443000435829, -0.07530465722084045, -0.01477761659771204, -0.01401484664529562, -0.006797871086746454, -0.012422250583767891, 0.023855414241552353, 0.025364190340042114, 0.07195182144641876, -0.042044539004564285, 0.04157514497637749, 0.11198466271162033, 0.0020913302432745695, -0.023101026192307472, 0.015850523486733437, 0.02496184967458248, 0.007053524721413851, 0.007996509782969952, 0.008926920592784882, -0.04408976808190346, -0.04579971358180046, -0.0822785496711731, -0.002579586813226342, 0.0049831499345600605, -0.010670394636690617, 0.04321803152561188, -0.029370827600359917, -0.0009089323575608432, 0.040535762906074524, 0.007573213893920183, 0.029538469389081, 0.02139108255505562, -0.08073624223470688, -0.0007402428891509771, 0.009304114617407322, -0.05461766943335533, -0.01679769903421402, 0.04321803152561188, -0.031164593994617462, -0.019798485562205315, 0.10494370758533478, 0.0013673276407644153, -0.033209823071956635, -0.009723219089210033, -0.03567415475845337, -0.05800402909517288, -0.03252249211072922, 0.0040296874940395355, -0.02258133701980114, -0.017954425886273384, 0.029924044385552406, -0.03490300476551056, -0.048817265778779984, -0.023386018350720406, 0.04549795761704445, 0.0760422796010971, -0.051533062011003494, 0.005599232856184244, -0.051968928426504135, 0.03383009508252144, 0.03513770177960396, -0.019127918407320976, -0.033545106649398804, 0.004928666166961193, -0.02343630976974964, -0.057333461940288544, -0.038859348744153976, -0.033310405910015106, 0.09998151659965515, -0.05139894783496857, -0.030125213786959648, 0.007040951866656542, -0.030946658924221992, -0.0025963508524000645, 0.01287488266825676, -0.042480409145355225, -0.019044097512960434, -0.042379822582006454, -0.008419804275035858, 0.026101814582943916, -0.013880733400583267, 0.048917848616838455, 0.01036863960325718, 0.019496729597449303, 0.008285691030323505, 0.02626945450901985, 0.05528823286294937, 0.03852406516671181, -0.02113961987197399, -0.08382084965705872, -0.0019320707069709897, 0.04579971358180046, -0.00016305774624925107, 0.021743129938840866, 0.04938724637031555, 0.08677134662866592, 0.022095177322626114, 0.025816822424530983, 0.00398149061948061, -0.03443360701203346, -0.0024119450245052576, -0.020770806819200516, -0.03755174204707146, -0.09153237193822861, -0.039529915899038315, -0.07195182144641876, -0.004325156100094318, -0.0029421120416373014, 0.04144103080034256, 0.0024559509474784136, -0.045095618814229965, -0.06987306475639343, -0.03805466741323471, -0.027510004118084908, 0.017535323277115822, 0.006173405796289444, 0.003625251818448305, 0.0019320707069709897, -0.04375448450446129, 0.006672139745205641, -0.03523828834295273, 0.038658175617456436, 0.02006671205163002, -0.003903956152498722, -0.00029468268621712923, 0.031030479818582535, -0.06279858201742172, 0.02442539669573307, -0.002799616428092122, 0.05877518281340599, -0.002887628274038434, 0.00006771153130102903, -0.004086266737431288, 0.04764377325773239, 0.030795780941843987, -0.00028289537294767797, -0.01003335602581501, 0.021458137780427933, -0.01129066850990057, -0.004861609544605017, -0.009387935511767864, -0.019714664667844772, -0.04690615087747574, 0.003642016090452671, -0.05243832617998123, 0.024995379149913788, -0.009957917034626007, -0.0024182316847145557, 0.002625688211992383, -0.02289985679090023, -0.0207037515938282, -0.013000614009797573, 0.05049368366599083, -0.021961063146591187, -0.018809398636221886, -0.02149166725575924, 0.023285433650016785, -0.005687244702130556, -0.01820588856935501, 0.03210338577628136, 0.03802113980054855, -0.023268667981028557, 0.01206182036548853, -0.05569057539105415, -0.04305038973689079, 0.0010524755343794823, 0.002634070347994566, -0.00725050363689661, -0.0030154550913721323, -0.011726537719368935, -0.02040199562907219, 0.016294773668050766, 0.00921191181987524, 0.048046112060546875, 0.03263983875513077, -0.07496937364339828, 0.012656948529183865, 0.03139929100871086, 0.09139826148748398, 0.00048275571316480637, -0.024593038484454155, -0.03926168754696846, 0.0333942286670208, 0.031784866005182266, 0.027225013822317123, 0.006894265301525593, -0.06216154620051384, 0.008583255112171173, 0.025883879512548447, -0.029722874984145164, 0.031114300712943077, 0.07959628105163574, 0.01647079735994339, -0.029924044385552406, -0.045866772532463074, -0.0021772466134279966, 0.03176810219883919, -0.06481028348207474, 0.0510636642575264, 0.010678776539862156, -0.05461766943335533, 0.030158743262290955, -0.017468266189098358, -0.0019006378715857863, -0.01909439079463482, 0.009094562381505966, 0.0320698581635952, -0.019815249368548393, 0.008600019849836826, -0.11547160893678665, 0.0323045551776886, -0.03973108530044556, -0.004945430438965559, 0.03792055323719978, -0.01362927071750164, -0.013788530603051186, -0.013277223333716393, -0.09421464055776596, 0.0065883188508450985, -0.024274518713355064, 0.03357863426208496, 0.010955385863780975, 0.026587974280118942, -0.045967355370521545, 0.0029882134404033422, -0.007833058945834637, -0.02517978474497795, 0.005465119611471891, 0.036042965948581696, 0.015741556882858276, -0.005875841714441776, 0.038457006216049194, -0.0034743743017315865, -0.0256491806358099, 0.08643606305122375, -0.012547981925308704, 0.0027765657287091017, 0.044995032250881195, -0.0333942286670208, 0.06625200062990189, -0.02377159334719181, -0.017367681488394737, 0.03956344351172447, 0.02497861348092556, 0.022665157914161682, -0.0014804857783019543, -0.07376234978437424, 0.024995379149913788, -0.0018901602597907186, 0.051432475447654724, 0.037887025624513626, 0.009765129536390305, -0.04328508675098419, 0.02454274520277977, -0.008260545320808887, -0.022966913878917694, -0.000599319115281105, 0.009094562381505966, 0.03388039022684097, 0.0030741298105567694, -0.0740976333618164, -0.028096750378608704, 0.01090509258210659, 0.04885079339146614, 0.012598274275660515, -0.03869170695543289, 0.05217009782791138, 0.0488843210041523, 0.016956958919763565, 0.043352145701646805, 0.02563241682946682, 0.011374489404261112, -0.01150860358029604, 0.03215368092060089, 0.029706111177802086, -0.027878815308213234, -0.040736936032772064, -0.026152106001973152, 0.008101285435259342, -0.00953881349414587, -0.0774504691362381, 0.030628139153122902, 0.025380954146385193, 0.02714119292795658, 0.011910943314433098, 0.037249986082315445, -0.008491052314639091, 0.04033459350466728 ]
24,455
codecs
__init__
Creates a StreamReader instance. stream must be a file-like object open for reading. The StreamReader may use different error handling schemes by providing the errors keyword argument. These parameters are predefined: 'strict' - raise a ValueError (or a subclass) 'ignore' - ignore the character and continue with the next 'replace'- replace with a suitable replacement character 'backslashreplace' - Replace with backslashed escape sequences; The set of allowed parameter values can be extended via register_error.
def __init__(self, stream, errors='strict'): """ Creates a StreamReader instance. stream must be a file-like object open for reading. The StreamReader may use different error handling schemes by providing the errors keyword argument. These parameters are predefined: 'strict' - raise a ValueError (or a subclass) 'ignore' - ignore the character and continue with the next 'replace'- replace with a suitable replacement character 'backslashreplace' - Replace with backslashed escape sequences; The set of allowed parameter values can be extended via register_error. """ self.stream = stream self.errors = errors self.bytebuffer = b"" self._empty_charbuffer = self.charbuffertype() self.charbuffer = self._empty_charbuffer self.linebuffer = None
(self, stream, errors='strict')
[ -0.015320402570068836, -0.061281610280275345, -0.0021253395825624466, 0.012173151597380638, -0.0489194355905056, -0.011445408686995506, -0.006124380510300398, 0.06990110874176025, 0.07455110549926758, -0.028580443933606148, 0.03814506158232689, 0.04597065970301628, -0.026784714311361313, 0.05874868854880333, -0.024686546996235847, 0.05648040026426315, -0.020887162536382675, 0.012040834873914719, -0.06313404440879822, 0.029109710827469826, -0.061016976833343506, 0.025726178660988808, -0.04498773440718651, 0.050280410796403885, -0.0019552179146558046, 0.08740474283695221, -0.027087152004241943, -0.00011444817937444896, -0.013912172988057137, -0.030017025768756866, 0.02600971609354019, -0.04585724696516991, -0.019233200699090958, 0.0063181305304169655, -0.02472435124218464, -0.05164138227701187, -0.021756673231720924, -0.01670973002910614, -0.03886335343122482, 0.009399223141372204, -0.015774060040712357, 0.03425116464495659, -0.018902409821748734, -0.007003342732787132, -0.028599346056580544, -0.00304092513397336, -0.035555433481931686, 0.0015145555371418595, -0.03043287992477417, 0.01956399343907833, 0.00704587297514081, 0.029298733919858932, 0.011124067939817905, -0.020887162536382675, -0.0019847529474645853, 0.006672550458461046, -0.04294627532362938, 0.029620075598359108, -0.059240151196718216, -0.02982800267636776, -0.052624307572841644, -0.012655163183808327, 0.05201943218708038, -0.003912798594683409, -0.021662160754203796, -0.01649235188961029, -0.020055456086993217, -0.07133769243955612, 0.008496632799506187, 0.02701154351234436, 0.00046251833555288613, 0.04358895495533943, -0.0666877031326294, -0.02844812534749508, -0.02043350413441658, 0.04956211894750595, -0.10721446573734283, 0.03691640496253967, -0.029544465243816376, -0.0013680618721991777, 0.0684267207980156, 0.0558377169072628, 0.051716990768909454, 0.013751503080129623, 0.03827738016843796, -0.08150719106197357, 0.022834111005067825, 0.010169495828449726, 0.007674378342926502, 0.0593157596886158, -0.038901157677173615, 0.0018666129326447845, 0.0021371536422520876, -0.007017519325017929, 0.04166090860962868, -0.0022186702117323875, 0.024176182225346565, -0.001164861023426056, 0.0007856314186938107, -0.02143533155322075, -0.020055456086993217, 0.053871866315603256, -0.020074358209967613, -0.045781634747982025, -0.003546564606949687, -0.005231241695582867, 0.025083497166633606, -0.007064775563776493, 0.020887162536382675, -0.03657616302371025, 0.02389264479279518, -0.031623732298612595, -0.011435957625508308, 0.05198162421584129, -0.009262180887162685, -0.03814506158232689, 0.010868885554373264, 0.017938386648893356, 0.010027728043496609, -0.011218580417335033, 0.04449627175927162, 0.007527884561568499, -0.050242602825164795, 0.06177307292819023, 0.08037304133176804, -0.01377040520310402, 0.042190179228782654, 0.00889830943197012, 0.12331932038068771, 0.012626809068024158, -0.015169183723628521, -0.0025541880168020725, 0.04774748533964157, -0.04563041776418686, -0.038938961923122406, 0.02754081040620804, -0.013675893656909466, 0.04385358840227127, -0.06336087733507156, -0.014205160550773144, 0.07371939718723297, -0.03302250802516937, -0.0022257587406784296, -0.07148890942335129, -0.06347429007291794, 0.010207301005721092, 0.0515279695391655, -0.06940964609384537, -0.0018677943153306842, 0.05375845357775688, 0.023136548697948456, -0.01896856725215912, -0.030073734000325203, 0.08808522671461105, 0.028977394104003906, 0.013940527103841305, -0.0012877266854047775, -0.028391418978571892, -0.009115686640143394, 0.0441560298204422, -0.022928623482584953, 0.007712183054536581, -0.023741425946354866, -0.010585349053144455, 0.008463554084300995, 0.004442066419869661, -0.024554230272769928, -0.07148890942335129, 0.015641743317246437, -0.04634870961308479, 0.015188085846602917, 0.04268164187669754, -0.002443136414512992, 0.05523284152150154, 0.06400355696678162, 0.03604689612984657, 0.02285301312804222, 0.05538405850529671, -0.030773121863603592, 0.01117132417857647, 0.012418882921338081, 0.005741606932133436, -0.02342008613049984, -0.013231686316430569, 0.030584098771214485, 0.02449752204120159, 0.016813693568110466, 0.012381077744066715, 0.016738083213567734, -0.028845077380537987, 0.006672550458461046, -0.008435199968516827, 0.021227406337857246, -0.005717978812754154, -0.017513081431388855, -0.010604252107441425, 0.019469480961561203, -0.01986643299460411, 0.0015759883681312203, 0.03935481607913971, -0.07795353978872299, 0.10199739784002304, 0.007291604299098253, -0.036821894347667694, -0.024176182225346565, 0.03931701183319092, -0.019450578838586807, 0.013590832240879536, -0.06812428683042526, 0.06169746443629265, -0.03502616286277771, -0.04018652066588402, 0.027937760576605797, 0.02462983876466751, 0.05508162081241608, -0.03347616642713547, 0.0021855910308659077, -0.0004828974779229611, -0.005439168307930231, 0.015103025361895561, 0.11590957641601562, 0.00302438554354012, -0.06441941112279892, -0.015603939071297646, -0.01662466861307621, 0.027370689436793327, -0.01270241942256689, -0.035555433481931686, -0.013742052018642426, 0.03912798687815666, 0.011095714755356312, 0.004872096236795187, -0.010538092814385891, 0.07474012672901154, 0.04510114714503288, -0.007707457523792982, -0.0002984513121191412, -0.01904417760670185, -0.05810600519180298, -0.027862152084708214, -0.020924966782331467, -0.040413349866867065, 0.011606079526245594, 0.0010360883316025138, -0.006691453047096729, -0.020206674933433533, 0.0041608926840126514, 0.06634745746850967, -0.04271944612264633, -0.007887030020356178, 0.047520656138658524, 0.01623716950416565, -0.024100571870803833, -0.021586552262306213, -0.0006816681125201285, -0.03336275368928909, 0.0094181252643466, -0.04839016869664192, 0.024138376116752625, 0.012607906945049763, -0.02077374793589115, 0.0005889281746931374, 0.011511567048728466, 0.005680174101144075, 0.0432865172624588, -0.019299359992146492, -0.044874321669340134, -0.016123754903674126, 0.0562913753092289, 0.025726178660988808, 0.12301687896251678, 0.03839079290628433, -0.045479197055101395, 0.03746457397937775, -0.05149016156792641, -0.033438362181186676, -0.002556550782173872, 0.005245418753474951, 0.07715963572263718, -0.04434505105018616, -0.0019351341761648655, 0.0342133603990078, 0.011313091963529587, 0.01530150044709444, 0.04317310452461243, -0.026312153786420822, -0.03604689612984657, -0.029242027550935745, -0.014677721075713634, -0.010471934452652931, 0.0024289595894515514, -0.010169495828449726, -0.02778654173016548, -0.00024336851492989808, 0.05784137174487114, 0.003546564606949687, -0.044004809111356735, -0.04116944596171379, -0.004564932081848383, -0.08415352553129196, -0.006029868498444557, -0.024535328149795532, 0.03478043153882027, 0.0705816000699997, -0.04687797650694847, -0.05345601215958595, -0.032701168209314346, -0.010736568830907345, -0.022021306678652763, 0.01015059370547533, 0.03589567542076111, 0.018930763006210327, -0.01342071034014225, -0.041925545781850815, -0.00887468084692955, 0.011511567048728466, 0.006970263551920652, 0.06094136834144592, -0.003000757424160838, 0.041320666670799255, -0.023665817454457283, -0.051149919629096985, 0.04143408313393593, -0.026028618216514587, -0.03912798687815666, 0.005434442777186632, 0.04808773100376129, -0.0248944740742445, -0.013912172988057137, 0.029374344274401665, -0.01969631016254425, 0.0015842581633478403, -0.02566947229206562, 0.008014621213078499, -0.011974676512181759, -0.025896301493048668, -0.023325573652982712, -0.019185945391654968, 0.0139594292268157, -0.044307246804237366, 0.07969255745410919, -0.012948150746524334, 0.04203895851969719, -0.003392982529476285, -0.03272007033228874, -0.038069453090429306, -0.03134019300341606, -0.02060362696647644, 0.01056644693017006, 0.031283486634492874, 0.0279188584536314, -0.03530970215797424, -0.009470107033848763, -0.04797431454062462, -0.004408986773341894, -0.023571304976940155, -0.04419383406639099, 0.00547697301954031, 0.04540358856320381, -0.038976769894361496, -0.006715081166476011, 0.05557308346033096, -0.02922312542796135, -0.006951360963284969, -0.025518253445625305, -0.016256071627140045, 0.010443581268191338, 0.00874708965420723, 0.004522401373833418, 0.07674378156661987, -0.010103337466716766, 0.004801211878657341, -0.059202346950769424, -0.03082983009517193, -0.033608485013246536, -0.00563764339312911, -0.003182693151757121, -0.012485041283071041, -0.025745080783963203, 0.01628442481160164, 0.009441753849387169, 0.04918406903743744, -0.03599018603563309, -0.016898753121495247, -0.04982675239443779, -0.052662111818790436, -0.06544014066457748, 0.04513895511627197, 0.04895723983645439, 0.03224750980734825, -0.04098042473196983, 0.007017519325017929, 0.07307671755552292, -0.048503581434488297, -0.02368471957743168, 0.020490212365984917, 0.024251790717244148, 0.034534700214862823, 0.015509426593780518, -0.003437875770032406, -0.05164138227701187, 0.04453407600522041, -0.019374970346689224, 0.053002357482910156, 0.03402433544397354, 0.02311764657497406, 0.056253571063280106, 0.03718103840947151, 0.01177620142698288, -0.002053274307399988, 0.0428706631064415, -0.050507236272096634, 0.02536703273653984, -0.03901457414031029, -0.04362675920128822, -0.039279207587242126, -0.06997671723365784, -0.05133894458413124, -0.009989923797547817, 0.012475590221583843, -0.01800454407930374, 0.04956211894750595, -0.04619748890399933, 0.0012227495899423957, -0.011369799263775349, -0.02073594368994236, 0.00372850033454597, -0.027559712529182434, 0.02979019656777382, 0.00008291955600725487, -0.00372850033454597, -0.01484784297645092, -0.009734740480780602, -0.013997234404087067, -0.036519456654787064, -0.03052739053964615, -0.043399933725595474, 0.02999812364578247, 0.008936113677918911, 0.03912798687815666, 0.06260477751493454, 0.00854861456900835, 0.06646087020635605, 0.021397527307271957, -0.018325885757803917, -0.006455172784626484, 0.034704823046922684, 0.04094262048602104, -0.010471934452652931, 0.010878336615860462, -0.016123754903674126, -0.02814568765461445, -0.03746457397937775, -0.015424366109073162, -0.026028618216514587, -0.042190179228782654, 0.03451579809188843, 0.002936961827799678, -0.02563166804611683, 0.017153937369585037, -0.01979082264006138, 0.045176759362220764, 0.0008754178415983915, -0.04237920045852661, -0.061924293637275696, 0.011511567048728466, 0.047331634908914566, 0.04559260979294777, -0.0011187864001840353, 0.0003626899851951748, 0.011521018110215664, 0.024232888594269753, -0.02761642076075077, 0.01935606636106968, 0.004323926288634539, 0.004444429185241461, 0.02211581915616989, -0.015944182872772217, 0.01770210638642311, 0.02519691176712513, -0.053002357482910156, -0.051716990768909454, 0.029468856751918793, -0.027200566604733467, -0.009819801896810532, -0.019063079729676247, 0.0688047707080841, -0.05648040026426315, 0.05073406547307968, 0.058937713503837585, 0.05719869211316109, 0.0722828134894371, -0.07111086696386337, -0.0007998081855475903, 0.009309436194598675, 0.01783442310988903, -0.05156577378511429, 0.029166417196393013, 0.022531671449542046, -0.03304141014814377, -0.030508488416671753, -0.05190601572394371, -0.037691403180360794, -0.034648116677999496, 0.06256697326898575, 0.01788167841732502, 0.0018429849296808243, -0.008085506036877632, 0.01860942132771015, -0.015811866149306297, -0.003563104197382927, 0.03604689612984657, -0.02315545082092285, -0.006398465484380722, -0.028410321101546288, -0.009323613718152046, -0.023665817454457283, 0.040110912173986435, -0.04298407956957817, 0.011388701386749744, 0.04929748550057411, 0.03844749927520752, -0.013496320694684982, -0.07742426544427872, -0.007745262235403061, -0.04982675239443779, 0.02701154351234436, -0.0458950512111187, 0.02130301482975483, -0.03795603662729263, 0.015036867000162601, -0.06789745390415192, -0.03946823254227638, -0.050318215042352676, 0.0458950512111187, 0.004368819296360016, 0.027068249881267548, 0.007551512680947781, -0.029147515073418617, 0.011823456734418869, -0.002053274307399988, 0.0649486780166626, -0.054476745426654816, -0.025858495384454727, 0.003272479632869363, -0.01123748254030943, 0.00009480739390710369, -0.012759126722812653, 0.008695107884705067, -0.03788042813539505, -0.004293209873139858, -0.07224500924348831, -0.01687985099852085, 0.03718103840947151, -0.015027415938675404, -0.04835236445069313, -0.007646024692803621, 0.032398730516433716, -0.005519503727555275, 0.013174979016184807, 0.033098120242357254, 0.021699966862797737, -0.05417430400848389, -0.018817348405718803, -0.04358895495533943, -0.001391689875163138, 0.013685344718396664, 0.032927997410297394, -0.0011052002664655447, 0.05821942165493965, 0.026387764140963554, 0.06770843267440796, 0.008350139483809471, 0.06748159974813461, 0.029941417276859283, -0.003142525674775243, 0.01670973002910614, 0.08226328343153, 0.030886536464095116, -0.0014862018870189786, 0.02982800267636776, -0.021359723061323166, -0.0753450021147728, -0.03355177491903305, 0.024988984689116478, -0.017995093017816544, -0.01779661886394024, 0.033098120242357254, -0.011606079526245594, 0.006611117627471685, 0.005826667882502079, -0.052926745265722275, 0.007069501094520092, -0.03485604375600815, -0.00515090674161911, 0.0010603070259094238, 0.03402433544397354, -0.0372188426554203, -0.0009031807421706617, 0.026690201833844185, -0.08521205931901932, 0.023835938423871994, -0.032795678824186325, 0.0023226335179060698, 0.04952431097626686, -0.007504256442189217, -0.035612139850854874, 0.06165966019034386, -0.02563166804611683, 0.062453560531139374, -0.0016964912647381425, -0.006086575798690319, 0.016010340303182602, -0.006445721723139286, -0.009753643535077572, 0.004321563523262739, 0.004153804387897253, -0.0056045642122626305, 0.016898753121495247, 0.017645400017499924, 0.062340147793293, 0.02324996329843998, -0.011974676512181759, 0.010764922015368938, -0.05432552471756935, 0.0450255386531353, -0.00822727382183075, -0.00976309459656477, -0.04150969162583351, -0.04634870961308479, 0.0053163026459515095, 0.03457250818610191, 0.02047131024301052, 0.016038693487644196, -0.05338040366768837, 0.05251089483499527, -0.02030118741095066, 0.0018465290777385235, 0.06184868514537811, 0.04525236785411835, 0.03103775717318058, -0.0657803863286972, -0.013071016408503056, -0.013231686316430569, -0.049637727439403534, -0.026690201833844185, 0.01268351636826992, -0.028334712609648705, 0.04615968465805054, 0.00403802702203393, 0.027824345976114273, 0.07345476001501083, 0.03056519664824009, 0.01194632239639759, 0.03317372873425484, -0.01857161708176136, 0.03689750283956528, 0.013685344718396664, 0.0870266929268837, 0.03258775547146797, -0.0007484172820113599, -0.021246308460831642, 0.026160934939980507, 0.017456375062465668, 0.004080557730048895, -0.004470419604331255, -0.01605759747326374, 0.025178009644150734, 0.004345191176980734, -0.004066380672156811, -0.043702371418476105, 0.03684079647064209, -0.03321153298020363, -0.034345678985118866, -0.021359723061323166, -0.011454859748482704, 0.014753330498933792, -0.04116944596171379, 0.025291424244642258, 0.019601797685027122, -0.03272007033228874, 0.05277552828192711, -0.01649235188961029, -0.06525111943483353, -0.04767187684774399, 0.015481073409318924, -0.0393926203250885, 0.020112164318561554, 0.022323746234178543, -0.029147515073418617, 0.03143470734357834, 0.03311702236533165, 0.008662029169499874, 0.009385046549141407, -0.04532797634601593, -0.006795416120439768, -0.0039009847678244114, -0.07126208394765854, -0.011322543025016785, -0.010783824138343334, 0.025707276538014412, -0.022871915251016617, 0.011899067088961601, -0.03392982482910156, -0.002672328148037195, -0.03527189418673515, -0.03411884978413582, -0.013968880288302898, 0.023268865421414375, 0.027597518637776375, 0.030206050723791122, 0.020754845812916756, 0.03825847804546356, -0.027862152084708214, 0.013581381179392338, 0.019374970346689224, -0.006757611408829689, 0.007853951305150986, -0.028504833579063416, -0.00151219277177006, -0.013137174770236015, -0.019280457869172096, 0.01491400133818388, 0.08695108443498611, 0.0006846216274425387, -0.009522088803350925, -0.11636323481798172, 0.018817348405718803, 0.01900637336075306, -0.046046268194913864, 0.04392920061945915, 0.03311702236533165, -0.08664864301681519, -0.03402433544397354, -0.042492616921663284, -0.0549682080745697, -0.03788042813539505, -0.02636886201798916, 0.10487056523561478, 0.04139627516269684, -0.02466764487326145, -0.022626183927059174, -0.06400355696678162, -0.030773121863603592, 0.024610936641693115, 0.006237795110791922, 0.06181087717413902, 0.020490212365984917, -0.039506036788225174, 0.023628011345863342, 0.008198919706046581, -0.031245682388544083, -0.028372516855597496, 0.09799008816480637, 0.0428706631064415, -0.04627309739589691, -0.04090481251478195, 0.029544465243816376, 0.015991438180208206, 0.019374970346689224, -0.06661208719015121, -0.012333822436630726, 0.02307984232902527, 0.038901157677173615, 0.007494805380702019, 0.043362125754356384, -0.022021306678652763, 0.027824345976114273 ]
24,457
codecs
__next__
Return the next decoded line from the input stream.
def __next__(self): """ Return the next decoded line from the input stream.""" line = self.readline() if line: return line raise StopIteration
(self)
[ -0.00795070268213749, -0.03210283815860748, -0.06067595258355141, 0.038121018558740616, -0.046098195016384125, -0.014957204461097717, 0.022360799834132195, 0.06166427582502365, 0.09749097377061844, -0.027778927236795425, 0.006049064453691244, 0.019201697781682014, 0.003377504413947463, 0.10179723799228668, -0.014074773527681828, 0.06222902983427048, -0.026067011058330536, 0.04034474492073059, -0.09127865731716156, 0.02790246717631817, -0.056863851845264435, 0.049522027373313904, 0.019854696467518806, 0.02218431420624256, -0.020966559648513794, 0.0878901258111, 0.036603234708309174, -0.031414542347192764, -0.012556992471218109, -0.015168988145887852, -0.012089304625988007, -0.01997823640704155, -0.039074044674634933, 0.009477308951318264, 0.0013379859738051891, 0.030073247849941254, -0.0600053071975708, 0.003472365904599428, -0.04055652767419815, 0.024672769010066986, -0.012442276813089848, 0.030143842101097107, 0.04200371354818344, 0.004187135025858879, -0.0615936815738678, -0.01127746794372797, -0.04232138767838478, -0.0148689616471529, 0.013192342594265938, -0.032967619597911835, 0.03621496632695198, 0.013907112181186676, 0.01555725745856762, -0.011692210100591183, 0.02308439463376999, -0.01462188083678484, -0.0021751923486590385, -0.012733479030430317, -0.049204349517822266, 0.06222902983427048, -0.056757960468530655, -0.050757430493831635, -0.01705739088356495, 0.0040900674648582935, 0.027355359867215157, -0.058805201202631, 0.013324707746505737, -0.05029856413602829, -0.019625265151262283, 0.012001060880720615, -0.003351031569764018, 0.05213402211666107, -0.07793629914522171, -0.0010550565784797072, 0.006124070845544338, -0.025043390691280365, -0.05125159025192261, 0.016439689323306084, 0.0394270159304142, -0.020490046590566635, 0.03734447807073593, 0.06145249307155609, 0.017013268545269966, -0.015063096769154072, -0.051075104624032974, -0.0493808351457119, 0.09346708655357361, -0.009989118203520775, -0.07204166054725647, 0.07038269191980362, -0.01902521215379238, 0.04698062315583229, -0.03192635253071785, 0.05135748162865639, 0.018195725977420807, -0.021937234327197075, 0.0058416929095983505, 0.02518457919359207, 0.008083067834377289, -0.04126247018575668, 0.01119804847985506, 0.10624469071626663, -0.017198579385876656, -0.019995884969830513, -0.022643178701400757, 0.007055035792291164, -0.014736597426235676, 0.021619558334350586, 0.009539078921079636, -0.004098891746252775, -0.00713886646553874, -0.04479219391942024, -0.07228874415159225, 0.07977175712585449, -0.0075403726659715176, -0.028573114424943924, 0.01269818190485239, 0.008056594990193844, 0.012036358006298542, 0.02174309827387333, 0.0026892083697021008, 0.0017803044756874442, -0.06639410555362701, 0.029932057484984398, 0.020172372460365295, -0.023013800382614136, 0.01679266057908535, -0.02174309827387333, 0.052098724991083145, -0.04055652767419815, -0.0007219388498924673, 0.015619028359651566, 0.021831342950463295, 0.01156867016106844, -0.06579405069351196, 0.03365591540932655, 0.02647292986512184, 0.036285560578107834, -0.05185164511203766, -0.008233080618083477, 0.04108598455786705, 0.01676618866622448, 0.032967619597911835, -0.01607789285480976, -0.07370063662528992, -0.014401273801922798, 0.004668059758841991, -0.026208199560642242, 0.027231819927692413, 0.019254643470048904, -0.0005586891202256083, -0.01555725745856762, -0.001957893604412675, 0.0955849215388298, 0.019113454967737198, 0.004690120462328196, -0.06258200109004974, 0.021672504022717476, -0.03635615482926369, 0.024231554940342903, -0.003017914015799761, -0.025166930630803108, 0.059970010071992874, -0.021390127018094063, 0.010403861291706562, 0.025519903749227524, -0.005524017848074436, -0.04585111141204834, 0.0026428806595504284, 0.0021917379926890135, 0.02357855625450611, 0.01679266057908535, -0.007659500930458307, 0.017286822199821472, -0.015469014644622803, 0.016545580700039864, 0.005082802381366491, 0.10525636374950409, 0.005766686517745256, -0.0036929736379534006, -0.019166400656104088, -0.013968882150948048, -0.07645381987094879, -0.02684354968369007, 0.06258200109004974, 0.0605347640812397, 0.04013295844197273, 0.01245110109448433, 0.04789835214614868, 0.018884021788835526, -0.020666534081101418, -0.013412950560450554, -0.022960852831602097, -0.008537519723176956, -0.016810309141874313, -0.04828662425279617, -0.004425391089171171, 0.04316852241754532, 0.015124866738915443, 0.014745421707630157, -0.05319293960928917, 0.002581110456958413, -0.02334912307560444, 0.02100185677409172, -0.07525371015071869, 0.056440286338329315, -0.023525608703494072, 0.012971735559403896, -0.02313734032213688, 0.06166427582502365, -0.05435774847865105, -0.03418537601828575, 0.032279323786497116, 0.009830281138420105, 0.04927494376897812, -0.042391981929540634, -0.05453423410654068, -0.02855546586215496, 0.014657177962362766, 0.036991506814956665, 0.09516135603189468, 0.01323646493256092, -0.01992529071867466, -0.031626325100660324, 0.018548699095845222, -0.03284408152103424, -0.00490190414711833, -0.024231554940342903, -0.03737977519631386, 0.01594552770256996, 0.01907815784215927, 0.021284235641360283, 0.02592582255601883, 0.04323911666870117, 0.04514516890048981, 0.03310880810022354, -0.007010913919657469, -0.0007009811233729124, -0.0888078510761261, 0.03189105540513992, -0.0477924607694149, 0.024778662249445915, -0.009936172515153885, -0.006905022077262402, -0.040309447795152664, 0.038121018558740616, 0.040203556418418884, 0.046204086393117905, -0.02068418264389038, 0.01422478724271059, 0.033355891704559326, 0.00180126226041466, 0.015036623924970627, 0.0026053774636238813, 0.03847398981451988, -0.07419479638338089, -0.00809189211577177, -0.11118630319833755, 0.04210960492491722, 0.02345501445233822, -0.0034392746165394783, -0.0004103303945157677, -0.005118099506944418, 0.036391451954841614, 0.011824575252830982, 0.008709593676030636, -0.030179139226675034, 0.01907815784215927, 0.0711592361330986, 0.018707536160945892, 0.09742037951946259, -0.02229020558297634, -0.03925053030252457, 0.020931262522935867, -0.010377388447523117, -0.008612526580691338, -0.010827427729964256, 0.011524548754096031, 0.02239609695971012, -0.029384952038526535, 0.01752507872879505, 0.06950026005506516, -0.017251525074243546, -0.017904523760080338, -0.025378715246915817, -0.013810044154524803, -0.006018179003149271, -0.05689914897084236, 0.005276937037706375, -0.03748566657304764, 0.053228236734867096, -0.004257729277014732, -0.013015856966376305, 0.002629644237458706, 0.11810456216335297, -0.01167456153780222, -0.046098195016384125, 0.00465923547744751, 0.00559902423992753, -0.02957908622920513, -0.021195990964770317, -0.06201724708080292, -0.0025016916915774345, 0.023207934573292732, -0.0743359848856926, -0.02013707533478737, 0.000474858155939728, 0.01644851267337799, -0.04225079342722893, -0.03519134595990181, 0.031855758279561996, 0.025255173444747925, -0.00844927690923214, -0.0350501574575901, -0.07080625742673874, -0.016483809798955917, -0.009433186613023281, 0.10370329022407532, 0.014498340897262096, 0.0572168231010437, -0.06706475466489792, -0.023702096194028854, 0.011709858663380146, -0.028467223048210144, -0.035914938896894455, 0.02979086898267269, -0.008515458554029465, -0.013421774841845036, -0.0006954658892937005, 0.03376181051135063, 0.02784952148795128, -0.04158014804124832, -0.06540578603744507, 0.02592582255601883, -0.017357416450977325, -0.006459394469857216, -0.027725981548428535, -0.01197458803653717, 0.040203556418418884, -0.09036093205213547, 0.038756366819143295, -0.0621231384575367, 0.06448805332183838, -0.01122452225536108, 0.03376181051135063, 0.016854431480169296, 0.002156440634280443, -0.007915405556559563, 0.07504192739725113, 0.011851048097014427, -0.002221520058810711, 0.006027003284543753, 0.00878901220858097, -0.0325264036655426, -0.012415803968906403, -0.007505075540393591, -0.01133041363209486, 0.000573028635699302, 0.009486133232712746, 0.006516752764582634, 0.0009965954814106226, 0.006622644606977701, -0.04122717306017876, 0.024302149191498756, -0.06710004806518555, -0.028890790417790413, -0.07645381987094879, 0.03737977519631386, 0.053863584995269775, 0.0511104017496109, -0.07666560262441635, 0.050651539117097855, -0.044862791895866394, -0.03153808414936066, -0.04013295844197273, -0.03857988119125366, 0.053334128111600876, 0.05813455209136009, -0.011886345222592354, 0.05202813073992729, 0.01939583197236061, 0.0038385747466236353, -0.036673832684755325, 0.019678210839629173, -0.02705533429980278, -0.009477308951318264, -0.0371679924428463, -0.023666799068450928, -0.00815807469189167, 0.03780334070324898, -0.04355679079890251, -0.016730891540646553, 0.014313030056655407, -0.03566785901784897, -0.03309116140007973, -0.04225079342722893, 0.008678708225488663, -0.015354298986494541, -0.0355796180665493, -0.017480958253145218, -0.011798102408647537, 0.10250318050384521, -0.02790246717631817, 0.028414277359843254, 0.03475013002753258, 0.014348327182233334, 0.06325265020132065, 0.003148072399199009, 0.01089802198112011, -0.015513136051595211, 0.005691679660230875, -0.03355002403259277, -0.002123349579051137, -0.08951379358768463, -0.006653529591858387, -0.032755836844444275, 0.007280055433511734, -0.011683385819196701, 0.027814224362373352, 0.0416860394179821, -0.005012207664549351, 0.023860933259129524, -0.04108598455786705, 0.0041165403090417385, -0.023719744756817818, -0.02416096068918705, 0.0166602972894907, -0.00980380829423666, 0.01451598946005106, -0.02334912307560444, -0.03240286558866501, -0.06445275992155075, 0.015071921050548553, -0.00901403184980154, -0.002629644237458706, -0.0165279321372509, -0.06575875729322433, -0.017878051847219467, -0.011065684258937836, 0.01063329353928566, 0.06925318390130997, 0.019378183409571648, 0.02063123509287834, -0.00519751850515604, 0.03545607626438141, -0.027178874239325523, 0.005700503941625357, 0.03935642167925835, 0.016033770516514778, -0.009697915986180305, -0.07384182512760162, 0.014498340897262096, -0.01703091710805893, -0.02056064084172249, -0.0011008325964212418, -0.019572319462895393, 0.0358443446457386, 0.017445659264922142, 0.012680533342063427, 0.006384388078004122, -0.005828456487506628, 0.06145249307155609, 0.006406448781490326, -0.06011119857430458, 0.02806130424141884, 0.03289702534675598, -0.04510987177491188, 0.05464012548327446, -0.045498140156269073, 0.016360269859433174, -0.003635615576058626, -0.005382828880101442, -0.029226113110780716, -0.029314355924725533, 0.029720274731516838, 0.016166135668754578, 0.0643821656703949, 0.015221933834254742, 0.005643146112561226, -0.02513163350522518, -0.009697915986180305, -0.08393683284521103, -0.012945262715220451, -0.053863584995269775, -0.0029495256021618843, -0.011409832164645195, 0.019801750779151917, -0.023366771638393402, 0.006860900670289993, 0.049310240894556046, 0.037732746452093124, 0.0582757405936718, -0.015486663207411766, 0.0042533171363174915, 0.053016453981399536, 0.030726246535778046, 0.019572319462895393, 0.023049097508192062, 0.052734073251485825, -0.039885878562927246, -0.03480307757854462, -0.011939290910959244, -0.001654558116570115, -0.05516958236694336, 0.04698062315583229, 0.08838428556919098, -0.023278528824448586, -0.0027443603612482548, -0.0023274116683751345, 0.025166930630803108, 0.026119956746697426, 0.04306263104081154, 0.02758479118347168, -0.017489781603217125, -0.00660058343783021, 0.004476130940020084, 0.028961384668946266, 0.05291055887937546, -0.03702680394053459, 0.03326764702796936, 0.047051217406988144, 0.009044917300343513, 0.0077565680257976055, -0.029561437666416168, -0.03157338127493858, 0.027443602681159973, -0.045286357402801514, -0.045992303639650345, 0.02518457919359207, -0.026102308183908463, 0.03850928694009781, -0.01167456153780222, -0.018954617902636528, -0.03794453293085098, -0.0010671899653971195, -0.010677414946258068, 0.0036775311455130577, 0.02984381467103958, -0.015177812427282333, 0.02292555570602417, 0.014110071584582329, -0.03600318357348442, -0.037415072321891785, -0.00483572157099843, -0.025166930630803108, 0.004202577285468578, -0.03448540344834328, 0.007659500930458307, 0.0013004826614633203, -0.008559579961001873, -0.05908757820725441, -0.03319705277681351, -0.014939555898308754, -0.01934288628399372, 0.032279323786497116, -0.013783571310341358, -0.016033770516514778, 0.03826220706105232, -0.007624203339219093, 0.019642913714051247, 0.02753184549510479, 0.05255758762359619, -0.08831369131803513, -0.04623938351869583, -0.003229697234928608, -0.007994824089109898, 0.004994559101760387, 0.009600848890841007, 0.03882696107029915, 0.03236756846308708, 0.03058505803346634, 0.02094891108572483, -0.009874402545392513, 0.05446363985538483, 0.024602174758911133, 0.021813692525029182, -0.015707271173596382, -0.0066049955785274506, 0.004023885354399681, -0.054887205362319946, 0.011136278510093689, -0.01073918491601944, 0.053863584995269775, -0.031626325100660324, -0.026225848123431206, -0.06515870243310928, -0.040203556418418884, 0.0023229995276778936, -0.0014207138447090983, 0.017207404598593712, 0.010297968983650208, -0.07228874415159225, -0.020472398027777672, -0.01934288628399372, 0.014798367395997047, -0.021407775580883026, 0.052204616367816925, -0.019307589158415794, -0.03272053971886635, 0.02218431420624256, -0.06445275992155075, 0.031149813905358315, -0.010862724855542183, -0.0013026887318119407, 0.04969851300120354, -0.0125128710642457, -0.04129776731133461, 0.021513666957616806, -0.01897226646542549, 0.01476307027041912, -0.011559845879673958, 0.005016619805246592, 0.013615909963846207, -0.027284765616059303, -0.003062035422772169, 0.012477573938667774, 0.024143312126398087, -0.020860668271780014, -0.012530519627034664, 0.011877520941197872, 0.04525106027722359, 0.013104099780321121, -0.014057124964892864, 0.042780254036188126, -0.0383680984377861, 0.0404859334230423, 0.0069667925126850605, -0.04525106027722359, 0.016704417765140533, -0.028573114424943924, -0.009989118203520775, -0.012495222501456738, 0.013157045468688011, -0.019889993593096733, -0.0330558642745018, 0.03240286558866501, 0.012971735559403896, -0.00667117815464735, -0.0166602972894907, 0.00901403184980154, -0.026119956746697426, -0.014339502900838852, -0.04648646339774132, -0.022378448396921158, -0.03272053971886635, 0.002817160915583372, -0.027143577113747597, 0.013360004872083664, 0.07934819161891937, -0.011268643662333488, 0.021548964083194733, 0.06706475466489792, 0.0250257421284914, 0.0460628978908062, 0.038226909935474396, -0.08266613632440567, 0.04923964664340019, 0.01705739088356495, 0.02218431420624256, 0.0022766718175262213, 0.012177547439932823, -0.015274880453944206, 0.03587964177131653, -0.013801219873130322, 0.003203224390745163, -0.005201930645853281, -0.04076831042766571, 0.038015127182006836, -0.00760655477643013, -0.06335854530334473, -0.03670912981033325, 0.011745155788958073, -0.025696389377117157, -0.048569001257419586, 0.015380771830677986, -0.0197135079652071, -0.004165074322372675, -0.0788540318608284, 0.0788540318608284, -0.0026208199560642242, -0.05633439123630524, 0.003909169230610132, -0.027514196932315826, -0.028943736106157303, -0.048992566764354706, 0.023649150505661964, 0.007871284149587154, 0.003640027716755867, -0.0047783637419342995, -0.07186517864465714, 0.052310507744550705, 0.0032054304610937834, -0.0133423563092947, -0.017075039446353912, -0.04369798302650452, 0.017225053161382675, -0.03540312871336937, -0.0615936815738678, 0.012080480344593525, 0.0194487776607275, 0.04038004204630852, -0.013898287899792194, 0.05622849985957146, -0.011074508540332317, 0.008634586818516254, 0.0005647558136843145, -0.05936995521187782, 0.0371679924428463, -0.033232349902391434, 0.032702893018722534, 0.006759420968592167, 0.025361066684126854, -0.046098195016384125, -0.03289702534675598, 0.0465923547744751, -0.013059978373348713, -0.04006236419081688, 0.05227521061897278, -0.0016446306835860014, 0.06085243821144104, -0.01837221346795559, -0.025096336379647255, -0.016377918422222137, 0.07546549290418625, -0.025678740814328194, -0.00062762905145064, -0.0898667722940445, 0.04119187593460083, -0.027125928550958633, 0.05305175110697746, 0.021884288638830185, 0.019625265151262283, -0.04087420180439949, 0.024813959375023842, -0.05206342786550522, -0.012054006569087505, -0.021248938515782356, -0.0012155486037954688, 0.10483279824256897, 0.010995090007781982, -0.03245580941438675, 0.004857782274484634, -0.000796945474576205, 0.0011923848651349545, -0.006931495387107134, -0.02500809356570244, 0.014577759429812431, 0.05432245135307312, -0.009150808677077293, 0.01202753372490406, 0.011551021598279476, -0.029755571857094765, 0.003995206207036972, 0.0677001029253006, -0.018989915028214455, -0.0157955139875412, 0.01358061283826828, 0.014418922364711761, 0.01981939934194088, 0.04789835214614868, -0.06657059490680695, -0.008983147330582142, 0.06688826531171799, 0.048463109880685806, -0.023860933259129524, -0.005259288474917412, -0.020542992278933525, 0.052204616367816925 ]
24,458
codecs
encode
Encodes the object input and returns a tuple (output object, length consumed). errors defines the error handling to apply. It defaults to 'strict' handling. The method may not store state in the Codec instance. Use StreamWriter for codecs which have to keep state in order to make encoding efficient. The encoder must be able to handle zero length input and return an empty object of the output object type in this situation.
def encode(self, input, errors='strict'): """ Encodes the object input and returns a tuple (output object, length consumed). errors defines the error handling to apply. It defaults to 'strict' handling. The method may not store state in the Codec instance. Use StreamWriter for codecs which have to keep state in order to make encoding efficient. The encoder must be able to handle zero length input and return an empty object of the output object type in this situation. """ raise NotImplementedError
(self, input, errors='strict')
[ -0.03831959515810013, -0.022874804213643074, -0.02074211649596691, 0.01676052436232567, 0.02729497291147709, -0.018798617646098137, -0.07161705940961838, 0.018626626580953598, 0.0773959532380104, -0.06253593415021896, 0.03288467973470688, 0.01129980944097042, 0.0048759449273347855, 0.04251617565751076, 0.01984776183962822, 0.058029767125844955, -0.044992849230766296, -0.00992388091981411, 0.005159730091691017, 0.06064403057098389, -0.0279141403734684, 0.026744602248072624, 0.02278880774974823, -0.0040847864001989365, -0.0054392158053815365, 0.07381854206323624, 0.0496022067964077, -0.004910343326628208, -0.06215754896402359, -0.003306527156382799, -0.014430046081542969, 0.024130338802933693, 0.06697329878807068, -0.010938628576695919, -0.0031925830990076065, -0.04203460365533829, -0.041312240064144135, 0.01578877493739128, -0.04898304119706154, -0.0027841045521199703, -0.04103705286979675, -0.001026033889502287, -0.02961685135960579, -0.012864927761256695, 0.038044411689043045, -0.0008895160281099379, -0.039936311542987823, 0.07113548368215561, 0.03594611957669258, -0.0433761328458786, -0.01921139657497406, -0.009416507557034492, 0.025059090927243233, -0.03811320662498474, -0.012228560633957386, 0.023167189210653305, 0.016829319298267365, -0.0035731131210923195, -0.016536936163902283, -0.0008271692786365747, -0.026744602248072624, 0.03197312727570534, 0.08592671155929565, -0.040211498737335205, -0.038835570216178894, 0.02294360101222992, -0.041931409388780594, -0.01658853329718113, 0.005671403370797634, 0.0371500588953495, 0.02339077740907669, -0.05500272288918495, -0.008212571032345295, 0.0255750622600317, 0.006041184067726135, 0.05837374925613403, -0.02820652537047863, 0.024302329868078232, -0.0046566566452383995, 0.012529545463621616, 0.034638989716768265, -0.019245794042944908, -0.03659968823194504, 0.01425805501639843, 0.03171514347195625, -0.03580852970480919, -0.05304202809929848, -0.00592079060152173, -0.05359239876270294, 0.012211361899971962, 0.01262413989752531, 0.031543150544166565, 0.012649938464164734, 0.06109120696783066, -0.05132211744785309, -0.010207666084170341, -0.02958245389163494, -0.04444247484207153, 0.016786321997642517, 0.03085518628358841, -0.036943670362234116, 0.054314762353897095, -0.05937129631638527, -0.005675703287124634, -0.02108609676361084, -0.0038676478434354067, 0.022358831018209457, -0.025626661255955696, 0.019727367907762527, 0.0286709014326334, 0.050771746784448624, -0.019245794042944908, -0.007455810438841581, -0.02246202528476715, 0.02652101404964924, -0.041312240064144135, -0.020518526434898376, 0.018798617646098137, -0.02543747052550316, 0.00627767201513052, -0.023373577743768692, 0.0029926435090601444, 0.015014815144240856, -0.0010674191871657968, 0.0636366754770279, 0.015995163470506668, 0.05644745007157326, -0.021326884627342224, 0.02834411896765232, -0.0449584499001503, 0.0065012602135539055, 0.032643891870975494, 0.025661058723926544, 0.047847896814346313, 0.01255534403026104, 0.005404817406088114, -0.0056800032034516335, -0.016674527898430824, -0.02449152059853077, -0.0014157010009512305, 0.07065390795469284, -0.014679432846605778, 0.0418626107275486, 0.005839094519615173, -0.021481677889823914, -0.03083798848092556, 0.0496022067964077, -0.08234929293394089, -0.00813087448477745, 0.015754375606775284, 0.028086131438612938, -0.03204192593693733, 0.011979173868894577, 0.016700327396392822, -0.011274010874330997, 0.001877926872111857, 0.021774061024188995, -0.049499012529850006, 0.0024164735805243254, 0.01579737477004528, -0.012297357432544231, -0.023476772010326385, -0.02851611003279686, 0.0170271098613739, 0.020587323233485222, 0.018626626580953598, 0.05906171351671219, -0.030941182747483253, 0.0014092513592913747, -0.007864288985729218, 0.03281588479876518, -0.00859095063060522, -0.020260540768504143, 0.03336625546216965, 0.020398134365677834, 0.006152978166937828, -0.013277705758810043, 0.06298311054706573, -0.05830495059490204, 0.022909201681613922, -0.029238471761345863, 0.000956700008828193, -0.05706661567091942, 0.04303215071558952, 0.002756156027317047, -0.014223656617105007, 0.011583594605326653, 0.05981847271323204, 0.05242285877466202, -0.05187248811125755, 0.037906818091869354, -0.019125400111079216, 0.007640700787305832, -0.02450871840119362, -0.016631530597805977, -0.05194128304719925, 0.00313883600756526, 0.0073225172236561775, 0.032024726271629333, 0.13043798506259918, -0.054349157959222794, 0.019314590841531754, 0.01940058544278145, -0.03907635807991028, -0.0011405153200030327, 0.018953409045934677, -0.04148423299193382, -0.023803556337952614, -0.024027144536376, -0.03489697724580765, 0.02621142938733101, -0.021275287494063377, -0.028275322169065475, -0.00992388091981411, 0.029634051024913788, -0.014619235880672932, 0.053386010229587555, -0.050909340381622314, -0.008694145828485489, 0.01583177223801613, 0.014602036215364933, 0.01689811609685421, -0.02387235127389431, -0.0388011708855629, 0.004506164230406284, -0.01955537684261799, 0.008934932760894299, -0.018179450184106827, -0.0013576539931818843, -0.04822627827525139, 0.029324466362595558, 0.03116477094590664, -0.05785777419805527, 0.04599039629101753, -0.04932701960206032, 0.060506436973810196, 0.03376183658838272, -0.05197568237781525, -0.0542803630232811, -0.035567741841077805, 0.008754342794418335, -0.03735644742846489, 0.02277160994708538, 0.02246202528476715, 0.003005542792379856, 0.016777722164988518, 0.004600759595632553, 0.04200020432472229, -0.009347711689770222, 0.0464719720184803, 0.008169572800397873, -0.01308851595968008, -0.05668823793530464, -0.012839129194617271, 0.048914242535829544, -0.027312172576785088, -0.03211072087287903, -0.046093590557575226, 0.0003684370021801442, -0.022100845351815224, -0.02308119274675846, 0.030631598085165024, 0.02929006889462471, 0.05397078022360802, 0.02480110339820385, -0.026005040854215622, -0.030614400282502174, -0.04461446776986122, 0.020724916830658913, 0.05840814486145973, -0.019469382241368294, 0.0542115643620491, -0.03328026086091995, 0.0024487220216542482, -0.024594714865088463, -0.01984776183962822, 0.010697840712964535, 0.02416473627090454, 0.019176997244358063, -0.008848937228322029, -0.0007626726292073727, 0.0025755653623491526, -0.013750680722296238, -0.06934677809476852, 0.033108267933130264, -0.02215244248509407, 0.0046480568125844, -0.015909168869256973, 0.004196580499410629, -0.05630985647439957, -0.005430615972727537, 0.036358900368213654, -0.06834922730922699, 0.0036268604453653097, 0.020363735035061836, -0.006157278083264828, -0.02727777324616909, -0.0527324415743351, 0.05125332251191139, -0.03113037347793579, -0.06480621546506882, -0.0004232591309119016, 0.032471902668476105, 0.032282713800668716, -0.021051699295639992, -0.019606975838541985, -0.03594611957669258, -0.014077464118599892, -0.0837252214550972, 0.03472498431801796, -0.02447432093322277, 0.056653838604688644, -0.022204039618372917, 0.027019787579774857, -0.012675737030804157, -0.00011878128862008452, 0.0696907564997673, 0.022754410281777382, 0.009442306123673916, 0.0822117030620575, -0.014997616410255432, -0.05964648351073265, -0.020982902497053146, -0.05909610912203789, 0.014610636048018932, -0.01558238547295332, 0.04863905906677246, -0.01766347698867321, 0.046884749084711075, -0.08111096173524857, -0.04932701960206032, 0.0008760791970416903, 0.045027244836091995, 0.008969331160187721, -0.058820925652980804, -0.05837374925613403, 0.02151607535779476, -0.0464719720184803, 0.0013673285720869899, -0.000264570553554222, 0.04327293857932091, -0.006333569064736366, -0.010095871984958649, 0.025299876928329468, -0.04867345467209816, -0.03037361241877079, -0.04041788727045059, -0.0542803630232811, -0.021189292892813683, 0.03701246529817581, -0.03783802315592766, 0.019968155771493912, 0.012185563333332539, 0.016339145600795746, 0.013853875920176506, -0.023923948407173157, 0.0052156271412968636, -0.010904230177402496, -0.01263273973017931, -0.02265121601521969, 0.03780362382531166, 0.010319460183382034, 0.024027144536376, -0.008874735794961452, -0.017001310363411903, 0.02125808782875538, 0.037425242364406586, 0.0062604728154838085, 0.006320669781416655, 0.019761767238378525, -0.02125808782875538, -0.0019327489426359534, -0.07884068042039871, -0.02574705332517624, -0.05950888991355896, 0.07884068042039871, -0.010353858582675457, 0.038491588085889816, -0.05039336532354355, -0.027466963976621628, 0.02466350980103016, 0.009812086820602417, -0.05809856206178665, -0.03453579545021057, 0.04310094565153122, 0.016201553866267204, -0.0008604925242252648, 0.04660956189036369, 0.012692936696112156, 0.04372011497616768, -0.0758824348449707, 0.02602224051952362, -0.016373544931411743, -0.0634646788239479, -0.04437367990612984, 0.03704686462879181, 0.02259961888194084, 0.02806893177330494, -0.03229990974068642, -0.004583560395985842, -0.004445967730134726, -0.06253593415021896, 0.03580852970480919, 0.06917478144168854, -0.022977998480200768, -0.0023283283226191998, 0.06724848598241806, 0.034793779253959656, 0.027793746441602707, -0.00976908951997757, -0.0024702209047973156, -0.004673855844885111, -0.019606975838541985, -0.04141543433070183, -0.027982937172055244, -0.07409372925758362, -0.026727402582764626, -0.08695865422487259, -0.032162319868803024, 0.022427627816796303, -0.01888461224734783, 0.05813296139240265, 0.023631565272808075, 0.05630985647439957, -0.022874804213643074, -0.06838362663984299, 0.02215244248509407, 0.007141926791518927, -0.003132386365905404, 0.03608371317386627, 0.036186907440423965, -0.01659713312983513, 0.011179415509104729, -0.05066855251789093, -0.009545501321554184, 0.0178526658564806, -0.016072560101747513, 0.00429977523162961, 0.011961974203586578, 0.09273755550384521, 0.07216742634773254, -0.005232826340943575, 0.014189258217811584, 0.03986751660704613, 0.0402802936732769, -0.008113675750792027, -0.015685580670833588, 0.007047331426292658, -0.024525918066501617, 0.04303215071558952, 0.06312070041894913, -0.015745777636766434, 0.02650381438434124, -0.04323853924870491, -0.021292487159371376, -0.00616587745025754, 0.04636877775192261, -0.00922731775790453, -0.04599039629101753, -0.0386979766190052, 0.01998535543680191, 0.006828043144196272, 0.0496022067964077, 0.03673727810382843, -0.05661943927407265, 0.052457258105278015, -0.04991178959608078, 0.03969552367925644, 0.010964427143335342, -0.009751889854669571, 0.02602224051952362, 0.09397588670253754, -0.026435017585754395, -0.013810877688229084, 0.04791669547557831, -0.001198562327772379, -0.038491588085889816, -0.01905660331249237, -0.019125400111079216, -0.03498297184705734, -0.04660956189036369, -0.027088584378361702, 0.0634646788239479, 0.02014014683663845, 0.014696631580591202, 0.024990294128656387, 0.05923370271921158, -0.0025691157206892967, 0.08805939555168152, 0.03924834728240967, -0.008582351729273796, 0.056000273674726486, -0.03166354447603226, -0.03701246529817581, -0.02511068806052208, 0.02540307119488716, -0.05390198156237602, -0.038835570216178894, -0.07560724765062332, -0.014455844648182392, 0.0009690618608146906, -0.004992038942873478, -0.030562803149223328, -0.0511157289147377, 0.002773354994133115, -0.016674527898430824, -0.02203204855322838, -0.03365863859653473, 0.02306399494409561, 0.005224226973950863, -0.09514542669057846, 0.02574705332517624, 0.011162216775119305, 0.005503712221980095, -0.003721455344930291, 0.026882193982601166, -0.018093453720211983, 0.023321980610489845, -0.06903719156980515, -0.02077651396393776, -0.001879001734778285, 0.03066599741578102, -0.02497309446334839, -0.055243510752916336, -0.02803453430533409, 0.011428802274167538, -0.021963251754641533, -0.04678155481815338, -0.02371755987405777, 0.012520945630967617, -0.049842994660139084, -0.04743511974811554, -0.03420901298522949, 0.04327293857932091, -0.020982902497053146, 0.013114314526319504, 0.0069785350933671, 0.06057523190975189, 0.017113104462623596, 0.0006293795886449516, -0.0031968827825039625, 0.03955793380737305, 0.01225435920059681, -0.031078774482011795, 0.011566394940018654, -0.034621790051460266, 0.0007046256796456873, 0.012211361899971962, -0.0034914175048470497, -0.047813501209020615, -0.03763163089752197, -0.044098496437072754, 0.029066480696201324, 0.08090457320213318, 0.06525339186191559, -0.0051683299243450165, 0.061160001903772354, 0.04605919122695923, 0.032334309071302414, 0.04464886710047722, 0.05441795662045479, 0.0496022067964077, -0.06556297093629837, -0.05613786354660988, -0.024697909131646156, 0.044717662036418915, 0.014438644982874393, 0.004807148594409227, -0.026727402582764626, 0.03178393840789795, 0.048123084008693695, 0.040211498737335205, -0.020587323233485222, 0.017749471589922905, 0.030184421688318253, -0.004501864779740572, -0.06074722483754158, 0.05589707940816879, -0.002496019471436739, -0.03938594087958336, 0.004682455211877823, 0.04526803269982338, -0.06016245484352112, -0.044408079236745834, 0.061125606298446655, -0.034174613654613495, -0.009210118092596531, 0.0057187010534107685, -0.02060452289879322, 0.006453962530940771, -0.015281401574611664, -0.05018697679042816, -0.04568081349134445, -0.002592764561995864, 0.05809856206178665, -0.010792436078190804, -0.029221272096037865, -0.07326816767454147, 0.002691659377887845, -0.039729923009872437, -0.02990923635661602, 0.00313668604940176, -0.04251617565751076, 0.04743511974811554, 0.03948913514614105, 0.02464631199836731, -0.0449584499001503, 0.04509604349732399, 0.0178526658564806, -0.011145017109811306, -0.020260540768504143, 0.0037386545445770025, 0.01596936583518982, -0.056000273674726486, -0.030923983082175255, -0.014318251051008701, -0.03505176678299904, 0.01380227878689766, 0.021808460354804993, 0.030923983082175255, 0.0835876315832138, 0.0002273506106575951, -0.06704209744930267, -0.004549161996692419, -0.013208909891545773, 0.031388357281684875, -0.007326817139983177, 0.00843615923076868, 0.024990294128656387, -0.10002996772527695, 0.02125808782875538, 0.052594851702451706, 0.018093453720211983, -0.011901778168976307, -0.02977164275944233, 0.028275322169065475, -0.02882569283246994, 0.011239612475037575, 0.018076255917549133, 0.06449662894010544, -0.026108235120773315, 0.003553764196112752, 0.0015876919496804476, -0.022582419216632843, -0.003312976798042655, 0.02805173397064209, 0.0038117507938295603, -0.006858141627162695, -0.00905532669275999, -0.03886996954679489, 0.0009781988337635994, 0.016158554702997208, 0.04743511974811554, -0.017783870920538902, 0.09232477098703384, 0.030648797750473022, 0.05390198156237602, -0.0075633046217262745, 0.007146226242184639, 0.01487722247838974, 0.012039370834827423, -0.017130304127931595, 0.015066412277519703, -0.023459574207663536, 0.004342772997915745, 0.03842279314994812, -0.049842994660139084, -0.011437402106821537, 0.01333790272474289, -0.024525918066501617, -0.01799025945365429, 0.014266653917729855, 0.044717662036418915, 0.007632100954651833, 0.007645000237971544, -0.003988041542470455, 0.04437367990612984, -0.023476772010326385, 0.04406409710645676, -0.035739731043577194, -0.02198045141994953, 0.012065169401466846, 0.026452217251062393, -0.0028142028022557497, -0.02540307119488716, -0.020415332168340683, -0.016812121495604515, -0.03164634481072426, -0.009906682185828686, -0.06456542760133743, 0.04691914841532707, 0.002498169429600239, -0.0039450437761843204, -0.06305190175771713, -0.014025866985321045, 0.04482085630297661, 0.0025433171540498734, 0.006565756630152464, 0.038973163813352585, -0.03591172397136688, 0.04444247484207153, 0.009889483451843262, 0.035258155316114426, -0.005103833042085171, 0.06380866467952728, 0.0039450437761843204, 0.03054560348391533, -0.021481677889823914, 0.04839827120304108, -0.029393263161182404, -0.039007559418678284, 0.04991178959608078, 0.04203460365533829, -0.028326919302344322, 0.00022291646746452898, -0.021928854286670685, 0.008848937228322029, 0.10168108344078064, 0.0013856025179848075, 0.04629997909069061, -0.004523363430052996, -0.022272836416959763, -0.006097081117331982, 0.03398542478680611, -0.03642769530415535, -0.01921139657497406, -0.05221647024154663, -0.02526547946035862, 0.006518459413200617, 0.01055164821445942, -0.02001975290477276, 0.05025577172636986, -0.03377903252840042, -0.010422655381262302, -0.02153327502310276, -0.034776583313941956, -0.03364144265651703, -0.03082078881561756, 0.04444247484207153, 0.027243375778198242, 0.01565118134021759, 0.002938896417617798, 0.03862918168306351, -0.028877289965748787, 0.06287991255521774, -0.05321401730179787, 0.11096859723329544, 0.02433672733604908, -0.052010081708431244, 0.029548054561018944, 0.0604376420378685, -0.007662199437618256, -0.04303215071558952, 0.004428768530488014, 0.0929439440369606, -0.012976721860468388, -0.05345480516552925, 0.06852121651172638, 0.03021882101893425, -0.011815782636404037, -0.06962195783853531, -0.04096825793385506, 0.047022342681884766, 0.01597796380519867, -0.05159730091691017, 0.08138614892959595, 0.019434984773397446, 0.0010459203040227294 ]
24,459
codecs
read
Decodes data from the stream self.stream and returns the resulting object. chars indicates the number of decoded code points or bytes to return. read() will never return more data than requested, but it might return less, if there is not enough available. size indicates the approximate maximum number of decoded bytes or code points to read for decoding. The decoder can modify this setting as appropriate. The default value -1 indicates to read and decode as much as possible. size is intended to prevent having to decode huge files in one step. If firstline is true, and a UnicodeDecodeError happens after the first line terminator in the input only the first line will be returned, the rest of the input will be kept until the next call to read(). The method should use a greedy read strategy, meaning that it should read as much data as is allowed within the definition of the encoding and the given size, e.g. if optional encoding endings or state markers are available on the stream, these should be read too.
def read(self, size=-1, chars=-1, firstline=False): """ Decodes data from the stream self.stream and returns the resulting object. chars indicates the number of decoded code points or bytes to return. read() will never return more data than requested, but it might return less, if there is not enough available. size indicates the approximate maximum number of decoded bytes or code points to read for decoding. The decoder can modify this setting as appropriate. The default value -1 indicates to read and decode as much as possible. size is intended to prevent having to decode huge files in one step. If firstline is true, and a UnicodeDecodeError happens after the first line terminator in the input only the first line will be returned, the rest of the input will be kept until the next call to read(). The method should use a greedy read strategy, meaning that it should read as much data as is allowed within the definition of the encoding and the given size, e.g. if optional encoding endings or state markers are available on the stream, these should be read too. """ # If we have lines cached, first merge them back into characters if self.linebuffer: self.charbuffer = self._empty_charbuffer.join(self.linebuffer) self.linebuffer = None if chars < 0: # For compatibility with other read() methods that take a # single argument chars = size # read until we get the required number of characters (if available) while True: # can the request be satisfied from the character buffer? if chars >= 0: if len(self.charbuffer) >= chars: break # we need more data if size < 0: newdata = self.stream.read() else: newdata = self.stream.read(size) # decode bytes (those remaining from the last call included) data = self.bytebuffer + newdata if not data: break try: newchars, decodedbytes = self.decode(data, self.errors) except UnicodeDecodeError as exc: if firstline: newchars, decodedbytes = \ self.decode(data[:exc.start], self.errors) lines = newchars.splitlines(keepends=True) if len(lines)<=1: raise else: raise # keep undecoded bytes until the next call self.bytebuffer = data[decodedbytes:] # put new characters in the character buffer self.charbuffer += newchars # there was no data available if not newdata: break if chars < 0: # Return everything we've got result = self.charbuffer self.charbuffer = self._empty_charbuffer else: # Return the first chars characters result = self.charbuffer[:chars] self.charbuffer = self.charbuffer[chars:] return result
(self, size=-1, chars=-1, firstline=False)
[ -0.007593393791466951, -0.039822254329919815, -0.035334132611751556, 0.024802789092063904, -0.01859224960207939, 0.001086967415176332, -0.011161254718899727, 0.025058690458536148, 0.0877152606844902, -0.059802278876304626, 0.03094443306326866, 0.0447237603366375, -0.03647584840655327, 0.09401438385248184, 0.0011078824754804373, 0.03635773807764053, -0.004475820809602737, 0.001061746384948492, -0.0670856386423111, 0.024881528690457344, -0.032775115221738815, -0.0017519430257380009, -0.009118962101638317, 0.053188204765319824, -0.027440546080470085, 0.06960529088973999, 0.053778745234012604, -0.042164742946624756, 0.002027529524639249, -0.016722198575735092, 0.04669223353266716, -0.00044629027252085507, -0.04870007932186127, 0.016003703698515892, -0.05413307249546051, 0.008887666277587414, -0.012056911364197731, -0.017775332555174828, 0.0028395256958901882, 0.06511716544628143, -0.06306994706392288, 0.027460230514407158, 0.061455801129341125, -0.0316333994269371, -0.04877881705760956, -0.01415333803743124, -0.042519066482782364, 0.014704510569572449, -0.00963076576590538, 0.021731967106461525, 0.001956172287464142, 0.026377569884061813, 0.007288279943168163, -0.03100348636507988, 0.030885377898812294, -0.036751434206962585, -0.06558959931135178, 0.03452705591917038, -0.037656933069229126, 0.03370029851794243, -0.034586112946271896, -0.07291232794523239, 0.007573708891868591, -0.05015674978494644, -0.05692830681800842, -0.012785247527062893, 0.05224333703517914, -0.07968388497829437, -0.02185007557272911, -0.0065156533382833, 0.0017494824714958668, 0.11440778523683548, -0.05429054796695709, 0.0008353717275895178, -0.0395466685295105, 0.01133841834962368, -0.026101982221007347, 0.03444831818342209, -0.0028469073586165905, 0.0046997349709272385, 0.04421195760369301, 0.05661335214972496, 0.0509047731757164, 0.008213463239371777, 0.033227864652872086, -0.012440764345228672, 0.06401481479406357, 0.004269130993634462, 0.0003214151074644178, 0.04303086921572685, -0.0017482521943747997, 0.0034030016977339983, 0.031023170799016953, 0.03744040057063103, 0.016121812164783478, -0.04279465228319168, 0.0044143060222268105, 0.05562911182641983, -0.0480307973921299, 0.002876434475183487, -0.03131844103336334, 0.042519066482782364, -0.012430922128260136, -0.04318834841251373, -0.024566572159528732, 0.031259387731552124, -0.003444831818342209, 0.03255858272314072, 0.00048750522546470165, -0.006092431023716927, 0.02852320671081543, -0.06944780796766281, -0.026535047218203545, 0.03244047239422798, -0.008208542130887508, -0.01952727511525154, -0.03364124521613121, 0.03423178568482399, -0.0343695804476738, 0.007332570385187864, -0.01622023619711399, 0.01731274090707302, -0.012676981277763844, 0.013297051191329956, 0.02236188016831875, 0.011495895683765411, 0.02537364698946476, 0.015442688949406147, 0.0811011865735054, -0.0034054622519761324, -0.02665315568447113, 0.025767341256141663, 0.03139718249440193, -0.009237070567905903, -0.06090462580323219, 0.016121812164783478, -0.02214534766972065, 0.010482131503522396, -0.030747584998607635, 0.033582188189029694, 0.05275513976812363, 0.03560971841216087, 0.06436914205551147, -0.04062933102250099, -0.08684913069009781, -0.03100348636507988, 0.0851956158876419, -0.1018095463514328, -0.03988131135702133, 0.03988131135702133, -0.010196702554821968, -0.01028528343886137, -0.030216095969080925, 0.020216241478919983, 0.06783366203308105, -0.0384640097618103, -0.03348376601934433, 0.010167174972593784, -0.029231859371066093, 0.05354252830147743, -0.03521602228283882, 0.053345680236816406, -0.0143797118216753, -0.011741955764591694, 0.019123738631606102, -0.02551143988966942, 0.001338563277386129, -0.0521252267062664, 0.013336420059204102, -0.0335034504532814, 0.006146564148366451, 0.11251804977655411, 0.029940510168671608, 0.003919726703315973, 0.04625916853547096, -0.00141238106880337, 0.0004284509632270783, 0.030826322734355927, 0.026101982221007347, -0.032991647720336914, -0.011623846367001534, -0.023897290229797363, -0.04917251318693161, 0.0005090354243293405, 0.023326432332396507, 0.06893600523471832, 0.03301133215427399, 0.008085512556135654, 0.042164742946624756, -0.015275368466973305, -0.03143655136227608, -0.0036318369675427675, -0.021259533241391182, -0.006121958140283823, -0.014881673268973827, -0.03598373010754585, 0.041771046817302704, 0.021948499605059624, 0.0017150341300293803, 0.013710430823266506, -0.07767603546380997, 0.038700226694345474, 0.007125880569219589, -0.03222393989562988, -0.07043204456567764, 0.07062889635562897, -0.037656933069229126, 0.046574126929044724, -0.03988131135702133, 0.06141642853617668, -0.06011723726987839, -0.025275222957134247, 0.047400884330272675, -0.009689819999039173, 0.016663143411278725, -0.10291188955307007, -0.009414233267307281, -0.049054406583309174, 0.045393042266368866, -0.004645601846277714, 0.05909362807869911, -0.016643458977341652, -0.05291261523962021, 0.0009922345634549856, -0.025019321590662003, 0.002264976967126131, -0.014576559886336327, -0.015029309317469597, -0.01899578608572483, 0.006953638978302479, -0.00538870133459568, 0.010816771537065506, 0.06629824638366699, 0.05023549124598503, 0.033365655690431595, 0.05173153057694435, 0.025334278121590614, 0.004055059049278498, -0.07889649271965027, 0.004138719290494919, -0.026968112215399742, -0.024802789092063904, -0.022991791367530823, 0.02521616965532303, -0.06350301206111908, -0.01186006423085928, 0.022716205567121506, 0.041771046817302704, -0.0281491968780756, -0.019310742616653442, -0.006879821419715881, 0.007913270965218544, 0.02740117721259594, -0.008400468155741692, -0.01508836355060339, -0.05287324637174606, -0.038483694195747375, -0.11865969002246857, 0.008060906082391739, -0.017115892842411995, 0.007352255284786224, -0.0035580191761255264, -0.028582261875271797, 0.00773118669167161, 0.012253758497536182, 0.011525423265993595, 0.007086511235684156, -0.009620923548936844, 0.014438766986131668, 0.03049168363213539, 0.030688529834151268, -0.011062831617891788, -0.03574751317501068, 0.0355900339782238, 0.003863132791593671, -0.00731780705973506, 0.005713499616831541, -0.021062685176730156, 0.03450737148523331, -0.013050991110503674, -0.026830319315195084, 0.0459442138671875, -0.007982167415320873, 0.009424075484275818, 0.014842304401099682, -0.034723903983831406, -0.02980271726846695, -0.0567314587533474, 0.009684898890554905, 0.0006071515963412821, 0.04633790999650955, -0.029901139438152313, -0.04795205965638161, 0.020137501880526543, 0.0773610770702362, 0.007903428748250008, -0.030058618634939194, -0.013297051191329956, 0.0256689190864563, -0.03718449920415878, -0.0480307973921299, -0.03694828227162361, 0.03999941796064377, 0.0438576303422451, -0.02883816324174404, -0.06066840887069702, -0.038700226694345474, -0.0632667988538742, 0.008223305456340313, -0.019724123179912567, 0.021298903971910477, -0.008941799402236938, 0.009778400883078575, -0.036751434206962585, -0.08070749044418335, -0.025865765288472176, 0.0030117672868072987, 0.08677039295434952, 0.04901503399014473, 0.05511730909347534, -0.013395474292337894, -0.03988131135702133, -0.0051721688359975815, -0.0002159171417588368, -0.011850221082568169, 0.03950729966163635, 0.03257826715707779, 0.013936805538833141, 0.017617853358387947, 0.014606086537241936, -0.008804005570709705, -0.010275441221892834, -0.04169230908155441, -0.0028001561295241117, -0.002458133501932025, -0.04157419875264168, -0.031200334429740906, -0.0194485355168581, 0.04724340885877609, -0.06401481479406357, 0.06417229771614075, -0.05271577090024948, 0.03139718249440193, -0.018848150968551636, 0.011830536648631096, -0.003469437826424837, 0.018178869038820267, -0.012263601645827293, 0.009158331900835037, 0.0022022316697984934, -0.02110205590724945, -0.04901503399014473, 0.026003558188676834, -0.018907206133008003, -0.034349896013736725, 0.03267668932676315, -0.035924673080444336, -0.012224231846630573, 0.0716131329536438, -0.03728292137384415, -0.001329951104708016, 0.03805062919855118, -0.024566572159528732, -0.022853998467326164, -0.052361443638801575, -0.04295213147997856, -0.017224159091711044, 0.023759497329592705, 0.010511658154428005, 0.031810563057661057, -0.031062541529536247, 0.023759497329592705, -0.05188900977373123, 0.008548104204237461, -0.01763753965497017, -0.013493898324668407, -0.008198699913918972, 0.041180502623319626, -0.008385704830288887, 0.047046560794115067, 0.00632372684776783, 0.036672696471214294, -0.07539260387420654, 0.025944504886865616, 0.0061514852568507195, -0.012785247527062893, -0.05429054796695709, -0.002883816370740533, -0.022499673068523407, 0.009901430457830429, -0.028326360508799553, 0.03972383216023445, 0.027342122048139572, -0.01512773334980011, -0.026397254317998886, 0.02686968818306923, 0.030314520001411438, 0.01441908162087202, -0.01550174318253994, 0.018228081986308098, -0.029389336705207825, 0.0343695804476738, 0.03962540999054909, 0.04960557818412781, 0.00823314767330885, 0.015619851648807526, 0.06480220705270767, 0.018041076138615608, -0.06531400978565216, 0.01283445954322815, 0.02033434994518757, -0.002615611534565687, -0.0281491968780756, -0.03940887749195099, -0.03338534012436867, 0.004736643750220537, -0.03391683101654053, -0.0358065664768219, 0.033975884318351746, 0.0322829969227314, -0.005383780226111412, 0.0320664644241333, -0.06889663636684418, 0.008902429603040218, -0.021594174206256866, -0.02673189528286457, -0.0063138846307992935, -0.00517708994448185, -0.03499948978424072, 0.015600167214870453, 0.038857702165842056, -0.04791269078850746, -0.0103541798889637, -0.010560870170593262, -0.022204400971531868, -0.0005010385066270828, -0.03511760011315346, 0.00792311318218708, -0.0029182645957916975, -0.023483911529183388, 0.020767414942383766, 0.03641679510474205, 0.036908913403749466, 0.007307964842766523, 0.022401249036192894, -0.022617781534790993, 0.01535410713404417, 0.029684608802199364, -0.05287324637174606, -0.01910405233502388, -0.019920971244573593, -0.01811981573700905, -0.011082516051828861, -0.042676545679569244, -0.028247620910406113, 0.004625916946679354, 0.030294835567474365, 0.06759744137525558, -0.025334278121590614, 0.034940436482429504, 0.009050065651535988, 0.0164662953466177, 0.0029847007244825363, -0.012224231846630573, -0.025727972388267517, 0.04814890772104263, -0.025058690458536148, 0.05271577090024948, -0.05846371874213219, 0.00022591330343857408, -0.02206660807132721, 0.0031987724360078573, -0.0393301360309124, -0.027066536247730255, 0.06240066885948181, -0.018336348235607147, 0.02598387375473976, -0.004684971179813147, -0.008198699913918972, -0.013041148893535137, -0.013484056107699871, -0.019694596529006958, -0.0018196094315499067, -0.006687894929200411, 0.003880356904119253, -0.022263456135988235, 0.03830653056502342, -0.014291130937635899, -0.022046923637390137, 0.04370015114545822, 0.012056911364197731, 0.030294835567474365, -0.04039311408996582, 0.004064901731908321, -0.03255858272314072, 0.043818261474370956, 0.009684898890554905, -0.04870007932186127, 0.03122001886367798, -0.031023170799016953, -0.05669208988547325, -0.037814412266016006, 0.03139718249440193, -0.007726265583187342, 0.029979879036545753, 0.06948717683553696, -0.03769630193710327, -0.013995859771966934, 0.015619851648807526, -0.009492971934378147, -0.02559017948806286, 0.05995975807309151, 0.008306966163218021, -0.034192416816949844, 0.015708433464169502, 0.018070602789521217, 0.028188567608594894, 0.05850308761000633, -0.03747976943850517, 0.00148250802885741, 0.05224333703517914, 0.06657383590936661, 0.02507837489247322, 0.026161037385463715, -0.012086438946425915, 0.01310020312666893, 0.006092431023716927, -0.048463862389326096, -0.005733184516429901, -0.03972383216023445, 0.015117890201508999, -0.01576748676598072, -0.03255858272314072, 0.014763564802706242, 0.04255843535065651, -0.04334582760930061, -0.021909130737185478, 0.008085512556135654, -0.04960557818412781, 0.04145609214901924, 0.013484056107699871, 0.016574561595916748, -0.010167174972593784, -0.0438576303422451, -0.04314897954463959, -0.0033513293601572514, 0.00632372684776783, -0.03301133215427399, 0.05810939148068428, -0.048227645456790924, -0.05157405510544777, -0.046495385468006134, 0.01913358084857464, 0.024802789092063904, 0.04889692738652229, -0.060235343873500824, -0.015137575566768646, 0.022932738065719604, -0.023916974663734436, -0.0024482912849634886, 0.044999346137046814, 0.04602295160293579, -0.0827547013759613, 0.001824530540034175, -0.01950759068131447, 0.046298541128635406, 0.03279479965567589, 0.07594377547502518, 0.008252833038568497, -0.020767414942383766, 0.009281361475586891, 0.09330572932958603, -0.0442906953394413, 0.06306994706392288, 0.042007263749837875, -0.028405098244547844, -0.022775258868932724, 0.0054575977846980095, 0.0065993135794997215, 0.022853998467326164, 0.016230078414082527, -0.01576748676598072, -0.009128804318606853, 0.0035137285012751818, -0.002748483791947365, 0.013946647755801678, -0.005797159858047962, 0.008110118098556995, 0.0027066536713391542, -0.0422041118144989, 0.0052705928683280945, -0.07011709362268448, 0.02025561034679413, -0.033149123191833496, -0.010039224289357662, 0.022204400971531868, 0.0012247607810422778, -0.011791166849434376, -0.03338534012436867, 0.003078203182667494, -0.09283329546451569, 0.0058217658661305904, -0.024310670793056488, 0.027460230514407158, 0.06338490545749664, 0.022539041936397552, -0.052203964442014694, 0.10669136047363281, -0.013897435739636421, 0.03653490170836449, 0.012509660795331001, -0.021141424775123596, 0.018474141135811806, -0.0020250689703971148, -0.005733184516429901, -0.039822254329919815, 0.03897581249475479, -0.043503303080797195, 0.028798794373869896, -0.001336102606728673, 0.02358233369886875, 0.067439965903759, -0.021003631874918938, 0.06869979202747345, -0.02393665909767151, 0.06090462580323219, -0.01283445954322815, 0.0023781643249094486, -0.016043074429035187, -0.010747875086963177, 0.012293128296732903, 0.05909362807869911, 0.031810563057661057, 0.010452603921294212, 0.006038297899067402, 0.04708592966198921, -0.01129904855042696, 0.013631691224873066, 0.036515217274427414, 0.042834024876356125, 0.020235925912857056, -0.04976305738091469, 0.0035850857384502888, -0.032775115221738815, -0.03978288546204567, 0.012371867895126343, 0.04783394932746887, 0.02417287789285183, 0.04728277772665024, 0.0044955057092010975, 0.008518576622009277, 0.05995975807309151, 0.043582044541835785, 0.01996034011244774, 0.02446814812719822, -0.04834575578570366, 0.06759744137525558, -0.014271446503698826, 0.021121740341186523, 0.018533194437623024, 0.016791094094514847, -0.05350315943360329, 0.06614077091217041, -0.04409384727478027, 0.026987796649336815, -0.03375935181975365, -0.05216459557414055, 0.054644875228405, 0.07574693113565445, -0.01913358084857464, -0.039448246359825134, 0.054841723293066025, -0.021121740341186523, -0.02478310465812683, 0.01584622636437416, 0.0020582869183272123, 0.02155480533838272, -0.07236115634441376, 0.06657383590936661, 0.01606275886297226, -0.007047141902148724, 0.04932999238371849, -0.04787331819534302, -0.0029428706038743258, -0.061967603862285614, -0.01760801114141941, -0.008720345795154572, -0.05102287977933884, -0.015708433464169502, -0.05984165146946907, 0.051692161709070206, -0.0127261932939291, -0.002515957457944751, -0.008735109120607376, -0.04070806875824928, 0.02342485636472702, -0.03858211636543274, -0.06259751319885254, -0.03560971841216087, -0.014428923837840557, 0.019753649830818176, -0.040944285690784454, 0.029861770570278168, 0.005994007457047701, 0.008341413922607899, 0.02222408726811409, -0.047400884330272675, 0.018936732783913612, -0.014743880368769169, 0.038857702165842056, -0.00868589710444212, -0.0033488685730844736, -0.02769644744694233, -0.01950759068131447, 0.035019177943468094, -0.002384315710514784, -0.017883598804473877, 0.06696753203868866, -0.0012579787289723754, 0.05771569535136223, -0.030137356370687485, 0.01366121880710125, 0.019163107499480247, 0.08866012841463089, 0.009783321991562843, -0.012509660795331001, -0.06287310272455215, 0.02694842778146267, -0.026987796649336815, 0.005516652017831802, -0.004205155652016401, 0.02169259823858738, -0.004409384913742542, -0.013060834258794785, -0.07976262271404266, -0.054644875228405, -0.012804931960999966, -0.046141061931848526, 0.07409340888261795, -0.0073916250839829445, -0.048227645456790924, -0.03635773807764053, -0.04169230908155441, 0.0070372992195189, 0.02305084653198719, -0.01715526171028614, 0.06645572930574417, 0.014054914005100727, -0.00016055376909207553, 0.034723903983831406, 0.018070602789521217, -0.050196122378110886, -0.0283657293766737, 0.054999202489852905, -0.023090215399861336, -0.006264672614634037, -0.0741327777504921, 0.013365947641432285, 0.0017248764634132385, 0.025472071021795273, -0.049959905445575714, 0.003521110164001584, 0.04314897954463959, 0.05295198783278465, -0.018336348235607147, 0.03474358841776848, -0.013946647755801678, 0.055668480694293976 ]
24,460
codecs
readline
Read one line from the input stream and return the decoded data. size, if given, is passed as size argument to the read() method.
def readline(self, size=None, keepends=True): """ Read one line from the input stream and return the decoded data. size, if given, is passed as size argument to the read() method. """ # If we have lines cached from an earlier read, return # them unconditionally if self.linebuffer: line = self.linebuffer[0] del self.linebuffer[0] if len(self.linebuffer) == 1: # revert to charbuffer mode; we might need more data # next time self.charbuffer = self.linebuffer[0] self.linebuffer = None if not keepends: line = line.splitlines(keepends=False)[0] return line readsize = size or 72 line = self._empty_charbuffer # If size is given, we call read() only once while True: data = self.read(readsize, firstline=True) if data: # If we're at a "\r" read one extra character (which might # be a "\n") to get a proper line ending. If the stream is # temporarily exhausted we return the wrong line ending. if (isinstance(data, str) and data.endswith("\r")) or \ (isinstance(data, bytes) and data.endswith(b"\r")): data += self.read(size=1, chars=1) line += data lines = line.splitlines(keepends=True) if lines: if len(lines) > 1: # More than one line result; the first line is a full line # to return line = lines[0] del lines[0] if len(lines) > 1: # cache the remaining lines lines[-1] += self.charbuffer self.linebuffer = lines self.charbuffer = None else: # only one remaining line, put it back into charbuffer self.charbuffer = lines[0] + self.charbuffer if not keepends: line = line.splitlines(keepends=False)[0] break line0withend = lines[0] line0withoutend = lines[0].splitlines(keepends=False)[0] if line0withend != line0withoutend: # We really have a line end # Put the rest back together and keep it until the next call self.charbuffer = self._empty_charbuffer.join(lines[1:]) + \ self.charbuffer if keepends: line = line0withend else: line = line0withoutend break # we didn't get anything or this was our only try if not data or size is not None: if line and not keepends: line = line.splitlines(keepends=False)[0] break if readsize < 8000: readsize *= 2 return line
(self, size=None, keepends=True)
[ -0.03750832751393318, -0.018831461668014526, -0.04452302306890488, 0.03996250405907631, -0.015043912455439568, 0.017855586484074593, -0.010261164978146553, 0.026841353625059128, 0.051711637526750565, -0.058900248259305954, 0.021817054599523544, 0.03613630682229996, -0.022899210453033447, 0.09499790519475937, 0.008280431851744652, 0.013807161711156368, 0.013449663296341896, -0.05086136981844902, -0.060368891805410385, -0.014869993552565575, -0.020503006875514984, -0.006903580855578184, 0.03895764425396919, 0.03389469534158707, -0.03980791196227074, 0.04170168563723564, 0.061682939529418945, -0.03368213027715683, -0.02177840657532215, 0.011546226218342781, 0.02819404937326908, -0.037431031465530396, -0.03331496939063072, 0.015063236467540264, -0.034667667001485825, -0.0015338606899604201, -0.0018877355614677072, -0.0013889289693906903, -0.00036897198879159987, 0.03555658087134361, -0.05870700627565384, 0.00936258863657713, 0.09252440929412842, -0.01978801004588604, -0.06914208829402924, -0.022628672420978546, -0.020116522908210754, 0.027092568576335907, 0.010309476405382156, -0.006502603180706501, 0.006106456276029348, 0.018560921773314476, -0.007729691453278065, 0.010927851311862469, -0.0028309994377195835, -0.07405044138431549, -0.023285696282982826, 0.029585395008325577, -0.06601156294345856, 0.04421383515000343, -0.04309302940964699, -0.07250450551509857, 0.016406269744038582, -0.00021573690173681825, -0.024174610152840614, -0.02633892372250557, 0.0007747808122076094, -0.05097731575369835, -0.006734493654221296, -0.008280431851744652, -0.012531762011349201, 0.1003313958644867, -0.03526671603322029, -0.026570813730359077, -0.05673593655228615, 0.014889318495988846, -0.030764171853661537, 0.03853251039981842, 0.025913789868354797, 0.007082329597324133, 0.04939272999763489, 0.061141859740018845, 0.0920606255531311, -0.010290151461958885, 0.016473904252052307, -0.006367333233356476, 0.038745079189538956, 0.07466881722211838, 0.009048569947481155, -0.01434823963791132, 0.008555802516639233, 0.030203768983483315, 0.011584875173866749, 0.013826485723257065, 0.022783266380429268, -0.049856510013341904, 0.005091934464871883, 0.045953016728162766, -0.015169519931077957, -0.0182227473706007, -0.032561324536800385, 0.08147095143795013, 0.020097197964787483, -0.03984655812382698, -0.03957602009177208, -0.005473587661981583, -0.011266025714576244, 0.0539918951690197, 0.00890363845974207, 0.003908325452357531, 0.024445150047540665, -0.05178893357515335, -0.04599166288971901, -0.008541309274733067, -0.03213619068264961, 0.016348296776413918, -0.050513532012701035, 0.01167183369398117, 0.0013454494765028358, -0.004062918946146965, -0.007415672764182091, 0.020503006875514984, -0.05090001970529556, 0.01192304864525795, 0.026165004819631577, -0.044754914939403534, 0.006009835284203291, 0.02829067036509514, 0.07884285598993301, -0.04297708347439766, 0.0051788934506475925, 0.04753760248422623, 0.07323882728815079, 0.01926625519990921, -0.04603031277656555, 0.05882295221090317, -0.03120862878859043, 0.06948992609977722, -0.012309533543884754, 0.0211020577698946, 0.033759426325559616, 0.005120920483022928, 0.04939272999763489, -0.0035411647986620665, -0.04077412188053131, -0.03588509187102318, 0.07791528850793839, -0.05909349024295807, -0.030300389975309372, 0.04533464089035988, -0.006666858680546284, 0.009415730834007263, -0.025991087779402733, 0.0419335775077343, 0.056156206876039505, -0.03660009056329727, -0.0594799742102623, 0.0012669446878135204, -0.04413653910160065, 0.023498261347413063, -0.0534508153796196, 0.009396405890583992, 0.049624618142843246, -0.060252945870161057, -0.005575039889663458, 0.02032908797264099, -0.050011102110147476, -0.04251330345869064, 0.01731450855731964, 0.010773257352411747, 0.012889260426163673, 0.05391459912061691, 0.039653316140174866, -0.025005551055073738, -0.018773488700389862, -0.0030049176421016455, -0.03238740563392639, 0.03721846267580986, 0.01029981393367052, -0.028213374316692352, 0.0009813085198402405, -0.057972684502601624, -0.05495810508728027, -0.002330985153093934, 0.04077412188053131, 0.056272152811288834, 0.045953016728162766, -0.03947940096259117, 0.035344015806913376, 0.006280374247580767, -0.06427238136529922, -0.004956664517521858, -0.02253205142915249, 0.010985824279487133, -0.005241697188466787, -0.028541885316371918, 0.05882295221090317, 0.06214671954512596, -0.018300045281648636, 0.005135413724929094, -0.0849493071436882, 0.00827077031135559, 0.0032295617274940014, -0.029952554032206535, -0.04340221732854843, 0.04614625871181488, -0.05167298763990402, 0.05225271359086037, -0.035189419984817505, 0.0860314667224884, -0.05607891082763672, -0.044909507036209106, 0.021314624696969986, 0.0026933143381029367, 0.03202024847269058, -0.051325149834156036, -0.03640684857964516, 0.03619427978992462, 0.04865840822458267, -0.002274220110848546, 0.05356676131486893, -0.02017449401319027, -0.0387837253510952, 0.005816592834889889, -0.017749303951859474, -0.027227837592363358, 0.0047513446770608425, 0.013333717361092567, 0.012502775527536869, 0.03468699008226395, 0.008811848238110542, -0.002171560190618038, 0.058011334389448166, 0.05059083178639412, 0.055885668843984604, 0.022590022534132004, 0.0005718764150515199, -0.004562933463603258, -0.04518004506826401, 0.048813000321388245, -0.07354801148176193, 0.01141095720231533, 0.006338347215205431, 0.018280720338225365, -0.07563503086566925, 0.010811906307935715, 0.04073547571897507, 0.025527305901050568, -0.03420388326048851, 0.0002667649241629988, 0.005488080903887749, 0.030493633821606636, 0.02792351134121418, 0.003524256171658635, 0.03980791196227074, -0.014483509585261345, -0.024020016193389893, -0.0888141542673111, -0.02268664538860321, 0.014377226121723652, 0.03520874306559563, -0.005468756891787052, -0.030223093926906586, -0.03488023206591606, 0.016715457662940025, 0.011295011267066002, -0.014309591613709927, -0.002473501255735755, 0.0178169384598732, 0.04467761516571045, 0.04297708347439766, -0.014000403694808483, -0.024058664217591286, 0.04703517258167267, -0.007517124991863966, 0.009546169079840183, -0.002804428804665804, 0.009150022640824318, 0.01679275557398796, -0.026648111641407013, -0.025488657876849174, 0.08742281049489975, 0.014599454589188099, 0.008096851408481598, -0.04386599734425545, -0.039518047124147415, -0.02908296510577202, -0.06129645183682442, 0.0023466860875487328, -0.001085780095309019, 0.037179816514253616, -0.014966615475714207, -0.003594306530430913, 0.017604371532797813, 0.06334482133388519, 0.003603968769311905, -0.01976868510246277, -0.019314566627144814, 0.01272500492632389, -0.022106917575001717, -0.045025452971458435, -0.028000807389616966, 0.0275370255112648, 0.01928558014333248, -0.007488138508051634, -0.07977041602134705, -0.02137259766459465, -0.07354801148176193, 0.012744328938424587, -0.039266832172870636, -0.0023176996037364006, -0.006792466621845961, 0.005087103229016066, -0.06148969754576683, -0.07636935263872147, 0.015758909285068512, -0.02581716887652874, 0.10775189846754074, 0.041740335524082184, 0.024986227974295616, -0.024580419063568115, -0.0206962488591671, -0.009488196112215519, -0.004927678499370813, 0.010811906307935715, 0.05348946526646614, 0.03159511461853981, 0.04197222366929054, 0.004956664517521858, 0.045798420906066895, 0.00910171214491129, 0.005304500926285982, -0.09793519228696823, 0.012667031958699226, -0.015556003898382187, -0.056310802698135376, 0.000496994995046407, -0.011749130673706532, 0.0047006187960505486, -0.06790533661842346, 0.09623465687036514, -0.0239813681691885, 0.03542131185531616, -0.03862913325428963, 0.042126819491386414, 0.009913329035043716, 0.043711405247449875, 0.009304615668952465, 0.030570929870009422, 0.04034898802638054, -0.014261281117796898, -0.02699594758450985, -0.004203019663691521, -0.049856510013341904, 0.013884458690881729, 0.020541654899716377, -0.022454753518104553, -0.04243600741028786, 0.04089006781578064, -0.020406385883688927, -0.018831461668014526, 0.01239649299532175, -0.00844951905310154, 0.006362502463161945, -0.06894885003566742, -0.012947233393788338, -0.043595459312200546, 0.021836377680301666, 0.04131520166993141, 0.05843646824359894, -0.07725826650857925, 0.009811877273023129, 0.007328713778406382, -0.0063431779853999615, -0.012918246909976006, 0.005087103229016066, 0.020754221826791763, 0.008763537742197514, -0.014628441073000431, 0.035865768790245056, -0.017604371532797813, 0.01389412023127079, -0.0338367260992527, 0.019730037078261375, -0.02595243975520134, 0.007637901231646538, -0.03996250405907631, -0.02202962152659893, 0.004688540939241648, -0.01141095720231533, -0.036909278482198715, 0.044638969004154205, 0.06771209836006165, -0.001808023196645081, -0.048774354159832, -0.005840748082846403, 0.029276207089424133, 0.021314624696969986, -0.03961466997861862, 0.01625167578458786, -0.0275370255112648, 0.06349941343069077, 0.025005551055073738, 0.04537329077720642, -0.00766688771545887, 0.015604314394295216, 0.06005970388650894, -0.002417944138869643, -0.024174610152840614, -0.02305380441248417, -0.0011860245140269399, -0.024464473128318787, -0.02659013867378235, -0.01651255413889885, 0.012753990478813648, 0.002480747876688838, -0.0009209202835336328, -0.07177018374204636, 0.04753760248422623, 0.06589561700820923, -0.00012304098345339298, 0.044754914939403534, -0.0676734521985054, 0.027942834421992302, 0.019845983013510704, 0.008439856581389904, -0.04564382880926132, 0.022590022534132004, -0.010435083881020546, -0.010995485819876194, 0.04375005513429642, -0.06330617517232895, -0.02676405757665634, -0.012164602056145668, -0.05267784744501114, -0.0038092886097729206, 0.018406327813863754, 0.0012935155536979437, 0.0062513877637684345, -0.05542188882827759, 0.026454869657754898, 0.005995342042297125, 0.00576828233897686, 0.012183926068246365, 0.03917021304368973, -0.05221406742930412, 0.02724716253578663, 0.03053228184580803, -0.05306433141231537, -0.021817054599523544, -0.018947405740618706, 0.04467761516571045, -0.030860792845487595, -0.02921823412179947, -0.06539318710565567, -0.036252252757549286, 0.015227491967380047, 0.04089006781578064, -0.02633892372250557, 0.03229078650474548, 0.011072782799601555, 0.06906479597091675, 0.005676492117345333, 0.014039051719009876, 0.014792697504162788, 0.002872063545510173, 0.001329748542048037, 0.038493864238262177, -0.06674588471651077, 0.02436785213649273, 0.0021486126352101564, -0.021333947777748108, -0.036754682660102844, 0.001638936111703515, 0.06404049694538116, 0.018300045281648636, 0.05658134073019028, -0.001275399117730558, -0.0247929859906435, 0.00029076923965476453, -0.04784679040312767, -0.027324458584189415, -0.033624157309532166, -0.007840805687010288, 0.002239194931462407, -0.010077585466206074, 0.014947290532290936, -0.04834922030568123, -0.04865840822458267, 0.05658134073019028, 0.015111546963453293, 0.03942142799496651, -0.03250335156917572, 0.016609175130724907, 0.05376000329852104, 0.061953477561473846, 0.03909291326999664, -0.02461906708776951, 0.059286732226610184, -0.02894769422709942, -0.05940267816185951, -0.025063524022698402, 0.03196227550506592, 0.02125665172934532, 0.03254200145602226, 0.0767558366060257, -0.044909507036209106, 0.022338807582855225, -0.01926625519990921, 0.005985680036246777, -0.005966355558484793, 0.06662993878126144, 0.031923625618219376, 0.01062832586467266, -0.006995370611548424, -0.008686240762472153, 0.028599858283996582, 0.01627100072801113, -0.02817472629249096, -0.029295530170202255, 0.022338807582855225, 0.0794612318277359, 0.012464127503335476, -0.041353847831487656, -0.02529541589319706, 0.058784302324056625, 0.0037054207641631365, -0.03764359652996063, -0.008439856581389904, -0.020657600834965706, 0.011188728734850883, 0.018638217821717262, -0.0008490583277307451, 0.02463839203119278, 0.032039571553468704, -0.038068730384111404, -0.009304615668952465, -0.01861889474093914, -0.01965274102985859, -0.00168845453299582, -0.003190913237631321, -0.016473904252052307, -0.010811906307935715, -0.011275687254965305, -0.060639429837465286, 0.06925803422927856, 0.06214671954512596, -0.0014287851518020034, 0.024348529055714607, -0.03358551114797592, -0.04518004506826401, -0.023169750347733498, 0.04046493396162987, -0.02347893826663494, 0.019092338159680367, -0.046880580484867096, -0.018715515732765198, -0.019826658070087433, -0.03254200145602226, -0.014589793048799038, 0.06094861775636673, 0.03259997442364693, -0.0537213571369648, -0.038745079189538956, -0.004251330159604549, 0.006855270359665155, 0.00377064011991024, 0.05464891716837883, 0.012135615572333336, 0.02255137450993061, -0.007686212193220854, 0.07246585935354233, -0.03219416365027428, 0.02241610549390316, 0.015256478451192379, -0.009343264624476433, -0.04089006781578064, -0.043981943279504776, 0.005077441222965717, -0.00013609994493890554, -0.025237442925572395, -0.005507405381649733, -0.019169634208083153, -0.0034469591919332743, -0.0029058807995170355, -0.006270712241530418, -0.03758562356233597, 0.002640172839164734, -0.004405924119055271, -0.02633892372250557, 0.017672007903456688, -0.007203106302767992, 0.028812425211071968, -0.03980791196227074, 0.0018430482596158981, -0.005183724220842123, 0.0324840284883976, -0.002301998669281602, -0.03613630682229996, 0.022783266380429268, -0.08757740259170532, -0.0011310712434351444, -0.04889030009508133, 0.01689903810620308, 0.032561324536800385, -0.02042570896446705, -0.04452302306890488, 0.05225271359086037, -0.044484373182058334, 0.007966413162648678, -0.013584933243691921, 0.03818467631936073, 0.012686355970799923, -0.005352811422199011, -0.01809713989496231, -0.0013696047244593501, -0.00018161754996981472, -0.05743160843849182, 0.022705968469381332, -0.004823810420930386, 0.06558643281459808, 0.05940267816185951, 0.03895764425396919, 0.031266603618860245, -0.06477481126785278, 0.03161443769931793, -0.052755143493413925, -0.01434823963791132, 0.015285464935004711, 0.001472264644689858, -0.013903782702982426, -0.0005117901018820703, 0.042938437312841415, 0.019420849159359932, 0.03791413828730583, 0.03120862878859043, -0.01846430078148842, 0.015275802463293076, 0.013739526271820068, 0.03895764425396919, 0.027324458584189415, -0.06616616249084473, -0.021546514704823494, -0.04788544028997421, -0.024329204112291336, -0.01835801638662815, 0.028252022340893745, 0.03920885920524597, 0.05213676765561104, 0.022377457469701767, 0.008787693455815315, 0.07080397754907608, 0.0531802773475647, 0.014638103544712067, 0.054185137152671814, -0.030996063724160194, 0.07366395741701126, -0.04324762523174286, 0.0077780019491910934, -0.02044503390789032, 0.03542131185531616, -0.016744444146752357, 0.008966442197561264, -0.03515077382326126, 0.01571059785783291, -0.049083542078733444, -0.043711405247449875, 0.0534508153796196, 0.10241841524839401, -0.03488023206591606, -0.026261627674102783, 0.008043710142374039, -0.052871089428663254, -0.025759197771549225, -0.012869936414062977, -0.028483912348747253, -0.016213027760386467, -0.036909278482198715, 0.06094861775636673, 0.007198275066912174, -0.012348182499408722, 0.006454292219132185, -0.028367968276143074, -0.022628672420978546, -0.012599397450685501, 0.01728552207350731, 0.02950809709727764, -0.0411219596862793, -0.03889967128634453, -0.06574102491140366, 0.08023419976234436, -0.018039166927337646, -0.0034638680517673492, -0.0075026317499578, -0.024039341136813164, -0.032967135310173035, -0.058011334389448166, -0.035711172968149185, -0.029643366113305092, -0.017391806468367577, 0.03588509187102318, -0.009043739177286625, 0.022358132526278496, -0.009662114083766937, -0.006922904867678881, 0.050784073770046234, -0.07146099954843521, 0.018647881224751472, -0.07625340670347214, 0.01601012423634529, 0.0005338318296708167, 0.006116118282079697, -0.014483509585261345, -0.012734666466712952, 0.06183753162622452, -0.009608972817659378, -0.020348412916064262, 0.005855241324752569, -0.023652855306863785, 0.044252485036849976, -0.01545938290655613, 0.03750832751393318, 0.021701108664274216, 0.04417518526315689, -0.05306433141231537, -0.019295241683721542, -0.08178013563156128, 0.02844526432454586, -0.025121496990323067, -0.013923106715083122, -0.0014553560176864266, 0.006604054942727089, 0.02071557380259037, 0.005333486944437027, -0.035189419984817505, -0.027962159365415573, -0.018387002870440483, -0.07428233325481415, 0.06736426055431366, -0.021836377680301666, -0.03733440861105919, -0.04421383515000343, -0.02541135996580124, 0.009377081878483295, -0.016696132719516754, -0.0011165781179443002, 0.05542188882827759, 0.05190487951040268, 0.004248914774507284, 0.01414533518254757, 0.028097428381443024, -0.07393449544906616, -0.020251791924238205, 0.042551953345537186, -0.0014263696502894163, -0.0035435804165899754, -0.03188497573137283, 0.02948877215385437, 0.013227434828877449, 0.055383238941431046, -0.023691505193710327, -0.021952323615550995, 0.01310182735323906, 0.06183753162622452, -0.03430050611495972, 0.0005939180846326053, -0.043711405247449875, 0.04065817594528198 ]
24,461
codecs
readlines
Read all lines available on the input stream and return them as a list. Line breaks are implemented using the codec's decoder method and are included in the list entries. sizehint, if given, is ignored since there is no efficient way to finding the true end-of-line.
def readlines(self, sizehint=None, keepends=True): """ Read all lines available on the input stream and return them as a list. Line breaks are implemented using the codec's decoder method and are included in the list entries. sizehint, if given, is ignored since there is no efficient way to finding the true end-of-line. """ data = self.read() return data.splitlines(keepends)
(self, sizehint=None, keepends=True)
[ -0.056599196046590805, -0.02744256518781185, -0.04537030681967735, -0.021600743755698204, -0.039283618330955505, 0.06471478193998337, -0.032357390969991684, 0.0025951501447707415, 0.09822653979063034, 0.0005279938923195004, -0.02646309696137905, -0.03216499462723732, -0.032234955579042435, 0.018977170810103416, 0.011876036413013935, 0.020498843863606453, -0.04907828941941261, -0.05964253842830658, -0.04935813695192337, 0.0035899211652576923, -0.050897300243377686, 0.005164064466953278, 0.036555103957653046, 0.010468052700161934, -0.028369560837745667, 0.040647879242897034, 0.06401515752077103, -0.06048208102583885, 0.006602656561881304, 0.06408511847257614, -0.006611401680856943, 0.02646309696137905, -0.03697487711906433, 0.027774883434176445, -0.03700985759496689, 0.021478310227394104, 0.013065389357507229, -0.016038771718740463, 0.04946307837963104, 0.06450489163398743, -0.027879826724529266, 0.03240986168384552, 0.10872083157300949, -0.010022045113146305, -0.06849272549152374, -0.015277935191988945, 0.008141818456351757, -0.002181937452405691, 0.02684788778424263, -0.009112540632486343, -0.013520142063498497, 0.03422887250781059, -0.009182502515614033, 0.0023546558804810047, 0.0031176782213151455, -0.07083644717931747, -0.008421666920185089, 0.0030455300584435463, -0.012164629064500332, 0.04599996283650398, -0.06048208102583885, -0.08031629025936127, 0.036170314997434616, -0.0036598830483853817, 0.0254836305975914, -0.03424636274576187, -0.01730683073401451, -0.06128664314746857, -0.005736877676099539, -0.0024508535861968994, -0.011639915406703949, 0.031010622158646584, -0.042746733874082565, 0.01299542747437954, -0.044950537383556366, 0.036555103957653046, -0.0012691529700532556, 0.05184178426861763, -0.03164028003811836, -0.020376410335302353, 0.020848652347922325, 0.07153606414794922, 0.02091861516237259, 0.03356423228979111, 0.04264179244637489, -0.06121668219566345, 0.028054730966687202, 0.040997687727212906, 0.03104560263454914, 0.029349027201533318, -0.016231166198849678, 0.03760453313589096, 0.004444768652319908, 0.007179842330515385, 0.0022606446873396635, -0.04400604963302612, -0.05310110002756119, 0.01918705739080906, -0.004429464228451252, 0.008189917542040348, -0.0048011369071900845, 0.06716344505548477, 0.031447883695364, 0.006440869532525539, -0.021740667521953583, -0.02884180285036564, -0.02933153696358204, -0.01656348444521427, 0.014272232539951801, 0.09430867433547974, 0.03924863785505295, 0.01094904076308012, -0.030520889908075333, 0.03403647616505623, -0.041382476687431335, 0.035085905343294144, -0.00649334117770195, 0.005102847702801228, -0.037429630756378174, -0.0254836305975914, -0.02039390057325363, 0.032217465341091156, -0.03749959170818329, 0.004779274109750986, 0.009444859810173512, 0.008028130978345871, -0.0037976207677274942, 0.010284402407705784, 0.049917832016944885, -0.039038754999637604, 0.03214750438928604, -0.012190865352749825, 0.02807222120463848, -0.03398400545120239, -0.04848361387848854, 0.009243719279766083, 0.041767269372940063, 0.011639915406703949, 0.04313152655959129, -0.021548273041844368, 0.03045092709362507, 0.029488950967788696, 0.01857488974928856, 0.025641044601798058, -0.09521817415952682, -0.05037258565425873, 0.09724707156419754, -0.058698054403066635, -0.043236467987298965, 0.034071456640958786, -0.025291236117482185, -0.00047087654820643365, -0.01792774349451065, 0.007936305366456509, 0.027512526139616966, -0.0009450325160287321, -0.038024306297302246, -0.03711479902267456, -0.017875270918011665, 0.022702643647789955, -0.07332009822130203, 0.010966531932353973, 0.05792847275733948, -0.03875890374183655, -0.0025404924526810646, 0.017787819728255272, -0.015286680310964584, -0.04232696443796158, -0.02397944964468479, 0.04005319997668266, 0.01120265293866396, 0.010065771639347076, 0.006178512237966061, -0.009934592992067337, 0.021006068214774132, -0.017245614901185036, 0.012846758589148521, 0.037184763699769974, 0.03398400545120239, -0.005129083525389433, -0.033336855471134186, -0.06880754977464676, -0.030713284388184547, 0.022457776591181755, 0.02364712953567505, 0.07290032505989075, -0.019379451870918274, -0.021933063864707947, 0.00727166747674346, -0.012698088772594929, -0.03809426724910736, -0.013861206360161304, -0.06761819869279861, -0.03230491653084755, -0.06153151020407677, -0.04970794543623924, -0.010476797819137573, 0.05705394968390465, -0.05677410215139389, -0.012601891532540321, -0.015059304423630238, 0.012120903469622135, -0.00357024441473186, -0.06188132241368294, 0.0034106436651200056, 0.06352542340755463, -0.08738244324922562, -0.016502268612384796, -0.022667663171887398, 0.06107676029205322, -0.015120520256459713, -0.010686683468520641, -0.026060815900564194, -0.02831708826124668, 0.032847121357917786, -0.026533059775829315, -0.020936105400323868, -0.0033975259866565466, 0.023349791765213013, -0.0184174757450819, 0.04481061175465584, -0.03673001006245613, -0.06635888665914536, 0.01892470009624958, -0.033826589584350586, 0.010100753046572208, 0.0504775270819664, 0.013843715190887451, 0.0257284976541996, -0.006891249679028988, -0.016913294792175293, -0.0005706269294023514, 0.028142184019088745, 0.018872229382395744, 0.06653378903865814, 0.072200708091259, 0.019257020205259323, -0.0007012589485384524, -0.017779074609279633, 0.04442582279443741, -0.07744784653186798, 0.00015099204028956592, -0.00785759836435318, 0.015758922323584557, -0.08003643900156021, 0.031727731227874756, -0.013660065829753876, 0.017350556328892708, 0.01088782399892807, 0.02163572423160076, 0.035208337008953094, -0.015671471133828163, 0.059327710419893265, -0.014683258719742298, 0.05068741366267204, 0.016519758850336075, -0.041732288897037506, -0.05799843370914459, -0.021215952932834625, -0.024836482480168343, 0.05750869959592819, 0.02299998141825199, -0.042117077857255936, 0.037919361144304276, 0.03596042841672897, 0.047818973660469055, -0.012112158350646496, 0.005889919586479664, 0.002019057283177972, 0.01941443420946598, -0.01069542858749628, 0.01955435797572136, -0.02595587447285652, 0.019222037866711617, -0.0026060815434902906, -0.0057587409391999245, -0.015111775137484074, 0.02859693579375744, -0.00024964928161352873, 0.02983875945210457, -0.013284020125865936, 0.0746493712067604, -0.003791061695665121, -0.02413686364889145, 0.0076083592139184475, -0.05568969249725342, -0.019152076914906502, -0.05761364474892616, -0.0517018623650074, -0.032479822635650635, 0.03288210555911064, -0.018365005031228065, -0.027932297438383102, -0.004077468533068895, 0.09158015996217728, 0.005203417968004942, -0.024469181895256042, -0.021548273041844368, 0.01658972166478634, -0.015033068135380745, -0.022947510704398155, -0.04120757430791855, 0.005916154943406582, 0.029121650382876396, -0.019449414685368538, -0.06670869141817093, -0.002726328792050481, -0.04634977504611015, -0.005854938644915819, -0.044845592230558395, 0.007835735566914082, -0.015863865613937378, 0.03275967016816139, -0.08038625121116638, -0.045720115303993225, 0.019449414685368538, -0.04057791456580162, 0.09591779857873917, -0.012234590947628021, 0.0083517050370574, -0.05166688188910484, -0.003205130575224757, -0.005736877676099539, -0.020009109750390053, -0.006112922914326191, 0.045580193400382996, 0.03143039345741272, 0.0253611970692873, 0.03461366146802902, 0.024941425770521164, 0.05890794098377228, -0.026148268952965736, -0.05453531816601753, 0.029506441205739975, -0.016799606382846832, -0.02352469600737095, 0.04523038491606712, -0.017595423385500908, -0.018365005031228065, -0.07779765874147415, 0.05617942288517952, -0.018207591027021408, -0.00041567219886928797, 0.0004861807101406157, 0.015269190073013306, 0.06527447700500488, 0.04673456400632858, -0.018609872087836266, 0.05278627201914787, 0.04939311742782593, 0.0033691038843244314, -0.023192377761006355, 0.0025055112782865763, -0.014385920949280262, 0.019484395161271095, 0.031500354409217834, -0.01422850601375103, -0.005675660911947489, 0.010354364290833473, -0.0034762329887598753, -0.02945397049188614, -0.012846758589148521, 0.03491099923849106, -0.006969956681132317, -0.011963488534092903, -0.010118243284523487, 0.02153078280389309, -0.027932297438383102, 0.037079818546772, 0.08822198212146759, -0.06880754977464676, 0.005793721880763769, -0.00779200904071331, -0.009742197580635548, -0.03031100332736969, -0.049288176000118256, 0.030835717916488647, 0.01144751999527216, -0.03164028003811836, 0.11760599166154861, -0.031832676380872726, 0.021460819989442825, 0.02401443012058735, -0.008570335805416107, -0.02091861516237259, 0.013126606121659279, -0.039913278073072433, -0.02436424046754837, 0.020218996331095695, 0.015750177204608917, 0.00940987840294838, 0.03580301254987717, 0.02063876762986183, -0.006292200647294521, -0.06359539180994034, -0.03307449817657471, 0.02980377897620201, 0.00952356681227684, 0.008810829371213913, -0.02735511213541031, -0.026638003066182137, 0.050792355090379715, -0.0487634614109993, 0.030380966141819954, -0.04488057270646095, 0.02165321446955204, 0.03415890783071518, -0.01683458872139454, -0.009191247634589672, -0.024329258129000664, 0.04946307837963104, -0.013677556067705154, -0.00996082928031683, -0.009103795513510704, 0.0363452173769474, 0.0375695526599884, -0.012190865352749825, -0.025046369060873985, 0.038514040410518646, 0.03844407573342323, 0.009680980816483498, 0.02375207282602787, -0.03809426724910736, 0.04617486894130707, 0.039388563483953476, -0.005636307410895824, -0.03942354395985603, 0.021740667521953583, -0.009541057050228119, -0.06495964527130127, 0.044355858117341995, -0.0348760187625885, -0.040752820670604706, -0.012907974421977997, -0.03478856757283211, -0.020218996331095695, -0.009812159463763237, 0.012663108296692371, -0.026935340836644173, -0.06775812059640884, 0.04215205833315849, 0.001515112933702767, 0.03552316501736641, -0.009803414344787598, 0.06349044293165207, -0.03721974417567253, -0.024923935532569885, 0.02399693988263607, -0.031850166618824005, -0.046209849417209625, -0.06940222531557083, 0.002831271616742015, -0.001567584346048534, 0.005443911999464035, -0.05432543531060219, 0.0007078179041855037, 0.027757393196225166, -0.019606828689575195, -0.09815657883882523, 0.005544482264667749, 0.0658341720700264, 0.042117077857255936, 0.006663873326033354, -0.026445606723427773, 0.03872392326593399, 0.0007253083749674261, -0.042991600930690765, 0.02772241272032261, -0.019694281741976738, -0.0033909669145941734, 0.0521915964782238, 0.00708364462479949, -0.01230455283075571, -0.04634977504611015, 0.08626305311918259, 0.04229198396205902, 0.026550550013780594, -0.02525625377893448, -0.0358554869890213, 0.02018401399254799, -0.03596042841672897, -0.06391021609306335, -0.02004409022629261, -0.0033953397069126368, -0.032602258026599884, -0.05303113907575607, 0.0015938200522214174, -0.037289705127477646, -0.05257638543844223, -0.020936105400323868, 0.07325013726949692, 0.03966841101646423, -0.009042578749358654, 0.007512161508202553, 0.07681819051504135, 0.06586915254592896, 0.06464481353759766, -0.023559678345918655, 0.04586004093289375, 0.007131743710488081, -0.04033304750919342, 0.002172099193558097, 0.028771841898560524, 0.08472388982772827, 0.030485907569527626, 0.06894747912883759, 0.0032248073257505894, 0.03907373547554016, 0.003666442120447755, -0.008128700777888298, 0.006983074359595776, 0.0824151486158371, 0.01250569336116314, 0.02340226247906685, -0.004394483286887407, -0.02719769813120365, -0.0028137811459600925, 0.05331098660826683, -0.0521915964782238, 0.041137609630823135, 0.030485907569527626, 0.04897334799170494, -0.006690109148621559, -0.024469181895256042, 0.01869732327759266, 0.012715579941868782, -0.06541439890861511, -0.03526080772280693, 0.01107147429138422, 0.0128642488270998, 0.020323939621448517, -0.009549802169203758, 0.002601708984002471, -0.01150873675942421, -0.02648058719933033, -0.021495800465345383, -0.021320896223187447, -0.014875654131174088, 0.005102847702801228, 0.006213493179529905, -0.017656641080975533, -0.02759997919201851, -0.026165759190917015, 0.010022045113146305, -0.03697487711906433, 0.08367446064949036, 0.06300070881843567, 0.02067374810576439, 0.03735966607928276, -0.005185927730053663, 0.02065625786781311, -0.03053838014602661, 0.0163361094892025, -0.043971069157123566, 0.04579007998108864, -0.05282125249505043, 0.012698088772594929, -0.024784011766314507, -0.06684862077236176, -0.013765008188784122, 0.0521915964782238, 0.032479822635650635, -0.0731801688671112, 0.01138630323112011, -0.010809116996824741, 0.00707927206531167, -0.005229653790593147, 0.06541439890861511, 0.025028878822922707, 0.03206005319952965, 0.020813671872019768, 0.04711935669183731, 0.012007215060293674, 0.013362727127969265, 0.0677931010723114, -0.00565379811450839, -0.010774136520922184, -0.016668427735567093, -0.04190719127655029, -0.06177637726068497, -0.014315958134829998, -0.03286461532115936, -0.012199610471725464, 0.00547889294102788, 0.00482300017029047, 0.005981744267046452, -0.051282089203596115, 0.006996192503720522, -0.016843333840370178, 0.023839525878429413, 0.04488057270646095, 0.03931860253214836, 0.031115565448999405, -0.01758667826652527, 0.00327946525067091, -0.05901288241147995, 0.005994862411171198, -0.006541439797729254, -0.05607448145747185, 0.029366517439484596, -0.08605316281318665, 0.01941443420946598, -0.036170314997434616, 0.008749612607061863, 0.03228742629289627, -0.04711935669183731, -0.010599231347441673, 0.002488020807504654, -0.026288192719221115, 0.08136571943759918, -0.0010018766624853015, 0.02957640402019024, 0.04907828941941261, -0.043341413140296936, 0.009663490578532219, 0.004945433232933283, 0.031482864171266556, -0.022930020466446877, 0.050792355090379715, -0.04295662045478821, 0.08773225545883179, 0.025273744016885757, 0.07891704887151718, 0.04439083859324455, -0.04257183149456978, 0.012269572354853153, -0.05873303487896919, -0.018889719620347023, 0.0010778509313240647, -0.023332301527261734, -0.014761965721845627, -0.010572995990514755, 0.010048281401395798, 0.030223550274968147, 0.0363452173769474, 0.04844863340258598, -0.003561499062925577, -0.048168785870075226, 0.01634485460817814, -0.0025929638650268316, -0.012120903469622135, -0.022720133885741234, -0.03263723850250244, -0.09004099667072296, -0.002297811908647418, -0.03589046746492386, -0.005164064466953278, 0.06457485258579254, 0.05649425461888313, -0.014823182485997677, -0.0009013063390739262, 0.050792355090379715, 0.012400751002132893, 0.03540073335170746, 0.01668591797351837, 0.007437827065587044, 0.07083644717931747, 0.0023371654096990824, 0.029366517439484596, -0.0361003540456295, 0.005220908671617508, -0.027407582849264145, 0.030993131920695305, -0.002776613924652338, -0.0076826936565339565, -0.041242554783821106, -0.05628436803817749, 0.0873124822974205, 0.05904786288738251, -0.0189072098582983, -0.015111775137484074, 0.023419754579663277, -0.0014320331392809749, 0.0027722411323338747, -0.0036117841955274343, -0.022930020466446877, -0.022947510704398155, -0.05824330076575279, 0.05467524379491806, -0.01720188744366169, -0.04610490798950195, 0.02375207282602787, -0.025571083649992943, -0.020009109750390053, -0.008019385859370232, 0.0040709092281758785, -0.025291236117482185, 0.00976843386888504, 0.008189917542040348, 0.015557782724499702, 0.051212128251791, 0.01594257354736328, 0.037919361144304276, 0.018365005031228065, 0.023454735055565834, 0.040403012186288834, -0.036799971014261246, -0.026795417070388794, -0.00012673766468651593, 0.01137755811214447, 0.0258509311825037, 0.0019545613322407007, -0.00020933919586241245, -0.003259788267314434, -0.0025055112782865763, -0.017910253256559372, -0.08066609501838684, 0.006095432676374912, -0.09304935485124588, 0.02648058719933033, -0.014071092009544373, 0.0029493323527276516, 0.0014276604633778334, -0.03213001415133476, 0.04659464210271835, -0.05736877769231796, 0.04872848093509674, 0.02212545834481716, 0.02042888104915619, 0.03351176157593727, 0.012899229303002357, 0.013966148719191551, 0.024154353886842728, 0.02684788778424263, -0.04603494703769684, 0.01094029564410448, -0.058698054403066635, 0.015181737020611763, -0.03256727382540703, 0.012838012538850307, 0.033091988414525986, 0.006099805235862732, -0.024679068475961685, -0.03959845006465912, -0.03980833292007446, -0.01892470009624958, -0.029891232028603554, -0.032234955579042435, 0.02871936932206154, -0.0521915964782238, 0.008981361985206604, -0.05551478639245033, 0.013738772831857204, -0.010599231347441673, 0.02340226247906685, -0.03349427133798599, 0.054255470633506775, 0.020009109750390053, -0.02299998141825199, 0.02016652375459671, 0.022090477868914604, -0.04085776209831238, -0.0023153023794293404, 0.0031920126639306545, -0.004661213140934706, 0.003675187239423394, 0.015103030018508434, -0.03078324720263481, -0.014184780418872833, 0.018487438559532166, -0.006139158736914396, -0.000027892534490092658, -0.007048663683235645, 0.0843740776181221, -0.0257284976541996, 0.011823564767837524, -0.03749959170818329, 0.02340226247906685 ]
24,462
codecs
reset
Resets the codec buffers used for keeping internal state. Note that no stream repositioning should take place. This method is primarily intended to be able to recover from decoding errors.
def reset(self): """ Resets the codec buffers used for keeping internal state. Note that no stream repositioning should take place. This method is primarily intended to be able to recover from decoding errors. """ self.bytebuffer = b"" self.charbuffer = self._empty_charbuffer self.linebuffer = None
(self)
[ -0.015078471042215824, -0.02110636606812477, -0.011348165571689606, -0.0013016756856814027, -0.07373250275850296, -0.013864156790077686, -0.08002247661352158, 0.039522018283605576, 0.04130417853593826, 0.018782569095492363, -0.029842443764209747, -0.039207521826028824, -0.020180340856313705, 0.08589312434196472, -0.01712271384894848, 0.047069989144802094, 0.015157096087932587, -0.03536364436149597, -0.008159497752785683, -0.0170965064316988, -0.0307859405875206, 0.007622228469699621, 0.00404698820784688, 0.05297558009624481, -0.042527228593826294, 0.019813425838947296, -0.018765097483992577, -0.06733769178390503, -0.011723817326128483, 0.0085482532158494, 0.007989143952727318, -0.015358026139438152, 0.014999846927821636, 0.004461952019482851, -0.07247450947761536, -0.04581199586391449, 0.0006251755985431373, -0.015060999430716038, 0.024530908092856407, 0.01209946908056736, 0.00894574448466301, -0.015069735236465931, 0.019533870741724968, -0.036796361207962036, -0.007722693495452404, 0.018101153895258904, 0.027448758482933044, -0.007329569663852453, 0.0311004389077425, 0.003891922999173403, -0.02788556180894375, 0.0855436772108078, -0.024897823110222816, 0.031397465616464615, -0.011767497286200523, -0.0068971337750554085, 0.026994481682777405, 0.0085788294672966, -0.04245734214782715, -0.01698293723165989, -0.03777480497956276, 0.0033743102103471756, -0.031537242233753204, -0.021193725988268852, -0.02002309262752533, -0.021316030994057655, -0.018363237380981445, 0.024216409772634506, 0.050913866609334946, 0.009932921268045902, -0.02788556180894375, 0.04413466900587082, -0.05807745084166527, 0.034804537892341614, -0.03976662829518318, 0.006818509194999933, -0.04948114976286888, 0.06255032122135162, -0.04626627266407013, -0.046510882675647736, 0.06192132458090782, 0.09805374592542648, -0.015480331145226955, 0.052556246519088745, 0.030663635581731796, -0.027640951797366142, 0.015541483648121357, 0.04382016882300377, 0.029493000358343124, -0.016790742054581642, 0.006255032029002905, 0.026085929945111275, 0.029720138758420944, 0.02437365986406803, 0.023168079555034637, -0.03980157524347305, -0.04675549268722534, 0.02697701007127762, -0.012842035852372646, -0.04455399885773659, -0.024810463190078735, 0.015200776979327202, -0.004042620304971933, -0.014842597767710686, -0.047244712710380554, 0.024303769692778587, 0.03620230779051781, -0.021578114479780197, 0.04539266228675842, 0.03269040584564209, -0.00075621681753546, -0.024094104766845703, -0.04091979190707207, 0.007430034689605236, 0.011592776514589787, 0.012929395772516727, -0.04228261858224869, 0.02056472934782505, 0.031397465616464615, 0.047559212893247604, -0.006932078395038843, 0.025456933304667473, -0.03036660887300968, -0.026313068345189095, 0.04654582589864731, -0.008910800330340862, 0.0673726350069046, 0.023500051349401474, 0.034437622874975204, -0.045742105692625046, -0.01735858805477619, 0.07485072314739227, -0.016598548740148544, 0.01602196879684925, -0.03251568600535393, 0.0013136877678334713, 0.03424542769789696, -0.027903035283088684, -0.026505261659622192, -0.00429596658796072, -0.0037739858962595463, 0.008142025209963322, 0.0463012158870697, 0.004914043936878443, 0.0032192450016736984, 0.031082967296242714, 0.07268417626619339, -0.06681352853775024, -0.07062245905399323, 0.007871206849813461, 0.034437622874975204, -0.007028175052255392, -0.04350567236542702, -0.01675579883158207, 0.04022090509533882, 0.036936141550540924, -0.009391284547746181, 0.06160682439804077, -0.01769929565489292, 0.02502012811601162, 0.004708746448159218, 0.0196212325245142, 0.01593460701406002, -0.04881720617413521, -0.006272504571825266, 0.033668845891952515, -0.028846532106399536, -0.023622356355190277, 0.0014207047643139958, -0.04563727229833603, 0.013034229166805744, 0.027937978506088257, -0.015209512785077095, -0.043400838971138, 0.056190457195043564, 0.05322019010782242, -0.022399304434657097, 0.0042151580564677715, -0.04444916918873787, 0.015445386990904808, 0.0006033354438841343, -0.0007354685803875327, -0.06038377434015274, 0.009731991216540337, 0.03286512568593025, 0.013095381669700146, 0.033162154257297516, 0.012020844034850597, -0.005228543188422918, -0.05283580347895622, 0.018013793975114822, 0.01627531461417675, -0.006089046597480774, -0.023657301440835, 0.04518299922347069, -0.037984468042850494, 0.058496780693531036, -0.029772555455565453, 0.057133954018354416, -0.023447634652256966, -0.023534994572401047, 0.013811740092933178, 0.017166394740343094, -0.05161275342106819, -0.021717891097068787, 0.027728313580155373, -0.022137222811579704, 0.002944058505818248, -0.050459589809179306, 0.043156228959560394, 0.010561918839812279, -0.019988147541880608, 0.09162399172782898, -0.04291161894798279, 0.008600668981671333, -0.07240461558103561, 0.034577399492263794, 0.004516552668064833, 0.0038001942448318005, 0.027990395203232765, 0.030453968793153763, -0.025317154824733734, -0.06286481767892838, -0.02837478369474411, -0.02678481675684452, 0.04354061558842659, 0.006023526191711426, -0.047244712710380554, -0.05112352967262268, -0.01758572645485401, 0.010229947976768017, 0.0170965064316988, -0.05898600071668625, -0.0024242617655545473, 0.026994481682777405, -0.000935306423343718, 0.022416777908802032, -0.010439613834023476, -0.11741289496421814, -0.06880535185337067, -0.010273627936840057, -0.011435526423156261, 0.030716052278876305, 0.01874762400984764, -0.022311944514513016, 0.03714580461382866, 0.023552468046545982, 0.02243424952030182, -0.005792019888758659, 0.02288852632045746, 0.016965463757514954, -0.039207521826028824, 0.007224736735224724, -0.02374466136097908, 0.0667436420917511, -0.12027832865715027, -0.049201592803001404, -0.04350567236542702, 0.013907836750149727, 0.04249228537082672, 0.003769617760553956, 0.006403545383363962, -0.05905589088797569, -0.002115223091095686, 0.10280617326498032, 0.04748932272195816, -0.00833421852439642, -0.006115254946053028, 0.02047736756503582, 0.01916695572435856, 0.07492060959339142, -0.04182834550738335, -0.033983346074819565, 0.013270103372633457, 0.0072028967551887035, 0.023639827966690063, -0.00917288288474083, 0.02315060794353485, 0.03436773270368576, 0.035852864384651184, 0.0796031504869461, -0.003324077930301428, 0.0225216094404459, 0.025491876527667046, 0.05660978704690933, -0.0026055353228002787, -0.027640951797366142, -0.034664761275053024, 0.004306886810809374, -0.027221620082855225, 0.03700602799654007, 0.03454245254397392, -0.02806028351187706, 0.03290007263422012, 0.03746030479669571, -0.016624758020043373, -0.031572189182043076, 0.016493715345859528, 0.032393377274274826, 0.02306324802339077, -0.08407601714134216, -0.04046551510691643, 0.030523858964443207, 0.06744252890348434, 0.0018313004402443767, -0.01009890716522932, -0.026662511751055717, -0.011531624011695385, 0.05220680683851242, -0.0022102277725934982, 0.035258810967206955, 0.04368039220571518, -0.002139247255399823, -0.02266138792037964, 0.013383672572672367, -0.03033166378736496, 0.048013485968112946, 0.03508409112691879, -0.0032847654074430466, 0.04871237277984619, -0.035346172749996185, -0.06709308177232742, -0.017035353928804398, -0.014003933407366276, -0.02715173177421093, 0.044379279017448425, 0.028130173683166504, -0.008002247661352158, -0.0034987994004040956, -0.01590839959681034, -0.003990204073488712, -0.0048354193568229675, -0.042981505393981934, 0.009111729450523853, -0.01655486784875393, -0.09546786546707153, -0.054233577102422714, -0.05402391031384468, 0.012693522498011589, -0.06649903208017349, 0.014702820219099522, -0.04200306534767151, 0.02470562979578972, -0.022259527817368507, 0.003468223148956895, 0.020355062559247017, -0.014606723561882973, -0.01516583189368248, -0.012134413234889507, 0.041513845324516296, 0.030890773981809616, -0.004156189505010843, 0.05024992302060127, 0.045287832617759705, 0.06269010156393051, -0.005534305702894926, -0.04022090509533882, 0.036796361207962036, 0.02596362493932247, -0.021263614296913147, 0.002721288474276662, 0.06366854161024094, -0.019813425838947296, -0.03728558123111725, 0.01121712476015091, -0.024862879887223244, -0.019498927518725395, -0.011575303971767426, -0.013471033424139023, 0.04235250875353813, -0.02510748989880085, -0.0719153955578804, -0.05657484382390976, -0.006940814200788736, -0.02828742191195488, 0.001200118800625205, -0.016423827037215233, 0.03833391144871712, 0.003725937567651272, -0.0118286507204175, 0.049061816185712814, -0.0034878794103860855, -0.017332380637526512, -0.03092571720480919, -0.020040564239025116, 0.0179788488894701, -0.03260304406285286, 0.00044117195648141205, 0.03263799101114273, 0.002891642041504383, -0.01235281489789486, -0.00429596658796072, 0.02147328108549118, -0.03096066229045391, 0.04015101492404938, 0.05580607056617737, 0.012868243269622326, 0.010474557988345623, -0.018625319004058838, -0.027658425271511078, -0.009950393810868263, -0.006608843337744474, -0.010247420519590378, 0.04549749568104744, 0.0062768724747002125, 0.053010523319244385, 0.047419432550668716, 0.027501175180077553, -0.0031974047888070345, -0.02601604163646698, 0.032760296016931534, 0.0019732618238776922, -0.01681695133447647, -0.05961500108242035, 0.03896291181445122, -0.0054163685999810696, 0.04109451174736023, -0.0463012158870697, 0.06821130216121674, 0.06496147811412811, -0.0589161142706871, 0.10343516618013382, 0.014964902773499489, 0.033808622509241104, 0.032847654074430466, 0.005114973988384008, -0.018677735701203346, -0.01880004070699215, -0.044099725782871246, 0.0035533998161554337, -0.014589251019060612, -0.001221959013491869, -0.020896699279546738, -0.005267855245620012, -0.03882313147187233, 0.028252478688955307, -0.01803126558661461, 0.01700914464890957, -0.06569530814886093, 0.042387451976537704, 0.055002350360155106, 0.004914043936878443, 0.0752001628279686, -0.014790181070566177, 0.06366854161024094, 0.009906712919473648, 0.0037521456833928823, 0.08107081055641174, -0.060139164328575134, 0.027937978506088257, -0.04909675940871239, 0.023727189749479294, -0.05811239406466484, -0.06590497493743896, -0.006910237949341536, 0.010928833857178688, 0.010920098051428795, 0.0686306357383728, -0.04762909933924675, -0.041793398559093475, -0.014816389419138432, 0.05220680683851242, -0.0319216325879097, 0.018223458901047707, 0.015655051916837692, 0.04993542283773422, 0.030488913878798485, 0.005342111922800541, -0.034752119332551956, 0.01246638409793377, -0.013069173321127892, -0.034839481115341187, -0.009609686210751534, 0.0018389445031061769, -0.0022386200726032257, -0.03422795608639717, 0.0027300245128571987, -0.03613242134451866, -0.0014709371607750654, -0.02351752296090126, -0.05507224053144455, -0.029388168826699257, -0.014283488504588604, 0.004149637185037136, 0.009670838713645935, -0.023639827966690063, 0.02973761036992073, -0.07020312547683716, -0.033843569457530975, -0.008107081055641174, -0.0398714616894722, 0.018590375781059265, -0.08610279113054276, -0.022416777908802032, 0.008259962312877178, 0.04189823195338249, -0.03735547140240669, -0.012309134937822819, -0.04053540527820587, -0.07079718261957169, 0.008342955261468887, -0.029300807043910027, -0.07247450947761536, -0.04773393273353577, 0.014397057704627514, -0.020582200959324837, 0.0028763539157807827, -0.06793174892663956, -0.016170481219887733, 0.006774828769266605, -0.053185246884822845, 0.021228671073913574, -0.008784126490354538, -0.008784126490354538, -0.008356058970093727, 0.03462981432676315, -0.0564001239836216, -0.033074792474508286, -0.011924747377634048, 0.0003510811657179147, 0.011592776514589787, 0.0589161142706871, 0.030401553958654404, -0.014161183498799801, 0.0017821600195020437, -0.042422398924827576, -0.04245734214782715, -0.0267498716711998, 0.03945213183760643, -0.04036068171262741, -0.01361954677850008, -0.018136098980903625, 0.028933892026543617, 0.033843569457530975, 0.050459589809179306, -0.031135383993387222, 0.041339121758937836, -0.03209635242819786, -0.03377367928624153, -0.004020780324935913, -0.03812424838542938, 0.013951517641544342, 0.008417211472988129, -0.04039562866091728, -0.011059875600039959, 0.05266107991337776, -0.01883498579263687, 0.03263799101114273, 0.0026841601356863976, -0.022905997931957245, -0.051053643226623535, -0.08260835707187653, 0.018642790615558624, -0.033214569091796875, -0.03878818824887276, -0.04874731972813606, 0.055596403777599335, 0.045602329075336456, 0.051053643226623535, -0.007421298883855343, 0.016406355425715446, 0.03780974820256233, -0.04427444562315941, 0.004673801828175783, 0.030401553958654404, 0.02206733450293541, 0.01956881582736969, 0.04836292937397957, 0.041478902101516724, 0.011409318074584007, 0.03169449418783188, 0.000047092922613956034, 0.041478902101516724, 0.013287574984133244, 0.025998570024967194, -0.0030095791444182396, -0.00975819956511259, 0.035346172749996185, -0.002843593480065465, 0.001360644237138331, 0.03655175119638443, 0.0019383174367249012, -0.03127516061067581, -0.04686032608151436, -0.012955604121088982, -0.029842443764209747, 0.04091979190707207, -0.019900787621736526, 0.011592776514589787, -0.04948114976286888, -0.05626034736633301, 0.0036626008804887533, 0.03436773270368576, -0.02669745497405529, -0.027798201888799667, 0.04186328873038292, 0.018468070775270462, -0.02874169871211052, -0.016904311254620552, 0.03165954723954201, 0.0046694339253008366, 0.02152569778263569, -0.005075661465525627, 0.026662511751055717, 0.05080903321504593, 0.010168795473873615, -0.04612649604678154, 0.11063370108604431, 0.039067741483449936, 0.07233472913503647, -0.0285145603120327, 0.004413903690874577, 0.04986553639173508, -0.022084806114435196, 0.012160621583461761, -0.052276693284511566, 0.03349412605166435, -0.0011826466070488095, 0.0016107144765555859, 0.05762317404150963, 0.012807090766727924, 0.04539266228675842, -0.07694737613201141, 0.024548379704356194, -0.05024992302060127, 0.03333687409758568, -0.029929805546998978, -0.01965617574751377, -0.0199357308447361, -0.0014294408028945327, 0.01880004070699215, -0.028636865317821503, 0.007635332643985748, 0.036167364567518234, -0.0037565138190984726, 0.018712680786848068, -0.053325023502111435, 0.021193725988268852, 0.05653990060091019, 0.04748932272195816, 0.04871237277984619, -0.04686032608151436, 0.059230610728263855, -0.08826933801174164, -0.05140308663249016, 0.0030379712115973234, 0.01934167742729187, -0.005726499482989311, 0.012073260731995106, -0.0010565194534137845, -0.01403014175593853, 0.009801880456507206, 0.050284866243600845, 0.021193725988268852, 0.00568718696013093, 0.0025138065684586763, 0.009731991216540337, 0.008120184764266014, 0.02596362493932247, -0.005743971560150385, -0.023412689566612244, -0.023814549669623375, 0.06461203843355179, 0.013409880921244621, 0.031484827399253845, 0.0008168233325704932, -0.02945805713534355, 0.033808622509241104, 0.015200776979327202, -0.0062200878746807575, -0.049516092985868454, 0.02601604163646698, -0.025631655007600784, -0.04203800857067108, -0.020739451050758362, 0.04444916918873787, 0.012073260731995106, -0.03686625137925148, 0.00822501815855503, 0.026662511751055717, -0.044519055634737015, 0.0673726350069046, -0.0354510061442852, -0.05647001042962074, -0.014318432658910751, 0.018782569095492363, -0.0632142648100853, -0.017166394740343094, 0.016747063025832176, -0.073942169547081, 0.032987430691719055, 0.015209512785077095, 0.04060529172420502, -0.011252068914473057, -0.10797792673110962, 0.03753019496798515, -0.012955604121088982, -0.09889240562915802, -0.018275875598192215, -0.029003780335187912, 0.021193725988268852, -0.00010708520858315751, -0.026575149968266487, -0.018101153895258904, 0.03269040584564209, 0.04899192973971367, -0.017568252980709076, -0.019848370924592018, -0.05633023381233215, 0.008980688638985157, 0.031048022210597992, 0.02502012811601162, -0.018730152398347855, 0.03312721103429794, 0.014991111122071743, 0.018782569095492363, -0.0320439375936985, -0.01838070899248123, -0.0065520587377250195, 0.05570123717188835, -0.002452654065564275, 0.015375497750937939, 0.006228824146091938, 0.0952581986784935, 0.0777161568403244, -0.016659701243042946, -0.09330131858587265, -0.00006575946463271976, 0.013837948441505432, -0.02297588624060154, -0.015524011105298996, -0.017830336466431618, 0.004734954331070185, -0.021665474399924278, -0.024129047989845276, -0.06010422110557556, 0.044833555817604065, -0.028706753626465797, 0.08267824351787567, 0.02301083132624626, -0.05342985689640045, -0.045427609235048294, -0.02442607469856739, 0.039696741849184036, -0.028269950300455093, -0.00694518256932497, 0.07359272241592407, 0.05430346354842186, -0.010649279691278934, 0.021543169394135475, -0.005612930282950401, -0.05744845047593117, 0.002601167419925332, 0.03728558123111725, -0.029947277158498764, -0.001243799226358533, -0.040430571883916855, 0.03732052817940712, -0.01735858805477619, 0.026138346642255783, -0.017943905666470528, -0.014423266053199768, 0.0388580784201622, 0.018695207312703133, -0.0019568814896047115, 0.035852864384651184, 0.008299274370074272, 0.005674082785844803 ]
24,463
codecs
seek
Set the input stream's current position. Resets the codec buffers used for keeping state.
def seek(self, offset, whence=0): """ Set the input stream's current position. Resets the codec buffers used for keeping state. """ self.stream.seek(offset, whence) self.reset()
(self, offset, whence=0)
[ 0.032009195536375046, -0.00373612972907722, -0.05222824960947037, 0.018116135150194168, -0.010505978949368, 0.02678636834025383, -0.01547886710613966, 0.05377958342432976, 0.05115955322980881, 0.002600639360025525, -0.03057851828634739, -0.10073329508304596, 0.03995547071099281, 0.04164470359683037, 0.009127015247941017, 0.0528143085539341, 0.01989155076444149, -0.0021190792322158813, -0.0360599011182785, 0.03347434103488922, 0.03176787495613098, -0.021029194816946983, -0.012738176621496677, -0.03519804775714874, -0.021029194816946983, 0.03664596006274223, -0.04257550463080406, -0.01839192770421505, -0.030199304223060608, -0.06736237555742264, 0.013694833032786846, 0.0022343520540744066, 0.011988365091383457, -0.008148813620209694, -0.04116206616163254, -0.013186340220272541, 0.007847164757549763, -0.005321938078850508, 0.07873882353305817, 0.036921750754117966, -0.024235285818576813, 0.03899019584059715, -0.0046195280738174915, -0.013375947251915932, -0.011695335619151592, 0.05543433874845505, -0.013755162246525288, 0.013151865452528, 0.021425647661089897, 0.01701296493411064, -0.0073731462471187115, 0.0848752111196518, -0.011014471761882305, -0.009316623210906982, 0.018167845904827118, -0.015358207747340202, 0.009695838205516338, -0.0045721265487372875, -0.038679931312799454, 0.01813337206840515, -0.012505476363003254, 0.007420548237860203, -0.02704492397606373, -0.008278091438114643, -0.02175315096974373, -0.057399362325668335, 0.01887456513941288, -0.026613999158143997, -0.007265414576977491, -0.005309009924530983, -0.008105720393359661, 0.022339211776852608, -0.003953747451305389, -0.01701296493411064, -0.037300966680049896, 0.04829820245504379, -0.08149675279855728, 0.07997988909482956, -0.017633497714996338, 0.0073472908698022366, 0.01242791023105383, 0.09376952797174454, 0.01213487982749939, 0.014522210694849491, 0.009894064627587795, 0.017555931583046913, 0.032009195536375046, 0.014323985204100609, 0.03480159491300583, -0.01446188148111105, -0.002436887240037322, 0.05257298797369003, 0.022339211776852608, 0.002622185507789254, 0.04357524961233139, 0.004929794929921627, -0.031526558101177216, 0.022856323048472404, -0.05698567256331444, 0.012393435463309288, -0.05174561217427254, 0.033612240105867386, 0.0364735871553421, -0.029751140624284744, -0.02004668489098549, -0.034094877541065216, 0.017254281789064407, 0.0027622366324067116, 0.014625633135437965, -0.016082163900136948, 0.025803856551647186, -0.06312206387519836, -0.07012030482292175, -0.0013520307838916779, -0.005235752556473017, -0.004240313079208136, 0.02096024714410305, 0.02513161301612854, 0.019443387165665627, 0.021563544869422913, 0.02950982190668583, 0.03199195861816406, -0.026338206604123116, -0.0339052677154541, 0.02657952532172203, -0.022925270721316338, 0.05864042788743973, 0.0581577904522419, 0.04374762251973152, -0.04078285023570061, -0.02828599140048027, 0.004447157960385084, -0.044506050646305084, -0.02694150246679783, -0.020563796162605286, 0.04326498508453369, -0.00991992000490427, -0.042161814868450165, -0.07708407193422318, 0.024286996573209763, -0.003210399765521288, 0.012738176621496677, 0.04640212655067444, -0.018633246421813965, -0.004947032313793898, 0.037783604115247726, -0.006545768119394779, -0.05257298797369003, -0.023338960483670235, 0.008911552838981152, 0.048470571637153625, -0.008575430139899254, 0.00641649030148983, 0.02289079688489437, 0.046712394803762436, -0.0019111573928967118, -0.02439041994512081, 0.03100944496691227, -0.01710776798427105, 0.0723266452550888, -0.02175315096974373, 0.02358027920126915, 0.021735914051532745, 0.0006345387664623559, -0.03256078064441681, 0.04753977060317993, -0.08480626344680786, 0.0012712321477010846, 0.006468201521784067, -0.042161814868450165, 0.07625669240951538, 0.053331419825553894, 0.009014975279569626, -0.04185154661536217, 0.07991094142198563, -0.004173519555479288, -0.005080619361251593, 0.009118396788835526, -0.019098646938800812, -0.022701188921928406, 0.005533091723918915, 0.022649478167295456, -0.036921750754117966, -0.014987611211836338, -0.006325995549559593, 0.026303730905056, -0.0012539951130747795, 0.018960749730467796, 0.006519912742078304, -0.0422307625412941, 0.012117642909288406, 0.011884942650794983, -0.028044672682881355, -0.026114124804735184, 0.017150860279798508, 0.00860990397632122, 0.06336338073015213, -0.022959744557738304, 0.050125326961278915, 0.06122598797082901, 0.008989118970930576, 0.046712394803762436, 0.008247925899922848, -0.04733292758464813, -0.010393938980996609, 0.05457248538732529, 0.04292024299502373, 0.031785111874341965, -0.06998240202665329, 0.02464897558093071, -0.019288254901766777, -0.01630624569952488, 0.0725334882736206, -0.03487054258584976, -0.000943728256970644, -0.025269508361816406, -0.026665709912776947, -0.04036916047334671, 0.04629870504140854, 0.05998491868376732, 0.08625417947769165, -0.008937408216297626, -0.05960570275783539, -0.012229683808982372, 0.028044672682881355, 0.012798506766557693, -0.002505835611373186, -0.11555715650320053, -0.059226490557193756, -0.02688979171216488, -0.005356411915272474, 0.040024418383836746, -0.04902215674519539, 0.025372931733727455, 0.059915971010923386, 0.03461198881268501, 0.016392430290579796, 0.02444213069975376, -0.13465580344200134, -0.02197723276913166, -0.027493087574839592, 0.015332352370023727, 0.013746543787419796, 0.0525040403008461, -0.06553524732589722, 0.004934104159474373, 0.01711638644337654, 0.0051064747385680676, 0.01599597930908203, 0.02716558426618576, 0.016495851799845695, -0.005257298704236746, -0.008489244617521763, -0.03016483038663864, 0.08273781836032867, -0.04709160700440407, -0.056813303381204605, 0.0009814342483878136, -0.01728013902902603, 0.016211440786719322, -0.08673681318759918, -0.02449384145438671, -0.02704492397606373, -0.06122598797082901, 0.04947032034397125, 0.02854454703629017, -0.007666176185011864, -0.015444393269717693, -0.025803856551647186, 0.01358279213309288, 0.04540237784385681, 0.02133946307003498, -0.054193273186683655, 0.03899019584059715, 0.0064035626128315926, -0.02042589895427227, 0.008648687973618507, 0.027337955310940742, 0.010333608835935593, 0.030888786539435387, 0.06536287814378738, 0.003535748925060034, -0.01045426819473505, 0.06839659810066223, 0.005920925177633762, -0.04309261590242386, 0.004128272645175457, 0.07184400409460068, -0.00573562690988183, -0.019581284373998642, -0.002755772788077593, 0.010221567936241627, -0.012738176621496677, -0.04078285023570061, 0.017409415915608406, -0.00007696071406826377, -0.0578475259244442, 0.008243616670370102, 0.007420548237860203, -0.012186591513454914, -0.04978058859705925, -0.04853951930999756, -0.04629870504140854, 0.09707903861999512, 0.011229935102164745, 0.021735914051532745, -0.008549574762582779, -0.038852300494909286, 0.020787877961993217, -0.019115883857011795, 0.028165332973003387, 0.05233167111873627, -0.05471038445830345, -0.04240313172340393, -0.006011419463902712, 0.019426150247454643, 0.034784357994794846, 0.0575372576713562, 0.03981757536530495, 0.07039609551429749, -0.014186088927090168, -0.06505261361598969, -0.004697095137089491, -0.03578410670161247, -0.05577908083796501, 0.010747297666966915, -0.015004848130047321, 0.03031996265053749, 0.0028053291607648134, -0.023700937628746033, -0.05870937928557396, 0.003572377609089017, -0.021356699988245964, 0.014410169795155525, -0.029596006497740746, -0.034732647240161896, -0.04350630193948746, -0.07329192012548447, 0.036542538553476334, -0.023183826357126236, 0.01565985567867756, -0.04329945892095566, 0.022201314568519592, -0.029578769579529762, -0.0026178762782365084, 0.059226490557193756, -0.012384817004203796, -0.0425410270690918, 0.012669228948652744, 0.07742881029844284, 0.014323985204100609, -0.011040328070521355, -0.0029712356626987457, -0.017667971551418304, 0.02999245934188366, 0.00302079226821661, 0.01419470738619566, -0.024355946108698845, -0.01968470588326454, -0.036887276917696, -0.029906274750828743, 0.0040076132863759995, 0.03588752821087837, -0.05460695922374725, -0.01553057786077261, -0.022804612293839455, -0.057778578251600266, -0.03433619439601898, 0.003757675876840949, 0.06163967400789261, -0.06715553253889084, -0.06084677204489708, -0.056537508964538574, 0.035163573920726776, -0.027251768857240677, 0.005395195446908474, -0.02325277402997017, 0.0520903505384922, 0.0011096347589045763, -0.004934104159474373, 0.07804933935403824, -0.004102416802197695, -0.057192519307136536, 0.03128523752093315, -0.002417495707049966, -0.029647719115018845, -0.04860846698284149, -0.01710776798427105, 0.026010701432824135, 0.03207814320921898, -0.005265917629003525, 0.01908141002058983, 0.06305311620235443, -0.0727403312921524, 0.03988652303814888, 0.054193273186683655, -0.005938162095844746, -0.005731317680329084, -0.018512586131691933, -0.04078285023570061, -0.0004874852020293474, -0.015702947974205017, -0.05870937928557396, 0.06774158775806427, 0.04471289739012718, 0.03011311963200569, -0.008696089498698711, 0.01877114363014698, -0.02925126627087593, -0.027251768857240677, -0.02235644869506359, -0.01658203825354576, 0.024993715807795525, -0.012669228948652744, 0.03331920877099037, 0.006636262405663729, 0.004671239294111729, -0.0934937372803688, 0.027251768857240677, 0.05853700637817383, -0.011462635360658169, 0.018322980031371117, 0.019822603091597557, 0.01248823944479227, 0.032595254480838776, -0.03533594310283661, 0.011626387014985085, -0.017633497714996338, -0.04309261590242386, 0.06063992530107498, -0.01604769006371498, 0.028561783954501152, -0.030492333695292473, 0.04436815530061722, -0.026769131422042847, 0.03011311963200569, -0.007330053485929966, 0.003249183064326644, -0.06712105870246887, 0.009144253097474575, 0.11197184771299362, -0.008390132337808609, 0.05267641320824623, -0.04378209635615349, 0.03528423234820366, 0.015030703507363796, -0.03192300722002983, 0.06250152736902237, -0.04143785685300827, 0.045471325516700745, -0.007618774194270372, 0.02192552201449871, -0.03202643245458603, -0.016064926981925964, 0.017823105677962303, -0.00770065002143383, -0.031888533383607864, 0.01390167698264122, 0.0058950698003172874, -0.05591697618365288, 0.0019111573928967118, 0.01902969926595688, -0.04405788704752922, -0.025700435042381287, 0.029182318598031998, 0.0527108870446682, -0.006498366128653288, 0.011919417418539524, -0.05822674185037613, -0.007920422591269016, 0.027544798329472542, -0.03230222314596176, -0.03416382521390915, 0.005714080762118101, 0.014349840581417084, -0.022752899676561356, -0.005365030374377966, 0.015901174396276474, 0.01521169301122427, 0.03998994454741478, -0.05415879935026169, -0.06660394370555878, 0.014280891977250576, 0.02540740557014942, -0.01796100102365017, -0.06198441609740257, -0.00039752936572767794, -0.0729471743106842, -0.03619779646396637, 0.004171364940702915, 0.03933493793010712, 0.019167594611644745, -0.003645635209977627, -0.02032247744500637, 0.027786117047071457, 0.02706216089427471, -0.02021905407309532, 0.016745788976550102, -0.03423277288675308, -0.056537508964538574, -0.034094877541065216, -0.001434984034858644, -0.03476712107658386, -0.05929543823003769, -0.007015477400273085, 0.02416633814573288, -0.010212949477136135, -0.04753977060317993, 0.01275541353970766, -0.007554135285317898, 0.014685963280498981, 0.028803102672100067, -0.0208051148802042, -0.013781017623841763, 0.011936654336750507, 0.027544798329472542, -0.04374762251973152, 0.020839588716626167, 0.013453514315187931, -0.034405142068862915, 0.03337091952562332, 0.019236542284488678, 0.047195032238960266, -0.004147664178162813, 0.013832729309797287, -0.00997163075953722, -0.0263554435223341, -0.05357273668050766, -0.013074299320578575, -0.03037167526781559, 0.016918160021305084, -0.027544798329472542, -0.008041081950068474, 0.012600280344486237, 0.10183646529912949, -0.01925377920269966, 0.04112759232521057, -0.00414550956338644, -0.025958990678191185, 0.03881782665848732, -0.0361633226275444, 0.005171113647520542, -0.026958739385008812, -0.017305994406342506, 0.04126548767089844, 0.02218407765030861, -0.06294968724250793, -0.02497647888958454, 0.05881280079483986, -0.007304198108613491, -0.03557726368308067, -0.052952203899621964, 0.021304989233613014, 0.03736991435289383, 0.023563042283058167, -0.023545803502202034, 0.042851295322179794, 0.01748698204755783, 0.019719179719686508, 0.0007966746925376356, 0.0262003093957901, 0.045161060988903046, 0.0018691421719267964, -0.011669480241835117, 0.015323733910918236, -0.04712608456611633, 0.04426473379135132, -0.015453011728823185, 0.05850253254175186, -0.011841850355267525, 0.045574747025966644, 0.09397637099027634, 0.029854563996195793, 0.04426473379135132, 0.03011311963200569, 0.012281395494937897, 0.01663374900817871, -0.00036709519918076694, 0.014186088927090168, -0.004167055711150169, 0.03685280308127403, -0.05233167111873627, -0.004014077130705118, -0.04950479418039322, 0.02747585065662861, -0.024304233491420746, 0.044885266572237015, -0.034939490258693695, 0.024235285818576813, 0.005998491775244474, -0.05315905064344406, -0.05336589366197586, 0.021460121497511864, -0.015461630187928677, -0.024735160171985626, -0.0233734343200922, 0.025200560688972473, -0.0525040403008461, 0.016185585409402847, 0.06115703657269478, -0.027406902983784676, 0.0024756707716733217, -0.01066973153501749, 0.021839337423443794, 0.002723453100770712, 0.013203577138483524, -0.05233167111873627, 0.08335835486650467, 0.0129708768799901, 0.08025568723678589, -0.017564550042152405, 0.006226882804185152, 0.0010439185425639153, -0.019926024600863457, -0.012953639961779118, 0.0002083258586935699, 0.0023119186516851187, -0.02657952532172203, -0.005395195446908474, 0.06057097762823105, 0.028044672682881355, 0.008769347332417965, -0.039059147238731384, 0.01098861638456583, -0.06022623926401138, 0.010695586912333965, 0.00021398176613729447, -0.009127015247941017, -0.030457859858870506, -0.03161274269223213, -0.0002006499853450805, 0.021029194816946983, 0.008148813620209694, 0.0032728840596973896, -0.05591697618365288, -0.00796782411634922, -0.06332890689373016, -0.02711387351155281, 0.0049728876911103725, 0.025838332250714302, 0.047470822930336, 0.0009561173501424491, 0.07935936003923416, -0.07687722146511078, -0.0263554435223341, -0.01631486415863037, 0.03774913027882576, 0.008200524374842644, -0.0024778253864496946, 0.016108019277453423, 0.034784357994794846, 0.0046195280738174915, 0.03947283327579498, 0.04209286719560623, 0.04636765271425247, -0.030716415494680405, -0.013875821605324745, -0.009799260646104813, 0.06374259293079376, -0.02854454703629017, 0.012798506766557693, -0.03578410670161247, 0.03142313286662102, 0.0012486084597185254, 0.04640212655067444, 0.028803102672100067, -0.04447157680988312, 0.011290265247225761, -0.022253025323152542, -0.006450964137911797, -0.07515352219343185, 0.0037404389586299658, -0.04016231745481491, -0.046057384461164474, 0.014806622639298439, -0.01716809719800949, 0.053917478770017624, -0.04367867484688759, 0.005662369541823864, 0.05081481114029884, -0.05019427835941315, 0.05736488848924637, -0.007924731820821762, 0.035646211355924606, -0.018788380548357964, 0.056158293038606644, -0.03936941176652908, -0.029906274750828743, 0.02277013659477234, -0.04326498508453369, 0.03533594310283661, -0.00011682138574542478, -0.04412683844566345, 0.008355657570064068, -0.07405034452676773, -0.04292024299502373, -0.03199195861816406, -0.061846520751714706, 0.020356951281428337, 0.010419794358313084, 0.06101914122700691, 0.026010701432824135, 0.014978992752730846, -0.07687722146511078, -0.02208065614104271, -0.047987934201955795, -0.04154127836227417, -0.005158185958862305, -0.02032247744500637, 0.015625381842255592, 0.005709771532565355, 0.013875821605324745, -0.017099149525165558, 0.0012572270352393389, 0.05453801155090332, 0.03469817340373993, -0.036921750754117966, 0.027200058102607727, -0.0025941752828657627, 0.026907028630375862, 0.016108019277453423, -0.014160232618451118, -0.02063274383544922, 0.05608934536576271, 0.003070348873734474, -0.056709881871938705, -0.05036664754152298, 0.03971415385603905, -0.04919452965259552, -0.020615506917238235, 0.026545049622654915, -0.01913312077522278, -0.033819083124399185, -0.03052680753171444, -0.020598269999027252, -0.03090602345764637, -0.024235285818576813, -0.001084856572560966, 0.08066937327384949, -0.011514346115291119, -0.052538514137268066, -0.011264408938586712, -0.06436312943696976, -0.025579776614904404, 0.011273028329014778, -0.03923151642084122, 0.08253097534179688, -0.007123209070414305, -0.016780264675617218, 0.052745360881090164, 0.024511078372597694, -0.038473084568977356, 0.019719179719686508, 0.0527108870446682, -0.0002457625523675233, -0.006998240482062101, -0.024235285818576813, 0.06177757307887077, -0.024200811982154846, 0.021236039698123932, -0.03528423234820366, 0.011790139600634575, 0.027182821184396744, 0.03471541032195091, -0.010557690635323524, 0.04195496812462807, 0.004229540005326271, 0.0342155359685421 ]
24,464
future_fstrings
TokenSyntaxError
null
class TokenSyntaxError(SyntaxError): def __init__(self, e, token): super(TokenSyntaxError, self).__init__(e) self.e = e self.token = token
(e, token)
[ -0.0073152827098965645, -0.011661037802696228, 0.0367804579436779, 0.034383997321128845, -0.0391421876847744, -0.00853522028774023, -0.0014511175686493516, 0.03976735100150108, -0.0019145635887980461, -0.04188596084713936, 0.054007191210985184, 0.03091086819767952, 0.015594358555972576, -0.011886791326105595, -0.030424628406763077, -0.003104110946878791, 0.027159886434674263, 0.029000645503401756, -0.041330259293317795, -0.01259878370910883, -0.0622037798166275, 0.04251112416386604, 0.00853522028774023, -0.01196493674069643, 0.017417753115296364, 0.07081714272499084, -0.004339243285357952, 0.011443966999650002, 0.04032305255532265, -0.07772867381572723, -0.05480600893497467, -0.02946951799094677, 0.001998135820031166, 0.056924618780612946, 0.01806028187274933, -0.06633680313825607, -0.045706406235694885, 0.03823917359113693, -0.06953208893537521, 0.02090824954211712, -0.060883987694978714, -0.02238433063030243, -0.08009040355682373, 0.020300451666116714, 0.021880725398659706, -0.029000645503401756, 0.027576660737395287, 0.005765397567301989, -0.06772606074810028, -0.04792920872569084, 0.01552489586174488, -0.012121227569878101, 0.022766374051570892, -0.03466184809803963, -0.0195710938423872, 0.037231966853141785, 0.03619002550840378, 0.04608844965696335, -0.03837810084223747, 0.034192975610494614, -0.0141530092805624, 0.09787283837795258, 0.00521837966516614, 0.013675454072654247, 0.010549635626375675, -0.028427578508853912, -0.01548148225992918, -0.012182007543742657, -0.025579610839486122, 0.03917691856622696, 0.028879085555672646, 0.0023378513287752867, -0.03900326415896416, 0.020178891718387604, 0.06720508635044098, -0.03816971182823181, -0.12468540668487549, 0.032768990844488144, 0.004845018032938242, 0.041364993900060654, -0.035738520324230194, -0.0011580721475183964, 0.008031615987420082, 0.03691938519477844, 0.0355127677321434, -0.04914480447769165, -0.04803340509533882, -0.022054383531212807, -0.08898162096738815, 0.03104979172348976, -0.05046459659934044, -0.002465923083946109, -0.07995148003101349, 0.019206415861845016, -0.013171849772334099, 0.015264411456882954, 0.034557655453681946, -0.0337241031229496, -0.006525145377963781, -0.018668079748749733, 0.07383877038955688, 0.06317625939846039, -0.03987154737114906, -0.06411400437355042, 0.005157599691301584, 0.02094298042356968, -0.004100465681403875, -0.04876276105642319, 0.026934131979942322, -0.014951829798519611, -0.03938530758023262, 0.0057610562071204185, 0.024937082082033157, 0.053972456604242325, -0.018893834203481674, -0.03085877001285553, -0.007567084394395351, 0.013814379461109638, 0.013163167051970959, -0.0042849755845963955, 0.0948859453201294, -0.021446585655212402, -0.02538858912885189, 0.07126864790916443, 0.028618600219488144, 0.009004092775285244, 0.004274121951311827, -0.03137974068522453, 0.042684782296419144, -0.04733877629041672, 0.003418863518163562, 0.02082142047584057, 0.003737957449629903, -0.06161334738135338, -0.024485575035214424, 0.00706348055973649, -0.029903659597039223, -0.011105337180197239, -0.07071295380592346, -0.0584527961909771, 0.04327521473169327, 0.048415448516607285, -0.006364512722939253, -0.047095660120248795, -0.08335515111684799, 0.04188596084713936, -0.05480600893497467, 0.04358779639005661, 0.010080763138830662, 0.005926030222326517, -0.007888348773121834, 0.0039702230133116245, 0.04522016644477844, -0.009394819848239422, 0.013371555134654045, 0.024989178404211998, -0.00923852901905775, -0.032960016280412674, -0.0018201378406956792, -0.013371555134654045, 0.03502652794122696, -0.07529748231172562, 0.005131551064550877, -0.00042437322554178536, 0.024728693068027496, 0.0321090966463089, 0.006182173267006874, -0.05907795950770378, -0.05022147670388222, -0.02104717493057251, -0.012268835678696632, 0.04459500312805176, 0.021602876484394073, 0.0649128183722496, -0.01828603632748127, 0.045567478984594345, -0.002148999832570553, 0.06817756593227386, -0.01589825749397278, 0.01603718288242817, 0.045706406235694885, 0.0006783459102734923, 0.01484763529151678, -0.026222139596939087, 0.031431835144758224, -0.008135809563100338, 0.020283086225390434, 0.02261008322238922, 0.02674311026930809, 0.01832076720893383, 0.009420868009328842, -0.042893171310424805, 0.0038052492309361696, -0.002587482798844576, -0.004515070468187332, 0.01410091295838356, -0.011617623269557953, -0.00318659795448184, 0.05640365183353424, 0.02785451151430607, -0.051367610692977905, 0.08592526614665985, -0.019970504567027092, -0.051263414323329926, 0.023391539230942726, 0.0665799230337143, 0.0041091484017670155, -0.03332469239830971, -0.06005043908953667, -0.013840427622199059, -0.0029651857912540436, -0.023495731875300407, 0.03381093218922615, 0.0898151695728302, 0.022054383531212807, -0.042788974940776825, 0.03525228053331375, -0.012234104797244072, 0.0036250806879252195, 0.01840759441256523, 0.1314927488565445, -0.016306350007653236, 0.0391421876847744, -0.051367610692977905, 0.02827128767967224, -0.014509005472064018, 0.0059043229557573795, -0.06435711681842804, -0.03757927939295769, 0.015273094177246094, -0.02964317426085472, -0.08411923795938492, -0.0097855469211936, 0.013414968736469746, -0.01739170402288437, 0.023096323013305664, 0.07543640583753586, -0.03952423110604286, -0.045567478984594345, -0.02236696518957615, -0.06585056334733963, 0.01469134446233511, -0.029782099649310112, 0.007636547088623047, 0.05348622053861618, 0.026291603222489357, 0.03249114379286766, 0.06064087152481079, -0.07779813557863235, 0.029174301773309708, 0.0026916766073554754, 0.011087970808148384, -0.012312250211834908, 0.033064208924770355, -0.01844232715666294, -0.023513097316026688, 0.016801271587610245, 0.01344101782888174, 0.05442396551370621, 0.006147441919893026, -0.01410091295838356, 0.020439377054572105, 0.014500322751700878, 0.03360254317522049, 0.00006624047819059342, -0.03681518882513046, -0.018841736018657684, 0.019119586795568466, 0.019119586795568466, 0.02387777715921402, 0.1267692893743515, 0.025683805346488953, 0.013736234046518803, 0.05004781857132912, -0.030320435762405396, -0.008391953073441982, -0.04195542261004448, 0.015611724928021431, -0.02394723892211914, -0.028965914621949196, 0.03844756260514259, -0.015698552131652832, -0.007541036233305931, 0.03349835053086281, -0.03504389524459839, 0.022766374051570892, 0.006842068396508694, -0.02519756741821766, -0.02122083120048046, 0.009507696144282818, -0.027455102652311325, 0.0028045533690601587, 0.02538858912885189, 0.013467065989971161, 0.0642181932926178, 0.02554487995803356, 0.015794064849615097, 0.05713300779461861, -0.01479553896933794, -0.017834529280662537, 0.04612318053841591, -0.02667364664375782, -0.003711908822879195, 0.015194948762655258, -0.022766374051570892, -0.041295528411865234, 0.049874164164066315, 0.02684730477631092, -0.01593298837542534, -0.04737350717186928, 0.0366068035364151, 0.08724505454301834, -0.0615091510117054, -0.0014793367590755224, -0.023391539230942726, 0.06678831577301025, 0.011383187025785446, -0.05056878924369812, 0.03275162726640701, 0.04504651203751564, -0.03235221654176712, -0.05157599598169327, 0.05946000665426254, -0.05654257535934448, 0.027107788249850273, 0.022957397624850273, -0.01549884770065546, -0.016480008140206337, -0.028826989233493805, 0.02941742166876793, 0.0024463867302984, -0.05577848479151726, -0.00741079356521368, -0.028514407575130463, -0.042684782296419144, -0.05063825100660324, 0.010089445859193802, 0.0474429726600647, 0.0013653746573254466, -0.024815522134304047, 0.012468541041016579, -0.00007862029451644048, 0.02806290052831173, 0.026100581511855125, 0.027316177263855934, -0.07112972438335419, -0.0238951425999403, -0.021863359957933426, 0.04348360374569893, 0.016410544514656067, -0.03335942327976227, 0.0023118029348552227, -0.015429385006427765, -0.04181649908423424, 0.05581321939826012, -0.04039251431822777, -0.009577158838510513, -0.015715917572379112, -0.013597308658063412, -0.03200490400195122, 0.035599593073129654, 0.003392814891412854, 0.01849442347884178, -0.01195625402033329, -0.02387777715921402, -0.03830863535404205, 0.0019514656160026789, -0.012972145341336727, 0.014951829798519611, 0.01412696111947298, -0.0005953164072707295, 0.012399078346788883, -0.002550580771639943, -0.029261130839586258, -0.024798156693577766, -0.01707044057548046, -0.021845994517207146, 0.022158576175570488, -0.05800129100680351, -0.048519641160964966, 0.02502390928566456, -0.002598336199298501, 0.01969265379011631, -0.013866475783288479, -0.027715586125850677, -0.009959203191101551, -0.022193308919668198, 0.007501963526010513, 0.058522261679172516, 0.08842591941356659, -0.0622037798166275, -0.04803340509533882, -0.007775472477078438, 0.023096323013305664, -0.056855157017707825, 0.008244344964623451, -0.015802746638655663, -0.06025882437825203, -0.073908232152462, 0.007154650054872036, -0.003394985804334283, 0.06644099950790405, -0.006642363499850035, 0.013779647648334503, 0.05473654717206955, -0.04504651203751564, 0.02241906151175499, 0.01943216845393181, -0.023009493947029114, 0.02679520659148693, -0.030059950426220894, -0.0420248880982399, -0.016731809824705124, -0.03546066954731941, -0.01819920726120472, -0.025683805346488953, 0.01958845928311348, -0.0010565916309133172, -0.013658088631927967, -0.025892192497849464, -0.05324310064315796, -0.008865167386829853, 0.02825392223894596, 0.02373885177075863, -0.049665775150060654, 0.013371555134654045, -0.052617937326431274, -0.02837548218667507, 0.017903991043567657, -0.015906941145658493, -0.045254897326231, -0.0005584143800660968, -0.0007982774986885488, 0.006928896531462669, 0.023408904671669006, -0.064565509557724, -0.059668391942977905, 0.003874711925163865, 0.017383022233843803, 0.07168542593717575, 0.0013241312699392438, 0.05053405836224556, 0.0816880464553833, 0.08231320977210999, 0.0420248880982399, -0.06286367028951645, -0.023513097316026688, 0.03664153441786766, -0.025562245398759842, -0.02241906151175499, -0.007276210002601147, 0.028427578508853912, 0.014291934669017792, -0.02519756741821766, 0.01667102985084057, -0.021672338247299194, -0.052861057221889496, 0.03768347203731537, 0.06053667515516281, 0.01603718288242817, -0.002444216050207615, 0.061161838471889496, -0.02554487995803356, -0.019970504567027092, -0.04792920872569084, 0.024971812963485718, 0.027507198974490166, 0.0280455332249403, 0.01193888857960701, -0.012485906481742859, -0.012590100057423115, 0.023183150216937065, -0.041677575558423996, -0.03261270001530647, -0.035877443850040436, 0.0239819698035717, 0.015264411456882954, -0.07126864790916443, 0.029052741825580597, -0.011652355082333088, -0.0013371554668992758, -0.03518281877040863, 0.007623523008078337, -0.01804291643202305, 0.017339607700705528, 0.02109927125275135, 0.011799963191151619, -0.05171492323279381, -0.009334039874374866, 0.03078930824995041, -0.01977948285639286, 0.02549278363585472, -0.01819920726120472, -0.020543571561574936, 0.018807005137205124, 0.015976402908563614, -0.03740562126040459, 0.03111925534904003, -0.0021262075752019882, 0.004970918875187635, 0.014074863865971565, -0.02241906151175499, -0.006438316777348518, -0.07585318386554718, 0.05675096437335014, -0.03365464136004448, 0.052791595458984375, 0.05202750489115715, 0.004966577515006065, -0.0236346572637558, -0.006789971608668566, 0.03778766840696335, 0.037301428616046906, 0.014031450264155865, -0.006433975417166948, 0.010271785780787468, -0.002915259450674057, 0.05473654717206955, 0.03339415788650513, 0.06644099950790405, 0.004992626141756773, 0.0019851115066558123, 0.00843970850110054, -0.05018674582242966, -0.008665462024509907, -0.010141543112695217, 0.015585675835609436, 0.011808645911514759, 0.014509005472064018, 0.035773251205682755, 0.020560937002301216, -0.00522706238552928, 0.01707044057548046, -0.013232629746198654, -0.012581417337059975, 0.05779290199279785, 0.020178891718387604, 0.04178176820278168, -0.0018689787248149514, 0.02403406798839569, 0.008522195741534233, 0.040218859910964966, 0.021967554464936256, -0.02094298042356968, -0.06501701474189758, -0.04535909369587898, -0.06213431805372238, 0.001775638316757977, -0.06310679018497467, 0.01840759441256523, 0.03344625234603882, -0.00404402706772089, -0.049769967794418335, 0.024659231305122375, -0.020560937002301216, -0.038482293486595154, 0.0036467877216637135, 0.03504389524459839, 0.04233746975660324, 0.031657591462135315, 0.021984919905662537, 0.021741801872849464, 0.027403004467487335, -0.03261270001530647, -0.02542332001030445, 0.0061951978132128716, -0.03782239928841591, -0.005279159173369408, -0.07078241556882858, 0.03619002550840378, -0.008491805754601955, 0.0003896419075317681, 0.023547830060124397, 0.024329284206032753, 0.0030281362123787403, 0.03216119483113289, -0.009143018163740635, 0.08536956459283829, -0.008721900172531605, -0.01691414788365364, 0.023617291823029518, 0.0194842666387558, -0.06192592903971672, -0.025996387004852295, 0.0118173286318779, 0.04501178115606308, -0.02552751451730728, 0.01128767617046833, 0.002934795804321766, 0.0167752243578434, -0.012572734616696835, -0.028774891048669815, -0.006156125105917454, -0.021932823583483696, 0.00741947628557682, 0.0226274486631155, 0.02938268892467022, -0.02240169607102871, -0.04612318053841591, -0.0033190110698342323, -0.04685254022479057, 0.024485575035214424, 0.0047798966988921165, 0.011357138864696026, 0.052617937326431274, -0.03893379867076874, 0.04042724519968033, 0.01832076720893383, -0.04195542261004448, 0.002763309981673956, 0.040045201778411865, 0.007445524912327528, -0.03217855840921402, 0.012789805419743061, -0.059703122824430466, 0.030494092032313347, 0.024294553324580193, 0.04164284095168114, 0.01979684829711914, 0.020526204258203506, -0.0034991796128451824, -0.0001587329461472109, -0.051159221678972244, 0.017487214878201485, -0.005322573706507683, 0.040218859910964966, 0.0367804579436779, 0.00625597732141614, -0.07231058925390244, -0.041399724781513214, -0.02379094809293747, 0.0036120563745498657, -0.03375883400440216, -0.100998654961586, -0.06835122406482697, 0.02382567897439003, 0.027715586125850677, -0.02257535234093666, 0.030059950426220894, 0.034557655453681946, 0.012451175600290298, -0.008839119225740433, -0.05907795950770378, 0.027350908145308495, -0.06275948137044907, -0.02248852513730526, -0.02528439462184906, -0.031536031514406204, 0.0481375977396965, 0.034470826387405396, 0.07724243402481079, 0.07369984686374664, -0.009334039874374866, 0.027298811823129654, -0.03250850737094879, 0.005179306957870722, -0.041399724781513214, -0.009698718786239624, 0.058209680020809174, -0.013067656196653843, 0.0019948796834796667, 0.014335349202156067, -0.014995243400335312, 0.0002862619876395911, 0.004115660209208727, 0.014526370912790298, 0.010124177671968937, -0.0072284541092813015, 0.009620573371648788, 0.021446585655212402, -0.008083712309598923, -0.037266697734594345, -0.02684730477631092, -0.020144160836935043, -0.013206581585109234, -0.030546188354492188, 0.027576660737395287, -0.046887271106243134, 0.03761401027441025, -0.0038356392178684473, -0.003056355519220233, 0.015594358555972576, -0.016783906146883965, -0.0701572522521019, -0.09940101206302643, 0.06776078790426254, -0.01124426256865263, 0.07119918614625931, 0.05348622053861618, -0.08050718158483505, -0.01964055746793747, 0.017226731404662132, -0.04952685162425041, 0.041434455662965775, -0.06977520138025284, 0.01839022897183895, -0.031188717111945152, -0.07112972438335419, -0.01751326397061348, 0.045602213591337204, 0.012572734616696835, 0.016662346199154854, -0.02952161431312561, -0.00025058098253794014, 0.02816709317266941, -0.032977379858493805, 0.01976211555302143, -0.02785451151430607, 0.006420951336622238, 0.0044043646194040775, 0.02396460436284542, -0.020300451666116714, 0.014891049824655056, -0.01598508656024933, -0.005313890520483255, -0.011322407983243465, 0.028965914621949196, 0.015672504901885986, -0.0036532997619360685, 0.020543571561574936, -0.030320435762405396, -0.048276521265506744, 0.010983777232468128, 0.07210220396518707, 0.035981640219688416, -0.013857793062925339, -0.01193020585924387, -0.049804702401161194, 0.019032759591937065, -0.016323717311024666, 0.0058999815955758095, 0.07363037765026093, -0.03200490400195122, 0.01806028187274933, -0.03250850737094879, -0.034679215401411057, -0.05438923463225365, 0.00705479783937335, 0.02816709317266941, 0.07925685495138168, -0.0083876121789217, 0.011079288087785244, -0.056924618780612946, -0.045602213591337204, -0.004467315040528774, 0.03089350089430809, -0.023461000993847847, 0.04504651203751564, -0.000844947702717036, 0.07508909702301025, -0.041260797530412674, -0.02123819664120674, -0.024416111409664154, 0.06223851069808006, -0.020526204258203506, -0.030476726591587067, 0.03893379867076874, 0.027211982756853104, 0.0004827109514735639, -0.016453959047794342, -0.017730334773659706, 0.002433362416923046, 0.004293658304959536, 0.013232629746198654, -0.02528439462184906, -0.007449866272509098, 0.02226277068257332, 0.0209256149828434 ]
24,465
future_fstrings
__init__
null
def __init__(self, e, token): super(TokenSyntaxError, self).__init__(e) self.e = e self.token = token
(self, e, token)
[ -0.0031386667396873236, 0.0007487318362109363, 0.04297592118382454, 0.04383406415581703, -0.04410867020487785, 0.010194767266511917, 0.013447137549519539, 0.04829642176628113, -0.013901954516768456, -0.02282666601240635, 0.05313635990023613, 0.025795849040150642, 0.013472882099449635, 0.0011112982174381614, -0.02426835149526596, 0.00047948872088454664, 0.02104172483086586, 0.033141572028398514, -0.041705865412950516, -0.0031772830989211798, -0.07297667860984802, 0.014519819058477879, 0.0038895439356565475, -0.013309834524989128, 0.01457130815833807, 0.059246353805065155, -0.017574816942214966, 0.01889635995030403, 0.029108289629220963, -0.07064252346754074, -0.04867400601506233, -0.03496083989739418, 0.008813153021037579, 0.059109050780534744, 0.029348570853471756, -0.05890309810638428, -0.0537199005484581, 0.023925092071294785, -0.08739352226257324, 0.011911057867109776, -0.03913142904639244, -0.01911947876214981, -0.07503622770309448, 0.03593912720680237, 0.01036639604717493, -0.015412290580570698, 0.026156270876526833, 0.002135709160938859, -0.03710620477795601, -0.0353555902838707, -0.00037168420385569334, 0.004020411055535078, 0.027117393910884857, -0.029743317514657974, -0.03264385089278221, 0.04874265566468239, 0.04548170417547226, 0.047163669019937515, -0.030275367200374603, 0.045996591448783875, -0.024731749668717384, 0.0810089185833931, 0.011130144819617271, 0.024817563593387604, 0.006195809692144394, -0.02050967328250408, -0.008821734227240086, -0.011542054824531078, -0.0066506266593933105, 0.044657886028289795, 0.04517277330160141, -0.002074566436931491, -0.03604210540652275, 0.012082686647772789, 0.06274759024381638, -0.043044570833444595, -0.13119326531887054, 0.048193443566560745, -0.0037329322658479214, 0.04572198539972305, -0.03988659754395485, 0.017437513917684555, -0.009559739381074905, 0.04307889565825462, 0.030412672087550163, -0.04225507751107216, -0.035029493272304535, -0.006796511355787516, -0.0880800411105156, 0.03271250054240227, -0.05402883142232895, -0.000953077687881887, -0.08615779131650925, 0.010975679382681847, -0.015257824212312698, 0.000977213028818369, 0.02641371451318264, -0.034943677484989166, 0.005457804538309574, -0.00297132832929492, 0.06003585085272789, 0.05238119140267372, -0.046305522322654724, -0.06628314405679703, 0.00701533816754818, 0.013395649380981922, -0.014880240894854069, -0.04846804961562157, 0.029485873878002167, -0.023444531485438347, -0.027323348447680473, 0.012451688759028912, 0.03624805808067322, 0.07572274655103683, -0.022895317524671555, -0.030000761151313782, 0.0005803207750432193, 0.007032501045614481, 0.03944035992026329, -0.0013258345425128937, 0.09624958038330078, -0.016433482989668846, -0.024371327832341194, 0.06631747633218765, 0.025727197527885437, 0.014734355732798576, 0.010126114822924137, -0.03173421695828438, 0.03727783262729645, -0.06394898891448975, 0.024645933881402016, 0.015274987556040287, 0.017557654529809952, -0.05670624598860741, -0.028078515082597733, -0.010460792109370232, -0.029331408441066742, -0.016553623601794243, -0.08341173082590103, -0.04709501564502716, 0.032523710280656815, 0.04060743749141693, -0.017222978174686432, -0.06449820846319199, -0.08670700341463089, 0.04723231866955757, -0.06137455627322197, 0.047300972044467926, 0.018518777564167976, 0.003142957342788577, 0.011052912101149559, 0.006689243018627167, 0.04781585931777954, -0.02135065570473671, 0.01398776937276125, 0.017557654529809952, -0.008010786958038807, -0.018638916313648224, 0.006045633926987648, -0.0015478796558454633, 0.030790254473686218, -0.05838821083307266, -0.00433577923104167, 0.0013022355269640684, 0.02574435994029045, 0.03521828353404999, -0.00041861404315568507, -0.048330746591091156, -0.045104119926691055, -0.011542054824531078, -0.012305804528295994, 0.03353631868958473, -0.004762706812471151, 0.06034478172659874, -0.027477813884615898, 0.053925853222608566, 0.010177603922784328, 0.0714663416147232, -0.029434384778141975, 0.02162526361644268, 0.03521828353404999, 0.01667376421391964, 0.01978883147239685, -0.011679357849061489, 0.03545856475830078, -0.005535037722438574, 0.017557654529809952, 0.02198568359017372, 0.0192911084741354, 0.016965534538030624, 0.02363332360982895, -0.02739199995994568, 0.0054749674163758755, -0.0076975636184215546, -0.015189172700047493, 0.013163949362933636, -0.002814716659486294, -0.004724089987576008, 0.043902717530727386, 0.03506381809711456, -0.040985021740198135, 0.0765465646982193, -0.02677413448691368, -0.044829513877630234, 0.01937692239880562, 0.046442825347185135, 0.009920160286128521, 0.001456701778806746, -0.05193495750427246, -0.006453252863138914, -0.010649584233760834, -0.024337003007531166, 0.032214775681495667, 0.07524218410253525, 0.022998295724391937, -0.046992041170597076, 0.01387620996683836, -0.00483564892783761, 0.016304761171340942, 0.038341935724020004, 0.13043808937072754, -0.010555188171565533, 0.02251773327589035, -0.06676370650529861, 0.016493553295731544, -0.010743980295956135, 0.0119711272418499, -0.0727020725607872, -0.04579063504934311, 0.024611609056591988, -0.04500114172697067, -0.06957842409610748, -0.010349232703447342, 0.010280581191182137, -0.009439598768949509, 0.02588166482746601, 0.06628314405679703, -0.031236490234732628, -0.08650105446577072, -0.043799739331007004, -0.045687656849622726, 0.004198476206511259, -0.03460042178630829, 0.001476009958423674, 0.05653461441397667, 0.025486916303634644, 0.03178570419549942, 0.05845686048269272, -0.07256477326154709, 0.029794806614518166, -0.0043701049871742725, 0.010126114822924137, -0.018501613289117813, 0.03384525328874588, -0.03456609323620796, -0.032609522342681885, 0.042152099311351776, 0.016845393925905228, 0.06120292842388153, 0.005981273017823696, -0.01251175906509161, 0.00045964409946464, 0.029537362977862358, 0.02703157812356949, 0.003078596433624625, -0.0241310466080904, -0.01698269695043564, 0.0035462856758385897, 0.017025602981448174, 0.005775318015366793, 0.1183554083108902, 0.012597573921084404, 0.013713162392377853, 0.05814792960882187, -0.025572732090950012, -0.03303859755396843, -0.04002390056848526, -0.0007127969875000417, -0.038788169622421265, -0.017265884205698967, 0.050390295684337616, -0.004196330904960632, -0.007560260593891144, 0.0482620932161808, -0.05090518295764923, 0.021608099341392517, 0.005238977260887623, -0.011215959675610065, -0.029554525390267372, -0.014039257541298866, -0.04256400838494301, 0.01692262664437294, 0.026705482974648476, 0.02332439087331295, 0.07867476344108582, 0.027117393910884857, 0.0159443411976099, 0.06714129447937012, -0.02062981389462948, -0.017240140587091446, 0.05341096594929695, -0.038650866597890854, -0.007603168021887541, 0.018879197537899017, -0.017694957554340363, -0.019805993884801865, 0.03899412602186203, 0.05684354901313782, -0.0011509874602779746, -0.0494978241622448, 0.051591698080301285, 0.09171857684850693, -0.06542500108480453, 0.015927176922559738, -0.02341020479798317, 0.05653461441397667, 0.012125593610107899, -0.05444074049592018, 0.03441162779927254, 0.03830760717391968, -0.030155228450894356, -0.05313635990023613, 0.05626000836491585, -0.06161483749747276, 0.03638536483049393, 0.012880762107670307, -0.01915380358695984, -0.03137379512190819, -0.026448039337992668, 0.024319838732481003, 0.006114285439252853, -0.04033283144235611, -0.010126114822924137, -0.03844491019845009, -0.05509293079376221, -0.07057387381792068, -0.01589285209774971, 0.04091637209057808, -0.009774276055395603, -0.035527218133211136, 0.01506045088171959, -0.00432934332638979, 0.020389534533023834, 0.026756972074508667, 0.023135598748922348, -0.0740751102566719, -0.03401688113808632, -0.04266698658466339, 0.04235805571079254, 0.023530345410108566, -0.028902335092425346, 0.005595107562839985, -0.002782536204904318, -0.017832260578870773, 0.0537199005484581, -0.0385822169482708, -0.024783238768577576, 0.003917433321475983, -0.011001423001289368, -0.03231775388121605, 0.0318886823952198, 0.020200742408633232, 0.008482767269015312, -0.008551418781280518, -0.005625142715871334, -0.03875384479761124, -0.004659729078412056, -0.0013118897331878543, 0.026619669049978256, 0.011087237857282162, 0.007285654079169035, -0.00256370916031301, -0.011816661804914474, -0.027683768421411514, -0.024680260568857193, -0.029382897540926933, -0.03030969388782978, 0.021058887243270874, -0.050424620509147644, -0.05420045927166939, 0.023290064185857773, 0.009920160286128521, 0.017360281199216843, -0.009851508773863316, -0.033862415701150894, -0.020749954506754875, -0.02287815511226654, 0.010555188171565533, 0.07126039266586304, 0.078400157392025, -0.06576825678348541, -0.04050445929169655, 0.0013440701877698302, 0.018192682415246964, -0.042323727160692215, 0.014193723909556866, -0.0192911084741354, -0.04551602900028229, -0.08320577442646027, 0.004314325749874115, 0.012571829371154308, 0.05780467018485069, 0.004011829383671284, 0.017403187230229378, 0.060001522302627563, -0.03528693690896034, 0.018879197537899017, 0.039646316319704056, -0.014888822101056576, 0.043628111481666565, -0.024422816932201385, -0.048776980489492416, -0.009439598768949509, -0.03782704845070839, -0.032832641154527664, -0.03080741874873638, 0.032798316329717636, -0.008259649388492107, -0.009894415736198425, -0.023221412673592567, -0.06480713933706284, 0.002250486286357045, 0.013901954516768456, 0.013962024822831154, -0.04352513328194618, 0.008199579082429409, -0.04301024600863457, -0.01906798966228962, 0.009147829376161098, -0.017085673287510872, -0.0636400580406189, 0.013232601806521416, 0.007410085294395685, 0.010100371204316616, 0.022929644212126732, -0.039817944169044495, -0.05670624598860741, -0.007684691809117794, 0.011173052713274956, 0.06494443863630295, 0.006839418318122625, 0.03710620477795601, 0.08135218173265457, 0.07023061811923981, 0.03441162779927254, -0.05958961322903633, -0.03587047755718231, 0.03720918297767639, -0.02176256664097309, -0.028370285406708717, -0.0092422254383564, 0.02869638055562973, 0.014047839678823948, -0.03432581573724747, 0.01714574359357357, -0.016236109659075737, -0.046133894473314285, 0.04331917688250542, 0.07565409690141678, 0.007277072407305241, -0.012786366045475006, 0.052484169602394104, -0.02153944782912731, -0.03913142904639244, -0.034720562398433685, 0.0336221344769001, 0.018965011462569237, 0.027821073308587074, 0.008238195441663265, -0.0217110775411129, -0.018415799364447594, 0.01566973328590393, -0.050115689635276794, -0.026224922388792038, -0.03528693690896034, 0.012091267853975296, 0.011044330894947052, -0.07991049438714981, 0.02641371451318264, -0.013919117860496044, -0.013189693912863731, -0.03652266785502434, 0.01934259571135044, -0.008856059983372688, 0.011953964829444885, 0.029520200565457344, 0.017883749678730965, -0.06597421318292618, -0.0011885312851518393, 0.03365645930171013, -0.028318796306848526, 0.044211648404598236, -0.025092169642448425, -0.022620711475610733, 0.019720179960131645, 0.0052132331766188145, -0.0303955078125, 0.026310736313462257, 0.004260691814124584, 0.003861654084175825, -0.006483288016170263, -0.01700844056904316, -0.007873483933508396, -0.07558543980121613, 0.048948612064123154, -0.03331320360302925, 0.022191638126969337, 0.03338185325264931, -0.008787408471107483, -0.011181633919477463, 0.010692491196095943, 0.03271250054240227, 0.025212310254573822, 0.022105824202299118, -0.006569102872163057, 0.015395127236843109, -0.00833688210695982, 0.06003585085272789, 0.01826133392751217, 0.056603267788887024, 0.013704581186175346, 0.00045481702545657754, 0.01987464725971222, -0.0636400580406189, -0.01808970421552658, -0.006466125138103962, 0.014828751794993877, 0.01085553877055645, 0.016905464231967926, 0.020526837557554245, 0.02354750782251358, -0.024234024807810783, 0.002595889614894986, -0.013593022711575031, -0.018604591488838196, 0.07036791741847992, 0.026018967851996422, 0.03617940843105316, 0.003956050146371126, 0.0241310466080904, 0.013747488148510456, 0.03358780965209007, 0.01739460602402687, -0.026482366025447845, -0.07798825204372406, -0.03276399150490761, -0.062472980469465256, 0.004119097720831633, -0.053205013275146484, 0.011868149973452091, 0.04050445929169655, -0.02596747875213623, -0.055333212018013, 0.02099023573100567, -0.012211408466100693, -0.037003226578235626, 0.005921203177422285, 0.010864119976758957, 0.04706069082021713, 0.02986345812678337, 0.024096721783280373, 0.015970084816217422, 0.004355087876319885, -0.013043809682130814, -0.011919639073312283, -0.0014449022710323334, -0.024508630856871605, -0.02037237025797367, -0.0753108337521553, 0.04781585931777954, 0.0002503370924387127, -0.022552059963345528, 0.022586386650800705, 0.024628771468997, -0.005801062565296888, 0.02788972482085228, -0.01233154907822609, 0.07311398535966873, -0.009842927567660809, -0.012709132395684719, 0.02658534236252308, 0.021110376343131065, -0.04434895142912865, -0.026516690850257874, -0.00047734336112625897, 0.03532126173377037, -0.006466125138103962, 0.020046275109052658, 0.002825443632900715, 0.010005975142121315, -0.006779348477721214, -0.03499516844749451, -0.021058887243270874, -0.011559218168258667, -0.000731568899936974, 0.0006768621387891471, 0.039817944169044495, -0.037003226578235626, -0.0395776629447937, -0.0023320100735872984, -0.04033283144235611, 0.02059548906981945, -0.010469373315572739, 0.016081644222140312, 0.028970986604690552, -0.04036715626716614, 0.03875384479761124, 0.028353122994303703, -0.03106486238539219, 0.006350275594741106, 0.030687278136610985, 0.007701854687184095, -0.02560705691576004, 0.00928513240069151, -0.05440641567111015, 0.03954333811998367, 0.019479898735880852, 0.055264562368392944, 0.022414756938815117, 0.03182002902030945, -0.0007894937298260629, 0.009722786955535412, -0.043937042355537415, 0.023358715698122978, -0.020269393920898438, 0.027649443596601486, 0.04712934419512749, -0.01745467633008957, -0.06933814287185669, -0.005766736809164286, 0.00038965162821114063, 0.0032931328751146793, -0.030704440549016, -0.10572350770235062, -0.05577944964170456, 0.02068130299448967, 0.026448039337992668, -0.020492510870099068, 0.03259235993027687, 0.03169988840818405, 0.003372511360794306, -0.0078477393835783, -0.03231775388121605, 0.014545563608407974, -0.052621472626924515, -0.015120521187782288, -0.028507588431239128, -0.03468623384833336, 0.04294159263372421, 0.04235805571079254, 0.06834269315004349, 0.06195809319615364, -0.006079959683120251, 0.041122324764728546, -0.04074474051594734, 0.007873483933508396, -0.0337422750890255, 0.002411388559266925, 0.0617864653468132, -0.026842785999178886, -0.004921463783830404, 0.02610478177666664, -0.024337003007531166, 0.012254315428435802, -0.00013918045442551374, 0.0017892330652102828, 0.01739460602402687, -0.006380310747772455, -0.004561042413115501, 0.03164840117096901, -0.012528922408819199, -0.03868519142270088, -0.025057844817638397, -0.0028726416639983654, -0.005522165447473526, -0.03518395870923996, 0.02964034117758274, -0.053822875022888184, 0.04513844475150108, 0.0044451928697526455, -0.01482017058879137, 0.018638916313648224, -0.009594065137207508, -0.0771644338965416, -0.0989956483244896, 0.08045970648527145, -0.003887398401275277, 0.07833150774240494, 0.06394898891448975, -0.08382363617420197, -0.03130514174699783, 0.014202306047081947, -0.048193443566560745, 0.0320088230073452, -0.06164916232228279, 0.018329985439777374, -0.04026418179273605, -0.08334307372570038, -0.013284089975059032, 0.041705865412950516, 0.02148796059191227, 0.014262375421822071, -0.027289021760225296, -0.01081263180822134, 0.027048742398619652, -0.05183197930455208, 0.022981133311986923, -0.025366777554154396, -0.024234024807810783, 0.006285914685577154, 0.029331408441066742, -0.02421686239540577, 0.014811588451266289, -0.024937704205513, -0.007268491201102734, 0.009388110600411892, 0.013798977248370647, 0.005835388321429491, -0.0054835486225783825, 0.019840320572257042, -0.03621373325586319, -0.05073355510830879, 0.009370947256684303, 0.0713290423154831, 0.05015001446008682, -0.012237153016030788, -0.03133946657180786, -0.03707187995314598, 0.029176941141486168, -0.04029850661754608, -0.00003026973718078807, 0.058079276233911514, -0.02198568359017372, 0.016708090901374817, -0.037758395075798035, -0.03902845084667206, -0.03255803510546684, 0.017265884205698967, 0.0320088230073452, 0.078400157392025, 0.00813950877636671, 0.009431017562747002, -0.05921202898025513, -0.01530931331217289, 0.0065047419629991055, 0.03460042178630829, -0.029520200565457344, 0.03271250054240227, 0.001890065148472786, 0.07263342291116714, -0.05179765447974205, -0.0123143857344985, -0.0073757595382630825, 0.08210735023021698, -0.046271197497844696, -0.020526837557554245, 0.03844491019845009, 0.03398255631327629, -0.003932450897991657, -0.005612270440906286, -0.02037237025797367, -0.002754646586254239, 0.005586526356637478, 0.01906798966228962, -0.0060928319580852985, 0.007362887263298035, 0.03566452115774155, 0.010323488153517246 ]
24,466
future_fstrings
_find_expr
Roughly Python/ast.c:fstring_find_expr
def _find_expr(s, start, level, parts, exprs): """Roughly Python/ast.c:fstring_find_expr""" i = start nested_depth = 0 quote_char = None triple_quoted = None def _check_end(): if i == len(s): raise SyntaxError("f-string: expecting '}'") if level >= 2: raise SyntaxError("f-string: expressions nested too deeply") parts.append(s[i]) i += 1 while i < len(s): ch = s[i] if ch == '\\': raise SyntaxError( 'f-string expression part cannot include a backslash', ) if quote_char is not None: if ch == quote_char: if triple_quoted: if i + 2 < len(s) and s[i + 1] == ch and s[i + 2] == ch: i += 2 quote_char = None triple_quoted = None else: quote_char = None triple_quoted = None elif ch in ('"', "'"): quote_char = ch if i + 2 < len(s) and s[i + 1] == ch and s[i + 2] == ch: triple_quoted = True i += 2 else: triple_quoted = False elif ch in ('[', '{', '('): nested_depth += 1 elif nested_depth and ch in (']', '}', ')'): nested_depth -= 1 elif ch == '#': raise SyntaxError("f-string expression cannot include '#'") elif nested_depth == 0 and ch in ('!', ':', '}'): if ch == '!' and i + 1 < len(s) and s[i + 1] == '=': # Allow != at top level as `=` isn't a valid conversion pass else: break i += 1 if quote_char is not None: raise SyntaxError('f-string: unterminated string') elif nested_depth: raise SyntaxError("f-string: mismatched '(', '{', or '['") _check_end() exprs.append(s[start + 1:i]) if s[i] == '!': parts.append(s[i]) i += 1 _check_end() parts.append(s[i]) i += 1 _check_end() if s[i] == ':': parts.append(s[i]) i += 1 _check_end() i = _fstring_parse(s, i, level + 1, parts, exprs) _check_end() if s[i] != '}': raise SyntaxError("f-string: expecting '}'") parts.append(s[i]) i += 1 return i
(s, start, level, parts, exprs)
[ -0.009338672272861004, -0.02478211373090744, 0.027533559128642082, 0.018190110102295876, -0.01581125520169735, -0.010222382843494415, 0.04066024348139763, 0.0362846814095974, -0.06473539024591446, -0.0618693009018898, 0.04375562071800232, 0.07726975530385971, -0.03638022020459175, 0.0022044999059289694, 0.015008751302957535, 0.0169385839253664, 0.03997238352894783, -0.0088992053642869, -0.01897350698709488, 0.0009129686513915658, -0.06924470514059067, 0.023425498977303505, 0.06125786900520325, 0.04616313427686691, 0.023253533989191055, -0.0020193983800709248, 0.04429062455892563, 0.006114322692155838, 0.003002227982506156, -0.042953114956617355, -0.005832490511238575, -0.02388407289981842, -0.007700224872678518, 0.0008275831351056695, 0.00009217759361490607, -0.03840558975934982, -0.017530908808112144, 0.0015918734716251493, -0.003157474333420396, -0.007757546845823526, -0.02510693669319153, 0.02569926157593727, -0.056672126054763794, -0.015104287303984165, -0.05533462017774582, 0.0026368016842752695, -0.055640336126089096, -0.016374919563531876, -0.029214996844530106, 0.04719492793083191, 0.03884505480527878, -0.017425820231437683, -0.0296353567391634, -0.04776814579963684, 0.027801061049103737, -0.00543123809620738, -0.012190430425107479, -0.007886520586907864, 0.04761528596282005, -0.0009416295797564089, 0.03903612866997719, 0.02533622458577156, -0.015352682210505009, 0.051283881068229675, -0.08017405867576599, -0.022871388122439384, 0.04230346903204918, -0.01679527945816517, -0.0470038540661335, -0.0127445412799716, -0.06118144094944, 0.01992887072265148, 0.008507506921887398, -0.05372960865497589, -0.022202633321285248, -0.02439996786415577, -0.03622736036777496, 0.030839115381240845, -0.0006556177977472544, 0.01529536023736, -0.022718530148267746, 0.006047447212040424, -0.01328909769654274, -0.0312785804271698, 0.02422800287604332, 0.06064643710851669, 0.017779303714632988, 0.049984585493803024, -0.0038668313063681126, 0.03683879226446152, 0.0018474330427125096, -0.004824582487344742, 0.0016193401534110308, 0.0071891057305037975, 0.0233299620449543, 0.0001442747307009995, 0.02873731590807438, 0.002249879762530327, 0.026081407442688942, 0.006119099445641041, 0.03431663662195206, 0.05552569031715393, -0.0516660250723362, -0.04039274528622627, 0.008335541002452374, 0.013508831150829792, -0.021591201424598694, -0.026482660323381424, 0.033380381762981415, -0.10722993314266205, -0.0016193401534110308, -0.05304174870252609, -0.04516955837607384, 0.04119524732232094, -0.0059614647179841995, 0.012142662890255451, 0.0039695329032838345, -0.00574650801718235, 0.05636641010642052, -0.07249293476343155, 0.08323121815919876, -0.018935292959213257, -0.0813969224691391, 0.028355171903967857, 0.04245632886886597, -0.019833333790302277, -0.009095055051147938, 0.030170360580086708, 0.06366538256406784, -0.026119621470570564, 0.03418288379907608, 0.018858863040804863, 0.0023991551715880632, -0.0035276776179671288, -0.06454432010650635, 0.051818884909152985, -0.022909602150321007, 0.005311817862093449, -0.08246692270040512, -0.02837427891790867, 0.023769428953528404, -0.04409955069422722, -0.04650706797838211, -0.004901011940091848, -0.04757707193493843, 0.06656968593597412, 0.010193722322583199, 0.017846178263425827, -0.011349711567163467, 0.010967566631734371, -0.019565831869840622, -0.021094413474202156, -0.014827231876552105, -0.00022868999803904444, 0.06649325788021088, -0.024686576798558235, 0.04291490092873573, -0.01833341456949711, 0.039895955473184586, 0.033380381762981415, 0.041309893131256104, 0.0013566153356805444, -0.06874791532754898, 0.029062138870358467, 0.032310374081134796, 0.04287668690085411, -0.05766570568084717, -0.03599807620048523, -0.061754658818244934, 0.014349550940096378, -0.025355331599712372, 0.07130828499794006, -0.033743418753147125, 0.041653823107481, -0.025603726506233215, 0.00709834648296237, -0.023291748017072678, 0.07841619104146957, -0.08132048696279526, -0.0496024414896965, 0.003038054099306464, -0.015868578106164932, 0.010652296245098114, -0.024189788848161697, 0.008068040013313293, 0.037182725965976715, 0.002983120735734701, 0.02512604370713234, 0.03691522404551506, -0.024285325780510902, -0.10860565304756165, -0.042800258845090866, 0.014951429329812527, 0.03232948109507561, -0.006730531807988882, 0.022355491295456886, 0.018467165529727936, 0.019021276384592056, 0.002961625112220645, 0.0019429692765697837, -0.09133269637823105, 0.003112094709649682, 0.016604207456111908, -0.02696034125983715, -0.028278741985559464, -0.0010879194596782327, -0.022107098251581192, 0.02189691737294197, -0.03848201781511307, 0.010298811830580235, -0.07650545984506607, 0.006109545938670635, 0.01347061712294817, 0.03920809552073479, 0.026157835498452187, 0.01291650626808405, 0.07042935490608215, 0.05067244917154312, 0.01679527945816517, 0.0114930160343647, 0.08261978626251221, 0.04230346903204918, 0.06171644479036331, -0.018553147092461586, 0.0088992053642869, -0.011722302995622158, -0.004924895707517862, 0.017358943819999695, 0.038596659898757935, -0.011273282580077648, 0.0044257184490561485, -0.04646885022521019, 0.07512973994016647, 0.01446419395506382, 0.07558831572532654, 0.024743899703025818, 0.006171644199639559, -0.0048675742000341415, 0.07004720717668533, -0.02441907674074173, -0.061219654977321625, -0.018467165529727936, -0.055793192237615585, -0.022546565160155296, 0.05013744533061981, -0.012658558785915375, 0.05250674486160278, 0.022909602150321007, -0.03225305303931236, 0.010241490788757801, 0.00121092249173671, 0.02747623808681965, 0.0423416830599308, -0.004571411292999983, 0.00840719323605299, -0.02422800287604332, 0.042227040976285934, 0.07532081007957458, 0.09622415155172348, 0.007122230250388384, 0.008889651857316494, -0.0684421956539154, 0.015085180290043354, -0.03150786831974983, -0.05032851919531822, -0.0705057829618454, -0.01492276880890131, -0.018342968076467514, 0.0034679672680795193, 0.02136191539466381, 0.057780347764492035, -0.005827713757753372, -0.003542007878422737, 0.05984393134713173, -0.026635518297553062, -0.03597896546125412, 0.0009428237681277096, 0.0271323062479496, 0.02766731008887291, -0.04497848451137543, 0.003871608292683959, 0.0419977530837059, -0.02890928089618683, 0.07149936258792877, 0.025278901681303978, 0.021782273426651955, 0.011149085126817226, -0.033724311739206314, 0.015218931250274181, 0.026673732325434685, -0.03907434269785881, -0.03848201781511307, 0.014578837901353836, -0.013308205641806126, 0.04379383474588394, 0.0338771678507328, 0.0002409305889159441, -0.01897350698709488, -0.008125361986458302, -0.03691522404551506, 0.0018748997244983912, 0.02969267964363098, 0.029558928683400154, 0.040583815425634384, 0.018409842625260353, -0.04173025116324425, -0.0499463714659214, -0.035367533564567566, 0.01374767255038023, -0.07746082544326782, -0.002565149450674653, -0.006310171913355589, -0.018553147092461586, 0.0074422769248485565, 0.00038542921538464725, 0.055831409990787506, -0.035692356526851654, -0.0827726423740387, 0.023272641003131866, 0.008082370273768902, 0.04933493956923485, -0.01837162859737873, 0.035558607429265976, 0.005311817862093449, 0.0014031892642378807, -0.03737379610538483, -0.0008831135928630829, 0.0011583775049075484, 0.008923089131712914, 0.004182101227343082, -0.0007708584307692945, -0.04398490861058235, 0.04853243753314018, -0.00647258386015892, 0.025794798508286476, -0.040622029453516006, -0.012849630787968636, -0.017502248287200928, -0.05701605975627899, -0.02245102822780609, 0.0966062992811203, 0.006525128614157438, 0.03171804919838905, 0.011235067620873451, -0.00460962625220418, -0.036246467381715775, 0.046583496034145355, -0.021782273426651955, 0.055831409990787506, 0.006033116951584816, -0.01321266870945692, -0.09156198054552078, -0.01409160252660513, -0.04941137135028839, -0.019814226776361465, 0.04853243753314018, -0.019393866881728172, 0.009658719412982464, -0.006329279392957687, -0.042227040976285934, 0.07826332747936249, 0.002448117360472679, -0.005287933629006147, -0.008163576014339924, 0.0012031601509079337, -0.04944958537817001, -0.016250723972916603, 0.014330443926155567, -0.0043039098381996155, -0.0114930160343647, 0.02787748910486698, -0.00014352834841702133, 0.01166498102247715, -0.08246692270040512, -0.02661641128361225, -0.03225305303931236, 0.003783237189054489, 0.008617373183369637, 0.006090438459068537, -0.07287508249282837, 0.01726340688765049, 0.011999358423054218, -0.06893898546695709, 0.01824743114411831, 0.005378693342208862, 0.002536488464102149, -0.003329439787194133, 0.029176782816648483, 0.060493580996990204, 0.05204817280173302, -0.0499463714659214, 0.010222382843494415, 0.06293930858373642, -0.0024158740416169167, -0.02204977534711361, -0.004953556694090366, 0.04031631350517273, -0.03362877294421196, -0.07195793092250824, 0.043679192662239075, -0.0208269115537405, 0.017034120857715607, 0.026807483285665512, -0.005603203549981117, 0.03397270664572716, 0.008631703443825245, 0.025374438613653183, -0.013327312655746937, -0.045819204300642014, 0.0271323062479496, 0.0338771678507328, -0.0516660250723362, -0.04899100959300995, -0.0459720641374588, -0.030170360580086708, -0.05422639846801758, -0.04516955837607384, -0.0075330366380512714, -0.0039169881492853165, -0.019241008907556534, -0.04822671785950661, -0.08858124911785126, -0.0073610711842775345, 0.07314258068799973, -0.053806040436029434, 0.035692356526851654, -0.047271355986595154, 0.0037927906960248947, 0.027094092220067978, 0.05430282652378082, -0.07451830804347992, 0.012964274734258652, -0.023425498977303505, -0.021037090569734573, -0.0023358622565865517, -0.04119524732232094, 0.0074709379114210606, -0.002474389970302582, 0.05839177966117859, 0.04035452753305435, 0.009367333725094795, 0.039360951632261276, 0.02531711757183075, 0.03242501616477966, 0.020387444645166397, -0.004901011940091848, 0.0014963371213525534, 0.04677456617355347, -0.083307646214962, 0.03206197917461395, 0.006429592147469521, -0.018935292959213257, -0.040813103318214417, 0.04417598247528076, 0.02115173451602459, -0.018467165529727936, 0.027246950194239616, 0.06637861579656601, 0.031947337090969086, 0.025355331599712372, -0.00968737993389368, 0.05311817675828934, 0.02747623808681965, 0.05663391202688217, -0.027953919023275375, -0.01969958283007145, 0.03666682913899422, -0.017702873796224594, -0.018639130517840385, -0.0251451525837183, -0.010088631883263588, -0.016011882573366165, -0.039552025496959686, 0.009462869726121426, 0.03813808783888817, 0.005636641290038824, -0.017378050833940506, -0.017330283299088478, 0.023463713005185127, -0.02623426541686058, -0.0463159941136837, -0.06699004769325256, -0.03857755288481712, -0.04046917334198952, 0.02313889004290104, -0.03041875548660755, 0.023425498977303505, -0.044252410531044006, -0.00529271038249135, -0.007743216585367918, -0.03762219101190567, 0.02856535091996193, 0.05304174870252609, -0.014378211461007595, 0.015992775559425354, 0.002221218775957823, -0.01021282933652401, 0.026119621470570564, -0.012448378838598728, -0.041883111000061035, 0.013699904084205627, 0.03286448493599892, -0.013871869072318077, 0.035539500415325165, -0.01598322205245495, 0.008082370273768902, 0.07574117183685303, 0.019537171348929405, 0.002591421827673912, -0.03745022416114807, 0.01291650626808405, -0.04788278788328171, 0.01537178922444582, -0.012534361332654953, -0.026635518297553062, 0.03169894218444824, 0.07902762293815613, 0.032081086188554764, -0.03924630954861641, -0.005488560069352388, -0.016499117016792297, -0.060684651136398315, -0.014798571355640888, -0.001772198243997991, -0.0037927906960248947, -0.011426140554249287, 0.007795761339366436, 0.010680957697331905, 0.01651822403073311, -0.05567855015397072, 0.03796612098813057, 0.03638022020459175, 0.03985774144530296, -0.03993416950106621, 0.0052258349023759365, 0.029788214713335037, 0.04922029748558998, -0.021667631343007088, -0.009243136271834373, 0.03487074747681618, 0.02745712921023369, 0.06125786900520325, 0.007996387779712677, -0.016078757122159004, -0.03343770280480385, 0.006061777472496033, 0.02910035476088524, -0.0750150978565216, 0.021228164434432983, -0.008884875103831291, 0.030628934502601624, 0.05464675650000572, 0.03280716389417648, 0.03164162114262581, 0.03615093231201172, -0.0513220950961113, -0.0194416344165802, 0.027762845158576965, -0.08223763853311539, -0.01576348766684532, -0.01878243498504162, 0.014960982836782932, 0.015878131613135338, -0.04555170238018036, -0.07039114087820053, -0.023215318098664284, 0.0381954088807106, -0.030265897512435913, 0.01294516772031784, 0.005541104823350906, -0.023081567138433456, 0.04088953137397766, 0.0900333970785141, 0.0016097865300253034, -0.0198715478181839, -0.06167823076248169, -0.03378163278102875, -0.022642100229859352, 0.05059602111577988, 0.0246292557567358, 0.060684651136398315, -0.01971868984401226, -0.030151253566145897, 0.022164419293403625, 0.012658558785915375, 0.0393991656601429, 0.02568015456199646, 0.041692037135362625, -0.06611111015081406, -0.016155187040567398, 0.040239885449409485, -0.047271355986595154, 0.07298972457647324, 0.007117453496903181, -0.02965446375310421, -0.017683766782283783, -0.029043031856417656, 0.03920809552073479, -0.010671403259038925, -0.06202216073870659, -0.055602122098207474, 0.024285325780510902, -0.000323927728459239, -0.0254890825599432, 0.0349089615046978, -0.0040268548764288425, 0.05422639846801758, 0.07176686078310013, 0.00993577390909195, 0.00024511030642315745, 0.07979191094636917, 0.012610790319740772, -0.014693481847643852, -0.02296692505478859, -0.04669813811779022, 0.023769428953528404, -0.016202954575419426, 0.004430495668202639, -0.00723209697753191, 0.014311335980892181, -0.035749681293964386, 0.03561592847108841, -0.06259537488222122, -0.008106254041194916, 0.010872029699385166, 0.007967726327478886, 0.035883430391550064, -0.0572071298956871, -0.04505491629242897, -0.06454432010650635, -0.023253533989191055, 0.05155138298869133, -0.01176051702350378, -0.053079962730407715, -0.03414466977119446, -0.031183045357465744, 0.030304111540317535, -0.026883911341428757, -0.04142453521490097, 0.03452681377530098, -0.007824421860277653, -0.023253533989191055, -0.0470038540661335, 0.011722302995622158, -0.0004388698434922844, -0.00030377553775906563, -0.004031631629914045, -0.07719331979751587, 0.056175339967012405, 0.028718208894133568, 0.038634877651929855, 0.07451830804347992, 0.014263568446040154, 0.0014151312643662095, 0.00002364149986533448, 0.07688760757446289, -0.003028500359505415, -0.03280716389417648, -0.0034679672680795193, 0.020349230617284775, 0.03125947341322899, -0.011149085126817226, -0.0319664441049099, 0.0893455371260643, -0.0661875456571579, 0.003871608292683959, 0.05969107523560524, 0.04310597479343414, 0.031565189361572266, -0.018018145114183426, -0.013957852497696877, -0.02046387270092964, 0.01156944502145052, -0.008813222870230675, -0.020922448486089706, 0.0012360007967799902, 0.046736352145671844, -0.006415261887013912, 0.002381242113187909, 0.022890495136380196, -0.0012897399719804525, -0.0020349230617284775, 0.00854572094976902, -0.041118819266557693, 0.016336705535650253, 0.03477520868182182, 0.02766731008887291, -0.0025603726971894503, 0.05499069020152092, -0.0734483003616333, -0.050366733223199844, -0.01841939613223076, -0.02749534510076046, -0.000589339470025152, -0.011091763153672218, -0.009587067179381847, -0.013709457591176033, 0.03710629418492317, 0.0470038540661335, -0.016040543094277382, 0.03521467745304108, 0.017167871817946434, -0.01393874455243349, -0.0063722706399858, 0.01056631375104189, -0.039513811469078064, -0.013556599617004395, -0.02155298739671707, -0.044252410531044006, 0.008646034635603428, -0.03907434269785881, 0.02403693087399006, -0.0317944772541523, -0.0456281341612339, 0.012008911930024624, -0.03467967361211777, 0.03746933490037918, 0.004007747396826744, 0.013222222216427326, 0.022126205265522003, 0.024552825838327408, -0.007790984585881233, 0.017425820231437683, -0.0014043834526091814, 0.0000998652758426033, 0.014626606367528439, -0.05006101727485657, 0.02820231392979622, -0.0018151894910261035, -0.039513811469078064, -0.01567750610411167, 0.06607289612293243, 0.015448218211531639, -0.005555435083806515, -0.03305555507540703, -0.044787414371967316, 0.018390735611319542, -0.018830202519893646, -0.05659569799900055, -0.01474124938249588, 0.020215479657053947, 0.06313037872314453, -0.058124277740716934, -0.012228645384311676, -0.05227745696902275, 0.04795921966433525, 0.0008831135928630829, 0.021075306460261345, -0.030265897512435913, 0.00931478850543499, -0.013881422579288483, 0.0056796325370669365, -0.027973026037216187, 0.03511913865804672, -0.05636641010642052, -0.026883911341428757, -0.003857277799397707, 0.03242501616477966, -0.023769428953528404, 0.028622671961784363, -0.0535767525434494, 0.019174134358763695, 0.02913856878876686, 0.056175339967012405, -0.03584521636366844, 0.006458253134042025, -0.02224084921181202, 0.03349502384662628 ]
24,467
future_fstrings
_find_literal
Roughly Python/ast.c:fstring_find_literal
def _find_literal(s, start, level, parts, exprs): """Roughly Python/ast.c:fstring_find_literal""" i = start parse_expr = True while i < len(s): ch = s[i] if ch in ('{', '}'): if level == 0: if i + 1 < len(s) and s[i + 1] == ch: i += 2 parse_expr = False break elif ch == '}': raise SyntaxError("f-string: single '}' is not allowed") break i += 1 parts.append(s[start:i]) return i, parse_expr and i < len(s)
(s, start, level, parts, exprs)
[ -0.003711549798026681, -0.0586068294942379, 0.039268799126148224, -0.0038296340499073267, -0.017059698700904846, 0.008066774345934391, 0.07253614068031311, 0.026913944631814957, -0.06968359649181366, -0.058162275701761246, 0.01604093424975872, 0.08846593648195267, -0.03945402801036835, -0.0199307668954134, -0.005607843864709139, -0.015012905932962894, 0.020634641870856285, -0.03241528198122978, -0.05990343913435936, 0.004357540048658848, -0.05845864489674568, 0.06727559864521027, 0.10069112479686737, 0.0724620446562767, 0.024116968736052513, -0.009215201251208782, 0.03700898960232735, 0.005751396995037794, 0.023061158135533333, -0.030136950314044952, -0.004116740543395281, -0.013688510283827782, -0.02213500626385212, -0.0009116798173636198, -0.02091248705983162, -0.026562007144093513, -0.002115097129717469, 0.022116484120488167, 0.00220308150164783, 0.002348950132727623, -0.0011339560151100159, 0.040083810687065125, -0.0520867258310318, -0.03460099920630455, -0.05008624121546745, 0.0024103077594190836, -0.022820357233285904, -0.02978501282632351, 0.004362170584499836, -0.0011993653606623411, 0.044566381722688675, -0.004257978871464729, -0.056272927671670914, -0.065904900431633, -0.01131756417453289, -0.007034115958958864, 0.004068117588758469, 0.07305478304624557, 0.03856492415070534, 0.015235181897878647, 0.03254494071006775, -0.011400917544960976, -0.04819689318537712, 0.040009718388319016, -0.042528849095106125, -0.04949350282549858, 0.030322181060910225, -0.01913427747786045, -0.035212256014347076, -0.0260433629155159, -0.030637072399258614, 0.014679491519927979, -0.012030700221657753, -0.012558606453239918, -0.03274869546294212, -0.03452690690755844, -0.012679005973041058, 0.004834507592022419, 0.002373261610046029, 0.0284884013235569, -0.017596866935491562, -0.05086420848965645, 0.0020282703917473555, -0.012521560303866863, -0.008214958012104034, 0.039268799126148224, 0.006524733267724514, 0.006932239513844252, -0.0195417832583189, 0.038713108748197556, -0.008983663283288479, 0.03613840788602829, 0.006737747695297003, 0.008895679377019405, 0.024542998522520065, 0.003989395219832659, 0.038231510668992996, 0.009349493309855461, 0.025006074458360672, 0.01026175171136856, 0.04452933371067047, 0.025784041732549667, -0.059310704469680786, -0.037453543394804, 0.022079437971115112, 0.018134035170078278, -0.0036999727599322796, -0.02465413697063923, 0.02733997441828251, -0.05760658532381058, 0.0264508705586195, -0.06327462941408157, -0.030655594542622566, 0.04430706053972244, -0.007057270035147667, 0.04778938740491867, -0.012104792520403862, -0.01853227987885475, 0.019412122666835785, -0.060347992926836014, 0.09083688259124756, -0.04226952791213989, -0.05708794295787811, 0.01640213280916214, 0.064348965883255, -0.018624894320964813, -0.0018198865000158548, 0.016994869336485863, 0.04860439896583557, -0.004626123700290918, 0.05527268722653389, 0.0354345329105854, -0.019319508224725723, -0.012160361744463444, -0.06942427158355713, 0.024950504302978516, -0.010002429597079754, 0.0020479511003941298, -0.10202478617429733, -0.025043120607733727, 0.010039475746452808, -0.029266368597745895, -0.05223491042852402, 0.025746995583176613, -0.035601239651441574, 0.0447516106069088, 0.004468678031116724, 0.04371432214975357, 0.015772350132465363, 0.015763089060783386, -0.013179127126932144, -0.04441819712519646, -0.015744565054774284, 0.026191547513008118, 0.02791418880224228, -0.03191516175866127, 0.04534434899687767, -0.022968541830778122, 0.007617590948939323, 0.0033920276910066605, 0.06734969466924667, 0.03052593395113945, -0.07420320808887482, 0.01604093424975872, 0.013558848761022091, 0.0545317642390728, -0.04275112599134445, -0.026432346552610397, -0.050345562398433685, -0.010113568045198917, -0.015475981868803501, 0.05308697000145912, -0.02458004467189312, 0.04808575287461281, 0.001817571115680039, 0.01399413961917162, -0.030803779140114784, 0.06938722729682922, -0.052383095026016235, -0.044899795204401016, 0.013669987209141254, -0.005116983782500029, 0.008900309912860394, -0.04575185477733612, -0.00675627076998353, 0.026024840772151947, 0.010641474276781082, 0.015124044381082058, 0.02230171300470829, -0.03611988574266434, -0.07683347910642624, -0.038305602967739105, -0.0005287742824293673, -0.0024774535559117794, -0.04197315871715546, 0.01584644243121147, 0.01204922329634428, 0.0075249760411679745, -0.06812766194343567, -0.009826460853219032, -0.08127900213003159, -0.0126141756772995, -0.012364114634692669, -0.010761873796582222, 0.009900553151965141, 0.005218860227614641, 0.01273457519710064, 0.0415286049246788, -0.03923175111413002, -0.008117713034152985, -0.08098263293504715, 0.007751883007586002, 0.02189420722424984, 0.06901676207780838, 0.038935381919145584, 0.02539505809545517, -0.020301228389143944, 0.014781367965042591, -0.008969771675765514, -0.02311672642827034, 0.06660877168178558, 0.02467265911400318, 0.07427730411291122, 0.005621735937893391, 0.00040721698314882815, -0.00445941649377346, -0.0033688738476485014, 0.011901038698852062, 0.03158174455165863, 0.005890319589525461, -0.0014748952817171812, -0.048715535551309586, 0.11432407051324844, 0.0024658767506480217, -0.003973187413066626, 0.023987308144569397, 0.01853227987885475, 0.01904166303575039, 0.0626818910241127, -0.002627953188493848, -0.04734483361244202, 0.021375562995672226, -0.053605612367391586, -0.010845227167010307, 0.028284648433327675, 0.02352423220872879, 0.02987762726843357, 0.023413095623254776, -0.0378425270318985, 0.017254190519452095, -0.04167678952217102, 0.040750641375780106, 0.034712135791778564, 0.009706061333417892, 0.016652192920446396, -0.07216567546129227, 0.015929795801639557, 0.05560610070824623, 0.07175817340612411, 0.012808666564524174, -0.025672903284430504, -0.022449897602200508, 0.023913215845823288, 0.007140623405575752, -0.03110014647245407, -0.0643119215965271, -0.02459856867790222, 0.025524718686938286, 0.025358011946082115, 0.015124044381082058, 0.06501579284667969, -0.014503522776067257, 0.009386539459228516, 0.025580286979675293, 0.016818899661302567, -0.028877384960651398, 0.040972914546728134, 0.010835965164005756, 0.08001943677663803, -0.017207883298397064, 0.02052350342273712, 0.04564071446657181, -0.021634884178638458, 0.03208186849951744, 0.03900947421789169, 0.026728715747594833, 0.03265608102083206, -0.03241528198122978, -0.02098657935857773, -0.005066045559942722, -0.05179035663604736, -0.03369336947798729, 0.004688638728111982, 0.01285497471690178, 0.03606431558728218, 0.07535164058208466, 0.05249423161149025, -0.02913670800626278, -0.011762116104364395, -0.06079254671931267, 0.010150614194571972, -0.033489614725112915, 0.052938785403966904, -0.005214229691773653, -0.015049952082335949, -0.07146180421113968, -0.08394631743431091, -0.02035679668188095, -0.014105278067290783, -0.03108162432909012, -0.007409207057207823, -0.00492249196395278, 0.03417496755719185, -0.03200777620077133, -0.017300499603152275, 0.03498997911810875, -0.07638892531394958, -0.04263998568058014, 0.010354367084801197, -0.012827189639210701, 0.05849568918347359, -0.05264241620898247, 0.005056784022599459, -0.01168802473694086, -0.005630997475236654, -0.05656929686665535, 0.007311961147934198, 0.01884717121720314, 0.0027784525882452726, 0.002433461369946599, -0.018837910145521164, -0.05342038348317146, 0.044158875942230225, -0.02491346001625061, 0.009502308443188667, -0.02880329266190529, -0.014818414114415646, -0.007992682047188282, -0.056272927671670914, -0.03608283773064613, 0.09809790551662445, -0.011336087249219418, 0.03665705397725105, 0.026098933070898056, 0.008275158703327179, -0.010845227167010307, 0.06894267350435257, -0.014299769885838032, 0.05419835075736046, -0.03345257043838501, -0.023061158135533333, -0.06983178108930588, -0.004843769129365683, -0.038787201046943665, -0.012280761264264584, 0.04893781244754791, 0.03069264069199562, 0.006469164043664932, -0.004829877056181431, -0.022449897602200508, 0.08409450203180313, -0.01339214202016592, -0.03208186849951744, -0.04753006249666214, -0.008909571915864944, -0.025617333129048347, -0.005306844599545002, 0.02352423220872879, 0.0012167306849732995, -0.017596866935491562, 0.00486229220405221, 0.018791601061820984, -0.011419440619647503, -0.051234666258096695, -0.03128537908196449, -0.05338333919644356, 0.0012086268980056047, 0.015086998231709003, -0.037397973239421844, -0.0675349235534668, 0.007534237578511238, 0.0016844369238242507, -0.012354852631688118, 0.02743258886039257, -0.03254494071006775, 0.0010697043035179377, -0.04845621436834335, 0.01424420066177845, 0.011789901182055473, 0.07501821964979172, -0.001114854123443365, -0.0014748952817171812, 0.04849326238036156, -0.03378598392009735, -0.02678428404033184, 0.012521560303866863, 0.057273171842098236, -0.033341433852910995, -0.037249788641929626, 0.05056783929467201, 0.009016078896820545, 0.014170108363032341, -0.005783812142908573, -0.014660968445241451, 0.01805994287133217, 0.006237626075744629, 0.07646302133798599, -0.020579073578119278, -0.03452690690755844, -0.010363628156483173, 0.011826947331428528, -0.04060245677828789, -0.022746266797184944, -0.0936523824930191, -0.015475981868803501, -0.08735455572605133, -0.011984393000602722, 0.025339487940073013, -0.05745840072631836, -0.0321744829416275, -0.042121343314647675, -0.0928373634815216, 0.038787201046943665, 0.08335357904434204, -0.056680433452129364, 0.028340216726064682, -0.024431860074400902, -0.017596866935491562, 0.016346562653779984, 0.024431860074400902, -0.10543301701545715, -0.0195417832583189, 0.0011901039397343993, -0.054013121873140335, 0.00026004581013694406, -0.031044578179717064, -0.0016578100621700287, 0.0000663862083456479, 0.030248088762164116, 0.029433075338602066, 0.05975525453686714, 0.06931313127279282, -0.00022777523554395884, 0.0447516106069088, -0.005955150350928307, -0.0016589678125455976, -0.015614904463291168, 0.038453783839941025, -0.027414066717028618, 0.024802321568131447, -0.0016635985812172294, -0.021375562995672226, -0.0346195213496685, 0.05330924689769745, 0.0354345329105854, -0.030562980100512505, 0.019986337050795555, 0.05182740464806557, 0.03662000596523285, -0.004917861428111792, -0.007071162108331919, 0.056865666061639786, 0.043121587485075, 0.05827341601252556, -0.016994869336485863, -0.07272136956453323, 0.030803779140114784, -0.0199307668954134, -0.017893236130475998, -0.010650735348463058, -0.01659662462770939, 0.007048008497804403, -0.02750668115913868, -0.03084082528948784, 0.059866394847631454, 0.008423342369496822, 0.01033584401011467, 0.005427244119346142, 0.02343161776661873, -0.01480915304273367, -0.02458004467189312, -0.061978019773960114, -0.035008504986763, -0.036916375160217285, 0.012688267044723034, -0.030396273359656334, 0.0019923821091651917, -0.015716779977083206, -0.022987065836787224, 0.00005697998858522624, -0.040491316467523575, 0.033823031932115555, 0.05282764881849289, -0.010808181017637253, 0.038787201046943665, -0.01783766597509384, -0.006751640234142542, 0.020208612084388733, 0.014753583818674088, -0.0116046704351902, 0.009006817825138569, 0.023950261995196342, -0.008164020255208015, 0.006376549135893583, -0.007918589748442173, -0.02474675141274929, 0.09372647106647491, -0.0034267583396285772, 0.0009672488668002188, -0.018402617424726486, 0.01875455491244793, 0.0005921577103435993, -0.011132333427667618, 0.01765243522822857, -0.04352909326553345, 0.06501579284667969, 0.09728289395570755, 0.02611745521426201, -0.04412182793021202, -0.022598082199692726, -0.013401403091847897, -0.07146180421113968, -0.00675627076998353, -0.022894449532032013, 0.019634399563074112, -0.01668923906981945, 0.005876427516341209, -0.04467751830816269, -0.021505223587155342, -0.0337674617767334, 0.042936354875564575, 0.022116484120488167, -0.004387639928609133, -0.06571966409683228, -0.045788899064064026, 0.0398615337908268, 0.0415286049246788, -0.020449411123991013, 0.025358011946082115, 0.026728715747594833, 0.010317320935428143, 0.04238066449761391, 0.047011420130729675, 0.008029728196561337, -0.0014679491287097335, 0.022523989900946617, -0.016939299181103706, -0.06705332547426224, 0.012827189639210701, 0.006608086638152599, 0.06638649851083755, 0.027210313826799393, -0.007335115224123001, 0.022987065836787224, -0.0009516200516372919, -0.05304992198944092, -0.041565652936697006, -0.0033271971624344587, -0.06442305445671082, 0.047418925911188126, -0.0004917282494716346, 0.024302199482917786, 0.02613597922027111, -0.01868046447634697, -0.07335115224123001, -0.03841673955321312, 0.045566625893116, -0.039898581802845, 0.005769920069724321, 0.02532096579670906, -0.0057421354576945305, 0.03352666273713112, 0.07320296764373779, -0.021671930328011513, -0.006890562828630209, -0.06386736780405045, -0.021764546632766724, -0.018310002982616425, 0.025265395641326904, 0.0248208437114954, 0.03743501752614975, -0.003966241143643856, -0.012197406962513924, -0.016031671315431595, 0.054976318031549454, 0.054013121873140335, -0.012604913674294949, 0.03758320212364197, -0.07509231567382812, 0.02548767253756523, 0.03197072818875313, 0.012641959823668003, 0.0626818910241127, -0.01637434773147106, -0.0063209799118340015, 0.047900523990392685, 0.005547644104808569, 0.05086420848965645, -0.0248208437114954, -0.028951477259397507, -0.06668286770582199, 0.02133851684629917, -0.048567354679107666, 0.0010355524718761444, 0.023301957175135612, -0.003885203041136265, 0.08972550183534622, 0.030951963737607002, 0.0063209799118340015, -0.007460145279765129, 0.06831289082765579, -0.0033318279311060905, 0.0009232566808350384, -0.04330681636929512, -0.02019008994102478, 0.025654379278421402, -0.006094072945415974, -0.0016126602422446012, 0.030155472457408905, 0.011271256022155285, -0.03949107602238655, 0.03436020016670227, -0.04030608758330345, -0.0040032872930169106, 0.008404819294810295, 0.004792830906808376, 0.027488159015774727, -0.030544456094503403, -0.017800619825720787, -0.07787076383829117, -0.043751370161771774, 0.05079011619091034, -0.008043620735406876, -0.040009718388319016, -0.012308545410633087, 0.018698986619710922, 0.014957336708903313, -0.04371432214975357, -0.021116239950060844, 0.06131118908524513, -0.030951963737607002, -0.04704846441745758, -0.0464186817407608, 0.0059088426642119884, 0.023339003324508667, 0.027469635009765625, 0.009418955072760582, -0.045566625893116, 0.048715535551309586, 0.02270922064781189, 0.024728229269385338, 0.08209401369094849, 0.001869667088612914, 0.03021104261279106, 0.0007160304230637848, 0.05560610070824623, -0.0056356280110776424, -0.040972914546728134, 0.015716779977083206, 0.025598810985684395, 0.01726345345377922, -0.03863901644945145, -0.03623102232813835, 0.07009109854698181, -0.0716470330953598, -0.03421201556921005, 0.02793271094560623, 0.009164263494312763, 0.012382637709379196, 0.008358512073755264, -0.030248088762164116, -0.0232093408703804, 0.021857161074876785, -0.026876898482441902, 0.0038296340499073267, 0.008923463523387909, 0.007886175066232681, -0.028506925329566002, 0.017281975597143173, 0.009863507002592087, -0.004383008927106857, -0.04430706053972244, 0.0038365800864994526, -0.014744322746992111, 0.0130309434607625, 0.061496417969465256, -0.007955635897815228, -0.019356554374098778, 0.0765371099114418, -0.030396273359656334, -0.01726345345377922, -0.0101691372692585, -0.02498755045235157, 0.006946131587028503, -0.0029729444067925215, 0.010650735348463058, -0.008177912794053555, 0.06383032351732254, 0.0447516106069088, 0.005705089308321476, 0.022486943751573563, 0.01623542606830597, -0.020282704383134842, -0.011780639179050922, -0.013549587689340115, -0.03506407141685486, 0.043010447174310684, -0.0297109205275774, -0.011613932438194752, 0.01913427747786045, -0.04275112599134445, 0.07831531763076782, 0.008076035417616367, -0.03265608102083206, -0.016077980399131775, -0.035212256014347076, 0.004788200370967388, 0.006626609712839127, 0.015809396281838417, 0.015892749652266502, 0.027117697522044182, -0.005561536177992821, 0.008455757983028889, 0.008520588278770447, 0.013067989610135555, -0.007261022925376892, -0.01985667459666729, 0.03469361364841461, -0.022746266797184944, -0.0070665315724909306, -0.002959052100777626, 0.05242013931274414, -0.04238066449761391, 0.0036374577321112156, -0.0013845956418663263, 0.0054087210446596146, -0.008654880337417126, -0.01473506074398756, -0.04427001252770424, -0.019393600523471832, 0.019486214965581894, 0.1017284169793129, -0.018217388540506363, 0.0013915416784584522, -0.05338333919644356, 0.04916008934378624, -0.0009064701735042036, 0.025580286979675293, -0.04197315871715546, 0.043343860656023026, -0.014623922295868397, 0.03369336947798729, -0.0207643024623394, 0.03700898960232735, -0.06716446578502655, -0.03230414167046547, -0.008214958012104034, 0.05560610070824623, -0.05786590650677681, 0.0414915606379509, -0.060607314109802246, 0.02548767253756523, 0.02050498127937317, 0.059051379561424255, -0.05760658532381058, -0.011595409363508224, -0.03721274435520172, 0.017494989559054375 ]
24,468
future_fstrings
_fstring_parse
Roughly Python/ast.c:fstring_find_literal_and_expr
def _fstring_parse(s, i, level, parts, exprs): """Roughly Python/ast.c:fstring_find_literal_and_expr""" while True: i, parse_expr = _find_literal(s, i, level, parts, exprs) if i == len(s) or s[i] == '}': return i if parse_expr: i = _find_expr(s, i, level, parts, exprs)
(s, i, level, parts, exprs)
[ 0.000093326554633677, -0.029220446944236755, 0.009598987177014351, 0.01203402504324913, -0.0013895592419430614, 0.014063222333788872, 0.05791153758764267, 0.04870074614882469, -0.07216885685920715, -0.049159519374370575, 0.009175502695143223, 0.083991140127182, -0.07333344221115112, -0.0013344180770218372, 0.026979506015777588, 0.0037275480572134256, -0.005196510814130306, 0.005562648642808199, -0.033420003950595856, -0.0025453197304159403, -0.05907611921429634, 0.017495213076472282, 0.057558633387088776, 0.05868792533874512, 0.047218549996614456, -0.02450917847454548, 0.037619560956954956, -0.015677757561206818, 0.033420003950595856, -0.031920161098241806, -0.02193298004567623, -0.03956053406000137, -0.02530321292579174, 0.0072212968952953815, -0.030032126232981682, -0.05004177987575531, -0.04481879994273186, -0.00005121242793393321, 0.020362557843327522, 0.0038179794792085886, 0.03301416337490082, 0.014627868309617043, -0.03963111340999603, -0.018809780478477478, -0.03670201078057289, 0.040725115686655045, -0.05530004948377609, -0.040195759385824203, 0.0021802845876663923, 0.008284419775009155, 0.017354052513837814, -0.012607493437826633, -0.03920762985944748, -0.026185473427176476, 0.02300933748483658, 0.03324355185031891, 0.010587118566036224, 0.025020889937877655, 0.03726665675640106, -0.03183193504810333, 0.005470011383295059, -0.019356781616806984, -0.024350373074412346, 0.04958300292491913, -0.07185124605894089, -0.04520699754357338, 0.05847618356347084, 0.0010785626946017146, -0.051523976027965546, -0.034390490502119064, -0.031249644234776497, 0.025444375351071358, -0.014266141690313816, -0.041960280388593674, -0.013763253577053547, -0.024615051224827766, -0.009678390808403492, 0.029096931219100952, -0.00813443586230278, 0.0651460662484169, -0.012872171588242054, -0.01512193400412798, -0.03744310885667801, -0.04383067041635513, -0.013163316994905472, 0.026926571503281593, 0.034990426152944565, -0.0009385039447806776, -0.04044279083609581, 0.04845371097326279, -0.01010187529027462, -0.0031540789641439915, 0.006630182731896639, -0.007384514901787043, 0.00019712993525899947, -0.010745924897491932, -0.0050112358294427395, -0.005606761667877436, 0.022727014496922493, 0.011795814149081707, 0.03170841932296753, 0.0241739209741354, -0.06867510825395584, -0.05530004948377609, 0.013313301838934422, -0.013110381551086903, -0.017715778201818466, -0.05491185560822487, 0.022497626021504402, -0.059287864714860916, 0.024085694923996925, -0.08060326427221298, -0.01700114831328392, 0.03151432424783707, -0.007680071983486414, 0.0417485386133194, 0.012007556855678558, -0.009078454226255417, 0.06895743310451508, -0.06902801245450974, 0.06140528619289398, -0.025320857763290405, -0.0627463236451149, 0.018456876277923584, 0.03917233645915985, -0.031620193272829056, 0.0015616000164300203, 0.010578296147286892, 0.06923975795507431, 0.0006159276817925274, 0.05773508548736572, 0.011425265111029148, 0.013172139413654804, 0.0004822101618628949, -0.06743994355201721, 0.019127393141388893, -0.008209427818655968, 0.012095782905817032, -0.11031777411699295, -0.0057655684649944305, 0.019780267030000687, -0.02346811257302761, -0.0720982775092125, 0.015316030941903591, -0.05162984877824783, 0.0690985918045044, 0.012431041337549686, 0.03811362758278847, -0.008231484331190586, -0.001897961599752307, -0.014910192228853703, -0.012660428881645203, -0.023856306448578835, 0.014689627103507519, 0.07502737641334534, -0.03373761847615242, 0.039384081959724426, -0.015492483042180538, 0.01793634332716465, -0.013295656070113182, 0.03114377334713936, 0.02897341363132, -0.0537472702562809, 0.016312984749674797, 0.007300700526684523, 0.06253457814455032, -0.01386912539601326, -0.01381618995219469, -0.05988780036568642, 0.0274735726416111, 0.0012439864221960306, 0.06691058725118637, -0.03924291953444481, 0.04171324521303177, 0.00585820572450757, 0.02883225306868553, -0.025885503739118576, 0.07160421460866928, -0.026591312140226364, -0.02687363512814045, -0.01283688098192215, -0.014513175003230572, -0.02263878844678402, -0.043160151690244675, -0.001895755878649652, 0.023221079260110855, -0.016912922263145447, 0.015263095498085022, 0.03553742915391922, -0.04961829632520676, -0.05413546413183212, -0.034919846802949905, 0.008999050594866276, 0.00039977399865165353, -0.026944216340780258, 0.032290711998939514, 0.002494589891284704, 0.009828374721109867, 0.008866711519658566, -0.02750886231660843, -0.07403925061225891, -0.013498576357960701, -0.018527457490563393, 0.0005445197457447648, -0.040654536336660385, 0.0023578396067023277, -0.01291628461331129, 0.03483162075281143, -0.07636841386556625, 0.00715953903272748, -0.0609465129673481, 0.013030977919697762, -0.0034297851379960775, 0.07100427150726318, 0.02810879983007908, 0.022321173921227455, 0.01626887172460556, 0.022991692647337914, 0.035484492778778076, -0.008875533938407898, 0.08363823592662811, 0.013754431158304214, 0.0810973271727562, -0.003994431346654892, 0.009396067820489407, -0.008804953657090664, 0.021685946732759476, 0.012104605324566364, 0.025814924389123917, 0.018298069015145302, -0.011531136929988861, -0.03860769048333168, 0.1023421436548233, 0.008460871875286102, 0.056499920785427094, -0.015289563685655594, 0.029520414769649506, 0.0058008586056530476, 0.04961829632520676, -0.04460705816745758, -0.040195759385824203, -0.01355151180177927, -0.0723453089594841, -0.02320343442261219, 0.013948528096079826, -0.0066081262193620205, 0.025797277688980103, -0.00043120450573042035, -0.04093685746192932, 0.01430143229663372, -0.010543005540966988, 0.04510112479329109, 0.02016846090555191, 0.025585535913705826, -0.006546368356794119, -0.06920446455478668, 0.013807366602122784, 0.07160421460866928, 0.07026317715644836, 0.029626285657286644, 0.015236628241837025, -0.08060326427221298, 0.0038775322027504444, -0.009290196001529694, -0.026926571503281593, -0.053288497030735016, -0.025744343176484108, -0.016048306599259377, 0.034655168652534485, 0.0009633175213821232, 0.05657050386071205, -0.04764203354716301, -0.003248922061175108, 0.03853711113333702, -0.019921427592635155, -0.012598671019077301, 0.03403758630156517, 0.011557604186236858, 0.06860452890396118, -0.04241905361413956, 0.01700114831328392, 0.023415176197886467, -0.04884190484881401, 0.04517170414328575, 0.030261512845754623, 0.051418107002973557, 0.035519782453775406, -0.02230352908372879, -0.016824696213006973, -0.011813459917902946, -0.01780400425195694, -0.03043796494603157, -0.007737419102340937, 0.006952208001166582, 0.016224758699536324, 0.04841842129826546, 0.012051669880747795, -0.016083598136901855, 0.00991660077124834, -0.0663459450006485, 0.0022067525424063206, -0.037690140306949615, 0.025144405663013458, 0.014848433434963226, 0.003895177273079753, -0.040125180035829544, -0.05124165490269661, 0.009290196001529694, -0.005342083517462015, -0.03546684607863426, -0.012378105893731117, -0.004135593306273222, -0.02687363512814045, -0.010216569527983665, -0.009951891377568245, 0.0387488529086113, -0.07996803522109985, -0.03687846288084984, 0.007437450811266899, -0.02660895697772503, 0.06595774739980698, -0.053288497030735016, 0.024685630574822426, -0.003921645227819681, -0.009325486607849598, -0.005747923161834478, 0.00016845649224705994, -0.026061955839395523, -0.000952289265114814, 0.0005475525395013392, 0.014866079203784466, -0.04037221148610115, 0.02660895697772503, -0.012863349169492722, 0.017821649089455605, -0.03220248594880104, -0.023362241685390472, -0.005783213302493095, -0.061722900718450546, -0.01896858774125576, 0.07410982996225357, -0.0006622463115490973, 0.03641968593001366, 0.035484492778778076, 0.008496162481606007, 0.004188528750091791, 0.06320510059595108, -0.00996953621506691, 0.0663459450006485, -0.01221929956227541, -0.008791719563305378, -0.08893179148435593, -0.0012164157815277576, -0.02736770175397396, -0.004706856328994036, 0.06803987920284271, 0.01310155913233757, 0.0009864767780527472, -0.005170042626559734, 0.0008739886688999832, 0.049688875675201416, -0.023326950147747993, -0.005981721915304661, -0.03673730045557022, 0.023944532498717308, -0.05787624791264534, 0.022285884246230125, 0.01783047243952751, 0.006837513763457537, -0.0214742049574852, 0.024350373074412346, 0.027844121679663658, 0.031884871423244476, -0.07665073871612549, -0.0292733833193779, -0.027897056192159653, 0.03073793463408947, 0.03871356323361397, -0.032890647649765015, -0.08836714923381805, -0.020856622606515884, -0.0057655684649944305, -0.0214742049574852, 0.04651274159550667, -0.018192198127508163, 0.019850846379995346, -0.05477069318294525, -0.0013630915200337768, 0.03687846288084984, 0.06521665304899216, -0.02740299142897129, -0.013304478488862514, 0.04178382828831673, -0.022285884246230125, -0.0010272812796756625, 0.007428627926856279, 0.04284254088997841, -0.03596091270446777, -0.047889064997434616, 0.02410333976149559, -0.017336405813694, -0.010031295008957386, 0.0013024361105635762, 0.009810729883611202, 0.02900870516896248, 0.020362557843327522, 0.03329648822546005, 0.009501938708126545, -0.06391090154647827, 0.013877947814762592, 0.05925257131457329, -0.009043163619935513, -0.034725748002529144, -0.09507232159376144, -0.0067007639445364475, -0.060664188116788864, -0.005196510814130306, 0.028091154992580414, -0.03054383583366871, -0.006197875365614891, -0.023715145885944366, -0.07481563836336136, 0.013842657208442688, 0.04651274159550667, -0.06923975795507431, 0.013913238421082497, -0.030596772208809853, 0.009404890239238739, 0.01233399286866188, 0.03327884152531624, -0.08843772858381271, 0.01480432040989399, -0.010640054009854794, -0.04083098843693733, 0.001128189847804606, -0.02293875627219677, 0.002748239552602172, -0.014566110447049141, 0.05000649020075798, 0.0352727510035038, 0.04450118914246559, 0.05021823197603226, 0.02210943214595318, 0.028214670717716217, -0.004486291669309139, -0.005447954870760441, -0.01416909322142601, 0.0489477775990963, -0.08723785728216171, 0.017583439126610756, -0.009201970882713795, -0.03393171355128288, -0.05611172690987587, 0.04810080677270889, 0.03910175710916519, -0.015960080549120903, 0.04944184422492981, 0.050288811326026917, 0.030261512845754623, 0.03433755412697792, -0.03149667754769325, 0.07305111736059189, 0.04390124976634979, 0.02193298004567623, -0.029255736619234085, -0.04086627811193466, 0.05170042812824249, -0.04464234784245491, -0.014407304115593433, -0.019021522253751755, -0.018121616914868355, -0.008434404619038105, -0.047359708696603775, -0.02353869378566742, 0.030614417046308517, 0.012439863756299019, 0.01355151180177927, 0.00020912315812893212, 0.029414543882012367, -0.015192515216767788, -0.014786675572395325, -0.06331096589565277, -0.022215303033590317, -0.0021306576672941446, 0.002128451829776168, -0.013577979058027267, 0.0489477775990963, -0.04538344591856003, -0.013322124257683754, -0.01700114831328392, -0.03304945304989815, 0.013472108170390129, 0.08137965202331543, -0.028285251930356026, 0.0519474595785141, 0.00019740565039683133, 0.012369283474981785, 0.02713831327855587, -0.00107304856646806, -0.0335964560508728, -0.0008116790559142828, 0.022285884246230125, -0.04083098843693733, -0.0002889400930143893, -0.03924291953444481, 0.005968487821519375, 0.0696985274553299, 0.005606761667877436, -0.002871755976229906, -0.04033692181110382, 0.020662525668740273, -0.023362241685390472, -0.01360444724559784, 0.011469378136098385, -0.040725115686655045, 0.03490220010280609, 0.09902484714984894, -0.003136433893814683, -0.04238376393914223, 0.013798544183373451, -0.003736370475962758, -0.1023421436548233, -0.014345545321702957, -0.011839927174150944, 0.005311204586178064, -0.01656883955001831, -0.009021107107400894, 0.002169256564229727, 0.030349738895893097, -0.051523976027965546, 0.01910974830389023, 0.03596091270446777, 0.01877449080348015, -0.05237094685435295, -0.00023448813590221107, -0.00011097174865426496, 0.0633462592959404, -0.04284254088997841, -0.0019442802295088768, 0.033349424600601196, -0.008835832588374615, 0.06024070456624031, 0.01203402504324913, -0.007097780704498291, 0.00680222362279892, -0.016295339912176132, -0.02313285320997238, -0.06207580491900444, 0.05247681587934494, 0.007119837217032909, 0.026097247377038002, 0.03783130273222923, 0.0008287728414870799, 0.01386912539601326, 0.006775755900889635, -0.048665452748537064, -0.056746955960989, 0.0013796339044347405, -0.07283937186002731, 0.01810397207736969, -0.020062590017914772, 0.03747839853167534, 0.04457176849246025, -0.02496795356273651, -0.05621759966015816, -0.03641968593001366, 0.041325051337480545, -0.06292277574539185, -0.012554557994008064, 0.021950624883174896, 0.01587185449898243, 0.006105238106101751, 0.07785061001777649, -0.04697151482105255, -0.007490386255085468, -0.057523343712091446, -0.04344247654080391, -0.04838313162326813, 0.07756828516721725, 0.03680788353085518, 0.025232631713151932, 0.02634427882730961, 0.0082182502374053, 0.019250910729169846, 0.029643932357430458, 0.05907611921429634, 0.01847452111542225, 0.04538344591856003, -0.06948678940534592, 0.016851164400577545, 0.02133304439485073, -0.05769979581236839, 0.051453396677970886, 0.013472108170390129, -0.03260832652449608, 0.010057762265205383, -0.020609591156244278, 0.02593844011425972, -0.011857572942972183, -0.05170042812824249, -0.030579127371311188, 0.010401844047009945, -0.04164266586303711, -0.006771344691514969, 0.033455293625593185, 0.00706690177321434, 0.053359076380729675, 0.06648710370063782, 0.015130756422877312, 0.011090006679296494, 0.06895743310451508, -0.005068582948297262, 0.00019630281894933432, -0.024420952424407005, -0.02080368809401989, 0.024950308725237846, 0.004376009106636047, 0.027650024741888046, 0.027491217479109764, 0.004870074335485697, -0.043124862015247345, 0.03460223227739334, -0.07333344221115112, -0.0016619570087641478, 0.03620794415473938, 0.007062490098178387, 0.029855674132704735, -0.043689507991075516, -0.019356781616806984, -0.05021823197603226, -0.03818420693278313, 0.05664108321070671, -0.012060492299497128, -0.06786342710256577, -0.019445007666945457, -0.0068816267885267735, 0.02323872409760952, -0.030261512845754623, -0.04877132549881935, 0.029379254207015038, -0.013066268526017666, -0.024579759687185287, -0.04107801988720894, -0.045418739318847656, 0.033719971776008606, -0.00946664810180664, 0.01448670681566, -0.06666355580091476, 0.09196677058935165, 0.04393654316663742, 0.01877449080348015, 0.06031128391623497, -0.005289148073643446, 0.021791819483041763, -0.005611172877252102, 0.0660989060997963, 0.01495430525392294, -0.019780267030000687, 0.0018042214214801788, 0.023062273859977722, -0.004358363803476095, -0.02173888310790062, -0.01025186013430357, 0.11024719476699829, -0.07058078795671463, -0.0358726866543293, 0.0417485386133194, 0.00781682226806879, 0.024350373074412346, -0.01573951542377472, -0.003138639498502016, 0.018121616914868355, 0.05829973146319389, 0.020786043256521225, -0.01716877706348896, 0.010322440415620804, 0.044254153966903687, 0.034990426152944565, -0.001895755878649652, 0.013763253577053547, 0.029714511707425117, -0.02676776424050331, 0.016163000836968422, -0.0250738263130188, 0.019127393141388893, 0.027614733204245567, 0.017548149451613426, -0.022285884246230125, 0.07785061001777649, -0.005580293480306864, -0.037690140306949615, -0.0176363755017519, 0.00434292433783412, -0.020186105743050575, -0.006586069706827402, -0.01843923144042492, -0.019250910729169846, 0.06384032219648361, 0.07707422226667404, -0.0006539751193486154, 0.0323965810239315, 0.01193697564303875, -0.01233399286866188, -0.024544470012187958, 0.015810096636414528, -0.03698433190584183, 0.007631547749042511, -0.01993907243013382, -0.05667637288570404, -0.010913554579019547, -0.053253207355737686, 0.04030163213610649, -0.016745291650295258, 0.006224343553185463, 0.013013333082199097, 0.026256054639816284, 0.0025078237522393465, 0.005227389745414257, 0.008394702337682247, 0.019021522253751755, 0.038960594683885574, -0.008840244263410568, 0.010481247678399086, 0.03617265447974205, -0.026591312140226364, -0.01866861805319786, -0.021985916420817375, 0.06885156035423279, 0.0029974780045449734, -0.011487023904919624, 0.008363823406398296, 0.019356781616806984, -0.021509496495127678, -0.041360341012477875, -0.015510128811001778, -0.00027129490626975894, 0.057029277086257935, -0.026997152715921402, -0.030190933495759964, -0.018792135640978813, 0.019550878554582596, 0.06768697500228882, -0.06895743310451508, 0.037125494331121445, -0.04658332094550133, 0.06031128391623497, -0.014707271941006184, 0.018527457490563393, -0.05293559283018112, 0.03414345532655716, -0.009528406895697117, 0.011231168173253536, -0.031284935772418976, 0.033420003950595856, -0.052865009754896164, -0.01670117862522602, 0.021121300756931305, 0.03673730045557022, -0.051523976027965546, 0.05417075753211975, -0.061722900718450546, 0.014857255853712559, 0.01889800652861595, 0.04877132549881935, -0.00617581931874156, -0.006061125081032515, -0.046159837394952774, 0.02630898915231228 ]
24,469
future_fstrings
_fstring_parse_outer
null
def _fstring_parse_outer(s, i, level, parts, exprs): for q in ('"' * 3, "'" * 3, '"', "'"): if s.startswith(q): s = s[len(q):len(s) - len(q)] break else: raise AssertionError('unreachable') parts.append(q) ret = _fstring_parse(s, i, level, parts, exprs) parts.append(q) return ret
(s, i, level, parts, exprs)
[ -0.006613469682633877, 0.033145975321531296, 0.004276477266103029, 0.025056051090359688, -0.024986159056425095, 0.0010205230209976435, 0.043717045336961746, 0.053711507469415665, -0.020530585199594498, -0.03461369499564171, 0.021945886313915253, 0.07813853770494461, -0.0808643028140068, 0.006019392982125282, -0.006460582371801138, -0.012073731981217861, -0.013288093730807304, 0.013847225345671177, -0.013279357925057411, 0.011733011342585087, -0.06968168169260025, 0.016887499019503593, 0.041550412774086, 0.08701474219560623, 0.05427064001560211, -0.018416373059153557, -0.011296190321445465, -0.018923085182905197, 0.0320277139544487, -0.048889003694057465, -0.0006071811658330262, -0.015332416631281376, 0.003741371678188443, -0.0035054883919656277, 0.011243771761655807, -0.038859594613313675, -0.02994844689965248, -0.016022592782974243, -0.0069847675040364265, 0.010990415699779987, 0.024968687444925308, 0.007639999035745859, -0.025265725329518318, -0.027135320007801056, 0.014118053950369358, 0.04378693550825119, 0.003608141327276826, -0.006626574322581291, 0.024759013205766678, 0.041061170399188995, 0.03770638629794121, -0.0022277869284152985, 0.012615390121936798, -0.02994844689965248, -0.0014043794944882393, 0.0322723351418972, 0.020635422319173813, 0.003385362681001425, 0.04032731428742409, -0.015725554898381233, 0.029983391985297203, 0.011200089938938618, -0.01379480678588152, 0.03735693171620369, -0.07757940888404846, -0.023623278364539146, 0.06262265890836716, 0.00030167947988957167, -0.05780015140771866, -0.019726835191249847, -0.032010242342948914, -0.0011269981041550636, -0.0431579127907753, -0.04619818553328514, -0.013288093730807304, -0.0013901827624067664, -0.022068195044994354, 0.015052851289510727, -0.013087156228721142, 0.020408276468515396, -0.022941837087273598, -0.031328801065683365, -0.04382187873125076, -0.03468358516693115, -0.02322140336036682, 0.029284479096531868, -0.005276797339320183, 0.017874713987112045, 0.028742820024490356, 0.07688049226999283, -0.009933308698236942, 0.0030621150508522987, -0.015218842774629593, 0.019062867388129234, 0.024549338966608047, -0.0015823839930817485, 0.019656943157315254, -0.025492873042821884, 0.006456214003264904, 0.01708843745291233, 0.016206057742238045, -0.005158855579793453, -0.06367102265357971, -0.0683886930346489, 0.023448549211025238, -0.031328801065683365, -0.003365705721080303, -0.08708462864160538, 0.04060687869787216, -0.04839976504445076, 0.007893354631960392, -0.10651442408561707, -0.0675150528550148, 0.05622759461402893, -0.017525257542729378, 0.01860857382416725, 0.007771044969558716, -0.010073091834783554, 0.06063074991106987, -0.06290221959352493, 0.08393952250480652, -0.03477095067501068, -0.07226765900850296, 0.014083107933402061, 0.00778414960950613, -0.028410837054252625, 0.0011816007317975163, -0.024514393880963326, 0.06370597332715988, -0.027816759422421455, 0.0718483179807663, 0.043053075671195984, -0.009889626875519753, -0.039453670382499695, -0.06157428398728371, 0.009173240512609482, -0.014869386330246925, 0.03342553973197937, -0.07191820442676544, -0.013235675171017647, 0.014432565309107304, -0.01311336550861597, -0.06688603013753891, -0.005268061067909002, -0.0643000453710556, 0.04022247716784477, 0.01281632762402296, 0.02399020828306675, -0.010483703576028347, -0.01601385697722435, -0.015332416631281376, 0.0116543835029006, -0.028201162815093994, -0.009374178014695644, 0.08345028012990952, -0.04577883705496788, 0.03297124803066254, -0.04420628398656845, 0.04700193554162979, -0.01144470926374197, 0.029598988592624664, -0.005735459271818399, -0.04895889386534691, 0.023955263197422028, 0.043088022619485855, 0.0452546551823616, -0.016083749011158943, -0.06346134841442108, -0.044485848397016525, 0.011759220622479916, 0.01618858613073826, 0.09043941646814346, -0.03379246965050697, 0.027904124930500984, -0.014493719674646854, 0.007508952636271715, -0.03774133324623108, 0.05259324610233307, -0.036832746118307114, -0.054480310529470444, -0.032604318112134933, -0.0024505655746906996, 0.026715971529483795, -0.03096187114715576, 0.017437893897294998, -0.006574155762791634, 0.013952062465250492, -0.005158855579793453, 0.044241227209568024, -0.06793440133333206, -0.08498788625001907, -0.03419434651732445, 0.004459942225366831, 0.03541744500398636, -0.021771157160401344, 0.01824164390563965, 0.014205418527126312, 0.01874835602939129, 0.0383354090154171, 0.0010379957966506481, -0.1292291134595871, -0.011392290703952312, -0.03096187114715576, -0.015603245235979557, -0.025370562449097633, 0.010396338999271393, -0.035522282123565674, 0.003944493364542723, -0.06720054149627686, 0.014170472510159016, -0.03581932187080383, 0.005722354631870985, -0.0202160757035017, 0.04616324231028557, -0.014214154332876205, 0.011820375919342041, 0.022732162848114967, 0.02005882002413273, 0.048923950642347336, -0.029476679861545563, 0.026803335174918175, 0.06513874232769012, 0.07492353767156601, -0.002749788109213114, 0.0005351057043299079, 0.011540810577571392, 0.044520795345306396, 0.017079699784517288, 0.007805990986526012, 0.043053075671195984, 0.01768251322209835, -0.04794546961784363, 0.06664140522480011, -0.029249532148241997, 0.024724068120121956, -0.04752612113952637, 0.019744308665394783, -0.034928206354379654, 0.05755553022027016, -0.0729665756225586, -0.015646927058696747, -0.043472424149513245, -0.07653103768825531, -0.06031624227762222, 0.048225037753582, -0.014799494296312332, -0.0023195194080471992, 0.017577676102519035, -0.0007726271287538111, 0.04182997718453407, 0.023955263197422028, 0.058708738535642624, 0.01288621872663498, 0.04277351126074791, -0.004647775087505579, -0.030857034027576447, 0.04920351505279541, 0.0562625415623188, 0.053082484751939774, 0.002026849426329136, 0.014677184633910656, -0.03557470068335533, 0.012178569100797176, -0.012318351306021214, -0.014956749975681305, -0.034753475338220596, -0.002047598361968994, -0.03520777076482773, 0.015279998071491718, 0.00033990133670158684, 0.017927132546901703, -0.03651823475956917, 0.018853193148970604, 0.050706177949905396, -0.04626807942986488, 0.0007289450149983168, -0.0036234299186617136, 0.01601385697722435, 0.02241765335202217, -0.04860943928360939, 0.00038194534135982394, 0.0576254241168499, -0.03283146396279335, 0.06685107946395874, -0.004005648195743561, -0.008334544487297535, 0.025021106004714966, -0.07981593161821365, 0.005285533610731363, -0.015542089939117432, -0.06111999228596687, -0.0367279089987278, 0.0335129052400589, -0.042843401432037354, 0.007059026975184679, -0.00773173151537776, 0.03812573477625847, -0.03384488821029663, 0.0007720810826867819, -0.045464325696229935, 0.019552107900381088, -0.03152099996805191, 0.017245693132281303, 0.029249532148241997, 0.03707736358046532, -0.01853868179023266, -0.05357172340154648, -0.00777541333809495, -0.009007249027490616, -0.0911383256316185, -0.02940678782761097, 0.0217012669891119, -0.05234862491488457, -0.04591862112283707, -0.019429797306656837, 0.07436440140008926, -0.04113106429576874, -0.01860857382416725, 0.025021106004714966, -0.007762308698147535, 0.04899384081363678, -0.029965918511152267, 0.016712769865989685, 0.024951213970780373, -0.03470105677843094, 0.02297678403556347, 0.0320277139544487, -0.0168787632137537, 0.002143698977306485, -0.02517836168408394, 0.023640751838684082, 0.0010925984242931008, -0.000909133639652282, -0.011200089938938618, -0.02072278782725334, -0.004274293314665556, -0.0009342508856207132, -0.021421700716018677, -0.027554666623473167, -0.03753165900707245, 0.0798858180642128, -0.00004006467497674748, 0.04196976125240326, 0.006360113620758057, -0.04438101127743721, -0.01979672722518444, 0.024741539731621742, -0.025492873042821884, 0.08009549230337143, -0.0089024119079113, -0.0257200188934803, -0.07764929533004761, 0.026349041610956192, -0.02060047723352909, 0.05133520066738129, 0.04595356807112694, -0.028061378747224808, 0.027449829503893852, -0.004503624513745308, 0.005800982471555471, 0.0922565907239914, -0.047910526394844055, 0.012292142026126385, -0.0048225037753582, 0.04322780296206474, -0.05668189004063606, 0.06779461354017258, 0.01169806532561779, -0.03538249805569649, -0.003383178496733308, 0.004173824563622475, -0.028969967737793922, 0.0450100339949131, -0.07317624986171722, -0.0463729165494442, -0.004210954066365957, 0.014948014169931412, 0.013829751871526241, 0.004796294495463371, -0.09638018161058426, -0.017997024580836296, 0.0016282502328976989, -0.02060047723352909, 0.0155508266761899, -0.009330496191978455, 0.0070022400468587875, -0.014956749975681305, 0.028375890105962753, 0.03973323479294777, 0.03503304347395897, 0.0010898683685809374, -0.00632516760379076, 0.05979205667972565, 0.005621885880827904, -0.017787350341677666, 0.015611981973052025, -0.010833160020411015, -0.10141235589981079, -0.045673999935388565, -0.0028895707800984383, -0.034718532115221024, -0.0479804165661335, -0.012851272709667683, -0.012274669483304024, 0.0431579127907753, -0.020076291635632515, 0.016896234825253487, 0.002043230226263404, -0.04120095446705818, 0.026244204491376877, 0.041480518877506256, -0.025824856013059616, -0.028078852221369743, -0.04399660974740982, -0.007504584267735481, -0.02247007191181183, 0.0035011200234293938, -0.005198169499635696, -0.008255916647613049, -0.025353088974952698, -0.028969967737793922, -0.03760154917836189, 0.005595676600933075, 0.05035672336816788, -0.053082484751939774, -0.01529747061431408, -0.05944259837269783, -0.005752932280302048, 0.03092692606151104, 0.013026001863181591, -0.0380907878279686, 0.0055170487612485886, -0.02577243745326996, -0.04742128401994705, -0.022539962083101273, 0.04997231811285019, 0.0027825497090816498, 0.022033249959349632, 0.08596637099981308, 0.01794460602104664, -0.02086257003247738, 0.04078160598874092, -0.00160204095300287, 0.014179209247231483, -0.002065071137621999, -0.003110165474936366, -0.009138294495642185, 0.05423569306731224, -0.10819181799888611, 0.04099128022789955, -0.0055650994181632996, -0.028061378747224808, -0.06713064759969711, 0.033408068120479584, -0.005198169499635696, 0.020251020789146423, 0.07834821194410324, 0.0321500226855278, -0.005831560119986534, 0.04116600751876831, -0.001109525328502059, 0.05360667034983635, 0.034840840846300125, 0.052698083221912384, -0.03959345445036888, 0.02830599993467331, 0.00665278360247612, -0.025737492367625237, -0.04700193554162979, -0.01616237685084343, -0.0025728754699230194, -0.002845888724550605, -0.04357726126909256, 0.04022247716784477, 0.03258684650063515, 0.0035011200234293938, 0.0029944078996777534, -0.027170265093445778, 0.04039720445871353, -0.017787350341677666, -0.05905819684267044, -0.044695522636175156, -0.020163657143712044, 0.008911147713661194, 0.008937356993556023, -0.01619732193648815, 0.0317830927670002, -0.052488408982753754, 0.004805030766874552, 0.005726723000407219, -0.036972526460886, 0.07660092413425446, 0.09442321956157684, -0.0008321439381688833, 0.043053075671195984, 0.03875475749373436, -0.004901131149381399, 0.014677184633910656, -0.014484983868896961, -0.02648882381618023, 0.019901564344763756, 0.010300238616764545, -0.0755525529384613, 0.023500967770814896, -0.001693773316219449, 0.024724068120121956, 0.03237717226147652, 0.012073731981217861, 0.007281805854290724, -0.026418933644890785, 0.012501816265285015, -0.08058473467826843, 0.01577797345817089, 0.021631374955177307, -0.05014704912900925, 0.025143414735794067, 0.049902427941560745, 0.032639265060424805, -0.03753165900707245, -0.009601324796676636, 0.01887066662311554, -0.06730537861585617, -0.032848939299583435, -0.012388243339955807, -0.03228980675339699, -0.02276710979640484, 0.010571067221462727, 0.03774133324623108, 0.02732752077281475, -0.06632689386606216, 0.003140742890536785, 0.03973323479294777, 0.03237717226147652, -0.06171406805515289, 0.002697369549423456, 0.025073524564504623, 0.02848072722554207, -0.014825703576207161, -0.0029507256112992764, 0.0023959630634635687, 0.022732162848114967, 0.0702408105134964, 0.0479804165661335, -0.01758641190826893, 0.020146183669567108, -0.009190713055431843, 0.01874835602939129, -0.025492873042821884, 0.024234827607870102, 0.008504904806613922, -0.00045429382589645684, 0.008343280293047428, -0.0041519831866025925, -0.001344316522590816, 0.018626047298312187, -0.0787675604224205, -0.05196422338485718, 0.007290542125701904, -0.07709016650915146, -0.003385362681001425, 0.03443896770477295, 0.0631817877292633, 0.022312816232442856, 0.008513640612363815, -0.05238357186317444, -0.038894541561603546, 0.054130855947732925, -0.012117413803935051, 0.0076094213873147964, 0.03641339763998985, -0.0140656353905797, -0.017665039747953415, 0.08428897708654404, -0.023623278364539146, -0.03405456244945526, -0.0771600604057312, -0.026121893897652626, -0.03620372340083122, 0.032167498022317886, 0.03595910221338272, 0.040257420390844345, 0.010623485781252384, -0.021631374955177307, 0.0270829014480114, 0.016022592782974243, 0.04182997718453407, 0.04109611734747887, 0.052733030170202255, -0.04675731807947159, 0.012030050158500671, 0.015079060569405556, -0.08156321197748184, 0.029773717746138573, 0.03819562494754791, 0.014546138234436512, -0.039838071912527084, 0.018049443140625954, 0.017455365508794785, -0.015961438417434692, -0.0900200679898262, -0.01571681909263134, 0.033408068120479584, -0.032307278364896774, 0.009924572892487049, 0.020285965874791145, -0.00160204095300287, 0.0335129052400589, 0.06618711352348328, -0.013191993348300457, 0.03042021207511425, 0.07562244683504105, 0.005892714951187372, -0.02000640146434307, -0.02166632004082203, -0.005023441277444363, 0.05402601882815361, -0.0511954203248024, -0.012414452619850636, 0.0231864582747221, -0.0034028354566544294, -0.02893502078950405, 0.029581516981124878, -0.08205245435237885, 0.025440454483032227, 0.012117413803935051, -0.004221874754875898, 0.04441595822572708, -0.049867480993270874, -0.016887499019503593, -0.05986194685101509, -0.0037785014137625694, 0.051719602197408676, -0.006796934641897678, -0.0356096476316452, -0.0014185761101543903, 0.024566812440752983, 0.026943117380142212, -0.026471350342035294, -0.0468621551990509, -0.008159816265106201, -0.007242491934448481, -0.01887066662311554, -0.044905196875333786, -0.013270621187984943, 0.024951213970780373, -0.019656943157315254, 0.010536122135818005, -0.06940211355686188, 0.0317830927670002, 0.003911731764674187, 0.029930973425507545, 0.06817901879549026, 0.007771044969558716, 0.03379246965050697, -0.017280638217926025, 0.0728267952799797, 0.016302159056067467, -0.017394211143255234, 0.009776053950190544, 0.02774686925113201, 0.013122102245688438, -0.0026078212540596724, -0.0033613373525440693, 0.12063248455524445, -0.024234827607870102, -0.028375890105962753, 0.07146391272544861, 0.004352921154350042, 0.027816759422421455, -0.02792159654200077, -0.011165143921971321, 0.004237163346260786, 0.05067123472690582, -0.005866505671292543, -0.00939165148884058, -0.01402195356786251, 0.06485918164253235, 0.0069847675040364265, -0.0011111634084954858, 0.02779928781092167, 0.016721507534384727, -0.0076094213873147964, 0.02322140336036682, -0.03735693171620369, 0.02068784087896347, -0.02890007570385933, 0.019412323832511902, 0.007513321004807949, 0.029476679861545563, -0.06297211349010468, -0.02357085980474949, -0.013270621187984943, 0.010693377815186977, -0.010868106037378311, -0.0013967350823804736, -0.03431665524840355, -0.007268701214343309, 0.011995104141533375, 0.05580824986100197, -0.0027061060536652803, 0.04602345824241638, 0.02758961357176304, -0.006740147713571787, -0.04214448854327202, 0.03700747340917587, -0.026925645768642426, 0.023500967770814896, -0.01920264959335327, -0.03024548478424549, 0.010553594678640366, -0.017219483852386475, 0.03588921204209328, -0.02762455865740776, 0.012126150541007519, 0.034421492367982864, 0.023448549211025238, 0.007089604623615742, -0.017062228173017502, 0.03346048668026924, 0.026331568136811256, 0.001691589248366654, 0.012440661899745464, 0.00045101766590960324, -0.016468150541186333, -0.006936717312783003, 0.031066708266735077, -0.04071171581745148, 0.04123590141534805, -0.02613936737179756, -0.02247007191181183, -0.000825591676402837, 0.06139955669641495, -0.01497422344982624, 0.008832519873976707, 0.007862777449190617, -0.015515881590545177, 0.021736212074756622, 0.006460582371801138, -0.024461975321173668, -0.01634584181010723, 0.01916770450770855, 0.017394211143255234, -0.016380786895751953, 0.00918197724968195, -0.04717666655778885, 0.04944813624024391, 0.006329535972326994, 0.02711784653365612, -0.05884852260351181, 0.03567953780293465, -0.01209994126111269, 0.03384488821029663, -0.026209259405732155, 0.018713410943746567, -0.06304199993610382, -0.019988927990198135, 0.00719444127753377, 0.030944397673010826, -0.0380907878279686, 0.011226299218833447, -0.04819009080529213, 0.035137880593538284, 0.05154487490653992, 0.07422462105751038, -0.002226694952696562, -0.009583852253854275, -0.0029529097955673933, 0.05444536730647087 ]
24,470
future_fstrings
_is_f
null
def _is_f(token): import tokenize_rt prefix, _ = tokenize_rt.parse_string_literal(token.src) return 'f' in prefix.lower()
(token)
[ 0.029181871563196182, 0.014300484210252762, 0.0268582571297884, 0.06892251968383789, 0.030617045238614082, -0.023594943806529045, 0.04906928166747093, 0.040560752153396606, -0.01736731454730034, -0.016999978572130203, 0.05070948228240013, -0.002633288037031889, -0.005646726116538048, -0.007530392147600651, 0.04233763366937637, 0.025354741141200066, 0.019494445994496346, 0.038681358098983765, -0.024415044113993645, 0.020348716527223587, -0.06656473875045776, 0.03687030449509621, -0.010763805359601974, -0.0065778810530900955, 0.05228133872151375, 0.013010535389184952, 0.012925108894705772, -0.015411035157740116, 0.006671850569546223, -0.01942610554397106, 0.007385166361927986, -0.04042406752705574, 0.012181893922388554, -0.0010507523547858, 0.04759993776679039, -0.03136880323290825, -0.008286421187222004, 0.046062249690294266, -0.08105316013097763, -0.04824918136000633, -0.02115173079073429, 0.010071845725178719, -0.06912754476070404, 0.05894464626908302, -0.030822070315480232, 0.019699471071362495, 0.013113047927618027, 0.03933060169219971, -0.010610036551952362, 0.03341905027627945, 0.04848837852478027, -0.04233763366937637, -0.023731626570224762, 0.000019971903384430334, 0.0006780769908800721, -0.014078373089432716, 0.008572601713240147, -0.006770091596990824, -0.04431954026222229, 0.023526601493358612, 0.05129038542509079, 0.005300746764987707, 0.025696448981761932, -0.033521562814712524, -0.012369832955300808, 0.011276367120444775, 0.03885221108794212, -0.003521729027852416, -0.022655246779322624, 0.005497228819876909, -0.06430946290493011, 0.031095435842871666, 0.0032099203672260046, 0.031830109655857086, -0.013454756699502468, -0.015146211721003056, -0.021100474521517754, 0.04004818946123123, -0.044251199811697006, -0.007462050765752792, 0.013044706545770168, -0.03830547630786896, -0.002703765407204628, -0.004279893822968006, -0.06594966351985931, -0.015163296833634377, -0.0031373074743896723, -0.010481895878911018, -0.023680370301008224, 0.021664293482899666, -0.022108513861894608, -0.025798961520195007, -0.0227577593177557, -0.036221057176589966, -0.018708517774939537, -0.004681400954723358, 0.02246730774641037, -0.01853766478598118, -0.006381398532539606, -0.009354258887469769, 0.04698486253619194, 0.04889842867851257, -0.03307734429836273, 0.015393950045108795, 0.06055067479610443, 0.033641163259744644, -0.031420059502124786, -0.009251746349036694, 0.006454011891037226, -0.029421066865324974, -0.03128337487578392, -0.06670141965150833, 0.04162004590034485, 0.05826123058795929, 0.009747222997248173, -0.05545922368764877, 0.03247935324907303, 0.034785885363817215, -0.008572601713240147, -0.002725122030824423, 0.09130440652370453, 0.009764309041202068, -0.02726830542087555, -0.07333055883646011, 0.03432457894086838, -0.016410531476140022, 0.0508461631834507, 0.012574858032166958, 0.0013123726239427924, 0.018213041126728058, 0.024039164185523987, 0.07285216450691223, 0.002631152281537652, -0.008884410373866558, -0.02492760494351387, 0.001578264287672937, -0.01299345027655363, 0.011139684356749058, -0.08173657953739166, -0.023014040663838387, 0.01605173759162426, 0.024175846949219704, -0.03017282485961914, -0.05105118826031685, -0.08583707362413406, 0.05088033527135849, -0.040082357823848724, 0.030941668897867203, 0.03922808915376663, -0.02144218236207962, 0.009055264294147491, 0.01654721423983574, 0.023014040663838387, 0.0004444874939508736, 0.012335662730038166, -0.02082710899412632, 0.013010535389184952, 0.0027827853336930275, -0.007978884503245354, 0.02197183109819889, 0.035400960594415665, -0.0042030094191432, -0.07408231496810913, -0.016999978572130203, 0.04742908477783203, 0.025969814509153366, -0.01135325152426958, -0.017649224027991295, -0.02340700477361679, 0.03160800039768219, 0.016982892528176308, 0.027883380651474, 0.045857228338718414, 0.09601997584104538, 0.024141676723957062, 0.03669944778084755, -0.0422351211309433, 0.03577683866024017, 0.012959279119968414, -0.005582656245678663, -0.009849735535681248, -0.0001097203348763287, -0.03278689086437225, -0.047702450305223465, -0.005766324233263731, 0.037451207637786865, -0.011165312491357327, -0.019203994423151016, 0.0414150208234787, -0.03509342297911644, -0.014795960858464241, 0.00035986132570542395, 0.008128381334245205, -0.047702450305223465, -0.06673558801412582, -0.05170043557882309, -0.008461547084152699, -0.005202505737543106, 0.06591549515724182, -0.08986923098564148, -0.02308238111436367, -0.001685048104263842, -0.012848224490880966, 0.04414868727326393, -0.07312553375959396, 0.03840798884630203, 0.021425098180770874, 0.05378485471010208, -0.0430552214384079, -0.001092931954190135, -0.024210019037127495, -0.05993559956550598, -0.023970823734998703, 0.10155564546585083, -0.007423608563840389, 0.02984820306301117, 0.010610036551952362, 0.059593893587589264, -0.046062249690294266, 0.02185223251581192, 0.08098481595516205, 0.06427529454231262, 0.04336275905370712, 0.012156265787780285, 0.050743650645017624, -0.013121590949594975, 0.014112544246017933, 0.0389547236263752, -0.024620069190859795, -0.02525222860276699, -0.028430113568902016, 0.004630144685506821, 0.01664118468761444, 0.04244014620780945, 0.018178870901465416, -0.01637636125087738, 0.07893457263708115, 0.03300900384783745, -0.010285413824021816, -0.030941668897867203, 0.020280376076698303, -0.027729611843824387, -0.0021666428074240685, -0.038647186011075974, 0.01467636227607727, -0.03502507880330086, 0.013753751292824745, 0.03227432817220688, -0.057953692972660065, 0.04783913493156433, -0.041312508285045624, 0.025081373751163483, -0.022740673273801804, -0.011720587499439716, -0.0003972356498707086, -0.04015070199966431, -0.004916325211524963, 0.05518585816025734, 0.07326221466064453, 0.04558385908603668, -0.03324819728732109, -0.029421066865324974, 0.054673295468091965, 0.0496160164475441, -0.016154250130057335, -0.0025777604896575212, -0.025354741141200066, 0.024124590680003166, 0.06372856348752975, -0.0684441328048706, 0.03505925089120865, -0.07025518268346786, -0.016999978572130203, -0.006342956330627203, 0.03632356971502304, -0.02902810275554657, 0.01119093969464302, 0.02214268408715725, 0.04910345375537872, 0.0134291285648942, 0.02513263002038002, -0.06212253123521805, -0.010362298227846622, 0.06704312562942505, -0.04025321453809738, 0.03789542615413666, 0.026943683624267578, -0.0663938820362091, 0.03017282485961914, -0.019016055390238762, -0.028857247903943062, -0.011293452233076096, 0.028993932530283928, -0.007329638581722975, -0.008927123621106148, 0.040765777230262756, 0.08515365421772003, -0.058602940291166306, 0.017854247242212296, -0.031180864199995995, 0.04718988761305809, -0.00020462441898416728, 0.01303616352379322, -0.01956278830766678, -0.019443191587924957, -0.0007651057676412165, -0.02607232704758644, 0.010447724722325802, -0.04490044340491295, -0.02750750258564949, -0.002564946422353387, 0.057714495807886124, -0.03618688881397247, -0.06748735159635544, 0.028310514986515045, 0.07989135384559631, -0.030275337398052216, 0.004228637553751469, 0.009379887022078037, 0.0260381568223238, 0.024039164185523987, 0.044182855635881424, 0.03034367971122265, 0.04083411768078804, -0.029865287244319916, -0.055083345621824265, 0.01602610945701599, -0.07510744035243988, -0.05067531019449234, 0.020024094730615616, 0.011096970178186893, -0.037417035549879074, 0.01853766478598118, 0.0005787680856883526, -0.08221496641635895, 0.03553764149546623, -0.007474864367395639, 0.036016032099723816, 0.020468315109610558, -0.0005611487431451678, 0.006556523963809013, 0.007192955352365971, 0.027336647734045982, 0.020485401153564453, -0.013591439463198185, 0.01483867410570383, -0.021168816834688187, 0.032735634595155716, 0.12841390073299408, -0.012352747842669487, -0.02094670571386814, -0.060003940016031265, 0.04261099919676781, -0.03707532957196236, 0.020314546301960945, -0.0256281066685915, -0.044422052800655365, -0.004736928269267082, -0.019699471071362495, 0.05522002652287483, 0.074629046022892, -0.01277134008705616, -0.011319080367684364, 0.0032184631563723087, -0.00949094258248806, -0.03218890354037285, 0.034495431929826736, 0.03994567692279816, 0.0011415185872465372, 0.019443191587924957, 0.02258690446615219, 0.0019690929912030697, -0.01137887965887785, -0.08850239962339401, -0.011105513200163841, -0.024620069190859795, 0.041141655296087265, 0.005232405383139849, -0.05306726694107056, 0.020980877801775932, 0.03919391706585884, 0.054468270391225815, -0.013095962814986706, 0.06738483905792236, -0.02624318189918995, 0.01795675978064537, -0.06376273185014725, -0.029421066865324974, 0.013540183193981647, 0.03066830150783062, -0.002902383217588067, -0.0130190784111619, 0.0256281066685915, 0.015915054827928543, -0.04698486253619194, 0.018435152247548103, -0.05914967134594917, -0.04599390923976898, -0.00836330559104681, 0.04124416783452034, 0.02935272455215454, -0.00802586879581213, 0.019494445994496346, 0.021339669823646545, 0.020263290032744408, 0.05190546065568924, 0.007590190973132849, -0.0055143143981695175, -0.04561803117394447, 0.06615468859672546, 0.03851050138473511, -0.057953692972660065, -0.04681400954723358, -0.02398790791630745, -0.05436575785279274, 0.0148643022403121, -0.004243587609380484, -0.01976781338453293, -0.0012771340552717447, 0.0055741132237017155, -0.021373841911554337, 0.0013807142386212945, 0.0369044728577137, 0.03401704132556915, -0.022159770131111145, 0.003590070642530918, 0.01596631109714508, 0.03611854463815689, -0.00012260112271178514, 0.01213917974382639, -0.08214662969112396, -0.023150723427534103, 0.009849735535681248, -0.028139661997556686, -0.021698463708162308, -0.01092611625790596, -0.04496878385543823, -0.04842003807425499, -0.009012551046907902, -0.005134164355695248, -0.022296452894806862, 0.03292357549071312, -0.020724596455693245, 0.023150723427534103, -0.028054235503077507, -0.03473462909460068, -0.024210019037127495, 0.04168838635087013, 0.012796968221664429, -0.011942697688937187, -0.06878583878278732, 0.033846188336610794, -0.11741089820861816, 0.05105118826031685, 0.06014062464237213, -0.0198874119669199, 0.0093286307528615, 0.015035156160593033, 0.01956278830766678, 0.04038989543914795, -0.05785118043422699, 0.10141896456480026, -0.018298467621207237, -0.013343701139092445, 0.04045823961496353, -0.013642695732414722, 0.037314523011446, 0.02270650304853916, 0.02332157827913761, -0.011481392197310925, -0.007342452649027109, -0.017854247242212296, -0.004685672465711832, -0.017905503511428833, 0.02533765509724617, 0.06287428736686707, -0.021168816834688187, 0.039296429604291916, 0.0213225856423378, 0.027336647734045982, -0.03357281908392906, -0.01369395200163126, -0.06427529454231262, -0.004924867767840624, 0.06509539484977722, -0.03574266657233238, -0.006214816123247147, -0.011831643059849739, 0.004660044331103563, -0.038237135857343674, -0.021664293482899666, 0.009354258887469769, 0.043396927416324615, -0.04315773397684097, 0.06536875665187836, 0.023919567465782166, 0.015633145347237587, 0.0844702422618866, -0.031215034425258636, 0.03357281908392906, -0.006966573651880026, 0.0028169560246169567, -0.09096269309520721, 0.03230850026011467, -0.04835169389843941, -0.005074365064501762, 0.012591943144798279, -0.04701903462409973, -0.01816178485751152, -0.00971305277198553, 0.0014405131805688143, 0.0035046436823904514, 0.0336240753531456, 0.007487678434699774, 0.014274856075644493, 0.020656254142522812, 0.02238187938928604, 0.0024752479512244463, -0.0027827853336930275, -0.021134646609425545, -0.05149541050195694, -0.07497075945138931, -0.037827085703611374, -0.06536875665187836, -0.043772805482149124, 0.023868311196565628, -0.019614044576883316, 0.012472345493733883, 0.004378134850412607, -0.05258887633681297, 0.019255250692367554, 0.019118567928671837, 0.0455155186355114, -0.02591855823993683, -0.035161763429641724, 0.04185924306511879, -0.028874333947896957, -0.017597967758774757, -0.017273344099521637, -0.009627625346183777, -0.0297286044806242, -0.020895449444651604, -0.01812761463224888, 0.02984820306301117, 0.013933147303760052, -0.0011201618472114205, 0.0046515013091266155, -0.0705285519361496, 0.00908089242875576, 0.004566074348986149, -0.040765777230262756, -0.01976781338453293, 0.006932402960956097, -0.0014223599573597312, 0.05870544910430908, 0.01705123484134674, -0.013839177787303925, 0.04203009605407715, -0.0014309026300907135, -0.006987930741161108, -0.0256281066685915, -0.006368584465235472, 0.037656232714653015, -0.0020224847830832005, -0.08973254263401031, -0.0455155186355114, 0.016777867451310158, -0.025064289569854736, 0.0032440912909805775, 0.01869143359363079, 0.0446954183280468, -0.0032376842573285103, 0.0569969117641449, -0.015163296833634377, 0.012822596356272697, 0.016948722302913666, -0.004365320783108473, -0.026089413091540337, -0.003743839217349887, -0.040560752153396606, -0.04411451518535614, -0.019050225615501404, -0.0030732371378690004, 0.028310514986515045, -0.01910148188471794, 0.022518564015626907, -0.023526601493358612, 0.026960769668221474, -0.040526580065488815, -0.016735153272747993, -0.07640592753887177, -0.03857884556055069, 0.03242809697985649, -0.05552756413817406, -0.02489343471825123, -0.02185223251581192, 0.031830109655857086, 0.020041178911924362, 0.019203994423151016, 0.0003758789098355919, 0.02914770133793354, 0.0021570322569459677, -0.015035156160593033, -0.05224716663360596, 0.0260381568223238, 0.013830634765326977, -0.040697433054447174, 0.03136880323290825, -0.0025478610768914223, -0.0027187149971723557, 0.032240159809589386, 0.06048233434557915, 0.002400499302893877, -0.03775874525308609, 0.0414150208234787, 0.06253258138895035, 0.021595951169729233, -0.020434144884347916, 0.027729611843824387, 0.037485379725694656, 0.0038954722695052624, 0.025491423904895782, -0.005565570667386055, 0.00166048773098737, 0.04035572707653046, -0.001121229724958539, 0.00151205831207335, -0.07599587738513947, -0.044422052800655365, -0.08754561096429825, -0.02653363347053528, -0.004779641982167959, -0.03577683866024017, -0.036596935242414474, -0.00651808176189661, -0.03165925666689873, -0.02820800244808197, 0.004484918899834156, -0.04684818163514137, -0.015573346056044102, -0.03687030449509621, -0.001961617963388562, -0.011284910142421722, -0.044592905789613724, -0.024705495685338974, -0.05573258921504021, -0.040970802307128906, -0.05884213373064995, 0.08850239962339401, 0.0125065166503191, -0.012267320416867733, 0.06618885695934296, -0.0019306507892906666, 0.06735066324472427, 0.03287231922149658, 0.0004920062492601573, -0.013659780845046043, 0.0016914550215005875, 0.029421066865324974, -0.006266072392463684, 0.00041031668661162257, -0.029796946793794632, 0.015710029751062393, 0.05634766444563866, -0.038476333022117615, -0.0364944264292717, 0.044797930866479874, -0.06454865634441376, -0.028600968420505524, -0.02865222468972206, -0.05006023496389389, 0.040492407977581024, -0.006817076355218887, -0.041312508285045624, 0.03987733647227287, 0.023270322009921074, 0.04650647193193436, 0.02935272455215454, 0.0487959161400795, 0.00664195092394948, 0.0268582571297884, 0.013728123158216476, 0.043772805482149124, -0.013309529982507229, 0.028857247903943062, 0.07538080960512161, -0.029626091942191124, 0.019203994423151016, 0.0016199098899960518, -0.03570849448442459, -0.03792959824204445, -0.03406829759478569, 0.015616060234606266, -0.0029792673885822296, 0.030685387551784515, 0.03905723616480827, -0.020229119807481766, 0.10100891441106796, -0.005129892844706774, -0.003656276734545827, 0.00003867574923788197, 0.012036668136715889, 0.0106612928211689, -0.02612358331680298, -0.015983395278453827, -0.022091427817940712, -0.008910038508474827, -0.05706525221467018, -0.07059689611196518, 0.004425120074301958, -0.018025102093815804, -0.012745711952447891, -0.03312860056757927, 0.017700480297207832, -0.026414036750793457, -0.014565307646989822, -0.07210040837526321, -0.02964317798614502, 0.08638380467891693, -0.003432030789554119, 0.0017758142203092575, -0.009704509750008583, 0.013805006630718708, 0.08296672254800797, -0.026414036750793457, -0.04886425659060478, -0.0442853681743145, 0.027114536613225937, -0.038066282868385315, -0.03598186373710632, 0.0135316401720047, 0.048932600766420364, -0.05293058231472969, 0.04654064401984215, -0.03270146623253822, -0.0028105489909648895, 0.012549229897558689, 0.031232120469212532, -0.07565417140722275, 0.034546688199043274, 0.02984820306301117, 0.006821347866207361, -0.03943311423063278, -0.007466321811079979, -0.025798961520195007, 0.06605217605829239, 0.00036947187618352473, -0.013668323867022991, -0.04842003807425499, 0.06465116888284683, 0.01728188619017601, -0.018435152247548103, -0.034341663122177124, -0.00971305277198553, 0.017563795670866966, 0.04650647193193436, -0.0268582571297884, 0.007188683841377497, 0.0018900729482993484, -0.00508290808647871, -0.06564212590456009, 0.029421066865324974, 0.051187872886657715, 0.04285019636154175, -0.00908089242875576, -0.013557268306612968, -0.018298467621207237, 0.026670316234230995 ]
24,471
future_fstrings
_make_fstring
null
def _make_fstring(tokens): import tokenize_rt new_tokens = [] exprs = [] for i, token in enumerate(tokens): if token.name == 'STRING' and _is_f(token): prefix, s = tokenize_rt.parse_string_literal(token.src) parts = [] try: _fstring_parse_outer(s, 0, 0, parts, exprs) except SyntaxError as e: raise TokenSyntaxError(e, tokens[i - 1]) if 'r' in prefix.lower(): parts = [s.replace('\\', '\\\\') for s in parts] token = token._replace(src=''.join(parts)) elif token.name == 'STRING': new_src = token.src.replace('{', '{{').replace('}', '}}') token = token._replace(src=new_src) new_tokens.append(token) exprs = ('({})'.format(expr) for expr in exprs) format_src = '.format({})'.format(', '.join(exprs)) new_tokens.append(tokenize_rt.Token('FORMAT', src=format_src)) return new_tokens
(tokens)
[ -0.015238759107887745, -0.037532832473516464, 0.003111321246251464, -0.014065857976675034, -0.012373657897114754, -0.014164346270263195, 0.008671409450471401, 0.05225229263305664, -0.029277756810188293, 0.030567053705453873, 0.03357540816068649, 0.04143653064966202, -0.06428571790456772, 0.036995623260736465, 0.021792680025100708, 0.029922405257821083, -0.00043592072324827313, -0.006115201395004988, 0.015543176792562008, -0.010636690072715282, -0.033933546394109726, 0.01899920590221882, 0.0015332770999521017, -0.008134203031659126, 0.06206526234745979, -0.005971946287900209, -0.007928273640573025, -0.02114803157746792, -0.007829785346984863, -0.07699960470199585, 0.004772184882313013, -0.007023975718766451, 0.018855949863791466, -0.01856943964958191, -0.013412256725132465, -0.05701552331447601, -0.04519697651267052, 0.019285716116428375, -0.019769201055169106, -0.029474733397364616, 0.028131715953350067, -0.025391962379217148, -0.05873458459973335, -0.0033015820663422346, -0.014441902749240398, 0.01628631167113781, -0.015355153940618038, 0.02988659217953682, -0.0026076901704072952, 0.023368485271930695, 0.0330561101436615, -0.04351373016834259, -0.03507958725094795, -0.004754277877509594, -0.004615499638020992, 0.052717868238687515, -0.0078118788078427315, 0.018077000975608826, 0.034846797585487366, -0.027701951563358307, 0.0357421413064003, 0.03670911490917206, 0.04612813517451286, 0.03282332047820091, -0.039896540343761444, 0.015444688498973846, 0.029367292299866676, 0.008487863466143608, 0.021345006301999092, 0.010609829798340797, -0.026358934119343758, 0.02532033622264862, 0.0028248110320419073, -0.026788700371980667, 0.022240351885557175, 0.03203541785478592, -0.042260248214006424, -0.008653501980006695, -0.01408376544713974, 0.0037693993654102087, -0.0025226324796676636, -0.02838241308927536, -0.02044966258108616, -0.002192474203184247, 0.03803422302007675, -0.026108238846063614, -0.03907282277941704, -0.017110029235482216, -0.01905292645096779, -0.0023211799561977386, -0.03368284925818443, -0.04154397174715996, -0.03853561729192734, -0.014397135935723782, -0.04222443699836731, -0.00760594941675663, 0.003841026918962598, -0.008165539242327213, -0.00303745549172163, 0.010645642876625061, 0.07707123458385468, -0.013152606785297394, -0.12241146713495255, -0.01119180303066969, 0.0682610496878624, -0.010824711993336678, -0.011379825882613659, -0.02039594203233719, 0.03907282277941704, -0.047560688108205795, 0.012302029877901077, -0.05461600050330162, 0.07735774666070938, 0.010878432542085648, 0.03176681324839592, -0.01435236819088459, -0.009392160922288895, 0.011361918412148952, 0.07087545096874237, -0.047023478895425797, 0.066112220287323, -0.031193794682621956, -0.043800242245197296, 0.027487069368362427, -0.006822523195296526, 0.016805611550807953, 0.035921212285757065, 0.002395045943558216, 0.117182657122612, -0.0618145689368248, -0.02429964393377304, 0.0739196240901947, 0.01038599293678999, 0.001344135613180697, -0.027236372232437134, -0.015650616958737373, -0.05332670360803604, -0.018077000975608826, -0.0036641964688897133, 0.008657978847622871, 0.014227020554244518, -0.02012733928859234, -0.03454238176345825, -0.01752188801765442, -0.06922801584005356, 0.038499802350997925, 0.0389653816819191, 0.057373661547899246, 0.02238360606133938, 0.0026569340843707323, 0.023314764723181725, 0.035330284386873245, 0.023475926369428635, -0.023672902956604958, 0.0591285340487957, -0.03391563892364502, 0.026412656530737877, -0.021864306181669235, -0.015874452888965607, 0.03550935164093971, 0.06192201003432274, 0.018318744376301765, -0.07012335956096649, 0.022294072434306145, 0.0768563523888588, 0.0456983707845211, 0.05264624208211899, -0.06095503643155098, -0.04265420138835907, 0.00029098687809892, 0.031784720718860626, -0.0034202151000499725, 0.0003186865942552686, 0.0792916864156723, 0.01980501413345337, -0.006701651960611343, -0.04322722181677818, 0.02617986686527729, -0.028722643852233887, -0.025571031495928764, -0.013904696330428123, 0.005533227697014809, -0.013098886236548424, -0.04870672896504402, 0.01161261461675167, -0.004013380501419306, -0.023887785151600838, 0.029438918456435204, 0.017781537026166916, -0.07126940041780472, -0.02039594203233719, -0.007579089142382145, 0.022311978042125702, 0.017620375379920006, -0.04243931919336319, -0.0225805826485157, -0.059737369418144226, -0.025463590398430824, 0.05286112427711487, -0.04068444296717644, -0.07957819849252701, 0.05773179605603218, 0.011979706585407257, -0.03918026387691498, -0.013188420794904232, 0.0032344311475753784, -0.005063171964138746, -0.0013631616020575166, -0.05601273849606514, 0.00890867505222559, 0.019876642152667046, -0.004194688051939011, -0.06904894858598709, 0.04806207865476608, -0.026036610826849937, 0.028400320559740067, 0.05733784660696983, 0.07420612871646881, -0.06972941011190414, 0.015435734763741493, 0.053362518548965454, 0.035706330090761185, -0.005125845782458782, -0.052288103848695755, 0.027666138485074043, 0.015793872997164726, 0.02104059047996998, -0.03142658248543739, -0.03298448398709297, -0.015686431899666786, 0.017083168029785156, -0.0478471964597702, -0.020413849502801895, 0.007628333289176226, 0.033396340906620026, -0.010887386277318, 0.053684841841459274, -0.047990452498197556, 0.0068628136068582535, -0.022884998470544815, -0.019070832058787346, -0.05579785257577896, -0.0012322175316512585, -0.04068444296717644, 0.0999920442700386, 0.0030285019893199205, -0.012955631129443645, -0.015928173437714577, -0.048635099083185196, 0.04351373016834259, 0.0013239902909845114, 0.024532433599233627, -0.0017716625006869435, 0.044409073889255524, -0.05730203166604042, -0.024013133719563484, 0.04365698620676994, 0.03472144901752472, 0.06851173937320709, 0.010600876063108444, 0.029206130653619766, -0.05171508342027664, -0.04548348858952522, 0.0022685786243528128, 0.00896239560097456, -0.06349781155586243, -0.053362518548965454, 0.016268406063318253, 0.004942300263792276, -0.019572226330637932, 0.0255352184176445, 0.005407879129052162, 0.0013989753788337111, 0.0006715081981383264, -0.012499005533754826, -0.018658975139260292, -0.007704437244683504, 0.024872664362192154, 0.015758058056235313, -0.07320334762334824, 0.01985873654484749, -0.03454238176345825, -0.017620375379920006, 0.07288102060556412, 0.004391663707792759, 0.04208118095993996, -0.0017873309552669525, -0.050569042563438416, 0.024442898109555244, -0.030334264039993286, 0.003758207429200411, -0.006956825032830238, 0.006818046327680349, 0.000609393697232008, 0.004031287506222725, 0.015901314094662666, 0.050569042563438416, -0.05085555464029312, 0.009669718332588673, -0.029170315712690353, -0.02039594203233719, 0.019142460078001022, 0.05669320002198219, 0.02141663432121277, 0.025069639086723328, -0.07427775859832764, -0.04179466888308525, -0.0602029487490654, -0.0025226324796676636, -0.031677279621362686, -0.02429964393377304, 0.007923796772956848, -0.0072836256586015224, -0.04061281681060791, 0.048527657985687256, 0.04813370853662491, -0.06582570821046829, -0.010162157006561756, 0.08509352058172226, -0.012704934924840927, 0.05479506775736809, -0.022831277921795845, 0.002562922891229391, 0.053040195256471634, 0.026806607842445374, -0.018766416236758232, -0.018148628994822502, -0.051106251776218414, -0.03803422302007675, -0.009562276303768158, 0.009983088821172714, -0.0414007194340229, 0.027827300131320953, 0.018023280426859856, -0.05081973969936371, 0.030244728550314903, 0.011943892575800419, -0.022007562220096588, -0.060382016003131866, -0.022813372313976288, 0.05694389343261719, 0.016035616397857666, 0.02532033622264862, 0.028471946716308594, -0.06589733809232712, -0.003084460971876979, 0.009329487569630146, -0.017754675820469856, 0.05450855940580368, -0.03203541785478592, -0.03133704885840416, -0.0897493064403534, 0.029546361416578293, -0.00028161375666968524, 0.02870473638176918, -0.00931158009916544, -0.03101472556591034, 0.06790290772914886, -0.016966773197054863, -0.016617588698863983, 0.0255352184176445, 0.03943096101284027, 0.024818941950798035, 0.001049231505021453, 0.020001990720629692, -0.004024572670459747, 0.029976125806570053, -0.001517608528956771, 0.003594807116314769, -0.003955183085054159, 0.04899323731660843, 0.03303820267319679, 0.05074811354279518, -0.042475130409002304, -0.019303621724247932, 0.0016295264940708876, -0.0035724234767258167, 0.01134401187300682, -0.04559092968702316, -0.05311182141304016, -0.015498409047722816, 0.02709311805665493, -0.005627238657325506, 0.04290489852428436, 0.008420712314546108, 0.04319140687584877, -0.06299642473459244, -0.007194091100245714, 0.049494631588459015, 0.026197772473096848, -0.08258655667304993, -0.015901314094662666, 0.019572226330637932, 0.01948269084095955, -0.03792678192257881, -0.016966773197054863, -0.013555511832237244, -0.029116595163941383, -0.003015071852132678, -0.024281736463308334, -0.012302029877901077, -0.015014923177659512, -0.02617986686527729, -0.008662455715239048, -0.02376243658363819, -0.006544966716319323, 0.04501790925860405, 0.0271468386054039, -0.02843613363802433, 0.046593714505434036, 0.019787108525633812, -0.01252586580812931, -0.022240351885557175, -0.017423398792743683, -0.008272981271147728, 0.006697175092995167, -0.06672105193138123, -0.0031695186626166105, -0.015498409047722816, -0.002171209780499339, -0.037962596863508224, -0.01607142947614193, -0.017835257574915886, 0.012722841463983059, -0.09060884267091751, 0.022097095847129822, -0.019500598311424255, 0.050891365855932236, 0.010556109249591827, 0.03961002826690674, -0.03239355608820915, -0.0007112391176633537, -0.010717270895838737, -0.027487069368362427, -0.023314764723181725, -0.017459213733673096, 0.029600081965327263, -0.0019686382729560137, 0.042045366019010544, 0.03781934082508087, 0.02741544134914875, 0.00850577000528574, 0.044086750596761703, 0.037855155766010284, -0.05085555464029312, -0.033235177397727966, -0.03928770497441292, -0.0017638282151892781, -0.07198567688465118, 0.009759251959621906, -0.011102268472313881, 0.030244728550314903, -0.059844810515642166, 0.032268207520246506, 0.08452049642801285, -0.0031202747486531734, 0.07306008785963058, 0.007453741040080786, -0.005586948245763779, 0.056478314101696014, 0.008581874892115593, 0.0591285340487957, 0.016751891002058983, 0.05178671330213547, 0.002677079290151596, -0.08158376812934875, 0.07879029214382172, -0.013743534684181213, -0.022043375298380852, -0.025248708203434944, 0.0346677303314209, -0.025821728631854057, -0.03556307405233383, 0.023959413170814514, 0.0012165489606559277, 0.044230006635189056, 0.004270792007446289, -0.007740251254290342, -0.039251893758773804, 0.011012734845280647, -0.04630720615386963, -0.05629924684762955, -0.04512535035610199, 0.046163950115442276, 0.015238759107887745, 0.042582571506500244, 0.055511344224214554, -0.04315559193491936, 0.00038695658440701663, 0.026538003236055374, -0.02913450263440609, 0.03713887929916382, 0.008725129999220371, -0.02053919807076454, -0.0019350628135725856, 0.035169120877981186, -0.029009154066443443, 0.004349134862422943, -0.041723042726516724, -0.00409172335639596, 0.006477815564721823, -0.03518702834844589, -0.09526462852954865, 0.03069240041077137, -0.007641763426363468, -0.00845204945653677, 0.05740947276353836, 0.016975726932287216, -0.034094709903001785, -0.06840430200099945, 0.00002068734829663299, -0.05579785257577896, -0.02908078208565712, -0.026305213570594788, -0.032483089715242386, -0.00363509776070714, 0.029009154066443443, 0.024872664362192154, -0.049602072685956955, 0.0008046906441450119, -0.03588539734482765, -0.03228611499071121, -0.019017111510038376, -0.03703143820166588, -0.055081579834222794, -0.00681356992572546, 0.017781537026166916, 0.03982491418719292, 0.0378909707069397, -0.0335933156311512, -0.0006827000179328024, 0.03857143223285675, 0.029868684709072113, -0.027809392660856247, -0.009463788941502571, 0.02542777732014656, 0.05576204136013985, -0.024317549541592598, 0.0050676483660936356, -0.01736072450876236, 0.0009395518573001027, 0.08817350119352341, -0.028310785070061684, 0.00902954675257206, -0.01494329608976841, -0.055189020931720734, 0.06965778023004532, -0.059522487223148346, 0.051213692873716354, -0.04208118095993996, -0.027540789917111397, 0.013985277153551579, -0.012400518171489239, 0.05200159549713135, -0.03176681324839592, -0.02875845693051815, -0.008268504403531551, 0.03242936730384827, -0.022759651765227318, -0.011514127254486084, -0.0034403603058308363, 0.03982491418719292, 0.05447274446487427, 0.005327298305928707, -0.057481102645397186, 0.023135695606470108, -0.0003371530619915575, 0.025230800732970238, -0.035169120877981186, 0.032912854105234146, 0.05436530336737633, -0.018282929435372353, 0.066649429500103, -0.03604656085371971, -0.017718862742185593, -0.045519303530454636, -0.023726623505353928, -0.02048547752201557, 0.04491046816110611, 0.03454238176345825, -0.0034582673106342554, 0.019715480506420135, -0.049279749393463135, -0.02865101583302021, 0.022831277921795845, 0.04609232395887375, -0.005792877171188593, 0.05945085734128952, 0.031999602913856506, 0.014253880828619003, -0.055081579834222794, 0.005609331652522087, 0.014271787367761135, 0.016671309247612953, -0.0003519822203088552, -0.04405093938112259, -0.0035455632023513317, 0.0499960221350193, -0.06170712783932686, -0.02268802374601364, -0.010869479738175869, -0.0038992243353277445, -0.01980501413345337, 0.013474931009113789, 0.029528453946113586, -0.0010917603503912687, 0.024747315794229507, 0.008380422368645668, -0.015650616958737373, 0.027379628270864487, 0.04849184677004814, 0.07162754237651825, 0.026752887293696404, 0.008980303071439266, 0.009992041625082493, 0.05712296441197395, -0.03020891547203064, 0.005416832864284515, -0.016456427052617073, -0.00041213814984075725, -0.010242738761007786, 0.03703143820166588, -0.08366096764802933, -0.007162753958255053, 0.04147234559059143, 0.014674692414700985, 0.02575010061264038, -0.06249503046274185, -0.07936331629753113, -0.05192996561527252, -0.018408278003335, 0.01362713985145092, -0.04079188406467438, -0.022884998470544815, -0.03885794058442116, 0.0360107459127903, -0.0013396588619798422, 0.014907482080161572, -0.008689315989613533, -0.007471648044884205, 0.036404699087142944, -0.01905292645096779, -0.026520097628235817, -0.03069240041077137, -0.01585654728114605, -0.06980103999376297, -0.029474733397364616, -0.08867489546537399, 0.03341424837708473, 0.031140074133872986, -0.023153603076934814, 0.09189813584089279, 0.00822373665869236, 0.030728215351700783, 0.01824711635708809, 0.024747315794229507, -0.03233983367681503, -0.025069639086723328, 0.06464385241270065, 0.023261044174432755, 0.03142658248543739, -0.011200756765902042, 0.04315559193491936, 0.06682849675416946, -0.094619981944561, -0.012176682241261005, 0.06922801584005356, 0.030889376997947693, -0.013636092655360699, -0.007946180179715157, -0.0018477666890248656, -0.012051333673298359, 0.014397135935723782, -0.0005131441866979003, 0.055511344224214554, 0.02066454477608204, 0.07477915287017822, 0.0768563523888588, 0.016465380787849426, 0.01282132975757122, 0.004619976505637169, 0.016160963103175163, 0.004382709972560406, -0.0389653816819191, -0.02152407541871071, -0.006164445076137781, -0.015901314094662666, 0.04956625774502754, 0.016993634402751923, -0.0106814568862319, -0.0002982615551445633, -0.006822523195296526, 0.011272383853793144, -0.022311978042125702, -0.023475926369428635, 0.033074017614126205, -0.0017671857494860888, 0.018873857334256172, 0.03250099718570709, 0.013457024469971657, 0.02591126225888729, -0.004942300263792276, 0.007355253212153912, -0.04304815083742142, 0.00009764848073245957, -0.053469959646463394, 0.06493036448955536, -0.03738957643508911, -0.08201353251934052, -0.03230402246117592, 0.0015332770999521017, 0.03434540703892708, -0.009857740253210068, 0.05081973969936371, -0.004085008054971695, -0.017781537026166916, -0.04566255584359169, 0.016268406063318253, 0.061348989605903625, -0.007520891726016998, 0.00635694433003664, 0.03174890577793121, 0.03996816650032997, 0.054974138736724854, 0.015632711350917816, 0.017960606142878532, -0.018533626571297646, 0.03644051030278206, -0.03982491418719292, -0.07141266018152237, 0.0421886220574379, 0.0825149267911911, -0.027111023664474487, -0.024980105459690094, -0.013412256725132465, -0.004445384256541729, 0.00669269822537899, 0.006312177050858736, -0.057660169899463654, 0.06131317466497421, 0.011684242635965347, 0.052180662751197815, -0.0427258275449276, 0.05522483214735985, -0.024228015914559364, 0.05124950408935547, 0.014182252809405327, -0.021183844655752182, -0.07288102060556412, 0.08953442424535751, -0.021219659596681595, 0.024496618658304214, -0.07087545096874237, -0.0018276214832440019, 0.03042379766702652, -0.022974533960223198, -0.0035164644941687584, 0.03749701753258705, -0.027934741228818893, -0.011872264556586742, -0.04168722778558731, 0.02120175212621689, 0.019357342272996902, 0.02795264683663845, 0.009812973439693451, -0.017083168029785156, -0.02827497199177742, 0.003095652675256133 ]
24,472
future_fstrings
_natively_supports_fstrings
null
def _natively_supports_fstrings(): try: return eval('f"hi"') == 'hi' except SyntaxError: return False
()
[ 0.03868623077869415, -0.03393168747425079, 0.01771836169064045, -0.015170064754784107, 0.02337934449315071, 0.015152961947023869, 0.05165005102753639, 0.08045093715190887, -0.039336130023002625, -0.03160572424530983, 0.0613301582634449, 0.05537842959165573, -0.028048371896147728, -0.030049383640289307, 0.03766006976366043, -0.007285735569894314, 0.006127030123025179, 0.020557403564453125, 0.009517633356153965, -0.029313968494534492, -0.08072458207607269, 0.010595100931823254, 0.003610800253227353, 0.0314175970852375, 0.05944886431097984, 0.049631934612989426, 0.020164042711257935, 0.019497038796544075, 0.009201234206557274, 0.01487076748162508, 0.005712290294468403, -0.05767018720507622, -0.0007594652124680579, 0.024422606453299522, 0.029707329347729683, -0.047408588230609894, -0.010791782289743423, -0.005511334165930748, -0.05818326771259308, -0.08209279179573059, -0.013716337271034718, 0.029707329347729683, -0.04419328644871712, 0.017077011987566948, -0.05144481733441353, -0.007247254718095064, -0.05144481733441353, 0.030750593170523643, -0.021378332749009132, 0.056780848652124405, 0.06851328164339066, -0.019394421949982643, -0.01864190585911274, 0.01954834721982479, -0.04227779060602188, 0.017889387905597687, -0.005660982336848974, 0.018847137689590454, -0.03408561274409294, -0.031810957938432693, 0.025311945006251335, -0.02483307011425495, 0.008910488337278366, -0.032306935638189316, -0.049768757075071335, 0.016692200675606728, 0.036394473165273666, -0.04405646771192551, -0.0027385642752051353, -0.01611926220357418, -0.08565014600753784, 0.030562464147806168, -0.028595656156539917, -0.019599653780460358, -0.015691695734858513, -0.03080189973115921, -0.05076071247458458, 0.04491160064935684, -0.022575518116354942, 0.006896649952977896, -0.019856194034218788, -0.0354367233812809, -0.003642867784947157, -0.02219926007091999, -0.09591174870729446, -0.012339573353528976, -0.024388400837779045, 0.051752664148807526, 0.030630873516201973, 0.007837296463549137, -0.01387026160955429, 0.0031533038709312677, -0.01420376356691122, 0.008444441482424736, 0.0010400558821856976, -0.02698800526559353, 0.055720485746860504, -0.028373321518301964, 0.030186204239726067, 0.010270150378346443, 0.02365298569202423, 0.028493041172623634, 0.0023473408073186874, -0.029707329347729683, 0.024918584153056145, 0.008410235866904259, -0.04203835129737854, -0.015050346031785011, -0.02007852867245674, -0.07696199417114258, -0.0103727662935853, -0.07525172829627991, 0.007931360974907875, 0.029570508748292923, 0.020335068926215172, -0.02668015845119953, 0.020677123218774796, -0.004754540976136923, 0.052813030779361725, -0.02645782381296158, 0.04768223315477371, 0.028133884072303772, -0.03252926841378212, -0.05141061171889305, 0.050452861934900284, 0.03526569530367851, 0.010483933612704277, 0.003775413380935788, 0.05445488542318344, 0.013998531736433506, 0.05363395810127258, 0.03837838023900986, 0.003984921146184206, 0.03895987197756767, -0.048434749245643616, 0.03466710448265076, -0.040396496653556824, 0.07976683229207993, -0.00004659808109863661, -0.04299610108137131, -0.002588916104286909, -0.030955825001001358, 0.0026167079340666533, -0.02076263539493084, -0.06427181512117386, 0.07757768779993057, -0.019736476242542267, -0.0005825595580972731, -0.0051735565066337585, 0.0011009840527549386, 0.042243584990501404, 0.013015128672122955, -0.04114901274442673, -0.009534736163914204, 0.024918584153056145, -0.0011886352440342307, 0.028903504833579063, -0.016965843737125397, 0.01678626611828804, -0.001650407211855054, 0.03328178822994232, 0.006298056337982416, -0.04019126296043396, 0.013100641779601574, 0.04597196355462074, 0.04881100729107857, 0.02011273428797722, -0.06249313801527023, 0.004359041806310415, 0.06676880270242691, -0.005532712209969759, 0.04333815351128578, 0.0528472363948822, 0.08428193628787994, 0.06170641630887985, 0.035641953349113464, -0.041969940066337585, 0.02129281871020794, 0.00007382205512840301, -0.014665535651147366, -0.053873397409915924, -0.026098666712641716, -0.028749581426382065, -0.04265404865145683, 0.04508262500166893, 0.04768223315477371, -0.019514141604304314, -0.007443935144692659, 0.036394473165273666, -0.019599653780460358, -0.05298405885696411, -0.009141374379396439, 0.02775762602686882, 0.01756443828344345, -0.02774052321910858, -0.038652025163173676, 0.021891411393880844, -0.0193089097738266, 0.03567615896463394, -0.036394473165273666, -0.023618781939148903, 0.014408995397388935, 0.02259262092411518, 0.01388736441731453, -0.04299610108137131, -0.01387026160955429, -0.02500409632921219, 0.022233465686440468, -0.024508120492100716, -0.012544805184006691, -0.04569832235574722, -0.04993978142738342, -0.05165005102753639, 0.08818134665489197, 0.007148914039134979, 0.08715518563985825, 0.0340685099363327, 0.021651973947882652, -0.01743616722524166, 0.01003926433622837, 0.11363010853528976, 0.07559378445148468, 0.046074580401182175, 0.036702319979667664, 0.04891362413764, -0.010535242035984993, -0.002783458912745118, 0.03302524611353874, 0.005276172421872616, 0.012544805184006691, -0.01954834721982479, 0.021617768332362175, 0.020933663472533226, 0.03899407759308815, 0.06379294395446777, -0.00873091071844101, 0.05260780081152916, 0.02447391487658024, 0.04268825426697731, -0.024217374622821808, 0.016050850972533226, -0.018539289012551308, -0.05288144201040268, -0.006575975101441145, 0.019582552835345268, -0.03909669443964958, 0.008264862932264805, 0.060611847788095474, -0.05048706755042076, 0.002937382785603404, 0.014015634544193745, 0.037249606102705, 0.00031533039873465896, -0.04675868898630142, -0.03677073121070862, 0.012467843480408192, 0.03189647197723389, 0.04087537154555321, 0.08592379093170166, 0.032991040498018265, -0.028390424326062202, -0.018453776836395264, 0.02645782381296158, 0.05353134125471115, -0.039336130023002625, -0.05855952575802803, -0.04296189546585083, 0.03239244967699051, 0.015905478969216347, -0.040259674191474915, -0.03981500491499901, -0.028322014957666397, -0.05250518396496773, 0.011510093696415424, -0.010116226971149445, -0.02235318347811699, 0.042380403727293015, -0.004604892805218697, 0.07101026922464371, -0.021344127133488655, 0.00371555401943624, -0.009124272502958775, 0.0034119817428290844, 0.060577642172575, 0.00545575050637126, 0.03714698925614357, 0.009423568844795227, -0.06991569697856903, 0.055994126945734024, -0.004929843358695507, -0.0032302660401910543, -0.014058390632271767, 0.03913090005517006, -0.016871780157089233, 0.009859686717391014, 0.047134947031736374, 0.03584718704223633, -0.07627788931131363, 0.027808934450149536, -0.06119333580136299, 0.009919545613229275, -0.002821939764544368, 0.052539389580488205, 0.020728429779410362, 0.0011351894354447722, -0.05818326771259308, -0.02604736015200615, -0.0010144019033759832, -0.04692971333861351, -0.024884378537535667, -0.00839313305914402, 0.024918584153056145, -0.025175124406814575, -0.029946766793727875, 0.05260780081152916, 0.07490967214107513, -0.030237512663006783, -0.042243584990501404, -0.02789444662630558, -0.013724888674914837, 0.018847137689590454, -0.02787734568119049, 0.035641953349113464, 0.008884835056960583, -0.03145180270075798, -0.038788843899965286, 0.038823049515485764, -0.07518331706523895, 0.013981428928673267, 0.012647421099245548, 0.018060414120554924, -0.028322014957666397, 0.08619743585586548, 0.03068218193948269, -0.00002311532080057077, 0.0011148799676448107, -0.0038331348914653063, 0.036291856318712234, -0.017752567306160927, 0.005468577146530151, 0.029023222625255585, 0.05100014805793762, 0.04008864611387253, 0.011356170289218426, 0.013126295991241932, 0.017820976674556732, -0.033777765929698944, 0.03411981835961342, 0.07313099503517151, -0.054386477917432785, -0.05052127316594124, -0.1013161912560463, -0.03451317921280861, -0.019086575135588646, -0.028185192495584488, 0.029827049002051353, 0.02341354824602604, 0.0602697916328907, 0.005126523785293102, 0.007944188080728054, 0.05380498617887497, -0.03182806074619293, -0.02100207284092903, 0.005079491529613733, -0.04614299163222313, -0.006127030123025179, 0.05141061171889305, 0.05062389001250267, -0.02561979368329048, 0.019120780751109123, 0.026474926620721817, 0.023841116577386856, 0.0214296393096447, -0.08140868693590164, -0.03052825853228569, -0.0237727053463459, 0.04450113698840141, 0.0008733048452995718, -0.02550007402896881, -0.015589079819619656, 0.023157009854912758, 0.021874308586120605, -0.02909163385629654, 0.0037347946781665087, 0.003101995913311839, -0.00042409266461618245, -0.04521944746375084, -0.038549408316612244, 0.005793528165668249, 0.00938936322927475, -0.02563689649105072, -0.003687762189656496, 0.028766684234142303, 0.04333815351128578, -0.03516307845711708, 0.01942862756550312, 0.013733440078794956, -0.010945705696940422, -0.03282001614570618, 0.06475069373846054, 0.004115328658372164, -0.014520162716507912, 0.000512812752276659, 0.008380305953323841, -0.00932095292955637, 0.08927591145038605, 0.031092645600438118, 0.004869983997195959, -0.023584576323628426, 0.05271041393280029, 0.055070582777261734, -0.041969940066337585, -0.07176278531551361, -0.05524161085486412, -0.05541263520717621, 0.033247582614421844, -0.04176471009850502, -0.04627981409430504, 0.020335068926215172, -0.0006846410688012838, -0.027689214795827866, -0.03001517802476883, 0.004972599912434816, 0.05900419503450394, -0.0073712486773729324, 0.0123053677380085, -0.007080503739416599, 0.040122851729393005, 0.04101219028234482, -0.029775740578770638, -0.05561786890029907, 0.024542324244976044, -0.010920051485300064, -0.050829123705625534, -0.0014515887014567852, -0.06369032710790634, -0.016315942630171776, -0.04894782975316048, -0.005075215827673674, -0.0034205331467092037, -0.02483307011425495, -0.026064462959766388, -0.0038331348914653063, 0.04744279384613037, -0.03169123828411102, -0.025978948920965195, -0.014896421693265438, 0.05123958736658096, -0.020249556750059128, -0.011510093696415424, -0.04200414568185806, 0.025944743305444717, -0.09940069168806076, 0.04877680167555809, 0.058491114526987076, -0.016495520249009132, 0.031913574784994125, 0.04333815351128578, -0.02011273428797722, 0.029656022787094116, -0.0702577531337738, 0.09249121695756912, -0.008619743399322033, -0.002216933062300086, 0.0008118421537801623, 0.036702319979667664, 0.04108060151338577, -0.013750542886555195, -0.0034397735726088285, 0.010124778375029564, 0.011723876930773258, 0.009543287567794323, 0.011740979738533497, -0.02378980815410614, 0.019343115389347076, 0.05349713936448097, -0.026013154536485672, 0.04761382192373276, 0.01584561914205551, 0.0032901251688599586, -0.03704437240958214, -0.013374284841120243, -0.048982035368680954, 0.009149925783276558, 0.02404634840786457, -0.05301826447248459, 0.05681505426764488, -0.05291564762592316, 0.030442744493484497, -0.014836561866104603, 0.012502048164606094, 0.021617768332362175, 0.06382714956998825, -0.037625864148139954, 0.063450887799263, 0.012938166037201881, 0.010441177524626255, 0.04928988218307495, -0.004797297529876232, 0.01263031829148531, 0.027928652241826057, 0.05363395810127258, -0.05589151009917259, 0.051102764904499054, 0.00030383953708224, -0.024764658883213997, 0.08441875874996185, 0.014674087055027485, -0.021053381264209747, -0.032187215983867645, -0.0335383266210556, -0.029536303132772446, 0.040635932236909866, 0.002860420849174261, 0.04412487521767616, 0.01281844824552536, 0.005639603827148676, -0.0005072009516879916, -0.03382907062768936, 0.02288336679339409, -0.020181145519018173, -0.037489041686058044, -0.04627981409430504, -0.07620947808027267, -0.040772754698991776, -0.018573494628071785, 0.0036471434868872166, 0.016213327646255493, 0.02563689649105072, -0.026406515389680862, 0.04415908083319664, 0.026218386366963387, 0.03779689222574234, -0.04881100729107857, -0.02777472883462906, 0.04874259606003761, -0.010877295397222042, 0.016333045437932014, 0.02233608067035675, -0.005165005102753639, -0.016196224838495255, 0.015922581776976585, -0.012048827484250069, 0.0005472853081300855, -0.012151443399488926, -0.038823049515485764, 0.006550320889800787, -0.04597196355462074, 0.004429590422660112, -0.01387881301343441, -0.019257601350545883, 0.00840168446302414, 0.0032345415093004704, 0.024781761690974236, 0.011176591739058495, -0.013425592333078384, 0.003927199635654688, 0.028185192495584488, -0.060885488986968994, -0.0013714199885725975, -0.031520213931798935, -0.013741991482675076, 0.037865299731492996, -0.02021535113453865, -0.0723784789443016, -0.04186732694506645, 0.021840102970600128, 0.009286747314035892, -0.002201968105509877, -0.017384858801960945, 0.016067953780293465, -0.021651973947882652, 0.10849931091070175, -0.023584576323628426, 0.007589307613670826, -0.0011148799676448107, 0.0027663561049848795, -0.050179220736026764, 0.029946766793727875, -0.012655972503125668, -0.03476971760392189, 0.009586043655872345, -0.05832009017467499, 0.024405503645539284, 0.018180133774876595, 0.01717107556760311, 0.017419064417481422, 0.06495591998100281, -0.06553741544485092, -0.03302524611353874, -0.039746593683958054, -0.019890399649739265, 0.06351929903030396, -0.04166209325194359, 0.01918919011950493, -0.03039143607020378, -0.010201740078628063, 0.045287858694791794, 0.031913574784994125, -0.04946091026067734, -0.008119489997625351, -0.0013521794462576509, -0.004912740550935268, -0.07607265561819077, 0.04795587435364723, 0.04231199622154236, -0.020523197948932648, 0.02473045513033867, -0.02579081989824772, -0.00906441267579794, 0.019787784665822983, 0.03612082824110985, -0.010184637270867825, -0.039336130023002625, 0.03328178822994232, 0.043680205941200256, -0.027997063472867012, -0.007345594931393862, 0.015794310718774796, 0.014580022543668747, 0.028595656156539917, 0.045800939202308655, -0.00931240152567625, 0.003993472550064325, 0.018590597435832024, -0.02351616509258747, -0.03105843998491764, -0.036804936826229095, -0.07921954989433289, -0.05896998941898346, -0.02235318347811699, 0.00022407164215110242, 0.027312956750392914, -0.020283760502934456, -0.03718119487166405, -0.05223153904080391, 0.021309921517968178, -0.0039443024434149265, 0.0428592786192894, -0.002501264913007617, -0.029929663985967636, -0.03598400950431824, -0.024764658883213997, -0.01197186578065157, -0.008611191995441914, 0.004290631040930748, -0.015956787392497063, -0.08140868693590164, 0.10719950497150421, -0.027312956750392914, -0.0017017151694744825, 0.0449800118803978, 0.019582552835345268, 0.01852218620479107, 0.03803632780909538, 0.03408561274409294, -0.043440770357847214, -0.028099680319428444, 0.024627838283777237, 0.004780195187777281, 0.01664089411497116, -0.015640387311577797, -0.02567110024392605, 0.06646095961332321, -0.019787784665822983, -0.01197186578065157, 0.037625864148139954, -0.00004175455615040846, 0.016076505184173584, -0.04586935043334961, 0.0026637401897460222, 0.019856194034218788, 0.006028689444065094, -0.03158862143754959, 0.012416535057127476, 0.015041794627904892, 0.011817941442131996, 0.039336130023002625, 0.015452258288860321, -0.0051821074448525906, 0.03584718704223633, -0.003016482573002577, -0.018470879644155502, -0.045253653079271317, -0.005943176336586475, 0.037249606102705, 0.01089439820498228, 0.011655466631054878, 0.06485331058502197, -0.0701209306716919, 0.0048186760395765305, -0.010603652335703373, -0.009688659571111202, 0.016563931480050087, 0.039986032992601395, -0.02007852867245674, 0.003818170167505741, 0.02561979368329048, -0.002114316914230585, 0.004707508720457554, 0.0001497819321230054, 0.02854434959590435, -0.04207255691289902, -0.026474926620721817, 0.015093102119863033, -0.03119526244699955, -0.05257359519600868, -0.01570879854261875, -0.05763598158955574, -0.039472952485084534, -0.03991762176156044, 0.038549408316612244, -0.020249556750059128, -0.011253553442656994, -0.03418822959065437, -0.06091969460248947, -0.019497038796544075, -0.02644072100520134, 0.03988341614603996, -0.014460303820669651, 0.023601679131388664, 0.003805343061685562, 0.008807872422039509, 0.012536253780126572, -0.026149975135922432, -0.008162247017025948, -0.07566219568252563, 0.008807872422039509, -0.00648191012442112, -0.006888098549097776, 0.016238979995250702, 0.040362291038036346, -0.028356218710541725, 0.04874259606003761, -0.04908464848995209, -0.05613094940781593, 0.031007133424282074, -0.012732934206724167, -0.036018215119838715, 0.01599099300801754, 0.03408561274409294, 0.003144752699881792, -0.00971431378275156, -0.0029309692326933146, -0.01003926433622837, 0.04863997921347618, -0.013759094290435314, 0.005558366421610117, -0.037215400487184525, 0.07634630054235458, 0.01003926433622837, 0.0006050068186596036, -0.042483020573854446, 0.023618781939148903, 0.06676880270242691, -0.0024756109341979027, -0.05349713936448097, 0.012211303226649761, -0.016315942630171776, 0.009149925783276558, -0.11219348758459091, 0.09228598326444626, -0.007969842292368412, 0.036394473165273666, -0.046861302107572556, -0.04121742397546768, -0.03711278364062309, 0.023841116577386856 ]
24,475
encodings.utf_8
decode
null
def decode(input, errors='strict'): return codecs.utf_8_decode(input, errors, True)
(input, errors='strict')
[ -0.02149503491818905, 0.012270374223589897, 0.014948501251637936, -0.007509259041398764, -0.08471984416246414, -0.014493394643068314, -0.0373537503182888, 0.031699925661087036, 0.10257402807474136, -0.032470107078552246, 0.02126748114824295, 0.04355020076036453, -0.008664529770612717, 0.02333296462893486, 0.06753081828355789, 0.06896615028381348, -0.0245057400316, 0.05184714496135712, -0.009207156486809254, 0.018239272758364677, -0.06809094548225403, -0.005973273888230324, 0.0023258572909981012, 0.028041567653417587, -0.016173789277672768, 0.04607079178094864, 0.01662014238536358, -0.04519558697938919, -0.07533764839172363, -0.03703867644071579, 0.004944908432662487, 0.048346325755119324, -0.006104554980993271, 0.043515194207429886, -0.02758646197617054, -0.017048994079232216, -0.01920199766755104, -0.03084222413599491, -0.02770899049937725, 0.02924935147166252, -0.0584636926651001, -0.02741141989827156, -0.04796123504638672, 0.011491441167891026, 0.022667810320854187, -0.03238258510828018, -0.0524422824382782, -0.027043834328651428, -0.06410001218318939, 0.0345705971121788, 0.0076142833568155766, -0.008511368185281754, 0.022597793489694595, -0.0017383759841322899, 0.045930758118629456, -0.027043834328651428, -0.026483703404664993, 0.012532935477793217, 0.003730561351403594, -0.022895362228155136, -0.013574429787695408, 0.005189965479075909, 0.013731966726481915, -0.00924216490238905, -0.032575130462646484, 0.050586849451065063, 0.0764579102396965, -0.07631787657737732, -0.02433069981634617, 0.01054622046649456, -0.03329279646277428, 0.029266854748129845, -0.09865310788154602, -0.013408140279352665, 0.09403202682733536, 0.011920291930437088, 0.00960099883377552, -0.03555082529783249, -0.053912628442049026, 0.024173162877559662, 0.04778619110584259, -0.004257872235029936, 0.05184714496135712, 0.034990694373846054, 0.00064765167189762, -0.038368988782167435, 0.07085659354925156, 0.04046947881579399, 0.01813424751162529, 0.038368988782167435, 0.03196248784661293, -0.06161443144083023, -0.021985149011015892, 0.07939859479665756, -0.05377259477972984, 0.009347189217805862, 0.00420973589643836, 0.0416947677731514, -0.057273413985967636, -0.022930370643734932, -0.011141359806060791, 0.06497521698474884, -0.06952628493309021, -0.007889972999691963, -0.0186768751591444, 0.006200827192515135, 0.006546533200889826, -0.001351097715087235, 0.028076576068997383, -0.06728576123714447, 0.008848322555422783, 0.005763224791735411, -0.0039734304882586, 0.015526136383414268, -0.00015316087228711694, -0.01119387149810791, 0.005259981844574213, 0.0018040162976831198, -0.013180587440729141, 0.021530043333768845, -0.018116744235157967, 0.009014611132442951, -0.03829897195100784, -0.05506789684295654, 0.05713338404893875, 0.058393675833940506, 0.003485503839328885, 0.009303429163992405, 0.08738046884536743, 0.048171281814575195, 0.03644353523850441, 0.04271000251173973, -0.0037086810916662216, -0.020952407270669937, 0.0077411881648004055, -0.02356051839888096, 0.010843790136277676, 0.01296178624033928, -0.009977336972951889, -0.01213909313082695, 0.031227314844727516, 0.05009673535823822, 0.06851104646921158, -0.009758535772562027, -0.06497521698474884, -0.04036445543169975, 0.05919886752963066, -0.043095093220472336, -0.037003666162490845, 0.0186768751591444, -0.02415565773844719, -0.022422751411795616, -0.029144326224923134, 0.037773847579956055, 0.053317487239837646, -0.019237006083130836, -0.00023534809588454664, -0.011080095544457436, 0.035953421145677567, 0.0000212305585591821, 0.01329436432570219, 0.019342031329870224, -0.029459400102496147, -0.0001314175024162978, 0.031174801290035248, -0.035708364099264145, 0.08128903806209564, -0.040084388107061386, -0.03822895511984825, 0.018256776034832, -0.016935216262936592, 0.031209809705615044, 0.030737198889255524, 0.010861294344067574, 0.012419158592820168, -0.04995670169591904, 0.005780728999525309, 0.01890442706644535, 0.004262248519808054, 0.011211375705897808, -0.011552706360816956, 0.03320527821779251, -0.029161831364035606, -0.014519650489091873, 0.017372818663716316, 0.002135500079020858, -0.002297413069754839, 0.09144141525030136, 0.02634366974234581, -0.07855840027332306, 0.017679141834378242, -0.047646161168813705, 0.018799403682351112, -0.04418034851551056, -0.014720948413014412, -0.03668859228491783, -0.0002702195488382131, 0.03514823317527771, 0.036898642778396606, -0.04778619110584259, 0.003636476816609502, 0.03383542597293854, -0.007942485623061657, -0.0373537503182888, -0.07925856113433838, 0.0005349690327420831, -0.052897389978170395, -0.03248760849237442, 0.00234773731790483, -0.020514804869890213, -0.0015031645307317376, 0.02273782528936863, 0.0266412403434515, -0.047226060181856155, 0.001941861119121313, -0.029266854748129845, -0.015753690153360367, -0.042149871587753296, 0.05034179240465164, 0.033345311880111694, 0.0011815266916528344, -0.012244118377566338, 0.027008825913071632, 0.000052512299589579925, -0.015753690153360367, 0.041624750941991806, -0.03525325655937195, 0.039139166474342346, 0.04193982481956482, 0.010003592818975449, 0.03752879053354263, -0.0032535744830965996, 0.043690234422683716, -0.012147845700383186, 0.013688205741345882, 0.03313526138663292, 0.010677500627934933, -0.0945221409201622, -0.013775726780295372, -0.008900835178792477, -0.021775100380182266, -0.0330827496945858, 0.0004496365727391094, 0.07813829928636551, 0.03383542597293854, 0.02433069981634617, -0.006935999728739262, 0.04845134913921356, -0.014790964312851429, 0.010231146588921547, -0.006157067138701677, -0.014852228574454784, 0.02522340789437294, 0.031104786321520805, 0.05062185600399971, -0.05730842426419258, 0.010353675112128258, -0.09018111974000931, 0.06658559292554855, 0.040259428322315216, 0.007369226310402155, 0.03581338748335838, 0.011097599752247334, 0.0442853718996048, -0.02592357248067856, -0.04046947881579399, -0.027673982083797455, -0.01594623550772667, 0.04621082544326782, 0.01925450935959816, 0.08647025376558304, -0.0242781862616539, -0.008620768785476685, -0.029984522610902786, -0.0059163859114050865, -0.02007720246911049, 0.025783538818359375, -0.0009474094258621335, 0.037598807364702225, -0.06147439777851105, -0.007347345817834139, 0.013145579025149345, -0.0006175665184855461, 0.025415953248739243, 0.026448694989085197, 0.0015469248173758388, -0.014659684151411057, -0.1013837456703186, 0.0141783207654953, 0.0021059620194137096, 0.05429771915078163, -0.056503236293792725, -0.07183682918548584, 0.0022449009120464325, -0.027989055961370468, 0.028671715408563614, -0.0026890672743320465, -0.014878485351800919, 0.014484643004834652, -0.010134873911738396, -0.03721371665596962, -0.011298896744847298, 0.03626849502325058, 0.04897647351026535, -0.06592044234275818, -0.0044066570699214935, -0.0683009997010231, -0.029581928625702858, -0.03728373348712921, -0.00140689208637923, -0.00481362733989954, 0.022177694365382195, -0.016952721402049065, 0.0028400402516126633, -0.09753284603357315, 0.022422751411795616, 0.012165349908173084, 0.022405248135328293, 0.042324915528297424, -0.004021566826850176, 0.020129714161157608, -0.07288707047700882, -0.025906067341566086, -0.028216609731316566, -0.05107696354389191, 0.01586746610701084, 0.04323512688279152, -0.022965379059314728, 0.07512759417295456, -0.01990216225385666, 0.0007794794510118663, -0.029161831364035606, 0.044565439224243164, -0.06581541895866394, -0.014510898850858212, -0.0477161779999733, -0.010213642381131649, -0.02942439168691635, 0.014344610273838043, -0.023543015122413635, 0.04960661754012108, -0.007019144017249346, 0.010659996420145035, 0.034465573728084564, -0.03206751123070717, 0.039314206689596176, -0.026308661326766014, -0.001688051619566977, -0.005710712634027004, -0.01920199766755104, -0.03609345480799675, -0.025328433141112328, 0.0037852616515010595, 0.008266311138868332, -0.03514823317527771, 0.005067436955869198, 0.022650305181741714, 0.012331638485193253, 0.021827612072229385, -0.04281502962112427, 0.01282175350934267, -0.013451901264488697, -0.006760958582162857, -0.0264136865735054, 0.006069546565413475, -0.028129087761044502, 0.011657730676233768, 0.025888564065098763, 0.012480422854423523, 0.023192932829260826, -0.012567943893373013, 0.07061153650283813, -0.03348534181714058, 0.02191513404250145, -0.08023879677057266, 0.016856448724865913, -0.01211283728480339, 0.02433069981634617, -0.02174009196460247, 0.060809243470430374, -0.029196837916970253, -0.007684299722313881, -0.11930794268846512, -0.02310541272163391, 0.04820629209280014, -0.007601155433803797, -0.07414736598730087, -0.002739391755312681, 0.03609345480799675, 0.017801670357584953, -0.012497927062213421, -0.020987415686249733, 0.06728576123714447, -0.009207156486809254, -0.005316870287060738, 0.013014297932386398, 0.008927091024816036, -0.006323356181383133, 0.034710630774497986, -0.008848322555422783, -0.0490114800632, 0.06872109323740005, -0.0055706799030303955, 0.01473845262080431, 0.041974831372499466, 0.02651871182024479, 0.007981869392096996, 0.056853316724300385, -0.04186980798840523, -0.036723602563142776, 0.03248760849237442, 0.028724228963255882, 0.001839024480432272, -0.06424004584550858, -0.05741344764828682, -0.02445322833955288, -0.0558730885386467, -0.032347578555345535, -0.023945609107613564, -0.043690234422683716, -0.01093131024390459, -0.004586074035614729, 0.028496675193309784, -0.06231459602713585, -0.005872625391930342, -0.026728760451078415, -0.005623192060738802, 0.08016877621412277, -0.010449947789311409, 0.04411033168435097, 0.030614670366048813, -0.056748293340206146, -0.003964678850024939, -0.1176975667476654, -0.019342031329870224, 0.03143736347556114, -0.0332752950489521, 0.04165975749492645, -0.004023754969239235, 0.05111197009682655, 0.035953421145677567, 0.045860741287469864, 0.06809094548225403, 0.02345549315214157, 0.044215355068445206, 0.02168758027255535, 0.0029275608249008656, 0.04071453586220741, -0.04960661754012108, -0.01119387149810791, 0.0017777601024135947, -0.030352110043168068, -0.000104204096714966, -0.047576144337654114, 0.032050006091594696, -0.006104554980993271, 0.018571849912405014, 0.05706336721777916, -0.01790669374167919, 0.02753394842147827, -0.01949956826865673, 0.018939435482025146, 0.00022071576677262783, 0.0006224895478226244, -0.027989055961370468, 0.0477161779999733, -0.031629908829927444, 0.048346325755119324, 0.039909347891807556, 0.03654856234788895, -0.041729774326086044, 0.03537578508257866, 0.009706023149192333, 0.0071504246443510056, 0.006730326451361179, 0.0047523630782961845, -0.004408845212310553, -0.02793654426932335, -0.004400093108415604, 0.0008013595943339169, 0.01872938685119152, -0.07785823941230774, -0.00015589589020237327, -0.036128461360931396, -0.012244118377566338, -0.019814640283584595, 0.03987434133887291, -0.011237632483243942, 0.012506679631769657, 0.019569583237171173, -0.037248723208904266, 0.03472813591361046, -0.008590136654675007, -0.02587105892598629, 0.03749378025531769, -0.027306396514177322, 0.020707350224256516, -0.02363053523004055, 0.019166989251971245, -0.02445322833955288, 0.02522340789437294, 0.040504489094018936, 0.00897960364818573, -0.07974868267774582, -0.011123855598270893, 0.013985775411128998, 0.03544580191373825, -0.010616236366331577, 0.06017909571528435, 0.0035992804914712906, -0.061929505318403244, 0.09487222135066986, 0.053912628442049026, -0.03443056344985962, -0.005185589659959078, 0.020532310009002686, -0.00873017031699419, 0.02776150219142437, 0.00044006400275975466, 0.0451255701482296, -0.008603265509009361, 0.03241759166121483, -0.0011476125800982118, -0.05149706080555916, 0.006135187111794949, -0.01586746610701084, -0.01758286915719509, -0.036828625947237015, -0.03738875687122345, -0.023367973044514656, -0.02504836767911911, -0.027376411482691765, 0.020234739407896996, -0.021705083549022675, -0.041029609739780426, -0.03885910287499428, -0.03569085896015167, 0.035060711205005646, -0.08359958231449127, 0.03268015384674072, -0.006669062189757824, 0.06963130831718445, 0.012953033670783043, 0.008353831246495247, -0.0015097286086529493, 0.010791277512907982, -0.07008641958236694, 0.02634366974234581, -0.022002654150128365, 0.04547565057873726, -0.06119433417916298, 0.01704024150967598, -0.01104508712887764, 0.024855822324752808, 0.018291784450411797, -0.025065870955586433, 0.0014911305624991655, 0.10789526998996735, 0.027323899790644646, 0.0054437750950455666, 0.008598889224231243, 0.013933263719081879, -0.04544064402580261, -0.0021092440001666546, -0.04418034851551056, 0.0627346932888031, -0.033170267939567566, 0.0030960377771407366, -0.03728373348712921, 0.025205904617905617, 0.04796123504638672, -0.023420486599206924, 0.038368988782167435, 0.027043834328651428, 0.0515320710837841, -0.009277173317968845, 0.035585835576057434, -0.009198404848575592, 0.021722588688135147, 0.031279828399419785, 0.031279828399419785, 0.02007720246911049, 0.0050980690866708755, -0.0016727355541661382, 0.04957161098718643, -0.024295691400766373, 0.03892911970615387, 0.05093692988157272, -0.022247711196541786, -0.037843864411115646, -0.005662576295435429, -0.04449542239308357, 0.0464208722114563, 0.02746393345296383, -0.013101818971335888, 0.00017449399456381798, -0.011745250783860683, -0.012988042086362839, -0.020987415686249733, -0.039909347891807556, -0.002870672382414341, -0.00939094927161932, 0.01104508712887764, -0.01564866490662098, 0.08282940089702606, 0.027481436729431152, -0.010021097026765347, 0.009049619548022747, -0.0307196956127882, 0.046981003135442734, 0.014283346012234688, -0.056853316724300385, -0.014642179943621159, -0.020252244547009468, 0.04376025125384331, -0.020864887163043022, 0.016847696155309677, -0.05765850469470024, -0.02096991240978241, 0.01018738653510809, 0.03532327339053154, 0.00743049057200551, -0.05135703086853027, 0.015464872121810913, 0.010905054397881031, 0.07071656733751297, -0.05184714496135712, 0.0040784552693367004, -0.0206198301166296, 0.0019320150604471564, 0.015578649006783962, 0.07680799067020416, -0.02457575686275959, 0.021162457764148712, 0.006003906484693289, 0.019009452313184738, -0.006275219842791557, -0.005500663537532091, 0.00957474298775196, 0.03147237002849579, -0.04235992208123207, -0.04677095636725426, -0.008511368185281754, 0.03574337065219879, -0.017819173634052277, 0.012077828869223595, -0.01681268773972988, 0.03574337065219879, 0.016112523153424263, 0.00853324867784977, -0.02298288233578205, 0.047226060181856155, 0.008156910538673401, 0.03661857545375824, 0.0382639616727829, 0.013828239403665066, 0.04841633886098862, 0.003721809247508645, -0.008563880808651447, 0.0005749003030359745, 0.024295691400766373, -0.04151972383260727, -0.05380760505795479, 0.027428925037384033, 0.0010125028202310205, -0.009522230364382267, -0.010624988935887814, 0.032522618770599365, -0.025415953248739243, -0.07204687595367432, 0.030457133427262306, -0.019359534606337547, 0.004050011280924082, -0.021284986287355423, 0.008607640862464905, -0.04880142956972122, 0.03917417675256729, -0.021162457764148712, 0.10768522322177887, 0.005947018042206764, -0.01130764838308096, 0.038123928010463715, -0.016208795830607414, 0.026676248759031296, 0.011605218052864075, 0.06178947165608406, -0.01476470846682787, 0.004472297616302967, 0.02368304692208767, -0.00782433245331049, 0.054437749087810516, 0.02847917005419731, -0.036478545516729355, -0.04281502962112427, -0.038789086043834686, 0.04943157732486725, -0.017442835494875908, -0.026536215096712112, -0.0004170898755546659, 0.01452840305864811, -0.003780885599553585, -0.10271406173706055, 0.008209423162043095, -0.005881377495825291, 0.02623864635825157, 0.02912682294845581, -0.039069149643182755, -0.02646619826555252, -0.03138485178351402, -0.024663276970386505, -0.01213909313082695, -0.01319809164851904, -0.028934277594089508, -0.04960661754012108, 0.038018904626369476, -0.05317745730280876, -0.07120668143033981, 0.025328433141112328, -0.003938422538340092, 0.05643321946263313, -0.008100022561848164, -0.06133436784148216, -0.016847696155309677, 0.06213955581188202, -0.030334604904055595, 0.037843864411115646, -0.08170913904905319, -0.004704226739704609, -0.02788403071463108, 0.030107051134109497, -0.022370239719748497, 0.060704220086336136, -0.061999522149562836, 0.00995108112692833, -0.064485102891922, -0.021249977871775627, -0.04495052993297577, -0.0005587636842392385, 0.05149706080555916, -0.030789712443947792, 0.004520433954894543, 0.00039603025652468204, -0.011027582921087742, 0.06378494203090668, 0.005084941163659096, -0.017355315387248993, 0.0112813925370574, 0.02067234180867672, -0.042569972574710846, -0.004896772094070911, 0.009207156486809254, -0.015517384745180607, -0.059338897466659546, 0.013495661318302155, -0.012664216570556164, 0.020654838532209396, -0.02149503491818905, 0.028339138254523277, -0.030282093212008476, 0.03066718392074108, -0.03485066443681717, 0.013670702464878559, 0.033537857234478, -0.004962412174791098, -0.07103163748979568, -0.019464559853076935, 0.0030719696078449488, 0.0015305147971957922 ]
24,477
future_fstrings
decode
null
def decode(b, errors='strict'): import tokenize_rt # pip install future-fstrings[rewrite] u, length = utf_8.decode(b, errors) tokens = tokenize_rt.src_to_tokens(u) to_replace = [] start = end = seen_f = None for i, token in enumerate(tokens): if start is None: if token.name == 'STRING': start, end = i, i + 1 seen_f = _is_f(token) elif token.name == 'STRING': end = i + 1 seen_f |= _is_f(token) elif token.name not in tokenize_rt.NON_CODING_TOKENS: if seen_f: to_replace.append((start, end)) start = end = seen_f = None for start, end in reversed(to_replace): try: tokens[start:end] = _make_fstring(tokens[start:end]) except TokenSyntaxError as e: msg = str(e.e) line = u.splitlines()[e.token.line - 1] bts = line.encode('UTF-8')[:e.token.utf8_byte_offset] indent = len(bts.decode('UTF-8')) raise SyntaxError(msg + '\n\n' + line + '\n' + ' ' * indent + '^') return tokenize_rt.tokens_to_src(tokens), length
(b, errors='strict')
[ -0.03327055275440216, 0.0036369189620018005, -0.0163450725376606, 0.037483200430870056, -0.06193527951836586, 0.0022830208763480186, -0.03650961071252823, 0.04029163345694542, 0.002873961580917239, -0.035929203033447266, 0.0557192824780941, 0.05332275480031967, -0.05111345648765564, 0.032165903598070145, -0.00500836968421936, 0.028383882716298103, -0.013630255125463009, 0.02158747799694538, -0.022954247891902924, -0.032259516417980194, -0.07418003678321838, 0.036678116768598557, 0.02701711282134056, 0.04808034747838974, 0.007807439658790827, -0.029937880113720894, 0.009272504597902298, -0.010831184685230255, -0.04171457141637802, -0.03248419240117073, 0.04931605979800224, -0.00966100487858057, -0.005087941884994507, -0.00006542036862811074, -0.015315313823521137, -0.04774333909153938, 0.002969916444271803, -0.008546993136405945, -0.03272758796811104, -0.02106323651969433, -0.06631643325090408, -0.009876318275928497, -0.015624240972101688, 0.005251767113804817, 0.027503907680511475, -0.017964601516723633, -0.04725654423236847, -0.038381896913051605, -0.03725852444767952, 0.04392386972904205, 0.0169629268348217, -0.05980087071657181, 0.00408626813441515, -0.009019746445119381, 0.06287141889333725, 0.002335679018869996, -0.05253639444708824, 0.009572071023285389, -0.018816491588950157, -0.014575759880244732, 0.008809113875031471, -0.016644638031721115, 0.008790390565991402, -0.024189958348870277, -0.015727216377854347, 0.033701177686452866, 0.042950280010700226, -0.04122777655720711, -0.019696466624736786, -0.008565716445446014, -0.016101675108075142, 0.044523000717163086, -0.012647303752601147, -0.04560893028974533, 0.035966645926237106, 0.03474966064095497, -0.027691135182976723, 0.003475434146821499, -0.061485931277275085, 0.017318662256002426, 0.06114891916513443, -0.007985306903719902, 0.07901054620742798, 0.0007769993972033262, 0.04047886282205582, -0.02881450764834881, 0.031342096626758575, 0.026511594653129578, 0.007432982325553894, -0.003536283504217863, -0.015586795285344124, -0.09743385761976242, -0.007755951955914497, 0.04879181832075119, -0.05193726345896721, -0.0186667088419199, 0.02314147725701332, 0.04261326789855957, -0.029207689687609673, -0.05242405831813812, 0.07975945621728897, 0.020464105531573296, -0.12169869989156723, -0.00715682003647089, 0.018872659653425217, 0.022224055603146553, -0.019771357998251915, -0.01238518301397562, 0.03709001839160919, -0.04429832845926285, 0.008074240759015083, -0.0008770498097874224, 0.016700806096196175, 0.01623273454606533, -0.00874826405197382, 0.017655672505497932, 0.02243000641465187, -0.0209883451461792, 0.07365579903125763, 0.017065903171896935, 0.01901308260858059, 4.1139134765444396e-8, 0.008444017730653286, 0.020557720214128494, 0.06474371254444122, 0.03263397514820099, 0.01999603398144245, 0.029731929302215576, 0.1011035367846489, -0.024976318702101707, 0.056131187826395035, 0.024920150637626648, 0.03162293881177902, 0.0009694939944893122, 0.005438996013253927, 0.020501550287008286, -0.05350998416543007, 0.0209883451461792, -0.008593800477683544, -0.04085331782698631, 0.014210663735866547, 0.021905766800045967, 0.028851954266428947, -0.005935152061283588, -0.07279454916715622, 0.02093217708170414, 0.027560075744986534, -0.0026375853922218084, -0.016242096200585365, 0.03100508451461792, -0.026155859231948853, -0.006721512880176306, 0.028458774089813232, 0.021306633949279785, 0.026717545464634895, -0.0448225699365139, 0.02939491719007492, -0.023778054863214493, -0.006094296462833881, 0.04935350641608238, 0.05830303952097893, 0.0096890889108181, -0.05736689642071724, -0.022504897788167, 0.0034824551548808813, -0.004011376295238733, 0.07635189592838287, -0.035180285573005676, -0.06654110550880432, 0.027354123070836067, -0.00619259150698781, 0.021287912502884865, 0.01627018116414547, 0.05815325677394867, 0.012469436042010784, -0.031136145815253258, -0.0027943893801420927, 0.018076937645673752, 0.00836444552987814, -0.025968631729483604, -0.022860633209347725, 0.07174606621265411, -0.03645344078540802, -0.034468818455934525, 0.02252362109720707, 0.013311965391039848, 0.005967917386442423, 0.05586906522512436, 0.06332077085971832, -0.06410713493824005, 0.013630255125463009, -0.004872628953307867, 0.054633356630802155, 0.01577402465045452, -0.019883695989847183, -0.030742965638637543, 0.018601179122924805, 0.027560075744986534, 0.023515934124588966, -0.03235313296318054, -0.040029510855674744, 0.017122071236371994, 0.021980658173561096, -0.03469349071383476, -0.054483573883771896, 0.007690421771258116, -0.03785765916109085, 0.014997025020420551, -0.021475140005350113, -0.017964601516723633, -0.0024386548902839422, -0.03388840705156326, -0.017065903171896935, 0.0025018444284796715, -0.008224023506045341, -0.03662194684147835, 0.02248617634177208, 0.029001737013459206, 0.036958958953619, -0.0035550063475966454, 0.05807836726307869, 0.0416022352874279, 0.012900062836706638, -0.023403596132993698, -0.024189958348870277, 0.04639529064297676, -0.035180285573005676, 0.011860942468047142, 0.051525358110666275, 0.0017026116838678718, 0.011748605407774448, -0.001399535103701055, 0.0003688992001116276, -0.0003765053697861731, 0.10087886452674866, -0.028851954266428947, 0.03853168338537216, -0.051562804728746414, -0.0010244924342259765, -0.039767391979694366, -0.03705257549881935, -0.041489895433187485, -0.017281215637922287, 0.06459392607212067, 0.03383224084973335, 0.006295567378401756, 0.008781029842793941, 0.020482826977968216, -0.058452822268009186, 0.006342374719679356, -0.025781402364373207, -0.016485493630170822, 0.06852573156356812, 0.03864401951432228, 0.016476131975650787, -0.025107378140091896, 0.08515165001153946, -0.04246348515152931, 0.07901054620742798, 0.0799841359257698, 0.021138127893209457, -0.008603162132203579, -0.032259516417980194, 0.030443398281931877, 0.0072831991128623486, -0.07024823874235153, -0.04246348515152931, -0.020670056343078613, 0.051562804728746414, 0.02316019870340824, -0.008659331128001213, -0.027503907680511475, -0.03162293881177902, -0.016185928136110306, -0.04650762677192688, -0.029937880113720894, 0.039954621344804764, 0.011383509263396263, 0.056056294590234756, -0.08095772564411163, -0.01694420352578163, -0.01581146940588951, -0.05204959958791733, 0.02860855683684349, 0.00349649740383029, 0.03437520191073418, -0.02707328088581562, -0.10484811663627625, 0.008832517080008984, -0.05336020141839981, 0.053772103041410446, -0.08110750466585159, -0.02490142732858658, 0.033701177686452866, 0.011065220460295677, 0.024526968598365784, -0.010082269087433815, -0.01393918227404356, 0.02078239433467388, -0.06938698142766953, -0.023703163489699364, 0.00013274227967485785, 0.07496640086174011, 0.0448225699365139, -0.022504897788167, -0.07901054620742798, -0.002756943693384528, -0.0573294498026371, -0.04107799381017685, -0.025163548067212105, -0.03437520191073418, -0.009913763962686062, -0.019659021869301796, -0.009492498822510242, 0.0012614538427442312, -0.005794730503112078, -0.04628295451402664, 0.040591198951005936, 0.02085728570818901, -0.014117049984633923, 0.06174805015325546, -0.06062467768788338, -0.014229387044906616, -0.022036826238036156, 0.0016031464328989387, 0.012843893840909004, 0.03321438282728195, -0.05204959958791733, 0.04047886282205582, -0.039243150502443314, 0.03474966064095497, -0.02469547465443611, 0.05437123775482178, -0.0300876647233963, -0.002841196721419692, -0.056206077337265015, -0.0019214353524148464, 0.00004004209040431306, -0.01656038500368595, -0.05092622712254524, 0.04235114902257919, 0.04100310057401657, 0.020482826977968216, 0.06343311071395874, -0.03635982796549797, 0.038419343531131744, -0.03463732451200485, -0.02314147725701332, 0.041489895433187485, 0.028964292258024216, -0.014613205567002296, -0.06365778297185898, 0.007287879940122366, 0.010952883400022984, -0.02774730511009693, 0.0015153829008340836, -0.008968258276581764, 0.04392386972904205, 0.01431364007294178, -0.02559417299926281, 0.017318662256002426, 0.042950280010700226, -0.012169870547950268, -0.03265269845724106, 0.048567142337560654, -0.023890390992164612, -0.011552015319466591, 0.008860602043569088, 0.010522257536649704, 0.014734904281795025, 0.038344454020261765, 0.0482301339507103, 0.04714420437812805, -0.01930328644812107, -0.04744376987218857, -0.005860260687768459, -0.0005303840152919292, 0.03787638247013092, -0.030855301767587662, 0.030012773349881172, 0.01436044741421938, -0.031117422506213188, -0.10439876466989517, -0.02023943141102791, 0.026024799793958664, 0.03864401951432228, -0.047518663108348846, -0.0161578431725502, 0.028795786201953888, 0.025425666943192482, -0.06257185339927673, -0.05399677902460098, 0.016391878947615623, 0.010363112203776836, -0.04021674022078514, -0.04553403705358505, -0.020295599475502968, 0.008827836252748966, 0.03939293324947357, -0.023815499618649483, -0.027672413736581802, 0.034506261348724365, -0.010363112203776836, 0.02946980856359005, 0.018413949757814407, 0.032091010361909866, 0.02394656091928482, 0.07358090579509735, -0.0775127112865448, 0.022860633209347725, 0.04272560775279999, 0.007376813795417547, -0.008551673963665962, -0.0799841359257698, -0.06347055733203888, -0.011280533857643604, -0.09031916409730911, -0.05942641198635101, -0.05182492360472679, -0.01771184243261814, -0.03493689000606537, 0.00907591450959444, 0.010971605777740479, -0.026698824018239975, -0.05878983438014984, 0.021287912502884865, -0.01771184243261814, 0.039879728108644485, 0.0201832614839077, 0.06406968832015991, 0.02490142732858658, -0.03237185627222061, -0.008224023506045341, -0.05830303952097893, -0.022111717611551285, 0.011795412749052048, -0.002801410621032119, 0.027372846379876137, 0.0403665229678154, 0.02181215211749077, 0.027297955006361008, 0.04306261986494064, 0.04014185070991516, 0.03229696303606033, 0.020445382222533226, -0.0027616245206445456, -0.01426683273166418, 0.04354941472411156, -0.058415379375219345, 0.0023555720690637827, -0.004650294780731201, -0.03939293324947357, -0.0015177231980487704, 0.01237582229077816, 0.04418599233031273, 0.0005125387688167393, 0.045346807688474655, -0.008088283240795135, 0.006997675634920597, 0.034412648528814316, 0.012413267977535725, 0.031454432755708694, -0.0200896468013525, 0.010428642854094505, 0.004734547808766365, 0.015315313823521137, 0.046769749373197556, 0.012909423559904099, 0.026006076484918594, 0.04384898021817207, 0.007503193337470293, -0.0004312112578190863, 0.009178890846669674, 0.030630627647042274, -0.002618862548843026, 0.04122777655720711, 0.017318662256002426, -0.04077842831611633, -0.014968940056860447, -0.011383509263396263, -0.016457408666610718, -0.04175201803445816, -0.05339764803647995, -0.026155859231948853, 0.06335821747779846, -0.0051113455556333065, 0.06440670043230057, -0.02718561887741089, 0.04040396958589554, -0.0034496900625526905, -0.04306261986494064, 0.017178239300847054, -0.03538623824715614, 0.015259144827723503, 0.012525605037808418, -0.013489833101630211, -0.017449721693992615, -0.01999603398144245, 0.019640298560261726, -0.013686423189938068, -0.00963292084634304, 0.0033209703397005796, -0.039168260991573334, -0.03358884155750275, 0.018601179122924805, -0.0011473613558337092, 0.052311718463897705, 0.011889027431607246, -0.0068900189362466335, -0.024489523842930794, -0.04085331782698631, 0.056168630719184875, 0.039205703884363174, -0.00046777937677688897, -0.06807637959718704, 0.009412926621735096, -0.009127402678132057, -0.014472784474492073, -0.022654682397842407, 0.011102666147053242, 0.0033209703397005796, -0.013948543928563595, 0.007877650670707226, -0.05365976691246033, -0.003985632676631212, -0.05747923254966736, -0.012338376604020596, -0.009998016990721226, 0.03235313296318054, -0.04497235268354416, -0.023459766060113907, -0.01583019271492958, 0.008687415160238743, -0.04871692880988121, -0.022205332294106483, -0.012310291640460491, 0.040740981698036194, 0.007704464253038168, -0.023852946236729622, 0.01815182901918888, 0.012338376604020596, 0.10604637861251831, -0.007058524992316961, 0.014482146129012108, -0.02246745303273201, 0.007175542879849672, 0.007376813795417547, -0.02551928162574768, 0.0037211719900369644, 0.029245134443044662, -0.019752636551856995, 0.031454432755708694, 0.0034613918978720903, 0.05482058599591255, -0.039130814373493195, -0.05646819993853569, 0.014500868506729603, 0.07923521846532822, 0.008322319015860558, -0.03194122761487961, 0.01617656648159027, 0.019565407186746597, 0.002100472804158926, -0.007568723056465387, -0.048379916697740555, 0.07440471649169922, 0.017908431589603424, -0.001077150576747954, -0.03128592669963837, 0.021138127893209457, 0.0464327372610569, -0.00014897852088324726, 0.008088283240795135, -0.0009589623659849167, 0.01815182901918888, -0.010157161392271519, 0.001558679505251348, -0.04733143374323845, 0.0480429045855999, -0.016457408666610718, 0.013480471447110176, 0.013808121904730797, 0.01122436486184597, 0.019677743315696716, 0.0177680104970932, 0.032259516417980194, 0.022654682397842407, 0.06762703508138657, 0.02624947391450405, -0.019059889018535614, -0.01157073862850666, -0.012637942098081112, 0.007704464253038168, -0.04186435416340828, -0.048379916697740555, 0.008898047730326653, 0.0012836873065680265, 0.03259652853012085, -0.07605233043432236, 0.009019746445119381, -0.016101675108075142, -0.02634308859705925, 0.022504897788167, -0.011683075688779354, 0.05819070339202881, 0.01204817183315754, 0.028234099969267845, 0.00403946079313755, 0.016485493630170822, -0.0024620583280920982, 0.03259652853012085, 0.021943211555480957, -0.007526596542447805, -0.053060635924339294, -0.011018413119018078, 0.00833636149764061, 0.011102666147053242, -0.03928059712052345, -0.029881712049245834, 0.006880657281726599, 0.014304278418421745, 0.028833230957388878, -0.06755214184522629, 0.02795325592160225, -0.014631928876042366, 0.08702393621206284, -0.004891351796686649, 0.021961934864521027, -0.020351767539978027, -0.02634308859705925, -0.010980967432260513, 0.06863807141780853, -0.0389435850083828, -0.004896032623946667, -0.04714420437812805, 0.020651333034038544, -0.010278860107064247, 0.009277185425162315, -0.009515902027487755, 0.05399677902460098, -0.002990979701280594, -0.008734222501516342, -0.02639925666153431, 0.02471419796347618, -0.0347309373319149, -0.024583138525485992, -0.018872659653425217, -0.024208679795265198, 0.03182889148592949, 0.03177272155880928, -0.042201366275548935, 0.10335028171539307, 0.04560893028974533, -0.012544327415525913, -0.0022069590631872416, 0.031117422506213188, 0.04493490606546402, -0.006716832052916288, 0.012722195126116276, 0.008617204613983631, 0.024152511730790138, -0.059164293110370636, 0.012600496411323547, 0.04306261986494064, -0.021100683137774467, -0.012179232202470303, 0.04852969944477081, 0.03096763975918293, 0.006201953161507845, -0.05047687888145447, 0.007110012695193291, -0.03426286578178406, -0.010643956251442432, -0.02712944895029068, 0.007311283610761166, 0.00933335442095995, 0.028458774089813232, -0.005233044270426035, 0.10874247550964355, 0.005331339314579964, 0.010803100652992725, 0.01198264118283987, -0.016129758208990097, -0.0482301339507103, -0.02330998331308365, 0.036135151982307434, -0.03547985106706619, 0.036940235644578934, 0.03501177951693535, -0.01788034848868847, 0.03345778211951256, 0.015717854723334312, -0.02866472490131855, -0.002937151351943612, -0.04306261986494064, 0.06923720240592957, 0.015240422450006008, -0.04313750937581062, 0.03864401951432228, 0.049278613179922104, 0.018713515251874924, -0.06515561044216156, -0.007489150855690241, -0.0009443351300433278, 0.028140485286712646, 0.009019746445119381, 0.0068151275627315044, -0.06830105930566788, -0.08649969100952148, -0.04006695747375488, 0.003798403777182102, -0.0030073621310293674, -0.015624240972101688, -0.033645011484622955, 0.006843211594969034, -0.025369498878717422, -0.08912089467048645, 0.007432982325553894, -0.010335028171539307, 0.08762306720018387, -0.015287229791283607, 0.003906060243025422, -0.007863608188927174, 0.09833255410194397, 0.017608866095542908, 0.027616243809461594, -0.07358090579509735, 0.013012399896979332, -0.06687811762094498, -0.02181215211749077, 0.006454711779952049, 0.06309609860181808, -0.07099714875221252, -0.03343905881047249, -0.08709882944822311, 0.018638623878359795, -0.05253639444708824, -0.014978301711380482, 0.01820799894630909, 0.018984997645020485, 0.05654308944940567, -0.0005695850122720003, -0.021905766800045967, 0.08342914283275604, -0.07313156127929688, 0.035180285573005676, 0.004247752949595451, 0.021156851202249527, -0.02465802989900112, 0.04897904768586159, -0.0025392903480678797, -0.01361153181642294, -0.11068965494632721, 0.016111036762595177, -0.032970987260341644, -0.017159517854452133, -0.01932200975716114, 0.04422343522310257, -0.045009795576334, -0.02465802989900112, -0.04272560775279999, 0.005551333073526621, 0.023703163489699364, 0.04587104916572571, -0.022748295217752457, -0.02091345377266407, -0.013995351269841194, 0.01627018116414547 ]
24,479
future_fstrings
main
null
def main(argv=None): parser = argparse.ArgumentParser(description='Prints transformed source.') parser.add_argument('filename') args = parser.parse_args(argv) with open(args.filename, 'rb') as f: text, _ = fstring_decode(f.read()) getattr(sys.stdout, 'buffer', sys.stdout).write(text.encode('UTF-8'))
(argv=None)
[ -0.009813643991947174, 0.013826658949255943, 0.023111315444111824, -0.0174383707344532, 0.035423971712589264, -0.034840259701013565, -0.00993221066892147, 0.05074639245867729, 0.049287114292383194, -0.0068814074620604515, -0.008135474286973476, 0.005700304638594389, -0.048156172037124634, 0.06154504790902138, -0.0006310237222351134, 0.0316116102039814, 0.00829052273184061, 0.034274790436029434, 0.010807777754962444, 0.06180042028427124, -0.0067446003668010235, -0.027124328538775444, -0.009047523140907288, 0.05092880129814148, -0.03932753950357437, -0.012604513205587864, -0.024151049554347992, -0.048302099108695984, -0.024424664676189423, -0.034676093608140945, 0.0005332634900696576, -0.07756062597036362, 0.007072937674820423, -0.014820791780948639, -0.022053338587284088, -0.01829569786787033, 0.004915942437946796, 0.008874233812093735, -0.009476185776293278, -0.06304080784320831, 0.0321953184902668, 0.01152829546481371, 0.0063387383706867695, 0.02305659092962742, -0.022053338587284088, 0.02075822837650776, 0.0064664254896342754, -0.08441922813653946, -0.035423971712589264, -0.004557963460683823, 0.0321953184902668, -0.021414903923869133, 0.01503056287765503, -0.006562190596014261, 0.025537364184856415, 0.05118417367339134, -0.0010750774526968598, 0.04210016876459122, 0.035551659762859344, -0.052424561232328415, -0.013261188752949238, -0.016234466806054115, 0.02659534104168415, -0.009540029801428318, -0.013142622075974941, -0.007679450325667858, 0.04195424169301987, -0.009061204269528389, -0.05340957269072533, 0.019809698686003685, -0.008997360244393349, -0.008755668066442013, -0.023676784709095955, -0.024078086018562317, 0.03613537177443504, 0.014501574449241161, -0.07551763206720352, -0.0030029204208403826, -0.017885275185108185, 0.013516562059521675, 0.04137052968144417, -0.01833217963576317, -0.01651720143854618, 0.011920476332306862, -0.016316551715135574, -0.04837506264448166, 0.0047426531091332436, -0.036719080060720444, -0.03235948830842972, 0.02431521937251091, -0.010981066152453423, -0.008532215841114521, 0.0013361513847485185, 0.07416780292987823, -0.006493786815553904, -0.00719150435179472, 0.008482052944600582, 0.02530023083090782, -0.05505125969648361, 0.013242947869002819, 0.005367406643927097, 0.04118812084197998, 0.025209026411175728, -0.002253900282084942, 0.02903963066637516, 0.028820740059018135, 0.014419490471482277, -0.00316480896435678, 0.01866963692009449, -0.02575625665485859, -0.023640302941203117, -0.0454929918050766, 0.00024026783648878336, -0.0912778377532959, -0.0002691968693397939, -0.03863438218832016, 0.019244227558374405, 0.02615755796432495, -0.017639022320508957, 0.02475300244987011, 0.05931964889168739, -0.027106087654829025, -0.016781697049736977, -0.01658104546368122, -0.0425744354724884, -0.07799840718507767, 0.00437555368989706, -0.008067070506513119, 0.08208438754081726, -0.047572460025548935, -0.0008846872369758785, -0.012385621666908264, -0.024990135803818703, -0.01975497603416443, 0.04217313230037689, -0.03903568536043167, 0.03358163312077522, 0.015003201551735401, -0.02057581953704357, 0.05450403317809105, 0.04246499016880989, -0.039108648896217346, 0.01886116713285446, -0.03848845511674881, -0.038269564509391785, -0.0336545966565609, 0.06340562552213669, -0.06789290904998779, 0.019134782254695892, 0.07113979756832123, 0.05632812902331352, 0.017757588997483253, -0.0531906820833683, 0.013051416724920273, 0.05049101635813713, -0.02329372428357601, 0.016991468146443367, -0.009676837362349033, -0.012640994973480701, 0.0690603256225586, 0.01682729832828045, 0.06895088404417038, -0.05001675337553024, 0.05304475501179695, 0.00730095012113452, -0.018788203597068787, 0.000008701870683580637, 0.03476729616522789, -0.02402336336672306, -0.053446054458618164, -0.017210358753800392, -0.05508774146437645, -0.08230327814817429, 0.0670173391699791, 0.14227959513664246, 0.02489892952144146, 0.0008801270159892738, 0.06424470990896225, 0.015267695300281048, 0.014246201142668724, -0.03002464398741722, -0.026850713416934013, -0.013808418065309525, -0.037539925426244736, 0.05753203481435776, -0.030280018225312233, 0.004131580702960491, 0.0549418143928051, 0.033107370138168335, -0.09543678164482117, 0.0531906820833683, -0.009047523140907288, -0.0006817564135417342, 0.001930123078636825, -0.0018411983037367463, -0.04680633917450905, -0.026230521500110626, -0.019536083564162254, 0.027926931157708168, -0.1342535763978958, -0.05534311756491661, 0.026668304577469826, 0.03259662166237831, -0.02947741374373436, -0.004336791578680277, 0.05209622159600258, 0.01295109186321497, 0.04768190532922745, -0.060888372361660004, 0.014702225103974342, 0.0643906369805336, -0.10244131088256836, -0.003484026063233614, -0.04009366035461426, 0.024278737604618073, -0.028638329356908798, -0.04560243710875511, 0.018806444481015205, -0.024971893057227135, 0.01599733531475067, 0.057459067553281784, 0.0024397303350269794, 0.026011629030108452, 0.08908891677856445, 0.03308912739157677, 0.004437116906046867, 0.0851488709449768, 0.0377952978014946, -0.02146962657570839, -0.009485306218266487, 0.021579071879386902, -0.07435020804405212, -0.03686501085758209, 0.016353033483028412, 0.02519078552722931, -0.044252604246139526, 0.00590095529332757, -0.014446851797401905, -0.03029825910925865, -0.012695718556642532, -0.0012597673339769244, 0.001973445527255535, 0.013124381192028522, -0.00022658710076939315, -0.003725718939676881, -0.00038819073233753443, 0.019682010635733604, -0.007227986119687557, -0.013416236266493797, 0.04447149485349655, 0.03686501085758209, -0.01731068454682827, -0.03186698257923126, 0.036536671221256256, -0.041115157306194305, 0.01551394909620285, 0.022509362548589706, -0.09339378774166107, 0.02876601740717888, 0.06574047356843948, -0.00625209417194128, -0.02889370359480381, -0.011163475923240185, 0.0035045472905039787, 0.0351685993373394, -0.02015627734363079, -0.08485700935125351, -0.01873348094522953, -0.001256347168236971, -0.05118417367339134, 0.03232300654053688, 0.037393998354673386, -0.025938665494322777, 0.015404502861201763, -0.08507590740919113, -0.007109419908374548, -0.011218199506402016, 0.03077252395451069, 0.04895877465605736, -0.01137324795126915, 0.03323505446314812, 0.009585632011294365, -0.003983372822403908, -0.002777188317850232, 0.016699612140655518, -0.009786282666027546, -0.00047284027095884085, -0.05694832280278206, -0.03746696189045906, -0.04968841373920441, 0.048448026180267334, 0.04994378611445427, 0.028364716097712517, -0.03577055037021637, 0.010926343500614166, -0.027872208505868912, -0.02862008847296238, -0.08317884057760239, 0.011610380373895168, -0.043851301074028015, -0.017739348113536835, -0.05818870663642883, 0.06931570172309875, -0.011719825677573681, -0.07070201635360718, 0.06034114211797714, -0.038415491580963135, -0.05519718676805496, 0.014446851797401905, -0.015577792190015316, 0.023950399830937386, -0.01596997305750847, -0.006749160587787628, 0.01666313037276268, 0.011956959031522274, 0.024096326902508736, -0.00404037581756711, 0.005285322200506926, 0.06767401844263077, -0.04005717858672142, -0.016234466806054115, -0.0434500016272068, 0.07909286767244339, 0.0446174219250679, 0.032687827944755554, 0.0032263724133372307, 0.023239001631736755, -0.025683291256427765, 0.07836322486400604, -0.0605965182185173, 0.03075428307056427, 0.04560243710875511, 0.010926343500614166, 0.005882714409381151, -0.014656622894108295, -0.03405589982867241, -0.013014934957027435, -0.027416184544563293, -0.027799244970083237, -0.03447544202208519, 0.05030860751867294, 0.034274790436029434, 0.024059845134615898, 0.017921756953001022, -0.00972243957221508, 0.0440337136387825, -0.0720883309841156, -0.039108648896217346, 0.03243245184421539, -0.06617825478315353, -0.019116541370749474, 0.0063569797202944756, 0.022673530504107475, -0.004161222372204065, -0.021670278161764145, 0.003194450633600354, 0.015769321471452713, -0.03434775397181511, -0.020484615117311478, -0.0012745880521833897, -0.026212280616164207, -0.023202519863843918, -0.05191381275653839, -0.05118417367339134, -0.020119795575737953, -0.0543581023812294, 0.0677104964852333, -0.0375034436583519, 0.013708092272281647, 0.08945374190807343, 0.03775881603360176, 0.03378228470683098, -0.016407756134867668, -0.003616273170337081, -0.044836316257715225, -0.02588394284248352, -0.01986442133784294, -0.002920835977420211, -0.025810979306697845, 0.02761683613061905, -0.010105499997735023, 0.06169097498059273, -0.03438423573970795, 0.016416877508163452, -0.02889370359480381, -0.0033472187351435423, -0.048448026180267334, 0.0047472137957811356, -0.011427970603108406, 0.0012244253885000944, -0.002444290556013584, -0.03688324987888336, 0.06369747966527939, -0.05067342519760132, 0.018551070243120193, -0.010570644401013851, -0.04093274474143982, 0.03305264562368393, -0.029003148898482323, 0.011838392354547977, -0.053154200315475464, 0.05807926133275032, -0.049578968435525894, 0.004888581112027168, -0.002257320564240217, 0.026996642351150513, 0.03606240451335907, 0.0108625004068017, 0.007725052535533905, 0.05793333426117897, 0.03060835413634777, -0.013115260750055313, 0.002400968223810196, -0.044106677174568176, -0.011774549260735512, -0.03060835413634777, -0.0023416851181536913, -0.06781994551420212, 0.0110813919454813, -0.030006403103470802, 0.01886116713285446, 0.03907216712832451, 0.02002858929336071, 0.0024169289972633123, 0.030498908832669258, -0.06647010892629623, -0.007095739245414734, -0.011938718147575855, 0.03816011920571327, 0.010552403517067432, -0.05603627488017082, -0.05235159769654274, 0.0026335406582802534, -0.029951680451631546, 0.00808075163513422, 0.030280018225312233, 0.008564137853682041, 0.03531452640891075, 0.07073850184679031, 0.03761288896203041, 0.021068325266242027, -0.03460313007235527, -0.0110813919454813, -0.02017451822757721, -0.02903963066637516, 0.03631778061389923, -0.008915276266634464, 0.009831884875893593, -0.05355549976229668, 0.006594112142920494, 0.03693797439336777, 0.026431171223521233, -0.02834647335112095, -0.08522183448076248, 0.040239591151475906, -0.05370142683386803, 0.020210999995470047, 0.007118540350347757, -0.030991414561867714, 0.07931175827980042, -0.02830999158322811, 0.00416578259319067, 0.07405835390090942, -0.019554324448108673, 0.029367968440055847, -0.012431223876774311, 0.013726333156228065, 0.06190986558794975, -0.048995256423950195, -0.02331196516752243, 0.03235948830842972, -0.02333020605146885, -0.023986881598830223, -0.013142622075974941, 0.02617579884827137, 0.053263645619153976, -0.04053144529461861, -0.02905787155032158, -0.03117382526397705, 0.018614914268255234, -0.06851310282945633, 0.025956906378269196, 0.02548264153301716, 0.04177183285355568, -0.002097712131217122, 0.004197704140096903, 0.09375860542058945, -0.08631628751754761, 0.05125713720917702, -0.02389567717909813, 0.03077252395451069, 0.060158733278512955, 0.010515921749174595, -0.053117718547582626, 0.005941997282207012, 0.009540029801428318, -0.0029299564193934202, 0.03308912739157677, -0.007930263876914978, -0.01545922551304102, 0.007241666782647371, -0.02176148258149624, -0.0166813712567091, -0.04454445838928223, 0.02389567717909813, 0.05534311756491661, 0.04020310938358307, -0.009804523549973965, -0.011427970603108406, 0.0036048726178705692, -0.0020714907441288233, -0.006051443051546812, 0.02030220441520214, 0.03390997275710106, 0.01986442133784294, 0.04892229288816452, -0.006443624384701252, 0.046879302710294724, 0.000853905628900975, 0.047426532953977585, -0.007127660792320967, -0.0271790511906147, -0.009207132272422314, -0.04067737236618996, 0.028364716097712517, -0.023530857637524605, -0.013781055808067322, 0.03903568536043167, 0.026485895738005638, 0.020429890602827072, -0.025701532140374184, -0.017921756953001022, 0.03020705282688141, -0.07055608928203583, -0.010990187525749207, 0.007606486324220896, 0.012869007885456085, -0.012796043418347836, 0.052716415375471115, 0.006986293010413647, 0.02562856860458851, 0.011245560832321644, -0.029532138258218765, -0.034694332629442215, -0.023713266476988792, -0.02615755796432495, -0.016316551715135574, 0.003392821177840233, 0.06249357759952545, 0.00007545777771156281, -0.052424561232328415, -0.05340957269072533, -0.0015767042059451342, 0.06198282912373543, -0.0375034436583519, 0.03848845511674881, -0.01986442133784294, 0.05961150303483009, -0.016106780618429184, -0.00943058356642723, 0.018788203597068787, 0.03323505446314812, 0.017000587657094002, 0.0014341966016218066, -0.04775487259030342, 0.04220961406826973, 0.011765428818762302, 0.011072271503508091, -0.018578432500362396, -0.021250735968351364, 0.060705963522195816, 0.006594112142920494, 0.03462136909365654, -0.02745266631245613, -0.008691824041306973, 0.05205973982810974, 0.06150856614112854, 0.0110813919454813, 0.044252604246139526, 0.02033868618309498, -0.0015436424873769283, -0.02759859338402748, -0.04983434081077576, 0.03500442951917648, -0.016270948573946953, 0.023093072697520256, 0.008596058934926987, -0.023202519863843918, 0.021232495084404945, 0.0004816757282242179, -0.010123740881681442, -0.060705963522195816, 0.009740680456161499, 0.008244920521974564, 0.00020905866404064, -0.01458365935832262, -0.0020304485224187374, 0.04611318185925484, 0.03090021014213562, -0.03531452640891075, -0.025427918881177902, -0.01873348094522953, 0.01151005458086729, 0.01066184975206852, 0.05001675337553024, 0.019517842680215836, -0.0024100886657834053, -0.020703505724668503, -0.045420024544000626, 0.08383551985025406, -0.06121670827269554, -0.0026061790995299816, 0.0016918503679335117, -0.03863438218832016, -0.01779407076537609, -0.004199984483420849, 0.01616150327026844, -0.043559446930885315, -0.0005683203344233334, 0.03276079148054123, 0.01986442133784294, 0.05563497170805931, -0.02530023083090782, 0.009959571994841099, 0.04775487259030342, 0.04976137727499008, 0.0072097452357411385, -0.025500882416963577, -0.00259477854706347, 0.036244817078113556, -0.003192170523107052, -0.02418753132224083, -0.0006196231115609407, -0.005668382626026869, 0.06012225151062012, -0.013917863368988037, -0.02360382117331028, 0.012805163860321045, -0.02975102886557579, 0.004710731562227011, 0.011546536348760128, -0.05005323514342308, -0.008564137853682041, -0.0452011339366436, 0.013771935366094112, -0.01338887494057417, -0.020065071061253548, 0.017483973875641823, 0.05818870663642883, -0.031228547915816307, 0.022837700322270393, 0.010743933729827404, 0.013115260750055313, 0.07292741537094116, -0.002679143100976944, 0.05078287422657013, 0.042537953704595566, -0.017885275185108185, 0.06537565588951111, 0.020065071061253548, 0.05092880129814148, 0.005755027290433645, 0.06004928797483444, -0.0068814074620604515, -0.03859790042042732, -0.053591981530189514, -0.014173236675560474, 0.0004688500484917313, -0.03701093792915344, 0.024680038914084435, 0.0059374370612204075, 0.026522377505898476, 0.024698279798030853, -0.019390156492590904, 0.005203237757086754, -0.03159336745738983, 0.02772628143429756, 0.009079445153474808, -0.01138236839324236, -0.03287023678421974, 0.03029825910925865, -0.009795403108000755, 0.029003148898482323, -0.00579150952398777, -0.027835726737976074, -0.013562164269387722, -0.009704198688268661, 0.004282068926841021, 0.04936007782816887, -0.0454929918050766, -0.013571284711360931, 0.04272036254405975, 0.01810416765511036, -0.060997817665338516, 0.02575625665485859, 0.0623476505279541, -0.04093274474143982, -0.05530663579702377, 0.006183690391480923, 0.006097045727074146, 0.05548904463648796, -0.009622113779187202, 0.06417174637317657, -0.008427330292761326, -0.02905787155032158, 0.008924396708607674, -0.018970612436532974, 0.0019403836922720075, -0.02903963066637516, -0.026230521500110626, 0.0004677099932450801, 0.004765454679727554, -0.0007239386904984713, 0.05548904463648796, 0.014246201142668724, -0.029240282252430916, -0.12746793031692505, 0.040969230234622955, 0.04239202290773392, -0.01244034431874752, -0.04658744856715202, 0.021579071879386902, 0.008395408280193806, -0.006512027699500322, 0.024205772206187248, 0.001846898696385324, -0.10499504953622818, 0.0017955958610400558, 0.026394689455628395, -0.05475940555334091, 0.043158143758773804, -0.05931964889168739, -0.024224013090133667, -0.05563497170805931, -0.03305264562368393, -0.01658104546368122, 0.018642276525497437, -0.04647800326347351, 0.03232300654053688, -0.023640302941203117, -0.017930878326296806, 0.008194757625460625, -0.04673337563872337, 0.016298310831189156, 0.038269564509391785, 0.04166238382458687, -0.007756974548101425, 0.011491813696920872, 0.008035149425268173, 0.02232695184648037, -0.010123740881681442, 0.03328977897763252, -0.041115157306194305, 0.013781055808067322, 0.06781994551420212, 0.02072174660861492, 0.0022310991771519184, -0.010670970194041729, -0.006639714818447828, -0.047280605882406235, -0.028656570240855217, 0.016973227262496948, -0.031246788799762726, -0.045711882412433624, 0.0457848459482193, 0.014547176659107208, -0.01151005458086729, 0.04330407455563545 ]
24,480
future_fstrings
register
null
def register(): # pragma: no cover codecs.register(codec_map.get)
()
[ 0.01267622783780098, -0.06548306345939636, -0.015238960273563862, 0.04255590960383415, -0.009369737468659878, 0.04142410308122635, -0.019515570253133774, 0.03489196300506592, 0.013993973843753338, -0.004001743160188198, 0.038643091917037964, -0.00763564882799983, 0.021277954801917076, 0.0512223094701767, 0.047341831028461456, -0.008569388650357723, -0.044463809579610825, 0.06134388968348503, -0.04404342547059059, -0.05254814028739929, -0.08452974259853363, 0.039580874145030975, 0.06160258874297142, -0.010226676240563393, -0.023088844493031502, 0.08873359858989716, -0.02286248281598091, -0.020307835191488266, -0.03922516480088234, -0.052257101982831955, 0.02777775563299656, -0.05597589537501335, 0.00024404568830505013, -0.012829829938709736, -0.015861453488469124, -0.008981689810752869, -0.037349600344896317, 0.01573210395872593, -0.046630412340164185, -0.0112614706158638, 0.04523990675806999, 0.021568989381194115, -0.010921929031610489, -0.04284694418311119, 0.006030909717082977, 0.0426529198884964, -0.05578187108039856, 0.025497974827885628, 0.028473006561398506, 0.04481952264904976, 0.010622808709740639, -0.019677257165312767, -0.000190360689884983, 0.004054291173815727, 0.019370052963495255, 0.03125401586294174, -0.010582386516034603, 0.03411586955189705, 0.04365537688136101, 0.041327089071273804, 0.01552999671548605, -0.01658904366195202, -0.0009913408430293202, 0.047632865607738495, -0.003933025989681482, 0.0003703633265104145, 0.013040022924542427, -0.0755399689078331, 0.007397161331027746, 0.03628246858716011, 0.018028054386377335, -0.04304096847772598, -0.01021859236061573, -0.00900594238191843, 0.016734560951590538, 0.028925729915499687, -0.07165949046611786, -0.0007659901748411357, -0.007073787972331047, 0.030882136896252632, 0.043946411460638046, -0.013266384601593018, -0.014519454911351204, -0.0011762698413804173, 0.02457636035978794, -0.01864246279001236, 0.04478718340396881, -0.029637150466442108, -0.02472187764942646, -0.000018126582290278748, -0.011956722475588322, -0.00887659378349781, 0.0451105572283268, 0.08504714071750641, -0.0304294154047966, -0.04844130203127861, 0.023687085136771202, 0.03427755460143089, 0.008787665516138077, 0.018222078680992126, 0.02035634033381939, 0.02737353928387165, -0.04656573757529259, -0.08815152198076248, -0.0017128672916442156, 0.011908216401934624, 0.01767234317958355, 0.011851626448333263, -0.02520693838596344, 0.017737017944455147, 0.03602376952767372, -0.07676879316568375, 0.07929109781980515, 0.001697709085419774, -0.009296978823840618, -0.025886021554470062, 0.0231535192579031, 0.025045251473784447, 0.054876428097486496, 0.011415072716772556, -0.04766520485281944, 0.04106839373707771, 0.0035126409493386745, -0.008431955240666866, 0.04886168614029884, 0.022312749177217484, 0.08129601180553436, 0.06228167191147804, 0.012643890455365181, -0.011115952394902706, 0.050737250596284866, 0.060503117740154266, -0.0055862716399133205, -0.013743359595537186, 0.04753585532307625, -0.04375239089131355, -0.018513113260269165, -0.04190916195511818, -0.010857254266738892, 0.010921929031610489, -0.03306490555405617, 0.03382483497262001, -0.013161287643015385, -0.022199567407369614, -0.029912017285823822, -0.04944375529885292, 0.000897865800652653, -0.016799235716462135, -0.046889107674360275, -0.01666988618671894, 0.0633164644241333, -0.020194653421640396, -0.047374170273542404, 0.04608067497611046, -0.0073082335293293, -0.014511371031403542, 0.05817483365535736, 0.06157024949789047, -0.016993260011076927, 0.03828738257288933, 0.027422044426202774, 0.03209478780627251, -0.026112383231520653, -0.039095815271139145, -0.012813661247491837, 0.03476261720061302, 0.009499086998403072, -0.01355742011219263, 0.031448040157556534, -0.021989375352859497, -0.029443126171827316, -0.054423704743385315, -0.02472187764942646, 0.03209478780627251, 0.07502257823944092, 0.01599080301821232, -0.011043193750083447, 0.023654747754335403, -0.012296264991164207, 0.021763013675808907, 0.03005753643810749, 0.03851374238729477, -0.04782688990235329, 0.028650863096117973, 0.044948868453502655, -0.009086785838007927, 0.02814963459968567, 0.037899333983659744, 0.07444050163030624, -0.05752808600664139, 0.09940490871667862, 0.0030801293905824423, -0.027422044426202774, -0.00727185420691967, 0.013508914038538933, -0.07172416895627975, 0.013605926185846329, -0.025029083713889122, -0.023185856640338898, 0.05730172619223595, -0.011455493979156017, 0.04556328058242798, -0.01588570699095726, 0.007627564482390881, 0.00859364215284586, -0.0024434884544461966, 0.02292715758085251, 0.013525082729756832, -0.0012591342674568295, -0.03582974523305893, 0.041327089071273804, -0.04090670496225357, 0.01744598150253296, 0.020760556682944298, -0.007267811801284552, -0.028925729915499687, -0.02446318045258522, -0.01980660669505596, 0.018367595970630646, -0.01614440605044365, 0.040583331137895584, 0.06719694286584854, -0.03550637513399124, -0.03340444713830948, 0.022830145433545113, -0.021940870210528374, -0.01133422926068306, -0.023590072989463806, -0.02777775563299656, -0.0005156286060810089, 0.03340444713830948, 0.04481952264904976, -0.06179661303758621, -0.020712051540613174, -0.01752682588994503, 0.008177299052476883, 0.056008230894804, 0.025287780910730362, -0.010744073428213596, -0.019224533811211586, 0.03214329108595848, 0.038093358278274536, -0.005307361949235201, -0.008440040051937103, -0.004191724583506584, 0.01666988618671894, -0.025045251473784447, 0.010550049133598804, -0.004822302144020796, 0.06383386254310608, 0.005570102948695421, -0.021601326763629913, 0.005469048861414194, -0.010081158019602299, -0.01329063717275858, -0.06363984197378159, -0.0438494011759758, -0.026500431820750237, 0.030736619606614113, -0.022910987958312035, -0.05558784678578377, 0.060761816799640656, 0.025886021554470062, 0.008488545194268227, 0.006350240670144558, -0.011180627159774303, 0.002308076014742255, 0.006750414613634348, 0.007376950234174728, -0.026241732761263847, -0.023654747754335403, 0.01789870485663414, -0.03683220222592354, 0.020906075835227966, 0.010097326710820198, -0.05060790106654167, 0.0055620186030864716, -0.011172543279826641, 0.05503811314702034, 0.00663723424077034, 0.023137349635362625, -0.036864541471004486, 0.01591804437339306, -0.025594986975193024, 0.02792327292263508, -0.020792894065380096, 0.013969720341265202, 0.05018751695752144, -0.003959299996495247, -0.07379375398159027, -0.01752682588994503, 0.015683598816394806, -0.0597270242869854, 0.05455305427312851, 0.05118997395038605, 0.002120115328580141, -0.021601326763629913, 0.02603154070675373, 0.01681540533900261, -0.020970750600099564, -0.06160258874297142, -0.007401203271001577, 0.053194884210824966, 0.05730172619223595, -0.0219570379704237, 0.000810454017482698, -0.028246646746993065, -0.008254099637269974, -0.0804552435874939, 0.05946832522749901, 0.002040282590314746, 0.08362430334091187, -0.04915272071957588, -0.0008751286077313125, -0.0152147077023983, 0.006095584016293287, 0.01666988618671894, 0.05946832522749901, 0.018820317462086678, -0.0020463457331061363, 0.014196082018315792, -0.05287151411175728, 0.0039694057777523994, -0.008852340281009674, 0.04912038519978523, 0.005836885422468185, 0.040550995618104935, -0.05112529918551445, 0.06014740839600563, -0.07476387917995453, -0.09558910876512527, 0.00900594238191843, 0.03139953315258026, -0.015877623111009598, 0.02181152068078518, -0.025336287915706635, -0.03582974523305893, -0.052224766463041306, -0.0595976747572422, -0.0046929530799388885, -0.025869853794574738, -0.016249502077698708, -0.06315477937459946, -0.013702938333153725, -0.051772043108940125, 0.006030909717082977, -0.06842575967311859, 0.005056747701019049, -0.04608067497611046, 0.007579058408737183, 0.03644415736198425, -0.04970245435833931, 0.03877244144678116, 0.05652562901377678, 0.009491002187132835, -0.025853684172034264, -0.024058964103460312, 0.010064990259706974, -0.016799235716462135, 0.0006790836341679096, 0.013064275495707989, 0.036185458302497864, 0.017251959070563316, -0.044172775000333786, -0.01838376373052597, -0.011641434393823147, -0.0018432270735502243, 0.017914872616529465, -0.013056191615760326, -0.00833494309335947, 0.017688512802124023, 0.06894315779209137, -0.036638177931308746, 0.05545849725604057, -0.030979149043560028, -0.0028941899072378874, 0.04142410308122635, 0.013969720341265202, -0.07456985116004944, -0.013791865669190884, 0.017688512802124023, 0.039807237684726715, -0.03987191244959831, -0.032272640615701675, 0.023088844493031502, -0.02494823932647705, 0.042976293712854385, 0.0297988373786211, 0.025497974827885628, 0.011698024347424507, -0.04821493849158287, 0.018480775877833366, -0.014640720561146736, -0.0225229412317276, -0.028440669178962708, 0.00264761783182621, -0.02300800010561943, 0.035183001309633255, 0.050058167427778244, 0.0401952862739563, 0.018884992226958275, -0.016354598104953766, 0.03770530968904495, 0.0035651891957968473, 0.041747476905584335, 0.032353486865758896, -0.00024442464928142726, 0.021795351058244705, 0.020162316039204597, 0.00999223068356514, -0.046113014221191406, -0.03867543116211891, -0.017090272158384323, -0.05739873647689819, -0.07741553336381912, -0.054423704743385315, -0.004321074113249779, -0.042717594653367996, -0.06448061019182205, 0.007744787260890007, -0.014066732488572598, 0.005719662643969059, -0.04621002450585365, 0.018658632412552834, 0.011778867803514004, -0.012498373165726662, 0.06312244385480881, 0.05051088705658913, -0.04220019653439522, 0.01290258951485157, -0.005824759136885405, -0.0225229412317276, 0.019935956224799156, -0.05041387677192688, 0.024333830922842026, -0.0463070385158062, -0.033501461148262024, 0.013137035071849823, -0.0016582980751991272, 0.010784494690597057, 0.02572433464229107, 0.014770069159567356, 0.014850912615656853, -0.04255590960383415, 0.04967011883854866, 0.013242131099104881, -0.048085588961839676, 0.09649455547332764, 0.03977489843964577, -0.011956722475588322, -0.05555551126599312, -0.02711484022438526, -0.027438214048743248, -0.034471578896045685, 0.12087688595056534, -0.020598869770765305, 0.05901560187339783, -0.017542993649840355, -0.006709993351250887, -0.059274300932884216, -0.006536180153489113, -0.011091699823737144, 0.05455305427312851, 0.03631480783224106, -0.013064275495707989, 0.061473239213228226, -0.017575331032276154, 0.014042479917407036, 0.041456438601017, 0.000011250164789089467, 0.0027365454006940126, 0.09701194614171982, -0.004822302144020796, -0.044948868453502655, -0.012797493487596512, -0.007866051979362965, -0.06105285510420799, -0.016500115394592285, -0.02666211687028408, 0.0013905046507716179, -0.015473405830562115, 0.015861453488469124, 0.05772211030125618, 0.020938413217663765, -0.016192911192774773, -0.04161812737584114, 0.11563824117183685, -0.05532914772629738, 0.024479348212480545, 0.03151271492242813, -0.02229657955467701, 0.03819037228822708, -0.014155660755932331, -0.006867637392133474, -0.0028214307967573404, -0.027422044426202774, -0.01681540533900261, -0.02158515900373459, 0.008254099637269974, -0.01789870485663414, 0.028052622452378273, -0.06250803172588348, -0.035409361124038696, -0.02278164029121399, 0.017834030091762543, -0.036670517176389694, 0.0015046957414597273, -0.02383260242640972, 0.026193225756287575, 0.021617496386170387, -0.03728492558002472, -0.012021397240459919, -0.04488419368863106, -0.0377376489341259, 0.016500115394592285, -0.0010681420098990202, -0.02629023790359497, 0.0021706423722207546, -0.05836885794997215, 0.025303950533270836, 0.0008897814550437033, -0.005695410072803497, 0.08381832391023636, -0.06393087655305862, 0.023816432803869247, -0.013500829227268696, -0.04317031800746918, -0.012668143957853317, -0.03822270780801773, 0.010897675529122353, -0.044172775000333786, -0.047374170273542404, -0.05626692995429039, -0.06771434098482132, -0.019596414640545845, 0.009725447744131088, 0.059532999992370605, 0.04514289274811745, 0.02714717760682106, -0.04187682643532753, 0.008545136079192162, 0.016637548804283142, 0.015255128964781761, -0.025756672024726868, 0.019079016521573067, -0.026241732761263847, -0.05794847011566162, -0.039580874145030975, 0.024155976250767708, -0.02046952210366726, -0.015780610963702202, -0.010113495402038097, -0.03722025081515312, -0.03440690413117409, -0.008120709098875523, -0.024560192599892616, 0.05009050294756889, 0.01023476105183363, -0.0015521912137046456, 0.03576507046818733, 0.02852151356637478, 0.10095710307359695, -0.06997795403003693, 0.020113810896873474, -0.022393591701984406, 0.007421414367854595, -0.020016798749566078, 0.007862010039389133, -0.03508598729968071, 0.029475463554263115, 0.05290384963154793, -0.026839973405003548, 0.06706759333610535, -0.001163132837973535, -0.03848140686750412, 0.019176028668880463, 0.028990404680371284, 0.031561221927404404, 0.06250803172588348, -0.05678432807326317, -0.050284527242183685, 0.04682443290948868, 0.018319088965654373, -0.012344771064817905, 0.05558784678578377, -0.04375239089131355, 0.024883564561605453, 0.08233080804347992, -0.0008751286077313125, -0.00499611534178257, -0.038319721817970276, -0.04245889559388161, -0.0012065861374139786, -0.031189341098070145, 0.0005123443552292883, -0.03744661435484886, -0.004725290462374687, 0.0041836402378976345, -0.027680743485689163, -0.011132121086120605, 0.002101925667375326, -0.027535224333405495, -0.023088844493031502, -0.05895092710852623, 0.012110325507819653, 0.01998446136713028, 0.0212941225618124, -0.007562889717519283, 0.012554963119328022, 0.011164458468556404, -0.031625896692276, -0.0017977526877075434, -0.01577252708375454, -0.010703652165830135, 0.034180544316768646, -0.022231904789805412, 0.008528967387974262, -0.006289608310908079, 0.002148410538211465, 0.05254814028739929, 0.03209478780627251, 0.035926759243011475, -0.012579216621816158, -0.035926759243011475, 0.014204165898263454, 0.0297988373786211, -0.030623439699411392, 0.021682171151041985, -0.001163132837973535, -0.010469206608831882, 0.02572433464229107, 0.05898326635360718, 0.014770069159567356, -0.025109926238656044, -0.009046364575624466, -0.012183084152638912, 0.012207336723804474, -0.004482760559767485, 0.015651261433959007, 0.049055710434913635, -0.04679209738969803, -0.005016326438635588, 0.013913130387663841, -0.009402074851095676, -0.011196795850992203, 0.044431474059820175, -0.023476891219615936, -0.052257101982831955, 0.02274930290877819, -0.060761816799640656, 0.05118997395038605, -0.002934611402451992, 0.0304294154047966, 0.06752032041549683, 0.08543518930673599, 0.0035752945113927126, -0.004612109623849392, 0.04339667782187462, 0.042264871299266815, 0.02711484022438526, 0.02114860527217388, 0.0033893550280481577, 0.017397476360201836, 0.005428627133369446, -0.014608383178710938, -0.013314889743924141, 0.010040736757218838, -0.010444953106343746, -0.022652290761470795, -0.034018855541944504, 0.019143691286444664, -0.02669445425271988, -0.0310276560485363, -0.04462549835443497, -0.015295551158487797, 0.01696092262864113, -0.027955610305070877, -0.02617705799639225, 0.09358419477939606, 0.030283896252512932, -0.05038153752684593, 0.005545849911868572, 0.031755246222019196, 0.04730949550867081, -0.06758499145507812, 0.04462549835443497, -0.004434254486113787, -0.003395418170839548, 0.050284527242183685, -0.030671944841742516, 0.030380908399820328, 0.008989773690700531, 0.0004181113908998668, -0.024075131863355637, -0.06406022608280182, 0.0997282862663269, 0.027567561715841293, -0.10199189931154251, 0.005784337408840656, -0.019030511379241943, 0.0003605105448514223, -0.01830292120575905, 0.003957279026508331, -0.04462549835443497, 0.01767234317958355, 0.002207021927461028, -0.0031670359894633293, -0.03005753643810749, -0.011463578790426254, -0.024818889796733856, 0.008213678374886513, -0.025142263621091843, -0.01998446136713028, 0.009434412233531475, -0.03240199014544487, -0.06499800831079483, 0.0010499522322788835, 0.07625139504671097, 0.02792327292263508, -0.0012975347926840186, 0.014107154682278633, 0.026112383231520653, 0.007486088667064905, 0.03799634799361229, 0.030526427552103996, -0.000391332054277882, -0.04045398160815239, -0.0025303950533270836, 0.009895218536257744, -0.017316633835434914, -0.00043150107376277447, 0.04161812737584114, -0.10516095161437988, 0.021973205730319023, -0.07262961566448212, -0.06913718581199646, -0.020970750600099564, -0.0118597112596035, 0.051254644989967346, -0.03151271492242813, -0.008537051267921925, -0.007324402220547199, 0.023687085136771202, 0.05280683934688568, 0.033469121903181076, 0.02334754168987274, 0.08116666227579117, -0.026710623875260353, -0.03531235083937645, 0.07748021185398102, -0.00038728988147340715, 0.026338744908571243, -0.07372908294200897, 0.038837116211652756, -0.020259328186511993, -0.041262414306402206, -0.02263612113893032, 0.03366314619779587, -0.031189341098070145, 0.021601326763629913, -0.044431474059820175, 0.010550049133598804, 0.01980660669505596, -0.0536152720451355, 0.04194150120019913, 0.045401591807603836, -0.02110009826719761, -0.023961951956152916 ]
24,490
aws_lambda_context
LambdaClientContext
null
class LambdaClientContext: client: LambdaClientContextMobileClient custom: LambdaDict env: LambdaDict
()
[ 0.0235896036028862, -0.10177229344844818, -0.02353343926370144, -0.04747875779867172, 0.014003987424075603, -0.04013977199792862, -0.020537933334708214, 0.06522712856531143, 0.08245128393173218, -0.010971037670969963, -0.0260047297924757, 0.013311276212334633, -0.015117940492928028, 0.02143658511340618, -0.011326754465699196, -0.010774457827210426, -0.005111081060022116, 0.02237267978489399, 0.05695204436779022, -0.037088099867105484, -0.008410817012190819, 0.03630178049206734, -0.04279828071594238, 0.020949814468622208, 0.011392281390726566, 0.08716920018196106, 0.010671488009393215, 0.012964921072125435, 0.08604589104652405, -0.042086850851774216, -0.030029941350221634, 0.0033629226963967085, -0.009613700211048126, 0.032669730484485626, 0.008027018047869205, -0.032501231878995895, -0.02598600834608078, -0.014434590935707092, -0.06215673312544823, -0.023271331563591957, -0.07286566495895386, 0.025237131863832474, -0.004268595017492771, 0.014294176362454891, 0.03165874630212784, 0.022690951824188232, -0.018515966832637787, -0.007938088849186897, 0.08424858748912811, -0.0024151261895895004, 0.026791051030158997, -0.00278956419788301, 0.016634415835142136, 0.0281390268355608, -0.018178973346948624, 0.006585431285202503, -0.03087242692708969, -0.009960055351257324, -0.0541437566280365, 0.02587367594242096, -0.04122564196586609, 0.018656380474567413, 0.05223412439227104, -0.008364012464880943, -0.006875620689243078, -0.018562771379947662, -0.047628533095121384, 0.04343482479453087, 0.01229093223810196, -0.00798021350055933, 0.013124057091772556, -0.03448575362563133, -0.005635294131934643, 0.00039842561818659306, -0.003676514606922865, -0.059610556811094284, -0.05564150959253311, -0.009557534009218216, 0.0007652579806745052, -0.04568145424127579, 0.014425230212509632, -0.06174485385417938, -0.05455563962459564, -0.004928542301058769, 0.02368321269750595, 0.04047676548361778, -0.03512229770421982, -0.030497988685965538, -0.01756114885210991, 0.04268595203757286, -0.015651514753699303, 0.06743631511926651, -0.07885667681694031, 0.06698698550462723, 0.00020389327255543321, -0.018918488174676895, 0.015314520336687565, -0.008106586523354053, -0.016250615939497948, 0.02342110686004162, 0.015539183281362057, -0.026360446587204933, -0.010493629612028599, 0.016353586688637733, 0.00653394591063261, -0.030460543930530548, -0.005827194079756737, -0.05062403902411461, 0.11652515828609467, 0.027989251539111137, -0.009098847396671772, -0.03800547495484352, 0.00006581920752068982, 0.008410817012190819, -0.012749619781970978, 0.05309532955288887, 0.04482024908065796, 0.014500117860734463, -0.029767833650112152, 0.018403636291623116, 0.0523838996887207, -0.021605081856250763, 0.03087242692708969, 0.013479773886501789, 0.03585245460271835, 0.03429853543639183, 0.018843600526452065, -0.02134297601878643, -0.00019087569671683013, 0.02943084016442299, 0.03579628840088844, -0.0012520275777205825, 0.012084991671144962, -0.002032497199252248, -0.00031329941703006625, 0.06264350563287735, 0.05204690247774124, 0.034729138016700745, 0.020818762481212616, 0.03639538958668709, 0.009885167703032494, 0.07260356098413467, -0.04350971430540085, -0.05077381432056427, -0.006810094229876995, 0.005246814806014299, -0.033699434250593185, 0.0002694199502002448, -0.019583115354180336, -0.008471663109958172, 0.06489013135433197, -0.05290811136364937, -0.016213173046708107, 0.06773586571216583, -0.05785069614648819, -0.01767348125576973, -0.02254117652773857, -0.046505220234394073, 0.03319394215941429, -0.011045925319194794, 0.0005224582273513079, -0.007619816344231367, -0.017299043014645576, -0.027876920998096466, 0.005237453617155552, -0.015548544935882092, 0.0190401803702116, -0.056090835481882095, -0.049013953655958176, -0.014434590935707092, -0.018478523939847946, -0.027914365753531456, -0.011045925319194794, 0.01712118461728096, 0.018272582441568375, 0.03856712952256203, 0.016933966428041458, -0.031396638602018356, -0.002091003116220236, -0.0496879443526268, 0.007231337018311024, 0.015969786792993546, -0.03768720105290413, 0.019714169204235077, 0.03802419453859329, 0.03867946192622185, 0.011907133273780346, 0.05815024673938751, 0.04856462776660919, -0.0008799296920187771, -0.017963670194149017, 0.023121556267142296, 0.016615692526102066, -0.00468515744432807, -0.03662005066871643, -0.004055633209645748, 0.01364827062934637, 0.01999499835073948, -0.0748501867055893, 0.008794615976512432, -0.06144530326128006, 0.04702943190932274, -0.019452061504125595, 0.0007570671732537448, 0.0014579686103388667, -0.01299300417304039, -0.003732680343091488, 0.023308776319026947, -0.057513702660799026, -0.044408366084098816, -0.042086850851774216, 0.008452941663563251, 0.023121556267142296, 0.008261041715741158, 0.019452061504125595, 0.019583115354180336, -0.003152301302179694, 0.023851711302995682, 0.021867187693715096, -0.005780389066785574, 0.05204690247774124, -0.028569631278514862, 0.02345855161547661, -0.07391409575939178, 0.04350971430540085, -0.03150897100567818, 0.021567637100815773, -0.037144266068935394, -0.0475536473095417, -0.06848473846912384, -0.025012468919157982, 0.006936466787010431, 0.031097089871764183, 0.02611706219613552, -0.024244870990514755, -0.04594356194138527, 0.023870432749390602, -0.02838241308927536, -0.037069376558065414, -0.031153254210948944, 0.0659385621547699, 0.011588861234486103, 0.0450449101626873, -0.009604338556528091, -0.026416612789034843, 0.0011724594514817, 0.04257361963391304, 0.04875184968113899, 0.019807778298854828, 0.030273325741291046, -0.003915219102054834, -0.0321829617023468, -0.025330740958452225, 0.027371428906917572, -0.005452755838632584, -0.036825992166996, 0.026360446587204933, -0.02360832691192627, -0.024357201531529427, -0.05077381432056427, -0.03695704787969589, -0.020725151523947716, -0.009922611527144909, 0.08686964958906174, 0.013966543599963188, 0.020931093022227287, 0.027371428906917572, -0.012281571514904499, -0.009304787963628769, -0.02497502602636814, 0.15786312520503998, 0.05335743725299835, 0.025143522769212723, 0.008752492256462574, -0.030909869819879532, -0.07084369659423828, -0.08020465075969696, 0.021679969504475594, -0.060621537268161774, -0.017036937177181244, -0.007016034796833992, -0.022035686299204826, 0.009407758712768555, 0.012319015339016914, -0.004043932072818279, -0.033530935645103455, -0.006501182448118925, 0.013741880655288696, 0.03072265163064003, -0.030966036021709442, -0.0036016269586980343, 0.025349464267492294, -0.006009732373058796, -0.018001114949584007, 0.020893650129437447, 0.00614546611905098, -0.07207934558391571, 0.029262341558933258, 0.027820754796266556, 0.01171055343002081, -0.008326568640768528, 0.04017721489071846, 0.013788685202598572, -0.007432597689330578, -0.011186339892446995, 0.044146258383989334, 0.07046926021575928, -0.010063025169074535, -0.04687965661287308, 0.004240512382239103, -0.012206683866679668, 0.03909134492278099, -0.04178730025887489, -0.031265586614608765, -0.019171234220266342, -0.0038660739082843065, -0.0010589578887447715, -0.022672230377793312, 0.027577370405197144, 0.057363927364349365, -0.08290060609579086, -0.013994625769555569, -0.0028387093916535378, 0.005508921574801207, 0.034822747111320496, 0.008747811429202557, 0.001026194542646408, -0.014078875072300434, -0.0010999121004715562, -0.020837483927607536, -0.03072265163064003, 0.026472777128219604, 0.04283572733402252, -0.023252610117197037, -0.011251866817474365, -0.019124429672956467, 0.001160758314654231, 0.038492243736982346, -0.004738982766866684, -0.033624548465013504, 0.01535196416079998, -0.030909869819879532, -0.0006143125938251615, 0.04598100483417511, -0.07443830370903015, -0.039578113704919815, 0.012319015339016914, -0.017916865646839142, 0.0471792072057724, -0.041824743151664734, -0.018001114949584007, 0.014331620186567307, 0.05676482617855072, 0.08559656143188477, 0.044033925980329514, -0.025068635120987892, -0.04710432142019272, -0.042985498905181885, -0.00163231638725847, 0.013872933574020863, 0.013264471665024757, 0.009351593442261219, 0.007278141565620899, 0.034766584634780884, 0.013957182876765728, 0.04219917953014374, -0.0008588675409555435, -0.03755614906549454, 0.021811023354530334, -0.0004212429339531809, -0.023889154195785522, -0.047815751284360886, -0.032725896686315536, 0.06459058076143265, 0.030966036021709442, -0.01666249893605709, -0.08447325229644775, -0.024188704788684845, -0.07324010133743286, 0.1113579124212265, -0.014518839307129383, 0.03332499787211418, 0.04264850541949272, -0.005448075011372566, 0.03532823920249939, 0.00806446187198162, -0.00040515378350391984, -0.016905883327126503, -0.0006090470706112683, 0.050287045538425446, -0.0657513439655304, -0.033624548465013504, -0.053806763142347336, 0.007816396653652191, 0.004282636567950249, -0.03553418070077896, -0.08994004875421524, 0.015155384317040443, 0.02025710418820381, -0.0305541530251503, 0.012216044589877129, -0.02461930923163891, 0.028681963682174683, -0.04287317022681236, 0.0029533810447901487, 0.03165874630212784, 0.022148016840219498, 0.041937075555324554, 0.016334865242242813, -0.004830252379179001, -0.0212680883705616, -0.024076374247670174, -0.07938089221715927, -0.02222290448844433, -0.04444580897688866, 0.004427731037139893, 0.024001486599445343, 0.02491885982453823, 0.051485247910022736, 0.027670979499816895, 0.050024937838315964, -0.006285880692303181, 0.007404514588415623, -0.01896529272198677, -0.006243756506592035, -0.002934659132733941, 0.027895642444491386, -0.01732712611556053, 0.03746253624558449, -0.029973775148391724, 0.007231337018311024, 0.03991510719060898, -0.0100068598985672, -0.03691960126161575, -0.006028454285115004, 0.043322496116161346, -0.0030259282793849707, -0.007147088181227446, 0.03680727258324623, 0.04740387201309204, -0.04410881549119949, 0.008153391070663929, -0.004628991708159447, -0.02473163977265358, -0.010615321807563305, -0.009005237370729446, -0.08844229578971863, 0.022110573947429657, 0.1036444827914238, -0.028681963682174683, 0.010877428576350212, -0.03089114837348461, 0.0072547392919659615, -0.020987259224057198, 0.003938621375709772, -0.03654516488313675, -0.07481274753808975, 0.023140277713537216, -0.023140277713537216, -0.00878993608057499, 0.01541749108582735, -0.060733869671821594, -0.009960055351257324, -0.02840113453567028, 0.035066135227680206, 0.02478780597448349, -0.012768341228365898, -0.017813894897699356, -0.024413367733359337, 0.015024331398308277, 0.05946078151464462, 0.01051235105842352, 0.013592105358839035, 0.014294176362454891, 0.08836740255355835, 0.011448446661233902, 0.006187590770423412, -0.034691695123910904, -0.04380926489830017, -0.012169240042567253, -0.019358452409505844, 0.016784191131591797, 0.02731526456773281, 0.03517846390604973, 0.00937031488865614, -0.009300108067691326, 0.045232128351926804, -0.017036937177181244, 0.0427233949303627, -0.018628299236297607, -0.04459558427333832, 0.10956060886383057, 0.03457936272025108, 0.013704436831176281, -0.006936466787010431, 0.00501279067248106, 0.02109958976507187, 0.025237131863832474, 0.04478280246257782, 0.03763103485107422, 0.011804163455963135, -0.0033605825155973434, -0.04721665382385254, -0.029936330392956734, 0.04478280246257782, -0.03429853543639183, -0.06912128627300262, -0.07294055074453354, -0.07286566495895386, -0.001167778973467648, -0.024188704788684845, 0.0423489548265934, 0.0831252709031105, -0.03070392832159996, -0.024282313883304596, -0.00310315634123981, -0.046580106019973755, 0.05324510484933853, 0.01475286390632391, -0.017373930662870407, 0.006552667822688818, 0.017963670194149017, 0.05893656611442566, -0.025274576619267464, 0.005560406483709812, -0.04017721489071846, 0.05275833606719971, -0.01421928871423006, 0.03534696251153946, 0.04519468545913696, -0.06372937560081482, -0.03678854927420616, -0.0402146577835083, 0.012206683866679668, -0.01719607226550579, 0.004783447366207838, -0.06155763193964958, -0.052571117877960205, 0.025143522769212723, -0.026791051030158997, 0.044370923191308975, 0.00588335981592536, -0.04156263545155525, -0.002960401587188244, -0.060808755457401276, 0.006716484669595957, -0.005878678988665342, 0.006496502086520195, -0.05541684851050377, -0.040926091372966766, 0.03074137307703495, -0.046430330723524094, 0.01299300417304039, 0.009857084602117538, -0.038267578929662704, -0.029131289571523666, 0.047740865498781204, -0.058599572628736496, 0.02954317070543766, 0.021605081856250763, -0.002733398461714387, 0.04916372895240784, -0.05796302855014801, -0.03057287633419037, 0.03980277478694916, 0.012590482831001282, -0.01066212635487318, 0.07050670683383942, -0.043172720819711685, -0.0006757438532076776, -0.006412253715097904, -0.042086850851774216, 0.06754864752292633, 0.023046668618917465, -0.04878929257392883, 0.02943084016442299, 0.017514344304800034, 0.030067384243011475, 0.026603830978274345, -0.048002973198890686, 0.01691524311900139, 0.017111824825406075, -0.03632050007581711, -0.06339237838983536, -0.04845229908823967, -0.01811344549059868, -0.02351471595466137, 0.016905883327126503, 0.028082862496376038, 0.05036193132400513, -0.023290053009986877, -0.04583122953772545, -0.050024937838315964, 0.011822884902358055, 0.007825757376849651, -0.008429539389908314, -0.030142271891236305, 0.006178229581564665, -0.005059595685452223, 0.017916865646839142, -0.0400274395942688, 0.05530451610684395, 0.008686965331435204, 0.013685714453458786, -0.007165810093283653, -0.002095683477818966, -0.05545429140329361, -0.04249873012304306, -0.04111330956220627, 0.03510357812047005, -0.03793058544397354, 0.007994255051016808, -0.019526949152350426, 0.004205408506095409, 0.029000235721468925, 0.0019611199386417866, -0.04508235305547714, 0.06260605901479721, 0.006992632523179054, -0.047665975987911224, -0.020650263875722885, -0.03699449077248573, -0.022953059524297714, -0.003273993730545044, -0.03070392832159996, 0.009309468790888786, 0.058374907821416855, -0.0734647661447525, -0.07960554957389832, -0.031097089871764183, 0.013236388564109802, -0.00018561015895102173, 0.03457936272025108, -0.060658980160951614, 0.10641532391309738, 0.0034775943495333195, 0.055079855024814606, -0.0068522184155881405, -0.000654681702144444, 0.004834932740777731, -0.013938460499048233, 0.004299018066376448, -0.0330628901720047, 0.017589231953024864, 0.010484268888831139, -0.0027053155936300755, -0.014050791971385479, -0.05526707321405411, 0.02111831307411194, -0.005068956408649683, -0.019452061504125595, 0.02724037691950798, -0.02143658511340618, 0.039652999490499496, -0.003496316261589527, 0.0248439721763134, -0.030048662796616554, 0.049126286059617996, 0.056090835481882095, -0.036039672791957855, -0.014518839307129383, 0.004427731037139893, 0.009838362224400043, 0.00791468657553196, -0.010821262374520302, -0.00862611923366785, 0.023851711302995682, -0.007165810093283653, 0.07653515785932541, 0.05047426372766495, 0.058487240225076675, 0.01575448550283909, -0.002433848101645708, 0.0029650821816176176, 0.0007529717404395342, -0.019414618611335754, 0.016802912577986717, 0.003903517732396722, 0.043097831308841705, -0.027933087199926376, -0.06002243608236313, 0.02008860744535923, 0.01811344549059868, 0.06114575266838074, -0.00009865567699307576, -0.03688215836882591, 0.024357201531529427, 0.017299043014645576, 0.03207062929868698, -0.022260349243879318, -0.025180965662002563, -0.03173363581299782, -0.0027450998313724995, 0.05167246609926224, -0.07024459540843964, -0.04628055542707443, -0.03165874630212784, -0.11772336065769196, -0.0343172587454319, 0.027914365753531456, 0.04107586666941643, 0.001461478997953236, 0.0178794227540493, -0.029037678614258766, 0.04639288783073425, 0.018141528591513634, 0.07305288314819336, -0.037144266068935394, 0.05747625604271889, 0.0012426666216924787, 0.04684221372008324, -0.008406137116253376, 0.02701571397483349, -0.0039596837013959885, 0.02973039075732231, 0.0614827461540699, -0.04695454612374306, 0.0140695134177804, -0.032445065677165985, 0.02364576980471611, -0.03459808602929115, -0.006819454953074455, -0.016653137281537056, -0.003173363395035267, 0.028101583942770958, -0.0175985936075449, 0.0006798392860218883, 0.026734884828329086, 0.0059629278257489204, 0.036451555788517, 0.0182257778942585, -0.047778308391571045, -0.08087864518165588, 0.01890912652015686, 0.02141786366701126, -0.0037537426687777042, 0.006103341933339834, 0.012852589599788189, -0.0006090470706112683, 0.025386907160282135, 0.008256361819803715, 0.07204189896583557, 0.01128931064158678, -0.01233773771673441, 0.01127994991838932, 0.018703186884522438, 0.025106078013777733, -0.036095838993787766, 0.04287317022681236, -0.031471528112888336, 0.03570267930626869, 0.09832745790481567, -0.03998999670147896, -0.024244870990514755, -0.0016756107797846198, -0.0020687708165496588, -0.007764911279082298, -0.04980027675628662, -0.05346976965665817, -0.02482525072991848, 0.001749328221194446, -0.018749991431832314, 0.028756851330399513, -0.02722165361046791, 0.07698448747396469, -0.01995755359530449, 0.029281064867973328, 0.028925348073244095 ]
24,491
aws_lambda_context
LambdaClientContextMobileClient
null
class LambdaClientContextMobileClient: installation_id: str app_title: str app_version_name: str app_version_code: str app_package_name: str
()
[ 0.02715901844203472, -0.08073583990335464, -0.032157495617866516, -0.055344339460134506, 0.05557240918278694, -0.06233840435743332, 0.0006818263209424913, 0.044967275112867355, 0.04686783626675606, 0.000658663222566247, -0.014862388372421265, 0.009939935058355331, -0.016772452741861343, 0.005692180711776018, -0.025467518717050552, -0.017418643459677696, -0.003264213679358363, -0.006262348964810371, 0.0622243732213974, -0.013075861148536205, -0.0022046510130167007, 0.06556936353445053, -0.025049395859241486, 0.06427697837352753, 0.030599035322666168, 0.08446093648672104, 0.03991178423166275, 0.04606960341334343, 0.06735588610172272, -0.05393792688846588, -0.027121007442474365, 0.017865274101495743, 0.004577976651489735, 0.058993417769670486, -0.023091817274689674, -0.013655532151460648, 0.0035778062883764505, -0.04048195108771324, -0.11289333552122116, -0.017124056816101074, -0.05618058890104294, 0.044283073395490646, 0.03557850420475006, -0.012116077356040478, 0.03890448808670044, 0.021286284551024437, 0.000589173985645175, -0.027558136731386185, 0.03225252404808998, -0.006704229395836592, 0.023833036422729492, 0.02018395997583866, -0.002777195069938898, 0.014605812728404999, -0.05234145373106003, 0.039189569652080536, -0.0073504201136529446, -0.0022996789775788784, -0.055914510041475296, 0.04945260286331177, -0.08187617361545563, 0.009759381413459778, 0.027672169730067253, -0.0351983942091465, 0.009512308984994888, 0.0055971527472138405, -0.035217396914958954, 0.03514137491583824, 0.0015014433301985264, 0.005516378674656153, 0.04739999398589134, -0.02130529098212719, 0.002103683538734913, 0.012876302003860474, -0.008305451832711697, -0.06450504809617996, -0.01773223467171192, -0.02814731001853943, -0.005701683461666107, -0.055534396320581436, 0.029591737315058708, -0.021761424839496613, -0.013608017936348915, -0.020602082833647728, 0.028489410877227783, 0.04675380513072014, -0.009089433588087559, -0.018568482249975204, -0.05367184802889824, 0.04432108625769615, 0.004330903757363558, 0.07191723585128784, -0.08195219933986664, 0.10772380977869034, -0.007407437078654766, -0.011926021426916122, 0.004387920722365379, -0.027006974443793297, -0.011213310994207859, 0.0458795465528965, 0.014206694439053535, -0.0342671163380146, -0.048806410282850266, 0.011612428352236748, -0.0010928226402029395, -0.05074498429894447, -0.03335484862327576, -0.036110661923885345, 0.09381169825792313, 0.03141627460718155, 0.020507054403424263, -0.021761424839496613, -0.0012721881503239274, 0.004763281438499689, 0.020145948976278305, 0.03462822362780571, 0.024251161143183708, 0.01134635042399168, 0.019765835255384445, 0.03042798489332199, 0.03713696449995041, -0.011213310994207859, 0.023034801706671715, 0.005806214176118374, 0.044587165117263794, 0.03430512920022011, -0.014434762299060822, -0.019594784826040268, 0.024536244571208954, -0.008885123766958714, 0.03782116621732712, -0.027102002874016762, 0.02470729500055313, -0.017741737887263298, -0.009512308984994888, 0.021134240552783012, 0.06389686465263367, 0.018492460250854492, 0.0025942660868167877, 0.03782116621732712, -0.02130529098212719, 0.08187617361545563, -0.0014052273472771049, -0.01694350317120552, -0.011118282563984394, -0.008509762585163116, -0.029211625456809998, 0.006186326500028372, -0.026493823155760765, -0.02193247526884079, 0.040938086807727814, -0.05606655403971672, 0.019841859117150307, 0.04808419570326805, -0.0684962272644043, -0.013465476222336292, -0.02790023759007454, -0.06351675093173981, 0.018178867176175117, -0.011983037926256657, 0.02476431243121624, -0.05557240918278694, 0.04234450310468674, -0.029705770313739777, -0.008709321729838848, -0.019955892115831375, 0.01335144229233265, -0.028565434738993645, -0.06773599982261658, 0.010044465772807598, -0.023795025423169136, -0.007949097082018852, -0.028926540166139603, -0.023719003424048424, -0.01458680722862482, 0.045537445694208145, 0.02841338887810707, -0.03979774937033653, 0.03295573219656944, -0.024783316999673843, -0.01568913273513317, 0.027063990011811256, -0.029496708884835243, 0.05424201488494873, 0.03865741565823555, 0.02816631644964218, 0.01967080868780613, 0.06762196868658066, 0.055458374321460724, -0.011678948067128658, -0.014976422302424908, -0.002596641657873988, 0.03413407877087593, 0.018948594108223915, -0.013608017936348915, -0.023281874135136604, 0.01329442486166954, 0.014729348942637444, -0.09913326799869537, -0.005592401139438152, -0.01313287764787674, 0.03432413563132286, 0.0191766619682312, 0.037174977362155914, 0.02179943583905697, -0.03128323704004288, 0.007393182720988989, -0.0012306133285164833, -0.02024097554385662, -0.047476015985012054, -0.01809334196150303, 0.013398956507444382, -0.010015957057476044, -0.006176823750138283, 0.010538611561059952, -0.013227906078100204, 0.014795868657529354, 0.013256413862109184, 0.03462822362780571, -0.01811234839260578, 0.020316999405622482, -0.02677890658378601, 0.012781273573637009, -0.06245243921875954, 0.01172646228224039, -0.022426621988415718, 0.00022539467317983508, -0.04215444624423981, -0.01811234839260578, -0.019575780257582664, -0.044016994535923004, -0.022901762276887894, 0.05952557548880577, 0.028109299018979073, -0.070396788418293, -0.02607569843530655, 0.010044465772807598, -0.012363150715827942, -0.009702364914119244, -0.04538540169596672, 0.0559525191783905, 0.024840334430336952, 0.04234450310468674, 0.03816326707601547, -0.029059579595923424, 0.014368242584168911, 0.016772452741861343, 0.029686765745282173, 0.005563892889767885, -0.0119450269266963, -0.0023483808618038893, -0.05481218546628952, 0.018245387822389603, 0.030332956463098526, 0.03445717319846153, -0.04530937969684601, 0.008029870688915253, -0.04618363454937935, -0.018045827746391296, -0.03430512920022011, -0.031891416758298874, -0.055914510041475296, -0.0005579928983934224, 0.06670969724655151, -0.011783478781580925, -0.005160023458302021, 0.016173776239156723, 0.028242338448762894, -0.024156132712960243, 0.006623455788940191, 0.1803252398967743, 0.05511627346277237, 0.011469886638224125, 0.008229429833590984, -0.020412025973200798, -0.09411578625440598, -0.09343158453702927, 0.007792300544679165, -0.061882272362709045, -0.04759005084633827, -0.034229107201099396, -0.023604970425367355, 0.04690584912896156, 0.04644971340894699, 0.025619564577937126, -0.05074498429894447, 0.014539293013513088, -0.013018843717873096, 0.03078909032046795, -0.0008534707594662905, -0.021324295550584793, 0.022027503699064255, -0.046601761132478714, -0.04230649024248123, 0.001229425542987883, 0.021267279982566833, -0.01980384811758995, 0.04078604280948639, 0.01776074431836605, -0.016715435311198235, 0.006742240861058235, 0.048996467143297195, -0.006058038678020239, -0.033791977912187576, -0.022331593558192253, 0.05944955348968506, 0.04128018766641617, -0.03230953961610794, -0.05104907229542732, 0.02879350073635578, -0.014681834727525711, 0.02997184917330742, -0.027178024873137474, -0.013551001437008381, -0.05838523805141449, 0.014140174724161625, -0.0010720352875068784, 0.025049395859241486, 0.03772613778710365, 0.03791619464755058, -0.049870725721120834, -0.008723575621843338, -0.0031002904288470745, 0.021419323980808258, 0.04888243228197098, -0.00538809085264802, -0.002127440646290779, -0.018302403390407562, -0.017181072384119034, -0.03160633146762848, -0.031093180179595947, 0.026626862585544586, 0.04511932283639908, -0.006314614322036505, 0.03232854604721069, -0.005407096352428198, 0.014434762299060822, -0.0024291547015309334, -0.013921610079705715, -0.015071449801325798, 0.04204041138291359, -0.046107612550258636, -0.019632795825600624, 0.05336775630712509, -0.08461298048496246, -0.040748029947280884, 0.022901762276887894, -0.05644666776061058, 0.01149839535355568, -0.05260753259062767, -0.00357543071731925, -0.02162838540971279, 0.031511303037405014, 0.031321246176958084, 0.07720079272985458, -0.032347552478313446, -0.06507521122694016, -0.02525845728814602, -0.011203807778656483, 0.014463270083069801, -0.026797913014888763, -0.05367184802889824, -0.007364674471318722, 0.021077223122119904, -0.06712781637907028, 0.027539130300283432, -0.02312983013689518, -0.008110644295811653, 0.04204041138291359, 0.00004729130523628555, -0.01999390311539173, -0.0477801077067852, -0.00515527231618762, 0.014254208654165268, 0.02828034944832325, 0.024099115282297134, -0.09594032913446426, -0.019651802256703377, -0.12414465099573135, 0.07054883241653442, -0.03662381321191788, 0.035920605063438416, 0.01953776925802231, 0.012401161715388298, 0.044853243976831436, 0.012724257074296474, -0.0041764830239117146, -0.03873343765735626, -0.0120970718562603, 0.0427246131002903, -0.037878185510635376, -0.02525845728814602, -0.06454305350780487, 0.017988812178373337, 0.004865436349064112, -0.0427246131002903, -0.09441988170146942, 0.03464723005890846, 0.030580028891563416, -0.041698310524225235, 0.004931956063956022, -0.040748029947280884, 0.06146414950489998, -0.033658936619758606, -0.014054649509489536, 0.006319365929812193, 0.03968371823430061, 0.021780431270599365, 0.001857798546552658, -0.013693543151021004, -0.013693543151021004, -0.026816917583346367, -0.08195219933986664, -0.044207051396369934, -0.02626575529575348, 0.043522849678993225, 0.016924496740102768, 0.026303766295313835, 0.029629748314619064, 0.010681153275072575, 0.027862226590514183, 0.026493823155760765, 0.011488892138004303, 0.012268122285604477, -0.0223125871270895, 0.00205973326228559, 0.04356086254119873, -0.015451562590897083, 0.05990568920969963, -0.025619564577937126, 0.02797625958919525, 0.06146414950489998, -0.02533447928726673, -0.03979774937033653, -0.025980671867728233, 0.02626575529575348, 0.013531995005905628, -0.06245243921875954, -0.01564161852002144, 0.01002546027302742, -0.06351675093173981, -0.02307281270623207, 0.002786697819828987, -0.013741057366132736, -0.0017140685813501477, 0.0037868681829422712, -0.08788194507360458, 0.006214834749698639, 0.07860720902681351, -0.029686765745282173, -0.006100801285356283, -0.006300360430032015, 0.008414734154939651, -0.031834401190280914, -0.01049109734594822, -0.048806410282850266, -0.07655460387468338, -0.006295608822256327, -0.025220446288585663, -0.033525899052619934, -0.014824377372860909, -0.05040288344025612, 0.019575780257582664, -0.015175980515778065, 0.03753608465194702, 0.03525540977716446, 0.006537930574268103, -0.012277625501155853, -0.05412798002362251, 0.046297669410705566, 0.0615781806409359, -0.009678607806563377, 0.06359277665615082, 0.04489125311374664, 0.07237336784601212, 0.01702902838587761, 0.010766678489744663, -0.023243863135576248, -0.06275653094053268, -0.03103616274893284, -0.00670898100361228, 0.056218598037958145, 0.009479048661887646, 0.04253455996513367, -0.007103347219526768, 0.013836084865033627, 0.04215444624423981, -0.05196134373545647, 0.02620873786509037, -0.013275419361889362, -0.035217396914958954, 0.09609237313270569, 0.000549380958545953, 0.017371129244565964, 0.034552201628685, 0.005378588102757931, 0.01961379125714302, 0.041584279388189316, 0.016164273023605347, 0.05374787002801895, 0.008519265800714493, -0.00619107810780406, -0.02143833041191101, -0.03603463992476463, 0.050821006298065186, -0.035350438207387924, -0.08149605989456177, -0.034229107201099396, -0.0358445830643177, 0.009384021162986755, -0.03922758251428604, 0.022844744846224785, 0.058043137192726135, -0.0049652159214019775, -0.021077223122119904, 0.02569558657705784, -0.044016994535923004, 0.04204041138291359, 0.03968371823430061, 0.014786365441977978, 0.004207367077469826, 0.014501282013952732, 0.04055797681212425, -0.02394707128405571, -0.006390636786818504, -0.036547791212797165, 0.040748029947280884, -0.03424811363220215, 0.01841643825173378, 0.07077689468860626, -0.08476502448320389, -0.01329442486166954, -0.04690584912896156, 0.03527441620826721, -0.016221288591623306, -0.014909902587532997, -0.07997561246156693, -0.004283389542251825, 0.01031054463237524, -0.02803327701985836, 0.03538844734430313, 0.02413712628185749, -0.07780897617340088, -0.03631972521543503, -0.052949633449316025, -0.009046670980751514, 0.0030171407852321863, 0.03614867478609085, -0.060551878064870834, -0.04318074882030487, 0.033335842192173004, -0.017884280532598495, 0.035293418914079666, -0.0025420004967600107, -0.028755489736795425, -0.023852042853832245, 0.044625174254179, -0.04816022142767906, 0.026189733296632767, -0.003641950199380517, -0.007036827504634857, 0.013313431292772293, -0.05298764631152153, -0.044207051396369934, 0.02563856914639473, 0.0348752960562706, -0.01961379125714302, 0.04557545483112335, -0.0348752960562706, 0.006414393894374371, 0.002644155640155077, -0.03791619464755058, 0.06442902237176895, 0.03991178423166275, -0.034039050340652466, -0.006842019967734814, 0.03160633146762848, 0.06070392206311226, 0.022711705416440964, -0.029591737315058708, 0.018558979034423828, 0.031644344329833984, -0.009797392413020134, -0.04048195108771324, -0.05990568920969963, -0.012800279073417187, -0.038676418364048004, -0.01329442486166954, 0.0248213279992342, 0.016705932095646858, -0.027729187160730362, -0.048312265425920486, -0.029268641024827957, 0.03310777619481087, 0.009060924872756004, 0.0018233509035781026, -0.007507216650992632, 0.0008368408307433128, -0.0037868681829422712, 0.015033438801765442, -0.015594104304909706, 0.08392877876758575, 0.014605812728404999, -0.006176823750138283, 0.024213148280978203, 0.02607569843530655, -0.08590536564588547, -0.041128143668174744, -0.034780267626047134, 0.030275939032435417, -0.04348484054207802, 0.004088582005351782, -0.05009879171848297, -0.010367561131715775, 0.0033592418767511845, 0.015166478231549263, -0.018596990033984184, 0.03029494546353817, 0.011146791279315948, -0.06207232549786568, 0.0050697471015155315, 0.008790095336735249, 0.014919404871761799, 0.0021393192000687122, -0.046411704272031784, 0.04835027456283569, -0.003753608325496316, -0.0035920606460422277, -0.05789109319448471, -0.044663187116384506, 0.05055492743849754, -0.003295097965747118, 0.0628705620765686, -0.03343087062239647, 0.07807505130767822, 0.005031735636293888, 0.03694690763950348, -0.0016938751796260476, 0.013589012436568737, 0.005183780565857887, 0.012524697929620743, 0.017893783748149872, -0.05637064203619957, -0.003967421595007181, 0.01423520315438509, 0.030751079320907593, -0.01276226807385683, -0.05648467689752579, 0.002329375362023711, -0.03468524292111397, -0.04261058196425438, 0.00604853592813015, -0.0070795901119709015, 0.030656050890684128, 0.011849998496472836, 0.016411345452070236, -0.042762625962495804, 0.04010184109210968, -0.0004531650629360229, -0.01792229153215885, -0.03097914718091488, 0.0003830818459391594, 0.02506840229034424, -0.03991178423166275, -0.01127983070909977, 0.002375701442360878, 0.03839133679866791, -0.020412025973200798, 0.049300555139780045, 0.02337690256536007, 0.04162228852510452, 0.03998780623078346, 0.023795025423169136, 0.0012816909002140164, -0.004917702171951532, -0.007155612576752901, -0.005117260850965977, 0.01645885966718197, 0.05329173430800438, -0.008775841444730759, -0.02898355759680271, -0.0016629910096526146, 0.02136230655014515, 0.029135601595044136, -0.016610903665423393, -0.03964570537209511, 0.017314111813902855, 0.0396076962351799, 0.0004683101433329284, -0.03373496234416962, -0.02828034944832325, -0.030941136181354523, -0.007939593866467476, 0.02280673384666443, -0.02790023759007454, -0.035673532634973526, -0.013741057366132736, -0.06423896551132202, -0.008158158510923386, 0.03865741565823555, 0.06195829436182976, 0.013655532151460648, -0.004233499988913536, 0.016135763376951218, 0.020792139694094658, 0.03232854604721069, 0.04888243228197098, -0.04413102939724922, 0.007222132291644812, -0.0030171407852321863, 0.04922453314065933, 0.029268641024827957, 0.02387104742228985, -0.009768884629011154, 0.044853243976831436, 0.027919244021177292, -0.055724453181028366, 0.015660623088479042, -0.02413712628185749, 0.033982034772634506, -0.04857834428548813, 0.022217560559511185, -0.015232997946441174, 0.008191418834030628, 0.03483728691935539, 0.013760062865912914, -0.015242500230669975, 0.035540495067834854, 0.0036657073069363832, 0.06583543866872787, 0.007117601577192545, -0.03430512920022011, -0.08955444395542145, 0.017694223672151566, 0.049984756857156754, -0.0002185645280405879, 0.01439675036817789, 0.016705932095646858, 0.01527100894600153, 0.006960805039852858, 0.011507897637784481, 0.07434995472431183, 0.010006454773247242, -0.004554219543933868, -0.02476431243121624, 0.04242052510380745, 0.021533356979489326, -0.02847040630877018, 0.02117225155234337, -0.05450809374451637, 0.018749035894870758, 0.06385885179042816, -0.04557545483112335, -0.0020514181815087795, -0.0062908572144806385, -0.01357950922101736, -0.01967080868780613, -0.0019801470916718245, 0.00012383343710098416, -0.011926021426916122, 0.01945224404335022, -0.01130833849310875, 0.00449482724070549, -0.03373496234416962, 0.047476015985012054, -0.0007899207412265241, 0.011802485212683678, 0.00840523187071085 ]
24,492
aws_lambda_context
LambdaCognitoIdentity
null
class LambdaCognitoIdentity: cognito_identity_id: str cognito_identity_pool_id: str
()
[ -0.01773761957883835, -0.07863008975982666, 0.025675132870674133, 0.006347144953906536, 0.012579668313264847, -0.046192314475774765, -0.02286691404879093, 0.023478226736187935, 0.05738697573542595, -0.030393701046705246, -0.002457190304994583, 0.019093969836831093, 0.004002187866717577, 0.034863926470279694, 0.019275452941656113, 0.005071984604001045, 0.017899999395012856, -0.018721450120210648, 0.015139540657401085, -0.030622944235801697, 0.0050051226280629635, 0.07286082953214645, -0.019428281113505363, 0.02225560136139393, -0.016295302659273148, 0.08245079964399338, 0.031062325462698936, 0.04359423369169235, 0.030298184603452682, -0.021147597581148148, -0.01711675524711609, -0.010564247146248817, -0.003161632688716054, 0.031100532039999962, 0.0362393781542778, -0.03497854620218277, 0.03822614625096321, 0.06812315434217453, -0.05219081789255142, -0.01851131208240986, -0.08634791523218155, 0.011739113368093967, -0.019523797556757927, 0.01793820597231388, -0.017002133652567863, 0.04195133224129677, 0.019714834168553352, -0.006867715623229742, 0.009532656520605087, -0.01418436411768198, 0.023019742220640182, 0.031062325462698936, -0.014337192289531231, 0.040690500289201736, 0.03159722313284874, 0.0486757718026638, 0.006657577119767666, -0.010755281895399094, -0.013324705883860588, 0.03721366077661514, -0.049707360565662384, -0.04416733980178833, 0.05727235600352287, -0.05425399914383888, 0.012044769711792469, 0.02212187647819519, -0.05092998594045639, 0.04130181297659874, -0.0034099784679710865, -0.004866621922701597, 0.05960298702120781, -0.06105485185980797, 0.021720703691244125, -0.012713393196463585, 0.00980965793132782, -0.018721450120210648, -0.027833830565214157, 0.05203799158334732, 0.0018279681680724025, -0.02454802393913269, 0.008763739839196205, -0.07083585858345032, -0.03837897256016731, 0.01711675524711609, 0.006275506690144539, 0.016008751466870308, -0.007908857427537441, -0.08650074154138565, -0.10071375966072083, 0.012751600705087185, -0.004797371570020914, 0.05811291188001633, -0.05299316719174385, 0.09177331626415253, -0.014499572105705738, 0.013477534055709839, -0.00416217977181077, 0.003066115081310272, -0.006724439561367035, 0.042944714426994324, 0.005645090248435736, -0.0671679824590683, -0.04638334736227989, 0.028387831524014473, -0.013678121380507946, -0.054559655487537384, -0.007584097795188427, 0.004651707597076893, 0.04454940930008888, -0.029858803376555443, -0.02005869708955288, 0.030088044703006744, -0.043250370770692825, 0.027967555448412895, 0.028024865314364433, -0.01680154725909233, 0.04187491908669472, 0.03327833488583565, -0.04489327594637871, 0.008739860728383064, 0.0020978054963052273, -0.02710789628326893, -0.022293809801340103, 0.0485229417681694, 0.01403153594583273, 0.026706721633672714, -0.014365848153829575, -0.01863548532128334, -0.021434150636196136, -0.03962070122361183, 0.0035150479525327682, -0.03858911246061325, -0.009518329054117203, 0.00786109920591116, 0.01213073544204235, 0.02279050089418888, 0.06988067924976349, 0.02806307189166546, 0.0315399132668972, 0.06395858526229858, 0.006447438150644302, 0.052954960614442825, -0.00691069895401597, -0.0009426393662579358, 0.02983970008790493, -0.025121130049228668, -0.031119635328650475, -0.0004080392827745527, -0.00393054960295558, -0.07679615169763565, 0.031272463500499725, -0.030412806198000908, 0.05188516154885292, 0.05165592208504677, -0.09337800741195679, 0.0025741993449628353, 0.014165260829031467, -0.04894322156906128, 0.012484150938689709, -0.03337385132908821, 0.011433457024395466, -0.01018217671662569, -0.03224674239754677, -0.0031353654339909554, -0.0008148845518007874, -0.05314599722623825, 0.0853545293211937, -0.01183463167399168, -0.026038099080324173, -0.04733852669596672, -0.05421579256653786, -0.047949839383363724, -0.008300479501485825, 0.0427536815404892, 0.0194855909794569, 0.02330629527568817, -0.012054321356117725, -0.03360309451818466, -0.0028249332681298256, -0.021052079275250435, 0.06063457578420639, 0.04202774539589882, 0.03224674239754677, 0.03679338097572327, 0.030603840947151184, -0.004396197851747274, 0.01920858956873417, 0.0876469537615776, 0.05601152405142784, -0.01737465150654316, 0.024204161018133163, -0.014537779614329338, -0.038990285247564316, 0.014891194179654121, 0.015005815774202347, 0.005960298702120781, -0.020459871739149094, 0.006012833211570978, -0.10270053148269653, 0.013754535466432571, -0.008314807899296284, 0.007751253433525562, 0.0017551359487697482, -0.028693487867712975, -0.01084124855697155, -0.01693527214229107, -0.020670009776949883, 0.007851547561585903, 0.0011820303043350577, -0.03740469366312027, -0.0076175290159881115, -0.0130381528288126, -0.00874941237270832, 0.04798804596066475, 0.02682134322822094, 0.02036435343325138, 0.024013126268982887, 0.009647278115153313, 0.03858911246061325, -0.023764779791235924, 0.10338825732469559, -0.04649797081947327, 0.011261525563895702, -0.046039484441280365, 0.04160746932029724, 0.0010023378999903798, -0.01745106652379036, -0.04630693420767784, -0.018234310671687126, -0.04153105616569519, 0.04019380733370781, 0.003221331164240837, 0.05031867325305939, 0.06567790359258652, -0.010917662642896175, -0.045542795211076736, -0.011968355625867844, -0.061627957969903946, -0.01595143973827362, -0.006762646604329348, -0.020994769409298897, 0.03602924197912216, 0.025082923471927643, 0.01896979659795761, -0.0181196890771389, 0.01961931586265564, -0.04676542058587074, 0.0729372426867485, 0.012866221368312836, -0.026572998613119125, 0.01711675524711609, -0.0025336043909192085, -0.033259231597185135, -0.007655736058950424, -0.0130381528288126, -0.016849305480718613, -0.004933484364300966, -0.0219117384403944, -0.005525693297386169, -0.0007265307940542698, -0.00691069895401597, -0.0267640333622694, 0.0026482255198061466, 0.020307043567299843, 0.025312164798378944, -0.012426840141415596, -0.03574268892407417, 0.025121130049228668, -0.012866221368312836, -0.005506590008735657, 0.16918078064918518, 0.06105485185980797, 0.007693943101912737, -0.01749882474541664, -0.004539474379271269, -0.08818185329437256, -0.06674770265817642, 0.01832982897758484, -0.05952657014131546, -0.03400426730513573, -0.023707469925284386, -0.023631054908037186, -0.013687673024833202, 0.005941194947808981, 0.013764087110757828, -0.023497330024838448, 0.004183670971542597, 0.007650960236787796, 0.01477657351642847, 0.018387138843536377, -0.03572358563542366, 0.008190634660422802, -0.047797009348869324, -0.03276253864169121, -0.015569369308650494, -0.024165954440832138, -0.039506081491708755, 0.02770010568201542, 0.020746422931551933, 0.0018840847769752145, -0.02705058641731739, 0.05784546211361885, -0.0031998397316783667, -0.04573382809758186, -0.014575986191630363, 0.034730199724435806, 0.028254108503460884, -0.009203121066093445, -0.06548687070608139, 0.03220853582024574, -0.018138792365789413, 0.03343116119503975, -0.0291901808232069, 0.03916221857070923, 0.0309286005795002, 0.05421579256653786, 0.011872838251292706, 0.011328388005495071, 0.03278164193034172, 0.05983222648501396, -0.026343755424022675, -0.04481685906648636, 0.009771451354026794, -0.003273865906521678, 0.058686017990112305, -0.028980040922760963, -0.037672143429517746, 0.02968687191605568, -0.03931504487991333, 0.0007742895977571607, -0.05394834280014038, -0.014318089000880718, 0.017794929444789886, -0.03549434244632721, -0.013324705883860588, 0.01827251724898815, -0.0015103721525520086, 0.053604479879140854, 0.05165592208504677, -0.011166008189320564, -0.020612699910998344, -0.05673745647072792, 0.0036344449035823345, 0.09314876794815063, -0.08015837520360947, -0.03432902693748474, 0.02049807831645012, -0.07977630198001862, -0.012407736852765083, -0.07098868489265442, -0.010707523673772812, 0.03301088511943817, 0.05345165356993675, 0.007264113985002041, 0.010640661232173443, 0.030240872874855995, -0.004919156432151794, 0.009117155335843563, -0.02764279581606388, -0.0003572955320123583, -0.044855065643787384, -0.09895624220371246, 0.03388964757323265, -0.03495944291353226, 0.010669316165149212, 0.07458014786243439, -0.006762646604329348, -0.025445889681577682, 0.03520778939127922, -0.022064566612243652, -0.047797009348869324, -0.026935964822769165, -0.07022454589605331, 0.028941834345459938, 0.033545784652233124, 0.01406974345445633, -0.0674736350774765, -0.0006739961099810898, -0.08260362595319748, 0.040537670254707336, -0.05673745647072792, 0.009174466133117676, 0.07301365584135056, 0.055018141865730286, -0.022007256746292114, 0.04569562152028084, 0.005855229217559099, -0.015636231750249863, 0.0106884203851223, 0.0533752366900444, -0.07454194128513336, -0.022446637973189354, -0.039353251457214355, -0.008047358132898808, -0.02336360700428486, -0.0330490916967392, -0.043021127581596375, 0.007330975960940123, 0.014786125160753727, -0.017718516290187836, -0.01590368151664734, -0.008615688420832157, 0.058991674333810806, -0.025159336626529694, -0.009766675531864166, 0.04225698858499527, -0.011605389416217804, 0.015655335038900375, 0.01168180350214243, -0.06136050820350647, -0.026649411767721176, -0.027451759204268456, -0.021434150636196136, -0.059946849942207336, 0.016199786216020584, -0.014384951442480087, -0.018625933676958084, 0.023096157237887383, 0.01381184533238411, 0.011290180496871471, 0.03035549446940422, -0.0009820404229685664, -0.04386168345808983, -0.020822837948799133, -0.03843628242611885, -0.007225906942039728, 0.08290927857160568, -0.03704172745347023, 0.0523054413497448, -0.025197545066475868, -0.04657438397407532, 0.06556328386068344, -0.006480869371443987, -0.027948452159762383, 0.03499764949083328, 0.009952934458851814, 0.011032283306121826, -0.01473836600780487, 0.0106502128764987, 0.04454940930008888, 0.003670264035463333, 0.02953404374420643, -0.05704311281442642, 0.009599518962204456, 0.02279050089418888, 0.02338271029293537, -0.08359700441360474, 0.06078740209341049, 0.0958232581615448, 0.01749882474541664, 0.046192314475774765, -0.0216824971139431, 0.029343008995056152, -0.020994769409298897, -0.003335952293127775, -0.02806307189166546, -0.04695645347237587, -0.005711952690035105, 0.011299733072519302, -0.007431269623339176, -0.05436862260103226, -0.038837458938360214, 0.05604973062872887, 0.0009044323232956231, 0.0030446236487478018, 0.013515741564333439, 0.00008529423939762637, -0.013372465036809444, -0.01984855905175209, 0.03499764949083328, 0.07469476759433746, -0.015120436437427998, 0.011939700692892075, -0.018234310671687126, 0.05165592208504677, 0.008271824568510056, 0.026553893461823463, 0.013133671134710312, 0.0014291821280494332, -0.017212271690368652, -0.0012656082399189472, 0.04000277444720268, 0.005506590008735657, 0.06032891944050789, 0.043479613959789276, 0.028464246541261673, 0.03511227294802666, -0.036716967821121216, 0.03616296499967575, -0.019237246364355087, -0.04122539982199669, 0.07878292351961136, -0.002901347354054451, -0.004369930364191532, -0.028043968603014946, 0.004928708542138338, 0.01241728849709034, -0.028846316039562225, -0.02124311588704586, 0.013276946730911732, -0.007493356242775917, 0.030603840947151184, 0.006843836512416601, -0.07500042021274567, 0.07373958826065063, 0.006667128764092922, -0.10980703681707382, -0.01729823835194111, -0.05115922912955284, 0.01737465150654316, 0.009241328574717045, 0.027681002393364906, 0.04493148252367973, -0.020020490512251854, -0.013735431246459484, 0.0052295890636742115, 0.01680154725909233, 0.039582494646310806, -0.0009354755165986717, -0.020020490512251854, 0.011118249036371708, 0.022427532821893692, -0.0031282014679163694, 0.009585191495716572, 0.015492955222725868, 0.01366856973618269, 0.013219636864960194, -0.02233201637864113, 0.004236205946654081, 0.031425293534994125, -0.041187189519405365, -0.029725078493356705, -0.05803649500012398, 0.026515686884522438, -0.04519893229007721, 0.006361472420394421, -0.04879039153456688, -0.009040741249918938, 0.037232764065265656, -0.009523104876279831, -0.02322988212108612, 0.0362393781542778, -0.023783883079886436, 0.042065951973199844, -0.06166616454720497, 0.034883029758930206, -0.052878547459840775, 0.04600127786397934, -0.0673208087682724, 0.0008626433555036783, 0.035532549023628235, -0.009289086796343327, 0.05054791644215584, -0.0474531464278698, 0.01631440781056881, -0.032877158373594284, 0.03050832264125347, -0.037079934030771255, -0.031635429710149765, 0.051541298627853394, 0.01984855905175209, 0.04256264492869377, 0.02271408587694168, -0.045007895678281784, 0.027375346049666405, 0.0194855909794569, -0.006476093549281359, 0.01863548532128334, -0.028712591156363487, 0.0026386738754808903, -0.006738767027854919, 0.027986658737063408, 0.030317287892103195, 0.03247598558664322, -0.09781002998352051, 0.0009772644843906164, 0.014786125160753727, 0.06678590923547745, 0.004009351599961519, -0.018731001764535904, -0.00978100299835205, 0.05436862260103226, -0.026190927252173424, -0.04600127786397934, 0.006146558094769716, -0.005086312536150217, -0.10155431926250458, 0.02470085211098194, -0.023096157237887383, 0.02152966894209385, -0.019008003175258636, -0.016868408769369125, -0.050662536174058914, 0.042065951973199844, 0.016066061332821846, -0.002903735265135765, -0.0020619863644242287, 0.0007671257480978966, -0.00806646142154932, -0.03511227294802666, -0.007894529961049557, 0.05452144891023636, 0.00521526113152504, 0.029151972383260727, 0.038474492728710175, 0.01946648769080639, -0.07924140244722366, -0.04963094741106033, -0.05219081789255142, 0.013372465036809444, -0.02542678639292717, 0.04512251541018486, 0.0005677327862940729, -0.03058473765850067, -0.0009402513969689608, 0.003288193605840206, -0.06479914486408234, 0.07863008975982666, -0.0011909850873053074, -0.029419422149658203, 0.003546091029420495, -0.02204546332359314, -0.0236501581966877, 0.0335075743496418, -0.05585869401693344, -0.00711128581315279, 0.03688889741897583, 0.0005238543380983174, -0.03492123633623123, -0.003333564382046461, 0.007660511881113052, -0.04359423369169235, 0.04000277444720268, -0.07351034879684448, 0.06101664528250694, 0.03144439682364464, 0.03931504487991333, 0.03887566551566124, -0.004188446793705225, 0.003063727170228958, -0.050242260098457336, -0.022446637973189354, -0.04634514078497887, -0.005382417235523462, 0.042065951973199844, -0.00325953820720315, -0.033392954617738724, -0.009021637961268425, -0.0019043822539970279, -0.05559124797582626, -0.020096903666853905, 0.016553200781345367, 0.03220853582024574, -0.025999892503023148, -0.015884578227996826, -0.024968301877379417, -0.06835240125656128, 0.03849359601736069, 0.05157950520515442, -0.043250370770692825, -0.009666381403803825, 0.007985271513462067, 0.009293862618505955, 0.030603840947151184, 0.002183771226555109, -0.011251973919570446, -0.014060191810131073, 0.01708810031414032, -0.008668222464621067, 0.06009967625141144, 0.023611951619386673, 0.0071876998990774155, 0.028254108503460884, -0.011041834950447083, 0.003878014860674739, -0.05482710525393486, 0.01579861156642437, -0.03108142875134945, 0.0011593449162319303, 0.0016178294317796826, 0.004749612882733345, -0.040155600756406784, 0.048752184957265854, 0.012111632153391838, 0.0009432363440282643, -0.04004098102450371, 0.01480522844940424, -0.013429774902760983, 0.03239957243204117, -0.008166755549609661, 0.010163073427975178, -0.024509817361831665, -0.01124242227524519, 0.017231376841664314, -0.004494103137403727, -0.030909497290849686, -0.02212187647819519, -0.008367341943085194, 0.0288845244795084, 0.052878547459840775, 0.005793142598122358, 0.008166755549609661, -0.016734683886170387, -0.02410864271223545, 0.020230628550052643, 0.0024858457036316395, 0.03157811984419823, 0.0002480472903698683, 0.10529860854148865, -0.006194316782057285, 0.026401065289974213, -0.011844183318316936, -0.003285805694758892, 0.00010551710147410631, 0.041340019553899765, 0.050089433789253235, -0.06445527821779251, 0.023057950660586357, -0.023115260526537895, 0.02764279581606388, -0.002461966359987855, -0.007875426672399044, 0.015149092301726341, -0.027318034321069717, -0.041340019553899765, 0.0014697771985083818, 0.0009432363440282643, 0.024968301877379417, 0.014891194179654121, 0.06873446702957153, 0.0242614708840847, -0.0040165153332054615, -0.09192614257335663, 0.022828707471489906, -0.02896093763411045, 0.007937513291835785, -0.00907417293637991, -0.02756638079881668, -0.04447299614548683, 0.013830949552357197, 0.0019975118339061737, 0.011309284716844559, 0.05933553725481033, 0.019189486280083656, 0.011567181907594204, 0.012923532165586948, 0.02382209151983261, -0.030661150813102722, 0.008486739359796047, -0.010296797379851341, 0.027833830565214157, 0.11530885100364685, -0.035666272044181824, -0.04959274083375931, 0.0332019180059433, 0.0012029248755425215, -0.023420916870236397, -0.013095463626086712, -0.02565602958202362, -0.011041834950447083, -0.014107950031757355, 0.01687796041369438, -0.017279135063290596, -0.08948089182376862, 0.044358376413583755, -0.015330575406551361, -0.007756029721349478, 0.029725078493356705 ]
24,493
aws_lambda_context
LambdaContext
null
class LambdaContext: function_name: str function_version: str invoked_function_arn: str memory_limit_in_mb: int aws_request_id: str log_group_name: str log_stream_name: str identity: LambdaCognitoIdentity client_context: LambdaClientContext @staticmethod def get_remaining_time_in_millis() -> int: return 0
()
[ 0.02659681811928749, -0.06229357421398163, -0.004979580640792847, -0.032357510179281235, 0.04354691877961159, -0.035852979868650436, -0.02966267801821232, 0.03554053604602814, 0.047140028327703476, -0.05389663577079773, -0.03856733813881874, -0.010086091235280037, 0.002965779509395361, 0.018473267555236816, 0.009651598520576954, 0.03126395493745804, -0.004838004242628813, -0.009636952541768551, 0.02501506917178631, -0.03409548103809357, 0.022222599014639854, 0.01975233666598797, -0.060106467455625534, -0.022749848663806915, -0.030892927199602127, 0.07592395693063736, 0.009612543508410454, 0.01043759100139141, 0.05307646840810776, -0.010769563727080822, -0.01693057455122471, 0.012253673747181892, -0.05288119241595268, 0.025425152853131294, -0.0321817584335804, -0.01660836488008499, -0.03313862159848213, -0.018541613593697548, -0.033275313675403595, -0.04581214115023613, -0.07455701380968094, 0.03034614957869053, -0.07799389958381653, 0.027514623478055, 0.017711684107780457, 0.009016945958137512, -0.0137573117390275, 0.0023701826576143503, 0.06014551967382431, -0.024761207401752472, 0.05584941431879997, 0.029369760304689407, 6.912905519129708e-7, 0.04510914161801338, 0.030931983143091202, 0.05663052201271057, -0.02058226615190506, -0.024214431643486023, -0.00661503104493022, -0.008382294327020645, -0.020836127921938896, 0.028530066832900047, 0.06811285018920898, 0.0030560954473912716, -0.011394452303647995, -0.004130122717469931, -0.038157254457473755, 0.03643881157040596, 0.0029047552961856127, 0.03425170108675957, 0.05088936164975166, -0.04612458497285843, 0.030150871723890305, -0.00042716989992186427, -0.025581374764442444, -0.06912829726934433, -0.052412524819374084, 0.0009641834767535329, 0.00872403010725975, -0.02554231882095337, -0.01654001884162426, -0.06198113039135933, -0.005580059252679348, -0.01413810346275568, 0.06569140404462814, -0.007859925739467144, -0.02263268083333969, -0.0693235695362091, -0.07639262080192566, 0.03577486798167229, -0.033880677074193954, 0.0466323085129261, -0.05288119241595268, 0.02644059620797634, 0.01623733714222908, -0.045382529497146606, -0.011980284936726093, -0.040891144424676895, -0.005570295266807079, 0.00816260650753975, 0.02058226615190506, -0.015563630498945713, 0.02011360041797161, 0.022144487127661705, 0.05413096770644188, -0.03620447963476181, -0.0017892316682264209, -0.03725897893309593, 0.12185326218605042, 0.016598600894212723, 0.00037651974707841873, 0.0012741867685690522, 0.00438642455264926, 0.023765292018651962, 0.010476646944880486, 0.030014177784323692, 0.016676712781190872, 0.022906070575118065, -0.039133645594120026, -0.00065295968670398, 0.06432446092367172, -0.023726236075162888, 0.0323379822075367, -0.026870207861065865, -0.010349716059863567, 0.002076045610010624, -0.018463503569364548, -0.047452472150325775, -0.0005565413739532232, 0.01535858865827322, 0.0058729760348796844, 0.008323710411787033, 0.028549594804644585, 0.05108463764190674, 0.0058778575621545315, 0.046905696392059326, 0.06307468563318253, 0.0946706160902977, 0.0036785430274903774, 0.03977806121110916, 0.016823170706629753, 0.04956147074699402, 0.0024385298602283, -0.07998573035001755, 0.029897009953856468, 0.011814299039542675, -0.010574285872280598, 0.015573393553495407, -0.027573207393288612, -0.029525984078645706, 0.07404929399490356, -0.09474872052669525, 0.014216214418411255, 0.0806887298822403, -0.013991644605994225, -0.0056679341942071915, 0.004020278807729483, -0.022671736776828766, 0.011521382257342339, -0.057060133665800095, 0.006468572653830051, 0.011365160346031189, -0.037844810634851456, -0.052021969109773636, 0.013474158942699432, -0.02310134842991829, 0.050108250230550766, 0.021539127454161644, -0.06084852293133736, -0.015046143904328346, -0.016569310799241066, -0.017057504504919052, 0.0038811436388641596, 0.03911411762237549, 0.026772568002343178, 0.08373506367206573, -0.00008665446512168273, -0.013093367218971252, 0.024565931409597397, -0.033353425562381744, 0.01851232349872589, -0.007049523759633303, -0.03727850690484047, 0.019156739115715027, 0.02599145844578743, 0.019244614988565445, 0.002011359902098775, 0.05870046839118004, 0.004989344626665115, 0.006717551965266466, -0.027338873594999313, -0.011443271301686764, 0.02811998501420021, -0.006810308434069157, -0.026792095974087715, 0.04175036400556564, -0.01387447863817215, 0.020699432119727135, 0.001336431480012834, 0.030385205522179604, -0.027631789445877075, 0.048897527158260345, 0.02202732115983963, -0.04526536166667938, 0.013034784235060215, 0.008338356390595436, -0.0032782237976789474, 0.021363377571105957, -0.0934208333492279, -0.007977092638611794, -0.06920640170574188, -0.007801342755556107, 0.029701733961701393, 0.047452472150325775, -0.0030316857155412436, 0.032435622066259384, 0.010232550092041492, 0.03727850690484047, 0.0198206827044487, 0.009671126492321491, 0.058427076786756516, -0.04471858590841293, -0.032201286405324936, -0.05252969264984131, 0.09287405759096146, -0.008260245434939861, 0.03024851158261299, -0.04292203113436699, -0.03354870155453682, -0.06576951593160629, -0.005340844392776489, 0.012946909293532372, 0.02239834889769554, 0.036028727889060974, -0.00830906443297863, -0.046319860965013504, 0.008060085587203503, -0.000114725626190193, -0.03770811855792999, -0.07647073268890381, 0.02522987499833107, 0.0043376050889492035, 0.05030352622270584, 0.016569310799241066, -0.02546420693397522, -0.022437404841184616, 0.035872507840394974, 0.07518190145492554, 0.03179120272397995, 0.010007980279624462, 0.0040031922981143, 0.0026338074821978807, -0.058661412447690964, -0.032826174050569534, -0.03805961832404137, -0.03749331086874008, 0.015553866513073444, -0.011726424098014832, -0.011726424098014832, 0.012243909761309624, 0.04014908894896507, -0.05998929962515831, -0.04948336258530617, 0.044484253972768784, 0.0175261702388525, 0.016823170706629753, 0.02194920927286148, -0.0561228021979332, -0.034173592925071716, -0.014059992507100105, 0.14481791853904724, 0.0077329957857728004, 0.004989344626665115, -0.0137573117390275, -0.048741307109594345, -0.11357349157333374, -0.07350251078605652, 0.010027508251369, -0.06092663109302521, -0.024976013228297234, -0.01349368691444397, -0.03362681344151497, 0.005448246840387583, 0.0030463316943496466, -0.028295734897255898, 0.01890287734568119, 0.0029291650280356407, 0.03071717731654644, 0.038293950259685516, 0.022242126986384392, -0.04069586470723152, 0.02042604424059391, -0.004999108146876097, -0.007601183373481035, 0.049366194754838943, -0.0007823311607353389, -0.05307646840810776, -0.020699432119727135, 0.021597709506750107, 0.06014551967382431, -0.018170587718486786, 0.03966089338064194, -0.032884757965803146, -0.01706726849079132, -0.038372062146663666, 0.07018279284238815, 0.05319363623857498, -0.022164015099406242, 0.009480730630457401, 0.02698737382888794, 0.0038201194256544113, 0.028627706691622734, -0.009695536457002163, -0.025776652619242668, 0.019713280722498894, 0.04221903160214424, 0.0003231235023122281, -0.01487039402127266, 0.01273210346698761, 0.041047364473342896, -0.04667136073112488, 0.03778623044490814, 0.04108642041683197, 0.0036321645602583885, 0.03751283884048462, -0.029252594336867332, -0.004276581108570099, -0.0003475332341622561, 0.009392855688929558, -0.03993428125977516, -0.04077397659420967, -0.021382903680205345, 0.03620447963476181, -0.05428719148039818, -0.025425152853131294, 0.02325757034122944, -0.0049478476867079735, 0.05221724882721901, 0.03821583837270737, -0.002873022574931383, 0.04018814489245415, -0.021675821393728256, 0.005946204997599125, 0.07533812522888184, -0.052412524819374084, -0.040891144424676895, 0.04624175280332565, -0.04706191644072533, 0.08170417696237564, -0.0481945276260376, 0.005023518111556768, -0.0003670610021799803, 0.01660836488008499, 0.06639440357685089, -0.010574285872280598, 0.004474299494177103, 0.0056825801730155945, -0.03095151111483574, -0.014587242156267166, 0.018473267555236816, -0.06557424366474152, 0.009661362506449223, 0.0037761819548904896, 0.028862038627266884, 0.012976201251149178, 0.08506295084953308, -0.0028315261006355286, -0.03368539735674858, 0.010154439136385918, 0.009495376609265804, -0.0388602539896965, -0.026694457978010178, -0.009558841586112976, 0.043937474489212036, 0.01360108982771635, -0.020172182470560074, -0.07639262080192566, 0.009056001901626587, -0.053545136004686356, 0.09841994196176529, -0.004945407155901194, 0.006815190427005291, -0.00827000942081213, -0.03247467428445816, -0.00034814345417544246, 0.037005119025707245, 0.013191006146371365, -0.06198113039135933, 0.02021123841404915, 0.039817117154598236, -0.07158879190683365, -0.02491743117570877, -0.05463869124650955, -0.011326104402542114, 0.002044313121587038, -0.02126573771238327, -0.052724968641996384, 0.025112707167863846, 0.03393925726413727, -0.0027997936122119427, 0.009881050325930119, 0.008060085587203503, 0.018951697275042534, -0.029994649812579155, -0.0028925505466759205, 0.04768680781126022, 0.03425170108675957, 0.03743473067879677, 0.00816260650753975, 0.019566822797060013, -0.03653645142912865, -0.050108250230550766, -0.03477895259857178, 0.014147867448627949, -0.042961087077856064, -0.026928789913654327, -0.030580483376979828, -0.012868798337876797, 0.03856733813881874, 0.006034079939126968, 0.035716284066438675, 0.0025971930008381605, -0.0006456368137151003, -0.050342582166194916, -0.014987560920417309, -0.023901985958218575, 0.021773459389805794, -0.016803642734885216, 0.02021123841404915, -0.03298239782452583, -0.04589025303721428, 0.05139708146452904, -0.007928273640573025, -0.014518894255161285, 0.0058925035409629345, 0.022437404841184616, 0.0008598319836892188, 0.007049523759633303, -0.017867906019091606, 0.0634261891245842, 0.03477895259857178, 0.009431911632418633, 0.017409004271030426, 0.005111393053084612, 0.029018260538578033, 0.0008348120027221739, -0.04581214115023613, 0.01714537851512432, 0.049288082867860794, -0.005355489905923605, 0.040110033005476, -0.011150354519486427, 0.007879453711211681, -0.0027045956812798977, -0.042648643255233765, -0.028627706691622734, -0.06533990800380707, -0.006312350742518902, -0.04667136073112488, -0.014948504976928234, -0.03634117543697357, -0.020015960559248924, 0.018092475831508636, -0.035325728356838226, -0.021675821393728256, -0.004808712750673294, 0.014147867448627949, -0.02735840156674385, -0.049131862819194794, 0.029057316482067108, 0.07170595973730087, -0.003781063947826624, -0.019000517204403877, -0.009158522821962833, 0.077408067882061, -0.01280045136809349, -0.024683097377419472, -0.021070459857583046, 0.035716284066438675, 0.015758907422423363, 0.018102239817380905, 0.011560438200831413, 0.04452330991625786, 0.02478073537349701, 0.026635874062776566, 0.001136271981522441, 0.015163310803472996, -0.01851232349872589, 0.04811641573905945, -0.03843064606189728, -0.08685950934886932, 0.08764062076807022, 0.046905696392059326, 0.006624795030802488, -0.03483753651380539, -0.01044735498726368, 0.023355208337306976, 0.014186922460794449, 0.004745247308164835, 0.06494934856891632, 0.0009470966761000454, 0.009026709944009781, -0.025288457050919533, -0.024487819522619247, 0.04940525069832802, 0.009749237447977066, -0.09568605571985245, -0.08607839792966843, -0.05264686048030853, -0.0033831854816526175, 0.004122799728065729, 0.02454640343785286, 0.06284034997224808, 0.02843242883682251, -0.045929308980703354, -0.027163123711943626, -0.033880677074193954, 0.04350786283612251, 0.04362503066658974, -0.05190480500459671, -0.02255457080900669, 0.055693190544843674, 0.06084852293133736, -0.04956147074699402, -0.009480730630457401, -0.04307825490832329, 0.04917091503739357, -0.015524574555456638, 0.02606956847012043, 0.029936065897345543, -0.040110033005476, -0.044171810150146484, -0.018180351704359055, 0.0030414497014135122, -0.009480730630457401, 0.02683115191757679, -0.06838624179363251, -0.07494756579399109, -0.05190480500459671, -0.03393925726413727, 0.035872507840394974, -0.02638201229274273, -0.0007805004133842885, 0.014186922460794449, -0.06971412897109985, 0.02394104190170765, 0.0026289254892617464, 0.04565591737627983, -0.03778623044490814, -0.047374360263347626, 0.045616861432790756, -0.032142702490091324, 0.044406142085790634, -0.022144487127661705, -0.011726424098014832, -0.017018448561429977, 0.06432446092367172, -0.030658593401312828, 0.035560064017772675, 0.021832043305039406, -0.016901282593607903, 0.050264470279216766, -0.004464535508304834, -0.04186753183603287, 0.009739473462104797, 0.012097451835870743, 0.015319532714784145, 0.0813136175274849, -0.04221903160214424, 0.008543398231267929, -0.008992536924779415, 0.012214617803692818, 0.03991475701332092, -0.034271229058504105, -0.06479313224554062, 0.00917805079370737, -0.01151161827147007, 0.034193120896816254, 0.03362681344151497, -0.027729429304599762, 0.02271079272031784, -0.036028727889060974, -0.03401736915111542, -0.07061240077018738, -0.047764915972948074, -0.018268225714564323, -0.031224898993968964, 0.007947800680994987, 0.030736705288290977, 0.09138994663953781, -0.019303197041153908, -0.04018814489245415, -0.032806649804115295, -0.006175656337291002, 0.023062292486429214, 0.021168099716305733, -0.028608178719878197, 0.026108624413609505, -0.02134384959936142, 0.04526536166667938, -0.0367707833647728, 0.0696360170841217, -0.0050137541256845, 0.0789702907204628, 0.0027290054131299257, 0.020601794123649597, -0.0478820838034153, -0.017574990168213844, -0.04093020036816597, 0.022378820925951004, -0.06412918865680695, -0.004632962867617607, 0.041047364473342896, -0.015612449496984482, 0.029936065897345543, -0.0023726236540824175, -0.06065324321389198, 0.05721635743975639, -0.022671736776828766, -0.03542336821556091, -0.031127260997891426, -0.006253767292946577, -0.03501328453421593, 0.002992630237713456, -0.03557959198951721, -0.003851851914077997, 0.02263268083333969, -0.06936262547969818, -0.0704171285033226, -0.032591842114925385, -0.022984180599451065, -0.061863966286182404, 0.03056095540523529, -0.06674590706825256, 0.06744890660047531, 0.021363377571105957, 0.03501328453421593, 0.030228983610868454, -0.01576867140829563, -0.005233441479504108, -0.03778623044490814, -0.0024946723133325577, -0.057138245552778244, -0.004886823706328869, 0.015348824672400951, -0.008924189023673534, -0.012400131672620773, -0.03102962113916874, 0.015348824672400951, -0.008128432556986809, -0.025659484788775444, -0.0140307005494833, 0.01921532303094864, 0.011179646477103233, -0.02698737382888794, -0.020836127921938896, -0.059794019907712936, 0.021753931418061256, 0.08209472894668579, -0.058505188673734665, -0.0006114632124081254, -0.02864723466336727, 0.003287987783551216, 0.025171291083097458, 0.0009849317139014602, -0.019723044708371162, -0.012331784702837467, 0.03208412230014801, 0.04132075607776642, 0.0474134162068367, 0.07709562033414841, 0.015485518611967564, 0.03413453698158264, 0.018463503569364548, -0.030307093635201454, 0.020152654498815536, -0.00903647392988205, 0.018024127930402756, 0.013347228989005089, 0.00021938225836493075, -0.010876965709030628, 0.05268591642379761, -0.00176726293284446, 0.005135802552103996, 0.01936178095638752, -0.013083604164421558, -0.007762287277728319, -0.019986668601632118, 0.012322020716965199, 0.0014047786826267838, -0.032357510179281235, -0.027573207393288612, -0.010271605104207993, 0.01790696196258068, -0.06123907491564751, -0.04217997565865517, -0.04237525537610054, -0.04499197378754616, 0.028862038627266884, -0.026206262409687042, -0.009881050325930119, 0.035481952130794525, 0.04460141807794571, -0.029994649812579155, 0.02423395775258541, -0.014509130269289017, 0.018053419888019562, -0.010047036223113537, 0.02202732115983963, 0.011052715592086315, 0.043781254440546036, -0.03048284351825714, 0.014265033416450024, 0.01151161827147007, 0.002303055953234434, 0.05729446932673454, -0.021929681301116943, -0.015319532714784145, 0.016745060682296753, 0.013776839710772038, -0.018033891916275024, 0.0030292447190731764, -0.000344787142239511, -0.0009397737449035048, -0.03247467428445816, 0.013542505912482738, -0.005789982620626688, 0.022203071042895317, 0.0277489572763443, -0.00409350823611021, 0.025932874530553818, -0.010252077132463455, -0.06838624179363251, -0.01040829997509718, 0.03300192579627037, -0.00038262218004092574, -0.009129230864346027, 0.015807727351784706, 0.022593626752495766, 0.016208047047257423, 0.008831432089209557, 0.06608196347951889, 0.016295921057462692, 0.026030512526631355, 0.0561228021979332, -0.008367648348212242, -0.04167225584387779, -0.0030487726908177137, 0.03360728546977043, -0.05838802084326744, 0.032904285937547684, 0.04300014302134514, 0.0031464113853871822, -0.038547810167074203, 0.028002817183732986, -0.02407773584127426, -0.04706191644072533, -0.04987391456961632, -0.03110773302614689, -0.006161010358482599, 0.007161808665841818, -0.017252782359719276, 0.03401736915111542, -0.022593626752495766, 0.029936065897345543, 0.024448763579130173, 0.016657184809446335, 0.07690034806728363 ]
24,494
aws_lambda_context
get_remaining_time_in_millis
null
@staticmethod def get_remaining_time_in_millis() -> int: return 0
() -> int
[ -0.008627930656075478, -0.013466063886880875, -0.02752866968512535, 0.04614429920911789, 0.05414498224854469, -0.017413770779967308, 0.010193854570388794, 0.04989900439977646, -0.003004642901942134, -0.06740927696228027, -0.006851463112980127, -0.01586100645363331, 0.006307557225227356, -0.014483694918453693, 0.01619436778128147, 0.020843887701630592, 0.016562819480895996, -0.0028818254359066486, -0.02693212777376175, -0.05818041414022446, 0.03537144511938095, 0.039792876690626144, 0.003697684733197093, -0.005338175687938929, -0.02533550001680851, 0.07049725949764252, 0.023931872099637985, 0.013141474686563015, 0.007706799544394016, 0.01593996025621891, -0.01879108138382435, 0.05961913242936134, -0.005509243346750736, 0.013957333751022816, -0.03572235256433487, 0.014983737841248512, -0.021615883335471153, 0.01650141179561615, -0.0826035588979721, -0.03131846711039543, 0.014536331407725811, -0.004395112860947847, -0.001178828882984817, 0.024616140872240067, -0.0026778606697916985, -0.04596884548664093, 0.029704295098781586, -0.03042365424335003, -0.014325786381959915, -0.019352532923221588, 0.06860236078500748, 0.022247517481446266, -0.0393717885017395, 0.0301955658942461, -0.051548268646001816, 0.052636079490184784, -0.009299040772020817, 0.03110792301595211, -0.04123159497976303, 0.021510612219572067, -0.01873844489455223, 0.020370163023471832, -0.006355806719511747, 0.022861603647470474, 0.007189211435616016, 0.027686579152941704, -0.014562648721039295, -0.015150418505072594, 0.036775074899196625, 0.04635484144091606, 0.05196935683488846, 0.03445908799767494, -0.015782050788402557, 0.018001539632678032, 0.029651658609509468, -0.018984079360961914, -0.03803833946585655, 0.0014628444332629442, -0.017597995698451996, 0.03989814966917038, -0.009956992231309414, -0.018896352499723434, 0.034739814698696136, 0.005553106311708689, 0.05537315830588341, -0.0031033356208354235, 0.015992596745491028, -0.03395027294754982, -0.060601674020290375, 0.0497235506772995, -0.05470643192529678, 0.06716363877058029, -0.009492039680480957, 0.016141731292009354, -0.013983651995658875, -0.022036973387002945, -0.03859979286789894, -0.04130177944898605, -0.03503808379173279, -0.005539947655051947, 0.032336097210645676, 0.08204210549592972, 0.041512321680784225, -0.011588710360229015, 0.09762238711118698, -0.010807941667735577, -0.0069304173812270164, -0.05449588969349861, 0.07523450255393982, -0.002767780562862754, -0.001684354618191719, -0.05442570894956589, -0.03459944948554039, 0.010834259912371635, -0.001033531385473907, 0.01641368493437767, -0.01753658801317215, 0.022844059392809868, 0.013931016437709332, 0.020703524351119995, 0.026037314906716347, 0.009632403030991554, 0.006719872821122408, -0.08562135696411133, 0.023159874603152275, -0.017913812771439552, -0.04863573983311653, 0.019282350316643715, 0.04789883270859718, 0.018194539472460747, -0.009009542874991894, 0.027949759736657143, 0.03054647147655487, 0.02977447584271431, 0.012913385406136513, 0.03502053767442703, 0.0651283785700798, 0.099447101354599, -0.0013224815484136343, 0.04035433009266853, -0.01835244707763195, -0.006987439934164286, 0.03824888542294502, -0.029142843559384346, 0.053583528846502304, 0.026774220168590546, -0.0009545772336423397, 0.013808198273181915, -0.09685038775205612, 0.011220257729291916, 0.024142416194081306, -0.0633387491106987, 0.0053601074032485485, 0.04098596051335335, 0.025054775178432465, -0.014624057337641716, -0.020650889724493027, -0.009044633246958256, -0.03279227763414383, -0.07867339253425598, -0.028967389836907387, -0.00018093652033712715, -0.004636361263692379, -0.049828823655843735, 0.02252824231982231, 0.04270540550351143, -0.024440687149763107, 0.03563462570309639, -0.03066929057240486, 0.0005016876384615898, 0.025353046134114265, 0.02817784808576107, -0.011781709268689156, -0.039231427013874054, 0.0014573615044355392, 0.010632487945258617, -0.010237718001008034, 0.009956992231309414, 0.026721583679318428, -0.00039531890070065856, -0.008759520947933197, -0.03909106180071831, -0.04579339176416397, -0.06144385039806366, 0.021089522168040276, 0.012316842563450336, -0.007934888824820518, 0.027072491124272346, -0.002342305611819029, -0.0006310846656560898, -0.042073775082826614, 0.008798997849225998, 0.030107839033007622, 0.017650632187724113, 0.022422971203923225, 0.012939702719449997, 0.020054345950484276, 0.018457718193531036, 0.05028500407934189, 0.003616537433117628, -0.036775074899196625, 0.007246233988553286, 0.023598508909344673, -0.043582674115896225, 0.03170446678996086, -0.025844315066933632, 0.008241932839155197, 0.002884018700569868, -0.08042792975902557, -0.04270540550351143, -0.08302464336156845, -0.012176480144262314, 0.012851976789534092, 0.011658892035484314, -0.008347204886376858, -0.060040224343538284, -0.0005244417698122561, -0.001625139033421874, 0.0047460198402404785, 0.03042365424335003, 0.014141560532152653, -0.07453268766403198, -0.03531881049275398, -0.0760766789317131, 0.030265746638178825, -0.008746362291276455, -0.031774647533893585, -0.01667686551809311, 0.0029739385936409235, -0.07404141873121262, -0.010851805098354816, 0.008566522039473057, -0.012036116793751717, 0.006693555042147636, -0.003557321848347783, -0.019247259944677353, -0.018299810588359833, 0.014308241195976734, 0.004331510979682207, -0.045512665063142776, -0.03437136113643646, 0.017396224662661552, 0.004085875581949949, 0.08155083656311035, 0.02326514758169651, -0.036389078944921494, 0.04674084112048149, 0.03273964300751686, -0.0007226495072245598, 0.037336528301239014, -0.008127887733280659, -0.03226591646671295, -0.0012413342483341694, -0.031651828438043594, 0.013299383223056793, 0.009527130983769894, 0.006031217519193888, 0.028335757553577423, -0.023159874603152275, 0.05256589874625206, 0.047547925263643265, -0.09516603499650955, -0.07347996532917023, -0.022458061575889587, -0.04354758560657501, 0.021317612379789352, 0.00014228190411813557, -0.01611541397869587, -0.051899176090955734, 0.002196459798142314, 0.11067613214254379, -0.05165354162454605, -0.01783485896885395, -0.07126925140619278, -0.03373972699046135, -0.04337213188409805, 0.004077102988958359, 0.029265660792589188, -0.022387878969311714, 0.007070780266076326, 0.01671195589005947, 0.0026581219863146544, -0.0023664303589612246, -0.023984506726264954, -0.05639078840613365, 0.022475605830550194, 0.016957590356469154, 0.0666021853685379, -0.03144128620624542, 0.019457804039120674, -0.046775929629802704, -0.008917429484426975, 0.026739129796624184, 0.0020637731067836285, 0.055688973516225815, 0.011571165174245834, -0.020370163023471832, -0.049056828022003174, 0.020194709300994873, 0.0441090352833271, -0.01956307701766491, 0.0057197874411940575, -0.10576342791318893, -0.006272466387599707, -0.03205537423491478, 0.03296773135662079, -0.02012452855706215, -0.009948219172656536, 0.019510440528392792, 0.011553619988262653, -0.06965508311986923, -0.03954724222421646, 0.07418178021907806, -0.004881996661424637, 0.04544248431921005, 0.0387752465903759, 0.006347034126520157, 0.024054689332842827, -0.0013849869137629867, 0.006171580404043198, -0.02740585245192051, 0.050741180777549744, 0.04102105274796486, 0.07256761193275452, 0.002153692999854684, -0.04109123349189758, 0.005189040210098028, 0.07677849382162094, 0.023387964814901352, -0.03782779723405838, -0.06740927696228027, -0.062321119010448456, 0.011764164082705975, -0.051513176411390305, -0.022896695882081985, 0.03445908799767494, 0.05807514116168022, -0.030774561688303947, 0.07256761193275452, 0.025282863527536392, 0.07298869639635086, -0.012974794022738934, -0.013869606889784336, 0.05067100003361702, 0.04274049773812294, -0.014167878776788712, 0.05046045780181885, -0.004754792433232069, 0.1397312432527542, -0.009553448297083378, -0.018422627821564674, -0.027002308517694473, -0.04277558997273445, 0.036739982664585114, 0.010939531959593296, 0.0387752465903759, 0.011685210280120373, -0.03333618491888046, -0.0059391045942902565, -0.013194111175835133, -0.07712940126657486, 0.05105699971318245, 0.040003422647714615, 0.05256589874625206, -0.013439745642244816, 0.01929989643394947, -0.006627759896218777, -0.001996881328523159, 0.029370933771133423, -0.012694068253040314, -0.06509328633546829, -0.021703610196709633, 0.035090722143650055, 0.018019085749983788, 0.02886211685836315, 0.005873309448361397, -0.027247944846749306, 0.04035433009266853, -0.04126668721437454, 0.0010159859666600823, 0.020563162863254547, -0.008391068316996098, -0.07628722488880157, -0.024703867733478546, 0.03530126437544823, 0.02654612995684147, -0.017264634370803833, -0.04010869190096855, -0.03395027294754982, -0.010071036405861378, 0.0021975564304739237, -0.012176480144262314, -0.038283977657556534, -0.02308969385921955, -0.028704209253191948, 0.012202798388898373, -0.0002242516347905621, -0.037722524255514145, 0.03426608815789223, -0.003541969694197178, 0.06547928601503372, -0.005868922919034958, 0.003026574617251754, 0.013808198273181915, -0.009123587049543858, 0.036564528942108154, 0.04158250242471695, -0.010378080420196056, -0.02616013213992119, 0.02779185026884079, -0.06256675720214844, -0.03549426421523094, -0.022422971203923225, 0.014185423962771893, -0.032072920352220535, -0.02654612995684147, -0.0461793877184391, -0.03607326000928879, 0.04014378413558006, -0.014395968057215214, -0.01947535015642643, -0.04238959029316902, 0.05028500407934189, 0.02740585245192051, -0.0005186847411096096, 0.007004985120147467, 0.009763993322849274, 0.031651828438043594, -0.03407308831810951, 0.010650034062564373, -0.03663471341133118, 0.018247174099087715, -0.04467048868536949, -0.01723831705749035, 0.019019169732928276, 0.023686235770583153, 0.006877781357616186, -0.04477575793862343, -0.06414584070444107, 0.028581392019987106, 0.055688973516225815, 0.034967903047800064, 0.04877610132098198, -0.0032919482327997684, 0.029739385470747948, -0.07586614042520523, -0.012694068253040314, -0.009053406305611134, 0.011360621079802513, -0.006022444926202297, -0.04105614125728607, 0.04330194741487503, 0.06200530380010605, 0.012974794022738934, -0.038669973611831665, -0.05825059488415718, -0.04779355973005295, 0.027633942663669586, 0.0032963345292955637, -0.08000684529542923, -0.026563676074147224, 0.07305888086557388, 0.0022326470352709293, -0.0051056998781859875, 0.008417386561632156, 0.03516090288758278, 0.030581563711166382, -0.05554861202836037, -0.0831650048494339, 0.05582933500409126, 0.025475863367319107, -0.018685808405280113, -0.003932354040443897, -0.04656538739800453, 0.054776616394519806, -0.04881119355559349, -0.003223960055038333, 0.056601330637931824, 0.029248114675283432, -0.0075050280429422855, 0.016729500144720078, 0.009228859096765518, 0.027160217985510826, -0.0008443704573437572, -0.0015154804568737745, -0.002294055884703994, -0.09123587608337402, -0.0025046002119779587, 0.044740669429302216, -0.10667578876018524, -0.10014891624450684, 0.02554604411125183, 0.042810678482055664, -0.0019782392773777246, -0.02063334360718727, -0.048881374299526215, 0.013615199364721775, 0.022300152108073235, 0.004485032521188259, 0.03958233445882797, -0.02205451764166355, 0.06397038698196411, 0.032125554978847504, 0.04828483238816261, 0.004414851311594248, -0.050214819610118866, -0.03066929057240486, -0.009553448297083378, 0.02998501993715763, -0.010974623262882233, 0.0070444620214402676, 0.016983909532427788, 0.02942356839776039, 0.031037742272019386, -0.015299553982913494, -0.018598081544041634, -0.015387280844151974, -0.019159533083438873, 0.03193255513906479, -0.02998501993715763, -0.03821379318833351, 0.04238959029316902, 0.04628466069698334, 0.009290268644690514, -0.016650546342134476, 0.023037057369947433, -0.03333618491888046, -0.027335671707987785, -0.003998149186372757, 0.021686065942049026, 0.004697770345956087, -0.048670828342437744, 0.024247687309980392, -0.026318039745092392, 0.033757273107767105, 0.027721669524908066, -0.06902344524860382, -0.08281409740447998, -0.11902772635221481, 0.027247944846749306, 0.028809482231736183, -0.09439403563737869, 0.04631974920630455, -0.008939361199736595, -0.02149306610226631, 0.021686065942049026, -0.04165268689393997, 0.0938325896859169, 0.0577242337167263, 0.004522316623479128, 0.018124356865882874, -0.03663471341133118, 0.018633171916007996, -0.029195480048656464, 0.018633171916007996, 0.029458660632371902, -0.002223874442279339, -0.03187992051243782, 0.03465208783745766, 0.015194281935691833, 0.004127546213567257, -0.058741867542266846, 0.03581007942557335, -0.00021616432059090585, -0.0577242337167263, -0.016255775466561317, 0.017176907509565353, 0.03465208783745766, -0.025142502039670944, -0.017352361232042313, -0.025475863367319107, 0.023317784070968628, 0.03286245837807655, -0.025265319272875786, -0.040003422647714615, -0.011307984590530396, -0.001437622937373817, -0.029528841376304626, 0.022756332531571388, -0.042249228805303574, 0.012378252111375332, -0.002261158311739564, 0.010053491219878197, -0.05347825959324837, -0.014799511060118675, -0.04070523753762245, 0.003346777521073818, -0.057583872228860855, 0.029195480048656464, 0.042635224759578705, -0.011685210280120373, 0.038880519568920135, 0.015887323766946793, -0.0022677378728985786, 0.03054647147655487, 0.04891646280884743, -0.0009090689709410071, -0.007259392645210028, 0.013580108992755413, 0.036775074899196625, 0.03356427326798439, 0.023984506726264954, -0.003844626946374774, 0.08190174400806427, 0.02308969385921955, 0.01994907483458519, -0.030757015570998192, -0.0017786609241738915, -0.0025879405438899994, -0.003515651449561119, 0.01580836996436119, -0.05365371331572533, 0.02891475334763527, 0.03524862974882126, 0.03881033509969711, -0.002449770923703909, -0.06790054589509964, -0.03202028200030327, -0.016229458153247833, 0.04431958124041557, -0.06533892452716827, 0.06319838762283325, 0.001894898945465684, -0.014395968057215214, -0.014939874410629272, 0.02740585245192051, -0.03538899123668671, -0.06526874005794525, -0.025703953579068184, -0.062321119010448456, -0.02193170040845871, -0.012044889852404594, 0.05319753289222717, -0.049653369933366776, -0.061198215931653976, 0.012176480144262314, -0.0073032560758292675, 0.008171751163899899, -0.04010869190096855, -0.02451086789369583, 0.009667493402957916, 0.018071720376610756, -0.06526874005794525, -0.01706286333501339, -0.03542408347129822, -0.0011481244582682848, -0.042459771037101746, 0.011158849112689495, -0.004960950464010239, 0.003741548163816333, -0.06667236983776093, 0.007062007673084736, 0.05375898256897926, 0.02394941635429859, -0.05639078840613365, -0.0414421409368515, -0.008044547401368618, -0.007772594690322876, 0.030704380944371223, -0.035529352724552155, 0.011334302835166454, -0.022686149924993515, -0.02373887225985527, -0.007088325452059507, -0.00021438236581161618, -0.02408977970480919, -0.015132873319089413, 0.024265233427286148, 0.05010955035686493, -0.018036630004644394, 0.05818041414022446, 0.015431144274771214, 0.09327113628387451, -0.007062007673084736, -0.011562392115592957, 0.02835330180823803, -0.04923228174448013, 0.02365114539861679, 0.047197017818689346, 0.05088154599070549, 0.034581903368234634, 0.01715059019625187, -0.07474323362112045, -0.032844915986061096, 0.0497235506772995, 0.02696721814572811, 0.024703867733478546, -0.02258087880909443, -0.022914240136742592, -0.031599193811416626, -0.028756845742464066, -0.03193255513906479, -0.05130263417959213, 0.0677952691912651, 0.0367048941552639, -0.026212768629193306, -0.019106896594166756, 0.010535988956689835, 0.038845427334308624, -0.013676607981324196, 0.014062605798244476, -0.0013312542578205466, 0.01903671585023403, -0.011334302835166454, -0.017738359048962593, 0.0075401184149086475, 0.0034805608447641134, 0.0021010569762438536, -0.03412572667002678, 0.0037744457367807627, 0.013869606889784336, 0.028634028509259224, -0.0007264875457622111, 0.01727340742945671, -0.027721669524908066, -0.010027172975242138, 0.011027258820831776, 0.0021833006758242846, -0.0012336581712588668, 0.027212854474782944, -0.025388136506080627, 0.046986475586891174, 0.040915779769420624, 0.0022918626200407743, -0.06993580609560013, 0.015290781855583191, -0.049267370253801346, -0.026686493307352066, 0.038494519889354706, 0.007583981845527887, -0.0002209618833148852, -0.027669033035635948, 0.028844572603702545, -0.018931442871689796, 0.056250423192977905, -0.0029059501830488443, 0.020229799672961235, 0.028458574786782265, 0.022808969020843506, 0.022510698065161705, -0.006662850733846426, 0.02468632161617279, -0.003333618398755789, 0.015431144274771214, -0.011588710360229015, -0.014966192655265331, -0.04295104369521141, 0.021791337057948112, 0.033844999969005585, -0.05007445812225342, 0.03516090288758278, -0.05035518482327461, 0.01787872239947319, -0.014150332659482956, 0.029142843559384346, 0.0029476205818355083, -0.042073775082826614, 0.0037042642943561077, -0.009667493402957916, 0.045512665063142776, 0.044916123151779175, -0.010079809464514256, 0.0645318329334259, 0.03954724222421646, -0.020703524351119995, 0.02942356839776039, -0.029020026326179504, 0.04747774451971054 ]
24,495
knockknock.chime_sender
chime_sender
Chime sender wrapper: execute func, send a chime notification with the end status (successfully finished or crashed) at the end. Also send a Chime notification before executing func. `webhook_url`: str The webhook URL to access your chime room. Visit https://docs.aws.amazon.com/chime/latest/dg/webhooks.html for more details. `user_mentions`: List[str] (default=[]) Optional users alias or full email address to notify.
def chime_sender(webhook_url: str, user_mentions: List[str] = []): """ Chime sender wrapper: execute func, send a chime notification with the end status (successfully finished or crashed) at the end. Also send a Chime notification before executing func. `webhook_url`: str The webhook URL to access your chime room. Visit https://docs.aws.amazon.com/chime/latest/dg/webhooks.html for more details. `user_mentions`: List[str] (default=[]) Optional users alias or full email address to notify. """ dump = {} def decorator_sender(func): @functools.wraps(func) def wrapper_sender(*args, **kwargs): start_time = datetime.datetime.now() host_name = socket.gethostname() func_name = func.__name__ # Handling distributed training edge case. # In PyTorch, the launch of `torch.distributed.launch` sets up a RANK environment variable for each process. # This can be used to detect the master process. # See https://github.com/pytorch/pytorch/blob/master/torch/distributed/launch.py#L211 # Except for errors, only the master process will send notifications. if 'RANK' in os.environ: master_process = (int(os.environ['RANK']) == 0) host_name += ' - RANK: %s' % os.environ['RANK'] else: master_process = True if master_process: contents = [ 'Your training has started 🎬', 'Machine name: %s' % host_name, 'Main call: %s' % func_name, 'Starting date: %s' % start_time.strftime(DATE_FORMAT), ' '.join(user_mentions) ] dump['Content'] = '\n'.join(contents) requests.post(url=webhook_url, json=dump) try: value = func(*args, **kwargs) if master_process: end_time = datetime.datetime.now() elapsed_time = end_time - start_time contents = [ "Your training is complete 🎉", 'Machine name: %s' % host_name, 'Main call: %s' % func_name, 'Starting date: %s' % start_time.strftime(DATE_FORMAT), 'End date: %s' % end_time.strftime(DATE_FORMAT), 'Training duration: %s' % str(elapsed_time) ] try: str_value = str(value) contents.append('Main call returned value: %s' % str_value) except: contents.append('Main call returned value: %s' % "ERROR - Couldn't str the returned value.") contents.append(' '.join(user_mentions)) dump['Content'] = '\n'.join(contents) requests.post(url=webhook_url, json=dump) return value except Exception as ex: end_time = datetime.datetime.now() elapsed_time = end_time - start_time contents = [ "Your training has crashed ☠️", 'Machine name: %s' % host_name, 'Main call: %s' % func_name, 'Starting date: %s' % start_time.strftime(DATE_FORMAT), 'Crash date: %s' % end_time.strftime(DATE_FORMAT), 'Crashed training duration: %s\n\n' % str(elapsed_time), "Here's the error:", '%s\n\n' % ex, "Traceback:", '%s' % traceback.format_exc(), ' '.join(user_mentions) ] dump['Content'] = '\n'.join(contents) requests.post(url=webhook_url, json=dump) raise ex return wrapper_sender return decorator_sender
(webhook_url: str, user_mentions: List[str] = [])
[ 0.013963676057755947, -0.025967538356781006, -0.03200376406311989, 0.04025458171963692, -0.0018985699862241745, -0.004446328151971102, -0.06118539720773697, 0.054561227560043335, 0.026202715933322906, 0.0015323297120630741, 0.04444858431816101, 0.03898070380091667, 0.008084233850240707, -0.004360586404800415, -0.0012689796276390553, 0.006447788793593645, 0.0528365895152092, -0.031063053756952286, 0.026829855516552925, -0.061107005923986435, 0.03999980539083481, -0.03588419780135155, 0.003005865029990673, -0.00410826038569212, -0.002643299289047718, 0.07894131541252136, 0.011798080988228321, 0.008157726377248764, -0.002533059800043702, 0.013346334919333458, -0.001965938601642847, -0.081841841340065, -0.02157755382359028, 0.01894160360097885, 0.005438484251499176, -0.014022470451891422, -0.08991627395153046, -0.02473285421729088, -0.1052028238773346, -0.01767752319574356, 0.005913739092648029, -0.01072018314152956, 0.01884361356496811, -0.0007239063852466643, -0.042214397341012955, 0.021224787458777428, -0.06247887387871742, 0.1080249547958374, -0.002398322569206357, -0.053463730961084366, -0.016325252130627632, -0.04460537061095238, 0.0591471903026104, 0.03184698149561882, -0.032768093049526215, 0.023537367582321167, 0.038333963602781296, 0.0046129124239087105, 0.00047096784692257643, -0.008412502706050873, -0.01440463401377201, 0.03947065770626068, 0.029612792655825615, 0.03412036597728729, 0.009534495882689953, 0.016991589218378067, -0.008000941015779972, 0.002905424451455474, -0.000886815891135484, 0.008877958171069622, 0.07439454644918442, -0.03112184815108776, -0.01606067642569542, -0.02469365857541561, 0.004446328151971102, -0.03074948489665985, -0.055188365280628204, 0.04174404218792915, 0.0008114855736494064, 0.01578630320727825, 0.0313374288380146, 0.027319809421896935, -0.0367073193192482, -0.019676534458994865, 0.08380165696144104, 0.0005928438040427864, 0.01447322778403759, 0.00033776171039789915, -0.07984282821416855, 0.023165004327893257, -0.029142437502741814, -0.06369396299123764, 0.007711868733167648, -0.028907258063554764, 0.008471297100186348, -0.003608507802709937, 0.016756411641836166, -0.025105219334363937, 0.036511339247226715, -0.00034388614585623145, 0.009304217994213104, 0.10143998265266418, 0.001608272548764944, -0.006942641455680132, 0.024556471034884453, -0.04617322236299515, -0.06247887387871742, -0.0343751385807991, 0.009627587161958218, -0.04201841726899147, -0.09673642367124557, -0.06534020602703094, -0.06047986447811127, -0.04096011444926262, 0.04174404218792915, -0.012248838320374489, -0.013503119349479675, 0.056129079312086105, -0.0029152235947549343, 0.00046453721006400883, 0.07133723795413971, 0.010622193105518818, 0.0031234538182616234, -0.06894626468420029, -0.020382067188620567, 0.04785866290330887, 0.006168514955788851, 0.053698908537626266, 0.05910799652338028, -0.02786855772137642, -0.0360017865896225, 0.015894092619419098, 0.04272394999861717, 0.060793437063694, 0.018030289560556412, 0.03941186144948006, 0.010769179090857506, 0.037706825882196426, 0.024517275393009186, 0.04750589653849602, 0.02775096893310547, -0.0051788087002933025, 0.031317830085754395, -0.046525988727808, 0.04660438001155853, 0.008133228868246078, -0.011660894379019737, 0.0208132266998291, -0.010827973484992981, -0.04930892586708069, 0.06659448891878128, 0.013150352984666824, 0.005110215395689011, 0.0009664333774708211, -0.013081759214401245, 0.027221819385886192, -0.030729886144399643, 0.01961774006485939, 0.0178833045065403, 0.018559440970420837, -0.024438882246613503, -0.01727576181292534, 0.028417306020855904, -0.00978437252342701, 0.007182718720287085, 0.02481124736368656, 0.013885282911360264, 0.03709928318858147, -0.0018250769935548306, 0.09054341167211533, -0.03778521716594696, 0.05616827309131622, -0.012817184440791607, -0.00011521564010763541, 0.005467881448566914, 0.048877764493227005, -0.013179750181734562, -0.009764773771166801, -0.001088309334591031, -0.01156290341168642, -0.06420351564884186, -0.0029593193903565407, -0.043429482728242874, -0.012013660743832588, -0.024282097816467285, 0.01697199046611786, 0.05397328361868858, -0.008917154744267464, -0.009823568165302277, 0.021753937005996704, -0.008784866891801357, 0.024321293458342552, 0.06302762031555176, 0.04315510764718056, -0.00393432704731822, 0.039431460201740265, 0.0012983769411221147, 0.006678066682070494, -0.0065408796072006226, -0.05252302065491676, 0.017030784860253334, 0.044135015457868576, 0.031298231333494186, -0.0343751385807991, -0.009921559132635593, -0.037589237093925476, -0.03368920460343361, 0.02545798569917679, -0.09861785173416138, -0.01725616306066513, -0.02412531152367592, -0.04374305158853531, -0.028672080487012863, 0.07067089527845383, 0.030043950304389, -0.06388994306325912, 0.06200851872563362, 0.03649174049496651, 0.02289062924683094, -0.003096506465226412, 0.08246897906064987, -0.039745032787323, -0.05812808871269226, -0.012003861367702484, 0.038588739931583405, 0.059303976595401764, 0.03472790867090225, -0.0064085922203958035, 0.03176858648657799, -0.017755916342139244, 0.00298381713218987, 0.006364496424794197, 0.02653588354587555, 0.05338533967733383, -0.025947939604520798, -0.015051372349262238, -0.008275315165519714, 0.001887546037323773, 0.013914680108428001, -0.04362546280026436, 0.04797625169157982, -0.016403645277023315, 0.05546274036169052, 0.014874989166855812, 0.03849074989557266, -0.05416926369071007, 0.05487479642033577, 0.022675050422549248, -0.10018569976091385, -0.002264810260385275, 0.009421806782484055, 0.029142437502741814, 0.00986766442656517, -0.02943640947341919, -0.04007820039987564, -0.025477584451436996, 0.03778521716594696, -0.016874000430107117, 0.059186387807130814, -0.02653588354587555, 0.03027912974357605, -0.02095041424036026, -0.054208461195230484, -0.006560477893799543, -0.057853713631629944, -0.022577058523893356, -0.012748590670526028, 0.015658915042877197, -0.007858854718506336, 0.022753441706299782, -0.017589332535862923, 0.0268886499106884, 0.004630060866475105, -0.05158231034874916, -0.05957835167646408, -0.0409209206700325, -0.0037260965909808874, -0.03174898773431778, -0.035551030188798904, -0.019255174323916435, -0.03025953099131584, 0.010651590302586555, 0.011651095002889633, -0.022929824888706207, -0.016188064590096474, -0.025869546458125114, 0.044644568115472794, -0.01072018314152956, 0.029828371480107307, -0.012327231466770172, -0.017354154959321022, -0.01556092407554388, 0.02690824866294861, -0.02630070596933365, -0.009999951347708702, -0.0002014933997998014, -0.03792240470647812, 0.00487503781914711, 0.058441657572984695, -0.07404177635908127, 0.06737840920686722, 0.039921414107084274, 0.006095021963119507, -0.04527170583605766, -0.0007092077285051346, 0.01398327387869358, 0.01289557758718729, -0.028789669275283813, -0.020146889612078667, -0.04444858431816101, -0.002006359864026308, -0.0016156218480318785, -0.02835851162672043, -0.036766111850738525, 0.028064539656043053, 0.05326774716377258, 0.04821142926812172, 0.03243492543697357, 0.0472315214574337, 0.09360072761774063, 0.04358626529574394, 0.02749619260430336, 0.04405662417411804, 0.05746174976229668, 0.033238448202610016, -0.06831911951303482, 0.010867169126868248, 0.01047520712018013, -0.00043544621439650655, 0.010876968502998352, -0.02071523480117321, -0.047153130173683167, 0.02085242234170437, -0.03964703902602196, -0.01956874504685402, 0.04452697932720184, -0.02157755382359028, 0.03278769180178642, 0.022675050422549248, -0.015296349301934242, 0.01760892942547798, -0.039784226566553116, -0.033120859414339066, 0.0458204559981823, 0.003907379694283009, -0.030729886144399643, 0.060989417135715485, 0.013738296926021576, 0.048760175704956055, 0.03429674729704857, 0.020754432305693626, 0.02520320937037468, 0.03586459904909134, 0.05146472156047821, 0.044762156903743744, -0.024419285356998444, -0.02918163314461708, -0.08450718969106674, 0.0042601460590958595, -0.02894645556807518, -0.05326774716377258, -0.022577058523893356, 0.005115115083754063, 0.0671040341258049, -0.037961602210998535, 0.0026383998338133097, 0.05193507671356201, 0.0025722561404109, 0.0823121964931488, 0.02085242234170437, 0.013071960769593716, -0.004507572390139103, -0.05342453345656395, 0.03412036597728729, 0.0029715681448578835, 0.0021410968620330095, -0.016099873930215836, 0.0069769383408129215, -0.08223380148410797, 0.03898070380091667, 0.012738792225718498, 0.04225359484553337, -0.01938256248831749, -0.018147878348827362, 0.08913234621286392, 0.005154311191290617, 0.0362369641661644, -0.023106208071112633, -0.0006945091299712658, -0.04272394999861717, 0.004710903391242027, -0.025281602516770363, -0.005267000757157803, 0.02602633275091648, -0.05757933855056763, -0.020636843517422676, -0.0008837537025101483, 0.04017619043588638, -0.03016153909265995, -0.056403450667858124, 0.018255669623613358, -0.023458976298570633, 0.03243492543697357, -0.0015629518311470747, 0.01072018314152956, 0.04821142926812172, -0.033473625779151917, 0.020911216735839844, 0.00618321355432272, 0.07074929028749466, -0.040764134377241135, -0.06918144226074219, -0.02265545167028904, -0.02857409045100212, -0.05095516890287399, -0.00030132141546346247, -0.0790197104215622, 0.006158716045320034, -0.02590874396264553, 0.03976462781429291, 0.0013559464132413268, -0.039666637778282166, 0.033610813319683075, 0.07956845313310623, -0.0015715259360149503, 0.03447313234210014, -0.028299717232584953, -0.033238448202610016, 0.0027045435272157192, -0.002437518909573555, 0.018481047824025154, -0.014630013145506382, -0.03521785885095596, 0.00017822059453465044, -0.00410826038569212, 0.020499655976891518, -0.027182621881365776, -0.017775515094399452, 0.009603089652955532, 0.0306318961083889, -0.017804911360144615, -0.007285609375685453, 0.021891124546527863, -0.005369890946894884, 0.012572207488119602, 0.02978917583823204, -0.045585278421640396, 0.03790280595421791, 0.04907374829053879, -0.011788282543420792, 0.025144414976239204, -0.0006271405145525932, 0.021048404276371002, 0.034081168472766876, 0.022087106481194496, -0.005350292660295963, -0.027417799457907677, -0.006021528970450163, 0.002964218845590949, -0.007677571848034859, 0.0007496289326809347, 0.0264182947576046, -0.04930892586708069, 0.00932871550321579, -0.013777493499219418, 0.05691300332546234, 0.022341880947351456, -0.045350100845098495, -0.02216549776494503, 0.01907879114151001, 0.07043571770191193, -0.026241911575198174, 0.022753441706299782, -0.018343860283493996, 0.030847474932670593, 0.004872587975114584, -0.0034909190144389868, -0.027574585750699043, 0.004845640622079372, 0.0021263982634991407, 0.010729982517659664, -0.06694725155830383, 0.02085242234170437, 0.01700138859450817, -0.00910823605954647, 0.005575671326369047, -0.005644264630973339, -0.04452697932720184, 0.043429482728242874, 0.01681520603597164, -0.07278750091791153, -0.0022684847936034203, 0.0776086375117302, -0.010240028612315655, -0.04217519983649254, -0.031807783991098404, 0.006109720561653376, 0.00872117280960083, -0.001490683644078672, -0.029985155910253525, -0.02216549776494503, 0.03141582012176514, -0.016217462718486786, 0.033845990896224976, 0.05452203005552292, 0.007667772937566042, -0.0409209206700325, -0.006535980384796858, -0.05718737840652466, -0.027594182640314102, -0.03135702759027481, 0.005737355910241604, 0.010524202138185501, -0.0261831171810627, -0.08811324834823608, -0.09140573441982269, -0.015286550857126713, 0.02700623869895935, 0.008975949138402939, -0.07310106605291367, 0.09022984653711319, 0.05899040773510933, 0.014267447404563427, 0.021714741364121437, 0.020793627947568893, 0.014110662043094635, 0.055305954068899155, -0.005164110101759434, -0.009848066605627537, 0.05271900072693825, -0.005801049992442131, 0.013591310940682888, -0.0053404937498271465, 0.036413345485925674, 0.022439872846007347, -0.017148373648524284, -0.040764134377241135, -0.01725616306066513, -0.023262994363904, -0.020382067188620567, -0.004933832213282585, -0.0055413744412362576, -0.0755312368273735, -0.07345383614301682, -0.022204695269465446, -0.03333643823862076, 0.015913691371679306, 0.04734911024570465, -0.04613402485847473, -0.05746174976229668, -0.07106286287307739, -0.01083777192980051, 0.03151381015777588, 0.02677106112241745, -0.008201822638511658, -0.0015654015587642789, 0.008681977167725563, 0.0032361431512981653, 0.024321293458342552, -0.0008629306685179472, -0.01168049219995737, 0.01302296482026577, -0.02481124736368656, -0.05781451612710953, -0.048642586916685104, 0.021891124546527863, -0.010357617400586605, 0.04362546280026436, -0.07733426988124847, -0.03417915850877762, -0.03923548012971878, 0.045350100845098495, 0.0477018766105175, -0.01465941034257412, -0.04405662417411804, 0.029475605115294456, -0.008647680282592773, -0.046330008655786514, 0.01853984221816063, -0.0190591923892498, 0.028182128444314003, -0.045702867209911346, -0.053346142172813416, -0.0591471903026104, -0.0013571713352575898, 0.024536874145269394, -0.0268886499106884, 0.032885681837797165, -0.02277304045855999, 0.05138632655143738, -0.0404505655169487, 0.027280613780021667, -0.04237118363380432, 0.033473625779151917, 0.06059745326638222, 0.0610286146402359, 0.04856419563293457, 0.009069040417671204, 0.026849454268813133, 0.04096011444926262, -0.04170484468340874, 0.01711897738277912, 0.0014367887051776052, -0.0331992506980896, 0.010680987499654293, -0.018441852182149887, -0.035668618977069855, 0.00944630429148674, 0.03041631542146206, -0.04821142926812172, -0.007319905795156956, 0.00951489806175232, -0.00524250278249383, -0.007187618408352137, 0.02144036628305912, 0.0005245564971119165, -0.026575079187750816, -0.0043336390517652035, 0.08356647938489914, -0.02675146423280239, 0.01865743100643158, -0.04260636121034622, -0.06114620342850685, -0.027065033093094826, -0.005315995775163174, -0.04194002225995064, 0.01582549884915352, -0.038216374814510345, -0.04860338941216469, -0.06020548939704895, 0.02786855772137642, 0.03539424389600754, 0.07800060510635376, -0.04785866290330887, 0.07643274962902069, 0.019019996747374535, 0.014796596951782703, 0.008446798659861088, -0.04107770323753357, -0.04170484468340874, 0.010093042626976967, 0.011278730817139149, -0.019470753148198128, -0.05146472156047821, -0.029828371480107307, -0.00420380150899291, 0.019794123247265816, -0.03304246813058853, 0.049230530858039856, -0.005796150304377079, 0.006624171976000071, 0.04785866290330887, -0.005311096552759409, 0.011553104035556316, -0.03874552622437477, 0.0298087727278471, -0.009661884047091007, -0.01966673508286476, 0.0261831171810627, -0.04107770323753357, -0.008662378415465355, 0.02251826412975788, 0.02046046033501625, 0.00015801002155058086, -0.03782441467046738, -0.030788680538535118, 0.02095041424036026, -0.014130259864032269, 0.04625161364674568, 0.01711897738277912, -0.00410826038569212, -0.02008809521794319, -0.00766287324950099, -0.01592349074780941, 0.028260519728064537, 0.029769577085971832, 0.025849949568510056, 0.004843190778046846, -0.04213600605726242, 0.0046937549486756325, -0.0072611114010214806, 0.05193507671356201, -0.026555482298135757, 0.03127863258123398, -0.02157755382359028, -0.00855948869138956, 0.0591471903026104, -0.010269425809383392, -0.028162529692053795, 0.008730972185730934, -0.019794123247265816, -0.05569791793823242, -0.023184601217508316, -0.02884846366941929, 0.0012763289269059896, -0.053698908537626266, -0.08834842592477798, -0.011190539225935936, -0.06161655858159065, -0.03655053302645683, 0.018510444089770317, 0.0032434924505650997, -0.004434079397469759, 0.024634864181280136, 0.013003366999328136, -0.0367073193192482, -0.037628430873155594, -0.014140059240162373, 0.040999311953783035, -0.02120518870651722, 0.05514917150139809, -0.05158231034874916, 0.06400752812623978, 0.025340396910905838, 0.0077657634392380714, -0.04080333188176155, -0.031807783991098404, 0.06189092993736267, 0.0605582594871521, 0.02630070596933365, 0.004914233926683664, 0.002660447731614113, 0.07960765063762665, -0.021224787458777428, -0.014816194772720337, -0.050563205033540726, -0.0033537319395691156, -0.01489458791911602, 0.05385569483041763, -0.01393427886068821, -0.015590321272611618, 0.0008733422146178782, -0.027398202568292618, 0.02847610041499138, 0.04954410344362259, -0.0596175454556942, 0.005928437691181898, 0.012728992849588394, 0.028926856815814972, -0.02375294826924801, -0.033983178436756134, -0.0201076939702034, 0.000245589209953323, -0.012875978834927082, 0.10143998265266418, 0.017824510112404823, 0.018294865265488625, -0.01423805020749569, 0.0156687144190073, -0.003138152416795492, 0.028162529692053795, -0.02204790897667408, -0.07776542752981186, -0.022459469735622406, 0.042096808552742004, -0.025124818086624146, -0.019206179305911064, 0.0022599108051508665, -0.02690824866294861, -0.009691281244158745, 0.06961259990930557, -0.039176683872938156, 0.0077706631273031235, 0.011602099984884262, 0.027652977034449577, 0.020166488364338875, 0.019813721999526024, 0.08678057044744492 ]
24,496
knockknock.desktop_sender
desktop_sender
null
def desktop_sender(title: str = "knockknock"): def show_notification(text: str, title: str): # Check the OS if platform.system() == "Darwin": subprocess.run(["sh", "-c", "osascript -e 'display notification \"%s\" with title \"%s\"'" % (text, title)]) elif platform.system() == "Linux": subprocess.run(["notify-send", title, text]) elif platform.system() == "Windows": try: from win10toast import ToastNotifier except ImportError as err: print('Error: to use Windows Desktop Notifications, you need to install `win10toast` first. Please run `pip install win10toast==0.9`.') toaster = ToastNotifier() toaster.show_toast(title, text, icon_path=None, duration=5) def decorator_sender(func): @functools.wraps(func) def wrapper_sender(*args, **kwargs): start_time = datetime.datetime.now() host_name = socket.gethostname() func_name = func.__name__ # Handling distributed training edge case. # In PyTorch, the launch of `torch.distributed.launch` sets up a RANK environment variable for each process. # This can be used to detect the master process. # See https://github.com/pytorch/pytorch/blob/master/torch/distributed/launch.py#L211 # Except for errors, only the master process will send notifications. if 'RANK' in os.environ: master_process = (int(os.environ['RANK']) == 0) host_name += ' - RANK: %s' % os.environ['RANK'] else: master_process = True if master_process: contents = ['Your training has started 🎬', 'Machine name: %s' % host_name, 'Main call: %s' % func_name, 'Starting date: %s' % start_time.strftime(DATE_FORMAT)] text = '\n'.join(contents) show_notification(text, title) try: value = func(*args, **kwargs) if master_process: end_time = datetime.datetime.now() elapsed_time = end_time - start_time contents = ["Your training is complete 🎉", 'Machine name: %s' % host_name, 'Main call: %s' % func_name, 'Starting date: %s' % start_time.strftime(DATE_FORMAT), 'End date: %s' % end_time.strftime(DATE_FORMAT), 'Training duration: %s' % str(elapsed_time)] try: str_value = str(value) contents.append('Main call returned value: %s'% str_value) except: contents.append('Main call returned value: %s'% "ERROR - Couldn't str the returned value.") text = '\n'.join(contents) show_notification(text, title) return value except Exception as ex: end_time = datetime.datetime.now() elapsed_time = end_time - start_time contents = ["Your training has crashed ☠️", 'Machine name: %s' % host_name, 'Main call: %s' % func_name, 'Starting date: %s' % start_time.strftime(DATE_FORMAT), 'Crash date: %s' % end_time.strftime(DATE_FORMAT), 'Crashed training duration: %s\n\n' % str(elapsed_time), "Here's the error:", '%s\n\n' % ex, "Traceback:", '%s' % traceback.format_exc()] text = '\n'.join(contents) show_notification(text, title) raise ex return wrapper_sender return decorator_sender
(title: str = 'knockknock')
[ 0.024243932217359543, -0.013058297336101532, -0.012031354010105133, 0.020166361704468727, 0.0554952472448349, -0.03386901691555977, -0.057710226625204086, 0.0534413605928421, 0.0360235832631588, -0.012635438703000546, 0.045588258653879166, 0.023116307333111763, 0.02897593006491661, -0.031271450221538544, -0.021505415439605713, 0.011115158908069134, 0.040010541677474976, -0.014034900814294815, -0.0041329460218548775, -0.04117843881249428, 0.034593917429447174, -0.015102117322385311, 0.016098856925964355, -0.011870264075696468, -0.004092673771083355, 0.06463706493377686, 0.01384360808879137, 0.013591906055808067, -0.02307603508234024, 0.007077859248965979, 0.014276535250246525, -0.06669095158576965, 0.005804247222840786, 0.0033702892251312733, 0.0026403535157442093, 0.04160130023956299, -0.07301370054483414, -0.02925783582031727, -0.05742831900715828, -0.038077473640441895, -0.022552495822310448, -0.0474407859146595, 0.054609257727861404, 0.009333108551800251, -0.05376353859901428, 0.005255536641925573, -0.010339916683733463, 0.05142774432897568, 0.021968547254800797, -0.00766180781647563, -0.042165111750364304, 0.0011364343808963895, 0.03207689896225929, 0.007510786410421133, -0.09665355086326599, 0.05311918258666992, 0.02945919707417488, -0.010531210340559483, -0.02571387216448784, -0.024767473340034485, -0.001128883333876729, 0.050259847193956375, 0.03445296362042427, 0.050582025200128555, 0.021545687690377235, -0.008240722119808197, 0.03407037630677223, 0.007515820674598217, 0.002308106981217861, 0.00023172311193775386, 0.07357751578092575, -0.014377215877175331, -0.04164157062768936, -0.014175854623317719, 0.02017642930150032, -0.019683092832565308, -0.04889058694243431, 0.010370120406150818, 0.010933932848274708, 0.018847443163394928, 0.0474407859146595, 0.021565822884440422, -0.01027950830757618, 0.01029964443296194, 0.06499951332807541, 0.01966295763850212, 0.009549572132527828, 0.052676185965538025, -0.02092146687209606, 0.022351134568452835, -0.005985472351312637, 0.002237630309537053, 0.0014699394814670086, 0.004248728975653648, -0.010304678231477737, -0.03310384228825569, 0.030687503516674042, -0.024566110223531723, 0.017558729276061058, -0.008326300419867039, 0.004910705145448446, 0.09061270207166672, 0.0020085815340280533, -0.015847155824303627, 0.040815990418195724, -0.03852046653628349, -0.049776580184698105, 0.02446543052792549, 0.009957329370081425, -0.017427843064069748, -0.07607439905405045, -0.0674963966012001, -0.0780477449297905, -0.06608686596155167, 0.01782049797475338, -0.011880332604050636, -0.03860101103782654, 0.02484801784157753, -0.0008878786466084421, -0.01772988587617874, 0.006705339998006821, 0.05005848407745361, -0.01594783551990986, -0.07458432763814926, -0.03761434182524681, 0.014800075441598892, 0.03141240403056145, 0.021565822884440422, 0.08666601777076721, -0.014779939316213131, -0.012001149356365204, -0.006025745067745447, 0.044299542903900146, 0.05126665532588959, 0.03318438678979874, 0.01640089973807335, -0.017327163368463516, 0.03125131502747536, 0.0518304668366909, 0.01966295763850212, -0.0071332333609461784, -0.018797101452946663, 0.01582701876759529, 0.02033751830458641, 0.055293887853622437, -0.012726050801575184, -0.0071030291728675365, -0.003934101667255163, 0.010722503066062927, -0.028150346130132675, 0.055293887853622437, 0.012816663831472397, -0.020780513063073158, -0.026277683675289154, -0.007173505611717701, 0.020025407895445824, -0.007269152440130711, -0.00756616098806262, 0.04498417302966118, 0.02726435661315918, -0.0068563614040613174, -0.045266080647706985, 0.05191101133823395, 0.015283342450857162, -0.03461405262351036, 0.02591523341834545, 0.0016020829789340496, 0.03203662484884262, 0.020216701552271843, 0.08183334022760391, -0.009952295571565628, 0.018998464569449425, 0.002864368259906769, -0.0392453707754612, -0.04293028637766838, 0.011175567284226418, -0.029277971014380455, -0.02549237385392189, -0.0023483792319893837, 0.014840347692370415, -0.04872949793934822, -0.01475980319082737, -0.09294849634170532, -0.016682805493474007, 0.007349696941673756, 0.04077571630477905, 0.02968069538474083, 0.006710374262183905, 0.030304916203022003, 0.0034709700848907232, -0.055092524737119675, 0.023096172139048576, 0.05887812376022339, 0.06548278033733368, 0.01685396395623684, 0.01250455342233181, 0.02194841019809246, -0.011366860009729862, -0.050904203206300735, -0.06528142094612122, 0.04109789431095123, 0.044903628528118134, 0.05030011758208275, 0.012867003679275513, -0.02726435661315918, -0.056059058755636215, -0.033466290682554245, 0.04599098116159439, -0.0527164563536644, -0.039688363671302795, -0.018706489354372025, -0.05936139076948166, -0.03860101103782654, 0.07603412866592407, 0.045910436660051346, -0.060408469289541245, 0.04933358356356621, 0.04152075573801994, 0.02442515827715397, -0.03320452198386192, -0.0022275622468441725, -0.0166928730905056, -0.05485089123249054, -0.0027158642187714577, 0.028754431754350662, 0.03380860760807991, 0.0007097995257936418, -0.03431200981140137, 0.07063763588666916, -0.00367736560292542, 0.017800362780690193, -0.0291370190680027, 0.01489068754017353, 0.05384408310055733, -0.014910823665559292, -0.010400325059890747, -0.026922041550278664, -0.022794129326939583, 0.01827356219291687, -0.02861347794532776, 0.021324189379811287, -0.0261367317289114, 0.0635497123003006, 0.029922328889369965, 0.08408858627080917, -0.02684149704873562, 0.03392942249774933, 0.015404160134494305, -0.07470513880252838, 0.0027259322814643383, -0.0014661638997495174, -0.003116070292890072, 0.021163100376725197, -0.038077473640441895, -0.013007957488298416, -0.005346149671822786, 0.032540030777454376, -0.012937480583786964, 0.03980918228626251, 0.017739953473210335, -0.01024930365383625, 0.002748585306107998, -0.048165686428546906, 0.016249878332018852, -0.020216701552271843, -0.037694886326789856, -0.05416626110672951, 0.05948220565915108, -0.028089938685297966, 0.0061264256946742535, -0.05537443235516548, 0.0751078650355339, -0.008371607400476933, -0.03515772894024849, -0.02559305541217327, -0.027727488428354263, -0.028371844440698624, -0.012182374484837055, -0.03376833349466324, -0.02748585306107998, -0.0131791140884161, 0.03884264454245567, -0.012444145046174526, -0.007958815433084965, -0.005532409064471722, -0.031372133642435074, 0.040332723408937454, -0.09818390011787415, 0.017860770225524902, -0.04631315916776657, -0.001018763636238873, 0.026277683675289154, 0.04224565625190735, -0.03535909205675125, -0.029237698763608932, 0.017196277156472206, -0.02968069538474083, -0.0122629189863801, 0.024666791781783104, -0.05295809358358383, 0.1038220226764679, 0.052998363971710205, -0.04228593036532402, -0.05376353859901428, -0.019169621169567108, 0.02742544561624527, 0.017538592219352722, -0.005894859787076712, -0.00334763596765697, -0.06419406831264496, -0.022572631016373634, -0.029700830578804016, 0.05400517210364342, -0.005940166302025318, 0.0032620574347674847, 0.044661995023489, 0.03489596024155617, 0.003148791380226612, 0.055414702743291855, 0.056703418493270874, 0.045547984540462494, 0.05464952811598778, -0.000828099437057972, 0.09262631833553314, 0.020780513063073158, -0.05859621614217758, 0.017619136720895767, -0.009982499293982983, -0.006735544186085463, 0.0028744363225996494, -0.0013365374179556966, -0.001688920077867806, 0.04079585149884224, -0.03805733472108841, -0.014467828907072544, 0.07679930329322815, 0.015404160134494305, 0.05456898361444473, 0.03811774402856827, -0.03151308372616768, 0.0317748561501503, -0.00321423402056098, -0.05046120658516884, 0.05597851425409317, 0.033949561417102814, -0.028915520757436752, 0.05030011758208275, 0.018323902040719986, 0.037433113902807236, -0.0042059398256242275, -0.012363600544631481, 0.057871315628290176, -0.025572918355464935, 0.008880045264959335, 0.04321219027042389, -0.014024833217263222, -0.016994915902614594, -0.06689231097698212, 0.0076718758791685104, -0.03819828853011131, -0.0371914803981781, 0.0022779027931392193, -0.006146561820060015, 0.05372326448559761, -0.09536483883857727, -0.002305589849129319, 0.03304343298077583, 0.05440789461135864, 0.056381236761808395, 0.010792979970574379, 0.014336943626403809, -0.0196931604295969, -0.0032922616228461266, 0.029318243265151978, -0.005814315285533667, -0.00015243700181599706, -0.020226769149303436, -0.018615877255797386, -0.05706586688756943, 0.011910536326467991, 0.02178732119500637, 0.01430673897266388, -0.007349696941673756, -0.01885751076042652, 0.07941700518131256, 0.023921754211187363, 0.011850127950310707, -0.018615877255797386, -0.0261367317289114, -0.07224853336811066, 0.007540990598499775, -0.00028520976775325835, 0.004966079723089933, 0.03445296362042427, 0.013702654279768467, -0.025532646104693413, 0.006071051117032766, 0.036526989191770554, -0.03966822847723961, -0.03940645977854729, -0.012051490135490894, -0.03624508157372475, 0.0044878460466861725, -0.024827880784869194, 0.02194841019809246, 0.03680889308452606, 0.002819061977788806, -0.06890592724084854, -0.004696758463978767, 0.02436474896967411, -0.01169910654425621, -0.05134719982743263, -0.06592577695846558, -0.011477609165012836, 0.0034231466706842184, 0.005122134927660227, -0.07402051240205765, -0.016984848305583, 0.004125394858419895, -0.009368347004055977, -0.026640135794878006, -0.005451864562928677, 0.06894619762897491, 0.08320260047912598, 0.035761814564466476, 0.05553552135825157, -0.018847443163394928, -0.017447980120778084, 0.02329753339290619, 0.003486072178930044, 0.010621822439134121, -0.0313318595290184, -0.05275673046708107, 0.021485278382897377, -0.01374292653053999, 0.009172019548714161, 0.017226481810212135, -0.03634576126933098, -0.033848877996206284, 0.0005169329233467579, -0.022230317816138268, -0.030023008584976196, 0.039688363671302795, 0.03465432673692703, -0.028915520757436752, 0.010068078525364399, -0.02587496116757393, -0.018132608383893967, -0.02082078531384468, -0.0014221160672605038, 0.0034080445766448975, -0.003964305855333805, 0.04357464239001274, 0.030466005206108093, 0.027405308559536934, -0.013692586682736874, -0.06395243108272552, -0.007329560816287994, -0.025411829352378845, 0.005023971199989319, 0.016582125797867775, 0.06375107169151306, -0.09351231157779694, -0.011266179382801056, 0.006307650823146105, 0.02065969631075859, 0.02688176929950714, -0.05086393281817436, -0.03628535568714142, 0.02929810807108879, 0.09206251055002213, -0.027083130553364754, 0.04069517180323601, 0.007888339459896088, 0.03723175451159477, -0.0018839891999959946, -0.026116594672203064, 0.0014208575012162328, -0.021646369248628616, 0.0015618106117472053, 0.008638410829007626, -0.035238273441791534, -0.007405071519315243, 0.0538843534886837, -0.03231853246688843, 0.01285693608224392, 0.0060106427408754826, -0.030143827199935913, 0.042849741876125336, 0.029700830578804016, -0.04808514192700386, 0.004180769436061382, 0.05887812376022339, 0.023216988891363144, 0.0038208356127142906, -0.004455124493688345, -0.010913796722888947, 0.01623981073498726, -0.008447118103504181, -0.06197908893227577, -0.01981397718191147, 0.04119857773184776, -0.0017279339954257011, 0.04812541604042053, 0.04820596054196358, -0.008175279945135117, -0.0329427532851696, 0.024666791781783104, -0.0382184237241745, -0.0131791140884161, -0.007062756922096014, 0.0035439636558294296, 0.02774762362241745, -0.025452101603150368, -0.060126565396785736, -0.0972173660993576, -0.042849741876125336, 0.020478472113609314, 0.021505415439605713, -0.06302616745233536, 0.06117364391684532, 0.03139226883649826, -0.00010398437007097527, -0.0335266999900341, 0.01836417429149151, 0.005366285797208548, 0.042648378759622574, 0.007692012004554272, 0.010682230815291405, 0.07740338891744614, -0.03986959159374237, 0.07458432763814926, 0.050904203206300735, 0.0345536433160305, 0.042326200753450394, -0.0389433279633522, -0.05166937783360481, -0.02275385707616806, -0.016541853547096252, -0.005693498067557812, 0.0007249016198329628, -0.012403872795403004, -0.04723942279815674, -0.08666601777076721, 0.010219099931418896, -0.041238848119974136, 0.02855307050049305, 0.030888864770531654, -0.07337615638971329, -0.021485278382897377, -0.061052825301885605, -0.04969603568315506, 0.02410298027098179, 0.030143827199935913, -0.016622398048639297, 0.06403297930955887, 0.01142726931720972, 0.027606669813394547, 0.02058921940624714, -0.0009621307253837585, -0.03626521676778793, -0.0261367317289114, -0.0017518455861136317, -0.05303863808512688, -0.05287754908204079, 0.014175854623317719, -0.03664780408143997, 0.011739379726350307, -0.05436762422323227, -0.08130980283021927, -0.02506951428949833, 0.03505704924464226, 0.05436762422323227, -0.0020576633978635073, -0.03876210004091263, 0.026801224797964096, 0.03946686536073685, -0.028412116691470146, -0.019058872014284134, -0.01384360808879137, -0.012736119329929352, -0.014014764688909054, -0.026056187227368355, -0.029056474566459656, -0.003632059320807457, 0.032117169350385666, -0.018293697386980057, -0.006775816902518272, -0.058153219521045685, -0.01611899398267269, -0.023357940837740898, 0.03398983180522919, -0.013209318742156029, 0.012635438703000546, 0.06508006155490875, 0.013702654279768467, 0.05384408310055733, 0.011095021851360798, 0.05376353859901428, 0.025291012600064278, -0.0619388185441494, 0.04667561128735542, 0.023357940837740898, -0.041138168424367905, 0.0667714923620224, -0.05215264484286308, -0.03547990694642067, -0.007314458955079317, -0.002252732403576374, -0.0527164563536644, -0.009187121875584126, 0.014276535250246525, -0.034110650420188904, 0.01685396395623684, 0.05307890847325325, 0.03173458203673363, -0.0355805903673172, -0.07023491710424423, 0.08561893552541733, -0.0135818375274539, 0.004105258733034134, -0.0082356883212924, -0.039748772978782654, -0.05062229931354523, 0.012051490135490894, -0.0012182374484837055, -0.0027737554628401995, -0.04611179977655411, -0.0261367317289114, -0.07100009173154831, 0.02426406927406788, 0.022874673828482628, 0.10108350962400436, -0.008265892043709755, 0.052031829953193665, -0.036365900188684464, -0.0021658954210579395, 0.01432687509804964, -0.047360241413116455, -0.05513279512524605, -0.0263582281768322, 0.026962313801050186, -0.03515772894024849, -0.07619521766901016, 0.016461307182908058, 0.002688176929950714, 0.0094086192548275, 0.001159087521955371, 0.04973630607128143, -0.01836417429149151, -0.011135295033454895, 0.022391406819224358, -0.029056474566459656, 0.057710226625204086, -0.012957616709172726, 0.06918783485889435, 0.002982668112963438, -0.05698532238602638, -0.00265042157843709, -0.011467541567981243, -0.005260570906102657, 0.011618562042713165, -0.014125513844192028, 0.01245421264320612, 0.02704285830259323, -0.005245468579232693, 0.017639273777604103, -0.017971519380807877, 0.04103748872876167, -0.037010256201028824, 0.03272125497460365, -0.015152458101511002, 0.01637069508433342, -0.038661420345306396, 0.045588258653879166, 0.024888290092349052, -0.00905623659491539, 0.01940118707716465, -0.02291494607925415, -0.02076037786900997, 0.003830903908237815, -0.017196277156472206, -0.04019176959991455, -0.02591523341834545, -0.02710326761007309, -0.012987821362912655, 0.05142774432897568, 0.0023798421025276184, -0.047642145305871964, -0.024284204468131065, -0.04069517180323601, -0.005668328143656254, -0.020488539710640907, 0.011689038947224617, 0.0035112423356622458, -0.07164444774389267, -0.08074598759412766, -0.009297870099544525, -0.04679642617702484, -0.05545497685670853, 0.012907275930047035, 0.011095021851360798, -0.003991993144154549, 0.028190618380904198, -0.019834114238619804, -0.006680170074105263, -0.06467733532190323, -0.02661999873816967, 0.0030632128473371267, -0.0018776966026052833, 0.04840731993317604, -0.048004597425460815, 0.05360244959592819, 0.025633327662944794, -0.009630116634070873, -0.07607439905405045, -0.008210517466068268, 0.019904591143131256, 0.014185922220349312, 0.023216988891363144, -0.022532358765602112, 0.03026464395225048, 0.08441077172756195, -0.024062708020210266, 0.010913796722888947, -0.00921732559800148, 0.0012603976065292954, -0.03966822847723961, 0.042970556765794754, 0.01344088464975357, -0.008759228512644768, -0.017186209559440613, -0.019612615928053856, 0.05609933286905289, 0.06922810524702072, -0.020156292244791985, 0.04357464239001274, 0.005492136813700199, -0.02881483919918537, -0.00921732559800148, -0.006584523245692253, -0.012514621019363403, -0.02758653461933136, -0.024223797023296356, 0.0626637190580368, 0.021022146567702293, -0.010490937158465385, -0.0076718758791685104, 0.05738804489374161, 0.015021572820842266, 0.04035285860300064, -0.020085815340280533, -0.04647424817085266, -0.021867865696549416, 0.05823376402258873, 0.017357366159558296, -0.002204909222200513, -0.00037849682848900557, -0.015384024009108543, 0.0003759798128157854, 0.0575491338968277, 0.006327787414193153, -0.006755680311471224, 0.03946686536073685, 0.033687788993120193, 0.011316520161926746, -0.0121521707624197, 0.07067790627479553 ]
24,497
knockknock.dingtalk_sender
dingtalk_sender
DingTalk sender wrapper: execute func, send a DingTalk notification with the end status (sucessfully finished or crashed) at the end. Also send a DingTalk notification before executing func. `webhook_url`: str The webhook URL to access your DingTalk chatroom. Visit https://ding-doc.dingtalk.com/doc#/serverapi2/qf2nxq for more details. `user_mentions`: List[str] (default=[]) Optional users phone number to notify. Visit https://ding-doc.dingtalk.com/doc#/serverapi2/qf2nxq for more details. `secret`: str (default='') DingTalk chatroom robot are set with at least one of those three security methods (ip / keyword / secret), the chatroom will only accect messages that: are from authorized ips set by user (ip), contain any keyword set by user (keyword), are posted through a encrypting way (secret). Vist https://ding-doc.dingtalk.com/doc#/serverapi2/qf2nxq from more details. `keywords`: List[str] (default=[]) see `secret`
def dingtalk_sender(webhook_url: str, user_mentions: List[str] = [], secret: str = '', keywords: List[str] = []): """ DingTalk sender wrapper: execute func, send a DingTalk notification with the end status (sucessfully finished or crashed) at the end. Also send a DingTalk notification before executing func. `webhook_url`: str The webhook URL to access your DingTalk chatroom. Visit https://ding-doc.dingtalk.com/doc#/serverapi2/qf2nxq for more details. `user_mentions`: List[str] (default=[]) Optional users phone number to notify. Visit https://ding-doc.dingtalk.com/doc#/serverapi2/qf2nxq for more details. `secret`: str (default='') DingTalk chatroom robot are set with at least one of those three security methods (ip / keyword / secret), the chatroom will only accect messages that: are from authorized ips set by user (ip), contain any keyword set by user (keyword), are posted through a encrypting way (secret). Vist https://ding-doc.dingtalk.com/doc#/serverapi2/qf2nxq from more details. `keywords`: List[str] (default=[]) see `secret` """ msg_template = { "msgtype": "text", "text": { "content": "" }, "at": { "atMobiles": user_mentions, "isAtAll": False } } def _construct_encrypted_url(): ''' Visit https://ding-doc.dingtalk.com/doc#/serverapi2/qf2nxq for details ''' timestamp = round(datetime.datetime.now().timestamp() * 1000) secret_enc = secret.encode('utf-8') string_to_sign = '{}\n{}'.format(timestamp, secret) string_to_sign_enc = string_to_sign.encode('utf-8') hmac_code = hmac.new(secret_enc, string_to_sign_enc, digestmod=hashlib.sha256).digest() sign = urllib.parse.quote_plus(base64.b64encode(hmac_code)) encrypted_url = webhook_url + '&timestamp={}'.format(timestamp) \ + '&sign={}'.format(sign) return encrypted_url def decorator_sender(func): @functools.wraps(func) def wrapper_sender(*args, **kwargs): start_time = datetime.datetime.now() host_name = socket.gethostname() func_name = func.__name__ # Handling distributed training edge case. # In PyTorch, the launch of `torch.distributed.launch` sets up a RANK environment variable for each process. # This can be used to detect the master process. # See https://github.com/pytorch/pytorch/blob/master/torch/distributed/launch.py#L211 # Except for errors, only the master process will send notifications. if 'RANK' in os.environ: master_process = (int(os.environ['RANK']) == 0) host_name += ' - RANK: %s' % os.environ['RANK'] else: master_process = True if master_process: contents = ['Your training has started 🎬', 'Machine name: %s' % host_name, 'Main call: %s' % func_name, 'Starting date: %s' % start_time.strftime(DATE_FORMAT)] contents.extend(['@{}'.format(i) for i in user_mentions]) contents.extend(keywords) msg_template['text']['content'] = '\n'.join(contents) if secret: postto = _construct_encrypted_url() requests.post(postto, json=msg_template) else: requests.post(webhook_url, json=msg_template) try: value = func(*args, **kwargs) if master_process: end_time = datetime.datetime.now() elapsed_time = end_time - start_time contents = ["Your training is complete 🎉", 'Machine name: %s' % host_name, 'Main call: %s' % func_name, 'Starting date: %s' % start_time.strftime(DATE_FORMAT), 'End date: %s' % end_time.strftime(DATE_FORMAT), 'Training duration: %s' % str(elapsed_time)] try: str_value = str(value) contents.append('Main call returned value: %s'% str_value) except: contents.append('Main call returned value: %s'% "ERROR - Couldn't str the returned value.") contents.extend(['@{}'.format(i) for i in user_mentions]) contents.extend(keywords) msg_template['text']['content'] = '\n'.join(contents) if secret: postto = _construct_encrypted_url() requests.post(postto, json=msg_template) else: requests.post(webhook_url, json=msg_template) print(msg_template) return value except Exception as ex: end_time = datetime.datetime.now() elapsed_time = end_time - start_time contents = ["Your training has crashed ☠️", 'Machine name: %s' % host_name, 'Main call: %s' % func_name, 'Starting date: %s' % start_time.strftime(DATE_FORMAT), 'Crash date: %s' % end_time.strftime(DATE_FORMAT), 'Crashed training duration: %s\n\n' % str(elapsed_time), "Here's the error:", '%s\n\n' % ex, "Traceback:", '%s' % traceback.format_exc()] contents.extend(['@{}'.format(i) for i in user_mentions]) contents.extend(keywords) msg_template['text']['content'] = '\n'.join(contents) if secret: postto = _construct_encrypted_url() requests.post(postto, json=msg_template) else: requests.post(webhook_url, json=msg_template) print(msg_template) raise ex return wrapper_sender return decorator_sender
(webhook_url: str, user_mentions: List[str] = [], secret: str = '', keywords: List[str] = [])
[ 0.013220756314694881, -0.03889302536845207, -0.03675965219736099, 0.012954085133969784, -0.003615451278164983, 0.0063334498554468155, -0.07524241507053375, 0.05374458059668541, 0.004648803733289242, 0.0034231399185955524, 0.007395008113235235, 0.0128310052677989, -0.012779722921550274, -0.009482226334512234, -0.020174730569124222, 0.003589809639379382, 0.04980604723095894, -0.0005948827601969242, 0.010738659650087357, -0.06793971359729767, 0.009364275261759758, -0.006794997025281191, 0.010471987538039684, 0.02996978349983692, -0.010841225273907185, 0.01891316846013069, 0.008600158616900444, -0.012779722921550274, -0.010041210800409317, 0.030380047857761383, 0.023590179160237312, -0.09025807678699493, 0.011538674123585224, 0.015220792964100838, -0.026174841448664665, -0.02457481250166893, -0.06982693076133728, -0.03659554570913315, -0.09288376569747925, -0.02354915253818035, -0.0014320777263492346, -0.02067730389535427, 0.027590252459049225, 0.014154107309877872, -0.026585105806589127, 0.05587795376777649, -0.07536549121141434, 0.08787854015827179, -0.017487501725554466, -0.010446346364915371, -0.003738530445843935, -0.027549225836992264, 0.039364829659461975, 0.024656863883137703, -0.033662158995866776, 0.03163135051727295, 0.0002658702724147588, -0.0060513936914503574, -0.011497647501528263, -0.019282406195998192, 0.009518124163150787, 0.03950842097401619, 0.02672869712114334, 0.05382663384079933, 0.015087457373738289, 0.046852145344018936, -0.00658986484631896, 0.016359275206923485, -0.005712925922125578, -0.012061760760843754, 0.04521108791232109, -0.04069818556308746, -0.02601073496043682, -0.02744665928184986, 0.019323432818055153, -0.020318323746323586, -0.01997985504567623, 0.03805198147892952, -0.014892581850290298, -0.0014525909209623933, 0.03355959430336952, 0.015241306275129318, -0.004520596005022526, 0.010359165258705616, 0.10059672594070435, 0.02315940149128437, 0.008123226463794708, 0.030113374814391136, -0.057560034096241, -0.003241085447371006, -0.019733697175979614, -0.06449349969625473, 0.003992381040006876, -0.01956959068775177, -0.01405154075473547, -0.010748916305601597, 0.03263649716973305, -0.025846630334854126, 0.047139331698417664, -0.006364219821989536, 0.005702669266611338, 0.06367296725511551, -0.019138814881443977, -0.0026090224273502827, 0.02744665928184986, -0.08853496611118317, -0.06703713536262512, -0.02596971020102501, 0.014718219637870789, -0.018923426046967506, -0.08582722395658493, -0.07077053189277649, -0.025928683578968048, -0.03559039905667305, 0.03491346538066864, -0.016072090715169907, -0.0274056326597929, 0.044636718928813934, -0.022256819531321526, 0.010595067404210567, 0.061252411454916, 0.00417956430464983, -0.025190208107233047, -0.0629344955086708, 0.004520596005022526, 0.03593912348151207, 0.020892692729830742, 0.04381619393825531, 0.09321197122335434, -0.052144549787044525, -0.02562098577618599, 0.025046614930033684, 0.035733990371227264, 0.06703713536262512, -0.0011993810767307878, 0.03462627902626991, -0.005959084257483482, 0.018072128295898438, 0.04406234994530678, 0.03881097212433815, 0.033662158995866776, -0.004230847116559744, 0.03388780355453491, -0.042913611978292465, 0.024820970371365547, -0.01317972969263792, -0.0314672477543354, 0.003525706008076668, -0.0167387705296278, -0.03764171898365021, 0.05686258524656296, -0.002889796858653426, -0.001180149964056909, -0.02707742154598236, -0.02050294168293476, 0.02311837486922741, -0.014697706326842308, -0.012195096351206303, 0.016595177352428436, 0.019323432818055153, 0.02081063948571682, -0.06092419847846031, 0.03308779001235962, 0.005015477072447538, 0.0197234395891428, 0.012010477483272552, 0.038667380809783936, 0.04020586982369423, 0.0070462836883962154, 0.08254510909318924, -0.03442114591598511, 0.0411905013024807, -0.04096485674381256, -0.008143739774823189, 0.0009929670486599207, 0.031836483627557755, -0.008015532046556473, -0.02172347716987133, -0.01724134385585785, -0.011959195137023926, -0.07155003398656845, 0.02248246595263481, -0.03710837662220001, -0.009266837500035763, 0.0018500341102480888, 0.0295184925198555, 0.04422645643353462, 0.009841207414865494, -0.008123226463794708, 0.02102602832019329, -0.03879045695066452, -0.005023169331252575, 0.06207294017076492, 0.057436954230070114, -0.026872290298342705, 0.06851408630609512, 0.0028385138139128685, 0.012441255152225494, -0.018779832869768143, -0.052841998636722565, 0.03316984325647354, -0.0044821337796747684, 0.03632887452840805, -0.036144256591796875, -0.01545669510960579, -0.023610692471265793, -0.050667598843574524, 0.019097788259387016, -0.04279053211212158, -0.05017528310418129, -0.008954010903835297, -0.05230865627527237, -0.005077016539871693, 0.06736534088850021, 0.039672527462244034, -0.05025733634829521, 0.06354989111423492, 0.037928905338048935, 0.004851371515542269, -0.004007766023278236, 0.07495522499084473, -0.040390487760305405, -0.040021251887083054, -0.03799044340848923, 0.02953900583088398, 0.052144549787044525, 0.030380047857761383, 0.005841133184731007, 0.036472465842962265, -0.04804190993309021, 0.027508199214935303, 0.0070103853940963745, 0.04194949194788933, 0.0796322375535965, 0.03278009220957756, -0.038277629762887955, -0.035016030073165894, -0.005059067625552416, 0.013056650757789612, -0.014697706326842308, 0.05017528310418129, -0.0056052315048873425, 0.059775460511446, 0.0015692596789449453, 0.02994927018880844, 0.004456492606550455, 0.05087273195385933, 0.017928535118699074, -0.05846261605620384, -0.010943791829049587, -0.008148868568241596, 0.0014590012142434716, 0.003541090991348028, -0.031139034777879715, -0.031508274376392365, -0.0024833790957927704, 0.07770399749279022, 0.0070103853940963745, 0.05870877578854561, -0.02102602832019329, 0.017231086269021034, -0.0032872401643544436, -0.08779648691415787, 0.028985150158405304, -0.0302569679915905, -0.01741570606827736, -0.008671954274177551, 0.02781589701771736, -0.012174583040177822, -0.0061437031254172325, 0.005446254275739193, 0.0652729943394661, 0.0007718090782873333, -0.026544079184532166, -0.06880126893520355, -0.034339092671871185, 0.004641111008822918, -0.024308139458298683, -0.02166193723678589, -0.013272039592266083, -0.0018179821781814098, 0.006092419847846031, 0.010687376372516155, -0.015261819586157799, -0.0020128577016294003, -0.02457481250166893, 0.022995295003056526, -0.042134109884500504, 0.02350812591612339, -0.043241821229457855, -0.018954195082187653, -0.0016525945393368602, 0.05013425648212433, -0.017949048429727554, -0.032574959099292755, 0.01384640857577324, -0.027159474790096283, -0.0024551735259592533, 0.05879082530736923, -0.059570327401161194, 0.059652380645275116, 0.044390562921762466, 0.038995590060949326, -0.024308139458298683, -0.03725196793675423, 0.0008737340685911477, 0.04381619393825531, -0.018769577145576477, 0.008625799790024757, -0.08151945471763611, -0.023241454735398293, -0.020195243880152702, 0.019364459440112114, -0.020431146025657654, 0.027179988101124763, 0.012974598444998264, 0.04841114953160286, -0.0003330189501866698, 0.05120094493031502, 0.08968370407819748, 0.025887656956911087, 0.041436661034822464, 0.039303287863731384, 0.06884229183197021, 0.03850327432155609, -0.06506786495447159, 0.04158025234937668, 0.0007711680373176932, 0.006615506485104561, 0.002352607436478138, 0.007451419252902269, -0.050749652087688446, 0.01582593284547329, -0.04492390528321266, -0.018820859491825104, 0.03698529675602913, -0.032226234674453735, 0.015610544010996819, 0.026769723743200302, -0.02201066166162491, 0.002951336558908224, -0.023979928344488144, -0.038236603140830994, 0.07425777614116669, 0.03852378576993942, -0.022708110511302948, 0.054318949580192566, -0.015774650499224663, 0.06580634415149689, 0.03165186569094658, 0.010533527471125126, 0.052144549787044525, 0.04104690998792648, 0.04336490109562874, 0.0660114735364914, -0.046811118721961975, -0.015241306275129318, -0.05981648713350296, 0.001412846497260034, -0.015354129485785961, -0.050052203238010406, -0.001116046216338873, -0.015231049619615078, 0.08508874475955963, -0.04086229205131531, 0.005369329825043678, 0.027323581278324127, -0.018625983968377113, 0.05600103363394737, 0.038236603140830994, 0.01889265514910221, -0.02958003245294094, -0.048903465270996094, 0.046072643250226974, -0.009482226334512234, -0.002859027124941349, -0.04299566522240639, -0.007600140292197466, -0.06149856746196747, 0.0684320330619812, 0.009282222017645836, 0.06059598922729492, -0.010677119717001915, 0.007148849777877331, 0.09550945460796356, -0.001442334265448153, 0.024718403816223145, -0.008512977510690689, -0.023220941424369812, -0.03628784790635109, 0.011989964172244072, -0.009364275261759758, -0.001978241605684161, 0.0387084074318409, -0.04701625183224678, -0.03784685209393501, 0.0013884871732443571, 0.04775472730398178, -0.014902838505804539, -0.07827836275100708, 0.03239034116268158, -0.03171340376138687, 0.020451659336686134, 0.005248814821243286, 0.01987728849053383, 0.02131321281194687, 0.00951299536973238, 0.013313066214323044, 0.0015692596789449453, 0.06428836286067963, -0.02921079471707344, -0.0434059277176857, -0.04767267405986786, 0.005738567095249891, -0.04882141202688217, 0.018636241555213928, -0.08324255794286728, 0.04853422939777374, -0.030749283730983734, 0.03842122107744217, 0.013107934035360813, -0.053621500730514526, 0.059775460511446, 0.07544754445552826, -0.017364421859383583, 0.055057425051927567, -0.032944198697805405, -0.04960091412067413, -0.007415521424263716, -0.017364421859383583, 0.010374549776315689, -0.02244143933057785, -0.02028755284845829, -0.007892453111708164, 0.003120570443570614, 0.023323506116867065, -0.022502979263663292, -0.025744063779711723, 0.0138874351978302, 0.02131321281194687, -0.010656606405973434, -0.026462025940418243, 0.02631843462586403, 0.008148868568241596, 0.0055180503986775875, 0.015405411832034588, -0.050011176615953445, 0.004874448757618666, 0.04336490109562874, -0.007630909793078899, 0.029108228161931038, 0.008497592061758041, 0.048616278916597366, 0.05874980241060257, -0.014328469522297382, -0.015897728502750397, -0.013559224084019661, 0.0083693852648139, -0.029149254783988, -0.004984707105904818, -0.011661753058433533, 0.0050847092643380165, -0.060678042471408844, 0.05349842086434364, 0.0012628438416868448, 0.06330373138189316, -0.009302735328674316, -0.054975371807813644, -0.03745710104703903, 0.009384788572788239, 0.05403176322579384, -0.04100588336586952, 0.008677083067595959, 0.0074565475806593895, 0.04114947468042374, -0.010097621940076351, -0.004079562146216631, -0.035057056695222855, -0.011733549647033215, 0.0032487777061760426, -0.00676422705873847, -0.08303742855787277, -0.0003052940883208066, 0.03249290585517883, -0.029662085697054863, -0.014656680636107922, 0.006810382008552551, -0.036800678819417953, 0.020123448222875595, 0.0009173246216960251, -0.037928905338048935, 0.00417443597689271, 0.10510963201522827, -0.04205205664038658, -0.04084177687764168, -0.0073180836625397205, -0.016769539564847946, -0.004377003759145737, -0.0027333837933838367, -0.04701625183224678, -0.020861923694610596, 0.029026176780462265, -0.043282847851514816, 0.039303287863731384, 0.06166267395019531, -0.013825896196067333, -0.03600066527724266, 0.024308139458298683, -0.05600103363394737, -0.0034000626765191555, -0.04121101647615433, 0.004430850967764854, 0.014646423980593681, -0.041128963232040405, -0.05444202944636345, -0.06531402468681335, -0.000631101371254772, 0.011374568566679955, -0.03234931454062462, -0.08476053923368454, 0.07204235345125198, 0.05300610512495041, -0.007892453111708164, 0.015600287355482578, 0.034728843718767166, 0.03343651443719864, 0.018123410642147064, -0.011097640730440617, 0.014154107309877872, 0.07003206014633179, -0.01685159280896187, 0.02492353692650795, 0.025108154863119125, 0.020667048171162605, 0.015046430751681328, -0.011343798600137234, -0.033292923122644424, -0.031221088021993637, -0.033292923122644424, 0.0008134765084832907, -0.012328431941568851, -0.013446401804685593, -0.09148886799812317, -0.10806352645158768, -0.010995074175298214, -0.012143814004957676, 0.01691313274204731, 0.06892434507608414, -0.049682967364788055, -0.046072643250226974, -0.045046985149383545, -0.03023645468056202, 0.03136467933654785, 0.040390487760305405, -0.017169546335935593, -0.0188516303896904, 0.01639004610478878, 0.01514899730682373, 0.02923130802810192, -0.0034257040824741125, -0.0339493453502655, -0.0004794960259459913, -0.06576531380414963, -0.0570266917347908, -0.028574885800480843, 0.032205723226070404, -0.021169621497392654, 0.020554224029183388, -0.08004250377416611, -0.0270363949239254, -0.039323803037405014, 0.03497500345110893, 0.04170333221554756, -0.002529533812776208, -0.03493397682905197, 0.01917984150350094, -0.005630873143672943, -0.053580474108457565, 0.023323506116867065, -0.02283119037747383, 0.0369647853076458, -0.018277259543538094, -0.02453378587961197, -0.036164768040180206, 0.0033898060210049152, 0.021169621497392654, 0.0031077496241778135, 0.031836483627557755, 0.015005405060946941, 0.013784869574010372, -0.03694427013397217, 0.04194949194788933, -0.0260312482714653, 0.028985150158405304, 0.0334775410592556, 0.07511933147907257, 0.04976502060890198, 0.0281441081315279, 0.06777560710906982, 0.02320042811334133, -0.041785385459661484, 0.04279053211212158, 0.003092364640906453, -0.024636350572109222, 0.04352900758385658, -0.02422608807682991, -0.03559039905667305, -0.005615488160401583, 0.03191853687167168, -0.053293291479349136, 0.016728512942790985, 0.005033425986766815, -0.002994926879182458, -0.029313361272215843, 0.007902709767222404, -0.013220756314694881, -0.0023974801879376173, 0.02209271490573883, 0.08992986381053925, -0.025887656956911087, 0.0320005901157856, -0.03811352327466011, -0.051816340535879135, -0.01615414395928383, -0.015928499400615692, -0.041436661034822464, 0.010379678569734097, -0.03202110156416893, -0.03981611877679825, -0.04886243864893913, -0.00418982096016407, 0.036082714796066284, 0.06966282427310944, -0.01852341741323471, 0.06609352678060532, 0.01442077849060297, 0.02248246595263481, -0.031200574710965157, -0.035446807742118835, -0.03023645468056202, 0.01852341741323471, 0.016810566186904907, -0.011641239747405052, -0.06387809664011002, -0.012902801856398582, 0.011733549647033215, 0.006436015944927931, -0.04779575392603874, 0.049272701144218445, 0.002797487424686551, -0.00398981710895896, 0.060513935983181, -0.020708074793219566, -0.00018750345043372363, -0.04336490109562874, 0.036882732063531876, -0.026995370164513588, 0.0128310052677989, 0.029805677011609077, -0.018605470657348633, -0.010656606405973434, 0.026133814826607704, 0.020359350368380547, -0.04012381657958031, -0.049970149993896484, 0.018225977197289467, 0.013959231786429882, -0.02496456354856491, 0.06892434507608414, 0.005702669266611338, -0.002735947957262397, 0.008841188624501228, 0.006718072574585676, -0.013764356262981892, 0.04791883006691933, 0.0012166891247034073, 0.03353907912969589, -0.005753952078521252, -0.0070103853940963745, -0.01819520629942417, -0.03390831872820854, 0.05198044329881668, -0.011056614108383656, 0.004687265958636999, -0.025805603712797165, -0.01353871077299118, 0.05013425648212433, -0.025477392598986626, -0.012554077431559563, 0.02457481250166893, -0.04906757175922394, -0.037559665739536285, -0.0302569679915905, -0.035733990371227264, -0.009133501909673214, -0.04992912709712982, -0.08221689611673355, -0.021108081564307213, -0.09403250366449356, -0.03772377222776413, 0.008277075365185738, -0.009036064147949219, -0.020892692729830742, 0.018338799476623535, 0.02237989939749241, -0.020390119403600693, -0.028697965666651726, -0.027118448168039322, -0.0036000662948936224, -0.019518308341503143, 0.05189839377999306, -0.0448828786611557, 0.06478068232536316, 0.010933535173535347, -0.009092475287616253, -0.024779943749308586, -0.03776479884982109, 0.07200133055448532, 0.05161120742559433, 0.014913095161318779, -0.013046394102275372, -0.004938552621752024, 0.05948827415704727, -0.021538859233260155, 0.01891316846013069, -0.03776479884982109, 0.0037180171348154545, -0.03665708750486374, 0.026974856853485107, -0.01728237047791481, -0.02201066166162491, 0.004148794338107109, -0.031877510249614716, 0.03485192358493805, 0.018164437264204025, -0.07105772197246552, 0.04332387447357178, 0.005589846521615982, -0.003171853255480528, 0.0035487832501530647, -0.03370318561792374, -0.023754283785820007, -0.024472245946526527, -0.0330057367682457, 0.06638070940971375, 0.027836410328745842, 0.03559039905667305, -0.0533343181014061, -0.0013961795484647155, 0.00011097960668848827, 0.04381619393825531, 0.007523215375840664, -0.08820675313472748, -0.03193904832005501, 0.019990112632513046, 0.0020000368822366, 0.00749244587495923, 0.011907911859452724, -0.049313727766275406, -0.015077200718224049, 0.050380416214466095, -0.02313888818025589, 0.0369647853076458, 0.024410706013441086, 0.02562098577618599, 0.031508274376392365, 0.01514899730682373, 0.06999102979898453 ]
24,498
knockknock.discord_sender
discord_sender
Discord sender wrapper: execute func, send a Discord message with the end status (sucessfully finished or crashed) at the end. Also send a Discord message before executing func. `webhook_url`: str The Discord webhook URL for posting messages. Visit https://support.discordapp.com/hc/en-us/articles/228383668-Intro-to-Webhooks to set up your webhook and get your URL.
def discord_sender(webhook_url: str): """ Discord sender wrapper: execute func, send a Discord message with the end status (sucessfully finished or crashed) at the end. Also send a Discord message before executing func. `webhook_url`: str The Discord webhook URL for posting messages. Visit https://support.discordapp.com/hc/en-us/articles/228383668-Intro-to-Webhooks to set up your webhook and get your URL. """ def decorator_sender(func): def send_message(text: str): headers = {'Content-Type': 'application/json'} payload = json.dumps({'content': text}) r = requests.post(url=webhook_url, data=payload, headers=headers) @functools.wraps(func) def wrapper_sender(*args, **kwargs): start_time = datetime.datetime.now() host_name = socket.gethostname() func_name = func.__name__ # Handling distributed training edge case. # In PyTorch, the launch of `torch.distributed.launch` sets up a RANK environment variable for each process. # This can be used to detect the master process. # See https://github.com/pytorch/pytorch/blob/master/torch/distributed/launch.py#L211 # Except for errors, only the master process will send notifications. if 'RANK' in os.environ: master_process = (int(os.environ['RANK']) == 0) host_name += ' - RANK: %s' % os.environ['RANK'] else: master_process = True if master_process: contents = ['Your training has started 🎬', 'Machine name: %s' % host_name, 'Main call: %s' % func_name, 'Starting date: %s' % start_time.strftime(DATE_FORMAT)] text = '\n'.join(contents) send_message(text=text) try: value = func(*args, **kwargs) if master_process: end_time = datetime.datetime.now() elapsed_time = end_time - start_time contents = ["Your training is complete 🎉", 'Machine name: %s' % host_name, 'Main call: %s' % func_name, 'Starting date: %s' % start_time.strftime(DATE_FORMAT), 'End date: %s' % end_time.strftime(DATE_FORMAT), 'Training duration: %s' % str(elapsed_time)] try: str_value = str(value) contents.append('Main call returned value: %s'% str_value) except: contents.append('Main call returned value: %s'% "ERROR - Couldn't str the returned value.") text = '\n'.join(contents) send_message(text=text) return value except Exception as ex: end_time = datetime.datetime.now() elapsed_time = end_time - start_time contents = ["Your training has crashed ☠️", 'Machine name: %s' % host_name, 'Main call: %s' % func_name, 'Starting date: %s' % start_time.strftime(DATE_FORMAT), 'Crash date: %s' % end_time.strftime(DATE_FORMAT), 'Crashed training duration: %s\n\n' % str(elapsed_time), "Here's the error:", '%s\n\n' % ex, "Traceback:", '%s' % traceback.format_exc()] text = '\n'.join(contents) send_message(text=text) raise ex return wrapper_sender return decorator_sender
(webhook_url: str)
[ -0.0033576758578419685, -0.005362478084862232, -0.052154265344142914, 0.046585917472839355, 0.024645831435918808, -0.005911470390856266, -0.0660359263420105, 0.047566261142492294, 0.03674326837062836, -0.020744064822793007, 0.03852749243378639, 0.024214480072259903, 0.0001885629171738401, -0.04278218373656273, 0.004536538850516081, 0.010577904991805553, 0.04619377851486206, -0.00033147860085591674, 0.0213322713971138, -0.06148713454604149, 0.03929216042160988, 0.024390943348407745, 0.0017131499480456114, 0.002425124403089285, -0.009362279437482357, 0.05631092190742493, 0.014714953489601612, 0.0027670192066580057, -0.016646230593323708, 0.014646329917013645, 0.0019361780723556876, -0.059055883437395096, -0.015518834814429283, 0.026508484035730362, -0.012979745864868164, -0.0072447373531758785, -0.09074058383703232, -0.011528837494552135, -0.13175815343856812, -0.0352923609316349, -0.015989400446414948, -0.01554824598133564, 0.016763871535658836, 0.009244637563824654, -0.02835153043270111, 0.0015366881852969527, -0.05897745490074158, 0.07799611985683441, -0.025292858481407166, -0.04160577058792114, -0.009411295875906944, -0.033410102128982544, 0.060075439512729645, 0.02801821380853653, -0.024547796696424484, 0.05082099884748459, 0.03888041898608208, 0.018802985548973083, -0.019185319542884827, -0.016499178484082222, -0.008984846994280815, 0.05054650455713272, 0.008068225346505642, 0.06697706133127213, 0.032057225704193115, 0.0196852944791317, -0.016312913969159126, 0.005524234846234322, -0.0012364580761641264, 0.016871709376573563, 0.053801242262125015, -0.030782781541347504, 0.0015256593469530344, -0.03056710585951805, 0.01241114642471075, -0.03384145349264145, -0.032390546053647995, 0.008798581548035145, 0.033174820244312286, 0.011568051762878895, 0.02050878293812275, 0.027626074850559235, -0.02786135859787464, -0.01046026311814785, 0.06701627373695374, -0.009024060331285, -0.015469818376004696, 0.004445856902748346, -0.05576192960143089, -0.0007499626372009516, -0.03133177384734154, -0.04521343484520912, -0.005352674517780542, -0.021430306136608124, -0.015861954540014267, -0.014940432272851467, 0.032763075083494186, -0.02456740476191044, 0.01874416507780552, -0.010724956169724464, 0.007151604630053043, 0.10642607510089874, 0.0115876579657197, 0.012646429240703583, 0.047644685953855515, -0.07944702357053757, -0.049526944756507874, -0.034312017261981964, 0.005205623339861631, -0.032586611807346344, -0.08807404339313507, -0.0750942975282669, -0.03890002518892288, -0.04478208348155022, 0.027508433908224106, -0.03493943810462952, -0.0463506318628788, 0.034861009567976, -0.007705498952418566, -0.006053620018064976, 0.07768240571022034, 0.01964608021080494, -0.008921124041080475, -0.07187877595424652, -0.010107340291142464, 0.03542960807681084, 0.013283652253448963, 0.03586095944046974, 0.049330879002809525, -0.04874267056584358, -0.019783329218626022, 0.02493993565440178, 0.011048469692468643, 0.06870245933532715, 0.020626423880457878, 0.04282139614224434, 0.005377183202654123, 0.03999800980091095, 0.035057079046964645, 0.007332968059927225, 0.020155860111117363, -0.007038865238428116, 0.031194524839520454, -0.029155410826206207, 0.058232396841049194, 0.004237534012645483, -0.030469071120023727, 0.011391589418053627, -0.0011224931804463267, -0.050232794135808945, 0.07768240571022034, 0.0007830492686480284, -0.015087484382092953, 0.0013491975842043757, -0.04380173981189728, 0.04646827653050423, -0.03917451947927475, -0.014107140712440014, 0.04105677828192711, 0.02797899954020977, -0.007877059280872345, -0.049409303814172745, 0.040625426918268204, -0.017606966197490692, 0.030665140599012375, 0.024312514811754227, 0.03456690534949303, 0.009308360517024994, -0.010538690723478794, 0.09544622898101807, -0.03590017184615135, 0.04780154302716255, 0.0010336495470255613, 0.004855150356888771, -0.019008858129382133, 0.0463506318628788, -0.008940731175243855, -0.02854759804904461, -0.02325374446809292, 0.0024802687112241983, -0.060036227107048035, -0.004014506004750729, -0.04478208348155022, -0.03840985149145126, 0.0013712552608922124, 0.021763622760772705, 0.043958596885204315, -0.0026689846999943256, 0.0040635233744978905, 0.016557998955249786, -0.014263995923101902, 0.011205324903130531, 0.07113371044397354, 0.06046757847070694, 0.0126170190051198, 0.02760646864771843, 0.005617367569357157, 0.00598989799618721, 0.035586465150117874, -0.06231062486767769, 0.04191948100924492, 0.02613595314323902, 0.059879370033741, -0.020744064822793007, -0.035625677555799484, -0.0008136850083246827, -0.03601781651377678, 0.029684796929359436, -0.08101557195186615, -0.040507785975933075, -0.02850838378071785, -0.04772311449050903, -0.012862104922533035, 0.08830932527780533, 0.03935098275542259, -0.06870245933532715, 0.057330477982759476, 0.03391987830400467, 0.04987987130880356, 0.004958086647093296, 0.05042886361479759, -0.026881014928221703, -0.06799661368131638, -0.015842348337173462, 0.0459584966301918, 0.04599770903587341, 0.025979097932577133, -0.013195421546697617, 0.04693884029984474, 0.0042890021577477455, -0.0012817989336326718, 0.010146553628146648, 0.006264394149184227, 0.07031022757291794, 0.009955386631190777, 0.009092684835195541, -0.0151757150888443, 0.013116993941366673, 0.018312813714146614, -0.031978800892829895, 0.033037569373846054, -0.002396939555183053, 0.04458601400256157, -0.0010630597826093435, 0.059330377727746964, -0.02437133528292179, 0.04333117604255676, 0.02343020588159561, -0.08689763396978378, 0.009107389487326145, -0.019832346588373184, 0.024214480072259903, 0.016812888905405998, -0.03454729914665222, -0.040468573570251465, -0.03170430287718773, 0.040507785975933075, -0.048389747738838196, 0.05093863978981972, 0.0053673796355724335, 0.0009778925450518727, -0.01386205479502678, -0.07325125485658646, 0.00873485952615738, -0.03819417580962181, -0.05395809933543205, -0.01789126545190811, 0.01694033294916153, 0.005426200572401285, 0.020646030083298683, -0.0043135108426213264, 0.03713540732860565, 0.010558297857642174, -0.03542960807681084, -0.05509529635310173, -0.032351329922676086, -0.013607165776193142, -0.02260671742260456, -0.01421497855335474, 0.0031861159950494766, -0.02035192772746086, 0.012587608769536018, -0.0190774817019701, -0.02633202262222767, 0.0006445757462643087, -0.011166110634803772, 0.04086071252822876, -0.06446737796068192, 0.011087683029472828, -0.013411097228527069, -0.014263995923101902, 0.0066908434964716434, 0.06556536257266998, -0.03023378923535347, -0.02343020588159561, 0.006205573212355375, -0.032096441835165024, -0.006362428423017263, 0.04250768944621086, -0.05223269388079643, 0.06340860575437546, 0.02670455351471901, -0.013822841458022594, -0.05976172909140587, -0.0003117185551673174, 0.006872206926345825, 0.041292060166597366, -0.015744313597679138, -0.017205026000738144, -0.06321253627538681, -0.0009546093642711639, 0.014175765216350555, 0.004541440401226282, -0.008288802579045296, 0.02876327373087406, 0.04603692516684532, 0.04815446585416794, 0.014430654235184193, 0.050232794135808945, 0.07897645980119705, 0.011734710074961185, 0.0631733238697052, 0.059879370033741, 0.08336839824914932, 0.03207683563232422, -0.0479976087808609, 0.034762974828481674, -0.003879708703607321, 0.004759566858410835, 0.023685095831751823, -0.015930579975247383, -0.06387916952371597, -0.008087832480669022, -0.039272554218769073, 0.000297626102110371, 0.06148713454604149, -0.00011051839828724042, 0.01808733493089676, 0.05713441222906113, -0.005784025881439447, 0.039723511785268784, -0.02839074283838272, -0.015724707394838333, 0.052115052938461304, 0.013234634883701801, -0.03986075893044472, 0.05889903008937836, 0.013342472724616528, 0.05835003778338432, 0.048350535333156586, 0.005132097285240889, 0.03601781651377678, 0.010881811380386353, 0.026959441602230072, 0.061643991619348526, -0.03576292470097542, -0.022057725116610527, -0.07160428166389465, 0.010979845188558102, -0.03754714876413345, -0.07156506180763245, -0.03154744952917099, 0.008651530370116234, 0.09199541807174683, -0.07160428166389465, 0.006195770110934973, 0.022410649806261063, -0.012509181164205074, 0.06415367126464844, 0.03129256144165993, 0.002725354628637433, -0.003958136308938265, -0.03901766613125801, 0.012666036374866962, -0.007641776464879513, -0.002931226510554552, -0.024194873869419098, -0.021979298442602158, -0.05219348147511482, 0.035664889961481094, 0.021528340876102448, 0.02839074283838272, -0.028900522738695145, -0.011028862558305264, 0.07536879926919937, 0.01130335871130228, 0.0504680760204792, -0.03844906762242317, -0.010244588367640972, -0.05850689113140106, 0.012332719750702381, -0.019371584057807922, 0.002681239042431116, 0.040468573570251465, -0.046781983226537704, -0.043056681752204895, -0.0021285705734044313, 0.03719422593712807, -0.011381786316633224, -0.08070186525583267, 0.023783130571246147, -0.011666085571050644, 0.04089992493391037, 0.01755794882774353, 0.01936178095638752, 0.040625426918268204, -0.014754167757928371, 0.023783130571246147, 0.009524035267531872, 0.07748633623123169, -0.03584135323762894, -0.06387916952371597, -0.022175366058945656, -0.006592809222638607, -0.03954705223441124, 0.0011365856043994427, -0.050977855920791626, 0.014626722782850266, -0.02035192772746086, 0.03188076615333557, 0.013822841458022594, -0.03146902099251747, 0.05674227327108383, 0.07105528563261032, -0.0005333680310286582, 0.03827260434627533, -0.01440124399960041, -0.032390546053647995, -0.014440457336604595, 0.0041885171085596085, -0.018852002918720245, -0.02493993565440178, -0.03278268128633499, -0.014126747846603394, 0.0003013024106621742, -0.00002161733755201567, -0.027096690610051155, 0.0209205262362957, -0.015450211241841316, 0.04066464304924011, -0.024390943348407745, -0.018155958503484726, 0.017567751929163933, -0.009788728319108486, 0.010597511194646358, 0.022175366058945656, -0.025822244584560394, 0.01821477897465229, 0.042115550488233566, -0.01038183644413948, -0.02272435836493969, 0.020744064822793007, 0.014832594431936741, 0.04713490977883339, 0.004320863168686628, -0.005411495454609394, -0.044115450233221054, -0.012391540221869946, -0.007862353697419167, -0.009999502450227737, -0.002681239042431116, 0.027841750532388687, -0.07905488461256027, 0.02370470203459263, 0.0013724806485697627, 0.027135903015732765, 0.028743667528033257, -0.04191948100924492, -0.026037920266389847, 0.022096939384937286, 0.06736919283866882, -0.04905638098716736, 0.057252053171396255, -0.00663692457601428, 0.053644388914108276, -0.005901666823774576, -0.011842547915875912, -0.03539039567112923, 0.00023175928799901158, -0.0008002052782103419, 0.0021726859267801046, -0.05697755515575409, 0.010715153068304062, 0.0229792483150959, -0.018283402547240257, 0.008004503324627876, -0.01310719083994627, -0.0196852944791317, 0.045801639556884766, 0.042272403836250305, -0.0393901951611042, 0.0032866010442376137, 0.07332967966794968, -0.01853829249739647, -0.03417477011680603, -0.011450409889221191, -0.010979845188558102, 0.01245036069303751, -0.011068076826632023, -0.04097835347056389, -0.009200522676110268, 0.02354784682393074, -0.039272554218769073, 0.03537078946828842, 0.0611342117190361, 0.00041542050894349813, -0.05838925018906593, 0.019704900681972504, -0.030939636752009392, -0.01068574283272028, -0.033861059695482254, -0.0018883863231167197, 0.023783130571246147, -0.0019018660532310605, -0.05521293729543686, -0.06011465564370155, -0.02452819049358368, 0.03754714876413345, 0.020704852417111397, -0.07489823549985886, 0.07332967966794968, 0.043840955942869186, 0.008930928073823452, 0.002676337258890271, 0.012528788298368454, 0.023645881563425064, 0.026567304506897926, -0.015028663910925388, 0.016175664961338043, 0.06211455538868904, -0.0021494028624147177, 0.04352724552154541, 0.019097087904810905, 0.029802437871694565, 0.04117441922426224, -0.013822841458022594, -0.039037272334098816, -0.016714854165911674, -0.040507785975933075, -0.031076883897185326, -0.001099822693504393, -0.008171161636710167, -0.06674177199602127, -0.07442766427993774, -0.008161358535289764, -0.04638984799385071, 0.025822244584560394, 0.06462423503398895, -0.0664672777056694, -0.07219248265028, -0.07297676056623459, -0.007548643741756678, 0.01686190627515316, -0.009891664609313011, -0.020704852417111397, 0.012744463980197906, 0.001649427693337202, 0.020685244351625443, 0.036370739340782166, -0.0028748568147420883, -0.009386787191033363, -0.010881811380386353, -0.021881263703107834, -0.0718003436923027, -0.05858531966805458, 0.008558397181332111, 0.0028748568147420883, 0.0036566806957125664, -0.08768191188573837, -0.0463506318628788, -0.050350435078144073, 0.033292461186647415, 0.030547499656677246, -0.005357576534152031, -0.03684130311012268, 0.041252847760915756, 0.0035512938629835844, -0.06819268316030502, 0.015352176502346992, -0.011460213921964169, 0.016430554911494255, -0.05874217301607132, -0.031978800892829895, -0.0389588437974453, -0.035508036613464355, 0.03223368898034096, -0.012783677317202091, 0.021881263703107834, -0.0027081985026597977, 0.01735207810997963, -0.03166509047150612, 0.040390145033597946, -0.030488677322864532, 0.0084113460034132, 0.07093764841556549, 0.059134311974048615, 0.03237093612551689, 0.03170430287718773, 0.0681142583489418, 0.04191948100924492, -0.04548793286085129, 0.04089992493391037, 0.012675839476287365, -0.015097287483513355, 0.026724159717559814, -0.026900621131062508, -0.026371236890554428, -0.018901020288467407, 0.01821477897465229, -0.07191798835992813, -0.011362179182469845, 0.0028895619325339794, -0.009220128878951073, -0.01830301061272621, 0.029567155987024307, -0.005568350199609995, -0.03342970833182335, -0.022469470277428627, 0.08027051389217377, -0.027390792965888977, 0.03848828002810478, -0.04293903708457947, -0.05317382514476776, -0.032880716025829315, -0.007612366229295731, 0.005068375263363123, 0.006837894674390554, -0.05489922687411308, -0.04556635767221451, -0.03839024528861046, 0.010332819074392319, 0.029429906979203224, 0.05713441222906113, -0.015401193872094154, 0.06160477548837662, -0.012960138730704784, 0.01964608021080494, 0.0030023015569895506, -0.029233839362859726, -0.058153968304395676, 0.006926125846803188, 0.014695346355438232, -0.04697805270552635, -0.04701726883649826, -0.03544921427965164, -0.01357775554060936, 0.015656083822250366, -0.04568399861454964, 0.0623498372733593, -0.021881263703107834, -0.004330666735768318, 0.06670255959033966, -0.01083279401063919, 0.02772410959005356, -0.01821477897465229, 0.027096690610051155, -0.0006960437749512494, -0.029527941718697548, 0.0443115197122097, -0.03454729914665222, -0.0003553744754754007, 0.01290131825953722, 0.032096441835165024, -0.007803533226251602, -0.017175614833831787, 0.0002899671671912074, 0.02797899954020977, -0.025155609473586082, 0.04713490977883339, -0.026939835399389267, -0.0045144809409976006, -0.007798631209880114, -0.020253892987966537, -0.02141069807112217, 0.025096789002418518, 0.020704852417111397, 0.010352426208555698, -0.0010863429633900523, -0.006592809222638607, -0.005313461180776358, -0.014577705413103104, 0.05858531966805458, -0.04191948100924492, 0.00984264723956585, -0.013832644559442997, -0.013489524833858013, 0.04995829612016678, -0.012744463980197906, -0.03384145349264145, 0.006813386455178261, -0.027665289118885994, -0.02752804197371006, -0.014597312547266483, -0.028665238991379738, -0.024841900914907455, -0.05697755515575409, -0.07442766427993774, -0.02617516741156578, -0.07336889952421188, -0.024253694340586662, 0.009631873108446598, -0.010273998603224754, -0.015724707394838333, 0.03503747284412384, 0.008185867220163345, -0.043958596885204315, -0.0410175658762455, -0.03584135323762894, 0.001919022062793374, -0.01566588692367077, 0.06474187225103378, -0.05878138542175293, 0.06046757847070694, 0.031076883897185326, 0.001644526026211679, -0.050311218947172165, -0.027371186763048172, 0.0393901951611042, 0.0463506318628788, 0.019655883312225342, -0.027782930061221123, 0.0015183067880570889, 0.07317283004522324, -0.004235083237290382, 0.024332121014595032, -0.05160527303814888, 0.00225601508282125, -0.019655883312225342, 0.04909559339284897, -0.010940631851553917, 0.007788828108459711, -0.009239736013114452, -0.01816576160490513, 0.032135654240846634, 0.05266404524445534, -0.04893874004483223, 0.031567055732011795, 0.03429241105914116, -0.0004840445180889219, -0.006166359875351191, -0.03880199044942856, -0.03219447657465935, -0.012254292145371437, -0.027626074850559235, 0.08627021312713623, 0.018028514459729195, 0.0025684996508061886, 0.0063379197381436825, 0.015558049082756042, -0.010813186876475811, 0.047527045011520386, -0.02354784682393074, -0.08195670694112778, -0.01989116705954075, 0.026449663564562798, -0.01989116705954075, -0.004536538850516081, 0.0031321970745921135, -0.016959939152002335, -0.022704752162098885, 0.06160477548837662, -0.04340960457921028, 0.0005532812792807817, 0.027331972494721413, 0.017734412103891373, 0.02235182747244835, 0.013509131036698818, 0.0873681977391243 ]
24,499
knockknock.email_sender
email_sender
Email sender wrapper: execute func, send an email with the end status (sucessfully finished or crashed) at the end. Also send an email before executing func. `recipient_emails`: list[str] A list of email addresses to notify. `sender_email`: str (default=None) The email adress to send the messages. If None, use the same address as the first recipient email in `recipient_emails` if length of `recipient_emails` is more than 0.
def email_sender(recipient_emails: list, sender_email: str = None): """ Email sender wrapper: execute func, send an email with the end status (sucessfully finished or crashed) at the end. Also send an email before executing func. `recipient_emails`: list[str] A list of email addresses to notify. `sender_email`: str (default=None) The email adress to send the messages. If None, use the same address as the first recipient email in `recipient_emails` if length of `recipient_emails` is more than 0. """ if sender_email is None and len(recipient_emails) > 0: sender_email = recipient_emails[0] yag_sender = yagmail.SMTP(sender_email) def decorator_sender(func): @functools.wraps(func) def wrapper_sender(*args, **kwargs): start_time = datetime.datetime.now() host_name = socket.gethostname() func_name = func.__name__ # Handling distributed training edge case. # In PyTorch, the launch of `torch.distributed.launch` sets up a RANK environment variable for each process. # This can be used to detect the master process. # See https://github.com/pytorch/pytorch/blob/master/torch/distributed/launch.py#L211 # Except for errors, only the master process will send notifications. if 'RANK' in os.environ: master_process = (int(os.environ['RANK']) == 0) host_name += ' - RANK: %s' % os.environ['RANK'] else: master_process = True if master_process: contents = ['Your training has started.', 'Machine name: %s' % host_name, 'Main call: %s' % func_name, 'Starting date: %s' % start_time.strftime(DATE_FORMAT)] for i in range(len(recipient_emails)): current_recipient = recipient_emails[i] yag_sender.send(current_recipient, 'Training has started 🎬', contents) try: value = func(*args, **kwargs) if master_process: end_time = datetime.datetime.now() elapsed_time = end_time - start_time contents = ["Your training is complete.", 'Machine name: %s' % host_name, 'Main call: %s' % func_name, 'Starting date: %s' % start_time.strftime(DATE_FORMAT), 'End date: %s' % end_time.strftime(DATE_FORMAT), 'Training duration: %s' % str(elapsed_time)] try: str_value = str(value) contents.append('Main call returned value: %s'% str_value) except: contents.append('Main call returned value: %s'% "ERROR - Couldn't str the returned value.") for i in range(len(recipient_emails)): current_recipient = recipient_emails[i] yag_sender.send(current_recipient, 'Training has sucessfully finished 🎉', contents) return value except Exception as ex: end_time = datetime.datetime.now() elapsed_time = end_time - start_time contents = ["Your training has crashed.", 'Machine name: %s' % host_name, 'Main call: %s' % func_name, 'Starting date: %s' % start_time.strftime(DATE_FORMAT), 'Crash date: %s' % end_time.strftime(DATE_FORMAT), 'Crashed training duration: %s\n\n' % str(elapsed_time), "Here's the error:", '%s\n\n' % ex, "Traceback:", '%s' % traceback.format_exc()] for i in range(len(recipient_emails)): current_recipient = recipient_emails[i] yag_sender.send(current_recipient, 'Training has crashed ☠️', contents) raise ex return wrapper_sender return decorator_sender
(recipient_emails: list, sender_email: Optional[str] = None)
[ 0.04551088064908981, 0.03981700912117958, -0.051886413246393204, 0.05409178510308266, -0.0021590101532638073, -0.039756860584020615, -0.07923303544521332, 0.014505339786410332, 0.03402289003133774, -0.04322531074285507, 0.057580284774303436, -0.003222852014005184, 0.022194072604179382, -0.027025843039155006, -0.0255823265761137, 0.020038820803165436, 0.04739547148346901, -0.017312178388237953, 0.044829219579696655, -0.03424342721700668, 0.04466882720589638, -0.012059380300343037, 0.012911456637084484, 0.001012466731481254, 0.005338005255907774, 0.0357871875166893, 0.04270404204726219, -0.013011700473725796, 0.008846553042531013, 0.016109246760606766, 0.006886778399348259, -0.09807895123958588, -0.044548533856868744, 0.013853752054274082, 0.02680530585348606, 0.008565869182348251, -0.055214520543813705, -0.004982138052582741, -0.06407611072063446, -0.02181314490735531, 0.02678525820374489, -0.02985273115336895, 0.04418765380978584, -0.004415758419781923, -0.03851383179426193, -0.0017229476943612099, -0.05938468128442764, 0.0738198459148407, -0.011618305929005146, -0.038894761353731155, -0.014786023646593094, -0.04206247627735138, 0.06058761104941368, 0.015036634169518948, -0.029371559619903564, 0.05401159077882767, 0.05337002873420715, 0.046032149344682693, 0.0055084205232560635, -0.0268855020403862, 0.018274523317813873, 0.017582837492227554, 0.009112200699746609, 0.06283308565616608, 0.026925599202513695, 0.040899645537137985, -0.023898223415017128, 0.01012466661632061, -0.03454416245222092, 0.023156417533755302, 0.04346589744091034, -0.013943972066044807, -0.048919182270765305, -0.03065468557178974, -0.0011985450983047485, 0.016650566831231117, -0.08079684525728226, 0.03558669984340668, 0.025722669437527657, -0.013332482427358627, 0.034884992986917496, 0.046393029391765594, -0.016039077192544937, -0.01043542381376028, 0.10802318155765533, -0.007012083660811186, -0.00798445288091898, 0.010816352441906929, -0.046834103763103485, 0.016480151563882828, 0.0026113621424883604, -0.014324899762868881, 0.03719060868024826, 0.002861972665414214, 0.01107698678970337, -0.029612144455313683, 0.025281595066189766, -0.030093317851424217, 0.006811595056205988, -0.03107571043074131, 0.03791236877441406, 0.05353041738271713, 0.004217776004225016, -0.017221957445144653, 0.023737832903862, -0.04502970725297928, -0.05353041738271713, -0.008184941485524178, 0.006776509806513786, -0.0478365458548069, -0.09005941450595856, -0.055575400590896606, -0.0675245150923729, -0.06588050723075867, 0.008756333030760288, -0.02925126627087593, -0.05930448696017265, 0.041501108556985855, 0.0014811084838584065, -0.017592862248420715, 0.07009076327085495, 0.017502641305327415, -0.042463455349206924, -0.048758793622255325, -0.004949558526277542, 0.024740274995565414, 0.010425399988889694, 0.025381838902831078, 0.08404476195573807, -0.08151860535144806, -0.021672802045941353, 0.010134691372513771, 0.00351356016471982, 0.03829329460859299, 0.03550650551915169, 0.010796302929520607, -0.012991651892662048, 0.03265956789255142, 0.041060034185647964, -0.0017542740097269416, 0.025241496041417122, -0.02043979801237583, 0.02443954348564148, -0.02129187434911728, 0.08893667906522751, -0.016620492562651634, 0.026564721018075943, 0.018665475770831108, -0.008510734885931015, -0.05204680189490318, 0.0560164749622345, 0.007518317084759474, -0.03253927454352379, -0.029872780665755272, -0.030835123732686043, 0.05605657398700714, -0.041260525584220886, 0.010615863837301731, 0.06387562304735184, -0.006365508306771517, -0.03747129067778587, -0.044548533856868744, 0.0072225965559482574, 0.006676265504211187, 0.037230707705020905, 0.02391827292740345, -0.0056637986563146114, 0.06403601169586182, -0.017171835526823997, 0.06467757374048233, -0.05561549589037895, 0.025722669437527657, -0.030754929408431053, -0.014896292239427567, -0.02147231437265873, 0.06427659839391708, -0.0016252095811069012, 0.011407793499529362, -0.016349833458662033, 0.048558302223682404, -0.047355372458696365, 0.008520759642124176, -0.06487806141376495, -0.0049896566197276115, -0.014264754019677639, 0.04174169525504112, 0.046473223716020584, -0.004140086472034454, 0.0034083037171512842, -0.007317828480154276, -0.02175299823284149, -0.012560601346194744, 0.05204680189490318, 0.06243210658431053, -0.003521078499034047, 0.023276709020137787, -0.0012336305808275938, 0.008034574799239635, -0.018374767154455185, -0.02889038622379303, 0.027627309784293175, 0.018875988200306892, 0.03887471184134483, -0.0032504191622138023, -0.018374767154455185, -0.00467138085514307, -0.0678853914141655, -0.0015876179095357656, -0.058622825890779495, -0.0005939470720477402, -0.006300349719822407, -0.06624138355255127, -0.04122042655944824, 0.09326723217964172, 0.05280866101384163, -0.04083949699997902, 0.08957824110984802, 0.05308934301137924, 0.04114023223519325, 0.011117084883153439, 0.05465315282344818, -0.06976998597383499, -0.039335835725069046, -0.01946742832660675, 0.07570444047451019, 0.01711168885231018, 0.018715597689151764, 0.010876499116420746, 0.05337002873420715, -0.0019547624979168177, 0.03091531991958618, -0.024279151111841202, 0.04234316200017929, 0.03867422416806221, 0.005378102883696556, -0.023737832903862, -0.01077625434845686, -0.00254369736649096, 0.011858891695737839, -0.010179800912737846, 0.015648124739527702, 0.015247146598994732, 0.033822402358055115, -0.016199467703700066, 0.08071665465831757, -0.03717055916786194, 0.016800932586193085, 0.04410745948553085, -0.09254547208547592, -0.021492362022399902, -0.026304084807634354, 0.03815295174717903, -0.00696196174249053, -0.03438377007842064, -0.046393029391765594, -0.016620492562651634, 0.03883461281657219, -0.028308970853686333, 0.06764480471611023, 0.016780883073806763, 0.03484489396214485, -0.017302153632044792, -0.09110195189714432, -0.016109246760606766, -0.018655451014637947, -0.007207559887319803, -0.02024933323264122, 0.02854955568909645, -0.0002817802596837282, 0.05830204114317894, 0.010059508495032787, 0.052327487617731094, 0.02061021327972412, -0.01514690276235342, -0.05894360691308975, 0.020459847524762154, -0.017151787877082825, -0.040719203650951385, -0.027827797457575798, 0.0014522882411256433, -0.007007071748375893, 0.018916085362434387, -0.0168610792607069, -0.01701144501566887, -0.006235191132873297, -0.047956839203834534, 0.02654467150568962, -0.06215142086148262, -0.009112200699746609, -0.007142401300370693, -0.02061021327972412, -0.005287882871925831, 0.06981007754802704, -0.04470892623066902, 0.0006979504250921309, -0.025682570412755013, -0.0009548262460157275, -0.013663288205862045, 0.05605657398700714, -0.06447708606719971, 0.10152735561132431, 0.05938468128442764, -0.002242964692413807, -0.03568694368004799, 0.02399846725165844, 0.018434913828969002, 0.006275288760662079, -0.020379651337862015, 0.00955828744918108, -0.03518572449684143, 0.025782816112041473, -0.007443133741617203, 0.024158859625458717, -0.02602340094745159, 0.04767615348100662, 0.016971347853541374, 0.041942186653614044, 0.026504574343562126, 0.02277548797428608, 0.07101301103830338, 0.02530164271593094, 0.057660479098558426, 0.07289760559797287, 0.046312835067510605, 0.04895928129553795, -0.013502897694706917, 0.02506105788052082, 0.030835123732686043, -0.021412167698144913, 0.03414318338036537, -0.015738343819975853, -0.039315786212682724, 0.0025061056949198246, -0.039235591888427734, -0.011066962964832783, 0.058342140167951584, -0.016660591587424278, -0.010189825668931007, 0.02670506201684475, -0.038453686982393265, 0.005007199011743069, -0.04310501739382744, -0.053891297429800034, 0.0511646531522274, 0.01895618438720703, -0.020670359954237938, 0.052688367664813995, 0.004445831291377544, 0.0471147857606411, 0.05244778096675873, 0.01570827141404152, 0.06604089587926865, 0.014926365576684475, 0.046553418040275574, 0.030434148386120796, -0.032779861241579056, -0.006746436469256878, -0.04258374869823456, 0.04923996329307556, 0.008044599555432796, -0.07337877154350281, -0.018374767154455185, 0.0052327485755085945, 0.05036269873380661, -0.06676265597343445, -0.0001860783522715792, 0.03179746866226196, 0.018444938585162163, 0.04362628981471062, -0.0012436549877747893, 0.015427586622536182, 0.01200925838202238, -0.031015563756227493, 0.003059955080971122, -0.010816352441906929, -0.003922055475413799, -0.036869827657938004, -0.017131738364696503, -0.07053183764219284, 0.031115807592868805, 0.006275288760662079, 0.015207049436867237, 0.007042156998068094, 0.00028506951639428735, 0.0441475585103035, -0.00014331791317090392, 0.05537491291761398, -0.025101155042648315, -0.019838333129882812, -0.049881529062986374, 0.031897712498903275, -0.02139211818575859, 0.01850508525967598, 0.002255495171993971, -0.028329018503427505, -0.04895928129553795, 0.005839226301759481, 0.02357744239270687, -0.033902596682310104, -0.0649181604385376, -0.0031226077117025852, -0.006154995411634445, 0.03273976594209671, -0.0005128118791617453, 0.031396493315696716, 0.03500528261065483, 0.012971603311598301, -0.02704589255154133, 0.00798946525901556, 0.08853570371866226, -0.02826887182891369, -0.03969671577215195, -0.03981700912117958, -0.048397913575172424, -0.048317719250917435, 0.04073925316333771, -0.06848685443401337, 0.0025449502281844616, 0.0209510438144207, 0.020279407501220703, -0.02105128765106201, -0.04370648413896561, 0.03987715393304825, 0.06507854908704758, 0.002979759592562914, 0.028349068015813828, -0.055575400590896606, -0.06668245792388916, -0.02907082624733448, -0.012490430846810341, 0.01047552190721035, -0.04835781455039978, -0.04731527715921402, 0.010936644859611988, 0.016630517318844795, -0.0014560474082827568, -0.017352275550365448, 0.007969415746629238, 0.009528214111924171, -0.01642000488936901, -0.005718933418393135, -0.0009516936261206865, 0.04049866646528244, -0.008686162531375885, -0.0033707120455801487, 0.005954507272690535, -0.03498523682355881, 0.0037115425802767277, -0.01016476470977068, 0.019577696919441223, 0.02478037402033806, 0.01126745156943798, 0.020650310441851616, 0.04867859557271004, -0.005237760953605175, -0.023156417533755302, 0.0011753635480999947, -0.029712388291954994, -0.021933436393737793, 0.01587868481874466, -0.020890897139906883, 0.035386212170124054, -0.03275981545448303, 0.05256807431578636, 0.0072877551428973675, 0.04069915786385536, 0.0056387376971542835, -0.03396274521946907, -0.01484617032110691, 0.00934276171028614, 0.05681842938065529, -0.06736411899328232, 0.015858637169003487, -0.017873546108603477, 0.007147413212805986, 0.028168627992272377, 0.002108888002112508, 0.00023494740889873356, 0.014996536076068878, -0.02139211818575859, 0.019617795944213867, -0.016339808702468872, 0.02985273115336895, 0.0383935384452343, -0.0027692466974258423, -0.005137516651302576, 0.02678525820374489, -0.03829329460859299, -0.008250099606812, 0.037330951541662216, -0.05874311923980713, -0.023717783391475677, 0.06307366490364075, 0.01155815925449133, -0.03185761719942093, -0.004681405611336231, 0.01169850118458271, 0.011518062092363834, -0.009708653204143047, -0.08588925749063492, -0.013984070159494877, 0.005608664359897375, -0.009448018856346607, 0.02496081218123436, 0.05072357878088951, -0.01309189572930336, -0.013974045403301716, 0.0354263111948967, -0.046914298087358475, -0.013252287171781063, -0.02165275253355503, 0.013633214868605137, -0.01217967364937067, -0.00780902523547411, -0.055294714868068695, -0.05910399556159973, -0.025943206623196602, -0.02329675853252411, 0.011768672615289688, -0.03901505470275879, 0.0700506642460823, 0.03805270791053772, 0.014154485426843166, 0.01684102974832058, 0.013653263449668884, 0.03761163353919983, 0.06856705248355865, 0.016901176422834396, -0.00521771190688014, 0.07209564745426178, -0.013472824357450008, 0.0300331711769104, 0.037832170724868774, 0.0287299957126379, 0.03518572449684143, -0.029632193967700005, -0.05918419361114502, -0.03037400171160698, -0.039155393838882446, -0.030414098873734474, -0.008936773054301739, 0.0047490703873336315, -0.059585168957710266, -0.08765355497598648, -0.009182371199131012, -0.041060034185647964, 0.0033581815659999847, 0.0455910749733448, -0.034704551100730896, -0.05100426450371742, -0.06584040820598602, -0.021632704883813858, 0.03378230333328247, 0.03466445580124855, -0.011447890661656857, 0.011147158220410347, -0.022815586999058723, 0.02915102057158947, 0.014144460670650005, -0.0075283413752913475, -0.0053329928778111935, 0.031897712498903275, -0.023417051881551743, -0.07069222629070282, -0.042984724044799805, 0.016530273482203484, -0.0017379842465743423, -0.0027517040725797415, -0.05613676831126213, -0.028329018503427505, -0.07410053163766861, 0.023276709020137787, 0.017683081328868866, -0.018815841525793076, -0.026945648714900017, 0.038092806935310364, -0.020279407501220703, -0.06146975979208946, -0.0039496226236224174, -0.017502641305327415, 0.03450406342744827, -0.06335435062646866, -0.031737323850393295, -0.02399846725165844, -0.025903107598423958, 0.018996281549334526, -0.05192650854587555, 0.018194327130913734, -0.03149673715233803, 0.01790361851453781, -0.04515000060200691, 0.05260816961526871, -0.010445448569953442, 0.030674733221530914, 0.05802135914564133, 0.06271278858184814, 0.044027265161275864, 0.014986512251198292, 0.04214267432689667, -0.001890856772661209, -0.023156417533755302, 0.0322786420583725, 0.02375788241624832, -0.005062333308160305, 0.06423649936914444, -0.03909524902701378, -0.01615936867892742, -0.026143694296479225, 0.02678525820374489, -0.028770092874765396, -0.017141763120889664, 0.0078040133230388165, 0.012690919451415539, -0.026464475318789482, -0.006611106917262077, -0.018214376643300056, -0.05421207845211029, 0.002684039296582341, 0.07819049805402756, -0.02103123813867569, 0.011768672615289688, -0.010365253314375877, -0.025963254272937775, -0.004794180393218994, 0.027807747945189476, -0.003380736568942666, 0.024940764531493187, -0.05926438793540001, -0.01893613487482071, -0.014675755053758621, 0.00006985769869061187, 0.025441985577344894, 0.10265009105205536, -0.041861988604068756, 0.054773446172475815, -0.02800823748111725, 0.021412167698144913, 0.021271824836730957, -0.04410745948553085, -0.08548827469348907, -0.023457149043679237, 0.013362555764615536, -0.03580723702907562, -0.042022380977869034, -0.013943972066044807, -0.04976123571395874, 0.0057139210402965546, -0.03622826561331749, 0.07811030000448227, -0.029551997780799866, 0.014685779809951782, 0.05357051640748978, -0.02602340094745159, -0.0014359985943883657, -0.09102176129817963, 0.08203987777233124, -0.02215397357940674, -0.0411803275346756, -0.0049270037561655045, -0.03921554237604141, -0.012771114706993103, 0.00044546028948388994, 0.012570626102387905, -0.008204990066587925, 0.008666113950312138, -0.024840518832206726, 0.027567163109779358, -0.041861988604068756, 0.04815732687711716, -0.011548135429620743, 0.004578655119985342, -0.01614934578537941, 0.002994796261191368, -0.027627309784293175, 0.019106550142169, -0.009944227524101734, 0.0015688221901655197, -0.025121202692389488, -0.045791562646627426, -0.00794435478746891, 0.0383935384452343, 0.030233658850193024, -0.032338786870241165, 0.006731399800628424, -0.007473207078874111, -0.007999489083886147, 0.05938468128442764, -0.016630517318844795, -0.005129998549818993, 0.00453855749219656, -0.024379396811127663, -0.008631028234958649, -0.01143786683678627, -0.026203840970993042, -0.005558542441576719, -0.04234316200017929, -0.07069222629070282, -0.015126854181289673, -0.04031822830438614, -0.04739547148346901, -0.004982138052582741, -0.006215142086148262, -0.025281595066189766, 0.04827762022614479, -0.011026864871382713, -0.01823442429304123, -0.07081252336502075, -0.02287573367357254, -0.018354717642068863, -0.03787226974964142, 0.03674953430891037, -0.06154995411634445, 0.04835781455039978, 0.002601337619125843, 0.0035837311297655106, -0.04867859557271004, 0.0022078792098909616, 0.047275178134441376, 0.039255641400814056, 0.01989847980439663, 0.01221977174282074, 0.033040497452020645, 0.06656216830015182, -0.0511646531522274, 0.005237760953605175, -0.03255932405591011, 0.0008733778377063572, -0.020108992233872414, 0.04091969504952431, 0.017151787877082825, 0.01651022396981716, 0.0057389819994568825, -0.0255823265761137, 0.0337221585214138, 0.04021798446774483, -0.05541500821709633, -0.016039077192544937, 0.019748112186789513, -0.027386723086237907, 0.0036238287575542927, -0.012620748020708561, -0.03466445580124855, -0.02654467150568962, -0.031817518174648285, 0.05737979710102081, 0.01833466999232769, 0.014645681716501713, 0.012430284172296524, 0.015838587656617165, -0.012971603311598301, 0.025020958855748177, -0.021231727674603462, -0.08059635758399963, -0.017041519284248352, 0.04051871597766876, -0.01693125069141388, 0.00999434944242239, -0.009979313239455223, -0.026845404878258705, -0.008315258659422398, 0.03917544335126877, -0.01589873433113098, -0.011979185044765472, 0.01982830837368965, 0.050322603434324265, 0.016500199213624, 0.004270404111593962, 0.106820248067379 ]
24,500
knockknock.matrix_sender
matrix_sender
Matrix sender wrapper: execute func, send a Matrix message with the end status (sucessfully finished or crashed) at the end. Also send a Matrix message before executing func. `homeserver`: str The homeserver address which was used to register the BOT. It is e.g. 'https://matrix-client.matrix.org'. It can be also looked up in Riot by looking in the riot settings, "Help & About" at the bottom. Specifying the schema (`http` or `https`) is required. `token`: str The access TOKEN of the user that will send the messages. It can be obtained in Riot by looking in the riot settings, "Help & About" , down the bottom is: Access Token:<click to reveal> `room`: str The alias of the room to which messages will be send by the BOT. After creating a room, an alias can be set. In Riot, this can be done by opening the room settings under 'Room Addresses'.
def matrix_sender(homeserver: str, token: str, room: str): """ Matrix sender wrapper: execute func, send a Matrix message with the end status (sucessfully finished or crashed) at the end. Also send a Matrix message before executing func. `homeserver`: str The homeserver address which was used to register the BOT. It is e.g. 'https://matrix-client.matrix.org'. It can be also looked up in Riot by looking in the riot settings, "Help & About" at the bottom. Specifying the schema (`http` or `https`) is required. `token`: str The access TOKEN of the user that will send the messages. It can be obtained in Riot by looking in the riot settings, "Help & About" , down the bottom is: Access Token:<click to reveal> `room`: str The alias of the room to which messages will be send by the BOT. After creating a room, an alias can be set. In Riot, this can be done by opening the room settings under 'Room Addresses'. """ matrix = MatrixHttpApi(homeserver, token=token) room_id = matrix.get_room_id(room) def decorator_sender(func): @functools.wraps(func) def wrapper_sender(*args, **kwargs): start_time = datetime.datetime.now() host_name = socket.gethostname() func_name = func.__name__ # Handling distributed training edge case. # In PyTorch, the launch of `torch.distributed.launch` sets up a RANK environment variable for each process. # This can be used to detect the master process. # See https://github.com/pytorch/pytorch/blob/master/torch/distributed/launch.py#L211 # Except for errors, only the master process will send notifications. if 'RANK' in os.environ: master_process = (int(os.environ['RANK']) == 0) host_name += ' - RANK: %s' % os.environ['RANK'] else: master_process = True if master_process: contents = ['Your training has started 🎬', 'Machine name: %s' % host_name, 'Main call: %s' % func_name, 'Starting date: %s' % start_time.strftime(DATE_FORMAT)] text = '\n'.join(contents) matrix.send_message(room_id, text) try: value = func(*args, **kwargs) if master_process: end_time = datetime.datetime.now() elapsed_time = end_time - start_time contents = ["Your training is complete 🎉", 'Machine name: %s' % host_name, 'Main call: %s' % func_name, 'Starting date: %s' % start_time.strftime(DATE_FORMAT), 'End date: %s' % end_time.strftime(DATE_FORMAT), 'Training duration: %s' % str(elapsed_time)] try: str_value = str(value) contents.append('Main call returned value: %s'% str_value) except: contents.append('Main call returned value: %s'% "ERROR - Couldn't str the returned value.") text = '\n'.join(contents) matrix.send_message(room_id, text) return value except Exception as ex: end_time = datetime.datetime.now() elapsed_time = end_time - start_time contents = ["Your training has crashed ☠️", 'Machine name: %s' % host_name, 'Main call: %s' % func_name, 'Starting date: %s' % start_time.strftime(DATE_FORMAT), 'Crash date: %s' % end_time.strftime(DATE_FORMAT), 'Crashed training duration: %s\n\n' % str(elapsed_time), "Here's the error:", '%s\n\n' % ex, "Traceback:", '%s' % traceback.format_exc()] text = '\n'.join(contents) matrix.send_message(room_id, text) raise ex return wrapper_sender return decorator_sender
(homeserver: str, token: str, room: str)
[ 0.006308625917881727, -0.012508396990597248, -0.029450150206685066, 0.027213679626584053, 0.0034140797797590494, -0.032122038304805756, -0.0846295952796936, 0.046589821577072144, -0.009292234666645527, -0.04019707813858986, 0.026619927957654, 0.03328975290060043, -0.02244386449456215, -0.0036812687758356333, -0.0148933045566082, 0.0162490401417017, 0.061275310814380646, -0.011944331228733063, 0.02000947669148445, -0.05153776332736015, 0.008025561459362507, -0.008772701025009155, 0.012181832455098629, 0.03976166248321533, -0.011370370164513588, 0.04088979214429855, 0.023730328306555748, -0.03511059656739235, 0.048727329820394516, 0.0028203269466757774, -0.01335944328457117, -0.06836076825857162, 0.008688585832715034, 0.00027383764972910285, -0.03117203339934349, 0.0003191422438248992, -0.05897946655750275, -0.028480352833867073, -0.08415459841489792, -0.02596679888665676, 0.010756826028227806, -0.02853972837328911, 0.04065228998661041, -0.015477161854505539, -0.031765785068273544, -0.007595090661197901, -0.04223563149571419, 0.0794045701622963, -0.004507575184106827, -0.011766205541789532, -0.012924023903906345, -0.036080390214920044, 0.03962311893701553, 0.022087613120675087, -0.03317100182175636, 0.048093993216753006, 0.008802388794720173, -0.01361673604696989, 0.018772492185235023, -0.04381897300481796, -0.004101843573153019, 0.06135448068380356, 0.0034709812607616186, 0.08051291108131409, 0.03524913638830185, 0.014903200790286064, -0.02549179643392563, 0.015506849624216557, 0.016516229137778282, 0.05003358796238899, 0.04472939297556877, -0.0068627954460680485, -0.007565402891486883, -0.02699596993625164, 0.02570950612425804, -0.008055249229073524, -0.04698565602302551, 0.010915160179138184, 0.010855784639716148, 0.011568288318812847, 0.03142932802438736, 0.0423147976398468, -0.0046510654501616955, -0.010964639484882355, 0.03408142179250717, 0.006590658333152533, -0.0036639508325606585, 0.024145957082509995, -0.045560646802186966, -0.03190432861447334, -0.045323148369789124, -0.03127099201083183, -0.01319121289998293, -0.023017825558781624, -0.006377897225320339, -0.03835644572973251, 0.015071431174874306, -0.024165747687220573, 0.011113077402114868, -0.04647107049822807, -0.008238323032855988, 0.09468381851911545, -0.02153344266116619, -0.002431913511827588, 0.027550140395760536, -0.06182948127388954, -0.054823197424411774, -0.0090992646291852, 0.03602101653814316, -0.0015017003752291203, -0.10679637640714645, -0.02954910881817341, -0.08090874552726746, -0.030756406486034393, 0.001895061694085598, -0.0010279349517077208, -0.045046061277389526, 0.011637559160590172, -0.033507462590932846, -0.0071101924404501915, 0.07619830220937729, 0.030340779572725296, 0.004299761261790991, -0.07948374003171921, -0.0025222133845090866, 0.05331902205944061, 0.005368516780436039, 0.02636263333261013, 0.06931076943874359, -0.08023582398891449, -0.03323037922382355, 0.00775837292894721, 0.05213151499629021, 0.0788504034280777, -0.0026323050260543823, 0.031745996326208115, -0.02913348190486431, 0.003146891016513109, 0.02687722072005272, 0.01349798496812582, 0.01703081652522087, -0.016070915386080742, 0.012745898216962814, -0.042275216430425644, 0.060760725289583206, -0.011350578628480434, 0.01399277988821268, -0.002514791442081332, -0.013814653269946575, -0.05173568055033684, 0.049123167991638184, 0.006358105223625898, -0.03332933783531189, -0.01956416293978691, -0.03576372191309929, 0.06487741321325302, 0.021711569279432297, -0.025828257203102112, 0.061394061893224716, -0.00989588350057602, -0.016763627529144287, -0.06143364682793617, 0.04310647025704384, -0.0032829593401402235, 0.0225824061781168, 0.04104812443256378, -0.0009617562172934413, 0.009188327938318253, -0.027174096554517746, 0.06095864251255989, -0.049123167991638184, 0.035565804690122604, -0.012063082307577133, -0.038455404341220856, -0.017139671370387077, 0.03202307969331741, -0.04524397850036621, -0.012053186073899269, -0.009846404194831848, 0.010128436610102654, -0.04963775351643562, -0.007882071658968925, -0.05181484669446945, -0.010835993103682995, -0.017555298283696175, 0.03471475839614868, 0.05363569036126137, -0.03993978723883629, 0.013319859281182289, -0.0026991022750735283, -0.0362585186958313, 0.007891966961324215, 0.06788576394319534, 0.06436282396316528, 0.011400057934224606, 0.04088979214429855, 0.02838139422237873, 0.019455308094620705, 0.03600122407078743, -0.017060503363609314, 0.022364696487784386, 0.014913097023963928, 0.056960705667734146, 0.01845582388341427, -0.025630338117480278, -0.036317892372608185, -0.0319439135491848, 0.010262031108140945, -0.06420449167490005, -0.005299245938658714, -0.00918337982147932, -0.05521903187036514, -0.008104728534817696, 0.08850878477096558, 0.06008780747652054, -0.04017728939652443, 0.04888566583395004, 0.044412724673748016, 0.04520439729094505, -0.014616220258176327, 0.06119614467024803, -0.020088644698262215, -0.05858363211154938, -0.03778248280286789, -0.0009691781015135348, 0.046352319419384, 0.006823211908340454, -0.02586784027516842, 0.026540759950876236, 0.02091989852488041, 0.03728768974542618, 0.011400057934224606, 0.020237082615494728, 0.059494052082300186, -0.0342397578060627, -0.021216774359345436, -0.024046996608376503, -0.010687554255127907, 0.00525966240093112, -0.04591690003871918, 0.00585836311802268, -0.002788165118545294, 0.0590190514922142, -0.004663435276597738, 0.06855868548154831, -0.02230532094836235, 0.031726203858852386, 0.04065228998661041, -0.0915171355009079, 0.0028475404251366854, -0.037584565579891205, 0.015368307009339333, 0.013577152043581009, -0.03115224279463291, -0.023532411083579063, -0.06194823235273361, 0.037208523601293564, 0.007026077248156071, 0.04140437766909599, -0.009821664541959763, 0.032003287225961685, -0.03356683626770973, -0.07754414528608322, -0.014725075103342533, -0.019712600857019424, -0.0316668264567852, -0.04730232432484627, 0.04512523114681244, 0.012775585986673832, 0.01918811909854412, -0.006679721642285585, 0.06523366272449493, -0.03184495493769646, -0.022008445113897324, -0.01829748973250389, -0.023730328306555748, -0.005551590584218502, -0.025373045355081558, -0.009386246092617512, -0.02764909900724888, -0.0388314463198185, 0.01888134703040123, -0.019217805936932564, -0.012696418911218643, -0.03334912657737732, -0.020623020827770233, 0.02697617933154106, -0.06349199265241623, 0.026837635785341263, -0.023730328306555748, -0.02448241598904133, -0.006625294219702482, 0.013092254288494587, -0.029331399127840996, 0.0030875157099217176, -0.008391709066927433, -0.05284401774406433, 0.01716935820877552, 0.030736614018678665, -0.04932108521461487, 0.06432324647903442, 0.020840730518102646, -0.019861038774251938, -0.07429829239845276, 0.024027206003665924, -0.0016550865257158875, 0.02853972837328911, -0.010608387179672718, -0.003760435851290822, -0.03408142179250717, 0.02321574278175831, -0.0041958545334637165, 0.013676111586391926, -0.05438777804374695, 0.05070650950074196, 0.040355414152145386, 0.04777732491493225, 0.029192857444286346, 0.06931076943874359, 0.07532746344804764, 0.029865777119994164, 0.0408502072095871, 0.05806904658675194, 0.06851910054683685, 0.029192857444286346, -0.048489831387996674, 0.05648570507764816, -0.02369074523448944, -0.019851142540574074, 0.01217193715274334, -0.009554475545883179, -0.018475614488124847, -0.005546642933040857, -0.03376475349068642, 0.017278213053941727, 0.0509440079331398, -0.015427682548761368, -0.005022161174565554, 0.04031582921743393, 0.0013656319351866841, 0.0425918847322464, -0.04338355362415314, -0.01871311664581299, 0.04548148065805435, 0.05086484178900719, -0.026184508576989174, 0.05411069095134735, 0.037841860204935074, 0.03590226545929909, 0.06250239908695221, -0.008782596327364445, 0.04282938316464424, 0.026580343022942543, 0.037723109126091, 0.04140437766909599, 0.01609070599079132, -0.01953447423875332, -0.0598503053188324, 0.012587564066052437, -0.005734664388000965, -0.051023177802562714, 0.007852383889257908, -0.012359959073364735, 0.06760867685079575, -0.07651497423648834, -0.01450736541301012, 0.0052151307463645935, 0.005116171669214964, 0.08621294051408768, 0.014091738499701023, 0.01801050826907158, -0.025412630289793015, -0.039247073233127594, 0.05217109993100166, -0.008050301112234592, 0.023888662457466125, -0.04136479273438454, -0.010925055481493473, -0.06725242733955383, -0.003916296176612377, 0.016753731295466423, -0.012567772530019283, 0.012706315144896507, -0.03218141198158264, 0.04825232923030853, 0.006328417453914881, 0.06143364682793617, -0.02103864960372448, -0.03829706832766533, -0.05644612014293671, -0.0072883181273937225, -0.008272958919405937, 0.012597460299730301, 0.03748560696840286, -0.041641879826784134, -0.008658898063004017, 0.03511059656739235, 0.02685742825269699, -0.00042614148696884513, -0.1087755560874939, -0.014804242178797722, -0.05098359286785126, 0.0193464532494545, 0.018495406955480576, 0.026184508576989174, 0.025570962578058243, 0.02343345247209072, -0.02331470139324665, 0.0018418713007122278, 0.021375108510255814, -0.029984528198838234, -0.04512523114681244, -0.012745898216962814, 0.0021412218920886517, -0.018802179023623466, 0.031112657859921455, -0.00786722730845213, 0.018515197560191154, 0.017109982669353485, 0.052646100521087646, -0.0075604552403092384, -0.010717242024838924, 0.07299204170703888, 0.08320458978414536, 0.005764352157711983, 0.043660640716552734, -0.05692112445831299, -0.05478361248970032, -0.02624388411641121, 0.0040152547881007195, -0.008935983292758465, -0.049994003027677536, -0.03893040493130684, -0.0181985292583704, -0.03065744787454605, 0.0000837284533190541, -0.02307720109820366, -0.009599006734788418, 0.012439126148819923, 0.03511059656739235, 0.0324980802834034, -0.004010306671261787, 0.030083486810326576, -0.012874544598162174, -0.0212959423661232, 0.0037208523135632277, -0.02105844020843506, 0.01116255670785904, -0.0018678480992093682, 0.022899074479937553, 0.0051458594389259815, 0.022740740329027176, -0.017109982669353485, 0.053279437124729156, -0.003757961792871356, -0.01869332417845726, -0.0162490401417017, -0.03384392336010933, -0.016080811619758606, 0.010153176262974739, 0.014665699563920498, 0.053912773728370667, -0.06780659407377243, 0.03374496474862099, -0.0029687650967389345, 0.04453147575259209, 0.026402218267321587, -0.05692112445831299, -0.013161525130271912, 0.012498500756919384, 0.05383360758423805, -0.029588691890239716, 0.027312638238072395, -0.03319079428911209, 0.0514981783926487, 0.0005356147303245962, -0.015813622623682022, -0.014299551956355572, -0.010242239572107792, -0.011954227462410927, -0.027035554870963097, -0.06309615820646286, 0.03891061618924141, 0.03218141198158264, -0.020345937460660934, 0.01716935820877552, -0.0017602302832528949, -0.036575186997652054, 0.030697030946612358, 0.00867868959903717, -0.06935035437345505, 0.01956416293978691, 0.08874628692865372, -0.002513554412871599, -0.018238114193081856, 0.033151209354400635, -0.022344905883073807, 0.008381813764572144, -0.04678773880004883, -0.0381387360394001, 0.002909389790147543, 0.024997001513838768, -0.05312110483646393, 0.04128562659025192, 0.035803306847810745, -0.0320824533700943, -0.045046061277389526, -0.016852689906954765, -0.031607452780008316, -0.012755794450640678, -0.040493957698345184, -0.0018406343879178166, -0.002657044678926468, -0.00816410407423973, -0.08961712568998337, -0.06816284358501434, -0.038455404341220856, -0.00302566634491086, -0.008995357900857925, -0.06974618881940842, 0.07295245677232742, 0.052527349442243576, 0.036575186997652054, 0.01627872884273529, 0.011776101775467396, 0.03586268424987793, 0.03867311403155327, -0.009623747318983078, 0.02244386449456215, 0.0641649067401886, -0.04065228998661041, 0.06551074981689453, 0.01977197639644146, 0.041879378259181976, 0.07497121393680573, -0.02838139422237873, 0.0018282645614817739, -0.05636695399880409, -0.028579311445355415, -0.04338355362415314, -0.02481887675821781, -0.02711472101509571, -0.05612945184111595, -0.09705882519483566, -0.017228733748197556, -0.04575856775045395, 0.019870935007929802, 0.05905863270163536, -0.04385855793952942, -0.08193791657686234, -0.047856494784355164, 0.0018406343879178166, 0.04330438748002052, -0.00879744067788124, -0.021098023280501366, 0.03762415051460266, -0.020138124004006386, 0.0025172655005007982, 0.022028237581253052, -0.014774554409086704, 0.0038742385804653168, 0.023750120773911476, -0.022146988660097122, -0.03578351438045502, -0.03613976761698723, 0.01843603141605854, -0.011865164153277874, 0.017763111740350723, -0.04528356343507767, -0.04829191416501999, -0.03756477311253548, 0.00782269611954689, 0.02042510360479355, -0.02228553034365177, -0.04180021211504936, 0.007837539538741112, 0.008673742413520813, -0.04088979214429855, 0.006813316140323877, -0.029588691890239716, 0.05854404717683792, -0.020306352525949478, -0.03756477311253548, -0.033269960433244705, -0.0038494986947625875, 0.03158766031265259, -0.0381387360394001, 0.03675331175327301, 0.00925265159457922, -0.0011448300210759044, -0.005014738999307156, 0.057989876717329025, -0.025788672268390656, -0.019682912155985832, 0.0633336529135704, 0.08035457879304886, 0.02572929672896862, 0.017298005521297455, 0.0529627688229084, 0.024680333212018013, -0.0590190514922142, 0.049875255674123764, 0.0013112046290189028, -0.03839602693915367, 0.012260999530553818, -0.02875743806362152, -0.05145859345793724, 0.024383457377552986, 0.03431892395019531, -0.009193276055157185, 0.010301615111529827, -0.006951858289539814, 0.002879702253267169, -0.030835574492812157, 0.02103864960372448, -0.02155323512852192, -0.04979608580470085, 0.003042984288185835, 0.08740044385194778, -0.030598072335124016, 0.014220384880900383, -0.008505512028932571, -0.05731695890426636, -0.049875255674123764, 0.010440157726407051, 0.01578393392264843, 0.010915160179138184, -0.077385812997818, -0.00021183375793043524, -0.03853457048535347, 0.005492215510457754, 0.015358411706984043, 0.09405048191547394, -0.0036540550645440817, 0.0529627688229084, -0.04928150027990341, 0.030083486810326576, 0.013903716579079628, -0.03321058675646782, -0.03703039512038231, -0.005892998538911343, 0.029747026041150093, -0.03198349475860596, -0.0661836713552475, -0.00392866600304842, -0.03192412108182907, 0.01869332417845726, -0.006630241870880127, 0.0650753304362297, -0.009910727851092815, -0.01533862017095089, 0.05502111464738846, -0.015754247084259987, 0.009114108979701996, 0.001710750861093402, 0.03645643591880798, -0.01944541186094284, -0.00516070332378149, 0.027668891474604607, 0.006105760112404823, -0.01951468177139759, 0.004158745054155588, 0.03895019739866257, -0.018614158034324646, -0.014576636254787445, -0.011231827549636364, 0.028460562229156494, -0.008396657183766365, 0.05161692947149277, -0.009524787776172161, 0.009094317443668842, -0.022641781717538834, 0.008624263107776642, -0.0336855873465538, 0.017416754737496376, 0.03600122407078743, -0.0007619830430485308, -0.038732487708330154, -0.023255325853824615, 0.0024851039052009583, 0.0028054830618202686, 0.06412532925605774, -0.038613736629486084, 0.0076742577366530895, -0.016595397144556046, 0.003510564798489213, 0.05347735434770584, 0.029707442969083786, -0.039722077548503876, -0.03408142179250717, -0.018376655876636505, -0.030340779572725296, 0.01210266537964344, 0.014240176416933537, -0.015417787246406078, -0.02042510360479355, -0.08850878477096558, 0.0056653935462236404, -0.06582742184400558, -0.02040531300008297, -0.016239145770668983, 0.007733633276075125, -0.035922057926654816, 0.05221068114042282, 0.006076072808355093, -0.022344905883073807, -0.0359814316034317, -0.01888134703040123, -0.014309448190033436, -0.03641685098409653, 0.0627003163099289, -0.05086484178900719, 0.08811295032501221, 0.023096991702914238, 0.010568804107606411, -0.05173568055033684, 0.006422428414225578, 0.05225026607513428, 0.04282938316464424, 0.017575088888406754, -0.027708474546670914, -0.004391298163682222, 0.09048795700073242, -0.025016793981194496, 0.01604122668504715, -0.021474067121744156, -0.00814926065504551, -0.02851993776857853, 0.04639190435409546, -0.009866195730865002, 0.016288625076413155, 0.002659518737345934, 0.002812905004248023, 0.05086484178900719, 0.057989876717329025, -0.07287328690290451, 0.027094930410385132, 0.011192244477570057, -0.012379750609397888, 0.007248734589666128, -0.019940204918384552, -0.02080114744603634, -0.011687038466334343, -0.017713632434606552, 0.04381897300481796, 0.030598072335124016, -0.005319037474691868, 0.02764909900724888, 0.010677658952772617, 0.004972681403160095, 0.06337323784828186, -0.058623213320970535, -0.03285433351993561, -0.008807336911559105, 0.0506669245660305, -0.025373045355081558, 0.003889082232490182, -0.009831560775637627, -0.009490152820944786, -0.01814904995262623, 0.04852941259741783, -0.004067208152264357, -0.0023143996950238943, 0.04211688041687012, -0.0009098027949221432, 0.019692808389663696, -0.009069577790796757, 0.08043374121189117 ]
24,501
knockknock.rocketchat_sender
rocketchat_sender
RocketChat sender wrapper: execute func, post a RocketChat message with the end status (sucessfully finished or crashed) at the end. Also send a RocketChat message before executing func. `rocketchat_server_url`: str The RocketChat server URL. E.g. rocketchat.yourcompany.com `rocketchat_user_id`: str The RocketChat user id to post messages with (you'll be able to view your user id when you create a personal access token). `rocketchat_auth_token`: str The RocketChat personal access token. Visit https://rocket.chat/docs/developer-guides/rest-api/personal-access-tokens/ for more details. `channel`: str The RocketChat channel to log. `user_mentions`: List[str] (default=[]) Optional list of user names to notify, as comma seperated list. `alias`: str (default="") Optional alias to use for the notification.
def rocketchat_sender(rocketchat_server_url: str, rocketchat_user_id: str, rocketchat_auth_token: str, channel: str, user_mentions: List[str] = [], alias: str = ""): """ RocketChat sender wrapper: execute func, post a RocketChat message with the end status (sucessfully finished or crashed) at the end. Also send a RocketChat message before executing func. `rocketchat_server_url`: str The RocketChat server URL. E.g. rocketchat.yourcompany.com `rocketchat_user_id`: str The RocketChat user id to post messages with (you'll be able to view your user id when you create a personal access token). `rocketchat_auth_token`: str The RocketChat personal access token. Visit https://rocket.chat/docs/developer-guides/rest-api/personal-access-tokens/ for more details. `channel`: str The RocketChat channel to log. `user_mentions`: List[str] (default=[]) Optional list of user names to notify, as comma seperated list. `alias`: str (default="") Optional alias to use for the notification. """ dump = { "alias": alias, "channel": channel, "emoji": ":bell:" } headers = { "Content-type": "application/json", "X-Auth-Token": rocketchat_auth_token, "X-User-Id": rocketchat_user_id } def decorator_sender(func): @functools.wraps(func) def wrapper_sender(*args, **kwargs): webhook_url = urljoin(rocketchat_server_url, "/api/v1/chat.postMessage") start_time = datetime.datetime.now().replace(microsecond=0) host_name = socket.gethostname() func_name = func.__name__ # Handling distributed training edge case. # In PyTorch, the launch of `torch.distributed.launch` sets up a RANK environment variable for each process. # This can be used to detect the master process. # See https://github.com/pytorch/pytorch/blob/master/torch/distributed/launch.py#L211 # Except for errors, only the master process will send notifications. if "RANK" in os.environ: master_process = (int(os.environ["RANK"]) == 0) host_name += " - RANK: %s" % os.environ["RANK"] else: master_process = True if master_process: contents = ["Your training has **started** :clap: %s" % " ".join(["@" + u for u in user_mentions]), "**Machine name:** %s" % host_name, "**Main call:** %s" % func_name, "**Starting date:** %s" % start_time.strftime( DATE_FORMAT)] dump["text"] = "\n".join(contents) requests.post( url=webhook_url, data=json.dumps(dump), headers=headers) try: value = func(*args, **kwargs) if master_process: end_time = datetime.datetime.now().replace(microsecond=0) elapsed_time = (end_time - start_time) contents = ["Your training is **complete** :tada: %s" % " ".join(["@" + u for u in user_mentions]), "**Machine name:** %s" % host_name, "**Main call:** %s" % func_name, "**Starting date:** %s" % start_time.strftime( DATE_FORMAT), "**End date:** %s" % end_time.strftime( DATE_FORMAT), "**Training duration:** %s" % str(elapsed_time)] try: str_value = str(value) contents.append( "**Main call returned value:** %s" % str_value) except: contents.append("**Main call returned value:** %s" % "ERROR - Couldn't str the returned value.") dump["text"] = "\n".join(contents) requests.post( url=webhook_url, data=json.dumps(dump), headers=headers) return value except Exception as ex: end_time = datetime.datetime.now().replace(microsecond=0) elapsed_time = end_time - start_time contents = ["Your training has **crashed** :skull_crossbones: %s" % " ".join(["@" + u for u in user_mentions]), "**Machine name:** %s" % host_name, "**Main call:** %s" % func_name, "**Starting date:** %s" % start_time.strftime( DATE_FORMAT), "**Crash date:** %s" % end_time.strftime( DATE_FORMAT), "**Crashed training duration:** %s" % str( elapsed_time), "**Error message:**", "\n%s\n" % ex, "**Traceback:**", "\n%s\n" % traceback.format_exc()] dump["text"] = "\n".join(contents) requests.post( url=webhook_url, data=json.dumps(dump), headers=headers) raise ex return wrapper_sender return decorator_sender
(rocketchat_server_url: str, rocketchat_user_id: str, rocketchat_auth_token: str, channel: str, user_mentions: List[str] = [], alias: str = '')
[ -0.0039963736198842525, -0.03367777168750763, -0.05157819390296936, 0.028078686445951462, 0.012228486128151417, 0.00644727423787117, -0.05907139554619789, 0.053243350237607956, -0.004774313420057297, -0.0275375097990036, 0.03415650501847267, 0.00208144448697567, -0.002642133506014943, -0.009829621762037277, -0.014039343222975731, 0.008419442921876907, 0.04620806872844696, -0.020627114921808243, 0.02803705632686615, -0.05786415562033653, 0.01374794077128172, -0.023083219304680824, 0.009959711693227291, 0.024082312360405922, -0.003223637118935585, 0.04083793982863426, 0.021584579721093178, 0.007592068985104561, -0.0025549731217324734, 0.02732936665415764, 0.007696141023188829, -0.0778876543045044, -0.003993771504610777, 0.009252021089196205, -0.0513700507581234, -0.019794536754488945, -0.09899350255727768, -0.024998148903250694, -0.10557086765766144, -0.040213506668806076, -0.007878267206251621, -0.008481886237859726, -0.0021920211147516966, -0.004475105553865433, -0.019451098516583443, 0.02256285771727562, -0.0617772713303566, 0.09849395602941513, -0.012280522845685482, -0.018524855375289917, -0.015485947020351887, -0.03546781465411186, 0.033427998423576355, 0.03471849486231804, -0.03247053548693657, 0.03467686474323273, 0.00617148308083415, 0.0002936788077931851, -0.0010238104732707143, -0.027391809970140457, -0.0035358539316803217, 0.06544061750173569, 0.0032054244074970484, 0.055116649717092514, 0.038298577070236206, 0.014164229854941368, -0.025664210319519043, 0.02266693115234375, -0.0029842709191143513, -0.006587771698832512, 0.04450128227472305, -0.013623054139316082, 0.0076076798141002655, -0.031513068825006485, 0.011000433936715126, -0.026247015222907066, -0.023915797472000122, 0.042461466044187546, -0.006317183841019869, 0.010297946631908417, 0.03779903054237366, 0.03442709147930145, 0.006233926396816969, -0.002685063285753131, 0.08030212670564651, 0.007581661455333233, 0.015204952098429203, 0.009246816858649254, -0.07305870205163956, 0.009142745286226273, -0.025601767003536224, -0.06660622358322144, -0.0018043521558865905, -0.034364648163318634, -0.0110836923122406, -0.00785745307803154, 0.033927544951438904, -0.037528444081544876, 0.05649040266871452, -0.02578909695148468, -0.008778491988778114, 0.09141704440116882, -0.05274380370974541, -0.007701344788074493, 0.032387275248765945, -0.056032486259937286, -0.04637458175420761, -0.023291364312171936, 0.004214925225824118, -0.009892065078020096, -0.09341523051261902, -0.04412662237882614, -0.02424882911145687, -0.022313084453344345, 0.02206331118941307, -0.017369654029607773, -0.05349312350153923, 0.04156644642353058, -0.0005167836206965148, 0.012665589340031147, 0.06731391698122025, 0.017942052334547043, 0.007925099693238735, -0.06081980839371681, -0.00041141052497550845, 0.06435826420783997, 0.0020046911668032408, 0.057406239211559296, 0.06764694303274155, -0.025227107107639313, -0.027745654806494713, 0.02195923961699009, 0.03546781465411186, 0.06032026186585426, 0.008429850451648235, 0.03636283427476883, -0.01625608094036579, 0.027058778330683708, 0.03663342446088791, 0.03093026578426361, 0.04762344807386398, 0.0007968029822222888, 0.04371033236384392, -0.06073655188083649, 0.03936011344194412, 0.0006712658214382827, -0.02068955823779106, 0.016578705981373787, -0.024103127419948578, -0.04008862003684044, 0.07443245500326157, 0.003223637118935585, -0.0072798519395291805, -0.014174637384712696, -0.027953799813985825, 0.026788190007209778, -0.010318760760128498, -0.02414475567638874, 0.03465605154633522, -0.0073266844265162945, -0.01844159886240959, -0.05261891707777977, 0.03804880380630493, -0.03199180215597153, 0.020491821691393852, 0.0072798519395291805, 0.03563433140516281, 0.032012615352869034, -0.01541309617459774, 0.09666228294372559, -0.028828006237745285, 0.04687412828207016, -0.03642527759075165, -0.01860811375081539, -0.014414003118872643, 0.03842346370220184, -0.0125094810500741, -0.023124847561120987, -0.024352900683879852, 0.0008260732865892351, -0.06444152444601059, -0.008627586998045444, -0.02118910476565361, -0.019555170089006424, -0.00659817922860384, 0.018108567222952843, 0.06285962462425232, -0.022521229460835457, 0.0016313320957124233, 0.019919423386454582, -0.02135561965405941, 0.0069676353596150875, 0.0755564346909523, 0.044043365865945816, -0.008284148760139942, 0.0423157662153244, 0.013695904985070229, 0.027412623167037964, -0.001624827622435987, -0.058072302490472794, 0.029098594561219215, 0.010542516596615314, 0.03311578184366226, -0.02776646986603737, -0.0379447340965271, -0.027620768174529076, -0.04177458956837654, 0.02941081114113331, -0.04375196248292923, -0.045958295464515686, -0.02693389169871807, -0.054783619940280914, -0.0029686600901186466, 0.06531573086977005, 0.02759995311498642, -0.05761438235640526, 0.054617103189229965, 0.02447778731584549, 0.034697677940130234, 0.004269563127309084, 0.08175913989543915, -0.033323924988508224, -0.053576380014419556, -0.03690401092171669, 0.01333165168762207, 0.0459999218583107, 0.017130287364125252, -0.012082785367965698, 0.045916665345430374, -0.02189679630100727, 0.027246108278632164, 0.0022635709028691053, 0.045042458921670914, 0.05728135257959366, -0.031721215695142746, -0.02481081895530224, -0.011062877252697945, 0.019451098516583443, 0.002176410285755992, -0.05786415562033653, 0.043668705970048904, -0.0076441047713160515, 0.07264241576194763, -0.002543264999985695, 0.034302204847335815, -0.012551110237836838, 0.06215193122625351, 0.03788229078054428, -0.08175913989543915, -0.009538219310343266, 0.0069260066375136375, 0.012124414555728436, -0.005442977417260408, -0.025206292048096657, -0.02780809812247753, -0.03569677472114563, 0.04371033236384392, -0.0003954744606744498, 0.05024607107043266, -0.012707218527793884, 0.009512200951576233, -0.01672440581023693, -0.07126866281032562, -0.005250443704426289, -0.051494937390089035, -0.03511396795511246, -0.016807664185762405, 0.032720308750867844, -0.0025393622927367687, 0.013904049061238766, 0.020491821691393852, 0.05091213062405586, 0.016037529334425926, -0.011791382916271687, -0.07630575448274612, -0.047665078192949295, -0.011978712864220142, -0.03848590701818466, 0.01040722243487835, -0.020242048427462578, -0.013966492377221584, 0.009314464405179024, 0.0023156069219112396, -0.022146569564938545, 0.011437537148594856, -0.022854261100292206, 0.053909413516521454, -0.03938093036413193, 0.01839996874332428, -0.025143848732113838, -0.02814112976193428, -0.01565246284008026, 0.027350179851055145, -0.006114243064075708, -0.004688453860580921, 0.020190011709928513, -0.02310403436422348, 0.008018764667212963, 0.06365057080984116, -0.0638170912861824, 0.0402967669069767, 0.03500989452004433, 0.003759609069675207, -0.04227413609623909, 0.008507904596626759, 0.008804510347545147, 0.0319085456430912, -0.008102023042738438, -0.03580084443092346, -0.0335736982524395, -0.013383688405156136, -0.00966830924153328, 0.010771474801003933, -0.04758182168006897, 0.02672574669122696, 0.024769188836216927, 0.06335917115211487, 0.02004431001842022, 0.052369143813848495, 0.09125052392482758, 0.02102258987724781, 0.0209913682192564, 0.03688319772481918, 0.0778876543045044, 0.050079554319381714, -0.03311578184366226, 0.035176411271095276, -0.0025120433419942856, -0.00984002836048603, 0.0015181535854935646, 0.004774313420057297, -0.054075926542282104, 0.0018342729890719056, -0.044917572289705276, 0.003704971168190241, 0.04949675127863884, -0.029931170865893364, 0.016766035929322243, 0.034801751375198364, -0.006952024530619383, 0.0016183230327442288, -0.031450625509023666, -0.017921237275004387, 0.05586596950888634, 0.02628864347934723, -0.021313991397619247, 0.052160996943712234, -0.0052478420548141, 0.05091213062405586, 0.03669586777687073, 0.029327552765607834, 0.05857184901833534, 0.023749280720949173, 0.03925604373216629, 0.044043365865945816, -0.03573840111494064, -0.015142508782446384, -0.04762344807386398, 0.016745220869779587, -0.021334806457161903, -0.04554200544953346, -0.01685970090329647, 0.008585958741605282, 0.08071842044591904, -0.041212599724531174, 0.019596800208091736, 0.009527811780571938, 0.001525958999991417, 0.0631093978881836, 0.011562423780560493, 0.022021682932972908, -0.017588205635547638, -0.04329404607415199, 0.018785037100315094, -0.023312177509069443, 0.02689226344227791, -0.019294990226626396, -0.018285490572452545, -0.0832577794790268, 0.035238854587078094, 0.015756534412503242, 0.05049584433436394, -0.010339575819671154, -0.02447778731584549, 0.08708763867616653, 0.0148615138605237, 0.022958332672715187, -0.04283612594008446, -0.018077345564961433, -0.054284073412418365, 0.0104956841096282, -0.014819884672760963, 0.0011760161723941565, 0.03790310397744179, -0.05224425718188286, -0.025913983583450317, 0.02814112976193428, 0.034031618386507034, -0.001963062444701791, -0.07081074267625809, 0.03640446439385414, -0.05107864737510681, 0.03182528540492058, 0.004363228101283312, 0.02984791435301304, 0.05316009372472763, 0.001235207193531096, 0.030076872557401657, -0.004631213843822479, 0.05990397185087204, -0.02676737681031227, -0.054284073412418365, -0.03750763088464737, 0.0038636813405901194, -0.05449221655726433, 0.009933693334460258, -0.07014467567205429, 0.04637458175420761, -0.01645381934940815, 0.03788229078054428, 0.0007402136689051986, -0.05161982402205467, 0.02918185107409954, 0.10315638780593872, -0.013321245089173317, 0.0443347692489624, -0.005635511130094528, -0.046291325241327286, -0.0024183783680200577, 0.004233137704432011, 0.012832105159759521, -0.04031758010387421, -0.020491821691393852, -0.006150668486952782, -0.00893460027873516, 0.020096346735954285, -0.02306240424513817, 0.00247691897675395, 0.0019929830450564623, 0.056865062564611435, 0.01581897772848606, -0.004665037617087364, 0.02928592450916767, -0.013498167507350445, 0.00973595678806305, 0.02857823297381401, -0.05124516412615776, 0.02649678848683834, 0.03609224781394005, -0.010443647392094135, 0.014518075622618198, 0.018077345564961433, 0.01933661848306656, 0.06394197791814804, -0.03140899911522865, -0.02028367668390274, -0.040983643382787704, -0.0006992352427914739, -0.005242638289928436, -0.021376434713602066, -0.00978799257427454, 0.024727560579776764, -0.043835218995809555, 0.03925604373216629, -0.005744786933064461, 0.08675460517406464, 0.009449757635593414, -0.062401704490184784, -0.04550037533044815, 0.004631213843822479, 0.05832207575440407, -0.0396307036280632, 0.010542516596615314, -0.008471478708088398, 0.03925604373216629, 0.00446730013936758, -0.012665589340031147, -0.03093026578426361, -0.02458185888826847, 0.0032054244074970484, -0.035780031234025955, -0.0695202425122261, 0.003728387411683798, 0.04346055909991264, -0.015485947020351887, -0.0005418260116130114, -0.010563330724835396, -0.031075965613126755, 0.023894982412457466, 0.006514921318739653, -0.06564875692129135, 0.013914456591010094, 0.06989490240812302, -0.023957425728440285, -0.051286790519952774, -0.002804746385663748, -0.018680963665246964, 0.01294658426195383, -0.020002681761980057, -0.03018094412982464, -0.02497733384370804, 0.038194507360458374, -0.03496826812624931, 0.04200354963541031, 0.05490850657224655, -0.016245674341917038, -0.03619632124900818, 0.0004884889931418002, -0.05836370214819908, -0.027391809970140457, -0.051661450415849686, -0.0056251036003232, 0.00440745847299695, -0.0233329925686121, -0.07060259580612183, -0.0681464895606041, -0.0008813616586849093, 0.007956321351230145, -0.03415650501847267, -0.09208310395479202, 0.08084330707788467, 0.04137911647558212, 0.03136736899614334, 0.02393661066889763, 0.04545874893665314, 0.01735924743115902, 0.0416288897395134, -0.007784602232277393, 0.003858477808535099, 0.04554200544953346, -0.011895455420017242, 0.03650853782892227, -0.003998975269496441, 0.022542044520378113, 0.044376395642757416, -0.018920330330729485, -0.02562258206307888, -0.02360358089208603, -0.03093026578426361, -0.006780305411666632, -0.022271456196904182, 0.0007922498043626547, -0.06098632514476776, -0.1014079749584198, -0.026247015222907066, -0.051703080534935, 0.0297230277210474, 0.06323428452014923, -0.05186959728598595, -0.06531573086977005, -0.055824339389801025, -0.010339575819671154, 0.03276193514466286, 0.02633027359843254, -0.016505854204297066, -0.006827137898653746, 0.00683234166353941, 0.003757007187232375, 0.03451034799218178, -0.005198407452553511, -0.013872827403247356, 0.020023496821522713, -0.03946418687701225, -0.06385871767997742, -0.05141167715191841, 0.03509315475821495, -0.027225293219089508, 0.041691333055496216, -0.07210123538970947, -0.03321985527873039, -0.046832501888275146, 0.030368275940418243, 0.0250189621001482, -0.017921237275004387, -0.03138818219304085, 0.011406315490603447, 0.0008859148365445435, -0.04371033236384392, 0.0036425278522074223, -0.007201797794550657, 0.04241983965039253, -0.02847416140139103, -0.023312177509069443, -0.057947415858507156, -0.02655923180282116, 0.026371901854872704, 0.005848858971148729, 0.0493718646466732, 0.01766105554997921, 0.020731186494231224, -0.008148855529725552, 0.04654109850525856, -0.029993614181876183, 0.006723065860569477, 0.04791485145688057, 0.07439082860946655, 0.04067142680287361, 0.009460165165364742, 0.054075926542282104, 0.03946418687701225, -0.03334474191069603, 0.029369181022047997, 0.0004816592554561794, -0.028619861230254173, 0.018816258758306503, -0.02545606531202793, -0.034926638007164, 0.00906469114124775, 0.0423157662153244, -0.04658272862434387, 0.00006167092215036973, -0.0017900422681123018, -0.00899704359471798, -0.032449718564748764, 0.02424882911145687, -0.010381204076111317, -0.011416723020374775, 0.019055623561143875, 0.102074034512043, -0.03609224781394005, 0.02289588935673237, -0.01379997655749321, -0.058446962386369705, -0.019503135234117508, -0.025227107107639313, -0.027246108278632164, 0.0066606225445866585, -0.04194110631942749, -0.03303252533078194, -0.0557410828769207, 0.009324871003627777, 0.014268302358686924, 0.07409942150115967, -0.021074624732136726, 0.07305870205163956, -0.018181417137384415, 0.013081878423690796, -0.008336185477674007, -0.04916371777653694, -0.021178698167204857, 0.016505854204297066, -0.011010841466486454, -0.018920330330729485, -0.055824339389801025, -0.029806284233927727, 0.016360154375433922, 0.017921237275004387, -0.02759995311498642, 0.05786415562033653, -0.021917609497904778, -0.00837781373411417, 0.05141167715191841, -0.013456538319587708, -0.007102929521352053, -0.03242890536785126, 0.03848590701818466, -0.008388221263885498, 0.006228722631931305, 0.027142036706209183, -0.025476880371570587, -0.013321245089173317, 0.020939331501722336, 0.04275286942720413, -0.012915362603962421, -0.05311846360564232, 0.005890487693250179, 0.026163756847381592, -0.03022257424890995, 0.0638170912861824, 0.011000433936715126, 0.000993239344097674, -0.002734497655183077, -0.0029400403145700693, -0.0028203572146594524, 0.028016243129968643, 0.024727560579776764, 0.010277132503688335, 0.007883471436798573, -0.027079593390226364, -0.01954476349055767, -0.04031758010387421, 0.0691872164607048, -0.03921441361308098, 0.013872827403247356, -0.0016144203254953027, -0.023312177509069443, 0.04704064503312111, -0.01327961590141058, -0.003900106530636549, 0.010917176492512226, -0.02814112976193428, -0.02841171808540821, -0.03217913210391998, -0.03642527759075165, -0.026163756847381592, -0.04425150901079178, -0.089335598051548, -0.004815942142158747, -0.08084330707788467, -0.0148615138605237, 0.004823747556656599, -0.0016638546949252486, -0.01883707195520401, 0.04795648157596588, 0.023353807628154755, -0.015163322910666466, -0.035134781152009964, -0.024873262271285057, 0.002253163605928421, -0.02934836782515049, 0.04945512115955353, -0.0597790852189064, 0.0695202425122261, 0.01886829361319542, -0.03471849486231804, -0.02189679630100727, -0.032220762223005295, 0.06527409702539444, 0.054408960044384, 0.017754720523953438, -0.022625301033258438, -0.007383924443274736, 0.0705193355679512, 0.0020944534335285425, 0.04550037533044815, -0.04189947620034218, 0.0162873025983572, -0.01957598514854908, 0.028557417914271355, -0.026142941787838936, 0.005083928350359201, 0.0032548587769269943, -0.014445224776864052, 0.039006270468235016, 0.06589853018522263, -0.07996910065412521, 0.023187290877103806, 0.0007714353851042688, 0.012290929444134235, -0.010303149931132793, -0.0246859323233366, -0.05074561759829521, -0.03321985527873039, -0.0443347692489624, 0.08209217339754105, 0.03784066066145897, 0.02628864347934723, -0.022354714572429657, 0.002011195756494999, -0.00546379154548049, 0.052160996943712234, -0.016505854204297066, -0.07518177479505539, -0.013352466747164726, 0.0005034494097344577, -0.014570111408829689, -0.02320810593664646, 0.03779903054237366, -0.026642490178346634, 0.002999881748110056, 0.06673111021518707, -0.024769188836216927, 0.019284583628177643, 0.020637521520256996, 0.03679993748664856, 0.03082619234919548, 0.0015363661805167794, 0.0567401759326458 ]
24,502
knockknock.slack_sender
slack_sender
Slack sender wrapper: execute func, send a Slack notification with the end status (sucessfully finished or crashed) at the end. Also send a Slack notification before executing func. `webhook_url`: str The webhook URL to access your slack room. Visit https://api.slack.com/incoming-webhooks#create_a_webhook for more details. `channel`: str The slack room to log. `user_mentions`: List[str] (default=[]) Optional users ids to notify. Visit https://api.slack.com/methods/users.identity for more details.
def slack_sender(webhook_url: str, channel: str, user_mentions: List[str] = []): """ Slack sender wrapper: execute func, send a Slack notification with the end status (sucessfully finished or crashed) at the end. Also send a Slack notification before executing func. `webhook_url`: str The webhook URL to access your slack room. Visit https://api.slack.com/incoming-webhooks#create_a_webhook for more details. `channel`: str The slack room to log. `user_mentions`: List[str] (default=[]) Optional users ids to notify. Visit https://api.slack.com/methods/users.identity for more details. """ dump = { "username": "Knock Knock", "channel": channel, "icon_emoji": ":clapper:", } def decorator_sender(func): @functools.wraps(func) def wrapper_sender(*args, **kwargs): start_time = datetime.datetime.now() host_name = socket.gethostname() func_name = func.__name__ # Handling distributed training edge case. # In PyTorch, the launch of `torch.distributed.launch` sets up a RANK environment variable for each process. # This can be used to detect the master process. # See https://github.com/pytorch/pytorch/blob/master/torch/distributed/launch.py#L211 # Except for errors, only the master process will send notifications. if 'RANK' in os.environ: master_process = (int(os.environ['RANK']) == 0) host_name += ' - RANK: %s' % os.environ['RANK'] else: master_process = True if master_process: contents = ['Your training has started 🎬', 'Machine name: %s' % host_name, 'Main call: %s' % func_name, 'Starting date: %s' % start_time.strftime(DATE_FORMAT)] contents.append(' '.join(user_mentions)) dump['text'] = '\n'.join(contents) dump['icon_emoji'] = ':clapper:' requests.post(webhook_url, json.dumps(dump)) try: value = func(*args, **kwargs) if master_process: end_time = datetime.datetime.now() elapsed_time = end_time - start_time contents = ["Your training is complete 🎉", 'Machine name: %s' % host_name, 'Main call: %s' % func_name, 'Starting date: %s' % start_time.strftime(DATE_FORMAT), 'End date: %s' % end_time.strftime(DATE_FORMAT), 'Training duration: %s' % str(elapsed_time)] try: str_value = str(value) contents.append('Main call returned value: %s'% str_value) except: contents.append('Main call returned value: %s'% "ERROR - Couldn't str the returned value.") contents.append(' '.join(user_mentions)) dump['text'] = '\n'.join(contents) dump['icon_emoji'] = ':tada:' requests.post(webhook_url, json.dumps(dump)) return value except Exception as ex: end_time = datetime.datetime.now() elapsed_time = end_time - start_time contents = ["Your training has crashed ☠️", 'Machine name: %s' % host_name, 'Main call: %s' % func_name, 'Starting date: %s' % start_time.strftime(DATE_FORMAT), 'Crash date: %s' % end_time.strftime(DATE_FORMAT), 'Crashed training duration: %s\n\n' % str(elapsed_time), "Here's the error:", '%s\n\n' % ex, "Traceback:", '%s' % traceback.format_exc()] contents.append(' '.join(user_mentions)) dump['text'] = '\n'.join(contents) dump['icon_emoji'] = ':skull_and_crossbones:' requests.post(webhook_url, json.dumps(dump)) raise ex return wrapper_sender return decorator_sender
(webhook_url: str, channel: str, user_mentions: List[str] = [])
[ 0.02055124007165432, -0.02565416693687439, -0.03454442322254181, 0.04512900859117508, 0.009921804070472717, -0.008082956075668335, -0.07140110433101654, 0.05609232559800148, 0.02890329621732235, 0.004181011114269495, 0.03512248769402504, -0.0011991129722446203, 0.01190018467605114, -0.02515583485364914, -0.0064484248869121075, 0.02250470407307148, 0.03544142097234726, -0.011132752522826195, 0.03954768180847168, -0.04588647559285164, 0.03665735200047493, -0.012049684301018715, 0.00630889181047678, 0.03755434975028038, -0.011979917995631695, 0.05118873342871666, 0.02366083674132824, 0.011660984717309475, -0.003854603273794055, -0.008900221437215805, 0.0008596238913014531, -0.08802548795938492, -0.0021278804633766413, 0.006328824907541275, -0.01415264792740345, -0.005272360052913427, -0.08284282684326172, -0.009822137653827667, -0.11752678453922272, -0.03065742738544941, -0.010066320188343525, -0.005955075845122337, 0.0077839563600718975, -0.003934336360543966, -0.03591981902718544, 0.014381881803274155, -0.06466364860534668, 0.09942733496427536, 0.005481659434735775, -0.03611915186047554, -0.01939510740339756, -0.0410626120865345, 0.04317554458975792, 0.02617243304848671, -0.04891633614897728, 0.03669722005724907, 0.011262319050729275, 0.00796335656195879, 0.01161115150898695, -0.02726876549422741, 0.003495803801342845, 0.04488980770111084, 0.02445816807448864, 0.05047113448381424, 0.02760763093829155, 0.0294016283005476, -0.008197573013603687, 0.02736843191087246, 0.0017018060898408294, 0.0024941551964730024, 0.0554145947098732, -0.012896849773824215, 0.0007387782097794116, -0.03619888797402382, -0.0068869576789438725, -0.02210603840649128, -0.03681682050228119, 0.03261088952422142, 0.03205275908112526, -0.00624410854652524, 0.03193315863609314, 0.03813241794705391, -0.02912256307899952, 0.011371951550245285, 0.08874308317899704, 0.00676237465813756, 0.014581214636564255, 0.01895657554268837, -0.0699659064412117, 0.008770654909312725, -0.02423890121281147, -0.03526202216744423, 0.013255649246275425, -0.04076361283659935, -0.0028803630266338587, -0.0168436449021101, 0.03177369385957718, -0.014122748747467995, 0.03753441944718361, -0.020282140001654625, -0.008038106374442577, 0.07251737266778946, -0.02445816807448864, 0.02049143984913826, 0.017949942499399185, -0.07088284194469452, -0.0578065924346447, -0.03813241794705391, -0.0018126851646229625, -0.01975390687584877, -0.10995212197303772, -0.073354572057724, -0.04632500559091568, -0.04349447786808014, 0.04373367503285408, -0.02475716732442379, -0.04616554081439972, 0.03185342624783516, -0.0065132081508636475, 0.001447656424716115, 0.07279644161462784, 0.017132677137851715, -0.009777287021279335, -0.05924179032444954, 0.004158586263656616, 0.0530225969851017, 0.009149388410151005, 0.04138154536485672, 0.07471003383398056, -0.03877028450369835, -0.02049143984913826, 0.0215279720723629, 0.017631011083722115, 0.07120177149772644, 0.02587343379855156, 0.04608580842614174, -0.006837124470621347, 0.04253767803311348, 0.0534212626516819, -0.00227738032117486, 0.016654279083013535, -0.02294323779642582, 0.018328676000237465, -0.04979340359568596, 0.05633152648806572, 0.011292219161987305, -0.01134205237030983, 0.010524786077439785, -0.01957450807094574, -0.03829188272356987, 0.08017176389694214, -0.011720784939825535, -0.00725074065849185, -0.018727341666817665, -0.0310959592461586, 0.03153449296951294, -0.03035842813551426, -0.01479051448404789, 0.04871700331568718, 0.02075057290494442, -0.015458280220627785, -0.03560088574886322, 0.03065742738544941, -0.01258788350969553, 0.010255686938762665, 0.02824549749493599, 0.02577376738190651, 0.01973397471010685, -0.0013592024333775043, 0.09185267984867096, -0.03599955514073372, 0.05019206926226616, -0.011860317550599575, 0.0017852768069133162, -0.02053130604326725, 0.05425846204161644, -0.02718903124332428, -0.017531344667077065, -0.007928472943603992, -0.002125388942658901, -0.09193241596221924, 0.01493004709482193, -0.06127498671412468, -0.02924216166138649, -0.01434201467782259, 0.03051789291203022, 0.0578065924346447, 0.0011804255191236734, -0.02352130226790905, 0.017670877277851105, -0.02667076513171196, 0.01362441573292017, 0.08858361840248108, 0.0574079267680645, -0.00552650960162282, 0.05118873342871666, -0.00020929973106831312, 0.006348758470267057, -0.01057461928576231, -0.06314871460199356, 0.02778702974319458, 0.02236517146229744, 0.04887647181749344, -0.02222563698887825, -0.03653775155544281, -0.03723542019724846, -0.03077702596783638, 0.04301607608795166, -0.0623912513256073, -0.04237821325659752, -0.02244490385055542, -0.04080348089337349, -0.02954116091132164, 0.07905549556016922, 0.0408632792532444, -0.0596005879342556, 0.0641852468252182, 0.02384023554623127, 0.0320926234126091, 0.0002416913484921679, 0.04429180920124054, -0.02198643796145916, -0.0649825856089592, -0.04072374850511551, 0.0420592799782753, 0.04752100631594658, 0.04008588194847107, -0.017471544444561005, 0.05294286459684372, -0.02154790610074997, 0.0159466452896595, -0.014481548219919205, 0.04229847714304924, 0.06446431577205658, -0.01469084806740284, -0.0025564467068761587, -0.03436502069234848, -0.004073869902640581, 0.02515583485364914, -0.03643808513879776, 0.0526239313185215, -0.020381806418299675, 0.06442444771528244, 0.003236670745536685, 0.04076361283659935, -0.01391344889998436, 0.03875035047531128, 0.02912256307899952, -0.07562696933746338, -0.02170737273991108, -0.007255724165588617, 0.02421896904706955, 0.014940014109015465, -0.02932189591228962, -0.04787980392575264, -0.03912908211350441, 0.04979340359568596, -0.03605935350060463, 0.0592019222676754, -0.02380036935210228, 0.01551807951182127, -0.0018974017584696412, -0.07092271000146866, 0.03552115336060524, -0.05485646054148674, -0.05071033537387848, -0.015637679025530815, 0.02758769690990448, -0.01072411984205246, 0.02057117410004139, 0.01537854690104723, 0.04839807003736496, 0.008955038152635098, -0.04253767803311348, -0.0440526083111763, -0.03195309266448021, -0.00016787582717370242, -0.02954116091132164, -0.010813819244503975, 0.0001976200583158061, -0.014132714830338955, 0.01521908026188612, 0.005013226997107267, -0.010873619467020035, 0.0015523063484579325, -0.0243186354637146, 0.03400622308254242, -0.06765364855527878, 0.01079388614743948, -0.03358762338757515, -0.008097906596958637, -0.0071959239430725574, 0.05234486609697342, -0.016594478860497475, -0.016235679388046265, 0.01622571237385273, -0.04437154158949852, -0.0015136855654418468, 0.05952085554599762, -0.06992604583501816, 0.06585964560508728, 0.03952774778008461, 0.01889677532017231, -0.04676353931427002, -0.005436809733510017, -0.004475027322769165, 0.03065742738544941, -0.02142830565571785, -0.008023155853152275, -0.06390618532896042, 0.00053633056813851, 0.001932285027578473, 0.016833677887916565, -0.0262122992426157, 0.02505616843700409, 0.01511941384524107, 0.0560125932097435, 0.014840347692370415, 0.0436539426445961, 0.10014493763446808, 0.02270403690636158, 0.02912256307899952, 0.03958754986524582, 0.05748765915632248, 0.06047765538096428, -0.04987313598394394, 0.05090966820716858, 0.008511521853506565, -0.00945835467427969, 0.02366083674132824, -0.014132714830338955, -0.064583919942379, 0.0239199697971344, -0.03851114958524704, -0.01170085184276104, 0.04620540514588356, -0.01766091026365757, 0.04080348089337349, 0.0308966264128685, -0.01477058045566082, 0.00776900677010417, -0.05098940059542656, -0.02344156987965107, 0.04791967198252678, 0.03932841494679451, -0.03141489252448082, 0.06454405188560486, -0.0031918208114802837, 0.03693641722202301, 0.02964082919061184, 0.02455783449113369, 0.04481007531285286, 0.02140837162733078, 0.03147469088435173, 0.03619888797402382, -0.020381806418299675, -0.01174071803689003, -0.05792619287967682, 0.0204316396266222, -0.03147469088435173, -0.06761378049850464, -0.00360792875289917, -0.01161115150898695, 0.07937443256378174, -0.04596620798110962, 0.02306283637881279, 0.02083030715584755, 0.0006964199128560722, 0.0677732452750206, 0.01072411984205246, 0.02049143984913826, -0.010614486411213875, -0.04520874097943306, 0.03536168858408928, -0.004599610809236765, 0.01634531281888485, -0.02352130226790905, -0.013146016746759415, -0.07299577444791794, 0.03358762338757515, 0.015169247053563595, 0.04492967575788498, -0.02150803804397583, -0.00367271201685071, 0.06845097988843918, 0.002084276406094432, 0.010355353355407715, -0.046843271702528, -0.011332085356116295, -0.0490359365940094, -0.0004101900849491358, -0.02186683751642704, 0.00984705425798893, 0.04301607608795166, -0.03366735577583313, -0.02748803049325943, 0.01947484165430069, 0.03611915186047554, -0.01925557479262352, -0.06960710883140564, 0.04496954008936882, -0.03257102519273758, 0.03902941569685936, -0.0010608256561681628, 0.02098977193236351, 0.06282978504896164, -0.012767283245921135, 0.02328210324048996, -0.003692645113915205, 0.07498910278081894, -0.02930196188390255, -0.0540192648768425, -0.02696976438164711, -0.03067735955119133, -0.0464446060359478, -0.0012533067492768168, -0.0599992573261261, 0.0356806218624115, 0.007335457019507885, 0.02403956837952137, 0.010415153577923775, -0.04791967198252678, 0.0420592799782753, 0.09591907262802124, -0.004886152222752571, 0.0518265999853611, -0.017013078555464745, -0.0484379380941391, -0.006164375226944685, -0.0006509470986202359, 0.0025439884047955275, -0.02553456649184227, -0.019624341279268265, -0.004661902319639921, -0.0011274777352809906, 0.0037599201314151287, -0.02553456649184227, -0.01248821709305048, -0.01463104784488678, 0.04030514881014824, 0.002191418083384633, -0.008506539277732372, 0.0408632792532444, 0.0045148939825594425, 0.0045946273021399975, 0.02671063132584095, -0.04098287969827652, 0.01293671689927578, 0.02687009796500206, -0.0018301267409697175, 0.01031548622995615, 0.0037300202529877424, 0.020302074030041695, 0.05019206926226616, -0.00279564643278718, -0.007494923658668995, -0.06067698821425438, -0.0002217580477008596, -0.006358725018799305, 0.0034833454992622137, -0.007589607033878565, 0.02280370332300663, -0.05744779109954834, 0.03972708061337471, -0.005272360052913427, 0.03330855816602707, 0.0157473124563694, -0.05198606476187706, -0.02655116468667984, 0.02138843946158886, 0.0793345645070076, -0.03283015638589859, 0.02946142852306366, -0.009991570375859737, 0.03191322460770607, -0.00348085374571383, 0.0027856796514242887, -0.0224249716848135, 0.0048886435106396675, -0.0045946273021399975, -0.011172618716955185, -0.0480392724275589, 0.009772304445505142, 0.02756776474416256, -0.031893290579319, 0.00529727665707469, -0.006722507998347282, -0.03663741797208786, 0.02984016202390194, 0.0286042969673872, -0.0558132603764534, 0.007549740374088287, 0.06267032027244568, -0.016275545582175255, -0.04616554081439972, -0.019425008445978165, -0.007694256491959095, 0.012896849773824215, -0.003884503385052085, -0.04309581220149994, -0.020082807168364525, 0.02706943079829216, -0.03510255366563797, 0.02352130226790905, 0.0592019222676754, -0.01355464942753315, -0.02679036557674408, 0.0027856796514242887, -0.0518265999853611, -0.02401963621377945, -0.03799288347363472, -0.002500384347513318, 0.007519840262830257, -0.03015909343957901, -0.05425846204161644, -0.07183963805437088, -0.012538050301373005, 0.03685668483376503, 0.02296316996216774, -0.0681719109416008, 0.07706216722726822, 0.04799940437078476, 0.02098977193236351, 0.006323841866105795, 0.03115575946867466, 0.017650943249464035, 0.04449114203453064, -0.0007275657262653112, -0.0003693891048897058, 0.07191937416791916, -0.01313604973256588, 0.01718251034617424, -0.0039268615655601025, 0.0316939577460289, 0.03422548994421959, -0.0172423105686903, -0.05613219365477562, -0.03534175455570221, -0.03063749335706234, -0.02035190723836422, -0.02312263660132885, -0.010903519578278065, -0.06171352043747902, -0.08946068584918976, -0.018268875777721405, -0.04660407453775406, 0.02065090648829937, 0.05445779487490654, -0.0619925856590271, -0.05433819442987442, -0.06031818687915802, -0.02029210701584816, 0.02376050315797329, 0.03751448541879654, -0.03336835652589798, 0.0073753236792981625, -0.00003498061778373085, 0.01736191101372242, 0.0386706180870533, 0.00256890500895679, -0.02521563321352005, 0.011302185244858265, -0.03281022235751152, -0.07526817172765732, -0.05258406698703766, 0.01901637576520443, -0.01362441573292017, 0.0340859554708004, -0.08080963045358658, -0.03520222008228302, -0.04512900859117508, 0.03982674703001976, 0.03924868255853653, -0.02324223704636097, -0.03418562188744545, 0.02515583485364914, 0.0009150633704848588, -0.04118221253156662, 0.003989153075963259, -0.0051976097747683525, 0.01957450807094574, -0.04349447786808014, -0.04756087064743042, -0.05059073492884636, -0.014102814719080925, 0.011292219161987305, -0.0053321598097682, 0.016953278332948685, -0.03591981902718544, 0.03761415183544159, -0.03894968330860138, 0.0430559441447258, -0.0290029626339674, 0.02988002821803093, 0.05254419893026352, 0.05673019215464592, 0.04233834519982338, 0.009592903777956963, 0.0500326007604599, 0.0456472747027874, -0.04012574627995491, 0.02968069538474083, -0.012119450606405735, -0.01463104784488678, 0.03239162638783455, -0.010903519578278065, -0.02529536746442318, -0.007524823769927025, 0.015368579886853695, -0.05792619287967682, -0.012607816606760025, 0.00152863550465554, 0.0021565346978604794, -0.02158777229487896, 0.01537854690104723, -0.009807187132537365, -0.02390003576874733, -0.004240811336785555, 0.0873078852891922, -0.02312263660132885, 0.0226243045181036, -0.03173382580280304, -0.06446431577205658, -0.02687009796500206, -0.00969755370169878, -0.03514242172241211, 0.019066208973526955, -0.04461074247956276, -0.04660407453775406, -0.05545446276664734, 0.008247406221926212, 0.03400622308254242, 0.07837776839733124, -0.01748151145875454, 0.06306898593902588, 0.002046901499852538, 0.02130870521068573, -0.02254457026720047, -0.02154790610074997, -0.04114234820008278, 0.0058653755113482475, 0.0008160197758115828, -0.01656457781791687, -0.04628514125943184, -0.012757317163050175, 0.009174305014312267, 0.007948406040668488, -0.03502282127737999, 0.0488366037607193, 0.0017217394197359681, -0.011561318300664425, 0.03580021858215332, -0.013873581774532795, 0.0007418927852995694, -0.04040481522679329, 0.05609232559800148, -0.0026386715471744537, -0.01118258573114872, 0.03589988499879837, -0.02862422913312912, -0.02657109871506691, 0.02463756874203682, 0.02417910285294056, -0.0064334748312830925, -0.02946142852306366, 0.000040723123674979433, 0.0230229701846838, -0.02202630415558815, 0.05864379182457924, -0.0006546845543198287, -0.0044501107186079025, -0.018169209361076355, 0.0056012594141066074, -0.01550811342895031, 0.03145476058125496, 0.0275079645216465, 0.010195886716246605, 0.01258788350969553, -0.02557443268597126, -0.017750609666109085, -0.02908269502222538, 0.04612567275762558, -0.051627267152071, 0.014591180719435215, -0.012478250078856945, 0.01502971351146698, 0.0458466075360775, -0.01698317751288414, -0.015837013721466064, 0.02184690535068512, -0.0452486090362072, -0.02669069916009903, -0.03294975683093071, -0.011860317550599575, -0.03562081977725029, -0.07423163950443268, -0.09121481329202652, -0.02461763471364975, -0.05130833387374878, -0.04182007908821106, 0.0256143007427454, -0.0132058160379529, -0.011262319050729275, 0.02386016957461834, 0.01297658309340477, -0.03968721628189087, -0.04361407831311226, -0.02517576701939106, 0.013086216524243355, -0.02704949863255024, 0.05174686759710312, -0.03954768180847168, 0.06924831122159958, 0.019464874640107155, 0.0028006297070533037, -0.0438532754778862, -0.04536820948123932, 0.04756087064743042, 0.03372715786099434, 0.017690811306238174, -0.0063039083033800125, 0.01712271198630333, 0.08364015817642212, -0.006817191373556852, 0.02399970218539238, -0.03960748016834259, 0.009224138222634792, -0.01686357893049717, 0.04935486987233162, -0.01528884656727314, 0.00018562893092166632, -0.0037474618293344975, -0.02968069538474083, 0.03785335272550583, 0.04799940437078476, -0.06171352043747902, 0.02268410474061966, 0.014710781164467335, -0.0010857423767447472, -0.010425119660794735, -0.02397976815700531, -0.03892974928021431, -0.03283015638589859, -0.02202630415558815, 0.08579295873641968, -0.0008820488583296537, 0.04608580842614174, -0.008830455131828785, 0.008312189020216465, -0.005631159525364637, 0.0422586128115654, -0.02489670179784298, -0.08148735761642456, -0.004639477469027042, 0.0394679494202137, -0.00894008856266737, -0.0022973136510699987, 0.004014069680124521, -0.03013916127383709, -0.008486605249345303, 0.06083645299077034, -0.04201941192150116, 0.0031519541516900063, 0.03257102519273758, 0.02270403690636158, 0.02573389932513237, 0.013415115885436535, 0.08324149250984192 ]
24,503
knockknock.sms_sender
sms_sender
null
def sms_sender(account_sid: str, auth_token: str, recipient_number: str, sender_number: str): client = Client(account_sid, auth_token) def decorator_sender(func): @functools.wraps(func) def wrapper_sender(*args, **kwargs): start_time = datetime.datetime.now() host_name = socket.gethostname() func_name = func.__name__ # Handling distributed training edge case. # In PyTorch, the launch of `torch.distributed.launch` sets up a RANK environment variable for each process. # This can be used to detect the master process. # See https://github.com/pytorch/pytorch/blob/master/torch/distributed/launch.py#L211 # Except for errors, only the master process will send notifications. if 'RANK' in os.environ: master_process = (int(os.environ['RANK']) == 0) host_name += ' - RANK: %s' % os.environ['RANK'] else: master_process = True if master_process: contents = ['Your training has started 🎬', 'Machine name: %s' % host_name, 'Main call: %s' % func_name, 'Starting date: %s' % start_time.strftime(DATE_FORMAT)] text = '\n'.join(contents) client.messages.create(body=text, from_=sender_number, to=recipient_number) try: value = func(*args, **kwargs) if master_process: end_time = datetime.datetime.now() elapsed_time = end_time - start_time contents = ["Your training is complete 🎉", 'Machine name: %s' % host_name, 'Main call: %s' % func_name, 'Starting date: %s' % start_time.strftime(DATE_FORMAT), 'End date: %s' % end_time.strftime(DATE_FORMAT), 'Training duration: %s' % str(elapsed_time)] try: str_value = str(value) contents.append('Main call returned value: %s'% str_value) except: contents.append('Main call returned value: %s'% "ERROR - Couldn't str the returned value.") text = '\n'.join(contents) client.messages.create(body=text, from_=sender_number, to=recipient_number) return value except Exception as ex: end_time = datetime.datetime.now() elapsed_time = end_time - start_time contents = ["Your training has crashed ☠️", 'Machine name: %s' % host_name, 'Main call: %s' % func_name, 'Starting date: %s' % start_time.strftime(DATE_FORMAT), 'Crash date: %s' % end_time.strftime(DATE_FORMAT), 'Crashed training duration: %s\n\n' % str(elapsed_time), "Here's the error:", '%s\n\n' % ex, "Traceback:", '%s' % traceback.format_exc()] text = '\n'.join(contents) client.messages.create(body=text, from_=sender_number, to=recipient_number) raise ex return wrapper_sender return decorator_sender
(account_sid: str, auth_token: str, recipient_number: str, sender_number: str)
[ -0.002614115597680211, 0.014062476344406605, 0.014697682112455368, 0.03467245772480965, 0.00656704930588603, -0.010691000148653984, -0.06004159525036812, 0.03578650951385498, 0.02529095858335495, -0.00843846332281828, 0.023082396015524864, 0.017091918736696243, 0.017375318333506584, -0.02142108976840973, -0.02431371808052063, 0.04518755525350571, 0.05136370658874512, -0.038894131779670715, 0.01313409861177206, -0.05578082799911499, 0.020131133496761322, 0.021831529214978218, 0.010866902768611908, 0.02710862271487713, -0.01689647138118744, 0.06379419565200806, 0.0030221131164580584, 0.0008624138426966965, 0.03523925691843033, 0.0018494257237762213, 0.0034814155660569668, -0.06868039071559906, -0.011775735765695572, 0.031721193343400955, -0.03248343989253044, -0.020834745839238167, -0.052184589207172394, -0.05660171061754227, -0.09475313872098923, -0.024176904931664467, 0.018460053950548172, 0.01676942966878414, 0.06813313812017441, 0.03484835848212242, -0.035532426089048386, 0.0043022967875003815, -0.022105157375335693, 0.06828949600458145, -0.012137314304709435, 0.007275547832250595, -0.02773405611515045, -0.028965378180146217, 0.015665149316191673, -0.00010741999722085893, -0.035063352435827255, 0.022671956568956375, 0.02669818326830864, 0.018254833295941353, -0.039382752031087875, -0.0029952391050755978, -0.0014634161489084363, 0.044562119990587234, 0.020854290574789047, 0.04202129691839218, 0.038874585181474686, 0.014365420676767826, -0.02767542190849781, 0.028046773746609688, 0.02630728669464588, 0.01892912946641445, 0.0675467923283577, -0.03533697873353958, -0.022300604730844498, -0.008052453398704529, 0.02153835818171501, -0.006288535892963409, -0.04819745197892189, 0.04866652563214302, 0.014355648308992386, 0.011384840123355389, 0.04725930094718933, 0.030743954703211784, -0.008687659166753292, -0.00644489424303174, 0.036451034247875214, 0.02054157480597496, -0.017375318333506584, 0.018919356167316437, -0.033577948808670044, 0.0272845271974802, -0.013739987276494503, -0.03295251354575157, -0.01166823972016573, -0.03131075203418732, -0.027909958735108376, -0.02343420311808586, 0.03305023908615112, -0.01744372397661209, 0.007744622882455587, 0.0218510739505291, -0.02011158876121044, 0.11937957257032394, -0.02104973793029785, 0.012283899821341038, 0.05284911021590233, -0.06051066890358925, -0.0561717264354229, -0.04401486739516258, 0.04811927303671837, 0.005389475729316473, -0.03953910991549492, -0.02482188306748867, -0.06058884784579277, -0.025486405938863754, -0.004969262983649969, -0.041708581149578094, -0.02286740392446518, 0.028730841353535652, -0.04546118155121803, -0.00669897673651576, 0.07634194940328598, 0.0029756941366940737, -0.025447316467761993, -0.06887584179639816, -0.011531425639986992, 0.022085612639784813, 0.027890413999557495, 0.016358988359570503, 0.09834938496351242, -0.07974274456501007, -0.013515221886336803, 0.0022061180789023638, 0.0706348717212677, 0.038425058126449585, 0.0027997910510748625, 0.04249037429690361, 0.0009234913159161806, 0.015782417729496956, 0.03944138437509537, 0.035121988505125046, 0.007241344545036554, 0.02617047354578972, -0.00849709752947092, -0.043545790016651154, 0.06735134869813919, 0.006733180023729801, -0.020365670323371887, 0.04104405641555786, -0.015391522087156773, -0.03996909409761429, 0.0478847362101078, 0.011619377881288528, 0.024704614654183388, -0.01146301906555891, -0.05593718960881233, 0.036959197372198105, -0.01334909163415432, -0.007446564733982086, 0.0523800365626812, 0.0014670807868242264, 0.015147211961448193, -0.03373430669307709, 0.04225583374500275, -0.033617038279771805, 0.038307785987854004, 0.019368886947631836, -0.038796406239271164, -0.0172580499202013, -0.02617047354578972, 0.04518755525350571, -0.05531175434589386, 0.01932002417743206, -0.025896845385432243, -0.029453998431563377, -0.014199289493262768, -0.020639298483729362, -0.003608456812798977, 0.0006639120983891189, -0.013534766621887684, 0.030372602865099907, -0.04065316170454025, 0.01699419505894184, -0.02861357294023037, 0.0009485330665484071, -0.004373146686702967, 0.03181891888380051, 0.04448394104838371, -0.012547754682600498, 0.016544664278626442, -0.031154394149780273, 0.017863938584923744, 0.022066067904233932, 0.06782042235136032, 0.03717419132590294, -0.03905048966407776, 0.03564969450235367, 0.002540822606533766, -0.020404759794473648, -0.023981457576155663, -0.0352197103202343, 0.0185089148581028, 0.024704614654183388, 0.02476324886083603, 0.020307036116719246, -0.0010340415174141526, -0.03961728885769844, -0.06004159525036812, 0.022046523168683052, -0.08169721812009811, -0.01261616125702858, -0.013495677150785923, -0.07864823192358017, -0.028789475560188293, 0.09850574284791946, 0.04917469248175621, -0.030685320496559143, 0.06199607253074646, 0.044640298932790756, 0.05472541227936745, 0.0066256835125386715, 0.061800625175237656, -0.044562119990587234, -0.06969671696424484, -0.05957251787185669, 0.029473543167114258, 0.04225583374500275, 0.00413127988576889, -0.04088769853115082, 0.032190266996622086, -0.010212152265012264, 0.0352197103202343, 0.012977740727365017, 0.009845688007771969, 0.06324693560600281, -0.040340445935726166, -0.054686322808265686, -0.020287491381168365, -0.028965378180146217, 0.036451034247875214, -0.0505819171667099, 0.023649195209145546, 0.02241787314414978, 0.04917469248175621, 0.013700897805392742, 0.08967149257659912, -0.020326580852270126, 0.00042723689693957567, 0.0323270820081234, -0.07110394537448883, 0.016964877024292946, -0.05101190134882927, 0.01475631631910801, 0.015293797478079796, -0.029278093948960304, -0.0394609309732914, -0.039382752031087875, 0.00820392556488514, -0.001773689640685916, 0.0200529545545578, 0.018704364076256752, -0.000556721119210124, -0.023492837324738503, -0.07986000925302505, -0.0296299010515213, -0.006972603499889374, -0.010778951458632946, -0.04534391313791275, 0.05761804059147835, 0.021675171330571175, 0.029766714200377464, 0.021382000297307968, 0.03179937228560448, -0.0014780747005715966, -0.021577447652816772, -0.026326831430196762, -0.031877551227808, -0.0323270820081234, -0.03613831475377083, -0.007065441459417343, -0.01332954689860344, -0.023219209164381027, 0.046594779938459396, 0.0004794581327587366, -0.01789325475692749, 0.018235288560390472, -0.011101440526545048, 0.04780655726790428, -0.10350920259952545, 0.010534641332924366, -0.03635330870747566, -0.03093940205872059, -0.018049612641334534, 0.05335727706551552, -0.033421590924263, -0.01948615536093712, -0.012313217855989933, -0.04991739243268967, -0.01768803410232067, 0.019456837326288223, -0.043623968958854675, 0.03801461681723595, 0.06621775031089783, -0.033167507499456406, -0.02056111954152584, 0.01712123490869999, 0.012440258637070656, -0.010642138309776783, 0.019290708005428314, -0.007915640249848366, -0.03254207596182823, -0.02820313163101673, 0.013554311357438564, 0.023238755762577057, -0.05433451384305954, 0.0695403590798378, 0.05046464502811432, 0.032717976719141006, 0.03865959495306015, 0.04393668845295906, 0.07122121006250381, 0.005809688940644264, 0.043623968958854675, 0.018557777628302574, 0.06187880411744118, 0.03199481964111328, -0.017521904781460762, -0.009635581634938717, 0.019681602716445923, -0.04163040220737457, 0.02482188306748867, -0.04198220744729042, -0.027010899037122726, -0.0007506420952267945, -0.06211334094405174, -0.021186551079154015, 0.04960467666387558, 0.031213028356432915, 0.010261014103889465, 0.015821507200598717, 0.005882981698960066, 0.03346068039536476, -0.04976103454828262, -0.038835495710372925, 0.05112916976213455, 0.0009644132223911583, -0.018538232892751694, 0.029962163418531418, -0.005770599003881216, 0.05245821550488472, 0.0035327207297086716, -0.02200743369758129, 0.032620254904031754, 0.04378033056855202, 0.040301356464624405, 0.052653662860393524, 0.014639046974480152, -0.03179937228560448, -0.04972194507718086, 0.027401795610785484, -0.035962413996458054, -0.04870561510324478, 0.01148256380110979, -0.011746418662369251, 0.04663386940956116, -0.10421282052993774, 0.020170222967863083, 0.00019376826821826398, -0.025486405938863754, 0.10311830788850784, 0.01333931926637888, 0.0023026205599308014, -0.022300604730844498, -0.011062351055443287, 0.08107178658246994, -0.017805302515625954, 0.006166381295770407, -0.052184589207172394, -0.005516516976058483, -0.07505199313163757, 0.041708581149578094, 0.01315364334732294, 0.00807199813425541, 0.029668990522623062, 0.0022024535574018955, 0.10014750063419342, 0.00032157287932932377, 0.04346761107444763, -0.024196449667215347, -0.0354151576757431, -0.055116306990385056, 0.011287116445600986, -0.003547379281371832, -0.0025286071468144655, 0.023668739944696426, -0.06019795313477516, -0.03582559898495674, -0.006053998600691557, 0.033089328557252884, -0.018254833295941353, -0.08928059786558151, 0.020697932690382004, -0.03715464472770691, 0.026014115661382675, 0.016964877024292946, 0.007343954872339964, 0.03572787716984749, -0.004925286862999201, -0.04917469248175621, 0.04112223908305168, 0.058360740542411804, -0.028476757928729057, -0.05922071263194084, 0.004531947895884514, -0.004566151648759842, -0.035043809562921524, -0.006850448902696371, -0.061370640993118286, 0.031232573091983795, -0.010075339116156101, 0.023277845233678818, 0.008834244683384895, -0.04851016774773598, 0.02679590694606304, 0.059337981045246124, -0.0047567132860422134, 0.042646732181310654, -0.05777439847588539, -0.04428849369287491, 0.022183336317539215, -0.028789475560188293, -0.023981457576155663, -0.026874085888266563, -0.02534959279000759, -0.010808268561959267, -0.013759532012045383, 0.013251367025077343, -0.030411692336201668, -0.009166506119072437, -0.025623219087719917, -0.018235288560390472, 0.01819619908928871, -0.018968218937516212, 0.011287116445600986, -0.03000125288963318, -0.02142108976840973, -0.025408226996660233, -0.011111212894320488, 0.0003631055587902665, 0.02955172210931778, -0.00974307768046856, 0.0354151576757431, 0.013573856092989445, -0.0026361034251749516, 0.05284911021590233, 0.01172687392681837, -0.031701650470495224, 0.01911480352282524, -0.04045771434903145, -0.013026602566242218, 0.01453155092895031, -0.004272979684174061, 0.02435280755162239, -0.08435530960559845, 0.03529788926243782, 0.01674988493323326, 0.054139066487550735, 0.01452177856117487, -0.022574232891201973, -0.012713885866105556, 0.00847755279392004, 0.047376569360494614, -0.03918730467557907, 0.015176529064774513, -0.021382000297307968, 0.03281570225954056, 0.017052829265594482, -0.006611024960875511, -0.013945206999778748, -0.0272845271974802, 0.044171225279569626, 0.01721896044909954, -0.04436667263507843, 0.005335727706551552, 0.02914128080010414, -0.008912423625588417, 0.05359181389212608, -0.020756566897034645, -0.049409229308366776, 0.03275706619024277, 0.016593527048826218, -0.021342910826206207, 0.024567799642682076, 0.0601588636636734, 0.002941490849480033, -0.018919356167316437, 0.015166756696999073, -0.015635831281542778, -0.007339068688452244, -0.012352307327091694, -0.035571515560150146, -0.040301356464624405, 0.015889914706349373, -0.045070283114910126, 0.04608661308884621, 0.06895402073860168, 0.02001386508345604, -0.06477143615484238, 0.02808586321771145, -0.03752599656581879, -0.012352307327091694, -0.023629650473594666, 0.030900312587618828, -0.02425508387386799, 0.015342660248279572, -0.06254332512617111, -0.07075213640928268, -0.06524050980806351, -0.02617047354578972, -0.03416429087519646, -0.06805495917797089, 0.04616479203104973, 0.04378033056855202, -0.005672875326126814, 0.014629274606704712, 0.017727123573422432, 0.027988139539957047, 0.01738508976995945, -0.00835539773106575, 0.02044384926557541, 0.04014499858021736, -0.0001856754970503971, 0.049409229308366776, 0.030841678380966187, 0.03993000462651253, 0.03195573017001152, -0.022144246846437454, -0.051754601299762726, -0.06766406446695328, -0.01260638888925314, -0.024489620700478554, -0.012635706923902035, -0.013251367025077343, -0.06590502709150314, -0.0626605972647667, -0.004751827102154493, -0.031779829412698746, 0.0003783749125432223, 0.02058066427707672, -0.0789218619465828, -0.0358646884560585, -0.028379034250974655, -0.035532426089048386, 0.01838187500834465, -0.02534959279000759, 0.002284297253936529, 0.02820313163101673, -0.02869175188243389, 0.008570389822125435, 0.012831154279410839, -0.023629650473594666, -0.016476256772875786, 0.016378533095121384, -0.009029692970216274, -0.02961035631597042, -0.05374817177653313, 0.00831630825996399, -0.003559594741091132, -0.015606514178216457, -0.06570958346128464, -0.026365920901298523, -0.051285527646541595, 0.013290456496179104, 0.03817097470164299, 0.04057498276233673, -0.05101190134882927, 0.034105658531188965, 0.0015819064574316144, -0.07317569106817245, 0.00006355874211294577, -0.0037037376314401627, 0.05253639444708824, -0.02534959279000759, -0.0323270820081234, -0.035121988505125046, -0.01712123490869999, 0.03373430669307709, -0.07481745630502701, 0.0046956357546150684, -0.02151881344616413, 0.012987513095140457, 0.006611024960875511, 0.035473793745040894, -0.0133686363697052, 0.021577447652816772, 0.05288819968700409, 0.06649137288331985, 0.024919606745243073, -0.00681624561548233, 0.06520141661167145, 0.02488051727414131, -0.03776053339242935, 0.09186051040887833, 0.012127541936933994, -0.016554437577724457, 0.06324693560600281, -0.008731634356081486, -0.044562119990587234, -0.026580912992358208, 0.0018237731419503689, -0.0419040285050869, -0.006523073650896549, -0.0017504802672192454, 0.010485779494047165, -0.03500472009181976, 0.04819745197892189, -0.00003294365887995809, -0.0296299010515213, -0.04155222326517105, 0.08224447816610336, -0.014678137376904488, 0.040809519588947296, -0.024587346240878105, -0.047923825681209564, -0.018596867099404335, 0.027988139539957047, 0.02382509782910347, 0.009870118461549282, -0.06101883202791214, -0.049370139837265015, -0.023531926795840263, -0.03392975404858589, 0.03338250145316124, 0.10827813297510147, -0.012322990223765373, 0.047923825681209564, -0.018948674201965332, 0.007285320200026035, 0.030646231025457382, -0.02093246951699257, -0.06570958346128464, -0.01622217521071434, 0.016554437577724457, -0.042138565331697464, -0.06856311857700348, -0.04585207626223564, -0.01689647138118744, -0.004729839041829109, -0.04851016774773598, 0.04471847787499428, -0.002105951076373458, -0.019085487350821495, 0.09232958406209946, -0.03301114961504936, 0.013759532012045383, -0.0032908539287745953, 0.020131133496761322, -0.021342910826206207, -0.014355648308992386, 0.046008434146642685, -0.010964627377688885, -0.013886572793126106, 0.012987513095140457, 0.02677636221051216, -0.016095133498311043, -0.01595832034945488, -0.013026602566242218, 0.003613342996686697, -0.008883106522262096, 0.06316875666379929, -0.01956433430314064, -0.002283075824379921, 0.021655626595020294, -0.032620254904031754, -0.0030856337398290634, 0.032190266996622086, 0.024137815460562706, 0.023512382060289383, -0.030763499438762665, -0.010622593574225903, -0.002334380755200982, -0.0338711217045784, 0.04378033056855202, -0.0008746293606236577, 0.009117644280195236, -0.02675681747496128, -0.02390327863395214, 0.05187187343835831, 0.0072462307289242744, -0.03688101842999458, 0.002875527134165168, -0.012665024027228355, -0.0370178297162056, -0.007177824154496193, 0.007446564733982086, 0.0034252244513481855, 0.009093213826417923, -0.04894015192985535, -0.041747670620679855, -0.06570958346128464, -0.020893380045890808, -0.016378533095121384, 0.003620672272518277, -0.01334909163415432, 0.031779829412698746, -0.017131008207798004, -0.05335727706551552, -0.015948548913002014, -0.033206596970558167, 0.01505926065146923, -0.04096587747335434, 0.06000250577926636, -0.07360567897558212, 0.06801586598157883, 0.06230878829956055, 0.004128837026655674, -0.038385968655347824, -0.011756191030144691, 0.0552726648747921, 0.07188573479652405, 0.004263207316398621, -0.011130757629871368, 0.005189141724258661, 0.09350227564573288, -0.03912866860628128, 0.021792439743876457, -0.025584129616618156, 0.008028022013604641, 0.002039987361058593, 0.03781916946172714, -0.029258549213409424, 0.02523232251405716, -0.007387930527329445, -0.04065316170454025, 0.08990602940320969, 0.052184589207172394, -0.02241787314414978, -0.0034643139224499464, 0.03471154719591141, -0.02767542190849781, 0.015371977351605892, -0.03105667047202587, 0.00666965963318944, 0.006977489683777094, -0.00027988749206997454, 0.03490699455142021, 0.05730532482266426, -0.005438337568193674, 0.017277594655752182, 0.015577197074890137, -0.008189266547560692, 0.022632867097854614, -0.016886698082089424, -0.04706385359168053, -0.008516642265021801, 0.01290933322161436, -0.017541449517011642, -0.019329797476530075, -0.017844393849372864, 0.0027020671404898167, -0.017600083723664284, 0.05808711424469948, -0.013544538989663124, 0.02523232251405716, 0.02765587717294693, 0.011296888813376427, 0.016681477427482605, 0.01689647138118744, 0.10350920259952545 ]
24,504
knockknock.teams_sender
teams_sender
team sender wrapper: execute func, send a team notification with the end status (sucessfully finished or crashed) at the end. Also send a Slack notification before executing func. `webhook_url`: str The webhook URL to access your slack room. Visit https://docs.microsoft.com/en-us/microsoftteams/platform/concepts/connectors/connectors-using for more details. `user_mentions`: List[str] (default=[]) Optional users ids to notify.
def teams_sender(webhook_url: str, user_mentions: List[str] = []): """ team sender wrapper: execute func, send a team notification with the end status (sucessfully finished or crashed) at the end. Also send a Slack notification before executing func. `webhook_url`: str The webhook URL to access your slack room. Visit https://docs.microsoft.com/en-us/microsoftteams/platform/concepts/connectors/connectors-using for more details. `user_mentions`: List[str] (default=[]) Optional users ids to notify. """ dump = { "username": "Knock Knock", "icon_emoji": ":clapper:", } def decorator_sender(func): @functools.wraps(func) def wrapper_sender(*args, **kwargs): start_time = datetime.datetime.now() host_name = socket.gethostname() func_name = func.__name__ # Handling distributed training edge case. # In PyTorch, the launch of `torch.distributed.launch` sets up a RANK environment variable for each process. # This can be used to detect the master process. # See https://github.com/pytorch/pytorch/blob/master/torch/distributed/launch.py#L211 # Except for errors, only the master process will send notifications. if 'RANK' in os.environ: master_process = (int(os.environ['RANK']) == 0) host_name += ' - RANK: %s' % os.environ['RANK'] else: master_process = True if master_process: contents = ['Your training has started 🎬', 'Machine name: %s' % host_name, 'Main call: %s' % func_name, 'Starting date: %s' % start_time.strftime(DATE_FORMAT)] contents.append(' '.join(user_mentions)) dump['text'] = '\n'.join(contents) dump['icon_emoji'] = ':clapper:' requests.post(webhook_url, json.dumps(dump)) try: value = func(*args, **kwargs) if master_process: end_time = datetime.datetime.now() elapsed_time = end_time - start_time contents = ["Your training is complete 🎉", 'Machine name: %s' % host_name, 'Main call: %s' % func_name, 'Starting date: %s' % start_time.strftime( DATE_FORMAT), 'End date: %s' % end_time.strftime( DATE_FORMAT), 'Training duration: %s' % str(elapsed_time)] try: str_value = str(value) contents.append( 'Main call returned value: %s' % str_value) except: contents.append('Main call returned value: %s' % "ERROR - Couldn't str the returned value.") contents.append(' '.join(user_mentions)) dump['text'] = '\n'.join(contents) dump['icon_emoji'] = ':tada:' requests.post(webhook_url, json.dumps(dump)) return value except Exception as ex: end_time = datetime.datetime.now() elapsed_time = end_time - start_time contents = ["Your training has crashed ☠️", 'Machine name: %s' % host_name, 'Main call: %s' % func_name, 'Starting date: %s' % start_time.strftime( DATE_FORMAT), 'Crash date: %s' % end_time.strftime(DATE_FORMAT), 'Crashed training duration: %s\n\n' % str( elapsed_time), "Here's the error:", '%s\n\n' % ex, "Traceback:", '%s' % traceback.format_exc()] contents.append(' '.join(user_mentions)) dump['text'] = '\n'.join(contents) dump['icon_emoji'] = ':skull_and_crossbones:' requests.post(webhook_url, json.dumps(dump)) raise ex return wrapper_sender return decorator_sender
(webhook_url: str, user_mentions: List[str] = [])
[ 0.02663518860936165, -0.02907625585794449, -0.0488213375210762, 0.033741842955350876, -0.017274485900998116, -0.023229507729411125, -0.06929480284452438, 0.04165562614798546, 0.01006447896361351, 0.02889908291399479, 0.025217795744538307, -0.005472714547067881, -0.0034573578741401434, -0.026713933795690536, -0.01248093880712986, 0.029391232877969742, 0.04017917439341545, -0.016359085217118263, 0.04267929866909981, -0.04897882416844368, 0.043230507522821426, 0.004909201990813017, -0.0004109457368031144, 0.028682535514235497, 0.00031205423874780536, 0.057089466601610184, 0.0057433973997831345, 0.0010107542620971799, -0.0036148459184914827, 0.013071519322693348, -0.0035680916626006365, -0.07630302757024765, -0.014843261800706387, 0.0008674153941683471, -0.01698903739452362, -0.0030734804458916187, -0.08189385384321213, 0.002605937421321869, -0.12134464830160141, -0.036360085010528564, -0.022186148911714554, -0.0070426748134195805, 0.03464740142226219, 0.013622728176414967, -0.03970671072602272, -0.0031399207655340433, -0.051931727677583694, 0.09000449627637863, -0.004606529604643583, -0.02889908291399479, -0.008637242950499058, -0.04976626858115196, 0.046222783625125885, 0.029529035091400146, -0.03891926631331444, 0.04413606598973274, 0.010472964495420456, -0.008341952227056026, 0.00909494236111641, -0.03114328905940056, 0.002128551248461008, 0.02685173600912094, 0.023308251053094864, 0.0525616817176342, 0.02476501651108265, 0.027245456352829933, -0.00668340502306819, 0.02685173600912094, -0.003966733813285828, 0.02645801566541195, 0.05342786759138107, -0.00530538335442543, -0.015197609551250935, -0.026910793036222458, -0.006078059785068035, -0.0035434842575341463, -0.028584105893969536, 0.02063095197081566, 0.034194622188806534, -0.004094692878425121, 0.03210790455341339, 0.03860429301857948, -0.030257418751716614, -0.0002140855067409575, 0.0889020785689354, 0.0019427643856033683, 0.017451658844947815, 0.011988787911832333, -0.06933417171239853, -0.013022304512560368, -0.02232395112514496, -0.04090755805373192, 0.009911912493407726, -0.032245706766843796, -0.022284578531980515, -0.011004487052559853, 0.01955806463956833, -0.0015022896695882082, 0.004114378709346056, -0.01564054563641548, 0.004960877820849419, 0.06783803552389145, -0.005640045739710331, 0.03891926631331444, 0.028367560356855392, -0.06988538056612015, -0.06555445492267609, -0.032619740813970566, -0.0028938453178852797, -0.01055170875042677, -0.12016348540782928, -0.0647670179605484, -0.049018196761608124, -0.029351860284805298, 0.04701022431254387, -0.016122853383421898, -0.0374625027179718, 0.04145876690745354, 0.004495795350521803, 0.002042424865067005, 0.07835037261247635, 0.026300527155399323, -0.00019147733110003173, -0.06563320010900497, -0.0015330490423366427, 0.047915779054164886, 0.009587093256413937, 0.04082881286740303, 0.07138152420520782, -0.0508686825633049, -0.019636807963252068, 0.013603041879832745, 0.011122602969408035, 0.07386195659637451, 0.03315126150846481, 0.046695247292518616, -0.00574831897392869, 0.035808876156806946, 0.05323100835084915, -0.014616872183978558, 0.007775979116559029, -0.016624847427010536, 0.009660916402935982, -0.044254180043935776, 0.038249943405389786, 0.0017877370119094849, -0.005246325396001339, 0.0014173936797305942, -0.02167431078851223, -0.03360404074192047, 0.07382258772850037, -0.02626115456223488, -0.03246225416660309, -0.021753055974841118, -0.03324969485402107, 0.03614353761076927, -0.02074906788766384, -0.016959508880972862, 0.05366409942507744, 0.02588712051510811, -0.014547971077263355, -0.037501875311136246, 0.016575630754232407, 0.0054185776971280575, 0.01843596063554287, 0.0281510129570961, 0.023485425859689713, 0.016802020370960236, -0.012284078635275364, 0.08087018132209778, -0.02740294486284256, 0.05976676568388939, -0.01412472128868103, 0.006816285662353039, -0.0013054293813183904, 0.03350561112165451, -0.02196960151195526, -0.03191104531288147, -0.011122602969408035, 0.0015945679042488337, -0.08968952298164368, 0.012864816002547741, -0.051852986216545105, -0.03246225416660309, -0.019646652042865753, 0.03474583104252815, 0.052994776517152786, 0.017973339185118675, -0.036734119057655334, 0.014085349626839161, -0.04008074477314949, 0.01003987155854702, 0.07559432834386826, 0.06354648619890213, -0.020768754184246063, 0.042285576462745667, -0.014213308691978455, 0.01253015361726284, -0.01533541176468134, -0.09370546787977219, 0.025926493108272552, 0.03809245675802231, 0.0471283383667469, -0.029824325814843178, -0.02909594215452671, -0.03769873455166817, -0.021162474527955055, 0.018495019525289536, -0.05453028529882431, -0.04177374020218849, -0.02551308646798134, -0.04441167041659355, -0.02431223914027214, 0.07980713993310928, 0.03846649080514908, -0.06571194529533386, 0.06791678071022034, 0.02100498601794243, 0.02112310379743576, 0.008209072053432465, 0.04563220217823982, -0.03417493775486946, -0.052049845457077026, -0.03332843631505966, 0.04149813577532768, 0.060199860483407974, 0.03305283188819885, -0.011467108502984047, 0.044726643711328506, -0.016546102240681648, -0.0034548970870673656, -0.005679417867213488, 0.015414156019687653, 0.05346724018454552, -0.03076925501227379, -0.002667456166818738, -0.02027660422027111, -0.026221783831715584, 0.019351361319422722, -0.02966683730483055, 0.054648399353027344, -0.014675930142402649, 0.06795614957809448, 0.020089587196707726, 0.037108153104782104, -0.019715553149580956, 0.04027760401368141, 0.005128209013491869, -0.07579118758440018, 0.00007866719533922151, -0.000954772112891078, 0.011289934627711773, 0.014223151840269566, -0.021359335631132126, -0.044529784470796585, -0.06260155141353607, 0.03706878051161766, -0.033820588141679764, 0.06220783293247223, -0.015778347849845886, 0.014853104948997498, -0.002422611229121685, -0.06669624894857407, 0.04756143316626549, -0.04760080575942993, -0.038722407072782516, -0.024056321009993553, 0.026143038645386696, -0.014833418652415276, 0.013514455407857895, 0.006604660768061876, 0.04015948623418808, 0.015355098061263561, -0.040592581033706665, -0.04515973851084709, -0.034686774015426636, -0.009700288064777851, -0.03602542355656624, -0.01955806463956833, -0.012717170640826225, -0.01280575804412365, 0.00243491493165493, -0.011368678882718086, -0.012028160504996777, 0.012904188595712185, -0.018563920632004738, 0.025355597957968712, -0.0579950250685215, 0.018248943611979485, -0.032698486000299454, -0.021910544484853745, -0.004485952667891979, 0.05984551087021828, -0.025079993531107903, -0.01671343296766281, 0.024450041353702545, -0.03933267295360565, 0.010384377092123032, 0.06673561781644821, -0.06831049919128418, 0.06941291689872742, 0.04468727111816406, 0.033072520047426224, -0.05657763034105301, -0.013593198731541634, -0.006422565318644047, 0.031399205327034, -0.027068281546235085, 0.005408735014498234, -0.062798410654068, 0.007795665413141251, -0.007731685880571604, 0.0037255799397826195, -0.0407106950879097, 0.05283728614449501, 0.0298440121114254, 0.040592581033706665, 0.012333293445408344, 0.046025920659303665, 0.08638226985931396, 0.02242238074541092, 0.02007974311709404, 0.06110541522502899, 0.03529703989624977, 0.0712634027004242, -0.06551508605480194, 0.04535659775137901, -0.005482557695358992, -0.012136433273553848, 0.02232395112514496, -0.00935578253120184, -0.07161775231361389, 0.02506030723452568, -0.026103666052222252, -0.0186623502522707, 0.049963127821683884, -0.015837404876947403, 0.04504162073135376, 0.061144787818193436, -0.0014530746266245842, 0.009970970451831818, -0.045474715530872345, -0.023780716583132744, 0.047167710959911346, 0.034194622188806534, -0.02167431078851223, 0.062089718878269196, 0.015217295847833157, 0.027166713029146194, 0.04393920302391052, 0.020985301584005356, 0.032895345240831375, 0.037679050117731094, 0.03447022661566734, 0.038623977452516556, -0.020296290516853333, -0.018002867698669434, -0.07401944696903229, 0.03124171867966652, -0.03679317608475685, -0.07335012406110764, -0.005886121187359095, 0.008415775373578072, 0.0739407017827034, -0.047246456146240234, 0.006412722170352936, 0.0281510129570961, -0.014488913118839264, 0.06941291689872742, -0.00187140260823071, 0.010502493008971214, -0.008401010185480118, -0.023111391812562943, 0.03041490539908409, 0.008637242950499058, 0.02092624269425869, -0.017451658844947815, 0.0008680305909365416, -0.07496437430381775, 0.04212808981537819, 0.020808126777410507, 0.04740394279360771, -0.007707078009843826, 0.01214627642184496, 0.08315376192331314, -0.0013571052113547921, 0.026871422305703163, -0.038998011499643326, -0.00028237138758413494, -0.0407106950879097, 0.01763867773115635, -0.02551308646798134, 0.011969102546572685, 0.03208821639418602, -0.04956940561532974, -0.02974558062851429, -0.0006619425257667899, 0.03124171867966652, -0.013603041879832745, -0.07256267964839935, 0.046773992478847504, -0.021753055974841118, 0.044057320803403854, -0.007702156435698271, 0.018672192469239235, 0.05984551087021828, -0.02309170551598072, 0.026044609025120735, -0.019735237583518028, 0.07417693734169006, -0.04456915706396103, -0.05366409942507744, -0.02525716833770275, -0.04956940561532974, -0.05197110027074814, 0.006206018850207329, -0.08512236177921295, 0.053624726831912994, 0.012727013789117336, 0.024351611733436584, 0.016683904454112053, -0.050711195915937424, 0.03911612927913666, 0.08661850541830063, 0.0025788689963519573, 0.04098629951477051, -0.017353229224681854, -0.044057320803403854, -0.007126340642571449, -0.016408300027251244, 0.013553827069699764, -0.023209821432828903, -0.019311988726258278, -0.016870921477675438, 0.01791428029537201, -0.0011251792311668396, -0.03754124790430069, -0.014292052946984768, -0.017648519948124886, 0.04429355263710022, 0.003986419644206762, -0.00936562567949295, 0.03803339600563049, 0.0035311803221702576, 0.005856591742485762, 0.0036517572589218616, -0.0457896888256073, 0.009862697683274746, 0.047522060573101044, 0.006289684679359198, -0.0016499347984790802, 0.024568157270550728, 0.02045377902686596, 0.05027810484170914, 0.012618741020560265, 0.00501255365088582, -0.03836806118488312, 0.014882633462548256, -0.016024423763155937, -0.007648020051419735, -0.0022306726314127445, 0.012579369358718395, -0.053073517978191376, 0.05114428699016571, -0.004975642543286085, 0.016280341893434525, 0.023327937349677086, -0.05047496408224106, -0.019784454256296158, 0.01885920949280262, 0.07134214788675308, -0.03539546951651573, 0.04870322346687317, -0.0009160152985714376, 0.040868185460567474, 0.002554261591285467, -0.0007369954837486148, -0.023426366969943047, -0.0005638200091198087, -0.003878146642819047, 0.00392490066587925, -0.04110441729426384, 0.021339649334549904, 0.01820957101881504, -0.03340718150138855, 0.0034573578741401434, -0.013258536346256733, -0.030946427956223488, 0.017874909564852715, 0.015601173043251038, -0.04413606598973274, -0.009045727550983429, 0.06653875857591629, -0.007830115966498852, -0.05732569843530655, -0.011604910716414452, 0.009685523808002472, 0.005753240082412958, -0.005364441312849522, -0.039470475167036057, -0.007082046940922737, 0.03968702256679535, -0.032501623034477234, 0.007677549030631781, 0.0617353692650795, -0.006959009449928999, -0.02665487490594387, -0.008588027209043503, -0.06890108436346054, -0.01957775093615055, -0.03838774561882019, -0.014744831249117851, 0.014774360693991184, -0.03305283188819885, -0.04708896949887276, -0.061695996671915054, -0.008125405758619308, 0.027009224519133568, 0.0306905098259449, -0.05468777194619179, 0.08047646284103394, 0.04346673935651779, 0.016802020370960236, 0.0030537943821400404, 0.03708846867084503, 0.0009436987456865609, 0.031084230169653893, 0.015551958233118057, 0.005812298506498337, 0.06023923307657242, -0.004786164499819279, 0.013731000944972038, 0.0026280840393155813, 0.03216696158051491, 0.04043509066104889, -0.023150762543082237, -0.06008174270391464, -0.030080243945121765, -0.012471095658838749, -0.003440132597461343, -0.017618991434574127, 0.0004441658966243267, -0.07886221259832382, -0.08020085841417313, -0.020788440480828285, -0.06212908774614334, 0.010187516920268536, 0.053545981645584106, -0.0416949987411499, -0.044726643711328506, -0.04138002172112465, -0.00670801242813468, 0.015443685464560986, 0.037974338978528976, -0.048270128667354584, 0.010758412070572376, -0.0015379706164821982, 0.026162724941968918, 0.03726564347743988, -0.003622228279709816, -0.026615504175424576, 0.020089587196707726, -0.042758043855428696, -0.06988538056612015, -0.04645901545882225, 0.0030021185521036386, -0.007387180346995592, 0.04441167041659355, -0.06130227819085121, -0.02149713784456253, -0.0357695035636425, 0.047522060573101044, 0.040592581033706665, -0.025276854634284973, -0.031477950513362885, 0.025454027578234673, -0.01431173924356699, -0.04732520133256912, 0.012087218463420868, -0.013032147660851479, 0.014252681285142899, -0.045750319957733154, -0.03368278592824936, -0.05453028529882431, -0.012599054723978043, 0.013475082814693451, -0.024154750630259514, 0.00437767943367362, -0.01773710735142231, 0.04307301715016365, -0.055790189653635025, 0.045553456991910934, -0.03198978677392006, 0.05004187300801277, 0.054018449038267136, 0.06126290559768677, 0.03549389913678169, 0.019873039796948433, 0.04279741644859314, 0.032245706766843796, -0.04075006768107414, 0.03301345929503441, -0.006885186769068241, -0.008026976138353348, 0.04531722515821457, -0.02805258333683014, -0.03297409042716026, -0.014439698308706284, 0.013002618215978146, -0.02834787406027317, 0.004773860797286034, 0.003196517936885357, 0.013642414472997189, -0.025828063488006592, 0.026143038645386696, -0.007933467626571655, -0.0256115160882473, -0.0007130031590349972, 0.07815351337194443, -0.04586843401193619, 0.022028660401701927, -0.03586793318390846, -0.07409819215536118, -0.029824325814843178, -0.01275654323399067, -0.03482457622885704, 0.026536758989095688, -0.047167710959911346, -0.0512230321764946, -0.0746494010090828, 0.010699354112148285, 0.04157688096165657, 0.06468827277421951, -0.03502143546938896, 0.06543634086847305, 0.014272366650402546, 0.03208821639418602, -0.01918403059244156, -0.022579869255423546, -0.058034397661685944, 0.0024176896549761295, 0.013169949874281883, -0.01723511330783367, -0.04401794821023941, -0.022875159978866577, 0.011102917604148388, -0.011782084591686726, -0.03931298851966858, 0.06953103095293045, 0.00844530388712883, -0.01825878582894802, 0.05338849499821663, -0.014981064014136791, 0.007121419068425894, -0.034686774015426636, 0.04212808981537819, -0.02074906788766384, -0.01098480075597763, 0.03886020928621292, -0.027619490399956703, -0.038722407072782516, 0.02072938345372677, 0.029706209897994995, -0.027324199676513672, -0.02598555013537407, -0.00113809818867594, 0.03691129386425018, -0.029017198830842972, 0.056459516286849976, 0.006929480005055666, -0.01562085933983326, -0.018937954679131508, 0.0028470910619944334, -0.01281560119241476, 0.03384027257561684, 0.04149813577532768, -0.0023807785473763943, 0.017973339185118675, -0.037679050117731094, -0.014429855160415173, -0.038722407072782516, 0.04271867126226425, -0.05445154011249542, 0.02082781307399273, -0.026123352348804474, 0.010044793598353863, 0.03706878051161766, -0.009149079211056232, -0.010827313177287579, 0.03606479614973068, -0.03897832706570625, -0.02685173600912094, -0.03771841898560524, 0.008824259974062443, -0.031477950513362885, -0.050632450729608536, -0.08370497077703476, -0.0300211850553751, -0.06606629490852356, -0.016447672620415688, 0.020217545330524445, -0.017176054418087006, -0.010955272242426872, 0.018495019525289536, 0.001652395585551858, -0.0298440121114254, -0.030907057225704193, -0.02244206704199314, 0.010148145258426666, -0.029706209897994995, 0.04661650210618973, -0.04212808981537819, 0.06661750376224518, 0.02309170551598072, -0.0003165143425576389, -0.0505143366754055, -0.029883382841944695, 0.05980613827705383, 0.038801152259111404, 0.01093558594584465, 0.007815351709723473, 0.028485676273703575, 0.07850786298513412, -0.015099179930984974, 0.01910528540611267, -0.04126190394163132, 0.021910544484853745, -0.013071519322693348, 0.061420392245054245, -0.008814416825771332, 0.012303764931857586, -0.0035828561522066593, -0.03171418234705925, 0.03771841898560524, 0.04389983043074608, -0.048663850873708725, 0.02279641479253769, 0.008022054098546505, 0.0023044950794428587, -0.0071607911959290504, -0.01721542701125145, -0.031182661652565002, -0.020768754184246063, -0.029233744367957115, 0.04382108896970749, 0.006043609231710434, 0.039293304085731506, -0.014547971077263355, 0.026064295321702957, -0.01853439025580883, 0.03474583104252815, -0.034312739968299866, -0.0722477063536644, -0.01706778258085251, 0.037757791578769684, 0.0004315545374993235, 0.018869053572416306, -0.013347123749554157, -0.03643883019685745, -0.011388364247977734, 0.06606629490852356, -0.025572143495082855, 0.01726464182138443, 0.024135064333677292, 0.02393820509314537, 0.017107155174016953, 0.010728882625699043, 0.08433492481708527 ]
24,505
knockknock.telegram_sender
telegram_sender
Telegram sender wrapper: execute func, send a Telegram message with the end status (sucessfully finished or crashed) at the end. Also send a Telegram message before executing func. `token`: str The API access TOKEN required to use the Telegram API. Visit https://core.telegram.org/bots#6-botfather to obtain your TOKEN. `chat_id`: int Your chat room id with your notification BOT. Visit https://api.telegram.org/bot<YourBOTToken>/getUpdates to get your chat_id (start a conversation with your bot by sending a message and get the `int` under message['chat']['id'])
def telegram_sender(token: str, chat_id: int): """ Telegram sender wrapper: execute func, send a Telegram message with the end status (sucessfully finished or crashed) at the end. Also send a Telegram message before executing func. `token`: str The API access TOKEN required to use the Telegram API. Visit https://core.telegram.org/bots#6-botfather to obtain your TOKEN. `chat_id`: int Your chat room id with your notification BOT. Visit https://api.telegram.org/bot<YourBOTToken>/getUpdates to get your chat_id (start a conversation with your bot by sending a message and get the `int` under message['chat']['id']) """ bot = telegram.Bot(token=token) def decorator_sender(func): @functools.wraps(func) def wrapper_sender(*args, **kwargs): start_time = datetime.datetime.now() host_name = socket.gethostname() func_name = func.__name__ # Handling distributed training edge case. # In PyTorch, the launch of `torch.distributed.launch` sets up a RANK environment variable for each process. # This can be used to detect the master process. # See https://github.com/pytorch/pytorch/blob/master/torch/distributed/launch.py#L211 # Except for errors, only the master process will send notifications. if 'RANK' in os.environ: master_process = (int(os.environ['RANK']) == 0) host_name += ' - RANK: %s' % os.environ['RANK'] else: master_process = True if master_process: contents = ['Your training has started 🎬', 'Machine name: %s' % host_name, 'Main call: %s' % func_name, 'Starting date: %s' % start_time.strftime(DATE_FORMAT)] text = '\n'.join(contents) bot.send_message(chat_id=chat_id, text=text) try: value = func(*args, **kwargs) if master_process: end_time = datetime.datetime.now() elapsed_time = end_time - start_time contents = ["Your training is complete 🎉", 'Machine name: %s' % host_name, 'Main call: %s' % func_name, 'Starting date: %s' % start_time.strftime(DATE_FORMAT), 'End date: %s' % end_time.strftime(DATE_FORMAT), 'Training duration: %s' % str(elapsed_time)] try: str_value = str(value) contents.append('Main call returned value: %s'% str_value) except: contents.append('Main call returned value: %s'% "ERROR - Couldn't str the returned value.") text = '\n'.join(contents) bot.send_message(chat_id=chat_id, text=text) return value except Exception as ex: end_time = datetime.datetime.now() elapsed_time = end_time - start_time contents = ["Your training has crashed ☠️", 'Machine name: %s' % host_name, 'Main call: %s' % func_name, 'Starting date: %s' % start_time.strftime(DATE_FORMAT), 'Crash date: %s' % end_time.strftime(DATE_FORMAT), 'Crashed training duration: %s\n\n' % str(elapsed_time), "Here's the error:", '%s\n\n' % ex, "Traceback:", '%s' % traceback.format_exc()] text = '\n'.join(contents) bot.send_message(chat_id=chat_id, text=text) raise ex return wrapper_sender return decorator_sender
(token: str, chat_id: int)
[ 0.02770589292049408, -0.02202005684375763, -0.02042279951274395, 0.03893692418932915, 0.005414603278040886, -0.012436510063707829, -0.05882730707526207, 0.03608396276831627, 0.019910471513867378, -0.04854056239128113, 0.055733244866132736, 0.014937876723706722, 0.00043133494909852743, -0.0341150164604187, -0.01949859969317913, 0.011100439354777336, 0.03630496561527252, 0.0014352716971188784, 0.004626020323485136, -0.04600905999541283, 0.03035794384777546, 0.007951129227876663, -0.006715514697134495, 0.012326008640229702, -0.014626461081206799, 0.04488394781947136, 0.02202005684375763, 0.00013781370944343507, 0.028951553627848625, 0.0009568477980792522, 0.0028755662497133017, -0.06919441372156143, -0.008141996338963509, 0.006198164075613022, -0.04817891865968704, -0.0014679201412945986, -0.08470489084720612, -0.013139705173671246, -0.09619711339473724, -0.04134787991642952, 0.0025202014949172735, -0.02901182696223259, 0.01764015480875969, 0.016726002097129822, -0.03978075832128525, -0.0181122999638319, -0.04118715226650238, 0.07337339967489243, -0.019689466804265976, -0.025455668568611145, 0.0031317302491515875, -0.032025519758462906, 0.04207116737961769, 0.022180788218975067, -0.054849229753017426, 0.0484200157225132, 0.01798170804977417, -0.0013348152860999107, -0.005263918545097113, -0.02105567418038845, 0.002842918038368225, 0.05999260023236275, 0.007408664096146822, 0.07128390669822693, 0.02547575905919075, -0.005726018454879522, -0.01248673815280199, 0.010879435576498508, -0.009839710779488087, 0.032447438687086105, 0.05071042478084564, -0.01857439987361431, -0.011924182064831257, -0.03274880722165108, 0.0062684835866093636, -0.009427838958799839, -0.03899719938635826, 0.025877585634589195, 0.02619904652237892, 0.01785111427307129, 0.020894944667816162, 0.03469766303896904, 0.020473027601838112, -0.0017190612852573395, 0.0875980406999588, 0.030639221891760826, -0.014726918190717697, -0.006685377564281225, -0.036646518856287, -0.0032648351043462753, -0.03047849051654339, -0.04010222107172012, 0.004133783746510744, -0.02193969115614891, -0.0005861006793566048, -0.024873020127415657, 0.04681271314620972, -0.03069949522614479, 0.002521457150578499, -0.022301334887742996, 0.0015294497134163976, 0.09627747535705566, -0.03270862624049187, -0.014284909702837467, 0.05163462460041046, -0.07019897550344467, -0.04207116737961769, -0.008342909626662731, 0.04476340115070343, -0.02034243382513523, -0.11170759052038193, -0.05444740504026413, -0.038715921342372894, -0.03365291655063629, 0.013621896505355835, -0.024692198261618614, -0.06385012716054916, 0.021256588399410248, -0.031141504645347595, 0.0001026539466693066, 0.07526198029518127, 0.04946476221084595, -0.010095874778926373, -0.07297157496213913, -0.008599073626101017, 0.046933259814977646, 0.022763434797525406, 0.0358026847243309, 0.09579528123140335, -0.05593416094779968, 0.004339719191193581, 0.013943357393145561, 0.04480358213186264, 0.044441938400268555, 0.018644720315933228, 0.0341150164604187, -0.011954319663345814, 0.03684743121266365, 0.016404541209340096, 0.004384924657642841, 0.023466629907488823, -0.01356162317097187, 0.02750498056411743, -0.027042880654335022, 0.04733508452773094, -0.007845649495720863, -0.027846531942486763, 0.014043813571333885, -0.012004547752439976, -0.054889410734176636, 0.06220264360308647, -0.014576232992112637, -0.03307026997208595, -0.012205460108816624, -0.04235244542360306, 0.03974057734012604, -0.016565270721912384, -0.018504081293940544, 0.06545743346214294, 0.0022904074285179377, -0.01936800591647625, -0.06899350136518478, 0.04592869430780411, -0.013169842772185802, 0.03184469789266586, 0.03777163103222847, 0.002765064127743244, 0.015892213210463524, -0.032065704464912415, 0.085910364985466, -0.02294425666332245, 0.05340265482664108, 0.020995400846004486, -0.016655681654810905, -0.023868456482887268, 0.034516841173172, -0.016705909743905067, -0.021497683599591255, 0.0008670648676343262, 0.02581731230020523, -0.05356338620185852, 0.0012167788809165359, -0.051272980868816376, -0.017820976674556732, -0.00021142946206964552, 0.03138259798288345, 0.051313161849975586, -0.008513685315847397, 0.0164246316999197, -0.0024423478171229362, -0.03128214180469513, -0.015068469569087029, 0.08743730932474136, 0.05621543899178505, -0.0038977109361439943, 0.06417158991098404, 0.02493329532444477, 0.013692216016352177, 0.0051986221224069595, -0.03296981006860733, 0.03953966498374939, 0.021316861733794212, 0.06879258900880814, -0.007689942605793476, -0.03576250001788139, -0.007097249384969473, -0.03588305041193962, 0.02555612474679947, -0.0766281932592392, -0.03309036046266556, -0.023064805194735527, -0.07590490579605103, -0.011713223531842232, 0.11435963958501816, 0.05083097144961357, -0.047093991190195084, 0.04902275651693344, 0.049665674567222595, 0.060916800051927567, 0.00026071592583321035, 0.06296611577272415, -0.044321391731500626, -0.038635555654764175, -0.03839446231722832, 0.05368393659591675, 0.029594475403428078, 0.023768000304698944, -0.017489470541477203, 0.033532366156578064, 0.024390829727053642, 0.03688761219382286, -0.021678505465388298, 0.02366754226386547, 0.05279991775751114, -0.0218995101749897, -0.011833771131932735, -0.0014415503246709704, -0.02374790795147419, 0.01806207187473774, -0.05951040983200073, 0.023024622350931168, 0.0014741986524313688, 0.055693063884973526, 0.010115966200828552, 0.051514074206352234, -0.0034130082931369543, 0.03923829644918442, 0.030900409445166588, -0.08016426116228104, -0.00607259338721633, -0.03188488259911537, 0.027725983411073685, 0.0021233984734863043, -0.0391579307615757, -0.025335120037198067, -0.04998713731765747, 0.039439208805561066, 0.002719858894124627, 0.05183553695678711, 0.008709575049579144, 0.0033627802040427923, -0.0058867488987743855, -0.10142084956169128, -0.006323734298348427, -0.016273947432637215, -0.03558167815208435, -0.014083996415138245, 0.02732415869832039, -0.019096773117780685, 0.031563419848680496, 0.03170406073331833, 0.04327664524316788, -0.0031116390600800514, -0.00517853070050478, -0.05091133713722229, -0.016906822100281715, -0.015239245258271694, -0.029152465984225273, -0.02770589292049408, -0.010959800332784653, -0.023567086085677147, 0.012978975661098957, -0.0235871784389019, -0.027725983411073685, -0.008835146203637123, -0.020874854177236557, 0.051473893225193024, -0.07361450046300888, 0.0148474657908082, -0.0027926897164434195, -0.022843800485134125, 0.0009869848145172, 0.02093512751162052, -0.027886714786291122, -0.013189934194087982, 0.0029483973048627377, -0.022381700575351715, 0.0010347015922889113, 0.0328492633998394, -0.07208755612373352, 0.06919441372156143, 0.029192648828029633, -0.03431592881679535, -0.04544650390744209, 0.009613683447241783, 0.02750498056411743, 0.024390829727053642, -0.014325091615319252, 0.005881725810468197, -0.058264750987291336, -0.013400892727077007, -0.0052237361669540405, 0.031603604555130005, -0.03734971210360527, 0.028027353808283806, 0.0353807657957077, 0.05340265482664108, 0.0061077531427145, 0.06549761444330215, 0.08904460817575455, 0.008975785225629807, 0.06710492074489594, 0.050549693405628204, 0.08261539787054062, 0.03678715601563454, -0.049504946917295456, 0.060072965919971466, 0.010919617488980293, -0.006670309230685234, 0.01734883151948452, -0.023145169019699097, -0.04576796665787697, 0.0047917733900249004, -0.04649125039577484, 0.011130576021969318, 0.08952680230140686, -0.0014227146748453379, 0.018303167074918747, 0.03401456028223038, -0.00783560425043106, 0.056577082723379135, -0.04894239082932472, -0.03688761219382286, 0.05288028344511986, 0.037711355835199356, -0.021236496046185493, 0.07068116962909698, 0.021115949377417564, 0.06638163328170776, 0.07337339967489243, -0.00606254767626524, 0.0395798459649086, 0.023064805194735527, 0.019317777827382088, 0.05509032681584358, -0.03260817006230354, -0.012034684419631958, -0.05717981979250908, 0.019970744848251343, -0.02497347630560398, -0.062041912227869034, -0.01081916131079197, 0.012737879529595375, 0.07546289265155792, -0.08502635359764099, -0.01206482108682394, 0.005856611765921116, 0.009975327178835869, 0.05971132218837738, 0.014194498769938946, 0.022803617641329765, -0.018795404583215714, -0.009910030290484428, 0.02286389097571373, 0.000559103034902364, 0.012054775841534138, -0.018755221739411354, -0.013933311216533184, -0.07023915648460388, 0.03688761219382286, 0.01961914822459221, 0.007976243272423744, -0.0013285367749631405, -0.005997250787913799, 0.07570399343967438, 0.01345112081617117, 0.04391956701874733, -0.06264465302228928, -0.011964364908635616, -0.05167480558156967, 0.0030438308604061604, 0.014083996415138245, 0.0013611851027235389, 0.03919811174273491, -0.034637387841939926, -0.015801802277565002, 0.016283992677927017, 0.01633422076702118, -0.01697714254260063, -0.07461906224489212, -0.004882184322923422, -0.048902206122875214, 0.024350646883249283, 0.01844380609691143, 0.027605436742305756, 0.04299536719918251, 0.013250207528471947, -0.009091310203075409, -0.01077897846698761, 0.04572778195142746, -0.057541463524103165, -0.05677799507975578, -0.010849297977983952, 0.003742003347724676, -0.04564741626381874, 0.03184469789266586, -0.039178021252155304, 0.02889127843081951, -0.008850215002894402, 0.03976066783070564, -0.008689484558999538, -0.037209074944257736, 0.049585312604904175, 0.0778738483786583, 0.01697714254260063, 0.05336247384548187, -0.035260219126939774, -0.0458885133266449, -0.0039856103248894215, 0.007509120739996433, -0.0019438326125964522, -0.05713963881134987, -0.030880317091941833, -0.0032447439152747393, -0.018052026629447937, 0.0036917750257998705, -0.017248375341296196, 0.002507644472643733, -0.0014277375303208828, 0.02897164411842823, 0.01587212085723877, -0.0137926721945405, 0.04319627955555916, 0.01335066370666027, -0.012828290462493896, 0.010959800332784653, -0.028489453718066216, 0.01427486352622509, 0.0068611763417720795, -0.007860718294978142, 0.01267760619521141, 0.031523238867521286, 0.019378051161766052, 0.05424649268388748, 0.0036993094254285097, -0.03481820970773697, -0.048902206122875214, -0.019468462094664574, -0.012326008640229702, 0.030458400025963783, 0.0004840745823457837, 0.07783366739749908, -0.0661405399441719, 0.021156132221221924, -0.00959861557930708, 0.0362045094370842, 0.028449270874261856, -0.04942458122968674, -0.0332711823284626, 0.013662079349160194, 0.05734055116772652, -0.05203644931316376, 0.022381700575351715, 0.000762841256801039, 0.019106820225715637, 0.008403182961046696, -0.01465659774839878, -0.03899719938635826, -0.007097249384969473, 0.0018998829182237387, 0.008357977494597435, -0.051514074206352234, 0.03401456028223038, 0.04327664524316788, -0.024571651592850685, 0.008865282870829105, -0.02244197390973568, -0.02408945932984352, -0.009151583537459373, 0.028650183230638504, -0.05553233250975609, -0.00734839029610157, 0.07903914898633957, -0.010251582600176334, -0.031000865623354912, -0.014787191525101662, -0.027766166254878044, 0.026219137012958527, -0.036606334149837494, -0.05999260023236275, -0.020020972937345505, 0.026801785454154015, -0.028610000386834145, 0.032989904284477234, 0.0631670281291008, -0.011602722108364105, -0.03919811174273491, 0.024873020127415657, -0.040524136275053024, -0.009241994470357895, -0.0471743568778038, -0.005806383676826954, -0.004362321924418211, -0.006002273876219988, -0.06810948252677917, -0.08583000302314758, -0.030438309535384178, -0.011210941709578037, -0.0021711152512580156, -0.08317795395851135, 0.0673460140824318, 0.060997165739536285, 0.025957951322197914, 0.01298902090638876, 0.03194515407085419, 0.018343349918723106, 0.025114115327596664, -0.011512311175465584, 0.02075430564582348, 0.049665674567222595, -0.007920992560684681, 0.03823373094201088, 0.03246752917766571, 0.01944837160408497, 0.06915423274040222, -0.05862639099359512, -0.027444705367088318, -0.03485839441418648, -0.044401757419109344, -0.029473926872015, -0.01655522547662258, -0.013300435617566109, -0.06794875115156174, -0.09997427463531494, 0.008689484558999538, -0.05111224949359894, 0.010156149044632912, 0.06372958421707153, -0.06095698103308678, -0.0471743568778038, -0.05296064913272858, -0.015369839034974575, 0.027826441451907158, 0.0147369634360075, -0.022200878709554672, 0.03970039635896683, -0.019357960671186447, 0.02159813977777958, 0.031603604555130005, 0.004081043880432844, -0.005263918545097113, 0.01124107837677002, -0.021658413112163544, -0.057501278817653656, -0.04592869430780411, 0.015078515745699406, -0.03246752917766571, 0.018473943695425987, -0.06344830244779587, -0.03793236240744591, -0.04592869430780411, 0.01919723115861416, 0.02181914448738098, -0.009543363936245441, -0.04745563492178917, 0.02193969115614891, -0.002840406494215131, -0.042593542486429214, 0.01004062406718731, -0.008604096248745918, 0.026620963588356972, -0.025114115327596664, -0.03849491849541664, -0.012697696685791016, 0.004229217302054167, 0.046129610389471054, -0.014726918190717697, 0.030759770423173904, 0.0015357282245531678, -0.004902275279164314, -0.033793553709983826, 0.03178442642092705, -0.0024184894282370806, 0.0012921212473884225, 0.06670309603214264, 0.06047479063272476, 0.012034684419631958, 0.001251310808584094, 0.05243827402591705, 0.010115966200828552, -0.07184646278619766, 0.03935884311795235, 0.002707301639020443, -0.0332711823284626, 0.028027353808283806, -0.014556141570210457, -0.03941911831498146, 0.0031894927378743887, 0.02943374402821064, -0.044361576437950134, -0.0031894927378743887, -0.007393595762550831, -0.008709575049579144, -0.03532049432396889, 0.017198147252202034, -0.01002555526793003, -0.035983506590127945, -0.007026929873973131, 0.09185738861560822, -0.026339685544371605, 0.002677164738997817, -0.0015131254913285375, -0.0526391863822937, -0.02551594190299511, -0.016575315967202187, 0.0014227146748453379, 0.014726918190717697, -0.05802365392446518, -0.02690224163234234, -0.04034331440925598, 0.005163462366908789, 0.02493329532444477, 0.07610581815242767, -0.010070760734379292, 0.03773144632577896, -0.04484376683831215, 0.015972577035427094, 0.0033778485376387835, -0.02030225098133087, -0.052317727357149124, -0.01571139134466648, 0.01048765517771244, -0.034637387841939926, -0.06348848342895508, -0.02151777409017086, -0.03676706552505493, 0.008910488337278366, -0.028248358517885208, 0.07365468144416809, -0.027645619586110115, 0.008322818204760551, 0.05444740504026413, -0.021758871152997017, 0.0070570665411651134, -0.02025202289223671, 0.03519994392991066, -0.016153398901224136, -0.016484905034303665, 0.025837402790784836, -0.009739254601299763, -0.01252692099660635, 0.0020304762292653322, 0.006097707431763411, -0.01166299544274807, -0.007448846939951181, 0.02332599088549614, 0.018544264137744904, -0.02846936136484146, 0.05975150689482689, -0.040986236184835434, -0.004013235680758953, 0.010688567534089088, -0.01431504637002945, -0.026038315147161484, 0.0021133527625352144, 0.035099487751722336, 0.00940774753689766, -0.01212509535253048, -0.019297687336802483, 0.0037219119258224964, -0.009668935090303421, 0.06686381995677948, -0.023928729817271233, 0.012737879529595375, -0.021256588399410248, 0.010417335666716099, 0.033873919397592545, -0.003099082037806511, -0.006183095276355743, -0.021778961643576622, -0.048862025141716, -0.02708306349813938, -0.013129659928381443, -0.021236496046185493, -0.010889480821788311, -0.05159443989396095, -0.07799439877271652, -0.008799985982477665, -0.0838208720088005, -0.02635977603495121, -0.01587212085723877, -0.025837402790784836, -0.036907706409692764, 0.024270281195640564, 0.005263918545097113, -0.034336019307374954, -0.05014786869287491, -0.03881637752056122, -0.005720995832234621, -0.018052026629447937, 0.04938439652323723, -0.0644126832485199, 0.05087115243077278, 0.016906822100281715, -0.012275779619812965, -0.03680725023150444, -0.016073035076260567, 0.052277542650699615, 0.04813873767852783, 0.018855677917599678, -0.005771223921328783, 0.007021906785666943, 0.07260993123054504, -0.006901359185576439, 0.007860718294978142, -0.030337851494550705, 0.0172684658318758, -0.04138806462287903, 0.021778961643576622, -0.010367107577621937, -0.009427838958799839, -0.004256842657923698, -0.023848364129662514, 0.008830123580992222, 0.0585460290312767, -0.056697629392147064, 0.023004529997706413, 0.0077100335620343685, -0.012717788107693195, 0.00393789354711771, -0.02535521239042282, -0.021296771243214607, -0.03104104846715927, -0.008689484558999538, 0.06899350136518478, 0.026620963588356972, 0.005921908654272556, 0.00016653798229526728, 0.018333304673433304, -0.005695881322026253, 0.0450446791946888, -0.01713787205517292, -0.06264465302228928, -0.00012007686746073887, 0.04653143510222435, -0.015590843744575977, -0.006931495852768421, 0.011823725886642933, -0.017409104853868484, -0.012908656150102615, 0.054125942289829254, -0.006378985475748777, 0.0148474657908082, 0.016404541209340096, 0.016324175521731377, 0.019820060580968857, -0.001094975508749485, 0.07895877957344055 ]
24,506
knockknock.wechat_sender
wechat_sender
WeChat Work sender wrapper: execute func, send a WeChat Work notification with the end status (sucessfully finished or crashed) at the end. Also send a WeChat Work notification before executing func. To obtain the webhook, add a Group Robot in your WeChat Work Group. Visit https://work.weixin.qq.com/api/doc/90000/90136/91770 for more details. `webhook_url`: str The webhook URL to access your WeChat Work chatroom. Visit https://work.weixin.qq.com/api/doc/90000/90136/91770 for more details. `user_mentions`: List[str] (default=[]) Optional userids to notify (use '@all' for all group members). Visit https://work.weixin.qq.com/api/doc/90000/90136/91770 for more details. `user_mentions_mobile`: List[str] (default=[]) Optional user's phone numbers to notify (use '@all' for all group members). Visit https://work.weixin.qq.com/api/doc/90000/90136/91770 for more details.
def wechat_sender(webhook_url: str, user_mentions: List[str] = [], user_mentions_mobile: List[str] = []): """ WeChat Work sender wrapper: execute func, send a WeChat Work notification with the end status (sucessfully finished or crashed) at the end. Also send a WeChat Work notification before executing func. To obtain the webhook, add a Group Robot in your WeChat Work Group. Visit https://work.weixin.qq.com/api/doc/90000/90136/91770 for more details. `webhook_url`: str The webhook URL to access your WeChat Work chatroom. Visit https://work.weixin.qq.com/api/doc/90000/90136/91770 for more details. `user_mentions`: List[str] (default=[]) Optional userids to notify (use '@all' for all group members). Visit https://work.weixin.qq.com/api/doc/90000/90136/91770 for more details. `user_mentions_mobile`: List[str] (default=[]) Optional user's phone numbers to notify (use '@all' for all group members). Visit https://work.weixin.qq.com/api/doc/90000/90136/91770 for more details. """ msg_template = { "msgtype": "text", "text": { "content": "", "mentioned_list":user_mentions, "mentioned_mobile_list":user_mentions_mobile } } def decorator_sender(func): @functools.wraps(func) def wrapper_sender(*args, **kwargs): start_time = datetime.datetime.now() host_name = socket.gethostname() func_name = func.__name__ # Handling distributed training edge case. # In PyTorch, the launch of `torch.distributed.launch` sets up a RANK environment variable for each process. # This can be used to detect the master process. # See https://github.com/pytorch/pytorch/blob/master/torch/distributed/launch.py#L211 # Except for errors, only the master process will send notifications. if 'RANK' in os.environ: master_process = (int(os.environ['RANK']) == 0) host_name += ' - RANK: %s' % os.environ['RANK'] else: master_process = True if master_process: contents = ['Your training has started 🎬', 'Machine name: %s' % host_name, 'Main call: %s' % func_name, 'Starting date: %s' % start_time.strftime(DATE_FORMAT)] msg_template['text']['content'] = '\n'.join(contents) requests.post(webhook_url, json=msg_template) try: value = func(*args, **kwargs) if master_process: end_time = datetime.datetime.now() elapsed_time = end_time - start_time contents = ["Your training is complete 🎉", 'Machine name: %s' % host_name, 'Main call: %s' % func_name, 'Starting date: %s' % start_time.strftime(DATE_FORMAT), 'End date: %s' % end_time.strftime(DATE_FORMAT), 'Training duration: %s' % str(elapsed_time)] try: str_value = str(value) contents.append('Main call returned value: %s'% str_value) except: contents.append('Main call returned value: %s'% "ERROR - Couldn't str the returned value.") msg_template['text']['content'] = '\n'.join(contents) requests.post(webhook_url, json=msg_template) print(msg_template) return value except Exception as ex: end_time = datetime.datetime.now() elapsed_time = end_time - start_time contents = ["Your training has crashed ☠️", 'Machine name: %s' % host_name, 'Main call: %s' % func_name, 'Starting date: %s' % start_time.strftime(DATE_FORMAT), 'Crash date: %s' % end_time.strftime(DATE_FORMAT), 'Crashed training duration: %s\n\n' % str(elapsed_time), "Here's the error:", '%s\n\n' % ex, "Traceback:", '%s' % traceback.format_exc()] msg_template['text']['content'] = '\n'.join(contents) requests.post(webhook_url, json=msg_template) print(msg_template) raise ex return wrapper_sender return decorator_sender
(webhook_url: str, user_mentions: List[str] = [], user_mentions_mobile: List[str] = [])
[ 0.01576247252523899, -0.049502305686473846, -0.02179134450852871, 0.026638278737664223, -0.024751152843236923, -0.005914651323109865, -0.07401508092880249, 0.04970094934105873, -0.009867684915661812, 0.006148059386759996, 0.04147705063223839, 0.011362487450242043, -0.003381929127499461, -0.02868432179093361, -0.025744376704096794, 0.009505157358944416, 0.03768293559551239, -0.027194485068321228, 0.022188633680343628, -0.04898582771420479, 0.015166536904871464, -0.01358730997890234, 0.013060901314020157, 0.04362241551280022, -0.0013929972192272544, 0.03371003642678261, 0.001923130825161934, -0.001344577525742352, -0.002994571579620242, 0.01826539635658264, 0.003396827494725585, -0.08192115277051926, -0.004539035726338625, -0.0035507772117853165, -0.007960693910717964, -0.015692945569753647, -0.08629133552312851, -0.02042069472372532, -0.10099106281995773, -0.03303464502096176, 0.01495795976370573, -0.02479088120162487, 0.01976516656577587, 0.008253694511950016, -0.029220663011074066, 0.03218047320842743, -0.05121065303683281, 0.09177393466234207, -0.006023906171321869, -0.030154293403029442, 0.014799043536186218, -0.03206128627061844, 0.022208498790860176, 0.02306267060339451, -0.04731721058487892, 0.034484751522541046, 0.002334077376872301, -0.013090698048472404, 0.0059096855111420155, -0.02290375530719757, -0.0049462574534118176, 0.04115922003984451, 0.025883428752422333, 0.048787184059619904, 0.02089744247496128, 0.028763778507709503, 0.009222088381648064, 0.02091730572283268, 0.0037047271616756916, 0.005616683978587389, 0.05732891336083412, -0.021433783695101738, -0.02528749406337738, -0.02816784381866455, 0.0018560881726443768, -0.00990244746208191, -0.017729055136442184, 0.04084138944745064, -0.00920719001442194, 0.006098398007452488, 0.03968924656510353, 0.041755154728889465, -0.013865413144230843, -0.0008461030665785074, 0.09487279504537582, 0.0049462574534118176, 0.0032826068345457315, 0.013636970892548561, -0.04898582771420479, -0.004462060518562794, -0.03853710740804672, -0.04858854040503502, 0.0008045117720030248, -0.036391742527484894, 0.009654141031205654, -0.007806743960827589, 0.02931998483836651, -0.0313064344227314, 0.03176331892609596, -0.0014761798083782196, -0.0011819370556622744, 0.07612071931362152, -0.03861656412482262, -0.0013830650132149458, 0.031385891139507294, -0.06420202553272247, -0.05407113954424858, -0.02280443347990513, 0.008755273185670376, -0.016229286789894104, -0.09042315185070038, -0.045370493084192276, -0.04318539798259735, -0.03396827355027199, 0.0500982403755188, -0.006247381679713726, -0.03845765069127083, 0.05232306197285652, 0.00838777981698513, 0.02252632938325405, 0.06483769416809082, 0.022248227149248123, -0.013686632737517357, -0.08287464827299118, 0.008213966153562069, 0.052760083228349686, 0.011134046129882336, 0.024711424484848976, 0.09821002930402756, -0.04143732413649559, -0.02455250732600689, 0.004427297972142696, 0.03404773399233818, 0.06817492097616196, 0.00276861316524446, 0.04457591101527214, -0.01776878535747528, 0.026459498330950737, 0.05860023945569992, 0.01401439681649208, 0.024711424484848976, -0.009217122569680214, 0.04358268901705742, -0.01867261901497841, 0.022109175100922585, -0.0020274193957448006, 0.0030516821425408125, 0.03140575811266899, -0.036371879279613495, -0.029975512996315956, 0.05216414853930473, -0.0017803547671064734, -0.01171011570841074, -0.028724050149321556, -0.035875264555215836, 0.028465811163187027, -0.003463870147243142, -0.00720087718218565, 0.03595472499728203, 0.013070833869278431, 0.01052817888557911, -0.03960978984832764, 0.046403445303440094, 0.00789613462984562, 0.01338866539299488, 0.02941930666565895, 0.03225992992520332, 0.0388350747525692, -0.00982795562595129, 0.08160331845283508, -0.02353941835463047, 0.04997905343770981, -0.008308322168886662, -0.006341738160699606, -0.002494234824553132, 0.040761929005384445, -0.02153310552239418, -0.03720618784427643, -0.010160685516893864, 0.015504233539104462, -0.09153556078672409, 0.03182291239500046, -0.03420664742588997, -0.020122727379202843, -0.0068433163687586784, 0.0275719091296196, 0.049144744873046875, -0.009177393279969692, -0.0031187247950583696, 0.015385046601295471, -0.032637353986501694, 0.006763858254998922, 0.06900922954082489, 0.04906528815627098, -0.002803375944495201, 0.05895780026912689, 0.005586887244135141, 0.008904256857931614, -0.012822527438402176, -0.06857221573591232, 0.034107327461242676, -0.002024936256930232, 0.04318539798259735, -0.013448258861899376, -0.021096086129546165, -0.03706713393330574, -0.03188250586390495, 0.03225992992520332, -0.051290109753608704, -0.03269694745540619, -0.02641976997256279, -0.053793035447597504, -0.02842608280479908, 0.07484938949346542, 0.050535257905721664, -0.03815968334674835, 0.035736214369535446, 0.03953033313155174, 0.014570602215826511, -0.008904256857931614, 0.06908868998289108, -0.037980902940034866, -0.053276557475328445, -0.03605404496192932, 0.04731721058487892, 0.059037260711193085, 0.019636046141386032, -0.01271327305585146, 0.03615336865186691, -0.00888935849070549, 0.010925468988716602, 0.004896596539765596, 0.048826914280653, 0.06221557781100273, -0.012435169890522957, -0.020063133910298347, -0.03041253238916397, -0.014153447933495045, 0.028763778507709503, -0.03806035965681076, 0.034107327461242676, 0.00638146698474884, 0.07397535443305969, 0.004742646589875221, 0.03964952006936073, -0.018950721248984337, 0.04985986649990082, 0.023797657340765, -0.06559254229068756, -0.017957497388124466, -0.009376038797199726, 0.02230782061815262, -0.008680781349539757, -0.035358790308237076, -0.02830689586699009, -0.017232444137334824, 0.08803941309452057, -0.01865275390446186, 0.0500585101544857, -0.025605326518416405, 0.03396827355027199, -0.030392667278647423, -0.045251306146383286, 0.011471741832792759, -0.05216414853930473, -0.03935155272483826, -0.026618415489792824, 0.03831859678030014, -0.028346624225378036, 0.030114565044641495, 0.005626616533845663, 0.04318539798259735, 0.01928841881453991, -0.031028330326080322, -0.05947427824139595, -0.041993528604507446, -0.0044024670496582985, -0.030631041154265404, -0.025704648345708847, -0.015514165163040161, -0.03277640417218208, -0.003213081043213606, 0.007622997276484966, -0.01926855370402336, 0.01954665593802929, -0.026975976303219795, 0.043145667761564255, -0.04747612774372101, 0.013050968758761883, -0.045767780393362045, -0.03118724748492241, 0.001235322910360992, 0.009669039398431778, -0.03057144768536091, -0.028743915259838104, -0.0006542865885421634, -0.015990912914276123, 0.01295164693146944, 0.067698173224926, -0.060427773743867874, 0.05367384850978851, 0.05347520485520363, 0.00963427685201168, -0.053395744413137436, -0.010935400612652302, 0.002196267480030656, 0.028763778507709503, -0.027353400364518166, -0.0034663532860577106, -0.05911671742796898, -0.011769709177315235, 0.0009429424535483122, 0.0035160144325345755, -0.03716645762324333, 0.03053171932697296, 0.014153447933495045, 0.06976408511400223, 0.03206128627061844, 0.04104003310203552, 0.09153556078672409, 0.03748428821563721, 0.013229749165475368, 0.027472587302327156, 0.06237449496984482, 0.041516780853271484, -0.05597812682390213, 0.03317369520664215, -0.006649637594819069, -0.002790960716083646, 0.008124575950205326, 0.004471993073821068, -0.05617677420377731, 0.0325777605175972, -0.052760083228349686, -0.0026370107661932707, 0.047277484089136124, -0.017063595354557037, 0.03106806054711342, 0.02252632938325405, -0.017331765964627266, 0.00011841097148135304, -0.04461564123630524, -0.023261316120624542, 0.06861194223165512, 0.02516830712556839, -0.028445947915315628, 0.07663719356060028, 0.0032701913733035326, 0.05184631422162056, 0.04703911021351814, 0.02202971838414669, 0.04711856693029404, 0.04445672407746315, 0.031008467078208923, 0.059394821524620056, -0.022347548976540565, -0.03496149927377701, -0.05446842685341835, 0.02616153098642826, -0.007642861921340227, -0.050535257905721664, -0.013438326306641102, 0.0026320447213947773, 0.07818662375211716, -0.05645487457513809, 0.013259545899927616, 0.02491006813943386, 0.015543961897492409, 0.051528483629226685, 0.013487988151609898, 0.02828703075647354, -0.011422080919146538, -0.031207110732793808, 0.02866445668041706, -0.003945583943277597, 0.0256649199873209, -0.04282783716917038, -0.0053584459237754345, -0.09217122942209244, 0.02916106954216957, 0.00888935849070549, 0.04568832367658615, -0.006133161019533873, -0.026638278737664223, 0.08366922289133072, 0.012375576421618462, 0.03176331892609596, -0.031981825828552246, -0.038020629435777664, -0.042271632701158524, 0.010816213674843311, -0.018483906984329224, -0.031207110732793808, 0.02055974490940571, -0.04684046283364296, -0.03521973639726639, 0.01578233577311039, 0.059156447649002075, -0.021572833880782127, -0.07544532418251038, 0.02931998483836651, -0.05907698720693588, 0.01433222834020853, -0.007920964621007442, 0.006515552289783955, 0.053514931350946426, -0.03231952339410782, 0.023638742044568062, -0.002450781175866723, 0.05482598766684532, -0.02705543301999569, -0.04354295879602432, -0.04481428489089012, -0.014511008746922016, -0.05824267864227295, 0.02802879363298416, -0.0664268508553505, 0.045648593455553055, -0.0206590685993433, 0.03655065968632698, -0.00732006411999464, -0.05160794034600258, 0.05359439179301262, 0.09964027255773544, -0.0034142090007662773, 0.046999379992485046, -0.019695639610290527, -0.06360609084367752, 0.008790035732090473, 0.0029026984702795744, 0.01679542474448681, -0.03372989967465401, -0.03452448174357414, -0.00009877927368506789, 0.009882583282887936, 0.009763396345078945, -0.014848705381155014, -0.02302294224500656, -0.0033719970379024744, 0.022943483665585518, 0.008238796144723892, -0.02389697916805744, 0.03210101276636124, 0.0036302353255450726, -0.00806498248130083, 0.011789574287831783, -0.052760083228349686, -0.005398174747824669, 0.01790783554315567, -0.004688019398599863, 0.02540668100118637, 0.040503691881895065, 0.02431413345038891, 0.04993932321667671, 0.017431087791919708, -0.021096086129546165, -0.02554573304951191, -0.010905603878200054, 0.00261218030937016, -0.019079841673374176, 0.005447836127132177, 0.02427440509200096, -0.0500585101544857, 0.025506002828478813, -0.001286225626245141, 0.04457591101527214, 0.007027062587440014, -0.06610901653766632, -0.026340311393141747, 0.008854595944285393, 0.07500831037759781, -0.043264854699373245, 0.010279872454702854, 0.0011732463026419282, 0.030333073809742928, -0.007429318502545357, -0.014918230473995209, -0.02665814384818077, 0.01296157855540514, -0.008189135231077671, -0.014411685988307, -0.056295961141586304, 0.025088848546147346, 0.02868432179093361, -0.017331765964627266, -0.023956572636961937, -0.01115391030907631, -0.06352663785219193, 0.019328147172927856, 0.009664073586463928, -0.04898582771420479, -0.004005177412182093, 0.0863707959651947, -0.010220278985798359, -0.0626128688454628, -0.02101662941277027, 0.004849418066442013, 0.010488449595868587, -0.01663650944828987, -0.03128657117486, -0.016209423542022705, 0.03309423848986626, -0.028525404632091522, 0.042390819638967514, 0.054786257445812225, -0.021453646942973137, 0.0038909567520022392, -0.004491857253015041, -0.061778560280799866, -0.026856789365410805, -0.05661379173398018, -0.0014364508679136634, 0.013011240400373936, -0.026856789365410805, -0.07222727686166763, -0.08676808327436447, -0.010865875519812107, 0.015563827008008957, -0.0022856576833873987, -0.06829410791397095, 0.09105881303548813, 0.03396827355027199, 0.0003507323854137212, 0.035736214369535446, 0.046006154268980026, 0.02042069472372532, 0.021076222881674767, -0.018871264532208443, 0.014828840270638466, 0.07898120582103729, -0.01976516656577587, 0.01421304140239954, 0.007891167886555195, 0.027214348316192627, 0.03396827355027199, -0.03519987314939499, -0.025744376704096794, -0.038874804973602295, -0.0450923889875412, 0.006614874582737684, -0.024711424484848976, -0.005452801939100027, -0.08788049966096878, -0.11433999240398407, -0.01171011570841074, -0.03865629434585571, 0.025605326518416405, 0.0725451111793518, -0.055541109293699265, -0.04807206243276596, -0.045012932270765305, -0.03831859678030014, 0.027512315660715103, 0.05744810029864311, -0.022506466135382652, 0.0005068548489362001, 0.005760701838880777, 0.015325453132390976, 0.026598550379276276, -0.0016723416047170758, -0.019248688593506813, 0.0029796732123941183, -0.06281151622533798, -0.042390819638967514, -0.06237449496984482, 0.03432583436369896, -0.02578410692512989, 0.039748840034008026, -0.08486109226942062, -0.024214811623096466, -0.026578685268759727, 0.053038183599710464, 0.04020572453737259, -0.01891099289059639, -0.025962887331843376, 0.004027524963021278, 0.0069923000410199165, -0.046761006116867065, 0.01640806719660759, -0.02177147939801216, 0.015941252931952477, -0.015484368428587914, -0.03994748741388321, -0.03184277564287186, 0.004747612867504358, 0.005269055720418692, -0.020361101254820824, 0.012147135101258755, -0.008953917771577835, 0.026598550379276276, -0.02389697916805744, 0.041516780853271484, -0.02641976997256279, 0.039013855159282684, 0.04644317552447319, 0.08462271839380264, 0.033630579710006714, -0.00080947793321684, 0.05208468809723854, 0.039232365787029266, -0.03778225556015968, 0.02703556977212429, 0.0030119530856609344, -0.027989063411951065, 0.03647119924426079, -0.02502925507724285, -0.02556559629738331, -0.013309207744896412, 0.03990775719285011, -0.028902830556035042, 0.03269694745540619, -0.005820295307785273, 0.015851862728595734, -0.02930011972784996, 0.0027189517859369516, -0.007583268452435732, -0.012315982952713966, 0.0068433163687586784, 0.08923128247261047, -0.04854881018400192, 0.024949798360466957, -0.027273941785097122, -0.05272035300731659, -0.02304280735552311, -0.01739135943353176, -0.023837385699152946, 0.010428856126964092, -0.03519987314939499, -0.030273480340838432, -0.03158453851938248, 0.012027948163449764, 0.0269163828343153, 0.0914561077952385, -0.022069446742534637, 0.06312934309244156, 0.00256500206887722, 0.012107405811548233, -0.008551661856472492, -0.025327222421765327, -0.04707883670926094, 0.00017226235650014132, 0.022089311853051186, -0.0038214309606701136, -0.07965660095214844, -0.026499228551983833, 0.007816676050424576, 0.010319601744413376, -0.04823097959160805, 0.04858854040503502, -0.0027586808428168297, -0.01663650944828987, 0.03990775719285011, -0.014659992419183254, 0.008030219934880733, -0.029836460947990417, 0.054031409323215485, -0.01913943514227867, -0.011104249395430088, 0.03678903356194496, -0.019119570031762123, -0.04703911021351814, 0.024473050609230995, 0.03166399523615837, -0.032637353986501694, -0.0400865375995636, 0.007081690244376659, 0.03527932986617088, -0.02155297063291073, 0.06233476474881172, -0.017480749636888504, -0.007801777683198452, 0.014858637005090714, 0.010865875519812107, -0.014451415278017521, 0.052283335477113724, 0.03994748741388321, 0.012345779687166214, 0.00541803939267993, -0.040126267820596695, -0.02165229246020317, 0.002646943088620901, 0.05359439179301262, -0.041755154728889465, 0.02304280735552311, -0.014302431605756283, -0.005328649189323187, 0.02556559629738331, 0.00045129633508622646, -0.006848282180726528, 0.03490190580487251, -0.03953033313155174, -0.0338093601167202, -0.03726578131318092, -0.025863563641905785, -0.006684400606900454, -0.031465351581573486, -0.0801730751991272, -0.020877577364444733, -0.06455958634614944, -0.010975129902362823, -0.003354615531861782, -0.0037792189978063107, -0.033233288675546646, 0.025188172236084938, 0.02465183101594448, -0.025009391829371452, -0.031723588705062866, -0.030511854216456413, -0.0022074412554502487, -0.02981659770011902, 0.034623801708221436, -0.04668154940009117, 0.05434923991560936, 0.010180550627410412, -0.02306267060339451, -0.03206128627061844, -0.02767123281955719, 0.07671665400266647, 0.0613415390253067, 0.004928876180201769, 0.014431551098823547, 0.012147135101258755, 0.05232306197285652, -0.014580534771084785, 0.005062961485236883, -0.03891453146934509, 0.005820295307785273, -0.03794117271900177, 0.022724974900484085, -0.017818445339798927, -0.017858175560832024, -0.010806282050907612, -0.018603093922138214, 0.028962424024939537, 0.06610901653766632, -0.07214782387018204, 0.02467169426381588, 0.008829765021800995, -0.02391684427857399, -0.0006555280997417867, -0.00795076135545969, -0.035378653556108475, -0.029260391369462013, -0.022585922852158546, 0.0613812692463398, 0.014193177223205566, 0.05669324845075607, -0.025188172236084938, 0.006634739227592945, -0.023340774700045586, 0.02516830712556839, -0.021255003288388252, -0.07075730711221695, -0.01989428512752056, 0.03565675765275955, -0.0026171463541686535, -0.012544424273073673, 0.010607636533677578, -0.053514931350946426, -0.0066099087707698345, 0.06845302879810333, -0.0018051853403449059, 0.032855864614248276, 0.037901442497968674, 0.013716429471969604, 0.023956572636961937, 0.017729055136442184, 0.0726642981171608 ]
24,507
logorestclient.service.logo_service
LogoService
null
class LogoService(TokenService): def __init__(self, credentials): if credentials is None: raise LogoException("Credentials required!") payload = { 'grant_type': credentials['GRANT_TYPE'], 'username': credentials['USER_NAME'], 'firmno': credentials['CLIENT_NUMBER'], 'password': credentials['PASSWORD'] } super().__init__(credentials['REST_URL'], **payload) token = self.token_dict['access_token'] self.headers = { 'Authorization': f'Bearer {token}', 'content-type': 'application/json', 'accept': 'application/json' } def runQuery(self, query): res = self.connect('GET', '/api/v1/queries?tsql=' + query, headers=self.headers) if 'error' in res: raise LogoException(res['error'] + ' ' + res['error_description']) if 'Message' in res and 'ModelState' in res: if '207' in res['ModelState']: raise LogoException(res['ModelState']['207']) if 'LoginError' in res['ModelState']: token_dict = self.retrieve_access_token() self.token_dict = token_dict return self.runQuery(query) if 'count' in res and res['count'] == 0 or len(res['items']) == 0: return return res
(credentials)
[ -0.007010823581367731, -0.11316048353910446, -0.013395087793469429, 0.025973748415708542, 0.03823912888765335, -0.060871224850416183, -0.0805034339427948, -0.006037757266312838, 0.03015081398189068, 0.03189758583903313, 0.058668773621320724, 0.01119263470172882, 0.027891401201486588, -0.028479987755417824, -0.001878492534160614, 0.02303081564605236, 0.024416843429207802, 0.044580671936273575, 0.01895817741751671, -0.05392210930585861, -0.013556473888456821, 0.0638711154460907, 0.005078930873423815, -0.0428718738257885, 0.008059835992753506, 0.03975806385278702, -0.0137368468567729, 0.015046927146613598, 0.05012477934360504, -0.06018770858645439, -0.02236628346145153, 0.034289903938770294, 0.007314610294997692, 0.06778237223625183, -0.01742025837302208, -0.03081534616649151, 0.03529619798064232, 0.0290495865046978, -0.1517413705587387, 0.03662526234984398, -0.08718673139810562, -0.005852637346833944, 0.03911251574754715, -0.002643892075866461, 0.004741917829960585, -0.01421151403337717, -0.014591246843338013, 0.04313768818974495, 0.017477218061685562, -0.008197490125894547, -0.02618260122835636, -0.023828256875276566, -0.04450472816824913, -0.02703700214624405, 0.0027055987156927586, 0.02724585495889187, -0.006199143826961517, 0.003612211672589183, 0.007869970053434372, 0.017733538523316383, -0.045036353170871735, -0.0072434102185070515, 0.041276995092630386, 0.03489747643470764, 0.03468862548470497, 0.025385161861777306, -0.05528914928436279, 0.023334603756666183, 0.008249702863395214, 0.04541608691215515, 0.05073235183954239, -0.002591678872704506, -0.015284259803593159, 0.009901542216539383, 0.030264733359217644, -0.0032277319114655256, -0.030017906799912453, -0.06079528108239174, -0.008876263163983822, -0.007974396459758282, -0.00749498326331377, -0.02280297689139843, 0.005615304224193096, -0.006801970303058624, 0.05050450935959816, 0.0016269192565232515, -0.018606925383210182, -0.043935127556324005, -0.06516221165657043, 0.012360314838588238, -0.04150483384728432, 0.03561897203326225, -0.08209831267595291, -0.004734797868877649, -0.0176765788346529, 0.007010823581367731, -0.027587614953517914, -0.01532223355025053, -0.026448415592312813, 0.018730338662862778, -0.017496205866336823, 0.05954216048121452, -0.008135783486068249, 0.04359336569905281, 0.03016979992389679, -0.07533905655145645, -0.004091624636203051, -0.03727081045508385, 0.04537811502814293, 0.0057007442228496075, -0.08004774898290634, 0.020182818174362183, 0.05164371058344841, 0.021113164722919464, 0.01342356763780117, -0.02054356411099434, 0.05563090741634369, 0.014676687307655811, -0.00620863726362586, 0.0009517062571831048, 0.006711783818900585, -0.0009962061885744333, 0.04268200695514679, 0.029467293992638588, 0.0379733182489872, 0.04477053880691528, -0.01723039150238037, -0.005520370788872242, 0.014676687307655811, -0.03778345137834549, -0.018455032259225845, 0.033853210508823395, 0.054643601179122925, 0.01015786174684763, 0.027568627148866653, -0.002957171993330121, 0.01509439293295145, 0.0020897190552204847, -0.029809053987264633, 0.01854047179222107, -0.02701801434159279, 0.008553489111363888, -0.09174353629350662, -0.015303246676921844, -0.0008371929870918393, 0.02101823128759861, -0.011762234382331371, -0.04978301748633385, 0.03172670677304268, -0.04389715567231178, 0.05247912183403969, -0.03852393105626106, 0.036758169531822205, -0.006759250536561012, -0.05502333492040634, -0.025992734357714653, 0.010879355482757092, -0.06630141288042068, -0.014629220589995384, 0.05141587182879448, 0.012122981250286102, -0.028973640874028206, 0.017372792586684227, -0.027188895270228386, -0.024056095629930496, -0.028081268072128296, -0.02504340186715126, -0.011183141730725765, -0.018436044454574585, -0.019062604755163193, -0.004571037832647562, -0.01241727452725172, -0.06326354295015335, -0.03556201234459877, -0.0339481458067894, 0.026030708104372025, 0.019318925216794014, -0.0063937571831047535, -0.03189758583903313, -0.00615167710930109, -0.0029737853910773993, -0.04021374136209488, -0.05339048430323601, -0.0011053795460611582, -0.003887518309056759, 0.02367636375129223, 0.04177064821124077, 0.036568302661180496, 0.01657535322010517, 0.034745585173368454, -0.034289903938770294, -0.017799992114305496, 0.035258226096630096, 0.013015354052186012, 0.02792937494814396, -0.013974180445075035, 0.020904310047626495, 0.0072861299850046635, 0.04066942259669304, 0.00452831806614995, -0.04674515128135681, 0.07260498404502869, 0.007661116775125265, -0.01398367341607809, 0.004495091270655394, -0.02346750907599926, 0.014572259970009327, -0.011914128437638283, -0.06759250164031982, -0.023429537191987038, -0.07974396646022797, -0.005002984311431646, -0.07321255654096603, 0.04636542126536369, -0.0015082526952028275, 0.013338127173483372, 0.054871443659067154, 0.012588154524564743, 0.053542375564575195, -0.004734797868877649, 0.03869481012225151, -0.043669313192367554, -0.012208421714603901, -0.07199741154909134, 0.0004874231235589832, 0.04712488502264023, 0.014619726687669754, -0.0022736522369086742, -0.024189002811908722, -0.04697299376130104, -0.006180157419294119, -0.011990074999630451, 0.0353531576693058, 0.021322017535567284, -0.04666920751333237, -0.06968103349208832, 0.06595964729785919, -0.025897802785038948, -0.01657535322010517, -0.019062604755163193, 0.031157106161117554, -0.022233376279473305, 0.005515624303370714, 0.015559566207230091, -0.0638711154460907, -0.017477218061685562, -0.05126397684216499, 0.028650866821408272, -0.008862022310495377, -0.019091084599494934, -0.05794728174805641, -0.04051752761006355, 0.026239560917019844, -0.01611017994582653, 0.02149289660155773, -0.08756646513938904, -0.032524146139621735, 0.019784098491072655, 0.05430184304714203, -0.02371433563530445, -0.005928583908826113, -0.00041177315870299935, -0.022916896268725395, 0.027644574642181396, -0.018606925383210182, -0.012018554843962193, -0.01060404907912016, 0.004537811502814293, 0.04575784504413605, -0.011202128604054451, 0.10267984867095947, 0.07173159718513489, -0.008235462941229343, -0.037213850766420364, -0.01060404907912016, -0.007271890062838793, -0.022271350026130676, 0.0021917724516242743, -0.06838994473218918, -0.028650866821408272, -0.032524146139621735, -0.04913747310638428, 0.01768607273697853, 0.03204948082566261, 0.020695457234978676, 0.010594555176794529, 0.06706088036298752, 0.02303081564605236, 0.01791391149163246, -0.00892847590148449, 0.01919551193714142, 0.05403602868318558, -0.0011035995557904243, -0.01923348568379879, -0.012588154524564743, 0.010670501738786697, -0.039264410734176636, 0.015910819172859192, 0.008786075748503208, -0.024853534996509552, -0.008610449731349945, 0.04097320884466171, 0.0074807433411479, -0.07203537970781326, 0.010138875804841518, -0.01742975227534771, 0.07533905655145645, 0.02971412055194378, 0.001955625833943486, 0.010005968622863293, -0.0061469306237995625, 0.006787730380892754, -0.02483454905450344, -0.023961162194609642, -0.00838261004537344, -0.006972850300371647, 0.0023365456145256758, 0.01634751260280609, 0.051339924335479736, 0.06971900910139084, -0.04089726135134697, 0.08862972259521484, 0.0058906106278300285, -0.04522622004151344, 0.08316156268119812, 0.0037451183889061213, 0.009920529089868069, 0.03506835922598839, 0.008358876220881939, 0.03354942426085472, 0.012834981083869934, -0.036359451711177826, -0.010129381902515888, 0.0008443129481747746, 0.021075190976262093, -0.06056743860244751, 0.037878382951021194, -0.012094501405954361, -0.011705274693667889, -0.01857844553887844, 0.0015604660147801042, -0.06709884852170944, -0.015369700267910957, 0.04606163129210472, -0.02259412407875061, -0.041276995092630386, 0.014895033091306686, -0.07484540343284607, 0.016138659790158272, -0.015037433244287968, -0.01768607273697853, 0.044846486300230026, 0.09705979377031326, 0.0411251001060009, 0.1263751983642578, -0.0074332766234874725, -0.03998590260744095, 0.009892049245536327, -0.00042274981387890875, -0.038334064185619354, 0.01184767484664917, 0.012322341091930866, -0.020714445039629936, 0.04423891380429268, -0.053314536809921265, -0.0428718738257885, -0.0310621727257967, -0.006009277421981096, 0.057833362370729446, -0.008672156371176243, -0.04093523696064949, -0.037213850766420364, -0.046593260020017624, 0.013518501073122025, 0.04621352627873421, 0.04268200695514679, -0.03446078300476074, -0.03896062448620796, -0.0638711154460907, 0.06968103349208832, 0.0031090653501451015, 0.04628947377204895, 0.055099282413721085, 0.009431622922420502, 0.05384616181254387, -0.027169907465577126, 0.0037522383499890566, -0.013869754038751125, 0.062048397958278656, 0.011050235480070114, -0.05771944299340248, -0.026885109022259712, -0.02882174775004387, 0.03313171863555908, -0.03282793238759041, -0.0153127396479249, -0.028688840568065643, -0.011240101419389248, -0.05103613808751106, -0.025650976225733757, 0.01206602156162262, -0.0076895966194570065, 0.0586308017373085, 0.018436044454574585, 0.02481556311249733, -0.057149842381477356, 0.026961054652929306, -0.04154280945658684, -0.006374770309776068, 0.038315076380968094, -0.05920040234923363, -0.09212326258420944, -0.016195619478821754, 0.03892264887690544, -0.0017871191957965493, -0.016651298850774765, 0.015502606518566608, 0.04564392566680908, 0.025594014674425125, 0.08141478896141052, 0.02322068251669407, 0.018920205533504486, 0.022746017202734947, 0.043669313192367554, -0.056238483637571335, 0.03681512922048569, 0.011610341258347034, -0.0019651190377771854, -0.018730338662862778, -0.04674515128135681, 0.008145276457071304, 0.06641533225774765, -0.05255506932735443, -0.03267603740096092, 0.012113488279283047, 0.0032301051542162895, -0.03778345137834549, -0.007457009982317686, -0.005724477581679821, 0.0030639718752354383, 0.024492789059877396, 0.005021971184760332, 0.03529619798064232, 0.01051860861480236, 0.044846486300230026, -0.05077032372355461, -0.029600201174616814, 0.03147988021373749, 0.051529791206121445, -0.04761853814125061, -0.026087667793035507, 0.023980149999260902, -0.006384263746440411, -0.001346866018138826, -0.017353804782032967, -0.018844258040189743, 0.0003432431840337813, 0.022024523466825485, 0.034745585173368454, 0.014676687307655811, 0.004067891743034124, 0.009635728783905506, -0.04313768818974495, 0.005980797577649355, 0.02348649688065052, -0.023581430315971375, 0.05703592300415039, 0.024075083434581757, -0.009369916282594204, -0.03975806385278702, 0.018208205699920654, -0.01363242045044899, -0.018160738050937653, 0.00047555644414387643, 0.015521593391895294, -0.019072098657488823, 0.03282793238759041, 0.009232262149453163, -0.00502671767026186, -0.01677471213042736, 0.014334927313029766, 0.006502930540591478, 0.009156315587460995, -0.008045596070587635, 0.003322665113955736, 0.004041784908622503, 0.0388467013835907, -0.05126397684216499, 0.024207988753914833, -0.05498536303639412, -0.011401488445699215, 0.03559998422861099, -0.05718781426548958, 0.04993491247296333, 0.00039011650369502604, 0.014334927313029766, -0.049061525613069534, -0.012179940938949585, 0.01306282076984644, -0.02120809815824032, 0.02103721722960472, -0.0411251001060009, -0.00024682655930519104, -0.0011415728367865086, 0.0554790161550045, 0.01174324844032526, -0.07306066155433655, -0.006332050543278456, 0.01857844553887844, -0.011885647661983967, -0.05874472111463547, -0.01630004681646824, 0.009967995807528496, -0.027815453708171844, -0.014002660289406776, -0.015141859650611877, -0.04006185010075569, 0.03953022137284279, -0.02730281464755535, 0.0060472507029771805, 0.009668955579400063, 0.04621352627873421, -0.04560595378279686, 0.006569383665919304, -0.04051752761006355, -0.009479088708758354, 0.0004165198188275099, -0.026543349027633667, 0.055516988039016724, 0.024037109687924385, -0.0411251001060009, -0.016024740412831306, -0.02794836089015007, -0.01790441945195198, 0.031631771475076675, -0.06687100976705551, -0.04761853814125061, -0.07165564596652985, 0.005221331026405096, -0.015008953399956226, 0.0006669063586741686, 0.03375827893614769, -0.06588370352983475, -0.0572257898747921, -0.0736682340502739, -0.03827710449695587, 0.010243302211165428, 0.03391017019748688, -0.007784530054777861, -0.03391017019748688, 0.06820007413625717, -0.02008788473904133, 0.05392210930585861, -0.02975209429860115, -0.027226867154240608, 0.08179452270269394, -0.005415944382548332, -0.0212650578469038, 0.01695508509874344, 0.00959775596857071, 0.009227516129612923, 0.025613002479076385, -0.030264733359217644, 0.011619835160672665, -0.05118802934885025, -0.01553108636289835, 0.008918982930481434, 0.03066345304250717, -0.03793534263968468, 0.04856787249445915, 0.017382286489009857, -0.053960081189870834, 0.01041418220847845, 0.05790930613875389, -0.011562874540686607, 0.0397200882434845, 0.016679778695106506, 0.015578553080558777, 0.049745045602321625, -0.023562442511320114, 0.06326354295015335, -0.0029714119154959917, -0.03869481012225151, -0.06990887224674225, -0.010509115643799305, 0.02232830971479416, -0.02210047096014023, 0.015967778861522675, 0.025745907798409462, 0.022499190643429756, -0.05737768113613129, -0.033606383949518204, -0.04249214008450508, -0.0010199395474046469, -0.05259304493665695, 0.06820007413625717, 0.016803191974759102, -0.047770433127880096, -0.012948901392519474, 0.047276780009269714, -0.027378762140870094, 0.06535207480192184, -0.010670501738786697, -0.04420094192028046, 0.004860584624111652, 0.014116580598056316, -0.050846271216869354, -0.004684958141297102, -0.01720191165804863, -0.0301887858659029, 0.01475263386964798, 0.039454277604818344, 0.009958501905202866, 0.03284692019224167, -0.01993599161505699, 0.06892156600952148, -0.04697299376130104, 0.06641533225774765, 0.02703700214624405, 0.009873062372207642, 0.06607357412576675, 0.022043509408831596, -0.048871658742427826, 0.012265381403267384, -0.05103613808751106, 0.013556473888456821, 0.06273192167282104, -0.02434089593589306, -0.06394706666469574, 0.00658837053924799, 0.0050409575924277306, 0.03641641139984131, -0.026885109022259712, 0.026277534663677216, 0.004597144667059183, 0.03827710449695587, 0.030359666794538498, -0.0008840662776492536, -0.010100902058184147, 0.01918601803481579, -0.0006407996988855302, 0.024075083434581757, -0.015986766666173935, 0.024720629677176476, -0.006279837340116501, 0.02101823128759861, -0.09554086625576019, -0.041884567588567734, 0.07351633906364441, 0.002106332452967763, -0.021967563778162003, 0.040593475103378296, 0.06759250164031982, 0.009621488861739635, -0.017809486016631126, -0.05118802934885025, -0.007998129352927208, -0.020638497546315193, 0.008273436687886715, 0.01231284812092781, -0.0017788124969229102, 0.014382394030690193, 0.04898557811975479, -0.026239560917019844, -0.05931432172656059, -0.05452968180179596, 0.01586335338652134, -0.03127102553844452, 0.012436261400580406, 0.04507432505488396, 0.06679506599903107, 0.004499838221818209, 0.010281275026500225, 0.031138120219111443, 0.03983400762081146, -0.00838735606521368, 0.05745362862944603, -0.0397200882434845, 0.04636542126536369, 0.05999784171581268, -0.0025062388740479946, 0.020239777863025665, 0.042150381952524185, 0.02234729751944542, -0.056010641157627106, 0.01725887320935726, 0.02481556311249733, 0.006441223900765181, -0.04450472816824913, -0.03239123895764351, -0.05502333492040634, -0.050656404346227646, 0.016243085265159607, 0.007969649508595467, -0.03459369018673897, 0.023619402199983597, -0.07792124897241592, -0.07663015276193619, -0.010433169081807137, 0.05483346804976463, 0.020068896934390068, -0.03421395644545555, 0.010395195335149765, 0.02794836089015007, 0.032979823648929596, -0.017154445871710777, 0.04385918006300926, -0.03434686362743378, -0.006042504217475653, -0.03983400762081146, 0.0393783301115036, -0.008648422546684742, 0.07101010531187057, 0.036074649542570114, 0.03896062448620796, 0.024473803117871284, -0.03434686362743378, 0.01720191165804863, -0.0002683348720893264, -0.016850659623742104, -0.014942499808967113, -0.05631442740559578, 0.04203646257519722, 0.04344147443771362, 0.03449875861406326, -0.013252687640488148, -0.010661008767783642, 0.0030331185553222895, 0.05122600495815277, 0.0063937571831047535, -0.052403178066015244, 0.006901650223881006, -0.03178366646170616, 0.000271598226390779, -0.02303081564605236, -0.07423783093690872, 0.017069006338715553, 0.00047881979844532907, 0.008980689570307732, 0.07966801524162292, -0.009037649258971214, -0.02903060056269169, -0.05050450935959816, 0.01965119130909443, 0.011695781722664833, 0.025119349360466003, 0.04328957945108414, -0.019271457567811012, 0.010812901891767979, 0.03242921084165573, 0.04222632944583893, -0.0003195098543073982, 0.015663992613554, 0.039947930723428726, 0.011543888598680496, 0.016727246344089508, 0.0037451183889061213, 0.010528101585805416, 0.04875773936510086, 0.008263942785561085, 0.05517522990703583, -0.0067402636632323265, -0.01674623228609562, -0.038144197314977646, -0.014107086695730686, 0.05475752428174019, 0.005938077345490456, -0.007200689986348152 ]
24,508
logorestclient.service.logo_service
__init__
null
def __init__(self, credentials): if credentials is None: raise LogoException("Credentials required!") payload = { 'grant_type': credentials['GRANT_TYPE'], 'username': credentials['USER_NAME'], 'firmno': credentials['CLIENT_NUMBER'], 'password': credentials['PASSWORD'] } super().__init__(credentials['REST_URL'], **payload) token = self.token_dict['access_token'] self.headers = { 'Authorization': f'Bearer {token}', 'content-type': 'application/json', 'accept': 'application/json' }
(self, credentials)
[ -0.03964574635028839, -0.0764138251543045, -0.015642473474144936, 0.009182297624647617, 0.000010405428838566877, -0.033404313027858734, -0.023488014936447144, 0.047948215156793594, -0.023663008585572243, 0.04973703995347023, 0.04608161747455597, 0.06583643704652786, 0.0019285740563645959, -0.023429684340953827, -0.007933038286864758, 0.003448829986155033, 0.0628809928894043, 0.04755934327840805, 0.0052643874660134315, -0.03254878893494606, -0.013377279974520206, -0.018588198348879814, -0.051059212535619736, 0.0375458262860775, -0.0038620091509073973, 0.06272544711828232, -0.037409719079732895, 0.03317098692059517, 0.02953501231968403, -0.021601974964141846, -0.015195268206298351, 0.02027980051934719, 0.016847984865307808, 0.09395205974578857, 0.024868519976735115, -0.07672492414712906, -0.02792118303477764, 0.029846111312508583, -0.15516088902950287, 0.058953363448381424, -0.047326017171144485, 0.0032592536881566048, 0.015068884007632732, -0.011588457971811295, 0.016857706010341644, 0.03035164810717106, 0.026074029505252838, 0.030526641756296158, 0.002641915576532483, -0.040520716458559036, -0.026676785200834274, 0.0036238236352801323, -0.04402058571577072, -0.025062955915927887, -0.027707302942872047, 0.07011406123638153, 0.04697602987289429, 0.01845209114253521, -0.06743082404136658, 0.03355986252427101, -0.08936334401369095, 0.0017924680141732097, 0.0059011694975197315, -0.009469091892242432, -0.006406706292182207, 0.010052403435111046, -0.059769999235868454, 0.02144642360508442, 0.032412681728601456, 0.043515048921108246, 0.0635031908750534, -0.004379698075354099, -0.03418206050992012, -0.0018046203767880797, 0.05502573028206825, -0.020960330963134766, -0.06925853341817856, -0.007160150445997715, -0.007271951530128717, -0.019015958532691002, -0.010101012885570526, -0.016935480758547783, -0.038420792669057846, 0.020299244672060013, -0.006625447887927294, 0.0009551728144288063, -0.03406539931893349, -0.07606383413076401, -0.009799635037779808, 0.036048658192157745, -0.06669196486473083, 0.027765633538365364, -0.06921964883804321, -0.02473241277039051, 0.002500948728993535, 0.024674082174897194, 0.006883077323436737, -0.024615751579403877, -0.0087059261277318, 0.038867998868227005, -0.030234986916184425, 0.002865518443286419, -0.035037584602832794, 0.017343798652291298, 0.00013451105041895062, -0.039412423968315125, 0.008025395683944225, -0.03538757190108299, 0.033404313027858734, -0.006246295291930437, -0.041415125131607056, -0.013163398951292038, 0.019064567983150482, 0.05253693461418152, -0.030487755313515663, -0.0043359496630728245, 0.05809783935546875, -0.009245489723980427, 0.04211509972810745, -0.01800488494336605, 0.050242576748132706, 0.015671638771891594, 0.040870703756809235, 0.07575273513793945, 0.03437649831175804, 0.07392502576112747, -0.04207621142268181, -0.023507459089159966, 0.040870703756809235, -0.04903706535696983, -0.004190121777355671, 0.00770457461476326, -0.00021813424245920032, -0.008919807150959969, -0.012793968431651592, -0.0033637636806815863, -0.002960306592285633, -0.02119365520775318, -0.005862282123416662, 0.012405093759298325, -0.003242240520194173, 0.009901715442538261, -0.004000545479357243, -0.017596567049622536, -0.03674863278865814, 0.037954144179821014, -0.020707562565803528, -0.04234842583537102, -0.011919001117348671, -0.0122301010414958, 0.028154509142041206, 0.0058088116347789764, 0.06886965781450272, -0.010139900259673595, -0.0259962547570467, -0.019181231036782265, -0.014855002984404564, -0.03985963016748428, 0.03128494694828987, 0.05218694731593132, 0.028504494577646255, -0.012570365332067013, 0.04720935598015785, -0.006416427902877331, 0.0003606202662922442, 0.006372679490596056, 0.018977072089910507, -0.053314682096242905, -0.02656012400984764, -0.043398384004831314, -0.0061685205437242985, -0.05634790286421776, -0.02164086140692234, -0.028776707127690315, -0.033598750829696655, -0.0222630612552166, 0.018588198348879814, -0.02272970974445343, -0.02372133918106556, 0.01582718826830387, -0.008496906608343124, -0.029496125876903534, -0.008278164081275463, 0.01118014007806778, 0.04160956293344498, -0.005040784832090139, 0.034609824419021606, 0.02327413484454155, 0.024421313777565956, 0.03791525587439537, -0.002199570881202817, 0.03861523047089577, -0.029243357479572296, 0.01554525550454855, 0.04479833319783211, -0.0222630612552166, 0.033501531928777695, -0.033676523715257645, 0.008127475157380104, 0.03225713223218918, -0.04172622412443161, 0.037234727293252945, -0.012035663239657879, -0.006221990566700697, 0.07524719834327698, 0.019084012135863304, 0.028835037723183632, -0.042970623821020126, -0.028582269325852394, -0.01825765334069729, -0.044409457594156265, 0.0010147192515432835, -0.0465482696890831, 0.023021366447210312, -0.0312655046582222, 0.014641121961176395, 0.011112086474895477, -0.03136272355914116, 0.06984184682369232, -0.012074550613760948, 0.0937965139746666, 0.031693264842033386, -0.028251726180315018, -0.0815858542919159, 0.0005343985394574702, 0.05327579751610756, 0.027435090392827988, -0.08345244824886322, -0.07380836457014084, 0.010577384382486343, -0.05382021889090538, -0.029690561816096306, 0.00881772767752409, 0.061053283512592316, -0.0509425513446331, -0.02681289240717888, 0.0407540388405323, -0.017353521659970284, -0.07225286960601807, -0.019161786884069443, 0.0390818789601326, 0.030682191252708435, -0.013805042020976543, 0.01427169144153595, -0.04709269106388092, -0.01755768060684204, -0.055064618587493896, 0.0523424968123436, -0.03989851474761963, -0.026774004101753235, -0.046237170696258545, -0.03171271085739136, -0.010139900259673595, -0.02654067985713482, -0.012385650537908077, -0.034959811717271805, 0.0032884194515645504, -0.03000166267156601, 0.03816802427172661, -0.05257582291960716, 0.017470182850956917, -0.05102032423019409, -0.01399947889149189, 0.02162141725420952, 0.03179048374295235, -0.013299505226314068, -0.016284115612506866, 0.001481368555687368, 0.002603028202429414, -0.02099921926856041, 0.12257321923971176, 0.043865036219358444, -0.0021388093009591103, -0.005813672672957182, 0.006712944712489843, -0.011724564246833324, -0.026307355612516403, -0.01068432442843914, -0.04265952482819557, -0.021601974964141846, 0.016186898574233055, -0.05319802090525627, 0.015963295474648476, 0.08275248110294342, 0.021057549864053726, -0.00650392472743988, -0.0014631400117650628, -0.0011101149721071124, -0.020240914076566696, -0.009405899792909622, 0.02619069255888462, 0.07030849903821945, 0.00988227128982544, -0.008190667256712914, 0.023313021287322044, -0.012774525210261345, 0.005176890641450882, 0.044603895395994186, -0.004506082274019718, 0.0285433828830719, 0.006712944712489843, 0.010344060137867928, -0.00559007003903389, -0.08135253190994263, 0.035601451992988586, -0.045420531183481216, 0.05557015538215637, 0.0519925095140934, -0.03157660365104675, 0.0222630612552166, 0.029204469174146652, 0.07699713855981827, -0.029340574517846107, -0.0011325967498123646, -0.01669243536889553, 0.00222630612552166, 0.0360097698867321, -0.007403196766972542, 0.04674270749092102, 0.04740379378199577, -0.025432387366890907, -0.02908780612051487, -0.001661222893744707, -0.038323573768138885, 0.06879188865423203, 0.002812048187479377, -0.0038304131012409925, 0.042698413133621216, -0.050514787435531616, 0.042309537529945374, -0.04802599176764488, -0.009055913425981998, -0.003947075456380844, -0.011257914826273918, 0.018043773248791695, -0.014349466189742088, -0.015477201901376247, 0.009935741312801838, -0.00963436346501112, -0.034512605518102646, -0.028621157631278038, -0.0815080776810646, 0.008992721326649189, 0.07011406123638153, -0.04884262755513191, -0.05817561224102974, 0.02782396413385868, -0.05817561224102974, 0.007106679957360029, -0.04106513783335686, -0.07450833916664124, 0.004054015967994928, 0.08438575267791748, 0.019084012135863304, 0.0876522958278656, 0.0073643093928694725, -0.03608754649758339, -0.03099329210817814, -0.026501791551709175, -0.04573163390159607, 0.026054587215185165, 0.00786498561501503, -0.022982478141784668, 0.0407540388405323, -0.0434761606156826, -0.026326797902584076, -0.02064923197031021, 0.006328931078314781, 0.04639272019267082, -0.02589903585612774, 0.016293838620185852, -0.0395679734647274, -0.03206269443035126, 0.04265952482819557, 0.008958694525063038, 0.03599032759666443, -0.06898632645606995, -0.027221210300922394, -0.05930335074663162, 0.01422308199107647, -0.016760487109422684, 0.03326820582151413, 0.04810376465320587, 0.03219880163669586, -0.012648141011595726, -0.027765633538365364, 0.005278970114886761, -0.022068623453378677, 0.05662011727690697, 0.03519313409924507, -0.015166102908551693, -0.03037109225988388, -0.002595736877992749, 0.02389633283019066, -0.03770137578248978, -0.02547127567231655, -0.03101273626089096, 0.006275461055338383, -0.007024044170975685, -0.010023238137364388, 0.027026772499084473, -0.04308728501200676, 0.04265952482819557, 0.007884428836405277, 0.035679228603839874, -0.011695398017764091, 0.03237379714846611, -0.012891187332570553, 0.030487755313515663, -0.01195788849145174, -0.019803430885076523, -0.08477462083101273, 0.011569013819098473, 0.02601569890975952, 0.03810969367623329, -0.02482963167130947, 0.01322173047810793, 0.014845280908048153, 0.018442369997501373, 0.010460722260177135, 0.030390536412596703, 0.010664881207048893, 0.02136864885687828, 0.024712970480322838, -0.038945771753787994, 0.029710005968809128, 0.006863633636385202, -0.030137768015265465, 0.02535461261868477, -0.07898039370775223, -0.02018258348107338, 0.11425130814313889, -0.044137246906757355, -0.024401869624853134, 0.030118323862552643, 0.02027980051934719, -0.04328172281384468, 0.011695398017764091, -0.0343376100063324, -0.004812321159988642, 0.015029996633529663, -0.04639272019267082, 0.019015958532691002, -0.01091764960438013, 0.020610343664884567, -0.007169872056692839, -0.03857634216547012, 0.04534275829792023, 0.03661252558231354, -0.05039812624454498, -0.013882816769182682, 0.019035402685403824, -0.016847984865307808, -0.048764850944280624, -0.055959030985832214, -0.006129633169621229, 0.012813412584364414, 0.03307376801967621, 0.08438575267791748, -0.0017329216934740543, 0.0219130739569664, -0.0375458262860775, -0.038867998868227005, -0.029865555465221405, -0.0028193395119160414, 0.0009819079423323274, 0.04129846394062042, 0.005896308459341526, -0.014718896709382534, -0.021407537162303925, 0.006105328444391489, 0.006926825735718012, -0.032334908843040466, 0.015204990282654762, 0.01704242080450058, -0.00027509828214533627, 0.0781637579202652, 0.009298959746956825, -0.060858845710754395, -0.014660566113889217, -0.025257393717765808, 0.018685415387153625, -0.009216323494911194, 0.01404808834195137, 0.016886871308088303, 0.008083727210760117, -0.03229602053761482, -0.051603637635707855, 0.043787259608507156, 0.007242786232382059, 0.014077254571020603, 0.03324876353144646, -0.06995850801467896, 0.05070922523736954, 0.0001129406809923239, 0.057592302560806274, -0.0010979626094922423, 0.005769924260675907, 0.0017961137928068638, 0.002002703258767724, 0.00275128660723567, -0.008166362531483173, 0.02535461261868477, 0.0010621133260428905, -0.009099661372601986, 0.02201029285788536, -0.07656937092542648, -0.014786950312554836, 0.008691343478858471, 0.006620586849749088, 0.004868221469223499, 0.03173215314745903, -0.0015615738229826093, -0.016974369063973427, 0.00046786453458480537, 0.003640836803242564, -0.05782562866806984, 0.061053283512592316, -0.04674270749092102, 0.009799635037779808, 0.013785598799586296, 0.025140730664134026, 0.011685676872730255, -0.008317051455378532, -0.008467740379273891, 0.014631399884819984, 0.042503975331783295, -0.0016284117009490728, 0.05716453865170479, 0.02846560813486576, -0.030507199466228485, -0.006581699475646019, -0.04102625325322151, 0.018753468990325928, 0.035309799015522, 0.0065282294526696205, -0.025062955915927887, -0.027240652590990067, 0.003448829986155033, -0.0007953697349876165, 0.0047758640721440315, -0.025140730664134026, -0.03445427492260933, -0.03828468546271324, -0.08998554199934006, -0.03989851474761963, -0.027862852439284325, -0.018977072089910507, -0.013241173699498177, -0.037215281277894974, 0.041959550231695175, -0.04402058571577072, 0.016906315460801125, -0.024343539029359818, -0.07093069702386856, 0.05747564136981964, 0.010363503359258175, -0.06116994842886925, 0.03727361187338829, 0.01686742901802063, 0.02300192229449749, 0.01872430369257927, -0.022476941347122192, 0.03225713223218918, -0.03418206050992012, -0.04300951212644577, -0.007408057805150747, 0.035970885306596756, -0.055609043687582016, 0.023488014936447144, 0.020143695175647736, 0.0029748892411589622, -0.008142057806253433, 0.06008109822869301, -0.00859412457793951, 0.025140730664134026, 0.018559031188488007, 0.0285433828830719, 0.04958149045705795, -0.004836625419557095, 0.04864818975329399, 0.008448297157883644, -0.05043701454997063, -0.09224101155996323, -0.05144808813929558, 0.01214260421693325, -0.045576080679893494, -0.024965738877654076, 0.04860930144786835, -0.028971144929528236, -0.02236028015613556, -0.025490717962384224, -0.02426576428115368, -0.008453157730400562, -0.056775666773319244, 0.018238211050629616, -0.0007279242854565382, -0.08026368170976639, -0.027337871491909027, 0.014806393533945084, -0.01640077866613865, 0.0614810474216938, -0.03766248747706413, 0.013299505226314068, 0.013484220951795578, -0.023799113929271698, -0.037779148668050766, 0.017888223752379417, -0.03571811690926552, -0.01877291314303875, 0.05413132160902023, 0.034123729914426804, 0.007135845720767975, 0.027240652590990067, -0.011637067422270775, 0.06591421365737915, -0.06435871869325638, 0.021038105711340904, 0.017742395401000977, 0.003915479406714439, 0.03480426222085953, -0.01949233002960682, -0.05090366303920746, 0.07847485691308975, -0.0713195726275444, 0.035251468420028687, 0.0631532073020935, -0.06163659691810608, -0.04682048037648201, 0.019015958532691002, 0.029476681724190712, -0.0020950608886778355, -0.019890926778316498, 0.0042071351781487465, 0.01640077866613865, 0.04693714156746864, 0.026482347398996353, 0.007772627752274275, 0.082208052277565, 0.014505015686154366, 0.008443435654044151, -0.013775876723229885, 0.01540914922952652, 0.002338107442483306, -0.03536812961101532, 0.01537026185542345, -0.0516425222158432, -0.050514787435531616, 0.02473241277039051, -0.026793448254466057, -0.0312655046582222, 0.04783155396580696, 0.013037014752626419, 0.006649752613157034, -0.019968701526522636, -0.018286820501089096, -0.03179048374295235, 0.02827117033302784, 0.05028146132826805, 0.023876890540122986, 0.021757524460554123, 0.012891187332570553, 0.09822967648506165, 0.032140471041202545, -0.017256302759051323, -0.020863112062215805, 0.006810163147747517, -0.04390392079949379, 0.011724564246833324, 0.051136985421180725, 0.042153988033533096, 0.0035266049671918154, 0.03564034029841423, 0.019803430885076523, 0.045498307794332504, 0.013173121027648449, 0.012881465256214142, -0.04203732684254646, 0.0747416615486145, 0.04456501081585884, -0.0074226404540240765, 0.011257914826273918, 0.03200436383485794, 0.010791265405714512, -0.01522443350404501, 0.02891281433403492, 0.023876890540122986, 0.04160956293344498, -0.056853439658880234, -0.03663197159767151, 0.023313021287322044, -0.07174733281135559, -0.02045479416847229, 0.004501221235841513, -0.06167548522353172, 0.04880373924970627, -0.059964437037706375, -0.05553126707673073, 0.032490458339452744, 0.04300951212644577, 0.013620326295495033, -0.01949233002960682, -0.017256302759051323, 0.046314943581819534, -0.0069365473464131355, -0.034123729914426804, 0.010538497008383274, -0.015302208252251148, -0.003781803883612156, -0.04503165930509567, 0.009065634571015835, 0.04207621142268181, 0.02589903585612774, 0.001466785673983395, 0.028757262974977493, 0.0434761606156826, -0.019725654274225235, 0.006474758964031935, 0.0017037560464814305, -0.028582269325852394, -0.006081023719161749, -0.028212839737534523, 0.03217935934662819, 0.04390392079949379, 0.07357504218816757, -0.025257393717765808, -0.003915479406714439, 0.03779859468340874, 0.03593199700117111, -0.0587589256465435, 0.007286534644663334, -0.023799113929271698, -0.04740379378199577, 0.023974107578396797, -0.01662438176572323, -0.05619235336780548, 0.01508832722902298, 0.03694307059049606, 0.017479905858635902, 0.10071847587823868, -0.01105375587940216, -0.009614920243620872, -0.052964694797992706, 0.033676523715257645, -0.014670287258923054, 0.05413132160902023, -0.003560631535947323, -0.04755934327840805, 0.027610084041953087, 0.04818154126405716, 0.007393475156277418, -0.0005432089674286544, 0.024421313777565956, 0.01445640716701746, 0.01595357246696949, -0.007189315743744373, -0.04079292714595795, 0.01622578501701355, 0.022224172949790955, 0.011812061071395874, 0.01607995666563511, -0.032140471041202545, -0.0310905110090971, -0.03898466005921364, -0.004017558880150318, 0.08788561820983887, 0.04510943219065666, -0.025412943214178085 ]
24,509
logorestclient.service.http_service
connect
null
def connect(self, method, url, request_body={}, headers=None, is_json=False): if method == 'GET': return self.get_request(self.REST_URL + url, headers) return self.post_request(self.REST_URL + url, request_body, headers, is_json)
(self, method, url, request_body={}, headers=None, is_json=False)
[ -0.03355800360441208, -0.07095229625701904, -0.0032451748847961426, -0.021821249276399612, -0.03336808830499649, 0.01973218284547329, -0.029132980853319168, 0.015990855172276497, -0.007734294049441814, -0.009500504471361637, 0.02727181278169155, -0.00213654525578022, 0.026569128036499023, 0.015981359407305717, 0.020586799830198288, -0.05526530370116234, 0.028810126706957817, -0.004769243765622377, 0.016047829762101173, -0.05746832117438316, -0.016038333997130394, -0.013759351335465908, 0.03152591362595558, 0.025068797171115875, 0.02203015610575676, 0.06343165785074234, -0.010454827919602394, -0.03710941597819328, 0.055303286761045456, 0.0575442872941494, -0.004225611686706543, 0.0627099797129631, -0.010711213573813438, 0.0305953286588192, 0.00995155330747366, 0.04618735983967781, -0.0018196243327111006, 0.010958103463053703, -0.04569358006119728, 0.015573041513562202, -0.06590054929256439, -0.02975970134139061, 0.022144105285406113, 0.006086780223995447, 0.05385993421077728, 0.0607728436589241, -0.08318282663822174, 0.04736483469605446, 0.057924117892980576, -0.02696794830262661, -0.010711213573813438, 0.02484089881181717, 0.010654238983988762, -0.026189297437667847, -0.0361788347363472, -0.015373630449175835, -0.04387039691209793, -0.003954982850700617, -0.028715169057250023, 0.020263945683836937, -0.007344967685639858, 0.04242704063653946, 0.029038025066256523, -0.017500679939985275, -0.07019263505935669, -0.022390995174646378, -0.09260261803865433, 0.04371846467256546, 0.06730592250823975, 0.023891324177384377, 0.026683077216148376, 0.0361788347363472, -0.002273046877235174, 0.0012795532820746303, 0.0687112957239151, 0.007767529226839542, 0.017880510538816452, -0.04189527779817581, -0.05146700143814087, -0.012344484217464924, -0.01010348554700613, 0.006295686587691307, 0.011736755259335041, -0.021821249276399612, -0.0011632301611825824, 0.018117904663085938, -0.049567852169275284, -0.04326266795396805, -0.0061959815211594105, 0.005165691487491131, -0.0414394810795784, -0.02254292741417885, -0.03946436569094658, -0.003969226498156786, 0.012885741889476776, 0.019922098144888878, -0.02711988054215908, -0.014490525238215923, 0.02368241734802723, -0.04436417669057846, -0.010122477076947689, 0.01069222204387188, -0.029854658991098404, -0.020795706659555435, 0.050859272480010986, -0.050251543521881104, 0.028392313048243523, 0.00010860771726584062, -0.021422427147626877, 0.004201872274279594, 0.010720709338784218, -0.008237568661570549, 0.006836944725364447, 0.014870354905724525, -0.0013946893159300089, 0.041173599660396576, 0.03416573256254196, -0.0618363693356514, -0.02368241734802723, -0.026702068746089935, -0.07721949368715286, -0.01608581282198429, 0.08986784517765045, -0.028012482449412346, 0.0387616790831089, 0.036216817796230316, -0.013237085193395615, -0.008038158528506756, 0.014462037943303585, -0.04550366476178169, 0.004899810533970594, 0.006628038361668587, 0.019637225195765495, 0.0865253359079361, -0.04664315655827522, 0.03530522435903549, -0.0775233581662178, 0.0348874107003212, -0.03824890777468681, 0.0657106339931488, 0.03671059384942055, 0.008750339969992638, 0.0072737499140203, 0.01790899783372879, -0.060734860599040985, 0.0036131355445832014, 0.006191233638674021, -0.043300651013851166, 0.03965428099036217, 0.00903521291911602, 0.020301928743720055, 0.005635731853544712, 0.05606294795870781, -0.03703344985842705, 0.006205476820468903, -0.02073873206973076, -0.0022409986704587936, -0.03731832280755043, 0.0035158039536327124, 0.03431766480207443, 0.0051704393699765205, 0.015829427167773247, 0.018982017412781715, -0.02599938213825226, -0.002438035560771823, -0.0305953286588192, 0.003304523415863514, -0.029531802982091904, -0.0106827262789011, -0.027993490919470787, -0.057430338114500046, -0.010559281334280968, -0.04128754884004593, -0.030044574290513992, 0.05682260915637016, -0.04569358006119728, 0.04998566210269928, -0.005379346199333668, -0.004762121941894293, -0.008152106776833534, 0.023226620629429817, -0.02841130457818508, -0.01009398978203535, 0.03450758010149002, 0.004330065101385117, 0.029721718281507492, 0.015079261735081673, -0.02170730009675026, -0.0031834524124860764, 0.07786520570516586, -0.011261967942118645, 0.03057633712887764, 0.004330065101385117, -0.0031454693526029587, -0.005635731853544712, -0.0549614392220974, 0.01888705976307392, 0.0581899993121624, 0.006214972585439682, 0.04554164782166481, -0.0009543235646560788, 0.02862021140754223, 0.025923416018486023, 0.028848109766840935, 0.0427309051156044, -0.01035037450492382, -0.03735630586743355, -0.029151972383260727, -0.033614978194236755, -0.0037674414925277233, 0.011708267964422703, -0.023891324177384377, -0.010863145813345909, -0.020131004974246025, -0.008237568661570549, 0.025752492249011993, 0.03403279185295105, -0.06882524490356445, 0.002722908277064562, -0.0387616790831089, 0.0558350495994091, 0.023777374997735023, 0.026891984045505524, -0.03792605176568031, -0.039350416511297226, 0.004000087734311819, -0.0011127840261906385, -0.07562420517206192, -0.07440874725580215, -0.06062091141939163, -0.03105112537741661, -0.02102360501885414, 0.08379055559635162, 0.013854308985173702, -0.05461959168314934, -0.0328553169965744, -0.006851188372820616, 0.00022567260020878166, -0.04728886857628822, -0.02808844856917858, 0.035096317529678345, -0.0008813249296508729, -0.026189297437667847, -0.02860121987760067, -0.11356925219297409, -0.0021745283156633377, 0.014471533708274364, -0.006319426000118256, -0.02580946683883667, -0.06817953288555145, 0.011575327254831791, -0.07862486690282822, -0.010606760159134865, -0.03515329211950302, 0.005797159392386675, -0.01774756982922554, -0.0007620344986207783, 0.07330724596977234, -0.007724798284471035, -0.005327119491994381, 0.011157514527440071, -0.013056665658950806, -0.01920991577208042, 0.05458160862326622, -0.03171582892537117, -0.0010071437573060393, 0.013123136013746262, 0.03200070187449455, -0.010169955901801586, -0.02303670533001423, 0.16408666968345642, 0.0011584822786971927, 0.05667067691683769, -0.014129686169326305, -0.005564513616263866, -0.05374598503112793, -0.01512674055993557, -0.03927445039153099, -0.03595093637704849, -0.1075679361820221, 0.012420449405908585, -0.03352002054452896, 0.023796366527676582, -0.04174334555864334, -0.02907600812613964, -0.027252821251749992, 0.011366420425474644, 0.08409442007541656, -0.030443396419286728, -0.04109763354063034, 0.05575908347964287, 0.013436496257781982, -0.04159141331911087, 0.007686815224587917, -0.010891633108258247, 0.048884157091379166, -0.06217821687459946, 0.024442078545689583, 0.02729080431163311, -0.004284960217773914, -0.025733500719070435, -0.023454518988728523, 0.010768188163638115, 0.00018576074216980487, 0.02531568706035614, -0.07228170335292816, -0.0025567326229065657, 0.004330065101385117, -0.07182590663433075, 0.014196156524121761, -0.026037365198135376, -0.010920120403170586, -0.02237200364470482, -0.03255145251750946, -0.04911205545067787, -0.005037499126046896, -0.020909655839204788, 0.014519012533128262, 0.029797684401273727, 0.04588349536061287, -0.011575327254831791, 0.010958103463053703, -0.04500988870859146, -0.009742646478116512, 0.05891167372465134, 0.018858572468161583, 0.01512674055993557, 0.024385103955864906, -0.03169683739542961, 0.03209565952420235, 0.01937134377658367, 0.09123522788286209, -0.020282937213778496, -0.005597748793661594, -0.05313825607299805, -0.0736490860581398, -0.004909306298941374, -0.07991629093885422, -0.0244800616055727, -0.0018647292163223028, -0.045275770127773285, -0.002357321558520198, 0.036558665335178375, -0.043148718774318695, 0.027347778901457787, 0.008137863129377365, -0.005460060201585293, 0.011138522997498512, 0.04322468489408493, -0.06426728516817093, -0.05142901837825775, -0.01563951186835766, 0.024385103955864906, 0.03274136781692505, -0.030652303248643875, -0.0032428009435534477, -0.033614978194236755, -0.07668773084878922, -0.009429286234080791, -0.0792325958609581, 0.02727181278169155, 0.05336615443229675, -0.022125113755464554, 0.031639862805604935, -0.025771483778953552, -0.01592438481748104, 0.015857914462685585, 0.00023887763381935656, 0.017301268875598907, 0.005854133982211351, 0.00007114399340935051, -0.034450605511665344, 0.017624124884605408, 0.020605791360139847, 0.002798874396830797, -0.03610286861658096, -0.015373630449175835, -0.03980621322989464, 0.015468588098883629, 0.04569358006119728, 0.013246580958366394, -0.008940255269408226, -0.017861519008874893, -0.014357584528625011, 0.06001318246126175, -0.08280299603939056, -0.004218489862978458, 0.012287509627640247, -0.006167494226247072, 0.002413109177723527, -0.019352352246642113, -0.03832487389445305, -0.03642572462558746, 0.012638852000236511, -0.043642498552799225, -0.024062247946858406, 0.0071977837942540646, 0.0014742162311449647, -0.04254098981618881, 0.012297005392611027, 0.02679702639579773, -0.005298632197082043, 0.019960081204771996, 0.04892214015126228, 0.037223365157842636, 0.058303944766521454, 0.04254098981618881, 0.010435836389660835, 0.02858222834765911, -0.06658424437046051, -0.017291773110628128, -0.01743420958518982, -0.048086512833833694, 0.036235809326171875, -0.030519362539052963, 0.006120015401393175, -0.007330724038183689, 0.030842218548059464, 0.04736483469605446, 0.03762218728661537, 0.041363514959812164, -0.00962869729846716, 0.04026200994849205, 0.015221698209643364, -0.0476686991751194, 0.0042992038652300835, 0.008508197963237762, -0.006191233638674021, 0.013094648718833923, -0.0027490216307342052, 0.043794430792331696, 0.04193326085805893, 0.008954498916864395, -0.012638852000236511, 0.015164723619818687, 0.04056587442755699, -0.0068891714327037334, 0.01920991577208042, 0.04489593952894211, -0.007098078262060881, -0.011072052642703056, -0.012126081623136997, -0.0781690701842308, -0.032304566353559494, 0.01821286231279373, -0.005075482185930014, 0.026398204267024994, -0.0020653270184993744, 0.006998372729867697, -0.004054687917232513, 0.02052982524037361, -0.002022596076130867, 0.04500988870859146, 0.004557963460683823, -0.10270610451698303, -0.02778458409011364, 0.062216199934482574, -0.00017507802112959325, 0.03431766480207443, 0.0674198716878891, 0.10916321724653244, -0.003983470145612955, 0.0035419173073023558, -0.0033994808327406645, -0.003724710550159216, 0.007136061321943998, 0.00026884861290454865, 0.010986590757966042, 0.026379212737083435, -0.047934580594301224, -0.030348438769578934, 0.01561102457344532, -0.0519607812166214, 0.042503006756305695, 0.004942541476339102, 0.011670284904539585, 0.035400182008743286, -0.0019145819824188948, -0.0446680411696434, -0.04322468489408493, -0.02580946683883667, -0.04649122431874275, 0.017624124884605408, -0.024100231006741524, -0.014300609938800335, -0.040831755846738815, 0.002354947617277503, 0.013047169893980026, 0.0476686991751194, -0.0401480607688427, 0.04075578972697258, 0.07197783887386322, 0.016161778941750526, 0.06692609190940857, -0.03403279185295105, 0.00427783839404583, -0.06704004108905792, -0.061874352395534515, 0.0114328907802701, 0.04713693633675575, 0.006053545046597719, 0.018659161403775215, 0.05226464569568634, 0.04835239425301552, -0.007952696643769741, 0.03416573256254196, -0.03338707983493805, 0.03841983154416084, -0.010882137343287468, -0.007278497330844402, -0.026891984045505524, 0.026683077216148376, -0.000002035467332461849, -0.026683077216148376, -0.029645752161741257, -0.011385411955416203, 0.021327469497919083, 0.053176239132881165, -0.015012791380286217, -0.04538971558213234, 0.03980621322989464, 0.056138914078474045, 0.037261348217725754, 0.025372661650180817, -0.00018338680092711002, 0.02413821406662464, 0.01988411508500576, 0.000843935355078429, -0.022637885063886642, 0.010948607698082924, 0.022239062935113907, 0.03141196444630623, -0.01355994027107954, -0.00821857713162899, 0.03040541335940361, 0.00104750064201653, -0.05632882937788963, -0.045275770127773285, 0.018697144463658333, -0.00903521291911602, 0.030006591230630875, 0.02035890333354473, -0.03236153721809387, 0.01480388455092907, -0.07547227293252945, 0.0025638542138040066, 0.054163794964551926, 0.010426340624690056, 0.001674814149737358, -0.06552071869373322, 0.019922098144888878, 0.038894619792699814, -0.0011822216911241412, -0.0021353582851588726, -0.006751482840627432, 0.03669160231947899, 0.011774738319218159, -0.05199876427650452, 0.00928210187703371, -0.029835667461156845, -0.02628425508737564, -0.02829735539853573, -0.0648370236158371, 0.05408782884478569, 0.00624345988035202, 0.00838000513613224, 0.04064184054732323, -0.011651293374598026, -0.024100231006741524, -0.03272237628698349, 0.05093523859977722, 0.001585791353136301, -0.028031473979353905, 0.011318942531943321, 0.06779970228672028, 0.024556027725338936, -0.05165691673755646, 0.010207938961684704, 0.003050511935725808, 0.008907020092010498, 0.03120305761694908, -0.0010368179064244032, -0.02366342581808567, -0.05393589660525322, -0.004083175212144852, -0.002782256808131933, -0.02185923233628273, -0.011100539937615395, 0.02449905313551426, -0.05291035771369934, -0.019266890361905098, -0.0496058315038681, -0.006115267518907785, -0.022732840850949287, -0.021726291626691818, 0.04041394218802452, -0.02977869287133217, -0.02301771380007267, 0.010625751689076424, 0.035893961787223816, -0.0011982457945123315, 0.023435527458786964, -0.009229875169694424, -0.07976435869932175, 0.004681407939642668, 0.056974541395902634, -0.1090872511267662, 0.009163405746221542, 0.016522616147994995, -0.03342506289482117, 0.0433766171336174, 0.029019033536314964, -0.03534320741891861, -0.005246405489742756, -0.050897255539894104, -0.008731348440051079, -0.04193326085805893, 0.030025582760572433, 0.006912910845130682, -0.02349250204861164, 0.02134646102786064, -0.04094570502638817, 0.01494632102549076, 0.03268439322710037, -0.03697647526860237, 0.07383900135755539, -0.02282779850065708, -0.023587459698319435, -0.07638386636972427, -0.010644743219017982, 0.02698693983256817, -0.014708926901221275, 0.03336808830499649, 0.031658854335546494, 0.025372661650180817, -0.03642572462558746, 0.05784815177321434, -0.03441262245178223, -0.016009846702218056, 0.0646471157670021, -0.013854308985173702, 0.04307275265455246, -0.000033884272852446884, -0.03152591362595558, -0.01826034113764763, 0.016997404396533966, 0.020415877923369408, -0.033785901963710785, 0.008204333484172821, -0.025733500719070435, -0.06149452179670334, 0.04170536249876022, 0.08834852278232574, -0.004370422102510929, -0.02643618732690811, -0.01807042583823204, -0.011565831489861012, 0.03203868493437767, -0.0050944737158715725, -0.029322896152734756, -0.010654238983988762, 0.013977753929793835, 0.07581412047147751, -0.059937216341495514, -0.0022789817303419113, 0.025752492249011993, 0.015354638919234276, -0.04368048161268234, 0.0331781730055809, 0.0519607812166214, 0.019694199785590172, -0.003551413072273135, 0.050555408000946045, 0.07357311993837357, 0.00945777352899313, 0.04569358006119728, -0.0223340205848217, -0.06403938680887222, -0.004223237745463848, 0.014025232754647732, -0.032475486397743225, -0.002734777983278036, -0.02267586626112461, 0.07991629093885422, -0.019190924242138863, 0.023948298767209053, 0.05237859487533569, -0.019504284486174583, -0.04303476959466934, -0.005559765733778477, -0.018649665638804436, -0.025372661650180817, -0.014936825260519981, 0.0090447086840868, 0.017348747700452805, 0.02632223814725876, -0.03980621322989464, -0.041363514959812164, 0.016057325527071953, 0.051542967557907104, 0.11463277786970139, 0.012439440935850143, 0.020909655839204788, 0.0717119574546814, 0.00021261592337395996, 0.03547614812850952, 0.04899810627102852, 0.02941785380244255, 0.0016819359734654427, 0.022447969764471054, -0.033463045954704285, 0.01841227151453495, 0.03469749540090561, -0.027005931362509727, -0.030310455709695816, 0.08606953918933868, 0.015516066923737526, 0.004023827146738768, -0.06715399026870728, 0.0368245430290699, -0.021631333976984024, -0.0710662454366684, 0.054809506982564926, -0.04170536249876022, 0.04356653243303299, -0.03515329211950302, -0.022485952824354172, 0.026075348258018494, 0.008332526311278343, -0.05526530370116234, -0.03089919313788414, 0.044630058109760284, -0.01116701029241085, 0.017529167234897614, -0.028316346928477287, -0.04459207504987717, 0.04307275265455246, 0.03701445832848549, 0.09077943116426468, 0.0015098253497853875, -0.03418472409248352, -0.029038025066256523, -0.00187066406942904, -0.008085637353360653, 0.030196506530046463, -0.03088020160794258, 0.02070074900984764, -0.030291464179754257, 0.027062905952334404, 0.03631177544593811, -0.003221435472369194, -0.014471533708274364, 0.04368048161268234, -0.018630674108862877, -0.003757945727556944, -0.004142523743212223, -0.003173956647515297, 0.021118562668561935, 0.035248249769210815, -0.026379212737083435, 0.018488237634301186, 0.017624124884605408, 0.04246502369642258, 0.006656525656580925, 0.011879191733896732, 0.07657378166913986, 0.008057150058448315, 0.021403435617685318 ]
24,510
logorestclient.service.http_service
get_request
null
def get_request(self, url, headers): r = requests.get(url, headers=headers) return self.parse_result(r)
(self, url, headers)
[ -0.013208085671067238, -0.018391668796539307, -0.08636391907930374, -0.015384665690362453, -0.016180122271180153, 0.02889869548380375, -0.03790222108364105, -0.021853217855095863, -0.004833932034671307, -0.004239524248987436, 0.016188863664865494, 0.012202837504446507, 0.021468602120876312, -0.02409098856151104, 0.050105057656764984, -0.006241279188543558, 0.06657364219427109, -0.020629437640309334, 0.017972087487578392, -0.052098073065280914, -0.010218565352261066, 0.026206379756331444, 0.0029982614796608686, 0.007543731015175581, -0.028409184888005257, 0.03685326874256134, 0.004051586613059044, -0.06706316024065018, 0.04447567090392113, 0.01956300064921379, 0.003675711341202259, 0.04807708039879799, -0.10048983991146088, -0.00394013524055481, -0.02257000468671322, 0.07007016241550446, 0.020804263651371002, -0.014589209109544754, -0.002843103837221861, 0.006276244297623634, -0.08909120410680771, -0.021118950098752975, 0.06706316024065018, 0.009842689149081707, -0.013715079985558987, 0.02692316472530365, -0.08979050070047379, -0.01279724482446909, -0.004484280478209257, 0.0016204161802306771, 0.049650512635707855, 0.0589512437582016, 0.02248259074985981, -0.07293730229139328, -0.04930086061358452, -0.02683575265109539, -0.009798983111977577, -0.005485157947987318, -0.0007703259470872581, 0.056363821029663086, 0.0018760988023132086, 0.013356687501072884, 0.053811363875865936, 0.017360197380185127, -0.07769256085157394, -0.023076998069882393, -0.013181861490011215, 0.016958096995949745, -0.002041090512648225, -0.004995645955204964, 0.012307732366025448, 0.029912685975432396, -0.03902110829949379, -0.03545466065406799, 0.05982537195086479, 0.0002026886068051681, -0.009344436228275299, -0.08594433963298798, -0.026573514565825462, 0.016398655250668526, -0.01479025837033987, 0.0012805985752493143, 0.021293776109814644, -0.02608400210738182, -0.03503508120775223, -0.03281479328870773, 0.02891617827117443, -0.07965061068534851, -0.006088306661695242, 0.046713441610336304, -0.04489525035023689, 0.007600549608469009, -0.039650481194257736, -0.01459794957190752, 0.02211545780301094, 0.010008773766458035, 0.00479459622874856, 0.012762279249727726, -0.037832293659448624, -0.033007100224494934, 0.0007173318881541491, 0.03608403354883194, -0.02730778232216835, -0.0015275399200618267, 0.01644236221909523, 0.0008227736689150333, 0.0031905698124319315, -0.017237817868590355, 0.06583938002586365, 0.03559452295303345, -0.02900359220802784, -0.011433604173362255, -0.02372385375201702, 0.041888248175382614, 0.04958058148622513, -0.023566510528326035, -0.0074213529005646706, 0.030209889635443687, -0.049545615911483765, -0.007141632027924061, -0.04650364816188812, -0.010096186771988869, 0.06188831478357315, -0.023863714188337326, 0.02115391567349434, 0.026993095874786377, -0.00008099349361145869, -0.05216800421476364, 0.08860168606042862, -0.025052528828382492, 0.003522738814353943, -0.0012674867175519466, -0.00095662462990731, 0.04374140128493309, -0.04202811047434807, 0.009475555270910263, -0.04716798663139343, 0.07916110008955002, 0.0030550798401236534, 0.08083942532539368, 0.021800771355628967, -0.033776335418224335, -0.01700180396437645, -0.028881212696433067, -0.05734284594655037, -0.04541973024606705, 0.05000016465783119, -0.044720426201820374, -0.0004791318206116557, -0.018741320818662643, 0.031695909798145294, -0.029073521494865417, 0.045384764671325684, -0.008050725795328617, 0.004711553920060396, 0.020437130704522133, 0.0014510536566376686, -0.006927470210939646, -0.010655629448592663, -0.00315341935493052, 0.0073645347729325294, 0.03734277933835983, -0.01162591204047203, -0.06681840121746063, 0.0351574569940567, -0.030734365805983543, -0.006359286606311798, 0.023951128125190735, 0.020734334364533424, -0.052657514810562134, -0.06937085837125778, 0.03251758962869644, -0.05402115732431412, 0.021800771355628967, 0.04314699396491051, -0.07160862535238266, 0.042937204241752625, 0.051049116998910904, -0.01606648601591587, -0.018496563658118248, 0.011354932561516762, -0.04580434411764145, -0.017823485657572746, 0.023286789655685425, -0.02201056107878685, 0.01157346460968256, 0.009475555270910263, -0.00860142707824707, 0.007683591451495886, 0.057762425392866135, 0.0013647334417328238, -0.03748264163732529, 0.03162597864866257, -0.011896892450749874, -0.0073776463977992535, -0.06776245683431625, -0.022412661463022232, 0.0778324231505394, -0.04370643571019173, 0.01842663437128067, -0.0051879542879760265, 0.021311258897185326, -0.011433604173362255, 0.0349651500582695, -0.04097915440797806, 0.006809462793171406, -0.04503511264920235, -0.03790222108364105, -0.005948446225374937, 0.07370653748512268, -0.004899491555988789, 0.004051586613059044, -0.03979033976793289, 0.021748322993516922, -0.044825322926044464, 0.03099660575389862, -0.017639918252825737, -0.052482690662145615, 0.01690565049648285, -0.0778324231505394, -0.0001353533734800294, -0.042552586644887924, 0.05216800421476364, 0.0001879376795841381, 0.006831316277384758, 0.0024759697262197733, -0.004324751906096935, -0.005152988713234663, -0.09832200407981873, -0.05923096463084221, 0.0577973909676075, -0.025104977190494537, 0.08629398792982101, -0.04524490237236023, 0.0003428223717492074, -0.051154013723134995, -0.00884181261062622, 0.03388122841715813, 0.011704583652317524, 0.012762279249727726, 0.04562951996922493, 0.051993176341056824, -0.01586543582379818, 0.02900359220802784, -0.05765753239393234, -0.033968642354011536, -0.016188863664865494, 0.030279818922281265, -0.02305951528251171, -0.0526924803853035, -0.0026857606135308743, -0.04125887528061867, -0.011215072125196457, -0.046538613736629486, -0.026101484894752502, -0.056748438626527786, -0.0621330700814724, -0.008911742828786373, 0.03881131485104561, -0.01331298053264618, 0.025384698063135147, 0.023496581241488457, 0.028968626633286476, 0.012718573212623596, -0.04097915440797806, -0.00859268568456173, -0.037552569061517715, 0.04650364816188812, 0.002808138495311141, -0.006490406114608049, 0.05706312507390976, 0.04552462324500084, 0.0043597170151770115, -0.019230831414461136, -0.019510554149746895, -0.023951128125190735, 0.004230783320963383, 0.0075918082147836685, -0.03447563573718071, -0.049370791763067245, -0.01506997924298048, -0.013854940421879292, 0.017840968444943428, -0.06216803565621376, -0.02305951528251171, -0.00807257927954197, 0.013811234384775162, 0.05325192213058472, 0.026958130300045013, 0.010043739341199398, -0.009125904180109501, 0.020087478682398796, 0.01737768016755581, -0.05440577119588852, 0.0349651500582695, -0.01840915158390999, -0.026783304288983345, 0.0523078627884388, 0.04356657713651657, 0.06793728470802307, -0.014930118806660175, -0.01756124570965767, -0.009851430542767048, -0.02512245997786522, -0.014676621183753014, -0.01776229590177536, 0.025087494403123856, 0.003433140693232417, -0.0523078627884388, -0.0032080523669719696, -0.0012183169601485133, 0.016503550112247467, 0.017884673550724983, -0.01625879481434822, -0.051154013723134995, -0.011477310210466385, 0.009029749780893326, 0.036993127316236496, 0.04685330018401146, 0.010786748491227627, 0.0033916195388883352, 0.019125936552882195, 0.025944141671061516, -0.043216925114393234, -0.0032910946756601334, 0.041328806430101395, -0.0007845305372029543, 0.05318199098110199, -0.017919639125466347, 0.04391622915863991, 0.016206346452236176, 0.023863714188337326, -0.02701057866215706, -0.014851447194814682, -0.03692319616675377, -0.01354899536818266, 0.012132907286286354, -0.024493087083101273, -0.005712431389838457, 0.0017296822043135762, 0.008059467189013958, -0.030839262530207634, -0.01872383803129196, -0.019912652671337128, -0.0025458999443799257, -0.023793784901499748, 0.01956300064921379, 0.030559541657567024, 0.03484277054667473, -0.10867168754339218, -0.055035144090652466, -0.024160917848348618, 0.016468584537506104, 0.0722379982471466, 0.007067330647259951, 0.04202811047434807, -0.005895998328924179, -0.0557694137096405, 0.004965051077306271, -0.008959819562733173, -0.022989585995674133, 0.032919690012931824, -0.06730791181325912, 0.018566494807600975, -0.05101415142416954, -0.0660841315984726, 0.0424826554954052, 0.028129462152719498, 0.02145111933350563, -0.0023164411541074514, -0.04657357931137085, 0.04069943353533745, -0.012858433648943901, 0.04884631559252739, -0.011958081275224686, -0.02975534275174141, -0.010996539145708084, -0.04157356172800064, -0.027150439098477364, 0.041608527302742004, 0.01180947944521904, -0.0021951557137072086, -0.06143376603722572, -0.01459794957190752, 0.03772739693522453, -0.06083935871720314, 0.029073521494865417, 0.01208920031785965, 0.02872386947274208, -0.00007156928768381476, 0.02466791309416294, -0.05258758366107941, 0.013767527416348457, 0.03468542918562889, -0.031206395477056503, 0.003581742523238063, 0.01690565049648285, 0.009694087319076061, -0.03388122841715813, -0.020944124087691307, 0.01756124570965767, 0.02325182408094406, -0.06227293238043785, 0.04129384085536003, -0.034772839397192, -0.006477294024080038, 0.01682697795331478, -0.029458139091730118, 0.0058348095044493675, -0.08622405678033829, -0.08286740630865097, -0.03947565332055092, -0.03536725044250488, -0.04097915440797806, -0.050699468702077866, 0.026993095874786377, 0.011477310210466385, 0.025384698063135147, 0.016398655250668526, -0.006381139624863863, -0.014868929982185364, -0.0675177052617073, -0.03431829437613487, -0.02844414860010147, 0.0028037680312991142, 0.0032648707274347544, -0.0028103238437324762, -0.006875022314488888, 0.0024563018232584, -0.01251752395182848, 0.007753522135317326, 0.02325182408094406, -0.03437074273824692, -0.049370791763067245, 0.029720377177000046, 0.05678340420126915, -0.02930079586803913, 0.04828687012195587, 0.02192314900457859, 0.019335728138685226, -0.029353242367506027, 0.04395119473338127, -0.03895117715001106, 0.008889889344573021, 0.021136432886123657, -0.004969421774148941, -0.007618031930178404, -0.0029632963705807924, -0.033968642354011536, -0.046923231333494186, -0.00718096736818552, -0.011826962232589722, 0.039265863597393036, 0.002447560429573059, -0.018479080870747566, -0.015166133642196655, -0.030751848593354225, 0.04986030235886574, -0.0340036079287529, 0.055874310433864594, 0.060140058398246765, 0.008719434030354023, 0.041433703154325485, -0.038216907531023026, -0.04041971266269684, -0.001260930672287941, 0.015699353069067, 0.0408392958343029, -0.007119778543710709, -0.08048977702856064, -0.013881164602935314, 0.023863714188337326, -0.056748438626527786, -0.00010243696306133643, 0.017902156338095665, -0.013785010203719139, 0.02020985633134842, 0.018007051199674606, 0.005576941184699535, -0.05849669501185417, 0.0019591411110013723, -0.05167848989367485, 0.018496563658118248, 0.008540237322449684, 0.03125884383916855, -0.023846231400966644, 0.02257000468671322, -0.035944174975156784, 0.02286720834672451, -0.04125887528061867, 0.03089170902967453, 0.10321712493896484, 0.03393367677927017, -0.004235153552144766, 0.02702806144952774, 0.005677466280758381, -0.04919596388936043, -0.030821779742836952, 0.012351439334452152, 0.028653940185904503, 0.023671405389904976, -0.04461552947759628, 0.07377646863460541, 0.03024485521018505, -0.020454611629247665, 0.04744770750403404, 0.0033675809390842915, 0.048147011548280716, 0.020437130704522133, 0.0009751998586580157, 0.009335694834589958, 0.08307719230651855, -0.019038524478673935, 0.00836978293955326, 0.010594440624117851, -0.02930079586803913, -0.019335728138685226, 0.042098041623830795, -0.03548962622880936, 0.03835676982998848, 0.058147042989730835, 0.09706325829029083, 0.04129384085536003, -0.028269322589039803, -0.008859294466674328, 0.05157359689474106, -0.052867304533720016, 0.03543717786669731, -0.03288472443819046, 0.005257884506136179, 0.04783232510089874, 0.0068925051018595695, -0.01718537136912346, 0.005590053275227547, 0.015367182902991772, 0.014160885475575924, -0.029737859964370728, -0.04062950238585472, -0.014982566237449646, 0.011477310210466385, 0.04202811047434807, 0.007233415264636278, 0.04849666357040405, 0.06024495139718056, -0.098252072930336, 0.020559508353471756, 0.023951128125190735, 0.04608406871557236, -0.01993013545870781, -0.0683918297290802, -0.016083968803286552, 0.004099663812667131, 0.029440656304359436, -0.05706312507390976, 0.009082197211682796, 0.023076998069882393, -0.011066470295190811, -0.03223786875605583, -0.0008610168006271124, -0.04013999179005623, 0.06867155432701111, -0.01015737559646368, -0.059650544077157974, 0.04660854488611221, -0.05451066792011261, -0.015847954899072647, 0.051433734595775604, 0.06975547224283218, -0.01559445634484291, -0.051049116998910904, 0.03363647311925888, 0.04685330018401146, -0.024021057412028313, 0.023269306868314743, 0.03248262405395508, 0.024056022986769676, -0.02229028195142746, 0.010253529995679855, 0.025559524074196815, 0.042098041623830795, 0.06024495139718056, -0.051433734595775604, -0.02031475119292736, -0.018269291147589684, -0.008959819562733173, -0.034772839397192, -0.042447689920663834, -0.027814775705337524, 0.006669602356851101, 0.0017340529011562467, 0.01861894130706787, -0.025174908339977264, -0.006000893656164408, 0.03744767606258392, 0.012902140617370605, 0.033409200608730316, -0.04755260422825813, 0.03629382699728012, -0.05888131260871887, 0.007823452353477478, 0.035000115633010864, 0.003843981074169278, 0.022167904302477837, 0.009930102154612541, 0.014423124492168427, 0.03629382699728012, -0.06157362833619118, -0.009003525599837303, 0.025629455223679543, -0.0538463294506073, 0.027902189642190933, -0.03412598744034767, -0.010970315895974636, -0.020646920427680016, -0.014833964407444, 0.03543717786669731, -0.023269306868314743, 0.06066453456878662, -0.033566541969776154, -0.036328788846731186, 0.08076949417591095, 0.03257003799080849, -0.0032932800240814686, 0.0585666261613369, 0.016599705442786217, 0.06979043781757355, 0.04017495736479759, -0.020262304693460464, -0.03344416618347168, 0.027727363631129265, 0.03431829437613487, 0.022622451186180115, 0.012386403977870941, -0.009667864069342613, 0.014860188588500023, 0.03702809289097786, 0.08916112780570984, -0.019248314201831818, -0.012666125781834126, 0.03344416618347168, -0.05094422399997711, 0.02286720834672451, -0.03031478449702263, 0.014388158917427063, -0.01427452266216278, -0.02297210320830345, -0.005056834779679775, 0.018863698467612267, 0.069930300116539, -0.03465046361088753, -0.025944141671061516, 0.01152101717889309, 0.08223803341388702, 0.03615396469831467, -0.018846215680241585, -0.04395119473338127, -0.016188863664865494, -0.0031162688974291086, -0.002322997199371457, -0.0038461664225906134, -0.0006867374177090824, -0.008199327625334263, 0.05877641588449478, -0.0436365082859993, -0.036503616720438004, -0.01937069371342659, -0.020821746438741684, -0.029965132474899292, 0.018951110541820526, -0.029230864718556404, 0.018636424094438553, 0.003575186477974057, 0.04468546062707901, 0.0098252072930336, 0.005611906293779612, 0.0059659285470843315, -0.009615415707230568, -0.07356667518615723, 0.005061205476522446, 0.010961574502289295, 0.0377623625099659, 0.020629437640309334, 0.026328757405281067, 0.06237782537937164, -0.044720426201820374, -0.006118901073932648, 0.031591013073921204, -0.007622402627021074, -0.05055960640311241, -0.005109282676130533, 0.0068487985990941525, -0.020087478682398796, 0.000732082815375179, 0.03013995848596096, 0.04531483352184296, 0.0722379982471466, -0.021748322993516922, -0.03253507241606712, 0.04139873757958412, 0.09517513960599899, 0.08083942532539368, -0.05601416900753975, 0.03181828558444977, -0.01568187028169632, -0.030297301709651947, 0.00376749481074512, 0.049755409359931946, 0.024615464732050896, -0.09993039816617966, 0.024405675008893013, -0.026486100628972054, -0.04381133243441582, 0.028304288163781166, -0.008994785137474537, 0.016022779047489166, 0.04272741451859474, -0.035769347101449966, 0.02089167758822441, -0.028199393302202225, 0.10041990876197815, 0.025349734351038933, -0.0675177052617073, 0.046538613736629486, 0.0546155646443367, -0.035944174975156784, 0.010664370842278004, -0.00006634500459767878, -0.007106666453182697, -0.0011330894194543362, 0.0001703185262158513, 0.009274506010115147, 0.0502798855304718, -0.008321705274283886, 0.0009724682313390076, -0.008780622854828835, -0.013199344277381897, 0.0018903034506365657, 0.010734301060438156, 0.11496540904045105, 0.03615396469831467, -0.02512245997786522, 0.011258778162300587, 0.015000049024820328, -0.021660910919308662, -0.021573496982455254, -0.04342671483755112, -0.0001947668060893193, -0.03559452295303345, -0.006516629830002785, 0.013723821379244328, -0.007386387791484594, -0.03520990535616875, 0.08363664150238037, -0.010795489884912968, 0.011905633844435215, -0.008514014072716236, -0.025017565116286278, 0.009860171936452389, 0.022832242771983147, 0.00025718507822602987, 0.01588291861116886, 0.006691455375403166, -0.011888151057064533, 0.01682697795331478, -0.08384642750024796, 0.0005583497113548219, 0.046923231333494186, 0.02218538708984852 ]
24,511
logorestclient.service.http_service
parse_result
null
@staticmethod def parse_result(r): res = r.text.encode('utf-8') res = Serializer.loads(res) if 'Meta' in res: del res['Meta'] return res
(r)
[ -0.035245224833488464, -0.0045126816257834435, -0.04599178209900856, -0.021964920684695244, -0.0007639449904672801, 0.011052357032895088, -0.006836734712123871, 0.02600143291056156, 0.05340079590678215, 0.008601617068052292, 0.04805372655391693, 0.020916476845741272, 0.013577361591160297, -0.0028679335955530405, 0.0029181716963648796, 0.02622859738767147, -0.036940209567546844, 0.021650386974215508, 0.03826823830604553, 0.013489991426467896, -0.04609662666916847, -0.020374778658151627, 0.007186216302216053, 0.09638703614473343, 0.03728969022631645, -0.015665514394640923, 0.05563747510313988, -0.05294646695256233, 0.004626263398677111, 0.03903709724545479, -0.0016873410204425454, -0.03480837121605873, 0.029251612722873688, 0.06675099581480026, -0.05972641333937645, -0.003896720241755247, -0.031558193266391754, 0.018277889117598534, -0.06077485531568527, 0.036066506057977676, -0.07234270125627518, -0.0033266283571720123, -0.03805854916572571, -0.050185564905405045, 0.027189671993255615, -0.06692573428153992, 0.023834647610783577, 0.034755948930978775, -0.04697033390402794, -0.04316098242998123, 0.05053504556417465, 0.021196061745285988, -0.016914911568164825, 0.023170633241534233, -0.0065396749414503574, -0.04759939759969711, -0.027609050273895264, 0.11036629974842072, -0.005661602597683668, 0.027609050273895264, -0.01813809759914875, 0.05714024603366852, -0.02622859738767147, 0.03714989870786667, 0.0129482951015234, -0.008448719047009945, 0.0013826367212459445, -0.005412596743553877, -0.047704242169857025, -0.022681359201669693, -0.023502640426158905, 0.03010784275829792, -0.015700463205575943, 0.03297359123826027, 0.03059711679816246, -0.017980830743908882, -0.01125330850481987, -0.049661342054605484, -0.005141748581081629, 0.019466126337647438, 0.019256439059972763, 0.039945751428604126, 0.0061552454717457294, -0.03451131284236908, -0.04263675957918167, -0.034825846552848816, 0.030352480709552765, -0.05105926841497421, -0.06605202704668045, 0.05088452622294426, -0.003746006404981017, -0.026822715997695923, -0.07604720443487167, 0.05200286582112312, -0.0420076921582222, 0.009339896962046623, 0.0027019300032407045, -0.01663532666862011, -0.020112669095396996, -0.059516724199056625, -0.013577361591160297, 0.09282232075929642, -0.12798017263412476, -0.0045257871970534325, 0.028552649542689323, -0.012336702086031437, 0.0037962442729622126, -0.052107710391283035, 0.06811396777629852, 0.04459385573863983, -0.022349350154399872, -0.009532111696898937, -0.05762952193617821, 0.024743299931287766, 0.02227945439517498, -0.0529814176261425, 0.017360500991344452, -0.025372367352247238, -0.02381717413663864, -0.026315966621041298, 0.07478906959295273, -0.01663532666862011, 0.002124193124473095, 0.012703657150268555, -0.0049058482982218266, 0.03297359123826027, 0.027277041226625443, -0.025861641392111778, 0.060495272278785706, 0.044698700308799744, 0.014573384076356888, 0.011314468458294868, 0.008470561355352402, -0.05004576966166496, 0.000013566304005507845, 0.013044402003288269, 0.00205975747667253, -0.008147290907800198, -0.028972027823328972, 0.002485688077285886, 0.0008873557089827955, 0.023432744666934013, 0.04885753244161606, -0.04295129328966141, -0.06793922930955887, -0.0552530474960804, 0.02977583557367325, 0.00020409181888680905, -0.024516137316823006, -0.03353276476264, 0.03816339373588562, -0.019238963723182678, 0.05126895755529404, 0.0000948788074310869, -0.010073808021843433, 0.0002278456522617489, 0.030684487894177437, -0.02397444099187851, -0.0460616797208786, -0.04106409102678299, 0.005783921107649803, -0.037010107189416885, 0.031296081840991974, -0.05731498822569847, 0.02355506271123886, 0.007522592321038246, 0.07919254153966904, -0.058992501348257065, -0.04022533819079399, 0.009366108104586601, -0.030212687328457832, 0.030002998188138008, -0.06437451392412186, 0.0014252298278734088, -0.0022093793377280235, 0.04455890879034996, 0.043790049850940704, 0.022908521816134453, 0.006985264364629984, 0.002857012441381812, -0.00512864300981164, -0.05542778596282005, 0.005801395047456026, -0.01725565642118454, 0.049172066152095795, -0.05193297192454338, 0.0065222010016441345, -0.021021321415901184, 0.025949012488126755, -0.000771589926443994, 0.0762568935751915, -0.038512878119945526, -0.025861641392111778, -0.015744147822260857, 0.011130990460515022, -0.015901414677500725, 0.0035516072530299425, 0.00690663093701005, 0.007684227544814348, -0.017762403935194016, -0.04906722158193588, -0.019291386008262634, -0.015927625820040703, 0.0342492014169693, -0.037988655269145966, 0.015403402969241142, -0.011480472050607204, 0.03956132009625435, -0.0460616797208786, -0.0035843709483742714, 0.03313085809350014, 0.0064260936342179775, -0.0023437112104147673, 0.044279322028160095, 0.0185574758797884, 0.02243672125041485, -0.004073645453900099, 0.01300071645528078, 0.059481773525476456, -0.033060964196920395, 0.02563447877764702, -0.025983959436416626, 0.022419247776269913, 0.009103996679186821, -0.03320075571537018, -0.005735867191106081, -0.05448418855667114, -0.03763917088508606, -0.042357172816991806, -0.05091947317123413, 0.021807653829455376, -0.055113255977630615, 0.03477342426776886, -0.006845471449196339, 0.017675034701824188, 0.017823563888669014, 0.04829836264252663, -0.004158831667155027, -0.0036105820909142494, -0.024970462545752525, 0.02442876622080803, -0.0037940600886940956, -0.05046514794230461, -0.00825213547796011, -0.035472385585308075, -0.0032436265610158443, 0.03379487618803978, 0.02006024681031704, -0.004154462832957506, -0.05913229286670685, 0.03624124452471733, -0.0061552454717457294, 0.06290669739246368, 0.03171546012163162, 0.061893198639154434, -0.0750686526298523, 0.001248304732143879, -0.0049058482982218266, 0.043335724622011185, -0.0062076677568256855, 0.027906108647584915, -0.017133336514234543, 0.016941122710704803, 0.03003794699907303, -0.01342009473592043, -0.04340561851859093, -0.021650386974215508, 0.0411689355969429, 0.004025591537356377, 0.00846619252115488, 0.08247766643762589, -0.03659072890877724, -0.0047048963606357574, -0.020671838894486427, -0.05245719477534294, 0.029758362099528313, -0.034231726080179214, 0.0022847361396998167, 0.005814500618726015, 0.01904674991965294, -0.03503553569316864, -0.006185824982821941, 0.02570437453687191, -0.018487578257918358, 0.07562782615423203, -0.020916476845741272, 0.06213783472776413, 0.004918953869491816, -0.05242224410176277, -0.006688205059617758, 0.009532111696898937, -0.03676546737551689, -0.024830671027302742, -0.06248731538653374, -0.013848209753632545, 0.0273294635117054, -0.07807419449090958, -0.02002529799938202, 0.014634544029831886, -0.024883093312382698, -0.023590009659528732, -0.052177608013153076, 0.015516984276473522, -0.000661830825265497, -0.010886353440582752, 0.06112433969974518, 0.02061941660940647, 0.025267522782087326, -0.02231440320611, 0.024673404172062874, -0.014625806361436844, 0.05389006808400154, -0.008142922073602676, -0.008142922073602676, -0.06888283044099808, 0.030736910179257393, 0.01950107514858246, 0.07723544538021088, 0.02416665479540825, 0.011087304912507534, -0.02785368636250496, -0.03613639995455742, 0.05920219048857689, 0.030771858990192413, 0.08953719586133957, -0.00884188525378704, -0.035542283207178116, 0.012127012945711613, 0.04274160414934158, 0.03676546737551689, 0.013245354406535625, -0.0316280871629715, -0.02420160360634327, 0.029705939814448357, -0.020968899130821228, -0.03356771171092987, -0.0018107517389580607, -0.096666619181633, 0.015342243947088718, -0.011323205195367336, 0.02107374183833599, -0.045257873833179474, 0.049102168530225754, 0.006447936408221722, 0.0033157069701701403, 0.02977583557367325, 0.035734497010707855, -0.011917323805391788, 0.015219924971461296, -0.019675815477967262, -0.02179018035531044, -0.057594574987888336, 0.07021085917949677, 0.05888765677809715, 0.026036381721496582, -0.04539766535162926, -0.05123400688171387, 0.026211122050881386, -0.002048836089670658, 0.002566505689173937, -0.001667682663537562, -0.007749755401164293, -0.011454260908067226, -0.005058746784925461, 0.002095797797665, -0.07702575623989105, -0.048752687871456146, 0.041343677788972855, 0.021999869495630264, 0.0002820426016114652, -0.057594574987888336, 0.002139482880011201, -0.021632913500070572, -0.05836343392729759, 0.03659072890877724, 0.0296535175293684, 0.016687748953700066, -0.012703657150268555, -0.04417447745800018, -0.006404250860214233, -0.03526269644498825, 0.03147082030773163, -0.05731498822569847, -0.04815857112407684, 0.057454779744148254, 0.023624958470463753, -0.013166720978915691, 0.0233279000967741, -0.03112133964896202, -0.004272412974387407, -0.02837790921330452, -0.013367672450840473, 0.00027412467170506716, -0.014049162156879902, -0.03858277201652527, -0.010694137774407864, -0.0013455043081194162, -0.04204264283180237, -0.024830671027302742, -0.00786333717405796, 0.023397795855998993, -0.006299406290054321, -0.04759939759969711, 0.004739844705909491, -0.006238247267901897, -0.022856099531054497, 0.0038508507423102856, -0.019553497433662415, -0.02942635305225849, -0.007762860972434282, 0.0615786649286747, -0.05105926841497421, 0.04347551614046097, -0.07807419449090958, -0.036066506057977676, 0.09743548184633255, 0.05395996570587158, 0.046690747141838074, -0.02773136831820011, 0.013079349882900715, 0.0046874224208295345, 0.053051311522722244, -0.007614331319928169, 0.01937875710427761, -0.009366108104586601, -0.007125056814402342, 0.03414435684680939, -0.025582056492567062, 0.027556627988815308, 0.016984807327389717, 0.04644611105322838, -0.09254273772239685, -0.05637138709425926, -0.05958661809563637, 0.01441611722111702, 0.028552649542689323, -0.021440697833895683, -0.002935645869001746, -0.00777159770950675, 0.053051311522722244, 0.01203964278101921, 0.06881293654441833, 0.018994327634572983, -0.032012518495321274, 0.07164373248815536, -0.020374778658151627, -0.04784403741359711, 0.034825846552848816, -0.02149312011897564, -0.049731235951185226, -0.007243006955832243, 0.030247636139392853, 0.019064223393797874, -0.06430462002754211, 0.017168285325169563, -0.026053855195641518, 0.08667144924402237, -0.018417682498693466, -0.02984573133289814, 0.03141839802265167, -0.02186007611453533, -0.0000500332098454237, -0.014713176526129246, -0.025861641392111778, -0.003957879729568958, 0.05906239524483681, -0.05731498822569847, 0.018959378823637962, -0.06863819062709808, -0.005556758027523756, -0.0148267587646842, -0.02724209427833557, 0.006583360489457846, 0.02371232956647873, 0.01715954765677452, 0.05123400688171387, -0.0008038077503442764, -0.02939140610396862, -0.002238866640254855, -0.001941807335242629, -0.044768597930669785, -0.022559039294719696, 0.008422507904469967, -0.024865617975592613, 0.010178652592003345, -0.017343025654554367, 0.07248248904943466, -0.031593140214681625, -0.013690942898392677, 0.002577427076175809, -0.009540848433971405, 0.05385512113571167, -0.01976318657398224, -0.00043712506885640323, 0.027014929801225662, -0.013498728163540363, 0.015062658116221428, 0.039491426199674606, 0.003344102529808879, -0.035769443958997726, 0.019448652863502502, -0.05913229286670685, -0.009540848433971405, -0.05277172848582268, 0.012721131555736065, -0.005722761619836092, 0.024184130132198334, 0.035087957978248596, 0.019990349188447, -0.0016043391078710556, -0.09505900740623474, 0.04351046308875084, 0.01153289433568716, 0.009200104512274265, -0.02231440320611, 0.03585681691765785, -0.030439849942922592, 0.008212818764150143, -0.0391419418156147, 0.0025599529035389423, 0.02547721192240715, 0.04204264283180237, 0.003361576469615102, -0.0258965902030468, -0.014617069624364376, 0.035018060356378555, -0.07443958520889282, 0.0066314139403402805, 0.015779096633195877, -0.018470104783773422, -0.003949142526835203, -0.002629849361255765, -0.038862358778715134, -0.04588693752884865, 0.017535241320729256, 0.01516750268638134, -0.008999152109026909, 0.03781391307711601, 0.02205229178071022, -0.00861035380512476, 0.02724209427833557, -0.008501140400767326, -0.022261980921030045, 0.012930820696055889, -0.011751320213079453, 0.04347551614046097, 0.021161112934350967, 0.08142922073602676, -0.03735958784818649, 0.00265824468806386, -0.09401056170463562, -0.008776357397437096, 0.035280171781778336, 0.016652800142765045, -0.003912010230123997, -0.01001264899969101, -0.028010953217744827, -0.029234139248728752, 0.03033500537276268, -0.030544694513082504, 0.05958661809563637, 0.009130207821726799, -0.02322305552661419, 0.05486861616373062, -0.04990597814321518, 0.08128942549228668, -0.00003126222509308718, 0.025774270296096802, -0.05878281220793724, -0.021650386974215508, -0.005626654252409935, -0.01680132932960987, 0.013070613145828247, 0.019850557669997215, 0.07723544538021088, 0.00593681912869215, 0.05539283901453018, 0.018679793924093246, 0.04246201738715172, 0.010134967043995857, 0.01719449646770954, -0.021877549588680267, 0.03199504315853119, -0.06881293654441833, -0.012930820696055889, -0.050115667283535004, 0.020532045513391495, 0.021947447210550308, 0.07471917569637299, 0.06308143585920334, -0.008898676373064518, -0.024551084265112877, 0.04074955731630325, -0.02081163227558136, 0.06206793710589409, -0.03589176386594772, 0.0286400206387043, -0.009217577986419201, -0.05486861616373062, -0.03952637314796448, 0.020794156938791275, 0.00385740352794528, 0.0037416378036141396, -0.02684018947184086, -0.002345895394682884, 0.0039076413959264755, -0.05280667543411255, 0.04994092509150505, -0.0004829945391975343, 0.026071330532431602, 0.003625872079282999, -0.06692573428153992, -0.013114298693835735, 0.005871291738003492, 0.04728486388921738, 0.00797691848129034, -0.022524092346429825, -0.020200038328766823, -0.001070833532139659, -0.0021220087073743343, 0.08219808340072632, -0.007369693834334612, -0.019448652863502502, 0.05682571604847908, -0.058538176119327545, 0.04053986817598343, 0.02182512916624546, 0.020706787705421448, -0.03823329135775566, -0.044349219650030136, 0.006517832633107901, -0.05665097385644913, 0.03244936838746071, 0.0035516072530299425, -0.05941187962889671, 0.02084657922387123, 0.007907021790742874, 0.02495298907160759, 0.027941057458519936, -0.0011314467992633581, 0.05395996570587158, -0.0003658635832834989, -0.07681606709957123, 0.02341526933014393, -0.07003612071275711, 0.0083526112139225, -0.012424072250723839, -0.03202999383211136, 0.060495272278785706, 0.025651952251791954, -0.022856099531054497, 0.050639890134334564, 0.007077003363519907, 0.016093628481030464, -0.011069830507040024, 0.04053986817598343, 0.05881775915622711, 0.030474798753857613, -0.018382733687758446, 0.007509486749768257, -0.03192514926195145, 0.013638520613312721, -0.012310490943491459, -0.028744865208864212, 0.025721848011016846, 0.013070613145828247, -0.04452396184206009, 0.04735476151108742, -0.0247607734054327, -0.04354541376233101, 0.019029274582862854, 0.0641997754573822, 0.03489574044942856, -0.007356588263064623, -0.056056853383779526, 0.012354175560176373, -0.009348633699119091, -0.045257873833179474, 0.047249916940927505, 0.03735958784818649, 0.026822715997695923, 0.028622545301914215, -0.011751320213079453, 0.04441911727190018, -0.05189802497625351, -0.041902847588062286, -0.011052357032895088, 0.020829105749726295, 0.0019996901974081993, -0.060879699885845184, -0.009872856549918652, -0.035961661487817764, -0.0174216590821743, -0.004875268787145615, -0.013717154040932655, -0.004075829405337572, 0.027801264077425003, -0.023345373570919037, 0.05448418855667114, 0.0532260537147522, 0.030649539083242416, -0.05637138709425926, 0.002848275238648057, -0.05570737272500992, -0.0005406044074334204, -0.008186607621610165, -0.007374062668532133, -0.0326940082013607, -0.04312603548169136, 0.0007104306132532656, -0.007907021790742874, 0.061403922736644745, 0.023799698799848557, 0.004630631767213345, 0.022593988105654716, 0.05986620485782623, -0.033445391803979874, 0.03320075571537018, 0.037918757647275925, 0.038897305727005005, -0.028989501297473907, -0.005443176720291376, -0.01859242282807827, 0.14042171835899353, -0.00017405823746230453, 0.011864901520311832, -0.025459736585617065, 0.033288124948740005, -0.0037023210898041725, -0.004556366708129644, -0.02137080207467079, 0.000018583275959827006, -0.04113398864865303, -0.025651952251791954, -0.023345373570919037, -0.04508313164114952, -0.01637321524322033, -0.005430071149021387, 0.05140874907374382, 0.02254156582057476, -0.013953054323792458, 0.02364243194460869, -0.01407537329941988, -0.0015628382097929716, -0.006115928757935762, -0.04462880641222, 0.07520844787359238, 0.0405748188495636, -0.05231739953160286, 0.02961856871843338, 0.03963121771812439, 0.012773553840816021, -0.01239786110818386, 0.060040947049856186, -0.009540848433971405, 0.02159796468913555, 0.0024922408629208803, 0.07562782615423203, -0.004547629971057177, 0.02566942572593689, 0.027801264077425003, 0.010362130589783192, -0.06594718247652054, 0.041273780167102814, -0.031138813123106956, -0.010117493569850922, 0.06126413121819496, -0.010816456750035286 ]
24,512
logorestclient.service.http_service
post_request
null
def post_request(self, url, request_body, headers, is_json): if is_json is True: request_body = Serializer.dumps(request_body) r = requests.post(url, data=request_body, headers=headers) return self.parse_result(r)
(self, url, request_body, headers, is_json)
[ -0.04123267903923988, -0.010222348384559155, -0.06156294792890549, -0.02643316052854061, -0.07220487296581268, 0.017345570027828217, -0.06476696580648422, 0.03898223862051964, -0.02057819627225399, -0.03348963335156441, 0.049853019416332245, 0.0019333779346197844, 0.009955346584320068, -0.0392492413520813, 0.012863757088780403, -0.03211648017168045, 0.038638949394226074, -0.007228115573525429, 0.038276590406894684, -0.0244306493550539, -0.04336869344115257, -0.017316963523626328, 0.041308965533971786, 0.05813007056713104, 0.014008049853146076, 0.03131547570228577, 0.016220349818468094, -0.052484892308712006, 0.01089938823133707, 0.10275748372077942, 0.004481812939047813, 0.007576171308755875, -0.008405783213675022, 0.02462136372923851, -0.001010195934213698, 0.03734208643436432, -0.05279003828763962, 0.0369606539607048, -0.030953116714954376, -0.013769655488431454, -0.08551681041717529, 0.0034400299191474915, -0.02485022321343422, 0.03829566389322281, 0.027672812342643738, 0.022275565192103386, -0.05980836600065231, 0.026452232152223587, 0.003707031486555934, 0.033775705844163895, 0.026318732649087906, -0.017898645251989365, 0.0066321296617388725, -0.0151904858648777, -0.05851149931550026, -0.011709928512573242, -0.010212812572717667, -0.0220276340842247, -0.027272310107946396, 0.0012599139008671045, -0.003540155477821827, 0.05694763362407684, 0.05679506063461304, -0.03488185629248619, -0.0712512955069542, 0.0012015072861686349, -0.06537725776433945, 0.025765657424926758, 0.035587504506111145, 0.019338546320796013, -0.049395300447940826, 0.001691407640464604, 0.01689738966524601, 0.0392492413520813, 0.07811705023050308, 0.04302540421485901, 0.026547590270638466, -0.02938925102353096, -0.06728441268205643, 0.015209557488560677, 0.012501398101449013, -0.023839430883526802, 0.026414090767502785, -0.02149363048374653, 0.00598369725048542, -0.003497244557365775, -0.024144576862454414, 0.004910923074930906, -0.0059074112214148045, 0.0006061175372451544, -0.015819845721125603, -0.026356875896453857, -0.03011396899819374, 0.009626362472772598, 0.002357719698920846, 0.04283469170331955, 0.015924740582704544, -0.017145318910479546, -0.023095641285181046, -0.032860271632671356, 0.030647972598671913, 0.05637548863887787, -0.04401712492108345, -0.027768170461058617, 0.08650852739810944, 0.004529491998255253, 0.01510466355830431, -0.006021840497851372, 0.01221532467752695, -0.004991977009922266, 0.003323216689750552, -0.025021867826581, -0.05992279574275017, 0.017202533781528473, 0.004126605577766895, 0.013731512241065502, 0.046992287039756775, -0.019815335050225258, -0.03717043995857239, 0.013617083430290222, 0.0038929791189730167, -0.00524467509239912, 0.09139084070920944, 0.004226731136441231, 0.017927251756191254, 0.0019441056065261364, -0.006989721208810806, 0.004214811604470015, 0.05900736153125763, -0.02370593138039112, -0.010327241383492947, -0.0042243474163115025, 0.03879152238368988, 0.06922970712184906, -0.050043735653162, 0.04088939353823662, -0.08391480147838593, 0.03583543375134468, -0.03751372918486595, -0.001673528109677136, 0.050081878900527954, -0.004469893407076597, 0.003854836104437709, -0.04142339527606964, -0.06358452886343002, -0.02229463681578636, -0.025269797071814537, -0.03583543375134468, -0.02929389290511608, -0.014103407971560955, -0.0030991260427981615, 0.009387968108057976, 0.045123275369405746, 0.019643692299723625, 0.01444669533520937, -0.04096568003296852, 0.0202158372849226, -0.05000559240579605, -0.020921485498547554, 0.06121965870261192, 0.005988465156406164, 0.02340078540146351, 0.017669785767793655, -0.014008049853146076, 0.023000283166766167, -0.06392782181501389, 0.04645828530192375, -0.00042463987483642995, -0.008205532096326351, -0.010222348384559155, -0.026547590270638466, 0.025746585801243782, -0.0570620633661747, 0.042491402477025986, -0.013187973760068417, -0.04546656459569931, 0.06530097126960754, 0.020273052155971527, -0.02820681594312191, -0.013922227546572685, 0.012043680995702744, 0.0042505706660449505, 0.06377524882555008, 0.030495399609208107, -0.0012491862289607525, -0.009488093666732311, -0.010031633079051971, -0.00102092360612005, -0.03217369690537453, 0.06411853432655334, 0.031124761328101158, 0.024373434484004974, 0.02847381681203842, -0.03083868883550167, -0.019605549052357674, -0.045123275369405746, -0.025899158790707588, 0.011986466124653816, 0.005297121591866016, 0.025918230414390564, -0.025727514177560806, -0.0026390249840915203, 0.004479429218918085, 0.032364413142204285, 0.004036015830934048, -0.0007795494166202843, -0.033050987869501114, 0.005645177327096462, -0.048670582473278046, -0.0380668044090271, -0.0011055535869672894, 0.003535387571901083, -0.048212867230176926, 0.07075542956590652, -0.01015559770166874, -0.030628900974988937, 0.01122360397130251, -0.0524086058139801, 0.016906924545764923, -0.06892456114292145, 0.02784445509314537, 0.03997395932674408, 0.05408690124750137, -0.031124761328101158, 0.01571495272219181, -0.00849637296050787, -0.006517700385302305, -0.024506935849785805, -0.03966881334781647, -0.0594269335269928, -0.0416903980076313, -0.027768170461058617, 0.03585450351238251, -0.024907438084483147, -0.02340078540146351, -0.07083171606063843, 0.02044469676911831, -0.08254164457321167, -0.025498656556010246, -0.007275794632732868, 0.05423947423696518, -0.03812401741743088, 0.001004236051812768, -0.038638949394226074, -0.0834570825099945, 0.022103920578956604, 0.009345057420432568, -0.009755095466971397, -0.028626389801502228, -0.056528057903051376, 0.03162062168121338, -0.06968742609024048, -0.02534608356654644, -0.009507165290415287, 0.043216120451688766, 0.002182499971240759, 0.0510735958814621, 0.05256117880344391, 0.04947158694267273, -0.013721976429224014, 0.010012561455368996, -0.029961397871375084, -0.006045679561793804, 0.04905201494693756, -0.06259281188249588, -0.03905852511525154, -0.024278076365590096, 0.012463254854083061, -0.015562380664050579, -0.028035171329975128, 0.13365338742733002, -0.006274538114666939, 0.04775514826178551, -0.03491999953985214, -0.027005307376384735, -0.03861987963318825, -0.022180207073688507, 0.04024095833301544, -0.001503076171502471, -0.07514188438653946, 0.048441722989082336, -0.034004565328359604, 0.03373756259679794, -0.03202112391591072, 0.018222860991954803, -0.01903340220451355, 0.022695139050483704, 0.08017677813768387, -0.009974418208003044, -0.023782216012477875, -0.007561867590993643, 0.025327011942863464, 0.03997395932674408, -0.0005483069107867777, -0.0665978342294693, 0.008310426026582718, -0.06594940274953842, 0.027310453355312347, 0.06522468477487564, 0.025021867826581, -0.02935110777616501, -0.005101638380438089, 0.017049960792064667, -0.02084519900381565, -0.020864270627498627, -0.04184297099709511, 0.012167645618319511, 0.003339904360473156, -0.11931158602237701, -0.0035949861630797386, -0.03717043995857239, 0.012005537748336792, -0.031639691442251205, -0.048212867230176926, -0.04851800948381424, -0.02107405662536621, 0.029923254624009132, 0.016201278194785118, 0.008753838948905468, 0.0392492413520813, -0.009473790414631367, -0.03184948116540909, -0.019443439319729805, -0.04455113038420677, 0.07178529351949692, 0.02807331457734108, 0.002200379502028227, 0.00737115228548646, -0.0025841942988336086, 0.01739324815571308, 0.03352777659893036, 0.018003538250923157, -0.012482326477766037, 0.005387711338698864, -0.005583195015788078, -0.0510735958814621, 0.02380128763616085, -0.028683602809906006, 0.00006302549445535988, -0.024964652955532074, -0.07159458100795746, 0.016773423179984093, 0.050120022147893906, -0.009421342983841896, -0.002184883924201131, 0.008610802702605724, -0.005936018191277981, 0.05732906609773636, 0.07895619422197342, -0.014866269193589687, -0.09169598668813705, 0.023419857025146484, 0.06816170364618301, 0.025040939450263977, -0.0054878368973731995, -0.025727514177560806, 0.0020251597743481398, -0.06205880641937256, 0.0007980249356478453, -0.048708725720644, 0.017374178394675255, 0.04847986623644829, 0.0058168210089206696, 0.025422370061278343, 0.0012128311209380627, -0.040126532316207886, 0.015772167593240738, 0.002569890581071377, 0.026852736249566078, -0.008267514407634735, 0.004102766048163176, -0.003041911404579878, -0.004057471174746752, 0.04115639254450798, 0.0021050218492746353, 0.013655226677656174, -0.035682860761880875, -0.047717005014419556, -0.011252211406826973, 0.06022793799638748, -0.012253467924892902, -0.052713751792907715, -0.05454462021589279, -0.035549361258745193, 0.1214476004242897, -0.03665550798177719, 0.015533773228526115, -0.0032874576281756163, 0.010203276760876179, -0.0069658816792070866, 0.0006394927622750401, -0.04954787343740463, -0.024583222344517708, 0.015095127746462822, -0.05458276346325874, -0.017440928146243095, -0.04039353132247925, 0.003215939272195101, -0.0632031038403511, 0.04428412765264511, 0.007175668608397245, 0.015219093300402164, -0.04394083842635155, 0.029694395139813423, -0.0012777935480698943, 0.042453259229660034, -0.0063031455501914024, 0.022199278697371483, 0.004636769182980061, 0.0021181334741413593, 0.03644572198390961, -0.05492604896426201, 0.003029991639778018, -0.015228629112243652, -0.07247187197208405, 0.052713751792907715, -0.015638666227459908, 0.02235185168683529, -0.009135270491242409, -0.0375518724322319, 0.059579506516456604, 0.05751977860927582, -0.0027153112459927797, 0.03034282848238945, -0.021684346720576286, -0.0339282788336277, -0.007299633696675301, -0.020273052155971527, 0.004305401351302862, -0.012863757088780403, 0.02498372457921505, -0.015142806805670261, 0.00502058444544673, -0.022561637684702873, 0.041041966527700424, 0.06671226769685745, -0.023133784532546997, 0.01232975348830223, 0.006651201285421848, 0.013779191300272942, 0.010422599501907825, 0.049853019416332245, -0.05542191118001938, -0.001503076171502471, 0.014065264724195004, -0.016296634450554848, 0.02652851864695549, -0.025555869564414024, -0.015562380664050579, -0.02294306829571724, 0.06038051098585129, -0.008033888414502144, 0.06457625329494476, -0.006984953302890062, -0.06156294792890549, -0.04165225476026535, 0.032002054154872894, -0.04519956186413765, -0.00040884624468162656, 0.06209694966673851, 0.09009397774934769, -0.02761559747159481, 0.013464510440826416, 0.04592427983880043, 0.0002178327995352447, 0.034309711307287216, -0.021360130980610847, 0.003830996574833989, 0.036312222480773926, -0.020730769261717796, 0.002143164863809943, 0.02271421067416668, -0.051035456359386444, 0.03820030391216278, 0.0009303338010795414, 0.026356875896453857, 0.02834031544625759, -0.011090103536844254, -0.05073031038045883, -0.024201789870858192, 0.017212068662047386, -0.03461485356092453, 0.03362313285470009, 0.0010346312774345279, 0.03966881334781647, -0.0689627081155777, 0.038276590406894684, -0.0037761658895760775, 0.0475262887775898, -0.015085591934621334, 0.052751895040273666, -0.016315706074237823, 0.05191274732351303, 0.04420784115791321, -0.015323986299335957, -0.0476025752723217, -0.032593268901109695, -0.04352126643061638, 0.008358104154467583, -0.03284120187163353, -0.00299184862524271, 0.016363386064767838, 0.04706857353448868, 0.014999770559370518, 0.014313194900751114, 0.03657922521233559, 0.03228812664747238, 0.05710020661354065, -0.022885853424668312, 0.007151829544454813, -0.0642329603433609, 0.029332036152482033, -0.02689087763428688, -0.029694395139813423, 0.02465950697660446, 0.02284771017730236, 0.044398557394742966, 0.0030776704661548138, -0.04657271131873131, -0.025288868695497513, 0.05881664529442787, 0.08223649859428406, 0.026223374530673027, -0.0535910427570343, 0.023267284035682678, 0.05408690124750137, -0.017774680629372597, 0.028778960928320885, 0.03682715445756912, 0.004775037989020348, 0.004822717048227787, 0.0028035170398652554, -0.0024459257256239653, -0.0014661250170320272, 0.06865756213665009, -0.029007820412516594, -0.011996001936495304, -0.006980185396969318, 0.01923365332186222, -0.04214811325073242, 0.024907438084483147, 0.01781282387673855, -0.019185975193977356, 0.020921485498547554, -0.08353336900472641, 0.06133408844470978, 0.05751977860927582, 0.038638949394226074, -0.03432878106832504, -0.0524086058139801, -0.027958884835243225, 0.0404316745698452, 0.04306354746222496, 0.04165225476026535, 0.026604805141687393, 0.048670582473278046, -0.004827484954148531, -0.02244720794260502, 0.022676067426800728, -0.041080109775066376, -0.0012766015715897083, -0.01834682561457157, -0.028130529448390007, 0.07872733473777771, -0.045619137585163116, 0.001990592572838068, -0.007237651385366917, 0.01935761794447899, -0.00196079327724874, -0.014170157723128796, 0.029827896505594254, -0.009488093666732311, -0.0059026433154940605, -0.009964882396161556, 0.06213509291410446, -0.001143100787885487, -0.05717649310827255, 0.00770013639703393, -0.00838194414973259, 0.001832060283049941, 0.012501398101449013, 0.014255980029702187, -0.025784729048609734, -0.08193136006593704, -0.022828638553619385, -0.016782959923148155, -0.01362661924213171, -0.014074800536036491, 0.03902038186788559, 0.0018046449404209852, -0.03167783468961716, 0.021684346720576286, 0.025880087167024612, -0.0017891493625938892, -0.02729138173162937, 0.030419114977121353, -0.007199508138000965, -0.03093404695391655, -0.02189413458108902, -0.009221091866493225, 0.03585450351238251, -0.0037213352043181658, -0.028740817680954933, -0.03322263062000275, 0.06488139927387238, 0.03356591984629631, -0.10107918828725815, 0.015590988099575043, 0.01962462067604065, -0.023648716509342194, 0.026814593002200127, 0.013044936582446098, -0.0014530133921653032, -0.0001835636212490499, -0.029866039752960205, -0.02847381681203842, -0.04291097819805145, 0.010479814372956753, -0.0005179116269573569, -0.043864551931619644, 0.04600056633353233, -0.014522981829941273, 0.02847381681203842, 0.01094706729054451, -0.022370921447873116, 0.04615313932299614, -0.02107405662536621, -0.032097410410642624, -0.07212858647108078, -0.026280589401721954, -0.00043030173401348293, 0.043444979935884476, 0.03491999953985214, -0.02294306829571724, 0.030228398740291595, 0.01626802794635296, 0.008172157220542431, -0.0439789816737175, 0.02521258220076561, 0.014132014475762844, 0.004226731136441231, 0.03024747036397457, -0.04504698887467384, -0.03551121801137924, -0.045809850096702576, 0.00933552160859108, 0.020540054887533188, -0.03606429323554039, 0.01349311787635088, -0.012825613841414452, -0.05164574459195137, 0.056070342659950256, 0.059579506516456604, -0.014427623711526394, -0.001354079693555832, 0.01693553291261196, 0.014589731581509113, 0.06747512519359589, -0.00592648284509778, -0.06308867037296295, 0.032040197402238846, -0.00507779885083437, 0.040088389068841934, -0.04256768897175789, -0.04966230317950249, 0.016430135816335678, 0.00830089021474123, -0.044131554663181305, 0.0169259961694479, 0.009898131713271141, -0.014017585664987564, -0.040088389068841934, 0.026242446154356003, 0.018156111240386963, 0.03278398513793945, 0.03343241661787033, -0.0379905179142952, -0.04657271131873131, -0.00973125547170639, 0.0038643719162791967, -0.023553358390927315, 0.017831895500421524, 0.00265094474889338, 0.04909015819430351, -0.028855247423052788, 0.011614571325480938, 0.040126532316207886, 0.006169644650071859, -0.0326695553958416, -0.01685924641788006, 0.019014330580830574, -0.0653391107916832, -0.006369896233081818, 0.007004024926573038, 0.04600056633353233, 0.035721004009246826, -0.05751977860927582, 0.04718300327658653, -0.02416364848613739, 0.08055820316076279, 0.061524804681539536, -0.016420600935816765, 0.02340078540146351, 0.023992003872990608, -0.023362642154097557, 0.061257801949977875, -0.0005435390048660338, 0.059617649763822556, 0.009178181178867817, -0.05690949037671089, -0.05877850204706192, -0.0069754174910485744, 0.07281515747308731, -0.010460742749273777, -0.05927436053752899, 0.09924831986427307, -0.020368410274386406, 0.056985776871442795, -0.01419876515865326, 0.022065777331590652, -0.004226731136441231, -0.020139550790190697, 0.024907438084483147, -0.007518956437706947, -0.03339427709579468, -0.08292307704687119, -0.028817104175686836, 0.006570147350430489, 0.04123267903923988, -0.058664072304964066, 0.0014708929229527712, 0.10046889632940292, -0.00013275582750793546, -0.07872733473777771, -0.06293609738349915, -0.03703694045543671, 0.031410835683345795, 0.012825613841414452, 0.052256032824516296, 0.009473790414631367, -0.007766886614263058, -0.007962370291352272, 0.018528005108237267, -0.050806596875190735, 0.008262746967375278, -0.0032636180985718966, 0.022332780063152313, -0.04039353132247925, -0.010889852419495583, -0.022504422813653946, 0.025727514177560806, 0.000043134470615768805, 0.01910015195608139, -0.02403014712035656, 0.03829566389322281, -0.0013659994583576918, 0.03705601021647453, 0.03179226443171501, 0.014122478663921356, -0.04584799334406853, 0.03205926716327667, -0.017603036016225815, 0.006865756120532751, -0.018756864592432976, -0.0027343828696757555, 0.034767426550388336, 0.010870780795812607, 0.014837661758065224 ]
24,513
logorestclient.service.token_service
retrieve_access_token
null
def retrieve_access_token(self): res = self.connect('POST', '/api/v1/token', self.payloads) if 'error' in res: raise LogoException(res['error'] + ' ' + res['error_description']) update_token(res) return res
(self)
[ -0.005526621825993061, -0.032942287623882294, 0.014188015833497047, 0.04055272042751312, 0.07403860986232758, -0.03216312453150749, -0.029028354212641716, -0.0018618373433128, 0.06012239679694176, 0.013291072100400925, 0.048126909881830215, 0.013336372561752796, 0.03459121659398079, 0.0032616127282381058, 0.03997287526726723, -0.004906009417027235, 0.011470004916191101, 0.019207274541258812, -0.008140441961586475, 0.048416830599308014, -0.02496945858001709, 0.004530017729848623, -0.035062335431575775, -0.042545925825834274, 0.006079284008592367, 0.024498336017131805, 0.03361273184418678, 0.02281316928565502, 0.034120094031095505, -0.043596889823675156, 0.00075141666457057, 0.008276342414319515, 0.015927542001008987, 0.03243492543697357, -0.032380566000938416, 0.0041540260426700115, -0.012720289640128613, 0.0042061214335262775, -0.067261703312397, -0.01656174473464489, -0.06280416250228882, -0.022921890020370483, 0.0632752850651741, -0.0201676394790411, -0.005580981727689505, -0.03370333090424538, -0.00011579857527976856, 0.008348822593688965, -0.015800701454281807, -0.05718694254755974, 0.016770126298069954, -0.005032849498093128, -0.04954027384519577, -0.014215195551514626, -0.011180084198713303, 0.014903758652508259, -0.004287661984562874, -0.0010662529384717345, 0.010165359824895859, 0.03725486621260643, -0.010582121089100838, -0.0041585564613342285, 0.07037835568189621, 0.0030328468419611454, 0.054034050554037094, 0.05262068659067154, -0.010364680550992489, 0.01155154500156641, 0.010645541362464428, 0.04809066653251648, 0.03662066161632538, 0.024353375658392906, -0.025476818904280663, -0.006251424551010132, -0.004067956004291773, -0.03402949497103691, -0.03562406077980995, -0.025567419826984406, -0.026890184730291367, 0.012267287820577621, -0.06240552291274071, 0.0028607062995433807, 0.01884487457573414, 0.010165359824895859, 0.011796166189014912, 0.017558349296450615, -0.04928659275174141, -0.04689474403858185, -0.11676573753356934, -0.005576451774686575, 0.04682226479053497, 0.06606578081846237, -0.09531157463788986, 0.02777806855738163, -0.06099215894937515, -0.044792816042900085, -0.015248039737343788, -0.0008159694261848927, 0.008058901876211166, 0.046133700758218765, 0.003293322864919901, 0.0840771272778511, -0.06838514655828476, 0.05769430473446846, 0.016878845170140266, -0.014450756832957268, 0.026654623448848724, -0.01162402518093586, 0.047474585473537445, 0.016235584393143654, -0.05211332440376282, -0.027669347822666168, 0.04124128073453903, 0.023809773847460747, -0.001024916535243392, -0.0036738442722707987, 0.05196836218237877, 0.02631034329533577, -0.03254364803433418, 0.003911670297384262, 0.0446116141974926, -0.011642145924270153, 0.030006837099790573, 0.023791654035449028, 0.0025005696807056665, 0.06367392838001251, -0.013535693287849426, -0.03794343024492264, -0.01062742155045271, -0.07784382253885269, 0.006541345734149218, 0.02645530365407467, 0.06088344007730484, 0.025802981108427048, -0.04874299094080925, -0.018772393465042114, 0.07516205310821533, -0.018736153841018677, -0.0333409309387207, -0.03859575092792511, -0.023864133283495903, 0.022885650396347046, -0.002779165981337428, -0.0042582168243825436, -0.05863654986023903, -0.05236700549721718, -0.014641017653048038, -0.026111021637916565, 0.0739661306142807, 0.0032774677965790033, 0.06718922406435013, -0.03855951130390167, 0.07045083492994308, -0.011642145924270153, -0.04301704838871956, -0.05178716406226158, -0.002217443659901619, -0.006541345734149218, -0.026908304542303085, 0.030496079474687576, -0.03406573459506035, -0.014088355004787445, 0.0005574753158725798, -0.026400944218039513, 0.04979395493865013, -0.022342046722769737, 0.028339790180325508, 0.006971697323024273, -0.0427633672952652, -0.0815403163433075, -0.0037870947271585464, -0.0036964945029467344, -0.040951360017061234, -0.04602498188614845, -0.04410425201058388, -0.035062335431575775, -0.004434887319803238, 0.02391849458217621, 0.03714614361524582, 0.002351079136133194, -0.03667502477765083, -0.01684260554611683, -0.04903291165828705, -0.010790502652525902, 0.0029535715002566576, 0.03671126440167427, 0.05664334073662758, 0.048561789095401764, 0.04678602144122124, 0.01761270873248577, 0.023682933300733566, -0.011941126547753811, -0.014813157729804516, -0.01737714745104313, -0.0018584397621452808, -0.02698078565299511, -0.029191434383392334, 0.022378288209438324, 0.018790513277053833, 0.01884487457573414, -0.017812030389904976, 0.041748642921447754, 0.0008669321541674435, -0.002385054249316454, 0.04555385932326317, -0.03299665078520775, 0.00942243728786707, -0.028520992025732994, -0.028285430744290352, 0.01817443035542965, -0.04685850441455841, -0.0027769007720053196, -0.06294912844896317, 0.03618578240275383, -0.03140208125114441, -0.028339790180325508, 0.029300155118107796, -0.02765122801065445, 0.058527830988168716, -0.04062519967556, 0.01603626273572445, -0.002013592980802059, -0.01668858528137207, -0.07994575053453445, 0.02217896655201912, 0.013336372561752796, -0.01922539435327053, -0.045046497136354446, -0.10777818411588669, -0.09538405388593674, -0.027161985635757446, -0.058020468801259995, 0.015238979831337929, -0.008706694468855858, -0.040117837488651276, -0.03631262108683586, 0.09226740151643753, -0.043089527636766434, -0.018627433106303215, 0.01075426209717989, 0.005485851317644119, -0.006618355866521597, -0.00148584577254951, 0.041458722203969955, -0.06918243318796158, 0.014043054543435574, -0.05740438401699066, 0.0242990143597126, -0.010310320183634758, -0.05733190476894379, -0.020856201648712158, -0.009784838184714317, 0.015184619463980198, 0.021200483664870262, 0.006867507006973028, -0.04435793310403824, -0.00270442059263587, -0.00581201259046793, 0.03325033187866211, -0.03230808675289154, 0.04870675131678581, 0.023972854018211365, -0.022088365629315376, 0.054034050554037094, 0.01600002311170101, -0.005032849498093128, -0.013599113561213017, 0.03805214911699295, 0.016896966844797134, -0.015103079378604889, 0.04595249891281128, 0.07588686048984528, -0.006849386729300022, -0.05903518944978714, 0.010056639090180397, -0.018663672730326653, 0.036511942744255066, 0.015510780736804008, -0.02574862167239189, -0.003710084594786167, -0.07987327128648758, -0.06845762580633163, 0.01618122309446335, 0.04809066653251648, -0.033322811126708984, -0.0014767857501283288, 0.036276381462812424, -0.0026568553876131773, -0.004382791928946972, 0.014505117200314999, 0.03542473912239075, 0.02190716564655304, 0.027669347822666168, -0.044249214231967926, 0.045046497136354446, 0.01182334590703249, -0.04544513672590256, 0.015456420369446278, -0.01801135018467903, 0.04526393860578537, -0.017993230372667313, 0.02243264764547348, -0.027035145089030266, -0.03125712275505066, 0.050808679312467575, -0.0016477939207106829, 0.01695132628083229, 0.040009114891290665, -0.03029675781726837, 0.019334115087985992, -0.014468876644968987, -0.006582115776836872, 0.0349898561835289, -0.016090622171759605, -0.059904955327510834, -0.05794798582792282, 0.016933206468820572, 0.05631718039512634, 0.08335232734680176, 0.02295812964439392, 0.006133643910288811, 0.02031259983778, 0.02058440074324608, -0.029590075835585594, 0.10183479636907578, 0.00954927783459425, -0.021798444911837578, 0.03997287526726723, -0.020203879103064537, 0.048126909881830215, -0.01654362492263317, -0.014450756832957268, -0.05276564508676529, -0.016480203717947006, 0.003322768025100231, -0.020493799820542336, 0.009322776459157467, -0.014785978011786938, -0.004638737998902798, -0.0345006138086319, -0.052693165838718414, -0.07030587643384933, 0.019207274541258812, 0.03538849949836731, -0.01053682155907154, 0.021472284570336342, 0.03482677787542343, -0.06523225456476212, -0.024498336017131805, -0.08400464802980423, -0.03714614361524582, 0.03286980837583542, 0.0769740641117096, 0.026274103671312332, 0.062006883323192596, -0.012693109922111034, 0.01135222427546978, 0.0317826047539711, -0.04258216544985771, 0.02058440074324608, -0.026129141449928284, -0.014432636089622974, -0.007184607908129692, 0.04077015817165375, -0.06048479676246643, -0.023864133283495903, -0.06613826006650925, -0.012575329281389713, 0.05638965964317322, -0.02312120981514454, -0.016371484845876694, 0.014178955927491188, -0.0446116141974926, 0.02631034329533577, 0.017812030389904976, 0.04566257819533348, -0.03459121659398079, -0.039864156395196915, -0.03714614361524582, 0.02857535146176815, 0.00500566978007555, -0.003981885500252247, 0.01061836164444685, 0.023682933300733566, 0.04910539090633392, -0.023066850379109383, -0.06284040957689285, -0.05356292799115181, 0.01773954927921295, 0.04163992404937744, -0.067261703312397, -0.019950198009610176, -0.04116880148649216, 0.03997287526726723, -0.03884943202137947, 0.013155171647667885, -0.07335004955530167, -0.019424716010689735, -0.04008159786462784, 0.010600241832435131, 0.008928664959967136, 0.08125039935112, 0.014912818558514118, -0.01725030690431595, -0.0024122344329953194, -0.029807517305016518, 0.024498336017131805, -0.05149724334478378, -0.014659137465059757, -0.008154031820595264, -0.060847196727991104, -0.031166521832346916, 0.03953799605369568, 0.0018607047386467457, 0.07958335429430008, 0.02217896655201912, -0.008720284327864647, 0.06831266731023788, 0.03435565531253815, 0.0008063431596383452, 0.004527752753347158, 0.021997766569256783, 0.014550416730344296, -0.024262774735689163, -0.05591854080557823, 0.023954734206199646, 0.0012231047730892897, 0.03395701199769974, -0.020385079085826874, -0.0709581971168518, 0.01801135018467903, 0.03582337871193886, -0.006568525917828083, -0.013001150451600552, -0.02283128909766674, -0.0027836959343403578, -0.03044172003865242, -0.022378288209438324, 0.013907154090702534, -0.007818810641765594, 0.04660482332110405, 0.04221976548433304, 0.03591398149728775, 0.006265014410018921, 0.04515521600842476, 0.008027191273868084, -0.04997515678405762, 0.03953799605369568, 0.06291288882493973, -0.04874299094080925, -0.022668208926916122, 0.05407029017806053, 0.04609746113419533, -0.03230808675289154, -0.02161724492907524, -0.006215184461325407, -0.04664106294512749, -0.010917343199253082, 0.029263915494084358, 0.015383940190076828, 0.032652366906404495, -0.032108765095472336, -0.009069095365703106, -0.026237862184643745, 0.04138624295592308, 0.002035110490396619, 0.0510261207818985, 0.06592081487178802, -0.02163536474108696, -0.02618350274860859, 0.048561789095401764, -0.04055272042751312, -0.052946846932172775, -0.032398685812950134, 0.037327345460653305, -0.011515305377542973, 0.03582337871193886, 0.03671126440167427, -0.021544763818383217, -0.022070245817303658, -0.007628549821674824, 0.0317826047539711, -0.039719194173812866, 0.010391860269010067, -0.014287675730884075, 0.06276792287826538, 0.005576451774686575, -0.030514199286699295, 0.034917376935482025, -0.042400967329740524, 0.005118920002132654, 0.03247116878628731, -0.0510261207818985, 0.05236700549721718, -0.05004763603210449, 0.004197061527520418, -0.01709628663957119, -0.054287731647491455, -0.02442585490643978, 0.00560816191136837, -0.031710125505924225, -0.02964443527162075, 0.005417901091277599, -0.01128880400210619, 0.036910586059093475, 0.009037385694682598, -0.08632402122020721, -0.013898094184696674, 0.06037607789039612, -0.025603659451007843, -0.03257988765835762, 0.014197075739502907, -0.007537949364632368, -0.029408875852823257, 0.008878834545612335, 0.020077038556337357, 0.02991623803973198, 0.05037379637360573, -0.029263915494084358, 0.02174408547580242, -0.02989811636507511, 0.04182112216949463, -0.004473392385989428, -0.007347688544541597, -0.0339207723736763, 0.03296040743589401, 0.02899211272597313, 0.011397524736821651, -0.044031772762537, 0.005558331962674856, -0.02134544402360916, -0.017594588920474052, -0.005576451774686575, 0.005630812142044306, -0.031329602003097534, -0.06331152468919754, -0.01882675290107727, 0.027325067669153214, 0.018491532653570175, -0.01027408055961132, 0.004489247687160969, -0.08958563208580017, -0.04192984476685524, 0.012711229734122753, -0.09002051502466202, 0.0022423588670790195, -0.0012321647955104709, -0.014369215816259384, -0.0005741797504015267, -0.014124595560133457, 0.05954255163669586, -0.021581005305051804, 0.050953637808561325, -0.05465013533830643, -0.029553836211562157, 0.0629853680729866, 0.020765600726008415, -0.047583308070898056, 0.007864111103117466, -0.006994347553700209, 0.05446893349289894, 0.012339767999947071, -0.030912840738892555, -0.016063442453742027, -0.007325038779526949, -0.004960369318723679, -0.01747680827975273, 0.05733190476894379, -0.04029903933405876, 0.028122350573539734, 0.02509629912674427, -0.0241540540009737, 0.052946846932172775, 0.021562883630394936, 0.02071124128997326, 0.03578713908791542, -0.009195935912430286, 0.04809066653251648, 0.02775994874536991, -0.0017406593542546034, 0.09487669169902802, 0.01976899802684784, -0.013970574364066124, -0.021291082724928856, 0.01667046546936035, -0.017014747485518456, -0.03555157780647278, -0.04957651346921921, 0.016362424939870834, -0.0043737320229411125, -0.05947007238864899, 0.007818810641765594, -0.017050987109541893, 0.021798444911837578, -0.013055510818958282, 0.029843756929039955, 0.03350401297211647, -0.009721417911350727, -0.034120094031095505, 0.0012933200923725963, 0.019424716010689735, 0.005490381270647049, -0.02578486129641533, -0.03364897146821022, -0.01602720282971859, -0.0034224283881485462, -0.021562883630394936, -0.038921911269426346, 0.005667052231729031, -0.003843720071017742, 0.019062314182519913, 0.004656858276575804, -0.06595706194639206, -0.01657986454665661, -0.01827409118413925, 0.08820850402116776, -0.026237862184643745, 0.03681998327374458, -0.0033431530464440584, 0.026364702731370926, 0.08291744440793991, 0.01802041009068489, -0.04736586660146713, 0.008588913828134537, -0.0006993215065449476, 0.05276564508676529, 0.046423621475696564, -0.014840338379144669, -0.04392305016517639, 0.07646670192480087, 0.02723446674644947, 0.0029875466134399176, -0.02391849458217621, -0.00974859856069088, -0.021164242178201675, 0.07508957386016846, 0.049757715314626694, 0.002232166239991784, 0.041712403297424316, 0.05164220184087753, -0.030659159645438194, 0.031981926411390305, -0.06537721306085587, 0.014459816738963127, 0.013046450912952423, 0.012221988290548325, -0.07965583354234695, 0.008312582969665527, 0.024208415299654007, -0.010265020653605461, -0.02284940890967846, 0.0001058891648426652, 0.06280416250228882, 0.00948585756123066, -0.006079284008592367, -0.05780302733182907, 0.0062423646450042725, 0.007193668279796839, -0.02257760800421238, -0.0009756525978446007, 0.02658214420080185, -0.024498336017131805, -0.003997740801423788, -0.018736153841018677, -0.030351119115948677, -0.04156744107604027, -0.02629222348332405, 0.04718466475605965, 0.007660259958356619, 0.039610475301742554, 0.05432397127151489, -0.03140208125114441, 0.0595787949860096, 0.009386196732521057, 0.04472033679485321, -0.02989811636507511, 0.02549494057893753, -0.007148367818444967, 0.08487441390752792, 0.06302160769701004, -0.0009688575519248843, 0.04932283237576485, 0.033304691314697266, 0.008285402320325375, -0.06918243318796158, -0.020530041307210922, 0.028955873101949692, 0.03352213278412819, -0.005232170689851046, -0.019152915105223656, -0.002468859776854515, -0.04964899271726608, -0.010772381909191608, 0.009739537723362446, -0.02027636021375656, 0.051207318902015686, 0.0005540777929127216, 0.01922539435327053, 0.007347688544541597, 0.03801590949296951, 0.0017100817058235407, -0.01884487457573414, 0.02549494057893753, 0.0033454180229455233, 0.02364669181406498, 0.015012478455901146, 0.01670670509338379, -0.001446208218112588, -0.05849158763885498, -0.023936614394187927, 0.02614726312458515, -0.010600241832435131, 0.036385104060173035, 0.09168756008148193, 0.04192984476685524, -0.03459121659398079, -0.06595706194639206, 0.036276381462812424, -0.0331416092813015, 0.06146328151226044, -0.07295140624046326, -0.012394128367304802, 0.024190295487642288, 0.07595933973789215, 0.04283584654331207, 0.0424734465777874, 0.00047820000327192247, 0.005599102005362511, 0.01604532264173031, -0.02509629912674427, -0.005626282189041376, 0.0001248586195288226, -0.019696516916155815, 0.007827870547771454, -0.06066599860787392, 0.001904872478917241, -0.019279755651950836, 0.014514177106320858, 0.0322718471288681, 0.057621825486421585, 0.01483127847313881, 0.03134772181510925, -0.023012490943074226, -0.0004691399517469108, -0.007787100505083799, 0.029481355100870132, -0.0331416092813015, -0.05291060730814934, 0.01155154500156641, 0.06740666180849075, 0.012747470289468765, -0.012810890562832355, 0.022487008944153786, 0.005159690044820309, 0.008167621679604053, 0.04287208616733551, -0.038124628365039825, -0.008729344233870506, 0.017531167715787888, -0.027343187481164932, 0.0531642884016037, -0.01964215748012066, -0.06088344007730484, -0.01817443035542965, -0.0510261207818985, 0.047764506191015244, -0.02136356383562088, -0.014496056362986565 ]
24,514
logorestclient.service.logo_service
runQuery
null
def runQuery(self, query): res = self.connect('GET', '/api/v1/queries?tsql=' + query, headers=self.headers) if 'error' in res: raise LogoException(res['error'] + ' ' + res['error_description']) if 'Message' in res and 'ModelState' in res: if '207' in res['ModelState']: raise LogoException(res['ModelState']['207']) if 'LoginError' in res['ModelState']: token_dict = self.retrieve_access_token() self.token_dict = token_dict return self.runQuery(query) if 'count' in res and res['count'] == 0 or len(res['items']) == 0: return return res
(self, query)
[ 0.013495519757270813, -0.04457779601216316, -0.011024118401110172, 0.02090046927332878, 0.01084825024008751, -0.004218507092446089, -0.05372290685772896, -0.0599430650472641, 0.03619169071316719, 0.009848582558333874, 0.03132293373346329, 0.045170191675424576, 0.029268061742186546, -0.004554043989628553, 0.013560313731431961, 0.0026380131021142006, 0.02006741240620613, 0.04861349239945412, 0.03256326541304588, -0.019086256623268127, -0.015170889906585217, 0.07871460914611816, 0.001873220782727003, 0.04202308878302574, 0.031045250594615936, 0.036506399512290955, 0.013236346654593945, -0.042393334209918976, 0.04846539348363876, -0.031878307461738586, -0.008816517889499664, 0.07108750939369202, 0.01250510849058628, 0.040838293731212616, -0.07419759035110474, 0.01812361367046833, 0.031211860477924347, -0.0375986285507679, -0.030323266983032227, -0.009376516565680504, -0.10166995227336884, -0.030675001442432404, 0.016133533790707588, 0.006766272243112326, 0.014106428250670433, -0.039505403488874435, -0.006326603703200817, -0.056907035410404205, -0.04672522842884064, 0.021418815478682518, -0.000237045154790394, 0.026898479089140892, -0.020659808069467545, 0.0018697497434914112, -0.0016487581888213754, -0.06953247636556625, -0.07212420552968979, -0.03359995782375336, -0.007821477949619293, -0.0022399972658604383, -0.04872456565499306, 0.02356625162065029, 0.004604952875524759, 0.07649312913417816, 0.0010777672287076712, 0.01611502096056938, -0.008964616805315018, 0.020604271441698074, -0.030397316440939903, 0.032267067581415176, 0.014689568430185318, 0.03448855131864548, -0.02786112204194069, -0.017984770238399506, 0.010413209907710552, -0.013699156232178211, -0.0463549830019474, 0.0035682599991559982, -0.048909690231084824, 0.008858170360326767, 0.012551388703286648, 0.02497319132089615, 0.0022804930340498686, -0.031878307461738586, -0.0195675790309906, 0.0038066066335886717, -0.02195567451417446, -0.0010054532904177904, -0.07390139251947403, -0.035117972642183304, 0.021474352106451988, -0.010209573432803154, -0.04609581083059311, 0.01890113390982151, 0.004588754381984472, 0.019974850118160248, -0.012079323641955853, -0.01351403258740902, -0.06657049059867859, 0.003204954555258155, 0.0037117307074368, 0.06571892648935318, 0.027898145839571953, -0.01462477445602417, 0.011496183462440968, -0.03398871794342995, -0.01868824101984501, -0.06564487516880035, 0.05361183360219002, 0.037839289754629135, -0.026491206139326096, 0.06968057155609131, 0.009168252348899841, 0.029841946437954903, 0.008275031112134457, -0.03097120113670826, 0.03846871107816696, 0.030101118609309196, -0.025547074154019356, -0.0027907402254641056, 0.00622941367328167, 0.015346757136285305, 0.057240258902311325, -0.015781797468662262, 0.040393996983766556, 0.05027960613369942, -0.0402458980679512, -0.008261146955192089, 0.019104769453406334, -0.02106708101928234, 0.009811557829380035, -0.022436996921896935, 0.019475016742944717, 0.01879931427538395, -0.02436228282749653, 0.04268953204154968, 0.029323598369956017, -0.01493022870272398, -0.003963961731642485, 0.05672191083431244, 0.044281598180532455, 0.01058907713741064, -0.056129515171051025, -0.020048899576067924, -0.005053877830505371, 0.01774410903453827, -0.027620460838079453, -0.016772210597991943, 0.08856319636106491, -0.025398975238204002, 0.03230408951640129, -0.04887266457080841, 0.07427164167165756, -0.007330899592489004, -0.02880525216460228, -0.022973855957388878, 0.03843168541789055, -0.08175063878297806, -0.016772210597991943, 0.018280968070030212, 0.01045023463666439, -0.07571560889482498, 0.0018037994159385562, 0.014458163641393185, -0.019771214574575424, -0.06397876143455505, -0.09026633203029633, 0.002915698802098632, -0.02897186391055584, 0.0075530484318733215, 0.027065088972449303, 0.011857175268232822, -0.03285946324467659, -0.040060777217149734, -0.0582769513130188, -0.003026772988960147, 0.011320316232740879, 0.010246598161756992, 0.0009886764455586672, -0.07027296721935272, -0.051575470715761185, -0.014920973218977451, -0.018660472705960274, 0.030397316440939903, -0.01306973583996296, 0.00961717776954174, -0.008307427167892456, 0.015346757136285305, 0.0217890627682209, 0.04168986529111862, -0.04120854288339615, -0.016105765476822853, 0.013606593944132328, -0.0005999166169203818, -0.006224785465747118, -0.009885607287287712, -0.028546079993247986, 0.0654967799782753, 0.04431862011551857, 0.03139698505401611, -0.015494856052100658, 0.06871792674064636, 0.05139034613966942, -0.02558409981429577, -0.03824656456708908, -0.024454845115542412, -0.0370432585477829, -0.015615186654031277, -0.02358476258814335, -0.022659145295619965, -0.057018108665943146, -0.007016189396381378, -0.03924623131752014, 0.02252955734729767, -0.025213852524757385, 0.0727166011929512, 0.0738273411989212, -0.008275031112134457, 0.04213416203856468, -0.0217890627682209, 0.042504407465457916, -0.08893343806266785, 0.012949405238032341, -0.07930700480937958, -0.01852162927389145, 0.006400653161108494, 0.04131961613893509, 0.01862344704568386, -0.020807906985282898, -0.06682966649532318, -0.0005533464136533439, -0.007719659712165594, 0.06979164481163025, -0.03476623818278313, -0.07201313227415085, -0.0008845443371683359, 0.029619796201586723, -0.0012507422361522913, -0.018753033131361008, -0.042615484446287155, 0.027564924210309982, -0.053685881197452545, -0.0331556610763073, 0.008529575541615486, -0.0771595686674118, -0.03932027891278267, -0.00975602027028799, 0.029508722946047783, -0.042615484446287155, -0.05094604939222336, -0.07612287998199463, -0.05239001661539078, 0.05420422926545143, -0.024343769997358322, 0.07097643613815308, -0.05209381878376007, -0.00875172484666109, 0.015411551110446453, 0.044836968183517456, -0.00305222743190825, 0.004426771309226751, -0.009774533100426197, -0.02301087975502014, 0.04654010757803917, -0.02725021354854107, 0.016772210597991943, -0.032211530953645706, 0.05649976432323456, 0.037950366735458374, -0.021529890596866608, 0.048280268907547, 0.06194240227341652, -0.013199321925640106, -0.019660139456391335, -0.02997153252363205, 0.03820953890681267, -0.004794704727828503, 0.019919313490390778, -0.07082834094762802, -0.021992700174450874, -0.021381791681051254, -0.048243243247270584, 0.008756352588534355, -0.006224785465747118, 0.0037394994869828224, -0.0065857768058776855, 0.043281927704811096, 0.0028347070328891277, 0.005937843583524227, 0.0048965224996209145, 0.03493284806609154, -0.01045023463666439, -0.001568923587910831, -0.02530641481280327, -0.027065088972449303, 0.02558409981429577, -0.0331556610763073, 0.01462477445602417, 0.02423269674181938, 0.003991730511188507, -0.02497319132089615, 0.010107755661010742, 0.01746642403304577, 0.0016880970215424895, 0.01662411168217659, 0.024714017286896706, 0.03324822336435318, 0.053574807941913605, -0.02702806517481804, -0.018549397587776184, -0.07016189396381378, 0.004456853959709406, 0.02480657957494259, -0.024954678490757942, -0.023381127044558525, -0.018873363733291626, 0.006423793267458677, 0.010653871111571789, 0.020252536982297897, 0.02741682529449463, -0.017762621864676476, 0.09530169516801834, 0.027675997465848923, -0.039616476744413376, 0.008145444095134735, -0.041726890951395035, -0.011783125810325146, 0.013227090239524841, -0.00046078453306108713, 0.025436000898480415, 0.06301611661911011, 0.008001972921192646, -0.0057249516248703, 0.009589409455657005, -0.003799664555117488, -0.0768633708357811, 0.04113449156284332, 0.02223335951566696, 0.015550393611192703, 0.023288564756512642, 0.012282959185540676, -0.03548821806907654, 0.02636162005364895, 0.033063098788261414, 0.0291384756565094, -0.004965944215655327, -0.024454845115542412, -0.028268393129110336, 0.012625438161194324, -0.09485740214586258, -0.017596010118722916, 0.004190738312900066, 0.0015874359523877501, 0.03487731143832207, 0.09374665468931198, 0.005761976353824139, -0.019549066200852394, 0.004125945270061493, -0.039727553725242615, 0.0058545381762087345, 0.025732198730111122, 0.025935834273695946, -0.03957945480942726, 0.029156988486647606, -0.03152657300233841, -0.02786112204194069, -0.013930561020970345, -0.03347036987543106, 0.02156691439449787, 0.03169318288564682, -0.05198274552822113, -0.04402242228388786, -0.03276690095663071, 0.04398540034890175, 0.014819154515862465, 0.03476623818278313, -0.04724357649683952, -0.008145444095134735, -0.010524284094572067, 0.07182800769805908, 0.0060859424993395805, -0.01058907713741064, 0.014893203973770142, -0.07134668529033661, 0.046947378665208817, -0.008881310932338238, -0.04479994252324104, 0.02140030264854431, 0.027435336261987686, 0.0004902886576019228, -0.05820289999246597, -0.036117639392614365, -0.03404425457119942, 0.009913375601172447, -0.06849578022956848, 0.06968057155609131, 0.010866763070225716, -0.011718331836163998, -0.08138038963079453, -0.024991704151034355, -0.030452853068709373, -0.03193384408950806, 0.025158315896987915, 0.055129848420619965, 0.05305645987391472, -0.11137043684720993, 0.02391798608005047, -0.005632389336824417, -0.0029712358955293894, -0.005340819712728262, -0.04257845878601074, -0.08345378190279007, -0.05139034613966942, 0.08678600192070007, -0.04446671903133392, 0.009913375601172447, -0.0029318970628082752, 0.05986901372671127, 0.014245270751416683, 0.10033706575632095, 0.0009233045857399702, -0.007418833673000336, 0.040171850472688675, 0.007747428026050329, -0.05923959240317345, 0.022640632465481758, 0.04665118083357811, 0.015698492527008057, 0.028657153248786926, -0.04417052119970322, -0.008710071444511414, 0.04509614035487175, -0.044392671436071396, 0.018484605476260185, -0.02619500830769539, 0.008043626323342323, -0.03541417047381401, 0.025621123611927032, 0.02980492077767849, -0.005970240570604801, 0.018429066985845566, 0.017540473490953445, 0.029508722946047783, -0.02478806860744953, 0.053463734686374664, -0.03417384251952171, -0.012967917136847973, 0.013116016052663326, 0.012977173551917076, -0.037839289754629135, 0.03126739710569382, 0.008145444095134735, 0.023936498910188675, 0.001480989856645465, 0.04220820963382721, 0.0034733840730041265, -0.047021426260471344, 0.04631795734167099, 0.006696850992739201, 0.037783753126859665, -0.010496515780687332, 0.03943135589361191, -0.07475296407938004, -0.009978169575333595, 0.04309680312871933, -0.012643950991332531, 0.0006305777351371944, 0.04465184360742569, 0.001479832804761827, -0.07153180986642838, -0.031211860477924347, 0.029212525114417076, -0.05042770504951477, 0.033174172043800354, 0.05875827372074127, -0.04176391288638115, -0.0034942105412483215, -0.003998672589659691, 0.01198676135390997, -0.003508094698190689, 0.039727553725242615, -0.0391351580619812, 0.014522956684231758, 0.004341151565313339, 0.010552052408456802, 0.0006994205759838223, 0.059683892875909805, 0.0011101638665422797, 0.035895492881536484, -0.10292879492044449, 0.0055074309930205345, 0.034673675894737244, 0.019160306081175804, 0.01329188421368599, -0.025732198730111122, -0.037561606615781784, -0.0446888692677021, -0.030101118609309196, 0.017207249999046326, 0.007076354697346687, 0.035117972642183304, -0.027102114632725716, -0.004699828568845987, 0.0077705685980618, 0.055574145168066025, 0.046577129513025284, 0.03624722734093666, 0.051797620952129364, 0.054241254925727844, -0.00322578102350235, -0.06942140311002731, 0.04102341830730438, -0.012301472015678883, -0.06564487516880035, -0.01097783725708723, -0.015365269966423512, -0.016920309513807297, 0.005470406264066696, -0.012801306322216988, 0.04417052119970322, -0.01014478038996458, 0.09567194432020187, -0.07478998601436615, 0.00627106660977006, -0.029397647827863693, -0.005826769396662712, -0.008288915269076824, -0.022270385175943375, -0.020252536982297897, 0.0035890862345695496, -0.025491537526249886, -0.02830541878938675, 0.010422466322779655, -0.014374857768416405, 0.01583733595907688, -0.009904119186103344, -0.05264918878674507, -0.022381458431482315, -0.025843273848295212, 0.01329188421368599, 0.02167798951268196, 0.04043102264404297, -0.006507099140435457, -0.020770883187651634, -0.030434342101216316, -0.03809846565127373, -0.007150404155254364, 0.07045809179544449, -0.004641977604478598, -0.0015272707678377628, 0.025991372764110565, 0.01628163270652294, 0.023732861503958702, 0.0009649574640206993, -0.0010054532904177904, 0.06294206529855728, -0.02308492921292782, 0.010468747466802597, 0.020085925236344337, -0.004479994531720877, 0.026676328852772713, -0.015689237043261528, -0.052575141191482544, 0.024936167523264885, -0.023603275418281555, -0.037672679871320724, 0.02830541878938675, 0.021640963852405548, -0.01567072421312332, 0.03820953890681267, 0.0035173508804291487, -0.034284915775060654, 0.0045980107970535755, 0.056907035410404205, 0.02708360180258751, -0.030156655237078667, -0.04742870107293129, 0.005734207574278116, 0.051797620952129364, -0.030989712104201317, 0.04435564577579498, 0.00002214614869444631, -0.0031864421907812357, -0.028601616621017456, -0.009140484035015106, 0.010552052408456802, -0.032211530953645706, -0.010394697077572346, 0.02736128680408001, -0.017142457887530327, -0.014106428250670433, -0.07453081756830215, -0.0348217748105526, 0.059683892875909805, 0.018484605476260185, 0.05364885926246643, 0.0024598315358161926, -0.05553711950778961, -0.06135000288486481, -0.011792381294071674, -0.05005745589733124, 0.06420090794563293, 0.02001187577843666, -0.035117972642183304, -0.00789552740752697, 0.02874971553683281, -0.039394330233335495, 0.026232032105326653, -0.03052690252661705, -0.04446671903133392, 0.04143068939447403, 0.008413873612880707, -0.025436000898480415, 0.09211757034063339, -0.0002227269869763404, 0.010459491051733494, -0.03002706915140152, 0.08441641926765442, 0.019752701744437218, 0.02675037831068039, 0.06090570613741875, 0.04457779601216316, -0.013893536292016506, -0.0007023131474852562, -0.019271381199359894, 0.03576590493321419, 0.0363583005964756, -0.005225117318332195, -0.03920920565724373, 0.03924623131752014, -0.002157848561182618, 0.05450042709708214, -0.01493022870272398, -0.0008185940096154809, -0.03965350240468979, -0.01806807704269886, 0.01404163520783186, -0.0037626398261636496, -0.005780488718301058, 0.010505772195756435, -0.02791665866971016, 0.09552384912967682, -0.009904119186103344, 0.018336504697799683, 0.0363583005964756, -0.03708028420805931, -0.07923295348882675, -0.031378474086523056, 0.05664786323904991, 0.02575071156024933, -0.01259766984730959, 0.0073586683720350266, 0.10255854576826096, 0.04624390974640846, -0.0155411371961236, -0.04487399384379387, -0.046392008662223816, -0.01756824180483818, -0.008214865811169147, -0.015346757136285305, 0.026065422222018242, -0.006076686549931765, -0.0231774915009737, -0.054907698184251785, -0.029008889570832253, -0.012745768763124943, -0.0054380097426474094, -0.018549397587776184, 0.0048456136137247086, -0.015430063009262085, 0.05039067938923836, -0.017771877348423004, 0.0455034114420414, 0.04498506709933281, -0.021826088428497314, -0.015078327618539333, 0.06323826313018799, -0.025102777406573296, 0.026602279394865036, -0.005289910826832056, -0.06731098890304565, 0.020141461864113808, 0.02462145686149597, 0.021307742223143578, -0.04346705228090286, -0.007178172469139099, -0.01329188421368599, -0.029342111200094223, -0.008386105298995972, -0.010237342678010464, -0.06894008070230484, -0.05387100577354431, 0.006659826263785362, 0.03235962986946106, -0.002228426979854703, -0.004901150707155466, -0.04557746276259422, -0.026879966259002686, -0.011431390419602394, 0.05020555481314659, 0.07230933010578156, -0.027065088972449303, 0.035784415900707245, 0.03408128023147583, 0.04209713637828827, 0.0195675790309906, 0.03846871107816696, -0.029897483065724373, -0.08138038963079453, -0.02419567108154297, 0.004019498825073242, -0.04046804830431938, 0.03230408951640129, 0.048502419143915176, 0.028675666078925133, 0.00035375988227315247, 0.00992263201624155, 0.04931696131825447, -0.02073385752737522, -0.0027722278609871864, -0.02028956077992916, -0.05831397697329521, -0.020493196323513985, 0.07145775854587555, 0.02339963987469673, 0.03471070155501366, -0.024214183911681175, -0.0308045893907547, 0.03713582083582878, 0.023214515298604965, -0.07634502649307251, 0.010598333552479744, -0.018928902223706245, -0.012782793492078781, -0.0014323948416858912, -0.008825774304568768, -0.004496192559599876, 0.03630276396870613, 0.0599430650472641, 0.04180093854665756, -0.019882289692759514, -0.0006901643937453628, -0.03282243758440018, -0.04343002662062645, -0.00667371042072773, -0.016818491742014885, 0.053019437938928604, -0.03058244101703167, 0.007298503071069717, 0.035728879272937775, 0.03991267830133438, -0.01696659065783024, 0.02095600590109825, 0.04557746276259422, 0.02362178824841976, 0.04209713637828827, 0.019826751202344894, 0.021918650716543198, 0.04950208589434624, 0.0014856179477646947, 0.04927993565797806, 0.03347036987543106, 0.0022885920479893684, 0.002869417890906334, -0.025491537526249886, -0.012014530599117279, 0.0341368168592453, -0.022881293669342995 ]
24,521
schedula.utils.blue
BlueDispatcher
Blueprint object is a blueprint of how to construct or extend a Dispatcher. **------------------------------------------------------------------------** **Example**: Create a BlueDispatcher:: >>> import schedula as sh >>> blue = sh.BlueDispatcher(name='Dispatcher') Add data/function/dispatcher nodes to the dispatcher map as usual:: >>> blue.add_data(data_id='a', default_value=3) <schedula.utils.blue.BlueDispatcher object at ...> >>> @sh.add_function(blue, True, True, outputs=['c']) ... def diff_function(a, b=2): ... return b - a ... >>> blue.add_function(function=max, inputs=['c', 'd'], outputs=['e']) <schedula.utils.blue.BlueDispatcher object at ...> >>> from math import log >>> sub_blue = sh.BlueDispatcher(name='Sub-Dispatcher') >>> sub_blue.add_data(data_id='a', default_value=2).add_function( ... function=log, inputs=['a'], outputs=['b'] ... ) <schedula.utils.blue.BlueDispatcher object at ...> >>> blue.add_dispatcher(sub_blue, ('a',), {'b': 'f'}) <schedula.utils.blue.BlueDispatcher object at ...> You can set the default values as usual:: >>> blue.set_default_value(data_id='c', value=1, initial_dist=6) <schedula.utils.blue.BlueDispatcher object at ...> You can also create a `Blueprint` out of `SubDispatchFunction` and add it to the `Dispatcher` as follow:: >>> func = sh.SubDispatchFunction(sub_blue, 'func', ['a'], ['b']) >>> blue.add_from_lists(fun_list=[ ... dict(function=func, inputs=['a'], outputs=['d']), ... dict(function=func, inputs=['c'], outputs=['g']), ... ]) <schedula.utils.blue.BlueDispatcher object at ...> Finally you can create the dispatcher object using the method `new`: .. dispatcher:: dsp :opt: graph_attr={'ratio': '1'} :code: >>> dsp = blue.register(memo={}); dsp <schedula.dispatcher.Dispatcher object at ...> Or dispatch, calling the Blueprint object: .. dispatcher:: sol :opt: graph_attr={'ratio': '1'} :code: >>> sol = blue({'a': 1}); sol Solution([('a', 1), ('b', 2), ('c', 1), ('d', 0.0), ('f', 0.0), ('e', 1), ('g', 0.0)])
class BlueDispatcher(Blueprint): """ Blueprint object is a blueprint of how to construct or extend a Dispatcher. **------------------------------------------------------------------------** **Example**: Create a BlueDispatcher:: >>> import schedula as sh >>> blue = sh.BlueDispatcher(name='Dispatcher') Add data/function/dispatcher nodes to the dispatcher map as usual:: >>> blue.add_data(data_id='a', default_value=3) <schedula.utils.blue.BlueDispatcher object at ...> >>> @sh.add_function(blue, True, True, outputs=['c']) ... def diff_function(a, b=2): ... return b - a ... >>> blue.add_function(function=max, inputs=['c', 'd'], outputs=['e']) <schedula.utils.blue.BlueDispatcher object at ...> >>> from math import log >>> sub_blue = sh.BlueDispatcher(name='Sub-Dispatcher') >>> sub_blue.add_data(data_id='a', default_value=2).add_function( ... function=log, inputs=['a'], outputs=['b'] ... ) <schedula.utils.blue.BlueDispatcher object at ...> >>> blue.add_dispatcher(sub_blue, ('a',), {'b': 'f'}) <schedula.utils.blue.BlueDispatcher object at ...> You can set the default values as usual:: >>> blue.set_default_value(data_id='c', value=1, initial_dist=6) <schedula.utils.blue.BlueDispatcher object at ...> You can also create a `Blueprint` out of `SubDispatchFunction` and add it to the `Dispatcher` as follow:: >>> func = sh.SubDispatchFunction(sub_blue, 'func', ['a'], ['b']) >>> blue.add_from_lists(fun_list=[ ... dict(function=func, inputs=['a'], outputs=['d']), ... dict(function=func, inputs=['c'], outputs=['g']), ... ]) <schedula.utils.blue.BlueDispatcher object at ...> Finally you can create the dispatcher object using the method `new`: .. dispatcher:: dsp :opt: graph_attr={'ratio': '1'} :code: >>> dsp = blue.register(memo={}); dsp <schedula.dispatcher.Dispatcher object at ...> Or dispatch, calling the Blueprint object: .. dispatcher:: sol :opt: graph_attr={'ratio': '1'} :code: >>> sol = blue({'a': 1}); sol Solution([('a', 1), ('b', 2), ('c', 1), ('d', 0.0), ('f', 0.0), ('e', 1), ('g', 0.0)]) """ def __init__(self, dmap=None, name='', default_values=None, raises=False, description='', executor=False): kwargs = { 'dmap': dmap, 'name': name, 'default_values': default_values, 'raises': raises, 'description': description, 'executor': executor } super(BlueDispatcher, self).__init__(**kwargs) def add_data(self, data_id=None, default_value=EMPTY, initial_dist=0.0, wait_inputs=False, wildcard=None, function=None, callback=None, description=None, filters=None, await_result=None, **kwargs): """ Add a single data node to the dispatcher. :param data_id: Data node id. If None will be assigned automatically ('unknown<%d>') not in dmap. :type data_id: str, optional :param default_value: Data node default value. This will be used as input if it is not specified as inputs in the ArciDispatch algorithm. :type default_value: T, optional :param initial_dist: Initial distance in the ArciDispatch algorithm when the data node default value is used. :type initial_dist: float, int, optional :param wait_inputs: If True ArciDispatch algorithm stops on the node until it gets all input estimations. :type wait_inputs: bool, optional :param wildcard: If True, when the data node is used as input and target in the ArciDispatch algorithm, the input value will be used as input for the connected functions, but not as output. :type wildcard: bool, optional :param function: Data node estimation function. This can be any function that takes only one dictionary (key=function node id, value=estimation of data node) as input and return one value that is the estimation of the data node. :type function: callable, optional :param callback: Callback function to be called after node estimation. This can be any function that takes only one argument that is the data node estimation output. It does not return anything. :type callback: callable, optional :param description: Data node's description. :type description: str, optional :param filters: A list of functions that are invoked after the invocation of the main function. :type filters: list[function], optional :param await_result: If True the Dispatcher waits data results before assigning them to the solution. If a number is defined this is used as `timeout` for `Future.result` method [default: False]. Note this is used when asynchronous or parallel execution is enable. :type await_result: bool|int|float, optional :param kwargs: Set additional node attributes using key=value. :type kwargs: keyword arguments, optional :return: Self. :rtype: BlueDispatcher """ kwargs.update({ 'data_id': data_id, 'filters': filters, 'wait_inputs': wait_inputs, 'wildcard': wildcard, 'function': function, 'callback': callback, 'initial_dist': initial_dist, 'default_value': default_value, 'description': description, 'await_result': await_result }) self.deferred.append(('add_data', kwargs)) return self def add_function(self, function_id=None, function=None, inputs=None, outputs=None, input_domain=None, weight=None, inp_weight=None, out_weight=None, description=None, filters=None, await_domain=None, await_result=None, **kwargs): """ Add a single function node to dispatcher. :param function_id: Function node id. If None will be assigned as <fun.__name__>. :type function_id: str, optional :param function: Data node estimation function. :type function: callable, optional :param inputs: Ordered arguments (i.e., data node ids) needed by the function. :type inputs: list, optional :param outputs: Ordered results (i.e., data node ids) returned by the function. :type outputs: list, optional :param input_domain: A function that checks if input values satisfy the function domain. This can be any function that takes the same inputs of the function and returns True if input values satisfy the domain, otherwise False. In this case the dispatch algorithm doesn't pass on the node. :type input_domain: callable, optional :param weight: Node weight. It is a weight coefficient that is used by the dispatch algorithm to estimate the minimum workflow. :type weight: float, int, optional :param inp_weight: Edge weights from data nodes to the function node. It is a dictionary (key=data node id) with the weight coefficients used by the dispatch algorithm to estimate the minimum workflow. :type inp_weight: dict[str, float | int], optional :param out_weight: Edge weights from the function node to data nodes. It is a dictionary (key=data node id) with the weight coefficients used by the dispatch algorithm to estimate the minimum workflow. :type out_weight: dict[str, float | int], optional :param description: Function node's description.
(dmap=None, name='', default_values=None, raises=False, description='', executor=False)
[ 0.02682754583656788, -0.03309947997331619, -0.055502306669950485, -0.022939806804060936, 0.044290151447057724, 0.026891984045505524, -0.0611298605799675, -0.012210936285555363, -0.02983463741838932, -0.024937374517321587, 0.004124010447412729, 0.00536175025627017, 0.0120498426258564, 0.017827752977609634, -0.010465750470757484, 0.03376533463597298, 0.027192693203687668, 0.05988406762480736, 0.01859026588499546, 0.004972439259290695, -0.02043747715651989, -0.014272942207753658, 0.026011334732174873, 0.03677242621779442, -0.020287122577428818, 0.010089864023029804, -0.008586318232119083, 0.005681253969669342, 0.006513573694974184, -0.00388236902654171, -0.025281041860580444, -0.06826096028089523, -0.01890171319246292, -0.027643756940960884, 0.03129522502422333, 0.01908428780734539, 0.03093007765710354, 0.05030433461070061, -0.07732519507408142, -0.027514880523085594, 0.00811377540230751, -0.013693002983927727, -0.01385409664362669, -0.00475227739661932, 0.057865019887685776, 0.08067595213651657, -0.021801408380270004, 0.06027069315314293, -0.015669090673327446, -0.04755499213933945, 0.020867062732577324, -0.08643238246440887, -0.006105468142777681, 0.08492883294820786, 0.0004319337022025138, 0.06671445816755295, 0.014498474076390266, 0.028051862493157387, 0.035848818719387054, -0.021694011986255646, 0.03082268126308918, 0.02822369523346424, 0.008532620035111904, -0.020963719114661217, -0.020512655377388, 0.018686922267079353, -0.020663009956479073, 0.0036273032892495394, -0.034710418432950974, 0.03874851390719414, -0.026183169335126877, 0.019277600571513176, 0.031896643340587616, -0.021361084654927254, 0.06478133052587509, -0.028051862493157387, 0.05060504376888275, -0.07028000801801682, 0.024185601621866226, -0.03284172713756561, 0.04089643433690071, -0.01926686055958271, -0.03408752381801605, -0.011824310757219791, 0.03120930679142475, -0.030156824737787247, -0.004784496501088142, 0.022145075723528862, -0.06727291643619537, -0.03413048014044762, -0.09064231067895889, -0.039715077728033066, -0.021232208237051964, 0.07633715122938156, -0.019911237061023712, -0.04587961360812187, -0.013435252010822296, -0.049531083554029465, 0.07328709959983826, 0.02336939238011837, 0.018160680308938026, 0.026999380439519882, -0.0034581543877720833, 0.0289754681289196, 0.026763107627630234, -0.07307230681180954, -0.0584234781563282, 0.02583950199186802, -0.026011334732174873, 0.0035064828116446733, -0.052881840616464615, 0.03277729079127312, 0.022896848618984222, 0.015830185264348984, -0.010949032381176949, 0.024271517992019653, -0.015250246040523052, 0.00018827879102900624, 0.042786605656147, 0.01630272902548313, -0.018160680308938026, 0.0034205657429993153, -0.0018780892714858055, 0.0018284185789525509, 0.013123803772032261, 0.03516148403286934, -0.0022298116236925125, 0.04005874693393707, 0.014251462183892727, -0.030672326683998108, -0.004647566471248865, 0.006905569229274988, -0.03464598208665848, 0.0660700798034668, 0.04673878476023674, 0.023798976093530655, 0.0004581114917527884, 0.034109000116586685, -0.025152167305350304, 0.042808085680007935, 0.019664226099848747, -0.03900626301765442, 0.003812561510130763, -0.010906074196100235, -0.01620607078075409, -0.02324051596224308, 0.002699669450521469, -0.011953186243772507, -0.039951350539922714, 0.015572434291243553, -0.008779630996286869, 0.017774054780602455, 0.0240996852517128, 0.02472258172929287, -0.003369552781805396, 0.038855910301208496, -0.02783706970512867, -0.04227110370993614, -0.0057295821607112885, -0.011609518900513649, -0.014938797801733017, -0.03243362158536911, 0.04248589649796486, -0.04884374514222145, 0.014358858577907085, -0.020469697192311287, 0.033378709107637405, -0.013521169312298298, -0.032498061656951904, 0.060098856687545776, -0.025646189227700233, -0.0606573186814785, -0.05606076493859291, 0.056232597678899765, -0.01390779484063387, 0.05790797621011734, 0.010707391425967216, -0.031510017812252045, 0.02162957563996315, -0.012694219127297401, 0.0029829267878085375, 0.00026228142087347806, -0.03357202187180519, 0.010932923294603825, -0.022467264905571938, -0.0001133532277890481, -0.009021272882819176, 0.0019465542864054441, 0.060227733105421066, 0.03892034664750099, -0.013284897431731224, -0.006937788333743811, 0.028674758970737457, -0.010906074196100235, -0.001675379229709506, -0.0123720308765769, -0.0007698957924731076, 0.015089152380824089, 0.07221313565969467, -0.0274504441767931, 0.022059159353375435, -0.008119145408272743, 0.05709176883101463, 0.033378709107637405, -0.009096450172364712, -0.03202551603317261, 0.0283310916274786, 0.03707313537597656, -0.029877595603466034, -0.05850939452648163, -0.04276512563228607, -0.0037803426384925842, 0.009085710160434246, 0.026634233072400093, 0.012790875509381294, -0.06710108369588852, 0.01794588938355446, -0.0017331045819446445, 0.021801408380270004, -0.021382562816143036, 0.03612804785370827, 0.01428368128836155, -0.0010645638685673475, -0.030479013919830322, -0.03690129891037941, -0.006261192727833986, 0.022725015878677368, -0.0387914702296257, 0.04755499213933945, -0.0691201314330101, 0.0007739231805317104, -0.02674162946641445, 0.022338388487696648, 0.008446703664958477, 0.05000362545251846, -0.04403240233659744, 0.004199187736958265, 0.05008954182267189, -0.03711609169840813, 0.007786217145621777, 0.02760079875588417, -0.012758656404912472, 0.034860774874687195, -0.046438075602054596, -0.021983981132507324, -0.0012947942595928907, 0.03715905174612999, 0.013327856548130512, -0.05008954182267189, -0.016313467174768448, -0.04686765745282173, -0.046051446348428726, -0.015121370553970337, 0.011319548822939396, -0.054729051887989044, -0.02300424501299858, -0.019202422350645065, -0.004805975593626499, 0.024765541777014732, -0.016216810792684555, 0.0056490348652005196, -0.026505358517169952, -0.04751203581690788, 0.13196833431720734, 0.010476489551365376, -0.045664820820093155, -0.009794524870812893, -0.02573210559785366, -0.024164123460650444, 0.0004121325328014791, 0.1110905259847641, 0.0321543924510479, 0.03428083658218384, -0.027020858600735664, -0.052366338670253754, -0.05593188852071762, -0.02162957563996315, -0.026204649358987808, -0.0037078503519296646, -0.028438488021492958, 0.025152167305350304, -0.049917709082365036, -0.04983179271221161, -0.007174059748649597, -0.011437684297561646, 0.004293159116059542, -0.013220460154116154, 0.032261788845062256, 0.008156733587384224, -0.04858599603176117, 0.034882254898548126, 0.012726438231766224, 0.0013545333640649915, 0.03316391631960869, 0.049144454300403595, 0.04076756164431572, -0.05451425909996033, 0.021973242983222008, 0.05232337862253189, -0.008591688238084316, 0.0343237929046154, -0.0141655458137393, 0.0967424064874649, -0.018558045849204063, -0.06323482096195221, -0.036729466170072556, 0.07242792844772339, 0.014079628512263298, -0.0486719124019146, 0.003887738799676299, 0.01843991130590439, 0.005589967127889395, -0.009166257455945015, 0.003331964137032628, 0.0023506321012973785, -0.016034238040447235, 0.01734447106719017, -0.020168988034129143, 0.034109000116586685, 0.081105537712574, -0.04871487244963646, 0.01573352888226509, -0.003748123999685049, 0.020963719114661217, 0.03413048014044762, -0.007490877993404865, 0.06826096028089523, 0.0019572938326746225, 0.01714041829109192, 0.0008840041700750589, -0.022725015878677368, -0.022166555747389793, 0.010207999497652054, -0.010385203175246716, 0.016614176332950592, -0.038233011960983276, 0.0006809583865106106, -0.0280948206782341, 0.01900910958647728, -0.023713059723377228, 0.022059159353375435, 0.03840484470129013, -0.02155439741909504, 0.03554810956120491, 0.003275581169873476, -0.040209099650382996, 0.04186300188302994, 0.0036460976116359234, 0.06100098416209221, -0.04807049408555031, 0.02062005177140236, -0.010116713121533394, -0.042314063757658005, 0.04897262156009674, 0.03930697217583656, -0.026440920308232307, -0.018558045849204063, -0.0678313747048378, 0.030865639448165894, -0.00583697808906436, -0.020351560786366463, 0.029362093657255173, -0.028545884415507317, 0.03924253582954407, 0.01285531371831894, -0.0028513665311038494, -0.03924253582954407, 0.018031805753707886, 0.07904352992773056, -0.05309663340449333, 0.048285286873579025, -0.04626623913645744, -0.0026728203520178795, 0.00929513294249773, -0.030758243054151535, -0.01812846213579178, 0.02062005177140236, 0.00006103958003222942, -0.03917809948325157, 0.042314063757658005, 0.008822590112686157, 0.037588633596897125, -0.03221882879734039, -0.019642746075987816, 0.020834842696785927, -0.008473552763462067, -0.018923193216323853, -0.004486472345888615, -0.03692277893424034, -0.024185601621866226, 0.0294480100274086, -0.022918328642845154, 0.0033427036833018064, 0.03956472501158714, -0.08540137857198715, -0.04798457771539688, 0.06250452995300293, 0.031252264976501465, -0.016034238040447235, -0.07762590050697327, 0.01794588938355446, -0.023691579699516296, 0.019610527902841568, 0.02549583464860916, 0.07792661339044571, -0.023648621514439583, 0.07990270107984543, 0.07290047407150269, -0.0006000756984576583, 0.08935355395078659, 0.012812354601919651, -0.034495629370212555, -0.10507634282112122, 0.02534548006951809, -0.03056493028998375, -0.04600849002599716, -0.001572010456584394, 0.02598985657095909, 0.021049635484814644, 0.0034420450683683157, 0.018848014995455742, 0.03593473508954048, 0.06946379691362381, 0.04336654394865036, 0.0126083018258214, 0.01150212250649929, 0.007088142447173595, 0.03428083658218384, -0.023519746959209442, 0.027622276917099953, -0.007968790829181671, -0.0029345983639359474, -0.023197557777166367, -0.0825231671333313, 0.020319342613220215, -0.0486719124019146, -0.0020646899938583374, -0.039951350539922714, 0.0673588365316391, 0.0038098767399787903, 0.022273952141404152, -0.005061041098088026, 0.060958027839660645, -0.06048548221588135, -0.08900988847017288, -0.014101107604801655, -0.012329072691500187, 0.012092800810933113, 0.0374382808804512, -0.019073547795414925, 0.02796594426035881, 0.005772540345788002, 0.03767455369234085, 0.04746907576918602, -0.06576937437057495, -0.03514000400900841, -0.018558045849204063, -0.045278195291757584, -0.013929273933172226, -0.011136976070702076, -0.023068683221936226, -0.05417059361934662, -0.04126158356666565, -0.013284897431731224, -0.03718053176999092, 0.049659956246614456, 0.0735878050327301, -0.030672326683998108, -0.03591325506567955, 0.0029158040415495634, 0.05193675309419632, 0.0019156779162585735, -0.013252679258584976, -0.06972154974937439, 0.04506340250372887, 0.01065906323492527, -0.015948321670293808, -0.041927438229322433, -0.05679105967283249, -0.042700689285993576, 0.04781274497509003, -0.0664137452840805, -0.000280740117887035, 0.0012310277670621872, -0.01216797810047865, 0.0021814831998199224, 0.05558822304010391, -0.021651053801178932, 0.04040241241455078, -0.012715698219835758, -0.09055639058351517, -0.025044770911335945, 0.05391284450888634, -0.026870504021644592, -0.005039562005549669, 0.035848818719387054, 0.04746907576918602, -0.01571204885840416, 0.01994345523416996, -0.014262202195823193, -0.026677191257476807, -0.013156021945178509, -0.04626623913645744, 0.02274649403989315, 0.031273745000362396, -0.061473529785871506, -0.0539558008313179, 0.005144273396581411, -0.03440970927476883, -0.008817220106720924, -0.019771622493863106, -0.006610230077058077, 0.038318928331136703, 0.002059320220723748, -0.03080120123922825, -0.0561896413564682, 0.03741680085659027, 0.059196729212999344, -0.03428083658218384, -0.07298638671636581, 0.014154805801808834, 0.05455721914768219, 0.011201413348317146, -0.004021984059363604, 0.001698200823739171, 0.007512357085943222, -0.006223604083061218, -0.03185368329286575, 0.029748719185590744, 0.021221470087766647, -0.017462605610489845, 0.026419440284371376, 0.028911029919981956, 0.057865019887685776, 0.011512861587107182, 0.042679209262132645, 0.004765701945871115, -0.023648621514439583, -0.12062729895114899, -0.040552768856287, 0.018031805753707886, 0.06508203595876694, -0.024013768881559372, -0.046438075602054596, -0.011319548822939396, -0.029254697263240814, 0.006057139951735735, 0.014734745025634766, 0.027514880523085594, -0.07590756565332413, -0.015013975091278553, 0.009279022924602032, 0.02523808367550373, -0.005396653898060322, 0.02223099209368229, 0.003149390686303377, 0.028116298839449883, 0.01840769127011299, 0.03352906182408333, -0.0011390699073672295, -0.059841107577085495, 0.042442940175533295, -0.05232337862253189, -0.010911444202065468, 0.06087211146950722, 0.019159464165568352, 0.023326432332396507, -0.0014189709909260273, -0.03294912353157997, -0.043796129524707794, -0.00944011751562357, 0.018418431282043457, 0.02425003983080387, -0.002392248250544071, -0.026419440284371376, 0.01372522208839655, 0.01708672009408474, -0.03889886662364006, -0.015626132488250732, -0.09459448605775833, 0.021221470087766647, 0.00014045396528672427, -0.029877595603466034, -0.04734020307660103, -0.0294480100274086, -0.0055738575756549835, -0.03653615340590477, 0.0637073665857315, 0.006594120524823666, -0.0539558008313179, -0.01599127985537052, 0.0026446289848536253, -0.049917709082365036, -0.016914885491132736, -0.04091791436076164, 0.062203820794820786, -0.029147302731871605, 0.057993896305561066, 0.04323767125606537, 0.022553181275725365, -0.05709176883101463, 0.024421872571110725, 0.01882653683423996, -0.0280948206782341, 0.02251022309064865, -0.0030795831698924303, -0.020426739007234573, -0.012447208166122437, -0.0120498426258564, -0.024550748988986015, 0.002827202435582876, 0.015722788870334625, 0.01211427990347147, 0.02968428283929825, -0.004975124262273312, -0.079344242811203, 0.0023680839221924543, 0.031101910397410393, 0.03778195008635521, -0.00047455652384087443, 0.03496817126870155, 0.015572434291243553, 0.015830185264348984, -0.01037446316331625, -0.009461596608161926, 0.002597643295302987, 0.004403240047395229, -0.1031002551317215, -0.0009940852178260684, -0.008280239067971706, 0.01291975099593401, -0.031381141394376755, 0.010003946721553802, -0.03855520114302635, 0.03496817126870155, -0.02077040635049343, 0.03204699605703354, 0.02882511354982853, -0.010986621491611004, -0.03406604379415512, 0.013080844655632973, 0.009875071235001087, -0.025388438254594803, -0.055845972150564194, 0.025259563699364662, 0.013832617551088333, -0.0071472106501460075, -0.04446198418736458, 0.057993896305561066, 0.0011867269640788436, -0.06778842210769653, 0.0292117390781641, -0.035483673214912415, 0.03264841437339783, 0.04104679077863693, 0.025452876463532448, 0.003050049301236868, -0.029662802815437317, 0.01361782569438219, 0.026312043890357018, -0.04656694829463959, 0.0022996189072728157, 0.0874633863568306, -0.02723565138876438, -0.03198255971074104, -0.045793697237968445, 0.061817195266485214, -0.03730940446257591, -0.0062021249905228615, 0.042314063757658005, -0.0003008768835570663, -0.012361290864646435, 0.03380829095840454, -0.01900910958647728, 0.013113063760101795, 0.0002718463947530836, -0.001833788468502462, 0.012318332679569721, 0.047426119446754456, -0.03900626301765442, 0.001613626373000443, 0.04229258373379707, -0.027772631496191025, 0.005442297551780939, 0.00978915486484766, 0.007179429288953543, -0.0009289762820117176, -0.0356769859790802, 0.01952461153268814, -0.0005420147208496928, 0.011630997993052006, -0.010503338649868965, 0.0014820662327110767, -0.024421872571110725, -0.061817195266485214, -0.014949536882340908, -0.06907717138528824, -0.058337561786174774, 0.015379121527075768, -0.02212359756231308, 0.0660700798034668, 0.03619248420000076, 0.026419440284371376, 0.02276797406375408, 0.03593473508954048, 0.0544283427298069, -0.051764920353889465, -0.04471973702311516, 0.017516303807497025, -0.026204649358987808, 0.04575073719024658, 0.011824310757219791, 0.009112559258937836, 0.009354200214147568, 0.006980746518820524, -0.03456006571650505, -0.06422286480665207, 0.05593188852071762, -0.037975262850522995, 0.03247658163309097, -0.042958442121744156, 0.004263625014573336, 0.0973438248038292, -0.0060464004054665565, 0.07878577709197998, -0.013123803772032261, 0.026934942230582237, -0.05210858955979347, 0.03874851390719414, -0.004172338638454676, 0.028288133442401886, 0.04263625293970108, -0.010508708655834198, 0.03009238839149475, 0.0274504441767931, -0.07552094012498856, 0.060958027839660645, -0.0018740619998425245, -0.02152217924594879, 0.031252264976501465, -0.005579227581620216, -0.04038093239068985, -0.015260986052453518, 0.0036326730623841286, 0.04005874693393707, 0.00553089939057827, -0.01602349802851677, 0.027278609573841095, -0.005627555772662163, -0.004513320978730917, 0.03724496811628342, 0.0011894118506461382, -0.03806117922067642, 0.01965348608791828, 0.010181150399148464, -0.04673878476023674, 0.027858547866344452, 0.012146499007940292, 0.0060088117606937885, -0.10198333859443665, 0.021726232022047043, -0.001931787352077663, 0.02721417136490345, -0.007286825682967901, 0.08119145035743713, 0.06448061764240265, -0.01791366934776306, 0.03844780474901199 ]
24,522
schedula.utils.blue
__call__
Calls the registered Blueprint.
def __call__(self, *args, **kwargs): """Calls the registered Blueprint.""" return self.register(memo={})(*args, **kwargs)
(self, *args, **kwargs)
[ 0.006940292194485664, -0.08603096753358841, 0.006851800251752138, 0.00885761622339487, 0.004399310797452927, 0.00873119942843914, -0.023294435814023018, -0.0023703183978796005, 0.010197636671364307, -0.03398088365793228, 0.033626917749643326, 0.02519911900162697, 0.02824998088181019, -0.007231051102280617, 0.011579795740544796, -0.02071552909910679, 0.05730903148651123, 0.030491776764392853, -0.0076018744148314, -0.03209305927157402, -0.001899415161460638, 0.06007334962487221, 0.043959397822618484, 0.0020953614730387926, -0.03391346335411072, 0.05113988369703293, 0.009599262848496437, 0.019029969349503517, 0.0551852248609066, 0.01379630621522665, -0.0005304245860315859, -0.02779488079249859, -0.0018952012760564685, 0.019063681364059448, 0.04291434958577156, -0.044465065002441406, 0.025384530425071716, 0.09776246547698975, -0.05258946493268013, -0.007829424925148487, 0.06695043295621872, -0.026092464104294777, -0.0029750128742307425, -0.01625722460448742, 0.02691838890314102, -0.002814884763211012, 0.006198646035045385, 0.05070163682103157, -0.001552821951918304, -0.02310902439057827, -0.00013412052066996694, -0.06526487320661545, 0.02948044054210186, 0.014192413538694382, 0.017083147540688515, 0.05923056975007057, 0.027171222493052483, 0.04426280036568642, 0.04224012792110443, 0.03416629508137703, -0.011175260879099369, -0.018001778051257133, 0.023058457300066948, -0.009498129598796368, 0.011242683976888657, -0.02471030503511429, -0.03816107288002968, -0.018676001578569412, 0.01795121096074581, 0.038059938699007034, -0.005600272212177515, -0.01695673167705536, 0.004205471370369196, 0.001818297547288239, 0.014335685409605503, -0.037587981671094894, 0.03251444920897484, -0.06293880194425583, 0.03458768501877785, -0.00507774855941534, 0.013813162222504616, -0.05821923539042473, -0.040453433990478516, 0.008992461487650871, 0.002722179051488638, -0.031705379486083984, 0.029783841222524643, -0.05022967979311943, -0.05690449848771095, 0.06802919507026672, -0.08144624531269073, -0.021271763369441032, 0.0011609293287619948, 0.04958916828036308, -0.021423464640975, -0.07241164892911911, -0.007492313161492348, 0.05579202622175217, 0.013358061201870441, 0.03017151914536953, 0.026092464104294777, 0.0031541036441922188, -0.01672075316309929, 0.018288323655724525, 0.04547640308737755, -0.048678964376449585, -0.027474623173475266, -0.02590705268085003, -0.005225235130637884, -0.002848596079275012, -0.01602967269718647, -0.018760280683636665, 0.008263456635177135, -0.0035586380399763584, -0.051038749516010284, 0.015111043117940426, 0.006160720717161894, -0.018541157245635986, 0.03765540570020676, 0.015448154881596565, -0.02878936007618904, -0.0014590626815333962, 0.01768152229487896, -0.020226716995239258, 0.03259872645139694, 0.09176187217235565, 0.00790948886424303, 0.02715436741709709, 0.05016225948929787, 0.002640007995069027, 0.022721344605088234, 0.043015483766794205, -0.04166703671216965, -0.026968955993652344, 0.04510558024048805, 0.010678021237254143, 0.07618729770183563, -0.027306068688631058, -0.0283174030482769, 0.08926724642515182, -0.005014540161937475, 0.02755890227854252, -0.032396458089351654, 0.01037462055683136, 0.02661498822271824, 0.018979402258992195, -0.006223929580301046, 0.07470400631427765, 0.0020690246019512415, 0.026581278070807457, 0.04935318976640701, 0.015136326663196087, 0.05171297490596771, 0.07531081140041351, -0.04476846754550934, 0.08919981867074966, -0.003489108756184578, 0.029295029118657112, -0.013046232052147388, -0.04220641776919365, 0.015127899125218391, 0.05262317508459091, -0.044229086488485336, -0.03627324476838112, -0.0014200840378180146, 0.016333073377609253, 0.008061189204454422, -0.03328980505466461, -0.013745740056037903, 0.04999370127916336, -0.04854412004351616, -0.07645699381828308, -0.008790194056928158, 0.03627324476838112, 0.0481058768928051, 0.05828665569424629, -0.01554928906261921, -0.03443598747253418, 0.009708824567496777, 0.03421686217188835, 0.0020679710432887077, -0.028688227757811546, -0.041633326560258865, -0.021507741883397102, 0.000015481142327189445, 0.04200414940714836, 0.018558012321591377, -0.000056788878282532096, 0.03189079090952873, 0.008023264817893505, 0.015911683440208435, 0.044229086488485336, 0.06256797909736633, -0.020698674023151398, -0.009531840682029724, -0.028587093576788902, -0.02760946936905384, 0.009455990046262741, 0.012574275955557823, -0.0344865508377552, -0.024339482188224792, 0.010104930959641933, -0.02824998088181019, 0.011444950476288795, 0.04439764469861984, 0.010652737691998482, 0.06695043295621872, 0.052892863750457764, -0.05636511743068695, -0.04685856029391289, 0.006750667002052069, 0.0012114960700273514, -0.02189542166888714, 0.046352893114089966, -0.022030266001820564, -0.034065160900354385, 0.05467955768108368, -0.030542341992259026, -0.0023345001973211765, 0.018220901489257812, 0.05966881662607193, -0.0010271379724144936, 0.016602763906121254, -0.043251462280750275, -0.04122878983616829, -0.002172265201807022, 0.014445247128605843, -0.033829182386398315, -0.025772208347916603, -0.05302770808339119, -0.045847225934267044, 0.0013473943108692765, 0.011756779626011848, 0.03765540570020676, 0.00672116968780756, -0.021507741883397102, 0.019754759967327118, 0.02739034593105316, -0.03248073533177376, 0.038599319756031036, 0.05872490257024765, 0.05053308233618736, 0.058792322874069214, -0.0029560504481196404, 0.0018267254345119, 0.0019405006896704435, 0.011385955847799778, 0.002903376705944538, -0.033862896263599396, -0.011428095400333405, -0.06641105562448502, -0.0009360124240629375, 0.034317996352910995, -0.014664369635283947, -0.056466251611709595, -0.05211750790476799, 0.0033753335010260344, 0.011352244764566422, 0.01001222524791956, 0.01330749411135912, -0.0014822391094639897, -0.01377945113927126, 0.032868415117263794, 0.04095910117030144, 0.020563829690217972, -0.0014643300091847777, -0.010315625928342342, -0.009607690386474133, -0.028351115062832832, 0.03367748484015465, 0.0707935094833374, -0.016333073377609253, 0.004034808836877346, 0.018305178731679916, -0.05110616981983185, -0.06465807557106018, 0.01248157024383545, 0.036880046129226685, -0.034857377409935, -0.009725679643452168, 0.06202859804034233, -0.0626353994011879, 0.005204165820032358, -0.02474401704967022, -0.028890494257211685, 0.02550251968204975, 0.03108172118663788, 0.09823442250490189, -0.01239729207009077, -0.03991405665874481, 0.08886270970106125, 0.015852689743041992, 0.021878564730286598, 0.06755723804235458, 0.033104393631219864, 0.02806456945836544, -0.06910794973373413, 0.05673594027757645, 0.008410942740738392, -0.02049640566110611, -0.017850078642368317, -0.04736422747373581, -0.008309809491038322, 0.004213899374008179, 0.008069617673754692, -0.01746239885687828, 0.05892716720700264, 0.025418240576982498, -0.0637141615152359, 0.037149738520383835, -0.00894189439713955, 0.03200877830386162, -0.041869305074214935, 0.019485071301460266, -0.024002371355891228, -0.02971641905605793, -0.012043324299156666, 0.002254436258226633, 0.03352578356862068, 0.04261095076799393, -0.03189079090952873, 0.013155793771147728, -0.010989849455654621, 0.018322033807635307, 0.011133122257888317, 0.01440310850739479, -0.0008912397315725684, 0.006278709974139929, 0.0015127898659557104, -0.0153385940939188, -0.03281784802675247, -0.021372897550463676, 0.05912943556904793, 0.009253722615540028, -0.05134214833378792, -0.03654293715953827, 0.017597243189811707, -0.05633140727877617, -0.045408979058265686, -0.06674816459417343, 0.04180188104510307, 0.009279006160795689, -0.06496147066354752, 0.006645319517701864, -0.04203785955905914, 0.00838144589215517, -0.00359867000952363, -0.0023892810568213463, 0.05892716720700264, -0.02051326259970665, 0.02877250500023365, -0.08212047070264816, 0.0028549167327582836, 0.04746536165475845, 0.060949839651584625, -0.016215084120631218, -0.047263097018003464, -0.03482366353273392, 0.008284525945782661, -0.04786989837884903, -0.02076609618961811, 0.03701489046216011, -0.05869118869304657, 0.016872452571988106, 0.07726605981588364, 0.00037398358108475804, -0.06910794973373413, 0.04294806346297264, 0.04224012792110443, -0.061185818165540695, 0.02309216931462288, 0.014698080718517303, -0.00884076114743948, 0.04031858965754509, -0.006759094540029764, -0.011588223278522491, 0.038767874240875244, 0.022721344605088234, -0.053128842264413834, 0.035497888922691345, -0.0283174030482769, 0.021524598821997643, 0.0076018744148314, -0.03779025003314018, 0.010753870941698551, -0.008579499088227749, -0.034520264714956284, 0.012439430691301823, -0.00191732426173985, 0.0021954416297376156, 0.028115136548876762, -0.05070163682103157, -0.05430873483419418, -0.005195737816393375, -0.0499262809753418, -0.03248073533177376, 0.06728754192590714, -0.014622231014072895, -0.03189079090952873, -0.04790360853075981, 0.05993850529193878, -0.04261095076799393, 0.018456880003213882, 0.0038957500364631414, 0.04217270389199257, -0.010635881684720516, 0.0003818846307694912, 0.05029710382223129, 0.029328739270567894, 0.046083204448223114, -0.02219882234930992, -0.02336185798048973, -0.059769947081804276, -0.059365414083004, -0.02144031971693039, -0.06604023277759552, 0.013383344747126102, -0.001991067547351122, 0.010315625928342342, 0.01673760823905468, 0.0633433386683464, -0.000001551406285216217, 0.03418315201997757, 0.033374082297086716, 0.019990738481283188, 0.020884085446596146, 0.010256631299853325, 0.0256879311054945, 0.012464714236557484, 0.039475809782743454, -0.03275042772293091, -0.021777432411909103, -0.010720159858465195, -0.02595761977136135, 0.002102735685184598, -0.07038897275924683, 0.00317938718944788, -0.027424057945609093, 0.0363069586455822, 0.04416166618466377, 0.029766984283924103, 0.015245888382196426, 0.05966881662607193, -0.05070163682103157, -0.012936671264469624, 0.002220724942162633, -0.009464417584240437, 0.02149088680744171, 0.04874638840556145, -0.02455860562622547, 0.01154608465731144, -0.031755946576595306, 0.02191227674484253, -0.026496998965740204, 0.01977161504328251, -0.06819774955511093, -0.023715825751423836, -0.07922130823135376, 0.025064272806048393, 0.02735663391649723, -0.009852096438407898, -0.013105226680636406, -0.04571238160133362, -0.023479847237467766, -0.060511596500873566, -0.012237164191901684, 0.008638493716716766, 0.02688467875123024, -0.025839630514383316, -0.02824998088181019, 0.024474328383803368, -0.004736423026770353, -0.01344233937561512, -0.07220938056707382, -0.018810845911502838, 0.03509335219860077, -0.014689653180539608, -0.015953823924064636, -0.024373194202780724, -0.0495554581284523, -0.0003436961560510099, -0.007205768022686243, 0.03189079090952873, 0.0158358346670866, -0.016914591193199158, 0.020833518356084824, 0.05346595495939255, -0.027508335188031197, 0.0475664958357811, -0.004154904745519161, -0.05542120337486267, 0.033795472234487534, 0.024103503674268723, 0.0009396995883435011, -0.004622647538781166, -0.00008921614789869636, 0.01935022510588169, -0.008891327306628227, 0.001561249722726643, 0.0064725494012236595, -0.041633326560258865, -0.011352244764566422, 0.031519968062639236, 0.013214788399636745, -0.01473179180175066, -0.06674816459417343, -0.0032236329279839993, -0.012380436062812805, -0.0442965105175972, -0.014209268614649773, -0.04035229980945587, -0.020445840433239937, -0.015970679000020027, 0.034098874777555466, -0.027980292215943336, -0.03586871176958084, -0.01073701586574316, -0.02664870023727417, -0.038767874240875244, 0.00007710119098192081, 0.027508335188031197, 0.056230273097753525, 0.05002741515636444, -0.02216511033475399, 0.02403608150780201, -0.0575450100004673, 0.023058457300066948, -0.01865914650261402, 0.0186085794121027, 0.00122413772623986, 0.018440023064613342, 0.014293546788394451, -0.019249092787504196, -0.022249389439821243, -0.020698674023151398, -0.0009965872159227729, -0.06866970658302307, -0.05596058443188667, -0.002993975533172488, -0.023277580738067627, 0.009110450744628906, 0.020597539842128754, -0.0003023472672794014, -0.020142439752817154, -0.04807216301560402, -0.04342002049088478, -0.008663777261972427, -0.02803085930645466, 0.01248157024383545, -0.08973920345306396, -0.06866970658302307, -0.027660034596920013, 0.0014685438945889473, 0.018996259197592735, -0.028148848563432693, 0.03465510904788971, 0.0056592668406665325, 0.021592020988464355, 0.007441746070981026, 0.016451062634587288, -0.010071219876408577, 0.0878513753414154, -0.0019668375607579947, 0.023749537765979767, 0.004677428398281336, 0.008111756294965744, 0.006034303922206163, 0.023901237174868584, -0.03745313733816147, -0.051948949694633484, -0.013863729313015938, -0.025637364014983177, -0.002739034593105316, 0.018996259197592735, 0.005882603581994772, 0.02806456945836544, 0.04551011323928833, -0.027980292215943336, 0.0036471299827098846, -0.09236867725849152, -0.016872452571988106, -0.020884085446596146, -0.06634363532066345, -0.059028301388025284, -0.04557753726840019, 0.010753870941698551, -0.018692858517169952, 0.07767059653997421, -0.007635585498064756, -0.02283933386206627, -0.06061272695660591, -0.014226124621927738, -0.04766763001680374, -0.05117359384894371, -0.01097299437969923, 0.0035670658107846975, -0.08953693509101868, 0.027643179520964622, -0.00317938718944788, 0.019619915634393692, -0.032396458089351654, 0.03162110224366188, 0.026075609028339386, -0.04166703671216965, -0.003992669750005007, 0.010079647414386272, -0.02336185798048973, 0.008301381953060627, -0.023142734542489052, 0.020833518356084824, -0.04554382339119911, -0.0006141758058220148, 0.01977161504328251, 0.11010076105594635, -0.014183985069394112, -0.037587981671094894, -0.050094835460186005, -0.006329277064651251, 0.017580388113856316, 0.07018670439720154, -0.05444357916712761, 0.0315873883664608, 0.007955841720104218, 0.02047955058515072, -0.0019605166744440794, 0.040217455476522446, 0.009514984674751759, -0.049150921404361725, 0.014478958211839199, 0.02218196541070938, -0.02076609618961811, 0.030828887596726418, 0.02543509751558304, -0.018945692107081413, 0.060511596500873566, -0.04881380870938301, 0.01601281762123108, 0.03988034278154373, -0.05205008387565613, -0.050600502640008926, -0.024845151230692863, -0.0174286887049675, -0.016139235347509384, -0.032868415117263794, 0.0037314079236239195, 0.0419367253780365, -0.0372171588242054, -0.0731532946228981, 0.08717714995145798, -0.028620803728699684, -0.018018633127212524, 0.008663777261972427, -0.039003852754831314, 0.08178336173295975, 0.034520264714956284, 0.013181077316403389, 0.024609172716736794, -0.0395769439637661, 0.01746239885687828, -0.02123805321753025, -0.0315873883664608, -0.029884973540902138, 0.023227013647556305, -0.03741942718625069, -0.02240108884871006, -0.024221492931246758, 0.035025931894779205, -0.03377861902117729, -0.06007334962487221, 0.016088668256998062, 0.0015306989662349224, 0.010534748435020447, 0.0033121248707175255, -0.04001518711447716, -0.027710601687431335, 0.016779746860265732, -0.035733867436647415, 0.053398534655570984, 0.05157812684774399, 0.022097688168287277, -0.02471030503511429, -0.041397348046302795, -0.008284525945782661, 0.07423204928636551, -0.01771523244678974, 0.04035229980945587, -0.02428891509771347, 0.01604652963578701, 0.017260132357478142, -0.04240868240594864, 0.015355449169874191, -0.06472549587488174, 0.029429873451590538, -0.000006378460966516286, -0.06890568137168884, 0.06873712688684464, -0.06863599270582199, -0.08960435539484024, 0.00684758648276329, -0.0029012698214501143, 0.02921075001358986, 0.021794287487864494, 0.04055456817150116, -0.007091992534697056, 0.0038662527222186327, 0.01982218213379383, 0.04099281132221222, -0.058859746903181076, -0.0034933225251734257, 0.01840631291270256, 0.04544268921017647, 0.015953823924064636, 0.03586871176958084, 0.018777135759592056, 0.015144754201173782, -0.0684337243437767, -0.041835591197013855, 0.026075609028339386, -0.022114543244242668, 0.023968659341335297, -0.01977161504328251, -0.016914591193199158, 0.06202859804034233, -0.059095725417137146, 0.08400829881429672, -0.02880621701478958, 0.0007506008259952068, 0.0002960264391731471, 0.039745498448610306, -0.007235265336930752, 0.03209305927157402, -0.037149738520383835, -0.04321775212883949, 0.05380306765437126, 0.040183745324611664, -0.030019819736480713, -0.0004577348299790174, 0.014521096833050251, -0.0055876304395496845, -0.028115136548876762, -0.05124101787805557, 0.00016460544429719448, -0.014259835705161095, 0.06931021809577942, 0.0920315608382225, 0.03870045021176338, -0.0028443820774555206, 0.0283174030482769, 0.025300251320004463, -0.004706925712525845, 0.015684133395552635, 0.07308587431907654, -0.011183689348399639, 0.024474328383803368, 0.03954323008656502, -0.04621804878115654, 0.011655645444989204, -0.007530238013714552, -0.03681262582540512, -0.04854412004351616, 0.012279302813112736, -0.013315921649336815, -0.026530710980296135, -0.041127659380435944, 0.12648440897464752, 0.046757426112890244, 0.043959397822618484, 0.006957147736102343 ]
24,523
schedula.utils.blue
__getstate__
null
def __getstate__(self): d, keys = self.__dict__, ('args', 'kwargs', 'deferred', 'cls') return {k: d[k] for k in keys if k in d}
(self)
[ 0.019958272576332092, -0.033556219190359116, 0.0003632515436038375, -0.03984344005584717, -0.002933427458629012, 0.01145955827087164, 0.018413882702589035, -0.022608410567045212, 0.0878748893737793, -0.0441933199763298, -0.023558804765343666, 0.043645016849040985, -0.009485662914812565, 0.00986033771187067, -0.04050140455365181, -0.017207613214850426, -0.017536595463752747, 0.038710277527570724, -0.03797920420765877, -0.04320637136697769, 0.016403434798121452, 0.019647566601634026, 0.028146281838417053, 0.012080969288945198, -0.010189319960772991, 0.011030052788555622, -0.0016826085047796369, -0.02176767773926258, 0.10476265847682953, -0.007991533726453781, -0.058522336184978485, 0.012684104032814503, -0.0014335870509967208, 0.008695190772414207, -0.0029517044313251972, -0.00835707038640976, 0.0008270255057141185, 0.048433538526296616, 0.00035097182262688875, -0.0297546423971653, -0.021749399602413177, -0.048945289105176926, -0.027543148025870323, -0.002885450841858983, 0.02984602563083172, -0.023924339562654495, 0.03754056245088577, 0.004169396590441465, 0.04053795710206032, -0.052198559045791626, 0.07266858220100403, -0.01725330576300621, 0.010244150646030903, 0.026117557659745216, -0.0069863093085587025, -0.013241546228528023, -0.000123725418234244, 0.041269030421972275, -0.021091435104608536, 0.07102367281913757, -0.025148887187242508, 0.0234856978058815, 0.024564027786254883, -0.03050399012863636, -0.025971341878175735, -0.06565029174089432, -0.03319068253040314, -0.0040094745345413685, -0.04634998366236687, 0.046423088759183884, -0.025642359629273415, -0.04459540918469429, 0.023796401917934418, 0.0031436108984053135, -0.016695862635970116, -0.05384347215294838, -0.046715520322322845, -0.012099246494472027, 0.034342121332883835, -0.01166974101215601, -0.04207320883870125, -0.022754624485969543, -0.09752504527568817, 0.021091435104608536, -0.02483818121254444, -0.0087180370464921, -0.0003038519062101841, -0.007260461337864399, -0.04956670105457306, -0.02595306560397148, -0.04499749839305878, 0.08546234667301178, 0.005624687299132347, 0.06166594848036766, -0.013003948144614697, -0.017180198803544044, -0.03165543079376221, 0.025642359629273415, -0.025514421984553337, -0.010235011577606201, -0.022754624485969543, -0.020524853840470314, -0.02505750209093094, 0.005076383240520954, 0.00495301466435194, -0.035603221505880356, 0.007159939035773277, -0.06656412780284882, 0.030942633748054504, -0.019318584352731705, -0.0037673069164156914, -0.01975722797214985, -0.02107315883040428, 0.04119592159986496, 0.04017242044210434, -0.049310825765132904, -0.04942048713564873, -0.016787247732281685, -0.016659310087561607, -0.0007499202620238066, -0.04203665629029274, 0.052893079817295074, -0.027122780680656433, 0.052198559045791626, 0.03591392561793327, 0.0451071597635746, 0.0016768970526754856, 0.0002722958743106574, 0.07683569937944412, -0.008941927924752235, 0.016997430473566055, 0.0030202423222362995, -0.03562149778008461, 0.052893079817295074, 0.0010920391650870442, 0.03158232197165489, 0.07168163359165192, 0.000802466063760221, -0.009334878996014595, 0.056109797209501266, 0.04079383239150047, 0.009924306534230709, -0.020378639921545982, 0.012574443593621254, 0.017838163301348686, -0.03130817040801048, 0.05618290603160858, 0.03797920420765877, -0.010426918044686317, -0.0032875407487154007, 0.05556149408221245, -0.010984361171722412, 0.023211544379591942, 0.04083038493990898, -0.08122213184833527, -0.01285773329436779, -0.032806869596242905, -0.024947840720415115, -0.06203148141503334, -0.0286032035946846, -0.04868941381573677, -0.002019587205722928, -0.029882580041885376, -0.07705501466989517, 0.0320940725505352, 0.041269030421972275, 0.033263787627220154, -0.06868424266576767, 0.013533975929021835, -0.0015752322506159544, -0.07771298289299011, -0.0038015758618712425, -0.017426935955882072, 0.021000051870942116, -0.0348721481859684, 0.05706018954515457, -0.033775538206100464, -0.0012428228510543704, 0.02827421948313713, 0.002752944128587842, 0.026665860787034035, -0.029443936422467232, -0.11609427630901337, 0.033501386642456055, 0.04971291497349739, 0.008681483566761017, 0.01930030807852745, -0.01616583578288555, 0.02538648433983326, 0.02143869362771511, -0.0332455113530159, -0.00554701080545783, 0.03163715451955795, 0.006524819880723953, -0.026300325989723206, 0.021639740094542503, -0.06784350425004959, -0.003301248187199235, -0.013561390340328217, 0.06692966818809509, -0.03309929743409157, -0.042804282158613205, -0.04200010374188423, 0.02315671369433403, -0.03370243310928345, 0.012236322276294231, 0.013150162994861603, -0.03311757370829582, 0.021548354998230934, 0.012364259921014309, -0.03291653096675873, -0.032624099403619766, -0.015535285696387291, 0.022078383713960648, 0.026702415198087692, -0.0697442963719368, 0.0678800642490387, 0.01492301281541586, 0.005295704584568739, 0.021913891658186913, 0.05556149408221245, 0.004301903303712606, 0.01902615651488304, 0.0020938366651535034, -0.027926960960030556, -0.022809455171227455, 0.0003001394507009536, 0.006575081497430801, -0.053551044315099716, -0.07690880447626114, 0.035877373069524765, -0.0004386433574836701, 0.017902132123708725, 0.007370122242718935, 0.05040743201971054, 0.015133196488022804, 0.012638412415981293, -0.040903493762016296, 0.002242335816845298, 0.028566649183630943, 0.044522300362586975, 0.010865561664104462, 0.03878338262438774, 0.007201062049716711, -0.01873372681438923, -0.013826404698193073, 0.06488266587257385, 0.06561373919248581, -0.0008378773927688599, 0.0016723278677091002, 0.01446609292179346, -0.019976550713181496, -0.020671067759394646, 0.0005605839542113245, -0.011779402382671833, -0.05245443433523178, 0.0017968385946005583, 0.023047054186463356, 0.02153007872402668, -0.03914891928434372, 0.017755918204784393, 0.018240252509713173, -0.03207579627633095, 0.05585392192006111, 0.030540544539690018, 0.04660585895180702, 0.06349362432956696, -0.017664533108472824, -0.11382795125246048, 0.0073655531741678715, 0.13751469552516937, -0.017838163301348686, -0.03342828154563904, 0.017838163301348686, -0.02757970243692398, -0.02706795185804367, 0.00957704707980156, -0.014557477086782455, -0.0506998635828495, 0.004994137678295374, 0.055598046630620956, 0.011468696407973766, 0.01620239019393921, -0.00414655078202486, -0.02366846427321434, -0.007004586048424244, -0.023449143394827843, 0.003314955858513713, 0.03565805032849312, -0.00038010047865100205, 0.0418538860976696, 0.002609014278277755, 0.004884476773440838, -0.03849095478653908, 0.06521164625883102, -0.0012188345426693559, -0.10271565616130829, -0.01348828338086605, 0.028895631432533264, 0.03441522642970085, 0.060240354388952255, -0.011432142928242683, -0.05556149408221245, 0.03408624604344368, 0.0029357122257351875, 0.019373415037989616, 0.06097142770886421, 0.02227942831814289, -0.024947840720415115, -0.004966722335666418, 0.011806817725300789, 0.010938668623566628, 0.0511385053396225, 0.014438677579164505, -0.033318620175123215, -0.09072607010602951, -0.03171025961637497, -0.013497421517968178, 0.007589444052428007, 0.102277010679245, -0.07310722768306732, -0.0047519695945084095, -0.0024056846741586924, 0.040720727294683456, -0.004050597548484802, 0.010171042755246162, -0.02505750209093094, 0.01178854051977396, 0.02399744838476181, -0.01843215897679329, -0.0916033536195755, -0.019318584352731705, 0.006872079335153103, 0.03980688378214836, -0.024253323674201965, 0.041415244340896606, 0.02213321253657341, 0.05143093317747116, 0.031966134905815125, -0.06831870228052139, 0.04967636242508888, -0.025971341878175735, -0.05815679952502251, 0.011386450380086899, -0.03158232197165489, -0.0042881956323981285, -0.0027209597174078226, 0.01689690724015236, 0.08984878659248352, -0.06550407409667969, -0.04784867912530899, -0.04916461184620857, 0.013735020533204079, 0.05691397562623024, 0.07398451119661331, -0.014191940426826477, 0.002219489775598049, -0.04009931534528732, -0.0209269430488348, 0.020305532962083817, 0.11960342526435852, 0.0074752140790224075, -0.06912288069725037, -0.005738917272537947, 0.031088849529623985, -0.0073518455028533936, 0.0015158327296376228, -0.018953049555420876, 0.031783368438482285, -0.09503939747810364, 0.008590099401772022, -0.03616980090737343, -0.04755625128746033, 0.031509216874837875, 0.002118967240676284, 0.004258496221154928, -0.016494818031787872, 0.018450437113642693, -0.021420417353510857, 0.04872596636414528, 0.0227911788970232, -0.04009931534528732, 0.0019750373903661966, 0.029608426615595818, -0.009915167465806007, 0.010408641770482063, 0.017362967133522034, 0.0076214284636080265, 0.051357828080654144, 0.04163456708192825, -0.049968790262937546, -0.04719071462750435, -0.05757194012403488, 0.0065476661548018456, 0.04412021115422249, -0.009677569381892681, 0.04097660258412361, -0.02087211422622204, -0.021694570779800415, -0.027780747041106224, 0.031143678352236748, -0.01629377342760563, 0.001328495447523892, -0.01860578916966915, 0.016376018524169922, -0.033044468611478806, 0.021566633135080338, 0.04240219295024872, 0.031454384326934814, -0.0623239129781723, 0.0037193302996456623, -0.028859078884124756, -0.04112281650304794, -0.06546752154827118, 0.0028603202663362026, -0.04320637136697769, 0.03273376077413559, 0.0034885855857282877, 0.05669465661048889, 0.026848629117012024, 0.02933427505195141, 0.011331620626151562, 0.017061399295926094, -0.026775522157549858, -0.00766255147755146, 0.03719330206513405, -0.06575994938611984, 0.024399537593126297, 0.0418538860976696, 0.03342828154563904, -0.006131868809461594, 0.010161904618144035, -0.024673689156770706, -0.027981791645288467, -0.009969998151063919, -0.037832990288734436, -0.01587340608239174, -0.004847922828048468, 0.007516336627304554, 0.08283048868179321, -0.05877821147441864, 0.04306015744805336, -0.0045349327847361565, 0.016092728823423386, 0.04291394352912903, -0.02534993179142475, 0.012190630659461021, 0.06049622967839241, 0.08114901930093765, -0.024728519842028618, -0.0006842379807494581, -0.011916478164494038, 0.019702397286891937, -0.03404968976974487, 0.02953531965613365, 0.02556925266981125, -0.06488266587257385, -0.013735020533204079, -0.053404830396175385, -0.002997396280989051, 0.03671810403466225, -0.03929513320326805, -0.07106022536754608, 0.04338914155960083, -0.011121436953544617, -0.019355138763785362, 0.0008824270917102695, -0.008512422442436218, -0.051357828080654144, 0.008827697485685349, 0.03540217503905296, 0.027543148025870323, -0.0341959074139595, -0.08114901930093765, -0.05815679952502251, 0.0018516690470278263, -0.00019761797739192843, -0.00010659090912668034, -0.04550924897193909, -0.06389571726322174, 0.03297135978937149, 0.012007862329483032, 0.007123385556042194, -0.020762452855706215, -0.0069634635001420975, -0.020853836089372635, 0.031271617859601974, 0.011943893507122993, 0.0140640027821064, -0.009188665077090263, -0.0390758141875267, -0.007370122242718935, 0.01773764193058014, 0.011331620626151562, 0.0381254181265831, 0.0111579904332757, 0.0013604798587039113, 0.02483818121254444, 0.02041519246995449, -0.0009184095542877913, -0.004055166617035866, -0.027981791645288467, 0.02282773144543171, 0.07559287548065186, -0.007913857698440552, -0.05380691960453987, -0.015644947066903114, -0.0005243159248493612, 0.014447815716266632, 0.02204182930290699, 0.018377330154180527, 0.026537923142313957, 0.003390347585082054, -0.011075745336711407, 0.007772212382405996, -0.06959807872772217, -0.029224613681435585, -0.00787273421883583, -0.039039257913827896, 0.0288225244730711, 0.035036638379096985, 0.07851716130971909, 0.05464765429496765, -0.010956945829093456, -0.04163456708192825, 0.031509216874837875, 0.003895244561135769, -0.03421418368816376, -0.003762737615033984, 0.001106317969970405, 0.024125386029481888, -0.0953318253159523, -0.014265047386288643, 0.07453282177448273, -0.04412021115422249, -0.03236822411417961, 0.004624031949788332, -0.01695173792541027, -0.06473644822835922, 0.0026889753062278032, 0.0855354592204094, 0.019793782383203506, -0.010975223034620285, 0.05684087052941322, 0.041451796889305115, -0.007370122242718935, -0.012939979322254658, -0.029041845351457596, -0.05632911995053291, -0.029096676036715508, -0.03551183640956879, -0.06934220343828201, -0.004438979551196098, -0.0664910227060318, -0.006739572621881962, -0.033556219190359116, 0.05055364966392517, -0.008201717399060726, 0.004413848742842674, 0.019684121012687683, 0.03291653096675873, 0.010792454704642296, -0.028712863102555275, -0.017390381544828415, -0.04565546289086342, -0.020853836089372635, 0.0446319617331028, 0.09094539284706116, -0.013113608583807945, -0.006063330918550491, 0.015014396980404854, 0.025148887187242508, -0.0017260159365832806, 0.02556925266981125, 0.07668948173522949, 0.02487473376095295, -0.0034566011745482683, 0.019172370433807373, 0.017838163301348686, -0.06619859486818314, 0.07383830100297928, -0.005962808150798082, -0.028749417513608932, -0.008073779754340649, -0.03478076308965683, 0.027049673721194267, -0.06634481251239777, 0.02863975614309311, 0.01924547739326954, -0.008695190772414207, -0.023631911724805832, 0.023686742410063744, 0.01099349930882454, 0.005798317026346922, 0.016193250194191933, -0.010792454704642296, 0.022937392815947533, 0.013808127492666245, -0.05976516008377075, -0.008137748576700687, -0.02264496311545372, 0.028950462117791176, 0.04068417102098465, -0.004907322581857443, -0.008485008031129837, -0.021219372749328613, 0.0160470362752676, 0.05830301344394684, -0.023357760161161423, -0.005999362096190453, -0.03200268745422363, -0.057498835027217865, 0.03282514587044716, -0.0013102185912430286, 0.015169749967753887, -0.02460058219730854, 0.0007853315328247845, 0.022846009582281113, -0.039879992604255676, 0.005016983486711979, -0.03216718137264252, -0.019702397286891937, -0.00043778662802651525, 0.01990344189107418, -0.00435901852324605, -0.022060105577111244, 0.015754608437418938, -0.02794523723423481, -0.010207596234977245, -0.015050950460135937, 0.00566124077886343, 0.03779643774032593, 0.05318550765514374, -0.06155628710985184, 0.01658620312809944, 0.02595306560397148, 0.029681533575057983, 0.03134472295641899, -0.040062759071588516, 0.021493524312973022, -0.02138386480510235, 0.008644930087029934, -0.0075985826551914215, -0.003707907162606716, -0.03933168947696686, -0.023503974080085754, -0.011523527093231678, -0.022900838404893875, 0.0613735169172287, -0.04375467449426651, 0.006776126101613045, 0.006319206207990646, -0.017481766641139984, 0.016750693321228027, -0.01709795370697975, -0.011688018217682838, -0.014073140919208527, 0.02403400093317032, 0.030759865418076515, -0.0341959074139595, -0.040391743183135986, 0.03032122366130352, -0.03311757370829582, -0.022681517526507378, 0.05662154778838158, 0.02505750209093094, -0.07471558451652527, 0.027214165776968002, 0.047958340495824814, 0.0012759495293721557, 0.044010549783706665, 0.008631221950054169, 0.0269765667617321, -0.028566649183630943, -0.07910201698541641, -0.006821818184107542, 0.04240219295024872, 0.020067933946847916, 0.05676776170730591, -0.036846041679382324, -0.008018949069082737, 0.025879958644509315, -0.023869510740041733, 0.046057552099227905, 0.018688034266233444, 0.008334224112331867, -0.009339448064565659, -0.02893218584358692, 0.04499749839305878, -0.030430883169174194, 0.009325740858912468, -0.04265806823968887, 0.028383880853652954, 0.03693742677569389, -0.00719649251550436, -0.01755487360060215, -0.03775988146662712, -0.06970774382352829, 0.040903493762016296, -0.034013137221336365, 0.00955876987427473, 0.0026112988125532866, 0.020305532962083817, -0.03797920420765877, 0.00904701929539442, 0.022571856155991554, 0.016988292336463928, 0.006474558729678392, 0.01201700046658516, -0.0209269430488348, -0.00719649251550436, 0.004902753513306379, -0.015133196488022804, 0.0074889217503368855, 0.038710277527570724, -0.05632911995053291, 0.009686707518994808, 0.002990542445331812, -0.02725071832537651, 0.042292531579732895, -0.015818577259778976, 0.0297546423971653, 0.005391658283770084, 0.04616721346974373, 0.03143610805273056, 0.06217769905924797, 0.024161938577890396, -0.018934771418571472, -0.0022948815021663904, 0.007187354378402233, 0.008603806607425213, -0.012090107426047325, -0.09862165153026581, 0.008421039208769798, 0.0058120246976614, -0.020817283540964127, 0.03130817040801048, 0.0279086846858263, -0.018194561824202538, 0.055269062519073486, -0.02023242600262165, 0.0506998635828495, 0.024582305923104286, 0.07095056772232056, 0.004742831457406282, -0.012839457020163536, 0.01559925451874733, -0.013607082888484001, 0.008663206361234188, -0.05556149408221245, 0.02586168237030506, 0.05501318722963333, 0.00837077759206295, -0.041780781000852585, 0.04631342738866806, -0.03287997469305992, -0.03823507949709892, -0.04916461184620857, 0.018715450540184975, -0.02589823491871357, -0.08005241304636002, -0.07252237200737, 0.008393623866140842, 0.0404648520052433, 0.0386006161570549, 0.013259823434054852, 0.029772918671369553, -0.0174360740929842 ]
24,524
schedula.utils.blue
__init__
null
def __init__(self, dmap=None, name='', default_values=None, raises=False, description='', executor=False): kwargs = { 'dmap': dmap, 'name': name, 'default_values': default_values, 'raises': raises, 'description': description, 'executor': executor } super(BlueDispatcher, self).__init__(**kwargs)
(self, dmap=None, name='', default_values=None, raises=False, description='', executor=False)
[ 0.03363865986466408, -0.05345567315816879, -0.02164793200790882, -0.023119846358895302, -0.003818903351202607, 0.01283438690006733, -0.02579442597925663, 0.036905594170093536, -0.013956273905932903, -0.032489847391843796, -0.010096983052790165, 0.10368030518293381, -0.028235651552677155, 0.04850141704082489, 0.010590612888336182, -0.010680364444851875, -0.003482337109744549, 0.07725762575864792, -0.009010996669530869, -0.03891601413488388, 0.010716264136135578, 0.027338141575455666, 0.02209668606519699, 0.03730049729347229, -0.024196859449148178, 0.05101444572210312, -0.07050835341215134, 0.017591187730431557, 0.0280022993683815, -0.013372892513871193, -0.030192222446203232, -0.022347988560795784, -0.016837280243635178, 0.05751241371035576, 0.031143583357334137, 0.004348434042185545, 0.0035429191775619984, 0.0542454794049263, -0.08199647814035416, -0.03155643865466118, 0.028971610590815544, -0.04315226152539253, 0.017770690843462944, -0.011173994280397892, 0.05345567315816879, 0.04968613013625145, 0.013588295318186283, -0.009150110185146332, 0.010070057585835457, 0.003614719957113266, -0.010052107274532318, -0.021001724526286125, -0.010779090225696564, 0.06860563158988953, -0.05848172679543495, 0.06386677920818329, 0.005847274791449308, 0.08845854550600052, -0.029420364648103714, 0.010123908519744873, -0.0689646378159523, 0.025291820988059044, 0.000021298323190421797, -0.028989559039473534, -0.004525692202150822, -0.012511284090578556, -0.014449904672801495, -0.018757950514554977, 0.0033566858619451523, 0.04785521328449249, 0.05629179999232292, 0.007925009354948997, -0.04275735840201378, 0.008046173490583897, 0.06088704988360405, 0.018246369436383247, 0.01806686818599701, -0.017716839909553528, 0.020158065482974052, -0.007610881235450506, -0.017070632427930832, -0.0010904741939157248, -0.021899234503507614, 0.017034731805324554, -0.027679195627570152, -0.03362070769071579, -0.00777243310585618, 0.025291820988059044, -0.0011858345242217183, -0.06042034551501274, -0.0598459392786026, -0.013839597813785076, -0.03227444365620613, 0.07086735963821411, -0.042398352175951004, -0.04185984656214714, -0.006112040486186743, 0.03615168482065201, 0.017716839909553528, 0.051804251968860626, 0.017339885234832764, -0.05848172679543495, 0.014494779519736767, -0.042649656534194946, -0.02532772161066532, -0.04760390892624855, -0.009971331804990768, -0.01672060415148735, -0.04243425279855728, -0.02478921413421631, -0.018937451764941216, 0.03419511392712593, 0.06968264281749725, 0.038700614124536514, -0.06946723908185959, 0.05618410184979439, 0.012852337211370468, -0.032346244901418686, 0.060492146760225296, 0.0035115063656121492, -0.05266586318612099, 0.01304081454873085, -0.006089602597057819, 0.002114756964147091, 0.01678342930972576, 0.05546609312295914, -0.027948448434472084, 0.017851466313004494, 0.020732471719384193, 0.024358410388231277, 0.062430765479803085, 0.002613996621221304, -0.02066067047417164, 0.025902125984430313, 0.040316130965948105, 0.00020825027604587376, 0.005762011744081974, 0.05227096006274223, -0.0012553915148600936, 0.03065892681479454, -0.0012408070033416152, -0.031053831800818443, 0.004308045841753483, 0.021109426394104958, -0.005578021984547377, 0.010222634300589561, -0.007916034199297428, -0.013471619226038456, 0.004909377545118332, 0.04950663074851036, -0.015410239808261395, 0.02403530664741993, 0.001726584043353796, 0.024089157581329346, -0.002059784485027194, 0.015392289496958256, -0.0014842564705759287, -0.027463793754577637, -0.024717414751648903, 0.01929645612835884, 0.02213258668780327, -0.04322406277060509, 0.02297624573111534, -0.06580540537834167, 0.0011140337446704507, -0.006089602597057819, 0.01253820862621069, -0.06042034551501274, 0.04049563407897949, 0.06828252971172333, -0.03534392639994621, -0.0468859001994133, -0.014521704986691475, 0.014799932949244976, 0.03317195549607277, 0.012556158937513828, -0.01428835280239582, -0.014458879828453064, -0.006825560238212347, -0.03665429353713989, 0.04117773845791817, 0.029546014964580536, -0.00840966496616602, 0.03211289271712303, 0.015446140430867672, 0.021755632013082504, -0.004373115487396717, 0.02299419604241848, 0.0280022993683815, 0.04308046028017998, 0.028235651552677155, 0.024358410388231277, -0.013731896877288818, -0.0070230127312242985, 0.04390617087483406, -0.0011544217122718692, 0.03049737587571144, -0.022455690428614616, 0.04997333511710167, 0.0504041388630867, 0.01681932993233204, 0.01806686818599701, -0.01918875426054001, 0.03638504073023796, 0.020678620785474777, -0.011676600202918053, 0.05395827814936638, 0.02491486631333828, 0.04541398584842682, -0.05794322118163109, -0.012771561741828918, 0.006776197347790003, -0.028540804982185364, 0.01120989490300417, 0.002739648101851344, -0.02164793200790882, -0.00917703565210104, 0.007498692721128464, 0.005097854416817427, 0.00005679552850779146, 0.050475940108299255, 0.04379846900701523, 0.03658249229192734, -0.03891601413488388, -0.059486936777830124, 0.03385406360030174, 0.035595230758190155, -0.07219567149877548, 0.0136421462520957, 0.03170003741979599, -0.06121015548706055, -0.04200344905257225, -0.013695996254682541, 0.0013361674500629306, 0.0299229696393013, -0.0612819567322731, 0.035882432013750076, -0.03625938668847084, -0.06411808729171753, -0.017995066940784454, 0.06275387108325958, 0.026889387518167496, -0.036492738872766495, -0.014575555920600891, 0.031035881489515305, -0.05316846817731857, -0.012520259246230125, 0.008948170579969883, -0.01768093928694725, 0.02150432951748371, -0.018452797085046768, -0.060061343014240265, -0.0011308620451018214, 0.0031839152798056602, -0.031771838665008545, -0.014198602177202702, -0.03306425362825394, -0.02475331537425518, -0.012098429724574089, -0.03801850602030754, -0.023389099165797234, -0.006987112108618021, -0.05973823741078377, 0.09434621036052704, 0.0433676652610302, -0.004608711693435907, 0.009782854467630386, -0.07158536463975906, -0.012977988459169865, -0.009132159873843193, 0.11272720247507095, -0.009450775571167469, 0.016253897920250893, 0.0005766499089077115, -0.053886476904153824, -0.01917080581188202, 0.009163573384284973, -0.06447708606719971, -0.029815267771482468, -0.025902125984430313, 0.06329237669706345, -0.04351126402616501, 0.003262447426095605, 0.046814098954200745, -0.005631872918456793, 0.004023086745291948, -0.018470747396349907, 0.04893222451210022, -0.015796169638633728, -0.04821421578526497, 0.04627559334039688, 0.08120666444301605, 0.003248984692618251, 0.04483957961201668, 0.022904444485902786, -0.018650248646736145, -0.0033050791826099157, 0.06918004155158997, -0.004990153480321169, -0.008629554882645607, 0.002681309822946787, -0.06569769978523254, 0.07198026776313782, 0.03195134177803993, -0.030299924314022064, -0.049291227012872696, 0.05941513553261757, 0.019655460491776466, -0.05546609312295914, 0.009603352285921574, 0.045772988349199295, 0.04860911890864372, -0.04950663074851036, 0.039993029087781906, -0.0029258811846375465, 0.023945555090904236, 0.025255920365452766, -0.045916590839624405, 0.020696571096777916, 0.050045136362314224, -0.027463793754577637, -0.03658249229192734, -0.053706973791122437, -0.013004913926124573, 0.025848276913166046, 0.008499415591359138, 0.03004862181842327, -0.03170003741979599, 0.06734912097454071, 0.01186507660895586, -0.02565082348883152, -0.005483783781528473, 0.0236045029014349, -0.08012965321540833, 0.030192222446203232, -0.06268206983804703, -0.0068614608608186245, -0.0004782043397426605, -0.029797319322824478, -0.05420957878232002, -0.0007903694058768451, 0.007696144748479128, -0.06185636296868324, 0.018156619742512703, 0.010850890539586544, -0.012179205194115639, -0.0017243402544409037, -0.034410517662763596, 0.055789195001125336, -0.061389654874801636, -0.0005163484602235258, -0.02931266278028488, -0.028953660279512405, 0.06278976798057556, 0.06828252971172333, -0.009316149167716503, -0.022150536999106407, 0.006937749218195677, 0.010348285548388958, 0.0012486602645367384, 0.008710330352187157, 0.0036708142142742872, -0.011389397084712982, 0.00995338149368763, 0.024125058203935623, -0.021001724526286125, -0.008782131597399712, -0.014737107791006565, 0.01884770207107067, -0.015832068398594856, 0.011003467254340649, -0.04778341203927994, -0.010868840850889683, 0.04850141704082489, -0.02195308543741703, -0.03484132140874863, -0.012807461433112621, -0.014925584197044373, -0.0006725712446495891, 0.007875646464526653, -0.044875480234622955, 0.0013092420995235443, 0.0427214577794075, 0.01974521018564701, -0.005214530508965254, -0.03992122784256935, 0.0072877779603004456, 0.049757931381464005, 0.008476978167891502, -0.03318990394473076, 0.015948746353387833, -0.03274115175008774, -0.03126923367381096, 0.05316846817731857, -0.06781582534313202, -0.0236045029014349, 0.02606367878615856, 0.02006831392645836, -0.05036823824048042, -0.022078735753893852, -0.012708735652267933, -0.01774376444518566, 0.005102341994643211, -0.02180948294699192, 0.059630535542964935, 0.003188402857631445, 0.029258811846375465, 0.06067164987325668, 0.027679195627570152, 0.036205537617206573, 0.014171676710247993, 0.007574981078505516, -0.07574980705976486, -0.02019396610558033, -0.05352747067809105, -0.040890537202358246, 0.008934708312153816, 0.019852912053465843, 0.022078735753893852, -0.03748000040650368, -0.022150536999106407, 0.005075416527688503, 0.04347536340355873, -0.013139540329575539, 0.04652689769864082, 0.02209668606519699, 0.04616789519786835, 0.023353200405836105, 0.03966992348432541, -0.004846551921218634, -0.03362070769071579, 0.07068785279989243, -0.04498318210244179, -0.06699011474847794, 0.09499241411685944, -0.004631149582564831, 0.009006508626043797, -0.03419511392712593, 0.02213258668780327, -0.03669019043445587, -0.061999961733818054, -0.016693677753210068, 0.06490789353847504, -0.03021017275750637, -0.043690767139196396, -0.022922394797205925, -0.028038199990987778, 0.04196754842996597, 0.07503180205821991, -0.04717310518026352, 0.02857670560479164, -0.01902720332145691, 0.0654463991522789, -0.014575555920600891, -0.01313056517392397, -0.03992122784256935, -0.04412157088518143, 0.010303409770131111, 0.031197434291243553, -0.02315574698150158, 0.005838300101459026, -0.07768843322992325, -0.07147766649723053, -0.04785521328449249, -0.03844930976629257, 0.13204161822795868, 0.041213639080524445, -0.019511858001351357, -0.026584234088659286, -0.01341776829212904, 0.03021017275750637, 0.042972758412361145, 0.049183525145053864, -0.030246073380112648, -0.03934682160615921, -0.006776197347790003, 0.0035608692560344934, -0.018075842410326004, -0.04598839208483696, -0.030694827437400818, 0.02195308543741703, -0.021612031385302544, 0.020247817039489746, -0.017016781494021416, -0.03880831599235535, -0.0035810633562505245, 0.03349505737423897, -0.0136421462520957, 0.046634599566459656, 0.009060359559953213, -0.05499938875436783, 0.022078735753893852, 0.01667572744190693, -0.039849426597356796, 0.024950766935944557, 0.013893448747694492, 0.014512729831039906, -0.013229290954768658, 0.03966992348432541, -0.009998257271945477, -0.009217423386871815, -0.05819452181458473, -0.02385580539703369, -0.03277704864740372, 0.02005036361515522, -0.08845854550600052, -0.04950663074851036, 0.02444816194474697, -0.019224654883146286, 0.015293563716113567, 0.007018525153398514, 0.005021566059440374, 0.011012442409992218, -0.0022347988560795784, -0.012592059560120106, -0.038413409143686295, -0.01812969334423542, 0.011676600202918053, -0.04318816214799881, -0.01208945456892252, 0.04641919583082199, 0.09054076671600342, 0.00272618536837399, -0.008966120891273022, -0.02270699292421341, -0.06946723908185959, 0.01774376444518566, 0.012322806753218174, 0.04182394593954086, 0.013004913926124573, 0.003984942566603422, -0.01827329583466053, -0.027068888768553734, 0.016173122450709343, -0.001726584043353796, 0.07603701204061508, -0.01252923347055912, 0.015096111223101616, -0.12399992346763611, -0.0012486602645367384, 0.0444805771112442, 0.030605077743530273, 0.02857670560479164, -0.06375908106565475, -0.035308025777339935, -0.02665603533387184, -0.061676859855651855, 0.033118102699518204, 0.05471218377351761, -0.04171624407172203, 0.0021742170210927725, -0.010859865695238113, -0.04555758833885193, -0.03909551724791527, -0.043547164648771286, -0.008333376608788967, 0.028074100613594055, -0.03164618834853172, 0.014351177960634232, 0.01244845800101757, -0.005407495424151421, 0.05779961869120598, -0.006569770164787769, 0.03284884989261627, 0.07036475092172623, 0.021629981696605682, 0.017645038664340973, -0.0003261886304244399, -0.044013869017362595, -0.011622749269008636, -0.04329586401581764, -0.04422927275300026, 0.007373041473329067, 0.05614820122718811, 0.010752164758741856, 0.0262431800365448, 0.05158885195851326, -0.007031987886875868, -0.013821647502481937, -0.08328889310359955, 0.0139203742146492, 0.052845366299152374, -0.06185636296868324, -0.027338141575455666, -0.010797040536999702, -0.006551819853484631, -0.026763735339045525, 0.02846900373697281, 0.026350881904363632, -0.06702601909637451, -0.009172547608613968, -0.04807061329483986, -0.06957494467496872, 0.008396202698349953, -0.051983755081892014, 0.007242902647703886, -0.01001620665192604, 0.0072743152268230915, 0.013184416107833385, 0.03665429353713989, -0.031053831800818443, 0.035020824521780014, 0.01731296069920063, -0.015867969021201134, -0.009827730245888233, -0.015419214963912964, -0.01577821932733059, 0.022186437621712685, -0.05589689686894417, 0.0018432603683322668, -0.005685723386704922, -0.015580766834318638, 0.008894319646060467, 0.08910474926233292, 0.011012442409992218, -0.08206827938556671, 0.0007505423855036497, 0.053599271923303604, 0.050188735127449036, 0.0050484915263950825, -0.0028944683726876974, -0.01700780726969242, 0.006143453065305948, 0.006094090174883604, -0.014988410286605358, -0.007036474999040365, -0.006394756026566029, -0.04081873595714569, -0.01837202161550522, 0.01900925301015377, 0.03380021080374718, 0.0042452202178537846, 0.001584104378707707, -0.057691916823387146, -0.016478275880217552, -0.009513601660728455, 0.04185984656214714, 0.009881580248475075, 0.02164793200790882, 0.040459733456373215, 0.01362419594079256, -0.006987112108618021, 0.02636883221566677, -0.01945800706744194, 0.003854803740978241, 0.006650546099990606, -0.02254544012248516, -0.0013608488952741027, 0.03459002077579498, 0.025399520993232727, -0.011676600202918053, 0.01900925301015377, -0.023766053840517998, 0.012645910494029522, 0.025273870676755905, 0.04684999957680702, -0.0580868199467659, -0.013678045943379402, 0.015419214963912964, 0.011945853009819984, -0.07259057462215424, 0.002387375570833683, 0.042398352175951004, -0.012726685963571072, -0.035918332636356354, -0.025004617869853973, 0.019063103944063187, -0.04049563407897949, 0.0030627513770014048, 0.022599291056394577, 0.027391992509365082, -0.008827006444334984, 0.017339885234832764, -0.023640403524041176, -0.00401186803355813, 0.009325124323368073, 0.019368257373571396, 0.0014786469982936978, 0.11768145859241486, -0.006587720476090908, -0.000573564728256315, 0.02198898419737816, -0.024196859449148178, 0.015580766834318638, 0.003379123518243432, 0.018829751759767532, -0.013776772655546665, 0.007898084819316864, 0.04939892888069153, -0.016200048848986626, 0.03805440664291382, -0.03195134177803993, -0.007619856391102076, 0.017671963199973106, -0.07582160830497742, -0.033961761742830276, -0.04139314219355583, -0.15724368393421173, 0.00800129771232605, 0.026440633460879326, 0.040316130965948105, 0.019547758623957634, -0.02136072888970375, 0.00744035467505455, 0.02640473283827305, 0.024645613506436348, -0.02636883221566677, -0.010716264136135578, 0.033836111426353455, -0.04010072723031044, 0.04275735840201378, 0.013426743447780609, 0.00957642775028944, -0.02021191641688347, -0.00732816569507122, -0.05589689686894417, -0.016469301655888557, 0.019924713298678398, -0.08479670435190201, 0.015473064966499805, -0.03570293262600899, -0.0010074544697999954, 0.05772781744599342, -0.0136421462520957, 0.08091946691274643, -0.025902125984430313, -0.031592339277267456, -0.03826981037855148, 0.04993743449449539, 0.010680364444851875, 0.003614719957113266, 0.029528066515922546, -0.02550722286105156, -0.004512229468673468, -0.029546014964580536, -0.05762011557817459, 0.06523099541664124, -0.01627184823155403, 0.026440633460879326, 0.05661490559577942, -0.02904340997338295, -0.021755632013082504, 0.023101896047592163, 0.04631149396300316, 0.010070057585835457, 0.011847126297652721, -0.03108973242342472, 0.01563461683690548, 0.011218870058655739, 0.023173697292804718, 0.01694498024880886, 0.026279080659151077, -0.0448036789894104, 0.03266935050487518, -0.001406846335157752, -0.07320088148117065, 0.001306998310610652, -0.017402710393071175, -0.00762434396892786, -0.04229065030813217, -0.0018533573020249605, 0.02710478939116001, -0.016056446358561516, -0.03523622825741768, 0.05011693388223648, 0.08199647814035416, 0.01311261486262083, -0.00004775031629833393 ]
24,525
schedula.utils.blue
_set_cls
null
def _set_cls(self, cls): self.cls = cls return self
(self, cls)
[ -0.002442360622808337, 0.008741534315049648, 0.03572627156972885, -0.001247093896381557, -0.054867811501026154, 0.013587385416030884, 0.004208806902170181, 0.0772572010755539, 0.038386739790439606, 0.007679075002670288, 0.011756154708564281, 0.027382079511880875, 0.023391379043459892, -0.012775423936545849, 0.0043966807425022125, 0.025809984654188156, -0.038835909217596054, 0.0020072273910045624, 0.030768128111958504, -0.053347546607255936, 0.041530925780534744, 0.030318958684802055, 0.021007323637604713, -0.0009156152955256402, -0.007890703156590462, 0.0165588166564703, 0.0051438575610518456, 0.017284397035837173, -0.014278415590524673, -0.046160828322172165, -0.024306993931531906, -0.002837543608620763, -0.00979535561054945, 0.006392030976712704, 0.03377411141991615, -0.011652500368654728, -0.01720665767788887, 0.04688641056418419, 0.0024013305082917213, 0.006560469977557659, -0.09695156663656235, 0.004914953839033842, -0.042291060090065, -0.05307113379240036, 0.009752166457474232, 0.05939406156539917, 0.054971467703580856, 0.01915881782770157, -0.024237891659140587, -0.035017963498830795, -0.0176126379519701, -0.0006386632448993623, -0.027503009885549545, -0.015850510448217392, 0.009449840523302555, 0.0631256252527237, -0.024617956951260567, 0.04042527824640274, -0.020800014957785606, 0.03341132029891014, 0.009121601469814777, -0.008633560501039028, 0.02135283872485161, -0.020195363089442253, -0.03641730174422264, -0.009726252406835556, -0.026328258216381073, 0.011963463388383389, 0.030819956213235855, 0.04968508332967758, -0.053347546607255936, -0.005260468926280737, 0.011497017927467823, 0.01858871802687645, 0.039596039801836014, -0.01978074572980404, -0.09626053273677826, -0.0331176333129406, -0.05390037223696709, 0.011315622366964817, 0.04695551469922066, 0.01041728351265192, 0.040148865431547165, 0.0342232808470726, -0.0017837221967056394, -0.005588708445429802, -0.03880135715007782, -0.009112963452935219, -0.04882129654288292, -0.019452504813671112, -0.037833914160728455, 0.0190897136926651, -0.01286180317401886, -0.0058737583458423615, -0.0030275769531726837, 0.01301728468388319, -0.00006930548988748342, -0.03572627156972885, -0.021611975505948067, 0.01865782029926777, -0.003390367841348052, 0.007048510015010834, 0.025067128241062164, 0.0007029074477031827, 0.0025330581702291965, -0.06264190375804901, -0.003424919443204999, -0.0029476764611899853, -0.04160002991557121, 0.0016152835451066494, 0.05158541724085808, 0.04367312043905258, -0.004638541489839554, 0.08492763340473175, 0.0008508311584591866, -0.03266846016049385, -0.02567177824676037, -0.014166123233735561, 0.07373294234275818, -0.01782858371734619, -0.03887046128511429, 0.024704337120056152, -0.05224189907312393, 0.06792828440666199, 0.042394716292619705, -0.014546189457178116, 0.0008011633763089776, 0.027675766497850418, 0.029247861355543137, -0.004871764220297337, 0.0035480090882629156, 0.025395367294549942, -0.032461151480674744, 0.017863135784864426, 0.056111667305231094, 0.03603723645210266, -0.05548974126577377, 0.03308308124542236, -0.030007995665073395, 0.06374755501747131, -0.061985425651073456, 0.0562153235077858, 0.04643724113702774, 0.00295847374945879, 0.007450171280652285, -0.006949174217879772, -0.05099804326891899, 0.05790834501385689, -0.019262472167611122, 0.02553357370197773, -0.03555351495742798, -0.007199672982096672, 0.050790734589099884, 0.08575686812400818, -0.06087977811694145, 0.02859138324856758, -0.05075618252158165, 0.01827775314450264, 0.058668479323387146, 0.002507144585251808, -0.00735083594918251, -0.0351216197013855, 0.027934903278946877, -0.04360401630401611, 0.016567453742027283, 0.02266579680144787, -0.07165984809398651, -0.03710833191871643, -0.013967451639473438, 0.020765462890267372, -0.005040202755481005, -0.06996683031320572, 0.0085687767714262, -0.038524944335222244, -0.00017208275676239282, 0.030007995665073395, 0.05645718425512314, -0.012516288086771965, 0.053485751152038574, 0.07863926142454147, 0.05092893913388252, -0.002332227537408471, 0.007195353973656893, 0.001155316480435431, 0.04937412217259407, -0.009562132880091667, 0.02940334379673004, 0.012179411016404629, 0.002191862091422081, 0.030768128111958504, 0.005424588453024626, 0.013526920229196548, -0.014693033881485462, -0.04661000147461891, 0.017863135784864426, -0.0055671134032309055, 0.007199672982096672, -0.030318958684802055, -0.020264465361833572, 0.030958160758018494, -0.029506998136639595, 0.04398408532142639, 0.044847872108221054, -0.015297685749828815, 0.06685718894004822, -0.02290765754878521, 0.06948310881853104, -0.013570109382271767, -0.02809038572013378, -0.03479338064789772, -0.036209993064403534, -0.014373431913554668, -0.05106714740395546, -0.029265137389302254, 0.041185412555933, -0.07241998612880707, 0.02727842517197132, -0.016386058181524277, -0.028643209487199783, 0.018001342192292213, 0.04087444767355919, 0.042291060090065, -0.0923907607793808, 0.016265127807855606, 0.007290370762348175, -0.04813026636838913, -0.04336215555667877, -0.07380204647779465, -0.014166123233735561, -0.04090899974107742, -0.06737546622753143, 0.03398142009973526, 0.024687061086297035, 0.034827932715415955, 0.058979444205760956, -0.016213299706578255, 0.07311101257801056, 0.021922938525676727, -0.07704988867044449, 0.02176745794713497, 0.009726252406835556, 0.04681731015443802, 0.01699071004986763, -0.015081738121807575, -0.043845877051353455, 0.0763588547706604, -0.04360401630401611, 0.0321674644947052, -0.005191365722566843, 0.018001342192292213, 0.007346516940742731, -0.061743564903736115, 0.0034508330281823874, -0.036831919103860855, 0.037453848868608475, -0.02240666002035141, -0.09301269054412842, -0.018243202939629555, 0.009302997030317783, -0.02722659707069397, -0.006210635416209698, 0.027503009885549545, 0.08243992924690247, 0.039526939392089844, -0.0022868786472827196, 0.00857741478830576, 0.016101008281111717, 0.00008111508941510692, -0.03335949033498764, 0.010382731445133686, 0.08264723420143127, 0.03215019032359123, 0.012360806576907635, 0.08015952259302139, -0.041392721235752106, -0.052794720977544785, -0.05517877638339996, -0.04557345435023308, -0.058668479323387146, -0.014546189457178116, 0.035760823637247086, -0.06039605662226677, 0.07905387878417969, 0.04650634527206421, -0.019867124035954475, -0.011566121131181717, -0.0020925262942910194, 0.0341714546084404, -0.023045863956212997, -0.013691039755940437, -0.009130239486694336, 0.008931567892432213, -0.007536550052464008, -0.02803855761885643, 0.03456879407167435, -0.044709667563438416, -0.0765661671757698, 0.051481764763593674, -0.013207318261265755, 0.0044873785227537155, 0.013457817025482655, -0.034776102751493454, -0.0018366292351856828, 0.04305119439959526, 0.016662470996379852, -0.046160828322172165, -0.020368121564388275, 0.02016081102192402, 0.045400697737932205, 0.05269106850028038, 0.02346048131585121, 0.0634365901350975, -0.053036581724882126, 0.011928912252187729, 0.01834685727953911, 0.06395485997200012, -0.01562592387199402, -0.02016081102192402, -0.00979535561054945, 0.05507512390613556, -0.027693042531609535, -0.059117648750543594, -0.017664464190602303, -0.018381409347057343, 0.009225255809724331, 0.000784967327490449, -0.03700467571616173, 0.02784852497279644, -0.053105685859918594, -0.0018884565215557814, -0.013993365690112114, 0.013691039755940437, 0.0016023267526179552, 0.009968113154172897, 0.007096018176525831, -0.024116961285471916, 0.013077749870717525, -0.039077769964933395, -0.006875752471387386, -0.0291614830493927, 0.05068707838654518, 0.07587514072656631, -0.010875090956687927, -0.030560819432139397, -0.01654154062271118, 0.03710833191871643, -0.011928912252187729, -0.03180467337369919, 0.0038956839125603437, 0.023305000737309456, -0.025239884853363037, -0.06602795422077179, 0.03949238732457161, -0.007108975201845169, 0.025049852207303047, -0.004051165655255318, 0.007916617207229137, -0.005934223532676697, -0.04274022951722145, -0.06706450134515762, 0.038766805082559586, 0.02428971789777279, 0.0013118779752403498, 0.027122942730784416, -0.022043868899345398, 0.06153625622391701, -0.02629370614886284, -0.05390037223696709, 0.0306126456707716, -0.02527443692088127, 0.004470102954655886, -0.032512981444597244, -0.0028008325025439262, 0.03196015581488609, -0.0038956839125603437, 0.06561333686113358, -0.03655550628900528, 0.03436148539185524, -0.0008826833800412714, -0.0015710144070908427, 0.05949771776795387, -0.007346516940742731, 0.0381794273853302, -0.0014047352597117424, 0.05586980655789375, -0.04094355180859566, 0.020108984783291817, 0.0020763303618878126, 0.04042527824640274, 0.03887046128511429, 0.01376878097653389, -0.007113294210284948, -0.004135385155677795, -0.04923591390252113, 0.023132242262363434, -0.016351506114006042, -0.057977449148893356, 0.021542873233556747, 0.04958143085241318, 0.013310972601175308, -0.006184721831232309, -0.04059803485870361, 0.05901399627327919, 0.01008040551096201, 0.001387459458783269, 0.026742875576019287, 0.022942209616303444, -0.020609982311725616, -0.014667119830846786, -0.050721630454063416, 0.018865128979086876, 0.0015148682286962867, 0.005813293159008026, -0.023063139989972115, 0.01864054426550865, -0.01033090427517891, 0.0552133284509182, -0.03755750134587288, 0.05006515234708786, 0.037764810025691986, 0.004711963701993227, 0.08720803260803223, 0.010287715122103691, 0.01101329643279314, 0.045642558485269547, 0.02541264332830906, -0.015479080379009247, -0.034015972167253494, 0.0017210976220667362, -0.010546850971877575, -0.019487056881189346, 0.0644385814666748, -0.028505003079771996, 0.007108975201845169, 0.0022588055580854416, 0.0008843029499985278, 0.0031744209118187428, -0.012524926103651524, -0.04913226142525673, 0.00735083594918251, -0.015530908480286598, -0.08513494580984116, -0.011592035181820393, -0.008344192057847977, 0.05555884167551994, -0.06354024261236191, -0.03686647117137909, 0.025188058614730835, 0.014002003706991673, 0.007968444377183914, -0.030716300010681152, 0.03686647117137909, -0.010849176906049252, 0.04059803485870361, 0.05790834501385689, -0.04781930148601532, 0.002930400660261512, -0.0573209710419178, 0.006154489237815142, -0.012697683647274971, -0.041841890662908554, -0.03842128813266754, 0.016662470996379852, -0.038455840200185776, -0.012654494494199753, -0.010754160583019257, 0.05638808012008667, -0.018986059352755547, -0.022233903408050537, -0.04889040067791939, 0.005001332610845566, -0.01720665767788887, -0.012162134982645512, -0.026431912556290627, -0.06119074299931526, 0.018934233114123344, 0.005027246195822954, -0.0051784091629087925, -0.053727611899375916, -0.00869834516197443, -0.008119607344269753, 0.02910965494811535, 0.07670437544584274, 0.02910965494811535, -0.02378872036933899, 0.02135283872485161, 0.02214752323925495, -0.04526248946785927, 0.026518290862441063, 0.02527443692088127, 0.0037488399539142847, 0.052103690803050995, -0.06184722110629082, 0.07891567051410675, 0.015047186985611916, 0.00938937533646822, 0.014848515391349792, 0.026898358017206192, -0.04868309199810028, -0.023685066029429436, 0.042152855545282364, -0.023045863956212997, -0.05953226983547211, -0.008560138754546642, 0.02904055267572403, -0.07580603659152985, -0.013820608146488667, 0.0013691039057448506, -0.015228582546114922, 0.009406651370227337, 0.023011311888694763, -0.022423936054110527, -0.012127582915127277, -0.02078273892402649, 0.002794354222714901, 0.006538874935358763, -0.03391231596469879, -0.008331235498189926, 0.0005938542308285832, -0.007825919426977634, -0.009302997030317783, 0.02209569700062275, 0.04961598291993141, 0.018381409347057343, -0.02560267597436905, 0.04688641056418419, 0.000041468570998404175, 0.03641730174422264, 0.05559339374303818, 0.018001342192292213, 0.010538213886320591, -0.008080736733973026, -0.005104986950755119, -0.03710833191871643, 0.018571441993117332, 0.019037887454032898, -0.03104454092681408, -0.017163466662168503, 0.06018874794244766, -0.033204011619091034, 0.018312305212020874, -0.03291032090783119, 0.04274022951722145, 0.01311230193823576, -0.007588377688080072, -0.049477774649858475, -0.03610633686184883, -0.015902336686849594, -0.01895150914788246, 0.03721198812127113, -0.02703656442463398, -0.03631364554166794, -0.006897347047924995, 0.0035069792065769434, -0.08085055649280548, 0.011177416890859604, 0.050341565161943436, 0.012231238186359406, 0.04550435021519661, 0.04598807170987129, 0.0012427750043570995, 0.009518943727016449, 0.014503000304102898, 0.024082409217953682, 0.014623930677771568, -0.04512428492307663, 0.04927046597003937, 0.038766805082559586, -0.01470167189836502, -0.01554818358272314, 0.0006462213932536542, 0.010244525969028473, -0.010106319561600685, 0.08243992924690247, 0.027934903278946877, 0.05638808012008667, 0.0018441873835399747, 0.014252501539885998, -0.008106649853289127, -0.04985784366726875, -0.0034443545155227184, 0.03603723645210266, -0.04591897130012512, -0.05545518919825554, -0.061743564903736115, -0.0705542042851448, -0.030699025839567184, -0.002414287533611059, -0.062434595078229904, -0.05168907344341278, -0.003951829858124256, 0.08561866730451584, 0.008132563903927803, -0.012265789322555065, 0.006007645279169083, -0.04571165889501572, -0.01376878097653389, -0.07442397624254227, 0.030146200209856033, 0.07058875262737274, -0.00830532144755125, 0.054798711091279984, -0.009043860249221325, 0.02033356949687004, 0.0683429092168808, -0.07200536876916885, 0.01579868234694004, -0.0017297354061156511, -0.023875100538134575, -0.02510167844593525, 0.005796017590910196, -0.0074285767041146755, 0.07905387878417969, 0.045089732855558395, -0.010304991155862808, -0.002802992006763816, -0.05317478999495506, 0.009164790622889996, -0.05877213552594185, -0.03634819760918617, -0.04163458198308945, 0.02522260881960392, 0.027122942730784416, -0.00963987410068512, -0.022994035854935646, 0.012429908849298954, 0.006798011250793934, -0.027693042531609535, -0.0029606332536786795, -0.08513494580984116, -0.0011337217874825, -0.03487975895404816, -0.003679736750200391, -0.029558824375271797, -0.011332898400723934, -0.032754842191934586, -0.04035617411136627, 0.05369305983185768, 0.02859138324856758, -0.021197358146309853, -0.049028605222702026, 0.01142791472375393, 0.027952179312705994, 0.009311634115874767, -0.03987245261669159, -0.052034586668014526, 0.0017437719507142901, 0.0281076617538929, -0.053347546607255936, 0.008478078991174698, -0.007273094728589058, 0.030059821903705597, -0.019988054409623146, -0.02722659707069397, 0.02584453672170639, -0.03009437397122383, -0.029904339462518692, 0.030007995665073395, 0.026742875576019287, -0.017483068630099297, -0.013846521265804768, 0.029437894001603127, 0.014027916826307774, 0.017457155510783195, 0.0854804590344429, 0.023201344534754753, -0.03104454092681408, -0.02264852076768875, -0.036520957946777344, -0.03759205341339111, -0.030301682651042938, 0.01997077837586403, -0.06651167571544647, -0.04833757504820824, -0.017880411818623543, -0.0351216197013855, -0.009873096831142902, -0.04674820601940155, 0.06309107691049576, -0.008508311584591866, -0.07552962005138397, 0.022372109815478325, -0.03386048972606659, 0.03011165000498295, -0.0076661184430122375, 0.078570157289505, -0.027952179312705994, -0.017880411818623543, 0.0004756232665386051, -0.12424726784229279, 0.0013971771113574505, 0.0053252531215548515, -0.051101695746183395, 0.030146200209856033, -0.011091037653386593, -0.0009112963452935219, -0.04612627997994423, -0.08693162351846695, 0.05586980655789375, 0.013492368161678314, 0.01858871802687645, -0.03011165000498295, -0.05386582016944885, -0.011652500368654728, 0.0492013655602932, 0.002117360243573785, 0.006763460114598274, 0.03446514159440994, -0.02584453672170639, 0.01098738331347704, 0.039837900549173355, 0.04457145929336548, 0.0322711206972599, 0.004949504975229502, -0.031752847135066986, -0.040701691061258316, 0.032823942601680756, -0.03987245261669159, -0.04367312043905258, -0.04788840562105179, 0.012179411016404629, 0.017811307683587074, 0.004984056577086449, 0.029144207015633583, 0.05276016891002655, 0.013285059481859207, 0.02959337644279003, 0.021197358146309853, -0.0020568950567394495, -0.03969969600439072, 0.04598807170987129, -0.008080736733973026, -0.038766805082559586, 0.007765454240143299, 0.0029455169569700956, -0.03600268438458443, 0.005528243258595467, -0.030958160758018494, -0.014347518794238567, 0.056802697479724884, -0.07283460348844528, 0.0251535065472126, -0.027485733851790428, 0.018104996532201767, -0.05656083673238754, 0.01033090427517891, 0.026708325371146202, 0.02278672717511654, 0.02615549974143505, 0.004616946913301945, 0.009225255809724331, -0.012939544394612312, 0.002977909054607153, 0.0975043848156929, 0.09232165664434433, -0.01896878518164158, 0.018312305212020874, -0.03237477317452431, 0.0017772438004612923, 0.011937550269067287, -0.020730910822749138, -0.020679084584116936, 0.01220532413572073, -0.03562261536717415, 0.045158836990594864, 0.03641730174422264, 0.05901399627327919, -0.011445190757513046 ]
24,526
schedula.utils.blue
add_data
Add a single data node to the dispatcher. :param data_id: Data node id. If None will be assigned automatically ('unknown<%d>') not in dmap. :type data_id: str, optional :param default_value: Data node default value. This will be used as input if it is not specified as inputs in the ArciDispatch algorithm. :type default_value: T, optional :param initial_dist: Initial distance in the ArciDispatch algorithm when the data node default value is used. :type initial_dist: float, int, optional :param wait_inputs: If True ArciDispatch algorithm stops on the node until it gets all input estimations. :type wait_inputs: bool, optional :param wildcard: If True, when the data node is used as input and target in the ArciDispatch algorithm, the input value will be used as input for the connected functions, but not as output. :type wildcard: bool, optional :param function: Data node estimation function. This can be any function that takes only one dictionary (key=function node id, value=estimation of data node) as input and return one value that is the estimation of the data node. :type function: callable, optional :param callback: Callback function to be called after node estimation. This can be any function that takes only one argument that is the data node estimation output. It does not return anything. :type callback: callable, optional :param description: Data node's description. :type description: str, optional :param filters: A list of functions that are invoked after the invocation of the main function. :type filters: list[function], optional :param await_result: If True the Dispatcher waits data results before assigning them to the solution. If a number is defined this is used as `timeout` for `Future.result` method [default: False]. Note this is used when asynchronous or parallel execution is enable. :type await_result: bool|int|float, optional :param kwargs: Set additional node attributes using key=value. :type kwargs: keyword arguments, optional :return: Self. :rtype: BlueDispatcher
def add_data(self, data_id=None, default_value=EMPTY, initial_dist=0.0, wait_inputs=False, wildcard=None, function=None, callback=None, description=None, filters=None, await_result=None, **kwargs): """ Add a single data node to the dispatcher. :param data_id: Data node id. If None will be assigned automatically ('unknown<%d>') not in dmap. :type data_id: str, optional :param default_value: Data node default value. This will be used as input if it is not specified as inputs in the ArciDispatch algorithm. :type default_value: T, optional :param initial_dist: Initial distance in the ArciDispatch algorithm when the data node default value is used. :type initial_dist: float, int, optional :param wait_inputs: If True ArciDispatch algorithm stops on the node until it gets all input estimations. :type wait_inputs: bool, optional :param wildcard: If True, when the data node is used as input and target in the ArciDispatch algorithm, the input value will be used as input for the connected functions, but not as output. :type wildcard: bool, optional :param function: Data node estimation function. This can be any function that takes only one dictionary (key=function node id, value=estimation of data node) as input and return one value that is the estimation of the data node. :type function: callable, optional :param callback: Callback function to be called after node estimation. This can be any function that takes only one argument that is the data node estimation output. It does not return anything. :type callback: callable, optional :param description: Data node's description. :type description: str, optional :param filters: A list of functions that are invoked after the invocation of the main function. :type filters: list[function], optional :param await_result: If True the Dispatcher waits data results before assigning them to the solution. If a number is defined this is used as `timeout` for `Future.result` method [default: False]. Note this is used when asynchronous or parallel execution is enable. :type await_result: bool|int|float, optional :param kwargs: Set additional node attributes using key=value. :type kwargs: keyword arguments, optional :return: Self. :rtype: BlueDispatcher """ kwargs.update({ 'data_id': data_id, 'filters': filters, 'wait_inputs': wait_inputs, 'wildcard': wildcard, 'function': function, 'callback': callback, 'initial_dist': initial_dist, 'default_value': default_value, 'description': description, 'await_result': await_result }) self.deferred.append(('add_data', kwargs)) return self
(self, data_id=None, default_value=empty, initial_dist=0.0, wait_inputs=False, wildcard=None, function=None, callback=None, description=None, filters=None, await_result=None, **kwargs)
[ 0.008459581062197685, -0.014075996354222298, 0.0016627853037789464, -0.008445598185062408, 0.044148292392492294, 0.04974140226840973, -0.03922635316848755, -0.0327756330370903, -0.009545576758682728, -0.028319787234067917, 0.009457019157707691, 0.008697288110852242, -0.01691916212439537, 0.004963885992765427, 0.018224220722913742, 0.0388534776866436, -0.004283390939235687, 0.08397123962640762, -0.018000496551394463, 0.01583782583475113, -0.0312654934823513, -0.002400376833975315, -0.03025873191654682, 0.0002624683838803321, 0.01112096942961216, 0.0005150323268026114, -0.011139613576233387, -0.025504587218165398, 0.01813100278377533, 0.03184344619512558, -0.010412508621811867, -0.05302269384264946, -0.040941573679447174, -0.024963919073343277, 0.0002133830130333081, 0.044073715806007385, 0.015222583897411823, 0.0025075781159102917, -0.05171763524413109, -0.009965059347450733, 0.02544865570962429, -0.029307901859283447, -0.030836686491966248, 0.005019817501306534, 0.03285020589828491, 0.05074816197156906, -0.03937550261616707, 0.04127715900540352, -0.028767235577106476, -0.0487346425652504, -0.0033628582023084164, -0.07054777443408966, -0.02872994728386402, 0.07136809825897217, -0.012481959536671638, 0.056639574468135834, -0.0002808207937050611, 0.05339556932449341, 0.029363833367824554, 0.013507363386452198, 0.05365658178925514, 0.02529950626194477, 0.03395018354058266, -0.03389425575733185, -0.0380890890955925, 0.03986023738980293, -0.021719915792346, 0.0025541875511407852, -0.02878587879240513, 0.07300874590873718, -0.009918450377881527, 0.023733435198664665, 0.03613149747252464, 0.003717088606208563, 0.10142175108194351, 0.017497116699814796, 0.05529722571372986, -0.05354471877217293, 0.011381980963051319, 0.026455415412783623, -0.0014320694608613849, -0.038890767842531204, -0.024330032989382744, 0.006343520246446133, -0.0006793299689888954, 0.012864155694842339, -0.029382478445768356, 0.010347255505621433, -0.08203230053186417, -0.07274772971868515, -0.0224656630307436, -0.07192741334438324, -0.04146359860897064, 0.055036213248968124, 0.013414145447313786, -0.061747949570417404, 0.020769085735082626, -0.042395781725645065, 0.05630398541688919, 0.06062932685017586, 0.000007205318070191424, 0.04142631217837334, 0.0518294982612133, -0.021272465586662292, 0.04291780665516853, -0.11864852905273438, -0.02886045351624489, 0.03628064692020416, -0.07725951075553894, 0.003656496526673436, -0.04556521400809288, 0.018186932429671288, 0.03374510258436203, 0.05872766673564911, -0.018541162833571434, 0.04549063742160797, 0.00043404873576946557, 0.014448870904743671, 0.0016767681809142232, 0.0026310926768928766, -0.04101615026593208, 0.044819463044404984, -0.02604525536298752, -0.0051410011947155, -0.015064112842082977, 0.023863941431045532, 0.014588698744773865, 0.03141464293003082, -0.032104458659887314, -0.04250764474272728, 0.014728526584804058, 0.009093466214835644, -0.005080409348011017, 0.0663342997431755, -0.00248660403303802, 0.02423681505024433, 0.04683298617601395, 0.041575461626052856, -0.03389425575733185, 0.038741618394851685, -0.007121894974261522, -0.04754144698381424, 0.027536751702427864, 0.019594533368945122, 0.0015858800616115332, -0.034099332988262177, -0.01568867638707161, 0.005252863746136427, -0.047355007380247116, 0.01062691118568182, -0.011736211366951466, 0.017031023278832436, -0.011773498728871346, 0.026007967069745064, 0.02490798942744732, -0.016164090484380722, -0.00529481191188097, -0.07476125657558441, -0.022950399667024612, 0.0029154091607779264, -0.012006545439362526, -0.022148720920085907, 0.05186678469181061, -0.011531131342053413, -0.003099515801295638, 0.00038423508522100747, -0.013535329140722752, 0.0038475943729281425, -0.0036145481280982494, 0.07181555032730103, 0.002572831232100725, -0.04783974587917328, -0.04243307188153267, 0.049480389803647995, -0.05567010119557381, -0.027685901150107384, -0.009815909899771214, -0.04291780665516853, 0.04235849529504776, -0.029307901859283447, -0.03404340520501137, 0.008133315481245518, -0.0026683800388127565, 0.004539742134511471, -0.025504587218165398, -0.028674017637968063, -0.01157774031162262, 0.011587061919271946, 0.04403642937541008, 0.016947127878665924, 0.010533692315220833, -0.04325339198112488, -0.02147754654288292, 0.019258946180343628, -0.011521808803081512, -0.014663273468613625, 0.032421402633190155, -0.012845512479543686, 0.06133778765797615, -0.019389452412724495, 0.03372646123170853, -0.06439535319805145, 0.07793068140745163, 0.00297134043648839, -0.00544862262904644, -0.04921937733888626, -0.007704510819166899, 0.04608723521232605, -0.018643703311681747, -0.03801451250910759, -0.019706394523382187, 0.016425102949142456, -0.006520635448396206, 0.02994178794324398, -0.0023444457910954952, -0.07125623524188995, -0.02994178794324398, -0.02011655643582344, 0.02848757989704609, -0.009648117236793041, 0.03499423339962959, 0.028357073664665222, 0.02414359711110592, 0.0035959044471383095, 0.00016225848230533302, -0.01554884947836399, 0.022409731522202492, -0.014607341960072517, 0.04015854001045227, -0.03441627696156502, 0.024591045454144478, 0.00024426166783086956, 0.018112357705831528, -0.053358279168605804, 0.032104458659887314, -0.052761681377887726, 0.019557245075702667, 0.018727600574493408, -0.034155264496803284, 0.027667256072163582, 0.012892121449112892, -0.0198182575404644, 0.022148720920085907, -0.04824990779161453, -0.01773948408663273, -0.020918235182762146, 0.018531842157244682, 0.034546785056591034, -0.013740410096943378, -0.023360561579465866, -0.02475883811712265, -0.01957589015364647, -0.013442110270261765, 0.0003283039841335267, -0.01797253079712391, 0.007149860728532076, -0.01677001267671585, 0.004271738696843386, 0.03536710515618324, -0.02522493153810501, 0.010953175835311413, 0.0019039883045479655, -0.05593111366033554, 0.120363749563694, -0.04862277954816818, -0.04097886011004448, -0.028301142156124115, -0.032421402633190155, -0.01088792271912098, 0.010757417418062687, 0.04638553410768509, 0.025579161942005157, 0.06875798106193542, -0.06025645136833191, -0.03251462057232857, -0.0213283970952034, -0.01592172309756279, -0.06271742284297943, 0.019482670351862907, -0.039114490151405334, -0.0031391335651278496, -0.013861593790352345, -0.04657197371125221, -0.05567010119557381, -0.020619936287403107, -0.002359593752771616, -0.0018830141052603722, 0.07573072612285614, -0.01729203574359417, -0.06525296717882156, -0.03573998063802719, 0.018774209544062614, -0.024814769625663757, 0.03613149747252464, 0.028468936681747437, 0.019370809197425842, -0.06111406162381172, 0.0070892684161663055, 0.049554966390132904, 0.01806574873626232, -0.019314877688884735, -0.05074816197156906, 0.0335213802754879, -0.05089731141924858, -0.068534255027771, -0.027331670746207237, 0.010543014854192734, 0.027536751702427864, -0.06040560081601143, -0.014197180978953838, 0.029512982815504074, -0.009918450377881527, 0.001818926422856748, -0.025635093450546265, 0.038965340703725815, 0.010179462842643261, 0.04060598835349083, -0.011326050385832787, 0.03892805427312851, 0.040568698197603226, -0.04008396342396736, -0.014998859725892544, -0.05608026310801506, -0.025467298924922943, 0.036075565963983536, -0.002509908750653267, 0.07703578472137451, -0.015940366312861443, 0.03700775280594826, 0.029512982815504074, 0.0009584029321558774, -0.01652764342725277, 0.0047657969407737255, -0.013796340674161911, 0.024106308817863464, -0.028674017637968063, 0.013553973287343979, -0.05552095174789429, 0.048883792012929916, 0.04068056121468544, -0.049107518047094345, 0.04899565503001213, -0.007574004586786032, 0.010337933897972107, 0.00941040925681591, -0.006315554957836866, 0.05704973265528679, -0.026026610285043716, 0.04060598835349083, -0.020545361563563347, 0.007275705691426992, -0.022745318710803986, -0.02872994728386402, 0.005835479591041803, 0.06215810775756836, -0.009778622537851334, 0.02872994728386402, -0.05589382350444794, 0.015026825480163097, 0.0006635993486270308, 0.003835942130535841, 0.007303670980036259, -0.012500603683292866, 0.041128009557724, -0.030836686491966248, -0.02147754654288292, -0.027704544365406036, 0.02787233702838421, 0.06972745060920715, -0.03719418868422508, 0.027536751702427864, -0.04474489018321037, -0.00571429543197155, 0.03777214512228966, 0.02910282276570797, -0.011987901292741299, 0.0023444457910954952, -0.023062262684106827, -0.02636219747364521, -0.006404112558811903, -0.03870432823896408, 0.006101151928305626, -0.018112357705831528, -0.015968332067131996, 0.038368742913007736, -0.004586351104080677, 0.024945275858044624, 0.04030768945813179, -0.02695879526436329, 0.006814274005591869, 0.034155264496803284, 0.009321851655840874, 0.025504587218165398, 0.035534899681806564, -0.07330704480409622, -0.007839677855372429, 0.057012446224689484, 0.00004012765930383466, -0.027779119089245796, -0.037287406623363495, 0.00918668508529663, -0.005262185353785753, 0.006935457699000835, 0.03700775280594826, 0.0906829759478569, -0.0028338429983705282, 0.0449686124920845, -0.04347711801528931, -0.023174123838543892, 0.04936852678656578, 0.03532981872558594, 0.007205791771411896, 0.00578887015581131, 0.05544637516140938, -0.007373584900051355, -0.003966447897255421, -0.023136837407946587, 0.0434025414288044, -0.002107903826981783, 0.0059007322415709496, -0.01025403756648302, 0.03601963445544243, 0.026101185008883476, 0.05708702281117439, 0.031041767448186874, 0.01760897785425186, 0.019948763772845268, -0.0031484554056078196, -0.03695182129740715, 0.006390129681676626, -0.0006455382681451738, 0.00281752971932292, -0.00269634579308331, -0.05402945354580879, 0.010011669248342514, 0.010449795983731747, -0.013749731704592705, -0.06364960223436356, 0.08255431801080704, 0.006632497534155846, -0.004502454306930304, -0.008739235810935497, 0.028990959748625755, -0.06894441694021225, -0.11864852905273438, -0.03156379237771034, 0.010580302216112614, 0.03480779379606247, 0.03395018354058266, -0.023509711027145386, 0.057870056480169296, 0.012379419058561325, 0.029196040704846382, 0.06543940305709839, -0.022596169263124466, -0.05507350340485573, -0.03132142126560211, -0.05995815247297287, -0.014085317961871624, -0.0426567941904068, -0.017851347103714943, -0.06010730192065239, -0.032421402633190155, -0.009592185728251934, -0.004632960539311171, 0.05924969166517258, 0.04907022789120674, -0.055185362696647644, -0.014131927862763405, -0.05578196421265602, 0.0024306729901582003, 0.007550700102001429, 0.009219312109053135, -0.050076987594366074, 0.06607328355312347, 0.005280829034745693, -0.039897527545690536, -0.05190407112240791, -0.05783277004957199, -0.04258222132921219, 0.0936659723520279, -0.04433472827076912, 0.02490798942744732, 0.015175974927842617, -0.05529722571372986, 0.0019342843443155289, 0.04899565503001213, 0.008608730509877205, 0.02574695460498333, 0.0016814291011542082, -0.04082971066236496, -0.008133315481245518, 0.020526718348264694, 0.0032113781198859215, 0.013749731704592705, 0.03342816233634949, 0.06357502937316895, -0.035553544759750366, 0.038965340703725815, -0.004679569508880377, -0.006767664570361376, -0.03115362860262394, -0.00039530478534288704, 0.008729914203286171, 0.011335371993482113, -0.03214174509048462, -0.06599871069192886, 0.007135877851396799, -0.024591045454144478, 0.016555609181523323, -0.01859709434211254, -0.038816191256046295, 0.017767449840903282, 0.001792126102373004, 0.020787730813026428, -0.03663487732410431, 0.04053141176700592, 0.02621304802596569, -0.10097429901361465, -0.06734105944633484, -0.03521795570850372, 0.07364263385534286, 0.00626428471878171, -0.0006938953883945942, -0.026567278429865837, 0.03346544876694679, -0.06282928586006165, -0.06525296717882156, 0.014318364672362804, 0.018410658463835716, -0.06230725720524788, -0.012360775843262672, 0.04832448065280914, 0.05287354439496994, -0.004483810625970364, 0.027629969641566277, 0.028916385024785995, 0.017394576221704483, -0.13222114741802216, -0.0860593393445015, 0.002703336998820305, 0.026157116517424583, -0.00016764768224675208, -0.08359836786985397, 0.032272253185510635, -0.0004777449066750705, 0.017711518332362175, 0.07106979936361313, 0.039189066737890244, -0.028096061199903488, -0.03230953961610794, 0.0002953861840069294, 0.027107946574687958, 0.007079946808516979, 0.001069682533852756, -0.014700560830533504, 0.03436034545302391, -0.016415782272815704, 0.02779776230454445, 0.007247739937156439, -0.05011427775025368, 0.048026181757450104, -0.019519958645105362, 0.007340958341956139, 0.07062234729528427, -0.013721765950322151, 0.022596169263124466, -0.049331240355968475, -0.02520628832280636, -0.05514807626605034, -0.009937094524502754, 0.03422984108328819, 0.006590549368411303, -0.025355437770485878, -0.051754921674728394, 0.0005173627869226038, -0.030836686491966248, -0.06737834960222244, -0.021141961216926575, -0.10776060819625854, 0.004963885992765427, 0.04537877440452576, 0.012053154408931732, -0.039263639599084854, -0.007420194335281849, -0.006944779772311449, -0.04403642937541008, 0.05507350340485573, -0.009438375011086464, -0.046348247677087784, 0.020097913220524788, 0.023435136303305626, -0.05127018690109253, 0.025858817622065544, -0.00956421997398138, 0.03499423339962959, -0.0043649571016430855, 0.051158323884010315, 0.06133778765797615, -0.012155694887042046, -0.04090428724884987, 0.0036588269285857677, -0.04068056121468544, 0.0037334016524255276, 0.002251227153465152, 0.005215576384216547, -0.057944633066654205, 0.022353801876306534, -0.03648572787642479, -0.03268241137266159, 0.0449313260614872, 0.017869990319013596, 0.06074118614196777, 0.010123531334102154, -0.004870667587965727, -0.054365042597055435, 0.027629969641566277, 0.00884177628904581, 0.027909625321626663, 0.018727600574493408, 0.03665352240204811, -0.023043617606163025, 0.02880452200770378, -0.024031734094023705, -0.013227707706391811, -0.017655586823821068, 0.007098590489476919, -0.06301572173833847, 0.007653240580111742, 0.0054206568747758865, -0.011848073452711105, -0.007839677855372429, 0.003821959253400564, -0.013712444342672825, 0.03986023738980293, 0.011866717599332333, 0.03670945391058922, 0.06834781914949417, 0.06812409311532974, -0.05574467405676842, 0.025728311389684677, 0.0525752454996109, -0.0419110469520092, -0.0342857725918293, 0.05544637516140938, 0.030128225684165955, -0.0034164588432759047, -0.023658860474824905, 0.006581227295100689, -0.006693089846521616, -0.06450721621513367, -0.008012131787836552, -0.01737593300640583, 0.043924566358327866, 0.0860593393445015, 0.01774880662560463, 0.009014231152832508, 0.0022302530705928802, -0.015520883724093437, 0.023789366707205772, -0.05205322057008743, 0.036597590893507004, 0.05891410633921623, -0.0540667399764061, -0.023602928966283798, -0.04653468355536461, 0.046049948781728745, -0.03383832424879074, 0.010431152768433094, 0.018158968538045883, -0.009843875654041767, 0.0027849033940583467, 0.013199742883443832, 0.03542303666472435, 0.05470062792301178, -0.05011427775025368, -0.0036145481280982494, -0.014625986106693745, -0.009918450377881527, -0.0006076682475395501, 0.01554884947836399, 0.008976943790912628, -0.0003154864243697375, -0.02332327328622341, -0.006217675283551216, 0.007205791771411896, 0.004949903581291437, -0.04537877440452576, 0.0350501649081707, -0.00036733923479914665, 0.035851843655109406, 0.006977406330406666, 0.014942929148674011, -0.046049948781728745, -0.04060598835349083, -0.02917739748954773, -0.054365042597055435, -0.03596370667219162, -0.010384542867541313, -0.006846900098025799, 0.02140297181904316, 0.05511078983545303, 0.01608019508421421, -0.015157331712543964, 0.04123987257480621, 0.009438375011086464, -0.03594506159424782, 0.01697509177029133, 0.01436497364193201, -0.03527388721704483, 0.0579073429107666, 0.044297441840171814, -0.04325339198112488, 0.04996512830257416, -0.05742260813713074, -0.010794704779982567, -0.02483341284096241, 0.05317184329032898, -0.026231691241264343, 0.02408766560256481, -0.017562368884682655, 0.006455382332205772, 0.08546274155378342, 0.01025403756648302, 0.021272465586662292, -0.014803101308643818, 0.03700775280594826, -0.0861339122056961, 0.045975375920534134, 0.002572831232100725, 0.030370593070983887, 0.07509683817625046, 0.05708702281117439, 0.005779548082500696, 0.005891410633921623, -0.052687108516693115, 0.04433472827076912, -0.011792142875492573, -0.03152650222182274, 0.03460271283984184, -0.034099332988262177, -0.014616663567721844, 0.033260367810726166, -0.0008325579110532999, 0.01135401614010334, -0.013507363386452198, 0.011279440484941006, 0.02490798942744732, -0.010598945431411266, -0.0008174098911695182, 0.01252856943756342, 0.01950131356716156, -0.019389452412724495, 0.03518066927790642, 0.02278260700404644, -0.01684458740055561, 0.019687751308083534, 0.016108160838484764, 0.049032941460609436, -0.07118166238069534, 0.025355437770485878, -0.015679355710744858, 0.049629539251327515, -0.009387104772031307, 0.005784209351986647, 0.06301572173833847, -0.011941292323172092, 0.08695423603057861 ]
24,527
schedula.utils.blue
add_dispatcher
Add a single sub-dispatcher node to dispatcher. :param dsp: Child dispatcher that is added as sub-dispatcher node to the parent dispatcher. :type dsp: BlueDispatcher | Dispatcher | dict[str, list] :param inputs: Inputs mapping. Data node ids from parent dispatcher to child sub-dispatcher. If `None` all child dispatcher nodes are used as inputs. :type inputs: dict[str, str | list[str]] | tuple[str] | (str, ..., dict[str, str | list[str]]) :param outputs: Outputs mapping. Data node ids from child sub-dispatcher to parent dispatcher. If `None` all child dispatcher nodes are used as outputs. :type outputs: dict[str, str | list[str]] | tuple[str] | (str, ..., dict[str, str | list[str]]) :param dsp_id: Sub-dispatcher node id. If None will be assigned as <dsp.name>. :type dsp_id: str, optional :param input_domain: A function that checks if input values satisfy the function domain. This can be any function that takes the a dictionary with the inputs of the sub-dispatcher node and returns True if input values satisfy the domain, otherwise False. .. note:: This function is invoked every time that a data node reach the sub-dispatcher node. :type input_domain: (dict) -> bool, optional :param weight: Node weight. It is a weight coefficient that is used by the dispatch algorithm to estimate the minimum workflow. :type weight: float, int, optional :param inp_weight: Edge weights from data nodes to the sub-dispatcher node. It is a dictionary (key=data node id) with the weight coefficients used by the dispatch algorithm to estimate the minimum workflow. :type inp_weight: dict[str, int | float], optional :param description: Sub-dispatcher node's description. :type description: str, optional :param include_defaults: If True the default values of the sub-dispatcher are added to the current dispatcher. :type include_defaults: bool, optional :param await_domain: If True the Dispatcher waits all input results before executing the `input_domain` function. If a number is defined this is used as `timeout` for `Future.result` method [default: True]. Note this is used when asynchronous or parallel execution is enable. :type await_domain: bool|int|float, optional :param inputs_prefix: Add a prefix to parent dispatcher inputs nodes. :type inputs_prefix: str :param outputs_prefix: Add a prefix to parent dispatcher outputs nodes. :type outputs_prefix: str :param kwargs: Set additional node attributes using key=value. :type kwargs: keyword arguments, optional :return: Self. :rtype: BlueDispatcher
def add_dispatcher(self, dsp, inputs=None, outputs=None, dsp_id=None, input_domain=None, weight=None, inp_weight=None, description=None, include_defaults=False, await_domain=None, inputs_prefix='', outputs_prefix='', **kwargs): """ Add a single sub-dispatcher node to dispatcher. :param dsp: Child dispatcher that is added as sub-dispatcher node to the parent dispatcher. :type dsp: BlueDispatcher | Dispatcher | dict[str, list] :param inputs: Inputs mapping. Data node ids from parent dispatcher to child sub-dispatcher. If `None` all child dispatcher nodes are used as inputs. :type inputs: dict[str, str | list[str]] | tuple[str] | (str, ..., dict[str, str | list[str]]) :param outputs: Outputs mapping. Data node ids from child sub-dispatcher to parent dispatcher. If `None` all child dispatcher nodes are used as outputs. :type outputs: dict[str, str | list[str]] | tuple[str] | (str, ..., dict[str, str | list[str]]) :param dsp_id: Sub-dispatcher node id. If None will be assigned as <dsp.name>. :type dsp_id: str, optional :param input_domain: A function that checks if input values satisfy the function domain. This can be any function that takes the a dictionary with the inputs of the sub-dispatcher node and returns True if input values satisfy the domain, otherwise False. .. note:: This function is invoked every time that a data node reach the sub-dispatcher node. :type input_domain: (dict) -> bool, optional :param weight: Node weight. It is a weight coefficient that is used by the dispatch algorithm to estimate the minimum workflow. :type weight: float, int, optional :param inp_weight: Edge weights from data nodes to the sub-dispatcher node. It is a dictionary (key=data node id) with the weight coefficients used by the dispatch algorithm to estimate the minimum workflow. :type inp_weight: dict[str, int | float], optional :param description: Sub-dispatcher node's description. :type description: str, optional :param include_defaults: If True the default values of the sub-dispatcher are added to the current dispatcher. :type include_defaults: bool, optional :param await_domain: If True the Dispatcher waits all input results before executing the `input_domain` function. If a number is defined this is used as `timeout` for `Future.result` method [default: True]. Note this is used when asynchronous or parallel execution is enable. :type await_domain: bool|int|float, optional :param inputs_prefix: Add a prefix to parent dispatcher inputs nodes. :type inputs_prefix: str :param outputs_prefix: Add a prefix to parent dispatcher outputs nodes. :type outputs_prefix: str :param kwargs: Set additional node attributes using key=value. :type kwargs: keyword arguments, optional :return: Self. :rtype: BlueDispatcher """ kwargs.update({ 'include_defaults': include_defaults, 'await_domain': await_domain, 'weight': weight, 'input_domain': input_domain, 'dsp_id': dsp_id, 'description': description, 'outputs': outputs, 'inputs': inputs, 'inp_weight': inp_weight, 'dsp': dsp, 'inputs_prefix': inputs_prefix, 'outputs_prefix': outputs_prefix }) self.deferred.append(('add_dispatcher', kwargs)) return self
(self, dsp, inputs=None, outputs=None, dsp_id=None, input_domain=None, weight=None, inp_weight=None, description=None, include_defaults=False, await_domain=None, inputs_prefix='', outputs_prefix='', **kwargs)
[ -0.04608223959803581, -0.006290338467806578, -0.031709685921669006, -0.0009293611510656774, -0.0018528588116168976, 0.04641997814178467, -0.05902879685163498, -0.00002127342850144487, 0.006623384077101946, -0.008466861210763454, 0.023022357374429703, 0.02863253280520439, 0.0026854726020246744, 0.047170501202344894, 0.036832019686698914, 0.0030325904954224825, 0.010376009158790112, 0.054938435554504395, -0.010047654621303082, -0.0008027100120671093, -0.02664364129304886, -0.004010618664324284, 0.05801558867096901, 0.0343552865087986, -0.05306212231516838, 0.002884830813854933, -0.018556732684373856, -0.006332555320113897, -0.03906483203172684, 0.00005409057848737575, 0.024823617190122604, -0.016445880755782127, -0.01900704763829708, -0.03549983724951744, -0.00945192575454712, 0.056739695370197296, -0.041316404938697815, 0.005535122472792864, -0.07456466555595398, 0.02737540192902088, 0.005657082889229059, -0.04713297635316849, 0.03476807475090027, -0.013800280168652534, 0.04619481787085533, 0.09516657888889313, -0.022478226572275162, 0.01729022152721882, 0.00046819867566227913, -0.013997293077409267, 0.018097035586833954, -0.08863701671361923, -0.03429899737238884, 0.06090511009097099, -0.01960746757686138, 0.0448063462972641, -0.00009271623275708407, 0.02013283595442772, 0.03118431754410267, -0.006914212368428707, 0.02910161018371582, 0.010404153726994991, -0.013659556396305561, -0.017543524503707886, 0.011342310346662998, -0.012984083965420723, 0.001430688425898552, -0.015235659666359425, -0.04964723438024521, 0.0537751242518425, -0.03484312817454338, -0.04187930002808571, -0.03668191283941269, -0.04439355805516243, 0.08023113012313843, 0.007964947260916233, 0.123086117208004, -0.03589386120438576, 0.051711179316043854, 0.0048971762880682945, 0.043943244963884354, -0.02155883237719536, -0.015545250847935677, 0.04863402619957924, 0.004608693066984415, 0.03608149290084839, -0.011210968717932701, 0.0011310647241771221, -0.09771836549043655, -0.04236714169383049, -0.017787445336580276, -0.0573776438832283, 0.01766548492014408, 0.05580154061317444, -0.05358749255537987, -0.008692018687725067, -0.03574375808238983, -0.025348985567688942, 0.02951439842581749, 0.05084807425737381, -0.03281670808792114, 0.03399878740310669, -0.016352064907550812, 0.0072331856936216354, 0.02790077030658722, -0.041916824877262115, -0.010028891265392303, 0.001658191322349012, -0.06597115844488144, -0.0259869322180748, 0.020245414227247238, 0.044318508356809616, 0.031465765088796616, 0.04630739986896515, -0.027206534519791603, 0.002941120183095336, -0.028219742700457573, -0.009170478209853172, 0.03279794752597809, 0.018509825691580772, -0.07156256586313248, 0.03311691805720329, 0.01569535583257675, -0.012468097731471062, -0.0045242588967084885, 0.016952484846115112, -0.025255169719457626, 0.01624886877834797, 0.016455262899398804, 0.004657946527004242, 0.030902869999408722, 0.015573395416140556, -0.03150328993797302, 0.014710292220115662, 0.0686730444431305, 0.024241959676146507, 0.02155883237719536, 0.04803360626101494, -0.02653106115758419, -0.029064083471894264, -0.02116480842232704, -0.04075351357460022, 0.04439355805516243, 0.02945810928940773, -0.04683276638388634, 0.008429334498941898, -0.008124434389173985, 0.014203687198460102, -0.025836827233433723, 0.021540069952607155, -0.06675920635461807, 0.037432439625263214, 0.027394166216254234, 0.03210370987653732, -0.023679066449403763, -0.014325647614896297, -0.04964723438024521, -0.00013185494753997773, 0.013425017707049847, 0.031034212559461594, -0.020827071741223335, -0.07242567092180252, 0.036832019686698914, -0.07422693073749542, 0.013481306843459606, -0.04619481787085533, 0.044543664902448654, -0.004763489123433828, 0.0161362886428833, 0.08826175332069397, 0.023528961464762688, -0.020095309242606163, -0.02180275321006775, -0.00742550753057003, -0.055651433765888214, -0.04623234644532204, -0.0015432671643793583, -0.02336009405553341, 0.018209615722298622, 0.01210221741348505, 0.07422693073749542, 0.015601539984345436, 0.016455262899398804, -0.004062217194586992, 0.01739341951906681, 0.0032272578682750463, -0.023078646510839462, 0.06492041796445847, 0.04964723438024521, 0.036306653171777725, 0.05006002262234688, 0.0007558022043667734, -0.03262908011674881, -0.041128773242235184, 0.0011809043353423476, 0.029026558622717857, 0.00856067705899477, -0.01072312705218792, 0.07520261406898499, -0.009784970432519913, 0.005000373348593712, -0.000538267195224762, 0.0424046665430069, 0.03790151700377464, -0.033079393208026886, 0.004850268363952637, 0.010601166635751724, 0.03566870465874672, -0.016727328300476074, -0.06687178462743759, -0.019644994288682938, -0.007402053568512201, -0.03649428114295006, -0.03780770301818848, -0.01805012859404087, -0.008870268240571022, -0.05538875237107277, -0.0153857646510005, 0.018181471154093742, -0.04386819154024124, -0.008251084946095943, 0.06901077926158905, -0.02169017493724823, -0.027093956246972084, -0.05820322036743164, -0.018716219812631607, 0.018331576138734818, -0.031765975058078766, 0.020357992500066757, -0.014635239727795124, 0.010563640855252743, -0.018697455525398254, 0.06338184326887131, -0.014053582213819027, 0.02647477202117443, -0.015526487492024899, -0.011201586574316025, -0.009972602128982544, 0.04045330360531807, 0.039702776819467545, 0.0418417751789093, -0.022928541526198387, 0.013228004798293114, -0.09426595270633698, -0.01895075850188732, -0.0002025831345235929, 0.04308013990521431, 0.02981460839509964, 0.006918902974575758, 0.02850119024515152, 0.0014893232146278024, -0.05658959224820137, -0.02486114390194416, 0.007645974401384592, -0.0236040148884058, 0.04398076981306076, -0.06124284863471985, -0.03932751342654228, -0.02431701309978962, -0.043943244963884354, -0.005188004579395056, 0.0633067935705185, -0.028576243668794632, 0.08863701671361923, -0.08510954678058624, -0.054225437343120575, -0.0003075393906328827, -0.0376388318836689, -0.029026558622717857, 0.012468097731471062, 0.002158932387828827, -0.0014025437412783504, 0.020301703363656998, -0.002997409552335739, -0.038501936942338943, -0.029232952743768692, 0.001654673251323402, -0.022966068238019943, 0.024223197251558304, -0.036775730550289154, 0.016924340277910233, -0.05167365446686745, -0.013903477229177952, -0.012608821503818035, 0.027394166216254234, 0.0007452479912899435, 0.026137037202715874, 0.027938297018408775, -0.011539323255419731, -0.05606422573328018, 0.004045799374580383, 0.03906483203172684, -0.01756228692829609, 0.05688980221748352, -0.011745717376470566, 0.01487915962934494, -0.052912019193172455, -0.01243057195097208, 0.054825857281684875, 0.03493694216012955, -0.031409475952386856, -0.004873722326010466, 0.0215025432407856, 0.015188751742243767, -0.012271084822714329, -0.031334422528743744, 0.034261468797922134, 0.026568587869405746, -0.042517244815826416, -0.007613138761371374, -0.014344410970807076, 0.028951505199074745, -0.03422394394874573, 0.029251715168356895, -0.005685227457433939, 0.01742156408727169, 0.006623384077101946, -0.0003078325535170734, 0.00742550753057003, 0.09366553276777267, -0.033604759722948074, 0.03065894916653633, -0.04135393351316452, 0.04521913826465607, 0.032535262405872345, -0.0010196587536484003, 0.04919692128896713, 0.008968775160610676, 0.055839065462350845, 0.004475005902349949, -0.01849106140434742, -0.05861600860953331, -0.005980746820569038, -0.09651752561330795, 0.06747220456600189, -0.05336233228445053, 0.03932751342654228, 0.018856942653656006, 0.03411136567592621, 0.008312065154314041, -0.020207887515425682, 0.05910385027527809, -0.014325647614896297, 0.012655729427933693, 0.02910161018371582, -0.038877200335264206, 0.029308004304766655, 0.024035565555095673, 0.02086459845304489, -0.07340135425329208, -0.0289890319108963, -0.07617829740047455, -0.04169166833162308, -0.006459206808358431, -0.0005183314206078649, -0.032704129815101624, -0.044431086629629135, -0.024298250675201416, 0.03638170287013054, -0.007927421480417252, -0.0010032409336417913, 0.004901866894215345, -0.0008935939404182136, 0.05111075937747955, -0.0478084497153759, -0.021408727392554283, -0.02026417665183544, -0.013584503903985023, -0.008434025570750237, -0.05415038391947746, 0.023885460570454597, -0.00020067750301677734, 0.03292929008603096, 0.014400700107216835, -0.05066044256091118, 0.052386652678251266, -0.004167759791016579, -0.010901376605033875, 0.019072718918323517, -0.014044201001524925, -0.0025470945984125137, 0.0191196259111166, -0.031146790832281113, -0.017674865201115608, 0.06619631499052048, -0.0346742607653141, 0.003745589405298233, 0.02461722306907177, -0.013228004798293114, -0.0035298133734613657, 0.010873232036828995, 0.058240748941898346, -0.039102356880903244, 0.008476242423057556, -0.13464419543743134, -0.0448063462972641, 0.013284293934702873, 0.03788275271654129, -0.03525591641664505, -0.03137194737792015, 0.0352371521294117, -0.016624130308628082, 0.055839065462350845, 0.010957666672766209, 0.10679972171783447, 0.03846441209316254, 0.031203079968690872, 0.04176672175526619, 0.0059572928585112095, 0.020564386621117592, 0.006693745497614145, 0.013434398919343948, -0.07539024204015732, 0.04653255641460419, -0.07073698937892914, -0.07478982210159302, 0.033248260617256165, 0.05084807425737381, -0.005610174965113401, 0.016830524429678917, -0.003996545914560556, 0.025667957961559296, 0.05066044256091118, 0.023153699934482574, 0.04217950999736786, -0.012008401565253735, -0.006947048008441925, 0.04623234644532204, -0.010798179544508457, -0.02915789932012558, -0.025348985567688942, 0.038802146911621094, -0.012533769011497498, -0.0454067699611187, 0.05418791249394417, -0.04469376802444458, 0.045556873083114624, -0.005188004579395056, 0.022665858268737793, 0.011079627089202404, -0.01920406147837639, -0.00622935825958848, 0.004097397904843092, -0.05872858688235283, -0.04105372354388237, -0.005295892711728811, -0.004775215871632099, 0.007899276912212372, -0.0159768033772707, -0.04739565774798393, 0.05054786428809166, -0.005610174965113401, 0.07212546467781067, 0.07343888282775879, -0.0289890319108963, -0.03974030539393425, 0.030433792620897293, -0.033736102283000946, -0.03341712802648544, -0.02305988408625126, -0.06124284863471985, -0.06615878641605377, 0.015629684552550316, 0.010704363696277142, -0.03688830882310867, 0.08180723339319229, 0.0842839702963829, -0.038220491260290146, 0.011464270763099194, 0.018331576138734818, 0.05133591592311859, 0.05336233228445053, 0.002455624286085367, -0.027469217777252197, 0.012862123548984528, -0.045932136476039886, -0.01099519245326519, -0.038576990365982056, -0.047658342868089676, -0.009306510910391808, 0.04762081801891327, -0.012636966072022915, -0.046007189899683, -0.023810409009456635, -0.008129124529659748, -0.05122333765029907, 0.0597417987883091, 0.011389218270778656, 0.011576849967241287, 0.04139145836234093, -0.037263572216033936, -0.04319271817803383, 0.0077350991778075695, -0.041316404938697815, -0.0004617488302756101, -0.005971365142613649, 0.022496988996863365, -0.05696485564112663, 0.035049520432949066, -0.0012723745312541723, -0.03107173927128315, -0.025067538022994995, -0.025611668825149536, 0.022778436541557312, 0.027938297018408775, -0.005206767935305834, -0.06308163702487946, 0.03159710764884949, -0.04488139972090721, -0.0003462383465375751, -0.049084339290857315, -0.034861888736486435, 0.02103346586227417, -0.024392064660787582, 0.006801633629947901, -0.04356798157095909, 0.04247971996665001, 0.04754576459527016, 0.006098016165196896, -0.028369847685098648, 0.03754501789808273, 0.006914212368428707, -0.033604759722948074, 0.01003827340900898, 0.03649428114295006, 0.009095425717532635, -0.029139136895537376, 0.01696186698973179, 0.012017782777547836, -0.014400700107216835, -0.07775440067052841, 0.010516732931137085, 0.01275892648845911, 0.02103346586227417, -0.011173442006111145, 0.027825716882944107, -0.013500070199370384, 0.021070992574095726, -0.11453013122081757, -0.02259080484509468, 0.013987911865115166, 0.06383215636014938, 0.024842381477355957, -0.051711179316043854, -0.006107397843152285, -0.030377503484487534, -0.01660536788403988, 0.01895075850188732, 0.05726506561040878, -0.016014330089092255, -0.041504036635160446, -0.05216149240732193, 0.01761857606470585, 0.0337548665702343, 0.04499397799372673, 0.007050245068967342, 0.006224667653441429, 0.04075351357460022, -0.0030255543533712626, 0.038220491260290146, -0.03461797162890434, 0.044543664902448654, -0.012665110640227795, -0.011389218270778656, 0.0400405153632164, 0.010741890408098698, 0.011210968717932701, -0.01824714057147503, -0.03591262549161911, 0.007918039336800575, -0.04214198514819145, 0.03095916099846363, -0.01723393239080906, 0.004193558823317289, -0.017918786033988, 0.009015683084726334, 0.041128773242235184, -0.03473054990172386, -0.009372182190418243, -0.0271877720952034, -0.015798553824424744, 0.0729135125875473, -0.03210370987653732, 0.04623234644532204, 0.0352746807038784, -0.03536849468946457, -0.03518086299300194, 0.027525506913661957, 0.01155808661133051, -0.04289250820875168, -0.022665858268737793, -0.011389218270778656, 0.00945192575454712, 0.04056588187813759, 0.021070992574095726, 0.01733713038265705, -0.08623532950878143, 0.04822123795747757, 0.06420741975307465, -0.022909779101610184, -0.018960140645503998, 0.009240840561687946, 0.025855589658021927, -0.052499230951070786, 0.05580154061317444, -0.05107323080301285, 0.027806954458355904, -0.016642894595861435, -0.07546529918909073, -0.006149615161120892, 0.022966068238019943, -0.00008076940139289945, 0.05921642854809761, 0.023641539737582207, 0.039590198546648026, -0.11257876455783844, 0.013941003940999508, -0.020827071741223335, 0.06113027036190033, -0.040002986788749695, 0.02444835565984249, 0.012196032330393791, 0.008007165044546127, -0.0068719955161213875, -0.01846291683614254, 0.03281670808792114, -0.006984574254602194, -0.037507493048906326, 0.00798840168863535, 0.014654002152383327, 0.051373440772295, -0.030433792620897293, 0.01936354674398899, -0.060267165303230286, -0.009268985129892826, -0.019288495182991028, -0.00312875141389668, 0.0352371521294117, 0.029420584440231323, 0.0073926723562181, 0.038877200335264206, 0.009775589220225811, -0.03266660496592522, -0.04762081801891327, 0.022253068163990974, 0.02688756212592125, -0.02647477202117443, -0.03232887014746666, -0.013134188950061798, 0.011811388656497002, -0.03805162385106087, 0.018172089010477066, -0.06983636319637299, 0.020357992500066757, 0.028519952669739723, 0.010854469612240791, 0.042930036783218384, -0.022009149193763733, -0.021465018391609192, 0.046457502990961075, -0.013753372244536877, 0.0035509217996150255, 0.06668415665626526, -0.017843734472990036, -0.027412928640842438, -0.02431701309978962, 0.0442059263586998, -0.026099510490894318, -0.013021610677242279, -0.02401680313050747, 0.03047131933271885, -0.010319720022380352, -0.05216149240732193, 0.019870152696967125, -0.0031428239308297634, -0.031034212559461594, 0.010235286317765713, 0.013734608888626099, 0.051711179316043854, -0.02945810928940773, -0.03454291820526123, 0.02157759666442871, -0.019326021894812584, 0.0042052860371768475, 0.026662403717637062, -0.01884756051003933, 0.02067696675658226, -0.03722604364156723, -0.007824224419891834, -0.020095309242606163, 0.06807262450456619, 0.038802146911621094, -0.02193409577012062, -0.03394249826669693, -0.02606198377907276, -0.006585857830941677, 0.008415262214839458, -0.09509152919054031, -0.022384410724043846, 0.016980629414319992, 0.00830268394201994, 0.01654907874763012, 0.026699930429458618, -0.009208004921674728, 0.06627136468887329, 0.04683276638388634, -0.04728307947516441, 0.011164060793817043, 0.03925246372818947, -0.029007794335484505, 0.003893348854035139, 0.006332555320113897, -0.007889894768595695, 0.04923444613814354, -0.03651304543018341, -0.061543058604002, 0.004613384138792753, 0.0782797634601593, -0.014259976334869862, 0.020245414227247238, -0.04266735166311264, 0.0424421951174736, 0.07610324770212173, -0.012655729427933693, 0.04641997814178467, -0.027525506913661957, 0.07028667628765106, -0.024091854691505432, 0.04308013990521431, 0.001503395615145564, -0.02634343132376671, 0.031709685921669006, -0.0056054843589663506, -0.030696475878357887, 0.00806814432144165, -0.06052985042333603, 0.057452697306871414, -0.0015198133187368512, -0.004836196079850197, -0.0045336405746638775, 0.043230246752500534, -0.026024457067251205, 0.046344924718141556, -0.010901376605033875, 0.040190618485212326, 0.01036662794649601, 0.0007030309061519802, 0.01003827340900898, -0.03698212280869484, -0.0028027421794831753, 0.018997665494680405, 0.016042474657297134, -0.04638244956731796, 0.016746090725064278, -0.007847677916288376, -0.01245871651917696, -0.0034008168149739504, -0.021840279921889305, -0.021296149119734764, -0.0711122527718544, 0.038576990365982056, -0.005910384934395552, 0.03865204378962517, 0.016652274876832962, 0.05760280042886734, 0.050885602831840515, -0.0010079317726194859, 0.02831355854868889 ]