blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
3
264
content_id
stringlengths
40
40
detected_licenses
listlengths
0
85
license_type
stringclasses
2 values
repo_name
stringlengths
5
140
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
986 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
3.89k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
23 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
145 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
3
10.4M
extension
stringclasses
122 values
content
stringlengths
3
10.4M
authors
listlengths
1
1
author_id
stringlengths
0
158
5b3b381aa447927e84d3ea9cf6608752bce59231
b1d16b41a2638fb16a05935aade0885f60cc276b
/Homework1/testnewSequence.cpp
5ef42723cbb020acaedad6426089dbc2df0c63be
[]
no_license
Qiusi-Shen/Data-Structure-and-algorithm
529fbd5251a31c8701470bc4cfffd1f59a04899d
35970c6c03ebd729d30eff3a263493a44db35bec
refs/heads/master
2021-06-15T13:29:08.120562
2017-03-19T23:37:03
2017-03-19T23:37:03
null
0
0
null
null
null
null
UTF-8
C++
false
false
101
cpp
#include"newSequence.h" #include<iostream> #include <cassert> using namespace std; int main() { }
[ "noreply@github.com" ]
Qiusi-Shen.noreply@github.com
f1a4ea233bd0a069d8961a81eb701e993c4dc236
8931af9d13bc130e5942a89bb64d50cd7b916381
/UVALive/5061.cpp
6f6d41a1b9289ae421a8384cb1468790076d037c
[]
no_license
winoros/Acm
903483b2d0805bfcdabea05f268ee9cac03fac9e
eade17fccb7f9f780d31e28d51c0be221923bbf1
refs/heads/master
2020-04-08T13:13:35.818720
2015-09-28T12:18:29
2015-09-28T12:18:29
29,530,360
2
1
null
null
null
null
UTF-8
C++
false
false
2,176
cpp
/* * ===================================================================================== * * Filename: 5061.cpp * * Description: * * Version: 1.0 * Created: 2015/2/13 12:33:27 * Revision: none * Compiler: gcc * * Author: winoros (Ding), winoros@gmail.com * Organization: BUPT * * ===================================================================================== */ #include <bits/stdc++.h> using namespace std; int to[50010<<1], pre[50010<<1], tail[50010]; int e_tot; inline void add(int _from, int _to) { to[e_tot] = _to; pre[e_tot] = tail[_from]; tail[_from] = e_tot++; } int p[50010][17], deg[50010]; void bfs() { queue<int> q; q.push(0); p[0][0] = 0; deg[0] = 0; while(!q.empty()) { int now = q.front(); q.pop(); for(int i = 1; i < 17; ++i) p[now][i] = p[p[now][i-1]][i-1]; for(int i = tail[now]; i != -1; i = pre[i]) { if(to[i] == p[now][0]) continue; p[to[i]][0] = now; deg[to[i]] = deg[now] + 1; q.push(to[i]); } } } int lca(int u, int v) { if(deg[u] > deg[v]) swap(u, v); for(int delta = deg[v] - deg[u], i = 0; delta != 0; delta >>= 1, ++i) if(delta&1) v = p[v][i]; if(u == v) return u; for(int i = 16; i >= 0; --i) { if(p[u][i] == p[v][i]) continue; u = p[u][i], v = p[v][i]; } return p[u][0]; } int ans[50010], val[50010]; int dfs(int now, int fa) { ans[now] = val[now]; for(int i = tail[now]; i != -1; i = pre[i]) { if(to[i] == fa) continue; ans[now] += dfs(to[i], now); } return ans[now]; } void MAIN() { int n; scanf("%d", &n); memset(tail, -1, sizeof tail); e_tot = 0; for(int i = 1, u, v; i < n; ++i) { scanf("%d%d",&u, &v); add(u, v); add(v, u); } bfs(); int m; scanf("%d", &m); memset(val, 0, sizeof val); for(int i = 0, u, v, c; i < m; ++i) { scanf("%d%d%d", &u, &v, &c); val[u] += c; val[v] += c; int lcaa = lca(u, v); val[lcaa] -= c; if(lcaa != 0) val[p[lcaa][0]] -= c; } dfs(0, -1); for(int i = 0; i < n; ++i) printf("%d\n", ans[i]); } int main() { int n; scanf("%d", &n); for(int i = 1; i <= n; ++i) { printf("Case #%d:\n", i); MAIN(); } return 0; }
[ "winoros@gmail.com" ]
winoros@gmail.com
63cce410fac6bfe39eafa45239afe3e308e73e6b
abeac60c3383da55d9db33143d463f6024318dd2
/Model.h
90c36ea894ef4fd0b03800040f412ac93973bb48
[]
no_license
norman-derek/EnglishToTutnese
8a8f7a1890508084b6b5df17aef7e21f87b40978
7cf3addfdb4729378b4d58d7d8ef098d206b706b
refs/heads/master
2023-08-05T01:12:10.866896
2021-09-20T23:28:23
2021-09-20T23:28:23
407,719,752
0
0
null
null
null
null
UTF-8
C++
false
false
863
h
/* Derek Norman 2364922 norman@chapman.edu CPSC-350-03 Assignment 1 */ //This file contains the basic structure for the Model class. The Model class translates single and double characters from english to tutnese #include <iostream> using namespace std; //Model class translates single character from english to tutnese and double characters to tutnese with the correct prefix class Model{ public: Model(); // Constructor ~Model(); // Destructor string translateSingleCharacter(char letter); //translateSingleCharacter Method takes in a character and translates it to its tutnese counterpart and returns it as a string string translateDoubleCharacter(char letter); //translateDoubleCharacter Method takes in a character that appears next to the same character in a word and translates it to its tutnese counterpart. OO becomes squato };
[ "dereknorman@Dereks-MacBook-Pro.local" ]
dereknorman@Dereks-MacBook-Pro.local
1b718262727e8db267d2a7257f51c5f4588586cf
701c157f3ee171eecfeaed07c05989c363986b96
/189RotateArray/rotate.cpp
03d5baf3a3e1003d901b20974e7b235b7657f0a3
[]
no_license
dupark3/LeetCodeProblems
53f0f21a1d39540753512e7ba3c1f209091862de
35b91aecaf9507ab6f9ab86643c0737483ccf427
refs/heads/master
2020-03-21T13:59:31.803039
2018-10-22T12:23:10
2018-10-22T12:23:10
138,636,176
0
0
null
null
null
null
UTF-8
C++
false
false
828
cpp
#include <algorithm> #include <iostream> #include <vector> using namespace std; class Solution { public: void rotate(vector<int>& nums, int k) { int size = nums.size(); k = k % size; // reverse last k elements reverse(nums.begin() + (size - k), nums.end()); // reverse first size - k elements reverse(nums.begin(), nums.begin() + (size - k)); // reverse whole thing reverse(nums.begin(), nums.end()); } }; int main() { Solution solution; vector<int> nums = {1,2,3,4,5,6}; // 6 2 3 4 5 1 for (int i = 0; i != nums.size(); ++i){ cout << nums[i] << " "; } cout << endl; solution.rotate(nums, 4); for (int i = 0; i != nums.size(); ++i){ cout << nums[i] << " "; } cout << endl; return 0; }
[ "dupark3@gmail.com" ]
dupark3@gmail.com
f7e40a381e4d0aa313212a4c532f6b4a5f319654
96e9e49ffc835b9a515ab4aa6a31712075c723db
/Temp/il2cppOutput/il2cppOutput/Bulk_Generics_4.cpp
921ed62ed0ff09a8f061f40d03e314f15c14f094
[]
no_license
huyang421/MMSS
78d8ecdca42a99994dde589c7c53e690c2005aef
48c5c8c084f84ad24b989eca50e52c91914a5045
refs/heads/master
2020-05-17T22:40:42.114027
2019-04-29T06:57:03
2019-04-29T06:57:03
184,009,104
0
0
null
null
null
null
UTF-8
C++
false
false
1,417,107
cpp
#include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <cstring> #include <string.h> #include <stdio.h> #include <cmath> #include <limits> #include <assert.h> #include <stdint.h> #include "il2cpp-class-internals.h" #include "codegen/il2cpp-codegen.h" #include "il2cpp-object-internals.h" template <typename R, typename T1, typename T2> struct VirtFuncInvoker2 { typedef R (*Func)(void*, T1, T2, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template <typename R> struct VirtFuncInvoker0 { typedef R (*Func)(void*, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, invokeData.method); } }; template <typename R, typename T1> struct VirtFuncInvoker1 { typedef R (*Func)(void*, T1, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template <typename R, typename T1> struct InterfaceFuncInvoker1 { typedef R (*Func)(void*, T1, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template <typename R, typename T1, typename T2> struct InterfaceFuncInvoker2 { typedef R (*Func)(void*, T1, T2, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; // MS.Internal.Xml.Cache.XPathNodeRef[] struct XPathNodeRefU5BU5D_t42E3ACCBD8D6FA1DD321905EB2253ABA6173B1E1; // MS.Internal.Xml.Cache.XPathNode[] struct XPathNodeU5BU5D_tBC351C5172049794ED3550500C082D4E1F1D5A8B; // System.ArgumentException struct ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1; // System.ArgumentNullException struct ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD; // System.ArgumentOutOfRangeException struct ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA; // System.Boolean[] struct BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040; // System.Byte[] struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821; // System.Char[] struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2; // System.Collections.Generic.ByteEqualityComparer struct ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B; // System.Collections.Generic.Dictionary`2/Entry<System.Guid,System.Object>[] struct EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE; // System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>[] struct EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Boolean>[] struct EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>[] struct EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>[] struct EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>[] struct EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Guid,System.Object> struct KeyCollection_t15C8B15130E4E7B7CD7D11CE909D4ECD1932151E; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,System.Object> struct KeyCollection_t959836ABE6844545BF46886E66ADE46030115A4A; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Boolean> struct KeyCollection_t35BBEE4BF6694D7EEF3D286B6F9A808FD797F93F; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Int32> struct KeyCollection_tEECFF3D52DBAFA05FAD1589D36F0A8EEF9E2670E; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Object> struct KeyCollection_t0394DE2BA7C2C82605C6E9DEBB21A8C5C792E97C; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Resources.ResourceLocator> struct KeyCollection_tB62DC24DEF9A9DC0EE67965814F53091651CAE92; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Guid,System.Object> struct ValueCollection_t46B01CABF972366F0EAD3927B1A97339B8283D5F; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Object> struct ValueCollection_t0B3ED4599D881B395A256D10EF70A297C2DA00C6; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Boolean> struct ValueCollection_t4B2E092EE9A4E61506400C34FE1B5325E692E7E1; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Int32> struct ValueCollection_t7B108E5949AABED7EBC85ED1016365781619DAB7; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Object> struct ValueCollection_t0816666499CBD11E58E1E7C79A4EFC2AA47E08A2; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Resources.ResourceLocator> struct ValueCollection_t32E4BA93A6E2E9AC038396EC46CDBA2BAE42AF4B; // System.Collections.Generic.Dictionary`2<System.Guid,System.Object> struct Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B; // System.Collections.Generic.Dictionary`2<System.Int32,System.Object> struct Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884; // System.Collections.Generic.Dictionary`2<System.Object,System.Boolean> struct Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21; // System.Collections.Generic.Dictionary`2<System.Object,System.Int32> struct Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A; // System.Collections.Generic.Dictionary`2<System.Object,System.Object> struct Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA; // System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator> struct Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6; // System.Collections.Generic.Dictionary`2<System.String,System.Int32> struct Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB; // System.Collections.Generic.EnumEqualityComparer`1<System.Int32Enum> struct EnumEqualityComparer_1_tF52C67ADEB6BE6748FD0C9630C4A563E364AF8C8; // System.Collections.Generic.EqualityComparer`1<MS.Internal.Xml.Cache.XPathNodeRef> struct EqualityComparer_1_t56C86948D22FF5ED944CA4AA7E54EC0AAD2C06C1; // System.Collections.Generic.EqualityComparer`1<System.Boolean> struct EqualityComparer_1_t4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8; // System.Collections.Generic.EqualityComparer`1<System.Byte> struct EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5; // System.Collections.Generic.EqualityComparer`1<System.Char> struct EqualityComparer_1_tBE2E709137078E491F7B38EA3C218A7A347DD68F; // System.Collections.Generic.EqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>> struct EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77; // System.Collections.Generic.EqualityComparer`1<System.DateTime> struct EqualityComparer_1_t21E166DB6F02E6294F8D979F22ACE807F6743998; // System.Collections.Generic.EqualityComparer`1<System.DateTimeOffset> struct EqualityComparer_1_t7BCF66E24804C5E258DB12209117B0722FC3FDE4; // System.Collections.Generic.EqualityComparer`1<System.Decimal> struct EqualityComparer_1_t5F84660374B493F86CCE91B7723DB110A0025F6B; // System.Collections.Generic.EqualityComparer`1<System.Double> struct EqualityComparer_1_t2284CDD98A505FC763285959CB32BF8796788102; // System.Collections.Generic.EqualityComparer`1<System.Guid> struct EqualityComparer_1_t0D118F538343D64A03149EE6C285141397B3217E; // System.Collections.Generic.EqualityComparer`1<System.Int16> struct EqualityComparer_1_t4CD1CCB3DD1E825E044304118760FAF6CBEE389D; // System.Collections.Generic.EqualityComparer`1<System.Int32> struct EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3; // System.Collections.Generic.EqualityComparer`1<System.Int32Enum> struct EqualityComparer_1_t1C2A0392A1283327989CBB7C784638BDDB3805BB; // System.Collections.Generic.EqualityComparer`1<System.Int64> struct EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E; // System.Collections.Generic.EqualityComparer`1<System.Object> struct EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA; // System.Collections.Generic.EqualityComparer`1<System.String> struct EqualityComparer_1_tBEFFC6F649A17852373A084880D57CB299084137; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>> struct IEnumerator_1_t556F375C642A9AB0086FDCB28ECEF802DD6A0852; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>> struct IEnumerator_1_tCCFC72A59ECFB2EC77FA0D65CCBFA69097497D0A; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>> struct IEnumerator_1_tD039EB6BAE65AC4D6D18E94B6D7B2C34B6122174; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>> struct IEnumerator_1_tA46244A458AC038F07EEB25A426F798695A3A943; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>> struct IEnumerator_1_t0D0CED86DAC255BACC0E644D39E1AB3D51FB121F; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>> struct IEnumerator_1_t7E666347A94599911838107E49A669BAB7CF699F; // System.Collections.Generic.IEqualityComparer`1<System.Guid> struct IEqualityComparer_1_t2AA4D20DBA302357E1F31C5F476C23E7FDE0A52C; // System.Collections.Generic.IEqualityComparer`1<System.Int32> struct IEqualityComparer_1_t7B82AA0F8B96BAAA21E36DDF7A1FE4348BDDBE95; // System.Collections.Generic.IEqualityComparer`1<System.Object> struct IEqualityComparer_1_tAE7A8756D8CF0882DD348DC328FB36FEE0FB7DD0; // System.Collections.Generic.InternalStringComparer struct InternalStringComparer_tCD150130A3DB4C80186B5D8145B910B33496D4CD; // System.Collections.Generic.KeyNotFoundException struct KeyNotFoundException_tC28F8B9E114291001A5D135723673C6F292438E2; // System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>[] struct KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F; // System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>[] struct KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A; // System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>[] struct KeyValuePair_2U5BU5D_t51ECDC3588B5BA2DE76DE4B25B62ACADF928345B; // System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>[] struct KeyValuePair_2U5BU5D_tAE7F87DCEA5EC8AE3923ACF937141910554CD02E; // System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>[] struct KeyValuePair_2U5BU5D_t1336B67B1075C3E1E7713F0436412A73F860ADBB; // System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>[] struct KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262; // System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>[] struct KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB; // System.Collections.IDictionary struct IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7; // System.Collections.IDictionaryEnumerator struct IDictionaryEnumerator_t456EB67407D2045A257B66A3A25A825E883FD027; // System.Collections.IEnumerator struct IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A; // System.DateTimeOffset[] struct DateTimeOffsetU5BU5D_tBE5BF156BB0B9FFFC5B216B0D02C0D44288FCA25; // System.DateTime[] struct DateTimeU5BU5D_tFEA62BD2EDF382C69C4B1F20ED98F3709EA271C1; // System.Decimal[] struct DecimalU5BU5D_t163CFBECCD3B6655700701D6451CA0CF493CBF0F; // System.Diagnostics.StackTrace[] struct StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196; // System.Double[] struct DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D; // System.Guid[] struct GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF; // System.Int16[] struct Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28; // System.Int32Enum[] struct Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A; // System.Int32[] struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83; // System.Int64[] struct Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F; // System.IntPtr[] struct IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD; // System.MonoTypeInfo struct MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D; // System.Object[] struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A; // System.Reflection.Binder struct Binder_t4D5CB06963501D32847C057B57157D6DC49CA759; // System.Reflection.MemberFilter struct MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381; // System.Reflection.RuntimeConstructorInfo struct RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D; // System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object> struct ConditionalWeakTable_2_tAD6736E4C6A9AF930D360966499D999E3CE45BF3; // System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Runtime.Serialization.SerializationInfo> struct ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98; // System.Runtime.CompilerServices.Ephemeron[] struct EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10; // System.Runtime.Serialization.IFormatterConverter struct IFormatterConverter_tC3280D64D358F47EA4DAF1A65609BA0FC081888A; // System.Runtime.Serialization.SafeSerializationManager struct SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770; // System.Runtime.Serialization.SerializationException struct SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210; // System.Runtime.Serialization.SerializationInfo struct SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26; // System.RuntimeType struct RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F; // System.Security.Cryptography.RandomNumberGenerator struct RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2; // System.String struct String_t; // System.String[] struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E; // System.Type struct Type_t; // System.Type[] struct TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F; // System.UInt32[] struct UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB; // System.Void struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017; extern RuntimeClass* ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var; extern RuntimeClass* ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var; extern RuntimeClass* ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var; extern RuntimeClass* ArrayTypeMismatchException_tE34C1032B089C37399200997F079C640D23D9499_il2cpp_TypeInfo_var; extern RuntimeClass* ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B_il2cpp_TypeInfo_var; extern RuntimeClass* DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56_il2cpp_TypeInfo_var; extern RuntimeClass* DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00_il2cpp_TypeInfo_var; extern RuntimeClass* Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var; extern RuntimeClass* HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_il2cpp_TypeInfo_var; extern RuntimeClass* Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var; extern RuntimeClass* Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var; extern RuntimeClass* InternalStringComparer_tCD150130A3DB4C80186B5D8145B910B33496D4CD_il2cpp_TypeInfo_var; extern RuntimeClass* InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var; extern RuntimeClass* KeyNotFoundException_tC28F8B9E114291001A5D135723673C6F292438E2_il2cpp_TypeInfo_var; extern RuntimeClass* NonRandomizedStringEqualityComparer_t92C20503D9C5060A557792ABCCC06EF2DD77E5D9_il2cpp_TypeInfo_var; extern RuntimeClass* ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var; extern RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var; extern RuntimeClass* RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var; extern RuntimeClass* SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_il2cpp_TypeInfo_var; extern RuntimeClass* TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var; extern RuntimeClass* Type_t_il2cpp_TypeInfo_var; extern String_t* _stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25; extern String_t* _stringLiteral1D89254A2BC78C1FF41C2F6767A0E00EE126B3BF; extern String_t* _stringLiteral1EB7E67EA75FFC3FCB05A9685FA4F1578DCACCF6; extern String_t* _stringLiteral2D77BE6D598A0A9376398980E66D10E319F1B52A; extern String_t* _stringLiteral2DA600BF9404843107A9531694F654E5662959E0; extern String_t* _stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D; extern String_t* _stringLiteral35E05A2D28CF03B64D64C58D0C7ED03AD5A3AF60; extern String_t* _stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889; extern String_t* _stringLiteral6FD577FD3A1BDC4DA28CD51D7A55EB397CEA3926; extern String_t* _stringLiteral7CB1F56D3FBE09E809244FC8E13671CD876E3860; extern String_t* _stringLiteral8FC94E4F5B71CECE2565D72417AACC804EE27A0D; extern String_t* _stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA; extern String_t* _stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE; extern String_t* _stringLiteralBC80A496F1C479B70F6EE2BF2F0C3C05463301B8; extern String_t* _stringLiteralC363992023785AF013BBCF2E20C19D9835184F82; extern String_t* _stringLiteralC44D4E6C6AF3517A1CC72EDF7D1A5FFD7E3368F1; extern String_t* _stringLiteralD6D1BC79DD62E9F1FB9A49A8F76F4BA8AB71AECD; extern String_t* _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346; extern String_t* _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5; extern String_t* _stringLiteralFA5354A55A2D5AE97DEF68A54DFDDBF37A452FD6; extern const RuntimeMethod* ConditionalWeakTable_2_Add_mCC3585BE91A7BDFC49EEFDE4C11173A36D1FB5FE_RuntimeMethod_var; extern const RuntimeMethod* ConditionalWeakTable_2_Remove_mD69606977A8C793DEA91E373F7D886E4865D7FBD_RuntimeMethod_var; extern const RuntimeMethod* ConditionalWeakTable_2_TryGetValue_mDFCB6C303807E3F8998D196F4573870680E81F8B_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_CopyTo_m298A6BF4A9726407DB5C810813C8B9E1FE47512E_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_CopyTo_m2CDE708B5B35D5E774663FE2CD600E6C582DF47B_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_CopyTo_m694C7269BEBF9B8177EEE24A09E225DDA0FFD348_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_CopyTo_m7846D298196FD3A80BE361B129E77C7D5ABE6B82_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_CopyTo_m864F8B875F42B6B97A8DE9D0587511163F6DAD7A_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_CopyTo_mDB78948770252D4C02930B666567476DFFED1759_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_FindEntry_m02633C7D0E35BA47BA8F5AE4703777A59C526AA3_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_FindEntry_m0355E4CFC77F27301F77F3AB521403C3088F7402_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_FindEntry_m85531CCD613626B0C21B5181F9EFE5914EB754D1_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_FindEntry_mCB33BF535EAD1D94B3620E0E1794BA27836D012A_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_FindEntry_mE8224B12F71587C5F08513E964E4CF87D2379191_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_FindEntry_mFDF9D228127FB25281E0A80AA968857CC42D0069_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_GetObjectData_m154C5A21568A66E6AB73DEBA84EECCB4A6F33607_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_GetObjectData_m44AE657481D0D1A69F3E8367E65CF9909A983205_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_GetObjectData_m5A4FEB1DD953A200FE8ADBBDD17B3FC622EE0EDE_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_GetObjectData_m734E66A1CF9EE321575D86D5DEDE90132190B729_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_GetObjectData_mAFFB6C7E9F3E826ECA1CFF5E3CF26BC20468C466_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_GetObjectData_mD3BE8CA8EEA44C1B845B8317BA1B6BF461E0805B_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_IsCompatibleKey_m088CA41CAE573E08C9001F3EC4FF2A28BC47125D_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_IsCompatibleKey_m170761FDCD20FB91F13C2790FA1952AB14DBAA94_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_IsCompatibleKey_m32F5939D37970DA7C3E394ACD7265F6917EE29B0_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_IsCompatibleKey_m7E43A77A3EC2C76193BEE3EDDDAD146A892D19F7_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_IsCompatibleKey_mDD88D1EF85F901FA7627FED4AEC56AD0FC31B8B9_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_IsCompatibleKey_mE704BFB33E9A85EEFD6FB15FD7DF71ED3B240ED2_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_OnDeserialization_m3165FF512550B1F1E5D865998916124333AA4FF4_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_OnDeserialization_m4EC34CCC8043E6025E4844A8DE92D8E25B63E219_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_OnDeserialization_m63903F75E863748E0BA65E8FC9A1B45155BE00EA_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_OnDeserialization_m8523985492F528463587BCACA0819813B74E5B86_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_OnDeserialization_m967C18291BF9DFEF8D9AA60323D01408BB421AB4_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_OnDeserialization_mE3192EBCC25E254042B4B68A0FFAAB14231F97DF_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_Remove_m0FCCD33CE2C6A7589E52A2AB0872FE361BF5EF60_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_Remove_m2204D6D532702FD13AB2A9AD8DB538E4E8FB1913_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_Remove_m53A3271E51DB23EFC5BD1A0A2E26154B4C41AB1E_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_Remove_m81D07E61043BC96387C26FEFF8919A165AF761A7_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_Remove_mC6EACB6BEE0DB4863289790892A91B8A1218BCFA_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_Remove_mDA53A01E63EFD9F3D4A2695D41B10D981E15ACD4_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_System_Collections_ICollection_CopyTo_m2A04B7A42F924F8497A06C101712AF467E6C057C_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_System_Collections_ICollection_CopyTo_m4E9B4A3D0C8E4D854E2AAD7917084FE67E5BB55A_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_System_Collections_ICollection_CopyTo_m8521E03ECC98EFED37EE94DB802E62C9527C81A8_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_System_Collections_ICollection_CopyTo_m86327EAA25BA50BEFEDDAD8A269BD409C712DE5A_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_System_Collections_ICollection_CopyTo_mBBB30909825CA57C3D36FA678FA2D083DE628402_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_System_Collections_ICollection_CopyTo_mE4CA5150D495BBC4E0252D620694D9A3001B1AAA_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_System_Collections_IDictionary_set_Item_m3A2E48BB4D4447BEDEBD25E8BB702AEF849B93AF_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_System_Collections_IDictionary_set_Item_m5A1672C0E4D19A238D5939AFBA5A9C00518BAAE2_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_System_Collections_IDictionary_set_Item_m628942C62121D1661E9DBCE25DD9E4333B516F64_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_System_Collections_IDictionary_set_Item_m752CA04F6A7E64A7E050B4A9C914B69874401EDF_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_System_Collections_IDictionary_set_Item_mB1BF99B4D8718624355FA63A7FB332125F7541E8_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_System_Collections_IDictionary_set_Item_mE42E2F1B0606E5F5E61C593005E805CB4FC9CA73_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_TryInsert_m4BFED1FA0B4FBDB8E839F6FE9D514D98C2227E41_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_TryInsert_m729B71E869DFC8DAB29969BB05B2C43DCE3A4A2E_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_TryInsert_m9B40A8CD31233B18046691DBBEA6A853C1141F77_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_TryInsert_mED1C552AB4DDD3CC9789DEC21407767B9803F005_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_TryInsert_mF336FAD35B7D620B7572CFB5E245AD581CBE870A_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_TryInsert_mF603620B1EB22D0F50A6B8A9BF956C552FD4C7E5_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2__ctor_m005E7E17A2E27952BC4C20BA2995AC18A338EE78_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2__ctor_m499028E85929789637749F7847C5EA53E99B51A0_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2__ctor_m79C77EA7921A82DFE9E8808C0747578D5CD131C4_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2__ctor_mAED6AA22D9A0ACBD19E2634A4FCE7CCC40DE3E0C_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2__ctor_mB204F1BB49B970674567803722CFD87611475A5F_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2__ctor_mFE3002204A098262A3F3F53CE6BF6C35D685D265_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_get_Item_m1DF046369E7E7A3C16D4523AFF692D3D16FB6680_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_get_Item_m6625C3BA931A6EE5D6DB46B9E743B40AAA30010B_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_get_Item_m6F2BB7FC61476D210FA060962086B5B21FB1B6CA_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_get_Item_m8048B360C48D16676794369717A7E72E590D9C36_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_get_Item_mD6B3AA9C53F2917F8E40CAD37B995C327DFB751B_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_get_Item_mEFECE2769017AB70A9B1E7F5F8BBA59375620B54_RuntimeMethod_var; extern const RuntimeMethod* EqualityComparer_1_get_Default_m85F378D7298050D5DF422363D5EB30A218B769B7_RuntimeMethod_var; extern const RuntimeType* Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_0_0_0_var; extern const RuntimeType* EnumEqualityComparer_1_tC44C7E08405BCDA86FDDFB9714C4301D39723C3A_0_0_0_var; extern const RuntimeType* GenericEqualityComparer_1_t86530EF2BF9E43CCEE775B5862B48F735555A90B_0_0_0_var; extern const RuntimeType* IEquatable_1_t7FBC51A9FCBF69422C0DEBF035FFDC9417EF3DA1_0_0_0_var; extern const RuntimeType* LongEnumEqualityComparer_1_t6B940FD5688E20A1CF36AD68CCF3A39071FFB0DB_0_0_0_var; extern const RuntimeType* NullableEqualityComparer_1_tD235D1E336771C9615EB5024AC8C35CFF8ADD27F_0_0_0_var; extern const RuntimeType* Nullable_1_t220FFA40D2CEE2CB28F8C04DB1216024A0BC75C3_0_0_0_var; extern const RuntimeType* SByteEnumEqualityComparer_1_t0E5A82C922F801F365CCC4BE3062A765423A5852_0_0_0_var; extern const RuntimeType* ShortEnumEqualityComparer_1_tCB4B7DE9F58431002227076F18CFFC289C6CBD64_0_0_0_var; extern const RuntimeType* String_t_0_0_0_var; extern const uint32_t Dictionary_2_CopyTo_m298A6BF4A9726407DB5C810813C8B9E1FE47512E_MetadataUsageId; extern const uint32_t Dictionary_2_CopyTo_m2CDE708B5B35D5E774663FE2CD600E6C582DF47B_MetadataUsageId; extern const uint32_t Dictionary_2_CopyTo_m694C7269BEBF9B8177EEE24A09E225DDA0FFD348_MetadataUsageId; extern const uint32_t Dictionary_2_CopyTo_m7846D298196FD3A80BE361B129E77C7D5ABE6B82_MetadataUsageId; extern const uint32_t Dictionary_2_CopyTo_m864F8B875F42B6B97A8DE9D0587511163F6DAD7A_MetadataUsageId; extern const uint32_t Dictionary_2_CopyTo_mDB78948770252D4C02930B666567476DFFED1759_MetadataUsageId; extern const uint32_t Dictionary_2_FindEntry_m02633C7D0E35BA47BA8F5AE4703777A59C526AA3_MetadataUsageId; extern const uint32_t Dictionary_2_FindEntry_m0355E4CFC77F27301F77F3AB521403C3088F7402_MetadataUsageId; extern const uint32_t Dictionary_2_FindEntry_m85531CCD613626B0C21B5181F9EFE5914EB754D1_MetadataUsageId; extern const uint32_t Dictionary_2_FindEntry_mCB33BF535EAD1D94B3620E0E1794BA27836D012A_MetadataUsageId; extern const uint32_t Dictionary_2_FindEntry_mE8224B12F71587C5F08513E964E4CF87D2379191_MetadataUsageId; extern const uint32_t Dictionary_2_FindEntry_mFDF9D228127FB25281E0A80AA968857CC42D0069_MetadataUsageId; extern const uint32_t Dictionary_2_GetObjectData_m154C5A21568A66E6AB73DEBA84EECCB4A6F33607_MetadataUsageId; extern const uint32_t Dictionary_2_GetObjectData_m44AE657481D0D1A69F3E8367E65CF9909A983205_MetadataUsageId; extern const uint32_t Dictionary_2_GetObjectData_m5A4FEB1DD953A200FE8ADBBDD17B3FC622EE0EDE_MetadataUsageId; extern const uint32_t Dictionary_2_GetObjectData_m734E66A1CF9EE321575D86D5DEDE90132190B729_MetadataUsageId; extern const uint32_t Dictionary_2_GetObjectData_mAFFB6C7E9F3E826ECA1CFF5E3CF26BC20468C466_MetadataUsageId; extern const uint32_t Dictionary_2_GetObjectData_mD3BE8CA8EEA44C1B845B8317BA1B6BF461E0805B_MetadataUsageId; extern const uint32_t Dictionary_2_Initialize_m91E651A1FB4DDEEEE6CD20A96774EF9CA665628A_MetadataUsageId; extern const uint32_t Dictionary_2_Initialize_mB3F71C5A7488244E3335244576D2698A4D893154_MetadataUsageId; extern const uint32_t Dictionary_2_Initialize_mC4ADA75F97A4E78C46EFD112439AD7DD099459F9_MetadataUsageId; extern const uint32_t Dictionary_2_Initialize_mEFF43FA447EAC4F63AE14770493D8758E6279194_MetadataUsageId; extern const uint32_t Dictionary_2_Initialize_mF7D42C77254CEC29BA9D805608E31F501AFB5F64_MetadataUsageId; extern const uint32_t Dictionary_2_Initialize_mFFC96075BB125D4555D9101AD1763233CAC34883_MetadataUsageId; extern const uint32_t Dictionary_2_IsCompatibleKey_m088CA41CAE573E08C9001F3EC4FF2A28BC47125D_MetadataUsageId; extern const uint32_t Dictionary_2_IsCompatibleKey_m170761FDCD20FB91F13C2790FA1952AB14DBAA94_MetadataUsageId; extern const uint32_t Dictionary_2_IsCompatibleKey_m32F5939D37970DA7C3E394ACD7265F6917EE29B0_MetadataUsageId; extern const uint32_t Dictionary_2_IsCompatibleKey_m7E43A77A3EC2C76193BEE3EDDDAD146A892D19F7_MetadataUsageId; extern const uint32_t Dictionary_2_IsCompatibleKey_mDD88D1EF85F901FA7627FED4AEC56AD0FC31B8B9_MetadataUsageId; extern const uint32_t Dictionary_2_IsCompatibleKey_mE704BFB33E9A85EEFD6FB15FD7DF71ED3B240ED2_MetadataUsageId; extern const uint32_t Dictionary_2_OnDeserialization_m3165FF512550B1F1E5D865998916124333AA4FF4_MetadataUsageId; extern const uint32_t Dictionary_2_OnDeserialization_m4EC34CCC8043E6025E4844A8DE92D8E25B63E219_MetadataUsageId; extern const uint32_t Dictionary_2_OnDeserialization_m63903F75E863748E0BA65E8FC9A1B45155BE00EA_MetadataUsageId; extern const uint32_t Dictionary_2_OnDeserialization_m8523985492F528463587BCACA0819813B74E5B86_MetadataUsageId; extern const uint32_t Dictionary_2_OnDeserialization_m967C18291BF9DFEF8D9AA60323D01408BB421AB4_MetadataUsageId; extern const uint32_t Dictionary_2_OnDeserialization_mE3192EBCC25E254042B4B68A0FFAAB14231F97DF_MetadataUsageId; extern const uint32_t Dictionary_2_Remove_m0FCCD33CE2C6A7589E52A2AB0872FE361BF5EF60_MetadataUsageId; extern const uint32_t Dictionary_2_Remove_m2204D6D532702FD13AB2A9AD8DB538E4E8FB1913_MetadataUsageId; extern const uint32_t Dictionary_2_Remove_m53A3271E51DB23EFC5BD1A0A2E26154B4C41AB1E_MetadataUsageId; extern const uint32_t Dictionary_2_Remove_m81D07E61043BC96387C26FEFF8919A165AF761A7_MetadataUsageId; extern const uint32_t Dictionary_2_Remove_mC6EACB6BEE0DB4863289790892A91B8A1218BCFA_MetadataUsageId; extern const uint32_t Dictionary_2_Remove_mDA53A01E63EFD9F3D4A2695D41B10D981E15ACD4_MetadataUsageId; extern const uint32_t Dictionary_2_Resize_m14EA8CFFCCBFC5C3B7755F59FA5A96C5347F0230_MetadataUsageId; extern const uint32_t Dictionary_2_Resize_m26C88D986740EF24D60F7AA7E90DDBD6A7748D50_MetadataUsageId; extern const uint32_t Dictionary_2_Resize_m2CDF1768B7CCC2AA9FBE83E7BB72B8D474ABC0FA_MetadataUsageId; extern const uint32_t Dictionary_2_Resize_m2FEA8E5EE720A1ABECE46DFC7DE2922691483572_MetadataUsageId; extern const uint32_t Dictionary_2_Resize_m37AD61EE82E8CEC71D3A0F583E4592666D6BA58B_MetadataUsageId; extern const uint32_t Dictionary_2_Resize_m45B007ADE44A69A6B4AA23028D3642BA5AA66061_MetadataUsageId; extern const uint32_t Dictionary_2_Resize_m7D5EE03029A4CE7B8D24AE129CD87E471E429355_MetadataUsageId; extern const uint32_t Dictionary_2_Resize_mA2FD605E8A02FF8A94F34F5F187810418A11EA13_MetadataUsageId; extern const uint32_t Dictionary_2_Resize_mA34DD099BDA2F1633617FD97EF0B12953A7C9CA2_MetadataUsageId; extern const uint32_t Dictionary_2_Resize_mB10600DAF63451A6BB2B87390D14FCADD7807B72_MetadataUsageId; extern const uint32_t Dictionary_2_Resize_mE8E2B3BB38A803949CFA138DD4DE3A9F4F953234_MetadataUsageId; extern const uint32_t Dictionary_2_Resize_mF0589F04C14CAE760094D83B488011341DE1D7DD_MetadataUsageId; extern const uint32_t Dictionary_2_System_Collections_ICollection_CopyTo_m2A04B7A42F924F8497A06C101712AF467E6C057C_MetadataUsageId; extern const uint32_t Dictionary_2_System_Collections_ICollection_CopyTo_m4E9B4A3D0C8E4D854E2AAD7917084FE67E5BB55A_MetadataUsageId; extern const uint32_t Dictionary_2_System_Collections_ICollection_CopyTo_m8521E03ECC98EFED37EE94DB802E62C9527C81A8_MetadataUsageId; extern const uint32_t Dictionary_2_System_Collections_ICollection_CopyTo_m86327EAA25BA50BEFEDDAD8A269BD409C712DE5A_MetadataUsageId; extern const uint32_t Dictionary_2_System_Collections_ICollection_CopyTo_mBBB30909825CA57C3D36FA678FA2D083DE628402_MetadataUsageId; extern const uint32_t Dictionary_2_System_Collections_ICollection_CopyTo_mE4CA5150D495BBC4E0252D620694D9A3001B1AAA_MetadataUsageId; extern const uint32_t Dictionary_2_System_Collections_ICollection_get_SyncRoot_m23A55068EE7262DEDBF9B6ED9CE82C9A675C20E4_MetadataUsageId; extern const uint32_t Dictionary_2_System_Collections_ICollection_get_SyncRoot_m6168522F3F76A98FFC5EF666D11E2186CCE94A44_MetadataUsageId; extern const uint32_t Dictionary_2_System_Collections_ICollection_get_SyncRoot_m881514043DB3869ECA9B550BA87280BF8F69D64C_MetadataUsageId; extern const uint32_t Dictionary_2_System_Collections_ICollection_get_SyncRoot_mA421BC558ECB5116A75AAA3D670614F71D19BF85_MetadataUsageId; extern const uint32_t Dictionary_2_System_Collections_ICollection_get_SyncRoot_mA7D2E1D66F065B017EBA7275D6927CFFA3B90E26_MetadataUsageId; extern const uint32_t Dictionary_2_System_Collections_ICollection_get_SyncRoot_mBDB2415C142E10DDB0EBDDF98F369A8DBF05D9CA_MetadataUsageId; extern const uint32_t Dictionary_2_System_Collections_IDictionary_set_Item_m3A2E48BB4D4447BEDEBD25E8BB702AEF849B93AF_MetadataUsageId; extern const uint32_t Dictionary_2_System_Collections_IDictionary_set_Item_m5A1672C0E4D19A238D5939AFBA5A9C00518BAAE2_MetadataUsageId; extern const uint32_t Dictionary_2_System_Collections_IDictionary_set_Item_m628942C62121D1661E9DBCE25DD9E4333B516F64_MetadataUsageId; extern const uint32_t Dictionary_2_System_Collections_IDictionary_set_Item_m752CA04F6A7E64A7E050B4A9C914B69874401EDF_MetadataUsageId; extern const uint32_t Dictionary_2_System_Collections_IDictionary_set_Item_mB1BF99B4D8718624355FA63A7FB332125F7541E8_MetadataUsageId; extern const uint32_t Dictionary_2_System_Collections_IDictionary_set_Item_mE42E2F1B0606E5F5E61C593005E805CB4FC9CA73_MetadataUsageId; extern const uint32_t Dictionary_2_TryInsert_m4BFED1FA0B4FBDB8E839F6FE9D514D98C2227E41_MetadataUsageId; extern const uint32_t Dictionary_2_TryInsert_m729B71E869DFC8DAB29969BB05B2C43DCE3A4A2E_MetadataUsageId; extern const uint32_t Dictionary_2_TryInsert_m9B40A8CD31233B18046691DBBEA6A853C1141F77_MetadataUsageId; extern const uint32_t Dictionary_2_TryInsert_mED1C552AB4DDD3CC9789DEC21407767B9803F005_MetadataUsageId; extern const uint32_t Dictionary_2_TryInsert_mF336FAD35B7D620B7572CFB5E245AD581CBE870A_MetadataUsageId; extern const uint32_t Dictionary_2_TryInsert_mF603620B1EB22D0F50A6B8A9BF956C552FD4C7E5_MetadataUsageId; extern const uint32_t Dictionary_2__ctor_m005E7E17A2E27952BC4C20BA2995AC18A338EE78_MetadataUsageId; extern const uint32_t Dictionary_2__ctor_m1349AC7001410F92CA7F2F0A2245F564950594D2_MetadataUsageId; extern const uint32_t Dictionary_2__ctor_m1494873804A09765CBC8D83EE8788E490B7F7A18_MetadataUsageId; extern const uint32_t Dictionary_2__ctor_m499028E85929789637749F7847C5EA53E99B51A0_MetadataUsageId; extern const uint32_t Dictionary_2__ctor_m4AD739A32579159C9B20AC6E1E08765602F3D89A_MetadataUsageId; extern const uint32_t Dictionary_2__ctor_m58137CE5C883C91027932035A3EA85863B6708B3_MetadataUsageId; extern const uint32_t Dictionary_2__ctor_m79C77EA7921A82DFE9E8808C0747578D5CD131C4_MetadataUsageId; extern const uint32_t Dictionary_2__ctor_m9228B6B598897711D01E10AB8EC12D5EA46A06AA_MetadataUsageId; extern const uint32_t Dictionary_2__ctor_mAED6AA22D9A0ACBD19E2634A4FCE7CCC40DE3E0C_MetadataUsageId; extern const uint32_t Dictionary_2__ctor_mB204F1BB49B970674567803722CFD87611475A5F_MetadataUsageId; extern const uint32_t Dictionary_2__ctor_mE582A8C07DEBEE20F9D9831F6F6D5C655F789EAA_MetadataUsageId; extern const uint32_t Dictionary_2__ctor_mFE3002204A098262A3F3F53CE6BF6C35D685D265_MetadataUsageId; extern const uint32_t Dictionary_2_get_Item_m1DF046369E7E7A3C16D4523AFF692D3D16FB6680_MetadataUsageId; extern const uint32_t Dictionary_2_get_Item_m6625C3BA931A6EE5D6DB46B9E743B40AAA30010B_MetadataUsageId; extern const uint32_t Dictionary_2_get_Item_m6F2BB7FC61476D210FA060962086B5B21FB1B6CA_MetadataUsageId; extern const uint32_t Dictionary_2_get_Item_m8048B360C48D16676794369717A7E72E590D9C36_MetadataUsageId; extern const uint32_t Dictionary_2_get_Item_mD6B3AA9C53F2917F8E40CAD37B995C327DFB751B_MetadataUsageId; extern const uint32_t Dictionary_2_get_Item_mEFECE2769017AB70A9B1E7F5F8BBA59375620B54_MetadataUsageId; extern const uint32_t EnumEqualityComparer_1_GetObjectData_mC6BAA3493139D00512ACA2AF82E4086519C004AD_MetadataUsageId; extern const uint32_t EqualityComparer_1_CreateComparer_m18242C5753FFA716C6FFEA3D3F42E90AF05CC929_MetadataUsageId; extern const uint32_t EqualityComparer_1_CreateComparer_m4ACF22E3595EC1082E20F5BF3450EFD2245EBC56_MetadataUsageId; extern const uint32_t EqualityComparer_1_CreateComparer_m774BCC1A9EF7DCA946B909B20E952A5222AA0A2A_MetadataUsageId; extern const uint32_t EqualityComparer_1_CreateComparer_m8044696E830B7180D5E538A6332B9FB74F8063C2_MetadataUsageId; extern const uint32_t EqualityComparer_1_CreateComparer_m8086CE12C7A491AC73F307FDBA892E5EB5869816_MetadataUsageId; extern const uint32_t EqualityComparer_1_CreateComparer_m81D95191FB1E936EEDE12D0820E7C5B73623FA69_MetadataUsageId; extern const uint32_t EqualityComparer_1_CreateComparer_m832DD7DBCF97B595884D856F7B99187F98640878_MetadataUsageId; extern const uint32_t EqualityComparer_1_CreateComparer_m8634804F6075F7C245BFAC19AC2D29467DD7EB82_MetadataUsageId; extern const uint32_t EqualityComparer_1_CreateComparer_m9511AEE64813F2E908922E9E9CC3933DC2649165_MetadataUsageId; extern const uint32_t EqualityComparer_1_CreateComparer_mC0DC85B532B55655CCDF2E771E4C27B4B8E1B0EF_MetadataUsageId; extern const uint32_t EqualityComparer_1_CreateComparer_mD4CC3FFB246E8EB5AFC7E53227E6DD85542A1953_MetadataUsageId; extern const uint32_t EqualityComparer_1_CreateComparer_mE1D285264BBC2DA6C20BA54FD00A0D8BE7AEADC9_MetadataUsageId; extern const uint32_t EqualityComparer_1_CreateComparer_mED4717F361B0EFF555D59F125451999839AB5FC7_MetadataUsageId; extern const uint32_t EqualityComparer_1_CreateComparer_mF20712DAF0641524144A6E2CB7CC974F101DB45C_MetadataUsageId; struct Exception_t_marshaled_com; struct Exception_t_marshaled_pinvoke; struct XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0_marshaled_com; struct XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0_marshaled_pinvoke; struct XPathNodeRefU5BU5D_t42E3ACCBD8D6FA1DD321905EB2253ABA6173B1E1; struct BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040; struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821; struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2; struct DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56; struct EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE; struct EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285; struct EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D; struct EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9; struct EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6; struct EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4; struct KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F; struct KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A; struct KeyValuePair_2U5BU5D_t51ECDC3588B5BA2DE76DE4B25B62ACADF928345B; struct KeyValuePair_2U5BU5D_tAE7F87DCEA5EC8AE3923ACF937141910554CD02E; struct KeyValuePair_2U5BU5D_t1336B67B1075C3E1E7713F0436412A73F860ADBB; struct KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262; struct KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB; struct DateTimeOffsetU5BU5D_tBE5BF156BB0B9FFFC5B216B0D02C0D44288FCA25; struct DateTimeU5BU5D_tFEA62BD2EDF382C69C4B1F20ED98F3709EA271C1; struct DecimalU5BU5D_t163CFBECCD3B6655700701D6451CA0CF493CBF0F; struct DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D; struct GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF; struct Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28; struct Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A; struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83; struct Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F; struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A; struct TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F; #ifndef RUNTIMEOBJECT_H #define RUNTIMEOBJECT_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Object #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // RUNTIMEOBJECT_H struct Il2CppArrayBounds; #ifndef RUNTIMEARRAY_H #define RUNTIMEARRAY_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // RUNTIMEARRAY_H #ifndef KEYCOLLECTION_T15C8B15130E4E7B7CD7D11CE909D4ECD1932151E_H #define KEYCOLLECTION_T15C8B15130E4E7B7CD7D11CE909D4ECD1932151E_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/KeyCollection<System.Guid,System.Object> struct KeyCollection_t15C8B15130E4E7B7CD7D11CE909D4ECD1932151E : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection::dictionary Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(KeyCollection_t15C8B15130E4E7B7CD7D11CE909D4ECD1932151E, ___dictionary_0)); } inline Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((&___dictionary_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYCOLLECTION_T15C8B15130E4E7B7CD7D11CE909D4ECD1932151E_H #ifndef KEYCOLLECTION_T959836ABE6844545BF46886E66ADE46030115A4A_H #define KEYCOLLECTION_T959836ABE6844545BF46886E66ADE46030115A4A_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,System.Object> struct KeyCollection_t959836ABE6844545BF46886E66ADE46030115A4A : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection::dictionary Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(KeyCollection_t959836ABE6844545BF46886E66ADE46030115A4A, ___dictionary_0)); } inline Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((&___dictionary_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYCOLLECTION_T959836ABE6844545BF46886E66ADE46030115A4A_H #ifndef KEYCOLLECTION_T35BBEE4BF6694D7EEF3D286B6F9A808FD797F93F_H #define KEYCOLLECTION_T35BBEE4BF6694D7EEF3D286B6F9A808FD797F93F_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Boolean> struct KeyCollection_t35BBEE4BF6694D7EEF3D286B6F9A808FD797F93F : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection::dictionary Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(KeyCollection_t35BBEE4BF6694D7EEF3D286B6F9A808FD797F93F, ___dictionary_0)); } inline Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((&___dictionary_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYCOLLECTION_T35BBEE4BF6694D7EEF3D286B6F9A808FD797F93F_H #ifndef KEYCOLLECTION_TEECFF3D52DBAFA05FAD1589D36F0A8EEF9E2670E_H #define KEYCOLLECTION_TEECFF3D52DBAFA05FAD1589D36F0A8EEF9E2670E_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Int32> struct KeyCollection_tEECFF3D52DBAFA05FAD1589D36F0A8EEF9E2670E : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection::dictionary Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(KeyCollection_tEECFF3D52DBAFA05FAD1589D36F0A8EEF9E2670E, ___dictionary_0)); } inline Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((&___dictionary_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYCOLLECTION_TEECFF3D52DBAFA05FAD1589D36F0A8EEF9E2670E_H #ifndef KEYCOLLECTION_T0394DE2BA7C2C82605C6E9DEBB21A8C5C792E97C_H #define KEYCOLLECTION_T0394DE2BA7C2C82605C6E9DEBB21A8C5C792E97C_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Object> struct KeyCollection_t0394DE2BA7C2C82605C6E9DEBB21A8C5C792E97C : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection::dictionary Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(KeyCollection_t0394DE2BA7C2C82605C6E9DEBB21A8C5C792E97C, ___dictionary_0)); } inline Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((&___dictionary_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYCOLLECTION_T0394DE2BA7C2C82605C6E9DEBB21A8C5C792E97C_H #ifndef KEYCOLLECTION_TB62DC24DEF9A9DC0EE67965814F53091651CAE92_H #define KEYCOLLECTION_TB62DC24DEF9A9DC0EE67965814F53091651CAE92_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Resources.ResourceLocator> struct KeyCollection_tB62DC24DEF9A9DC0EE67965814F53091651CAE92 : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection::dictionary Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(KeyCollection_tB62DC24DEF9A9DC0EE67965814F53091651CAE92, ___dictionary_0)); } inline Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((&___dictionary_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYCOLLECTION_TB62DC24DEF9A9DC0EE67965814F53091651CAE92_H #ifndef VALUECOLLECTION_T46B01CABF972366F0EAD3927B1A97339B8283D5F_H #define VALUECOLLECTION_T46B01CABF972366F0EAD3927B1A97339B8283D5F_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/ValueCollection<System.Guid,System.Object> struct ValueCollection_t46B01CABF972366F0EAD3927B1A97339B8283D5F : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection::dictionary Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_t46B01CABF972366F0EAD3927B1A97339B8283D5F, ___dictionary_0)); } inline Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((&___dictionary_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // VALUECOLLECTION_T46B01CABF972366F0EAD3927B1A97339B8283D5F_H #ifndef VALUECOLLECTION_T0B3ED4599D881B395A256D10EF70A297C2DA00C6_H #define VALUECOLLECTION_T0B3ED4599D881B395A256D10EF70A297C2DA00C6_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Object> struct ValueCollection_t0B3ED4599D881B395A256D10EF70A297C2DA00C6 : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection::dictionary Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_t0B3ED4599D881B395A256D10EF70A297C2DA00C6, ___dictionary_0)); } inline Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((&___dictionary_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // VALUECOLLECTION_T0B3ED4599D881B395A256D10EF70A297C2DA00C6_H #ifndef VALUECOLLECTION_T4B2E092EE9A4E61506400C34FE1B5325E692E7E1_H #define VALUECOLLECTION_T4B2E092EE9A4E61506400C34FE1B5325E692E7E1_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Boolean> struct ValueCollection_t4B2E092EE9A4E61506400C34FE1B5325E692E7E1 : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection::dictionary Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_t4B2E092EE9A4E61506400C34FE1B5325E692E7E1, ___dictionary_0)); } inline Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((&___dictionary_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // VALUECOLLECTION_T4B2E092EE9A4E61506400C34FE1B5325E692E7E1_H #ifndef VALUECOLLECTION_T7B108E5949AABED7EBC85ED1016365781619DAB7_H #define VALUECOLLECTION_T7B108E5949AABED7EBC85ED1016365781619DAB7_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Int32> struct ValueCollection_t7B108E5949AABED7EBC85ED1016365781619DAB7 : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection::dictionary Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_t7B108E5949AABED7EBC85ED1016365781619DAB7, ___dictionary_0)); } inline Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((&___dictionary_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // VALUECOLLECTION_T7B108E5949AABED7EBC85ED1016365781619DAB7_H #ifndef VALUECOLLECTION_T0816666499CBD11E58E1E7C79A4EFC2AA47E08A2_H #define VALUECOLLECTION_T0816666499CBD11E58E1E7C79A4EFC2AA47E08A2_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Object> struct ValueCollection_t0816666499CBD11E58E1E7C79A4EFC2AA47E08A2 : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection::dictionary Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_t0816666499CBD11E58E1E7C79A4EFC2AA47E08A2, ___dictionary_0)); } inline Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((&___dictionary_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // VALUECOLLECTION_T0816666499CBD11E58E1E7C79A4EFC2AA47E08A2_H #ifndef VALUECOLLECTION_T32E4BA93A6E2E9AC038396EC46CDBA2BAE42AF4B_H #define VALUECOLLECTION_T32E4BA93A6E2E9AC038396EC46CDBA2BAE42AF4B_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Resources.ResourceLocator> struct ValueCollection_t32E4BA93A6E2E9AC038396EC46CDBA2BAE42AF4B : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection::dictionary Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_t32E4BA93A6E2E9AC038396EC46CDBA2BAE42AF4B, ___dictionary_0)); } inline Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((&___dictionary_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // VALUECOLLECTION_T32E4BA93A6E2E9AC038396EC46CDBA2BAE42AF4B_H #ifndef DICTIONARY_2_T0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B_H #define DICTIONARY_2_T0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2<System.Guid,System.Object> struct Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t15C8B15130E4E7B7CD7D11CE909D4ECD1932151E * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t46B01CABF972366F0EAD3927B1A97339B8283D5F * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B, ___buckets_0)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((&___buckets_0), value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B, ___entries_1)); } inline EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((&___entries_1), value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((&___comparer_6), value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B, ___keys_7)); } inline KeyCollection_t15C8B15130E4E7B7CD7D11CE909D4ECD1932151E * get_keys_7() const { return ___keys_7; } inline KeyCollection_t15C8B15130E4E7B7CD7D11CE909D4ECD1932151E ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t15C8B15130E4E7B7CD7D11CE909D4ECD1932151E * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((&___keys_7), value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B, ___values_8)); } inline ValueCollection_t46B01CABF972366F0EAD3927B1A97339B8283D5F * get_values_8() const { return ___values_8; } inline ValueCollection_t46B01CABF972366F0EAD3927B1A97339B8283D5F ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t46B01CABF972366F0EAD3927B1A97339B8283D5F * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((&___values_8), value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_9), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DICTIONARY_2_T0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B_H #ifndef DICTIONARY_2_T03608389BB57475AA3F4B2B79D176A27807BC884_H #define DICTIONARY_2_T03608389BB57475AA3F4B2B79D176A27807BC884_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2<System.Int32,System.Object> struct Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t959836ABE6844545BF46886E66ADE46030115A4A * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t0B3ED4599D881B395A256D10EF70A297C2DA00C6 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884, ___buckets_0)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((&___buckets_0), value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884, ___entries_1)); } inline EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((&___entries_1), value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((&___comparer_6), value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884, ___keys_7)); } inline KeyCollection_t959836ABE6844545BF46886E66ADE46030115A4A * get_keys_7() const { return ___keys_7; } inline KeyCollection_t959836ABE6844545BF46886E66ADE46030115A4A ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t959836ABE6844545BF46886E66ADE46030115A4A * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((&___keys_7), value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884, ___values_8)); } inline ValueCollection_t0B3ED4599D881B395A256D10EF70A297C2DA00C6 * get_values_8() const { return ___values_8; } inline ValueCollection_t0B3ED4599D881B395A256D10EF70A297C2DA00C6 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t0B3ED4599D881B395A256D10EF70A297C2DA00C6 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((&___values_8), value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_9), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DICTIONARY_2_T03608389BB57475AA3F4B2B79D176A27807BC884_H #ifndef DICTIONARY_2_T67B76EE53FF18810AB6822EF82D44ADD0E707F21_H #define DICTIONARY_2_T67B76EE53FF18810AB6822EF82D44ADD0E707F21_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2<System.Object,System.Boolean> struct Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t35BBEE4BF6694D7EEF3D286B6F9A808FD797F93F * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t4B2E092EE9A4E61506400C34FE1B5325E692E7E1 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21, ___buckets_0)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((&___buckets_0), value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21, ___entries_1)); } inline EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((&___entries_1), value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((&___comparer_6), value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21, ___keys_7)); } inline KeyCollection_t35BBEE4BF6694D7EEF3D286B6F9A808FD797F93F * get_keys_7() const { return ___keys_7; } inline KeyCollection_t35BBEE4BF6694D7EEF3D286B6F9A808FD797F93F ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t35BBEE4BF6694D7EEF3D286B6F9A808FD797F93F * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((&___keys_7), value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21, ___values_8)); } inline ValueCollection_t4B2E092EE9A4E61506400C34FE1B5325E692E7E1 * get_values_8() const { return ___values_8; } inline ValueCollection_t4B2E092EE9A4E61506400C34FE1B5325E692E7E1 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t4B2E092EE9A4E61506400C34FE1B5325E692E7E1 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((&___values_8), value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_9), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DICTIONARY_2_T67B76EE53FF18810AB6822EF82D44ADD0E707F21_H #ifndef DICTIONARY_2_T81923CE2A312318AE13F58085CCF7FA8D879B77A_H #define DICTIONARY_2_T81923CE2A312318AE13F58085CCF7FA8D879B77A_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2<System.Object,System.Int32> struct Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_tEECFF3D52DBAFA05FAD1589D36F0A8EEF9E2670E * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t7B108E5949AABED7EBC85ED1016365781619DAB7 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A, ___buckets_0)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((&___buckets_0), value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A, ___entries_1)); } inline EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((&___entries_1), value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((&___comparer_6), value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A, ___keys_7)); } inline KeyCollection_tEECFF3D52DBAFA05FAD1589D36F0A8EEF9E2670E * get_keys_7() const { return ___keys_7; } inline KeyCollection_tEECFF3D52DBAFA05FAD1589D36F0A8EEF9E2670E ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_tEECFF3D52DBAFA05FAD1589D36F0A8EEF9E2670E * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((&___keys_7), value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A, ___values_8)); } inline ValueCollection_t7B108E5949AABED7EBC85ED1016365781619DAB7 * get_values_8() const { return ___values_8; } inline ValueCollection_t7B108E5949AABED7EBC85ED1016365781619DAB7 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t7B108E5949AABED7EBC85ED1016365781619DAB7 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((&___values_8), value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_9), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DICTIONARY_2_T81923CE2A312318AE13F58085CCF7FA8D879B77A_H #ifndef DICTIONARY_2_T32F25F093828AA9F93CB11C2A2B4648FD62A09BA_H #define DICTIONARY_2_T32F25F093828AA9F93CB11C2A2B4648FD62A09BA_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2<System.Object,System.Object> struct Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t0394DE2BA7C2C82605C6E9DEBB21A8C5C792E97C * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t0816666499CBD11E58E1E7C79A4EFC2AA47E08A2 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA, ___buckets_0)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((&___buckets_0), value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA, ___entries_1)); } inline EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((&___entries_1), value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((&___comparer_6), value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA, ___keys_7)); } inline KeyCollection_t0394DE2BA7C2C82605C6E9DEBB21A8C5C792E97C * get_keys_7() const { return ___keys_7; } inline KeyCollection_t0394DE2BA7C2C82605C6E9DEBB21A8C5C792E97C ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t0394DE2BA7C2C82605C6E9DEBB21A8C5C792E97C * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((&___keys_7), value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA, ___values_8)); } inline ValueCollection_t0816666499CBD11E58E1E7C79A4EFC2AA47E08A2 * get_values_8() const { return ___values_8; } inline ValueCollection_t0816666499CBD11E58E1E7C79A4EFC2AA47E08A2 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t0816666499CBD11E58E1E7C79A4EFC2AA47E08A2 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((&___values_8), value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_9), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DICTIONARY_2_T32F25F093828AA9F93CB11C2A2B4648FD62A09BA_H #ifndef DICTIONARY_2_TA93B4F31972FED6744B82EC3C419078E966BD3C6_H #define DICTIONARY_2_TA93B4F31972FED6744B82EC3C419078E966BD3C6_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator> struct Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_tB62DC24DEF9A9DC0EE67965814F53091651CAE92 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t32E4BA93A6E2E9AC038396EC46CDBA2BAE42AF4B * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6, ___buckets_0)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((&___buckets_0), value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6, ___entries_1)); } inline EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((&___entries_1), value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((&___comparer_6), value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6, ___keys_7)); } inline KeyCollection_tB62DC24DEF9A9DC0EE67965814F53091651CAE92 * get_keys_7() const { return ___keys_7; } inline KeyCollection_tB62DC24DEF9A9DC0EE67965814F53091651CAE92 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_tB62DC24DEF9A9DC0EE67965814F53091651CAE92 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((&___keys_7), value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6, ___values_8)); } inline ValueCollection_t32E4BA93A6E2E9AC038396EC46CDBA2BAE42AF4B * get_values_8() const { return ___values_8; } inline ValueCollection_t32E4BA93A6E2E9AC038396EC46CDBA2BAE42AF4B ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t32E4BA93A6E2E9AC038396EC46CDBA2BAE42AF4B * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((&___values_8), value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_9), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DICTIONARY_2_TA93B4F31972FED6744B82EC3C419078E966BD3C6_H #ifndef EQUALITYCOMPARER_1_T56C86948D22FF5ED944CA4AA7E54EC0AAD2C06C1_H #define EQUALITYCOMPARER_1_T56C86948D22FF5ED944CA4AA7E54EC0AAD2C06C1_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<MS.Internal.Xml.Cache.XPathNodeRef> struct EqualityComparer_1_t56C86948D22FF5ED944CA4AA7E54EC0AAD2C06C1 : public RuntimeObject { public: public: }; struct EqualityComparer_1_t56C86948D22FF5ED944CA4AA7E54EC0AAD2C06C1_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t56C86948D22FF5ED944CA4AA7E54EC0AAD2C06C1 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t56C86948D22FF5ED944CA4AA7E54EC0AAD2C06C1_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t56C86948D22FF5ED944CA4AA7E54EC0AAD2C06C1 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t56C86948D22FF5ED944CA4AA7E54EC0AAD2C06C1 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t56C86948D22FF5ED944CA4AA7E54EC0AAD2C06C1 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_T56C86948D22FF5ED944CA4AA7E54EC0AAD2C06C1_H #ifndef EQUALITYCOMPARER_1_T4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8_H #define EQUALITYCOMPARER_1_T4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<System.Boolean> struct EqualityComparer_1_t4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8 : public RuntimeObject { public: public: }; struct EqualityComparer_1_t4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_T4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8_H #ifndef EQUALITYCOMPARER_1_T3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5_H #define EQUALITYCOMPARER_1_T3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<System.Byte> struct EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 : public RuntimeObject { public: public: }; struct EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_T3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5_H #ifndef EQUALITYCOMPARER_1_TBE2E709137078E491F7B38EA3C218A7A347DD68F_H #define EQUALITYCOMPARER_1_TBE2E709137078E491F7B38EA3C218A7A347DD68F_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<System.Char> struct EqualityComparer_1_tBE2E709137078E491F7B38EA3C218A7A347DD68F : public RuntimeObject { public: public: }; struct EqualityComparer_1_tBE2E709137078E491F7B38EA3C218A7A347DD68F_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_tBE2E709137078E491F7B38EA3C218A7A347DD68F * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_tBE2E709137078E491F7B38EA3C218A7A347DD68F_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_tBE2E709137078E491F7B38EA3C218A7A347DD68F * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_tBE2E709137078E491F7B38EA3C218A7A347DD68F ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_tBE2E709137078E491F7B38EA3C218A7A347DD68F * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_TBE2E709137078E491F7B38EA3C218A7A347DD68F_H #ifndef EQUALITYCOMPARER_1_T41502C277E18047AC2005F5FB63267CB4C010B77_H #define EQUALITYCOMPARER_1_T41502C277E18047AC2005F5FB63267CB4C010B77_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>> struct EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77 : public RuntimeObject { public: public: }; struct EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_T41502C277E18047AC2005F5FB63267CB4C010B77_H #ifndef EQUALITYCOMPARER_1_T21E166DB6F02E6294F8D979F22ACE807F6743998_H #define EQUALITYCOMPARER_1_T21E166DB6F02E6294F8D979F22ACE807F6743998_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<System.DateTime> struct EqualityComparer_1_t21E166DB6F02E6294F8D979F22ACE807F6743998 : public RuntimeObject { public: public: }; struct EqualityComparer_1_t21E166DB6F02E6294F8D979F22ACE807F6743998_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t21E166DB6F02E6294F8D979F22ACE807F6743998 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t21E166DB6F02E6294F8D979F22ACE807F6743998_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t21E166DB6F02E6294F8D979F22ACE807F6743998 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t21E166DB6F02E6294F8D979F22ACE807F6743998 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t21E166DB6F02E6294F8D979F22ACE807F6743998 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_T21E166DB6F02E6294F8D979F22ACE807F6743998_H #ifndef EQUALITYCOMPARER_1_T7BCF66E24804C5E258DB12209117B0722FC3FDE4_H #define EQUALITYCOMPARER_1_T7BCF66E24804C5E258DB12209117B0722FC3FDE4_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<System.DateTimeOffset> struct EqualityComparer_1_t7BCF66E24804C5E258DB12209117B0722FC3FDE4 : public RuntimeObject { public: public: }; struct EqualityComparer_1_t7BCF66E24804C5E258DB12209117B0722FC3FDE4_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t7BCF66E24804C5E258DB12209117B0722FC3FDE4 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t7BCF66E24804C5E258DB12209117B0722FC3FDE4_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t7BCF66E24804C5E258DB12209117B0722FC3FDE4 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t7BCF66E24804C5E258DB12209117B0722FC3FDE4 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t7BCF66E24804C5E258DB12209117B0722FC3FDE4 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_T7BCF66E24804C5E258DB12209117B0722FC3FDE4_H #ifndef EQUALITYCOMPARER_1_T5F84660374B493F86CCE91B7723DB110A0025F6B_H #define EQUALITYCOMPARER_1_T5F84660374B493F86CCE91B7723DB110A0025F6B_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<System.Decimal> struct EqualityComparer_1_t5F84660374B493F86CCE91B7723DB110A0025F6B : public RuntimeObject { public: public: }; struct EqualityComparer_1_t5F84660374B493F86CCE91B7723DB110A0025F6B_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t5F84660374B493F86CCE91B7723DB110A0025F6B * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t5F84660374B493F86CCE91B7723DB110A0025F6B_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t5F84660374B493F86CCE91B7723DB110A0025F6B * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t5F84660374B493F86CCE91B7723DB110A0025F6B ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t5F84660374B493F86CCE91B7723DB110A0025F6B * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_T5F84660374B493F86CCE91B7723DB110A0025F6B_H #ifndef EQUALITYCOMPARER_1_T2284CDD98A505FC763285959CB32BF8796788102_H #define EQUALITYCOMPARER_1_T2284CDD98A505FC763285959CB32BF8796788102_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<System.Double> struct EqualityComparer_1_t2284CDD98A505FC763285959CB32BF8796788102 : public RuntimeObject { public: public: }; struct EqualityComparer_1_t2284CDD98A505FC763285959CB32BF8796788102_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t2284CDD98A505FC763285959CB32BF8796788102 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t2284CDD98A505FC763285959CB32BF8796788102_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t2284CDD98A505FC763285959CB32BF8796788102 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t2284CDD98A505FC763285959CB32BF8796788102 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t2284CDD98A505FC763285959CB32BF8796788102 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_T2284CDD98A505FC763285959CB32BF8796788102_H #ifndef EQUALITYCOMPARER_1_T0D118F538343D64A03149EE6C285141397B3217E_H #define EQUALITYCOMPARER_1_T0D118F538343D64A03149EE6C285141397B3217E_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<System.Guid> struct EqualityComparer_1_t0D118F538343D64A03149EE6C285141397B3217E : public RuntimeObject { public: public: }; struct EqualityComparer_1_t0D118F538343D64A03149EE6C285141397B3217E_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t0D118F538343D64A03149EE6C285141397B3217E * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t0D118F538343D64A03149EE6C285141397B3217E_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t0D118F538343D64A03149EE6C285141397B3217E * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t0D118F538343D64A03149EE6C285141397B3217E ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t0D118F538343D64A03149EE6C285141397B3217E * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_T0D118F538343D64A03149EE6C285141397B3217E_H #ifndef EQUALITYCOMPARER_1_T4CD1CCB3DD1E825E044304118760FAF6CBEE389D_H #define EQUALITYCOMPARER_1_T4CD1CCB3DD1E825E044304118760FAF6CBEE389D_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<System.Int16> struct EqualityComparer_1_t4CD1CCB3DD1E825E044304118760FAF6CBEE389D : public RuntimeObject { public: public: }; struct EqualityComparer_1_t4CD1CCB3DD1E825E044304118760FAF6CBEE389D_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t4CD1CCB3DD1E825E044304118760FAF6CBEE389D * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t4CD1CCB3DD1E825E044304118760FAF6CBEE389D_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t4CD1CCB3DD1E825E044304118760FAF6CBEE389D * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t4CD1CCB3DD1E825E044304118760FAF6CBEE389D ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t4CD1CCB3DD1E825E044304118760FAF6CBEE389D * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_T4CD1CCB3DD1E825E044304118760FAF6CBEE389D_H #ifndef EQUALITYCOMPARER_1_TB4B7A6BE74484499A34574C8A7FE8E72455B8CF3_H #define EQUALITYCOMPARER_1_TB4B7A6BE74484499A34574C8A7FE8E72455B8CF3_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<System.Int32> struct EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3 : public RuntimeObject { public: public: }; struct EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_TB4B7A6BE74484499A34574C8A7FE8E72455B8CF3_H #ifndef EQUALITYCOMPARER_1_T1C2A0392A1283327989CBB7C784638BDDB3805BB_H #define EQUALITYCOMPARER_1_T1C2A0392A1283327989CBB7C784638BDDB3805BB_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<System.Int32Enum> struct EqualityComparer_1_t1C2A0392A1283327989CBB7C784638BDDB3805BB : public RuntimeObject { public: public: }; struct EqualityComparer_1_t1C2A0392A1283327989CBB7C784638BDDB3805BB_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t1C2A0392A1283327989CBB7C784638BDDB3805BB * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t1C2A0392A1283327989CBB7C784638BDDB3805BB_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t1C2A0392A1283327989CBB7C784638BDDB3805BB * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t1C2A0392A1283327989CBB7C784638BDDB3805BB ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t1C2A0392A1283327989CBB7C784638BDDB3805BB * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_T1C2A0392A1283327989CBB7C784638BDDB3805BB_H #ifndef EQUALITYCOMPARER_1_TFC9F2864754EE91CB606761D0C5B0E139497309E_H #define EQUALITYCOMPARER_1_TFC9F2864754EE91CB606761D0C5B0E139497309E_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<System.Int64> struct EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E : public RuntimeObject { public: public: }; struct EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_TFC9F2864754EE91CB606761D0C5B0E139497309E_H #ifndef EQUALITYCOMPARER_1_T54972BA287ED38B066E4BE7A3B21F49803B62EBA_H #define EQUALITYCOMPARER_1_T54972BA287ED38B066E4BE7A3B21F49803B62EBA_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<System.Object> struct EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA : public RuntimeObject { public: public: }; struct EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_T54972BA287ED38B066E4BE7A3B21F49803B62EBA_H #ifndef EQUALITYCOMPARER_1_T0904D27B79635C0AC267A86C34D85F99E07A355D_H #define EQUALITYCOMPARER_1_T0904D27B79635C0AC267A86C34D85F99E07A355D_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<System.Resources.ResourceLocator> struct EqualityComparer_1_t0904D27B79635C0AC267A86C34D85F99E07A355D : public RuntimeObject { public: public: }; struct EqualityComparer_1_t0904D27B79635C0AC267A86C34D85F99E07A355D_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t0904D27B79635C0AC267A86C34D85F99E07A355D * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t0904D27B79635C0AC267A86C34D85F99E07A355D_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t0904D27B79635C0AC267A86C34D85F99E07A355D * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t0904D27B79635C0AC267A86C34D85F99E07A355D ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t0904D27B79635C0AC267A86C34D85F99E07A355D * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_T0904D27B79635C0AC267A86C34D85F99E07A355D_H #ifndef EQUALITYCOMPARER_1_TBEFFC6F649A17852373A084880D57CB299084137_H #define EQUALITYCOMPARER_1_TBEFFC6F649A17852373A084880D57CB299084137_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<System.String> struct EqualityComparer_1_tBEFFC6F649A17852373A084880D57CB299084137 : public RuntimeObject { public: public: }; struct EqualityComparer_1_tBEFFC6F649A17852373A084880D57CB299084137_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_tBEFFC6F649A17852373A084880D57CB299084137 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_tBEFFC6F649A17852373A084880D57CB299084137_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_tBEFFC6F649A17852373A084880D57CB299084137 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_tBEFFC6F649A17852373A084880D57CB299084137 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_tBEFFC6F649A17852373A084880D57CB299084137 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EQUALITYCOMPARER_1_TBEFFC6F649A17852373A084880D57CB299084137_H #ifndef EXCEPTION_T_H #define EXCEPTION_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Exception struct Exception_t : public RuntimeObject { public: // System.String System.Exception::_className String_t* ____className_1; // System.String System.Exception::_message String_t* ____message_2; // System.Collections.IDictionary System.Exception::_data RuntimeObject* ____data_3; // System.Exception System.Exception::_innerException Exception_t * ____innerException_4; // System.String System.Exception::_helpURL String_t* ____helpURL_5; // System.Object System.Exception::_stackTrace RuntimeObject * ____stackTrace_6; // System.String System.Exception::_stackTraceString String_t* ____stackTraceString_7; // System.String System.Exception::_remoteStackTraceString String_t* ____remoteStackTraceString_8; // System.Int32 System.Exception::_remoteStackIndex int32_t ____remoteStackIndex_9; // System.Object System.Exception::_dynamicMethods RuntimeObject * ____dynamicMethods_10; // System.Int32 System.Exception::_HResult int32_t ____HResult_11; // System.String System.Exception::_source String_t* ____source_12; // System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13; // System.Diagnostics.StackTrace[] System.Exception::captured_traces StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14; // System.IntPtr[] System.Exception::native_trace_ips IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* ___native_trace_ips_15; public: inline static int32_t get_offset_of__className_1() { return static_cast<int32_t>(offsetof(Exception_t, ____className_1)); } inline String_t* get__className_1() const { return ____className_1; } inline String_t** get_address_of__className_1() { return &____className_1; } inline void set__className_1(String_t* value) { ____className_1 = value; Il2CppCodeGenWriteBarrier((&____className_1), value); } inline static int32_t get_offset_of__message_2() { return static_cast<int32_t>(offsetof(Exception_t, ____message_2)); } inline String_t* get__message_2() const { return ____message_2; } inline String_t** get_address_of__message_2() { return &____message_2; } inline void set__message_2(String_t* value) { ____message_2 = value; Il2CppCodeGenWriteBarrier((&____message_2), value); } inline static int32_t get_offset_of__data_3() { return static_cast<int32_t>(offsetof(Exception_t, ____data_3)); } inline RuntimeObject* get__data_3() const { return ____data_3; } inline RuntimeObject** get_address_of__data_3() { return &____data_3; } inline void set__data_3(RuntimeObject* value) { ____data_3 = value; Il2CppCodeGenWriteBarrier((&____data_3), value); } inline static int32_t get_offset_of__innerException_4() { return static_cast<int32_t>(offsetof(Exception_t, ____innerException_4)); } inline Exception_t * get__innerException_4() const { return ____innerException_4; } inline Exception_t ** get_address_of__innerException_4() { return &____innerException_4; } inline void set__innerException_4(Exception_t * value) { ____innerException_4 = value; Il2CppCodeGenWriteBarrier((&____innerException_4), value); } inline static int32_t get_offset_of__helpURL_5() { return static_cast<int32_t>(offsetof(Exception_t, ____helpURL_5)); } inline String_t* get__helpURL_5() const { return ____helpURL_5; } inline String_t** get_address_of__helpURL_5() { return &____helpURL_5; } inline void set__helpURL_5(String_t* value) { ____helpURL_5 = value; Il2CppCodeGenWriteBarrier((&____helpURL_5), value); } inline static int32_t get_offset_of__stackTrace_6() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTrace_6)); } inline RuntimeObject * get__stackTrace_6() const { return ____stackTrace_6; } inline RuntimeObject ** get_address_of__stackTrace_6() { return &____stackTrace_6; } inline void set__stackTrace_6(RuntimeObject * value) { ____stackTrace_6 = value; Il2CppCodeGenWriteBarrier((&____stackTrace_6), value); } inline static int32_t get_offset_of__stackTraceString_7() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTraceString_7)); } inline String_t* get__stackTraceString_7() const { return ____stackTraceString_7; } inline String_t** get_address_of__stackTraceString_7() { return &____stackTraceString_7; } inline void set__stackTraceString_7(String_t* value) { ____stackTraceString_7 = value; Il2CppCodeGenWriteBarrier((&____stackTraceString_7), value); } inline static int32_t get_offset_of__remoteStackTraceString_8() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackTraceString_8)); } inline String_t* get__remoteStackTraceString_8() const { return ____remoteStackTraceString_8; } inline String_t** get_address_of__remoteStackTraceString_8() { return &____remoteStackTraceString_8; } inline void set__remoteStackTraceString_8(String_t* value) { ____remoteStackTraceString_8 = value; Il2CppCodeGenWriteBarrier((&____remoteStackTraceString_8), value); } inline static int32_t get_offset_of__remoteStackIndex_9() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackIndex_9)); } inline int32_t get__remoteStackIndex_9() const { return ____remoteStackIndex_9; } inline int32_t* get_address_of__remoteStackIndex_9() { return &____remoteStackIndex_9; } inline void set__remoteStackIndex_9(int32_t value) { ____remoteStackIndex_9 = value; } inline static int32_t get_offset_of__dynamicMethods_10() { return static_cast<int32_t>(offsetof(Exception_t, ____dynamicMethods_10)); } inline RuntimeObject * get__dynamicMethods_10() const { return ____dynamicMethods_10; } inline RuntimeObject ** get_address_of__dynamicMethods_10() { return &____dynamicMethods_10; } inline void set__dynamicMethods_10(RuntimeObject * value) { ____dynamicMethods_10 = value; Il2CppCodeGenWriteBarrier((&____dynamicMethods_10), value); } inline static int32_t get_offset_of__HResult_11() { return static_cast<int32_t>(offsetof(Exception_t, ____HResult_11)); } inline int32_t get__HResult_11() const { return ____HResult_11; } inline int32_t* get_address_of__HResult_11() { return &____HResult_11; } inline void set__HResult_11(int32_t value) { ____HResult_11 = value; } inline static int32_t get_offset_of__source_12() { return static_cast<int32_t>(offsetof(Exception_t, ____source_12)); } inline String_t* get__source_12() const { return ____source_12; } inline String_t** get_address_of__source_12() { return &____source_12; } inline void set__source_12(String_t* value) { ____source_12 = value; Il2CppCodeGenWriteBarrier((&____source_12), value); } inline static int32_t get_offset_of__safeSerializationManager_13() { return static_cast<int32_t>(offsetof(Exception_t, ____safeSerializationManager_13)); } inline SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * get__safeSerializationManager_13() const { return ____safeSerializationManager_13; } inline SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 ** get_address_of__safeSerializationManager_13() { return &____safeSerializationManager_13; } inline void set__safeSerializationManager_13(SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * value) { ____safeSerializationManager_13 = value; Il2CppCodeGenWriteBarrier((&____safeSerializationManager_13), value); } inline static int32_t get_offset_of_captured_traces_14() { return static_cast<int32_t>(offsetof(Exception_t, ___captured_traces_14)); } inline StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* get_captured_traces_14() const { return ___captured_traces_14; } inline StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196** get_address_of_captured_traces_14() { return &___captured_traces_14; } inline void set_captured_traces_14(StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* value) { ___captured_traces_14 = value; Il2CppCodeGenWriteBarrier((&___captured_traces_14), value); } inline static int32_t get_offset_of_native_trace_ips_15() { return static_cast<int32_t>(offsetof(Exception_t, ___native_trace_ips_15)); } inline IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* get_native_trace_ips_15() const { return ___native_trace_ips_15; } inline IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD** get_address_of_native_trace_ips_15() { return &___native_trace_ips_15; } inline void set_native_trace_ips_15(IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* value) { ___native_trace_ips_15 = value; Il2CppCodeGenWriteBarrier((&___native_trace_ips_15), value); } }; struct Exception_t_StaticFields { public: // System.Object System.Exception::s_EDILock RuntimeObject * ___s_EDILock_0; public: inline static int32_t get_offset_of_s_EDILock_0() { return static_cast<int32_t>(offsetof(Exception_t_StaticFields, ___s_EDILock_0)); } inline RuntimeObject * get_s_EDILock_0() const { return ___s_EDILock_0; } inline RuntimeObject ** get_address_of_s_EDILock_0() { return &___s_EDILock_0; } inline void set_s_EDILock_0(RuntimeObject * value) { ___s_EDILock_0 = value; Il2CppCodeGenWriteBarrier((&___s_EDILock_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Exception struct Exception_t_marshaled_pinvoke { char* ____className_1; char* ____message_2; RuntimeObject* ____data_3; Exception_t_marshaled_pinvoke* ____innerException_4; char* ____helpURL_5; Il2CppIUnknown* ____stackTrace_6; char* ____stackTraceString_7; char* ____remoteStackTraceString_8; int32_t ____remoteStackIndex_9; Il2CppIUnknown* ____dynamicMethods_10; int32_t ____HResult_11; char* ____source_12; SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13; StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14; intptr_t* ___native_trace_ips_15; }; // Native definition for COM marshalling of System.Exception struct Exception_t_marshaled_com { Il2CppChar* ____className_1; Il2CppChar* ____message_2; RuntimeObject* ____data_3; Exception_t_marshaled_com* ____innerException_4; Il2CppChar* ____helpURL_5; Il2CppIUnknown* ____stackTrace_6; Il2CppChar* ____stackTraceString_7; Il2CppChar* ____remoteStackTraceString_8; int32_t ____remoteStackIndex_9; Il2CppIUnknown* ____dynamicMethods_10; int32_t ____HResult_11; Il2CppChar* ____source_12; SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13; StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14; intptr_t* ___native_trace_ips_15; }; #endif // EXCEPTION_T_H #ifndef MEMBERINFO_T_H #define MEMBERINFO_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.MemberInfo struct MemberInfo_t : public RuntimeObject { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // MEMBERINFO_T_H #ifndef CONDITIONALWEAKTABLE_2_T26E8B55E13286793B294EE63AE38FECAE7FDEF98_H #define CONDITIONALWEAKTABLE_2_T26E8B55E13286793B294EE63AE38FECAE7FDEF98_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Runtime.Serialization.SerializationInfo> struct ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 : public RuntimeObject { public: // System.Runtime.CompilerServices.Ephemeron[] System.Runtime.CompilerServices.ConditionalWeakTable`2::data EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* ___data_0; // System.Object System.Runtime.CompilerServices.ConditionalWeakTable`2::_lock RuntimeObject * ____lock_1; // System.Int32 System.Runtime.CompilerServices.ConditionalWeakTable`2::size int32_t ___size_2; public: inline static int32_t get_offset_of_data_0() { return static_cast<int32_t>(offsetof(ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98, ___data_0)); } inline EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* get_data_0() const { return ___data_0; } inline EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10** get_address_of_data_0() { return &___data_0; } inline void set_data_0(EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* value) { ___data_0 = value; Il2CppCodeGenWriteBarrier((&___data_0), value); } inline static int32_t get_offset_of__lock_1() { return static_cast<int32_t>(offsetof(ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98, ____lock_1)); } inline RuntimeObject * get__lock_1() const { return ____lock_1; } inline RuntimeObject ** get_address_of__lock_1() { return &____lock_1; } inline void set__lock_1(RuntimeObject * value) { ____lock_1 = value; Il2CppCodeGenWriteBarrier((&____lock_1), value); } inline static int32_t get_offset_of_size_2() { return static_cast<int32_t>(offsetof(ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98, ___size_2)); } inline int32_t get_size_2() const { return ___size_2; } inline int32_t* get_address_of_size_2() { return &___size_2; } inline void set_size_2(int32_t value) { ___size_2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // CONDITIONALWEAKTABLE_2_T26E8B55E13286793B294EE63AE38FECAE7FDEF98_H #ifndef SERIALIZATIONINFO_T1BB80E9C9DEA52DBF464487234B045E2930ADA26_H #define SERIALIZATIONINFO_T1BB80E9C9DEA52DBF464487234B045E2930ADA26_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Runtime.Serialization.SerializationInfo struct SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 : public RuntimeObject { public: // System.String[] System.Runtime.Serialization.SerializationInfo::m_members StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___m_members_0; // System.Object[] System.Runtime.Serialization.SerializationInfo::m_data ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___m_data_1; // System.Type[] System.Runtime.Serialization.SerializationInfo::m_types TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___m_types_2; // System.Collections.Generic.Dictionary`2<System.String,System.Int32> System.Runtime.Serialization.SerializationInfo::m_nameToIndex Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB * ___m_nameToIndex_3; // System.Int32 System.Runtime.Serialization.SerializationInfo::m_currMember int32_t ___m_currMember_4; // System.Runtime.Serialization.IFormatterConverter System.Runtime.Serialization.SerializationInfo::m_converter RuntimeObject* ___m_converter_5; // System.String System.Runtime.Serialization.SerializationInfo::m_fullTypeName String_t* ___m_fullTypeName_6; // System.String System.Runtime.Serialization.SerializationInfo::m_assemName String_t* ___m_assemName_7; // System.Type System.Runtime.Serialization.SerializationInfo::objectType Type_t * ___objectType_8; // System.Boolean System.Runtime.Serialization.SerializationInfo::isFullTypeNameSetExplicit bool ___isFullTypeNameSetExplicit_9; // System.Boolean System.Runtime.Serialization.SerializationInfo::isAssemblyNameSetExplicit bool ___isAssemblyNameSetExplicit_10; // System.Boolean System.Runtime.Serialization.SerializationInfo::requireSameTokenInPartialTrust bool ___requireSameTokenInPartialTrust_11; public: inline static int32_t get_offset_of_m_members_0() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_members_0)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_m_members_0() const { return ___m_members_0; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_m_members_0() { return &___m_members_0; } inline void set_m_members_0(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___m_members_0 = value; Il2CppCodeGenWriteBarrier((&___m_members_0), value); } inline static int32_t get_offset_of_m_data_1() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_data_1)); } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_m_data_1() const { return ___m_data_1; } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_m_data_1() { return &___m_data_1; } inline void set_m_data_1(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value) { ___m_data_1 = value; Il2CppCodeGenWriteBarrier((&___m_data_1), value); } inline static int32_t get_offset_of_m_types_2() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_types_2)); } inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get_m_types_2() const { return ___m_types_2; } inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of_m_types_2() { return &___m_types_2; } inline void set_m_types_2(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value) { ___m_types_2 = value; Il2CppCodeGenWriteBarrier((&___m_types_2), value); } inline static int32_t get_offset_of_m_nameToIndex_3() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_nameToIndex_3)); } inline Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB * get_m_nameToIndex_3() const { return ___m_nameToIndex_3; } inline Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB ** get_address_of_m_nameToIndex_3() { return &___m_nameToIndex_3; } inline void set_m_nameToIndex_3(Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB * value) { ___m_nameToIndex_3 = value; Il2CppCodeGenWriteBarrier((&___m_nameToIndex_3), value); } inline static int32_t get_offset_of_m_currMember_4() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_currMember_4)); } inline int32_t get_m_currMember_4() const { return ___m_currMember_4; } inline int32_t* get_address_of_m_currMember_4() { return &___m_currMember_4; } inline void set_m_currMember_4(int32_t value) { ___m_currMember_4 = value; } inline static int32_t get_offset_of_m_converter_5() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_converter_5)); } inline RuntimeObject* get_m_converter_5() const { return ___m_converter_5; } inline RuntimeObject** get_address_of_m_converter_5() { return &___m_converter_5; } inline void set_m_converter_5(RuntimeObject* value) { ___m_converter_5 = value; Il2CppCodeGenWriteBarrier((&___m_converter_5), value); } inline static int32_t get_offset_of_m_fullTypeName_6() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_fullTypeName_6)); } inline String_t* get_m_fullTypeName_6() const { return ___m_fullTypeName_6; } inline String_t** get_address_of_m_fullTypeName_6() { return &___m_fullTypeName_6; } inline void set_m_fullTypeName_6(String_t* value) { ___m_fullTypeName_6 = value; Il2CppCodeGenWriteBarrier((&___m_fullTypeName_6), value); } inline static int32_t get_offset_of_m_assemName_7() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_assemName_7)); } inline String_t* get_m_assemName_7() const { return ___m_assemName_7; } inline String_t** get_address_of_m_assemName_7() { return &___m_assemName_7; } inline void set_m_assemName_7(String_t* value) { ___m_assemName_7 = value; Il2CppCodeGenWriteBarrier((&___m_assemName_7), value); } inline static int32_t get_offset_of_objectType_8() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___objectType_8)); } inline Type_t * get_objectType_8() const { return ___objectType_8; } inline Type_t ** get_address_of_objectType_8() { return &___objectType_8; } inline void set_objectType_8(Type_t * value) { ___objectType_8 = value; Il2CppCodeGenWriteBarrier((&___objectType_8), value); } inline static int32_t get_offset_of_isFullTypeNameSetExplicit_9() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___isFullTypeNameSetExplicit_9)); } inline bool get_isFullTypeNameSetExplicit_9() const { return ___isFullTypeNameSetExplicit_9; } inline bool* get_address_of_isFullTypeNameSetExplicit_9() { return &___isFullTypeNameSetExplicit_9; } inline void set_isFullTypeNameSetExplicit_9(bool value) { ___isFullTypeNameSetExplicit_9 = value; } inline static int32_t get_offset_of_isAssemblyNameSetExplicit_10() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___isAssemblyNameSetExplicit_10)); } inline bool get_isAssemblyNameSetExplicit_10() const { return ___isAssemblyNameSetExplicit_10; } inline bool* get_address_of_isAssemblyNameSetExplicit_10() { return &___isAssemblyNameSetExplicit_10; } inline void set_isAssemblyNameSetExplicit_10(bool value) { ___isAssemblyNameSetExplicit_10 = value; } inline static int32_t get_offset_of_requireSameTokenInPartialTrust_11() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___requireSameTokenInPartialTrust_11)); } inline bool get_requireSameTokenInPartialTrust_11() const { return ___requireSameTokenInPartialTrust_11; } inline bool* get_address_of_requireSameTokenInPartialTrust_11() { return &___requireSameTokenInPartialTrust_11; } inline void set_requireSameTokenInPartialTrust_11(bool value) { ___requireSameTokenInPartialTrust_11 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SERIALIZATIONINFO_T1BB80E9C9DEA52DBF464487234B045E2930ADA26_H #ifndef STRING_T_H #define STRING_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.String struct String_t : public RuntimeObject { public: // System.Int32 System.String::m_stringLength int32_t ___m_stringLength_0; // System.Char System.String::m_firstChar Il2CppChar ___m_firstChar_1; public: inline static int32_t get_offset_of_m_stringLength_0() { return static_cast<int32_t>(offsetof(String_t, ___m_stringLength_0)); } inline int32_t get_m_stringLength_0() const { return ___m_stringLength_0; } inline int32_t* get_address_of_m_stringLength_0() { return &___m_stringLength_0; } inline void set_m_stringLength_0(int32_t value) { ___m_stringLength_0 = value; } inline static int32_t get_offset_of_m_firstChar_1() { return static_cast<int32_t>(offsetof(String_t, ___m_firstChar_1)); } inline Il2CppChar get_m_firstChar_1() const { return ___m_firstChar_1; } inline Il2CppChar* get_address_of_m_firstChar_1() { return &___m_firstChar_1; } inline void set_m_firstChar_1(Il2CppChar value) { ___m_firstChar_1 = value; } }; struct String_t_StaticFields { public: // System.String System.String::Empty String_t* ___Empty_5; public: inline static int32_t get_offset_of_Empty_5() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_5)); } inline String_t* get_Empty_5() const { return ___Empty_5; } inline String_t** get_address_of_Empty_5() { return &___Empty_5; } inline void set_Empty_5(String_t* value) { ___Empty_5 = value; Il2CppCodeGenWriteBarrier((&___Empty_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // STRING_T_H #ifndef VALUETYPE_T4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_H #define VALUETYPE_T4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ValueType struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF : public RuntimeObject { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.ValueType struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_marshaled_pinvoke { }; // Native definition for COM marshalling of System.ValueType struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_marshaled_com { }; #endif // VALUETYPE_T4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_H #ifndef XPATHNODEREF_T6F631244BF7B58CE7DB9239662B4EE745CD54E14_H #define XPATHNODEREF_T6F631244BF7B58CE7DB9239662B4EE745CD54E14_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // MS.Internal.Xml.Cache.XPathNodeRef struct XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 { public: // MS.Internal.Xml.Cache.XPathNode[] MS.Internal.Xml.Cache.XPathNodeRef::page XPathNodeU5BU5D_tBC351C5172049794ED3550500C082D4E1F1D5A8B* ___page_0; // System.Int32 MS.Internal.Xml.Cache.XPathNodeRef::idx int32_t ___idx_1; public: inline static int32_t get_offset_of_page_0() { return static_cast<int32_t>(offsetof(XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14, ___page_0)); } inline XPathNodeU5BU5D_tBC351C5172049794ED3550500C082D4E1F1D5A8B* get_page_0() const { return ___page_0; } inline XPathNodeU5BU5D_tBC351C5172049794ED3550500C082D4E1F1D5A8B** get_address_of_page_0() { return &___page_0; } inline void set_page_0(XPathNodeU5BU5D_tBC351C5172049794ED3550500C082D4E1F1D5A8B* value) { ___page_0 = value; Il2CppCodeGenWriteBarrier((&___page_0), value); } inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14, ___idx_1)); } inline int32_t get_idx_1() const { return ___idx_1; } inline int32_t* get_address_of_idx_1() { return &___idx_1; } inline void set_idx_1(int32_t value) { ___idx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of MS.Internal.Xml.Cache.XPathNodeRef struct XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14_marshaled_pinvoke { XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0_marshaled_pinvoke* ___page_0; int32_t ___idx_1; }; // Native definition for COM marshalling of MS.Internal.Xml.Cache.XPathNodeRef struct XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14_marshaled_com { XPathNode_tC207ED6C653E80055FE6C5ECD3E6137A326659A0_marshaled_com* ___page_0; int32_t ___idx_1; }; #endif // XPATHNODEREF_T6F631244BF7B58CE7DB9239662B4EE745CD54E14_H #ifndef BOOLEAN_TB53F6830F670160873277339AA58F15CAED4399C_H #define BOOLEAN_TB53F6830F670160873277339AA58F15CAED4399C_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Boolean struct Boolean_tB53F6830F670160873277339AA58F15CAED4399C { public: // System.Boolean System.Boolean::m_value bool ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C, ___m_value_0)); } inline bool get_m_value_0() const { return ___m_value_0; } inline bool* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(bool value) { ___m_value_0 = value; } }; struct Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields { public: // System.String System.Boolean::TrueString String_t* ___TrueString_5; // System.String System.Boolean::FalseString String_t* ___FalseString_6; public: inline static int32_t get_offset_of_TrueString_5() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields, ___TrueString_5)); } inline String_t* get_TrueString_5() const { return ___TrueString_5; } inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; } inline void set_TrueString_5(String_t* value) { ___TrueString_5 = value; Il2CppCodeGenWriteBarrier((&___TrueString_5), value); } inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields, ___FalseString_6)); } inline String_t* get_FalseString_6() const { return ___FalseString_6; } inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; } inline void set_FalseString_6(String_t* value) { ___FalseString_6 = value; Il2CppCodeGenWriteBarrier((&___FalseString_6), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // BOOLEAN_TB53F6830F670160873277339AA58F15CAED4399C_H #ifndef BYTE_TF87C579059BD4633E6840EBBBEEF899C6E33EF07_H #define BYTE_TF87C579059BD4633E6840EBBBEEF899C6E33EF07_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Byte struct Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07 { public: // System.Byte System.Byte::m_value uint8_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07, ___m_value_0)); } inline uint8_t get_m_value_0() const { return ___m_value_0; } inline uint8_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint8_t value) { ___m_value_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // BYTE_TF87C579059BD4633E6840EBBBEEF899C6E33EF07_H #ifndef CHAR_TBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_H #define CHAR_TBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Char struct Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9 { public: // System.Char System.Char::m_value Il2CppChar ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9, ___m_value_0)); } inline Il2CppChar get_m_value_0() const { return ___m_value_0; } inline Il2CppChar* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(Il2CppChar value) { ___m_value_0 = value; } }; struct Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_StaticFields { public: // System.Byte[] System.Char::categoryForLatin1 ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___categoryForLatin1_3; public: inline static int32_t get_offset_of_categoryForLatin1_3() { return static_cast<int32_t>(offsetof(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_StaticFields, ___categoryForLatin1_3)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_categoryForLatin1_3() const { return ___categoryForLatin1_3; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_categoryForLatin1_3() { return &___categoryForLatin1_3; } inline void set_categoryForLatin1_3(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___categoryForLatin1_3 = value; Il2CppCodeGenWriteBarrier((&___categoryForLatin1_3), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // CHAR_TBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_H #ifndef DICTIONARYENTRY_TB5348A26B94274FCC1DD77185BD5946E283B11A4_H #define DICTIONARYENTRY_TB5348A26B94274FCC1DD77185BD5946E283B11A4_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.DictionaryEntry struct DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 { public: // System.Object System.Collections.DictionaryEntry::_key RuntimeObject * ____key_0; // System.Object System.Collections.DictionaryEntry::_value RuntimeObject * ____value_1; public: inline static int32_t get_offset_of__key_0() { return static_cast<int32_t>(offsetof(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4, ____key_0)); } inline RuntimeObject * get__key_0() const { return ____key_0; } inline RuntimeObject ** get_address_of__key_0() { return &____key_0; } inline void set__key_0(RuntimeObject * value) { ____key_0 = value; Il2CppCodeGenWriteBarrier((&____key_0), value); } inline static int32_t get_offset_of__value_1() { return static_cast<int32_t>(offsetof(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4, ____value_1)); } inline RuntimeObject * get__value_1() const { return ____value_1; } inline RuntimeObject ** get_address_of__value_1() { return &____value_1; } inline void set__value_1(RuntimeObject * value) { ____value_1 = value; Il2CppCodeGenWriteBarrier((&____value_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Collections.DictionaryEntry struct DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_marshaled_pinvoke { Il2CppIUnknown* ____key_0; Il2CppIUnknown* ____value_1; }; // Native definition for COM marshalling of System.Collections.DictionaryEntry struct DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_marshaled_com { Il2CppIUnknown* ____key_0; Il2CppIUnknown* ____value_1; }; #endif // DICTIONARYENTRY_TB5348A26B94274FCC1DD77185BD5946E283B11A4_H #ifndef BYTEEQUALITYCOMPARER_T45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B_H #define BYTEEQUALITYCOMPARER_T45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.ByteEqualityComparer struct ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B : public EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // BYTEEQUALITYCOMPARER_T45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B_H #ifndef ENTRY_T7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_H #define ENTRY_T7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object> struct Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key int32_t ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value RuntimeObject * ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D, ___key_2)); } inline int32_t get_key_2() const { return ___key_2; } inline int32_t* get_address_of_key_2() { return &___key_2; } inline void set_key_2(int32_t value) { ___key_2 = value; } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D, ___value_3)); } inline RuntimeObject * get_value_3() const { return ___value_3; } inline RuntimeObject ** get_address_of_value_3() { return &___value_3; } inline void set_value_3(RuntimeObject * value) { ___value_3 = value; Il2CppCodeGenWriteBarrier((&___value_3), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENTRY_T7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_H #ifndef ENTRY_T495C47A91D5A1899AF832D603308B663495EC5A8_H #define ENTRY_T495C47A91D5A1899AF832D603308B663495EC5A8_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Boolean> struct Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key RuntimeObject * ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value bool ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t495C47A91D5A1899AF832D603308B663495EC5A8, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t495C47A91D5A1899AF832D603308B663495EC5A8, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t495C47A91D5A1899AF832D603308B663495EC5A8, ___key_2)); } inline RuntimeObject * get_key_2() const { return ___key_2; } inline RuntimeObject ** get_address_of_key_2() { return &___key_2; } inline void set_key_2(RuntimeObject * value) { ___key_2 = value; Il2CppCodeGenWriteBarrier((&___key_2), value); } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t495C47A91D5A1899AF832D603308B663495EC5A8, ___value_3)); } inline bool get_value_3() const { return ___value_3; } inline bool* get_address_of_value_3() { return &___value_3; } inline void set_value_3(bool value) { ___value_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENTRY_T495C47A91D5A1899AF832D603308B663495EC5A8_H #ifndef ENTRY_T06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_H #define ENTRY_T06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32> struct Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key RuntimeObject * ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value int32_t ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE, ___key_2)); } inline RuntimeObject * get_key_2() const { return ___key_2; } inline RuntimeObject ** get_address_of_key_2() { return &___key_2; } inline void set_key_2(RuntimeObject * value) { ___key_2 = value; Il2CppCodeGenWriteBarrier((&___key_2), value); } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE, ___value_3)); } inline int32_t get_value_3() const { return ___value_3; } inline int32_t* get_address_of_value_3() { return &___value_3; } inline void set_value_3(int32_t value) { ___value_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENTRY_T06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_H #ifndef ENTRY_T03898C03E4E291FD6780D28D81A25E3CACF2BADA_H #define ENTRY_T03898C03E4E291FD6780D28D81A25E3CACF2BADA_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object> struct Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key RuntimeObject * ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value RuntimeObject * ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA, ___key_2)); } inline RuntimeObject * get_key_2() const { return ___key_2; } inline RuntimeObject ** get_address_of_key_2() { return &___key_2; } inline void set_key_2(RuntimeObject * value) { ___key_2 = value; Il2CppCodeGenWriteBarrier((&___key_2), value); } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA, ___value_3)); } inline RuntimeObject * get_value_3() const { return ___value_3; } inline RuntimeObject ** get_address_of_value_3() { return &___value_3; } inline void set_value_3(RuntimeObject * value) { ___value_3 = value; Il2CppCodeGenWriteBarrier((&___value_3), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENTRY_T03898C03E4E291FD6780D28D81A25E3CACF2BADA_H #ifndef ENUMEQUALITYCOMPARER_1_TF52C67ADEB6BE6748FD0C9630C4A563E364AF8C8_H #define ENUMEQUALITYCOMPARER_1_TF52C67ADEB6BE6748FD0C9630C4A563E364AF8C8_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EnumEqualityComparer`1<System.Int32Enum> struct EnumEqualityComparer_1_tF52C67ADEB6BE6748FD0C9630C4A563E364AF8C8 : public EqualityComparer_1_t1C2A0392A1283327989CBB7C784638BDDB3805BB { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMEQUALITYCOMPARER_1_TF52C67ADEB6BE6748FD0C9630C4A563E364AF8C8_H #ifndef INTERNALSTRINGCOMPARER_TCD150130A3DB4C80186B5D8145B910B33496D4CD_H #define INTERNALSTRINGCOMPARER_TCD150130A3DB4C80186B5D8145B910B33496D4CD_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.InternalStringComparer struct InternalStringComparer_tCD150130A3DB4C80186B5D8145B910B33496D4CD : public EqualityComparer_1_tBEFFC6F649A17852373A084880D57CB299084137 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTERNALSTRINGCOMPARER_TCD150130A3DB4C80186B5D8145B910B33496D4CD_H #ifndef KEYVALUEPAIR_2_T142B50DAD5164EBD2E1495FD821B1A4C3233FA26_H #define KEYVALUEPAIR_2_T142B50DAD5164EBD2E1495FD821B1A4C3233FA26_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object> struct KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 { public: // TKey System.Collections.Generic.KeyValuePair`2::key int32_t ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value RuntimeObject * ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26, ___key_0)); } inline int32_t get_key_0() const { return ___key_0; } inline int32_t* get_address_of_key_0() { return &___key_0; } inline void set_key_0(int32_t value) { ___key_0 = value; } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26, ___value_1)); } inline RuntimeObject * get_value_1() const { return ___value_1; } inline RuntimeObject ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(RuntimeObject * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((&___value_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T142B50DAD5164EBD2E1495FD821B1A4C3233FA26_H #ifndef KEYVALUEPAIR_2_TF975BF5238F06AC9CCA19111DD41484E071258C1_H #define KEYVALUEPAIR_2_TF975BF5238F06AC9CCA19111DD41484E071258C1_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean> struct KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 { public: // TKey System.Collections.Generic.KeyValuePair`2::key RuntimeObject * ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value bool ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((&___key_0), value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1, ___value_1)); } inline bool get_value_1() const { return ___value_1; } inline bool* get_address_of_value_1() { return &___value_1; } inline void set_value_1(bool value) { ___value_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_TF975BF5238F06AC9CCA19111DD41484E071258C1_H #ifndef KEYVALUEPAIR_2_T3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_H #define KEYVALUEPAIR_2_T3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32> struct KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E { public: // TKey System.Collections.Generic.KeyValuePair`2::key RuntimeObject * ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value int32_t ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((&___key_0), value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E, ___value_1)); } inline int32_t get_value_1() const { return ___value_1; } inline int32_t* get_address_of_value_1() { return &___value_1; } inline void set_value_1(int32_t value) { ___value_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_H #ifndef KEYVALUEPAIR_2_T23481547E419E16E3B96A303578C1EB685C99EEE_H #define KEYVALUEPAIR_2_T23481547E419E16E3B96A303578C1EB685C99EEE_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<System.Object,System.Object> struct KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE { public: // TKey System.Collections.Generic.KeyValuePair`2::key RuntimeObject * ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value RuntimeObject * ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((&___key_0), value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE, ___value_1)); } inline RuntimeObject * get_value_1() const { return ___value_1; } inline RuntimeObject ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(RuntimeObject * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((&___value_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T23481547E419E16E3B96A303578C1EB685C99EEE_H #ifndef NONRANDOMIZEDSTRINGEQUALITYCOMPARER_T92C20503D9C5060A557792ABCCC06EF2DD77E5D9_H #define NONRANDOMIZEDSTRINGEQUALITYCOMPARER_T92C20503D9C5060A557792ABCCC06EF2DD77E5D9_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.NonRandomizedStringEqualityComparer struct NonRandomizedStringEqualityComparer_t92C20503D9C5060A557792ABCCC06EF2DD77E5D9 : public EqualityComparer_1_tBEFFC6F649A17852373A084880D57CB299084137 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // NONRANDOMIZEDSTRINGEQUALITYCOMPARER_T92C20503D9C5060A557792ABCCC06EF2DD77E5D9_H #ifndef OBJECTEQUALITYCOMPARER_1_T91BE33FDBEB0BF8C165B1D43F1D71CAC93BCF806_H #define OBJECTEQUALITYCOMPARER_1_T91BE33FDBEB0BF8C165B1D43F1D71CAC93BCF806_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.ObjectEqualityComparer`1<MS.Internal.Xml.Cache.XPathNodeRef> struct ObjectEqualityComparer_1_t91BE33FDBEB0BF8C165B1D43F1D71CAC93BCF806 : public EqualityComparer_1_t56C86948D22FF5ED944CA4AA7E54EC0AAD2C06C1 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // OBJECTEQUALITYCOMPARER_1_T91BE33FDBEB0BF8C165B1D43F1D71CAC93BCF806_H #ifndef OBJECTEQUALITYCOMPARER_1_T34882718214839033B864C5F303FE6AFDA729360_H #define OBJECTEQUALITYCOMPARER_1_T34882718214839033B864C5F303FE6AFDA729360_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.ObjectEqualityComparer`1<System.Boolean> struct ObjectEqualityComparer_1_t34882718214839033B864C5F303FE6AFDA729360 : public EqualityComparer_1_t4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // OBJECTEQUALITYCOMPARER_1_T34882718214839033B864C5F303FE6AFDA729360_H #ifndef OBJECTEQUALITYCOMPARER_1_T991D4C5FF670514C079B09BF28A3A92B7C3B9A80_H #define OBJECTEQUALITYCOMPARER_1_T991D4C5FF670514C079B09BF28A3A92B7C3B9A80_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.ObjectEqualityComparer`1<System.Byte> struct ObjectEqualityComparer_1_t991D4C5FF670514C079B09BF28A3A92B7C3B9A80 : public EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // OBJECTEQUALITYCOMPARER_1_T991D4C5FF670514C079B09BF28A3A92B7C3B9A80_H #ifndef OBJECTEQUALITYCOMPARER_1_T60D5252FC0842F7191D4FB1F339BBC600FCDBBE3_H #define OBJECTEQUALITYCOMPARER_1_T60D5252FC0842F7191D4FB1F339BBC600FCDBBE3_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.ObjectEqualityComparer`1<System.Char> struct ObjectEqualityComparer_1_t60D5252FC0842F7191D4FB1F339BBC600FCDBBE3 : public EqualityComparer_1_tBE2E709137078E491F7B38EA3C218A7A347DD68F { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // OBJECTEQUALITYCOMPARER_1_T60D5252FC0842F7191D4FB1F339BBC600FCDBBE3_H #ifndef OBJECTEQUALITYCOMPARER_1_T70F783B7A20C43971F7A70A23B147457352B79C9_H #define OBJECTEQUALITYCOMPARER_1_T70F783B7A20C43971F7A70A23B147457352B79C9_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>> struct ObjectEqualityComparer_1_t70F783B7A20C43971F7A70A23B147457352B79C9 : public EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // OBJECTEQUALITYCOMPARER_1_T70F783B7A20C43971F7A70A23B147457352B79C9_H #ifndef OBJECTEQUALITYCOMPARER_1_T5867045D80C6F0D5516E9E69FE749B7B4883786E_H #define OBJECTEQUALITYCOMPARER_1_T5867045D80C6F0D5516E9E69FE749B7B4883786E_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.ObjectEqualityComparer`1<System.DateTime> struct ObjectEqualityComparer_1_t5867045D80C6F0D5516E9E69FE749B7B4883786E : public EqualityComparer_1_t21E166DB6F02E6294F8D979F22ACE807F6743998 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // OBJECTEQUALITYCOMPARER_1_T5867045D80C6F0D5516E9E69FE749B7B4883786E_H #ifndef OBJECTEQUALITYCOMPARER_1_TAD42BD0F576218F36F436566838EED438F63681D_H #define OBJECTEQUALITYCOMPARER_1_TAD42BD0F576218F36F436566838EED438F63681D_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.ObjectEqualityComparer`1<System.DateTimeOffset> struct ObjectEqualityComparer_1_tAD42BD0F576218F36F436566838EED438F63681D : public EqualityComparer_1_t7BCF66E24804C5E258DB12209117B0722FC3FDE4 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // OBJECTEQUALITYCOMPARER_1_TAD42BD0F576218F36F436566838EED438F63681D_H #ifndef OBJECTEQUALITYCOMPARER_1_T99C7825C36DB817A63A867A122B2A47BAD67A5E9_H #define OBJECTEQUALITYCOMPARER_1_T99C7825C36DB817A63A867A122B2A47BAD67A5E9_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.ObjectEqualityComparer`1<System.Decimal> struct ObjectEqualityComparer_1_t99C7825C36DB817A63A867A122B2A47BAD67A5E9 : public EqualityComparer_1_t5F84660374B493F86CCE91B7723DB110A0025F6B { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // OBJECTEQUALITYCOMPARER_1_T99C7825C36DB817A63A867A122B2A47BAD67A5E9_H #ifndef OBJECTEQUALITYCOMPARER_1_TFBFCFED401F928D53234B6BB0EFC2DE378E732C3_H #define OBJECTEQUALITYCOMPARER_1_TFBFCFED401F928D53234B6BB0EFC2DE378E732C3_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.ObjectEqualityComparer`1<System.Double> struct ObjectEqualityComparer_1_tFBFCFED401F928D53234B6BB0EFC2DE378E732C3 : public EqualityComparer_1_t2284CDD98A505FC763285959CB32BF8796788102 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // OBJECTEQUALITYCOMPARER_1_TFBFCFED401F928D53234B6BB0EFC2DE378E732C3_H #ifndef OBJECTEQUALITYCOMPARER_1_T63F49A3AB85A6A54BC975B84E460C6A7FA734EBF_H #define OBJECTEQUALITYCOMPARER_1_T63F49A3AB85A6A54BC975B84E460C6A7FA734EBF_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.ObjectEqualityComparer`1<System.Guid> struct ObjectEqualityComparer_1_t63F49A3AB85A6A54BC975B84E460C6A7FA734EBF : public EqualityComparer_1_t0D118F538343D64A03149EE6C285141397B3217E { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // OBJECTEQUALITYCOMPARER_1_T63F49A3AB85A6A54BC975B84E460C6A7FA734EBF_H #ifndef OBJECTEQUALITYCOMPARER_1_T4BE55CB7FFC41D992028CD95C949EBE0386088F8_H #define OBJECTEQUALITYCOMPARER_1_T4BE55CB7FFC41D992028CD95C949EBE0386088F8_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.ObjectEqualityComparer`1<System.Int16> struct ObjectEqualityComparer_1_t4BE55CB7FFC41D992028CD95C949EBE0386088F8 : public EqualityComparer_1_t4CD1CCB3DD1E825E044304118760FAF6CBEE389D { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // OBJECTEQUALITYCOMPARER_1_T4BE55CB7FFC41D992028CD95C949EBE0386088F8_H #ifndef OBJECTEQUALITYCOMPARER_1_T117904942E956E4CD5825EF603C2B7D12268CDCD_H #define OBJECTEQUALITYCOMPARER_1_T117904942E956E4CD5825EF603C2B7D12268CDCD_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.ObjectEqualityComparer`1<System.Int32> struct ObjectEqualityComparer_1_t117904942E956E4CD5825EF603C2B7D12268CDCD : public EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // OBJECTEQUALITYCOMPARER_1_T117904942E956E4CD5825EF603C2B7D12268CDCD_H #ifndef OBJECTEQUALITYCOMPARER_1_TFD2C31148243BD367E1CDE9EF942038E39B56B33_H #define OBJECTEQUALITYCOMPARER_1_TFD2C31148243BD367E1CDE9EF942038E39B56B33_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.ObjectEqualityComparer`1<System.Int32Enum> struct ObjectEqualityComparer_1_tFD2C31148243BD367E1CDE9EF942038E39B56B33 : public EqualityComparer_1_t1C2A0392A1283327989CBB7C784638BDDB3805BB { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // OBJECTEQUALITYCOMPARER_1_TFD2C31148243BD367E1CDE9EF942038E39B56B33_H #ifndef OBJECTEQUALITYCOMPARER_1_T2BDB0B1586A046920CD44F45E8B0C66CF55EF7D0_H #define OBJECTEQUALITYCOMPARER_1_T2BDB0B1586A046920CD44F45E8B0C66CF55EF7D0_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.ObjectEqualityComparer`1<System.Int64> struct ObjectEqualityComparer_1_t2BDB0B1586A046920CD44F45E8B0C66CF55EF7D0 : public EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // OBJECTEQUALITYCOMPARER_1_T2BDB0B1586A046920CD44F45E8B0C66CF55EF7D0_H #ifndef DATETIME_T349B7449FBAAFF4192636E2B7A07694DA9236132_H #define DATETIME_T349B7449FBAAFF4192636E2B7A07694DA9236132_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.DateTime struct DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 { public: // System.UInt64 System.DateTime::dateData uint64_t ___dateData_44; public: inline static int32_t get_offset_of_dateData_44() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132, ___dateData_44)); } inline uint64_t get_dateData_44() const { return ___dateData_44; } inline uint64_t* get_address_of_dateData_44() { return &___dateData_44; } inline void set_dateData_44(uint64_t value) { ___dateData_44 = value; } }; struct DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields { public: // System.Int32[] System.DateTime::DaysToMonth365 Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___DaysToMonth365_29; // System.Int32[] System.DateTime::DaysToMonth366 Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___DaysToMonth366_30; // System.DateTime System.DateTime::MinValue DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___MinValue_31; // System.DateTime System.DateTime::MaxValue DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___MaxValue_32; public: inline static int32_t get_offset_of_DaysToMonth365_29() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___DaysToMonth365_29)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_DaysToMonth365_29() const { return ___DaysToMonth365_29; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_DaysToMonth365_29() { return &___DaysToMonth365_29; } inline void set_DaysToMonth365_29(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___DaysToMonth365_29 = value; Il2CppCodeGenWriteBarrier((&___DaysToMonth365_29), value); } inline static int32_t get_offset_of_DaysToMonth366_30() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___DaysToMonth366_30)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_DaysToMonth366_30() const { return ___DaysToMonth366_30; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_DaysToMonth366_30() { return &___DaysToMonth366_30; } inline void set_DaysToMonth366_30(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___DaysToMonth366_30 = value; Il2CppCodeGenWriteBarrier((&___DaysToMonth366_30), value); } inline static int32_t get_offset_of_MinValue_31() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___MinValue_31)); } inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_MinValue_31() const { return ___MinValue_31; } inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_MinValue_31() { return &___MinValue_31; } inline void set_MinValue_31(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value) { ___MinValue_31 = value; } inline static int32_t get_offset_of_MaxValue_32() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___MaxValue_32)); } inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_MaxValue_32() const { return ___MaxValue_32; } inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_MaxValue_32() { return &___MaxValue_32; } inline void set_MaxValue_32(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value) { ___MaxValue_32 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DATETIME_T349B7449FBAAFF4192636E2B7A07694DA9236132_H #ifndef DECIMAL_T44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_H #define DECIMAL_T44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Decimal struct Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 { public: // System.Int32 System.Decimal::flags int32_t ___flags_14; // System.Int32 System.Decimal::hi int32_t ___hi_15; // System.Int32 System.Decimal::lo int32_t ___lo_16; // System.Int32 System.Decimal::mid int32_t ___mid_17; public: inline static int32_t get_offset_of_flags_14() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___flags_14)); } inline int32_t get_flags_14() const { return ___flags_14; } inline int32_t* get_address_of_flags_14() { return &___flags_14; } inline void set_flags_14(int32_t value) { ___flags_14 = value; } inline static int32_t get_offset_of_hi_15() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___hi_15)); } inline int32_t get_hi_15() const { return ___hi_15; } inline int32_t* get_address_of_hi_15() { return &___hi_15; } inline void set_hi_15(int32_t value) { ___hi_15 = value; } inline static int32_t get_offset_of_lo_16() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___lo_16)); } inline int32_t get_lo_16() const { return ___lo_16; } inline int32_t* get_address_of_lo_16() { return &___lo_16; } inline void set_lo_16(int32_t value) { ___lo_16 = value; } inline static int32_t get_offset_of_mid_17() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___mid_17)); } inline int32_t get_mid_17() const { return ___mid_17; } inline int32_t* get_address_of_mid_17() { return &___mid_17; } inline void set_mid_17(int32_t value) { ___mid_17 = value; } }; struct Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields { public: // System.UInt32[] System.Decimal::Powers10 UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ___Powers10_6; // System.Decimal System.Decimal::Zero Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___Zero_7; // System.Decimal System.Decimal::One Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___One_8; // System.Decimal System.Decimal::MinusOne Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___MinusOne_9; // System.Decimal System.Decimal::MaxValue Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___MaxValue_10; // System.Decimal System.Decimal::MinValue Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___MinValue_11; // System.Decimal System.Decimal::NearNegativeZero Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___NearNegativeZero_12; // System.Decimal System.Decimal::NearPositiveZero Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___NearPositiveZero_13; public: inline static int32_t get_offset_of_Powers10_6() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___Powers10_6)); } inline UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* get_Powers10_6() const { return ___Powers10_6; } inline UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB** get_address_of_Powers10_6() { return &___Powers10_6; } inline void set_Powers10_6(UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* value) { ___Powers10_6 = value; Il2CppCodeGenWriteBarrier((&___Powers10_6), value); } inline static int32_t get_offset_of_Zero_7() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___Zero_7)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_Zero_7() const { return ___Zero_7; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_Zero_7() { return &___Zero_7; } inline void set_Zero_7(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___Zero_7 = value; } inline static int32_t get_offset_of_One_8() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___One_8)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_One_8() const { return ___One_8; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_One_8() { return &___One_8; } inline void set_One_8(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___One_8 = value; } inline static int32_t get_offset_of_MinusOne_9() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___MinusOne_9)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_MinusOne_9() const { return ___MinusOne_9; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_MinusOne_9() { return &___MinusOne_9; } inline void set_MinusOne_9(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___MinusOne_9 = value; } inline static int32_t get_offset_of_MaxValue_10() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___MaxValue_10)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_MaxValue_10() const { return ___MaxValue_10; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_MaxValue_10() { return &___MaxValue_10; } inline void set_MaxValue_10(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___MaxValue_10 = value; } inline static int32_t get_offset_of_MinValue_11() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___MinValue_11)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_MinValue_11() const { return ___MinValue_11; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_MinValue_11() { return &___MinValue_11; } inline void set_MinValue_11(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___MinValue_11 = value; } inline static int32_t get_offset_of_NearNegativeZero_12() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___NearNegativeZero_12)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_NearNegativeZero_12() const { return ___NearNegativeZero_12; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_NearNegativeZero_12() { return &___NearNegativeZero_12; } inline void set_NearNegativeZero_12(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___NearNegativeZero_12 = value; } inline static int32_t get_offset_of_NearPositiveZero_13() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___NearPositiveZero_13)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_NearPositiveZero_13() const { return ___NearPositiveZero_13; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_NearPositiveZero_13() { return &___NearPositiveZero_13; } inline void set_NearPositiveZero_13(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___NearPositiveZero_13 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DECIMAL_T44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_H #ifndef DOUBLE_T358B8F23BDC52A5DD700E727E204F9F7CDE12409_H #define DOUBLE_T358B8F23BDC52A5DD700E727E204F9F7CDE12409_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Double struct Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409 { public: // System.Double System.Double::m_value double ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409, ___m_value_0)); } inline double get_m_value_0() const { return ___m_value_0; } inline double* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(double value) { ___m_value_0 = value; } }; struct Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_StaticFields { public: // System.Double System.Double::NegativeZero double ___NegativeZero_7; public: inline static int32_t get_offset_of_NegativeZero_7() { return static_cast<int32_t>(offsetof(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_StaticFields, ___NegativeZero_7)); } inline double get_NegativeZero_7() const { return ___NegativeZero_7; } inline double* get_address_of_NegativeZero_7() { return &___NegativeZero_7; } inline void set_NegativeZero_7(double value) { ___NegativeZero_7 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DOUBLE_T358B8F23BDC52A5DD700E727E204F9F7CDE12409_H #ifndef ENUM_T2AF27C02B8653AE29442467390005ABC74D8F521_H #define ENUM_T2AF27C02B8653AE29442467390005ABC74D8F521_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Enum struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 : public ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF { public: public: }; struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields { public: // System.Char[] System.Enum::enumSeperatorCharArray CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___enumSeperatorCharArray_0; public: inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields, ___enumSeperatorCharArray_0)); } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; } inline void set_enumSeperatorCharArray_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value) { ___enumSeperatorCharArray_0 = value; Il2CppCodeGenWriteBarrier((&___enumSeperatorCharArray_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Enum struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_pinvoke { }; // Native definition for COM marshalling of System.Enum struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_com { }; #endif // ENUM_T2AF27C02B8653AE29442467390005ABC74D8F521_H #ifndef GUID_T_H #define GUID_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Guid struct Guid_t { public: // System.Int32 System.Guid::_a int32_t ____a_1; // System.Int16 System.Guid::_b int16_t ____b_2; // System.Int16 System.Guid::_c int16_t ____c_3; // System.Byte System.Guid::_d uint8_t ____d_4; // System.Byte System.Guid::_e uint8_t ____e_5; // System.Byte System.Guid::_f uint8_t ____f_6; // System.Byte System.Guid::_g uint8_t ____g_7; // System.Byte System.Guid::_h uint8_t ____h_8; // System.Byte System.Guid::_i uint8_t ____i_9; // System.Byte System.Guid::_j uint8_t ____j_10; // System.Byte System.Guid::_k uint8_t ____k_11; public: inline static int32_t get_offset_of__a_1() { return static_cast<int32_t>(offsetof(Guid_t, ____a_1)); } inline int32_t get__a_1() const { return ____a_1; } inline int32_t* get_address_of__a_1() { return &____a_1; } inline void set__a_1(int32_t value) { ____a_1 = value; } inline static int32_t get_offset_of__b_2() { return static_cast<int32_t>(offsetof(Guid_t, ____b_2)); } inline int16_t get__b_2() const { return ____b_2; } inline int16_t* get_address_of__b_2() { return &____b_2; } inline void set__b_2(int16_t value) { ____b_2 = value; } inline static int32_t get_offset_of__c_3() { return static_cast<int32_t>(offsetof(Guid_t, ____c_3)); } inline int16_t get__c_3() const { return ____c_3; } inline int16_t* get_address_of__c_3() { return &____c_3; } inline void set__c_3(int16_t value) { ____c_3 = value; } inline static int32_t get_offset_of__d_4() { return static_cast<int32_t>(offsetof(Guid_t, ____d_4)); } inline uint8_t get__d_4() const { return ____d_4; } inline uint8_t* get_address_of__d_4() { return &____d_4; } inline void set__d_4(uint8_t value) { ____d_4 = value; } inline static int32_t get_offset_of__e_5() { return static_cast<int32_t>(offsetof(Guid_t, ____e_5)); } inline uint8_t get__e_5() const { return ____e_5; } inline uint8_t* get_address_of__e_5() { return &____e_5; } inline void set__e_5(uint8_t value) { ____e_5 = value; } inline static int32_t get_offset_of__f_6() { return static_cast<int32_t>(offsetof(Guid_t, ____f_6)); } inline uint8_t get__f_6() const { return ____f_6; } inline uint8_t* get_address_of__f_6() { return &____f_6; } inline void set__f_6(uint8_t value) { ____f_6 = value; } inline static int32_t get_offset_of__g_7() { return static_cast<int32_t>(offsetof(Guid_t, ____g_7)); } inline uint8_t get__g_7() const { return ____g_7; } inline uint8_t* get_address_of__g_7() { return &____g_7; } inline void set__g_7(uint8_t value) { ____g_7 = value; } inline static int32_t get_offset_of__h_8() { return static_cast<int32_t>(offsetof(Guid_t, ____h_8)); } inline uint8_t get__h_8() const { return ____h_8; } inline uint8_t* get_address_of__h_8() { return &____h_8; } inline void set__h_8(uint8_t value) { ____h_8 = value; } inline static int32_t get_offset_of__i_9() { return static_cast<int32_t>(offsetof(Guid_t, ____i_9)); } inline uint8_t get__i_9() const { return ____i_9; } inline uint8_t* get_address_of__i_9() { return &____i_9; } inline void set__i_9(uint8_t value) { ____i_9 = value; } inline static int32_t get_offset_of__j_10() { return static_cast<int32_t>(offsetof(Guid_t, ____j_10)); } inline uint8_t get__j_10() const { return ____j_10; } inline uint8_t* get_address_of__j_10() { return &____j_10; } inline void set__j_10(uint8_t value) { ____j_10 = value; } inline static int32_t get_offset_of__k_11() { return static_cast<int32_t>(offsetof(Guid_t, ____k_11)); } inline uint8_t get__k_11() const { return ____k_11; } inline uint8_t* get_address_of__k_11() { return &____k_11; } inline void set__k_11(uint8_t value) { ____k_11 = value; } }; struct Guid_t_StaticFields { public: // System.Guid System.Guid::Empty Guid_t ___Empty_0; // System.Object System.Guid::_rngAccess RuntimeObject * ____rngAccess_12; // System.Security.Cryptography.RandomNumberGenerator System.Guid::_rng RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * ____rng_13; public: inline static int32_t get_offset_of_Empty_0() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ___Empty_0)); } inline Guid_t get_Empty_0() const { return ___Empty_0; } inline Guid_t * get_address_of_Empty_0() { return &___Empty_0; } inline void set_Empty_0(Guid_t value) { ___Empty_0 = value; } inline static int32_t get_offset_of__rngAccess_12() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rngAccess_12)); } inline RuntimeObject * get__rngAccess_12() const { return ____rngAccess_12; } inline RuntimeObject ** get_address_of__rngAccess_12() { return &____rngAccess_12; } inline void set__rngAccess_12(RuntimeObject * value) { ____rngAccess_12 = value; Il2CppCodeGenWriteBarrier((&____rngAccess_12), value); } inline static int32_t get_offset_of__rng_13() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rng_13)); } inline RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * get__rng_13() const { return ____rng_13; } inline RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 ** get_address_of__rng_13() { return &____rng_13; } inline void set__rng_13(RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * value) { ____rng_13 = value; Il2CppCodeGenWriteBarrier((&____rng_13), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // GUID_T_H #ifndef INT16_T823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_H #define INT16_T823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Int16 struct Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D { public: // System.Int16 System.Int16::m_value int16_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D, ___m_value_0)); } inline int16_t get_m_value_0() const { return ___m_value_0; } inline int16_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int16_t value) { ___m_value_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INT16_T823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_H #ifndef INT32_T585191389E07734F19F3156FF88FB3EF4800D102_H #define INT32_T585191389E07734F19F3156FF88FB3EF4800D102_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Int32 struct Int32_t585191389E07734F19F3156FF88FB3EF4800D102 { public: // System.Int32 System.Int32::m_value int32_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int32_t585191389E07734F19F3156FF88FB3EF4800D102, ___m_value_0)); } inline int32_t get_m_value_0() const { return ___m_value_0; } inline int32_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int32_t value) { ___m_value_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INT32_T585191389E07734F19F3156FF88FB3EF4800D102_H #ifndef INT64_T7A386C2FF7B0280A0F516992401DDFCF0FF7B436_H #define INT64_T7A386C2FF7B0280A0F516992401DDFCF0FF7B436_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Int64 struct Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 { public: // System.Int64 System.Int64::m_value int64_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, ___m_value_0)); } inline int64_t get_m_value_0() const { return ___m_value_0; } inline int64_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int64_t value) { ___m_value_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INT64_T7A386C2FF7B0280A0F516992401DDFCF0FF7B436_H #ifndef INTPTR_T_H #define INTPTR_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.IntPtr struct IntPtr_t { public: // System.Void* System.IntPtr::m_value void* ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); } inline void* get_m_value_0() const { return ___m_value_0; } inline void** get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(void* value) { ___m_value_0 = value; } }; struct IntPtr_t_StaticFields { public: // System.IntPtr System.IntPtr::Zero intptr_t ___Zero_1; public: inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); } inline intptr_t get_Zero_1() const { return ___Zero_1; } inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; } inline void set_Zero_1(intptr_t value) { ___Zero_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTPTR_T_H #ifndef RESOURCELOCATOR_T1783916E271C27CB09DF57E7E5ED08ECA4B3275C_H #define RESOURCELOCATOR_T1783916E271C27CB09DF57E7E5ED08ECA4B3275C_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Resources.ResourceLocator struct ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C { public: // System.Object System.Resources.ResourceLocator::_value RuntimeObject * ____value_0; // System.Int32 System.Resources.ResourceLocator::_dataPos int32_t ____dataPos_1; public: inline static int32_t get_offset_of__value_0() { return static_cast<int32_t>(offsetof(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C, ____value_0)); } inline RuntimeObject * get__value_0() const { return ____value_0; } inline RuntimeObject ** get_address_of__value_0() { return &____value_0; } inline void set__value_0(RuntimeObject * value) { ____value_0 = value; Il2CppCodeGenWriteBarrier((&____value_0), value); } inline static int32_t get_offset_of__dataPos_1() { return static_cast<int32_t>(offsetof(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C, ____dataPos_1)); } inline int32_t get__dataPos_1() const { return ____dataPos_1; } inline int32_t* get_address_of__dataPos_1() { return &____dataPos_1; } inline void set__dataPos_1(int32_t value) { ____dataPos_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Resources.ResourceLocator struct ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_marshaled_pinvoke { Il2CppIUnknown* ____value_0; int32_t ____dataPos_1; }; // Native definition for COM marshalling of System.Resources.ResourceLocator struct ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_marshaled_com { Il2CppIUnknown* ____value_0; int32_t ____dataPos_1; }; #endif // RESOURCELOCATOR_T1783916E271C27CB09DF57E7E5ED08ECA4B3275C_H #ifndef SYSTEMEXCEPTION_T5380468142AA850BE4A341D7AF3EAB9C78746782_H #define SYSTEMEXCEPTION_T5380468142AA850BE4A341D7AF3EAB9C78746782_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.SystemException struct SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 : public Exception_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SYSTEMEXCEPTION_T5380468142AA850BE4A341D7AF3EAB9C78746782_H #ifndef VOID_T22962CB4C05B1D89B55A6E1139F0E87A90987017_H #define VOID_T22962CB4C05B1D89B55A6E1139F0E87A90987017_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017 { public: union { struct { }; uint8_t Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017__padding[1]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // VOID_T22962CB4C05B1D89B55A6E1139F0E87A90987017_H #ifndef ARGUMENTEXCEPTION_TEDCD16F20A09ECE461C3DA766C16EDA8864057D1_H #define ARGUMENTEXCEPTION_TEDCD16F20A09ECE461C3DA766C16EDA8864057D1_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ArgumentException struct ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: // System.String System.ArgumentException::m_paramName String_t* ___m_paramName_17; public: inline static int32_t get_offset_of_m_paramName_17() { return static_cast<int32_t>(offsetof(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1, ___m_paramName_17)); } inline String_t* get_m_paramName_17() const { return ___m_paramName_17; } inline String_t** get_address_of_m_paramName_17() { return &___m_paramName_17; } inline void set_m_paramName_17(String_t* value) { ___m_paramName_17 = value; Il2CppCodeGenWriteBarrier((&___m_paramName_17), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ARGUMENTEXCEPTION_TEDCD16F20A09ECE461C3DA766C16EDA8864057D1_H #ifndef ARRAYTYPEMISMATCHEXCEPTION_TE34C1032B089C37399200997F079C640D23D9499_H #define ARRAYTYPEMISMATCHEXCEPTION_TE34C1032B089C37399200997F079C640D23D9499_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ArrayTypeMismatchException struct ArrayTypeMismatchException_tE34C1032B089C37399200997F079C640D23D9499 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ARRAYTYPEMISMATCHEXCEPTION_TE34C1032B089C37399200997F079C640D23D9499_H #ifndef ENTRY_T6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B_H #define ENTRY_T6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/Entry<System.Guid,System.Object> struct Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key Guid_t ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value RuntimeObject * ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B, ___key_2)); } inline Guid_t get_key_2() const { return ___key_2; } inline Guid_t * get_address_of_key_2() { return &___key_2; } inline void set_key_2(Guid_t value) { ___key_2 = value; } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B, ___value_3)); } inline RuntimeObject * get_value_3() const { return ___value_3; } inline RuntimeObject ** get_address_of_value_3() { return &___value_3; } inline void set_value_3(RuntimeObject * value) { ___value_3 = value; Il2CppCodeGenWriteBarrier((&___value_3), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENTRY_T6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B_H #ifndef ENTRY_TF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_H #define ENTRY_TF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator> struct Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key RuntimeObject * ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D, ___key_2)); } inline RuntimeObject * get_key_2() const { return ___key_2; } inline RuntimeObject ** get_address_of_key_2() { return &___key_2; } inline void set_key_2(RuntimeObject * value) { ___key_2 = value; Il2CppCodeGenWriteBarrier((&___key_2), value); } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D, ___value_3)); } inline ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C get_value_3() const { return ___value_3; } inline ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C * get_address_of_value_3() { return &___value_3; } inline void set_value_3(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C value) { ___value_3 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENTRY_TF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_H #ifndef ENUMERATOR_T72A8231827DB93FC8B25F08FF066377F7B773DA1_H #define ENUMERATOR_T72A8231827DB93FC8B25F08FF066377F7B773DA1_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object> struct Enumerator_t72A8231827DB93FC8B25F08FF066377F7B773DA1 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t72A8231827DB93FC8B25F08FF066377F7B773DA1, ___dictionary_0)); } inline Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((&___dictionary_0), value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_t72A8231827DB93FC8B25F08FF066377F7B773DA1, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_t72A8231827DB93FC8B25F08FF066377F7B773DA1, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t72A8231827DB93FC8B25F08FF066377F7B773DA1, ___current_3)); } inline KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 get_current_3() const { return ___current_3; } inline KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 value) { ___current_3 = value; } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_t72A8231827DB93FC8B25F08FF066377F7B773DA1, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T72A8231827DB93FC8B25F08FF066377F7B773DA1_H #ifndef ENUMERATOR_T635C134A2671CF22D2FF3CA9F05E125C187D457A_H #define ENUMERATOR_T635C134A2671CF22D2FF3CA9F05E125C187D457A_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean> struct Enumerator_t635C134A2671CF22D2FF3CA9F05E125C187D457A { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t635C134A2671CF22D2FF3CA9F05E125C187D457A, ___dictionary_0)); } inline Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((&___dictionary_0), value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_t635C134A2671CF22D2FF3CA9F05E125C187D457A, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_t635C134A2671CF22D2FF3CA9F05E125C187D457A, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t635C134A2671CF22D2FF3CA9F05E125C187D457A, ___current_3)); } inline KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 get_current_3() const { return ___current_3; } inline KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 value) { ___current_3 = value; } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_t635C134A2671CF22D2FF3CA9F05E125C187D457A, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T635C134A2671CF22D2FF3CA9F05E125C187D457A_H #ifndef ENUMERATOR_TF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E_H #define ENUMERATOR_TF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32> struct Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E, ___dictionary_0)); } inline Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((&___dictionary_0), value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E, ___current_3)); } inline KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E get_current_3() const { return ___current_3; } inline KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E value) { ___current_3 = value; } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_TF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E_H #ifndef ENUMERATOR_TED23DFBF3911229086C71CCE7A54D56F5FFB34CB_H #define ENUMERATOR_TED23DFBF3911229086C71CCE7A54D56F5FFB34CB_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object> struct Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB, ___dictionary_0)); } inline Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((&___dictionary_0), value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB, ___current_3)); } inline KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE get_current_3() const { return ___current_3; } inline KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE value) { ___current_3 = value; } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_TED23DFBF3911229086C71CCE7A54D56F5FFB34CB_H #ifndef INSERTIONBEHAVIOR_TDE709AD9061AA205654E57F719D37F00F7A3E211_H #define INSERTIONBEHAVIOR_TDE709AD9061AA205654E57F719D37F00F7A3E211_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.InsertionBehavior struct InsertionBehavior_tDE709AD9061AA205654E57F719D37F00F7A3E211 { public: // System.Byte System.Collections.Generic.InsertionBehavior::value__ uint8_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(InsertionBehavior_tDE709AD9061AA205654E57F719D37F00F7A3E211, ___value___2)); } inline uint8_t get_value___2() const { return ___value___2; } inline uint8_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(uint8_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INSERTIONBEHAVIOR_TDE709AD9061AA205654E57F719D37F00F7A3E211_H #ifndef KEYNOTFOUNDEXCEPTION_TC28F8B9E114291001A5D135723673C6F292438E2_H #define KEYNOTFOUNDEXCEPTION_TC28F8B9E114291001A5D135723673C6F292438E2_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyNotFoundException struct KeyNotFoundException_tC28F8B9E114291001A5D135723673C6F292438E2 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYNOTFOUNDEXCEPTION_TC28F8B9E114291001A5D135723673C6F292438E2_H #ifndef KEYVALUEPAIR_2_T5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_H #define KEYVALUEPAIR_2_T5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object> struct KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B { public: // TKey System.Collections.Generic.KeyValuePair`2::key DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value RuntimeObject * ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B, ___key_0)); } inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_key_0() const { return ___key_0; } inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_key_0() { return &___key_0; } inline void set_key_0(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value) { ___key_0 = value; } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B, ___value_1)); } inline RuntimeObject * get_value_1() const { return ___value_1; } inline RuntimeObject ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(RuntimeObject * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((&___value_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_H #ifndef KEYVALUEPAIR_2_TD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_H #define KEYVALUEPAIR_2_TD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object> struct KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 { public: // TKey System.Collections.Generic.KeyValuePair`2::key Guid_t ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value RuntimeObject * ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78, ___key_0)); } inline Guid_t get_key_0() const { return ___key_0; } inline Guid_t * get_address_of_key_0() { return &___key_0; } inline void set_key_0(Guid_t value) { ___key_0 = value; } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78, ___value_1)); } inline RuntimeObject * get_value_1() const { return ___value_1; } inline RuntimeObject ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(RuntimeObject * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((&___value_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_TD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_H #ifndef KEYVALUEPAIR_2_T2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_H #define KEYVALUEPAIR_2_T2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator> struct KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 { public: // TKey System.Collections.Generic.KeyValuePair`2::key RuntimeObject * ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((&___key_0), value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6, ___value_1)); } inline ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C get_value_1() const { return ___value_1; } inline ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C * get_address_of_value_1() { return &___value_1; } inline void set_value_1(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C value) { ___value_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_H #ifndef DATETIMEOFFSET_T6C333873402CAD576160B4F8E159EB6834F06B85_H #define DATETIMEOFFSET_T6C333873402CAD576160B4F8E159EB6834F06B85_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.DateTimeOffset struct DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 { public: // System.DateTime System.DateTimeOffset::m_dateTime DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___m_dateTime_2; // System.Int16 System.DateTimeOffset::m_offsetMinutes int16_t ___m_offsetMinutes_3; public: inline static int32_t get_offset_of_m_dateTime_2() { return static_cast<int32_t>(offsetof(DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85, ___m_dateTime_2)); } inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_m_dateTime_2() const { return ___m_dateTime_2; } inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_m_dateTime_2() { return &___m_dateTime_2; } inline void set_m_dateTime_2(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value) { ___m_dateTime_2 = value; } inline static int32_t get_offset_of_m_offsetMinutes_3() { return static_cast<int32_t>(offsetof(DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85, ___m_offsetMinutes_3)); } inline int16_t get_m_offsetMinutes_3() const { return ___m_offsetMinutes_3; } inline int16_t* get_address_of_m_offsetMinutes_3() { return &___m_offsetMinutes_3; } inline void set_m_offsetMinutes_3(int16_t value) { ___m_offsetMinutes_3 = value; } }; struct DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_StaticFields { public: // System.DateTimeOffset System.DateTimeOffset::MinValue DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 ___MinValue_0; // System.DateTimeOffset System.DateTimeOffset::MaxValue DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 ___MaxValue_1; public: inline static int32_t get_offset_of_MinValue_0() { return static_cast<int32_t>(offsetof(DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_StaticFields, ___MinValue_0)); } inline DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 get_MinValue_0() const { return ___MinValue_0; } inline DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 * get_address_of_MinValue_0() { return &___MinValue_0; } inline void set_MinValue_0(DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 value) { ___MinValue_0 = value; } inline static int32_t get_offset_of_MaxValue_1() { return static_cast<int32_t>(offsetof(DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85_StaticFields, ___MaxValue_1)); } inline DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 get_MaxValue_1() const { return ___MaxValue_1; } inline DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 * get_address_of_MaxValue_1() { return &___MaxValue_1; } inline void set_MaxValue_1(DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 value) { ___MaxValue_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DATETIMEOFFSET_T6C333873402CAD576160B4F8E159EB6834F06B85_H #ifndef EXCEPTIONRESOURCE_T897ACCB868BF3CAAC00AB0C00D57D7A2B6C7586A_H #define EXCEPTIONRESOURCE_T897ACCB868BF3CAAC00AB0C00D57D7A2B6C7586A_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ExceptionResource struct ExceptionResource_t897ACCB868BF3CAAC00AB0C00D57D7A2B6C7586A { public: // System.Int32 System.ExceptionResource::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ExceptionResource_t897ACCB868BF3CAAC00AB0C00D57D7A2B6C7586A, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EXCEPTIONRESOURCE_T897ACCB868BF3CAAC00AB0C00D57D7A2B6C7586A_H #ifndef INT32ENUM_T6312CE4586C17FE2E2E513D2E7655B574F10FDCD_H #define INT32ENUM_T6312CE4586C17FE2E2E513D2E7655B574F10FDCD_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Int32Enum struct Int32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD { public: // System.Int32 System.Int32Enum::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Int32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INT32ENUM_T6312CE4586C17FE2E2E513D2E7655B574F10FDCD_H #ifndef INVALIDCASTEXCEPTION_T91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_H #define INVALIDCASTEXCEPTION_T91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.InvalidCastException struct InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INVALIDCASTEXCEPTION_T91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_H #ifndef BINDINGFLAGS_TE35C91D046E63A1B92BB9AB909FCF9DA84379ED0_H #define BINDINGFLAGS_TE35C91D046E63A1B92BB9AB909FCF9DA84379ED0_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.BindingFlags struct BindingFlags_tE35C91D046E63A1B92BB9AB909FCF9DA84379ED0 { public: // System.Int32 System.Reflection.BindingFlags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(BindingFlags_tE35C91D046E63A1B92BB9AB909FCF9DA84379ED0, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // BINDINGFLAGS_TE35C91D046E63A1B92BB9AB909FCF9DA84379ED0_H #ifndef SERIALIZATIONEXCEPTION_TA1FDFF6779406E688C2192E71C38DBFD7A4A2210_H #define SERIALIZATIONEXCEPTION_TA1FDFF6779406E688C2192E71C38DBFD7A4A2210_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Runtime.Serialization.SerializationException struct SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; struct SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_StaticFields { public: // System.String System.Runtime.Serialization.SerializationException::_nullMessage String_t* ____nullMessage_17; public: inline static int32_t get_offset_of__nullMessage_17() { return static_cast<int32_t>(offsetof(SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_StaticFields, ____nullMessage_17)); } inline String_t* get__nullMessage_17() const { return ____nullMessage_17; } inline String_t** get_address_of__nullMessage_17() { return &____nullMessage_17; } inline void set__nullMessage_17(String_t* value) { ____nullMessage_17 = value; Il2CppCodeGenWriteBarrier((&____nullMessage_17), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SERIALIZATIONEXCEPTION_TA1FDFF6779406E688C2192E71C38DBFD7A4A2210_H #ifndef STREAMINGCONTEXTSTATES_T6D16CD7BC584A66A29B702F5FD59DF62BB1BDD3F_H #define STREAMINGCONTEXTSTATES_T6D16CD7BC584A66A29B702F5FD59DF62BB1BDD3F_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Runtime.Serialization.StreamingContextStates struct StreamingContextStates_t6D16CD7BC584A66A29B702F5FD59DF62BB1BDD3F { public: // System.Int32 System.Runtime.Serialization.StreamingContextStates::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(StreamingContextStates_t6D16CD7BC584A66A29B702F5FD59DF62BB1BDD3F, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // STREAMINGCONTEXTSTATES_T6D16CD7BC584A66A29B702F5FD59DF62BB1BDD3F_H #ifndef RUNTIMETYPEHANDLE_T7B542280A22F0EC4EAC2061C29178845847A8B2D_H #define RUNTIMETYPEHANDLE_T7B542280A22F0EC4EAC2061C29178845847A8B2D_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.RuntimeTypeHandle struct RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D { public: // System.IntPtr System.RuntimeTypeHandle::value intptr_t ___value_0; public: inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D, ___value_0)); } inline intptr_t get_value_0() const { return ___value_0; } inline intptr_t* get_address_of_value_0() { return &___value_0; } inline void set_value_0(intptr_t value) { ___value_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // RUNTIMETYPEHANDLE_T7B542280A22F0EC4EAC2061C29178845847A8B2D_H #ifndef TYPECODE_T03ED52F888000DAF40C550C434F29F39A23D61C6_H #define TYPECODE_T03ED52F888000DAF40C550C434F29F39A23D61C6_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.TypeCode struct TypeCode_t03ED52F888000DAF40C550C434F29F39A23D61C6 { public: // System.Int32 System.TypeCode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TypeCode_t03ED52F888000DAF40C550C434F29F39A23D61C6, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TYPECODE_T03ED52F888000DAF40C550C434F29F39A23D61C6_H #ifndef ARGUMENTNULLEXCEPTION_T581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_H #define ARGUMENTNULLEXCEPTION_T581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ArgumentNullException struct ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD : public ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ARGUMENTNULLEXCEPTION_T581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_H #ifndef ARGUMENTOUTOFRANGEEXCEPTION_T94D19DF918A54511AEDF4784C9A08741BAD1DEDA_H #define ARGUMENTOUTOFRANGEEXCEPTION_T94D19DF918A54511AEDF4784C9A08741BAD1DEDA_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ArgumentOutOfRangeException struct ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA : public ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 { public: // System.Object System.ArgumentOutOfRangeException::m_actualValue RuntimeObject * ___m_actualValue_19; public: inline static int32_t get_offset_of_m_actualValue_19() { return static_cast<int32_t>(offsetof(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA, ___m_actualValue_19)); } inline RuntimeObject * get_m_actualValue_19() const { return ___m_actualValue_19; } inline RuntimeObject ** get_address_of_m_actualValue_19() { return &___m_actualValue_19; } inline void set_m_actualValue_19(RuntimeObject * value) { ___m_actualValue_19 = value; Il2CppCodeGenWriteBarrier((&___m_actualValue_19), value); } }; struct ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_StaticFields { public: // System.String modreq(System.Runtime.CompilerServices.IsVolatile) System.ArgumentOutOfRangeException::_rangeMessage String_t* ____rangeMessage_18; public: inline static int32_t get_offset_of__rangeMessage_18() { return static_cast<int32_t>(offsetof(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_StaticFields, ____rangeMessage_18)); } inline String_t* get__rangeMessage_18() const { return ____rangeMessage_18; } inline String_t** get_address_of__rangeMessage_18() { return &____rangeMessage_18; } inline void set__rangeMessage_18(String_t* value) { ____rangeMessage_18 = value; Il2CppCodeGenWriteBarrier((&____rangeMessage_18), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ARGUMENTOUTOFRANGEEXCEPTION_T94D19DF918A54511AEDF4784C9A08741BAD1DEDA_H #ifndef ENUMERATOR_T46054A080C119F2B6A9A53E401043DAA8851E0BD_H #define ENUMERATOR_T46054A080C119F2B6A9A53E401043DAA8851E0BD_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/Enumerator<System.Guid,System.Object> struct Enumerator_t46054A080C119F2B6A9A53E401043DAA8851E0BD { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t46054A080C119F2B6A9A53E401043DAA8851E0BD, ___dictionary_0)); } inline Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((&___dictionary_0), value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_t46054A080C119F2B6A9A53E401043DAA8851E0BD, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_t46054A080C119F2B6A9A53E401043DAA8851E0BD, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t46054A080C119F2B6A9A53E401043DAA8851E0BD, ___current_3)); } inline KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 get_current_3() const { return ___current_3; } inline KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 value) { ___current_3 = value; } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_t46054A080C119F2B6A9A53E401043DAA8851E0BD, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T46054A080C119F2B6A9A53E401043DAA8851E0BD_H #ifndef ENUMERATOR_T643DB21DCA94565D343EE9CD8DEC99BEA36A7860_H #define ENUMERATOR_T643DB21DCA94565D343EE9CD8DEC99BEA36A7860_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator> struct Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860, ___dictionary_0)); } inline Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((&___dictionary_0), value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860, ___current_3)); } inline KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 get_current_3() const { return ___current_3; } inline KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 value) { ___current_3 = value; } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_T643DB21DCA94565D343EE9CD8DEC99BEA36A7860_H #ifndef STREAMINGCONTEXT_T2CCDC54E0E8D078AF4A50E3A8B921B828A900034_H #define STREAMINGCONTEXT_T2CCDC54E0E8D078AF4A50E3A8B921B828A900034_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Runtime.Serialization.StreamingContext struct StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 { public: // System.Object System.Runtime.Serialization.StreamingContext::m_additionalContext RuntimeObject * ___m_additionalContext_0; // System.Runtime.Serialization.StreamingContextStates System.Runtime.Serialization.StreamingContext::m_state int32_t ___m_state_1; public: inline static int32_t get_offset_of_m_additionalContext_0() { return static_cast<int32_t>(offsetof(StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034, ___m_additionalContext_0)); } inline RuntimeObject * get_m_additionalContext_0() const { return ___m_additionalContext_0; } inline RuntimeObject ** get_address_of_m_additionalContext_0() { return &___m_additionalContext_0; } inline void set_m_additionalContext_0(RuntimeObject * value) { ___m_additionalContext_0 = value; Il2CppCodeGenWriteBarrier((&___m_additionalContext_0), value); } inline static int32_t get_offset_of_m_state_1() { return static_cast<int32_t>(offsetof(StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034, ___m_state_1)); } inline int32_t get_m_state_1() const { return ___m_state_1; } inline int32_t* get_address_of_m_state_1() { return &___m_state_1; } inline void set_m_state_1(int32_t value) { ___m_state_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Runtime.Serialization.StreamingContext struct StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_marshaled_pinvoke { Il2CppIUnknown* ___m_additionalContext_0; int32_t ___m_state_1; }; // Native definition for COM marshalling of System.Runtime.Serialization.StreamingContext struct StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_marshaled_com { Il2CppIUnknown* ___m_additionalContext_0; int32_t ___m_state_1; }; #endif // STREAMINGCONTEXT_T2CCDC54E0E8D078AF4A50E3A8B921B828A900034_H #ifndef TYPE_T_H #define TYPE_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Type struct Type_t : public MemberInfo_t { public: // System.RuntimeTypeHandle System.Type::_impl RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D ____impl_9; public: inline static int32_t get_offset_of__impl_9() { return static_cast<int32_t>(offsetof(Type_t, ____impl_9)); } inline RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D get__impl_9() const { return ____impl_9; } inline RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D * get_address_of__impl_9() { return &____impl_9; } inline void set__impl_9(RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D value) { ____impl_9 = value; } }; struct Type_t_StaticFields { public: // System.Reflection.MemberFilter System.Type::FilterAttribute MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterAttribute_0; // System.Reflection.MemberFilter System.Type::FilterName MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterName_1; // System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterNameIgnoreCase_2; // System.Object System.Type::Missing RuntimeObject * ___Missing_3; // System.Char System.Type::Delimiter Il2CppChar ___Delimiter_4; // System.Type[] System.Type::EmptyTypes TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___EmptyTypes_5; // System.Reflection.Binder System.Type::defaultBinder Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * ___defaultBinder_6; public: inline static int32_t get_offset_of_FilterAttribute_0() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterAttribute_0)); } inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterAttribute_0() const { return ___FilterAttribute_0; } inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterAttribute_0() { return &___FilterAttribute_0; } inline void set_FilterAttribute_0(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value) { ___FilterAttribute_0 = value; Il2CppCodeGenWriteBarrier((&___FilterAttribute_0), value); } inline static int32_t get_offset_of_FilterName_1() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterName_1)); } inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterName_1() const { return ___FilterName_1; } inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterName_1() { return &___FilterName_1; } inline void set_FilterName_1(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value) { ___FilterName_1 = value; Il2CppCodeGenWriteBarrier((&___FilterName_1), value); } inline static int32_t get_offset_of_FilterNameIgnoreCase_2() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterNameIgnoreCase_2)); } inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterNameIgnoreCase_2() const { return ___FilterNameIgnoreCase_2; } inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterNameIgnoreCase_2() { return &___FilterNameIgnoreCase_2; } inline void set_FilterNameIgnoreCase_2(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value) { ___FilterNameIgnoreCase_2 = value; Il2CppCodeGenWriteBarrier((&___FilterNameIgnoreCase_2), value); } inline static int32_t get_offset_of_Missing_3() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Missing_3)); } inline RuntimeObject * get_Missing_3() const { return ___Missing_3; } inline RuntimeObject ** get_address_of_Missing_3() { return &___Missing_3; } inline void set_Missing_3(RuntimeObject * value) { ___Missing_3 = value; Il2CppCodeGenWriteBarrier((&___Missing_3), value); } inline static int32_t get_offset_of_Delimiter_4() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Delimiter_4)); } inline Il2CppChar get_Delimiter_4() const { return ___Delimiter_4; } inline Il2CppChar* get_address_of_Delimiter_4() { return &___Delimiter_4; } inline void set_Delimiter_4(Il2CppChar value) { ___Delimiter_4 = value; } inline static int32_t get_offset_of_EmptyTypes_5() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___EmptyTypes_5)); } inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get_EmptyTypes_5() const { return ___EmptyTypes_5; } inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of_EmptyTypes_5() { return &___EmptyTypes_5; } inline void set_EmptyTypes_5(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value) { ___EmptyTypes_5 = value; Il2CppCodeGenWriteBarrier((&___EmptyTypes_5), value); } inline static int32_t get_offset_of_defaultBinder_6() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___defaultBinder_6)); } inline Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * get_defaultBinder_6() const { return ___defaultBinder_6; } inline Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 ** get_address_of_defaultBinder_6() { return &___defaultBinder_6; } inline void set_defaultBinder_6(Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * value) { ___defaultBinder_6 = value; Il2CppCodeGenWriteBarrier((&___defaultBinder_6), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TYPE_T_H #ifndef TYPEINFO_T9D6F65801A41B97F36138B15FD270A1550DBB3FC_H #define TYPEINFO_T9D6F65801A41B97F36138B15FD270A1550DBB3FC_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.TypeInfo struct TypeInfo_t9D6F65801A41B97F36138B15FD270A1550DBB3FC : public Type_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TYPEINFO_T9D6F65801A41B97F36138B15FD270A1550DBB3FC_H #ifndef RUNTIMETYPE_T40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_H #define RUNTIMETYPE_T40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.RuntimeType struct RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F : public TypeInfo_t9D6F65801A41B97F36138B15FD270A1550DBB3FC { public: // System.MonoTypeInfo System.RuntimeType::type_info MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D * ___type_info_26; // System.Object System.RuntimeType::GenericCache RuntimeObject * ___GenericCache_27; // System.Reflection.RuntimeConstructorInfo System.RuntimeType::m_serializationCtor RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D * ___m_serializationCtor_28; public: inline static int32_t get_offset_of_type_info_26() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F, ___type_info_26)); } inline MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D * get_type_info_26() const { return ___type_info_26; } inline MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D ** get_address_of_type_info_26() { return &___type_info_26; } inline void set_type_info_26(MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D * value) { ___type_info_26 = value; Il2CppCodeGenWriteBarrier((&___type_info_26), value); } inline static int32_t get_offset_of_GenericCache_27() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F, ___GenericCache_27)); } inline RuntimeObject * get_GenericCache_27() const { return ___GenericCache_27; } inline RuntimeObject ** get_address_of_GenericCache_27() { return &___GenericCache_27; } inline void set_GenericCache_27(RuntimeObject * value) { ___GenericCache_27 = value; Il2CppCodeGenWriteBarrier((&___GenericCache_27), value); } inline static int32_t get_offset_of_m_serializationCtor_28() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F, ___m_serializationCtor_28)); } inline RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D * get_m_serializationCtor_28() const { return ___m_serializationCtor_28; } inline RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D ** get_address_of_m_serializationCtor_28() { return &___m_serializationCtor_28; } inline void set_m_serializationCtor_28(RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D * value) { ___m_serializationCtor_28 = value; Il2CppCodeGenWriteBarrier((&___m_serializationCtor_28), value); } }; struct RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields { public: // System.RuntimeType System.RuntimeType::ValueType RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___ValueType_10; // System.RuntimeType System.RuntimeType::EnumType RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___EnumType_11; // System.RuntimeType System.RuntimeType::ObjectType RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___ObjectType_12; // System.RuntimeType System.RuntimeType::StringType RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___StringType_13; // System.RuntimeType System.RuntimeType::DelegateType RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___DelegateType_14; // System.Type[] System.RuntimeType::s_SICtorParamTypes TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___s_SICtorParamTypes_15; // System.RuntimeType System.RuntimeType::s_typedRef RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___s_typedRef_25; public: inline static int32_t get_offset_of_ValueType_10() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___ValueType_10)); } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_ValueType_10() const { return ___ValueType_10; } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_ValueType_10() { return &___ValueType_10; } inline void set_ValueType_10(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value) { ___ValueType_10 = value; Il2CppCodeGenWriteBarrier((&___ValueType_10), value); } inline static int32_t get_offset_of_EnumType_11() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___EnumType_11)); } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_EnumType_11() const { return ___EnumType_11; } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_EnumType_11() { return &___EnumType_11; } inline void set_EnumType_11(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value) { ___EnumType_11 = value; Il2CppCodeGenWriteBarrier((&___EnumType_11), value); } inline static int32_t get_offset_of_ObjectType_12() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___ObjectType_12)); } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_ObjectType_12() const { return ___ObjectType_12; } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_ObjectType_12() { return &___ObjectType_12; } inline void set_ObjectType_12(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value) { ___ObjectType_12 = value; Il2CppCodeGenWriteBarrier((&___ObjectType_12), value); } inline static int32_t get_offset_of_StringType_13() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___StringType_13)); } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_StringType_13() const { return ___StringType_13; } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_StringType_13() { return &___StringType_13; } inline void set_StringType_13(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value) { ___StringType_13 = value; Il2CppCodeGenWriteBarrier((&___StringType_13), value); } inline static int32_t get_offset_of_DelegateType_14() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___DelegateType_14)); } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_DelegateType_14() const { return ___DelegateType_14; } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_DelegateType_14() { return &___DelegateType_14; } inline void set_DelegateType_14(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value) { ___DelegateType_14 = value; Il2CppCodeGenWriteBarrier((&___DelegateType_14), value); } inline static int32_t get_offset_of_s_SICtorParamTypes_15() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___s_SICtorParamTypes_15)); } inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get_s_SICtorParamTypes_15() const { return ___s_SICtorParamTypes_15; } inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of_s_SICtorParamTypes_15() { return &___s_SICtorParamTypes_15; } inline void set_s_SICtorParamTypes_15(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value) { ___s_SICtorParamTypes_15 = value; Il2CppCodeGenWriteBarrier((&___s_SICtorParamTypes_15), value); } inline static int32_t get_offset_of_s_typedRef_25() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___s_typedRef_25)); } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_s_typedRef_25() const { return ___s_typedRef_25; } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_s_typedRef_25() { return &___s_typedRef_25; } inline void set_s_typedRef_25(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value) { ___s_typedRef_25 = value; Il2CppCodeGenWriteBarrier((&___s_typedRef_25), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // RUNTIMETYPE_T40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_H // System.Collections.Generic.Dictionary`2/Entry<System.Guid,System.Object>[] struct EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE : public RuntimeArray { public: ALIGN_FIELD (8) Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B m_Items[1]; public: inline Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t6E46F05FF9A5E45FFFD93303C9C602F264AF8C9B value) { m_Items[index] = value; } }; // System.Int32[] struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83 : public RuntimeArray { public: ALIGN_FIELD (8) int32_t m_Items[1]; public: inline int32_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline int32_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, int32_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value) { m_Items[index] = value; } }; // System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>[] struct KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A : public RuntimeArray { public: ALIGN_FIELD (8) KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 m_Items[1]; public: inline KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 value) { m_Items[index] = value; } }; // System.Collections.DictionaryEntry[] struct DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56 : public RuntimeArray { public: ALIGN_FIELD (8) DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 m_Items[1]; public: inline DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 value) { m_Items[index] = value; } }; // System.Object[] struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A : public RuntimeArray { public: ALIGN_FIELD (8) RuntimeObject * m_Items[1]; public: inline RuntimeObject * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline RuntimeObject ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, RuntimeObject * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, value); } inline RuntimeObject * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline RuntimeObject ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, value); } }; // System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>[] struct EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285 : public RuntimeArray { public: ALIGN_FIELD (8) Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D m_Items[1]; public: inline Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D value) { m_Items[index] = value; } }; // System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>[] struct KeyValuePair_2U5BU5D_t51ECDC3588B5BA2DE76DE4B25B62ACADF928345B : public RuntimeArray { public: ALIGN_FIELD (8) KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 m_Items[1]; public: inline KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 value) { m_Items[index] = value; } }; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Boolean>[] struct EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D : public RuntimeArray { public: ALIGN_FIELD (8) Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 m_Items[1]; public: inline Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t495C47A91D5A1899AF832D603308B663495EC5A8 value) { m_Items[index] = value; } }; // System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>[] struct KeyValuePair_2U5BU5D_tAE7F87DCEA5EC8AE3923ACF937141910554CD02E : public RuntimeArray { public: ALIGN_FIELD (8) KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 m_Items[1]; public: inline KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 value) { m_Items[index] = value; } }; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>[] struct EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9 : public RuntimeArray { public: ALIGN_FIELD (8) Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE m_Items[1]; public: inline Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE value) { m_Items[index] = value; } }; // System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>[] struct KeyValuePair_2U5BU5D_t1336B67B1075C3E1E7713F0436412A73F860ADBB : public RuntimeArray { public: ALIGN_FIELD (8) KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E m_Items[1]; public: inline KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E value) { m_Items[index] = value; } }; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>[] struct EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6 : public RuntimeArray { public: ALIGN_FIELD (8) Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA m_Items[1]; public: inline Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA value) { m_Items[index] = value; } }; // System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>[] struct KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262 : public RuntimeArray { public: ALIGN_FIELD (8) KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE m_Items[1]; public: inline KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE value) { m_Items[index] = value; } }; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>[] struct EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4 : public RuntimeArray { public: ALIGN_FIELD (8) Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D m_Items[1]; public: inline Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D value) { m_Items[index] = value; } }; // System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>[] struct KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB : public RuntimeArray { public: ALIGN_FIELD (8) KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 m_Items[1]; public: inline KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 value) { m_Items[index] = value; } }; // System.Type[] struct TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F : public RuntimeArray { public: ALIGN_FIELD (8) Type_t * m_Items[1]; public: inline Type_t * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Type_t ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Type_t * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, value); } inline Type_t * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Type_t ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Type_t * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, value); } }; // MS.Internal.Xml.Cache.XPathNodeRef[] struct XPathNodeRefU5BU5D_t42E3ACCBD8D6FA1DD321905EB2253ABA6173B1E1 : public RuntimeArray { public: ALIGN_FIELD (8) XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 m_Items[1]; public: inline XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 value) { m_Items[index] = value; } }; // System.Boolean[] struct BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040 : public RuntimeArray { public: ALIGN_FIELD (8) bool m_Items[1]; public: inline bool GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline bool* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, bool value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline bool GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline bool* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, bool value) { m_Items[index] = value; } }; // System.Byte[] struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821 : public RuntimeArray { public: ALIGN_FIELD (8) uint8_t m_Items[1]; public: inline uint8_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline uint8_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, uint8_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline uint8_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, uint8_t value) { m_Items[index] = value; } }; // System.Char[] struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2 : public RuntimeArray { public: ALIGN_FIELD (8) Il2CppChar m_Items[1]; public: inline Il2CppChar GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Il2CppChar* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Il2CppChar value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Il2CppChar GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Il2CppChar* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Il2CppChar value) { m_Items[index] = value; } }; // System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>[] struct KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F : public RuntimeArray { public: ALIGN_FIELD (8) KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B m_Items[1]; public: inline KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B value) { m_Items[index] = value; } }; // System.DateTime[] struct DateTimeU5BU5D_tFEA62BD2EDF382C69C4B1F20ED98F3709EA271C1 : public RuntimeArray { public: ALIGN_FIELD (8) DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 m_Items[1]; public: inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value) { m_Items[index] = value; } }; // System.DateTimeOffset[] struct DateTimeOffsetU5BU5D_tBE5BF156BB0B9FFFC5B216B0D02C0D44288FCA25 : public RuntimeArray { public: ALIGN_FIELD (8) DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 m_Items[1]; public: inline DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 value) { m_Items[index] = value; } }; // System.Decimal[] struct DecimalU5BU5D_t163CFBECCD3B6655700701D6451CA0CF493CBF0F : public RuntimeArray { public: ALIGN_FIELD (8) Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 m_Items[1]; public: inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { m_Items[index] = value; } }; // System.Double[] struct DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D : public RuntimeArray { public: ALIGN_FIELD (8) double m_Items[1]; public: inline double GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline double* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, double value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline double GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline double* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, double value) { m_Items[index] = value; } }; // System.Guid[] struct GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF : public RuntimeArray { public: ALIGN_FIELD (8) Guid_t m_Items[1]; public: inline Guid_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Guid_t * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Guid_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Guid_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Guid_t * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Guid_t value) { m_Items[index] = value; } }; // System.Int16[] struct Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28 : public RuntimeArray { public: ALIGN_FIELD (8) int16_t m_Items[1]; public: inline int16_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline int16_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, int16_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline int16_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline int16_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, int16_t value) { m_Items[index] = value; } }; // System.Int32Enum[] struct Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A : public RuntimeArray { public: ALIGN_FIELD (8) int32_t m_Items[1]; public: inline int32_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline int32_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, int32_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value) { m_Items[index] = value; } }; // System.Int64[] struct Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F : public RuntimeArray { public: ALIGN_FIELD (8) int64_t m_Items[1]; public: inline int64_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline int64_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, int64_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline int64_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline int64_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, int64_t value) { m_Items[index] = value; } }; // System.Void System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object>::Add(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void ConditionalWeakTable_2_Add_m328BEB54F1BEAC2B86045D46A84627B02C82E777_gshared (ConditionalWeakTable_2_tAD6736E4C6A9AF930D360966499D999E3CE45BF3 * __this, RuntimeObject * p0, RuntimeObject * p1, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>::get_Key() extern "C" IL2CPP_METHOD_ATTR Guid_t KeyValuePair_2_get_Key_m369BFEC7C9ADC58C6E6233F095F57459E3065B99_gshared (KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>::get_Value() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m8FB428463974E4EBE4B4EB74E3A6B2D9D7DBBBC2_gshared (KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>::.ctor(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_mEC9772E27F2C7F3D3F19D0C8B1B5A4C0F1F51E83_gshared (KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 * __this, Guid_t p0, RuntimeObject * p1, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Guid,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_mECADDDDDFC317414F4C3052CAE4E84B12D2C5079_gshared (Enumerator_t46054A080C119F2B6A9A53E401043DAA8851E0BD * __this, Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B * p0, int32_t p1, const RuntimeMethod* method); // System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Object>::get_Default() extern "C" IL2CPP_METHOD_ATTR EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * EqualityComparer_1_get_Default_m6C1AD693298F6DE71F53C3E0195113D21592E183_gshared (const RuntimeMethod* method); // System.Boolean System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object>::TryGetValue(TKey,TValue&) extern "C" IL2CPP_METHOD_ATTR bool ConditionalWeakTable_2_TryGetValue_m281BFEF9AF914D26E08E1DE24C8A88D3CA8D557D_gshared (ConditionalWeakTable_2_tAD6736E4C6A9AF930D360966499D999E3CE45BF3 * __this, RuntimeObject * p0, RuntimeObject ** p1, const RuntimeMethod* method); // System.Boolean System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object>::Remove(TKey) extern "C" IL2CPP_METHOD_ATTR bool ConditionalWeakTable_2_Remove_mD29BDC3DDB873F63EE055D4D5064CCD80CDCC21A_gshared (ConditionalWeakTable_2_tAD6736E4C6A9AF930D360966499D999E3CE45BF3 * __this, RuntimeObject * p0, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>::get_Key() extern "C" IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Key_m89B687D373FBE3D230647CA0C536235E12AD829C_gshared (KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>::get_Value() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_mAD6801F3BC9BA1E99D4E0F72B2B420182D0494FC_gshared (KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>::.ctor(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m0E2B8624D7996D6A5BA2A81383EE983F4A9DC078_gshared (KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 * __this, int32_t p0, RuntimeObject * p1, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_mB688A5999DC16A8DF99AA954CB6DD9DD3246942E_gshared (Enumerator_t72A8231827DB93FC8B25F08FF066377F7B773DA1 * __this, Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * p0, int32_t p1, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>::get_Key() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m399ECA62E7496A29A7396211018AD652FF15D930_gshared (KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>::get_Value() extern "C" IL2CPP_METHOD_ATTR bool KeyValuePair_2_get_Value_mE50A05A795484D20F8060413212B29EBADC1EA40_gshared (KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>::.ctor(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_mD032180723F13E561F14573BD17CC953DA35AC08_gshared (KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 * __this, RuntimeObject * p0, bool p1, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_mE39A5CCC748B75F17EC0442AF275E49D79707F5D_gshared (Enumerator_t635C134A2671CF22D2FF3CA9F05E125C187D457A * __this, Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * p0, int32_t p1, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>::get_Key() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_mA8E3537C258052C112D227D263B03028DD16CC09_gshared (KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>::get_Value() extern "C" IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Value_m24A5AC0D5FC0501CC02B85EB38A56A7C34E9BB9A_gshared (KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>::.ctor(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m463A67E5B6E5EC73FA4BFA6FE08C52EA7F7B418D_gshared (KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E * __this, RuntimeObject * p0, int32_t p1, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m6CDFD6E23B852DAFE3CFDCD8C705B8C4C31ABE03_gshared (Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E * __this, Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * p0, int32_t p1, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::get_Key() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m9D4E9BCBAB1BE560871A0889C851FC22A09975F4_gshared (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::get_Value() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m8C7B882C4D425535288FAAD08EAF11D289A43AEC_gshared (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::.ctor(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m783A0935E40FCB80D5940E8CCF0EFEFE41D7C7D3_gshared (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE * __this, RuntimeObject * p0, RuntimeObject * p1, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_m3FD84B57A809FF88FC26B86687686E3949F9CBC8_gshared (Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB * __this, Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * p0, int32_t p1, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>::get_Key() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m5D7C176AE453D032C109972EBB10C20605DAE036_gshared (KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>::get_Value() extern "C" IL2CPP_METHOD_ATTR ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C KeyValuePair_2_get_Value_m48979A8E8026569BC75639CDE453011950B84356_gshared (KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>::.ctor(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m036B07A37CD133C33431E3A1AD0C3A57DBC521F0_gshared (KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 * __this, RuntimeObject * p0, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C p1, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) extern "C" IL2CPP_METHOD_ATTR void Enumerator__ctor_mC05BB4833CCCF3518A99F2B27BEB5973D1E7AC32_gshared (Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 * __this, Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * p0, int32_t p1, const RuntimeMethod* method); // System.Void System.Object::.ctor() extern "C" IL2CPP_METHOD_ATTR void Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0 (RuntimeObject * __this, const RuntimeMethod* method); // System.Void System.ArgumentOutOfRangeException::.ctor(System.String,System.Object,System.String) extern "C" IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378 (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * __this, String_t* ___paramName0, RuntimeObject * ___actualValue1, String_t* ___message2, const RuntimeMethod* method); // System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Runtime.Serialization.SerializationInfo> System.Collections.Generic.DictionaryHashHelpers::get_SerializationInfoTable() extern "C" IL2CPP_METHOD_ATTR ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * DictionaryHashHelpers_get_SerializationInfoTable_mCF0A53E777EAFE1AA018C02529AFF6D3CDF7A05C (const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Runtime.Serialization.SerializationInfo>::Add(TKey,TValue) inline void ConditionalWeakTable_2_Add_mCC3585BE91A7BDFC49EEFDE4C11173A36D1FB5FE (ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * __this, RuntimeObject * p0, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * p1, const RuntimeMethod* method) { (( void (*) (ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *, RuntimeObject *, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *, const RuntimeMethod*))ConditionalWeakTable_2_Add_m328BEB54F1BEAC2B86045D46A84627B02C82E777_gshared)(__this, p0, p1, method); } // System.Void System.Collections.Generic.KeyNotFoundException::.ctor() extern "C" IL2CPP_METHOD_ATTR void KeyNotFoundException__ctor_mE9E1C6E6E21842095342C0A2ED65EC201FB4F3C8 (KeyNotFoundException_tC28F8B9E114291001A5D135723673C6F292438E2 * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>::get_Key() inline Guid_t KeyValuePair_2_get_Key_m369BFEC7C9ADC58C6E6233F095F57459E3065B99 (KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 * __this, const RuntimeMethod* method) { return (( Guid_t (*) (KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 *, const RuntimeMethod*))KeyValuePair_2_get_Key_m369BFEC7C9ADC58C6E6233F095F57459E3065B99_gshared)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>::get_Value() inline RuntimeObject * KeyValuePair_2_get_Value_m8FB428463974E4EBE4B4EB74E3A6B2D9D7DBBBC2 (KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m8FB428463974E4EBE4B4EB74E3A6B2D9D7DBBBC2_gshared)(__this, method); } // System.Void System.Array::Clear(System.Array,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E (RuntimeArray * ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method); // System.Void System.ArgumentNullException::.ctor(System.String) extern "C" IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * __this, String_t* ___paramName0, const RuntimeMethod* method); // System.Void System.ArgumentException::.ctor(System.String) extern "C" IL2CPP_METHOD_ATTR void ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7 (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_mEC9772E27F2C7F3D3F19D0C8B1B5A4C0F1F51E83 (KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 * __this, Guid_t p0, RuntimeObject * p1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 *, Guid_t , RuntimeObject *, const RuntimeMethod*))KeyValuePair_2__ctor_mEC9772E27F2C7F3D3F19D0C8B1B5A4C0F1F51E83_gshared)(__this, p0, p1, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Guid,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) inline void Enumerator__ctor_mECADDDDDFC317414F4C3052CAE4E84B12D2C5079 (Enumerator_t46054A080C119F2B6A9A53E401043DAA8851E0BD * __this, Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B * p0, int32_t p1, const RuntimeMethod* method) { (( void (*) (Enumerator_t46054A080C119F2B6A9A53E401043DAA8851E0BD *, Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *, int32_t, const RuntimeMethod*))Enumerator__ctor_mECADDDDDFC317414F4C3052CAE4E84B12D2C5079_gshared)(__this, p0, p1, method); } // System.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.Int32) extern "C" IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_m7C73917D9DC4B8FE4AFEF4BA8EBEDAB046A8D0BD (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* ___name0, int32_t ___value1, const RuntimeMethod* method); // System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle) extern "C" IL2CPP_METHOD_ATTR Type_t * Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6 (RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D ___handle0, const RuntimeMethod* method); // System.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.Object,System.Type) extern "C" IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* ___name0, RuntimeObject * ___value1, Type_t * ___type2, const RuntimeMethod* method); // System.Int32 System.Collections.HashHelpers::GetPrime(System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t HashHelpers_GetPrime_m743D7006C2BCBADC1DC8CACF7C5B78C9F6B38297 (int32_t ___min0, const RuntimeMethod* method); // System.String SR::Format(System.String,System.Object) extern "C" IL2CPP_METHOD_ATTR String_t* SR_Format_mCDBB594267CC224AB2A69540BBA598151F0642C7 (String_t* ___resourceFormat0, RuntimeObject * ___p11, const RuntimeMethod* method); // System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.String>::get_Default() inline EqualityComparer_1_tBEFFC6F649A17852373A084880D57CB299084137 * EqualityComparer_1_get_Default_m85F378D7298050D5DF422363D5EB30A218B769B7 (const RuntimeMethod* method) { return (( EqualityComparer_1_tBEFFC6F649A17852373A084880D57CB299084137 * (*) (const RuntimeMethod*))EqualityComparer_1_get_Default_m6C1AD693298F6DE71F53C3E0195113D21592E183_gshared)(method); } // System.Boolean System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Runtime.Serialization.SerializationInfo>::TryGetValue(TKey,TValue&) inline bool ConditionalWeakTable_2_TryGetValue_mDFCB6C303807E3F8998D196F4573870680E81F8B (ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * __this, RuntimeObject * p0, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 ** p1, const RuntimeMethod* method) { return (( bool (*) (ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *, RuntimeObject *, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 **, const RuntimeMethod*))ConditionalWeakTable_2_TryGetValue_m281BFEF9AF914D26E08E1DE24C8A88D3CA8D557D_gshared)(__this, p0, p1, method); } // System.Int32 System.Runtime.Serialization.SerializationInfo::GetInt32(System.String) extern "C" IL2CPP_METHOD_ATTR int32_t SerializationInfo_GetInt32_mB47BD46A0BDBBAF5B47BB62E6EFF8E092E3F3656 (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* ___name0, const RuntimeMethod* method); // System.Object System.Runtime.Serialization.SerializationInfo::GetValue(System.String,System.Type) extern "C" IL2CPP_METHOD_ATTR RuntimeObject * SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* ___name0, Type_t * ___type1, const RuntimeMethod* method); // System.Void System.Runtime.Serialization.SerializationException::.ctor(System.String) extern "C" IL2CPP_METHOD_ATTR void SerializationException__ctor_m88AAD9671030A8A96AA87CB95701938FBD8F16E1 (SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Boolean System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Runtime.Serialization.SerializationInfo>::Remove(TKey) inline bool ConditionalWeakTable_2_Remove_mD69606977A8C793DEA91E373F7D886E4865D7FBD (ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * __this, RuntimeObject * p0, const RuntimeMethod* method) { return (( bool (*) (ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *, RuntimeObject *, const RuntimeMethod*))ConditionalWeakTable_2_Remove_mD29BDC3DDB873F63EE055D4D5064CCD80CDCC21A_gshared)(__this, p0, method); } // System.Int32 System.Collections.HashHelpers::ExpandPrime(System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t HashHelpers_ExpandPrime_m4245F4C95074EAA8F949FB3B734F611A533A6A0D (int32_t ___oldSize0, const RuntimeMethod* method); // System.Void System.Array::Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR void Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6 (RuntimeArray * ___sourceArray0, int32_t ___sourceIndex1, RuntimeArray * ___destinationArray2, int32_t ___destinationIndex3, int32_t ___length4, const RuntimeMethod* method); // System.Int32 System.Array::get_Rank() extern "C" IL2CPP_METHOD_ATTR int32_t Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1 (RuntimeArray * __this, const RuntimeMethod* method); // System.Void System.ArgumentException::.ctor(System.String,System.String) extern "C" IL2CPP_METHOD_ATTR void ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8 (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * __this, String_t* ___message0, String_t* ___paramName1, const RuntimeMethod* method); // System.Int32 System.Array::GetLowerBound(System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B (RuntimeArray * __this, int32_t ___dimension0, const RuntimeMethod* method); // System.Int32 System.Array::get_Length() extern "C" IL2CPP_METHOD_ATTR int32_t Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D (RuntimeArray * __this, const RuntimeMethod* method); // System.Void System.Collections.DictionaryEntry::.ctor(System.Object,System.Object) extern "C" IL2CPP_METHOD_ATTR void DictionaryEntry__ctor_m67BC38CD2B85F134F3EB2473270CDD3933F7CD9B (DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.String SR::Format(System.String,System.Object,System.Object) extern "C" IL2CPP_METHOD_ATTR String_t* SR_Format_m2DD0EA1F52576669B34B03CDB3D441631E1CA76C (String_t* ___resourceFormat0, RuntimeObject * ___p11, RuntimeObject * ___p22, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>::get_Key() inline int32_t KeyValuePair_2_get_Key_m89B687D373FBE3D230647CA0C536235E12AD829C (KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 * __this, const RuntimeMethod* method) { return (( int32_t (*) (KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 *, const RuntimeMethod*))KeyValuePair_2_get_Key_m89B687D373FBE3D230647CA0C536235E12AD829C_gshared)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>::get_Value() inline RuntimeObject * KeyValuePair_2_get_Value_mAD6801F3BC9BA1E99D4E0F72B2B420182D0494FC (KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 *, const RuntimeMethod*))KeyValuePair_2_get_Value_mAD6801F3BC9BA1E99D4E0F72B2B420182D0494FC_gshared)(__this, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m0E2B8624D7996D6A5BA2A81383EE983F4A9DC078 (KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 * __this, int32_t p0, RuntimeObject * p1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 *, int32_t, RuntimeObject *, const RuntimeMethod*))KeyValuePair_2__ctor_m0E2B8624D7996D6A5BA2A81383EE983F4A9DC078_gshared)(__this, p0, p1, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) inline void Enumerator__ctor_mB688A5999DC16A8DF99AA954CB6DD9DD3246942E (Enumerator_t72A8231827DB93FC8B25F08FF066377F7B773DA1 * __this, Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * p0, int32_t p1, const RuntimeMethod* method) { (( void (*) (Enumerator_t72A8231827DB93FC8B25F08FF066377F7B773DA1 *, Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *, int32_t, const RuntimeMethod*))Enumerator__ctor_mB688A5999DC16A8DF99AA954CB6DD9DD3246942E_gshared)(__this, p0, p1, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>::get_Key() inline RuntimeObject * KeyValuePair_2_get_Key_m399ECA62E7496A29A7396211018AD652FF15D930 (KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 *, const RuntimeMethod*))KeyValuePair_2_get_Key_m399ECA62E7496A29A7396211018AD652FF15D930_gshared)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>::get_Value() inline bool KeyValuePair_2_get_Value_mE50A05A795484D20F8060413212B29EBADC1EA40 (KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 * __this, const RuntimeMethod* method) { return (( bool (*) (KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 *, const RuntimeMethod*))KeyValuePair_2_get_Value_mE50A05A795484D20F8060413212B29EBADC1EA40_gshared)(__this, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_mD032180723F13E561F14573BD17CC953DA35AC08 (KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 * __this, RuntimeObject * p0, bool p1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 *, RuntimeObject *, bool, const RuntimeMethod*))KeyValuePair_2__ctor_mD032180723F13E561F14573BD17CC953DA35AC08_gshared)(__this, p0, p1, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) inline void Enumerator__ctor_mE39A5CCC748B75F17EC0442AF275E49D79707F5D (Enumerator_t635C134A2671CF22D2FF3CA9F05E125C187D457A * __this, Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * p0, int32_t p1, const RuntimeMethod* method) { (( void (*) (Enumerator_t635C134A2671CF22D2FF3CA9F05E125C187D457A *, Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *, int32_t, const RuntimeMethod*))Enumerator__ctor_mE39A5CCC748B75F17EC0442AF275E49D79707F5D_gshared)(__this, p0, p1, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>::get_Key() inline RuntimeObject * KeyValuePair_2_get_Key_mA8E3537C258052C112D227D263B03028DD16CC09 (KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *, const RuntimeMethod*))KeyValuePair_2_get_Key_mA8E3537C258052C112D227D263B03028DD16CC09_gshared)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>::get_Value() inline int32_t KeyValuePair_2_get_Value_m24A5AC0D5FC0501CC02B85EB38A56A7C34E9BB9A (KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E * __this, const RuntimeMethod* method) { return (( int32_t (*) (KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *, const RuntimeMethod*))KeyValuePair_2_get_Value_m24A5AC0D5FC0501CC02B85EB38A56A7C34E9BB9A_gshared)(__this, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m463A67E5B6E5EC73FA4BFA6FE08C52EA7F7B418D (KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E * __this, RuntimeObject * p0, int32_t p1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *, RuntimeObject *, int32_t, const RuntimeMethod*))KeyValuePair_2__ctor_m463A67E5B6E5EC73FA4BFA6FE08C52EA7F7B418D_gshared)(__this, p0, p1, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) inline void Enumerator__ctor_m6CDFD6E23B852DAFE3CFDCD8C705B8C4C31ABE03 (Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E * __this, Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * p0, int32_t p1, const RuntimeMethod* method) { (( void (*) (Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E *, Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *, int32_t, const RuntimeMethod*))Enumerator__ctor_m6CDFD6E23B852DAFE3CFDCD8C705B8C4C31ABE03_gshared)(__this, p0, p1, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::get_Key() inline RuntimeObject * KeyValuePair_2_get_Key_m9D4E9BCBAB1BE560871A0889C851FC22A09975F4 (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *, const RuntimeMethod*))KeyValuePair_2_get_Key_m9D4E9BCBAB1BE560871A0889C851FC22A09975F4_gshared)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::get_Value() inline RuntimeObject * KeyValuePair_2_get_Value_m8C7B882C4D425535288FAAD08EAF11D289A43AEC (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *, const RuntimeMethod*))KeyValuePair_2_get_Value_m8C7B882C4D425535288FAAD08EAF11D289A43AEC_gshared)(__this, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m783A0935E40FCB80D5940E8CCF0EFEFE41D7C7D3 (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE * __this, RuntimeObject * p0, RuntimeObject * p1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*))KeyValuePair_2__ctor_m783A0935E40FCB80D5940E8CCF0EFEFE41D7C7D3_gshared)(__this, p0, p1, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) inline void Enumerator__ctor_m3FD84B57A809FF88FC26B86687686E3949F9CBC8 (Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB * __this, Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * p0, int32_t p1, const RuntimeMethod* method) { (( void (*) (Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB *, Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, int32_t, const RuntimeMethod*))Enumerator__ctor_m3FD84B57A809FF88FC26B86687686E3949F9CBC8_gshared)(__this, p0, p1, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>::get_Key() inline RuntimeObject * KeyValuePair_2_get_Key_m5D7C176AE453D032C109972EBB10C20605DAE036 (KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *, const RuntimeMethod*))KeyValuePair_2_get_Key_m5D7C176AE453D032C109972EBB10C20605DAE036_gshared)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>::get_Value() inline ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C KeyValuePair_2_get_Value_m48979A8E8026569BC75639CDE453011950B84356 (KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 * __this, const RuntimeMethod* method) { return (( ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C (*) (KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m48979A8E8026569BC75639CDE453011950B84356_gshared)(__this, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m036B07A37CD133C33431E3A1AD0C3A57DBC521F0 (KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 * __this, RuntimeObject * p0, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C p1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *, RuntimeObject *, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C , const RuntimeMethod*))KeyValuePair_2__ctor_m036B07A37CD133C33431E3A1AD0C3A57DBC521F0_gshared)(__this, p0, p1, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) inline void Enumerator__ctor_mC05BB4833CCCF3518A99F2B27BEB5973D1E7AC32 (Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 * __this, Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * p0, int32_t p1, const RuntimeMethod* method) { (( void (*) (Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 *, Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, int32_t, const RuntimeMethod*))Enumerator__ctor_mC05BB4833CCCF3518A99F2B27BEB5973D1E7AC32_gshared)(__this, p0, p1, method); } // System.Int32 System.Int32::GetHashCode() extern "C" IL2CPP_METHOD_ATTR int32_t Int32_GetHashCode_m245C424ECE351E5FE3277A88EEB02132DAB8C25A (int32_t* __this, const RuntimeMethod* method); // System.Type System.Enum::GetUnderlyingType(System.Type) extern "C" IL2CPP_METHOD_ATTR Type_t * Enum_GetUnderlyingType_m0715B4E60E6909F03FF7302B6E20B1AB88DA84B1 (Type_t * ___enumType0, const RuntimeMethod* method); // System.TypeCode System.Type::GetTypeCode(System.Type) extern "C" IL2CPP_METHOD_ATTR int32_t Type_GetTypeCode_m3105BBCE671D89EFE212F9BA06AAB90944A6116F (Type_t * ___type0, const RuntimeMethod* method); // System.Void System.Runtime.Serialization.SerializationInfo::SetType(System.Type) extern "C" IL2CPP_METHOD_ATTR void SerializationInfo_SetType_m3F30AFEB3555E20E995D31713C0604E26B2CF784 (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, Type_t * ___type0, const RuntimeMethod* method); // System.Type System.Object::GetType() extern "C" IL2CPP_METHOD_ATTR Type_t * Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60 (RuntimeObject * __this, const RuntimeMethod* method); // System.Boolean System.Type::op_Equality(System.Type,System.Type) extern "C" IL2CPP_METHOD_ATTR bool Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8 (Type_t * ___left0, Type_t * ___right1, const RuntimeMethod* method); // System.Void System.Collections.Generic.ByteEqualityComparer::.ctor() extern "C" IL2CPP_METHOD_ATTR void ByteEqualityComparer__ctor_m2B86B16398C9ADBA996127A209179E9654EF6A68 (ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.InternalStringComparer::.ctor() extern "C" IL2CPP_METHOD_ATTR void InternalStringComparer__ctor_m471FF151AF831B76635ED96C53CF08114FD42C83 (InternalStringComparer_tCD150130A3DB4C80186B5D8145B910B33496D4CD * __this, const RuntimeMethod* method); // System.Object System.RuntimeType::CreateInstanceForAnotherGenericParameter(System.Type,System.RuntimeType) extern "C" IL2CPP_METHOD_ATTR RuntimeObject * RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4 (Type_t * ___genericType0, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___genericArgument1, const RuntimeMethod* method); // System.Void System.ThrowHelper::ThrowArgumentException(System.ExceptionResource) extern "C" IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84 (int32_t ___resource0, const RuntimeMethod* method); #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2<System.Guid,System.Object>::.ctor() extern "C" IL2CPP_METHOD_ATTR void Dictionary_2__ctor_mC92BC7A517D06345FC455002D2E7E8653B51DA86_gshared (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B * __this, const RuntimeMethod* method) { { NullCheck((Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)__this); (( void (*) (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)__this, (int32_t)0, (RuntimeObject*)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Guid,System.Object>::.ctor(System.Int32) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m7DD19C7C16741DE9D9042998F03932803A719B56_gshared (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B * __this, int32_t ___capacity0, const RuntimeMethod* method) { { int32_t L_0 = ___capacity0; NullCheck((Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)__this); (( void (*) (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)__this, (int32_t)L_0, (RuntimeObject*)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Guid,System.Object>::.ctor(System.Collections.Generic.IEqualityComparer`1<TKey>) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m3445C34CD542F09889E75F1325C2D5E77CEAC328_gshared (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___comparer0; NullCheck((Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)__this); (( void (*) (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)__this, (int32_t)0, (RuntimeObject*)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Guid,System.Object>::.ctor(System.Int32,System.Collections.Generic.IEqualityComparer`1<TKey>) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m79C77EA7921A82DFE9E8808C0747578D5CD131C4_gshared (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B * __this, int32_t ___capacity0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2__ctor_m79C77EA7921A82DFE9E8808C0747578D5CD131C4_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* G_B6_0 = NULL; Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B * G_B6_1 = NULL; RuntimeObject* G_B5_0 = NULL; Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B * G_B5_1 = NULL; { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); int32_t L_0 = ___capacity0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0020; } } { int32_t L_1 = ___capacity0; int32_t L_2 = L_1; RuntimeObject * L_3 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_2); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_4 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378(L_4, (String_t*)_stringLiteral7CB1F56D3FBE09E809244FC8E13671CD876E3860, (RuntimeObject *)L_3, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Dictionary_2__ctor_m79C77EA7921A82DFE9E8808C0747578D5CD131C4_RuntimeMethod_var); } IL_0020: { int32_t L_5 = ___capacity0; if ((((int32_t)L_5) <= ((int32_t)0))) { goto IL_002b; } } { int32_t L_6 = ___capacity0; NullCheck((Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)__this); (( void (*) (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)__this, (int32_t)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); } IL_002b: { RuntimeObject* L_7 = ___comparer1; RuntimeObject* L_8 = (RuntimeObject*)L_7; G_B5_0 = L_8; G_B5_1 = ((Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)(__this)); if (L_8) { G_B6_0 = L_8; G_B6_1 = ((Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)(__this)); goto IL_0036; } } { EqualityComparer_1_t0D118F538343D64A03149EE6C285141397B3217E * L_9 = (( EqualityComparer_1_t0D118F538343D64A03149EE6C285141397B3217E * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); G_B6_0 = ((RuntimeObject*)(L_9)); G_B6_1 = ((Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)(G_B5_1)); } IL_0036: { NullCheck(G_B6_1); G_B6_1->set_comparer_6(G_B6_0); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Guid,System.Object>::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m58137CE5C883C91027932035A3EA85863B6708B3_gshared (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2__ctor_m58137CE5C883C91027932035A3EA85863B6708B3_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00_il2cpp_TypeInfo_var); ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * L_0 = DictionaryHashHelpers_get_SerializationInfoTable_mCF0A53E777EAFE1AA018C02529AFF6D3CDF7A05C(/*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_1 = ___info0; NullCheck((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_0); ConditionalWeakTable_2_Add_mCC3585BE91A7BDFC49EEFDE4C11173A36D1FB5FE((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_0, (RuntimeObject *)__this, (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_1, /*hidden argument*/ConditionalWeakTable_2_Add_mCC3585BE91A7BDFC49EEFDE4C11173A36D1FB5FE_RuntimeMethod_var); return; } } // System.Int32 System.Collections.Generic.Dictionary`2<System.Guid,System.Object>::get_Count() extern "C" IL2CPP_METHOD_ATTR int32_t Dictionary_2_get_Count_m35D8CEB51930E00298E802F6FBAF2964690EC5A7_gshared (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_count_2(); int32_t L_1 = (int32_t)__this->get_freeCount_5(); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)); } } // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Guid,System.Object>::get_Keys() extern "C" IL2CPP_METHOD_ATTR KeyCollection_t15C8B15130E4E7B7CD7D11CE909D4ECD1932151E * Dictionary_2_get_Keys_m39F1859E5CD091DEC1A14FB929793E88246678DB_gshared (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B * __this, const RuntimeMethod* method) { { KeyCollection_t15C8B15130E4E7B7CD7D11CE909D4ECD1932151E * L_0 = (KeyCollection_t15C8B15130E4E7B7CD7D11CE909D4ECD1932151E *)__this->get_keys_7(); if (L_0) { goto IL_0014; } } { KeyCollection_t15C8B15130E4E7B7CD7D11CE909D4ECD1932151E * L_1 = (KeyCollection_t15C8B15130E4E7B7CD7D11CE909D4ECD1932151E *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4)); (( void (*) (KeyCollection_t15C8B15130E4E7B7CD7D11CE909D4ECD1932151E *, Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)(L_1, (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); __this->set_keys_7(L_1); } IL_0014: { KeyCollection_t15C8B15130E4E7B7CD7D11CE909D4ECD1932151E * L_2 = (KeyCollection_t15C8B15130E4E7B7CD7D11CE909D4ECD1932151E *)__this->get_keys_7(); return L_2; } } // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Guid,System.Object>::get_Values() extern "C" IL2CPP_METHOD_ATTR ValueCollection_t46B01CABF972366F0EAD3927B1A97339B8283D5F * Dictionary_2_get_Values_m6D7B1A73EA86999E82E5F81D8730EA23964A8935_gshared (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B * __this, const RuntimeMethod* method) { { ValueCollection_t46B01CABF972366F0EAD3927B1A97339B8283D5F * L_0 = (ValueCollection_t46B01CABF972366F0EAD3927B1A97339B8283D5F *)__this->get_values_8(); if (L_0) { goto IL_0014; } } { ValueCollection_t46B01CABF972366F0EAD3927B1A97339B8283D5F * L_1 = (ValueCollection_t46B01CABF972366F0EAD3927B1A97339B8283D5F *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)); (( void (*) (ValueCollection_t46B01CABF972366F0EAD3927B1A97339B8283D5F *, Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)(L_1, (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)); __this->set_values_8(L_1); } IL_0014: { ValueCollection_t46B01CABF972366F0EAD3927B1A97339B8283D5F * L_2 = (ValueCollection_t46B01CABF972366F0EAD3927B1A97339B8283D5F *)__this->get_values_8(); return L_2; } } // TValue System.Collections.Generic.Dictionary`2<System.Guid,System.Object>::get_Item(TKey) extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Dictionary_2_get_Item_m8048B360C48D16676794369717A7E72E590D9C36_gshared (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B * __this, Guid_t ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_get_Item_m8048B360C48D16676794369717A7E72E590D9C36_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { Guid_t L_0 = ___key0; NullCheck((Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *, Guid_t , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)__this, (Guid_t )L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_001e; } } { EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_3 = (EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE*)__this->get_entries_1(); int32_t L_4 = V_0; NullCheck(L_3); RuntimeObject * L_5 = (RuntimeObject *)((L_3)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_4)))->get_value_3(); return L_5; } IL_001e: { KeyNotFoundException_tC28F8B9E114291001A5D135723673C6F292438E2 * L_6 = (KeyNotFoundException_tC28F8B9E114291001A5D135723673C6F292438E2 *)il2cpp_codegen_object_new(KeyNotFoundException_tC28F8B9E114291001A5D135723673C6F292438E2_il2cpp_TypeInfo_var); KeyNotFoundException__ctor_mE9E1C6E6E21842095342C0A2ED65EC201FB4F3C8(L_6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, Dictionary_2_get_Item_m8048B360C48D16676794369717A7E72E590D9C36_RuntimeMethod_var); } } // System.Void System.Collections.Generic.Dictionary`2<System.Guid,System.Object>::set_Item(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_mE5DB29F7653B0CB142AAB862304B3B6F30450CBA_gshared (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B * __this, Guid_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { { Guid_t L_0 = ___key0; RuntimeObject * L_1 = ___value1; NullCheck((Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)__this); (( bool (*) (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *, Guid_t , RuntimeObject *, uint8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)((Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)__this, (Guid_t )L_0, (RuntimeObject *)L_1, (uint8_t)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Guid,System.Object>::Add(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_Add_m61701EAEEE3A5B10D3F93C1B39104E208B8529A4_gshared (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B * __this, Guid_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { { Guid_t L_0 = ___key0; RuntimeObject * L_1 = ___value1; NullCheck((Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)__this); (( bool (*) (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *, Guid_t , RuntimeObject *, uint8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)((Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)__this, (Guid_t )L_0, (RuntimeObject *)L_1, (uint8_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Guid,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Add(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Add_mFB64EDBD05C24862126FC3F64656F2A293585111_gshared (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B * __this, KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 ___keyValuePair0, const RuntimeMethod* method) { { Guid_t L_0 = KeyValuePair_2_get_Key_m369BFEC7C9ADC58C6E6233F095F57459E3065B99((KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 *)(KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); RuntimeObject * L_1 = KeyValuePair_2_get_Value_m8FB428463974E4EBE4B4EB74E3A6B2D9D7DBBBC2((KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 *)(KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); NullCheck((Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)__this); (( void (*) (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *, Guid_t , RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)((Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)__this, (Guid_t )L_0, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Guid,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Contains(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Contains_mA7B9FC36F6FA6C18CEF7851E7A21B35868AB8F75_gshared (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B * __this, KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 ___keyValuePair0, const RuntimeMethod* method) { int32_t V_0 = 0; { Guid_t L_0 = KeyValuePair_2_get_Key_m369BFEC7C9ADC58C6E6233F095F57459E3065B99((KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 *)(KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); NullCheck((Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *, Guid_t , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)__this, (Guid_t )L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0038; } } { EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * L_3 = (( EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)); EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_4 = (EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE*)__this->get_entries_1(); int32_t L_5 = V_0; NullCheck(L_4); RuntimeObject * L_6 = (RuntimeObject *)((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_value_3(); RuntimeObject * L_7 = KeyValuePair_2_get_Value_m8FB428463974E4EBE4B4EB74E3A6B2D9D7DBBBC2((KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 *)(KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); NullCheck((EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA *)L_3); bool L_8 = VirtFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Object>::Equals(T,T) */, (EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA *)L_3, (RuntimeObject *)L_6, (RuntimeObject *)L_7); if (!L_8) { goto IL_0038; } } { return (bool)1; } IL_0038: { return (bool)0; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Guid,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Remove(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Remove_m96161F65278A365D17B9DBB96581BD22F6378E62_gshared (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B * __this, KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 ___keyValuePair0, const RuntimeMethod* method) { int32_t V_0 = 0; { Guid_t L_0 = KeyValuePair_2_get_Key_m369BFEC7C9ADC58C6E6233F095F57459E3065B99((KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 *)(KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); NullCheck((Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *, Guid_t , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)__this, (Guid_t )L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0046; } } { EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * L_3 = (( EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)); EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_4 = (EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE*)__this->get_entries_1(); int32_t L_5 = V_0; NullCheck(L_4); RuntimeObject * L_6 = (RuntimeObject *)((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_value_3(); RuntimeObject * L_7 = KeyValuePair_2_get_Value_m8FB428463974E4EBE4B4EB74E3A6B2D9D7DBBBC2((KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 *)(KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); NullCheck((EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA *)L_3); bool L_8 = VirtFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Object>::Equals(T,T) */, (EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA *)L_3, (RuntimeObject *)L_6, (RuntimeObject *)L_7); if (!L_8) { goto IL_0046; } } { Guid_t L_9 = KeyValuePair_2_get_Key_m369BFEC7C9ADC58C6E6233F095F57459E3065B99((KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 *)(KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); NullCheck((Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)__this); (( bool (*) (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *, Guid_t , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16)->methodPointer)((Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)__this, (Guid_t )L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16)); return (bool)1; } IL_0046: { return (bool)0; } } // System.Void System.Collections.Generic.Dictionary`2<System.Guid,System.Object>::Clear() extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_Clear_m4D4184B792DCEF59D4CC04C5C56B062923D4AA8F_gshared (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B * __this, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0 = (int32_t)__this->get_count_2(); if ((((int32_t)L_0) <= ((int32_t)0))) { goto IL_005a; } } { V_0 = (int32_t)0; goto IL_001a; } IL_000d: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_1 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_2 = V_0; NullCheck(L_1); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(L_2), (int32_t)(-1)); int32_t L_3 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)); } IL_001a: { int32_t L_4 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_5 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_5); if ((((int32_t)L_4) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_5)->max_length))))))) { goto IL_000d; } } { EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_6 = (EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE*)__this->get_entries_1(); int32_t L_7 = (int32_t)__this->get_count_2(); Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_6, (int32_t)0, (int32_t)L_7, /*hidden argument*/NULL); __this->set_freeList_4((-1)); __this->set_count_2(0); __this->set_freeCount_5(0); int32_t L_8 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1))); } IL_005a: { return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Guid,System.Object>::ContainsKey(TKey) extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_ContainsKey_mFAF3C21250F75EC5D7D9A40BB6728165FE74D839_gshared (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B * __this, Guid_t ___key0, const RuntimeMethod* method) { { Guid_t L_0 = ___key0; NullCheck((Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *, Guid_t , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)__this, (Guid_t )L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); return (bool)((((int32_t)((((int32_t)L_1) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Guid,System.Object>::ContainsValue(TValue) extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_ContainsValue_mC8727ED7F5BC579524CADF64528712EF8A1F1ED6_gshared (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { int32_t V_0 = 0; EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * V_1 = NULL; int32_t V_2 = 0; { RuntimeObject * L_0 = ___value0; if (L_0) { goto IL_0049; } } { V_0 = (int32_t)0; goto IL_003e; } IL_000c: { EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_1 = (EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE*)__this->get_entries_1(); int32_t L_2 = V_0; NullCheck(L_1); int32_t L_3 = (int32_t)((L_1)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_2)))->get_hashCode_0(); if ((((int32_t)L_3) < ((int32_t)0))) { goto IL_003a; } } { EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_4 = (EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE*)__this->get_entries_1(); int32_t L_5 = V_0; NullCheck(L_4); RuntimeObject * L_6 = (RuntimeObject *)((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_value_3(); if (L_6) { goto IL_003a; } } { return (bool)1; } IL_003a: { int32_t L_7 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1)); } IL_003e: { int32_t L_8 = V_0; int32_t L_9 = (int32_t)__this->get_count_2(); if ((((int32_t)L_8) < ((int32_t)L_9))) { goto IL_000c; } } { goto IL_0090; } IL_0049: { EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * L_10 = (( EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)); V_1 = (EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA *)L_10; V_2 = (int32_t)0; goto IL_0087; } IL_0053: { EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_11 = (EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE*)__this->get_entries_1(); int32_t L_12 = V_2; NullCheck(L_11); int32_t L_13 = (int32_t)((L_11)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_12)))->get_hashCode_0(); if ((((int32_t)L_13) < ((int32_t)0))) { goto IL_0083; } } { EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * L_14 = V_1; EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_15 = (EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE*)__this->get_entries_1(); int32_t L_16 = V_2; NullCheck(L_15); RuntimeObject * L_17 = (RuntimeObject *)((L_15)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_16)))->get_value_3(); RuntimeObject * L_18 = ___value0; NullCheck((EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA *)L_14); bool L_19 = VirtFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Object>::Equals(T,T) */, (EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA *)L_14, (RuntimeObject *)L_17, (RuntimeObject *)L_18); if (!L_19) { goto IL_0083; } } { return (bool)1; } IL_0083: { int32_t L_20 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1)); } IL_0087: { int32_t L_21 = V_2; int32_t L_22 = (int32_t)__this->get_count_2(); if ((((int32_t)L_21) < ((int32_t)L_22))) { goto IL_0053; } } IL_0090: { return (bool)0; } } // System.Void System.Collections.Generic.Dictionary`2<System.Guid,System.Object>::CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_CopyTo_m694C7269BEBF9B8177EEE24A09E225DDA0FFD348_gshared (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B * __this, KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A* ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_CopyTo_m694C7269BEBF9B8177EEE24A09E225DDA0FFD348_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* V_1 = NULL; int32_t V_2 = 0; { KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_CopyTo_m694C7269BEBF9B8177EEE24A09E225DDA0FFD348_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___index1; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_3 = ___index1; KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A* L_4 = ___array0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_4)->max_length))))))) { goto IL_002e; } } IL_0018: { int32_t L_5 = ___index1; int32_t L_6 = L_5; RuntimeObject * L_7 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_6); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_8 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378(L_8, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, (RuntimeObject *)L_7, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, Dictionary_2_CopyTo_m694C7269BEBF9B8177EEE24A09E225DDA0FFD348_RuntimeMethod_var); } IL_002e: { KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A* L_9 = ___array0; NullCheck(L_9); int32_t L_10 = ___index1; NullCheck((Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)__this); int32_t L_11 = (( int32_t (*) (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)->methodPointer)((Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_9)->max_length)))), (int32_t)L_10))) >= ((int32_t)L_11))) { goto IL_0046; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_12, (String_t*)_stringLiteralBC80A496F1C479B70F6EE2BF2F0C3C05463301B8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, NULL, Dictionary_2_CopyTo_m694C7269BEBF9B8177EEE24A09E225DDA0FFD348_RuntimeMethod_var); } IL_0046: { int32_t L_13 = (int32_t)__this->get_count_2(); V_0 = (int32_t)L_13; EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_14 = (EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE*)__this->get_entries_1(); V_1 = (EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE*)L_14; V_2 = (int32_t)0; goto IL_0094; } IL_0058: { EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_15 = V_1; int32_t L_16 = V_2; NullCheck(L_15); int32_t L_17 = (int32_t)((L_15)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_16)))->get_hashCode_0(); if ((((int32_t)L_17) < ((int32_t)0))) { goto IL_0090; } } { KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A* L_18 = ___array0; int32_t L_19 = ___index1; int32_t L_20 = (int32_t)L_19; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1)); EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_21 = V_1; int32_t L_22 = V_2; NullCheck(L_21); Guid_t L_23 = (Guid_t )((L_21)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_22)))->get_key_2(); EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_24 = V_1; int32_t L_25 = V_2; NullCheck(L_24); RuntimeObject * L_26 = (RuntimeObject *)((L_24)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_25)))->get_value_3(); KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 L_27; memset(&L_27, 0, sizeof(L_27)); KeyValuePair_2__ctor_mEC9772E27F2C7F3D3F19D0C8B1B5A4C0F1F51E83((&L_27), (Guid_t )L_23, (RuntimeObject *)L_26, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 20)); NullCheck(L_18); (L_18)->SetAt(static_cast<il2cpp_array_size_t>(L_20), (KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 )L_27); } IL_0090: { int32_t L_28 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_28, (int32_t)1)); } IL_0094: { int32_t L_29 = V_2; int32_t L_30 = V_0; if ((((int32_t)L_29) < ((int32_t)L_30))) { goto IL_0058; } } { return; } } // System.Collections.Generic.Dictionary`2/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Guid,System.Object>::GetEnumerator() extern "C" IL2CPP_METHOD_ATTR Enumerator_t46054A080C119F2B6A9A53E401043DAA8851E0BD Dictionary_2_GetEnumerator_m9F974B1C75F70B7CD622F0DF90EEA8D3EEB1D158_gshared (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B * __this, const RuntimeMethod* method) { { Enumerator_t46054A080C119F2B6A9A53E401043DAA8851E0BD L_0; memset(&L_0, 0, sizeof(L_0)); Enumerator__ctor_mECADDDDDFC317414F4C3052CAE4E84B12D2C5079((&L_0), (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)__this, (int32_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)); return L_0; } } // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<TKey,TValue>> System.Collections.Generic.Dictionary`2<System.Guid,System.Object>::System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>.GetEnumerator() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_System_Collections_Generic_IEnumerableU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_GetEnumerator_m9EE5187D9B93E9B2F3793B69EA6B2BDBDD450C4C_gshared (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B * __this, const RuntimeMethod* method) { { Enumerator_t46054A080C119F2B6A9A53E401043DAA8851E0BD L_0; memset(&L_0, 0, sizeof(L_0)); Enumerator__ctor_mECADDDDDFC317414F4C3052CAE4E84B12D2C5079((&L_0), (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)__this, (int32_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)); Enumerator_t46054A080C119F2B6A9A53E401043DAA8851E0BD L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 21), &L_1); return (RuntimeObject*)L_2; } } // System.Void System.Collections.Generic.Dictionary`2<System.Guid,System.Object>::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_GetObjectData_m5A4FEB1DD953A200FE8ADBBDD17B3FC622EE0EDE_gshared (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_GetObjectData_m5A4FEB1DD953A200FE8ADBBDD17B3FC622EE0EDE_MetadataUsageId); s_Il2CppMethodInitialized = true; } KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A* V_0 = NULL; String_t* G_B4_0 = NULL; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * G_B4_1 = NULL; String_t* G_B3_0 = NULL; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * G_B3_1 = NULL; int32_t G_B5_0 = 0; String_t* G_B5_1 = NULL; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * G_B5_2 = NULL; { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_GetObjectData_m5A4FEB1DD953A200FE8ADBBDD17B3FC622EE0EDE_RuntimeMethod_var); } IL_000e: { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0; int32_t L_3 = (int32_t)__this->get_version_3(); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_2); SerializationInfo_AddValue_m7C73917D9DC4B8FE4AFEF4BA8EBEDAB046A8D0BD((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_2, (String_t*)_stringLiteral2DA600BF9404843107A9531694F654E5662959E0, (int32_t)L_3, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_4 = ___info0; RuntimeObject* L_5 = (RuntimeObject*)__this->get_comparer_6(); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 23)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_6, /*hidden argument*/NULL); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_4); SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_4, (String_t*)_stringLiteral8FC94E4F5B71CECE2565D72417AACC804EE27A0D, (RuntimeObject *)L_5, (Type_t *)L_7, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_8 = ___info0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_9 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); G_B3_0 = _stringLiteral35E05A2D28CF03B64D64C58D0C7ED03AD5A3AF60; G_B3_1 = L_8; if (!L_9) { G_B4_0 = _stringLiteral35E05A2D28CF03B64D64C58D0C7ED03AD5A3AF60; G_B4_1 = L_8; goto IL_0052; } } { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_10 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_10); G_B5_0 = (((int32_t)((int32_t)(((RuntimeArray *)L_10)->max_length)))); G_B5_1 = G_B3_0; G_B5_2 = G_B3_1; goto IL_0053; } IL_0052: { G_B5_0 = 0; G_B5_1 = G_B4_0; G_B5_2 = G_B4_1; } IL_0053: { NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)G_B5_2); SerializationInfo_AddValue_m7C73917D9DC4B8FE4AFEF4BA8EBEDAB046A8D0BD((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)G_B5_2, (String_t*)G_B5_1, (int32_t)G_B5_0, /*hidden argument*/NULL); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_11 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); if (!L_11) { goto IL_008a; } } { NullCheck((Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)__this); int32_t L_12 = (( int32_t (*) (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)->methodPointer)((Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)); KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A* L_13 = (KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 24), (uint32_t)L_12); V_0 = (KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A*)L_13; KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A* L_14 = V_0; NullCheck((Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)__this); (( void (*) (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *, KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 25)->methodPointer)((Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)__this, (KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A*)L_14, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 25)); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_15 = ___info0; KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A* L_16 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_17 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 26)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_18 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_17, /*hidden argument*/NULL); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_15); SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_15, (String_t*)_stringLiteral1D89254A2BC78C1FF41C2F6767A0E00EE126B3BF, (RuntimeObject *)(RuntimeObject *)L_16, (Type_t *)L_18, /*hidden argument*/NULL); } IL_008a: { return; } } // System.Int32 System.Collections.Generic.Dictionary`2<System.Guid,System.Object>::FindEntry(TKey) extern "C" IL2CPP_METHOD_ATTR int32_t Dictionary_2_FindEntry_m02633C7D0E35BA47BA8F5AE4703777A59C526AA3_gshared (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B * __this, Guid_t ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_FindEntry_m02633C7D0E35BA47BA8F5AE4703777A59C526AA3_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { goto IL_0013; } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_FindEntry_m02633C7D0E35BA47BA8F5AE4703777A59C526AA3_RuntimeMethod_var); } IL_0013: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); if (!L_2) { goto IL_008d; } } { RuntimeObject* L_3 = (RuntimeObject*)__this->get_comparer_6(); Guid_t L_4 = ___key0; NullCheck((RuntimeObject*)L_3); int32_t L_5 = InterfaceFuncInvoker1< int32_t, Guid_t >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Guid>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28), (RuntimeObject*)L_3, (Guid_t )L_4); V_0 = (int32_t)((int32_t)((int32_t)L_5&(int32_t)((int32_t)2147483647LL))); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_6 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_7 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_8); NullCheck(L_6); int32_t L_9 = ((int32_t)((int32_t)L_7%(int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length)))))); int32_t L_10 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_9)); V_1 = (int32_t)L_10; goto IL_0089; } IL_0042: { EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_11 = (EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE*)__this->get_entries_1(); int32_t L_12 = V_1; NullCheck(L_11); int32_t L_13 = (int32_t)((L_11)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_12)))->get_hashCode_0(); int32_t L_14 = V_0; if ((!(((uint32_t)L_13) == ((uint32_t)L_14)))) { goto IL_0077; } } { RuntimeObject* L_15 = (RuntimeObject*)__this->get_comparer_6(); EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_16 = (EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE*)__this->get_entries_1(); int32_t L_17 = V_1; NullCheck(L_16); Guid_t L_18 = (Guid_t )((L_16)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_17)))->get_key_2(); Guid_t L_19 = ___key0; NullCheck((RuntimeObject*)L_15); bool L_20 = InterfaceFuncInvoker2< bool, Guid_t , Guid_t >::Invoke(0 /* System.Boolean System.Collections.Generic.IEqualityComparer`1<System.Guid>::Equals(T,T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28), (RuntimeObject*)L_15, (Guid_t )L_18, (Guid_t )L_19); if (!L_20) { goto IL_0077; } } { int32_t L_21 = V_1; return L_21; } IL_0077: { EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_22 = (EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE*)__this->get_entries_1(); int32_t L_23 = V_1; NullCheck(L_22); int32_t L_24 = (int32_t)((L_22)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_23)))->get_next_1(); V_1 = (int32_t)L_24; } IL_0089: { int32_t L_25 = V_1; if ((((int32_t)L_25) >= ((int32_t)0))) { goto IL_0042; } } IL_008d: { return (-1); } } // System.Void System.Collections.Generic.Dictionary`2<System.Guid,System.Object>::Initialize(System.Int32) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_Initialize_mFFC96075BB125D4555D9101AD1763233CAC34883_gshared (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B * __this, int32_t ___capacity0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Initialize_mFFC96075BB125D4555D9101AD1763233CAC34883_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = ___capacity0; IL2CPP_RUNTIME_CLASS_INIT(HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_il2cpp_TypeInfo_var); int32_t L_1 = HashHelpers_GetPrime_m743D7006C2BCBADC1DC8CACF7C5B78C9F6B38297((int32_t)L_0, /*hidden argument*/NULL); V_0 = (int32_t)L_1; int32_t L_2 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_3 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)L_2); __this->set_buckets_0(L_3); V_1 = (int32_t)0; goto IL_0024; } IL_0017: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_4 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_5 = V_1; NullCheck(L_4); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (int32_t)(-1)); int32_t L_6 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1)); } IL_0024: { int32_t L_7 = V_1; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_8); if ((((int32_t)L_7) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length))))))) { goto IL_0017; } } { int32_t L_9 = V_0; EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_10 = (EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 29), (uint32_t)L_9); __this->set_entries_1(L_10); __this->set_freeList_4((-1)); return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Guid,System.Object>::TryInsert(TKey,TValue,System.Collections.Generic.InsertionBehavior) extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_TryInsert_mF603620B1EB22D0F50A6B8A9BF956C552FD4C7E5_gshared (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B * __this, Guid_t ___key0, RuntimeObject * ___value1, uint8_t ___behavior2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_TryInsert_mF603620B1EB22D0F50A6B8A9BF956C552FD4C7E5_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; { goto IL_0013; } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_TryInsert_mF603620B1EB22D0F50A6B8A9BF956C552FD4C7E5_RuntimeMethod_var); } IL_0013: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); if (L_2) { goto IL_0022; } } { NullCheck((Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)__this); (( void (*) (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)__this, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); } IL_0022: { RuntimeObject* L_3 = (RuntimeObject*)__this->get_comparer_6(); Guid_t L_4 = ___key0; NullCheck((RuntimeObject*)L_3); int32_t L_5 = InterfaceFuncInvoker1< int32_t, Guid_t >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Guid>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28), (RuntimeObject*)L_3, (Guid_t )L_4); V_0 = (int32_t)((int32_t)((int32_t)L_5&(int32_t)((int32_t)2147483647LL))); int32_t L_6 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_7 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_7); V_1 = (int32_t)((int32_t)((int32_t)L_6%(int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_7)->max_length)))))); V_2 = (int32_t)0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_9 = V_1; NullCheck(L_8); int32_t L_10 = L_9; int32_t L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); V_4 = (int32_t)L_11; goto IL_00e1; } IL_0051: { EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_12 = (EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE*)__this->get_entries_1(); int32_t L_13 = V_4; NullCheck(L_12); int32_t L_14 = (int32_t)((L_12)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_13)))->get_hashCode_0(); int32_t L_15 = V_0; if ((!(((uint32_t)L_14) == ((uint32_t)L_15)))) { goto IL_00c9; } } { RuntimeObject* L_16 = (RuntimeObject*)__this->get_comparer_6(); EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_17 = (EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE*)__this->get_entries_1(); int32_t L_18 = V_4; NullCheck(L_17); Guid_t L_19 = (Guid_t )((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18)))->get_key_2(); Guid_t L_20 = ___key0; NullCheck((RuntimeObject*)L_16); bool L_21 = InterfaceFuncInvoker2< bool, Guid_t , Guid_t >::Invoke(0 /* System.Boolean System.Collections.Generic.IEqualityComparer`1<System.Guid>::Equals(T,T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28), (RuntimeObject*)L_16, (Guid_t )L_19, (Guid_t )L_20); if (!L_21) { goto IL_00c9; } } { uint8_t L_22 = ___behavior2; if ((!(((uint32_t)L_22) == ((uint32_t)1)))) { goto IL_00ad; } } { EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_23 = (EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE*)__this->get_entries_1(); int32_t L_24 = V_4; NullCheck(L_23); RuntimeObject * L_25 = ___value1; ((L_23)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_24)))->set_value_3(L_25); int32_t L_26 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1))); return (bool)1; } IL_00ad: { uint8_t L_27 = ___behavior2; if ((!(((uint32_t)L_27) == ((uint32_t)2)))) { goto IL_00c7; } } { Guid_t L_28 = ___key0; Guid_t L_29 = L_28; RuntimeObject * L_30 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 27), &L_29); String_t* L_31 = SR_Format_mCDBB594267CC224AB2A69540BBA598151F0642C7((String_t*)_stringLiteral6FD577FD3A1BDC4DA28CD51D7A55EB397CEA3926, (RuntimeObject *)L_30, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_32 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_32, (String_t*)L_31, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_32, NULL, Dictionary_2_TryInsert_mF603620B1EB22D0F50A6B8A9BF956C552FD4C7E5_RuntimeMethod_var); } IL_00c7: { return (bool)0; } IL_00c9: { int32_t L_33 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)1)); EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_34 = (EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE*)__this->get_entries_1(); int32_t L_35 = V_4; NullCheck(L_34); int32_t L_36 = (int32_t)((L_34)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_35)))->get_next_1(); V_4 = (int32_t)L_36; } IL_00e1: { int32_t L_37 = V_4; if ((((int32_t)L_37) >= ((int32_t)0))) { goto IL_0051; } } { int32_t L_38 = (int32_t)__this->get_freeCount_5(); if ((((int32_t)L_38) <= ((int32_t)0))) { goto IL_0120; } } { int32_t L_39 = (int32_t)__this->get_freeList_4(); V_3 = (int32_t)L_39; EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_40 = (EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE*)__this->get_entries_1(); int32_t L_41 = V_3; NullCheck(L_40); int32_t L_42 = (int32_t)((L_40)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_41)))->get_next_1(); __this->set_freeList_4(L_42); int32_t L_43 = (int32_t)__this->get_freeCount_5(); __this->set_freeCount_5(((int32_t)il2cpp_codegen_subtract((int32_t)L_43, (int32_t)1))); goto IL_0156; } IL_0120: { int32_t L_44 = (int32_t)__this->get_count_2(); EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_45 = (EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE*)__this->get_entries_1(); NullCheck(L_45); if ((!(((uint32_t)L_44) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_45)->max_length)))))))) { goto IL_0141; } } { NullCheck((Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)__this); (( void (*) (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 30)->methodPointer)((Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 30)); int32_t L_46 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_47 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_47); V_1 = (int32_t)((int32_t)((int32_t)L_46%(int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_47)->max_length)))))); } IL_0141: { int32_t L_48 = (int32_t)__this->get_count_2(); V_3 = (int32_t)L_48; int32_t L_49 = (int32_t)__this->get_count_2(); __this->set_count_2(((int32_t)il2cpp_codegen_add((int32_t)L_49, (int32_t)1))); } IL_0156: { EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_50 = (EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE*)__this->get_entries_1(); int32_t L_51 = V_3; NullCheck(L_50); int32_t L_52 = V_0; ((L_50)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_51)))->set_hashCode_0(L_52); EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_53 = (EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE*)__this->get_entries_1(); int32_t L_54 = V_3; NullCheck(L_53); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_55 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_56 = V_1; NullCheck(L_55); int32_t L_57 = L_56; int32_t L_58 = (L_55)->GetAt(static_cast<il2cpp_array_size_t>(L_57)); ((L_53)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_54)))->set_next_1(L_58); EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_59 = (EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE*)__this->get_entries_1(); int32_t L_60 = V_3; NullCheck(L_59); Guid_t L_61 = ___key0; ((L_59)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_60)))->set_key_2(L_61); EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_62 = (EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE*)__this->get_entries_1(); int32_t L_63 = V_3; NullCheck(L_62); RuntimeObject * L_64 = ___value1; ((L_62)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_63)))->set_value_3(L_64); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_65 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_66 = V_1; int32_t L_67 = V_3; NullCheck(L_65); (L_65)->SetAt(static_cast<il2cpp_array_size_t>(L_66), (int32_t)L_67); int32_t L_68 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_68, (int32_t)1))); int32_t L_69 = V_2; if ((((int32_t)L_69) <= ((int32_t)((int32_t)100)))) { goto IL_01ed; } } { RuntimeObject* L_70 = (RuntimeObject*)__this->get_comparer_6(); if (!((NonRandomizedStringEqualityComparer_t92C20503D9C5060A557792ABCCC06EF2DD77E5D9 *)IsInst((RuntimeObject*)L_70, NonRandomizedStringEqualityComparer_t92C20503D9C5060A557792ABCCC06EF2DD77E5D9_il2cpp_TypeInfo_var))) { goto IL_01ed; } } { EqualityComparer_1_tBEFFC6F649A17852373A084880D57CB299084137 * L_71 = EqualityComparer_1_get_Default_m85F378D7298050D5DF422363D5EB30A218B769B7(/*hidden argument*/EqualityComparer_1_get_Default_m85F378D7298050D5DF422363D5EB30A218B769B7_RuntimeMethod_var); __this->set_comparer_6(((RuntimeObject*)Castclass((RuntimeObject*)L_71, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28)))); EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_72 = (EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE*)__this->get_entries_1(); NullCheck(L_72); NullCheck((Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)__this); (( void (*) (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *, int32_t, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)->methodPointer)((Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)__this, (int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_72)->max_length)))), (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)); } IL_01ed: { return (bool)1; } } // System.Void System.Collections.Generic.Dictionary`2<System.Guid,System.Object>::OnDeserialization(System.Object) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_OnDeserialization_m4EC34CCC8043E6025E4844A8DE92D8E25B63E219_gshared (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B * __this, RuntimeObject * ___sender0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_OnDeserialization_m4EC34CCC8043E6025E4844A8DE92D8E25B63E219_MetadataUsageId); s_Il2CppMethodInitialized = true; } SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A* V_3 = NULL; int32_t V_4 = 0; int32_t V_5 = 0; { IL2CPP_RUNTIME_CLASS_INIT(DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00_il2cpp_TypeInfo_var); ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * L_0 = DictionaryHashHelpers_get_SerializationInfoTable_mCF0A53E777EAFE1AA018C02529AFF6D3CDF7A05C(/*hidden argument*/NULL); NullCheck((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_0); ConditionalWeakTable_2_TryGetValue_mDFCB6C303807E3F8998D196F4573870680E81F8B((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_0, (RuntimeObject *)__this, (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 **)(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 **)(&V_0), /*hidden argument*/ConditionalWeakTable_2_TryGetValue_mDFCB6C303807E3F8998D196F4573870680E81F8B_RuntimeMethod_var); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_1 = V_0; if (L_1) { goto IL_0012; } } { return; } IL_0012: { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = V_0; NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_2); int32_t L_3 = SerializationInfo_GetInt32_mB47BD46A0BDBBAF5B47BB62E6EFF8E092E3F3656((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_2, (String_t*)_stringLiteral2DA600BF9404843107A9531694F654E5662959E0, /*hidden argument*/NULL); V_1 = (int32_t)L_3; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_4 = V_0; NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_4); int32_t L_5 = SerializationInfo_GetInt32_mB47BD46A0BDBBAF5B47BB62E6EFF8E092E3F3656((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_4, (String_t*)_stringLiteral35E05A2D28CF03B64D64C58D0C7ED03AD5A3AF60, /*hidden argument*/NULL); V_2 = (int32_t)L_5; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_6 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_7 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 23)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_8 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_7, /*hidden argument*/NULL); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_6); RuntimeObject * L_9 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_6, (String_t*)_stringLiteral8FC94E4F5B71CECE2565D72417AACC804EE27A0D, (Type_t *)L_8, /*hidden argument*/NULL); __this->set_comparer_6(((RuntimeObject*)Castclass((RuntimeObject*)L_9, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28)))); int32_t L_10 = V_2; if (!L_10) { goto IL_010c; } } { int32_t L_11 = V_2; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_12 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)L_11); __this->set_buckets_0(L_12); V_4 = (int32_t)0; goto IL_0071; } IL_0061: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_13 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_14 = V_4; NullCheck(L_13); (L_13)->SetAt(static_cast<il2cpp_array_size_t>(L_14), (int32_t)(-1)); int32_t L_15 = V_4; V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)); } IL_0071: { int32_t L_16 = V_4; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_17 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_17); if ((((int32_t)L_16) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_17)->max_length))))))) { goto IL_0061; } } { int32_t L_18 = V_2; EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_19 = (EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 29), (uint32_t)L_18); __this->set_entries_1(L_19); __this->set_freeList_4((-1)); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_20 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_21 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 26)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_22 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_21, /*hidden argument*/NULL); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_20); RuntimeObject * L_23 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_20, (String_t*)_stringLiteral1D89254A2BC78C1FF41C2F6767A0E00EE126B3BF, (Type_t *)L_22, /*hidden argument*/NULL); V_3 = (KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A*)((KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A*)Castclass((RuntimeObject*)L_23, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 32))); KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A* L_24 = V_3; if (L_24) { goto IL_00b9; } } { SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 * L_25 = (SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 *)il2cpp_codegen_object_new(SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_il2cpp_TypeInfo_var); SerializationException__ctor_m88AAD9671030A8A96AA87CB95701938FBD8F16E1(L_25, (String_t*)_stringLiteral1EB7E67EA75FFC3FCB05A9685FA4F1578DCACCF6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_25, NULL, Dictionary_2_OnDeserialization_m4EC34CCC8043E6025E4844A8DE92D8E25B63E219_RuntimeMethod_var); } IL_00b9: { V_5 = (int32_t)0; goto IL_0103; } IL_00be: { KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A* L_26 = V_3; int32_t L_27 = V_5; NullCheck(L_26); Guid_t L_28 = KeyValuePair_2_get_Key_m369BFEC7C9ADC58C6E6233F095F57459E3065B99((KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 *)(KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 *)((L_26)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_27))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); goto IL_00dd; } { SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 * L_29 = (SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 *)il2cpp_codegen_object_new(SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_il2cpp_TypeInfo_var); SerializationException__ctor_m88AAD9671030A8A96AA87CB95701938FBD8F16E1(L_29, (String_t*)_stringLiteralD6D1BC79DD62E9F1FB9A49A8F76F4BA8AB71AECD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_29, NULL, Dictionary_2_OnDeserialization_m4EC34CCC8043E6025E4844A8DE92D8E25B63E219_RuntimeMethod_var); } IL_00dd: { KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A* L_30 = V_3; int32_t L_31 = V_5; NullCheck(L_30); Guid_t L_32 = KeyValuePair_2_get_Key_m369BFEC7C9ADC58C6E6233F095F57459E3065B99((KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 *)(KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 *)((L_30)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_31))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A* L_33 = V_3; int32_t L_34 = V_5; NullCheck(L_33); RuntimeObject * L_35 = KeyValuePair_2_get_Value_m8FB428463974E4EBE4B4EB74E3A6B2D9D7DBBBC2((KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 *)(KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 *)((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); NullCheck((Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)__this); (( void (*) (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *, Guid_t , RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)((Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)__this, (Guid_t )L_32, (RuntimeObject *)L_35, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); int32_t L_36 = V_5; V_5 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_36, (int32_t)1)); } IL_0103: { int32_t L_37 = V_5; KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A* L_38 = V_3; NullCheck(L_38); if ((((int32_t)L_37) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_38)->max_length))))))) { goto IL_00be; } } { goto IL_0113; } IL_010c: { __this->set_buckets_0((Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)NULL); } IL_0113: { int32_t L_39 = V_1; __this->set_version_3(L_39); IL2CPP_RUNTIME_CLASS_INIT(DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00_il2cpp_TypeInfo_var); ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * L_40 = DictionaryHashHelpers_get_SerializationInfoTable_mCF0A53E777EAFE1AA018C02529AFF6D3CDF7A05C(/*hidden argument*/NULL); NullCheck((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_40); ConditionalWeakTable_2_Remove_mD69606977A8C793DEA91E373F7D886E4865D7FBD((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_40, (RuntimeObject *)__this, /*hidden argument*/ConditionalWeakTable_2_Remove_mD69606977A8C793DEA91E373F7D886E4865D7FBD_RuntimeMethod_var); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Guid,System.Object>::Resize() extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_Resize_m2CDF1768B7CCC2AA9FBE83E7BB72B8D474ABC0FA_gshared (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Resize_m2CDF1768B7CCC2AA9FBE83E7BB72B8D474ABC0FA_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_count_2(); IL2CPP_RUNTIME_CLASS_INIT(HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_il2cpp_TypeInfo_var); int32_t L_1 = HashHelpers_ExpandPrime_m4245F4C95074EAA8F949FB3B734F611A533A6A0D((int32_t)L_0, /*hidden argument*/NULL); NullCheck((Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)__this); (( void (*) (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *, int32_t, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)->methodPointer)((Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)__this, (int32_t)L_1, (bool)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Guid,System.Object>::Resize(System.Int32,System.Boolean) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_Resize_mB10600DAF63451A6BB2B87390D14FCADD7807B72_gshared (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B * __this, int32_t ___newSize0, bool ___forceNewHashCodes1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Resize_mB10600DAF63451A6BB2B87390D14FCADD7807B72_MetadataUsageId); s_Il2CppMethodInitialized = true; } Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* V_0 = NULL; EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* V_1 = NULL; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; int32_t V_5 = 0; { int32_t L_0 = ___newSize0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_1 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)L_0); V_0 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)L_1; V_2 = (int32_t)0; goto IL_0013; } IL_000b: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = V_0; int32_t L_3 = V_2; NullCheck(L_2); (L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (int32_t)(-1)); int32_t L_4 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)); } IL_0013: { int32_t L_5 = V_2; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_6 = V_0; NullCheck(L_6); if ((((int32_t)L_5) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_6)->max_length))))))) { goto IL_000b; } } { int32_t L_7 = ___newSize0; EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_8 = (EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 29), (uint32_t)L_7); V_1 = (EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE*)L_8; EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_9 = (EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE*)__this->get_entries_1(); EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_10 = V_1; int32_t L_11 = (int32_t)__this->get_count_2(); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_9, (int32_t)0, (RuntimeArray *)(RuntimeArray *)L_10, (int32_t)0, (int32_t)L_11, /*hidden argument*/NULL); bool L_12 = ___forceNewHashCodes1; if (!L_12) { goto IL_0080; } } { V_3 = (int32_t)0; goto IL_0077; } IL_003b: { EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_13 = V_1; int32_t L_14 = V_3; NullCheck(L_13); int32_t L_15 = (int32_t)((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_hashCode_0(); if ((((int32_t)L_15) == ((int32_t)(-1)))) { goto IL_0073; } } { EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_16 = V_1; int32_t L_17 = V_3; NullCheck(L_16); RuntimeObject* L_18 = (RuntimeObject*)__this->get_comparer_6(); EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_19 = V_1; int32_t L_20 = V_3; NullCheck(L_19); Guid_t L_21 = (Guid_t )((L_19)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_20)))->get_key_2(); NullCheck((RuntimeObject*)L_18); int32_t L_22 = InterfaceFuncInvoker1< int32_t, Guid_t >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Guid>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28), (RuntimeObject*)L_18, (Guid_t )L_21); ((L_16)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_17)))->set_hashCode_0(((int32_t)((int32_t)L_22&(int32_t)((int32_t)2147483647LL)))); } IL_0073: { int32_t L_23 = V_3; V_3 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); } IL_0077: { int32_t L_24 = V_3; int32_t L_25 = (int32_t)__this->get_count_2(); if ((((int32_t)L_24) < ((int32_t)L_25))) { goto IL_003b; } } IL_0080: { V_4 = (int32_t)0; goto IL_00c3; } IL_0085: { EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_26 = V_1; int32_t L_27 = V_4; NullCheck(L_26); int32_t L_28 = (int32_t)((L_26)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_27)))->get_hashCode_0(); if ((((int32_t)L_28) < ((int32_t)0))) { goto IL_00bd; } } { EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_29 = V_1; int32_t L_30 = V_4; NullCheck(L_29); int32_t L_31 = (int32_t)((L_29)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_30)))->get_hashCode_0(); int32_t L_32 = ___newSize0; V_5 = (int32_t)((int32_t)((int32_t)L_31%(int32_t)L_32)); EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_33 = V_1; int32_t L_34 = V_4; NullCheck(L_33); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_35 = V_0; int32_t L_36 = V_5; NullCheck(L_35); int32_t L_37 = L_36; int32_t L_38 = (L_35)->GetAt(static_cast<il2cpp_array_size_t>(L_37)); ((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->set_next_1(L_38); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_39 = V_0; int32_t L_40 = V_5; int32_t L_41 = V_4; NullCheck(L_39); (L_39)->SetAt(static_cast<il2cpp_array_size_t>(L_40), (int32_t)L_41); } IL_00bd: { int32_t L_42 = V_4; V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)1)); } IL_00c3: { int32_t L_43 = V_4; int32_t L_44 = (int32_t)__this->get_count_2(); if ((((int32_t)L_43) < ((int32_t)L_44))) { goto IL_0085; } } { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_45 = V_0; __this->set_buckets_0(L_45); EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_46 = V_1; __this->set_entries_1(L_46); return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Guid,System.Object>::Remove(TKey) extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_Remove_mC6EACB6BEE0DB4863289790892A91B8A1218BCFA_gshared (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B * __this, Guid_t ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Remove_mC6EACB6BEE0DB4863289790892A91B8A1218BCFA_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; { goto IL_0013; } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_Remove_mC6EACB6BEE0DB4863289790892A91B8A1218BCFA_RuntimeMethod_var); } IL_0013: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); if (!L_2) { goto IL_015d; } } { RuntimeObject* L_3 = (RuntimeObject*)__this->get_comparer_6(); Guid_t L_4 = ___key0; NullCheck((RuntimeObject*)L_3); int32_t L_5 = InterfaceFuncInvoker1< int32_t, Guid_t >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Guid>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28), (RuntimeObject*)L_3, (Guid_t )L_4); V_0 = (int32_t)((int32_t)((int32_t)L_5&(int32_t)((int32_t)2147483647LL))); int32_t L_6 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_7 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_7); V_1 = (int32_t)((int32_t)((int32_t)L_6%(int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_7)->max_length)))))); V_2 = (int32_t)(-1); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_9 = V_1; NullCheck(L_8); int32_t L_10 = L_9; int32_t L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); V_3 = (int32_t)L_11; goto IL_0156; } IL_004c: { EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_12 = (EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE*)__this->get_entries_1(); int32_t L_13 = V_3; NullCheck(L_12); int32_t L_14 = (int32_t)((L_12)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_13)))->get_hashCode_0(); int32_t L_15 = V_0; if ((!(((uint32_t)L_14) == ((uint32_t)L_15)))) { goto IL_0142; } } { RuntimeObject* L_16 = (RuntimeObject*)__this->get_comparer_6(); EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_17 = (EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE*)__this->get_entries_1(); int32_t L_18 = V_3; NullCheck(L_17); Guid_t L_19 = (Guid_t )((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18)))->get_key_2(); Guid_t L_20 = ___key0; NullCheck((RuntimeObject*)L_16); bool L_21 = InterfaceFuncInvoker2< bool, Guid_t , Guid_t >::Invoke(0 /* System.Boolean System.Collections.Generic.IEqualityComparer`1<System.Guid>::Equals(T,T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28), (RuntimeObject*)L_16, (Guid_t )L_19, (Guid_t )L_20); if (!L_21) { goto IL_0142; } } { int32_t L_22 = V_2; if ((((int32_t)L_22) >= ((int32_t)0))) { goto IL_00a4; } } { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_23 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_24 = V_1; EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_25 = (EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE*)__this->get_entries_1(); int32_t L_26 = V_3; NullCheck(L_25); int32_t L_27 = (int32_t)((L_25)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_26)))->get_next_1(); NullCheck(L_23); (L_23)->SetAt(static_cast<il2cpp_array_size_t>(L_24), (int32_t)L_27); goto IL_00c6; } IL_00a4: { EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_28 = (EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE*)__this->get_entries_1(); int32_t L_29 = V_2; NullCheck(L_28); EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_30 = (EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE*)__this->get_entries_1(); int32_t L_31 = V_3; NullCheck(L_30); int32_t L_32 = (int32_t)((L_30)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_31)))->get_next_1(); ((L_28)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_29)))->set_next_1(L_32); } IL_00c6: { EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_33 = (EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE*)__this->get_entries_1(); int32_t L_34 = V_3; NullCheck(L_33); ((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->set_hashCode_0((-1)); EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_35 = (EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE*)__this->get_entries_1(); int32_t L_36 = V_3; NullCheck(L_35); int32_t L_37 = (int32_t)__this->get_freeList_4(); ((L_35)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_36)))->set_next_1(L_37); EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_38 = (EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE*)__this->get_entries_1(); int32_t L_39 = V_3; NullCheck(L_38); Guid_t * L_40 = (Guid_t *)((L_38)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_39)))->get_address_of_key_2(); il2cpp_codegen_initobj(L_40, sizeof(Guid_t )); EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_41 = (EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE*)__this->get_entries_1(); int32_t L_42 = V_3; NullCheck(L_41); RuntimeObject ** L_43 = (RuntimeObject **)((L_41)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_42)))->get_address_of_value_3(); il2cpp_codegen_initobj(L_43, sizeof(RuntimeObject *)); int32_t L_44 = V_3; __this->set_freeList_4(L_44); int32_t L_45 = (int32_t)__this->get_freeCount_5(); __this->set_freeCount_5(((int32_t)il2cpp_codegen_add((int32_t)L_45, (int32_t)1))); int32_t L_46 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_46, (int32_t)1))); return (bool)1; } IL_0142: { int32_t L_47 = V_3; V_2 = (int32_t)L_47; EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_48 = (EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE*)__this->get_entries_1(); int32_t L_49 = V_3; NullCheck(L_48); int32_t L_50 = (int32_t)((L_48)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_49)))->get_next_1(); V_3 = (int32_t)L_50; } IL_0156: { int32_t L_51 = V_3; if ((((int32_t)L_51) >= ((int32_t)0))) { goto IL_004c; } } IL_015d: { return (bool)0; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Guid,System.Object>::TryGetValue(TKey,TValue&) extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_m787087AA73FF9D469632237ABC7937C0593E3034_gshared (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B * __this, Guid_t ___key0, RuntimeObject ** ___value1, const RuntimeMethod* method) { int32_t V_0 = 0; { Guid_t L_0 = ___key0; NullCheck((Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *, Guid_t , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)__this, (Guid_t )L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0025; } } { RuntimeObject ** L_3 = ___value1; EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_4 = (EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE*)__this->get_entries_1(); int32_t L_5 = V_0; NullCheck(L_4); RuntimeObject * L_6 = (RuntimeObject *)((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_value_3(); *(RuntimeObject **)L_3 = L_6; Il2CppCodeGenWriteBarrier((RuntimeObject **)L_3, L_6); return (bool)1; } IL_0025: { RuntimeObject ** L_7 = ___value1; il2cpp_codegen_initobj(L_7, sizeof(RuntimeObject *)); return (bool)0; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Guid,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.get_IsReadOnly() extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_get_IsReadOnly_m19CFE354D4301318CE833103A101A29A8C8FDA6B_gshared (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Void System.Collections.Generic.Dictionary`2<System.Guid,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_CopyTo_mF41812BA5BE03A1C0FD0A6F1E8666E0AD1112C0D_gshared (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B * __this, KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A* ___array0, int32_t ___index1, const RuntimeMethod* method) { { KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A* L_0 = ___array0; int32_t L_1 = ___index1; NullCheck((Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)__this); (( void (*) (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *, KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 25)->methodPointer)((Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)__this, (KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A*)L_0, (int32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 25)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Guid,System.Object>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_ICollection_CopyTo_mBBB30909825CA57C3D36FA678FA2D083DE628402_gshared (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_System_Collections_ICollection_CopyTo_mBBB30909825CA57C3D36FA678FA2D083DE628402_MetadataUsageId); s_Il2CppMethodInitialized = true; } KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A* V_0 = NULL; DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56* V_1 = NULL; EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* V_2 = NULL; int32_t V_3 = 0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_4 = NULL; int32_t V_5 = 0; EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* V_6 = NULL; int32_t V_7 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_mBBB30909825CA57C3D36FA678FA2D083DE628402_RuntimeMethod_var); } IL_000e: { RuntimeArray * L_2 = ___array0; NullCheck((RuntimeArray *)L_2); int32_t L_3 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)L_2, /*hidden argument*/NULL); if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_0027; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_4 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_4, (String_t*)_stringLiteral2D77BE6D598A0A9376398980E66D10E319F1B52A, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_mBBB30909825CA57C3D36FA678FA2D083DE628402_RuntimeMethod_var); } IL_0027: { RuntimeArray * L_5 = ___array0; NullCheck((RuntimeArray *)L_5); int32_t L_6 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)L_5, (int32_t)0, /*hidden argument*/NULL); if (!L_6) { goto IL_0040; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_7 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_7, (String_t*)_stringLiteralC363992023785AF013BBCF2E20C19D9835184F82, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_mBBB30909825CA57C3D36FA678FA2D083DE628402_RuntimeMethod_var); } IL_0040: { int32_t L_8 = ___index1; if ((((int32_t)L_8) < ((int32_t)0))) { goto IL_004d; } } { int32_t L_9 = ___index1; RuntimeArray * L_10 = ___array0; NullCheck((RuntimeArray *)L_10); int32_t L_11 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_10, /*hidden argument*/NULL); if ((((int32_t)L_9) <= ((int32_t)L_11))) { goto IL_0063; } } IL_004d: { int32_t L_12 = ___index1; int32_t L_13 = L_12; RuntimeObject * L_14 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_13); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_15 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378(L_15, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, (RuntimeObject *)L_14, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_mBBB30909825CA57C3D36FA678FA2D083DE628402_RuntimeMethod_var); } IL_0063: { RuntimeArray * L_16 = ___array0; NullCheck((RuntimeArray *)L_16); int32_t L_17 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_16, /*hidden argument*/NULL); int32_t L_18 = ___index1; NullCheck((Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)__this); int32_t L_19 = (( int32_t (*) (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)->methodPointer)((Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_18))) >= ((int32_t)L_19))) { goto IL_007e; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_20 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_20, (String_t*)_stringLiteralBC80A496F1C479B70F6EE2BF2F0C3C05463301B8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_mBBB30909825CA57C3D36FA678FA2D083DE628402_RuntimeMethod_var); } IL_007e: { RuntimeArray * L_21 = ___array0; V_0 = (KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A*)((KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A*)IsInst((RuntimeObject*)L_21, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 32))); KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A* L_22 = V_0; if (!L_22) { goto IL_0091; } } { KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A* L_23 = V_0; int32_t L_24 = ___index1; NullCheck((Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)__this); (( void (*) (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *, KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 25)->methodPointer)((Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)__this, (KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A*)L_23, (int32_t)L_24, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 25)); return; } IL_0091: { RuntimeArray * L_25 = ___array0; if (!((DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56*)IsInst((RuntimeObject*)L_25, DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56_il2cpp_TypeInfo_var))) { goto IL_00fb; } } { RuntimeArray * L_26 = ___array0; V_1 = (DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56*)((DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56*)IsInst((RuntimeObject*)L_26, DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56_il2cpp_TypeInfo_var)); EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_27 = (EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE*)__this->get_entries_1(); V_2 = (EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE*)L_27; V_3 = (int32_t)0; goto IL_00f1; } IL_00ab: { EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_28 = V_2; int32_t L_29 = V_3; NullCheck(L_28); int32_t L_30 = (int32_t)((L_28)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_29)))->get_hashCode_0(); if ((((int32_t)L_30) < ((int32_t)0))) { goto IL_00ed; } } { DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56* L_31 = V_1; int32_t L_32 = ___index1; int32_t L_33 = (int32_t)L_32; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)1)); EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_34 = V_2; int32_t L_35 = V_3; NullCheck(L_34); Guid_t L_36 = (Guid_t )((L_34)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_35)))->get_key_2(); Guid_t L_37 = L_36; RuntimeObject * L_38 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 27), &L_37); EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_39 = V_2; int32_t L_40 = V_3; NullCheck(L_39); RuntimeObject * L_41 = (RuntimeObject *)((L_39)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_40)))->get_value_3(); DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_42; memset(&L_42, 0, sizeof(L_42)); DictionaryEntry__ctor_m67BC38CD2B85F134F3EB2473270CDD3933F7CD9B((&L_42), (RuntimeObject *)L_38, (RuntimeObject *)L_41, /*hidden argument*/NULL); NullCheck(L_31); (L_31)->SetAt(static_cast<il2cpp_array_size_t>(L_33), (DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 )L_42); } IL_00ed: { int32_t L_43 = V_3; V_3 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_43, (int32_t)1)); } IL_00f1: { int32_t L_44 = V_3; int32_t L_45 = (int32_t)__this->get_count_2(); if ((((int32_t)L_44) < ((int32_t)L_45))) { goto IL_00ab; } } { return; } IL_00fb: { RuntimeArray * L_46 = ___array0; V_4 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)L_46, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_47 = V_4; if (L_47) { goto IL_0117; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_48 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_48, (String_t*)_stringLiteralC44D4E6C6AF3517A1CC72EDF7D1A5FFD7E3368F1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_48, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_mBBB30909825CA57C3D36FA678FA2D083DE628402_RuntimeMethod_var); } IL_0117: { } IL_0118: try { // begin try (depth: 1) { int32_t L_49 = (int32_t)__this->get_count_2(); V_5 = (int32_t)L_49; EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_50 = (EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE*)__this->get_entries_1(); V_6 = (EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE*)L_50; V_7 = (int32_t)0; goto IL_0173; } IL_012d: { EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_51 = V_6; int32_t L_52 = V_7; NullCheck(L_51); int32_t L_53 = (int32_t)((L_51)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_52)))->get_hashCode_0(); if ((((int32_t)L_53) < ((int32_t)0))) { goto IL_016d; } } IL_013e: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_54 = V_4; int32_t L_55 = ___index1; int32_t L_56 = (int32_t)L_55; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_56, (int32_t)1)); EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_57 = V_6; int32_t L_58 = V_7; NullCheck(L_57); Guid_t L_59 = (Guid_t )((L_57)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_58)))->get_key_2(); EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_60 = V_6; int32_t L_61 = V_7; NullCheck(L_60); RuntimeObject * L_62 = (RuntimeObject *)((L_60)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_61)))->get_value_3(); KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 L_63; memset(&L_63, 0, sizeof(L_63)); KeyValuePair_2__ctor_mEC9772E27F2C7F3D3F19D0C8B1B5A4C0F1F51E83((&L_63), (Guid_t )L_59, (RuntimeObject *)L_62, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 20)); KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 L_64 = L_63; RuntimeObject * L_65 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 19), &L_64); NullCheck(L_54); ArrayElementTypeCheck (L_54, L_65); (L_54)->SetAt(static_cast<il2cpp_array_size_t>(L_56), (RuntimeObject *)L_65); } IL_016d: { int32_t L_66 = V_7; V_7 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_66, (int32_t)1)); } IL_0173: { int32_t L_67 = V_7; int32_t L_68 = V_5; if ((((int32_t)L_67) < ((int32_t)L_68))) { goto IL_012d; } } IL_0179: { goto IL_018c; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (ArrayTypeMismatchException_tE34C1032B089C37399200997F079C640D23D9499_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_017b; throw e; } CATCH_017b: { // begin catch(System.ArrayTypeMismatchException) ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_69 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_69, (String_t*)_stringLiteralC44D4E6C6AF3517A1CC72EDF7D1A5FFD7E3368F1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_69, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_mBBB30909825CA57C3D36FA678FA2D083DE628402_RuntimeMethod_var); } // end catch (depth: 1) IL_018c: { return; } } // System.Collections.IEnumerator System.Collections.Generic.Dictionary`2<System.Guid,System.Object>::System.Collections.IEnumerable.GetEnumerator() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_System_Collections_IEnumerable_GetEnumerator_m6E50722FDE45B4FFCD6BB2DBE6240A45DEE853C7_gshared (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B * __this, const RuntimeMethod* method) { { Enumerator_t46054A080C119F2B6A9A53E401043DAA8851E0BD L_0; memset(&L_0, 0, sizeof(L_0)); Enumerator__ctor_mECADDDDDFC317414F4C3052CAE4E84B12D2C5079((&L_0), (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)__this, (int32_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)); Enumerator_t46054A080C119F2B6A9A53E401043DAA8851E0BD L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 21), &L_1); return (RuntimeObject*)L_2; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Guid,System.Object>::System.Collections.ICollection.get_IsSynchronized() extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_ICollection_get_IsSynchronized_m308FF7D80D806F5CEF9CA1A84EA2D3D5406493C3_gshared (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Object System.Collections.Generic.Dictionary`2<System.Guid,System.Object>::System.Collections.ICollection.get_SyncRoot() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Dictionary_2_System_Collections_ICollection_get_SyncRoot_m881514043DB3869ECA9B550BA87280BF8F69D64C_gshared (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_System_Collections_ICollection_get_SyncRoot_m881514043DB3869ECA9B550BA87280BF8F69D64C_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = (RuntimeObject *)__this->get__syncRoot_9(); if (L_0) { goto IL_001a; } } { RuntimeObject ** L_1 = (RuntimeObject **)__this->get_address_of__syncRoot_9(); RuntimeObject * L_2 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(L_2, /*hidden argument*/NULL); InterlockedCompareExchangeImpl<RuntimeObject *>((RuntimeObject **)(RuntimeObject **)L_1, (RuntimeObject *)L_2, (RuntimeObject *)NULL); } IL_001a: { RuntimeObject * L_3 = (RuntimeObject *)__this->get__syncRoot_9(); return L_3; } } // System.Object System.Collections.Generic.Dictionary`2<System.Guid,System.Object>::System.Collections.IDictionary.get_Item(System.Object) extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Dictionary_2_System_Collections_IDictionary_get_Item_m3537F7658125177811E4088079B36892B10DAF92_gshared (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { int32_t V_0 = 0; { RuntimeObject * L_0 = ___key0; bool L_1 = (( bool (*) (RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 33)->methodPointer)((RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 33)); if (!L_1) { goto IL_0030; } } { RuntimeObject * L_2 = ___key0; NullCheck((Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)__this); int32_t L_3 = (( int32_t (*) (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *, Guid_t , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)__this, (Guid_t )((*(Guid_t *)((Guid_t *)UnBox(L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 27))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); V_0 = (int32_t)L_3; int32_t L_4 = V_0; if ((((int32_t)L_4) < ((int32_t)0))) { goto IL_0030; } } { EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE* L_5 = (EntryU5BU5D_tF17AD66B70C825E1B913ABAABE4FD682D05469FE*)__this->get_entries_1(); int32_t L_6 = V_0; NullCheck(L_5); RuntimeObject * L_7 = (RuntimeObject *)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_value_3(); return L_7; } IL_0030: { return NULL; } } // System.Void System.Collections.Generic.Dictionary`2<System.Guid,System.Object>::System.Collections.IDictionary.set_Item(System.Object,System.Object) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_IDictionary_set_Item_mB1BF99B4D8718624355FA63A7FB332125F7541E8_gshared (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_System_Collections_IDictionary_set_Item_mB1BF99B4D8718624355FA63A7FB332125F7541E8_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; Guid_t V_1; memset(&V_1, 0, sizeof(V_1)); Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_System_Collections_IDictionary_set_Item_mB1BF99B4D8718624355FA63A7FB332125F7541E8_RuntimeMethod_var); } IL_000e: { RuntimeObject * L_2 = ___value1; if (L_2) { goto IL_002c; } } { il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *)); RuntimeObject * L_3 = V_0; if (!L_3) { goto IL_002c; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_4, (String_t*)_stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Dictionary_2_System_Collections_IDictionary_set_Item_mB1BF99B4D8718624355FA63A7FB332125F7541E8_RuntimeMethod_var); } IL_002c: { } IL_002d: try { // begin try (depth: 1) { RuntimeObject * L_5 = ___key0; V_1 = (Guid_t )((*(Guid_t *)((Guid_t *)UnBox(L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 27))))); } IL_0034: try { // begin try (depth: 2) Guid_t L_6 = V_1; RuntimeObject * L_7 = ___value1; NullCheck((Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)__this); (( void (*) (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *, Guid_t , RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 35)->methodPointer)((Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)__this, (Guid_t )L_6, (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_7, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 17))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 35)); goto IL_0064; } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0043; throw e; } CATCH_0043: { // begin catch(System.InvalidCastException) RuntimeObject * L_8 = ___value1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_9 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 36)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_10 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_9, /*hidden argument*/NULL); String_t* L_11 = SR_Format_m2DD0EA1F52576669B34B03CDB3D441631E1CA76C((String_t*)_stringLiteralFA5354A55A2D5AE97DEF68A54DFDDBF37A452FD6, (RuntimeObject *)L_8, (RuntimeObject *)L_10, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_12, (String_t*)L_11, (String_t*)_stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, NULL, Dictionary_2_System_Collections_IDictionary_set_Item_mB1BF99B4D8718624355FA63A7FB332125F7541E8_RuntimeMethod_var); } // end catch (depth: 2) IL_0064: { goto IL_0087; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0066; throw e; } CATCH_0066: { // begin catch(System.InvalidCastException) RuntimeObject * L_13 = ___key0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 37)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_14, /*hidden argument*/NULL); String_t* L_16 = SR_Format_m2DD0EA1F52576669B34B03CDB3D441631E1CA76C((String_t*)_stringLiteralFA5354A55A2D5AE97DEF68A54DFDDBF37A452FD6, (RuntimeObject *)L_13, (RuntimeObject *)L_15, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_17 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_17, (String_t*)L_16, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, NULL, Dictionary_2_System_Collections_IDictionary_set_Item_mB1BF99B4D8718624355FA63A7FB332125F7541E8_RuntimeMethod_var); } // end catch (depth: 1) IL_0087: { return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Guid,System.Object>::IsCompatibleKey(System.Object) extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_IsCompatibleKey_m32F5939D37970DA7C3E394ACD7265F6917EE29B0_gshared (RuntimeObject * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_IsCompatibleKey_m32F5939D37970DA7C3E394ACD7265F6917EE29B0_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_IsCompatibleKey_m32F5939D37970DA7C3E394ACD7265F6917EE29B0_RuntimeMethod_var); } IL_000e: { RuntimeObject * L_2 = ___key0; return (bool)((!(((RuntimeObject*)(RuntimeObject *)((RuntimeObject *)IsInst((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 27)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0); } } // System.Collections.IDictionaryEnumerator System.Collections.Generic.Dictionary`2<System.Guid,System.Object>::System.Collections.IDictionary.GetEnumerator() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_System_Collections_IDictionary_GetEnumerator_m5E5CAC2C6897582B91BBB46FA3A62A6413B20276_gshared (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B * __this, const RuntimeMethod* method) { { Enumerator_t46054A080C119F2B6A9A53E401043DAA8851E0BD L_0; memset(&L_0, 0, sizeof(L_0)); Enumerator__ctor_mECADDDDDFC317414F4C3052CAE4E84B12D2C5079((&L_0), (Dictionary_2_t0E5C3EBD0B57B5CBF0DB91BE02D487DFC3A2331B *)__this, (int32_t)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)); Enumerator_t46054A080C119F2B6A9A53E401043DAA8851E0BD L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 21), &L_1); return (RuntimeObject*)L_2; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::.ctor() extern "C" IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m7D745ADE56151C2895459668F4A4242985E526D8_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, const RuntimeMethod* method) { { NullCheck((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this); (( void (*) (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this, (int32_t)0, (RuntimeObject*)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::.ctor(System.Int32) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m6015B3C75A1DAB939EB443D59748227888900331_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, int32_t ___capacity0, const RuntimeMethod* method) { { int32_t L_0 = ___capacity0; NullCheck((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this); (( void (*) (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this, (int32_t)L_0, (RuntimeObject*)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::.ctor(System.Collections.Generic.IEqualityComparer`1<TKey>) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2__ctor_mABA512E7E68DCFD7D29A9B17C6AEA1FD1A2E8E67_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___comparer0; NullCheck((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this); (( void (*) (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this, (int32_t)0, (RuntimeObject*)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::.ctor(System.Int32,System.Collections.Generic.IEqualityComparer`1<TKey>) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2__ctor_mFE3002204A098262A3F3F53CE6BF6C35D685D265_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, int32_t ___capacity0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2__ctor_mFE3002204A098262A3F3F53CE6BF6C35D685D265_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* G_B6_0 = NULL; Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * G_B6_1 = NULL; RuntimeObject* G_B5_0 = NULL; Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * G_B5_1 = NULL; { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); int32_t L_0 = ___capacity0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0020; } } { int32_t L_1 = ___capacity0; int32_t L_2 = L_1; RuntimeObject * L_3 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_2); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_4 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378(L_4, (String_t*)_stringLiteral7CB1F56D3FBE09E809244FC8E13671CD876E3860, (RuntimeObject *)L_3, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Dictionary_2__ctor_mFE3002204A098262A3F3F53CE6BF6C35D685D265_RuntimeMethod_var); } IL_0020: { int32_t L_5 = ___capacity0; if ((((int32_t)L_5) <= ((int32_t)0))) { goto IL_002b; } } { int32_t L_6 = ___capacity0; NullCheck((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this); (( void (*) (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this, (int32_t)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); } IL_002b: { RuntimeObject* L_7 = ___comparer1; RuntimeObject* L_8 = (RuntimeObject*)L_7; G_B5_0 = L_8; G_B5_1 = ((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)(__this)); if (L_8) { G_B6_0 = L_8; G_B6_1 = ((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)(__this)); goto IL_0036; } } { EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3 * L_9 = (( EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); G_B6_0 = ((RuntimeObject*)(L_9)); G_B6_1 = ((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)(G_B5_1)); } IL_0036: { NullCheck(G_B6_1); G_B6_1->set_comparer_6(G_B6_0); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m4AD739A32579159C9B20AC6E1E08765602F3D89A_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2__ctor_m4AD739A32579159C9B20AC6E1E08765602F3D89A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00_il2cpp_TypeInfo_var); ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * L_0 = DictionaryHashHelpers_get_SerializationInfoTable_mCF0A53E777EAFE1AA018C02529AFF6D3CDF7A05C(/*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_1 = ___info0; NullCheck((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_0); ConditionalWeakTable_2_Add_mCC3585BE91A7BDFC49EEFDE4C11173A36D1FB5FE((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_0, (RuntimeObject *)__this, (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_1, /*hidden argument*/ConditionalWeakTable_2_Add_mCC3585BE91A7BDFC49EEFDE4C11173A36D1FB5FE_RuntimeMethod_var); return; } } // System.Int32 System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::get_Count() extern "C" IL2CPP_METHOD_ATTR int32_t Dictionary_2_get_Count_m69345D9DEE55AA0CE574D19CB7C430AC638C01A9_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_count_2(); int32_t L_1 = (int32_t)__this->get_freeCount_5(); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)); } } // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::get_Keys() extern "C" IL2CPP_METHOD_ATTR KeyCollection_t959836ABE6844545BF46886E66ADE46030115A4A * Dictionary_2_get_Keys_mA4A8C65DA5C29DC0C967EDF49569871850032ABE_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, const RuntimeMethod* method) { { KeyCollection_t959836ABE6844545BF46886E66ADE46030115A4A * L_0 = (KeyCollection_t959836ABE6844545BF46886E66ADE46030115A4A *)__this->get_keys_7(); if (L_0) { goto IL_0014; } } { KeyCollection_t959836ABE6844545BF46886E66ADE46030115A4A * L_1 = (KeyCollection_t959836ABE6844545BF46886E66ADE46030115A4A *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4)); (( void (*) (KeyCollection_t959836ABE6844545BF46886E66ADE46030115A4A *, Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)(L_1, (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); __this->set_keys_7(L_1); } IL_0014: { KeyCollection_t959836ABE6844545BF46886E66ADE46030115A4A * L_2 = (KeyCollection_t959836ABE6844545BF46886E66ADE46030115A4A *)__this->get_keys_7(); return L_2; } } // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::get_Values() extern "C" IL2CPP_METHOD_ATTR ValueCollection_t0B3ED4599D881B395A256D10EF70A297C2DA00C6 * Dictionary_2_get_Values_m7BD59B2D072D34F61274999F68B46035CB047D39_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, const RuntimeMethod* method) { { ValueCollection_t0B3ED4599D881B395A256D10EF70A297C2DA00C6 * L_0 = (ValueCollection_t0B3ED4599D881B395A256D10EF70A297C2DA00C6 *)__this->get_values_8(); if (L_0) { goto IL_0014; } } { ValueCollection_t0B3ED4599D881B395A256D10EF70A297C2DA00C6 * L_1 = (ValueCollection_t0B3ED4599D881B395A256D10EF70A297C2DA00C6 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)); (( void (*) (ValueCollection_t0B3ED4599D881B395A256D10EF70A297C2DA00C6 *, Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)(L_1, (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)); __this->set_values_8(L_1); } IL_0014: { ValueCollection_t0B3ED4599D881B395A256D10EF70A297C2DA00C6 * L_2 = (ValueCollection_t0B3ED4599D881B395A256D10EF70A297C2DA00C6 *)__this->get_values_8(); return L_2; } } // TValue System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::get_Item(TKey) extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Dictionary_2_get_Item_mEFECE2769017AB70A9B1E7F5F8BBA59375620B54_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, int32_t ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_get_Item_mEFECE2769017AB70A9B1E7F5F8BBA59375620B54_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { int32_t L_0 = ___key0; NullCheck((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this, (int32_t)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_001e; } } { EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_3 = (EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285*)__this->get_entries_1(); int32_t L_4 = V_0; NullCheck(L_3); RuntimeObject * L_5 = (RuntimeObject *)((L_3)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_4)))->get_value_3(); return L_5; } IL_001e: { KeyNotFoundException_tC28F8B9E114291001A5D135723673C6F292438E2 * L_6 = (KeyNotFoundException_tC28F8B9E114291001A5D135723673C6F292438E2 *)il2cpp_codegen_object_new(KeyNotFoundException_tC28F8B9E114291001A5D135723673C6F292438E2_il2cpp_TypeInfo_var); KeyNotFoundException__ctor_mE9E1C6E6E21842095342C0A2ED65EC201FB4F3C8(L_6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, Dictionary_2_get_Item_mEFECE2769017AB70A9B1E7F5F8BBA59375620B54_RuntimeMethod_var); } } // System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::set_Item(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_mF9A6FBE4006C89D15B8C88B2CB46E9B24D18B7FC_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, int32_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { { int32_t L_0 = ___key0; RuntimeObject * L_1 = ___value1; NullCheck((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this); (( bool (*) (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *, int32_t, RuntimeObject *, uint8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this, (int32_t)L_0, (RuntimeObject *)L_1, (uint8_t)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::Add(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_Add_mF7AEA0EFA07EEBC1A4B283A26A7CB720EE7A4C20_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, int32_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { { int32_t L_0 = ___key0; RuntimeObject * L_1 = ___value1; NullCheck((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this); (( bool (*) (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *, int32_t, RuntimeObject *, uint8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this, (int32_t)L_0, (RuntimeObject *)L_1, (uint8_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Add(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Add_m90A7774608A0143223BF8E75A2BC9C190540282D_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 ___keyValuePair0, const RuntimeMethod* method) { { int32_t L_0 = KeyValuePair_2_get_Key_m89B687D373FBE3D230647CA0C536235E12AD829C((KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 *)(KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); RuntimeObject * L_1 = KeyValuePair_2_get_Value_mAD6801F3BC9BA1E99D4E0F72B2B420182D0494FC((KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 *)(KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); NullCheck((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this); (( void (*) (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *, int32_t, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this, (int32_t)L_0, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Contains(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Contains_m463D09C155CA3C6FBB24B3122539946FD84029A7_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 ___keyValuePair0, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0 = KeyValuePair_2_get_Key_m89B687D373FBE3D230647CA0C536235E12AD829C((KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 *)(KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); NullCheck((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this, (int32_t)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0038; } } { EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * L_3 = (( EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)); EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_4 = (EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285*)__this->get_entries_1(); int32_t L_5 = V_0; NullCheck(L_4); RuntimeObject * L_6 = (RuntimeObject *)((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_value_3(); RuntimeObject * L_7 = KeyValuePair_2_get_Value_mAD6801F3BC9BA1E99D4E0F72B2B420182D0494FC((KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 *)(KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); NullCheck((EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA *)L_3); bool L_8 = VirtFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Object>::Equals(T,T) */, (EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA *)L_3, (RuntimeObject *)L_6, (RuntimeObject *)L_7); if (!L_8) { goto IL_0038; } } { return (bool)1; } IL_0038: { return (bool)0; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Remove(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Remove_mCE43A8A348CD4816E98149DAD825F8C72552E339_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 ___keyValuePair0, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0 = KeyValuePair_2_get_Key_m89B687D373FBE3D230647CA0C536235E12AD829C((KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 *)(KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); NullCheck((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this, (int32_t)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0046; } } { EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * L_3 = (( EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)); EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_4 = (EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285*)__this->get_entries_1(); int32_t L_5 = V_0; NullCheck(L_4); RuntimeObject * L_6 = (RuntimeObject *)((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_value_3(); RuntimeObject * L_7 = KeyValuePair_2_get_Value_mAD6801F3BC9BA1E99D4E0F72B2B420182D0494FC((KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 *)(KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); NullCheck((EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA *)L_3); bool L_8 = VirtFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Object>::Equals(T,T) */, (EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA *)L_3, (RuntimeObject *)L_6, (RuntimeObject *)L_7); if (!L_8) { goto IL_0046; } } { int32_t L_9 = KeyValuePair_2_get_Key_m89B687D373FBE3D230647CA0C536235E12AD829C((KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 *)(KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); NullCheck((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this); (( bool (*) (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16)->methodPointer)((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this, (int32_t)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16)); return (bool)1; } IL_0046: { return (bool)0; } } // System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::Clear() extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_Clear_m8B31D0EA3C1FCE4C6977A76829773DA0D127E217_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0 = (int32_t)__this->get_count_2(); if ((((int32_t)L_0) <= ((int32_t)0))) { goto IL_005a; } } { V_0 = (int32_t)0; goto IL_001a; } IL_000d: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_1 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_2 = V_0; NullCheck(L_1); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(L_2), (int32_t)(-1)); int32_t L_3 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)); } IL_001a: { int32_t L_4 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_5 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_5); if ((((int32_t)L_4) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_5)->max_length))))))) { goto IL_000d; } } { EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_6 = (EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285*)__this->get_entries_1(); int32_t L_7 = (int32_t)__this->get_count_2(); Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_6, (int32_t)0, (int32_t)L_7, /*hidden argument*/NULL); __this->set_freeList_4((-1)); __this->set_count_2(0); __this->set_freeCount_5(0); int32_t L_8 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1))); } IL_005a: { return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::ContainsKey(TKey) extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_ContainsKey_m379C08BE13D2E0AD1F9102B6E280A32F0C9C7015_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, int32_t ___key0, const RuntimeMethod* method) { { int32_t L_0 = ___key0; NullCheck((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this, (int32_t)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); return (bool)((((int32_t)((((int32_t)L_1) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::ContainsValue(TValue) extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_ContainsValue_mD5C93F26C5E0E95F4E3227A9B47E2FFA778DB795_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { int32_t V_0 = 0; EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * V_1 = NULL; int32_t V_2 = 0; { RuntimeObject * L_0 = ___value0; if (L_0) { goto IL_0049; } } { V_0 = (int32_t)0; goto IL_003e; } IL_000c: { EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_1 = (EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285*)__this->get_entries_1(); int32_t L_2 = V_0; NullCheck(L_1); int32_t L_3 = (int32_t)((L_1)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_2)))->get_hashCode_0(); if ((((int32_t)L_3) < ((int32_t)0))) { goto IL_003a; } } { EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_4 = (EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285*)__this->get_entries_1(); int32_t L_5 = V_0; NullCheck(L_4); RuntimeObject * L_6 = (RuntimeObject *)((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_value_3(); if (L_6) { goto IL_003a; } } { return (bool)1; } IL_003a: { int32_t L_7 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1)); } IL_003e: { int32_t L_8 = V_0; int32_t L_9 = (int32_t)__this->get_count_2(); if ((((int32_t)L_8) < ((int32_t)L_9))) { goto IL_000c; } } { goto IL_0090; } IL_0049: { EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * L_10 = (( EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)); V_1 = (EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA *)L_10; V_2 = (int32_t)0; goto IL_0087; } IL_0053: { EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_11 = (EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285*)__this->get_entries_1(); int32_t L_12 = V_2; NullCheck(L_11); int32_t L_13 = (int32_t)((L_11)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_12)))->get_hashCode_0(); if ((((int32_t)L_13) < ((int32_t)0))) { goto IL_0083; } } { EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * L_14 = V_1; EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_15 = (EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285*)__this->get_entries_1(); int32_t L_16 = V_2; NullCheck(L_15); RuntimeObject * L_17 = (RuntimeObject *)((L_15)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_16)))->get_value_3(); RuntimeObject * L_18 = ___value0; NullCheck((EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA *)L_14); bool L_19 = VirtFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Object>::Equals(T,T) */, (EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA *)L_14, (RuntimeObject *)L_17, (RuntimeObject *)L_18); if (!L_19) { goto IL_0083; } } { return (bool)1; } IL_0083: { int32_t L_20 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1)); } IL_0087: { int32_t L_21 = V_2; int32_t L_22 = (int32_t)__this->get_count_2(); if ((((int32_t)L_21) < ((int32_t)L_22))) { goto IL_0053; } } IL_0090: { return (bool)0; } } // System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_CopyTo_m2CDE708B5B35D5E774663FE2CD600E6C582DF47B_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, KeyValuePair_2U5BU5D_t51ECDC3588B5BA2DE76DE4B25B62ACADF928345B* ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_CopyTo_m2CDE708B5B35D5E774663FE2CD600E6C582DF47B_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* V_1 = NULL; int32_t V_2 = 0; { KeyValuePair_2U5BU5D_t51ECDC3588B5BA2DE76DE4B25B62ACADF928345B* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_CopyTo_m2CDE708B5B35D5E774663FE2CD600E6C582DF47B_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___index1; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_3 = ___index1; KeyValuePair_2U5BU5D_t51ECDC3588B5BA2DE76DE4B25B62ACADF928345B* L_4 = ___array0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_4)->max_length))))))) { goto IL_002e; } } IL_0018: { int32_t L_5 = ___index1; int32_t L_6 = L_5; RuntimeObject * L_7 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_6); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_8 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378(L_8, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, (RuntimeObject *)L_7, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, Dictionary_2_CopyTo_m2CDE708B5B35D5E774663FE2CD600E6C582DF47B_RuntimeMethod_var); } IL_002e: { KeyValuePair_2U5BU5D_t51ECDC3588B5BA2DE76DE4B25B62ACADF928345B* L_9 = ___array0; NullCheck(L_9); int32_t L_10 = ___index1; NullCheck((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this); int32_t L_11 = (( int32_t (*) (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)->methodPointer)((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_9)->max_length)))), (int32_t)L_10))) >= ((int32_t)L_11))) { goto IL_0046; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_12, (String_t*)_stringLiteralBC80A496F1C479B70F6EE2BF2F0C3C05463301B8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, NULL, Dictionary_2_CopyTo_m2CDE708B5B35D5E774663FE2CD600E6C582DF47B_RuntimeMethod_var); } IL_0046: { int32_t L_13 = (int32_t)__this->get_count_2(); V_0 = (int32_t)L_13; EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_14 = (EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285*)__this->get_entries_1(); V_1 = (EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285*)L_14; V_2 = (int32_t)0; goto IL_0094; } IL_0058: { EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_15 = V_1; int32_t L_16 = V_2; NullCheck(L_15); int32_t L_17 = (int32_t)((L_15)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_16)))->get_hashCode_0(); if ((((int32_t)L_17) < ((int32_t)0))) { goto IL_0090; } } { KeyValuePair_2U5BU5D_t51ECDC3588B5BA2DE76DE4B25B62ACADF928345B* L_18 = ___array0; int32_t L_19 = ___index1; int32_t L_20 = (int32_t)L_19; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1)); EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_21 = V_1; int32_t L_22 = V_2; NullCheck(L_21); int32_t L_23 = (int32_t)((L_21)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_22)))->get_key_2(); EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_24 = V_1; int32_t L_25 = V_2; NullCheck(L_24); RuntimeObject * L_26 = (RuntimeObject *)((L_24)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_25)))->get_value_3(); KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 L_27; memset(&L_27, 0, sizeof(L_27)); KeyValuePair_2__ctor_m0E2B8624D7996D6A5BA2A81383EE983F4A9DC078((&L_27), (int32_t)L_23, (RuntimeObject *)L_26, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 20)); NullCheck(L_18); (L_18)->SetAt(static_cast<il2cpp_array_size_t>(L_20), (KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 )L_27); } IL_0090: { int32_t L_28 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_28, (int32_t)1)); } IL_0094: { int32_t L_29 = V_2; int32_t L_30 = V_0; if ((((int32_t)L_29) < ((int32_t)L_30))) { goto IL_0058; } } { return; } } // System.Collections.Generic.Dictionary`2/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::GetEnumerator() extern "C" IL2CPP_METHOD_ATTR Enumerator_t72A8231827DB93FC8B25F08FF066377F7B773DA1 Dictionary_2_GetEnumerator_mE47C13FC1B2BACBEE6F795B0E40E6406CAC55D4B_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, const RuntimeMethod* method) { { Enumerator_t72A8231827DB93FC8B25F08FF066377F7B773DA1 L_0; memset(&L_0, 0, sizeof(L_0)); Enumerator__ctor_mB688A5999DC16A8DF99AA954CB6DD9DD3246942E((&L_0), (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this, (int32_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)); return L_0; } } // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<TKey,TValue>> System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>.GetEnumerator() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_System_Collections_Generic_IEnumerableU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_GetEnumerator_m0E6BD9FD770A65999E35EC13BAEA3C15F5C26648_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, const RuntimeMethod* method) { { Enumerator_t72A8231827DB93FC8B25F08FF066377F7B773DA1 L_0; memset(&L_0, 0, sizeof(L_0)); Enumerator__ctor_mB688A5999DC16A8DF99AA954CB6DD9DD3246942E((&L_0), (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this, (int32_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)); Enumerator_t72A8231827DB93FC8B25F08FF066377F7B773DA1 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 21), &L_1); return (RuntimeObject*)L_2; } } // System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_GetObjectData_m44AE657481D0D1A69F3E8367E65CF9909A983205_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_GetObjectData_m44AE657481D0D1A69F3E8367E65CF9909A983205_MetadataUsageId); s_Il2CppMethodInitialized = true; } KeyValuePair_2U5BU5D_t51ECDC3588B5BA2DE76DE4B25B62ACADF928345B* V_0 = NULL; String_t* G_B4_0 = NULL; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * G_B4_1 = NULL; String_t* G_B3_0 = NULL; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * G_B3_1 = NULL; int32_t G_B5_0 = 0; String_t* G_B5_1 = NULL; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * G_B5_2 = NULL; { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_GetObjectData_m44AE657481D0D1A69F3E8367E65CF9909A983205_RuntimeMethod_var); } IL_000e: { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0; int32_t L_3 = (int32_t)__this->get_version_3(); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_2); SerializationInfo_AddValue_m7C73917D9DC4B8FE4AFEF4BA8EBEDAB046A8D0BD((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_2, (String_t*)_stringLiteral2DA600BF9404843107A9531694F654E5662959E0, (int32_t)L_3, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_4 = ___info0; RuntimeObject* L_5 = (RuntimeObject*)__this->get_comparer_6(); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 23)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_6, /*hidden argument*/NULL); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_4); SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_4, (String_t*)_stringLiteral8FC94E4F5B71CECE2565D72417AACC804EE27A0D, (RuntimeObject *)L_5, (Type_t *)L_7, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_8 = ___info0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_9 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); G_B3_0 = _stringLiteral35E05A2D28CF03B64D64C58D0C7ED03AD5A3AF60; G_B3_1 = L_8; if (!L_9) { G_B4_0 = _stringLiteral35E05A2D28CF03B64D64C58D0C7ED03AD5A3AF60; G_B4_1 = L_8; goto IL_0052; } } { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_10 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_10); G_B5_0 = (((int32_t)((int32_t)(((RuntimeArray *)L_10)->max_length)))); G_B5_1 = G_B3_0; G_B5_2 = G_B3_1; goto IL_0053; } IL_0052: { G_B5_0 = 0; G_B5_1 = G_B4_0; G_B5_2 = G_B4_1; } IL_0053: { NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)G_B5_2); SerializationInfo_AddValue_m7C73917D9DC4B8FE4AFEF4BA8EBEDAB046A8D0BD((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)G_B5_2, (String_t*)G_B5_1, (int32_t)G_B5_0, /*hidden argument*/NULL); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_11 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); if (!L_11) { goto IL_008a; } } { NullCheck((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this); int32_t L_12 = (( int32_t (*) (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)->methodPointer)((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)); KeyValuePair_2U5BU5D_t51ECDC3588B5BA2DE76DE4B25B62ACADF928345B* L_13 = (KeyValuePair_2U5BU5D_t51ECDC3588B5BA2DE76DE4B25B62ACADF928345B*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 24), (uint32_t)L_12); V_0 = (KeyValuePair_2U5BU5D_t51ECDC3588B5BA2DE76DE4B25B62ACADF928345B*)L_13; KeyValuePair_2U5BU5D_t51ECDC3588B5BA2DE76DE4B25B62ACADF928345B* L_14 = V_0; NullCheck((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this); (( void (*) (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *, KeyValuePair_2U5BU5D_t51ECDC3588B5BA2DE76DE4B25B62ACADF928345B*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 25)->methodPointer)((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this, (KeyValuePair_2U5BU5D_t51ECDC3588B5BA2DE76DE4B25B62ACADF928345B*)L_14, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 25)); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_15 = ___info0; KeyValuePair_2U5BU5D_t51ECDC3588B5BA2DE76DE4B25B62ACADF928345B* L_16 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_17 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 26)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_18 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_17, /*hidden argument*/NULL); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_15); SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_15, (String_t*)_stringLiteral1D89254A2BC78C1FF41C2F6767A0E00EE126B3BF, (RuntimeObject *)(RuntimeObject *)L_16, (Type_t *)L_18, /*hidden argument*/NULL); } IL_008a: { return; } } // System.Int32 System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::FindEntry(TKey) extern "C" IL2CPP_METHOD_ATTR int32_t Dictionary_2_FindEntry_mE8224B12F71587C5F08513E964E4CF87D2379191_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, int32_t ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_FindEntry_mE8224B12F71587C5F08513E964E4CF87D2379191_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { goto IL_0013; } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_FindEntry_mE8224B12F71587C5F08513E964E4CF87D2379191_RuntimeMethod_var); } IL_0013: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); if (!L_2) { goto IL_008d; } } { RuntimeObject* L_3 = (RuntimeObject*)__this->get_comparer_6(); int32_t L_4 = ___key0; NullCheck((RuntimeObject*)L_3); int32_t L_5 = InterfaceFuncInvoker1< int32_t, int32_t >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Int32>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28), (RuntimeObject*)L_3, (int32_t)L_4); V_0 = (int32_t)((int32_t)((int32_t)L_5&(int32_t)((int32_t)2147483647LL))); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_6 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_7 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_8); NullCheck(L_6); int32_t L_9 = ((int32_t)((int32_t)L_7%(int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length)))))); int32_t L_10 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_9)); V_1 = (int32_t)L_10; goto IL_0089; } IL_0042: { EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_11 = (EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285*)__this->get_entries_1(); int32_t L_12 = V_1; NullCheck(L_11); int32_t L_13 = (int32_t)((L_11)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_12)))->get_hashCode_0(); int32_t L_14 = V_0; if ((!(((uint32_t)L_13) == ((uint32_t)L_14)))) { goto IL_0077; } } { RuntimeObject* L_15 = (RuntimeObject*)__this->get_comparer_6(); EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_16 = (EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285*)__this->get_entries_1(); int32_t L_17 = V_1; NullCheck(L_16); int32_t L_18 = (int32_t)((L_16)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_17)))->get_key_2(); int32_t L_19 = ___key0; NullCheck((RuntimeObject*)L_15); bool L_20 = InterfaceFuncInvoker2< bool, int32_t, int32_t >::Invoke(0 /* System.Boolean System.Collections.Generic.IEqualityComparer`1<System.Int32>::Equals(T,T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28), (RuntimeObject*)L_15, (int32_t)L_18, (int32_t)L_19); if (!L_20) { goto IL_0077; } } { int32_t L_21 = V_1; return L_21; } IL_0077: { EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_22 = (EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285*)__this->get_entries_1(); int32_t L_23 = V_1; NullCheck(L_22); int32_t L_24 = (int32_t)((L_22)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_23)))->get_next_1(); V_1 = (int32_t)L_24; } IL_0089: { int32_t L_25 = V_1; if ((((int32_t)L_25) >= ((int32_t)0))) { goto IL_0042; } } IL_008d: { return (-1); } } // System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::Initialize(System.Int32) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_Initialize_mC4ADA75F97A4E78C46EFD112439AD7DD099459F9_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, int32_t ___capacity0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Initialize_mC4ADA75F97A4E78C46EFD112439AD7DD099459F9_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = ___capacity0; IL2CPP_RUNTIME_CLASS_INIT(HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_il2cpp_TypeInfo_var); int32_t L_1 = HashHelpers_GetPrime_m743D7006C2BCBADC1DC8CACF7C5B78C9F6B38297((int32_t)L_0, /*hidden argument*/NULL); V_0 = (int32_t)L_1; int32_t L_2 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_3 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)L_2); __this->set_buckets_0(L_3); V_1 = (int32_t)0; goto IL_0024; } IL_0017: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_4 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_5 = V_1; NullCheck(L_4); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (int32_t)(-1)); int32_t L_6 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1)); } IL_0024: { int32_t L_7 = V_1; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_8); if ((((int32_t)L_7) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length))))))) { goto IL_0017; } } { int32_t L_9 = V_0; EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_10 = (EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 29), (uint32_t)L_9); __this->set_entries_1(L_10); __this->set_freeList_4((-1)); return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::TryInsert(TKey,TValue,System.Collections.Generic.InsertionBehavior) extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_TryInsert_mF336FAD35B7D620B7572CFB5E245AD581CBE870A_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, int32_t ___key0, RuntimeObject * ___value1, uint8_t ___behavior2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_TryInsert_mF336FAD35B7D620B7572CFB5E245AD581CBE870A_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; { goto IL_0013; } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_TryInsert_mF336FAD35B7D620B7572CFB5E245AD581CBE870A_RuntimeMethod_var); } IL_0013: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); if (L_2) { goto IL_0022; } } { NullCheck((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this); (( void (*) (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); } IL_0022: { RuntimeObject* L_3 = (RuntimeObject*)__this->get_comparer_6(); int32_t L_4 = ___key0; NullCheck((RuntimeObject*)L_3); int32_t L_5 = InterfaceFuncInvoker1< int32_t, int32_t >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Int32>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28), (RuntimeObject*)L_3, (int32_t)L_4); V_0 = (int32_t)((int32_t)((int32_t)L_5&(int32_t)((int32_t)2147483647LL))); int32_t L_6 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_7 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_7); V_1 = (int32_t)((int32_t)((int32_t)L_6%(int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_7)->max_length)))))); V_2 = (int32_t)0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_9 = V_1; NullCheck(L_8); int32_t L_10 = L_9; int32_t L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); V_4 = (int32_t)L_11; goto IL_00e1; } IL_0051: { EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_12 = (EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285*)__this->get_entries_1(); int32_t L_13 = V_4; NullCheck(L_12); int32_t L_14 = (int32_t)((L_12)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_13)))->get_hashCode_0(); int32_t L_15 = V_0; if ((!(((uint32_t)L_14) == ((uint32_t)L_15)))) { goto IL_00c9; } } { RuntimeObject* L_16 = (RuntimeObject*)__this->get_comparer_6(); EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_17 = (EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285*)__this->get_entries_1(); int32_t L_18 = V_4; NullCheck(L_17); int32_t L_19 = (int32_t)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18)))->get_key_2(); int32_t L_20 = ___key0; NullCheck((RuntimeObject*)L_16); bool L_21 = InterfaceFuncInvoker2< bool, int32_t, int32_t >::Invoke(0 /* System.Boolean System.Collections.Generic.IEqualityComparer`1<System.Int32>::Equals(T,T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28), (RuntimeObject*)L_16, (int32_t)L_19, (int32_t)L_20); if (!L_21) { goto IL_00c9; } } { uint8_t L_22 = ___behavior2; if ((!(((uint32_t)L_22) == ((uint32_t)1)))) { goto IL_00ad; } } { EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_23 = (EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285*)__this->get_entries_1(); int32_t L_24 = V_4; NullCheck(L_23); RuntimeObject * L_25 = ___value1; ((L_23)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_24)))->set_value_3(L_25); int32_t L_26 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1))); return (bool)1; } IL_00ad: { uint8_t L_27 = ___behavior2; if ((!(((uint32_t)L_27) == ((uint32_t)2)))) { goto IL_00c7; } } { int32_t L_28 = ___key0; int32_t L_29 = L_28; RuntimeObject * L_30 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 27), &L_29); String_t* L_31 = SR_Format_mCDBB594267CC224AB2A69540BBA598151F0642C7((String_t*)_stringLiteral6FD577FD3A1BDC4DA28CD51D7A55EB397CEA3926, (RuntimeObject *)L_30, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_32 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_32, (String_t*)L_31, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_32, NULL, Dictionary_2_TryInsert_mF336FAD35B7D620B7572CFB5E245AD581CBE870A_RuntimeMethod_var); } IL_00c7: { return (bool)0; } IL_00c9: { int32_t L_33 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)1)); EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_34 = (EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285*)__this->get_entries_1(); int32_t L_35 = V_4; NullCheck(L_34); int32_t L_36 = (int32_t)((L_34)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_35)))->get_next_1(); V_4 = (int32_t)L_36; } IL_00e1: { int32_t L_37 = V_4; if ((((int32_t)L_37) >= ((int32_t)0))) { goto IL_0051; } } { int32_t L_38 = (int32_t)__this->get_freeCount_5(); if ((((int32_t)L_38) <= ((int32_t)0))) { goto IL_0120; } } { int32_t L_39 = (int32_t)__this->get_freeList_4(); V_3 = (int32_t)L_39; EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_40 = (EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285*)__this->get_entries_1(); int32_t L_41 = V_3; NullCheck(L_40); int32_t L_42 = (int32_t)((L_40)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_41)))->get_next_1(); __this->set_freeList_4(L_42); int32_t L_43 = (int32_t)__this->get_freeCount_5(); __this->set_freeCount_5(((int32_t)il2cpp_codegen_subtract((int32_t)L_43, (int32_t)1))); goto IL_0156; } IL_0120: { int32_t L_44 = (int32_t)__this->get_count_2(); EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_45 = (EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285*)__this->get_entries_1(); NullCheck(L_45); if ((!(((uint32_t)L_44) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_45)->max_length)))))))) { goto IL_0141; } } { NullCheck((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this); (( void (*) (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 30)->methodPointer)((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 30)); int32_t L_46 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_47 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_47); V_1 = (int32_t)((int32_t)((int32_t)L_46%(int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_47)->max_length)))))); } IL_0141: { int32_t L_48 = (int32_t)__this->get_count_2(); V_3 = (int32_t)L_48; int32_t L_49 = (int32_t)__this->get_count_2(); __this->set_count_2(((int32_t)il2cpp_codegen_add((int32_t)L_49, (int32_t)1))); } IL_0156: { EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_50 = (EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285*)__this->get_entries_1(); int32_t L_51 = V_3; NullCheck(L_50); int32_t L_52 = V_0; ((L_50)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_51)))->set_hashCode_0(L_52); EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_53 = (EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285*)__this->get_entries_1(); int32_t L_54 = V_3; NullCheck(L_53); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_55 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_56 = V_1; NullCheck(L_55); int32_t L_57 = L_56; int32_t L_58 = (L_55)->GetAt(static_cast<il2cpp_array_size_t>(L_57)); ((L_53)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_54)))->set_next_1(L_58); EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_59 = (EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285*)__this->get_entries_1(); int32_t L_60 = V_3; NullCheck(L_59); int32_t L_61 = ___key0; ((L_59)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_60)))->set_key_2(L_61); EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_62 = (EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285*)__this->get_entries_1(); int32_t L_63 = V_3; NullCheck(L_62); RuntimeObject * L_64 = ___value1; ((L_62)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_63)))->set_value_3(L_64); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_65 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_66 = V_1; int32_t L_67 = V_3; NullCheck(L_65); (L_65)->SetAt(static_cast<il2cpp_array_size_t>(L_66), (int32_t)L_67); int32_t L_68 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_68, (int32_t)1))); int32_t L_69 = V_2; if ((((int32_t)L_69) <= ((int32_t)((int32_t)100)))) { goto IL_01ed; } } { RuntimeObject* L_70 = (RuntimeObject*)__this->get_comparer_6(); if (!((NonRandomizedStringEqualityComparer_t92C20503D9C5060A557792ABCCC06EF2DD77E5D9 *)IsInst((RuntimeObject*)L_70, NonRandomizedStringEqualityComparer_t92C20503D9C5060A557792ABCCC06EF2DD77E5D9_il2cpp_TypeInfo_var))) { goto IL_01ed; } } { EqualityComparer_1_tBEFFC6F649A17852373A084880D57CB299084137 * L_71 = EqualityComparer_1_get_Default_m85F378D7298050D5DF422363D5EB30A218B769B7(/*hidden argument*/EqualityComparer_1_get_Default_m85F378D7298050D5DF422363D5EB30A218B769B7_RuntimeMethod_var); __this->set_comparer_6(((RuntimeObject*)Castclass((RuntimeObject*)L_71, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28)))); EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_72 = (EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285*)__this->get_entries_1(); NullCheck(L_72); NullCheck((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this); (( void (*) (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *, int32_t, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)->methodPointer)((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this, (int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_72)->max_length)))), (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)); } IL_01ed: { return (bool)1; } } // System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::OnDeserialization(System.Object) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_OnDeserialization_m3165FF512550B1F1E5D865998916124333AA4FF4_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, RuntimeObject * ___sender0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_OnDeserialization_m3165FF512550B1F1E5D865998916124333AA4FF4_MetadataUsageId); s_Il2CppMethodInitialized = true; } SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; KeyValuePair_2U5BU5D_t51ECDC3588B5BA2DE76DE4B25B62ACADF928345B* V_3 = NULL; int32_t V_4 = 0; int32_t V_5 = 0; { IL2CPP_RUNTIME_CLASS_INIT(DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00_il2cpp_TypeInfo_var); ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * L_0 = DictionaryHashHelpers_get_SerializationInfoTable_mCF0A53E777EAFE1AA018C02529AFF6D3CDF7A05C(/*hidden argument*/NULL); NullCheck((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_0); ConditionalWeakTable_2_TryGetValue_mDFCB6C303807E3F8998D196F4573870680E81F8B((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_0, (RuntimeObject *)__this, (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 **)(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 **)(&V_0), /*hidden argument*/ConditionalWeakTable_2_TryGetValue_mDFCB6C303807E3F8998D196F4573870680E81F8B_RuntimeMethod_var); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_1 = V_0; if (L_1) { goto IL_0012; } } { return; } IL_0012: { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = V_0; NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_2); int32_t L_3 = SerializationInfo_GetInt32_mB47BD46A0BDBBAF5B47BB62E6EFF8E092E3F3656((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_2, (String_t*)_stringLiteral2DA600BF9404843107A9531694F654E5662959E0, /*hidden argument*/NULL); V_1 = (int32_t)L_3; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_4 = V_0; NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_4); int32_t L_5 = SerializationInfo_GetInt32_mB47BD46A0BDBBAF5B47BB62E6EFF8E092E3F3656((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_4, (String_t*)_stringLiteral35E05A2D28CF03B64D64C58D0C7ED03AD5A3AF60, /*hidden argument*/NULL); V_2 = (int32_t)L_5; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_6 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_7 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 23)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_8 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_7, /*hidden argument*/NULL); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_6); RuntimeObject * L_9 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_6, (String_t*)_stringLiteral8FC94E4F5B71CECE2565D72417AACC804EE27A0D, (Type_t *)L_8, /*hidden argument*/NULL); __this->set_comparer_6(((RuntimeObject*)Castclass((RuntimeObject*)L_9, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28)))); int32_t L_10 = V_2; if (!L_10) { goto IL_010c; } } { int32_t L_11 = V_2; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_12 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)L_11); __this->set_buckets_0(L_12); V_4 = (int32_t)0; goto IL_0071; } IL_0061: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_13 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_14 = V_4; NullCheck(L_13); (L_13)->SetAt(static_cast<il2cpp_array_size_t>(L_14), (int32_t)(-1)); int32_t L_15 = V_4; V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)); } IL_0071: { int32_t L_16 = V_4; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_17 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_17); if ((((int32_t)L_16) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_17)->max_length))))))) { goto IL_0061; } } { int32_t L_18 = V_2; EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_19 = (EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 29), (uint32_t)L_18); __this->set_entries_1(L_19); __this->set_freeList_4((-1)); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_20 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_21 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 26)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_22 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_21, /*hidden argument*/NULL); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_20); RuntimeObject * L_23 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_20, (String_t*)_stringLiteral1D89254A2BC78C1FF41C2F6767A0E00EE126B3BF, (Type_t *)L_22, /*hidden argument*/NULL); V_3 = (KeyValuePair_2U5BU5D_t51ECDC3588B5BA2DE76DE4B25B62ACADF928345B*)((KeyValuePair_2U5BU5D_t51ECDC3588B5BA2DE76DE4B25B62ACADF928345B*)Castclass((RuntimeObject*)L_23, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 32))); KeyValuePair_2U5BU5D_t51ECDC3588B5BA2DE76DE4B25B62ACADF928345B* L_24 = V_3; if (L_24) { goto IL_00b9; } } { SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 * L_25 = (SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 *)il2cpp_codegen_object_new(SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_il2cpp_TypeInfo_var); SerializationException__ctor_m88AAD9671030A8A96AA87CB95701938FBD8F16E1(L_25, (String_t*)_stringLiteral1EB7E67EA75FFC3FCB05A9685FA4F1578DCACCF6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_25, NULL, Dictionary_2_OnDeserialization_m3165FF512550B1F1E5D865998916124333AA4FF4_RuntimeMethod_var); } IL_00b9: { V_5 = (int32_t)0; goto IL_0103; } IL_00be: { KeyValuePair_2U5BU5D_t51ECDC3588B5BA2DE76DE4B25B62ACADF928345B* L_26 = V_3; int32_t L_27 = V_5; NullCheck(L_26); int32_t L_28 = KeyValuePair_2_get_Key_m89B687D373FBE3D230647CA0C536235E12AD829C((KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 *)(KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 *)((L_26)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_27))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); goto IL_00dd; } { SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 * L_29 = (SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 *)il2cpp_codegen_object_new(SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_il2cpp_TypeInfo_var); SerializationException__ctor_m88AAD9671030A8A96AA87CB95701938FBD8F16E1(L_29, (String_t*)_stringLiteralD6D1BC79DD62E9F1FB9A49A8F76F4BA8AB71AECD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_29, NULL, Dictionary_2_OnDeserialization_m3165FF512550B1F1E5D865998916124333AA4FF4_RuntimeMethod_var); } IL_00dd: { KeyValuePair_2U5BU5D_t51ECDC3588B5BA2DE76DE4B25B62ACADF928345B* L_30 = V_3; int32_t L_31 = V_5; NullCheck(L_30); int32_t L_32 = KeyValuePair_2_get_Key_m89B687D373FBE3D230647CA0C536235E12AD829C((KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 *)(KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 *)((L_30)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_31))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); KeyValuePair_2U5BU5D_t51ECDC3588B5BA2DE76DE4B25B62ACADF928345B* L_33 = V_3; int32_t L_34 = V_5; NullCheck(L_33); RuntimeObject * L_35 = KeyValuePair_2_get_Value_mAD6801F3BC9BA1E99D4E0F72B2B420182D0494FC((KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 *)(KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 *)((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); NullCheck((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this); (( void (*) (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *, int32_t, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this, (int32_t)L_32, (RuntimeObject *)L_35, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); int32_t L_36 = V_5; V_5 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_36, (int32_t)1)); } IL_0103: { int32_t L_37 = V_5; KeyValuePair_2U5BU5D_t51ECDC3588B5BA2DE76DE4B25B62ACADF928345B* L_38 = V_3; NullCheck(L_38); if ((((int32_t)L_37) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_38)->max_length))))))) { goto IL_00be; } } { goto IL_0113; } IL_010c: { __this->set_buckets_0((Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)NULL); } IL_0113: { int32_t L_39 = V_1; __this->set_version_3(L_39); IL2CPP_RUNTIME_CLASS_INIT(DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00_il2cpp_TypeInfo_var); ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * L_40 = DictionaryHashHelpers_get_SerializationInfoTable_mCF0A53E777EAFE1AA018C02529AFF6D3CDF7A05C(/*hidden argument*/NULL); NullCheck((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_40); ConditionalWeakTable_2_Remove_mD69606977A8C793DEA91E373F7D886E4865D7FBD((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_40, (RuntimeObject *)__this, /*hidden argument*/ConditionalWeakTable_2_Remove_mD69606977A8C793DEA91E373F7D886E4865D7FBD_RuntimeMethod_var); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::Resize() extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_Resize_mF0589F04C14CAE760094D83B488011341DE1D7DD_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Resize_mF0589F04C14CAE760094D83B488011341DE1D7DD_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_count_2(); IL2CPP_RUNTIME_CLASS_INIT(HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_il2cpp_TypeInfo_var); int32_t L_1 = HashHelpers_ExpandPrime_m4245F4C95074EAA8F949FB3B734F611A533A6A0D((int32_t)L_0, /*hidden argument*/NULL); NullCheck((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this); (( void (*) (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *, int32_t, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)->methodPointer)((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this, (int32_t)L_1, (bool)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::Resize(System.Int32,System.Boolean) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_Resize_m7D5EE03029A4CE7B8D24AE129CD87E471E429355_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, int32_t ___newSize0, bool ___forceNewHashCodes1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Resize_m7D5EE03029A4CE7B8D24AE129CD87E471E429355_MetadataUsageId); s_Il2CppMethodInitialized = true; } Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* V_0 = NULL; EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* V_1 = NULL; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; int32_t V_5 = 0; { int32_t L_0 = ___newSize0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_1 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)L_0); V_0 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)L_1; V_2 = (int32_t)0; goto IL_0013; } IL_000b: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = V_0; int32_t L_3 = V_2; NullCheck(L_2); (L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (int32_t)(-1)); int32_t L_4 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)); } IL_0013: { int32_t L_5 = V_2; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_6 = V_0; NullCheck(L_6); if ((((int32_t)L_5) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_6)->max_length))))))) { goto IL_000b; } } { int32_t L_7 = ___newSize0; EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_8 = (EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 29), (uint32_t)L_7); V_1 = (EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285*)L_8; EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_9 = (EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285*)__this->get_entries_1(); EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_10 = V_1; int32_t L_11 = (int32_t)__this->get_count_2(); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_9, (int32_t)0, (RuntimeArray *)(RuntimeArray *)L_10, (int32_t)0, (int32_t)L_11, /*hidden argument*/NULL); bool L_12 = ___forceNewHashCodes1; if (!L_12) { goto IL_0080; } } { V_3 = (int32_t)0; goto IL_0077; } IL_003b: { EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_13 = V_1; int32_t L_14 = V_3; NullCheck(L_13); int32_t L_15 = (int32_t)((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_hashCode_0(); if ((((int32_t)L_15) == ((int32_t)(-1)))) { goto IL_0073; } } { EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_16 = V_1; int32_t L_17 = V_3; NullCheck(L_16); RuntimeObject* L_18 = (RuntimeObject*)__this->get_comparer_6(); EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_19 = V_1; int32_t L_20 = V_3; NullCheck(L_19); int32_t L_21 = (int32_t)((L_19)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_20)))->get_key_2(); NullCheck((RuntimeObject*)L_18); int32_t L_22 = InterfaceFuncInvoker1< int32_t, int32_t >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Int32>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28), (RuntimeObject*)L_18, (int32_t)L_21); ((L_16)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_17)))->set_hashCode_0(((int32_t)((int32_t)L_22&(int32_t)((int32_t)2147483647LL)))); } IL_0073: { int32_t L_23 = V_3; V_3 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); } IL_0077: { int32_t L_24 = V_3; int32_t L_25 = (int32_t)__this->get_count_2(); if ((((int32_t)L_24) < ((int32_t)L_25))) { goto IL_003b; } } IL_0080: { V_4 = (int32_t)0; goto IL_00c3; } IL_0085: { EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_26 = V_1; int32_t L_27 = V_4; NullCheck(L_26); int32_t L_28 = (int32_t)((L_26)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_27)))->get_hashCode_0(); if ((((int32_t)L_28) < ((int32_t)0))) { goto IL_00bd; } } { EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_29 = V_1; int32_t L_30 = V_4; NullCheck(L_29); int32_t L_31 = (int32_t)((L_29)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_30)))->get_hashCode_0(); int32_t L_32 = ___newSize0; V_5 = (int32_t)((int32_t)((int32_t)L_31%(int32_t)L_32)); EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_33 = V_1; int32_t L_34 = V_4; NullCheck(L_33); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_35 = V_0; int32_t L_36 = V_5; NullCheck(L_35); int32_t L_37 = L_36; int32_t L_38 = (L_35)->GetAt(static_cast<il2cpp_array_size_t>(L_37)); ((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->set_next_1(L_38); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_39 = V_0; int32_t L_40 = V_5; int32_t L_41 = V_4; NullCheck(L_39); (L_39)->SetAt(static_cast<il2cpp_array_size_t>(L_40), (int32_t)L_41); } IL_00bd: { int32_t L_42 = V_4; V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)1)); } IL_00c3: { int32_t L_43 = V_4; int32_t L_44 = (int32_t)__this->get_count_2(); if ((((int32_t)L_43) < ((int32_t)L_44))) { goto IL_0085; } } { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_45 = V_0; __this->set_buckets_0(L_45); EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_46 = V_1; __this->set_entries_1(L_46); return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::Remove(TKey) extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_Remove_m2204D6D532702FD13AB2A9AD8DB538E4E8FB1913_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, int32_t ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Remove_m2204D6D532702FD13AB2A9AD8DB538E4E8FB1913_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; { goto IL_0013; } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_Remove_m2204D6D532702FD13AB2A9AD8DB538E4E8FB1913_RuntimeMethod_var); } IL_0013: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); if (!L_2) { goto IL_015d; } } { RuntimeObject* L_3 = (RuntimeObject*)__this->get_comparer_6(); int32_t L_4 = ___key0; NullCheck((RuntimeObject*)L_3); int32_t L_5 = InterfaceFuncInvoker1< int32_t, int32_t >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Int32>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28), (RuntimeObject*)L_3, (int32_t)L_4); V_0 = (int32_t)((int32_t)((int32_t)L_5&(int32_t)((int32_t)2147483647LL))); int32_t L_6 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_7 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_7); V_1 = (int32_t)((int32_t)((int32_t)L_6%(int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_7)->max_length)))))); V_2 = (int32_t)(-1); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_9 = V_1; NullCheck(L_8); int32_t L_10 = L_9; int32_t L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); V_3 = (int32_t)L_11; goto IL_0156; } IL_004c: { EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_12 = (EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285*)__this->get_entries_1(); int32_t L_13 = V_3; NullCheck(L_12); int32_t L_14 = (int32_t)((L_12)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_13)))->get_hashCode_0(); int32_t L_15 = V_0; if ((!(((uint32_t)L_14) == ((uint32_t)L_15)))) { goto IL_0142; } } { RuntimeObject* L_16 = (RuntimeObject*)__this->get_comparer_6(); EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_17 = (EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285*)__this->get_entries_1(); int32_t L_18 = V_3; NullCheck(L_17); int32_t L_19 = (int32_t)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18)))->get_key_2(); int32_t L_20 = ___key0; NullCheck((RuntimeObject*)L_16); bool L_21 = InterfaceFuncInvoker2< bool, int32_t, int32_t >::Invoke(0 /* System.Boolean System.Collections.Generic.IEqualityComparer`1<System.Int32>::Equals(T,T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28), (RuntimeObject*)L_16, (int32_t)L_19, (int32_t)L_20); if (!L_21) { goto IL_0142; } } { int32_t L_22 = V_2; if ((((int32_t)L_22) >= ((int32_t)0))) { goto IL_00a4; } } { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_23 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_24 = V_1; EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_25 = (EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285*)__this->get_entries_1(); int32_t L_26 = V_3; NullCheck(L_25); int32_t L_27 = (int32_t)((L_25)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_26)))->get_next_1(); NullCheck(L_23); (L_23)->SetAt(static_cast<il2cpp_array_size_t>(L_24), (int32_t)L_27); goto IL_00c6; } IL_00a4: { EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_28 = (EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285*)__this->get_entries_1(); int32_t L_29 = V_2; NullCheck(L_28); EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_30 = (EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285*)__this->get_entries_1(); int32_t L_31 = V_3; NullCheck(L_30); int32_t L_32 = (int32_t)((L_30)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_31)))->get_next_1(); ((L_28)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_29)))->set_next_1(L_32); } IL_00c6: { EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_33 = (EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285*)__this->get_entries_1(); int32_t L_34 = V_3; NullCheck(L_33); ((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->set_hashCode_0((-1)); EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_35 = (EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285*)__this->get_entries_1(); int32_t L_36 = V_3; NullCheck(L_35); int32_t L_37 = (int32_t)__this->get_freeList_4(); ((L_35)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_36)))->set_next_1(L_37); EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_38 = (EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285*)__this->get_entries_1(); int32_t L_39 = V_3; NullCheck(L_38); int32_t* L_40 = (int32_t*)((L_38)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_39)))->get_address_of_key_2(); il2cpp_codegen_initobj(L_40, sizeof(int32_t)); EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_41 = (EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285*)__this->get_entries_1(); int32_t L_42 = V_3; NullCheck(L_41); RuntimeObject ** L_43 = (RuntimeObject **)((L_41)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_42)))->get_address_of_value_3(); il2cpp_codegen_initobj(L_43, sizeof(RuntimeObject *)); int32_t L_44 = V_3; __this->set_freeList_4(L_44); int32_t L_45 = (int32_t)__this->get_freeCount_5(); __this->set_freeCount_5(((int32_t)il2cpp_codegen_add((int32_t)L_45, (int32_t)1))); int32_t L_46 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_46, (int32_t)1))); return (bool)1; } IL_0142: { int32_t L_47 = V_3; V_2 = (int32_t)L_47; EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_48 = (EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285*)__this->get_entries_1(); int32_t L_49 = V_3; NullCheck(L_48); int32_t L_50 = (int32_t)((L_48)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_49)))->get_next_1(); V_3 = (int32_t)L_50; } IL_0156: { int32_t L_51 = V_3; if ((((int32_t)L_51) >= ((int32_t)0))) { goto IL_004c; } } IL_015d: { return (bool)0; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::TryGetValue(TKey,TValue&) extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_m867F6DA953678D0333A55270B7C6EF38EFC293FF_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, int32_t ___key0, RuntimeObject ** ___value1, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0 = ___key0; NullCheck((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this, (int32_t)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0025; } } { RuntimeObject ** L_3 = ___value1; EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_4 = (EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285*)__this->get_entries_1(); int32_t L_5 = V_0; NullCheck(L_4); RuntimeObject * L_6 = (RuntimeObject *)((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_value_3(); *(RuntimeObject **)L_3 = L_6; Il2CppCodeGenWriteBarrier((RuntimeObject **)L_3, L_6); return (bool)1; } IL_0025: { RuntimeObject ** L_7 = ___value1; il2cpp_codegen_initobj(L_7, sizeof(RuntimeObject *)); return (bool)0; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.get_IsReadOnly() extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_get_IsReadOnly_m466B31803B82ACFCB0A0A8A594B2372982858E13_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_CopyTo_m4FB90C5DE5136ED28E8E1BBAB9873AE59B290FFA_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, KeyValuePair_2U5BU5D_t51ECDC3588B5BA2DE76DE4B25B62ACADF928345B* ___array0, int32_t ___index1, const RuntimeMethod* method) { { KeyValuePair_2U5BU5D_t51ECDC3588B5BA2DE76DE4B25B62ACADF928345B* L_0 = ___array0; int32_t L_1 = ___index1; NullCheck((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this); (( void (*) (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *, KeyValuePair_2U5BU5D_t51ECDC3588B5BA2DE76DE4B25B62ACADF928345B*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 25)->methodPointer)((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this, (KeyValuePair_2U5BU5D_t51ECDC3588B5BA2DE76DE4B25B62ACADF928345B*)L_0, (int32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 25)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_ICollection_CopyTo_m8521E03ECC98EFED37EE94DB802E62C9527C81A8_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_System_Collections_ICollection_CopyTo_m8521E03ECC98EFED37EE94DB802E62C9527C81A8_MetadataUsageId); s_Il2CppMethodInitialized = true; } KeyValuePair_2U5BU5D_t51ECDC3588B5BA2DE76DE4B25B62ACADF928345B* V_0 = NULL; DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56* V_1 = NULL; EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* V_2 = NULL; int32_t V_3 = 0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_4 = NULL; int32_t V_5 = 0; EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* V_6 = NULL; int32_t V_7 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_m8521E03ECC98EFED37EE94DB802E62C9527C81A8_RuntimeMethod_var); } IL_000e: { RuntimeArray * L_2 = ___array0; NullCheck((RuntimeArray *)L_2); int32_t L_3 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)L_2, /*hidden argument*/NULL); if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_0027; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_4 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_4, (String_t*)_stringLiteral2D77BE6D598A0A9376398980E66D10E319F1B52A, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_m8521E03ECC98EFED37EE94DB802E62C9527C81A8_RuntimeMethod_var); } IL_0027: { RuntimeArray * L_5 = ___array0; NullCheck((RuntimeArray *)L_5); int32_t L_6 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)L_5, (int32_t)0, /*hidden argument*/NULL); if (!L_6) { goto IL_0040; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_7 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_7, (String_t*)_stringLiteralC363992023785AF013BBCF2E20C19D9835184F82, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_m8521E03ECC98EFED37EE94DB802E62C9527C81A8_RuntimeMethod_var); } IL_0040: { int32_t L_8 = ___index1; if ((((int32_t)L_8) < ((int32_t)0))) { goto IL_004d; } } { int32_t L_9 = ___index1; RuntimeArray * L_10 = ___array0; NullCheck((RuntimeArray *)L_10); int32_t L_11 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_10, /*hidden argument*/NULL); if ((((int32_t)L_9) <= ((int32_t)L_11))) { goto IL_0063; } } IL_004d: { int32_t L_12 = ___index1; int32_t L_13 = L_12; RuntimeObject * L_14 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_13); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_15 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378(L_15, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, (RuntimeObject *)L_14, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_m8521E03ECC98EFED37EE94DB802E62C9527C81A8_RuntimeMethod_var); } IL_0063: { RuntimeArray * L_16 = ___array0; NullCheck((RuntimeArray *)L_16); int32_t L_17 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_16, /*hidden argument*/NULL); int32_t L_18 = ___index1; NullCheck((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this); int32_t L_19 = (( int32_t (*) (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)->methodPointer)((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_18))) >= ((int32_t)L_19))) { goto IL_007e; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_20 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_20, (String_t*)_stringLiteralBC80A496F1C479B70F6EE2BF2F0C3C05463301B8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_m8521E03ECC98EFED37EE94DB802E62C9527C81A8_RuntimeMethod_var); } IL_007e: { RuntimeArray * L_21 = ___array0; V_0 = (KeyValuePair_2U5BU5D_t51ECDC3588B5BA2DE76DE4B25B62ACADF928345B*)((KeyValuePair_2U5BU5D_t51ECDC3588B5BA2DE76DE4B25B62ACADF928345B*)IsInst((RuntimeObject*)L_21, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 32))); KeyValuePair_2U5BU5D_t51ECDC3588B5BA2DE76DE4B25B62ACADF928345B* L_22 = V_0; if (!L_22) { goto IL_0091; } } { KeyValuePair_2U5BU5D_t51ECDC3588B5BA2DE76DE4B25B62ACADF928345B* L_23 = V_0; int32_t L_24 = ___index1; NullCheck((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this); (( void (*) (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *, KeyValuePair_2U5BU5D_t51ECDC3588B5BA2DE76DE4B25B62ACADF928345B*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 25)->methodPointer)((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this, (KeyValuePair_2U5BU5D_t51ECDC3588B5BA2DE76DE4B25B62ACADF928345B*)L_23, (int32_t)L_24, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 25)); return; } IL_0091: { RuntimeArray * L_25 = ___array0; if (!((DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56*)IsInst((RuntimeObject*)L_25, DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56_il2cpp_TypeInfo_var))) { goto IL_00fb; } } { RuntimeArray * L_26 = ___array0; V_1 = (DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56*)((DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56*)IsInst((RuntimeObject*)L_26, DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56_il2cpp_TypeInfo_var)); EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_27 = (EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285*)__this->get_entries_1(); V_2 = (EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285*)L_27; V_3 = (int32_t)0; goto IL_00f1; } IL_00ab: { EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_28 = V_2; int32_t L_29 = V_3; NullCheck(L_28); int32_t L_30 = (int32_t)((L_28)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_29)))->get_hashCode_0(); if ((((int32_t)L_30) < ((int32_t)0))) { goto IL_00ed; } } { DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56* L_31 = V_1; int32_t L_32 = ___index1; int32_t L_33 = (int32_t)L_32; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)1)); EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_34 = V_2; int32_t L_35 = V_3; NullCheck(L_34); int32_t L_36 = (int32_t)((L_34)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_35)))->get_key_2(); int32_t L_37 = L_36; RuntimeObject * L_38 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 27), &L_37); EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_39 = V_2; int32_t L_40 = V_3; NullCheck(L_39); RuntimeObject * L_41 = (RuntimeObject *)((L_39)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_40)))->get_value_3(); DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_42; memset(&L_42, 0, sizeof(L_42)); DictionaryEntry__ctor_m67BC38CD2B85F134F3EB2473270CDD3933F7CD9B((&L_42), (RuntimeObject *)L_38, (RuntimeObject *)L_41, /*hidden argument*/NULL); NullCheck(L_31); (L_31)->SetAt(static_cast<il2cpp_array_size_t>(L_33), (DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 )L_42); } IL_00ed: { int32_t L_43 = V_3; V_3 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_43, (int32_t)1)); } IL_00f1: { int32_t L_44 = V_3; int32_t L_45 = (int32_t)__this->get_count_2(); if ((((int32_t)L_44) < ((int32_t)L_45))) { goto IL_00ab; } } { return; } IL_00fb: { RuntimeArray * L_46 = ___array0; V_4 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)L_46, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_47 = V_4; if (L_47) { goto IL_0117; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_48 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_48, (String_t*)_stringLiteralC44D4E6C6AF3517A1CC72EDF7D1A5FFD7E3368F1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_48, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_m8521E03ECC98EFED37EE94DB802E62C9527C81A8_RuntimeMethod_var); } IL_0117: { } IL_0118: try { // begin try (depth: 1) { int32_t L_49 = (int32_t)__this->get_count_2(); V_5 = (int32_t)L_49; EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_50 = (EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285*)__this->get_entries_1(); V_6 = (EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285*)L_50; V_7 = (int32_t)0; goto IL_0173; } IL_012d: { EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_51 = V_6; int32_t L_52 = V_7; NullCheck(L_51); int32_t L_53 = (int32_t)((L_51)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_52)))->get_hashCode_0(); if ((((int32_t)L_53) < ((int32_t)0))) { goto IL_016d; } } IL_013e: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_54 = V_4; int32_t L_55 = ___index1; int32_t L_56 = (int32_t)L_55; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_56, (int32_t)1)); EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_57 = V_6; int32_t L_58 = V_7; NullCheck(L_57); int32_t L_59 = (int32_t)((L_57)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_58)))->get_key_2(); EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_60 = V_6; int32_t L_61 = V_7; NullCheck(L_60); RuntimeObject * L_62 = (RuntimeObject *)((L_60)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_61)))->get_value_3(); KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 L_63; memset(&L_63, 0, sizeof(L_63)); KeyValuePair_2__ctor_m0E2B8624D7996D6A5BA2A81383EE983F4A9DC078((&L_63), (int32_t)L_59, (RuntimeObject *)L_62, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 20)); KeyValuePair_2_t142B50DAD5164EBD2E1495FD821B1A4C3233FA26 L_64 = L_63; RuntimeObject * L_65 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 19), &L_64); NullCheck(L_54); ArrayElementTypeCheck (L_54, L_65); (L_54)->SetAt(static_cast<il2cpp_array_size_t>(L_56), (RuntimeObject *)L_65); } IL_016d: { int32_t L_66 = V_7; V_7 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_66, (int32_t)1)); } IL_0173: { int32_t L_67 = V_7; int32_t L_68 = V_5; if ((((int32_t)L_67) < ((int32_t)L_68))) { goto IL_012d; } } IL_0179: { goto IL_018c; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (ArrayTypeMismatchException_tE34C1032B089C37399200997F079C640D23D9499_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_017b; throw e; } CATCH_017b: { // begin catch(System.ArrayTypeMismatchException) ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_69 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_69, (String_t*)_stringLiteralC44D4E6C6AF3517A1CC72EDF7D1A5FFD7E3368F1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_69, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_m8521E03ECC98EFED37EE94DB802E62C9527C81A8_RuntimeMethod_var); } // end catch (depth: 1) IL_018c: { return; } } // System.Collections.IEnumerator System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::System.Collections.IEnumerable.GetEnumerator() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_System_Collections_IEnumerable_GetEnumerator_m03E2798B199D27A69BC3C5D43D0B4BF95427A9DD_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, const RuntimeMethod* method) { { Enumerator_t72A8231827DB93FC8B25F08FF066377F7B773DA1 L_0; memset(&L_0, 0, sizeof(L_0)); Enumerator__ctor_mB688A5999DC16A8DF99AA954CB6DD9DD3246942E((&L_0), (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this, (int32_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)); Enumerator_t72A8231827DB93FC8B25F08FF066377F7B773DA1 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 21), &L_1); return (RuntimeObject*)L_2; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::System.Collections.ICollection.get_IsSynchronized() extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_ICollection_get_IsSynchronized_m1DE293F3818DE5ECCAE07B0B22960F15522D75DB_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Object System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::System.Collections.ICollection.get_SyncRoot() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Dictionary_2_System_Collections_ICollection_get_SyncRoot_mBDB2415C142E10DDB0EBDDF98F369A8DBF05D9CA_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_System_Collections_ICollection_get_SyncRoot_mBDB2415C142E10DDB0EBDDF98F369A8DBF05D9CA_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = (RuntimeObject *)__this->get__syncRoot_9(); if (L_0) { goto IL_001a; } } { RuntimeObject ** L_1 = (RuntimeObject **)__this->get_address_of__syncRoot_9(); RuntimeObject * L_2 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(L_2, /*hidden argument*/NULL); InterlockedCompareExchangeImpl<RuntimeObject *>((RuntimeObject **)(RuntimeObject **)L_1, (RuntimeObject *)L_2, (RuntimeObject *)NULL); } IL_001a: { RuntimeObject * L_3 = (RuntimeObject *)__this->get__syncRoot_9(); return L_3; } } // System.Object System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::System.Collections.IDictionary.get_Item(System.Object) extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Dictionary_2_System_Collections_IDictionary_get_Item_m008EA48F0608DE1DC963F4EDF947121BF649AADF_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { int32_t V_0 = 0; { RuntimeObject * L_0 = ___key0; bool L_1 = (( bool (*) (RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 33)->methodPointer)((RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 33)); if (!L_1) { goto IL_0030; } } { RuntimeObject * L_2 = ___key0; NullCheck((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this); int32_t L_3 = (( int32_t (*) (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this, (int32_t)((*(int32_t*)((int32_t*)UnBox(L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 27))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); V_0 = (int32_t)L_3; int32_t L_4 = V_0; if ((((int32_t)L_4) < ((int32_t)0))) { goto IL_0030; } } { EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_5 = (EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285*)__this->get_entries_1(); int32_t L_6 = V_0; NullCheck(L_5); RuntimeObject * L_7 = (RuntimeObject *)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_value_3(); return L_7; } IL_0030: { return NULL; } } // System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::System.Collections.IDictionary.set_Item(System.Object,System.Object) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_IDictionary_set_Item_m628942C62121D1661E9DBCE25DD9E4333B516F64_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_System_Collections_IDictionary_set_Item_m628942C62121D1661E9DBCE25DD9E4333B516F64_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; int32_t V_1 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_System_Collections_IDictionary_set_Item_m628942C62121D1661E9DBCE25DD9E4333B516F64_RuntimeMethod_var); } IL_000e: { RuntimeObject * L_2 = ___value1; if (L_2) { goto IL_002c; } } { il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *)); RuntimeObject * L_3 = V_0; if (!L_3) { goto IL_002c; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_4, (String_t*)_stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Dictionary_2_System_Collections_IDictionary_set_Item_m628942C62121D1661E9DBCE25DD9E4333B516F64_RuntimeMethod_var); } IL_002c: { } IL_002d: try { // begin try (depth: 1) { RuntimeObject * L_5 = ___key0; V_1 = (int32_t)((*(int32_t*)((int32_t*)UnBox(L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 27))))); } IL_0034: try { // begin try (depth: 2) int32_t L_6 = V_1; RuntimeObject * L_7 = ___value1; NullCheck((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this); (( void (*) (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *, int32_t, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 35)->methodPointer)((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this, (int32_t)L_6, (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_7, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 17))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 35)); goto IL_0064; } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0043; throw e; } CATCH_0043: { // begin catch(System.InvalidCastException) RuntimeObject * L_8 = ___value1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_9 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 36)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_10 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_9, /*hidden argument*/NULL); String_t* L_11 = SR_Format_m2DD0EA1F52576669B34B03CDB3D441631E1CA76C((String_t*)_stringLiteralFA5354A55A2D5AE97DEF68A54DFDDBF37A452FD6, (RuntimeObject *)L_8, (RuntimeObject *)L_10, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_12, (String_t*)L_11, (String_t*)_stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, NULL, Dictionary_2_System_Collections_IDictionary_set_Item_m628942C62121D1661E9DBCE25DD9E4333B516F64_RuntimeMethod_var); } // end catch (depth: 2) IL_0064: { goto IL_0087; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0066; throw e; } CATCH_0066: { // begin catch(System.InvalidCastException) RuntimeObject * L_13 = ___key0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 37)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_14, /*hidden argument*/NULL); String_t* L_16 = SR_Format_m2DD0EA1F52576669B34B03CDB3D441631E1CA76C((String_t*)_stringLiteralFA5354A55A2D5AE97DEF68A54DFDDBF37A452FD6, (RuntimeObject *)L_13, (RuntimeObject *)L_15, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_17 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_17, (String_t*)L_16, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, NULL, Dictionary_2_System_Collections_IDictionary_set_Item_m628942C62121D1661E9DBCE25DD9E4333B516F64_RuntimeMethod_var); } // end catch (depth: 1) IL_0087: { return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::IsCompatibleKey(System.Object) extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_IsCompatibleKey_m088CA41CAE573E08C9001F3EC4FF2A28BC47125D_gshared (RuntimeObject * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_IsCompatibleKey_m088CA41CAE573E08C9001F3EC4FF2A28BC47125D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_IsCompatibleKey_m088CA41CAE573E08C9001F3EC4FF2A28BC47125D_RuntimeMethod_var); } IL_000e: { RuntimeObject * L_2 = ___key0; return (bool)((!(((RuntimeObject*)(RuntimeObject *)((RuntimeObject *)IsInst((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 27)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0); } } // System.Collections.IDictionaryEnumerator System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::System.Collections.IDictionary.GetEnumerator() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_System_Collections_IDictionary_GetEnumerator_m3B657BBB65C944DE2DB567E77C333511C31A9D26_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, const RuntimeMethod* method) { { Enumerator_t72A8231827DB93FC8B25F08FF066377F7B773DA1 L_0; memset(&L_0, 0, sizeof(L_0)); Enumerator__ctor_mB688A5999DC16A8DF99AA954CB6DD9DD3246942E((&L_0), (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this, (int32_t)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)); Enumerator_t72A8231827DB93FC8B25F08FF066377F7B773DA1 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 21), &L_1); return (RuntimeObject*)L_2; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Boolean>::.ctor() extern "C" IL2CPP_METHOD_ATTR void Dictionary_2__ctor_mD33762F9679FB4A14789E0AA2E7493BCC3354F0C_gshared (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * __this, const RuntimeMethod* method) { { NullCheck((Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)__this); (( void (*) (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)__this, (int32_t)0, (RuntimeObject*)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Boolean>::.ctor(System.Int32) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2__ctor_mC0AD925A9EB0331BD6E238C568E0E3875555B4FE_gshared (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * __this, int32_t ___capacity0, const RuntimeMethod* method) { { int32_t L_0 = ___capacity0; NullCheck((Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)__this); (( void (*) (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)__this, (int32_t)L_0, (RuntimeObject*)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Boolean>::.ctor(System.Collections.Generic.IEqualityComparer`1<TKey>) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m964C6DC53D4A534C61826645516ABADA66181C49_gshared (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___comparer0; NullCheck((Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)__this); (( void (*) (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)__this, (int32_t)0, (RuntimeObject*)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Boolean>::.ctor(System.Int32,System.Collections.Generic.IEqualityComparer`1<TKey>) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2__ctor_mB204F1BB49B970674567803722CFD87611475A5F_gshared (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * __this, int32_t ___capacity0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2__ctor_mB204F1BB49B970674567803722CFD87611475A5F_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* G_B6_0 = NULL; Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * G_B6_1 = NULL; RuntimeObject* G_B5_0 = NULL; Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * G_B5_1 = NULL; { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); int32_t L_0 = ___capacity0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0020; } } { int32_t L_1 = ___capacity0; int32_t L_2 = L_1; RuntimeObject * L_3 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_2); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_4 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378(L_4, (String_t*)_stringLiteral7CB1F56D3FBE09E809244FC8E13671CD876E3860, (RuntimeObject *)L_3, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Dictionary_2__ctor_mB204F1BB49B970674567803722CFD87611475A5F_RuntimeMethod_var); } IL_0020: { int32_t L_5 = ___capacity0; if ((((int32_t)L_5) <= ((int32_t)0))) { goto IL_002b; } } { int32_t L_6 = ___capacity0; NullCheck((Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)__this); (( void (*) (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)__this, (int32_t)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); } IL_002b: { RuntimeObject* L_7 = ___comparer1; RuntimeObject* L_8 = (RuntimeObject*)L_7; G_B5_0 = L_8; G_B5_1 = ((Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)(__this)); if (L_8) { G_B6_0 = L_8; G_B6_1 = ((Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)(__this)); goto IL_0036; } } { EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * L_9 = (( EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); G_B6_0 = ((RuntimeObject*)(L_9)); G_B6_1 = ((Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)(G_B5_1)); } IL_0036: { NullCheck(G_B6_1); G_B6_1->set_comparer_6(G_B6_0); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Boolean>::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2__ctor_mE582A8C07DEBEE20F9D9831F6F6D5C655F789EAA_gshared (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2__ctor_mE582A8C07DEBEE20F9D9831F6F6D5C655F789EAA_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00_il2cpp_TypeInfo_var); ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * L_0 = DictionaryHashHelpers_get_SerializationInfoTable_mCF0A53E777EAFE1AA018C02529AFF6D3CDF7A05C(/*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_1 = ___info0; NullCheck((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_0); ConditionalWeakTable_2_Add_mCC3585BE91A7BDFC49EEFDE4C11173A36D1FB5FE((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_0, (RuntimeObject *)__this, (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_1, /*hidden argument*/ConditionalWeakTable_2_Add_mCC3585BE91A7BDFC49EEFDE4C11173A36D1FB5FE_RuntimeMethod_var); return; } } // System.Int32 System.Collections.Generic.Dictionary`2<System.Object,System.Boolean>::get_Count() extern "C" IL2CPP_METHOD_ATTR int32_t Dictionary_2_get_Count_m1DB21CBBDD0CD4547AD4741A36DF4D8EE4BBC121_gshared (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_count_2(); int32_t L_1 = (int32_t)__this->get_freeCount_5(); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)); } } // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,System.Boolean>::get_Keys() extern "C" IL2CPP_METHOD_ATTR KeyCollection_t35BBEE4BF6694D7EEF3D286B6F9A808FD797F93F * Dictionary_2_get_Keys_m249A65A85C45F28526C8A19C5D579B670E31B155_gshared (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * __this, const RuntimeMethod* method) { { KeyCollection_t35BBEE4BF6694D7EEF3D286B6F9A808FD797F93F * L_0 = (KeyCollection_t35BBEE4BF6694D7EEF3D286B6F9A808FD797F93F *)__this->get_keys_7(); if (L_0) { goto IL_0014; } } { KeyCollection_t35BBEE4BF6694D7EEF3D286B6F9A808FD797F93F * L_1 = (KeyCollection_t35BBEE4BF6694D7EEF3D286B6F9A808FD797F93F *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4)); (( void (*) (KeyCollection_t35BBEE4BF6694D7EEF3D286B6F9A808FD797F93F *, Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)(L_1, (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); __this->set_keys_7(L_1); } IL_0014: { KeyCollection_t35BBEE4BF6694D7EEF3D286B6F9A808FD797F93F * L_2 = (KeyCollection_t35BBEE4BF6694D7EEF3D286B6F9A808FD797F93F *)__this->get_keys_7(); return L_2; } } // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,System.Boolean>::get_Values() extern "C" IL2CPP_METHOD_ATTR ValueCollection_t4B2E092EE9A4E61506400C34FE1B5325E692E7E1 * Dictionary_2_get_Values_mA9244D1E7DA133A61F8B20C68E1A69BCEA841882_gshared (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * __this, const RuntimeMethod* method) { { ValueCollection_t4B2E092EE9A4E61506400C34FE1B5325E692E7E1 * L_0 = (ValueCollection_t4B2E092EE9A4E61506400C34FE1B5325E692E7E1 *)__this->get_values_8(); if (L_0) { goto IL_0014; } } { ValueCollection_t4B2E092EE9A4E61506400C34FE1B5325E692E7E1 * L_1 = (ValueCollection_t4B2E092EE9A4E61506400C34FE1B5325E692E7E1 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)); (( void (*) (ValueCollection_t4B2E092EE9A4E61506400C34FE1B5325E692E7E1 *, Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)(L_1, (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)); __this->set_values_8(L_1); } IL_0014: { ValueCollection_t4B2E092EE9A4E61506400C34FE1B5325E692E7E1 * L_2 = (ValueCollection_t4B2E092EE9A4E61506400C34FE1B5325E692E7E1 *)__this->get_values_8(); return L_2; } } // TValue System.Collections.Generic.Dictionary`2<System.Object,System.Boolean>::get_Item(TKey) extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_get_Item_m1DF046369E7E7A3C16D4523AFF692D3D16FB6680_gshared (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_get_Item_m1DF046369E7E7A3C16D4523AFF692D3D16FB6680_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { RuntimeObject * L_0 = ___key0; NullCheck((Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_001e; } } { EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_3 = (EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D*)__this->get_entries_1(); int32_t L_4 = V_0; NullCheck(L_3); bool L_5 = (bool)((L_3)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_4)))->get_value_3(); return L_5; } IL_001e: { KeyNotFoundException_tC28F8B9E114291001A5D135723673C6F292438E2 * L_6 = (KeyNotFoundException_tC28F8B9E114291001A5D135723673C6F292438E2 *)il2cpp_codegen_object_new(KeyNotFoundException_tC28F8B9E114291001A5D135723673C6F292438E2_il2cpp_TypeInfo_var); KeyNotFoundException__ctor_mE9E1C6E6E21842095342C0A2ED65EC201FB4F3C8(L_6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, Dictionary_2_get_Item_m1DF046369E7E7A3C16D4523AFF692D3D16FB6680_RuntimeMethod_var); } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Boolean>::set_Item(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_mC7C543E408A942754FE9163CBCD0D570D23A8F29_gshared (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * __this, RuntimeObject * ___key0, bool ___value1, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; bool L_1 = ___value1; NullCheck((Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)__this); (( bool (*) (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *, RuntimeObject *, bool, uint8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)((Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)__this, (RuntimeObject *)L_0, (bool)L_1, (uint8_t)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Boolean>::Add(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_Add_mF33562A6DE1ADD3886EDF0FC755A7BF443E0831E_gshared (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * __this, RuntimeObject * ___key0, bool ___value1, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; bool L_1 = ___value1; NullCheck((Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)__this); (( bool (*) (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *, RuntimeObject *, bool, uint8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)((Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)__this, (RuntimeObject *)L_0, (bool)L_1, (uint8_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Boolean>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Add(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Add_mCB29EE7188AF54869CF106FAD223709ACBEDB282_gshared (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * __this, KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 ___keyValuePair0, const RuntimeMethod* method) { { RuntimeObject * L_0 = KeyValuePair_2_get_Key_m399ECA62E7496A29A7396211018AD652FF15D930((KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 *)(KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); bool L_1 = KeyValuePair_2_get_Value_mE50A05A795484D20F8060413212B29EBADC1EA40((KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 *)(KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); NullCheck((Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)__this); (( void (*) (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *, RuntimeObject *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)((Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)__this, (RuntimeObject *)L_0, (bool)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Boolean>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Contains(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Contains_m8FF1BAB49CC80BEDA89DC93D2B3CD32D9F6FACEE_gshared (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * __this, KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 ___keyValuePair0, const RuntimeMethod* method) { int32_t V_0 = 0; { RuntimeObject * L_0 = KeyValuePair_2_get_Key_m399ECA62E7496A29A7396211018AD652FF15D930((KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 *)(KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); NullCheck((Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0038; } } { EqualityComparer_1_t4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8 * L_3 = (( EqualityComparer_1_t4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)); EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_4 = (EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D*)__this->get_entries_1(); int32_t L_5 = V_0; NullCheck(L_4); bool L_6 = (bool)((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_value_3(); bool L_7 = KeyValuePair_2_get_Value_mE50A05A795484D20F8060413212B29EBADC1EA40((KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 *)(KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); NullCheck((EqualityComparer_1_t4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8 *)L_3); bool L_8 = VirtFuncInvoker2< bool, bool, bool >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Boolean>::Equals(T,T) */, (EqualityComparer_1_t4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8 *)L_3, (bool)L_6, (bool)L_7); if (!L_8) { goto IL_0038; } } { return (bool)1; } IL_0038: { return (bool)0; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Boolean>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Remove(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Remove_mC6DCF3B433CB7ADB6638DF18400360EF843F3C8B_gshared (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * __this, KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 ___keyValuePair0, const RuntimeMethod* method) { int32_t V_0 = 0; { RuntimeObject * L_0 = KeyValuePair_2_get_Key_m399ECA62E7496A29A7396211018AD652FF15D930((KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 *)(KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); NullCheck((Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0046; } } { EqualityComparer_1_t4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8 * L_3 = (( EqualityComparer_1_t4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)); EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_4 = (EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D*)__this->get_entries_1(); int32_t L_5 = V_0; NullCheck(L_4); bool L_6 = (bool)((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_value_3(); bool L_7 = KeyValuePair_2_get_Value_mE50A05A795484D20F8060413212B29EBADC1EA40((KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 *)(KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); NullCheck((EqualityComparer_1_t4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8 *)L_3); bool L_8 = VirtFuncInvoker2< bool, bool, bool >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Boolean>::Equals(T,T) */, (EqualityComparer_1_t4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8 *)L_3, (bool)L_6, (bool)L_7); if (!L_8) { goto IL_0046; } } { RuntimeObject * L_9 = KeyValuePair_2_get_Key_m399ECA62E7496A29A7396211018AD652FF15D930((KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 *)(KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); NullCheck((Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)__this); (( bool (*) (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16)->methodPointer)((Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)__this, (RuntimeObject *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16)); return (bool)1; } IL_0046: { return (bool)0; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Boolean>::Clear() extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_Clear_m94367AD4B034A619D740A814E4DD61C9660079B0_gshared (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0 = (int32_t)__this->get_count_2(); if ((((int32_t)L_0) <= ((int32_t)0))) { goto IL_005a; } } { V_0 = (int32_t)0; goto IL_001a; } IL_000d: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_1 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_2 = V_0; NullCheck(L_1); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(L_2), (int32_t)(-1)); int32_t L_3 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)); } IL_001a: { int32_t L_4 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_5 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_5); if ((((int32_t)L_4) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_5)->max_length))))))) { goto IL_000d; } } { EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_6 = (EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D*)__this->get_entries_1(); int32_t L_7 = (int32_t)__this->get_count_2(); Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_6, (int32_t)0, (int32_t)L_7, /*hidden argument*/NULL); __this->set_freeList_4((-1)); __this->set_count_2(0); __this->set_freeCount_5(0); int32_t L_8 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1))); } IL_005a: { return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Boolean>::ContainsKey(TKey) extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_ContainsKey_mBFF6A4687D45C03F7648043EC9DACA2AABC60F71_gshared (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; NullCheck((Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); return (bool)((((int32_t)((((int32_t)L_1) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Boolean>::ContainsValue(TValue) extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_ContainsValue_mBD4D2BD9B8BAFED52DF1D22044DF44BD2C9C7220_gshared (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * __this, bool ___value0, const RuntimeMethod* method) { int32_t V_0 = 0; EqualityComparer_1_t4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8 * V_1 = NULL; int32_t V_2 = 0; { goto IL_0049; } { V_0 = (int32_t)0; goto IL_003e; } IL_000c: { EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_1 = (EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D*)__this->get_entries_1(); int32_t L_2 = V_0; NullCheck(L_1); int32_t L_3 = (int32_t)((L_1)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_2)))->get_hashCode_0(); if ((((int32_t)L_3) < ((int32_t)0))) { goto IL_003a; } } { EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_4 = (EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D*)__this->get_entries_1(); int32_t L_5 = V_0; NullCheck(L_4); bool L_6 = (bool)((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_value_3(); goto IL_003a; } { return (bool)1; } IL_003a: { int32_t L_7 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1)); } IL_003e: { int32_t L_8 = V_0; int32_t L_9 = (int32_t)__this->get_count_2(); if ((((int32_t)L_8) < ((int32_t)L_9))) { goto IL_000c; } } { goto IL_0090; } IL_0049: { EqualityComparer_1_t4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8 * L_10 = (( EqualityComparer_1_t4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)); V_1 = (EqualityComparer_1_t4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8 *)L_10; V_2 = (int32_t)0; goto IL_0087; } IL_0053: { EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_11 = (EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D*)__this->get_entries_1(); int32_t L_12 = V_2; NullCheck(L_11); int32_t L_13 = (int32_t)((L_11)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_12)))->get_hashCode_0(); if ((((int32_t)L_13) < ((int32_t)0))) { goto IL_0083; } } { EqualityComparer_1_t4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8 * L_14 = V_1; EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_15 = (EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D*)__this->get_entries_1(); int32_t L_16 = V_2; NullCheck(L_15); bool L_17 = (bool)((L_15)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_16)))->get_value_3(); bool L_18 = ___value0; NullCheck((EqualityComparer_1_t4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8 *)L_14); bool L_19 = VirtFuncInvoker2< bool, bool, bool >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Boolean>::Equals(T,T) */, (EqualityComparer_1_t4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8 *)L_14, (bool)L_17, (bool)L_18); if (!L_19) { goto IL_0083; } } { return (bool)1; } IL_0083: { int32_t L_20 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1)); } IL_0087: { int32_t L_21 = V_2; int32_t L_22 = (int32_t)__this->get_count_2(); if ((((int32_t)L_21) < ((int32_t)L_22))) { goto IL_0053; } } IL_0090: { return (bool)0; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Boolean>::CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_CopyTo_m7846D298196FD3A80BE361B129E77C7D5ABE6B82_gshared (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * __this, KeyValuePair_2U5BU5D_tAE7F87DCEA5EC8AE3923ACF937141910554CD02E* ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_CopyTo_m7846D298196FD3A80BE361B129E77C7D5ABE6B82_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* V_1 = NULL; int32_t V_2 = 0; { KeyValuePair_2U5BU5D_tAE7F87DCEA5EC8AE3923ACF937141910554CD02E* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_CopyTo_m7846D298196FD3A80BE361B129E77C7D5ABE6B82_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___index1; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_3 = ___index1; KeyValuePair_2U5BU5D_tAE7F87DCEA5EC8AE3923ACF937141910554CD02E* L_4 = ___array0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_4)->max_length))))))) { goto IL_002e; } } IL_0018: { int32_t L_5 = ___index1; int32_t L_6 = L_5; RuntimeObject * L_7 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_6); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_8 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378(L_8, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, (RuntimeObject *)L_7, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, Dictionary_2_CopyTo_m7846D298196FD3A80BE361B129E77C7D5ABE6B82_RuntimeMethod_var); } IL_002e: { KeyValuePair_2U5BU5D_tAE7F87DCEA5EC8AE3923ACF937141910554CD02E* L_9 = ___array0; NullCheck(L_9); int32_t L_10 = ___index1; NullCheck((Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)__this); int32_t L_11 = (( int32_t (*) (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)->methodPointer)((Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_9)->max_length)))), (int32_t)L_10))) >= ((int32_t)L_11))) { goto IL_0046; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_12, (String_t*)_stringLiteralBC80A496F1C479B70F6EE2BF2F0C3C05463301B8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, NULL, Dictionary_2_CopyTo_m7846D298196FD3A80BE361B129E77C7D5ABE6B82_RuntimeMethod_var); } IL_0046: { int32_t L_13 = (int32_t)__this->get_count_2(); V_0 = (int32_t)L_13; EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_14 = (EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D*)__this->get_entries_1(); V_1 = (EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D*)L_14; V_2 = (int32_t)0; goto IL_0094; } IL_0058: { EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_15 = V_1; int32_t L_16 = V_2; NullCheck(L_15); int32_t L_17 = (int32_t)((L_15)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_16)))->get_hashCode_0(); if ((((int32_t)L_17) < ((int32_t)0))) { goto IL_0090; } } { KeyValuePair_2U5BU5D_tAE7F87DCEA5EC8AE3923ACF937141910554CD02E* L_18 = ___array0; int32_t L_19 = ___index1; int32_t L_20 = (int32_t)L_19; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1)); EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_21 = V_1; int32_t L_22 = V_2; NullCheck(L_21); RuntimeObject * L_23 = (RuntimeObject *)((L_21)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_22)))->get_key_2(); EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_24 = V_1; int32_t L_25 = V_2; NullCheck(L_24); bool L_26 = (bool)((L_24)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_25)))->get_value_3(); KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 L_27; memset(&L_27, 0, sizeof(L_27)); KeyValuePair_2__ctor_mD032180723F13E561F14573BD17CC953DA35AC08((&L_27), (RuntimeObject *)L_23, (bool)L_26, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 20)); NullCheck(L_18); (L_18)->SetAt(static_cast<il2cpp_array_size_t>(L_20), (KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 )L_27); } IL_0090: { int32_t L_28 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_28, (int32_t)1)); } IL_0094: { int32_t L_29 = V_2; int32_t L_30 = V_0; if ((((int32_t)L_29) < ((int32_t)L_30))) { goto IL_0058; } } { return; } } // System.Collections.Generic.Dictionary`2/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,System.Boolean>::GetEnumerator() extern "C" IL2CPP_METHOD_ATTR Enumerator_t635C134A2671CF22D2FF3CA9F05E125C187D457A Dictionary_2_GetEnumerator_mBECB583674F253D0CA699CE2118B53101210838C_gshared (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * __this, const RuntimeMethod* method) { { Enumerator_t635C134A2671CF22D2FF3CA9F05E125C187D457A L_0; memset(&L_0, 0, sizeof(L_0)); Enumerator__ctor_mE39A5CCC748B75F17EC0442AF275E49D79707F5D((&L_0), (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)__this, (int32_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)); return L_0; } } // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<TKey,TValue>> System.Collections.Generic.Dictionary`2<System.Object,System.Boolean>::System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>.GetEnumerator() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_System_Collections_Generic_IEnumerableU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_GetEnumerator_mC7D91E7F3085829B3105D543C4069C61777E14AA_gshared (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * __this, const RuntimeMethod* method) { { Enumerator_t635C134A2671CF22D2FF3CA9F05E125C187D457A L_0; memset(&L_0, 0, sizeof(L_0)); Enumerator__ctor_mE39A5CCC748B75F17EC0442AF275E49D79707F5D((&L_0), (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)__this, (int32_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)); Enumerator_t635C134A2671CF22D2FF3CA9F05E125C187D457A L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 21), &L_1); return (RuntimeObject*)L_2; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Boolean>::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_GetObjectData_m734E66A1CF9EE321575D86D5DEDE90132190B729_gshared (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_GetObjectData_m734E66A1CF9EE321575D86D5DEDE90132190B729_MetadataUsageId); s_Il2CppMethodInitialized = true; } KeyValuePair_2U5BU5D_tAE7F87DCEA5EC8AE3923ACF937141910554CD02E* V_0 = NULL; String_t* G_B4_0 = NULL; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * G_B4_1 = NULL; String_t* G_B3_0 = NULL; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * G_B3_1 = NULL; int32_t G_B5_0 = 0; String_t* G_B5_1 = NULL; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * G_B5_2 = NULL; { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_GetObjectData_m734E66A1CF9EE321575D86D5DEDE90132190B729_RuntimeMethod_var); } IL_000e: { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0; int32_t L_3 = (int32_t)__this->get_version_3(); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_2); SerializationInfo_AddValue_m7C73917D9DC4B8FE4AFEF4BA8EBEDAB046A8D0BD((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_2, (String_t*)_stringLiteral2DA600BF9404843107A9531694F654E5662959E0, (int32_t)L_3, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_4 = ___info0; RuntimeObject* L_5 = (RuntimeObject*)__this->get_comparer_6(); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 23)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_6, /*hidden argument*/NULL); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_4); SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_4, (String_t*)_stringLiteral8FC94E4F5B71CECE2565D72417AACC804EE27A0D, (RuntimeObject *)L_5, (Type_t *)L_7, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_8 = ___info0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_9 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); G_B3_0 = _stringLiteral35E05A2D28CF03B64D64C58D0C7ED03AD5A3AF60; G_B3_1 = L_8; if (!L_9) { G_B4_0 = _stringLiteral35E05A2D28CF03B64D64C58D0C7ED03AD5A3AF60; G_B4_1 = L_8; goto IL_0052; } } { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_10 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_10); G_B5_0 = (((int32_t)((int32_t)(((RuntimeArray *)L_10)->max_length)))); G_B5_1 = G_B3_0; G_B5_2 = G_B3_1; goto IL_0053; } IL_0052: { G_B5_0 = 0; G_B5_1 = G_B4_0; G_B5_2 = G_B4_1; } IL_0053: { NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)G_B5_2); SerializationInfo_AddValue_m7C73917D9DC4B8FE4AFEF4BA8EBEDAB046A8D0BD((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)G_B5_2, (String_t*)G_B5_1, (int32_t)G_B5_0, /*hidden argument*/NULL); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_11 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); if (!L_11) { goto IL_008a; } } { NullCheck((Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)__this); int32_t L_12 = (( int32_t (*) (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)->methodPointer)((Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)); KeyValuePair_2U5BU5D_tAE7F87DCEA5EC8AE3923ACF937141910554CD02E* L_13 = (KeyValuePair_2U5BU5D_tAE7F87DCEA5EC8AE3923ACF937141910554CD02E*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 24), (uint32_t)L_12); V_0 = (KeyValuePair_2U5BU5D_tAE7F87DCEA5EC8AE3923ACF937141910554CD02E*)L_13; KeyValuePair_2U5BU5D_tAE7F87DCEA5EC8AE3923ACF937141910554CD02E* L_14 = V_0; NullCheck((Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)__this); (( void (*) (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *, KeyValuePair_2U5BU5D_tAE7F87DCEA5EC8AE3923ACF937141910554CD02E*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 25)->methodPointer)((Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)__this, (KeyValuePair_2U5BU5D_tAE7F87DCEA5EC8AE3923ACF937141910554CD02E*)L_14, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 25)); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_15 = ___info0; KeyValuePair_2U5BU5D_tAE7F87DCEA5EC8AE3923ACF937141910554CD02E* L_16 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_17 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 26)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_18 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_17, /*hidden argument*/NULL); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_15); SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_15, (String_t*)_stringLiteral1D89254A2BC78C1FF41C2F6767A0E00EE126B3BF, (RuntimeObject *)(RuntimeObject *)L_16, (Type_t *)L_18, /*hidden argument*/NULL); } IL_008a: { return; } } // System.Int32 System.Collections.Generic.Dictionary`2<System.Object,System.Boolean>::FindEntry(TKey) extern "C" IL2CPP_METHOD_ATTR int32_t Dictionary_2_FindEntry_mCB33BF535EAD1D94B3620E0E1794BA27836D012A_gshared (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_FindEntry_mCB33BF535EAD1D94B3620E0E1794BA27836D012A_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_0013; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_FindEntry_mCB33BF535EAD1D94B3620E0E1794BA27836D012A_RuntimeMethod_var); } IL_0013: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); if (!L_2) { goto IL_008d; } } { RuntimeObject* L_3 = (RuntimeObject*)__this->get_comparer_6(); RuntimeObject * L_4 = ___key0; NullCheck((RuntimeObject*)L_3); int32_t L_5 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Object>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28), (RuntimeObject*)L_3, (RuntimeObject *)L_4); V_0 = (int32_t)((int32_t)((int32_t)L_5&(int32_t)((int32_t)2147483647LL))); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_6 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_7 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_8); NullCheck(L_6); int32_t L_9 = ((int32_t)((int32_t)L_7%(int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length)))))); int32_t L_10 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_9)); V_1 = (int32_t)L_10; goto IL_0089; } IL_0042: { EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_11 = (EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D*)__this->get_entries_1(); int32_t L_12 = V_1; NullCheck(L_11); int32_t L_13 = (int32_t)((L_11)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_12)))->get_hashCode_0(); int32_t L_14 = V_0; if ((!(((uint32_t)L_13) == ((uint32_t)L_14)))) { goto IL_0077; } } { RuntimeObject* L_15 = (RuntimeObject*)__this->get_comparer_6(); EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_16 = (EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D*)__this->get_entries_1(); int32_t L_17 = V_1; NullCheck(L_16); RuntimeObject * L_18 = (RuntimeObject *)((L_16)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_17)))->get_key_2(); RuntimeObject * L_19 = ___key0; NullCheck((RuntimeObject*)L_15); bool L_20 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.Generic.IEqualityComparer`1<System.Object>::Equals(T,T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28), (RuntimeObject*)L_15, (RuntimeObject *)L_18, (RuntimeObject *)L_19); if (!L_20) { goto IL_0077; } } { int32_t L_21 = V_1; return L_21; } IL_0077: { EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_22 = (EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D*)__this->get_entries_1(); int32_t L_23 = V_1; NullCheck(L_22); int32_t L_24 = (int32_t)((L_22)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_23)))->get_next_1(); V_1 = (int32_t)L_24; } IL_0089: { int32_t L_25 = V_1; if ((((int32_t)L_25) >= ((int32_t)0))) { goto IL_0042; } } IL_008d: { return (-1); } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Boolean>::Initialize(System.Int32) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_Initialize_mB3F71C5A7488244E3335244576D2698A4D893154_gshared (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * __this, int32_t ___capacity0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Initialize_mB3F71C5A7488244E3335244576D2698A4D893154_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = ___capacity0; IL2CPP_RUNTIME_CLASS_INIT(HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_il2cpp_TypeInfo_var); int32_t L_1 = HashHelpers_GetPrime_m743D7006C2BCBADC1DC8CACF7C5B78C9F6B38297((int32_t)L_0, /*hidden argument*/NULL); V_0 = (int32_t)L_1; int32_t L_2 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_3 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)L_2); __this->set_buckets_0(L_3); V_1 = (int32_t)0; goto IL_0024; } IL_0017: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_4 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_5 = V_1; NullCheck(L_4); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (int32_t)(-1)); int32_t L_6 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1)); } IL_0024: { int32_t L_7 = V_1; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_8); if ((((int32_t)L_7) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length))))))) { goto IL_0017; } } { int32_t L_9 = V_0; EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_10 = (EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 29), (uint32_t)L_9); __this->set_entries_1(L_10); __this->set_freeList_4((-1)); return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Boolean>::TryInsert(TKey,TValue,System.Collections.Generic.InsertionBehavior) extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_TryInsert_m9B40A8CD31233B18046691DBBEA6A853C1141F77_gshared (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * __this, RuntimeObject * ___key0, bool ___value1, uint8_t ___behavior2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_TryInsert_m9B40A8CD31233B18046691DBBEA6A853C1141F77_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_0013; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_TryInsert_m9B40A8CD31233B18046691DBBEA6A853C1141F77_RuntimeMethod_var); } IL_0013: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); if (L_2) { goto IL_0022; } } { NullCheck((Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)__this); (( void (*) (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)__this, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); } IL_0022: { RuntimeObject* L_3 = (RuntimeObject*)__this->get_comparer_6(); RuntimeObject * L_4 = ___key0; NullCheck((RuntimeObject*)L_3); int32_t L_5 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Object>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28), (RuntimeObject*)L_3, (RuntimeObject *)L_4); V_0 = (int32_t)((int32_t)((int32_t)L_5&(int32_t)((int32_t)2147483647LL))); int32_t L_6 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_7 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_7); V_1 = (int32_t)((int32_t)((int32_t)L_6%(int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_7)->max_length)))))); V_2 = (int32_t)0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_9 = V_1; NullCheck(L_8); int32_t L_10 = L_9; int32_t L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); V_4 = (int32_t)L_11; goto IL_00e1; } IL_0051: { EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_12 = (EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D*)__this->get_entries_1(); int32_t L_13 = V_4; NullCheck(L_12); int32_t L_14 = (int32_t)((L_12)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_13)))->get_hashCode_0(); int32_t L_15 = V_0; if ((!(((uint32_t)L_14) == ((uint32_t)L_15)))) { goto IL_00c9; } } { RuntimeObject* L_16 = (RuntimeObject*)__this->get_comparer_6(); EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_17 = (EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D*)__this->get_entries_1(); int32_t L_18 = V_4; NullCheck(L_17); RuntimeObject * L_19 = (RuntimeObject *)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18)))->get_key_2(); RuntimeObject * L_20 = ___key0; NullCheck((RuntimeObject*)L_16); bool L_21 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.Generic.IEqualityComparer`1<System.Object>::Equals(T,T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28), (RuntimeObject*)L_16, (RuntimeObject *)L_19, (RuntimeObject *)L_20); if (!L_21) { goto IL_00c9; } } { uint8_t L_22 = ___behavior2; if ((!(((uint32_t)L_22) == ((uint32_t)1)))) { goto IL_00ad; } } { EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_23 = (EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D*)__this->get_entries_1(); int32_t L_24 = V_4; NullCheck(L_23); bool L_25 = ___value1; ((L_23)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_24)))->set_value_3(L_25); int32_t L_26 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1))); return (bool)1; } IL_00ad: { uint8_t L_27 = ___behavior2; if ((!(((uint32_t)L_27) == ((uint32_t)2)))) { goto IL_00c7; } } { RuntimeObject * L_28 = ___key0; String_t* L_29 = SR_Format_mCDBB594267CC224AB2A69540BBA598151F0642C7((String_t*)_stringLiteral6FD577FD3A1BDC4DA28CD51D7A55EB397CEA3926, (RuntimeObject *)L_28, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_30 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_30, (String_t*)L_29, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_30, NULL, Dictionary_2_TryInsert_m9B40A8CD31233B18046691DBBEA6A853C1141F77_RuntimeMethod_var); } IL_00c7: { return (bool)0; } IL_00c9: { int32_t L_31 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_31, (int32_t)1)); EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_32 = (EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D*)__this->get_entries_1(); int32_t L_33 = V_4; NullCheck(L_32); int32_t L_34 = (int32_t)((L_32)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_33)))->get_next_1(); V_4 = (int32_t)L_34; } IL_00e1: { int32_t L_35 = V_4; if ((((int32_t)L_35) >= ((int32_t)0))) { goto IL_0051; } } { int32_t L_36 = (int32_t)__this->get_freeCount_5(); if ((((int32_t)L_36) <= ((int32_t)0))) { goto IL_0120; } } { int32_t L_37 = (int32_t)__this->get_freeList_4(); V_3 = (int32_t)L_37; EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_38 = (EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D*)__this->get_entries_1(); int32_t L_39 = V_3; NullCheck(L_38); int32_t L_40 = (int32_t)((L_38)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_39)))->get_next_1(); __this->set_freeList_4(L_40); int32_t L_41 = (int32_t)__this->get_freeCount_5(); __this->set_freeCount_5(((int32_t)il2cpp_codegen_subtract((int32_t)L_41, (int32_t)1))); goto IL_0156; } IL_0120: { int32_t L_42 = (int32_t)__this->get_count_2(); EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_43 = (EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D*)__this->get_entries_1(); NullCheck(L_43); if ((!(((uint32_t)L_42) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_43)->max_length)))))))) { goto IL_0141; } } { NullCheck((Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)__this); (( void (*) (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 30)->methodPointer)((Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 30)); int32_t L_44 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_45 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_45); V_1 = (int32_t)((int32_t)((int32_t)L_44%(int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_45)->max_length)))))); } IL_0141: { int32_t L_46 = (int32_t)__this->get_count_2(); V_3 = (int32_t)L_46; int32_t L_47 = (int32_t)__this->get_count_2(); __this->set_count_2(((int32_t)il2cpp_codegen_add((int32_t)L_47, (int32_t)1))); } IL_0156: { EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_48 = (EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D*)__this->get_entries_1(); int32_t L_49 = V_3; NullCheck(L_48); int32_t L_50 = V_0; ((L_48)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_49)))->set_hashCode_0(L_50); EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_51 = (EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D*)__this->get_entries_1(); int32_t L_52 = V_3; NullCheck(L_51); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_53 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_54 = V_1; NullCheck(L_53); int32_t L_55 = L_54; int32_t L_56 = (L_53)->GetAt(static_cast<il2cpp_array_size_t>(L_55)); ((L_51)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_52)))->set_next_1(L_56); EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_57 = (EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D*)__this->get_entries_1(); int32_t L_58 = V_3; NullCheck(L_57); RuntimeObject * L_59 = ___key0; ((L_57)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_58)))->set_key_2(L_59); EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_60 = (EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D*)__this->get_entries_1(); int32_t L_61 = V_3; NullCheck(L_60); bool L_62 = ___value1; ((L_60)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_61)))->set_value_3(L_62); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_63 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_64 = V_1; int32_t L_65 = V_3; NullCheck(L_63); (L_63)->SetAt(static_cast<il2cpp_array_size_t>(L_64), (int32_t)L_65); int32_t L_66 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_66, (int32_t)1))); int32_t L_67 = V_2; if ((((int32_t)L_67) <= ((int32_t)((int32_t)100)))) { goto IL_01ed; } } { RuntimeObject* L_68 = (RuntimeObject*)__this->get_comparer_6(); if (!((NonRandomizedStringEqualityComparer_t92C20503D9C5060A557792ABCCC06EF2DD77E5D9 *)IsInst((RuntimeObject*)L_68, NonRandomizedStringEqualityComparer_t92C20503D9C5060A557792ABCCC06EF2DD77E5D9_il2cpp_TypeInfo_var))) { goto IL_01ed; } } { EqualityComparer_1_tBEFFC6F649A17852373A084880D57CB299084137 * L_69 = EqualityComparer_1_get_Default_m85F378D7298050D5DF422363D5EB30A218B769B7(/*hidden argument*/EqualityComparer_1_get_Default_m85F378D7298050D5DF422363D5EB30A218B769B7_RuntimeMethod_var); __this->set_comparer_6(((RuntimeObject*)Castclass((RuntimeObject*)L_69, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28)))); EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_70 = (EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D*)__this->get_entries_1(); NullCheck(L_70); NullCheck((Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)__this); (( void (*) (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *, int32_t, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)->methodPointer)((Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)__this, (int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_70)->max_length)))), (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)); } IL_01ed: { return (bool)1; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Boolean>::OnDeserialization(System.Object) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_OnDeserialization_m8523985492F528463587BCACA0819813B74E5B86_gshared (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * __this, RuntimeObject * ___sender0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_OnDeserialization_m8523985492F528463587BCACA0819813B74E5B86_MetadataUsageId); s_Il2CppMethodInitialized = true; } SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; KeyValuePair_2U5BU5D_tAE7F87DCEA5EC8AE3923ACF937141910554CD02E* V_3 = NULL; int32_t V_4 = 0; int32_t V_5 = 0; { IL2CPP_RUNTIME_CLASS_INIT(DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00_il2cpp_TypeInfo_var); ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * L_0 = DictionaryHashHelpers_get_SerializationInfoTable_mCF0A53E777EAFE1AA018C02529AFF6D3CDF7A05C(/*hidden argument*/NULL); NullCheck((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_0); ConditionalWeakTable_2_TryGetValue_mDFCB6C303807E3F8998D196F4573870680E81F8B((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_0, (RuntimeObject *)__this, (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 **)(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 **)(&V_0), /*hidden argument*/ConditionalWeakTable_2_TryGetValue_mDFCB6C303807E3F8998D196F4573870680E81F8B_RuntimeMethod_var); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_1 = V_0; if (L_1) { goto IL_0012; } } { return; } IL_0012: { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = V_0; NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_2); int32_t L_3 = SerializationInfo_GetInt32_mB47BD46A0BDBBAF5B47BB62E6EFF8E092E3F3656((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_2, (String_t*)_stringLiteral2DA600BF9404843107A9531694F654E5662959E0, /*hidden argument*/NULL); V_1 = (int32_t)L_3; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_4 = V_0; NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_4); int32_t L_5 = SerializationInfo_GetInt32_mB47BD46A0BDBBAF5B47BB62E6EFF8E092E3F3656((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_4, (String_t*)_stringLiteral35E05A2D28CF03B64D64C58D0C7ED03AD5A3AF60, /*hidden argument*/NULL); V_2 = (int32_t)L_5; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_6 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_7 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 23)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_8 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_7, /*hidden argument*/NULL); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_6); RuntimeObject * L_9 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_6, (String_t*)_stringLiteral8FC94E4F5B71CECE2565D72417AACC804EE27A0D, (Type_t *)L_8, /*hidden argument*/NULL); __this->set_comparer_6(((RuntimeObject*)Castclass((RuntimeObject*)L_9, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28)))); int32_t L_10 = V_2; if (!L_10) { goto IL_010c; } } { int32_t L_11 = V_2; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_12 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)L_11); __this->set_buckets_0(L_12); V_4 = (int32_t)0; goto IL_0071; } IL_0061: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_13 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_14 = V_4; NullCheck(L_13); (L_13)->SetAt(static_cast<il2cpp_array_size_t>(L_14), (int32_t)(-1)); int32_t L_15 = V_4; V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)); } IL_0071: { int32_t L_16 = V_4; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_17 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_17); if ((((int32_t)L_16) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_17)->max_length))))))) { goto IL_0061; } } { int32_t L_18 = V_2; EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_19 = (EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 29), (uint32_t)L_18); __this->set_entries_1(L_19); __this->set_freeList_4((-1)); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_20 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_21 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 26)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_22 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_21, /*hidden argument*/NULL); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_20); RuntimeObject * L_23 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_20, (String_t*)_stringLiteral1D89254A2BC78C1FF41C2F6767A0E00EE126B3BF, (Type_t *)L_22, /*hidden argument*/NULL); V_3 = (KeyValuePair_2U5BU5D_tAE7F87DCEA5EC8AE3923ACF937141910554CD02E*)((KeyValuePair_2U5BU5D_tAE7F87DCEA5EC8AE3923ACF937141910554CD02E*)Castclass((RuntimeObject*)L_23, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 32))); KeyValuePair_2U5BU5D_tAE7F87DCEA5EC8AE3923ACF937141910554CD02E* L_24 = V_3; if (L_24) { goto IL_00b9; } } { SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 * L_25 = (SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 *)il2cpp_codegen_object_new(SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_il2cpp_TypeInfo_var); SerializationException__ctor_m88AAD9671030A8A96AA87CB95701938FBD8F16E1(L_25, (String_t*)_stringLiteral1EB7E67EA75FFC3FCB05A9685FA4F1578DCACCF6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_25, NULL, Dictionary_2_OnDeserialization_m8523985492F528463587BCACA0819813B74E5B86_RuntimeMethod_var); } IL_00b9: { V_5 = (int32_t)0; goto IL_0103; } IL_00be: { KeyValuePair_2U5BU5D_tAE7F87DCEA5EC8AE3923ACF937141910554CD02E* L_26 = V_3; int32_t L_27 = V_5; NullCheck(L_26); RuntimeObject * L_28 = KeyValuePair_2_get_Key_m399ECA62E7496A29A7396211018AD652FF15D930((KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 *)(KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 *)((L_26)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_27))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); if (L_28) { goto IL_00dd; } } { SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 * L_29 = (SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 *)il2cpp_codegen_object_new(SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_il2cpp_TypeInfo_var); SerializationException__ctor_m88AAD9671030A8A96AA87CB95701938FBD8F16E1(L_29, (String_t*)_stringLiteralD6D1BC79DD62E9F1FB9A49A8F76F4BA8AB71AECD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_29, NULL, Dictionary_2_OnDeserialization_m8523985492F528463587BCACA0819813B74E5B86_RuntimeMethod_var); } IL_00dd: { KeyValuePair_2U5BU5D_tAE7F87DCEA5EC8AE3923ACF937141910554CD02E* L_30 = V_3; int32_t L_31 = V_5; NullCheck(L_30); RuntimeObject * L_32 = KeyValuePair_2_get_Key_m399ECA62E7496A29A7396211018AD652FF15D930((KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 *)(KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 *)((L_30)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_31))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); KeyValuePair_2U5BU5D_tAE7F87DCEA5EC8AE3923ACF937141910554CD02E* L_33 = V_3; int32_t L_34 = V_5; NullCheck(L_33); bool L_35 = KeyValuePair_2_get_Value_mE50A05A795484D20F8060413212B29EBADC1EA40((KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 *)(KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 *)((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); NullCheck((Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)__this); (( void (*) (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *, RuntimeObject *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)((Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)__this, (RuntimeObject *)L_32, (bool)L_35, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); int32_t L_36 = V_5; V_5 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_36, (int32_t)1)); } IL_0103: { int32_t L_37 = V_5; KeyValuePair_2U5BU5D_tAE7F87DCEA5EC8AE3923ACF937141910554CD02E* L_38 = V_3; NullCheck(L_38); if ((((int32_t)L_37) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_38)->max_length))))))) { goto IL_00be; } } { goto IL_0113; } IL_010c: { __this->set_buckets_0((Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)NULL); } IL_0113: { int32_t L_39 = V_1; __this->set_version_3(L_39); IL2CPP_RUNTIME_CLASS_INIT(DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00_il2cpp_TypeInfo_var); ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * L_40 = DictionaryHashHelpers_get_SerializationInfoTable_mCF0A53E777EAFE1AA018C02529AFF6D3CDF7A05C(/*hidden argument*/NULL); NullCheck((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_40); ConditionalWeakTable_2_Remove_mD69606977A8C793DEA91E373F7D886E4865D7FBD((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_40, (RuntimeObject *)__this, /*hidden argument*/ConditionalWeakTable_2_Remove_mD69606977A8C793DEA91E373F7D886E4865D7FBD_RuntimeMethod_var); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Boolean>::Resize() extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_Resize_mE8E2B3BB38A803949CFA138DD4DE3A9F4F953234_gshared (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Resize_mE8E2B3BB38A803949CFA138DD4DE3A9F4F953234_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_count_2(); IL2CPP_RUNTIME_CLASS_INIT(HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_il2cpp_TypeInfo_var); int32_t L_1 = HashHelpers_ExpandPrime_m4245F4C95074EAA8F949FB3B734F611A533A6A0D((int32_t)L_0, /*hidden argument*/NULL); NullCheck((Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)__this); (( void (*) (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *, int32_t, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)->methodPointer)((Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)__this, (int32_t)L_1, (bool)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Boolean>::Resize(System.Int32,System.Boolean) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_Resize_mA2FD605E8A02FF8A94F34F5F187810418A11EA13_gshared (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * __this, int32_t ___newSize0, bool ___forceNewHashCodes1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Resize_mA2FD605E8A02FF8A94F34F5F187810418A11EA13_MetadataUsageId); s_Il2CppMethodInitialized = true; } Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* V_0 = NULL; EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* V_1 = NULL; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; int32_t V_5 = 0; { int32_t L_0 = ___newSize0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_1 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)L_0); V_0 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)L_1; V_2 = (int32_t)0; goto IL_0013; } IL_000b: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = V_0; int32_t L_3 = V_2; NullCheck(L_2); (L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (int32_t)(-1)); int32_t L_4 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)); } IL_0013: { int32_t L_5 = V_2; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_6 = V_0; NullCheck(L_6); if ((((int32_t)L_5) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_6)->max_length))))))) { goto IL_000b; } } { int32_t L_7 = ___newSize0; EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_8 = (EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 29), (uint32_t)L_7); V_1 = (EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D*)L_8; EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_9 = (EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D*)__this->get_entries_1(); EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_10 = V_1; int32_t L_11 = (int32_t)__this->get_count_2(); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_9, (int32_t)0, (RuntimeArray *)(RuntimeArray *)L_10, (int32_t)0, (int32_t)L_11, /*hidden argument*/NULL); bool L_12 = ___forceNewHashCodes1; if (!L_12) { goto IL_0080; } } { V_3 = (int32_t)0; goto IL_0077; } IL_003b: { EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_13 = V_1; int32_t L_14 = V_3; NullCheck(L_13); int32_t L_15 = (int32_t)((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_hashCode_0(); if ((((int32_t)L_15) == ((int32_t)(-1)))) { goto IL_0073; } } { EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_16 = V_1; int32_t L_17 = V_3; NullCheck(L_16); RuntimeObject* L_18 = (RuntimeObject*)__this->get_comparer_6(); EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_19 = V_1; int32_t L_20 = V_3; NullCheck(L_19); RuntimeObject * L_21 = (RuntimeObject *)((L_19)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_20)))->get_key_2(); NullCheck((RuntimeObject*)L_18); int32_t L_22 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Object>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28), (RuntimeObject*)L_18, (RuntimeObject *)L_21); ((L_16)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_17)))->set_hashCode_0(((int32_t)((int32_t)L_22&(int32_t)((int32_t)2147483647LL)))); } IL_0073: { int32_t L_23 = V_3; V_3 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); } IL_0077: { int32_t L_24 = V_3; int32_t L_25 = (int32_t)__this->get_count_2(); if ((((int32_t)L_24) < ((int32_t)L_25))) { goto IL_003b; } } IL_0080: { V_4 = (int32_t)0; goto IL_00c3; } IL_0085: { EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_26 = V_1; int32_t L_27 = V_4; NullCheck(L_26); int32_t L_28 = (int32_t)((L_26)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_27)))->get_hashCode_0(); if ((((int32_t)L_28) < ((int32_t)0))) { goto IL_00bd; } } { EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_29 = V_1; int32_t L_30 = V_4; NullCheck(L_29); int32_t L_31 = (int32_t)((L_29)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_30)))->get_hashCode_0(); int32_t L_32 = ___newSize0; V_5 = (int32_t)((int32_t)((int32_t)L_31%(int32_t)L_32)); EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_33 = V_1; int32_t L_34 = V_4; NullCheck(L_33); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_35 = V_0; int32_t L_36 = V_5; NullCheck(L_35); int32_t L_37 = L_36; int32_t L_38 = (L_35)->GetAt(static_cast<il2cpp_array_size_t>(L_37)); ((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->set_next_1(L_38); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_39 = V_0; int32_t L_40 = V_5; int32_t L_41 = V_4; NullCheck(L_39); (L_39)->SetAt(static_cast<il2cpp_array_size_t>(L_40), (int32_t)L_41); } IL_00bd: { int32_t L_42 = V_4; V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)1)); } IL_00c3: { int32_t L_43 = V_4; int32_t L_44 = (int32_t)__this->get_count_2(); if ((((int32_t)L_43) < ((int32_t)L_44))) { goto IL_0085; } } { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_45 = V_0; __this->set_buckets_0(L_45); EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_46 = V_1; __this->set_entries_1(L_46); return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Boolean>::Remove(TKey) extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_Remove_m81D07E61043BC96387C26FEFF8919A165AF761A7_gshared (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Remove_m81D07E61043BC96387C26FEFF8919A165AF761A7_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_0013; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_Remove_m81D07E61043BC96387C26FEFF8919A165AF761A7_RuntimeMethod_var); } IL_0013: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); if (!L_2) { goto IL_015d; } } { RuntimeObject* L_3 = (RuntimeObject*)__this->get_comparer_6(); RuntimeObject * L_4 = ___key0; NullCheck((RuntimeObject*)L_3); int32_t L_5 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Object>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28), (RuntimeObject*)L_3, (RuntimeObject *)L_4); V_0 = (int32_t)((int32_t)((int32_t)L_5&(int32_t)((int32_t)2147483647LL))); int32_t L_6 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_7 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_7); V_1 = (int32_t)((int32_t)((int32_t)L_6%(int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_7)->max_length)))))); V_2 = (int32_t)(-1); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_9 = V_1; NullCheck(L_8); int32_t L_10 = L_9; int32_t L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); V_3 = (int32_t)L_11; goto IL_0156; } IL_004c: { EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_12 = (EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D*)__this->get_entries_1(); int32_t L_13 = V_3; NullCheck(L_12); int32_t L_14 = (int32_t)((L_12)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_13)))->get_hashCode_0(); int32_t L_15 = V_0; if ((!(((uint32_t)L_14) == ((uint32_t)L_15)))) { goto IL_0142; } } { RuntimeObject* L_16 = (RuntimeObject*)__this->get_comparer_6(); EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_17 = (EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D*)__this->get_entries_1(); int32_t L_18 = V_3; NullCheck(L_17); RuntimeObject * L_19 = (RuntimeObject *)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18)))->get_key_2(); RuntimeObject * L_20 = ___key0; NullCheck((RuntimeObject*)L_16); bool L_21 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.Generic.IEqualityComparer`1<System.Object>::Equals(T,T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28), (RuntimeObject*)L_16, (RuntimeObject *)L_19, (RuntimeObject *)L_20); if (!L_21) { goto IL_0142; } } { int32_t L_22 = V_2; if ((((int32_t)L_22) >= ((int32_t)0))) { goto IL_00a4; } } { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_23 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_24 = V_1; EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_25 = (EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D*)__this->get_entries_1(); int32_t L_26 = V_3; NullCheck(L_25); int32_t L_27 = (int32_t)((L_25)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_26)))->get_next_1(); NullCheck(L_23); (L_23)->SetAt(static_cast<il2cpp_array_size_t>(L_24), (int32_t)L_27); goto IL_00c6; } IL_00a4: { EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_28 = (EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D*)__this->get_entries_1(); int32_t L_29 = V_2; NullCheck(L_28); EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_30 = (EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D*)__this->get_entries_1(); int32_t L_31 = V_3; NullCheck(L_30); int32_t L_32 = (int32_t)((L_30)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_31)))->get_next_1(); ((L_28)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_29)))->set_next_1(L_32); } IL_00c6: { EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_33 = (EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D*)__this->get_entries_1(); int32_t L_34 = V_3; NullCheck(L_33); ((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->set_hashCode_0((-1)); EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_35 = (EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D*)__this->get_entries_1(); int32_t L_36 = V_3; NullCheck(L_35); int32_t L_37 = (int32_t)__this->get_freeList_4(); ((L_35)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_36)))->set_next_1(L_37); EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_38 = (EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D*)__this->get_entries_1(); int32_t L_39 = V_3; NullCheck(L_38); RuntimeObject ** L_40 = (RuntimeObject **)((L_38)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_39)))->get_address_of_key_2(); il2cpp_codegen_initobj(L_40, sizeof(RuntimeObject *)); EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_41 = (EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D*)__this->get_entries_1(); int32_t L_42 = V_3; NullCheck(L_41); bool* L_43 = (bool*)((L_41)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_42)))->get_address_of_value_3(); il2cpp_codegen_initobj(L_43, sizeof(bool)); int32_t L_44 = V_3; __this->set_freeList_4(L_44); int32_t L_45 = (int32_t)__this->get_freeCount_5(); __this->set_freeCount_5(((int32_t)il2cpp_codegen_add((int32_t)L_45, (int32_t)1))); int32_t L_46 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_46, (int32_t)1))); return (bool)1; } IL_0142: { int32_t L_47 = V_3; V_2 = (int32_t)L_47; EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_48 = (EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D*)__this->get_entries_1(); int32_t L_49 = V_3; NullCheck(L_48); int32_t L_50 = (int32_t)((L_48)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_49)))->get_next_1(); V_3 = (int32_t)L_50; } IL_0156: { int32_t L_51 = V_3; if ((((int32_t)L_51) >= ((int32_t)0))) { goto IL_004c; } } IL_015d: { return (bool)0; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Boolean>::TryGetValue(TKey,TValue&) extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_mC5621E9D987E16C3F1F906063CC444772247F9FB_gshared (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * __this, RuntimeObject * ___key0, bool* ___value1, const RuntimeMethod* method) { int32_t V_0 = 0; { RuntimeObject * L_0 = ___key0; NullCheck((Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0025; } } { bool* L_3 = ___value1; EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_4 = (EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D*)__this->get_entries_1(); int32_t L_5 = V_0; NullCheck(L_4); bool L_6 = (bool)((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_value_3(); *(bool*)L_3 = L_6; return (bool)1; } IL_0025: { bool* L_7 = ___value1; il2cpp_codegen_initobj(L_7, sizeof(bool)); return (bool)0; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Boolean>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.get_IsReadOnly() extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_get_IsReadOnly_m0DACBCA8AAC7C36A092B038CC9C0C9FDB1CBD161_gshared (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Boolean>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_CopyTo_mB4BAA031D419D23D58DFE2346F1E632D1F6FE595_gshared (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * __this, KeyValuePair_2U5BU5D_tAE7F87DCEA5EC8AE3923ACF937141910554CD02E* ___array0, int32_t ___index1, const RuntimeMethod* method) { { KeyValuePair_2U5BU5D_tAE7F87DCEA5EC8AE3923ACF937141910554CD02E* L_0 = ___array0; int32_t L_1 = ___index1; NullCheck((Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)__this); (( void (*) (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *, KeyValuePair_2U5BU5D_tAE7F87DCEA5EC8AE3923ACF937141910554CD02E*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 25)->methodPointer)((Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)__this, (KeyValuePair_2U5BU5D_tAE7F87DCEA5EC8AE3923ACF937141910554CD02E*)L_0, (int32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 25)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Boolean>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_ICollection_CopyTo_m4E9B4A3D0C8E4D854E2AAD7917084FE67E5BB55A_gshared (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_System_Collections_ICollection_CopyTo_m4E9B4A3D0C8E4D854E2AAD7917084FE67E5BB55A_MetadataUsageId); s_Il2CppMethodInitialized = true; } KeyValuePair_2U5BU5D_tAE7F87DCEA5EC8AE3923ACF937141910554CD02E* V_0 = NULL; DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56* V_1 = NULL; EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* V_2 = NULL; int32_t V_3 = 0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_4 = NULL; int32_t V_5 = 0; EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* V_6 = NULL; int32_t V_7 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_m4E9B4A3D0C8E4D854E2AAD7917084FE67E5BB55A_RuntimeMethod_var); } IL_000e: { RuntimeArray * L_2 = ___array0; NullCheck((RuntimeArray *)L_2); int32_t L_3 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)L_2, /*hidden argument*/NULL); if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_0027; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_4 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_4, (String_t*)_stringLiteral2D77BE6D598A0A9376398980E66D10E319F1B52A, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_m4E9B4A3D0C8E4D854E2AAD7917084FE67E5BB55A_RuntimeMethod_var); } IL_0027: { RuntimeArray * L_5 = ___array0; NullCheck((RuntimeArray *)L_5); int32_t L_6 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)L_5, (int32_t)0, /*hidden argument*/NULL); if (!L_6) { goto IL_0040; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_7 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_7, (String_t*)_stringLiteralC363992023785AF013BBCF2E20C19D9835184F82, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_m4E9B4A3D0C8E4D854E2AAD7917084FE67E5BB55A_RuntimeMethod_var); } IL_0040: { int32_t L_8 = ___index1; if ((((int32_t)L_8) < ((int32_t)0))) { goto IL_004d; } } { int32_t L_9 = ___index1; RuntimeArray * L_10 = ___array0; NullCheck((RuntimeArray *)L_10); int32_t L_11 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_10, /*hidden argument*/NULL); if ((((int32_t)L_9) <= ((int32_t)L_11))) { goto IL_0063; } } IL_004d: { int32_t L_12 = ___index1; int32_t L_13 = L_12; RuntimeObject * L_14 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_13); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_15 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378(L_15, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, (RuntimeObject *)L_14, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_m4E9B4A3D0C8E4D854E2AAD7917084FE67E5BB55A_RuntimeMethod_var); } IL_0063: { RuntimeArray * L_16 = ___array0; NullCheck((RuntimeArray *)L_16); int32_t L_17 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_16, /*hidden argument*/NULL); int32_t L_18 = ___index1; NullCheck((Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)__this); int32_t L_19 = (( int32_t (*) (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)->methodPointer)((Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_18))) >= ((int32_t)L_19))) { goto IL_007e; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_20 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_20, (String_t*)_stringLiteralBC80A496F1C479B70F6EE2BF2F0C3C05463301B8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_m4E9B4A3D0C8E4D854E2AAD7917084FE67E5BB55A_RuntimeMethod_var); } IL_007e: { RuntimeArray * L_21 = ___array0; V_0 = (KeyValuePair_2U5BU5D_tAE7F87DCEA5EC8AE3923ACF937141910554CD02E*)((KeyValuePair_2U5BU5D_tAE7F87DCEA5EC8AE3923ACF937141910554CD02E*)IsInst((RuntimeObject*)L_21, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 32))); KeyValuePair_2U5BU5D_tAE7F87DCEA5EC8AE3923ACF937141910554CD02E* L_22 = V_0; if (!L_22) { goto IL_0091; } } { KeyValuePair_2U5BU5D_tAE7F87DCEA5EC8AE3923ACF937141910554CD02E* L_23 = V_0; int32_t L_24 = ___index1; NullCheck((Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)__this); (( void (*) (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *, KeyValuePair_2U5BU5D_tAE7F87DCEA5EC8AE3923ACF937141910554CD02E*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 25)->methodPointer)((Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)__this, (KeyValuePair_2U5BU5D_tAE7F87DCEA5EC8AE3923ACF937141910554CD02E*)L_23, (int32_t)L_24, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 25)); return; } IL_0091: { RuntimeArray * L_25 = ___array0; if (!((DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56*)IsInst((RuntimeObject*)L_25, DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56_il2cpp_TypeInfo_var))) { goto IL_00fb; } } { RuntimeArray * L_26 = ___array0; V_1 = (DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56*)((DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56*)IsInst((RuntimeObject*)L_26, DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56_il2cpp_TypeInfo_var)); EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_27 = (EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D*)__this->get_entries_1(); V_2 = (EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D*)L_27; V_3 = (int32_t)0; goto IL_00f1; } IL_00ab: { EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_28 = V_2; int32_t L_29 = V_3; NullCheck(L_28); int32_t L_30 = (int32_t)((L_28)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_29)))->get_hashCode_0(); if ((((int32_t)L_30) < ((int32_t)0))) { goto IL_00ed; } } { DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56* L_31 = V_1; int32_t L_32 = ___index1; int32_t L_33 = (int32_t)L_32; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)1)); EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_34 = V_2; int32_t L_35 = V_3; NullCheck(L_34); RuntimeObject * L_36 = (RuntimeObject *)((L_34)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_35)))->get_key_2(); EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_37 = V_2; int32_t L_38 = V_3; NullCheck(L_37); bool L_39 = (bool)((L_37)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_38)))->get_value_3(); bool L_40 = L_39; RuntimeObject * L_41 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 17), &L_40); DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_42; memset(&L_42, 0, sizeof(L_42)); DictionaryEntry__ctor_m67BC38CD2B85F134F3EB2473270CDD3933F7CD9B((&L_42), (RuntimeObject *)L_36, (RuntimeObject *)L_41, /*hidden argument*/NULL); NullCheck(L_31); (L_31)->SetAt(static_cast<il2cpp_array_size_t>(L_33), (DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 )L_42); } IL_00ed: { int32_t L_43 = V_3; V_3 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_43, (int32_t)1)); } IL_00f1: { int32_t L_44 = V_3; int32_t L_45 = (int32_t)__this->get_count_2(); if ((((int32_t)L_44) < ((int32_t)L_45))) { goto IL_00ab; } } { return; } IL_00fb: { RuntimeArray * L_46 = ___array0; V_4 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)L_46, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_47 = V_4; if (L_47) { goto IL_0117; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_48 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_48, (String_t*)_stringLiteralC44D4E6C6AF3517A1CC72EDF7D1A5FFD7E3368F1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_48, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_m4E9B4A3D0C8E4D854E2AAD7917084FE67E5BB55A_RuntimeMethod_var); } IL_0117: { } IL_0118: try { // begin try (depth: 1) { int32_t L_49 = (int32_t)__this->get_count_2(); V_5 = (int32_t)L_49; EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_50 = (EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D*)__this->get_entries_1(); V_6 = (EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D*)L_50; V_7 = (int32_t)0; goto IL_0173; } IL_012d: { EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_51 = V_6; int32_t L_52 = V_7; NullCheck(L_51); int32_t L_53 = (int32_t)((L_51)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_52)))->get_hashCode_0(); if ((((int32_t)L_53) < ((int32_t)0))) { goto IL_016d; } } IL_013e: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_54 = V_4; int32_t L_55 = ___index1; int32_t L_56 = (int32_t)L_55; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_56, (int32_t)1)); EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_57 = V_6; int32_t L_58 = V_7; NullCheck(L_57); RuntimeObject * L_59 = (RuntimeObject *)((L_57)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_58)))->get_key_2(); EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_60 = V_6; int32_t L_61 = V_7; NullCheck(L_60); bool L_62 = (bool)((L_60)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_61)))->get_value_3(); KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 L_63; memset(&L_63, 0, sizeof(L_63)); KeyValuePair_2__ctor_mD032180723F13E561F14573BD17CC953DA35AC08((&L_63), (RuntimeObject *)L_59, (bool)L_62, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 20)); KeyValuePair_2_tF975BF5238F06AC9CCA19111DD41484E071258C1 L_64 = L_63; RuntimeObject * L_65 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 19), &L_64); NullCheck(L_54); ArrayElementTypeCheck (L_54, L_65); (L_54)->SetAt(static_cast<il2cpp_array_size_t>(L_56), (RuntimeObject *)L_65); } IL_016d: { int32_t L_66 = V_7; V_7 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_66, (int32_t)1)); } IL_0173: { int32_t L_67 = V_7; int32_t L_68 = V_5; if ((((int32_t)L_67) < ((int32_t)L_68))) { goto IL_012d; } } IL_0179: { goto IL_018c; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (ArrayTypeMismatchException_tE34C1032B089C37399200997F079C640D23D9499_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_017b; throw e; } CATCH_017b: { // begin catch(System.ArrayTypeMismatchException) ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_69 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_69, (String_t*)_stringLiteralC44D4E6C6AF3517A1CC72EDF7D1A5FFD7E3368F1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_69, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_m4E9B4A3D0C8E4D854E2AAD7917084FE67E5BB55A_RuntimeMethod_var); } // end catch (depth: 1) IL_018c: { return; } } // System.Collections.IEnumerator System.Collections.Generic.Dictionary`2<System.Object,System.Boolean>::System.Collections.IEnumerable.GetEnumerator() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_System_Collections_IEnumerable_GetEnumerator_mF802555F40E6FB657461CEF5FC8977726B17F23B_gshared (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * __this, const RuntimeMethod* method) { { Enumerator_t635C134A2671CF22D2FF3CA9F05E125C187D457A L_0; memset(&L_0, 0, sizeof(L_0)); Enumerator__ctor_mE39A5CCC748B75F17EC0442AF275E49D79707F5D((&L_0), (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)__this, (int32_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)); Enumerator_t635C134A2671CF22D2FF3CA9F05E125C187D457A L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 21), &L_1); return (RuntimeObject*)L_2; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Boolean>::System.Collections.ICollection.get_IsSynchronized() extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_ICollection_get_IsSynchronized_m48075318B248157B0C609220424601D6D8F5E633_gshared (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Object System.Collections.Generic.Dictionary`2<System.Object,System.Boolean>::System.Collections.ICollection.get_SyncRoot() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Dictionary_2_System_Collections_ICollection_get_SyncRoot_m23A55068EE7262DEDBF9B6ED9CE82C9A675C20E4_gshared (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_System_Collections_ICollection_get_SyncRoot_m23A55068EE7262DEDBF9B6ED9CE82C9A675C20E4_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = (RuntimeObject *)__this->get__syncRoot_9(); if (L_0) { goto IL_001a; } } { RuntimeObject ** L_1 = (RuntimeObject **)__this->get_address_of__syncRoot_9(); RuntimeObject * L_2 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(L_2, /*hidden argument*/NULL); InterlockedCompareExchangeImpl<RuntimeObject *>((RuntimeObject **)(RuntimeObject **)L_1, (RuntimeObject *)L_2, (RuntimeObject *)NULL); } IL_001a: { RuntimeObject * L_3 = (RuntimeObject *)__this->get__syncRoot_9(); return L_3; } } // System.Object System.Collections.Generic.Dictionary`2<System.Object,System.Boolean>::System.Collections.IDictionary.get_Item(System.Object) extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Dictionary_2_System_Collections_IDictionary_get_Item_mC3B7A14BB17EC249DFB89174B24CEF4278F1474F_gshared (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { int32_t V_0 = 0; { RuntimeObject * L_0 = ___key0; bool L_1 = (( bool (*) (RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 33)->methodPointer)((RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 33)); if (!L_1) { goto IL_0030; } } { RuntimeObject * L_2 = ___key0; NullCheck((Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)__this); int32_t L_3 = (( int32_t (*) (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)__this, (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 27))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); V_0 = (int32_t)L_3; int32_t L_4 = V_0; if ((((int32_t)L_4) < ((int32_t)0))) { goto IL_0030; } } { EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D* L_5 = (EntryU5BU5D_tBE36241A6905439BF7E208D43660133F603C0D2D*)__this->get_entries_1(); int32_t L_6 = V_0; NullCheck(L_5); bool L_7 = (bool)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_value_3(); bool L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 17), &L_8); return L_9; } IL_0030: { return NULL; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Boolean>::System.Collections.IDictionary.set_Item(System.Object,System.Object) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_IDictionary_set_Item_m5A1672C0E4D19A238D5939AFBA5A9C00518BAAE2_gshared (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_System_Collections_IDictionary_set_Item_m5A1672C0E4D19A238D5939AFBA5A9C00518BAAE2_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; RuntimeObject * V_1 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_System_Collections_IDictionary_set_Item_m5A1672C0E4D19A238D5939AFBA5A9C00518BAAE2_RuntimeMethod_var); } IL_000e: { RuntimeObject * L_2 = ___value1; if (L_2) { goto IL_002c; } } { il2cpp_codegen_initobj((&V_0), sizeof(bool)); } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_4, (String_t*)_stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Dictionary_2_System_Collections_IDictionary_set_Item_m5A1672C0E4D19A238D5939AFBA5A9C00518BAAE2_RuntimeMethod_var); } IL_002c: { } IL_002d: try { // begin try (depth: 1) { RuntimeObject * L_5 = ___key0; V_1 = (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 27))); } IL_0034: try { // begin try (depth: 2) RuntimeObject * L_6 = V_1; RuntimeObject * L_7 = ___value1; NullCheck((Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)__this); (( void (*) (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *, RuntimeObject *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 35)->methodPointer)((Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)__this, (RuntimeObject *)L_6, (bool)((*(bool*)((bool*)UnBox(L_7, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 17))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 35)); goto IL_0064; } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0043; throw e; } CATCH_0043: { // begin catch(System.InvalidCastException) RuntimeObject * L_8 = ___value1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_9 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 36)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_10 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_9, /*hidden argument*/NULL); String_t* L_11 = SR_Format_m2DD0EA1F52576669B34B03CDB3D441631E1CA76C((String_t*)_stringLiteralFA5354A55A2D5AE97DEF68A54DFDDBF37A452FD6, (RuntimeObject *)L_8, (RuntimeObject *)L_10, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_12, (String_t*)L_11, (String_t*)_stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, NULL, Dictionary_2_System_Collections_IDictionary_set_Item_m5A1672C0E4D19A238D5939AFBA5A9C00518BAAE2_RuntimeMethod_var); } // end catch (depth: 2) IL_0064: { goto IL_0087; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0066; throw e; } CATCH_0066: { // begin catch(System.InvalidCastException) RuntimeObject * L_13 = ___key0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 37)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_14, /*hidden argument*/NULL); String_t* L_16 = SR_Format_m2DD0EA1F52576669B34B03CDB3D441631E1CA76C((String_t*)_stringLiteralFA5354A55A2D5AE97DEF68A54DFDDBF37A452FD6, (RuntimeObject *)L_13, (RuntimeObject *)L_15, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_17 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_17, (String_t*)L_16, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, NULL, Dictionary_2_System_Collections_IDictionary_set_Item_m5A1672C0E4D19A238D5939AFBA5A9C00518BAAE2_RuntimeMethod_var); } // end catch (depth: 1) IL_0087: { return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Boolean>::IsCompatibleKey(System.Object) extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_IsCompatibleKey_mDD88D1EF85F901FA7627FED4AEC56AD0FC31B8B9_gshared (RuntimeObject * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_IsCompatibleKey_mDD88D1EF85F901FA7627FED4AEC56AD0FC31B8B9_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_IsCompatibleKey_mDD88D1EF85F901FA7627FED4AEC56AD0FC31B8B9_RuntimeMethod_var); } IL_000e: { RuntimeObject * L_2 = ___key0; return (bool)((!(((RuntimeObject*)(RuntimeObject *)((RuntimeObject *)IsInst((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 27)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0); } } // System.Collections.IDictionaryEnumerator System.Collections.Generic.Dictionary`2<System.Object,System.Boolean>::System.Collections.IDictionary.GetEnumerator() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_System_Collections_IDictionary_GetEnumerator_m1B3155653030FF01AFF0753834B02547A640289F_gshared (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 * __this, const RuntimeMethod* method) { { Enumerator_t635C134A2671CF22D2FF3CA9F05E125C187D457A L_0; memset(&L_0, 0, sizeof(L_0)); Enumerator__ctor_mE39A5CCC748B75F17EC0442AF275E49D79707F5D((&L_0), (Dictionary_2_t67B76EE53FF18810AB6822EF82D44ADD0E707F21 *)__this, (int32_t)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)); Enumerator_t635C134A2671CF22D2FF3CA9F05E125C187D457A L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 21), &L_1); return (RuntimeObject*)L_2; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::.ctor() extern "C" IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m56FBD260A4D190AD833E9B108B1E80A574AA62C4_gshared (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * __this, const RuntimeMethod* method) { { NullCheck((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this); (( void (*) (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this, (int32_t)0, (RuntimeObject*)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::.ctor(System.Int32) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2__ctor_mF02B4C324AA9A1B393AE4D1D992892591C96E988_gshared (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * __this, int32_t ___capacity0, const RuntimeMethod* method) { { int32_t L_0 = ___capacity0; NullCheck((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this); (( void (*) (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this, (int32_t)L_0, (RuntimeObject*)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::.ctor(System.Collections.Generic.IEqualityComparer`1<TKey>) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2__ctor_mDD1137A3D7E0D3991BCFA8C2BF359B1DD536EE70_gshared (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___comparer0; NullCheck((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this); (( void (*) (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this, (int32_t)0, (RuntimeObject*)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::.ctor(System.Int32,System.Collections.Generic.IEqualityComparer`1<TKey>) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2__ctor_mAED6AA22D9A0ACBD19E2634A4FCE7CCC40DE3E0C_gshared (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * __this, int32_t ___capacity0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2__ctor_mAED6AA22D9A0ACBD19E2634A4FCE7CCC40DE3E0C_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* G_B6_0 = NULL; Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * G_B6_1 = NULL; RuntimeObject* G_B5_0 = NULL; Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * G_B5_1 = NULL; { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); int32_t L_0 = ___capacity0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0020; } } { int32_t L_1 = ___capacity0; int32_t L_2 = L_1; RuntimeObject * L_3 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_2); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_4 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378(L_4, (String_t*)_stringLiteral7CB1F56D3FBE09E809244FC8E13671CD876E3860, (RuntimeObject *)L_3, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Dictionary_2__ctor_mAED6AA22D9A0ACBD19E2634A4FCE7CCC40DE3E0C_RuntimeMethod_var); } IL_0020: { int32_t L_5 = ___capacity0; if ((((int32_t)L_5) <= ((int32_t)0))) { goto IL_002b; } } { int32_t L_6 = ___capacity0; NullCheck((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this); (( void (*) (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this, (int32_t)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); } IL_002b: { RuntimeObject* L_7 = ___comparer1; RuntimeObject* L_8 = (RuntimeObject*)L_7; G_B5_0 = L_8; G_B5_1 = ((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)(__this)); if (L_8) { G_B6_0 = L_8; G_B6_1 = ((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)(__this)); goto IL_0036; } } { EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * L_9 = (( EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); G_B6_0 = ((RuntimeObject*)(L_9)); G_B6_1 = ((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)(G_B5_1)); } IL_0036: { NullCheck(G_B6_1); G_B6_1->set_comparer_6(G_B6_0); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m1494873804A09765CBC8D83EE8788E490B7F7A18_gshared (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2__ctor_m1494873804A09765CBC8D83EE8788E490B7F7A18_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00_il2cpp_TypeInfo_var); ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * L_0 = DictionaryHashHelpers_get_SerializationInfoTable_mCF0A53E777EAFE1AA018C02529AFF6D3CDF7A05C(/*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_1 = ___info0; NullCheck((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_0); ConditionalWeakTable_2_Add_mCC3585BE91A7BDFC49EEFDE4C11173A36D1FB5FE((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_0, (RuntimeObject *)__this, (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_1, /*hidden argument*/ConditionalWeakTable_2_Add_mCC3585BE91A7BDFC49EEFDE4C11173A36D1FB5FE_RuntimeMethod_var); return; } } // System.Int32 System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::get_Count() extern "C" IL2CPP_METHOD_ATTR int32_t Dictionary_2_get_Count_m8ACFA67F7D08FCE7BA7985290060ACF1E962BCF4_gshared (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_count_2(); int32_t L_1 = (int32_t)__this->get_freeCount_5(); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)); } } // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::get_Keys() extern "C" IL2CPP_METHOD_ATTR KeyCollection_tEECFF3D52DBAFA05FAD1589D36F0A8EEF9E2670E * Dictionary_2_get_Keys_m1F1CCCDEF680E8E3B51DA7443180F2C0C9F8095A_gshared (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * __this, const RuntimeMethod* method) { { KeyCollection_tEECFF3D52DBAFA05FAD1589D36F0A8EEF9E2670E * L_0 = (KeyCollection_tEECFF3D52DBAFA05FAD1589D36F0A8EEF9E2670E *)__this->get_keys_7(); if (L_0) { goto IL_0014; } } { KeyCollection_tEECFF3D52DBAFA05FAD1589D36F0A8EEF9E2670E * L_1 = (KeyCollection_tEECFF3D52DBAFA05FAD1589D36F0A8EEF9E2670E *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4)); (( void (*) (KeyCollection_tEECFF3D52DBAFA05FAD1589D36F0A8EEF9E2670E *, Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)(L_1, (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); __this->set_keys_7(L_1); } IL_0014: { KeyCollection_tEECFF3D52DBAFA05FAD1589D36F0A8EEF9E2670E * L_2 = (KeyCollection_tEECFF3D52DBAFA05FAD1589D36F0A8EEF9E2670E *)__this->get_keys_7(); return L_2; } } // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::get_Values() extern "C" IL2CPP_METHOD_ATTR ValueCollection_t7B108E5949AABED7EBC85ED1016365781619DAB7 * Dictionary_2_get_Values_m69CA338C9AF8F5E996EFD959B98DD005ABD5581B_gshared (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * __this, const RuntimeMethod* method) { { ValueCollection_t7B108E5949AABED7EBC85ED1016365781619DAB7 * L_0 = (ValueCollection_t7B108E5949AABED7EBC85ED1016365781619DAB7 *)__this->get_values_8(); if (L_0) { goto IL_0014; } } { ValueCollection_t7B108E5949AABED7EBC85ED1016365781619DAB7 * L_1 = (ValueCollection_t7B108E5949AABED7EBC85ED1016365781619DAB7 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)); (( void (*) (ValueCollection_t7B108E5949AABED7EBC85ED1016365781619DAB7 *, Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)(L_1, (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)); __this->set_values_8(L_1); } IL_0014: { ValueCollection_t7B108E5949AABED7EBC85ED1016365781619DAB7 * L_2 = (ValueCollection_t7B108E5949AABED7EBC85ED1016365781619DAB7 *)__this->get_values_8(); return L_2; } } // TValue System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::get_Item(TKey) extern "C" IL2CPP_METHOD_ATTR int32_t Dictionary_2_get_Item_m6F2BB7FC61476D210FA060962086B5B21FB1B6CA_gshared (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_get_Item_m6F2BB7FC61476D210FA060962086B5B21FB1B6CA_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { RuntimeObject * L_0 = ___key0; NullCheck((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_001e; } } { EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_3 = (EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9*)__this->get_entries_1(); int32_t L_4 = V_0; NullCheck(L_3); int32_t L_5 = (int32_t)((L_3)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_4)))->get_value_3(); return L_5; } IL_001e: { KeyNotFoundException_tC28F8B9E114291001A5D135723673C6F292438E2 * L_6 = (KeyNotFoundException_tC28F8B9E114291001A5D135723673C6F292438E2 *)il2cpp_codegen_object_new(KeyNotFoundException_tC28F8B9E114291001A5D135723673C6F292438E2_il2cpp_TypeInfo_var); KeyNotFoundException__ctor_mE9E1C6E6E21842095342C0A2ED65EC201FB4F3C8(L_6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, Dictionary_2_get_Item_m6F2BB7FC61476D210FA060962086B5B21FB1B6CA_RuntimeMethod_var); } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::set_Item(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_mC87D8EECD8406043786CC95870458389CEF82CDF_gshared (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * __this, RuntimeObject * ___key0, int32_t ___value1, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; int32_t L_1 = ___value1; NullCheck((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this); (( bool (*) (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *, RuntimeObject *, int32_t, uint8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this, (RuntimeObject *)L_0, (int32_t)L_1, (uint8_t)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::Add(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_Add_m786A1D72D4E499C0776742D3B2921F47E3A54545_gshared (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * __this, RuntimeObject * ___key0, int32_t ___value1, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; int32_t L_1 = ___value1; NullCheck((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this); (( bool (*) (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *, RuntimeObject *, int32_t, uint8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this, (RuntimeObject *)L_0, (int32_t)L_1, (uint8_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Add(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Add_m15E41B09F8CAD0AEA403CBD7DD194C6D848ADFB5_gshared (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * __this, KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E ___keyValuePair0, const RuntimeMethod* method) { { RuntimeObject * L_0 = KeyValuePair_2_get_Key_mA8E3537C258052C112D227D263B03028DD16CC09((KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)(KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); int32_t L_1 = KeyValuePair_2_get_Value_m24A5AC0D5FC0501CC02B85EB38A56A7C34E9BB9A((KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)(KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); NullCheck((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this); (( void (*) (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *, RuntimeObject *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this, (RuntimeObject *)L_0, (int32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Contains(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Contains_mB07A2FB1AF33B7ADE78CA47B1BCE957A89CB5CE1_gshared (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * __this, KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E ___keyValuePair0, const RuntimeMethod* method) { int32_t V_0 = 0; { RuntimeObject * L_0 = KeyValuePair_2_get_Key_mA8E3537C258052C112D227D263B03028DD16CC09((KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)(KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); NullCheck((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0038; } } { EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3 * L_3 = (( EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)); EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_4 = (EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9*)__this->get_entries_1(); int32_t L_5 = V_0; NullCheck(L_4); int32_t L_6 = (int32_t)((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_value_3(); int32_t L_7 = KeyValuePair_2_get_Value_m24A5AC0D5FC0501CC02B85EB38A56A7C34E9BB9A((KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)(KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); NullCheck((EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3 *)L_3); bool L_8 = VirtFuncInvoker2< bool, int32_t, int32_t >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Int32>::Equals(T,T) */, (EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3 *)L_3, (int32_t)L_6, (int32_t)L_7); if (!L_8) { goto IL_0038; } } { return (bool)1; } IL_0038: { return (bool)0; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Remove(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Remove_m43CB06C0196CEF360237E4A897A194350C1031D4_gshared (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * __this, KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E ___keyValuePair0, const RuntimeMethod* method) { int32_t V_0 = 0; { RuntimeObject * L_0 = KeyValuePair_2_get_Key_mA8E3537C258052C112D227D263B03028DD16CC09((KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)(KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); NullCheck((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0046; } } { EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3 * L_3 = (( EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)); EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_4 = (EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9*)__this->get_entries_1(); int32_t L_5 = V_0; NullCheck(L_4); int32_t L_6 = (int32_t)((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_value_3(); int32_t L_7 = KeyValuePair_2_get_Value_m24A5AC0D5FC0501CC02B85EB38A56A7C34E9BB9A((KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)(KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); NullCheck((EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3 *)L_3); bool L_8 = VirtFuncInvoker2< bool, int32_t, int32_t >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Int32>::Equals(T,T) */, (EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3 *)L_3, (int32_t)L_6, (int32_t)L_7); if (!L_8) { goto IL_0046; } } { RuntimeObject * L_9 = KeyValuePair_2_get_Key_mA8E3537C258052C112D227D263B03028DD16CC09((KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)(KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); NullCheck((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this); (( bool (*) (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16)->methodPointer)((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this, (RuntimeObject *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16)); return (bool)1; } IL_0046: { return (bool)0; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::Clear() extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_Clear_m5BF977C6A62D42CBAFD0B85BFE21694A9676E862_gshared (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * __this, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0 = (int32_t)__this->get_count_2(); if ((((int32_t)L_0) <= ((int32_t)0))) { goto IL_005a; } } { V_0 = (int32_t)0; goto IL_001a; } IL_000d: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_1 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_2 = V_0; NullCheck(L_1); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(L_2), (int32_t)(-1)); int32_t L_3 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)); } IL_001a: { int32_t L_4 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_5 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_5); if ((((int32_t)L_4) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_5)->max_length))))))) { goto IL_000d; } } { EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_6 = (EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9*)__this->get_entries_1(); int32_t L_7 = (int32_t)__this->get_count_2(); Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_6, (int32_t)0, (int32_t)L_7, /*hidden argument*/NULL); __this->set_freeList_4((-1)); __this->set_count_2(0); __this->set_freeCount_5(0); int32_t L_8 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1))); } IL_005a: { return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::ContainsKey(TKey) extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_ContainsKey_mB52B1B96EEFC5261F10998A81DAA5A02ED025265_gshared (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; NullCheck((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); return (bool)((((int32_t)((((int32_t)L_1) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::ContainsValue(TValue) extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_ContainsValue_mE373B80901F1E34ED974A222A0BC5C3B0E98D382_gshared (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * __this, int32_t ___value0, const RuntimeMethod* method) { int32_t V_0 = 0; EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3 * V_1 = NULL; int32_t V_2 = 0; { goto IL_0049; } { V_0 = (int32_t)0; goto IL_003e; } IL_000c: { EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_1 = (EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9*)__this->get_entries_1(); int32_t L_2 = V_0; NullCheck(L_1); int32_t L_3 = (int32_t)((L_1)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_2)))->get_hashCode_0(); if ((((int32_t)L_3) < ((int32_t)0))) { goto IL_003a; } } { EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_4 = (EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9*)__this->get_entries_1(); int32_t L_5 = V_0; NullCheck(L_4); int32_t L_6 = (int32_t)((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_value_3(); goto IL_003a; } { return (bool)1; } IL_003a: { int32_t L_7 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1)); } IL_003e: { int32_t L_8 = V_0; int32_t L_9 = (int32_t)__this->get_count_2(); if ((((int32_t)L_8) < ((int32_t)L_9))) { goto IL_000c; } } { goto IL_0090; } IL_0049: { EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3 * L_10 = (( EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)); V_1 = (EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3 *)L_10; V_2 = (int32_t)0; goto IL_0087; } IL_0053: { EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_11 = (EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9*)__this->get_entries_1(); int32_t L_12 = V_2; NullCheck(L_11); int32_t L_13 = (int32_t)((L_11)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_12)))->get_hashCode_0(); if ((((int32_t)L_13) < ((int32_t)0))) { goto IL_0083; } } { EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3 * L_14 = V_1; EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_15 = (EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9*)__this->get_entries_1(); int32_t L_16 = V_2; NullCheck(L_15); int32_t L_17 = (int32_t)((L_15)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_16)))->get_value_3(); int32_t L_18 = ___value0; NullCheck((EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3 *)L_14); bool L_19 = VirtFuncInvoker2< bool, int32_t, int32_t >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Int32>::Equals(T,T) */, (EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3 *)L_14, (int32_t)L_17, (int32_t)L_18); if (!L_19) { goto IL_0083; } } { return (bool)1; } IL_0083: { int32_t L_20 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1)); } IL_0087: { int32_t L_21 = V_2; int32_t L_22 = (int32_t)__this->get_count_2(); if ((((int32_t)L_21) < ((int32_t)L_22))) { goto IL_0053; } } IL_0090: { return (bool)0; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_CopyTo_m298A6BF4A9726407DB5C810813C8B9E1FE47512E_gshared (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * __this, KeyValuePair_2U5BU5D_t1336B67B1075C3E1E7713F0436412A73F860ADBB* ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_CopyTo_m298A6BF4A9726407DB5C810813C8B9E1FE47512E_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* V_1 = NULL; int32_t V_2 = 0; { KeyValuePair_2U5BU5D_t1336B67B1075C3E1E7713F0436412A73F860ADBB* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_CopyTo_m298A6BF4A9726407DB5C810813C8B9E1FE47512E_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___index1; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_3 = ___index1; KeyValuePair_2U5BU5D_t1336B67B1075C3E1E7713F0436412A73F860ADBB* L_4 = ___array0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_4)->max_length))))))) { goto IL_002e; } } IL_0018: { int32_t L_5 = ___index1; int32_t L_6 = L_5; RuntimeObject * L_7 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_6); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_8 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378(L_8, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, (RuntimeObject *)L_7, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, Dictionary_2_CopyTo_m298A6BF4A9726407DB5C810813C8B9E1FE47512E_RuntimeMethod_var); } IL_002e: { KeyValuePair_2U5BU5D_t1336B67B1075C3E1E7713F0436412A73F860ADBB* L_9 = ___array0; NullCheck(L_9); int32_t L_10 = ___index1; NullCheck((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this); int32_t L_11 = (( int32_t (*) (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)->methodPointer)((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_9)->max_length)))), (int32_t)L_10))) >= ((int32_t)L_11))) { goto IL_0046; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_12, (String_t*)_stringLiteralBC80A496F1C479B70F6EE2BF2F0C3C05463301B8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, NULL, Dictionary_2_CopyTo_m298A6BF4A9726407DB5C810813C8B9E1FE47512E_RuntimeMethod_var); } IL_0046: { int32_t L_13 = (int32_t)__this->get_count_2(); V_0 = (int32_t)L_13; EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_14 = (EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9*)__this->get_entries_1(); V_1 = (EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9*)L_14; V_2 = (int32_t)0; goto IL_0094; } IL_0058: { EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_15 = V_1; int32_t L_16 = V_2; NullCheck(L_15); int32_t L_17 = (int32_t)((L_15)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_16)))->get_hashCode_0(); if ((((int32_t)L_17) < ((int32_t)0))) { goto IL_0090; } } { KeyValuePair_2U5BU5D_t1336B67B1075C3E1E7713F0436412A73F860ADBB* L_18 = ___array0; int32_t L_19 = ___index1; int32_t L_20 = (int32_t)L_19; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1)); EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_21 = V_1; int32_t L_22 = V_2; NullCheck(L_21); RuntimeObject * L_23 = (RuntimeObject *)((L_21)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_22)))->get_key_2(); EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_24 = V_1; int32_t L_25 = V_2; NullCheck(L_24); int32_t L_26 = (int32_t)((L_24)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_25)))->get_value_3(); KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E L_27; memset(&L_27, 0, sizeof(L_27)); KeyValuePair_2__ctor_m463A67E5B6E5EC73FA4BFA6FE08C52EA7F7B418D((&L_27), (RuntimeObject *)L_23, (int32_t)L_26, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 20)); NullCheck(L_18); (L_18)->SetAt(static_cast<il2cpp_array_size_t>(L_20), (KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E )L_27); } IL_0090: { int32_t L_28 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_28, (int32_t)1)); } IL_0094: { int32_t L_29 = V_2; int32_t L_30 = V_0; if ((((int32_t)L_29) < ((int32_t)L_30))) { goto IL_0058; } } { return; } } // System.Collections.Generic.Dictionary`2/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::GetEnumerator() extern "C" IL2CPP_METHOD_ATTR Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E Dictionary_2_GetEnumerator_mB66B07980C7D37D660EEC338635BC224ADE14877_gshared (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * __this, const RuntimeMethod* method) { { Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E L_0; memset(&L_0, 0, sizeof(L_0)); Enumerator__ctor_m6CDFD6E23B852DAFE3CFDCD8C705B8C4C31ABE03((&L_0), (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this, (int32_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)); return L_0; } } // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<TKey,TValue>> System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>.GetEnumerator() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_System_Collections_Generic_IEnumerableU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_GetEnumerator_m322503C466982DE8A1B7EECA74A1BD6A383F633C_gshared (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * __this, const RuntimeMethod* method) { { Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E L_0; memset(&L_0, 0, sizeof(L_0)); Enumerator__ctor_m6CDFD6E23B852DAFE3CFDCD8C705B8C4C31ABE03((&L_0), (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this, (int32_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)); Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 21), &L_1); return (RuntimeObject*)L_2; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_GetObjectData_m154C5A21568A66E6AB73DEBA84EECCB4A6F33607_gshared (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_GetObjectData_m154C5A21568A66E6AB73DEBA84EECCB4A6F33607_MetadataUsageId); s_Il2CppMethodInitialized = true; } KeyValuePair_2U5BU5D_t1336B67B1075C3E1E7713F0436412A73F860ADBB* V_0 = NULL; String_t* G_B4_0 = NULL; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * G_B4_1 = NULL; String_t* G_B3_0 = NULL; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * G_B3_1 = NULL; int32_t G_B5_0 = 0; String_t* G_B5_1 = NULL; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * G_B5_2 = NULL; { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_GetObjectData_m154C5A21568A66E6AB73DEBA84EECCB4A6F33607_RuntimeMethod_var); } IL_000e: { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0; int32_t L_3 = (int32_t)__this->get_version_3(); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_2); SerializationInfo_AddValue_m7C73917D9DC4B8FE4AFEF4BA8EBEDAB046A8D0BD((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_2, (String_t*)_stringLiteral2DA600BF9404843107A9531694F654E5662959E0, (int32_t)L_3, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_4 = ___info0; RuntimeObject* L_5 = (RuntimeObject*)__this->get_comparer_6(); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 23)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_6, /*hidden argument*/NULL); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_4); SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_4, (String_t*)_stringLiteral8FC94E4F5B71CECE2565D72417AACC804EE27A0D, (RuntimeObject *)L_5, (Type_t *)L_7, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_8 = ___info0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_9 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); G_B3_0 = _stringLiteral35E05A2D28CF03B64D64C58D0C7ED03AD5A3AF60; G_B3_1 = L_8; if (!L_9) { G_B4_0 = _stringLiteral35E05A2D28CF03B64D64C58D0C7ED03AD5A3AF60; G_B4_1 = L_8; goto IL_0052; } } { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_10 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_10); G_B5_0 = (((int32_t)((int32_t)(((RuntimeArray *)L_10)->max_length)))); G_B5_1 = G_B3_0; G_B5_2 = G_B3_1; goto IL_0053; } IL_0052: { G_B5_0 = 0; G_B5_1 = G_B4_0; G_B5_2 = G_B4_1; } IL_0053: { NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)G_B5_2); SerializationInfo_AddValue_m7C73917D9DC4B8FE4AFEF4BA8EBEDAB046A8D0BD((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)G_B5_2, (String_t*)G_B5_1, (int32_t)G_B5_0, /*hidden argument*/NULL); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_11 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); if (!L_11) { goto IL_008a; } } { NullCheck((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this); int32_t L_12 = (( int32_t (*) (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)->methodPointer)((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)); KeyValuePair_2U5BU5D_t1336B67B1075C3E1E7713F0436412A73F860ADBB* L_13 = (KeyValuePair_2U5BU5D_t1336B67B1075C3E1E7713F0436412A73F860ADBB*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 24), (uint32_t)L_12); V_0 = (KeyValuePair_2U5BU5D_t1336B67B1075C3E1E7713F0436412A73F860ADBB*)L_13; KeyValuePair_2U5BU5D_t1336B67B1075C3E1E7713F0436412A73F860ADBB* L_14 = V_0; NullCheck((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this); (( void (*) (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *, KeyValuePair_2U5BU5D_t1336B67B1075C3E1E7713F0436412A73F860ADBB*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 25)->methodPointer)((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this, (KeyValuePair_2U5BU5D_t1336B67B1075C3E1E7713F0436412A73F860ADBB*)L_14, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 25)); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_15 = ___info0; KeyValuePair_2U5BU5D_t1336B67B1075C3E1E7713F0436412A73F860ADBB* L_16 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_17 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 26)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_18 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_17, /*hidden argument*/NULL); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_15); SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_15, (String_t*)_stringLiteral1D89254A2BC78C1FF41C2F6767A0E00EE126B3BF, (RuntimeObject *)(RuntimeObject *)L_16, (Type_t *)L_18, /*hidden argument*/NULL); } IL_008a: { return; } } // System.Int32 System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::FindEntry(TKey) extern "C" IL2CPP_METHOD_ATTR int32_t Dictionary_2_FindEntry_m0355E4CFC77F27301F77F3AB521403C3088F7402_gshared (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_FindEntry_m0355E4CFC77F27301F77F3AB521403C3088F7402_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_0013; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_FindEntry_m0355E4CFC77F27301F77F3AB521403C3088F7402_RuntimeMethod_var); } IL_0013: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); if (!L_2) { goto IL_008d; } } { RuntimeObject* L_3 = (RuntimeObject*)__this->get_comparer_6(); RuntimeObject * L_4 = ___key0; NullCheck((RuntimeObject*)L_3); int32_t L_5 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Object>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28), (RuntimeObject*)L_3, (RuntimeObject *)L_4); V_0 = (int32_t)((int32_t)((int32_t)L_5&(int32_t)((int32_t)2147483647LL))); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_6 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_7 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_8); NullCheck(L_6); int32_t L_9 = ((int32_t)((int32_t)L_7%(int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length)))))); int32_t L_10 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_9)); V_1 = (int32_t)L_10; goto IL_0089; } IL_0042: { EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_11 = (EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9*)__this->get_entries_1(); int32_t L_12 = V_1; NullCheck(L_11); int32_t L_13 = (int32_t)((L_11)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_12)))->get_hashCode_0(); int32_t L_14 = V_0; if ((!(((uint32_t)L_13) == ((uint32_t)L_14)))) { goto IL_0077; } } { RuntimeObject* L_15 = (RuntimeObject*)__this->get_comparer_6(); EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_16 = (EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9*)__this->get_entries_1(); int32_t L_17 = V_1; NullCheck(L_16); RuntimeObject * L_18 = (RuntimeObject *)((L_16)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_17)))->get_key_2(); RuntimeObject * L_19 = ___key0; NullCheck((RuntimeObject*)L_15); bool L_20 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.Generic.IEqualityComparer`1<System.Object>::Equals(T,T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28), (RuntimeObject*)L_15, (RuntimeObject *)L_18, (RuntimeObject *)L_19); if (!L_20) { goto IL_0077; } } { int32_t L_21 = V_1; return L_21; } IL_0077: { EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_22 = (EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9*)__this->get_entries_1(); int32_t L_23 = V_1; NullCheck(L_22); int32_t L_24 = (int32_t)((L_22)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_23)))->get_next_1(); V_1 = (int32_t)L_24; } IL_0089: { int32_t L_25 = V_1; if ((((int32_t)L_25) >= ((int32_t)0))) { goto IL_0042; } } IL_008d: { return (-1); } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::Initialize(System.Int32) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_Initialize_m91E651A1FB4DDEEEE6CD20A96774EF9CA665628A_gshared (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * __this, int32_t ___capacity0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Initialize_m91E651A1FB4DDEEEE6CD20A96774EF9CA665628A_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = ___capacity0; IL2CPP_RUNTIME_CLASS_INIT(HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_il2cpp_TypeInfo_var); int32_t L_1 = HashHelpers_GetPrime_m743D7006C2BCBADC1DC8CACF7C5B78C9F6B38297((int32_t)L_0, /*hidden argument*/NULL); V_0 = (int32_t)L_1; int32_t L_2 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_3 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)L_2); __this->set_buckets_0(L_3); V_1 = (int32_t)0; goto IL_0024; } IL_0017: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_4 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_5 = V_1; NullCheck(L_4); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (int32_t)(-1)); int32_t L_6 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1)); } IL_0024: { int32_t L_7 = V_1; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_8); if ((((int32_t)L_7) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length))))))) { goto IL_0017; } } { int32_t L_9 = V_0; EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_10 = (EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 29), (uint32_t)L_9); __this->set_entries_1(L_10); __this->set_freeList_4((-1)); return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::TryInsert(TKey,TValue,System.Collections.Generic.InsertionBehavior) extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_TryInsert_m729B71E869DFC8DAB29969BB05B2C43DCE3A4A2E_gshared (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * __this, RuntimeObject * ___key0, int32_t ___value1, uint8_t ___behavior2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_TryInsert_m729B71E869DFC8DAB29969BB05B2C43DCE3A4A2E_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_0013; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_TryInsert_m729B71E869DFC8DAB29969BB05B2C43DCE3A4A2E_RuntimeMethod_var); } IL_0013: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); if (L_2) { goto IL_0022; } } { NullCheck((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this); (( void (*) (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); } IL_0022: { RuntimeObject* L_3 = (RuntimeObject*)__this->get_comparer_6(); RuntimeObject * L_4 = ___key0; NullCheck((RuntimeObject*)L_3); int32_t L_5 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Object>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28), (RuntimeObject*)L_3, (RuntimeObject *)L_4); V_0 = (int32_t)((int32_t)((int32_t)L_5&(int32_t)((int32_t)2147483647LL))); int32_t L_6 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_7 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_7); V_1 = (int32_t)((int32_t)((int32_t)L_6%(int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_7)->max_length)))))); V_2 = (int32_t)0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_9 = V_1; NullCheck(L_8); int32_t L_10 = L_9; int32_t L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); V_4 = (int32_t)L_11; goto IL_00e1; } IL_0051: { EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_12 = (EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9*)__this->get_entries_1(); int32_t L_13 = V_4; NullCheck(L_12); int32_t L_14 = (int32_t)((L_12)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_13)))->get_hashCode_0(); int32_t L_15 = V_0; if ((!(((uint32_t)L_14) == ((uint32_t)L_15)))) { goto IL_00c9; } } { RuntimeObject* L_16 = (RuntimeObject*)__this->get_comparer_6(); EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_17 = (EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9*)__this->get_entries_1(); int32_t L_18 = V_4; NullCheck(L_17); RuntimeObject * L_19 = (RuntimeObject *)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18)))->get_key_2(); RuntimeObject * L_20 = ___key0; NullCheck((RuntimeObject*)L_16); bool L_21 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.Generic.IEqualityComparer`1<System.Object>::Equals(T,T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28), (RuntimeObject*)L_16, (RuntimeObject *)L_19, (RuntimeObject *)L_20); if (!L_21) { goto IL_00c9; } } { uint8_t L_22 = ___behavior2; if ((!(((uint32_t)L_22) == ((uint32_t)1)))) { goto IL_00ad; } } { EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_23 = (EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9*)__this->get_entries_1(); int32_t L_24 = V_4; NullCheck(L_23); int32_t L_25 = ___value1; ((L_23)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_24)))->set_value_3(L_25); int32_t L_26 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1))); return (bool)1; } IL_00ad: { uint8_t L_27 = ___behavior2; if ((!(((uint32_t)L_27) == ((uint32_t)2)))) { goto IL_00c7; } } { RuntimeObject * L_28 = ___key0; String_t* L_29 = SR_Format_mCDBB594267CC224AB2A69540BBA598151F0642C7((String_t*)_stringLiteral6FD577FD3A1BDC4DA28CD51D7A55EB397CEA3926, (RuntimeObject *)L_28, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_30 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_30, (String_t*)L_29, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_30, NULL, Dictionary_2_TryInsert_m729B71E869DFC8DAB29969BB05B2C43DCE3A4A2E_RuntimeMethod_var); } IL_00c7: { return (bool)0; } IL_00c9: { int32_t L_31 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_31, (int32_t)1)); EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_32 = (EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9*)__this->get_entries_1(); int32_t L_33 = V_4; NullCheck(L_32); int32_t L_34 = (int32_t)((L_32)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_33)))->get_next_1(); V_4 = (int32_t)L_34; } IL_00e1: { int32_t L_35 = V_4; if ((((int32_t)L_35) >= ((int32_t)0))) { goto IL_0051; } } { int32_t L_36 = (int32_t)__this->get_freeCount_5(); if ((((int32_t)L_36) <= ((int32_t)0))) { goto IL_0120; } } { int32_t L_37 = (int32_t)__this->get_freeList_4(); V_3 = (int32_t)L_37; EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_38 = (EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9*)__this->get_entries_1(); int32_t L_39 = V_3; NullCheck(L_38); int32_t L_40 = (int32_t)((L_38)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_39)))->get_next_1(); __this->set_freeList_4(L_40); int32_t L_41 = (int32_t)__this->get_freeCount_5(); __this->set_freeCount_5(((int32_t)il2cpp_codegen_subtract((int32_t)L_41, (int32_t)1))); goto IL_0156; } IL_0120: { int32_t L_42 = (int32_t)__this->get_count_2(); EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_43 = (EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9*)__this->get_entries_1(); NullCheck(L_43); if ((!(((uint32_t)L_42) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_43)->max_length)))))))) { goto IL_0141; } } { NullCheck((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this); (( void (*) (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 30)->methodPointer)((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 30)); int32_t L_44 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_45 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_45); V_1 = (int32_t)((int32_t)((int32_t)L_44%(int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_45)->max_length)))))); } IL_0141: { int32_t L_46 = (int32_t)__this->get_count_2(); V_3 = (int32_t)L_46; int32_t L_47 = (int32_t)__this->get_count_2(); __this->set_count_2(((int32_t)il2cpp_codegen_add((int32_t)L_47, (int32_t)1))); } IL_0156: { EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_48 = (EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9*)__this->get_entries_1(); int32_t L_49 = V_3; NullCheck(L_48); int32_t L_50 = V_0; ((L_48)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_49)))->set_hashCode_0(L_50); EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_51 = (EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9*)__this->get_entries_1(); int32_t L_52 = V_3; NullCheck(L_51); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_53 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_54 = V_1; NullCheck(L_53); int32_t L_55 = L_54; int32_t L_56 = (L_53)->GetAt(static_cast<il2cpp_array_size_t>(L_55)); ((L_51)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_52)))->set_next_1(L_56); EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_57 = (EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9*)__this->get_entries_1(); int32_t L_58 = V_3; NullCheck(L_57); RuntimeObject * L_59 = ___key0; ((L_57)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_58)))->set_key_2(L_59); EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_60 = (EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9*)__this->get_entries_1(); int32_t L_61 = V_3; NullCheck(L_60); int32_t L_62 = ___value1; ((L_60)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_61)))->set_value_3(L_62); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_63 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_64 = V_1; int32_t L_65 = V_3; NullCheck(L_63); (L_63)->SetAt(static_cast<il2cpp_array_size_t>(L_64), (int32_t)L_65); int32_t L_66 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_66, (int32_t)1))); int32_t L_67 = V_2; if ((((int32_t)L_67) <= ((int32_t)((int32_t)100)))) { goto IL_01ed; } } { RuntimeObject* L_68 = (RuntimeObject*)__this->get_comparer_6(); if (!((NonRandomizedStringEqualityComparer_t92C20503D9C5060A557792ABCCC06EF2DD77E5D9 *)IsInst((RuntimeObject*)L_68, NonRandomizedStringEqualityComparer_t92C20503D9C5060A557792ABCCC06EF2DD77E5D9_il2cpp_TypeInfo_var))) { goto IL_01ed; } } { EqualityComparer_1_tBEFFC6F649A17852373A084880D57CB299084137 * L_69 = EqualityComparer_1_get_Default_m85F378D7298050D5DF422363D5EB30A218B769B7(/*hidden argument*/EqualityComparer_1_get_Default_m85F378D7298050D5DF422363D5EB30A218B769B7_RuntimeMethod_var); __this->set_comparer_6(((RuntimeObject*)Castclass((RuntimeObject*)L_69, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28)))); EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_70 = (EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9*)__this->get_entries_1(); NullCheck(L_70); NullCheck((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this); (( void (*) (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *, int32_t, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)->methodPointer)((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this, (int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_70)->max_length)))), (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)); } IL_01ed: { return (bool)1; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::OnDeserialization(System.Object) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_OnDeserialization_mE3192EBCC25E254042B4B68A0FFAAB14231F97DF_gshared (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * __this, RuntimeObject * ___sender0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_OnDeserialization_mE3192EBCC25E254042B4B68A0FFAAB14231F97DF_MetadataUsageId); s_Il2CppMethodInitialized = true; } SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; KeyValuePair_2U5BU5D_t1336B67B1075C3E1E7713F0436412A73F860ADBB* V_3 = NULL; int32_t V_4 = 0; int32_t V_5 = 0; { IL2CPP_RUNTIME_CLASS_INIT(DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00_il2cpp_TypeInfo_var); ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * L_0 = DictionaryHashHelpers_get_SerializationInfoTable_mCF0A53E777EAFE1AA018C02529AFF6D3CDF7A05C(/*hidden argument*/NULL); NullCheck((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_0); ConditionalWeakTable_2_TryGetValue_mDFCB6C303807E3F8998D196F4573870680E81F8B((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_0, (RuntimeObject *)__this, (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 **)(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 **)(&V_0), /*hidden argument*/ConditionalWeakTable_2_TryGetValue_mDFCB6C303807E3F8998D196F4573870680E81F8B_RuntimeMethod_var); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_1 = V_0; if (L_1) { goto IL_0012; } } { return; } IL_0012: { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = V_0; NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_2); int32_t L_3 = SerializationInfo_GetInt32_mB47BD46A0BDBBAF5B47BB62E6EFF8E092E3F3656((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_2, (String_t*)_stringLiteral2DA600BF9404843107A9531694F654E5662959E0, /*hidden argument*/NULL); V_1 = (int32_t)L_3; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_4 = V_0; NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_4); int32_t L_5 = SerializationInfo_GetInt32_mB47BD46A0BDBBAF5B47BB62E6EFF8E092E3F3656((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_4, (String_t*)_stringLiteral35E05A2D28CF03B64D64C58D0C7ED03AD5A3AF60, /*hidden argument*/NULL); V_2 = (int32_t)L_5; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_6 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_7 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 23)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_8 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_7, /*hidden argument*/NULL); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_6); RuntimeObject * L_9 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_6, (String_t*)_stringLiteral8FC94E4F5B71CECE2565D72417AACC804EE27A0D, (Type_t *)L_8, /*hidden argument*/NULL); __this->set_comparer_6(((RuntimeObject*)Castclass((RuntimeObject*)L_9, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28)))); int32_t L_10 = V_2; if (!L_10) { goto IL_010c; } } { int32_t L_11 = V_2; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_12 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)L_11); __this->set_buckets_0(L_12); V_4 = (int32_t)0; goto IL_0071; } IL_0061: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_13 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_14 = V_4; NullCheck(L_13); (L_13)->SetAt(static_cast<il2cpp_array_size_t>(L_14), (int32_t)(-1)); int32_t L_15 = V_4; V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)); } IL_0071: { int32_t L_16 = V_4; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_17 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_17); if ((((int32_t)L_16) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_17)->max_length))))))) { goto IL_0061; } } { int32_t L_18 = V_2; EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_19 = (EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 29), (uint32_t)L_18); __this->set_entries_1(L_19); __this->set_freeList_4((-1)); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_20 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_21 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 26)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_22 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_21, /*hidden argument*/NULL); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_20); RuntimeObject * L_23 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_20, (String_t*)_stringLiteral1D89254A2BC78C1FF41C2F6767A0E00EE126B3BF, (Type_t *)L_22, /*hidden argument*/NULL); V_3 = (KeyValuePair_2U5BU5D_t1336B67B1075C3E1E7713F0436412A73F860ADBB*)((KeyValuePair_2U5BU5D_t1336B67B1075C3E1E7713F0436412A73F860ADBB*)Castclass((RuntimeObject*)L_23, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 32))); KeyValuePair_2U5BU5D_t1336B67B1075C3E1E7713F0436412A73F860ADBB* L_24 = V_3; if (L_24) { goto IL_00b9; } } { SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 * L_25 = (SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 *)il2cpp_codegen_object_new(SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_il2cpp_TypeInfo_var); SerializationException__ctor_m88AAD9671030A8A96AA87CB95701938FBD8F16E1(L_25, (String_t*)_stringLiteral1EB7E67EA75FFC3FCB05A9685FA4F1578DCACCF6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_25, NULL, Dictionary_2_OnDeserialization_mE3192EBCC25E254042B4B68A0FFAAB14231F97DF_RuntimeMethod_var); } IL_00b9: { V_5 = (int32_t)0; goto IL_0103; } IL_00be: { KeyValuePair_2U5BU5D_t1336B67B1075C3E1E7713F0436412A73F860ADBB* L_26 = V_3; int32_t L_27 = V_5; NullCheck(L_26); RuntimeObject * L_28 = KeyValuePair_2_get_Key_mA8E3537C258052C112D227D263B03028DD16CC09((KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)(KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)((L_26)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_27))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); if (L_28) { goto IL_00dd; } } { SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 * L_29 = (SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 *)il2cpp_codegen_object_new(SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_il2cpp_TypeInfo_var); SerializationException__ctor_m88AAD9671030A8A96AA87CB95701938FBD8F16E1(L_29, (String_t*)_stringLiteralD6D1BC79DD62E9F1FB9A49A8F76F4BA8AB71AECD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_29, NULL, Dictionary_2_OnDeserialization_mE3192EBCC25E254042B4B68A0FFAAB14231F97DF_RuntimeMethod_var); } IL_00dd: { KeyValuePair_2U5BU5D_t1336B67B1075C3E1E7713F0436412A73F860ADBB* L_30 = V_3; int32_t L_31 = V_5; NullCheck(L_30); RuntimeObject * L_32 = KeyValuePair_2_get_Key_mA8E3537C258052C112D227D263B03028DD16CC09((KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)(KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)((L_30)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_31))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); KeyValuePair_2U5BU5D_t1336B67B1075C3E1E7713F0436412A73F860ADBB* L_33 = V_3; int32_t L_34 = V_5; NullCheck(L_33); int32_t L_35 = KeyValuePair_2_get_Value_m24A5AC0D5FC0501CC02B85EB38A56A7C34E9BB9A((KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)(KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); NullCheck((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this); (( void (*) (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *, RuntimeObject *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this, (RuntimeObject *)L_32, (int32_t)L_35, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); int32_t L_36 = V_5; V_5 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_36, (int32_t)1)); } IL_0103: { int32_t L_37 = V_5; KeyValuePair_2U5BU5D_t1336B67B1075C3E1E7713F0436412A73F860ADBB* L_38 = V_3; NullCheck(L_38); if ((((int32_t)L_37) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_38)->max_length))))))) { goto IL_00be; } } { goto IL_0113; } IL_010c: { __this->set_buckets_0((Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)NULL); } IL_0113: { int32_t L_39 = V_1; __this->set_version_3(L_39); IL2CPP_RUNTIME_CLASS_INIT(DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00_il2cpp_TypeInfo_var); ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * L_40 = DictionaryHashHelpers_get_SerializationInfoTable_mCF0A53E777EAFE1AA018C02529AFF6D3CDF7A05C(/*hidden argument*/NULL); NullCheck((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_40); ConditionalWeakTable_2_Remove_mD69606977A8C793DEA91E373F7D886E4865D7FBD((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_40, (RuntimeObject *)__this, /*hidden argument*/ConditionalWeakTable_2_Remove_mD69606977A8C793DEA91E373F7D886E4865D7FBD_RuntimeMethod_var); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::Resize() extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_Resize_m2FEA8E5EE720A1ABECE46DFC7DE2922691483572_gshared (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Resize_m2FEA8E5EE720A1ABECE46DFC7DE2922691483572_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_count_2(); IL2CPP_RUNTIME_CLASS_INIT(HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_il2cpp_TypeInfo_var); int32_t L_1 = HashHelpers_ExpandPrime_m4245F4C95074EAA8F949FB3B734F611A533A6A0D((int32_t)L_0, /*hidden argument*/NULL); NullCheck((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this); (( void (*) (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *, int32_t, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)->methodPointer)((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this, (int32_t)L_1, (bool)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::Resize(System.Int32,System.Boolean) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_Resize_m14EA8CFFCCBFC5C3B7755F59FA5A96C5347F0230_gshared (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * __this, int32_t ___newSize0, bool ___forceNewHashCodes1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Resize_m14EA8CFFCCBFC5C3B7755F59FA5A96C5347F0230_MetadataUsageId); s_Il2CppMethodInitialized = true; } Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* V_0 = NULL; EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* V_1 = NULL; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; int32_t V_5 = 0; { int32_t L_0 = ___newSize0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_1 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)L_0); V_0 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)L_1; V_2 = (int32_t)0; goto IL_0013; } IL_000b: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = V_0; int32_t L_3 = V_2; NullCheck(L_2); (L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (int32_t)(-1)); int32_t L_4 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)); } IL_0013: { int32_t L_5 = V_2; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_6 = V_0; NullCheck(L_6); if ((((int32_t)L_5) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_6)->max_length))))))) { goto IL_000b; } } { int32_t L_7 = ___newSize0; EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_8 = (EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 29), (uint32_t)L_7); V_1 = (EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9*)L_8; EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_9 = (EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9*)__this->get_entries_1(); EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_10 = V_1; int32_t L_11 = (int32_t)__this->get_count_2(); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_9, (int32_t)0, (RuntimeArray *)(RuntimeArray *)L_10, (int32_t)0, (int32_t)L_11, /*hidden argument*/NULL); bool L_12 = ___forceNewHashCodes1; if (!L_12) { goto IL_0080; } } { V_3 = (int32_t)0; goto IL_0077; } IL_003b: { EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_13 = V_1; int32_t L_14 = V_3; NullCheck(L_13); int32_t L_15 = (int32_t)((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_hashCode_0(); if ((((int32_t)L_15) == ((int32_t)(-1)))) { goto IL_0073; } } { EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_16 = V_1; int32_t L_17 = V_3; NullCheck(L_16); RuntimeObject* L_18 = (RuntimeObject*)__this->get_comparer_6(); EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_19 = V_1; int32_t L_20 = V_3; NullCheck(L_19); RuntimeObject * L_21 = (RuntimeObject *)((L_19)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_20)))->get_key_2(); NullCheck((RuntimeObject*)L_18); int32_t L_22 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Object>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28), (RuntimeObject*)L_18, (RuntimeObject *)L_21); ((L_16)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_17)))->set_hashCode_0(((int32_t)((int32_t)L_22&(int32_t)((int32_t)2147483647LL)))); } IL_0073: { int32_t L_23 = V_3; V_3 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); } IL_0077: { int32_t L_24 = V_3; int32_t L_25 = (int32_t)__this->get_count_2(); if ((((int32_t)L_24) < ((int32_t)L_25))) { goto IL_003b; } } IL_0080: { V_4 = (int32_t)0; goto IL_00c3; } IL_0085: { EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_26 = V_1; int32_t L_27 = V_4; NullCheck(L_26); int32_t L_28 = (int32_t)((L_26)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_27)))->get_hashCode_0(); if ((((int32_t)L_28) < ((int32_t)0))) { goto IL_00bd; } } { EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_29 = V_1; int32_t L_30 = V_4; NullCheck(L_29); int32_t L_31 = (int32_t)((L_29)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_30)))->get_hashCode_0(); int32_t L_32 = ___newSize0; V_5 = (int32_t)((int32_t)((int32_t)L_31%(int32_t)L_32)); EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_33 = V_1; int32_t L_34 = V_4; NullCheck(L_33); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_35 = V_0; int32_t L_36 = V_5; NullCheck(L_35); int32_t L_37 = L_36; int32_t L_38 = (L_35)->GetAt(static_cast<il2cpp_array_size_t>(L_37)); ((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->set_next_1(L_38); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_39 = V_0; int32_t L_40 = V_5; int32_t L_41 = V_4; NullCheck(L_39); (L_39)->SetAt(static_cast<il2cpp_array_size_t>(L_40), (int32_t)L_41); } IL_00bd: { int32_t L_42 = V_4; V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)1)); } IL_00c3: { int32_t L_43 = V_4; int32_t L_44 = (int32_t)__this->get_count_2(); if ((((int32_t)L_43) < ((int32_t)L_44))) { goto IL_0085; } } { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_45 = V_0; __this->set_buckets_0(L_45); EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_46 = V_1; __this->set_entries_1(L_46); return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::Remove(TKey) extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_Remove_m53A3271E51DB23EFC5BD1A0A2E26154B4C41AB1E_gshared (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Remove_m53A3271E51DB23EFC5BD1A0A2E26154B4C41AB1E_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_0013; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_Remove_m53A3271E51DB23EFC5BD1A0A2E26154B4C41AB1E_RuntimeMethod_var); } IL_0013: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); if (!L_2) { goto IL_015d; } } { RuntimeObject* L_3 = (RuntimeObject*)__this->get_comparer_6(); RuntimeObject * L_4 = ___key0; NullCheck((RuntimeObject*)L_3); int32_t L_5 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Object>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28), (RuntimeObject*)L_3, (RuntimeObject *)L_4); V_0 = (int32_t)((int32_t)((int32_t)L_5&(int32_t)((int32_t)2147483647LL))); int32_t L_6 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_7 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_7); V_1 = (int32_t)((int32_t)((int32_t)L_6%(int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_7)->max_length)))))); V_2 = (int32_t)(-1); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_9 = V_1; NullCheck(L_8); int32_t L_10 = L_9; int32_t L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); V_3 = (int32_t)L_11; goto IL_0156; } IL_004c: { EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_12 = (EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9*)__this->get_entries_1(); int32_t L_13 = V_3; NullCheck(L_12); int32_t L_14 = (int32_t)((L_12)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_13)))->get_hashCode_0(); int32_t L_15 = V_0; if ((!(((uint32_t)L_14) == ((uint32_t)L_15)))) { goto IL_0142; } } { RuntimeObject* L_16 = (RuntimeObject*)__this->get_comparer_6(); EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_17 = (EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9*)__this->get_entries_1(); int32_t L_18 = V_3; NullCheck(L_17); RuntimeObject * L_19 = (RuntimeObject *)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18)))->get_key_2(); RuntimeObject * L_20 = ___key0; NullCheck((RuntimeObject*)L_16); bool L_21 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.Generic.IEqualityComparer`1<System.Object>::Equals(T,T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28), (RuntimeObject*)L_16, (RuntimeObject *)L_19, (RuntimeObject *)L_20); if (!L_21) { goto IL_0142; } } { int32_t L_22 = V_2; if ((((int32_t)L_22) >= ((int32_t)0))) { goto IL_00a4; } } { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_23 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_24 = V_1; EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_25 = (EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9*)__this->get_entries_1(); int32_t L_26 = V_3; NullCheck(L_25); int32_t L_27 = (int32_t)((L_25)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_26)))->get_next_1(); NullCheck(L_23); (L_23)->SetAt(static_cast<il2cpp_array_size_t>(L_24), (int32_t)L_27); goto IL_00c6; } IL_00a4: { EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_28 = (EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9*)__this->get_entries_1(); int32_t L_29 = V_2; NullCheck(L_28); EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_30 = (EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9*)__this->get_entries_1(); int32_t L_31 = V_3; NullCheck(L_30); int32_t L_32 = (int32_t)((L_30)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_31)))->get_next_1(); ((L_28)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_29)))->set_next_1(L_32); } IL_00c6: { EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_33 = (EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9*)__this->get_entries_1(); int32_t L_34 = V_3; NullCheck(L_33); ((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->set_hashCode_0((-1)); EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_35 = (EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9*)__this->get_entries_1(); int32_t L_36 = V_3; NullCheck(L_35); int32_t L_37 = (int32_t)__this->get_freeList_4(); ((L_35)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_36)))->set_next_1(L_37); EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_38 = (EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9*)__this->get_entries_1(); int32_t L_39 = V_3; NullCheck(L_38); RuntimeObject ** L_40 = (RuntimeObject **)((L_38)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_39)))->get_address_of_key_2(); il2cpp_codegen_initobj(L_40, sizeof(RuntimeObject *)); EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_41 = (EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9*)__this->get_entries_1(); int32_t L_42 = V_3; NullCheck(L_41); int32_t* L_43 = (int32_t*)((L_41)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_42)))->get_address_of_value_3(); il2cpp_codegen_initobj(L_43, sizeof(int32_t)); int32_t L_44 = V_3; __this->set_freeList_4(L_44); int32_t L_45 = (int32_t)__this->get_freeCount_5(); __this->set_freeCount_5(((int32_t)il2cpp_codegen_add((int32_t)L_45, (int32_t)1))); int32_t L_46 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_46, (int32_t)1))); return (bool)1; } IL_0142: { int32_t L_47 = V_3; V_2 = (int32_t)L_47; EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_48 = (EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9*)__this->get_entries_1(); int32_t L_49 = V_3; NullCheck(L_48); int32_t L_50 = (int32_t)((L_48)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_49)))->get_next_1(); V_3 = (int32_t)L_50; } IL_0156: { int32_t L_51 = V_3; if ((((int32_t)L_51) >= ((int32_t)0))) { goto IL_004c; } } IL_015d: { return (bool)0; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::TryGetValue(TKey,TValue&) extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_mE7571EF8ACAF5941AF78909A00CD9CE5FB07C69C_gshared (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * __this, RuntimeObject * ___key0, int32_t* ___value1, const RuntimeMethod* method) { int32_t V_0 = 0; { RuntimeObject * L_0 = ___key0; NullCheck((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0025; } } { int32_t* L_3 = ___value1; EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_4 = (EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9*)__this->get_entries_1(); int32_t L_5 = V_0; NullCheck(L_4); int32_t L_6 = (int32_t)((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_value_3(); *(int32_t*)L_3 = L_6; return (bool)1; } IL_0025: { int32_t* L_7 = ___value1; il2cpp_codegen_initobj(L_7, sizeof(int32_t)); return (bool)0; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.get_IsReadOnly() extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_get_IsReadOnly_m2DD05BEE7AE6CC5B9DA536A420FDA4A89A1F3E22_gshared (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_CopyTo_m0126E1F57A4F2B0523602733EF52BF4717F4233C_gshared (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * __this, KeyValuePair_2U5BU5D_t1336B67B1075C3E1E7713F0436412A73F860ADBB* ___array0, int32_t ___index1, const RuntimeMethod* method) { { KeyValuePair_2U5BU5D_t1336B67B1075C3E1E7713F0436412A73F860ADBB* L_0 = ___array0; int32_t L_1 = ___index1; NullCheck((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this); (( void (*) (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *, KeyValuePair_2U5BU5D_t1336B67B1075C3E1E7713F0436412A73F860ADBB*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 25)->methodPointer)((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this, (KeyValuePair_2U5BU5D_t1336B67B1075C3E1E7713F0436412A73F860ADBB*)L_0, (int32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 25)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_ICollection_CopyTo_m86327EAA25BA50BEFEDDAD8A269BD409C712DE5A_gshared (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_System_Collections_ICollection_CopyTo_m86327EAA25BA50BEFEDDAD8A269BD409C712DE5A_MetadataUsageId); s_Il2CppMethodInitialized = true; } KeyValuePair_2U5BU5D_t1336B67B1075C3E1E7713F0436412A73F860ADBB* V_0 = NULL; DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56* V_1 = NULL; EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* V_2 = NULL; int32_t V_3 = 0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_4 = NULL; int32_t V_5 = 0; EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* V_6 = NULL; int32_t V_7 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_m86327EAA25BA50BEFEDDAD8A269BD409C712DE5A_RuntimeMethod_var); } IL_000e: { RuntimeArray * L_2 = ___array0; NullCheck((RuntimeArray *)L_2); int32_t L_3 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)L_2, /*hidden argument*/NULL); if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_0027; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_4 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_4, (String_t*)_stringLiteral2D77BE6D598A0A9376398980E66D10E319F1B52A, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_m86327EAA25BA50BEFEDDAD8A269BD409C712DE5A_RuntimeMethod_var); } IL_0027: { RuntimeArray * L_5 = ___array0; NullCheck((RuntimeArray *)L_5); int32_t L_6 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)L_5, (int32_t)0, /*hidden argument*/NULL); if (!L_6) { goto IL_0040; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_7 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_7, (String_t*)_stringLiteralC363992023785AF013BBCF2E20C19D9835184F82, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_m86327EAA25BA50BEFEDDAD8A269BD409C712DE5A_RuntimeMethod_var); } IL_0040: { int32_t L_8 = ___index1; if ((((int32_t)L_8) < ((int32_t)0))) { goto IL_004d; } } { int32_t L_9 = ___index1; RuntimeArray * L_10 = ___array0; NullCheck((RuntimeArray *)L_10); int32_t L_11 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_10, /*hidden argument*/NULL); if ((((int32_t)L_9) <= ((int32_t)L_11))) { goto IL_0063; } } IL_004d: { int32_t L_12 = ___index1; int32_t L_13 = L_12; RuntimeObject * L_14 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_13); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_15 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378(L_15, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, (RuntimeObject *)L_14, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_m86327EAA25BA50BEFEDDAD8A269BD409C712DE5A_RuntimeMethod_var); } IL_0063: { RuntimeArray * L_16 = ___array0; NullCheck((RuntimeArray *)L_16); int32_t L_17 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_16, /*hidden argument*/NULL); int32_t L_18 = ___index1; NullCheck((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this); int32_t L_19 = (( int32_t (*) (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)->methodPointer)((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_18))) >= ((int32_t)L_19))) { goto IL_007e; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_20 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_20, (String_t*)_stringLiteralBC80A496F1C479B70F6EE2BF2F0C3C05463301B8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_m86327EAA25BA50BEFEDDAD8A269BD409C712DE5A_RuntimeMethod_var); } IL_007e: { RuntimeArray * L_21 = ___array0; V_0 = (KeyValuePair_2U5BU5D_t1336B67B1075C3E1E7713F0436412A73F860ADBB*)((KeyValuePair_2U5BU5D_t1336B67B1075C3E1E7713F0436412A73F860ADBB*)IsInst((RuntimeObject*)L_21, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 32))); KeyValuePair_2U5BU5D_t1336B67B1075C3E1E7713F0436412A73F860ADBB* L_22 = V_0; if (!L_22) { goto IL_0091; } } { KeyValuePair_2U5BU5D_t1336B67B1075C3E1E7713F0436412A73F860ADBB* L_23 = V_0; int32_t L_24 = ___index1; NullCheck((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this); (( void (*) (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *, KeyValuePair_2U5BU5D_t1336B67B1075C3E1E7713F0436412A73F860ADBB*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 25)->methodPointer)((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this, (KeyValuePair_2U5BU5D_t1336B67B1075C3E1E7713F0436412A73F860ADBB*)L_23, (int32_t)L_24, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 25)); return; } IL_0091: { RuntimeArray * L_25 = ___array0; if (!((DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56*)IsInst((RuntimeObject*)L_25, DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56_il2cpp_TypeInfo_var))) { goto IL_00fb; } } { RuntimeArray * L_26 = ___array0; V_1 = (DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56*)((DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56*)IsInst((RuntimeObject*)L_26, DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56_il2cpp_TypeInfo_var)); EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_27 = (EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9*)__this->get_entries_1(); V_2 = (EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9*)L_27; V_3 = (int32_t)0; goto IL_00f1; } IL_00ab: { EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_28 = V_2; int32_t L_29 = V_3; NullCheck(L_28); int32_t L_30 = (int32_t)((L_28)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_29)))->get_hashCode_0(); if ((((int32_t)L_30) < ((int32_t)0))) { goto IL_00ed; } } { DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56* L_31 = V_1; int32_t L_32 = ___index1; int32_t L_33 = (int32_t)L_32; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)1)); EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_34 = V_2; int32_t L_35 = V_3; NullCheck(L_34); RuntimeObject * L_36 = (RuntimeObject *)((L_34)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_35)))->get_key_2(); EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_37 = V_2; int32_t L_38 = V_3; NullCheck(L_37); int32_t L_39 = (int32_t)((L_37)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_38)))->get_value_3(); int32_t L_40 = L_39; RuntimeObject * L_41 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 17), &L_40); DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_42; memset(&L_42, 0, sizeof(L_42)); DictionaryEntry__ctor_m67BC38CD2B85F134F3EB2473270CDD3933F7CD9B((&L_42), (RuntimeObject *)L_36, (RuntimeObject *)L_41, /*hidden argument*/NULL); NullCheck(L_31); (L_31)->SetAt(static_cast<il2cpp_array_size_t>(L_33), (DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 )L_42); } IL_00ed: { int32_t L_43 = V_3; V_3 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_43, (int32_t)1)); } IL_00f1: { int32_t L_44 = V_3; int32_t L_45 = (int32_t)__this->get_count_2(); if ((((int32_t)L_44) < ((int32_t)L_45))) { goto IL_00ab; } } { return; } IL_00fb: { RuntimeArray * L_46 = ___array0; V_4 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)L_46, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_47 = V_4; if (L_47) { goto IL_0117; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_48 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_48, (String_t*)_stringLiteralC44D4E6C6AF3517A1CC72EDF7D1A5FFD7E3368F1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_48, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_m86327EAA25BA50BEFEDDAD8A269BD409C712DE5A_RuntimeMethod_var); } IL_0117: { } IL_0118: try { // begin try (depth: 1) { int32_t L_49 = (int32_t)__this->get_count_2(); V_5 = (int32_t)L_49; EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_50 = (EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9*)__this->get_entries_1(); V_6 = (EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9*)L_50; V_7 = (int32_t)0; goto IL_0173; } IL_012d: { EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_51 = V_6; int32_t L_52 = V_7; NullCheck(L_51); int32_t L_53 = (int32_t)((L_51)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_52)))->get_hashCode_0(); if ((((int32_t)L_53) < ((int32_t)0))) { goto IL_016d; } } IL_013e: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_54 = V_4; int32_t L_55 = ___index1; int32_t L_56 = (int32_t)L_55; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_56, (int32_t)1)); EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_57 = V_6; int32_t L_58 = V_7; NullCheck(L_57); RuntimeObject * L_59 = (RuntimeObject *)((L_57)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_58)))->get_key_2(); EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_60 = V_6; int32_t L_61 = V_7; NullCheck(L_60); int32_t L_62 = (int32_t)((L_60)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_61)))->get_value_3(); KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E L_63; memset(&L_63, 0, sizeof(L_63)); KeyValuePair_2__ctor_m463A67E5B6E5EC73FA4BFA6FE08C52EA7F7B418D((&L_63), (RuntimeObject *)L_59, (int32_t)L_62, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 20)); KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E L_64 = L_63; RuntimeObject * L_65 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 19), &L_64); NullCheck(L_54); ArrayElementTypeCheck (L_54, L_65); (L_54)->SetAt(static_cast<il2cpp_array_size_t>(L_56), (RuntimeObject *)L_65); } IL_016d: { int32_t L_66 = V_7; V_7 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_66, (int32_t)1)); } IL_0173: { int32_t L_67 = V_7; int32_t L_68 = V_5; if ((((int32_t)L_67) < ((int32_t)L_68))) { goto IL_012d; } } IL_0179: { goto IL_018c; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (ArrayTypeMismatchException_tE34C1032B089C37399200997F079C640D23D9499_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_017b; throw e; } CATCH_017b: { // begin catch(System.ArrayTypeMismatchException) ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_69 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_69, (String_t*)_stringLiteralC44D4E6C6AF3517A1CC72EDF7D1A5FFD7E3368F1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_69, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_m86327EAA25BA50BEFEDDAD8A269BD409C712DE5A_RuntimeMethod_var); } // end catch (depth: 1) IL_018c: { return; } } // System.Collections.IEnumerator System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::System.Collections.IEnumerable.GetEnumerator() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_System_Collections_IEnumerable_GetEnumerator_m2251953C2C462858AC7F0C42F27126FC3788BDC7_gshared (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * __this, const RuntimeMethod* method) { { Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E L_0; memset(&L_0, 0, sizeof(L_0)); Enumerator__ctor_m6CDFD6E23B852DAFE3CFDCD8C705B8C4C31ABE03((&L_0), (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this, (int32_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)); Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 21), &L_1); return (RuntimeObject*)L_2; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::System.Collections.ICollection.get_IsSynchronized() extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_ICollection_get_IsSynchronized_m11E866771C01B8B4C10A526EEEC0B8C14122AEEE_gshared (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Object System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::System.Collections.ICollection.get_SyncRoot() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Dictionary_2_System_Collections_ICollection_get_SyncRoot_m6168522F3F76A98FFC5EF666D11E2186CCE94A44_gshared (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_System_Collections_ICollection_get_SyncRoot_m6168522F3F76A98FFC5EF666D11E2186CCE94A44_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = (RuntimeObject *)__this->get__syncRoot_9(); if (L_0) { goto IL_001a; } } { RuntimeObject ** L_1 = (RuntimeObject **)__this->get_address_of__syncRoot_9(); RuntimeObject * L_2 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(L_2, /*hidden argument*/NULL); InterlockedCompareExchangeImpl<RuntimeObject *>((RuntimeObject **)(RuntimeObject **)L_1, (RuntimeObject *)L_2, (RuntimeObject *)NULL); } IL_001a: { RuntimeObject * L_3 = (RuntimeObject *)__this->get__syncRoot_9(); return L_3; } } // System.Object System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::System.Collections.IDictionary.get_Item(System.Object) extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Dictionary_2_System_Collections_IDictionary_get_Item_m2F021CE12C0FAEEBB5292BDFB47149BBAF426FD4_gshared (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { int32_t V_0 = 0; { RuntimeObject * L_0 = ___key0; bool L_1 = (( bool (*) (RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 33)->methodPointer)((RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 33)); if (!L_1) { goto IL_0030; } } { RuntimeObject * L_2 = ___key0; NullCheck((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this); int32_t L_3 = (( int32_t (*) (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this, (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 27))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); V_0 = (int32_t)L_3; int32_t L_4 = V_0; if ((((int32_t)L_4) < ((int32_t)0))) { goto IL_0030; } } { EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_5 = (EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9*)__this->get_entries_1(); int32_t L_6 = V_0; NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_value_3(); int32_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 17), &L_8); return L_9; } IL_0030: { return NULL; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::System.Collections.IDictionary.set_Item(System.Object,System.Object) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_IDictionary_set_Item_mE42E2F1B0606E5F5E61C593005E805CB4FC9CA73_gshared (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_System_Collections_IDictionary_set_Item_mE42E2F1B0606E5F5E61C593005E805CB4FC9CA73_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; RuntimeObject * V_1 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_System_Collections_IDictionary_set_Item_mE42E2F1B0606E5F5E61C593005E805CB4FC9CA73_RuntimeMethod_var); } IL_000e: { RuntimeObject * L_2 = ___value1; if (L_2) { goto IL_002c; } } { il2cpp_codegen_initobj((&V_0), sizeof(int32_t)); } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_4, (String_t*)_stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Dictionary_2_System_Collections_IDictionary_set_Item_mE42E2F1B0606E5F5E61C593005E805CB4FC9CA73_RuntimeMethod_var); } IL_002c: { } IL_002d: try { // begin try (depth: 1) { RuntimeObject * L_5 = ___key0; V_1 = (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 27))); } IL_0034: try { // begin try (depth: 2) RuntimeObject * L_6 = V_1; RuntimeObject * L_7 = ___value1; NullCheck((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this); (( void (*) (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *, RuntimeObject *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 35)->methodPointer)((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this, (RuntimeObject *)L_6, (int32_t)((*(int32_t*)((int32_t*)UnBox(L_7, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 17))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 35)); goto IL_0064; } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0043; throw e; } CATCH_0043: { // begin catch(System.InvalidCastException) RuntimeObject * L_8 = ___value1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_9 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 36)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_10 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_9, /*hidden argument*/NULL); String_t* L_11 = SR_Format_m2DD0EA1F52576669B34B03CDB3D441631E1CA76C((String_t*)_stringLiteralFA5354A55A2D5AE97DEF68A54DFDDBF37A452FD6, (RuntimeObject *)L_8, (RuntimeObject *)L_10, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_12, (String_t*)L_11, (String_t*)_stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, NULL, Dictionary_2_System_Collections_IDictionary_set_Item_mE42E2F1B0606E5F5E61C593005E805CB4FC9CA73_RuntimeMethod_var); } // end catch (depth: 2) IL_0064: { goto IL_0087; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0066; throw e; } CATCH_0066: { // begin catch(System.InvalidCastException) RuntimeObject * L_13 = ___key0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 37)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_14, /*hidden argument*/NULL); String_t* L_16 = SR_Format_m2DD0EA1F52576669B34B03CDB3D441631E1CA76C((String_t*)_stringLiteralFA5354A55A2D5AE97DEF68A54DFDDBF37A452FD6, (RuntimeObject *)L_13, (RuntimeObject *)L_15, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_17 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_17, (String_t*)L_16, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, NULL, Dictionary_2_System_Collections_IDictionary_set_Item_mE42E2F1B0606E5F5E61C593005E805CB4FC9CA73_RuntimeMethod_var); } // end catch (depth: 1) IL_0087: { return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::IsCompatibleKey(System.Object) extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_IsCompatibleKey_m170761FDCD20FB91F13C2790FA1952AB14DBAA94_gshared (RuntimeObject * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_IsCompatibleKey_m170761FDCD20FB91F13C2790FA1952AB14DBAA94_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_IsCompatibleKey_m170761FDCD20FB91F13C2790FA1952AB14DBAA94_RuntimeMethod_var); } IL_000e: { RuntimeObject * L_2 = ___key0; return (bool)((!(((RuntimeObject*)(RuntimeObject *)((RuntimeObject *)IsInst((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 27)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0); } } // System.Collections.IDictionaryEnumerator System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::System.Collections.IDictionary.GetEnumerator() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_System_Collections_IDictionary_GetEnumerator_mCECD8AB59CE498EF5651AA60B3B19D6CC941EBEF_gshared (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * __this, const RuntimeMethod* method) { { Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E L_0; memset(&L_0, 0, sizeof(L_0)); Enumerator__ctor_m6CDFD6E23B852DAFE3CFDCD8C705B8C4C31ABE03((&L_0), (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this, (int32_t)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)); Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 21), &L_1); return (RuntimeObject*)L_2; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::.ctor() extern "C" IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m2C7E51568033239B506E15E7804A0B8658246498_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, const RuntimeMethod* method) { { NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); (( void (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, (int32_t)0, (RuntimeObject*)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::.ctor(System.Int32) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m2895EBB13AA7D9232058658A7DC404DC5F608923_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, int32_t ___capacity0, const RuntimeMethod* method) { { int32_t L_0 = ___capacity0; NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); (( void (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, (int32_t)L_0, (RuntimeObject*)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::.ctor(System.Collections.Generic.IEqualityComparer`1<TKey>) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m76CDCB0C7BECE95DBA94C7C98467F297E4451EE7_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___comparer0; NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); (( void (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, (int32_t)0, (RuntimeObject*)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::.ctor(System.Int32,System.Collections.Generic.IEqualityComparer`1<TKey>) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m499028E85929789637749F7847C5EA53E99B51A0_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, int32_t ___capacity0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2__ctor_m499028E85929789637749F7847C5EA53E99B51A0_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* G_B6_0 = NULL; Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * G_B6_1 = NULL; RuntimeObject* G_B5_0 = NULL; Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * G_B5_1 = NULL; { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); int32_t L_0 = ___capacity0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0020; } } { int32_t L_1 = ___capacity0; int32_t L_2 = L_1; RuntimeObject * L_3 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_2); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_4 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378(L_4, (String_t*)_stringLiteral7CB1F56D3FBE09E809244FC8E13671CD876E3860, (RuntimeObject *)L_3, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Dictionary_2__ctor_m499028E85929789637749F7847C5EA53E99B51A0_RuntimeMethod_var); } IL_0020: { int32_t L_5 = ___capacity0; if ((((int32_t)L_5) <= ((int32_t)0))) { goto IL_002b; } } { int32_t L_6 = ___capacity0; NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); (( void (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, (int32_t)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); } IL_002b: { RuntimeObject* L_7 = ___comparer1; RuntimeObject* L_8 = (RuntimeObject*)L_7; G_B5_0 = L_8; G_B5_1 = ((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)(__this)); if (L_8) { G_B6_0 = L_8; G_B6_1 = ((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)(__this)); goto IL_0036; } } { EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * L_9 = (( EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); G_B6_0 = ((RuntimeObject*)(L_9)); G_B6_1 = ((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)(G_B5_1)); } IL_0036: { NullCheck(G_B6_1); G_B6_1->set_comparer_6(G_B6_0); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m1349AC7001410F92CA7F2F0A2245F564950594D2_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2__ctor_m1349AC7001410F92CA7F2F0A2245F564950594D2_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00_il2cpp_TypeInfo_var); ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * L_0 = DictionaryHashHelpers_get_SerializationInfoTable_mCF0A53E777EAFE1AA018C02529AFF6D3CDF7A05C(/*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_1 = ___info0; NullCheck((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_0); ConditionalWeakTable_2_Add_mCC3585BE91A7BDFC49EEFDE4C11173A36D1FB5FE((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_0, (RuntimeObject *)__this, (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_1, /*hidden argument*/ConditionalWeakTable_2_Add_mCC3585BE91A7BDFC49EEFDE4C11173A36D1FB5FE_RuntimeMethod_var); return; } } // System.Int32 System.Collections.Generic.Dictionary`2<System.Object,System.Object>::get_Count() extern "C" IL2CPP_METHOD_ATTR int32_t Dictionary_2_get_Count_m1B06EB9D28DDA7E38DDC20D88532DFF246F03DF6_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_count_2(); int32_t L_1 = (int32_t)__this->get_freeCount_5(); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)); } } // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,System.Object>::get_Keys() extern "C" IL2CPP_METHOD_ATTR KeyCollection_t0394DE2BA7C2C82605C6E9DEBB21A8C5C792E97C * Dictionary_2_get_Keys_m079EE5437EE7D904E9E3F798041C1108B96B3AC3_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, const RuntimeMethod* method) { { KeyCollection_t0394DE2BA7C2C82605C6E9DEBB21A8C5C792E97C * L_0 = (KeyCollection_t0394DE2BA7C2C82605C6E9DEBB21A8C5C792E97C *)__this->get_keys_7(); if (L_0) { goto IL_0014; } } { KeyCollection_t0394DE2BA7C2C82605C6E9DEBB21A8C5C792E97C * L_1 = (KeyCollection_t0394DE2BA7C2C82605C6E9DEBB21A8C5C792E97C *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4)); (( void (*) (KeyCollection_t0394DE2BA7C2C82605C6E9DEBB21A8C5C792E97C *, Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)(L_1, (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); __this->set_keys_7(L_1); } IL_0014: { KeyCollection_t0394DE2BA7C2C82605C6E9DEBB21A8C5C792E97C * L_2 = (KeyCollection_t0394DE2BA7C2C82605C6E9DEBB21A8C5C792E97C *)__this->get_keys_7(); return L_2; } } // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,System.Object>::get_Values() extern "C" IL2CPP_METHOD_ATTR ValueCollection_t0816666499CBD11E58E1E7C79A4EFC2AA47E08A2 * Dictionary_2_get_Values_m58CC32586C31C6F38B730DE7CD79A1FFE9109BA4_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, const RuntimeMethod* method) { { ValueCollection_t0816666499CBD11E58E1E7C79A4EFC2AA47E08A2 * L_0 = (ValueCollection_t0816666499CBD11E58E1E7C79A4EFC2AA47E08A2 *)__this->get_values_8(); if (L_0) { goto IL_0014; } } { ValueCollection_t0816666499CBD11E58E1E7C79A4EFC2AA47E08A2 * L_1 = (ValueCollection_t0816666499CBD11E58E1E7C79A4EFC2AA47E08A2 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)); (( void (*) (ValueCollection_t0816666499CBD11E58E1E7C79A4EFC2AA47E08A2 *, Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)(L_1, (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)); __this->set_values_8(L_1); } IL_0014: { ValueCollection_t0816666499CBD11E58E1E7C79A4EFC2AA47E08A2 * L_2 = (ValueCollection_t0816666499CBD11E58E1E7C79A4EFC2AA47E08A2 *)__this->get_values_8(); return L_2; } } // TValue System.Collections.Generic.Dictionary`2<System.Object,System.Object>::get_Item(TKey) extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Dictionary_2_get_Item_m6625C3BA931A6EE5D6DB46B9E743B40AAA30010B_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_get_Item_m6625C3BA931A6EE5D6DB46B9E743B40AAA30010B_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { RuntimeObject * L_0 = ___key0; NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_001e; } } { EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_3 = (EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6*)__this->get_entries_1(); int32_t L_4 = V_0; NullCheck(L_3); RuntimeObject * L_5 = (RuntimeObject *)((L_3)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_4)))->get_value_3(); return L_5; } IL_001e: { KeyNotFoundException_tC28F8B9E114291001A5D135723673C6F292438E2 * L_6 = (KeyNotFoundException_tC28F8B9E114291001A5D135723673C6F292438E2 *)il2cpp_codegen_object_new(KeyNotFoundException_tC28F8B9E114291001A5D135723673C6F292438E2_il2cpp_TypeInfo_var); KeyNotFoundException__ctor_mE9E1C6E6E21842095342C0A2ED65EC201FB4F3C8(L_6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, Dictionary_2_get_Item_m6625C3BA931A6EE5D6DB46B9E743B40AAA30010B_RuntimeMethod_var); } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::set_Item(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_m466D001F105E25DEB5C9BCB17837EE92A27FDE93_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; RuntimeObject * L_1 = ___value1; NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); (( bool (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, RuntimeObject *, RuntimeObject *, uint8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, (RuntimeObject *)L_0, (RuntimeObject *)L_1, (uint8_t)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::Add(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_Add_mC741BBB0A647C814227953DB9B23CB1BDF571C5B_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; RuntimeObject * L_1 = ___value1; NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); (( bool (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, RuntimeObject *, RuntimeObject *, uint8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, (RuntimeObject *)L_0, (RuntimeObject *)L_1, (uint8_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Add(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Add_m02123021BD44DAD125FBC16A09C91E03B817E29C_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE ___keyValuePair0, const RuntimeMethod* method) { { RuntimeObject * L_0 = KeyValuePair_2_get_Key_m9D4E9BCBAB1BE560871A0889C851FC22A09975F4((KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); RuntimeObject * L_1 = KeyValuePair_2_get_Value_m8C7B882C4D425535288FAAD08EAF11D289A43AEC((KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); (( void (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, (RuntimeObject *)L_0, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Contains(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Contains_m2CB7B292EE9A7DF5A8F6043071D85B56508F7B13_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE ___keyValuePair0, const RuntimeMethod* method) { int32_t V_0 = 0; { RuntimeObject * L_0 = KeyValuePair_2_get_Key_m9D4E9BCBAB1BE560871A0889C851FC22A09975F4((KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0038; } } { EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * L_3 = (( EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)); EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_4 = (EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6*)__this->get_entries_1(); int32_t L_5 = V_0; NullCheck(L_4); RuntimeObject * L_6 = (RuntimeObject *)((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_value_3(); RuntimeObject * L_7 = KeyValuePair_2_get_Value_m8C7B882C4D425535288FAAD08EAF11D289A43AEC((KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); NullCheck((EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA *)L_3); bool L_8 = VirtFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Object>::Equals(T,T) */, (EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA *)L_3, (RuntimeObject *)L_6, (RuntimeObject *)L_7); if (!L_8) { goto IL_0038; } } { return (bool)1; } IL_0038: { return (bool)0; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Remove(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Remove_m099F1D3C232A516A7CCED6F2CB046A046C6A97F9_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE ___keyValuePair0, const RuntimeMethod* method) { int32_t V_0 = 0; { RuntimeObject * L_0 = KeyValuePair_2_get_Key_m9D4E9BCBAB1BE560871A0889C851FC22A09975F4((KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0046; } } { EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * L_3 = (( EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)); EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_4 = (EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6*)__this->get_entries_1(); int32_t L_5 = V_0; NullCheck(L_4); RuntimeObject * L_6 = (RuntimeObject *)((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_value_3(); RuntimeObject * L_7 = KeyValuePair_2_get_Value_m8C7B882C4D425535288FAAD08EAF11D289A43AEC((KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); NullCheck((EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA *)L_3); bool L_8 = VirtFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Object>::Equals(T,T) */, (EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA *)L_3, (RuntimeObject *)L_6, (RuntimeObject *)L_7); if (!L_8) { goto IL_0046; } } { RuntimeObject * L_9 = KeyValuePair_2_get_Key_m9D4E9BCBAB1BE560871A0889C851FC22A09975F4((KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); (( bool (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, (RuntimeObject *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16)); return (bool)1; } IL_0046: { return (bool)0; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::Clear() extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_Clear_m1115171C74C982EA09CF1B8DB7E4C97ED6AC23D4_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0 = (int32_t)__this->get_count_2(); if ((((int32_t)L_0) <= ((int32_t)0))) { goto IL_005a; } } { V_0 = (int32_t)0; goto IL_001a; } IL_000d: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_1 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_2 = V_0; NullCheck(L_1); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(L_2), (int32_t)(-1)); int32_t L_3 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)); } IL_001a: { int32_t L_4 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_5 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_5); if ((((int32_t)L_4) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_5)->max_length))))))) { goto IL_000d; } } { EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_6 = (EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6*)__this->get_entries_1(); int32_t L_7 = (int32_t)__this->get_count_2(); Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_6, (int32_t)0, (int32_t)L_7, /*hidden argument*/NULL); __this->set_freeList_4((-1)); __this->set_count_2(0); __this->set_freeCount_5(0); int32_t L_8 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1))); } IL_005a: { return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::ContainsKey(TKey) extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_ContainsKey_m4EBC00E16E83DA33851A551757D2B7332D5756B9_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); return (bool)((((int32_t)((((int32_t)L_1) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::ContainsValue(TValue) extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_ContainsValue_mBB6B5B5840E3CC8C34F28CA181A62FD0F3CAD821_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { int32_t V_0 = 0; EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * V_1 = NULL; int32_t V_2 = 0; { RuntimeObject * L_0 = ___value0; if (L_0) { goto IL_0049; } } { V_0 = (int32_t)0; goto IL_003e; } IL_000c: { EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_1 = (EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6*)__this->get_entries_1(); int32_t L_2 = V_0; NullCheck(L_1); int32_t L_3 = (int32_t)((L_1)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_2)))->get_hashCode_0(); if ((((int32_t)L_3) < ((int32_t)0))) { goto IL_003a; } } { EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_4 = (EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6*)__this->get_entries_1(); int32_t L_5 = V_0; NullCheck(L_4); RuntimeObject * L_6 = (RuntimeObject *)((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_value_3(); if (L_6) { goto IL_003a; } } { return (bool)1; } IL_003a: { int32_t L_7 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1)); } IL_003e: { int32_t L_8 = V_0; int32_t L_9 = (int32_t)__this->get_count_2(); if ((((int32_t)L_8) < ((int32_t)L_9))) { goto IL_000c; } } { goto IL_0090; } IL_0049: { EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * L_10 = (( EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)); V_1 = (EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA *)L_10; V_2 = (int32_t)0; goto IL_0087; } IL_0053: { EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_11 = (EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6*)__this->get_entries_1(); int32_t L_12 = V_2; NullCheck(L_11); int32_t L_13 = (int32_t)((L_11)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_12)))->get_hashCode_0(); if ((((int32_t)L_13) < ((int32_t)0))) { goto IL_0083; } } { EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * L_14 = V_1; EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_15 = (EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6*)__this->get_entries_1(); int32_t L_16 = V_2; NullCheck(L_15); RuntimeObject * L_17 = (RuntimeObject *)((L_15)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_16)))->get_value_3(); RuntimeObject * L_18 = ___value0; NullCheck((EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA *)L_14); bool L_19 = VirtFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Object>::Equals(T,T) */, (EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA *)L_14, (RuntimeObject *)L_17, (RuntimeObject *)L_18); if (!L_19) { goto IL_0083; } } { return (bool)1; } IL_0083: { int32_t L_20 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1)); } IL_0087: { int32_t L_21 = V_2; int32_t L_22 = (int32_t)__this->get_count_2(); if ((((int32_t)L_21) < ((int32_t)L_22))) { goto IL_0053; } } IL_0090: { return (bool)0; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_CopyTo_m864F8B875F42B6B97A8DE9D0587511163F6DAD7A_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262* ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_CopyTo_m864F8B875F42B6B97A8DE9D0587511163F6DAD7A_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* V_1 = NULL; int32_t V_2 = 0; { KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_CopyTo_m864F8B875F42B6B97A8DE9D0587511163F6DAD7A_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___index1; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_3 = ___index1; KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262* L_4 = ___array0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_4)->max_length))))))) { goto IL_002e; } } IL_0018: { int32_t L_5 = ___index1; int32_t L_6 = L_5; RuntimeObject * L_7 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_6); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_8 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378(L_8, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, (RuntimeObject *)L_7, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, Dictionary_2_CopyTo_m864F8B875F42B6B97A8DE9D0587511163F6DAD7A_RuntimeMethod_var); } IL_002e: { KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262* L_9 = ___array0; NullCheck(L_9); int32_t L_10 = ___index1; NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); int32_t L_11 = (( int32_t (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_9)->max_length)))), (int32_t)L_10))) >= ((int32_t)L_11))) { goto IL_0046; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_12, (String_t*)_stringLiteralBC80A496F1C479B70F6EE2BF2F0C3C05463301B8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, NULL, Dictionary_2_CopyTo_m864F8B875F42B6B97A8DE9D0587511163F6DAD7A_RuntimeMethod_var); } IL_0046: { int32_t L_13 = (int32_t)__this->get_count_2(); V_0 = (int32_t)L_13; EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_14 = (EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6*)__this->get_entries_1(); V_1 = (EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6*)L_14; V_2 = (int32_t)0; goto IL_0094; } IL_0058: { EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_15 = V_1; int32_t L_16 = V_2; NullCheck(L_15); int32_t L_17 = (int32_t)((L_15)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_16)))->get_hashCode_0(); if ((((int32_t)L_17) < ((int32_t)0))) { goto IL_0090; } } { KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262* L_18 = ___array0; int32_t L_19 = ___index1; int32_t L_20 = (int32_t)L_19; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1)); EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_21 = V_1; int32_t L_22 = V_2; NullCheck(L_21); RuntimeObject * L_23 = (RuntimeObject *)((L_21)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_22)))->get_key_2(); EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_24 = V_1; int32_t L_25 = V_2; NullCheck(L_24); RuntimeObject * L_26 = (RuntimeObject *)((L_24)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_25)))->get_value_3(); KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE L_27; memset(&L_27, 0, sizeof(L_27)); KeyValuePair_2__ctor_m783A0935E40FCB80D5940E8CCF0EFEFE41D7C7D3((&L_27), (RuntimeObject *)L_23, (RuntimeObject *)L_26, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 20)); NullCheck(L_18); (L_18)->SetAt(static_cast<il2cpp_array_size_t>(L_20), (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE )L_27); } IL_0090: { int32_t L_28 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_28, (int32_t)1)); } IL_0094: { int32_t L_29 = V_2; int32_t L_30 = V_0; if ((((int32_t)L_29) < ((int32_t)L_30))) { goto IL_0058; } } { return; } } // System.Collections.Generic.Dictionary`2/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,System.Object>::GetEnumerator() extern "C" IL2CPP_METHOD_ATTR Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB Dictionary_2_GetEnumerator_mF1CF1D13F3E70C6D20D96D9AC88E44454E4C0053_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, const RuntimeMethod* method) { { Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB L_0; memset(&L_0, 0, sizeof(L_0)); Enumerator__ctor_m3FD84B57A809FF88FC26B86687686E3949F9CBC8((&L_0), (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, (int32_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)); return L_0; } } // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<TKey,TValue>> System.Collections.Generic.Dictionary`2<System.Object,System.Object>::System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>.GetEnumerator() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_System_Collections_Generic_IEnumerableU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_GetEnumerator_mD4A55E4832243F97DAA06D7D0F4E542770774BC2_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, const RuntimeMethod* method) { { Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB L_0; memset(&L_0, 0, sizeof(L_0)); Enumerator__ctor_m3FD84B57A809FF88FC26B86687686E3949F9CBC8((&L_0), (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, (int32_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)); Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 21), &L_1); return (RuntimeObject*)L_2; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_GetObjectData_mD3BE8CA8EEA44C1B845B8317BA1B6BF461E0805B_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_GetObjectData_mD3BE8CA8EEA44C1B845B8317BA1B6BF461E0805B_MetadataUsageId); s_Il2CppMethodInitialized = true; } KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262* V_0 = NULL; String_t* G_B4_0 = NULL; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * G_B4_1 = NULL; String_t* G_B3_0 = NULL; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * G_B3_1 = NULL; int32_t G_B5_0 = 0; String_t* G_B5_1 = NULL; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * G_B5_2 = NULL; { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_GetObjectData_mD3BE8CA8EEA44C1B845B8317BA1B6BF461E0805B_RuntimeMethod_var); } IL_000e: { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0; int32_t L_3 = (int32_t)__this->get_version_3(); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_2); SerializationInfo_AddValue_m7C73917D9DC4B8FE4AFEF4BA8EBEDAB046A8D0BD((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_2, (String_t*)_stringLiteral2DA600BF9404843107A9531694F654E5662959E0, (int32_t)L_3, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_4 = ___info0; RuntimeObject* L_5 = (RuntimeObject*)__this->get_comparer_6(); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 23)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_6, /*hidden argument*/NULL); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_4); SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_4, (String_t*)_stringLiteral8FC94E4F5B71CECE2565D72417AACC804EE27A0D, (RuntimeObject *)L_5, (Type_t *)L_7, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_8 = ___info0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_9 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); G_B3_0 = _stringLiteral35E05A2D28CF03B64D64C58D0C7ED03AD5A3AF60; G_B3_1 = L_8; if (!L_9) { G_B4_0 = _stringLiteral35E05A2D28CF03B64D64C58D0C7ED03AD5A3AF60; G_B4_1 = L_8; goto IL_0052; } } { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_10 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_10); G_B5_0 = (((int32_t)((int32_t)(((RuntimeArray *)L_10)->max_length)))); G_B5_1 = G_B3_0; G_B5_2 = G_B3_1; goto IL_0053; } IL_0052: { G_B5_0 = 0; G_B5_1 = G_B4_0; G_B5_2 = G_B4_1; } IL_0053: { NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)G_B5_2); SerializationInfo_AddValue_m7C73917D9DC4B8FE4AFEF4BA8EBEDAB046A8D0BD((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)G_B5_2, (String_t*)G_B5_1, (int32_t)G_B5_0, /*hidden argument*/NULL); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_11 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); if (!L_11) { goto IL_008a; } } { NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); int32_t L_12 = (( int32_t (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)); KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262* L_13 = (KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 24), (uint32_t)L_12); V_0 = (KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262*)L_13; KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262* L_14 = V_0; NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); (( void (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 25)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, (KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262*)L_14, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 25)); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_15 = ___info0; KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262* L_16 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_17 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 26)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_18 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_17, /*hidden argument*/NULL); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_15); SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_15, (String_t*)_stringLiteral1D89254A2BC78C1FF41C2F6767A0E00EE126B3BF, (RuntimeObject *)(RuntimeObject *)L_16, (Type_t *)L_18, /*hidden argument*/NULL); } IL_008a: { return; } } // System.Int32 System.Collections.Generic.Dictionary`2<System.Object,System.Object>::FindEntry(TKey) extern "C" IL2CPP_METHOD_ATTR int32_t Dictionary_2_FindEntry_mFDF9D228127FB25281E0A80AA968857CC42D0069_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_FindEntry_mFDF9D228127FB25281E0A80AA968857CC42D0069_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_0013; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_FindEntry_mFDF9D228127FB25281E0A80AA968857CC42D0069_RuntimeMethod_var); } IL_0013: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); if (!L_2) { goto IL_008d; } } { RuntimeObject* L_3 = (RuntimeObject*)__this->get_comparer_6(); RuntimeObject * L_4 = ___key0; NullCheck((RuntimeObject*)L_3); int32_t L_5 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Object>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28), (RuntimeObject*)L_3, (RuntimeObject *)L_4); V_0 = (int32_t)((int32_t)((int32_t)L_5&(int32_t)((int32_t)2147483647LL))); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_6 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_7 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_8); NullCheck(L_6); int32_t L_9 = ((int32_t)((int32_t)L_7%(int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length)))))); int32_t L_10 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_9)); V_1 = (int32_t)L_10; goto IL_0089; } IL_0042: { EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_11 = (EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6*)__this->get_entries_1(); int32_t L_12 = V_1; NullCheck(L_11); int32_t L_13 = (int32_t)((L_11)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_12)))->get_hashCode_0(); int32_t L_14 = V_0; if ((!(((uint32_t)L_13) == ((uint32_t)L_14)))) { goto IL_0077; } } { RuntimeObject* L_15 = (RuntimeObject*)__this->get_comparer_6(); EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_16 = (EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6*)__this->get_entries_1(); int32_t L_17 = V_1; NullCheck(L_16); RuntimeObject * L_18 = (RuntimeObject *)((L_16)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_17)))->get_key_2(); RuntimeObject * L_19 = ___key0; NullCheck((RuntimeObject*)L_15); bool L_20 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.Generic.IEqualityComparer`1<System.Object>::Equals(T,T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28), (RuntimeObject*)L_15, (RuntimeObject *)L_18, (RuntimeObject *)L_19); if (!L_20) { goto IL_0077; } } { int32_t L_21 = V_1; return L_21; } IL_0077: { EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_22 = (EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6*)__this->get_entries_1(); int32_t L_23 = V_1; NullCheck(L_22); int32_t L_24 = (int32_t)((L_22)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_23)))->get_next_1(); V_1 = (int32_t)L_24; } IL_0089: { int32_t L_25 = V_1; if ((((int32_t)L_25) >= ((int32_t)0))) { goto IL_0042; } } IL_008d: { return (-1); } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::Initialize(System.Int32) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_Initialize_mF7D42C77254CEC29BA9D805608E31F501AFB5F64_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, int32_t ___capacity0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Initialize_mF7D42C77254CEC29BA9D805608E31F501AFB5F64_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = ___capacity0; IL2CPP_RUNTIME_CLASS_INIT(HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_il2cpp_TypeInfo_var); int32_t L_1 = HashHelpers_GetPrime_m743D7006C2BCBADC1DC8CACF7C5B78C9F6B38297((int32_t)L_0, /*hidden argument*/NULL); V_0 = (int32_t)L_1; int32_t L_2 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_3 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)L_2); __this->set_buckets_0(L_3); V_1 = (int32_t)0; goto IL_0024; } IL_0017: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_4 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_5 = V_1; NullCheck(L_4); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (int32_t)(-1)); int32_t L_6 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1)); } IL_0024: { int32_t L_7 = V_1; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_8); if ((((int32_t)L_7) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length))))))) { goto IL_0017; } } { int32_t L_9 = V_0; EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_10 = (EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 29), (uint32_t)L_9); __this->set_entries_1(L_10); __this->set_freeList_4((-1)); return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::TryInsert(TKey,TValue,System.Collections.Generic.InsertionBehavior) extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_TryInsert_mED1C552AB4DDD3CC9789DEC21407767B9803F005_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, uint8_t ___behavior2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_TryInsert_mED1C552AB4DDD3CC9789DEC21407767B9803F005_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_0013; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_TryInsert_mED1C552AB4DDD3CC9789DEC21407767B9803F005_RuntimeMethod_var); } IL_0013: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); if (L_2) { goto IL_0022; } } { NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); (( void (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); } IL_0022: { RuntimeObject* L_3 = (RuntimeObject*)__this->get_comparer_6(); RuntimeObject * L_4 = ___key0; NullCheck((RuntimeObject*)L_3); int32_t L_5 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Object>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28), (RuntimeObject*)L_3, (RuntimeObject *)L_4); V_0 = (int32_t)((int32_t)((int32_t)L_5&(int32_t)((int32_t)2147483647LL))); int32_t L_6 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_7 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_7); V_1 = (int32_t)((int32_t)((int32_t)L_6%(int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_7)->max_length)))))); V_2 = (int32_t)0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_9 = V_1; NullCheck(L_8); int32_t L_10 = L_9; int32_t L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); V_4 = (int32_t)L_11; goto IL_00e1; } IL_0051: { EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_12 = (EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6*)__this->get_entries_1(); int32_t L_13 = V_4; NullCheck(L_12); int32_t L_14 = (int32_t)((L_12)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_13)))->get_hashCode_0(); int32_t L_15 = V_0; if ((!(((uint32_t)L_14) == ((uint32_t)L_15)))) { goto IL_00c9; } } { RuntimeObject* L_16 = (RuntimeObject*)__this->get_comparer_6(); EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_17 = (EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6*)__this->get_entries_1(); int32_t L_18 = V_4; NullCheck(L_17); RuntimeObject * L_19 = (RuntimeObject *)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18)))->get_key_2(); RuntimeObject * L_20 = ___key0; NullCheck((RuntimeObject*)L_16); bool L_21 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.Generic.IEqualityComparer`1<System.Object>::Equals(T,T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28), (RuntimeObject*)L_16, (RuntimeObject *)L_19, (RuntimeObject *)L_20); if (!L_21) { goto IL_00c9; } } { uint8_t L_22 = ___behavior2; if ((!(((uint32_t)L_22) == ((uint32_t)1)))) { goto IL_00ad; } } { EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_23 = (EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6*)__this->get_entries_1(); int32_t L_24 = V_4; NullCheck(L_23); RuntimeObject * L_25 = ___value1; ((L_23)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_24)))->set_value_3(L_25); int32_t L_26 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1))); return (bool)1; } IL_00ad: { uint8_t L_27 = ___behavior2; if ((!(((uint32_t)L_27) == ((uint32_t)2)))) { goto IL_00c7; } } { RuntimeObject * L_28 = ___key0; String_t* L_29 = SR_Format_mCDBB594267CC224AB2A69540BBA598151F0642C7((String_t*)_stringLiteral6FD577FD3A1BDC4DA28CD51D7A55EB397CEA3926, (RuntimeObject *)L_28, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_30 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_30, (String_t*)L_29, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_30, NULL, Dictionary_2_TryInsert_mED1C552AB4DDD3CC9789DEC21407767B9803F005_RuntimeMethod_var); } IL_00c7: { return (bool)0; } IL_00c9: { int32_t L_31 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_31, (int32_t)1)); EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_32 = (EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6*)__this->get_entries_1(); int32_t L_33 = V_4; NullCheck(L_32); int32_t L_34 = (int32_t)((L_32)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_33)))->get_next_1(); V_4 = (int32_t)L_34; } IL_00e1: { int32_t L_35 = V_4; if ((((int32_t)L_35) >= ((int32_t)0))) { goto IL_0051; } } { int32_t L_36 = (int32_t)__this->get_freeCount_5(); if ((((int32_t)L_36) <= ((int32_t)0))) { goto IL_0120; } } { int32_t L_37 = (int32_t)__this->get_freeList_4(); V_3 = (int32_t)L_37; EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_38 = (EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6*)__this->get_entries_1(); int32_t L_39 = V_3; NullCheck(L_38); int32_t L_40 = (int32_t)((L_38)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_39)))->get_next_1(); __this->set_freeList_4(L_40); int32_t L_41 = (int32_t)__this->get_freeCount_5(); __this->set_freeCount_5(((int32_t)il2cpp_codegen_subtract((int32_t)L_41, (int32_t)1))); goto IL_0156; } IL_0120: { int32_t L_42 = (int32_t)__this->get_count_2(); EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_43 = (EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6*)__this->get_entries_1(); NullCheck(L_43); if ((!(((uint32_t)L_42) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_43)->max_length)))))))) { goto IL_0141; } } { NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); (( void (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 30)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 30)); int32_t L_44 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_45 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_45); V_1 = (int32_t)((int32_t)((int32_t)L_44%(int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_45)->max_length)))))); } IL_0141: { int32_t L_46 = (int32_t)__this->get_count_2(); V_3 = (int32_t)L_46; int32_t L_47 = (int32_t)__this->get_count_2(); __this->set_count_2(((int32_t)il2cpp_codegen_add((int32_t)L_47, (int32_t)1))); } IL_0156: { EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_48 = (EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6*)__this->get_entries_1(); int32_t L_49 = V_3; NullCheck(L_48); int32_t L_50 = V_0; ((L_48)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_49)))->set_hashCode_0(L_50); EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_51 = (EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6*)__this->get_entries_1(); int32_t L_52 = V_3; NullCheck(L_51); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_53 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_54 = V_1; NullCheck(L_53); int32_t L_55 = L_54; int32_t L_56 = (L_53)->GetAt(static_cast<il2cpp_array_size_t>(L_55)); ((L_51)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_52)))->set_next_1(L_56); EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_57 = (EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6*)__this->get_entries_1(); int32_t L_58 = V_3; NullCheck(L_57); RuntimeObject * L_59 = ___key0; ((L_57)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_58)))->set_key_2(L_59); EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_60 = (EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6*)__this->get_entries_1(); int32_t L_61 = V_3; NullCheck(L_60); RuntimeObject * L_62 = ___value1; ((L_60)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_61)))->set_value_3(L_62); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_63 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_64 = V_1; int32_t L_65 = V_3; NullCheck(L_63); (L_63)->SetAt(static_cast<il2cpp_array_size_t>(L_64), (int32_t)L_65); int32_t L_66 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_66, (int32_t)1))); int32_t L_67 = V_2; if ((((int32_t)L_67) <= ((int32_t)((int32_t)100)))) { goto IL_01ed; } } { RuntimeObject* L_68 = (RuntimeObject*)__this->get_comparer_6(); if (!((NonRandomizedStringEqualityComparer_t92C20503D9C5060A557792ABCCC06EF2DD77E5D9 *)IsInst((RuntimeObject*)L_68, NonRandomizedStringEqualityComparer_t92C20503D9C5060A557792ABCCC06EF2DD77E5D9_il2cpp_TypeInfo_var))) { goto IL_01ed; } } { EqualityComparer_1_tBEFFC6F649A17852373A084880D57CB299084137 * L_69 = EqualityComparer_1_get_Default_m85F378D7298050D5DF422363D5EB30A218B769B7(/*hidden argument*/EqualityComparer_1_get_Default_m85F378D7298050D5DF422363D5EB30A218B769B7_RuntimeMethod_var); __this->set_comparer_6(((RuntimeObject*)Castclass((RuntimeObject*)L_69, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28)))); EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_70 = (EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6*)__this->get_entries_1(); NullCheck(L_70); NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); (( void (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, int32_t, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, (int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_70)->max_length)))), (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)); } IL_01ed: { return (bool)1; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::OnDeserialization(System.Object) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_OnDeserialization_m967C18291BF9DFEF8D9AA60323D01408BB421AB4_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * ___sender0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_OnDeserialization_m967C18291BF9DFEF8D9AA60323D01408BB421AB4_MetadataUsageId); s_Il2CppMethodInitialized = true; } SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262* V_3 = NULL; int32_t V_4 = 0; int32_t V_5 = 0; { IL2CPP_RUNTIME_CLASS_INIT(DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00_il2cpp_TypeInfo_var); ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * L_0 = DictionaryHashHelpers_get_SerializationInfoTable_mCF0A53E777EAFE1AA018C02529AFF6D3CDF7A05C(/*hidden argument*/NULL); NullCheck((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_0); ConditionalWeakTable_2_TryGetValue_mDFCB6C303807E3F8998D196F4573870680E81F8B((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_0, (RuntimeObject *)__this, (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 **)(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 **)(&V_0), /*hidden argument*/ConditionalWeakTable_2_TryGetValue_mDFCB6C303807E3F8998D196F4573870680E81F8B_RuntimeMethod_var); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_1 = V_0; if (L_1) { goto IL_0012; } } { return; } IL_0012: { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = V_0; NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_2); int32_t L_3 = SerializationInfo_GetInt32_mB47BD46A0BDBBAF5B47BB62E6EFF8E092E3F3656((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_2, (String_t*)_stringLiteral2DA600BF9404843107A9531694F654E5662959E0, /*hidden argument*/NULL); V_1 = (int32_t)L_3; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_4 = V_0; NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_4); int32_t L_5 = SerializationInfo_GetInt32_mB47BD46A0BDBBAF5B47BB62E6EFF8E092E3F3656((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_4, (String_t*)_stringLiteral35E05A2D28CF03B64D64C58D0C7ED03AD5A3AF60, /*hidden argument*/NULL); V_2 = (int32_t)L_5; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_6 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_7 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 23)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_8 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_7, /*hidden argument*/NULL); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_6); RuntimeObject * L_9 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_6, (String_t*)_stringLiteral8FC94E4F5B71CECE2565D72417AACC804EE27A0D, (Type_t *)L_8, /*hidden argument*/NULL); __this->set_comparer_6(((RuntimeObject*)Castclass((RuntimeObject*)L_9, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28)))); int32_t L_10 = V_2; if (!L_10) { goto IL_010c; } } { int32_t L_11 = V_2; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_12 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)L_11); __this->set_buckets_0(L_12); V_4 = (int32_t)0; goto IL_0071; } IL_0061: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_13 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_14 = V_4; NullCheck(L_13); (L_13)->SetAt(static_cast<il2cpp_array_size_t>(L_14), (int32_t)(-1)); int32_t L_15 = V_4; V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)); } IL_0071: { int32_t L_16 = V_4; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_17 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_17); if ((((int32_t)L_16) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_17)->max_length))))))) { goto IL_0061; } } { int32_t L_18 = V_2; EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_19 = (EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 29), (uint32_t)L_18); __this->set_entries_1(L_19); __this->set_freeList_4((-1)); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_20 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_21 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 26)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_22 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_21, /*hidden argument*/NULL); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_20); RuntimeObject * L_23 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_20, (String_t*)_stringLiteral1D89254A2BC78C1FF41C2F6767A0E00EE126B3BF, (Type_t *)L_22, /*hidden argument*/NULL); V_3 = (KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262*)((KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262*)Castclass((RuntimeObject*)L_23, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 32))); KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262* L_24 = V_3; if (L_24) { goto IL_00b9; } } { SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 * L_25 = (SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 *)il2cpp_codegen_object_new(SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_il2cpp_TypeInfo_var); SerializationException__ctor_m88AAD9671030A8A96AA87CB95701938FBD8F16E1(L_25, (String_t*)_stringLiteral1EB7E67EA75FFC3FCB05A9685FA4F1578DCACCF6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_25, NULL, Dictionary_2_OnDeserialization_m967C18291BF9DFEF8D9AA60323D01408BB421AB4_RuntimeMethod_var); } IL_00b9: { V_5 = (int32_t)0; goto IL_0103; } IL_00be: { KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262* L_26 = V_3; int32_t L_27 = V_5; NullCheck(L_26); RuntimeObject * L_28 = KeyValuePair_2_get_Key_m9D4E9BCBAB1BE560871A0889C851FC22A09975F4((KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)((L_26)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_27))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); if (L_28) { goto IL_00dd; } } { SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 * L_29 = (SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 *)il2cpp_codegen_object_new(SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_il2cpp_TypeInfo_var); SerializationException__ctor_m88AAD9671030A8A96AA87CB95701938FBD8F16E1(L_29, (String_t*)_stringLiteralD6D1BC79DD62E9F1FB9A49A8F76F4BA8AB71AECD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_29, NULL, Dictionary_2_OnDeserialization_m967C18291BF9DFEF8D9AA60323D01408BB421AB4_RuntimeMethod_var); } IL_00dd: { KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262* L_30 = V_3; int32_t L_31 = V_5; NullCheck(L_30); RuntimeObject * L_32 = KeyValuePair_2_get_Key_m9D4E9BCBAB1BE560871A0889C851FC22A09975F4((KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)((L_30)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_31))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262* L_33 = V_3; int32_t L_34 = V_5; NullCheck(L_33); RuntimeObject * L_35 = KeyValuePair_2_get_Value_m8C7B882C4D425535288FAAD08EAF11D289A43AEC((KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); (( void (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, (RuntimeObject *)L_32, (RuntimeObject *)L_35, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); int32_t L_36 = V_5; V_5 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_36, (int32_t)1)); } IL_0103: { int32_t L_37 = V_5; KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262* L_38 = V_3; NullCheck(L_38); if ((((int32_t)L_37) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_38)->max_length))))))) { goto IL_00be; } } { goto IL_0113; } IL_010c: { __this->set_buckets_0((Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)NULL); } IL_0113: { int32_t L_39 = V_1; __this->set_version_3(L_39); IL2CPP_RUNTIME_CLASS_INIT(DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00_il2cpp_TypeInfo_var); ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * L_40 = DictionaryHashHelpers_get_SerializationInfoTable_mCF0A53E777EAFE1AA018C02529AFF6D3CDF7A05C(/*hidden argument*/NULL); NullCheck((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_40); ConditionalWeakTable_2_Remove_mD69606977A8C793DEA91E373F7D886E4865D7FBD((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_40, (RuntimeObject *)__this, /*hidden argument*/ConditionalWeakTable_2_Remove_mD69606977A8C793DEA91E373F7D886E4865D7FBD_RuntimeMethod_var); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::Resize() extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_Resize_m26C88D986740EF24D60F7AA7E90DDBD6A7748D50_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Resize_m26C88D986740EF24D60F7AA7E90DDBD6A7748D50_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_count_2(); IL2CPP_RUNTIME_CLASS_INIT(HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_il2cpp_TypeInfo_var); int32_t L_1 = HashHelpers_ExpandPrime_m4245F4C95074EAA8F949FB3B734F611A533A6A0D((int32_t)L_0, /*hidden argument*/NULL); NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); (( void (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, int32_t, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, (int32_t)L_1, (bool)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::Resize(System.Int32,System.Boolean) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_Resize_m37AD61EE82E8CEC71D3A0F583E4592666D6BA58B_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, int32_t ___newSize0, bool ___forceNewHashCodes1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Resize_m37AD61EE82E8CEC71D3A0F583E4592666D6BA58B_MetadataUsageId); s_Il2CppMethodInitialized = true; } Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* V_0 = NULL; EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* V_1 = NULL; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; int32_t V_5 = 0; { int32_t L_0 = ___newSize0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_1 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)L_0); V_0 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)L_1; V_2 = (int32_t)0; goto IL_0013; } IL_000b: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = V_0; int32_t L_3 = V_2; NullCheck(L_2); (L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (int32_t)(-1)); int32_t L_4 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)); } IL_0013: { int32_t L_5 = V_2; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_6 = V_0; NullCheck(L_6); if ((((int32_t)L_5) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_6)->max_length))))))) { goto IL_000b; } } { int32_t L_7 = ___newSize0; EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_8 = (EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 29), (uint32_t)L_7); V_1 = (EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6*)L_8; EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_9 = (EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6*)__this->get_entries_1(); EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_10 = V_1; int32_t L_11 = (int32_t)__this->get_count_2(); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_9, (int32_t)0, (RuntimeArray *)(RuntimeArray *)L_10, (int32_t)0, (int32_t)L_11, /*hidden argument*/NULL); bool L_12 = ___forceNewHashCodes1; if (!L_12) { goto IL_0080; } } { V_3 = (int32_t)0; goto IL_0077; } IL_003b: { EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_13 = V_1; int32_t L_14 = V_3; NullCheck(L_13); int32_t L_15 = (int32_t)((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_hashCode_0(); if ((((int32_t)L_15) == ((int32_t)(-1)))) { goto IL_0073; } } { EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_16 = V_1; int32_t L_17 = V_3; NullCheck(L_16); RuntimeObject* L_18 = (RuntimeObject*)__this->get_comparer_6(); EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_19 = V_1; int32_t L_20 = V_3; NullCheck(L_19); RuntimeObject * L_21 = (RuntimeObject *)((L_19)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_20)))->get_key_2(); NullCheck((RuntimeObject*)L_18); int32_t L_22 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Object>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28), (RuntimeObject*)L_18, (RuntimeObject *)L_21); ((L_16)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_17)))->set_hashCode_0(((int32_t)((int32_t)L_22&(int32_t)((int32_t)2147483647LL)))); } IL_0073: { int32_t L_23 = V_3; V_3 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); } IL_0077: { int32_t L_24 = V_3; int32_t L_25 = (int32_t)__this->get_count_2(); if ((((int32_t)L_24) < ((int32_t)L_25))) { goto IL_003b; } } IL_0080: { V_4 = (int32_t)0; goto IL_00c3; } IL_0085: { EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_26 = V_1; int32_t L_27 = V_4; NullCheck(L_26); int32_t L_28 = (int32_t)((L_26)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_27)))->get_hashCode_0(); if ((((int32_t)L_28) < ((int32_t)0))) { goto IL_00bd; } } { EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_29 = V_1; int32_t L_30 = V_4; NullCheck(L_29); int32_t L_31 = (int32_t)((L_29)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_30)))->get_hashCode_0(); int32_t L_32 = ___newSize0; V_5 = (int32_t)((int32_t)((int32_t)L_31%(int32_t)L_32)); EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_33 = V_1; int32_t L_34 = V_4; NullCheck(L_33); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_35 = V_0; int32_t L_36 = V_5; NullCheck(L_35); int32_t L_37 = L_36; int32_t L_38 = (L_35)->GetAt(static_cast<il2cpp_array_size_t>(L_37)); ((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->set_next_1(L_38); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_39 = V_0; int32_t L_40 = V_5; int32_t L_41 = V_4; NullCheck(L_39); (L_39)->SetAt(static_cast<il2cpp_array_size_t>(L_40), (int32_t)L_41); } IL_00bd: { int32_t L_42 = V_4; V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)1)); } IL_00c3: { int32_t L_43 = V_4; int32_t L_44 = (int32_t)__this->get_count_2(); if ((((int32_t)L_43) < ((int32_t)L_44))) { goto IL_0085; } } { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_45 = V_0; __this->set_buckets_0(L_45); EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_46 = V_1; __this->set_entries_1(L_46); return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::Remove(TKey) extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_Remove_m0FCCD33CE2C6A7589E52A2AB0872FE361BF5EF60_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Remove_m0FCCD33CE2C6A7589E52A2AB0872FE361BF5EF60_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_0013; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_Remove_m0FCCD33CE2C6A7589E52A2AB0872FE361BF5EF60_RuntimeMethod_var); } IL_0013: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); if (!L_2) { goto IL_015d; } } { RuntimeObject* L_3 = (RuntimeObject*)__this->get_comparer_6(); RuntimeObject * L_4 = ___key0; NullCheck((RuntimeObject*)L_3); int32_t L_5 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Object>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28), (RuntimeObject*)L_3, (RuntimeObject *)L_4); V_0 = (int32_t)((int32_t)((int32_t)L_5&(int32_t)((int32_t)2147483647LL))); int32_t L_6 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_7 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_7); V_1 = (int32_t)((int32_t)((int32_t)L_6%(int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_7)->max_length)))))); V_2 = (int32_t)(-1); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_9 = V_1; NullCheck(L_8); int32_t L_10 = L_9; int32_t L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); V_3 = (int32_t)L_11; goto IL_0156; } IL_004c: { EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_12 = (EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6*)__this->get_entries_1(); int32_t L_13 = V_3; NullCheck(L_12); int32_t L_14 = (int32_t)((L_12)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_13)))->get_hashCode_0(); int32_t L_15 = V_0; if ((!(((uint32_t)L_14) == ((uint32_t)L_15)))) { goto IL_0142; } } { RuntimeObject* L_16 = (RuntimeObject*)__this->get_comparer_6(); EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_17 = (EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6*)__this->get_entries_1(); int32_t L_18 = V_3; NullCheck(L_17); RuntimeObject * L_19 = (RuntimeObject *)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18)))->get_key_2(); RuntimeObject * L_20 = ___key0; NullCheck((RuntimeObject*)L_16); bool L_21 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.Generic.IEqualityComparer`1<System.Object>::Equals(T,T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28), (RuntimeObject*)L_16, (RuntimeObject *)L_19, (RuntimeObject *)L_20); if (!L_21) { goto IL_0142; } } { int32_t L_22 = V_2; if ((((int32_t)L_22) >= ((int32_t)0))) { goto IL_00a4; } } { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_23 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_24 = V_1; EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_25 = (EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6*)__this->get_entries_1(); int32_t L_26 = V_3; NullCheck(L_25); int32_t L_27 = (int32_t)((L_25)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_26)))->get_next_1(); NullCheck(L_23); (L_23)->SetAt(static_cast<il2cpp_array_size_t>(L_24), (int32_t)L_27); goto IL_00c6; } IL_00a4: { EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_28 = (EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6*)__this->get_entries_1(); int32_t L_29 = V_2; NullCheck(L_28); EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_30 = (EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6*)__this->get_entries_1(); int32_t L_31 = V_3; NullCheck(L_30); int32_t L_32 = (int32_t)((L_30)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_31)))->get_next_1(); ((L_28)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_29)))->set_next_1(L_32); } IL_00c6: { EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_33 = (EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6*)__this->get_entries_1(); int32_t L_34 = V_3; NullCheck(L_33); ((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->set_hashCode_0((-1)); EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_35 = (EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6*)__this->get_entries_1(); int32_t L_36 = V_3; NullCheck(L_35); int32_t L_37 = (int32_t)__this->get_freeList_4(); ((L_35)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_36)))->set_next_1(L_37); EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_38 = (EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6*)__this->get_entries_1(); int32_t L_39 = V_3; NullCheck(L_38); RuntimeObject ** L_40 = (RuntimeObject **)((L_38)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_39)))->get_address_of_key_2(); il2cpp_codegen_initobj(L_40, sizeof(RuntimeObject *)); EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_41 = (EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6*)__this->get_entries_1(); int32_t L_42 = V_3; NullCheck(L_41); RuntimeObject ** L_43 = (RuntimeObject **)((L_41)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_42)))->get_address_of_value_3(); il2cpp_codegen_initobj(L_43, sizeof(RuntimeObject *)); int32_t L_44 = V_3; __this->set_freeList_4(L_44); int32_t L_45 = (int32_t)__this->get_freeCount_5(); __this->set_freeCount_5(((int32_t)il2cpp_codegen_add((int32_t)L_45, (int32_t)1))); int32_t L_46 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_46, (int32_t)1))); return (bool)1; } IL_0142: { int32_t L_47 = V_3; V_2 = (int32_t)L_47; EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_48 = (EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6*)__this->get_entries_1(); int32_t L_49 = V_3; NullCheck(L_48); int32_t L_50 = (int32_t)((L_48)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_49)))->get_next_1(); V_3 = (int32_t)L_50; } IL_0156: { int32_t L_51 = V_3; if ((((int32_t)L_51) >= ((int32_t)0))) { goto IL_004c; } } IL_015d: { return (bool)0; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::TryGetValue(TKey,TValue&) extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_m3455807C552312C60038DF52EF328C3687442DE3_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * ___key0, RuntimeObject ** ___value1, const RuntimeMethod* method) { int32_t V_0 = 0; { RuntimeObject * L_0 = ___key0; NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0025; } } { RuntimeObject ** L_3 = ___value1; EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_4 = (EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6*)__this->get_entries_1(); int32_t L_5 = V_0; NullCheck(L_4); RuntimeObject * L_6 = (RuntimeObject *)((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_value_3(); *(RuntimeObject **)L_3 = L_6; Il2CppCodeGenWriteBarrier((RuntimeObject **)L_3, L_6); return (bool)1; } IL_0025: { RuntimeObject ** L_7 = ___value1; il2cpp_codegen_initobj(L_7, sizeof(RuntimeObject *)); return (bool)0; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.get_IsReadOnly() extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_get_IsReadOnly_mA7D9B474A95A148D822D3742088F1702E6B7DA05_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_CopyTo_mD9820773B83802C40720418F76318448ED0AD8B1_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262* ___array0, int32_t ___index1, const RuntimeMethod* method) { { KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262* L_0 = ___array0; int32_t L_1 = ___index1; NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); (( void (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 25)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, (KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262*)L_0, (int32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 25)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_ICollection_CopyTo_m2A04B7A42F924F8497A06C101712AF467E6C057C_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_System_Collections_ICollection_CopyTo_m2A04B7A42F924F8497A06C101712AF467E6C057C_MetadataUsageId); s_Il2CppMethodInitialized = true; } KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262* V_0 = NULL; DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56* V_1 = NULL; EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* V_2 = NULL; int32_t V_3 = 0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_4 = NULL; int32_t V_5 = 0; EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* V_6 = NULL; int32_t V_7 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_m2A04B7A42F924F8497A06C101712AF467E6C057C_RuntimeMethod_var); } IL_000e: { RuntimeArray * L_2 = ___array0; NullCheck((RuntimeArray *)L_2); int32_t L_3 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)L_2, /*hidden argument*/NULL); if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_0027; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_4 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_4, (String_t*)_stringLiteral2D77BE6D598A0A9376398980E66D10E319F1B52A, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_m2A04B7A42F924F8497A06C101712AF467E6C057C_RuntimeMethod_var); } IL_0027: { RuntimeArray * L_5 = ___array0; NullCheck((RuntimeArray *)L_5); int32_t L_6 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)L_5, (int32_t)0, /*hidden argument*/NULL); if (!L_6) { goto IL_0040; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_7 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_7, (String_t*)_stringLiteralC363992023785AF013BBCF2E20C19D9835184F82, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_m2A04B7A42F924F8497A06C101712AF467E6C057C_RuntimeMethod_var); } IL_0040: { int32_t L_8 = ___index1; if ((((int32_t)L_8) < ((int32_t)0))) { goto IL_004d; } } { int32_t L_9 = ___index1; RuntimeArray * L_10 = ___array0; NullCheck((RuntimeArray *)L_10); int32_t L_11 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_10, /*hidden argument*/NULL); if ((((int32_t)L_9) <= ((int32_t)L_11))) { goto IL_0063; } } IL_004d: { int32_t L_12 = ___index1; int32_t L_13 = L_12; RuntimeObject * L_14 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_13); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_15 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378(L_15, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, (RuntimeObject *)L_14, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_m2A04B7A42F924F8497A06C101712AF467E6C057C_RuntimeMethod_var); } IL_0063: { RuntimeArray * L_16 = ___array0; NullCheck((RuntimeArray *)L_16); int32_t L_17 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_16, /*hidden argument*/NULL); int32_t L_18 = ___index1; NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); int32_t L_19 = (( int32_t (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_18))) >= ((int32_t)L_19))) { goto IL_007e; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_20 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_20, (String_t*)_stringLiteralBC80A496F1C479B70F6EE2BF2F0C3C05463301B8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_m2A04B7A42F924F8497A06C101712AF467E6C057C_RuntimeMethod_var); } IL_007e: { RuntimeArray * L_21 = ___array0; V_0 = (KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262*)((KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262*)IsInst((RuntimeObject*)L_21, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 32))); KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262* L_22 = V_0; if (!L_22) { goto IL_0091; } } { KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262* L_23 = V_0; int32_t L_24 = ___index1; NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); (( void (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 25)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, (KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262*)L_23, (int32_t)L_24, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 25)); return; } IL_0091: { RuntimeArray * L_25 = ___array0; if (!((DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56*)IsInst((RuntimeObject*)L_25, DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56_il2cpp_TypeInfo_var))) { goto IL_00fb; } } { RuntimeArray * L_26 = ___array0; V_1 = (DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56*)((DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56*)IsInst((RuntimeObject*)L_26, DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56_il2cpp_TypeInfo_var)); EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_27 = (EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6*)__this->get_entries_1(); V_2 = (EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6*)L_27; V_3 = (int32_t)0; goto IL_00f1; } IL_00ab: { EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_28 = V_2; int32_t L_29 = V_3; NullCheck(L_28); int32_t L_30 = (int32_t)((L_28)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_29)))->get_hashCode_0(); if ((((int32_t)L_30) < ((int32_t)0))) { goto IL_00ed; } } { DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56* L_31 = V_1; int32_t L_32 = ___index1; int32_t L_33 = (int32_t)L_32; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)1)); EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_34 = V_2; int32_t L_35 = V_3; NullCheck(L_34); RuntimeObject * L_36 = (RuntimeObject *)((L_34)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_35)))->get_key_2(); EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_37 = V_2; int32_t L_38 = V_3; NullCheck(L_37); RuntimeObject * L_39 = (RuntimeObject *)((L_37)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_38)))->get_value_3(); DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_40; memset(&L_40, 0, sizeof(L_40)); DictionaryEntry__ctor_m67BC38CD2B85F134F3EB2473270CDD3933F7CD9B((&L_40), (RuntimeObject *)L_36, (RuntimeObject *)L_39, /*hidden argument*/NULL); NullCheck(L_31); (L_31)->SetAt(static_cast<il2cpp_array_size_t>(L_33), (DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 )L_40); } IL_00ed: { int32_t L_41 = V_3; V_3 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_41, (int32_t)1)); } IL_00f1: { int32_t L_42 = V_3; int32_t L_43 = (int32_t)__this->get_count_2(); if ((((int32_t)L_42) < ((int32_t)L_43))) { goto IL_00ab; } } { return; } IL_00fb: { RuntimeArray * L_44 = ___array0; V_4 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)L_44, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_45 = V_4; if (L_45) { goto IL_0117; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_46 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_46, (String_t*)_stringLiteralC44D4E6C6AF3517A1CC72EDF7D1A5FFD7E3368F1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_46, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_m2A04B7A42F924F8497A06C101712AF467E6C057C_RuntimeMethod_var); } IL_0117: { } IL_0118: try { // begin try (depth: 1) { int32_t L_47 = (int32_t)__this->get_count_2(); V_5 = (int32_t)L_47; EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_48 = (EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6*)__this->get_entries_1(); V_6 = (EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6*)L_48; V_7 = (int32_t)0; goto IL_0173; } IL_012d: { EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_49 = V_6; int32_t L_50 = V_7; NullCheck(L_49); int32_t L_51 = (int32_t)((L_49)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_50)))->get_hashCode_0(); if ((((int32_t)L_51) < ((int32_t)0))) { goto IL_016d; } } IL_013e: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_52 = V_4; int32_t L_53 = ___index1; int32_t L_54 = (int32_t)L_53; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_54, (int32_t)1)); EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_55 = V_6; int32_t L_56 = V_7; NullCheck(L_55); RuntimeObject * L_57 = (RuntimeObject *)((L_55)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_56)))->get_key_2(); EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_58 = V_6; int32_t L_59 = V_7; NullCheck(L_58); RuntimeObject * L_60 = (RuntimeObject *)((L_58)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_59)))->get_value_3(); KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE L_61; memset(&L_61, 0, sizeof(L_61)); KeyValuePair_2__ctor_m783A0935E40FCB80D5940E8CCF0EFEFE41D7C7D3((&L_61), (RuntimeObject *)L_57, (RuntimeObject *)L_60, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 20)); KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE L_62 = L_61; RuntimeObject * L_63 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 19), &L_62); NullCheck(L_52); ArrayElementTypeCheck (L_52, L_63); (L_52)->SetAt(static_cast<il2cpp_array_size_t>(L_54), (RuntimeObject *)L_63); } IL_016d: { int32_t L_64 = V_7; V_7 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_64, (int32_t)1)); } IL_0173: { int32_t L_65 = V_7; int32_t L_66 = V_5; if ((((int32_t)L_65) < ((int32_t)L_66))) { goto IL_012d; } } IL_0179: { goto IL_018c; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (ArrayTypeMismatchException_tE34C1032B089C37399200997F079C640D23D9499_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_017b; throw e; } CATCH_017b: { // begin catch(System.ArrayTypeMismatchException) ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_67 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_67, (String_t*)_stringLiteralC44D4E6C6AF3517A1CC72EDF7D1A5FFD7E3368F1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_67, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_m2A04B7A42F924F8497A06C101712AF467E6C057C_RuntimeMethod_var); } // end catch (depth: 1) IL_018c: { return; } } // System.Collections.IEnumerator System.Collections.Generic.Dictionary`2<System.Object,System.Object>::System.Collections.IEnumerable.GetEnumerator() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_System_Collections_IEnumerable_GetEnumerator_m44D153A048387F61D52F7238BFB16C67C1F4D831_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, const RuntimeMethod* method) { { Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB L_0; memset(&L_0, 0, sizeof(L_0)); Enumerator__ctor_m3FD84B57A809FF88FC26B86687686E3949F9CBC8((&L_0), (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, (int32_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)); Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 21), &L_1); return (RuntimeObject*)L_2; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::System.Collections.ICollection.get_IsSynchronized() extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_ICollection_get_IsSynchronized_mC004C9512526EFA2CF14E285824DDA1463713891_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Object System.Collections.Generic.Dictionary`2<System.Object,System.Object>::System.Collections.ICollection.get_SyncRoot() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Dictionary_2_System_Collections_ICollection_get_SyncRoot_mA7D2E1D66F065B017EBA7275D6927CFFA3B90E26_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_System_Collections_ICollection_get_SyncRoot_mA7D2E1D66F065B017EBA7275D6927CFFA3B90E26_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = (RuntimeObject *)__this->get__syncRoot_9(); if (L_0) { goto IL_001a; } } { RuntimeObject ** L_1 = (RuntimeObject **)__this->get_address_of__syncRoot_9(); RuntimeObject * L_2 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(L_2, /*hidden argument*/NULL); InterlockedCompareExchangeImpl<RuntimeObject *>((RuntimeObject **)(RuntimeObject **)L_1, (RuntimeObject *)L_2, (RuntimeObject *)NULL); } IL_001a: { RuntimeObject * L_3 = (RuntimeObject *)__this->get__syncRoot_9(); return L_3; } } // System.Object System.Collections.Generic.Dictionary`2<System.Object,System.Object>::System.Collections.IDictionary.get_Item(System.Object) extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Dictionary_2_System_Collections_IDictionary_get_Item_m94CA254F26DD0471A4AE3FCAC07AA6BAC9735A8B_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { int32_t V_0 = 0; { RuntimeObject * L_0 = ___key0; bool L_1 = (( bool (*) (RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 33)->methodPointer)((RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 33)); if (!L_1) { goto IL_0030; } } { RuntimeObject * L_2 = ___key0; NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); int32_t L_3 = (( int32_t (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 27))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); V_0 = (int32_t)L_3; int32_t L_4 = V_0; if ((((int32_t)L_4) < ((int32_t)0))) { goto IL_0030; } } { EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_5 = (EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6*)__this->get_entries_1(); int32_t L_6 = V_0; NullCheck(L_5); RuntimeObject * L_7 = (RuntimeObject *)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_value_3(); return L_7; } IL_0030: { return NULL; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::System.Collections.IDictionary.set_Item(System.Object,System.Object) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_IDictionary_set_Item_m752CA04F6A7E64A7E050B4A9C914B69874401EDF_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_System_Collections_IDictionary_set_Item_m752CA04F6A7E64A7E050B4A9C914B69874401EDF_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; RuntimeObject * V_1 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_System_Collections_IDictionary_set_Item_m752CA04F6A7E64A7E050B4A9C914B69874401EDF_RuntimeMethod_var); } IL_000e: { RuntimeObject * L_2 = ___value1; if (L_2) { goto IL_002c; } } { il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *)); RuntimeObject * L_3 = V_0; if (!L_3) { goto IL_002c; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_4, (String_t*)_stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Dictionary_2_System_Collections_IDictionary_set_Item_m752CA04F6A7E64A7E050B4A9C914B69874401EDF_RuntimeMethod_var); } IL_002c: { } IL_002d: try { // begin try (depth: 1) { RuntimeObject * L_5 = ___key0; V_1 = (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 27))); } IL_0034: try { // begin try (depth: 2) RuntimeObject * L_6 = V_1; RuntimeObject * L_7 = ___value1; NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this); (( void (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 35)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, (RuntimeObject *)L_6, (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_7, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 17))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 35)); goto IL_0064; } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0043; throw e; } CATCH_0043: { // begin catch(System.InvalidCastException) RuntimeObject * L_8 = ___value1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_9 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 36)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_10 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_9, /*hidden argument*/NULL); String_t* L_11 = SR_Format_m2DD0EA1F52576669B34B03CDB3D441631E1CA76C((String_t*)_stringLiteralFA5354A55A2D5AE97DEF68A54DFDDBF37A452FD6, (RuntimeObject *)L_8, (RuntimeObject *)L_10, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_12, (String_t*)L_11, (String_t*)_stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, NULL, Dictionary_2_System_Collections_IDictionary_set_Item_m752CA04F6A7E64A7E050B4A9C914B69874401EDF_RuntimeMethod_var); } // end catch (depth: 2) IL_0064: { goto IL_0087; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0066; throw e; } CATCH_0066: { // begin catch(System.InvalidCastException) RuntimeObject * L_13 = ___key0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 37)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_14, /*hidden argument*/NULL); String_t* L_16 = SR_Format_m2DD0EA1F52576669B34B03CDB3D441631E1CA76C((String_t*)_stringLiteralFA5354A55A2D5AE97DEF68A54DFDDBF37A452FD6, (RuntimeObject *)L_13, (RuntimeObject *)L_15, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_17 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_17, (String_t*)L_16, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, NULL, Dictionary_2_System_Collections_IDictionary_set_Item_m752CA04F6A7E64A7E050B4A9C914B69874401EDF_RuntimeMethod_var); } // end catch (depth: 1) IL_0087: { return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::IsCompatibleKey(System.Object) extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_IsCompatibleKey_mE704BFB33E9A85EEFD6FB15FD7DF71ED3B240ED2_gshared (RuntimeObject * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_IsCompatibleKey_mE704BFB33E9A85EEFD6FB15FD7DF71ED3B240ED2_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_IsCompatibleKey_mE704BFB33E9A85EEFD6FB15FD7DF71ED3B240ED2_RuntimeMethod_var); } IL_000e: { RuntimeObject * L_2 = ___key0; return (bool)((!(((RuntimeObject*)(RuntimeObject *)((RuntimeObject *)IsInst((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 27)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0); } } // System.Collections.IDictionaryEnumerator System.Collections.Generic.Dictionary`2<System.Object,System.Object>::System.Collections.IDictionary.GetEnumerator() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_System_Collections_IDictionary_GetEnumerator_m5914F56CF12185868454A898E0380BD5319A785C_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, const RuntimeMethod* method) { { Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB L_0; memset(&L_0, 0, sizeof(L_0)); Enumerator__ctor_m3FD84B57A809FF88FC26B86687686E3949F9CBC8((&L_0), (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this, (int32_t)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)); Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 21), &L_1); return (RuntimeObject*)L_2; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::.ctor() extern "C" IL2CPP_METHOD_ATTR void Dictionary_2__ctor_mC02A71C1ADA601AE168BC4D52B5246D00BF669B8_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, const RuntimeMethod* method) { { NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); (( void (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, (int32_t)0, (RuntimeObject*)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::.ctor(System.Int32) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m3508681DC325B26F68CBF6DF15233B6EAA54C3BC_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, int32_t ___capacity0, const RuntimeMethod* method) { { int32_t L_0 = ___capacity0; NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); (( void (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, (int32_t)L_0, (RuntimeObject*)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::.ctor(System.Collections.Generic.IEqualityComparer`1<TKey>) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2__ctor_mC9C7C41F5539436D21833342201247DD6A6033D2_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___comparer0; NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); (( void (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, (int32_t)0, (RuntimeObject*)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::.ctor(System.Int32,System.Collections.Generic.IEqualityComparer`1<TKey>) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m005E7E17A2E27952BC4C20BA2995AC18A338EE78_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, int32_t ___capacity0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2__ctor_m005E7E17A2E27952BC4C20BA2995AC18A338EE78_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* G_B6_0 = NULL; Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * G_B6_1 = NULL; RuntimeObject* G_B5_0 = NULL; Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * G_B5_1 = NULL; { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); int32_t L_0 = ___capacity0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0020; } } { int32_t L_1 = ___capacity0; int32_t L_2 = L_1; RuntimeObject * L_3 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_2); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_4 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378(L_4, (String_t*)_stringLiteral7CB1F56D3FBE09E809244FC8E13671CD876E3860, (RuntimeObject *)L_3, (String_t*)_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Dictionary_2__ctor_m005E7E17A2E27952BC4C20BA2995AC18A338EE78_RuntimeMethod_var); } IL_0020: { int32_t L_5 = ___capacity0; if ((((int32_t)L_5) <= ((int32_t)0))) { goto IL_002b; } } { int32_t L_6 = ___capacity0; NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); (( void (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, (int32_t)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); } IL_002b: { RuntimeObject* L_7 = ___comparer1; RuntimeObject* L_8 = (RuntimeObject*)L_7; G_B5_0 = L_8; G_B5_1 = ((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)(__this)); if (L_8) { G_B6_0 = L_8; G_B6_1 = ((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)(__this)); goto IL_0036; } } { EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * L_9 = (( EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); G_B6_0 = ((RuntimeObject*)(L_9)); G_B6_1 = ((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)(G_B5_1)); } IL_0036: { NullCheck(G_B6_1); G_B6_1->set_comparer_6(G_B6_0); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m9228B6B598897711D01E10AB8EC12D5EA46A06AA_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2__ctor_m9228B6B598897711D01E10AB8EC12D5EA46A06AA_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00_il2cpp_TypeInfo_var); ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * L_0 = DictionaryHashHelpers_get_SerializationInfoTable_mCF0A53E777EAFE1AA018C02529AFF6D3CDF7A05C(/*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_1 = ___info0; NullCheck((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_0); ConditionalWeakTable_2_Add_mCC3585BE91A7BDFC49EEFDE4C11173A36D1FB5FE((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_0, (RuntimeObject *)__this, (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_1, /*hidden argument*/ConditionalWeakTable_2_Add_mCC3585BE91A7BDFC49EEFDE4C11173A36D1FB5FE_RuntimeMethod_var); return; } } // System.Int32 System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::get_Count() extern "C" IL2CPP_METHOD_ATTR int32_t Dictionary_2_get_Count_m3FA40CCA390312418B6F0677CF1861C93107DE14_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_count_2(); int32_t L_1 = (int32_t)__this->get_freeCount_5(); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)); } } // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::get_Keys() extern "C" IL2CPP_METHOD_ATTR KeyCollection_tB62DC24DEF9A9DC0EE67965814F53091651CAE92 * Dictionary_2_get_Keys_m70C1896419F69E84A4054D83E29492A500264087_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, const RuntimeMethod* method) { { KeyCollection_tB62DC24DEF9A9DC0EE67965814F53091651CAE92 * L_0 = (KeyCollection_tB62DC24DEF9A9DC0EE67965814F53091651CAE92 *)__this->get_keys_7(); if (L_0) { goto IL_0014; } } { KeyCollection_tB62DC24DEF9A9DC0EE67965814F53091651CAE92 * L_1 = (KeyCollection_tB62DC24DEF9A9DC0EE67965814F53091651CAE92 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4)); (( void (*) (KeyCollection_tB62DC24DEF9A9DC0EE67965814F53091651CAE92 *, Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)(L_1, (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); __this->set_keys_7(L_1); } IL_0014: { KeyCollection_tB62DC24DEF9A9DC0EE67965814F53091651CAE92 * L_2 = (KeyCollection_tB62DC24DEF9A9DC0EE67965814F53091651CAE92 *)__this->get_keys_7(); return L_2; } } // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::get_Values() extern "C" IL2CPP_METHOD_ATTR ValueCollection_t32E4BA93A6E2E9AC038396EC46CDBA2BAE42AF4B * Dictionary_2_get_Values_m0E8CF2D73DE1DE60B057FBA89D37CA8974473E51_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, const RuntimeMethod* method) { { ValueCollection_t32E4BA93A6E2E9AC038396EC46CDBA2BAE42AF4B * L_0 = (ValueCollection_t32E4BA93A6E2E9AC038396EC46CDBA2BAE42AF4B *)__this->get_values_8(); if (L_0) { goto IL_0014; } } { ValueCollection_t32E4BA93A6E2E9AC038396EC46CDBA2BAE42AF4B * L_1 = (ValueCollection_t32E4BA93A6E2E9AC038396EC46CDBA2BAE42AF4B *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6)); (( void (*) (ValueCollection_t32E4BA93A6E2E9AC038396EC46CDBA2BAE42AF4B *, Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)(L_1, (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)); __this->set_values_8(L_1); } IL_0014: { ValueCollection_t32E4BA93A6E2E9AC038396EC46CDBA2BAE42AF4B * L_2 = (ValueCollection_t32E4BA93A6E2E9AC038396EC46CDBA2BAE42AF4B *)__this->get_values_8(); return L_2; } } // TValue System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::get_Item(TKey) extern "C" IL2CPP_METHOD_ATTR ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C Dictionary_2_get_Item_mD6B3AA9C53F2917F8E40CAD37B995C327DFB751B_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_get_Item_mD6B3AA9C53F2917F8E40CAD37B995C327DFB751B_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { RuntimeObject * L_0 = ___key0; NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_001e; } } { EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_3 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_4 = V_0; NullCheck(L_3); ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_5 = (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )((L_3)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_4)))->get_value_3(); return L_5; } IL_001e: { KeyNotFoundException_tC28F8B9E114291001A5D135723673C6F292438E2 * L_6 = (KeyNotFoundException_tC28F8B9E114291001A5D135723673C6F292438E2 *)il2cpp_codegen_object_new(KeyNotFoundException_tC28F8B9E114291001A5D135723673C6F292438E2_il2cpp_TypeInfo_var); KeyNotFoundException__ctor_mE9E1C6E6E21842095342C0A2ED65EC201FB4F3C8(L_6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, Dictionary_2_get_Item_mD6B3AA9C53F2917F8E40CAD37B995C327DFB751B_RuntimeMethod_var); } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::set_Item(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_m1A4458C0445BA92B74500D235137CAF9208993DF_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, RuntimeObject * ___key0, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C ___value1, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_1 = ___value1; NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); (( bool (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, RuntimeObject *, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C , uint8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, (RuntimeObject *)L_0, (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )L_1, (uint8_t)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::Add(TKey,TValue) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_Add_m020F2AE23A2190BE315B11093FED80CF738754AB_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, RuntimeObject * ___key0, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C ___value1, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_1 = ___value1; NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); (( bool (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, RuntimeObject *, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C , uint8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, (RuntimeObject *)L_0, (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )L_1, (uint8_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Add(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Add_m83B94967036BB91420AF11DD7741750CD7B8D72A_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 ___keyValuePair0, const RuntimeMethod* method) { { RuntimeObject * L_0 = KeyValuePair_2_get_Key_m5D7C176AE453D032C109972EBB10C20605DAE036((KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_1 = KeyValuePair_2_get_Value_m48979A8E8026569BC75639CDE453011950B84356((KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); (( void (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, RuntimeObject *, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, (RuntimeObject *)L_0, (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Contains(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Contains_m9F38F05DA8330E2DBED32D7A77B26E2D0CA8735F_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 ___keyValuePair0, const RuntimeMethod* method) { int32_t V_0 = 0; { RuntimeObject * L_0 = KeyValuePair_2_get_Key_m5D7C176AE453D032C109972EBB10C20605DAE036((KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0038; } } { EqualityComparer_1_t0904D27B79635C0AC267A86C34D85F99E07A355D * L_3 = (( EqualityComparer_1_t0904D27B79635C0AC267A86C34D85F99E07A355D * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)); EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_4 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_5 = V_0; NullCheck(L_4); ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_6 = (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_value_3(); ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_7 = KeyValuePair_2_get_Value_m48979A8E8026569BC75639CDE453011950B84356((KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); NullCheck((EqualityComparer_1_t0904D27B79635C0AC267A86C34D85F99E07A355D *)L_3); bool L_8 = VirtFuncInvoker2< bool, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C , ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Resources.ResourceLocator>::Equals(T,T) */, (EqualityComparer_1_t0904D27B79635C0AC267A86C34D85F99E07A355D *)L_3, (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )L_6, (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )L_7); if (!L_8) { goto IL_0038; } } { return (bool)1; } IL_0038: { return (bool)0; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Remove(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Remove_m70D980352EB59C31D2A8B3E0612719D09FA1AC0C_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 ___keyValuePair0, const RuntimeMethod* method) { int32_t V_0 = 0; { RuntimeObject * L_0 = KeyValuePair_2_get_Key_m5D7C176AE453D032C109972EBB10C20605DAE036((KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0046; } } { EqualityComparer_1_t0904D27B79635C0AC267A86C34D85F99E07A355D * L_3 = (( EqualityComparer_1_t0904D27B79635C0AC267A86C34D85F99E07A355D * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)); EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_4 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_5 = V_0; NullCheck(L_4); ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_6 = (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_value_3(); ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_7 = KeyValuePair_2_get_Value_m48979A8E8026569BC75639CDE453011950B84356((KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); NullCheck((EqualityComparer_1_t0904D27B79635C0AC267A86C34D85F99E07A355D *)L_3); bool L_8 = VirtFuncInvoker2< bool, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C , ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Resources.ResourceLocator>::Equals(T,T) */, (EqualityComparer_1_t0904D27B79635C0AC267A86C34D85F99E07A355D *)L_3, (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )L_6, (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )L_7); if (!L_8) { goto IL_0046; } } { RuntimeObject * L_9 = KeyValuePair_2_get_Key_m5D7C176AE453D032C109972EBB10C20605DAE036((KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(&___keyValuePair0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); (( bool (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, (RuntimeObject *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 16)); return (bool)1; } IL_0046: { return (bool)0; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::Clear() extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_Clear_mE8FC95D8A378955B79BA0CB3600D1DDE054FC0B0_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0 = (int32_t)__this->get_count_2(); if ((((int32_t)L_0) <= ((int32_t)0))) { goto IL_005a; } } { V_0 = (int32_t)0; goto IL_001a; } IL_000d: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_1 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_2 = V_0; NullCheck(L_1); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(L_2), (int32_t)(-1)); int32_t L_3 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)); } IL_001a: { int32_t L_4 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_5 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_5); if ((((int32_t)L_4) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_5)->max_length))))))) { goto IL_000d; } } { EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_6 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_7 = (int32_t)__this->get_count_2(); Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_6, (int32_t)0, (int32_t)L_7, /*hidden argument*/NULL); __this->set_freeList_4((-1)); __this->set_count_2(0); __this->set_freeCount_5(0); int32_t L_8 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1))); } IL_005a: { return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::ContainsKey(TKey) extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_ContainsKey_m6C0B594A1032D88202765F11149E749D11C1EE34_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); return (bool)((((int32_t)((((int32_t)L_1) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::ContainsValue(TValue) extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_ContainsValue_mBA8CBB31984AA815BCF06F0B8C19F161F3F3F986_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C ___value0, const RuntimeMethod* method) { int32_t V_0 = 0; EqualityComparer_1_t0904D27B79635C0AC267A86C34D85F99E07A355D * V_1 = NULL; int32_t V_2 = 0; { goto IL_0049; } { V_0 = (int32_t)0; goto IL_003e; } IL_000c: { EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_1 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_2 = V_0; NullCheck(L_1); int32_t L_3 = (int32_t)((L_1)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_2)))->get_hashCode_0(); if ((((int32_t)L_3) < ((int32_t)0))) { goto IL_003a; } } { EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_4 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_5 = V_0; NullCheck(L_4); ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_6 = (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_value_3(); goto IL_003a; } { return (bool)1; } IL_003a: { int32_t L_7 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1)); } IL_003e: { int32_t L_8 = V_0; int32_t L_9 = (int32_t)__this->get_count_2(); if ((((int32_t)L_8) < ((int32_t)L_9))) { goto IL_000c; } } { goto IL_0090; } IL_0049: { EqualityComparer_1_t0904D27B79635C0AC267A86C34D85F99E07A355D * L_10 = (( EqualityComparer_1_t0904D27B79635C0AC267A86C34D85F99E07A355D * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)); V_1 = (EqualityComparer_1_t0904D27B79635C0AC267A86C34D85F99E07A355D *)L_10; V_2 = (int32_t)0; goto IL_0087; } IL_0053: { EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_11 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_12 = V_2; NullCheck(L_11); int32_t L_13 = (int32_t)((L_11)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_12)))->get_hashCode_0(); if ((((int32_t)L_13) < ((int32_t)0))) { goto IL_0083; } } { EqualityComparer_1_t0904D27B79635C0AC267A86C34D85F99E07A355D * L_14 = V_1; EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_15 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_16 = V_2; NullCheck(L_15); ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_17 = (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )((L_15)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_16)))->get_value_3(); ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_18 = ___value0; NullCheck((EqualityComparer_1_t0904D27B79635C0AC267A86C34D85F99E07A355D *)L_14); bool L_19 = VirtFuncInvoker2< bool, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C , ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Resources.ResourceLocator>::Equals(T,T) */, (EqualityComparer_1_t0904D27B79635C0AC267A86C34D85F99E07A355D *)L_14, (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )L_17, (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )L_18); if (!L_19) { goto IL_0083; } } { return (bool)1; } IL_0083: { int32_t L_20 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1)); } IL_0087: { int32_t L_21 = V_2; int32_t L_22 = (int32_t)__this->get_count_2(); if ((((int32_t)L_21) < ((int32_t)L_22))) { goto IL_0053; } } IL_0090: { return (bool)0; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_CopyTo_mDB78948770252D4C02930B666567476DFFED1759_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB* ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_CopyTo_mDB78948770252D4C02930B666567476DFFED1759_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* V_1 = NULL; int32_t V_2 = 0; { KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_CopyTo_mDB78948770252D4C02930B666567476DFFED1759_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___index1; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_3 = ___index1; KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB* L_4 = ___array0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_4)->max_length))))))) { goto IL_002e; } } IL_0018: { int32_t L_5 = ___index1; int32_t L_6 = L_5; RuntimeObject * L_7 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_6); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_8 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378(L_8, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, (RuntimeObject *)L_7, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, Dictionary_2_CopyTo_mDB78948770252D4C02930B666567476DFFED1759_RuntimeMethod_var); } IL_002e: { KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB* L_9 = ___array0; NullCheck(L_9); int32_t L_10 = ___index1; NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); int32_t L_11 = (( int32_t (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_9)->max_length)))), (int32_t)L_10))) >= ((int32_t)L_11))) { goto IL_0046; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_12, (String_t*)_stringLiteralBC80A496F1C479B70F6EE2BF2F0C3C05463301B8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, NULL, Dictionary_2_CopyTo_mDB78948770252D4C02930B666567476DFFED1759_RuntimeMethod_var); } IL_0046: { int32_t L_13 = (int32_t)__this->get_count_2(); V_0 = (int32_t)L_13; EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_14 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); V_1 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)L_14; V_2 = (int32_t)0; goto IL_0094; } IL_0058: { EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_15 = V_1; int32_t L_16 = V_2; NullCheck(L_15); int32_t L_17 = (int32_t)((L_15)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_16)))->get_hashCode_0(); if ((((int32_t)L_17) < ((int32_t)0))) { goto IL_0090; } } { KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB* L_18 = ___array0; int32_t L_19 = ___index1; int32_t L_20 = (int32_t)L_19; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1)); EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_21 = V_1; int32_t L_22 = V_2; NullCheck(L_21); RuntimeObject * L_23 = (RuntimeObject *)((L_21)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_22)))->get_key_2(); EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_24 = V_1; int32_t L_25 = V_2; NullCheck(L_24); ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_26 = (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )((L_24)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_25)))->get_value_3(); KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 L_27; memset(&L_27, 0, sizeof(L_27)); KeyValuePair_2__ctor_m036B07A37CD133C33431E3A1AD0C3A57DBC521F0((&L_27), (RuntimeObject *)L_23, (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )L_26, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 20)); NullCheck(L_18); (L_18)->SetAt(static_cast<il2cpp_array_size_t>(L_20), (KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 )L_27); } IL_0090: { int32_t L_28 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_28, (int32_t)1)); } IL_0094: { int32_t L_29 = V_2; int32_t L_30 = V_0; if ((((int32_t)L_29) < ((int32_t)L_30))) { goto IL_0058; } } { return; } } // System.Collections.Generic.Dictionary`2/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::GetEnumerator() extern "C" IL2CPP_METHOD_ATTR Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 Dictionary_2_GetEnumerator_mAF05E35C179DB0DF13C31AD8C02A0A0353F23950_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, const RuntimeMethod* method) { { Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 L_0; memset(&L_0, 0, sizeof(L_0)); Enumerator__ctor_mC05BB4833CCCF3518A99F2B27BEB5973D1E7AC32((&L_0), (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, (int32_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)); return L_0; } } // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<TKey,TValue>> System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>.GetEnumerator() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_System_Collections_Generic_IEnumerableU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_GetEnumerator_mD8A87F7C339780B7804E3FC3DF8D651C36CBF47A_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, const RuntimeMethod* method) { { Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 L_0; memset(&L_0, 0, sizeof(L_0)); Enumerator__ctor_mC05BB4833CCCF3518A99F2B27BEB5973D1E7AC32((&L_0), (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, (int32_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)); Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 21), &L_1); return (RuntimeObject*)L_2; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_GetObjectData_mAFFB6C7E9F3E826ECA1CFF5E3CF26BC20468C466_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_GetObjectData_mAFFB6C7E9F3E826ECA1CFF5E3CF26BC20468C466_MetadataUsageId); s_Il2CppMethodInitialized = true; } KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB* V_0 = NULL; String_t* G_B4_0 = NULL; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * G_B4_1 = NULL; String_t* G_B3_0 = NULL; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * G_B3_1 = NULL; int32_t G_B5_0 = 0; String_t* G_B5_1 = NULL; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * G_B5_2 = NULL; { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_GetObjectData_mAFFB6C7E9F3E826ECA1CFF5E3CF26BC20468C466_RuntimeMethod_var); } IL_000e: { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0; int32_t L_3 = (int32_t)__this->get_version_3(); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_2); SerializationInfo_AddValue_m7C73917D9DC4B8FE4AFEF4BA8EBEDAB046A8D0BD((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_2, (String_t*)_stringLiteral2DA600BF9404843107A9531694F654E5662959E0, (int32_t)L_3, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_4 = ___info0; RuntimeObject* L_5 = (RuntimeObject*)__this->get_comparer_6(); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 23)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_6, /*hidden argument*/NULL); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_4); SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_4, (String_t*)_stringLiteral8FC94E4F5B71CECE2565D72417AACC804EE27A0D, (RuntimeObject *)L_5, (Type_t *)L_7, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_8 = ___info0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_9 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); G_B3_0 = _stringLiteral35E05A2D28CF03B64D64C58D0C7ED03AD5A3AF60; G_B3_1 = L_8; if (!L_9) { G_B4_0 = _stringLiteral35E05A2D28CF03B64D64C58D0C7ED03AD5A3AF60; G_B4_1 = L_8; goto IL_0052; } } { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_10 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_10); G_B5_0 = (((int32_t)((int32_t)(((RuntimeArray *)L_10)->max_length)))); G_B5_1 = G_B3_0; G_B5_2 = G_B3_1; goto IL_0053; } IL_0052: { G_B5_0 = 0; G_B5_1 = G_B4_0; G_B5_2 = G_B4_1; } IL_0053: { NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)G_B5_2); SerializationInfo_AddValue_m7C73917D9DC4B8FE4AFEF4BA8EBEDAB046A8D0BD((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)G_B5_2, (String_t*)G_B5_1, (int32_t)G_B5_0, /*hidden argument*/NULL); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_11 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); if (!L_11) { goto IL_008a; } } { NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); int32_t L_12 = (( int32_t (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)); KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB* L_13 = (KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 24), (uint32_t)L_12); V_0 = (KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB*)L_13; KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB* L_14 = V_0; NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); (( void (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 25)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, (KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB*)L_14, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 25)); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_15 = ___info0; KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB* L_16 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_17 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 26)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_18 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_17, /*hidden argument*/NULL); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_15); SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_15, (String_t*)_stringLiteral1D89254A2BC78C1FF41C2F6767A0E00EE126B3BF, (RuntimeObject *)(RuntimeObject *)L_16, (Type_t *)L_18, /*hidden argument*/NULL); } IL_008a: { return; } } // System.Int32 System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::FindEntry(TKey) extern "C" IL2CPP_METHOD_ATTR int32_t Dictionary_2_FindEntry_m85531CCD613626B0C21B5181F9EFE5914EB754D1_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_FindEntry_m85531CCD613626B0C21B5181F9EFE5914EB754D1_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_0013; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_FindEntry_m85531CCD613626B0C21B5181F9EFE5914EB754D1_RuntimeMethod_var); } IL_0013: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); if (!L_2) { goto IL_008d; } } { RuntimeObject* L_3 = (RuntimeObject*)__this->get_comparer_6(); RuntimeObject * L_4 = ___key0; NullCheck((RuntimeObject*)L_3); int32_t L_5 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Object>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28), (RuntimeObject*)L_3, (RuntimeObject *)L_4); V_0 = (int32_t)((int32_t)((int32_t)L_5&(int32_t)((int32_t)2147483647LL))); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_6 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_7 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_8); NullCheck(L_6); int32_t L_9 = ((int32_t)((int32_t)L_7%(int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length)))))); int32_t L_10 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_9)); V_1 = (int32_t)L_10; goto IL_0089; } IL_0042: { EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_11 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_12 = V_1; NullCheck(L_11); int32_t L_13 = (int32_t)((L_11)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_12)))->get_hashCode_0(); int32_t L_14 = V_0; if ((!(((uint32_t)L_13) == ((uint32_t)L_14)))) { goto IL_0077; } } { RuntimeObject* L_15 = (RuntimeObject*)__this->get_comparer_6(); EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_16 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_17 = V_1; NullCheck(L_16); RuntimeObject * L_18 = (RuntimeObject *)((L_16)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_17)))->get_key_2(); RuntimeObject * L_19 = ___key0; NullCheck((RuntimeObject*)L_15); bool L_20 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.Generic.IEqualityComparer`1<System.Object>::Equals(T,T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28), (RuntimeObject*)L_15, (RuntimeObject *)L_18, (RuntimeObject *)L_19); if (!L_20) { goto IL_0077; } } { int32_t L_21 = V_1; return L_21; } IL_0077: { EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_22 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_23 = V_1; NullCheck(L_22); int32_t L_24 = (int32_t)((L_22)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_23)))->get_next_1(); V_1 = (int32_t)L_24; } IL_0089: { int32_t L_25 = V_1; if ((((int32_t)L_25) >= ((int32_t)0))) { goto IL_0042; } } IL_008d: { return (-1); } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::Initialize(System.Int32) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_Initialize_mEFF43FA447EAC4F63AE14770493D8758E6279194_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, int32_t ___capacity0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Initialize_mEFF43FA447EAC4F63AE14770493D8758E6279194_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = ___capacity0; IL2CPP_RUNTIME_CLASS_INIT(HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_il2cpp_TypeInfo_var); int32_t L_1 = HashHelpers_GetPrime_m743D7006C2BCBADC1DC8CACF7C5B78C9F6B38297((int32_t)L_0, /*hidden argument*/NULL); V_0 = (int32_t)L_1; int32_t L_2 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_3 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)L_2); __this->set_buckets_0(L_3); V_1 = (int32_t)0; goto IL_0024; } IL_0017: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_4 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_5 = V_1; NullCheck(L_4); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (int32_t)(-1)); int32_t L_6 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1)); } IL_0024: { int32_t L_7 = V_1; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_8); if ((((int32_t)L_7) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length))))))) { goto IL_0017; } } { int32_t L_9 = V_0; EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_10 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 29), (uint32_t)L_9); __this->set_entries_1(L_10); __this->set_freeList_4((-1)); return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::TryInsert(TKey,TValue,System.Collections.Generic.InsertionBehavior) extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_TryInsert_m4BFED1FA0B4FBDB8E839F6FE9D514D98C2227E41_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, RuntimeObject * ___key0, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C ___value1, uint8_t ___behavior2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_TryInsert_m4BFED1FA0B4FBDB8E839F6FE9D514D98C2227E41_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_0013; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_TryInsert_m4BFED1FA0B4FBDB8E839F6FE9D514D98C2227E41_RuntimeMethod_var); } IL_0013: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); if (L_2) { goto IL_0022; } } { NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); (( void (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); } IL_0022: { RuntimeObject* L_3 = (RuntimeObject*)__this->get_comparer_6(); RuntimeObject * L_4 = ___key0; NullCheck((RuntimeObject*)L_3); int32_t L_5 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Object>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28), (RuntimeObject*)L_3, (RuntimeObject *)L_4); V_0 = (int32_t)((int32_t)((int32_t)L_5&(int32_t)((int32_t)2147483647LL))); int32_t L_6 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_7 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_7); V_1 = (int32_t)((int32_t)((int32_t)L_6%(int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_7)->max_length)))))); V_2 = (int32_t)0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_9 = V_1; NullCheck(L_8); int32_t L_10 = L_9; int32_t L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); V_4 = (int32_t)L_11; goto IL_00e1; } IL_0051: { EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_12 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_13 = V_4; NullCheck(L_12); int32_t L_14 = (int32_t)((L_12)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_13)))->get_hashCode_0(); int32_t L_15 = V_0; if ((!(((uint32_t)L_14) == ((uint32_t)L_15)))) { goto IL_00c9; } } { RuntimeObject* L_16 = (RuntimeObject*)__this->get_comparer_6(); EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_17 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_18 = V_4; NullCheck(L_17); RuntimeObject * L_19 = (RuntimeObject *)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18)))->get_key_2(); RuntimeObject * L_20 = ___key0; NullCheck((RuntimeObject*)L_16); bool L_21 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.Generic.IEqualityComparer`1<System.Object>::Equals(T,T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28), (RuntimeObject*)L_16, (RuntimeObject *)L_19, (RuntimeObject *)L_20); if (!L_21) { goto IL_00c9; } } { uint8_t L_22 = ___behavior2; if ((!(((uint32_t)L_22) == ((uint32_t)1)))) { goto IL_00ad; } } { EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_23 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_24 = V_4; NullCheck(L_23); ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_25 = ___value1; ((L_23)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_24)))->set_value_3(L_25); int32_t L_26 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1))); return (bool)1; } IL_00ad: { uint8_t L_27 = ___behavior2; if ((!(((uint32_t)L_27) == ((uint32_t)2)))) { goto IL_00c7; } } { RuntimeObject * L_28 = ___key0; String_t* L_29 = SR_Format_mCDBB594267CC224AB2A69540BBA598151F0642C7((String_t*)_stringLiteral6FD577FD3A1BDC4DA28CD51D7A55EB397CEA3926, (RuntimeObject *)L_28, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_30 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_30, (String_t*)L_29, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_30, NULL, Dictionary_2_TryInsert_m4BFED1FA0B4FBDB8E839F6FE9D514D98C2227E41_RuntimeMethod_var); } IL_00c7: { return (bool)0; } IL_00c9: { int32_t L_31 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_31, (int32_t)1)); EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_32 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_33 = V_4; NullCheck(L_32); int32_t L_34 = (int32_t)((L_32)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_33)))->get_next_1(); V_4 = (int32_t)L_34; } IL_00e1: { int32_t L_35 = V_4; if ((((int32_t)L_35) >= ((int32_t)0))) { goto IL_0051; } } { int32_t L_36 = (int32_t)__this->get_freeCount_5(); if ((((int32_t)L_36) <= ((int32_t)0))) { goto IL_0120; } } { int32_t L_37 = (int32_t)__this->get_freeList_4(); V_3 = (int32_t)L_37; EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_38 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_39 = V_3; NullCheck(L_38); int32_t L_40 = (int32_t)((L_38)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_39)))->get_next_1(); __this->set_freeList_4(L_40); int32_t L_41 = (int32_t)__this->get_freeCount_5(); __this->set_freeCount_5(((int32_t)il2cpp_codegen_subtract((int32_t)L_41, (int32_t)1))); goto IL_0156; } IL_0120: { int32_t L_42 = (int32_t)__this->get_count_2(); EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_43 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); NullCheck(L_43); if ((!(((uint32_t)L_42) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_43)->max_length)))))))) { goto IL_0141; } } { NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); (( void (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 30)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 30)); int32_t L_44 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_45 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_45); V_1 = (int32_t)((int32_t)((int32_t)L_44%(int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_45)->max_length)))))); } IL_0141: { int32_t L_46 = (int32_t)__this->get_count_2(); V_3 = (int32_t)L_46; int32_t L_47 = (int32_t)__this->get_count_2(); __this->set_count_2(((int32_t)il2cpp_codegen_add((int32_t)L_47, (int32_t)1))); } IL_0156: { EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_48 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_49 = V_3; NullCheck(L_48); int32_t L_50 = V_0; ((L_48)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_49)))->set_hashCode_0(L_50); EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_51 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_52 = V_3; NullCheck(L_51); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_53 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_54 = V_1; NullCheck(L_53); int32_t L_55 = L_54; int32_t L_56 = (L_53)->GetAt(static_cast<il2cpp_array_size_t>(L_55)); ((L_51)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_52)))->set_next_1(L_56); EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_57 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_58 = V_3; NullCheck(L_57); RuntimeObject * L_59 = ___key0; ((L_57)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_58)))->set_key_2(L_59); EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_60 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_61 = V_3; NullCheck(L_60); ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_62 = ___value1; ((L_60)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_61)))->set_value_3(L_62); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_63 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_64 = V_1; int32_t L_65 = V_3; NullCheck(L_63); (L_63)->SetAt(static_cast<il2cpp_array_size_t>(L_64), (int32_t)L_65); int32_t L_66 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_66, (int32_t)1))); int32_t L_67 = V_2; if ((((int32_t)L_67) <= ((int32_t)((int32_t)100)))) { goto IL_01ed; } } { RuntimeObject* L_68 = (RuntimeObject*)__this->get_comparer_6(); if (!((NonRandomizedStringEqualityComparer_t92C20503D9C5060A557792ABCCC06EF2DD77E5D9 *)IsInst((RuntimeObject*)L_68, NonRandomizedStringEqualityComparer_t92C20503D9C5060A557792ABCCC06EF2DD77E5D9_il2cpp_TypeInfo_var))) { goto IL_01ed; } } { EqualityComparer_1_tBEFFC6F649A17852373A084880D57CB299084137 * L_69 = EqualityComparer_1_get_Default_m85F378D7298050D5DF422363D5EB30A218B769B7(/*hidden argument*/EqualityComparer_1_get_Default_m85F378D7298050D5DF422363D5EB30A218B769B7_RuntimeMethod_var); __this->set_comparer_6(((RuntimeObject*)Castclass((RuntimeObject*)L_69, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28)))); EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_70 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); NullCheck(L_70); NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); (( void (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, int32_t, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, (int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_70)->max_length)))), (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)); } IL_01ed: { return (bool)1; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::OnDeserialization(System.Object) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_OnDeserialization_m63903F75E863748E0BA65E8FC9A1B45155BE00EA_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, RuntimeObject * ___sender0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_OnDeserialization_m63903F75E863748E0BA65E8FC9A1B45155BE00EA_MetadataUsageId); s_Il2CppMethodInitialized = true; } SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB* V_3 = NULL; int32_t V_4 = 0; int32_t V_5 = 0; { IL2CPP_RUNTIME_CLASS_INIT(DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00_il2cpp_TypeInfo_var); ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * L_0 = DictionaryHashHelpers_get_SerializationInfoTable_mCF0A53E777EAFE1AA018C02529AFF6D3CDF7A05C(/*hidden argument*/NULL); NullCheck((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_0); ConditionalWeakTable_2_TryGetValue_mDFCB6C303807E3F8998D196F4573870680E81F8B((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_0, (RuntimeObject *)__this, (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 **)(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 **)(&V_0), /*hidden argument*/ConditionalWeakTable_2_TryGetValue_mDFCB6C303807E3F8998D196F4573870680E81F8B_RuntimeMethod_var); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_1 = V_0; if (L_1) { goto IL_0012; } } { return; } IL_0012: { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = V_0; NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_2); int32_t L_3 = SerializationInfo_GetInt32_mB47BD46A0BDBBAF5B47BB62E6EFF8E092E3F3656((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_2, (String_t*)_stringLiteral2DA600BF9404843107A9531694F654E5662959E0, /*hidden argument*/NULL); V_1 = (int32_t)L_3; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_4 = V_0; NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_4); int32_t L_5 = SerializationInfo_GetInt32_mB47BD46A0BDBBAF5B47BB62E6EFF8E092E3F3656((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_4, (String_t*)_stringLiteral35E05A2D28CF03B64D64C58D0C7ED03AD5A3AF60, /*hidden argument*/NULL); V_2 = (int32_t)L_5; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_6 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_7 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 23)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_8 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_7, /*hidden argument*/NULL); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_6); RuntimeObject * L_9 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_6, (String_t*)_stringLiteral8FC94E4F5B71CECE2565D72417AACC804EE27A0D, (Type_t *)L_8, /*hidden argument*/NULL); __this->set_comparer_6(((RuntimeObject*)Castclass((RuntimeObject*)L_9, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28)))); int32_t L_10 = V_2; if (!L_10) { goto IL_010c; } } { int32_t L_11 = V_2; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_12 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)L_11); __this->set_buckets_0(L_12); V_4 = (int32_t)0; goto IL_0071; } IL_0061: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_13 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_14 = V_4; NullCheck(L_13); (L_13)->SetAt(static_cast<il2cpp_array_size_t>(L_14), (int32_t)(-1)); int32_t L_15 = V_4; V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)); } IL_0071: { int32_t L_16 = V_4; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_17 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_17); if ((((int32_t)L_16) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_17)->max_length))))))) { goto IL_0061; } } { int32_t L_18 = V_2; EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_19 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 29), (uint32_t)L_18); __this->set_entries_1(L_19); __this->set_freeList_4((-1)); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_20 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_21 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 26)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_22 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_21, /*hidden argument*/NULL); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_20); RuntimeObject * L_23 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_20, (String_t*)_stringLiteral1D89254A2BC78C1FF41C2F6767A0E00EE126B3BF, (Type_t *)L_22, /*hidden argument*/NULL); V_3 = (KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB*)((KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB*)Castclass((RuntimeObject*)L_23, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 32))); KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB* L_24 = V_3; if (L_24) { goto IL_00b9; } } { SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 * L_25 = (SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 *)il2cpp_codegen_object_new(SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_il2cpp_TypeInfo_var); SerializationException__ctor_m88AAD9671030A8A96AA87CB95701938FBD8F16E1(L_25, (String_t*)_stringLiteral1EB7E67EA75FFC3FCB05A9685FA4F1578DCACCF6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_25, NULL, Dictionary_2_OnDeserialization_m63903F75E863748E0BA65E8FC9A1B45155BE00EA_RuntimeMethod_var); } IL_00b9: { V_5 = (int32_t)0; goto IL_0103; } IL_00be: { KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB* L_26 = V_3; int32_t L_27 = V_5; NullCheck(L_26); RuntimeObject * L_28 = KeyValuePair_2_get_Key_m5D7C176AE453D032C109972EBB10C20605DAE036((KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)((L_26)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_27))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); if (L_28) { goto IL_00dd; } } { SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 * L_29 = (SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 *)il2cpp_codegen_object_new(SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_il2cpp_TypeInfo_var); SerializationException__ctor_m88AAD9671030A8A96AA87CB95701938FBD8F16E1(L_29, (String_t*)_stringLiteralD6D1BC79DD62E9F1FB9A49A8F76F4BA8AB71AECD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_29, NULL, Dictionary_2_OnDeserialization_m63903F75E863748E0BA65E8FC9A1B45155BE00EA_RuntimeMethod_var); } IL_00dd: { KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB* L_30 = V_3; int32_t L_31 = V_5; NullCheck(L_30); RuntimeObject * L_32 = KeyValuePair_2_get_Key_m5D7C176AE453D032C109972EBB10C20605DAE036((KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)((L_30)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_31))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 10)); KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB* L_33 = V_3; int32_t L_34 = V_5; NullCheck(L_33); ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_35 = KeyValuePair_2_get_Value_m48979A8E8026569BC75639CDE453011950B84356((KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); (( void (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, RuntimeObject *, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, (RuntimeObject *)L_32, (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )L_35, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); int32_t L_36 = V_5; V_5 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_36, (int32_t)1)); } IL_0103: { int32_t L_37 = V_5; KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB* L_38 = V_3; NullCheck(L_38); if ((((int32_t)L_37) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_38)->max_length))))))) { goto IL_00be; } } { goto IL_0113; } IL_010c: { __this->set_buckets_0((Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)NULL); } IL_0113: { int32_t L_39 = V_1; __this->set_version_3(L_39); IL2CPP_RUNTIME_CLASS_INIT(DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00_il2cpp_TypeInfo_var); ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * L_40 = DictionaryHashHelpers_get_SerializationInfoTable_mCF0A53E777EAFE1AA018C02529AFF6D3CDF7A05C(/*hidden argument*/NULL); NullCheck((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_40); ConditionalWeakTable_2_Remove_mD69606977A8C793DEA91E373F7D886E4865D7FBD((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)L_40, (RuntimeObject *)__this, /*hidden argument*/ConditionalWeakTable_2_Remove_mD69606977A8C793DEA91E373F7D886E4865D7FBD_RuntimeMethod_var); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::Resize() extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_Resize_m45B007ADE44A69A6B4AA23028D3642BA5AA66061_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Resize_m45B007ADE44A69A6B4AA23028D3642BA5AA66061_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_count_2(); IL2CPP_RUNTIME_CLASS_INIT(HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_il2cpp_TypeInfo_var); int32_t L_1 = HashHelpers_ExpandPrime_m4245F4C95074EAA8F949FB3B734F611A533A6A0D((int32_t)L_0, /*hidden argument*/NULL); NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); (( void (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, int32_t, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, (int32_t)L_1, (bool)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 31)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::Resize(System.Int32,System.Boolean) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_Resize_mA34DD099BDA2F1633617FD97EF0B12953A7C9CA2_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, int32_t ___newSize0, bool ___forceNewHashCodes1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Resize_mA34DD099BDA2F1633617FD97EF0B12953A7C9CA2_MetadataUsageId); s_Il2CppMethodInitialized = true; } Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* V_0 = NULL; EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* V_1 = NULL; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; int32_t V_5 = 0; { int32_t L_0 = ___newSize0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_1 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)L_0); V_0 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)L_1; V_2 = (int32_t)0; goto IL_0013; } IL_000b: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = V_0; int32_t L_3 = V_2; NullCheck(L_2); (L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (int32_t)(-1)); int32_t L_4 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)); } IL_0013: { int32_t L_5 = V_2; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_6 = V_0; NullCheck(L_6); if ((((int32_t)L_5) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_6)->max_length))))))) { goto IL_000b; } } { int32_t L_7 = ___newSize0; EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_8 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 29), (uint32_t)L_7); V_1 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)L_8; EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_9 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_10 = V_1; int32_t L_11 = (int32_t)__this->get_count_2(); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_9, (int32_t)0, (RuntimeArray *)(RuntimeArray *)L_10, (int32_t)0, (int32_t)L_11, /*hidden argument*/NULL); bool L_12 = ___forceNewHashCodes1; if (!L_12) { goto IL_0080; } } { V_3 = (int32_t)0; goto IL_0077; } IL_003b: { EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_13 = V_1; int32_t L_14 = V_3; NullCheck(L_13); int32_t L_15 = (int32_t)((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_hashCode_0(); if ((((int32_t)L_15) == ((int32_t)(-1)))) { goto IL_0073; } } { EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_16 = V_1; int32_t L_17 = V_3; NullCheck(L_16); RuntimeObject* L_18 = (RuntimeObject*)__this->get_comparer_6(); EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_19 = V_1; int32_t L_20 = V_3; NullCheck(L_19); RuntimeObject * L_21 = (RuntimeObject *)((L_19)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_20)))->get_key_2(); NullCheck((RuntimeObject*)L_18); int32_t L_22 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Object>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28), (RuntimeObject*)L_18, (RuntimeObject *)L_21); ((L_16)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_17)))->set_hashCode_0(((int32_t)((int32_t)L_22&(int32_t)((int32_t)2147483647LL)))); } IL_0073: { int32_t L_23 = V_3; V_3 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); } IL_0077: { int32_t L_24 = V_3; int32_t L_25 = (int32_t)__this->get_count_2(); if ((((int32_t)L_24) < ((int32_t)L_25))) { goto IL_003b; } } IL_0080: { V_4 = (int32_t)0; goto IL_00c3; } IL_0085: { EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_26 = V_1; int32_t L_27 = V_4; NullCheck(L_26); int32_t L_28 = (int32_t)((L_26)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_27)))->get_hashCode_0(); if ((((int32_t)L_28) < ((int32_t)0))) { goto IL_00bd; } } { EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_29 = V_1; int32_t L_30 = V_4; NullCheck(L_29); int32_t L_31 = (int32_t)((L_29)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_30)))->get_hashCode_0(); int32_t L_32 = ___newSize0; V_5 = (int32_t)((int32_t)((int32_t)L_31%(int32_t)L_32)); EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_33 = V_1; int32_t L_34 = V_4; NullCheck(L_33); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_35 = V_0; int32_t L_36 = V_5; NullCheck(L_35); int32_t L_37 = L_36; int32_t L_38 = (L_35)->GetAt(static_cast<il2cpp_array_size_t>(L_37)); ((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->set_next_1(L_38); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_39 = V_0; int32_t L_40 = V_5; int32_t L_41 = V_4; NullCheck(L_39); (L_39)->SetAt(static_cast<il2cpp_array_size_t>(L_40), (int32_t)L_41); } IL_00bd: { int32_t L_42 = V_4; V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)1)); } IL_00c3: { int32_t L_43 = V_4; int32_t L_44 = (int32_t)__this->get_count_2(); if ((((int32_t)L_43) < ((int32_t)L_44))) { goto IL_0085; } } { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_45 = V_0; __this->set_buckets_0(L_45); EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_46 = V_1; __this->set_entries_1(L_46); return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::Remove(TKey) extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_Remove_mDA53A01E63EFD9F3D4A2695D41B10D981E15ACD4_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_Remove_mDA53A01E63EFD9F3D4A2695D41B10D981E15ACD4_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_0013; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_Remove_mDA53A01E63EFD9F3D4A2695D41B10D981E15ACD4_RuntimeMethod_var); } IL_0013: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); if (!L_2) { goto IL_015d; } } { RuntimeObject* L_3 = (RuntimeObject*)__this->get_comparer_6(); RuntimeObject * L_4 = ___key0; NullCheck((RuntimeObject*)L_3); int32_t L_5 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Object>::GetHashCode(T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28), (RuntimeObject*)L_3, (RuntimeObject *)L_4); V_0 = (int32_t)((int32_t)((int32_t)L_5&(int32_t)((int32_t)2147483647LL))); int32_t L_6 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_7 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_7); V_1 = (int32_t)((int32_t)((int32_t)L_6%(int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_7)->max_length)))))); V_2 = (int32_t)(-1); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_9 = V_1; NullCheck(L_8); int32_t L_10 = L_9; int32_t L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); V_3 = (int32_t)L_11; goto IL_0156; } IL_004c: { EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_12 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_13 = V_3; NullCheck(L_12); int32_t L_14 = (int32_t)((L_12)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_13)))->get_hashCode_0(); int32_t L_15 = V_0; if ((!(((uint32_t)L_14) == ((uint32_t)L_15)))) { goto IL_0142; } } { RuntimeObject* L_16 = (RuntimeObject*)__this->get_comparer_6(); EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_17 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_18 = V_3; NullCheck(L_17); RuntimeObject * L_19 = (RuntimeObject *)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18)))->get_key_2(); RuntimeObject * L_20 = ___key0; NullCheck((RuntimeObject*)L_16); bool L_21 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.Generic.IEqualityComparer`1<System.Object>::Equals(T,T) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 28), (RuntimeObject*)L_16, (RuntimeObject *)L_19, (RuntimeObject *)L_20); if (!L_21) { goto IL_0142; } } { int32_t L_22 = V_2; if ((((int32_t)L_22) >= ((int32_t)0))) { goto IL_00a4; } } { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_23 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_24 = V_1; EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_25 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_26 = V_3; NullCheck(L_25); int32_t L_27 = (int32_t)((L_25)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_26)))->get_next_1(); NullCheck(L_23); (L_23)->SetAt(static_cast<il2cpp_array_size_t>(L_24), (int32_t)L_27); goto IL_00c6; } IL_00a4: { EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_28 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_29 = V_2; NullCheck(L_28); EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_30 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_31 = V_3; NullCheck(L_30); int32_t L_32 = (int32_t)((L_30)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_31)))->get_next_1(); ((L_28)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_29)))->set_next_1(L_32); } IL_00c6: { EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_33 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_34 = V_3; NullCheck(L_33); ((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->set_hashCode_0((-1)); EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_35 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_36 = V_3; NullCheck(L_35); int32_t L_37 = (int32_t)__this->get_freeList_4(); ((L_35)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_36)))->set_next_1(L_37); EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_38 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_39 = V_3; NullCheck(L_38); RuntimeObject ** L_40 = (RuntimeObject **)((L_38)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_39)))->get_address_of_key_2(); il2cpp_codegen_initobj(L_40, sizeof(RuntimeObject *)); EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_41 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_42 = V_3; NullCheck(L_41); ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C * L_43 = (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C *)((L_41)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_42)))->get_address_of_value_3(); il2cpp_codegen_initobj(L_43, sizeof(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )); int32_t L_44 = V_3; __this->set_freeList_4(L_44); int32_t L_45 = (int32_t)__this->get_freeCount_5(); __this->set_freeCount_5(((int32_t)il2cpp_codegen_add((int32_t)L_45, (int32_t)1))); int32_t L_46 = (int32_t)__this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_46, (int32_t)1))); return (bool)1; } IL_0142: { int32_t L_47 = V_3; V_2 = (int32_t)L_47; EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_48 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_49 = V_3; NullCheck(L_48); int32_t L_50 = (int32_t)((L_48)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_49)))->get_next_1(); V_3 = (int32_t)L_50; } IL_0156: { int32_t L_51 = V_3; if ((((int32_t)L_51) >= ((int32_t)0))) { goto IL_004c; } } IL_015d: { return (bool)0; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::TryGetValue(TKey,TValue&) extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_mAE2056CD9A88411E248B0F3F15F38DE2586C6953_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, RuntimeObject * ___key0, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C * ___value1, const RuntimeMethod* method) { int32_t V_0 = 0; { RuntimeObject * L_0 = ___key0; NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); int32_t L_1 = (( int32_t (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0025; } } { ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C * L_3 = ___value1; EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_4 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_5 = V_0; NullCheck(L_4); ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_6 = (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_value_3(); *(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C *)L_3 = L_6; return (bool)1; } IL_0025: { ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C * L_7 = ___value1; il2cpp_codegen_initobj(L_7, sizeof(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )); return (bool)0; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.get_IsReadOnly() extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_get_IsReadOnly_m776C89DCEA6512CEB2756EDA8854CA11EF235514_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_CopyTo_m4C5A88A6D1C54A204EBF77E48C2B607F7C3BADF8_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB* ___array0, int32_t ___index1, const RuntimeMethod* method) { { KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB* L_0 = ___array0; int32_t L_1 = ___index1; NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); (( void (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 25)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, (KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB*)L_0, (int32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 25)); return; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_ICollection_CopyTo_mE4CA5150D495BBC4E0252D620694D9A3001B1AAA_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_System_Collections_ICollection_CopyTo_mE4CA5150D495BBC4E0252D620694D9A3001B1AAA_MetadataUsageId); s_Il2CppMethodInitialized = true; } KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB* V_0 = NULL; DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56* V_1 = NULL; EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* V_2 = NULL; int32_t V_3 = 0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_4 = NULL; int32_t V_5 = 0; EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* V_6 = NULL; int32_t V_7 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_mE4CA5150D495BBC4E0252D620694D9A3001B1AAA_RuntimeMethod_var); } IL_000e: { RuntimeArray * L_2 = ___array0; NullCheck((RuntimeArray *)L_2); int32_t L_3 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)L_2, /*hidden argument*/NULL); if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_0027; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_4 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_4, (String_t*)_stringLiteral2D77BE6D598A0A9376398980E66D10E319F1B52A, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_mE4CA5150D495BBC4E0252D620694D9A3001B1AAA_RuntimeMethod_var); } IL_0027: { RuntimeArray * L_5 = ___array0; NullCheck((RuntimeArray *)L_5); int32_t L_6 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)L_5, (int32_t)0, /*hidden argument*/NULL); if (!L_6) { goto IL_0040; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_7 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_7, (String_t*)_stringLiteralC363992023785AF013BBCF2E20C19D9835184F82, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_mE4CA5150D495BBC4E0252D620694D9A3001B1AAA_RuntimeMethod_var); } IL_0040: { int32_t L_8 = ___index1; if ((((int32_t)L_8) < ((int32_t)0))) { goto IL_004d; } } { int32_t L_9 = ___index1; RuntimeArray * L_10 = ___array0; NullCheck((RuntimeArray *)L_10); int32_t L_11 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_10, /*hidden argument*/NULL); if ((((int32_t)L_9) <= ((int32_t)L_11))) { goto IL_0063; } } IL_004d: { int32_t L_12 = ___index1; int32_t L_13 = L_12; RuntimeObject * L_14 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_13); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_15 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378(L_15, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, (RuntimeObject *)L_14, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_mE4CA5150D495BBC4E0252D620694D9A3001B1AAA_RuntimeMethod_var); } IL_0063: { RuntimeArray * L_16 = ___array0; NullCheck((RuntimeArray *)L_16); int32_t L_17 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_16, /*hidden argument*/NULL); int32_t L_18 = ___index1; NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); int32_t L_19 = (( int32_t (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 18)); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_18))) >= ((int32_t)L_19))) { goto IL_007e; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_20 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_20, (String_t*)_stringLiteralBC80A496F1C479B70F6EE2BF2F0C3C05463301B8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_mE4CA5150D495BBC4E0252D620694D9A3001B1AAA_RuntimeMethod_var); } IL_007e: { RuntimeArray * L_21 = ___array0; V_0 = (KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB*)((KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB*)IsInst((RuntimeObject*)L_21, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 32))); KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB* L_22 = V_0; if (!L_22) { goto IL_0091; } } { KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB* L_23 = V_0; int32_t L_24 = ___index1; NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); (( void (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 25)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, (KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB*)L_23, (int32_t)L_24, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 25)); return; } IL_0091: { RuntimeArray * L_25 = ___array0; if (!((DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56*)IsInst((RuntimeObject*)L_25, DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56_il2cpp_TypeInfo_var))) { goto IL_00fb; } } { RuntimeArray * L_26 = ___array0; V_1 = (DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56*)((DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56*)IsInst((RuntimeObject*)L_26, DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56_il2cpp_TypeInfo_var)); EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_27 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); V_2 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)L_27; V_3 = (int32_t)0; goto IL_00f1; } IL_00ab: { EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_28 = V_2; int32_t L_29 = V_3; NullCheck(L_28); int32_t L_30 = (int32_t)((L_28)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_29)))->get_hashCode_0(); if ((((int32_t)L_30) < ((int32_t)0))) { goto IL_00ed; } } { DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56* L_31 = V_1; int32_t L_32 = ___index1; int32_t L_33 = (int32_t)L_32; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)1)); EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_34 = V_2; int32_t L_35 = V_3; NullCheck(L_34); RuntimeObject * L_36 = (RuntimeObject *)((L_34)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_35)))->get_key_2(); EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_37 = V_2; int32_t L_38 = V_3; NullCheck(L_37); ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_39 = (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )((L_37)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_38)))->get_value_3(); ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_40 = L_39; RuntimeObject * L_41 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 17), &L_40); DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_42; memset(&L_42, 0, sizeof(L_42)); DictionaryEntry__ctor_m67BC38CD2B85F134F3EB2473270CDD3933F7CD9B((&L_42), (RuntimeObject *)L_36, (RuntimeObject *)L_41, /*hidden argument*/NULL); NullCheck(L_31); (L_31)->SetAt(static_cast<il2cpp_array_size_t>(L_33), (DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 )L_42); } IL_00ed: { int32_t L_43 = V_3; V_3 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_43, (int32_t)1)); } IL_00f1: { int32_t L_44 = V_3; int32_t L_45 = (int32_t)__this->get_count_2(); if ((((int32_t)L_44) < ((int32_t)L_45))) { goto IL_00ab; } } { return; } IL_00fb: { RuntimeArray * L_46 = ___array0; V_4 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)L_46, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_47 = V_4; if (L_47) { goto IL_0117; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_48 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_48, (String_t*)_stringLiteralC44D4E6C6AF3517A1CC72EDF7D1A5FFD7E3368F1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_48, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_mE4CA5150D495BBC4E0252D620694D9A3001B1AAA_RuntimeMethod_var); } IL_0117: { } IL_0118: try { // begin try (depth: 1) { int32_t L_49 = (int32_t)__this->get_count_2(); V_5 = (int32_t)L_49; EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_50 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); V_6 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)L_50; V_7 = (int32_t)0; goto IL_0173; } IL_012d: { EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_51 = V_6; int32_t L_52 = V_7; NullCheck(L_51); int32_t L_53 = (int32_t)((L_51)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_52)))->get_hashCode_0(); if ((((int32_t)L_53) < ((int32_t)0))) { goto IL_016d; } } IL_013e: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_54 = V_4; int32_t L_55 = ___index1; int32_t L_56 = (int32_t)L_55; ___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_56, (int32_t)1)); EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_57 = V_6; int32_t L_58 = V_7; NullCheck(L_57); RuntimeObject * L_59 = (RuntimeObject *)((L_57)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_58)))->get_key_2(); EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_60 = V_6; int32_t L_61 = V_7; NullCheck(L_60); ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_62 = (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )((L_60)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_61)))->get_value_3(); KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 L_63; memset(&L_63, 0, sizeof(L_63)); KeyValuePair_2__ctor_m036B07A37CD133C33431E3A1AD0C3A57DBC521F0((&L_63), (RuntimeObject *)L_59, (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )L_62, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 20)); KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 L_64 = L_63; RuntimeObject * L_65 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 19), &L_64); NullCheck(L_54); ArrayElementTypeCheck (L_54, L_65); (L_54)->SetAt(static_cast<il2cpp_array_size_t>(L_56), (RuntimeObject *)L_65); } IL_016d: { int32_t L_66 = V_7; V_7 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_66, (int32_t)1)); } IL_0173: { int32_t L_67 = V_7; int32_t L_68 = V_5; if ((((int32_t)L_67) < ((int32_t)L_68))) { goto IL_012d; } } IL_0179: { goto IL_018c; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (ArrayTypeMismatchException_tE34C1032B089C37399200997F079C640D23D9499_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_017b; throw e; } CATCH_017b: { // begin catch(System.ArrayTypeMismatchException) ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_69 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_69, (String_t*)_stringLiteralC44D4E6C6AF3517A1CC72EDF7D1A5FFD7E3368F1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_69, NULL, Dictionary_2_System_Collections_ICollection_CopyTo_mE4CA5150D495BBC4E0252D620694D9A3001B1AAA_RuntimeMethod_var); } // end catch (depth: 1) IL_018c: { return; } } // System.Collections.IEnumerator System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerable.GetEnumerator() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_System_Collections_IEnumerable_GetEnumerator_m8CA50F6FF4A107CBC4239838E34DED5E4538BA33_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, const RuntimeMethod* method) { { Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 L_0; memset(&L_0, 0, sizeof(L_0)); Enumerator__ctor_mC05BB4833CCCF3518A99F2B27BEB5973D1E7AC32((&L_0), (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, (int32_t)2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)); Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 21), &L_1); return (RuntimeObject*)L_2; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::System.Collections.ICollection.get_IsSynchronized() extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_System_Collections_ICollection_get_IsSynchronized_m78B64E012ED85AB6AA74A2D9B67D278AD18E9CAA_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Object System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::System.Collections.ICollection.get_SyncRoot() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Dictionary_2_System_Collections_ICollection_get_SyncRoot_mA421BC558ECB5116A75AAA3D670614F71D19BF85_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_System_Collections_ICollection_get_SyncRoot_mA421BC558ECB5116A75AAA3D670614F71D19BF85_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = (RuntimeObject *)__this->get__syncRoot_9(); if (L_0) { goto IL_001a; } } { RuntimeObject ** L_1 = (RuntimeObject **)__this->get_address_of__syncRoot_9(); RuntimeObject * L_2 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(L_2, /*hidden argument*/NULL); InterlockedCompareExchangeImpl<RuntimeObject *>((RuntimeObject **)(RuntimeObject **)L_1, (RuntimeObject *)L_2, (RuntimeObject *)NULL); } IL_001a: { RuntimeObject * L_3 = (RuntimeObject *)__this->get__syncRoot_9(); return L_3; } } // System.Object System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::System.Collections.IDictionary.get_Item(System.Object) extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Dictionary_2_System_Collections_IDictionary_get_Item_m5E1E84A40E7BBD82CF4C5200C5F2F993FD5F11E8_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { int32_t V_0 = 0; { RuntimeObject * L_0 = ___key0; bool L_1 = (( bool (*) (RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 33)->methodPointer)((RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 33)); if (!L_1) { goto IL_0030; } } { RuntimeObject * L_2 = ___key0; NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); int32_t L_3 = (( int32_t (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 27))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); V_0 = (int32_t)L_3; int32_t L_4 = V_0; if ((((int32_t)L_4) < ((int32_t)0))) { goto IL_0030; } } { EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_5 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)__this->get_entries_1(); int32_t L_6 = V_0; NullCheck(L_5); ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_7 = (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_value_3(); ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 17), &L_8); return L_9; } IL_0030: { return NULL; } } // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::System.Collections.IDictionary.set_Item(System.Object,System.Object) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_System_Collections_IDictionary_set_Item_m3A2E48BB4D4447BEDEBD25E8BB702AEF849B93AF_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_System_Collections_IDictionary_set_Item_m3A2E48BB4D4447BEDEBD25E8BB702AEF849B93AF_MetadataUsageId); s_Il2CppMethodInitialized = true; } ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C V_0; memset(&V_0, 0, sizeof(V_0)); RuntimeObject * V_1 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_System_Collections_IDictionary_set_Item_m3A2E48BB4D4447BEDEBD25E8BB702AEF849B93AF_RuntimeMethod_var); } IL_000e: { RuntimeObject * L_2 = ___value1; if (L_2) { goto IL_002c; } } { il2cpp_codegen_initobj((&V_0), sizeof(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )); } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_4, (String_t*)_stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Dictionary_2_System_Collections_IDictionary_set_Item_m3A2E48BB4D4447BEDEBD25E8BB702AEF849B93AF_RuntimeMethod_var); } IL_002c: { } IL_002d: try { // begin try (depth: 1) { RuntimeObject * L_5 = ___key0; V_1 = (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 27))); } IL_0034: try { // begin try (depth: 2) RuntimeObject * L_6 = V_1; RuntimeObject * L_7 = ___value1; NullCheck((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this); (( void (*) (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, RuntimeObject *, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 35)->methodPointer)((Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, (RuntimeObject *)L_6, (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )((*(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C *)((ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C *)UnBox(L_7, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 17))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 35)); goto IL_0064; } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0043; throw e; } CATCH_0043: { // begin catch(System.InvalidCastException) RuntimeObject * L_8 = ___value1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_9 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 36)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_10 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_9, /*hidden argument*/NULL); String_t* L_11 = SR_Format_m2DD0EA1F52576669B34B03CDB3D441631E1CA76C((String_t*)_stringLiteralFA5354A55A2D5AE97DEF68A54DFDDBF37A452FD6, (RuntimeObject *)L_8, (RuntimeObject *)L_10, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_12, (String_t*)L_11, (String_t*)_stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, NULL, Dictionary_2_System_Collections_IDictionary_set_Item_m3A2E48BB4D4447BEDEBD25E8BB702AEF849B93AF_RuntimeMethod_var); } // end catch (depth: 2) IL_0064: { goto IL_0087; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0066; throw e; } CATCH_0066: { // begin catch(System.InvalidCastException) RuntimeObject * L_13 = ___key0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 37)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_14, /*hidden argument*/NULL); String_t* L_16 = SR_Format_m2DD0EA1F52576669B34B03CDB3D441631E1CA76C((String_t*)_stringLiteralFA5354A55A2D5AE97DEF68A54DFDDBF37A452FD6, (RuntimeObject *)L_13, (RuntimeObject *)L_15, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_17 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_17, (String_t*)L_16, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, NULL, Dictionary_2_System_Collections_IDictionary_set_Item_m3A2E48BB4D4447BEDEBD25E8BB702AEF849B93AF_RuntimeMethod_var); } // end catch (depth: 1) IL_0087: { return; } } // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::IsCompatibleKey(System.Object) extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_IsCompatibleKey_m7E43A77A3EC2C76193BEE3EDDDAD146A892D19F7_gshared (RuntimeObject * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Dictionary_2_IsCompatibleKey_m7E43A77A3EC2C76193BEE3EDDDAD146A892D19F7_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Dictionary_2_IsCompatibleKey_m7E43A77A3EC2C76193BEE3EDDDAD146A892D19F7_RuntimeMethod_var); } IL_000e: { RuntimeObject * L_2 = ___key0; return (bool)((!(((RuntimeObject*)(RuntimeObject *)((RuntimeObject *)IsInst((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 27)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0); } } // System.Collections.IDictionaryEnumerator System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::System.Collections.IDictionary.GetEnumerator() extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_System_Collections_IDictionary_GetEnumerator_mFF1808E157194836A006AD14F55E1DA2D87E81EC_gshared (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * __this, const RuntimeMethod* method) { { Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 L_0; memset(&L_0, 0, sizeof(L_0)); Enumerator__ctor_mC05BB4833CCCF3518A99F2B27BEB5973D1E7AC32((&L_0), (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this, (int32_t)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 22)); Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 L_1 = L_0; RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 21), &L_1); return (RuntimeObject*)L_2; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Boolean System.Collections.Generic.EnumEqualityComparer`1<System.Int32Enum>::Equals(T,T) extern "C" IL2CPP_METHOD_ATTR bool EnumEqualityComparer_1_Equals_m90B356FCF177C25D39DEDD65CC5746D403B2B7D6_gshared (EnumEqualityComparer_1_tF52C67ADEB6BE6748FD0C9630C4A563E364AF8C8 * __this, int32_t ___x0, int32_t ___y1, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0 = ___x0; int32_t L_1 = (( int32_t (*) (int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((int32_t)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); int32_t L_2 = ___y1; int32_t L_3 = (( int32_t (*) (int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); V_0 = (int32_t)L_3; int32_t L_4 = V_0; return (bool)((((int32_t)L_1) == ((int32_t)L_4))? 1 : 0); } } // System.Int32 System.Collections.Generic.EnumEqualityComparer`1<System.Int32Enum>::GetHashCode(T) extern "C" IL2CPP_METHOD_ATTR int32_t EnumEqualityComparer_1_GetHashCode_m95241B5467DF4BF7BB27FF82D9BB555DE6073766_gshared (EnumEqualityComparer_1_tF52C67ADEB6BE6748FD0C9630C4A563E364AF8C8 * __this, int32_t ___obj0, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0 = ___obj0; int32_t L_1 = (( int32_t (*) (int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((int32_t)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); V_0 = (int32_t)L_1; int32_t L_2 = Int32_GetHashCode_m245C424ECE351E5FE3277A88EEB02132DAB8C25A((int32_t*)(int32_t*)(&V_0), /*hidden argument*/NULL); return L_2; } } // System.Void System.Collections.Generic.EnumEqualityComparer`1<System.Int32Enum>::.ctor() extern "C" IL2CPP_METHOD_ATTR void EnumEqualityComparer_1__ctor_mC4913362D8365EAA535CCAB2D5C8DBDF9BD1C65E_gshared (EnumEqualityComparer_1_tF52C67ADEB6BE6748FD0C9630C4A563E364AF8C8 * __this, const RuntimeMethod* method) { { NullCheck((EqualityComparer_1_t1C2A0392A1283327989CBB7C784638BDDB3805BB *)__this); (( void (*) (EqualityComparer_1_t1C2A0392A1283327989CBB7C784638BDDB3805BB *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((EqualityComparer_1_t1C2A0392A1283327989CBB7C784638BDDB3805BB *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); return; } } // System.Void System.Collections.Generic.EnumEqualityComparer`1<System.Int32Enum>::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" IL2CPP_METHOD_ATTR void EnumEqualityComparer_1__ctor_m2857259C02619BCA5F3B80073397BE4F2C020C79_gshared (EnumEqualityComparer_1_tF52C67ADEB6BE6748FD0C9630C4A563E364AF8C8 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___information0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { { NullCheck((EqualityComparer_1_t1C2A0392A1283327989CBB7C784638BDDB3805BB *)__this); (( void (*) (EqualityComparer_1_t1C2A0392A1283327989CBB7C784638BDDB3805BB *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((EqualityComparer_1_t1C2A0392A1283327989CBB7C784638BDDB3805BB *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); return; } } // System.Void System.Collections.Generic.EnumEqualityComparer`1<System.Int32Enum>::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" IL2CPP_METHOD_ATTR void EnumEqualityComparer_1_GetObjectData_mC6BAA3493139D00512ACA2AF82E4086519C004AD_gshared (EnumEqualityComparer_1_tF52C67ADEB6BE6748FD0C9630C4A563E364AF8C8 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (EnumEqualityComparer_1_GetObjectData_mC6BAA3493139D00512ACA2AF82E4086519C004AD_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 3)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); Type_t * L_2 = Enum_GetUnderlyingType_m0715B4E60E6909F03FF7302B6E20B1AB88DA84B1((Type_t *)L_1, /*hidden argument*/NULL); int32_t L_3 = Type_GetTypeCode_m3105BBCE671D89EFE212F9BA06AAB90944A6116F((Type_t *)L_2, /*hidden argument*/NULL); if ((((int32_t)L_3) == ((int32_t)((int32_t)9)))) { goto IL_0028; } } { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_4 = ___info0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_5 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 4)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_6 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_5, /*hidden argument*/NULL); NullCheck((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_4); SerializationInfo_SetType_m3F30AFEB3555E20E995D31713C0604E26B2CF784((SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *)L_4, (Type_t *)L_6, /*hidden argument*/NULL); } IL_0028: { return; } } // System.Boolean System.Collections.Generic.EnumEqualityComparer`1<System.Int32Enum>::Equals(System.Object) extern "C" IL2CPP_METHOD_ATTR bool EnumEqualityComparer_1_Equals_m8CF4071BB5ECE6E18E384B246CC6B9B8FC57A353_gshared (EnumEqualityComparer_1_tF52C67ADEB6BE6748FD0C9630C4A563E364AF8C8 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___obj0; return (bool)((!(((RuntimeObject*)(EnumEqualityComparer_1_tF52C67ADEB6BE6748FD0C9630C4A563E364AF8C8 *)((EnumEqualityComparer_1_tF52C67ADEB6BE6748FD0C9630C4A563E364AF8C8 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0); } } // System.Int32 System.Collections.Generic.EnumEqualityComparer`1<System.Int32Enum>::GetHashCode() extern "C" IL2CPP_METHOD_ATTR int32_t EnumEqualityComparer_1_GetHashCode_m2160C4A95CE1C044F4A6BFE8ECF6B65B197B0996_gshared (EnumEqualityComparer_1_tF52C67ADEB6BE6748FD0C9630C4A563E364AF8C8 * __this, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Type_t * L_0 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60((RuntimeObject *)__this, /*hidden argument*/NULL); NullCheck((MemberInfo_t *)L_0); String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0); NullCheck((RuntimeObject *)L_1); int32_t L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1); return L_2; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<MS.Internal.Xml.Cache.XPathNodeRef>::get_Default() extern "C" IL2CPP_METHOD_ATTR EqualityComparer_1_t56C86948D22FF5ED944CA4AA7E54EC0AAD2C06C1 * EqualityComparer_1_get_Default_mF2213E28FA7E81BA2CC4AB800045E80CCC31DC14_gshared (const RuntimeMethod* method) { EqualityComparer_1_t56C86948D22FF5ED944CA4AA7E54EC0AAD2C06C1 * V_0 = NULL; { EqualityComparer_1_t56C86948D22FF5ED944CA4AA7E54EC0AAD2C06C1 * L_0 = ((EqualityComparer_1_t56C86948D22FF5ED944CA4AA7E54EC0AAD2C06C1_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->get_defaultComparer_0(); il2cpp_codegen_memory_barrier(); V_0 = (EqualityComparer_1_t56C86948D22FF5ED944CA4AA7E54EC0AAD2C06C1 *)L_0; EqualityComparer_1_t56C86948D22FF5ED944CA4AA7E54EC0AAD2C06C1 * L_1 = V_0; if (L_1) { goto IL_0019; } } { EqualityComparer_1_t56C86948D22FF5ED944CA4AA7E54EC0AAD2C06C1 * L_2 = (( EqualityComparer_1_t56C86948D22FF5ED944CA4AA7E54EC0AAD2C06C1 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); V_0 = (EqualityComparer_1_t56C86948D22FF5ED944CA4AA7E54EC0AAD2C06C1 *)L_2; EqualityComparer_1_t56C86948D22FF5ED944CA4AA7E54EC0AAD2C06C1 * L_3 = V_0; il2cpp_codegen_memory_barrier(); ((EqualityComparer_1_t56C86948D22FF5ED944CA4AA7E54EC0AAD2C06C1_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_defaultComparer_0(L_3); } IL_0019: { EqualityComparer_1_t56C86948D22FF5ED944CA4AA7E54EC0AAD2C06C1 * L_4 = V_0; return L_4; } } // System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<MS.Internal.Xml.Cache.XPathNodeRef>::CreateComparer() extern "C" IL2CPP_METHOD_ATTR EqualityComparer_1_t56C86948D22FF5ED944CA4AA7E54EC0AAD2C06C1 * EqualityComparer_1_CreateComparer_m8634804F6075F7C245BFAC19AC2D29467DD7EB82_gshared (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (EqualityComparer_1_CreateComparer_m8634804F6075F7C245BFAC19AC2D29467DD7EB82_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_0 = NULL; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_1 = NULL; int32_t V_2 = 0; { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 2)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL); V_0 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_1, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_2 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_3 = { reinterpret_cast<intptr_t> (Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_0_0_0_var) }; Type_t * L_4 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_3, /*hidden argument*/NULL); bool L_5 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_2, (Type_t *)L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_002d; } } { ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B * L_6 = (ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B *)il2cpp_codegen_object_new(ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B_il2cpp_TypeInfo_var); ByteEqualityComparer__ctor_m2B86B16398C9ADBA996127A209179E9654EF6A68(L_6, /*hidden argument*/NULL); return ((EqualityComparer_1_t56C86948D22FF5ED944CA4AA7E54EC0AAD2C06C1 *)Castclass((RuntimeObject*)L_6, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_002d: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_7 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_8 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_9 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_8, /*hidden argument*/NULL); bool L_10 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_7, (Type_t *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_004a; } } { InternalStringComparer_tCD150130A3DB4C80186B5D8145B910B33496D4CD * L_11 = (InternalStringComparer_tCD150130A3DB4C80186B5D8145B910B33496D4CD *)il2cpp_codegen_object_new(InternalStringComparer_tCD150130A3DB4C80186B5D8145B910B33496D4CD_il2cpp_TypeInfo_var); InternalStringComparer__ctor_m471FF151AF831B76635ED96C53CF08114FD42C83(L_11, /*hidden argument*/NULL); return ((EqualityComparer_1_t56C86948D22FF5ED944CA4AA7E54EC0AAD2C06C1 *)Castclass((RuntimeObject*)L_11, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_004a: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_12 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 4)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_13 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_12, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_14 = V_0; NullCheck((Type_t *)L_13); bool L_15 = VirtFuncInvoker1< bool, Type_t * >::Invoke(104 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_13, (Type_t *)L_14); if (!L_15) { goto IL_0072; } } { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_16 = { reinterpret_cast<intptr_t> (GenericEqualityComparer_1_t86530EF2BF9E43CCEE775B5862B48F735555A90B_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_17 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_16, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_18 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_19 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_17, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_18, /*hidden argument*/NULL); return ((EqualityComparer_1_t56C86948D22FF5ED944CA4AA7E54EC0AAD2C06C1 *)Castclass((RuntimeObject*)L_19, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_0072: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_20 = V_0; NullCheck((Type_t *)L_20); bool L_21 = VirtFuncInvoker0< bool >::Invoke(70 /* System.Boolean System.Type::get_IsGenericType() */, (Type_t *)L_20); if (!L_21) { goto IL_00d6; } } { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_22 = V_0; NullCheck((Type_t *)L_22); Type_t * L_23 = VirtFuncInvoker0< Type_t * >::Invoke(95 /* System.Type System.Type::GetGenericTypeDefinition() */, (Type_t *)L_22); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_24 = { reinterpret_cast<intptr_t> (Nullable_1_t220FFA40D2CEE2CB28F8C04DB1216024A0BC75C3_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_25 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_24, /*hidden argument*/NULL); bool L_26 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_23, (Type_t *)L_25, /*hidden argument*/NULL); if (!L_26) { goto IL_00d6; } } { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_27 = V_0; NullCheck((Type_t *)L_27); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_28 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(94 /* System.Type[] System.Type::GetGenericArguments() */, (Type_t *)L_27); NullCheck(L_28); int32_t L_29 = 0; Type_t * L_30 = (L_28)->GetAt(static_cast<il2cpp_array_size_t>(L_29)); V_1 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_30, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_31 = { reinterpret_cast<intptr_t> (IEquatable_1_t7FBC51A9FCBF69422C0DEBF035FFDC9417EF3DA1_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_32 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_31, /*hidden argument*/NULL); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_33 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_34 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_33; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_35 = V_1; NullCheck(L_34); ArrayElementTypeCheck (L_34, L_35); (L_34)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_35); NullCheck((Type_t *)L_32); Type_t * L_36 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(90 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_32, (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_34); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_37 = V_1; NullCheck((Type_t *)L_36); bool L_38 = VirtFuncInvoker1< bool, Type_t * >::Invoke(104 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_36, (Type_t *)L_37); if (!L_38) { goto IL_00d6; } } { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_39 = { reinterpret_cast<intptr_t> (NullableEqualityComparer_1_tD235D1E336771C9615EB5024AC8C35CFF8ADD27F_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_40 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_39, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_41 = V_1; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_42 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_40, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_41, /*hidden argument*/NULL); return ((EqualityComparer_1_t56C86948D22FF5ED944CA4AA7E54EC0AAD2C06C1 *)Castclass((RuntimeObject*)L_42, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_00d6: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_43 = V_0; NullCheck((Type_t *)L_43); bool L_44 = VirtFuncInvoker0< bool >::Invoke(66 /* System.Boolean System.Type::get_IsEnum() */, (Type_t *)L_43); if (!L_44) { goto IL_016f; } } { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_45 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); Type_t * L_46 = Enum_GetUnderlyingType_m0715B4E60E6909F03FF7302B6E20B1AB88DA84B1((Type_t *)L_45, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); int32_t L_47 = Type_GetTypeCode_m3105BBCE671D89EFE212F9BA06AAB90944A6116F((Type_t *)L_46, /*hidden argument*/NULL); V_2 = (int32_t)L_47; int32_t L_48 = V_2; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_48, (int32_t)5))) { case 0: { goto IL_012d; } case 1: { goto IL_0143; } case 2: { goto IL_0117; } case 3: { goto IL_0143; } case 4: { goto IL_0143; } case 5: { goto IL_0143; } case 6: { goto IL_0159; } case 7: { goto IL_0159; } } } { goto IL_016f; } IL_0117: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_49 = { reinterpret_cast<intptr_t> (ShortEnumEqualityComparer_1_tCB4B7DE9F58431002227076F18CFFC289C6CBD64_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_50 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_49, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_51 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_52 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_50, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_51, /*hidden argument*/NULL); return ((EqualityComparer_1_t56C86948D22FF5ED944CA4AA7E54EC0AAD2C06C1 *)Castclass((RuntimeObject*)L_52, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_012d: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_53 = { reinterpret_cast<intptr_t> (SByteEnumEqualityComparer_1_t0E5A82C922F801F365CCC4BE3062A765423A5852_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_54 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_53, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_55 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_56 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_54, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_55, /*hidden argument*/NULL); return ((EqualityComparer_1_t56C86948D22FF5ED944CA4AA7E54EC0AAD2C06C1 *)Castclass((RuntimeObject*)L_56, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_0143: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_57 = { reinterpret_cast<intptr_t> (EnumEqualityComparer_1_tC44C7E08405BCDA86FDDFB9714C4301D39723C3A_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_58 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_57, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_59 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_60 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_58, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_59, /*hidden argument*/NULL); return ((EqualityComparer_1_t56C86948D22FF5ED944CA4AA7E54EC0AAD2C06C1 *)Castclass((RuntimeObject*)L_60, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_0159: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_61 = { reinterpret_cast<intptr_t> (LongEnumEqualityComparer_1_t6B940FD5688E20A1CF36AD68CCF3A39071FFB0DB_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_62 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_61, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_63 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_64 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_62, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_63, /*hidden argument*/NULL); return ((EqualityComparer_1_t56C86948D22FF5ED944CA4AA7E54EC0AAD2C06C1 *)Castclass((RuntimeObject*)L_64, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_016f: { ObjectEqualityComparer_1_t91BE33FDBEB0BF8C165B1D43F1D71CAC93BCF806 * L_65 = (ObjectEqualityComparer_1_t91BE33FDBEB0BF8C165B1D43F1D71CAC93BCF806 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5)); (( void (*) (ObjectEqualityComparer_1_t91BE33FDBEB0BF8C165B1D43F1D71CAC93BCF806 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(L_65, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)); return L_65; } } // System.Int32 System.Collections.Generic.EqualityComparer`1<MS.Internal.Xml.Cache.XPathNodeRef>::IndexOf(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t EqualityComparer_1_IndexOf_m0F3461679E29EA67E0A3DB84B2F0E0190928D410_gshared (EqualityComparer_1_t56C86948D22FF5ED944CA4AA7E54EC0AAD2C06C1 * __this, XPathNodeRefU5BU5D_t42E3ACCBD8D6FA1DD321905EB2253ABA6173B1E1* ___array0, XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = ___startIndex2; int32_t L_1 = ___count3; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1)); int32_t L_2 = ___startIndex2; V_1 = (int32_t)L_2; goto IL_001f; } IL_0009: { XPathNodeRefU5BU5D_t42E3ACCBD8D6FA1DD321905EB2253ABA6173B1E1* L_3 = ___array0; int32_t L_4 = V_1; NullCheck(L_3); int32_t L_5 = L_4; XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 L_7 = ___value1; NullCheck((EqualityComparer_1_t56C86948D22FF5ED944CA4AA7E54EC0AAD2C06C1 *)__this); bool L_8 = VirtFuncInvoker2< bool, XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 , XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<MS.Internal.Xml.Cache.XPathNodeRef>::Equals(T,T) */, (EqualityComparer_1_t56C86948D22FF5ED944CA4AA7E54EC0AAD2C06C1 *)__this, (XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 )L_6, (XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 )L_7); if (!L_8) { goto IL_001b; } } { int32_t L_9 = V_1; return L_9; } IL_001b: { int32_t L_10 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1)); } IL_001f: { int32_t L_11 = V_1; int32_t L_12 = V_0; if ((((int32_t)L_11) < ((int32_t)L_12))) { goto IL_0009; } } { return (-1); } } // System.Int32 System.Collections.Generic.EqualityComparer`1<MS.Internal.Xml.Cache.XPathNodeRef>::LastIndexOf(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t EqualityComparer_1_LastIndexOf_m6A358B64395A053FE566F9D20AC2CBD126DDF7FE_gshared (EqualityComparer_1_t56C86948D22FF5ED944CA4AA7E54EC0AAD2C06C1 * __this, XPathNodeRefU5BU5D_t42E3ACCBD8D6FA1DD321905EB2253ABA6173B1E1* ___array0, XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = ___startIndex2; int32_t L_1 = ___count3; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1)); int32_t L_2 = ___startIndex2; V_1 = (int32_t)L_2; goto IL_0021; } IL_000b: { XPathNodeRefU5BU5D_t42E3ACCBD8D6FA1DD321905EB2253ABA6173B1E1* L_3 = ___array0; int32_t L_4 = V_1; NullCheck(L_3); int32_t L_5 = L_4; XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 L_7 = ___value1; NullCheck((EqualityComparer_1_t56C86948D22FF5ED944CA4AA7E54EC0AAD2C06C1 *)__this); bool L_8 = VirtFuncInvoker2< bool, XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 , XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<MS.Internal.Xml.Cache.XPathNodeRef>::Equals(T,T) */, (EqualityComparer_1_t56C86948D22FF5ED944CA4AA7E54EC0AAD2C06C1 *)__this, (XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 )L_6, (XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 )L_7); if (!L_8) { goto IL_001d; } } { int32_t L_9 = V_1; return L_9; } IL_001d: { int32_t L_10 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_10, (int32_t)1)); } IL_0021: { int32_t L_11 = V_1; int32_t L_12 = V_0; if ((((int32_t)L_11) >= ((int32_t)L_12))) { goto IL_000b; } } { return (-1); } } // System.Int32 System.Collections.Generic.EqualityComparer`1<MS.Internal.Xml.Cache.XPathNodeRef>::System.Collections.IEqualityComparer.GetHashCode(System.Object) extern "C" IL2CPP_METHOD_ATTR int32_t EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m9DEBB2A86A74578DA03C1340605A6EE4E61D361C_gshared (EqualityComparer_1_t56C86948D22FF5ED944CA4AA7E54EC0AAD2C06C1 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___obj0; if (L_0) { goto IL_0005; } } { return 0; } IL_0005: { RuntimeObject * L_1 = ___obj0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))) { goto IL_001a; } } { RuntimeObject * L_2 = ___obj0; NullCheck((EqualityComparer_1_t56C86948D22FF5ED944CA4AA7E54EC0AAD2C06C1 *)__this); int32_t L_3 = VirtFuncInvoker1< int32_t, XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 >::Invoke(9 /* System.Int32 System.Collections.Generic.EqualityComparer`1<MS.Internal.Xml.Cache.XPathNodeRef>::GetHashCode(T) */, (EqualityComparer_1_t56C86948D22FF5ED944CA4AA7E54EC0AAD2C06C1 *)__this, (XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 )((*(XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 *)((XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 *)UnBox(L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))))); return L_3; } IL_001a: { ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84((int32_t)2, /*hidden argument*/NULL); return 0; } } // System.Boolean System.Collections.Generic.EqualityComparer`1<MS.Internal.Xml.Cache.XPathNodeRef>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) extern "C" IL2CPP_METHOD_ATTR bool EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m4834A6CB8248B3F9310ACB60F805A6A3DA8158B6_gshared (EqualityComparer_1_t56C86948D22FF5ED944CA4AA7E54EC0AAD2C06C1 * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___x0; RuntimeObject * L_1 = ___y1; if ((!(((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(RuntimeObject *)L_1)))) { goto IL_0006; } } { return (bool)1; } IL_0006: { RuntimeObject * L_2 = ___x0; if (!L_2) { goto IL_000c; } } { RuntimeObject * L_3 = ___y1; if (L_3) { goto IL_000e; } } IL_000c: { return (bool)0; } IL_000e: { RuntimeObject * L_4 = ___x0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))) { goto IL_0031; } } { RuntimeObject * L_5 = ___y1; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))) { goto IL_0031; } } { RuntimeObject * L_6 = ___x0; RuntimeObject * L_7 = ___y1; NullCheck((EqualityComparer_1_t56C86948D22FF5ED944CA4AA7E54EC0AAD2C06C1 *)__this); bool L_8 = VirtFuncInvoker2< bool, XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 , XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<MS.Internal.Xml.Cache.XPathNodeRef>::Equals(T,T) */, (EqualityComparer_1_t56C86948D22FF5ED944CA4AA7E54EC0AAD2C06C1 *)__this, (XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 )((*(XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 *)((XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 *)UnBox(L_6, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8))))), (XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 )((*(XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 *)((XPathNodeRef_t6F631244BF7B58CE7DB9239662B4EE745CD54E14 *)UnBox(L_7, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))))); return L_8; } IL_0031: { ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84((int32_t)2, /*hidden argument*/NULL); return (bool)0; } } // System.Void System.Collections.Generic.EqualityComparer`1<MS.Internal.Xml.Cache.XPathNodeRef>::.ctor() extern "C" IL2CPP_METHOD_ATTR void EqualityComparer_1__ctor_mE6C92FFA634EA27B1E91379ED2393CFB5D3C4BAD_gshared (EqualityComparer_1_t56C86948D22FF5ED944CA4AA7E54EC0AAD2C06C1 * __this, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Boolean>::get_Default() extern "C" IL2CPP_METHOD_ATTR EqualityComparer_1_t4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8 * EqualityComparer_1_get_Default_m99A4AB63F80C028A2BDBDD47DC45F65D0E48A256_gshared (const RuntimeMethod* method) { EqualityComparer_1_t4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8 * V_0 = NULL; { EqualityComparer_1_t4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8 * L_0 = ((EqualityComparer_1_t4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->get_defaultComparer_0(); il2cpp_codegen_memory_barrier(); V_0 = (EqualityComparer_1_t4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8 *)L_0; EqualityComparer_1_t4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8 * L_1 = V_0; if (L_1) { goto IL_0019; } } { EqualityComparer_1_t4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8 * L_2 = (( EqualityComparer_1_t4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); V_0 = (EqualityComparer_1_t4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8 *)L_2; EqualityComparer_1_t4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8 * L_3 = V_0; il2cpp_codegen_memory_barrier(); ((EqualityComparer_1_t4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_defaultComparer_0(L_3); } IL_0019: { EqualityComparer_1_t4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8 * L_4 = V_0; return L_4; } } // System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Boolean>::CreateComparer() extern "C" IL2CPP_METHOD_ATTR EqualityComparer_1_t4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8 * EqualityComparer_1_CreateComparer_m832DD7DBCF97B595884D856F7B99187F98640878_gshared (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (EqualityComparer_1_CreateComparer_m832DD7DBCF97B595884D856F7B99187F98640878_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_0 = NULL; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_1 = NULL; int32_t V_2 = 0; { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 2)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL); V_0 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_1, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_2 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_3 = { reinterpret_cast<intptr_t> (Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_0_0_0_var) }; Type_t * L_4 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_3, /*hidden argument*/NULL); bool L_5 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_2, (Type_t *)L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_002d; } } { ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B * L_6 = (ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B *)il2cpp_codegen_object_new(ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B_il2cpp_TypeInfo_var); ByteEqualityComparer__ctor_m2B86B16398C9ADBA996127A209179E9654EF6A68(L_6, /*hidden argument*/NULL); return ((EqualityComparer_1_t4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8 *)Castclass((RuntimeObject*)L_6, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_002d: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_7 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_8 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_9 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_8, /*hidden argument*/NULL); bool L_10 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_7, (Type_t *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_004a; } } { InternalStringComparer_tCD150130A3DB4C80186B5D8145B910B33496D4CD * L_11 = (InternalStringComparer_tCD150130A3DB4C80186B5D8145B910B33496D4CD *)il2cpp_codegen_object_new(InternalStringComparer_tCD150130A3DB4C80186B5D8145B910B33496D4CD_il2cpp_TypeInfo_var); InternalStringComparer__ctor_m471FF151AF831B76635ED96C53CF08114FD42C83(L_11, /*hidden argument*/NULL); return ((EqualityComparer_1_t4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8 *)Castclass((RuntimeObject*)L_11, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_004a: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_12 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 4)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_13 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_12, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_14 = V_0; NullCheck((Type_t *)L_13); bool L_15 = VirtFuncInvoker1< bool, Type_t * >::Invoke(104 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_13, (Type_t *)L_14); if (!L_15) { goto IL_0072; } } { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_16 = { reinterpret_cast<intptr_t> (GenericEqualityComparer_1_t86530EF2BF9E43CCEE775B5862B48F735555A90B_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_17 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_16, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_18 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_19 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_17, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_18, /*hidden argument*/NULL); return ((EqualityComparer_1_t4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8 *)Castclass((RuntimeObject*)L_19, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_0072: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_20 = V_0; NullCheck((Type_t *)L_20); bool L_21 = VirtFuncInvoker0< bool >::Invoke(70 /* System.Boolean System.Type::get_IsGenericType() */, (Type_t *)L_20); if (!L_21) { goto IL_00d6; } } { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_22 = V_0; NullCheck((Type_t *)L_22); Type_t * L_23 = VirtFuncInvoker0< Type_t * >::Invoke(95 /* System.Type System.Type::GetGenericTypeDefinition() */, (Type_t *)L_22); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_24 = { reinterpret_cast<intptr_t> (Nullable_1_t220FFA40D2CEE2CB28F8C04DB1216024A0BC75C3_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_25 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_24, /*hidden argument*/NULL); bool L_26 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_23, (Type_t *)L_25, /*hidden argument*/NULL); if (!L_26) { goto IL_00d6; } } { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_27 = V_0; NullCheck((Type_t *)L_27); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_28 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(94 /* System.Type[] System.Type::GetGenericArguments() */, (Type_t *)L_27); NullCheck(L_28); int32_t L_29 = 0; Type_t * L_30 = (L_28)->GetAt(static_cast<il2cpp_array_size_t>(L_29)); V_1 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_30, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_31 = { reinterpret_cast<intptr_t> (IEquatable_1_t7FBC51A9FCBF69422C0DEBF035FFDC9417EF3DA1_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_32 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_31, /*hidden argument*/NULL); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_33 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_34 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_33; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_35 = V_1; NullCheck(L_34); ArrayElementTypeCheck (L_34, L_35); (L_34)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_35); NullCheck((Type_t *)L_32); Type_t * L_36 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(90 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_32, (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_34); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_37 = V_1; NullCheck((Type_t *)L_36); bool L_38 = VirtFuncInvoker1< bool, Type_t * >::Invoke(104 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_36, (Type_t *)L_37); if (!L_38) { goto IL_00d6; } } { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_39 = { reinterpret_cast<intptr_t> (NullableEqualityComparer_1_tD235D1E336771C9615EB5024AC8C35CFF8ADD27F_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_40 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_39, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_41 = V_1; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_42 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_40, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_41, /*hidden argument*/NULL); return ((EqualityComparer_1_t4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8 *)Castclass((RuntimeObject*)L_42, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_00d6: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_43 = V_0; NullCheck((Type_t *)L_43); bool L_44 = VirtFuncInvoker0< bool >::Invoke(66 /* System.Boolean System.Type::get_IsEnum() */, (Type_t *)L_43); if (!L_44) { goto IL_016f; } } { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_45 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); Type_t * L_46 = Enum_GetUnderlyingType_m0715B4E60E6909F03FF7302B6E20B1AB88DA84B1((Type_t *)L_45, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); int32_t L_47 = Type_GetTypeCode_m3105BBCE671D89EFE212F9BA06AAB90944A6116F((Type_t *)L_46, /*hidden argument*/NULL); V_2 = (int32_t)L_47; int32_t L_48 = V_2; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_48, (int32_t)5))) { case 0: { goto IL_012d; } case 1: { goto IL_0143; } case 2: { goto IL_0117; } case 3: { goto IL_0143; } case 4: { goto IL_0143; } case 5: { goto IL_0143; } case 6: { goto IL_0159; } case 7: { goto IL_0159; } } } { goto IL_016f; } IL_0117: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_49 = { reinterpret_cast<intptr_t> (ShortEnumEqualityComparer_1_tCB4B7DE9F58431002227076F18CFFC289C6CBD64_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_50 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_49, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_51 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_52 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_50, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_51, /*hidden argument*/NULL); return ((EqualityComparer_1_t4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8 *)Castclass((RuntimeObject*)L_52, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_012d: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_53 = { reinterpret_cast<intptr_t> (SByteEnumEqualityComparer_1_t0E5A82C922F801F365CCC4BE3062A765423A5852_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_54 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_53, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_55 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_56 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_54, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_55, /*hidden argument*/NULL); return ((EqualityComparer_1_t4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8 *)Castclass((RuntimeObject*)L_56, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_0143: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_57 = { reinterpret_cast<intptr_t> (EnumEqualityComparer_1_tC44C7E08405BCDA86FDDFB9714C4301D39723C3A_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_58 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_57, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_59 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_60 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_58, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_59, /*hidden argument*/NULL); return ((EqualityComparer_1_t4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8 *)Castclass((RuntimeObject*)L_60, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_0159: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_61 = { reinterpret_cast<intptr_t> (LongEnumEqualityComparer_1_t6B940FD5688E20A1CF36AD68CCF3A39071FFB0DB_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_62 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_61, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_63 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_64 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_62, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_63, /*hidden argument*/NULL); return ((EqualityComparer_1_t4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8 *)Castclass((RuntimeObject*)L_64, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_016f: { ObjectEqualityComparer_1_t34882718214839033B864C5F303FE6AFDA729360 * L_65 = (ObjectEqualityComparer_1_t34882718214839033B864C5F303FE6AFDA729360 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5)); (( void (*) (ObjectEqualityComparer_1_t34882718214839033B864C5F303FE6AFDA729360 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(L_65, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)); return L_65; } } // System.Int32 System.Collections.Generic.EqualityComparer`1<System.Boolean>::IndexOf(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t EqualityComparer_1_IndexOf_mD7CAD5183135F596879E1F2BE66696D641D87A39_gshared (EqualityComparer_1_t4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8 * __this, BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* ___array0, bool ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = ___startIndex2; int32_t L_1 = ___count3; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1)); int32_t L_2 = ___startIndex2; V_1 = (int32_t)L_2; goto IL_001f; } IL_0009: { BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_3 = ___array0; int32_t L_4 = V_1; NullCheck(L_3); int32_t L_5 = L_4; bool L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); bool L_7 = ___value1; NullCheck((EqualityComparer_1_t4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8 *)__this); bool L_8 = VirtFuncInvoker2< bool, bool, bool >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Boolean>::Equals(T,T) */, (EqualityComparer_1_t4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8 *)__this, (bool)L_6, (bool)L_7); if (!L_8) { goto IL_001b; } } { int32_t L_9 = V_1; return L_9; } IL_001b: { int32_t L_10 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1)); } IL_001f: { int32_t L_11 = V_1; int32_t L_12 = V_0; if ((((int32_t)L_11) < ((int32_t)L_12))) { goto IL_0009; } } { return (-1); } } // System.Int32 System.Collections.Generic.EqualityComparer`1<System.Boolean>::LastIndexOf(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t EqualityComparer_1_LastIndexOf_m9F71249CDD7FCE34B4946C7D57D5A43F72DF1393_gshared (EqualityComparer_1_t4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8 * __this, BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* ___array0, bool ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = ___startIndex2; int32_t L_1 = ___count3; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1)); int32_t L_2 = ___startIndex2; V_1 = (int32_t)L_2; goto IL_0021; } IL_000b: { BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_3 = ___array0; int32_t L_4 = V_1; NullCheck(L_3); int32_t L_5 = L_4; bool L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); bool L_7 = ___value1; NullCheck((EqualityComparer_1_t4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8 *)__this); bool L_8 = VirtFuncInvoker2< bool, bool, bool >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Boolean>::Equals(T,T) */, (EqualityComparer_1_t4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8 *)__this, (bool)L_6, (bool)L_7); if (!L_8) { goto IL_001d; } } { int32_t L_9 = V_1; return L_9; } IL_001d: { int32_t L_10 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_10, (int32_t)1)); } IL_0021: { int32_t L_11 = V_1; int32_t L_12 = V_0; if ((((int32_t)L_11) >= ((int32_t)L_12))) { goto IL_000b; } } { return (-1); } } // System.Int32 System.Collections.Generic.EqualityComparer`1<System.Boolean>::System.Collections.IEqualityComparer.GetHashCode(System.Object) extern "C" IL2CPP_METHOD_ATTR int32_t EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_mE9FFCB1C23C72D1EA02B1D42EDD6C85C30ADB24B_gshared (EqualityComparer_1_t4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___obj0; if (L_0) { goto IL_0005; } } { return 0; } IL_0005: { RuntimeObject * L_1 = ___obj0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))) { goto IL_001a; } } { RuntimeObject * L_2 = ___obj0; NullCheck((EqualityComparer_1_t4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8 *)__this); int32_t L_3 = VirtFuncInvoker1< int32_t, bool >::Invoke(9 /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Boolean>::GetHashCode(T) */, (EqualityComparer_1_t4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8 *)__this, (bool)((*(bool*)((bool*)UnBox(L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))))); return L_3; } IL_001a: { ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84((int32_t)2, /*hidden argument*/NULL); return 0; } } // System.Boolean System.Collections.Generic.EqualityComparer`1<System.Boolean>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) extern "C" IL2CPP_METHOD_ATTR bool EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m174882FD7B019A7F19916EEB05292A54143AB68F_gshared (EqualityComparer_1_t4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8 * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___x0; RuntimeObject * L_1 = ___y1; if ((!(((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(RuntimeObject *)L_1)))) { goto IL_0006; } } { return (bool)1; } IL_0006: { RuntimeObject * L_2 = ___x0; if (!L_2) { goto IL_000c; } } { RuntimeObject * L_3 = ___y1; if (L_3) { goto IL_000e; } } IL_000c: { return (bool)0; } IL_000e: { RuntimeObject * L_4 = ___x0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))) { goto IL_0031; } } { RuntimeObject * L_5 = ___y1; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))) { goto IL_0031; } } { RuntimeObject * L_6 = ___x0; RuntimeObject * L_7 = ___y1; NullCheck((EqualityComparer_1_t4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8 *)__this); bool L_8 = VirtFuncInvoker2< bool, bool, bool >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Boolean>::Equals(T,T) */, (EqualityComparer_1_t4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8 *)__this, (bool)((*(bool*)((bool*)UnBox(L_6, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8))))), (bool)((*(bool*)((bool*)UnBox(L_7, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))))); return L_8; } IL_0031: { ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84((int32_t)2, /*hidden argument*/NULL); return (bool)0; } } // System.Void System.Collections.Generic.EqualityComparer`1<System.Boolean>::.ctor() extern "C" IL2CPP_METHOD_ATTR void EqualityComparer_1__ctor_mA98F75EF2716C20A56A07E90DF778C32A7002B49_gshared (EqualityComparer_1_t4BC4DA1CF8E14DAF2B2BBD7734D235D4977B91D8 * __this, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Byte>::get_Default() extern "C" IL2CPP_METHOD_ATTR EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 * EqualityComparer_1_get_Default_m7217474B44AB7E5ED1343C892F52F9C06C8E617E_gshared (const RuntimeMethod* method) { EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 * V_0 = NULL; { EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 * L_0 = ((EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->get_defaultComparer_0(); il2cpp_codegen_memory_barrier(); V_0 = (EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 *)L_0; EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 * L_1 = V_0; if (L_1) { goto IL_0019; } } { EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 * L_2 = (( EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); V_0 = (EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 *)L_2; EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 * L_3 = V_0; il2cpp_codegen_memory_barrier(); ((EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_defaultComparer_0(L_3); } IL_0019: { EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 * L_4 = V_0; return L_4; } } // System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Byte>::CreateComparer() extern "C" IL2CPP_METHOD_ATTR EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 * EqualityComparer_1_CreateComparer_m774BCC1A9EF7DCA946B909B20E952A5222AA0A2A_gshared (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (EqualityComparer_1_CreateComparer_m774BCC1A9EF7DCA946B909B20E952A5222AA0A2A_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_0 = NULL; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_1 = NULL; int32_t V_2 = 0; { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 2)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL); V_0 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_1, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_2 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_3 = { reinterpret_cast<intptr_t> (Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_0_0_0_var) }; Type_t * L_4 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_3, /*hidden argument*/NULL); bool L_5 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_2, (Type_t *)L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_002d; } } { ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B * L_6 = (ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B *)il2cpp_codegen_object_new(ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B_il2cpp_TypeInfo_var); ByteEqualityComparer__ctor_m2B86B16398C9ADBA996127A209179E9654EF6A68(L_6, /*hidden argument*/NULL); return ((EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 *)Castclass((RuntimeObject*)L_6, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_002d: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_7 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_8 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_9 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_8, /*hidden argument*/NULL); bool L_10 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_7, (Type_t *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_004a; } } { InternalStringComparer_tCD150130A3DB4C80186B5D8145B910B33496D4CD * L_11 = (InternalStringComparer_tCD150130A3DB4C80186B5D8145B910B33496D4CD *)il2cpp_codegen_object_new(InternalStringComparer_tCD150130A3DB4C80186B5D8145B910B33496D4CD_il2cpp_TypeInfo_var); InternalStringComparer__ctor_m471FF151AF831B76635ED96C53CF08114FD42C83(L_11, /*hidden argument*/NULL); return ((EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 *)Castclass((RuntimeObject*)L_11, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_004a: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_12 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 4)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_13 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_12, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_14 = V_0; NullCheck((Type_t *)L_13); bool L_15 = VirtFuncInvoker1< bool, Type_t * >::Invoke(104 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_13, (Type_t *)L_14); if (!L_15) { goto IL_0072; } } { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_16 = { reinterpret_cast<intptr_t> (GenericEqualityComparer_1_t86530EF2BF9E43CCEE775B5862B48F735555A90B_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_17 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_16, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_18 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_19 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_17, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_18, /*hidden argument*/NULL); return ((EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 *)Castclass((RuntimeObject*)L_19, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_0072: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_20 = V_0; NullCheck((Type_t *)L_20); bool L_21 = VirtFuncInvoker0< bool >::Invoke(70 /* System.Boolean System.Type::get_IsGenericType() */, (Type_t *)L_20); if (!L_21) { goto IL_00d6; } } { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_22 = V_0; NullCheck((Type_t *)L_22); Type_t * L_23 = VirtFuncInvoker0< Type_t * >::Invoke(95 /* System.Type System.Type::GetGenericTypeDefinition() */, (Type_t *)L_22); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_24 = { reinterpret_cast<intptr_t> (Nullable_1_t220FFA40D2CEE2CB28F8C04DB1216024A0BC75C3_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_25 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_24, /*hidden argument*/NULL); bool L_26 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_23, (Type_t *)L_25, /*hidden argument*/NULL); if (!L_26) { goto IL_00d6; } } { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_27 = V_0; NullCheck((Type_t *)L_27); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_28 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(94 /* System.Type[] System.Type::GetGenericArguments() */, (Type_t *)L_27); NullCheck(L_28); int32_t L_29 = 0; Type_t * L_30 = (L_28)->GetAt(static_cast<il2cpp_array_size_t>(L_29)); V_1 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_30, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_31 = { reinterpret_cast<intptr_t> (IEquatable_1_t7FBC51A9FCBF69422C0DEBF035FFDC9417EF3DA1_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_32 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_31, /*hidden argument*/NULL); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_33 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_34 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_33; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_35 = V_1; NullCheck(L_34); ArrayElementTypeCheck (L_34, L_35); (L_34)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_35); NullCheck((Type_t *)L_32); Type_t * L_36 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(90 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_32, (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_34); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_37 = V_1; NullCheck((Type_t *)L_36); bool L_38 = VirtFuncInvoker1< bool, Type_t * >::Invoke(104 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_36, (Type_t *)L_37); if (!L_38) { goto IL_00d6; } } { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_39 = { reinterpret_cast<intptr_t> (NullableEqualityComparer_1_tD235D1E336771C9615EB5024AC8C35CFF8ADD27F_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_40 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_39, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_41 = V_1; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_42 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_40, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_41, /*hidden argument*/NULL); return ((EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 *)Castclass((RuntimeObject*)L_42, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_00d6: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_43 = V_0; NullCheck((Type_t *)L_43); bool L_44 = VirtFuncInvoker0< bool >::Invoke(66 /* System.Boolean System.Type::get_IsEnum() */, (Type_t *)L_43); if (!L_44) { goto IL_016f; } } { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_45 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); Type_t * L_46 = Enum_GetUnderlyingType_m0715B4E60E6909F03FF7302B6E20B1AB88DA84B1((Type_t *)L_45, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); int32_t L_47 = Type_GetTypeCode_m3105BBCE671D89EFE212F9BA06AAB90944A6116F((Type_t *)L_46, /*hidden argument*/NULL); V_2 = (int32_t)L_47; int32_t L_48 = V_2; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_48, (int32_t)5))) { case 0: { goto IL_012d; } case 1: { goto IL_0143; } case 2: { goto IL_0117; } case 3: { goto IL_0143; } case 4: { goto IL_0143; } case 5: { goto IL_0143; } case 6: { goto IL_0159; } case 7: { goto IL_0159; } } } { goto IL_016f; } IL_0117: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_49 = { reinterpret_cast<intptr_t> (ShortEnumEqualityComparer_1_tCB4B7DE9F58431002227076F18CFFC289C6CBD64_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_50 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_49, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_51 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_52 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_50, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_51, /*hidden argument*/NULL); return ((EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 *)Castclass((RuntimeObject*)L_52, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_012d: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_53 = { reinterpret_cast<intptr_t> (SByteEnumEqualityComparer_1_t0E5A82C922F801F365CCC4BE3062A765423A5852_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_54 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_53, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_55 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_56 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_54, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_55, /*hidden argument*/NULL); return ((EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 *)Castclass((RuntimeObject*)L_56, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_0143: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_57 = { reinterpret_cast<intptr_t> (EnumEqualityComparer_1_tC44C7E08405BCDA86FDDFB9714C4301D39723C3A_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_58 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_57, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_59 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_60 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_58, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_59, /*hidden argument*/NULL); return ((EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 *)Castclass((RuntimeObject*)L_60, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_0159: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_61 = { reinterpret_cast<intptr_t> (LongEnumEqualityComparer_1_t6B940FD5688E20A1CF36AD68CCF3A39071FFB0DB_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_62 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_61, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_63 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_64 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_62, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_63, /*hidden argument*/NULL); return ((EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 *)Castclass((RuntimeObject*)L_64, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_016f: { ObjectEqualityComparer_1_t991D4C5FF670514C079B09BF28A3A92B7C3B9A80 * L_65 = (ObjectEqualityComparer_1_t991D4C5FF670514C079B09BF28A3A92B7C3B9A80 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5)); (( void (*) (ObjectEqualityComparer_1_t991D4C5FF670514C079B09BF28A3A92B7C3B9A80 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(L_65, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)); return L_65; } } // System.Int32 System.Collections.Generic.EqualityComparer`1<System.Byte>::IndexOf(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t EqualityComparer_1_IndexOf_m099E27B18AC48389B87D3190E113E29756C92A8D_gshared (EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___array0, uint8_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = ___startIndex2; int32_t L_1 = ___count3; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1)); int32_t L_2 = ___startIndex2; V_1 = (int32_t)L_2; goto IL_001f; } IL_0009: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = ___array0; int32_t L_4 = V_1; NullCheck(L_3); int32_t L_5 = L_4; uint8_t L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); uint8_t L_7 = ___value1; NullCheck((EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 *)__this); bool L_8 = VirtFuncInvoker2< bool, uint8_t, uint8_t >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Byte>::Equals(T,T) */, (EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 *)__this, (uint8_t)L_6, (uint8_t)L_7); if (!L_8) { goto IL_001b; } } { int32_t L_9 = V_1; return L_9; } IL_001b: { int32_t L_10 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1)); } IL_001f: { int32_t L_11 = V_1; int32_t L_12 = V_0; if ((((int32_t)L_11) < ((int32_t)L_12))) { goto IL_0009; } } { return (-1); } } // System.Int32 System.Collections.Generic.EqualityComparer`1<System.Byte>::LastIndexOf(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t EqualityComparer_1_LastIndexOf_m75BB443E38DFDA87801C7EEAF6E97B38623D281C_gshared (EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___array0, uint8_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = ___startIndex2; int32_t L_1 = ___count3; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1)); int32_t L_2 = ___startIndex2; V_1 = (int32_t)L_2; goto IL_0021; } IL_000b: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = ___array0; int32_t L_4 = V_1; NullCheck(L_3); int32_t L_5 = L_4; uint8_t L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); uint8_t L_7 = ___value1; NullCheck((EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 *)__this); bool L_8 = VirtFuncInvoker2< bool, uint8_t, uint8_t >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Byte>::Equals(T,T) */, (EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 *)__this, (uint8_t)L_6, (uint8_t)L_7); if (!L_8) { goto IL_001d; } } { int32_t L_9 = V_1; return L_9; } IL_001d: { int32_t L_10 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_10, (int32_t)1)); } IL_0021: { int32_t L_11 = V_1; int32_t L_12 = V_0; if ((((int32_t)L_11) >= ((int32_t)L_12))) { goto IL_000b; } } { return (-1); } } // System.Int32 System.Collections.Generic.EqualityComparer`1<System.Byte>::System.Collections.IEqualityComparer.GetHashCode(System.Object) extern "C" IL2CPP_METHOD_ATTR int32_t EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_mB0050133A7B3007EF66E2541CBEF71151FAA48C4_gshared (EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___obj0; if (L_0) { goto IL_0005; } } { return 0; } IL_0005: { RuntimeObject * L_1 = ___obj0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))) { goto IL_001a; } } { RuntimeObject * L_2 = ___obj0; NullCheck((EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 *)__this); int32_t L_3 = VirtFuncInvoker1< int32_t, uint8_t >::Invoke(9 /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Byte>::GetHashCode(T) */, (EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 *)__this, (uint8_t)((*(uint8_t*)((uint8_t*)UnBox(L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))))); return L_3; } IL_001a: { ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84((int32_t)2, /*hidden argument*/NULL); return 0; } } // System.Boolean System.Collections.Generic.EqualityComparer`1<System.Byte>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) extern "C" IL2CPP_METHOD_ATTR bool EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m9B857CF1A9B108ADA2C6977AC39760F778EBCAAD_gshared (EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___x0; RuntimeObject * L_1 = ___y1; if ((!(((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(RuntimeObject *)L_1)))) { goto IL_0006; } } { return (bool)1; } IL_0006: { RuntimeObject * L_2 = ___x0; if (!L_2) { goto IL_000c; } } { RuntimeObject * L_3 = ___y1; if (L_3) { goto IL_000e; } } IL_000c: { return (bool)0; } IL_000e: { RuntimeObject * L_4 = ___x0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))) { goto IL_0031; } } { RuntimeObject * L_5 = ___y1; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))) { goto IL_0031; } } { RuntimeObject * L_6 = ___x0; RuntimeObject * L_7 = ___y1; NullCheck((EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 *)__this); bool L_8 = VirtFuncInvoker2< bool, uint8_t, uint8_t >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Byte>::Equals(T,T) */, (EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 *)__this, (uint8_t)((*(uint8_t*)((uint8_t*)UnBox(L_6, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8))))), (uint8_t)((*(uint8_t*)((uint8_t*)UnBox(L_7, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))))); return L_8; } IL_0031: { ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84((int32_t)2, /*hidden argument*/NULL); return (bool)0; } } // System.Void System.Collections.Generic.EqualityComparer`1<System.Byte>::.ctor() extern "C" IL2CPP_METHOD_ATTR void EqualityComparer_1__ctor_m280B2C62F66AC02F84BA740B306DADDA3AF2DD3F_gshared (EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 * __this, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Char>::get_Default() extern "C" IL2CPP_METHOD_ATTR EqualityComparer_1_tBE2E709137078E491F7B38EA3C218A7A347DD68F * EqualityComparer_1_get_Default_mEB412242B4DB270BCDF67EEB4D145C24793913CE_gshared (const RuntimeMethod* method) { EqualityComparer_1_tBE2E709137078E491F7B38EA3C218A7A347DD68F * V_0 = NULL; { EqualityComparer_1_tBE2E709137078E491F7B38EA3C218A7A347DD68F * L_0 = ((EqualityComparer_1_tBE2E709137078E491F7B38EA3C218A7A347DD68F_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->get_defaultComparer_0(); il2cpp_codegen_memory_barrier(); V_0 = (EqualityComparer_1_tBE2E709137078E491F7B38EA3C218A7A347DD68F *)L_0; EqualityComparer_1_tBE2E709137078E491F7B38EA3C218A7A347DD68F * L_1 = V_0; if (L_1) { goto IL_0019; } } { EqualityComparer_1_tBE2E709137078E491F7B38EA3C218A7A347DD68F * L_2 = (( EqualityComparer_1_tBE2E709137078E491F7B38EA3C218A7A347DD68F * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); V_0 = (EqualityComparer_1_tBE2E709137078E491F7B38EA3C218A7A347DD68F *)L_2; EqualityComparer_1_tBE2E709137078E491F7B38EA3C218A7A347DD68F * L_3 = V_0; il2cpp_codegen_memory_barrier(); ((EqualityComparer_1_tBE2E709137078E491F7B38EA3C218A7A347DD68F_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_defaultComparer_0(L_3); } IL_0019: { EqualityComparer_1_tBE2E709137078E491F7B38EA3C218A7A347DD68F * L_4 = V_0; return L_4; } } // System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Char>::CreateComparer() extern "C" IL2CPP_METHOD_ATTR EqualityComparer_1_tBE2E709137078E491F7B38EA3C218A7A347DD68F * EqualityComparer_1_CreateComparer_m8086CE12C7A491AC73F307FDBA892E5EB5869816_gshared (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (EqualityComparer_1_CreateComparer_m8086CE12C7A491AC73F307FDBA892E5EB5869816_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_0 = NULL; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_1 = NULL; int32_t V_2 = 0; { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 2)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL); V_0 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_1, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_2 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_3 = { reinterpret_cast<intptr_t> (Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_0_0_0_var) }; Type_t * L_4 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_3, /*hidden argument*/NULL); bool L_5 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_2, (Type_t *)L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_002d; } } { ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B * L_6 = (ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B *)il2cpp_codegen_object_new(ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B_il2cpp_TypeInfo_var); ByteEqualityComparer__ctor_m2B86B16398C9ADBA996127A209179E9654EF6A68(L_6, /*hidden argument*/NULL); return ((EqualityComparer_1_tBE2E709137078E491F7B38EA3C218A7A347DD68F *)Castclass((RuntimeObject*)L_6, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_002d: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_7 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_8 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_9 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_8, /*hidden argument*/NULL); bool L_10 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_7, (Type_t *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_004a; } } { InternalStringComparer_tCD150130A3DB4C80186B5D8145B910B33496D4CD * L_11 = (InternalStringComparer_tCD150130A3DB4C80186B5D8145B910B33496D4CD *)il2cpp_codegen_object_new(InternalStringComparer_tCD150130A3DB4C80186B5D8145B910B33496D4CD_il2cpp_TypeInfo_var); InternalStringComparer__ctor_m471FF151AF831B76635ED96C53CF08114FD42C83(L_11, /*hidden argument*/NULL); return ((EqualityComparer_1_tBE2E709137078E491F7B38EA3C218A7A347DD68F *)Castclass((RuntimeObject*)L_11, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_004a: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_12 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 4)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_13 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_12, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_14 = V_0; NullCheck((Type_t *)L_13); bool L_15 = VirtFuncInvoker1< bool, Type_t * >::Invoke(104 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_13, (Type_t *)L_14); if (!L_15) { goto IL_0072; } } { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_16 = { reinterpret_cast<intptr_t> (GenericEqualityComparer_1_t86530EF2BF9E43CCEE775B5862B48F735555A90B_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_17 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_16, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_18 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_19 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_17, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_18, /*hidden argument*/NULL); return ((EqualityComparer_1_tBE2E709137078E491F7B38EA3C218A7A347DD68F *)Castclass((RuntimeObject*)L_19, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_0072: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_20 = V_0; NullCheck((Type_t *)L_20); bool L_21 = VirtFuncInvoker0< bool >::Invoke(70 /* System.Boolean System.Type::get_IsGenericType() */, (Type_t *)L_20); if (!L_21) { goto IL_00d6; } } { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_22 = V_0; NullCheck((Type_t *)L_22); Type_t * L_23 = VirtFuncInvoker0< Type_t * >::Invoke(95 /* System.Type System.Type::GetGenericTypeDefinition() */, (Type_t *)L_22); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_24 = { reinterpret_cast<intptr_t> (Nullable_1_t220FFA40D2CEE2CB28F8C04DB1216024A0BC75C3_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_25 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_24, /*hidden argument*/NULL); bool L_26 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_23, (Type_t *)L_25, /*hidden argument*/NULL); if (!L_26) { goto IL_00d6; } } { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_27 = V_0; NullCheck((Type_t *)L_27); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_28 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(94 /* System.Type[] System.Type::GetGenericArguments() */, (Type_t *)L_27); NullCheck(L_28); int32_t L_29 = 0; Type_t * L_30 = (L_28)->GetAt(static_cast<il2cpp_array_size_t>(L_29)); V_1 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_30, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_31 = { reinterpret_cast<intptr_t> (IEquatable_1_t7FBC51A9FCBF69422C0DEBF035FFDC9417EF3DA1_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_32 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_31, /*hidden argument*/NULL); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_33 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_34 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_33; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_35 = V_1; NullCheck(L_34); ArrayElementTypeCheck (L_34, L_35); (L_34)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_35); NullCheck((Type_t *)L_32); Type_t * L_36 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(90 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_32, (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_34); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_37 = V_1; NullCheck((Type_t *)L_36); bool L_38 = VirtFuncInvoker1< bool, Type_t * >::Invoke(104 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_36, (Type_t *)L_37); if (!L_38) { goto IL_00d6; } } { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_39 = { reinterpret_cast<intptr_t> (NullableEqualityComparer_1_tD235D1E336771C9615EB5024AC8C35CFF8ADD27F_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_40 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_39, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_41 = V_1; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_42 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_40, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_41, /*hidden argument*/NULL); return ((EqualityComparer_1_tBE2E709137078E491F7B38EA3C218A7A347DD68F *)Castclass((RuntimeObject*)L_42, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_00d6: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_43 = V_0; NullCheck((Type_t *)L_43); bool L_44 = VirtFuncInvoker0< bool >::Invoke(66 /* System.Boolean System.Type::get_IsEnum() */, (Type_t *)L_43); if (!L_44) { goto IL_016f; } } { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_45 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); Type_t * L_46 = Enum_GetUnderlyingType_m0715B4E60E6909F03FF7302B6E20B1AB88DA84B1((Type_t *)L_45, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); int32_t L_47 = Type_GetTypeCode_m3105BBCE671D89EFE212F9BA06AAB90944A6116F((Type_t *)L_46, /*hidden argument*/NULL); V_2 = (int32_t)L_47; int32_t L_48 = V_2; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_48, (int32_t)5))) { case 0: { goto IL_012d; } case 1: { goto IL_0143; } case 2: { goto IL_0117; } case 3: { goto IL_0143; } case 4: { goto IL_0143; } case 5: { goto IL_0143; } case 6: { goto IL_0159; } case 7: { goto IL_0159; } } } { goto IL_016f; } IL_0117: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_49 = { reinterpret_cast<intptr_t> (ShortEnumEqualityComparer_1_tCB4B7DE9F58431002227076F18CFFC289C6CBD64_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_50 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_49, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_51 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_52 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_50, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_51, /*hidden argument*/NULL); return ((EqualityComparer_1_tBE2E709137078E491F7B38EA3C218A7A347DD68F *)Castclass((RuntimeObject*)L_52, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_012d: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_53 = { reinterpret_cast<intptr_t> (SByteEnumEqualityComparer_1_t0E5A82C922F801F365CCC4BE3062A765423A5852_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_54 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_53, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_55 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_56 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_54, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_55, /*hidden argument*/NULL); return ((EqualityComparer_1_tBE2E709137078E491F7B38EA3C218A7A347DD68F *)Castclass((RuntimeObject*)L_56, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_0143: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_57 = { reinterpret_cast<intptr_t> (EnumEqualityComparer_1_tC44C7E08405BCDA86FDDFB9714C4301D39723C3A_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_58 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_57, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_59 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_60 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_58, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_59, /*hidden argument*/NULL); return ((EqualityComparer_1_tBE2E709137078E491F7B38EA3C218A7A347DD68F *)Castclass((RuntimeObject*)L_60, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_0159: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_61 = { reinterpret_cast<intptr_t> (LongEnumEqualityComparer_1_t6B940FD5688E20A1CF36AD68CCF3A39071FFB0DB_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_62 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_61, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_63 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_64 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_62, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_63, /*hidden argument*/NULL); return ((EqualityComparer_1_tBE2E709137078E491F7B38EA3C218A7A347DD68F *)Castclass((RuntimeObject*)L_64, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_016f: { ObjectEqualityComparer_1_t60D5252FC0842F7191D4FB1F339BBC600FCDBBE3 * L_65 = (ObjectEqualityComparer_1_t60D5252FC0842F7191D4FB1F339BBC600FCDBBE3 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5)); (( void (*) (ObjectEqualityComparer_1_t60D5252FC0842F7191D4FB1F339BBC600FCDBBE3 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(L_65, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)); return L_65; } } // System.Int32 System.Collections.Generic.EqualityComparer`1<System.Char>::IndexOf(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t EqualityComparer_1_IndexOf_m8358D21B6458D770FCE206D52F9367A59AD0FB57_gshared (EqualityComparer_1_tBE2E709137078E491F7B38EA3C218A7A347DD68F * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___array0, Il2CppChar ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = ___startIndex2; int32_t L_1 = ___count3; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1)); int32_t L_2 = ___startIndex2; V_1 = (int32_t)L_2; goto IL_001f; } IL_0009: { CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_3 = ___array0; int32_t L_4 = V_1; NullCheck(L_3); int32_t L_5 = L_4; Il2CppChar L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); Il2CppChar L_7 = ___value1; NullCheck((EqualityComparer_1_tBE2E709137078E491F7B38EA3C218A7A347DD68F *)__this); bool L_8 = VirtFuncInvoker2< bool, Il2CppChar, Il2CppChar >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Char>::Equals(T,T) */, (EqualityComparer_1_tBE2E709137078E491F7B38EA3C218A7A347DD68F *)__this, (Il2CppChar)L_6, (Il2CppChar)L_7); if (!L_8) { goto IL_001b; } } { int32_t L_9 = V_1; return L_9; } IL_001b: { int32_t L_10 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1)); } IL_001f: { int32_t L_11 = V_1; int32_t L_12 = V_0; if ((((int32_t)L_11) < ((int32_t)L_12))) { goto IL_0009; } } { return (-1); } } // System.Int32 System.Collections.Generic.EqualityComparer`1<System.Char>::LastIndexOf(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t EqualityComparer_1_LastIndexOf_mC5C5E965928B1D2C72DFE10798EB8CF8CB688F60_gshared (EqualityComparer_1_tBE2E709137078E491F7B38EA3C218A7A347DD68F * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___array0, Il2CppChar ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = ___startIndex2; int32_t L_1 = ___count3; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1)); int32_t L_2 = ___startIndex2; V_1 = (int32_t)L_2; goto IL_0021; } IL_000b: { CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_3 = ___array0; int32_t L_4 = V_1; NullCheck(L_3); int32_t L_5 = L_4; Il2CppChar L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); Il2CppChar L_7 = ___value1; NullCheck((EqualityComparer_1_tBE2E709137078E491F7B38EA3C218A7A347DD68F *)__this); bool L_8 = VirtFuncInvoker2< bool, Il2CppChar, Il2CppChar >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Char>::Equals(T,T) */, (EqualityComparer_1_tBE2E709137078E491F7B38EA3C218A7A347DD68F *)__this, (Il2CppChar)L_6, (Il2CppChar)L_7); if (!L_8) { goto IL_001d; } } { int32_t L_9 = V_1; return L_9; } IL_001d: { int32_t L_10 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_10, (int32_t)1)); } IL_0021: { int32_t L_11 = V_1; int32_t L_12 = V_0; if ((((int32_t)L_11) >= ((int32_t)L_12))) { goto IL_000b; } } { return (-1); } } // System.Int32 System.Collections.Generic.EqualityComparer`1<System.Char>::System.Collections.IEqualityComparer.GetHashCode(System.Object) extern "C" IL2CPP_METHOD_ATTR int32_t EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_mB754B817A0AEDA3C7C2CED1BA25606D04723F522_gshared (EqualityComparer_1_tBE2E709137078E491F7B38EA3C218A7A347DD68F * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___obj0; if (L_0) { goto IL_0005; } } { return 0; } IL_0005: { RuntimeObject * L_1 = ___obj0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))) { goto IL_001a; } } { RuntimeObject * L_2 = ___obj0; NullCheck((EqualityComparer_1_tBE2E709137078E491F7B38EA3C218A7A347DD68F *)__this); int32_t L_3 = VirtFuncInvoker1< int32_t, Il2CppChar >::Invoke(9 /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Char>::GetHashCode(T) */, (EqualityComparer_1_tBE2E709137078E491F7B38EA3C218A7A347DD68F *)__this, (Il2CppChar)((*(Il2CppChar*)((Il2CppChar*)UnBox(L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))))); return L_3; } IL_001a: { ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84((int32_t)2, /*hidden argument*/NULL); return 0; } } // System.Boolean System.Collections.Generic.EqualityComparer`1<System.Char>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) extern "C" IL2CPP_METHOD_ATTR bool EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m67F513AC145A04ED1E8B8EE9034F1ED8D644C784_gshared (EqualityComparer_1_tBE2E709137078E491F7B38EA3C218A7A347DD68F * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___x0; RuntimeObject * L_1 = ___y1; if ((!(((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(RuntimeObject *)L_1)))) { goto IL_0006; } } { return (bool)1; } IL_0006: { RuntimeObject * L_2 = ___x0; if (!L_2) { goto IL_000c; } } { RuntimeObject * L_3 = ___y1; if (L_3) { goto IL_000e; } } IL_000c: { return (bool)0; } IL_000e: { RuntimeObject * L_4 = ___x0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))) { goto IL_0031; } } { RuntimeObject * L_5 = ___y1; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))) { goto IL_0031; } } { RuntimeObject * L_6 = ___x0; RuntimeObject * L_7 = ___y1; NullCheck((EqualityComparer_1_tBE2E709137078E491F7B38EA3C218A7A347DD68F *)__this); bool L_8 = VirtFuncInvoker2< bool, Il2CppChar, Il2CppChar >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Char>::Equals(T,T) */, (EqualityComparer_1_tBE2E709137078E491F7B38EA3C218A7A347DD68F *)__this, (Il2CppChar)((*(Il2CppChar*)((Il2CppChar*)UnBox(L_6, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8))))), (Il2CppChar)((*(Il2CppChar*)((Il2CppChar*)UnBox(L_7, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))))); return L_8; } IL_0031: { ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84((int32_t)2, /*hidden argument*/NULL); return (bool)0; } } // System.Void System.Collections.Generic.EqualityComparer`1<System.Char>::.ctor() extern "C" IL2CPP_METHOD_ATTR void EqualityComparer_1__ctor_mFEDF46F5481488E3991DAC8C802D43ABBF01A4E0_gshared (EqualityComparer_1_tBE2E709137078E491F7B38EA3C218A7A347DD68F * __this, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::get_Default() extern "C" IL2CPP_METHOD_ATTR EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77 * EqualityComparer_1_get_Default_m2914AC14523A85C467966509E1B162DB79007DF4_gshared (const RuntimeMethod* method) { EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77 * V_0 = NULL; { EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77 * L_0 = ((EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->get_defaultComparer_0(); il2cpp_codegen_memory_barrier(); V_0 = (EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77 *)L_0; EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77 * L_1 = V_0; if (L_1) { goto IL_0019; } } { EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77 * L_2 = (( EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); V_0 = (EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77 *)L_2; EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77 * L_3 = V_0; il2cpp_codegen_memory_barrier(); ((EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_defaultComparer_0(L_3); } IL_0019: { EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77 * L_4 = V_0; return L_4; } } // System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::CreateComparer() extern "C" IL2CPP_METHOD_ATTR EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77 * EqualityComparer_1_CreateComparer_mED4717F361B0EFF555D59F125451999839AB5FC7_gshared (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (EqualityComparer_1_CreateComparer_mED4717F361B0EFF555D59F125451999839AB5FC7_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_0 = NULL; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_1 = NULL; int32_t V_2 = 0; { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 2)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL); V_0 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_1, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_2 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_3 = { reinterpret_cast<intptr_t> (Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_0_0_0_var) }; Type_t * L_4 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_3, /*hidden argument*/NULL); bool L_5 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_2, (Type_t *)L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_002d; } } { ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B * L_6 = (ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B *)il2cpp_codegen_object_new(ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B_il2cpp_TypeInfo_var); ByteEqualityComparer__ctor_m2B86B16398C9ADBA996127A209179E9654EF6A68(L_6, /*hidden argument*/NULL); return ((EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77 *)Castclass((RuntimeObject*)L_6, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_002d: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_7 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_8 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_9 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_8, /*hidden argument*/NULL); bool L_10 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_7, (Type_t *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_004a; } } { InternalStringComparer_tCD150130A3DB4C80186B5D8145B910B33496D4CD * L_11 = (InternalStringComparer_tCD150130A3DB4C80186B5D8145B910B33496D4CD *)il2cpp_codegen_object_new(InternalStringComparer_tCD150130A3DB4C80186B5D8145B910B33496D4CD_il2cpp_TypeInfo_var); InternalStringComparer__ctor_m471FF151AF831B76635ED96C53CF08114FD42C83(L_11, /*hidden argument*/NULL); return ((EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77 *)Castclass((RuntimeObject*)L_11, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_004a: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_12 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 4)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_13 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_12, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_14 = V_0; NullCheck((Type_t *)L_13); bool L_15 = VirtFuncInvoker1< bool, Type_t * >::Invoke(104 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_13, (Type_t *)L_14); if (!L_15) { goto IL_0072; } } { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_16 = { reinterpret_cast<intptr_t> (GenericEqualityComparer_1_t86530EF2BF9E43CCEE775B5862B48F735555A90B_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_17 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_16, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_18 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_19 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_17, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_18, /*hidden argument*/NULL); return ((EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77 *)Castclass((RuntimeObject*)L_19, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_0072: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_20 = V_0; NullCheck((Type_t *)L_20); bool L_21 = VirtFuncInvoker0< bool >::Invoke(70 /* System.Boolean System.Type::get_IsGenericType() */, (Type_t *)L_20); if (!L_21) { goto IL_00d6; } } { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_22 = V_0; NullCheck((Type_t *)L_22); Type_t * L_23 = VirtFuncInvoker0< Type_t * >::Invoke(95 /* System.Type System.Type::GetGenericTypeDefinition() */, (Type_t *)L_22); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_24 = { reinterpret_cast<intptr_t> (Nullable_1_t220FFA40D2CEE2CB28F8C04DB1216024A0BC75C3_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_25 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_24, /*hidden argument*/NULL); bool L_26 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_23, (Type_t *)L_25, /*hidden argument*/NULL); if (!L_26) { goto IL_00d6; } } { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_27 = V_0; NullCheck((Type_t *)L_27); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_28 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(94 /* System.Type[] System.Type::GetGenericArguments() */, (Type_t *)L_27); NullCheck(L_28); int32_t L_29 = 0; Type_t * L_30 = (L_28)->GetAt(static_cast<il2cpp_array_size_t>(L_29)); V_1 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_30, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_31 = { reinterpret_cast<intptr_t> (IEquatable_1_t7FBC51A9FCBF69422C0DEBF035FFDC9417EF3DA1_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_32 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_31, /*hidden argument*/NULL); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_33 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_34 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_33; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_35 = V_1; NullCheck(L_34); ArrayElementTypeCheck (L_34, L_35); (L_34)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_35); NullCheck((Type_t *)L_32); Type_t * L_36 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(90 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_32, (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_34); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_37 = V_1; NullCheck((Type_t *)L_36); bool L_38 = VirtFuncInvoker1< bool, Type_t * >::Invoke(104 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_36, (Type_t *)L_37); if (!L_38) { goto IL_00d6; } } { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_39 = { reinterpret_cast<intptr_t> (NullableEqualityComparer_1_tD235D1E336771C9615EB5024AC8C35CFF8ADD27F_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_40 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_39, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_41 = V_1; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_42 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_40, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_41, /*hidden argument*/NULL); return ((EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77 *)Castclass((RuntimeObject*)L_42, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_00d6: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_43 = V_0; NullCheck((Type_t *)L_43); bool L_44 = VirtFuncInvoker0< bool >::Invoke(66 /* System.Boolean System.Type::get_IsEnum() */, (Type_t *)L_43); if (!L_44) { goto IL_016f; } } { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_45 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); Type_t * L_46 = Enum_GetUnderlyingType_m0715B4E60E6909F03FF7302B6E20B1AB88DA84B1((Type_t *)L_45, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); int32_t L_47 = Type_GetTypeCode_m3105BBCE671D89EFE212F9BA06AAB90944A6116F((Type_t *)L_46, /*hidden argument*/NULL); V_2 = (int32_t)L_47; int32_t L_48 = V_2; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_48, (int32_t)5))) { case 0: { goto IL_012d; } case 1: { goto IL_0143; } case 2: { goto IL_0117; } case 3: { goto IL_0143; } case 4: { goto IL_0143; } case 5: { goto IL_0143; } case 6: { goto IL_0159; } case 7: { goto IL_0159; } } } { goto IL_016f; } IL_0117: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_49 = { reinterpret_cast<intptr_t> (ShortEnumEqualityComparer_1_tCB4B7DE9F58431002227076F18CFFC289C6CBD64_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_50 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_49, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_51 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_52 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_50, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_51, /*hidden argument*/NULL); return ((EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77 *)Castclass((RuntimeObject*)L_52, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_012d: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_53 = { reinterpret_cast<intptr_t> (SByteEnumEqualityComparer_1_t0E5A82C922F801F365CCC4BE3062A765423A5852_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_54 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_53, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_55 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_56 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_54, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_55, /*hidden argument*/NULL); return ((EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77 *)Castclass((RuntimeObject*)L_56, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_0143: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_57 = { reinterpret_cast<intptr_t> (EnumEqualityComparer_1_tC44C7E08405BCDA86FDDFB9714C4301D39723C3A_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_58 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_57, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_59 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_60 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_58, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_59, /*hidden argument*/NULL); return ((EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77 *)Castclass((RuntimeObject*)L_60, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_0159: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_61 = { reinterpret_cast<intptr_t> (LongEnumEqualityComparer_1_t6B940FD5688E20A1CF36AD68CCF3A39071FFB0DB_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_62 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_61, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_63 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_64 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_62, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_63, /*hidden argument*/NULL); return ((EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77 *)Castclass((RuntimeObject*)L_64, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_016f: { ObjectEqualityComparer_1_t70F783B7A20C43971F7A70A23B147457352B79C9 * L_65 = (ObjectEqualityComparer_1_t70F783B7A20C43971F7A70A23B147457352B79C9 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5)); (( void (*) (ObjectEqualityComparer_1_t70F783B7A20C43971F7A70A23B147457352B79C9 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(L_65, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)); return L_65; } } // System.Int32 System.Collections.Generic.EqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::IndexOf(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t EqualityComparer_1_IndexOf_m5F1ED752040169ADCCB32FA37106FE8206C6EFFF_gshared (EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77 * __this, KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F* ___array0, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = ___startIndex2; int32_t L_1 = ___count3; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1)); int32_t L_2 = ___startIndex2; V_1 = (int32_t)L_2; goto IL_001f; } IL_0009: { KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F* L_3 = ___array0; int32_t L_4 = V_1; NullCheck(L_3); int32_t L_5 = L_4; KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B L_6 = (KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B )(L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B L_7 = ___value1; NullCheck((EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77 *)__this); bool L_8 = VirtFuncInvoker2< bool, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B , KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Equals(T,T) */, (EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77 *)__this, (KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B )L_6, (KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B )L_7); if (!L_8) { goto IL_001b; } } { int32_t L_9 = V_1; return L_9; } IL_001b: { int32_t L_10 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1)); } IL_001f: { int32_t L_11 = V_1; int32_t L_12 = V_0; if ((((int32_t)L_11) < ((int32_t)L_12))) { goto IL_0009; } } { return (-1); } } // System.Int32 System.Collections.Generic.EqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::LastIndexOf(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t EqualityComparer_1_LastIndexOf_m4155AF52F117377824057D4546E0484CAFFB91B1_gshared (EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77 * __this, KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F* ___array0, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = ___startIndex2; int32_t L_1 = ___count3; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1)); int32_t L_2 = ___startIndex2; V_1 = (int32_t)L_2; goto IL_0021; } IL_000b: { KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F* L_3 = ___array0; int32_t L_4 = V_1; NullCheck(L_3); int32_t L_5 = L_4; KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B L_6 = (KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B )(L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B L_7 = ___value1; NullCheck((EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77 *)__this); bool L_8 = VirtFuncInvoker2< bool, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B , KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Equals(T,T) */, (EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77 *)__this, (KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B )L_6, (KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B )L_7); if (!L_8) { goto IL_001d; } } { int32_t L_9 = V_1; return L_9; } IL_001d: { int32_t L_10 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_10, (int32_t)1)); } IL_0021: { int32_t L_11 = V_1; int32_t L_12 = V_0; if ((((int32_t)L_11) >= ((int32_t)L_12))) { goto IL_000b; } } { return (-1); } } // System.Int32 System.Collections.Generic.EqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IEqualityComparer.GetHashCode(System.Object) extern "C" IL2CPP_METHOD_ATTR int32_t EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m1D079FA765E845A7649FCCE16CC755D0CD8504CB_gshared (EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___obj0; if (L_0) { goto IL_0005; } } { return 0; } IL_0005: { RuntimeObject * L_1 = ___obj0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))) { goto IL_001a; } } { RuntimeObject * L_2 = ___obj0; NullCheck((EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77 *)__this); int32_t L_3 = VirtFuncInvoker1< int32_t, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B >::Invoke(9 /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::GetHashCode(T) */, (EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77 *)__this, (KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B )((*(KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B *)((KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B *)UnBox(L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))))); return L_3; } IL_001a: { ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84((int32_t)2, /*hidden argument*/NULL); return 0; } } // System.Boolean System.Collections.Generic.EqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) extern "C" IL2CPP_METHOD_ATTR bool EqualityComparer_1_System_Collections_IEqualityComparer_Equals_mCE7A2C9888861A7AAA1A71F4676C11710A79A54E_gshared (EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77 * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___x0; RuntimeObject * L_1 = ___y1; if ((!(((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(RuntimeObject *)L_1)))) { goto IL_0006; } } { return (bool)1; } IL_0006: { RuntimeObject * L_2 = ___x0; if (!L_2) { goto IL_000c; } } { RuntimeObject * L_3 = ___y1; if (L_3) { goto IL_000e; } } IL_000c: { return (bool)0; } IL_000e: { RuntimeObject * L_4 = ___x0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))) { goto IL_0031; } } { RuntimeObject * L_5 = ___y1; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))) { goto IL_0031; } } { RuntimeObject * L_6 = ___x0; RuntimeObject * L_7 = ___y1; NullCheck((EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77 *)__this); bool L_8 = VirtFuncInvoker2< bool, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B , KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Equals(T,T) */, (EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77 *)__this, (KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B )((*(KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B *)((KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B *)UnBox(L_6, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8))))), (KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B )((*(KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B *)((KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B *)UnBox(L_7, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))))); return L_8; } IL_0031: { ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84((int32_t)2, /*hidden argument*/NULL); return (bool)0; } } // System.Void System.Collections.Generic.EqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::.ctor() extern "C" IL2CPP_METHOD_ATTR void EqualityComparer_1__ctor_mD9C0555C21B5046153D9E2EFBC85C2A7738CF86C_gshared (EqualityComparer_1_t41502C277E18047AC2005F5FB63267CB4C010B77 * __this, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.DateTime>::get_Default() extern "C" IL2CPP_METHOD_ATTR EqualityComparer_1_t21E166DB6F02E6294F8D979F22ACE807F6743998 * EqualityComparer_1_get_Default_mD345A84ADDBFFEFC89B81CD85106D0B94208D576_gshared (const RuntimeMethod* method) { EqualityComparer_1_t21E166DB6F02E6294F8D979F22ACE807F6743998 * V_0 = NULL; { EqualityComparer_1_t21E166DB6F02E6294F8D979F22ACE807F6743998 * L_0 = ((EqualityComparer_1_t21E166DB6F02E6294F8D979F22ACE807F6743998_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->get_defaultComparer_0(); il2cpp_codegen_memory_barrier(); V_0 = (EqualityComparer_1_t21E166DB6F02E6294F8D979F22ACE807F6743998 *)L_0; EqualityComparer_1_t21E166DB6F02E6294F8D979F22ACE807F6743998 * L_1 = V_0; if (L_1) { goto IL_0019; } } { EqualityComparer_1_t21E166DB6F02E6294F8D979F22ACE807F6743998 * L_2 = (( EqualityComparer_1_t21E166DB6F02E6294F8D979F22ACE807F6743998 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); V_0 = (EqualityComparer_1_t21E166DB6F02E6294F8D979F22ACE807F6743998 *)L_2; EqualityComparer_1_t21E166DB6F02E6294F8D979F22ACE807F6743998 * L_3 = V_0; il2cpp_codegen_memory_barrier(); ((EqualityComparer_1_t21E166DB6F02E6294F8D979F22ACE807F6743998_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_defaultComparer_0(L_3); } IL_0019: { EqualityComparer_1_t21E166DB6F02E6294F8D979F22ACE807F6743998 * L_4 = V_0; return L_4; } } // System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.DateTime>::CreateComparer() extern "C" IL2CPP_METHOD_ATTR EqualityComparer_1_t21E166DB6F02E6294F8D979F22ACE807F6743998 * EqualityComparer_1_CreateComparer_mE1D285264BBC2DA6C20BA54FD00A0D8BE7AEADC9_gshared (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (EqualityComparer_1_CreateComparer_mE1D285264BBC2DA6C20BA54FD00A0D8BE7AEADC9_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_0 = NULL; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_1 = NULL; int32_t V_2 = 0; { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 2)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL); V_0 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_1, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_2 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_3 = { reinterpret_cast<intptr_t> (Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_0_0_0_var) }; Type_t * L_4 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_3, /*hidden argument*/NULL); bool L_5 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_2, (Type_t *)L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_002d; } } { ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B * L_6 = (ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B *)il2cpp_codegen_object_new(ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B_il2cpp_TypeInfo_var); ByteEqualityComparer__ctor_m2B86B16398C9ADBA996127A209179E9654EF6A68(L_6, /*hidden argument*/NULL); return ((EqualityComparer_1_t21E166DB6F02E6294F8D979F22ACE807F6743998 *)Castclass((RuntimeObject*)L_6, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_002d: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_7 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_8 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_9 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_8, /*hidden argument*/NULL); bool L_10 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_7, (Type_t *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_004a; } } { InternalStringComparer_tCD150130A3DB4C80186B5D8145B910B33496D4CD * L_11 = (InternalStringComparer_tCD150130A3DB4C80186B5D8145B910B33496D4CD *)il2cpp_codegen_object_new(InternalStringComparer_tCD150130A3DB4C80186B5D8145B910B33496D4CD_il2cpp_TypeInfo_var); InternalStringComparer__ctor_m471FF151AF831B76635ED96C53CF08114FD42C83(L_11, /*hidden argument*/NULL); return ((EqualityComparer_1_t21E166DB6F02E6294F8D979F22ACE807F6743998 *)Castclass((RuntimeObject*)L_11, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_004a: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_12 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 4)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_13 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_12, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_14 = V_0; NullCheck((Type_t *)L_13); bool L_15 = VirtFuncInvoker1< bool, Type_t * >::Invoke(104 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_13, (Type_t *)L_14); if (!L_15) { goto IL_0072; } } { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_16 = { reinterpret_cast<intptr_t> (GenericEqualityComparer_1_t86530EF2BF9E43CCEE775B5862B48F735555A90B_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_17 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_16, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_18 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_19 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_17, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_18, /*hidden argument*/NULL); return ((EqualityComparer_1_t21E166DB6F02E6294F8D979F22ACE807F6743998 *)Castclass((RuntimeObject*)L_19, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_0072: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_20 = V_0; NullCheck((Type_t *)L_20); bool L_21 = VirtFuncInvoker0< bool >::Invoke(70 /* System.Boolean System.Type::get_IsGenericType() */, (Type_t *)L_20); if (!L_21) { goto IL_00d6; } } { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_22 = V_0; NullCheck((Type_t *)L_22); Type_t * L_23 = VirtFuncInvoker0< Type_t * >::Invoke(95 /* System.Type System.Type::GetGenericTypeDefinition() */, (Type_t *)L_22); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_24 = { reinterpret_cast<intptr_t> (Nullable_1_t220FFA40D2CEE2CB28F8C04DB1216024A0BC75C3_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_25 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_24, /*hidden argument*/NULL); bool L_26 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_23, (Type_t *)L_25, /*hidden argument*/NULL); if (!L_26) { goto IL_00d6; } } { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_27 = V_0; NullCheck((Type_t *)L_27); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_28 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(94 /* System.Type[] System.Type::GetGenericArguments() */, (Type_t *)L_27); NullCheck(L_28); int32_t L_29 = 0; Type_t * L_30 = (L_28)->GetAt(static_cast<il2cpp_array_size_t>(L_29)); V_1 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_30, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_31 = { reinterpret_cast<intptr_t> (IEquatable_1_t7FBC51A9FCBF69422C0DEBF035FFDC9417EF3DA1_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_32 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_31, /*hidden argument*/NULL); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_33 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_34 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_33; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_35 = V_1; NullCheck(L_34); ArrayElementTypeCheck (L_34, L_35); (L_34)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_35); NullCheck((Type_t *)L_32); Type_t * L_36 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(90 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_32, (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_34); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_37 = V_1; NullCheck((Type_t *)L_36); bool L_38 = VirtFuncInvoker1< bool, Type_t * >::Invoke(104 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_36, (Type_t *)L_37); if (!L_38) { goto IL_00d6; } } { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_39 = { reinterpret_cast<intptr_t> (NullableEqualityComparer_1_tD235D1E336771C9615EB5024AC8C35CFF8ADD27F_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_40 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_39, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_41 = V_1; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_42 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_40, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_41, /*hidden argument*/NULL); return ((EqualityComparer_1_t21E166DB6F02E6294F8D979F22ACE807F6743998 *)Castclass((RuntimeObject*)L_42, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_00d6: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_43 = V_0; NullCheck((Type_t *)L_43); bool L_44 = VirtFuncInvoker0< bool >::Invoke(66 /* System.Boolean System.Type::get_IsEnum() */, (Type_t *)L_43); if (!L_44) { goto IL_016f; } } { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_45 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); Type_t * L_46 = Enum_GetUnderlyingType_m0715B4E60E6909F03FF7302B6E20B1AB88DA84B1((Type_t *)L_45, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); int32_t L_47 = Type_GetTypeCode_m3105BBCE671D89EFE212F9BA06AAB90944A6116F((Type_t *)L_46, /*hidden argument*/NULL); V_2 = (int32_t)L_47; int32_t L_48 = V_2; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_48, (int32_t)5))) { case 0: { goto IL_012d; } case 1: { goto IL_0143; } case 2: { goto IL_0117; } case 3: { goto IL_0143; } case 4: { goto IL_0143; } case 5: { goto IL_0143; } case 6: { goto IL_0159; } case 7: { goto IL_0159; } } } { goto IL_016f; } IL_0117: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_49 = { reinterpret_cast<intptr_t> (ShortEnumEqualityComparer_1_tCB4B7DE9F58431002227076F18CFFC289C6CBD64_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_50 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_49, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_51 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_52 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_50, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_51, /*hidden argument*/NULL); return ((EqualityComparer_1_t21E166DB6F02E6294F8D979F22ACE807F6743998 *)Castclass((RuntimeObject*)L_52, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_012d: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_53 = { reinterpret_cast<intptr_t> (SByteEnumEqualityComparer_1_t0E5A82C922F801F365CCC4BE3062A765423A5852_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_54 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_53, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_55 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_56 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_54, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_55, /*hidden argument*/NULL); return ((EqualityComparer_1_t21E166DB6F02E6294F8D979F22ACE807F6743998 *)Castclass((RuntimeObject*)L_56, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_0143: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_57 = { reinterpret_cast<intptr_t> (EnumEqualityComparer_1_tC44C7E08405BCDA86FDDFB9714C4301D39723C3A_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_58 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_57, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_59 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_60 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_58, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_59, /*hidden argument*/NULL); return ((EqualityComparer_1_t21E166DB6F02E6294F8D979F22ACE807F6743998 *)Castclass((RuntimeObject*)L_60, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_0159: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_61 = { reinterpret_cast<intptr_t> (LongEnumEqualityComparer_1_t6B940FD5688E20A1CF36AD68CCF3A39071FFB0DB_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_62 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_61, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_63 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_64 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_62, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_63, /*hidden argument*/NULL); return ((EqualityComparer_1_t21E166DB6F02E6294F8D979F22ACE807F6743998 *)Castclass((RuntimeObject*)L_64, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_016f: { ObjectEqualityComparer_1_t5867045D80C6F0D5516E9E69FE749B7B4883786E * L_65 = (ObjectEqualityComparer_1_t5867045D80C6F0D5516E9E69FE749B7B4883786E *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5)); (( void (*) (ObjectEqualityComparer_1_t5867045D80C6F0D5516E9E69FE749B7B4883786E *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(L_65, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)); return L_65; } } // System.Int32 System.Collections.Generic.EqualityComparer`1<System.DateTime>::IndexOf(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t EqualityComparer_1_IndexOf_m6AFB1330FFF6F6443B615E4D9554A5B64DFC29AB_gshared (EqualityComparer_1_t21E166DB6F02E6294F8D979F22ACE807F6743998 * __this, DateTimeU5BU5D_tFEA62BD2EDF382C69C4B1F20ED98F3709EA271C1* ___array0, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = ___startIndex2; int32_t L_1 = ___count3; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1)); int32_t L_2 = ___startIndex2; V_1 = (int32_t)L_2; goto IL_001f; } IL_0009: { DateTimeU5BU5D_tFEA62BD2EDF382C69C4B1F20ED98F3709EA271C1* L_3 = ___array0; int32_t L_4 = V_1; NullCheck(L_3); int32_t L_5 = L_4; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_7 = ___value1; NullCheck((EqualityComparer_1_t21E166DB6F02E6294F8D979F22ACE807F6743998 *)__this); bool L_8 = VirtFuncInvoker2< bool, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 , DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.DateTime>::Equals(T,T) */, (EqualityComparer_1_t21E166DB6F02E6294F8D979F22ACE807F6743998 *)__this, (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 )L_6, (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 )L_7); if (!L_8) { goto IL_001b; } } { int32_t L_9 = V_1; return L_9; } IL_001b: { int32_t L_10 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1)); } IL_001f: { int32_t L_11 = V_1; int32_t L_12 = V_0; if ((((int32_t)L_11) < ((int32_t)L_12))) { goto IL_0009; } } { return (-1); } } // System.Int32 System.Collections.Generic.EqualityComparer`1<System.DateTime>::LastIndexOf(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t EqualityComparer_1_LastIndexOf_m26A58EDDCD7E42BA30CA25C2D53350301512AC23_gshared (EqualityComparer_1_t21E166DB6F02E6294F8D979F22ACE807F6743998 * __this, DateTimeU5BU5D_tFEA62BD2EDF382C69C4B1F20ED98F3709EA271C1* ___array0, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = ___startIndex2; int32_t L_1 = ___count3; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1)); int32_t L_2 = ___startIndex2; V_1 = (int32_t)L_2; goto IL_0021; } IL_000b: { DateTimeU5BU5D_tFEA62BD2EDF382C69C4B1F20ED98F3709EA271C1* L_3 = ___array0; int32_t L_4 = V_1; NullCheck(L_3); int32_t L_5 = L_4; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_7 = ___value1; NullCheck((EqualityComparer_1_t21E166DB6F02E6294F8D979F22ACE807F6743998 *)__this); bool L_8 = VirtFuncInvoker2< bool, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 , DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.DateTime>::Equals(T,T) */, (EqualityComparer_1_t21E166DB6F02E6294F8D979F22ACE807F6743998 *)__this, (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 )L_6, (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 )L_7); if (!L_8) { goto IL_001d; } } { int32_t L_9 = V_1; return L_9; } IL_001d: { int32_t L_10 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_10, (int32_t)1)); } IL_0021: { int32_t L_11 = V_1; int32_t L_12 = V_0; if ((((int32_t)L_11) >= ((int32_t)L_12))) { goto IL_000b; } } { return (-1); } } // System.Int32 System.Collections.Generic.EqualityComparer`1<System.DateTime>::System.Collections.IEqualityComparer.GetHashCode(System.Object) extern "C" IL2CPP_METHOD_ATTR int32_t EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m51C361E05CA72B67CBCCEEB983E2E6C11063C186_gshared (EqualityComparer_1_t21E166DB6F02E6294F8D979F22ACE807F6743998 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___obj0; if (L_0) { goto IL_0005; } } { return 0; } IL_0005: { RuntimeObject * L_1 = ___obj0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))) { goto IL_001a; } } { RuntimeObject * L_2 = ___obj0; NullCheck((EqualityComparer_1_t21E166DB6F02E6294F8D979F22ACE807F6743998 *)__this); int32_t L_3 = VirtFuncInvoker1< int32_t, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 >::Invoke(9 /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.DateTime>::GetHashCode(T) */, (EqualityComparer_1_t21E166DB6F02E6294F8D979F22ACE807F6743998 *)__this, (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 )((*(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)UnBox(L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))))); return L_3; } IL_001a: { ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84((int32_t)2, /*hidden argument*/NULL); return 0; } } // System.Boolean System.Collections.Generic.EqualityComparer`1<System.DateTime>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) extern "C" IL2CPP_METHOD_ATTR bool EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m1A005FB644E3277CB9BFD18A7851D292ED39930F_gshared (EqualityComparer_1_t21E166DB6F02E6294F8D979F22ACE807F6743998 * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___x0; RuntimeObject * L_1 = ___y1; if ((!(((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(RuntimeObject *)L_1)))) { goto IL_0006; } } { return (bool)1; } IL_0006: { RuntimeObject * L_2 = ___x0; if (!L_2) { goto IL_000c; } } { RuntimeObject * L_3 = ___y1; if (L_3) { goto IL_000e; } } IL_000c: { return (bool)0; } IL_000e: { RuntimeObject * L_4 = ___x0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))) { goto IL_0031; } } { RuntimeObject * L_5 = ___y1; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))) { goto IL_0031; } } { RuntimeObject * L_6 = ___x0; RuntimeObject * L_7 = ___y1; NullCheck((EqualityComparer_1_t21E166DB6F02E6294F8D979F22ACE807F6743998 *)__this); bool L_8 = VirtFuncInvoker2< bool, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 , DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.DateTime>::Equals(T,T) */, (EqualityComparer_1_t21E166DB6F02E6294F8D979F22ACE807F6743998 *)__this, (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 )((*(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)UnBox(L_6, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8))))), (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 )((*(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)UnBox(L_7, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))))); return L_8; } IL_0031: { ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84((int32_t)2, /*hidden argument*/NULL); return (bool)0; } } // System.Void System.Collections.Generic.EqualityComparer`1<System.DateTime>::.ctor() extern "C" IL2CPP_METHOD_ATTR void EqualityComparer_1__ctor_mC7A71EA0C2402A5DD95D1B9B477A17DD0CD8BAB5_gshared (EqualityComparer_1_t21E166DB6F02E6294F8D979F22ACE807F6743998 * __this, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.DateTimeOffset>::get_Default() extern "C" IL2CPP_METHOD_ATTR EqualityComparer_1_t7BCF66E24804C5E258DB12209117B0722FC3FDE4 * EqualityComparer_1_get_Default_m5B5890684769FB78FBCEE53BDDBF757E14B1D11E_gshared (const RuntimeMethod* method) { EqualityComparer_1_t7BCF66E24804C5E258DB12209117B0722FC3FDE4 * V_0 = NULL; { EqualityComparer_1_t7BCF66E24804C5E258DB12209117B0722FC3FDE4 * L_0 = ((EqualityComparer_1_t7BCF66E24804C5E258DB12209117B0722FC3FDE4_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->get_defaultComparer_0(); il2cpp_codegen_memory_barrier(); V_0 = (EqualityComparer_1_t7BCF66E24804C5E258DB12209117B0722FC3FDE4 *)L_0; EqualityComparer_1_t7BCF66E24804C5E258DB12209117B0722FC3FDE4 * L_1 = V_0; if (L_1) { goto IL_0019; } } { EqualityComparer_1_t7BCF66E24804C5E258DB12209117B0722FC3FDE4 * L_2 = (( EqualityComparer_1_t7BCF66E24804C5E258DB12209117B0722FC3FDE4 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); V_0 = (EqualityComparer_1_t7BCF66E24804C5E258DB12209117B0722FC3FDE4 *)L_2; EqualityComparer_1_t7BCF66E24804C5E258DB12209117B0722FC3FDE4 * L_3 = V_0; il2cpp_codegen_memory_barrier(); ((EqualityComparer_1_t7BCF66E24804C5E258DB12209117B0722FC3FDE4_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_defaultComparer_0(L_3); } IL_0019: { EqualityComparer_1_t7BCF66E24804C5E258DB12209117B0722FC3FDE4 * L_4 = V_0; return L_4; } } // System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.DateTimeOffset>::CreateComparer() extern "C" IL2CPP_METHOD_ATTR EqualityComparer_1_t7BCF66E24804C5E258DB12209117B0722FC3FDE4 * EqualityComparer_1_CreateComparer_mF20712DAF0641524144A6E2CB7CC974F101DB45C_gshared (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (EqualityComparer_1_CreateComparer_mF20712DAF0641524144A6E2CB7CC974F101DB45C_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_0 = NULL; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_1 = NULL; int32_t V_2 = 0; { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 2)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL); V_0 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_1, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_2 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_3 = { reinterpret_cast<intptr_t> (Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_0_0_0_var) }; Type_t * L_4 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_3, /*hidden argument*/NULL); bool L_5 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_2, (Type_t *)L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_002d; } } { ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B * L_6 = (ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B *)il2cpp_codegen_object_new(ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B_il2cpp_TypeInfo_var); ByteEqualityComparer__ctor_m2B86B16398C9ADBA996127A209179E9654EF6A68(L_6, /*hidden argument*/NULL); return ((EqualityComparer_1_t7BCF66E24804C5E258DB12209117B0722FC3FDE4 *)Castclass((RuntimeObject*)L_6, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_002d: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_7 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_8 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_9 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_8, /*hidden argument*/NULL); bool L_10 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_7, (Type_t *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_004a; } } { InternalStringComparer_tCD150130A3DB4C80186B5D8145B910B33496D4CD * L_11 = (InternalStringComparer_tCD150130A3DB4C80186B5D8145B910B33496D4CD *)il2cpp_codegen_object_new(InternalStringComparer_tCD150130A3DB4C80186B5D8145B910B33496D4CD_il2cpp_TypeInfo_var); InternalStringComparer__ctor_m471FF151AF831B76635ED96C53CF08114FD42C83(L_11, /*hidden argument*/NULL); return ((EqualityComparer_1_t7BCF66E24804C5E258DB12209117B0722FC3FDE4 *)Castclass((RuntimeObject*)L_11, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_004a: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_12 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 4)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_13 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_12, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_14 = V_0; NullCheck((Type_t *)L_13); bool L_15 = VirtFuncInvoker1< bool, Type_t * >::Invoke(104 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_13, (Type_t *)L_14); if (!L_15) { goto IL_0072; } } { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_16 = { reinterpret_cast<intptr_t> (GenericEqualityComparer_1_t86530EF2BF9E43CCEE775B5862B48F735555A90B_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_17 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_16, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_18 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_19 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_17, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_18, /*hidden argument*/NULL); return ((EqualityComparer_1_t7BCF66E24804C5E258DB12209117B0722FC3FDE4 *)Castclass((RuntimeObject*)L_19, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_0072: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_20 = V_0; NullCheck((Type_t *)L_20); bool L_21 = VirtFuncInvoker0< bool >::Invoke(70 /* System.Boolean System.Type::get_IsGenericType() */, (Type_t *)L_20); if (!L_21) { goto IL_00d6; } } { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_22 = V_0; NullCheck((Type_t *)L_22); Type_t * L_23 = VirtFuncInvoker0< Type_t * >::Invoke(95 /* System.Type System.Type::GetGenericTypeDefinition() */, (Type_t *)L_22); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_24 = { reinterpret_cast<intptr_t> (Nullable_1_t220FFA40D2CEE2CB28F8C04DB1216024A0BC75C3_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_25 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_24, /*hidden argument*/NULL); bool L_26 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_23, (Type_t *)L_25, /*hidden argument*/NULL); if (!L_26) { goto IL_00d6; } } { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_27 = V_0; NullCheck((Type_t *)L_27); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_28 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(94 /* System.Type[] System.Type::GetGenericArguments() */, (Type_t *)L_27); NullCheck(L_28); int32_t L_29 = 0; Type_t * L_30 = (L_28)->GetAt(static_cast<il2cpp_array_size_t>(L_29)); V_1 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_30, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_31 = { reinterpret_cast<intptr_t> (IEquatable_1_t7FBC51A9FCBF69422C0DEBF035FFDC9417EF3DA1_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_32 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_31, /*hidden argument*/NULL); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_33 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_34 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_33; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_35 = V_1; NullCheck(L_34); ArrayElementTypeCheck (L_34, L_35); (L_34)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_35); NullCheck((Type_t *)L_32); Type_t * L_36 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(90 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_32, (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_34); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_37 = V_1; NullCheck((Type_t *)L_36); bool L_38 = VirtFuncInvoker1< bool, Type_t * >::Invoke(104 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_36, (Type_t *)L_37); if (!L_38) { goto IL_00d6; } } { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_39 = { reinterpret_cast<intptr_t> (NullableEqualityComparer_1_tD235D1E336771C9615EB5024AC8C35CFF8ADD27F_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_40 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_39, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_41 = V_1; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_42 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_40, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_41, /*hidden argument*/NULL); return ((EqualityComparer_1_t7BCF66E24804C5E258DB12209117B0722FC3FDE4 *)Castclass((RuntimeObject*)L_42, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_00d6: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_43 = V_0; NullCheck((Type_t *)L_43); bool L_44 = VirtFuncInvoker0< bool >::Invoke(66 /* System.Boolean System.Type::get_IsEnum() */, (Type_t *)L_43); if (!L_44) { goto IL_016f; } } { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_45 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); Type_t * L_46 = Enum_GetUnderlyingType_m0715B4E60E6909F03FF7302B6E20B1AB88DA84B1((Type_t *)L_45, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); int32_t L_47 = Type_GetTypeCode_m3105BBCE671D89EFE212F9BA06AAB90944A6116F((Type_t *)L_46, /*hidden argument*/NULL); V_2 = (int32_t)L_47; int32_t L_48 = V_2; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_48, (int32_t)5))) { case 0: { goto IL_012d; } case 1: { goto IL_0143; } case 2: { goto IL_0117; } case 3: { goto IL_0143; } case 4: { goto IL_0143; } case 5: { goto IL_0143; } case 6: { goto IL_0159; } case 7: { goto IL_0159; } } } { goto IL_016f; } IL_0117: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_49 = { reinterpret_cast<intptr_t> (ShortEnumEqualityComparer_1_tCB4B7DE9F58431002227076F18CFFC289C6CBD64_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_50 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_49, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_51 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_52 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_50, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_51, /*hidden argument*/NULL); return ((EqualityComparer_1_t7BCF66E24804C5E258DB12209117B0722FC3FDE4 *)Castclass((RuntimeObject*)L_52, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_012d: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_53 = { reinterpret_cast<intptr_t> (SByteEnumEqualityComparer_1_t0E5A82C922F801F365CCC4BE3062A765423A5852_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_54 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_53, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_55 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_56 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_54, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_55, /*hidden argument*/NULL); return ((EqualityComparer_1_t7BCF66E24804C5E258DB12209117B0722FC3FDE4 *)Castclass((RuntimeObject*)L_56, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_0143: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_57 = { reinterpret_cast<intptr_t> (EnumEqualityComparer_1_tC44C7E08405BCDA86FDDFB9714C4301D39723C3A_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_58 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_57, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_59 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_60 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_58, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_59, /*hidden argument*/NULL); return ((EqualityComparer_1_t7BCF66E24804C5E258DB12209117B0722FC3FDE4 *)Castclass((RuntimeObject*)L_60, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_0159: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_61 = { reinterpret_cast<intptr_t> (LongEnumEqualityComparer_1_t6B940FD5688E20A1CF36AD68CCF3A39071FFB0DB_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_62 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_61, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_63 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_64 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_62, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_63, /*hidden argument*/NULL); return ((EqualityComparer_1_t7BCF66E24804C5E258DB12209117B0722FC3FDE4 *)Castclass((RuntimeObject*)L_64, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_016f: { ObjectEqualityComparer_1_tAD42BD0F576218F36F436566838EED438F63681D * L_65 = (ObjectEqualityComparer_1_tAD42BD0F576218F36F436566838EED438F63681D *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5)); (( void (*) (ObjectEqualityComparer_1_tAD42BD0F576218F36F436566838EED438F63681D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(L_65, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)); return L_65; } } // System.Int32 System.Collections.Generic.EqualityComparer`1<System.DateTimeOffset>::IndexOf(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t EqualityComparer_1_IndexOf_m6B4516D64EBD3651B9C9320932380D69642112E9_gshared (EqualityComparer_1_t7BCF66E24804C5E258DB12209117B0722FC3FDE4 * __this, DateTimeOffsetU5BU5D_tBE5BF156BB0B9FFFC5B216B0D02C0D44288FCA25* ___array0, DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = ___startIndex2; int32_t L_1 = ___count3; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1)); int32_t L_2 = ___startIndex2; V_1 = (int32_t)L_2; goto IL_001f; } IL_0009: { DateTimeOffsetU5BU5D_tBE5BF156BB0B9FFFC5B216B0D02C0D44288FCA25* L_3 = ___array0; int32_t L_4 = V_1; NullCheck(L_3); int32_t L_5 = L_4; DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 L_7 = ___value1; NullCheck((EqualityComparer_1_t7BCF66E24804C5E258DB12209117B0722FC3FDE4 *)__this); bool L_8 = VirtFuncInvoker2< bool, DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 , DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.DateTimeOffset>::Equals(T,T) */, (EqualityComparer_1_t7BCF66E24804C5E258DB12209117B0722FC3FDE4 *)__this, (DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 )L_6, (DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 )L_7); if (!L_8) { goto IL_001b; } } { int32_t L_9 = V_1; return L_9; } IL_001b: { int32_t L_10 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1)); } IL_001f: { int32_t L_11 = V_1; int32_t L_12 = V_0; if ((((int32_t)L_11) < ((int32_t)L_12))) { goto IL_0009; } } { return (-1); } } // System.Int32 System.Collections.Generic.EqualityComparer`1<System.DateTimeOffset>::LastIndexOf(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t EqualityComparer_1_LastIndexOf_mB4A3F4BC785546D7DFDBED2DBBE15DB32E457765_gshared (EqualityComparer_1_t7BCF66E24804C5E258DB12209117B0722FC3FDE4 * __this, DateTimeOffsetU5BU5D_tBE5BF156BB0B9FFFC5B216B0D02C0D44288FCA25* ___array0, DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = ___startIndex2; int32_t L_1 = ___count3; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1)); int32_t L_2 = ___startIndex2; V_1 = (int32_t)L_2; goto IL_0021; } IL_000b: { DateTimeOffsetU5BU5D_tBE5BF156BB0B9FFFC5B216B0D02C0D44288FCA25* L_3 = ___array0; int32_t L_4 = V_1; NullCheck(L_3); int32_t L_5 = L_4; DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 L_7 = ___value1; NullCheck((EqualityComparer_1_t7BCF66E24804C5E258DB12209117B0722FC3FDE4 *)__this); bool L_8 = VirtFuncInvoker2< bool, DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 , DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.DateTimeOffset>::Equals(T,T) */, (EqualityComparer_1_t7BCF66E24804C5E258DB12209117B0722FC3FDE4 *)__this, (DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 )L_6, (DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 )L_7); if (!L_8) { goto IL_001d; } } { int32_t L_9 = V_1; return L_9; } IL_001d: { int32_t L_10 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_10, (int32_t)1)); } IL_0021: { int32_t L_11 = V_1; int32_t L_12 = V_0; if ((((int32_t)L_11) >= ((int32_t)L_12))) { goto IL_000b; } } { return (-1); } } // System.Int32 System.Collections.Generic.EqualityComparer`1<System.DateTimeOffset>::System.Collections.IEqualityComparer.GetHashCode(System.Object) extern "C" IL2CPP_METHOD_ATTR int32_t EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m1A4F06B41890F57539F9E326DCCA0DC6D8C78320_gshared (EqualityComparer_1_t7BCF66E24804C5E258DB12209117B0722FC3FDE4 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___obj0; if (L_0) { goto IL_0005; } } { return 0; } IL_0005: { RuntimeObject * L_1 = ___obj0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))) { goto IL_001a; } } { RuntimeObject * L_2 = ___obj0; NullCheck((EqualityComparer_1_t7BCF66E24804C5E258DB12209117B0722FC3FDE4 *)__this); int32_t L_3 = VirtFuncInvoker1< int32_t, DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 >::Invoke(9 /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.DateTimeOffset>::GetHashCode(T) */, (EqualityComparer_1_t7BCF66E24804C5E258DB12209117B0722FC3FDE4 *)__this, (DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 )((*(DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 *)((DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 *)UnBox(L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))))); return L_3; } IL_001a: { ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84((int32_t)2, /*hidden argument*/NULL); return 0; } } // System.Boolean System.Collections.Generic.EqualityComparer`1<System.DateTimeOffset>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) extern "C" IL2CPP_METHOD_ATTR bool EqualityComparer_1_System_Collections_IEqualityComparer_Equals_mD9B5257C1BBE01D761BE22CC2368F693FE697FA5_gshared (EqualityComparer_1_t7BCF66E24804C5E258DB12209117B0722FC3FDE4 * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___x0; RuntimeObject * L_1 = ___y1; if ((!(((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(RuntimeObject *)L_1)))) { goto IL_0006; } } { return (bool)1; } IL_0006: { RuntimeObject * L_2 = ___x0; if (!L_2) { goto IL_000c; } } { RuntimeObject * L_3 = ___y1; if (L_3) { goto IL_000e; } } IL_000c: { return (bool)0; } IL_000e: { RuntimeObject * L_4 = ___x0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))) { goto IL_0031; } } { RuntimeObject * L_5 = ___y1; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))) { goto IL_0031; } } { RuntimeObject * L_6 = ___x0; RuntimeObject * L_7 = ___y1; NullCheck((EqualityComparer_1_t7BCF66E24804C5E258DB12209117B0722FC3FDE4 *)__this); bool L_8 = VirtFuncInvoker2< bool, DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 , DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.DateTimeOffset>::Equals(T,T) */, (EqualityComparer_1_t7BCF66E24804C5E258DB12209117B0722FC3FDE4 *)__this, (DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 )((*(DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 *)((DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 *)UnBox(L_6, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8))))), (DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 )((*(DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 *)((DateTimeOffset_t6C333873402CAD576160B4F8E159EB6834F06B85 *)UnBox(L_7, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))))); return L_8; } IL_0031: { ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84((int32_t)2, /*hidden argument*/NULL); return (bool)0; } } // System.Void System.Collections.Generic.EqualityComparer`1<System.DateTimeOffset>::.ctor() extern "C" IL2CPP_METHOD_ATTR void EqualityComparer_1__ctor_m454AFBE66E972325F281630D375187B3027ED623_gshared (EqualityComparer_1_t7BCF66E24804C5E258DB12209117B0722FC3FDE4 * __this, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Decimal>::get_Default() extern "C" IL2CPP_METHOD_ATTR EqualityComparer_1_t5F84660374B493F86CCE91B7723DB110A0025F6B * EqualityComparer_1_get_Default_m477F0F921649AD074B085BEAB36F02F2BBC38AC3_gshared (const RuntimeMethod* method) { EqualityComparer_1_t5F84660374B493F86CCE91B7723DB110A0025F6B * V_0 = NULL; { EqualityComparer_1_t5F84660374B493F86CCE91B7723DB110A0025F6B * L_0 = ((EqualityComparer_1_t5F84660374B493F86CCE91B7723DB110A0025F6B_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->get_defaultComparer_0(); il2cpp_codegen_memory_barrier(); V_0 = (EqualityComparer_1_t5F84660374B493F86CCE91B7723DB110A0025F6B *)L_0; EqualityComparer_1_t5F84660374B493F86CCE91B7723DB110A0025F6B * L_1 = V_0; if (L_1) { goto IL_0019; } } { EqualityComparer_1_t5F84660374B493F86CCE91B7723DB110A0025F6B * L_2 = (( EqualityComparer_1_t5F84660374B493F86CCE91B7723DB110A0025F6B * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); V_0 = (EqualityComparer_1_t5F84660374B493F86CCE91B7723DB110A0025F6B *)L_2; EqualityComparer_1_t5F84660374B493F86CCE91B7723DB110A0025F6B * L_3 = V_0; il2cpp_codegen_memory_barrier(); ((EqualityComparer_1_t5F84660374B493F86CCE91B7723DB110A0025F6B_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_defaultComparer_0(L_3); } IL_0019: { EqualityComparer_1_t5F84660374B493F86CCE91B7723DB110A0025F6B * L_4 = V_0; return L_4; } } // System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Decimal>::CreateComparer() extern "C" IL2CPP_METHOD_ATTR EqualityComparer_1_t5F84660374B493F86CCE91B7723DB110A0025F6B * EqualityComparer_1_CreateComparer_m4ACF22E3595EC1082E20F5BF3450EFD2245EBC56_gshared (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (EqualityComparer_1_CreateComparer_m4ACF22E3595EC1082E20F5BF3450EFD2245EBC56_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_0 = NULL; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_1 = NULL; int32_t V_2 = 0; { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 2)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL); V_0 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_1, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_2 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_3 = { reinterpret_cast<intptr_t> (Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_0_0_0_var) }; Type_t * L_4 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_3, /*hidden argument*/NULL); bool L_5 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_2, (Type_t *)L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_002d; } } { ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B * L_6 = (ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B *)il2cpp_codegen_object_new(ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B_il2cpp_TypeInfo_var); ByteEqualityComparer__ctor_m2B86B16398C9ADBA996127A209179E9654EF6A68(L_6, /*hidden argument*/NULL); return ((EqualityComparer_1_t5F84660374B493F86CCE91B7723DB110A0025F6B *)Castclass((RuntimeObject*)L_6, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_002d: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_7 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_8 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_9 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_8, /*hidden argument*/NULL); bool L_10 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_7, (Type_t *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_004a; } } { InternalStringComparer_tCD150130A3DB4C80186B5D8145B910B33496D4CD * L_11 = (InternalStringComparer_tCD150130A3DB4C80186B5D8145B910B33496D4CD *)il2cpp_codegen_object_new(InternalStringComparer_tCD150130A3DB4C80186B5D8145B910B33496D4CD_il2cpp_TypeInfo_var); InternalStringComparer__ctor_m471FF151AF831B76635ED96C53CF08114FD42C83(L_11, /*hidden argument*/NULL); return ((EqualityComparer_1_t5F84660374B493F86CCE91B7723DB110A0025F6B *)Castclass((RuntimeObject*)L_11, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_004a: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_12 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 4)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_13 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_12, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_14 = V_0; NullCheck((Type_t *)L_13); bool L_15 = VirtFuncInvoker1< bool, Type_t * >::Invoke(104 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_13, (Type_t *)L_14); if (!L_15) { goto IL_0072; } } { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_16 = { reinterpret_cast<intptr_t> (GenericEqualityComparer_1_t86530EF2BF9E43CCEE775B5862B48F735555A90B_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_17 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_16, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_18 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_19 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_17, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_18, /*hidden argument*/NULL); return ((EqualityComparer_1_t5F84660374B493F86CCE91B7723DB110A0025F6B *)Castclass((RuntimeObject*)L_19, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_0072: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_20 = V_0; NullCheck((Type_t *)L_20); bool L_21 = VirtFuncInvoker0< bool >::Invoke(70 /* System.Boolean System.Type::get_IsGenericType() */, (Type_t *)L_20); if (!L_21) { goto IL_00d6; } } { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_22 = V_0; NullCheck((Type_t *)L_22); Type_t * L_23 = VirtFuncInvoker0< Type_t * >::Invoke(95 /* System.Type System.Type::GetGenericTypeDefinition() */, (Type_t *)L_22); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_24 = { reinterpret_cast<intptr_t> (Nullable_1_t220FFA40D2CEE2CB28F8C04DB1216024A0BC75C3_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_25 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_24, /*hidden argument*/NULL); bool L_26 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_23, (Type_t *)L_25, /*hidden argument*/NULL); if (!L_26) { goto IL_00d6; } } { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_27 = V_0; NullCheck((Type_t *)L_27); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_28 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(94 /* System.Type[] System.Type::GetGenericArguments() */, (Type_t *)L_27); NullCheck(L_28); int32_t L_29 = 0; Type_t * L_30 = (L_28)->GetAt(static_cast<il2cpp_array_size_t>(L_29)); V_1 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_30, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_31 = { reinterpret_cast<intptr_t> (IEquatable_1_t7FBC51A9FCBF69422C0DEBF035FFDC9417EF3DA1_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_32 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_31, /*hidden argument*/NULL); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_33 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_34 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_33; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_35 = V_1; NullCheck(L_34); ArrayElementTypeCheck (L_34, L_35); (L_34)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_35); NullCheck((Type_t *)L_32); Type_t * L_36 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(90 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_32, (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_34); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_37 = V_1; NullCheck((Type_t *)L_36); bool L_38 = VirtFuncInvoker1< bool, Type_t * >::Invoke(104 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_36, (Type_t *)L_37); if (!L_38) { goto IL_00d6; } } { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_39 = { reinterpret_cast<intptr_t> (NullableEqualityComparer_1_tD235D1E336771C9615EB5024AC8C35CFF8ADD27F_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_40 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_39, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_41 = V_1; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_42 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_40, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_41, /*hidden argument*/NULL); return ((EqualityComparer_1_t5F84660374B493F86CCE91B7723DB110A0025F6B *)Castclass((RuntimeObject*)L_42, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_00d6: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_43 = V_0; NullCheck((Type_t *)L_43); bool L_44 = VirtFuncInvoker0< bool >::Invoke(66 /* System.Boolean System.Type::get_IsEnum() */, (Type_t *)L_43); if (!L_44) { goto IL_016f; } } { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_45 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); Type_t * L_46 = Enum_GetUnderlyingType_m0715B4E60E6909F03FF7302B6E20B1AB88DA84B1((Type_t *)L_45, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); int32_t L_47 = Type_GetTypeCode_m3105BBCE671D89EFE212F9BA06AAB90944A6116F((Type_t *)L_46, /*hidden argument*/NULL); V_2 = (int32_t)L_47; int32_t L_48 = V_2; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_48, (int32_t)5))) { case 0: { goto IL_012d; } case 1: { goto IL_0143; } case 2: { goto IL_0117; } case 3: { goto IL_0143; } case 4: { goto IL_0143; } case 5: { goto IL_0143; } case 6: { goto IL_0159; } case 7: { goto IL_0159; } } } { goto IL_016f; } IL_0117: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_49 = { reinterpret_cast<intptr_t> (ShortEnumEqualityComparer_1_tCB4B7DE9F58431002227076F18CFFC289C6CBD64_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_50 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_49, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_51 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_52 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_50, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_51, /*hidden argument*/NULL); return ((EqualityComparer_1_t5F84660374B493F86CCE91B7723DB110A0025F6B *)Castclass((RuntimeObject*)L_52, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_012d: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_53 = { reinterpret_cast<intptr_t> (SByteEnumEqualityComparer_1_t0E5A82C922F801F365CCC4BE3062A765423A5852_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_54 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_53, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_55 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_56 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_54, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_55, /*hidden argument*/NULL); return ((EqualityComparer_1_t5F84660374B493F86CCE91B7723DB110A0025F6B *)Castclass((RuntimeObject*)L_56, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_0143: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_57 = { reinterpret_cast<intptr_t> (EnumEqualityComparer_1_tC44C7E08405BCDA86FDDFB9714C4301D39723C3A_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_58 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_57, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_59 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_60 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_58, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_59, /*hidden argument*/NULL); return ((EqualityComparer_1_t5F84660374B493F86CCE91B7723DB110A0025F6B *)Castclass((RuntimeObject*)L_60, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_0159: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_61 = { reinterpret_cast<intptr_t> (LongEnumEqualityComparer_1_t6B940FD5688E20A1CF36AD68CCF3A39071FFB0DB_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_62 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_61, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_63 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_64 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_62, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_63, /*hidden argument*/NULL); return ((EqualityComparer_1_t5F84660374B493F86CCE91B7723DB110A0025F6B *)Castclass((RuntimeObject*)L_64, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_016f: { ObjectEqualityComparer_1_t99C7825C36DB817A63A867A122B2A47BAD67A5E9 * L_65 = (ObjectEqualityComparer_1_t99C7825C36DB817A63A867A122B2A47BAD67A5E9 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5)); (( void (*) (ObjectEqualityComparer_1_t99C7825C36DB817A63A867A122B2A47BAD67A5E9 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(L_65, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)); return L_65; } } // System.Int32 System.Collections.Generic.EqualityComparer`1<System.Decimal>::IndexOf(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t EqualityComparer_1_IndexOf_m3C5DF86B997CB7E3823654980BEAC80B3A163FFD_gshared (EqualityComparer_1_t5F84660374B493F86CCE91B7723DB110A0025F6B * __this, DecimalU5BU5D_t163CFBECCD3B6655700701D6451CA0CF493CBF0F* ___array0, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = ___startIndex2; int32_t L_1 = ___count3; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1)); int32_t L_2 = ___startIndex2; V_1 = (int32_t)L_2; goto IL_001f; } IL_0009: { DecimalU5BU5D_t163CFBECCD3B6655700701D6451CA0CF493CBF0F* L_3 = ___array0; int32_t L_4 = V_1; NullCheck(L_3); int32_t L_5 = L_4; Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_7 = ___value1; NullCheck((EqualityComparer_1_t5F84660374B493F86CCE91B7723DB110A0025F6B *)__this); bool L_8 = VirtFuncInvoker2< bool, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 , Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Decimal>::Equals(T,T) */, (EqualityComparer_1_t5F84660374B493F86CCE91B7723DB110A0025F6B *)__this, (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 )L_6, (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 )L_7); if (!L_8) { goto IL_001b; } } { int32_t L_9 = V_1; return L_9; } IL_001b: { int32_t L_10 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1)); } IL_001f: { int32_t L_11 = V_1; int32_t L_12 = V_0; if ((((int32_t)L_11) < ((int32_t)L_12))) { goto IL_0009; } } { return (-1); } } // System.Int32 System.Collections.Generic.EqualityComparer`1<System.Decimal>::LastIndexOf(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t EqualityComparer_1_LastIndexOf_m3F345F3F7BA2F7093DA3F5256E416B50884D43FB_gshared (EqualityComparer_1_t5F84660374B493F86CCE91B7723DB110A0025F6B * __this, DecimalU5BU5D_t163CFBECCD3B6655700701D6451CA0CF493CBF0F* ___array0, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = ___startIndex2; int32_t L_1 = ___count3; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1)); int32_t L_2 = ___startIndex2; V_1 = (int32_t)L_2; goto IL_0021; } IL_000b: { DecimalU5BU5D_t163CFBECCD3B6655700701D6451CA0CF493CBF0F* L_3 = ___array0; int32_t L_4 = V_1; NullCheck(L_3); int32_t L_5 = L_4; Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_7 = ___value1; NullCheck((EqualityComparer_1_t5F84660374B493F86CCE91B7723DB110A0025F6B *)__this); bool L_8 = VirtFuncInvoker2< bool, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 , Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Decimal>::Equals(T,T) */, (EqualityComparer_1_t5F84660374B493F86CCE91B7723DB110A0025F6B *)__this, (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 )L_6, (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 )L_7); if (!L_8) { goto IL_001d; } } { int32_t L_9 = V_1; return L_9; } IL_001d: { int32_t L_10 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_10, (int32_t)1)); } IL_0021: { int32_t L_11 = V_1; int32_t L_12 = V_0; if ((((int32_t)L_11) >= ((int32_t)L_12))) { goto IL_000b; } } { return (-1); } } // System.Int32 System.Collections.Generic.EqualityComparer`1<System.Decimal>::System.Collections.IEqualityComparer.GetHashCode(System.Object) extern "C" IL2CPP_METHOD_ATTR int32_t EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m139222047C962C058E1898B29E182D6191FDC1DB_gshared (EqualityComparer_1_t5F84660374B493F86CCE91B7723DB110A0025F6B * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___obj0; if (L_0) { goto IL_0005; } } { return 0; } IL_0005: { RuntimeObject * L_1 = ___obj0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))) { goto IL_001a; } } { RuntimeObject * L_2 = ___obj0; NullCheck((EqualityComparer_1_t5F84660374B493F86CCE91B7723DB110A0025F6B *)__this); int32_t L_3 = VirtFuncInvoker1< int32_t, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 >::Invoke(9 /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Decimal>::GetHashCode(T) */, (EqualityComparer_1_t5F84660374B493F86CCE91B7723DB110A0025F6B *)__this, (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 )((*(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *)((Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *)UnBox(L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))))); return L_3; } IL_001a: { ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84((int32_t)2, /*hidden argument*/NULL); return 0; } } // System.Boolean System.Collections.Generic.EqualityComparer`1<System.Decimal>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) extern "C" IL2CPP_METHOD_ATTR bool EqualityComparer_1_System_Collections_IEqualityComparer_Equals_mEF50858EBCBE875A88D7700F66E9178490082B84_gshared (EqualityComparer_1_t5F84660374B493F86CCE91B7723DB110A0025F6B * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___x0; RuntimeObject * L_1 = ___y1; if ((!(((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(RuntimeObject *)L_1)))) { goto IL_0006; } } { return (bool)1; } IL_0006: { RuntimeObject * L_2 = ___x0; if (!L_2) { goto IL_000c; } } { RuntimeObject * L_3 = ___y1; if (L_3) { goto IL_000e; } } IL_000c: { return (bool)0; } IL_000e: { RuntimeObject * L_4 = ___x0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))) { goto IL_0031; } } { RuntimeObject * L_5 = ___y1; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))) { goto IL_0031; } } { RuntimeObject * L_6 = ___x0; RuntimeObject * L_7 = ___y1; NullCheck((EqualityComparer_1_t5F84660374B493F86CCE91B7723DB110A0025F6B *)__this); bool L_8 = VirtFuncInvoker2< bool, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 , Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Decimal>::Equals(T,T) */, (EqualityComparer_1_t5F84660374B493F86CCE91B7723DB110A0025F6B *)__this, (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 )((*(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *)((Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *)UnBox(L_6, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8))))), (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 )((*(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *)((Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *)UnBox(L_7, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))))); return L_8; } IL_0031: { ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84((int32_t)2, /*hidden argument*/NULL); return (bool)0; } } // System.Void System.Collections.Generic.EqualityComparer`1<System.Decimal>::.ctor() extern "C" IL2CPP_METHOD_ATTR void EqualityComparer_1__ctor_mD6927F2C50264B6900B58702F9839B1A6F17CE7E_gshared (EqualityComparer_1_t5F84660374B493F86CCE91B7723DB110A0025F6B * __this, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Double>::get_Default() extern "C" IL2CPP_METHOD_ATTR EqualityComparer_1_t2284CDD98A505FC763285959CB32BF8796788102 * EqualityComparer_1_get_Default_m652E99BFD607C607FF6AE0369C03AA7DB4296BDA_gshared (const RuntimeMethod* method) { EqualityComparer_1_t2284CDD98A505FC763285959CB32BF8796788102 * V_0 = NULL; { EqualityComparer_1_t2284CDD98A505FC763285959CB32BF8796788102 * L_0 = ((EqualityComparer_1_t2284CDD98A505FC763285959CB32BF8796788102_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->get_defaultComparer_0(); il2cpp_codegen_memory_barrier(); V_0 = (EqualityComparer_1_t2284CDD98A505FC763285959CB32BF8796788102 *)L_0; EqualityComparer_1_t2284CDD98A505FC763285959CB32BF8796788102 * L_1 = V_0; if (L_1) { goto IL_0019; } } { EqualityComparer_1_t2284CDD98A505FC763285959CB32BF8796788102 * L_2 = (( EqualityComparer_1_t2284CDD98A505FC763285959CB32BF8796788102 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); V_0 = (EqualityComparer_1_t2284CDD98A505FC763285959CB32BF8796788102 *)L_2; EqualityComparer_1_t2284CDD98A505FC763285959CB32BF8796788102 * L_3 = V_0; il2cpp_codegen_memory_barrier(); ((EqualityComparer_1_t2284CDD98A505FC763285959CB32BF8796788102_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_defaultComparer_0(L_3); } IL_0019: { EqualityComparer_1_t2284CDD98A505FC763285959CB32BF8796788102 * L_4 = V_0; return L_4; } } // System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Double>::CreateComparer() extern "C" IL2CPP_METHOD_ATTR EqualityComparer_1_t2284CDD98A505FC763285959CB32BF8796788102 * EqualityComparer_1_CreateComparer_mD4CC3FFB246E8EB5AFC7E53227E6DD85542A1953_gshared (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (EqualityComparer_1_CreateComparer_mD4CC3FFB246E8EB5AFC7E53227E6DD85542A1953_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_0 = NULL; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_1 = NULL; int32_t V_2 = 0; { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 2)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL); V_0 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_1, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_2 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_3 = { reinterpret_cast<intptr_t> (Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_0_0_0_var) }; Type_t * L_4 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_3, /*hidden argument*/NULL); bool L_5 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_2, (Type_t *)L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_002d; } } { ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B * L_6 = (ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B *)il2cpp_codegen_object_new(ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B_il2cpp_TypeInfo_var); ByteEqualityComparer__ctor_m2B86B16398C9ADBA996127A209179E9654EF6A68(L_6, /*hidden argument*/NULL); return ((EqualityComparer_1_t2284CDD98A505FC763285959CB32BF8796788102 *)Castclass((RuntimeObject*)L_6, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_002d: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_7 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_8 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_9 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_8, /*hidden argument*/NULL); bool L_10 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_7, (Type_t *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_004a; } } { InternalStringComparer_tCD150130A3DB4C80186B5D8145B910B33496D4CD * L_11 = (InternalStringComparer_tCD150130A3DB4C80186B5D8145B910B33496D4CD *)il2cpp_codegen_object_new(InternalStringComparer_tCD150130A3DB4C80186B5D8145B910B33496D4CD_il2cpp_TypeInfo_var); InternalStringComparer__ctor_m471FF151AF831B76635ED96C53CF08114FD42C83(L_11, /*hidden argument*/NULL); return ((EqualityComparer_1_t2284CDD98A505FC763285959CB32BF8796788102 *)Castclass((RuntimeObject*)L_11, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_004a: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_12 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 4)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_13 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_12, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_14 = V_0; NullCheck((Type_t *)L_13); bool L_15 = VirtFuncInvoker1< bool, Type_t * >::Invoke(104 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_13, (Type_t *)L_14); if (!L_15) { goto IL_0072; } } { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_16 = { reinterpret_cast<intptr_t> (GenericEqualityComparer_1_t86530EF2BF9E43CCEE775B5862B48F735555A90B_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_17 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_16, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_18 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_19 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_17, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_18, /*hidden argument*/NULL); return ((EqualityComparer_1_t2284CDD98A505FC763285959CB32BF8796788102 *)Castclass((RuntimeObject*)L_19, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_0072: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_20 = V_0; NullCheck((Type_t *)L_20); bool L_21 = VirtFuncInvoker0< bool >::Invoke(70 /* System.Boolean System.Type::get_IsGenericType() */, (Type_t *)L_20); if (!L_21) { goto IL_00d6; } } { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_22 = V_0; NullCheck((Type_t *)L_22); Type_t * L_23 = VirtFuncInvoker0< Type_t * >::Invoke(95 /* System.Type System.Type::GetGenericTypeDefinition() */, (Type_t *)L_22); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_24 = { reinterpret_cast<intptr_t> (Nullable_1_t220FFA40D2CEE2CB28F8C04DB1216024A0BC75C3_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_25 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_24, /*hidden argument*/NULL); bool L_26 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_23, (Type_t *)L_25, /*hidden argument*/NULL); if (!L_26) { goto IL_00d6; } } { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_27 = V_0; NullCheck((Type_t *)L_27); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_28 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(94 /* System.Type[] System.Type::GetGenericArguments() */, (Type_t *)L_27); NullCheck(L_28); int32_t L_29 = 0; Type_t * L_30 = (L_28)->GetAt(static_cast<il2cpp_array_size_t>(L_29)); V_1 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_30, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_31 = { reinterpret_cast<intptr_t> (IEquatable_1_t7FBC51A9FCBF69422C0DEBF035FFDC9417EF3DA1_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_32 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_31, /*hidden argument*/NULL); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_33 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_34 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_33; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_35 = V_1; NullCheck(L_34); ArrayElementTypeCheck (L_34, L_35); (L_34)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_35); NullCheck((Type_t *)L_32); Type_t * L_36 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(90 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_32, (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_34); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_37 = V_1; NullCheck((Type_t *)L_36); bool L_38 = VirtFuncInvoker1< bool, Type_t * >::Invoke(104 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_36, (Type_t *)L_37); if (!L_38) { goto IL_00d6; } } { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_39 = { reinterpret_cast<intptr_t> (NullableEqualityComparer_1_tD235D1E336771C9615EB5024AC8C35CFF8ADD27F_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_40 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_39, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_41 = V_1; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_42 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_40, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_41, /*hidden argument*/NULL); return ((EqualityComparer_1_t2284CDD98A505FC763285959CB32BF8796788102 *)Castclass((RuntimeObject*)L_42, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_00d6: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_43 = V_0; NullCheck((Type_t *)L_43); bool L_44 = VirtFuncInvoker0< bool >::Invoke(66 /* System.Boolean System.Type::get_IsEnum() */, (Type_t *)L_43); if (!L_44) { goto IL_016f; } } { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_45 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); Type_t * L_46 = Enum_GetUnderlyingType_m0715B4E60E6909F03FF7302B6E20B1AB88DA84B1((Type_t *)L_45, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); int32_t L_47 = Type_GetTypeCode_m3105BBCE671D89EFE212F9BA06AAB90944A6116F((Type_t *)L_46, /*hidden argument*/NULL); V_2 = (int32_t)L_47; int32_t L_48 = V_2; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_48, (int32_t)5))) { case 0: { goto IL_012d; } case 1: { goto IL_0143; } case 2: { goto IL_0117; } case 3: { goto IL_0143; } case 4: { goto IL_0143; } case 5: { goto IL_0143; } case 6: { goto IL_0159; } case 7: { goto IL_0159; } } } { goto IL_016f; } IL_0117: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_49 = { reinterpret_cast<intptr_t> (ShortEnumEqualityComparer_1_tCB4B7DE9F58431002227076F18CFFC289C6CBD64_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_50 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_49, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_51 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_52 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_50, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_51, /*hidden argument*/NULL); return ((EqualityComparer_1_t2284CDD98A505FC763285959CB32BF8796788102 *)Castclass((RuntimeObject*)L_52, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_012d: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_53 = { reinterpret_cast<intptr_t> (SByteEnumEqualityComparer_1_t0E5A82C922F801F365CCC4BE3062A765423A5852_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_54 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_53, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_55 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_56 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_54, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_55, /*hidden argument*/NULL); return ((EqualityComparer_1_t2284CDD98A505FC763285959CB32BF8796788102 *)Castclass((RuntimeObject*)L_56, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_0143: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_57 = { reinterpret_cast<intptr_t> (EnumEqualityComparer_1_tC44C7E08405BCDA86FDDFB9714C4301D39723C3A_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_58 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_57, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_59 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_60 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_58, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_59, /*hidden argument*/NULL); return ((EqualityComparer_1_t2284CDD98A505FC763285959CB32BF8796788102 *)Castclass((RuntimeObject*)L_60, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_0159: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_61 = { reinterpret_cast<intptr_t> (LongEnumEqualityComparer_1_t6B940FD5688E20A1CF36AD68CCF3A39071FFB0DB_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_62 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_61, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_63 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_64 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_62, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_63, /*hidden argument*/NULL); return ((EqualityComparer_1_t2284CDD98A505FC763285959CB32BF8796788102 *)Castclass((RuntimeObject*)L_64, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_016f: { ObjectEqualityComparer_1_tFBFCFED401F928D53234B6BB0EFC2DE378E732C3 * L_65 = (ObjectEqualityComparer_1_tFBFCFED401F928D53234B6BB0EFC2DE378E732C3 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5)); (( void (*) (ObjectEqualityComparer_1_tFBFCFED401F928D53234B6BB0EFC2DE378E732C3 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(L_65, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)); return L_65; } } // System.Int32 System.Collections.Generic.EqualityComparer`1<System.Double>::IndexOf(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t EqualityComparer_1_IndexOf_mF938895F5D1DCCC80CBCB3EC6FCA814B7E448450_gshared (EqualityComparer_1_t2284CDD98A505FC763285959CB32BF8796788102 * __this, DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D* ___array0, double ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = ___startIndex2; int32_t L_1 = ___count3; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1)); int32_t L_2 = ___startIndex2; V_1 = (int32_t)L_2; goto IL_001f; } IL_0009: { DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D* L_3 = ___array0; int32_t L_4 = V_1; NullCheck(L_3); int32_t L_5 = L_4; double L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); double L_7 = ___value1; NullCheck((EqualityComparer_1_t2284CDD98A505FC763285959CB32BF8796788102 *)__this); bool L_8 = VirtFuncInvoker2< bool, double, double >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Double>::Equals(T,T) */, (EqualityComparer_1_t2284CDD98A505FC763285959CB32BF8796788102 *)__this, (double)L_6, (double)L_7); if (!L_8) { goto IL_001b; } } { int32_t L_9 = V_1; return L_9; } IL_001b: { int32_t L_10 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1)); } IL_001f: { int32_t L_11 = V_1; int32_t L_12 = V_0; if ((((int32_t)L_11) < ((int32_t)L_12))) { goto IL_0009; } } { return (-1); } } // System.Int32 System.Collections.Generic.EqualityComparer`1<System.Double>::LastIndexOf(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t EqualityComparer_1_LastIndexOf_m24C8939998F626E76E00A77F738ED5D1121F9917_gshared (EqualityComparer_1_t2284CDD98A505FC763285959CB32BF8796788102 * __this, DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D* ___array0, double ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = ___startIndex2; int32_t L_1 = ___count3; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1)); int32_t L_2 = ___startIndex2; V_1 = (int32_t)L_2; goto IL_0021; } IL_000b: { DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D* L_3 = ___array0; int32_t L_4 = V_1; NullCheck(L_3); int32_t L_5 = L_4; double L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); double L_7 = ___value1; NullCheck((EqualityComparer_1_t2284CDD98A505FC763285959CB32BF8796788102 *)__this); bool L_8 = VirtFuncInvoker2< bool, double, double >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Double>::Equals(T,T) */, (EqualityComparer_1_t2284CDD98A505FC763285959CB32BF8796788102 *)__this, (double)L_6, (double)L_7); if (!L_8) { goto IL_001d; } } { int32_t L_9 = V_1; return L_9; } IL_001d: { int32_t L_10 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_10, (int32_t)1)); } IL_0021: { int32_t L_11 = V_1; int32_t L_12 = V_0; if ((((int32_t)L_11) >= ((int32_t)L_12))) { goto IL_000b; } } { return (-1); } } // System.Int32 System.Collections.Generic.EqualityComparer`1<System.Double>::System.Collections.IEqualityComparer.GetHashCode(System.Object) extern "C" IL2CPP_METHOD_ATTR int32_t EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m306B6D1855DD917A1AE07FDDEE36A6E53C387984_gshared (EqualityComparer_1_t2284CDD98A505FC763285959CB32BF8796788102 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___obj0; if (L_0) { goto IL_0005; } } { return 0; } IL_0005: { RuntimeObject * L_1 = ___obj0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))) { goto IL_001a; } } { RuntimeObject * L_2 = ___obj0; NullCheck((EqualityComparer_1_t2284CDD98A505FC763285959CB32BF8796788102 *)__this); int32_t L_3 = VirtFuncInvoker1< int32_t, double >::Invoke(9 /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Double>::GetHashCode(T) */, (EqualityComparer_1_t2284CDD98A505FC763285959CB32BF8796788102 *)__this, (double)((*(double*)((double*)UnBox(L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))))); return L_3; } IL_001a: { ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84((int32_t)2, /*hidden argument*/NULL); return 0; } } // System.Boolean System.Collections.Generic.EqualityComparer`1<System.Double>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) extern "C" IL2CPP_METHOD_ATTR bool EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m67630D057089800DE06760C9F5715E08B4AB8BB9_gshared (EqualityComparer_1_t2284CDD98A505FC763285959CB32BF8796788102 * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___x0; RuntimeObject * L_1 = ___y1; if ((!(((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(RuntimeObject *)L_1)))) { goto IL_0006; } } { return (bool)1; } IL_0006: { RuntimeObject * L_2 = ___x0; if (!L_2) { goto IL_000c; } } { RuntimeObject * L_3 = ___y1; if (L_3) { goto IL_000e; } } IL_000c: { return (bool)0; } IL_000e: { RuntimeObject * L_4 = ___x0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))) { goto IL_0031; } } { RuntimeObject * L_5 = ___y1; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))) { goto IL_0031; } } { RuntimeObject * L_6 = ___x0; RuntimeObject * L_7 = ___y1; NullCheck((EqualityComparer_1_t2284CDD98A505FC763285959CB32BF8796788102 *)__this); bool L_8 = VirtFuncInvoker2< bool, double, double >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Double>::Equals(T,T) */, (EqualityComparer_1_t2284CDD98A505FC763285959CB32BF8796788102 *)__this, (double)((*(double*)((double*)UnBox(L_6, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8))))), (double)((*(double*)((double*)UnBox(L_7, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))))); return L_8; } IL_0031: { ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84((int32_t)2, /*hidden argument*/NULL); return (bool)0; } } // System.Void System.Collections.Generic.EqualityComparer`1<System.Double>::.ctor() extern "C" IL2CPP_METHOD_ATTR void EqualityComparer_1__ctor_m0A781D2250EF6E779F8D6CEC34E22A22AB4BC61F_gshared (EqualityComparer_1_t2284CDD98A505FC763285959CB32BF8796788102 * __this, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Guid>::get_Default() extern "C" IL2CPP_METHOD_ATTR EqualityComparer_1_t0D118F538343D64A03149EE6C285141397B3217E * EqualityComparer_1_get_Default_mF914C579CFCC74C416DF7ED267A3C484AEB384BF_gshared (const RuntimeMethod* method) { EqualityComparer_1_t0D118F538343D64A03149EE6C285141397B3217E * V_0 = NULL; { EqualityComparer_1_t0D118F538343D64A03149EE6C285141397B3217E * L_0 = ((EqualityComparer_1_t0D118F538343D64A03149EE6C285141397B3217E_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->get_defaultComparer_0(); il2cpp_codegen_memory_barrier(); V_0 = (EqualityComparer_1_t0D118F538343D64A03149EE6C285141397B3217E *)L_0; EqualityComparer_1_t0D118F538343D64A03149EE6C285141397B3217E * L_1 = V_0; if (L_1) { goto IL_0019; } } { EqualityComparer_1_t0D118F538343D64A03149EE6C285141397B3217E * L_2 = (( EqualityComparer_1_t0D118F538343D64A03149EE6C285141397B3217E * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); V_0 = (EqualityComparer_1_t0D118F538343D64A03149EE6C285141397B3217E *)L_2; EqualityComparer_1_t0D118F538343D64A03149EE6C285141397B3217E * L_3 = V_0; il2cpp_codegen_memory_barrier(); ((EqualityComparer_1_t0D118F538343D64A03149EE6C285141397B3217E_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_defaultComparer_0(L_3); } IL_0019: { EqualityComparer_1_t0D118F538343D64A03149EE6C285141397B3217E * L_4 = V_0; return L_4; } } // System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Guid>::CreateComparer() extern "C" IL2CPP_METHOD_ATTR EqualityComparer_1_t0D118F538343D64A03149EE6C285141397B3217E * EqualityComparer_1_CreateComparer_m18242C5753FFA716C6FFEA3D3F42E90AF05CC929_gshared (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (EqualityComparer_1_CreateComparer_m18242C5753FFA716C6FFEA3D3F42E90AF05CC929_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_0 = NULL; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_1 = NULL; int32_t V_2 = 0; { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 2)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL); V_0 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_1, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_2 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_3 = { reinterpret_cast<intptr_t> (Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_0_0_0_var) }; Type_t * L_4 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_3, /*hidden argument*/NULL); bool L_5 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_2, (Type_t *)L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_002d; } } { ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B * L_6 = (ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B *)il2cpp_codegen_object_new(ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B_il2cpp_TypeInfo_var); ByteEqualityComparer__ctor_m2B86B16398C9ADBA996127A209179E9654EF6A68(L_6, /*hidden argument*/NULL); return ((EqualityComparer_1_t0D118F538343D64A03149EE6C285141397B3217E *)Castclass((RuntimeObject*)L_6, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_002d: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_7 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_8 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_9 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_8, /*hidden argument*/NULL); bool L_10 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_7, (Type_t *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_004a; } } { InternalStringComparer_tCD150130A3DB4C80186B5D8145B910B33496D4CD * L_11 = (InternalStringComparer_tCD150130A3DB4C80186B5D8145B910B33496D4CD *)il2cpp_codegen_object_new(InternalStringComparer_tCD150130A3DB4C80186B5D8145B910B33496D4CD_il2cpp_TypeInfo_var); InternalStringComparer__ctor_m471FF151AF831B76635ED96C53CF08114FD42C83(L_11, /*hidden argument*/NULL); return ((EqualityComparer_1_t0D118F538343D64A03149EE6C285141397B3217E *)Castclass((RuntimeObject*)L_11, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_004a: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_12 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 4)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_13 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_12, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_14 = V_0; NullCheck((Type_t *)L_13); bool L_15 = VirtFuncInvoker1< bool, Type_t * >::Invoke(104 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_13, (Type_t *)L_14); if (!L_15) { goto IL_0072; } } { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_16 = { reinterpret_cast<intptr_t> (GenericEqualityComparer_1_t86530EF2BF9E43CCEE775B5862B48F735555A90B_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_17 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_16, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_18 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_19 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_17, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_18, /*hidden argument*/NULL); return ((EqualityComparer_1_t0D118F538343D64A03149EE6C285141397B3217E *)Castclass((RuntimeObject*)L_19, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_0072: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_20 = V_0; NullCheck((Type_t *)L_20); bool L_21 = VirtFuncInvoker0< bool >::Invoke(70 /* System.Boolean System.Type::get_IsGenericType() */, (Type_t *)L_20); if (!L_21) { goto IL_00d6; } } { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_22 = V_0; NullCheck((Type_t *)L_22); Type_t * L_23 = VirtFuncInvoker0< Type_t * >::Invoke(95 /* System.Type System.Type::GetGenericTypeDefinition() */, (Type_t *)L_22); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_24 = { reinterpret_cast<intptr_t> (Nullable_1_t220FFA40D2CEE2CB28F8C04DB1216024A0BC75C3_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_25 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_24, /*hidden argument*/NULL); bool L_26 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_23, (Type_t *)L_25, /*hidden argument*/NULL); if (!L_26) { goto IL_00d6; } } { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_27 = V_0; NullCheck((Type_t *)L_27); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_28 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(94 /* System.Type[] System.Type::GetGenericArguments() */, (Type_t *)L_27); NullCheck(L_28); int32_t L_29 = 0; Type_t * L_30 = (L_28)->GetAt(static_cast<il2cpp_array_size_t>(L_29)); V_1 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_30, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_31 = { reinterpret_cast<intptr_t> (IEquatable_1_t7FBC51A9FCBF69422C0DEBF035FFDC9417EF3DA1_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_32 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_31, /*hidden argument*/NULL); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_33 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_34 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_33; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_35 = V_1; NullCheck(L_34); ArrayElementTypeCheck (L_34, L_35); (L_34)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_35); NullCheck((Type_t *)L_32); Type_t * L_36 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(90 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_32, (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_34); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_37 = V_1; NullCheck((Type_t *)L_36); bool L_38 = VirtFuncInvoker1< bool, Type_t * >::Invoke(104 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_36, (Type_t *)L_37); if (!L_38) { goto IL_00d6; } } { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_39 = { reinterpret_cast<intptr_t> (NullableEqualityComparer_1_tD235D1E336771C9615EB5024AC8C35CFF8ADD27F_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_40 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_39, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_41 = V_1; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_42 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_40, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_41, /*hidden argument*/NULL); return ((EqualityComparer_1_t0D118F538343D64A03149EE6C285141397B3217E *)Castclass((RuntimeObject*)L_42, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_00d6: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_43 = V_0; NullCheck((Type_t *)L_43); bool L_44 = VirtFuncInvoker0< bool >::Invoke(66 /* System.Boolean System.Type::get_IsEnum() */, (Type_t *)L_43); if (!L_44) { goto IL_016f; } } { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_45 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); Type_t * L_46 = Enum_GetUnderlyingType_m0715B4E60E6909F03FF7302B6E20B1AB88DA84B1((Type_t *)L_45, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); int32_t L_47 = Type_GetTypeCode_m3105BBCE671D89EFE212F9BA06AAB90944A6116F((Type_t *)L_46, /*hidden argument*/NULL); V_2 = (int32_t)L_47; int32_t L_48 = V_2; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_48, (int32_t)5))) { case 0: { goto IL_012d; } case 1: { goto IL_0143; } case 2: { goto IL_0117; } case 3: { goto IL_0143; } case 4: { goto IL_0143; } case 5: { goto IL_0143; } case 6: { goto IL_0159; } case 7: { goto IL_0159; } } } { goto IL_016f; } IL_0117: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_49 = { reinterpret_cast<intptr_t> (ShortEnumEqualityComparer_1_tCB4B7DE9F58431002227076F18CFFC289C6CBD64_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_50 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_49, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_51 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_52 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_50, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_51, /*hidden argument*/NULL); return ((EqualityComparer_1_t0D118F538343D64A03149EE6C285141397B3217E *)Castclass((RuntimeObject*)L_52, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_012d: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_53 = { reinterpret_cast<intptr_t> (SByteEnumEqualityComparer_1_t0E5A82C922F801F365CCC4BE3062A765423A5852_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_54 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_53, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_55 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_56 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_54, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_55, /*hidden argument*/NULL); return ((EqualityComparer_1_t0D118F538343D64A03149EE6C285141397B3217E *)Castclass((RuntimeObject*)L_56, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_0143: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_57 = { reinterpret_cast<intptr_t> (EnumEqualityComparer_1_tC44C7E08405BCDA86FDDFB9714C4301D39723C3A_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_58 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_57, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_59 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_60 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_58, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_59, /*hidden argument*/NULL); return ((EqualityComparer_1_t0D118F538343D64A03149EE6C285141397B3217E *)Castclass((RuntimeObject*)L_60, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_0159: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_61 = { reinterpret_cast<intptr_t> (LongEnumEqualityComparer_1_t6B940FD5688E20A1CF36AD68CCF3A39071FFB0DB_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_62 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_61, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_63 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_64 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_62, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_63, /*hidden argument*/NULL); return ((EqualityComparer_1_t0D118F538343D64A03149EE6C285141397B3217E *)Castclass((RuntimeObject*)L_64, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_016f: { ObjectEqualityComparer_1_t63F49A3AB85A6A54BC975B84E460C6A7FA734EBF * L_65 = (ObjectEqualityComparer_1_t63F49A3AB85A6A54BC975B84E460C6A7FA734EBF *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5)); (( void (*) (ObjectEqualityComparer_1_t63F49A3AB85A6A54BC975B84E460C6A7FA734EBF *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(L_65, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)); return L_65; } } // System.Int32 System.Collections.Generic.EqualityComparer`1<System.Guid>::IndexOf(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t EqualityComparer_1_IndexOf_m4AC3A9DBF8D19B71BD06292D8F2031586B7FF9CE_gshared (EqualityComparer_1_t0D118F538343D64A03149EE6C285141397B3217E * __this, GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* ___array0, Guid_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = ___startIndex2; int32_t L_1 = ___count3; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1)); int32_t L_2 = ___startIndex2; V_1 = (int32_t)L_2; goto IL_001f; } IL_0009: { GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* L_3 = ___array0; int32_t L_4 = V_1; NullCheck(L_3); int32_t L_5 = L_4; Guid_t L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); Guid_t L_7 = ___value1; NullCheck((EqualityComparer_1_t0D118F538343D64A03149EE6C285141397B3217E *)__this); bool L_8 = VirtFuncInvoker2< bool, Guid_t , Guid_t >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Guid>::Equals(T,T) */, (EqualityComparer_1_t0D118F538343D64A03149EE6C285141397B3217E *)__this, (Guid_t )L_6, (Guid_t )L_7); if (!L_8) { goto IL_001b; } } { int32_t L_9 = V_1; return L_9; } IL_001b: { int32_t L_10 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1)); } IL_001f: { int32_t L_11 = V_1; int32_t L_12 = V_0; if ((((int32_t)L_11) < ((int32_t)L_12))) { goto IL_0009; } } { return (-1); } } // System.Int32 System.Collections.Generic.EqualityComparer`1<System.Guid>::LastIndexOf(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t EqualityComparer_1_LastIndexOf_m08AD4A8F01F80C7119F1750C44041CC9B390595F_gshared (EqualityComparer_1_t0D118F538343D64A03149EE6C285141397B3217E * __this, GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* ___array0, Guid_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = ___startIndex2; int32_t L_1 = ___count3; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1)); int32_t L_2 = ___startIndex2; V_1 = (int32_t)L_2; goto IL_0021; } IL_000b: { GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* L_3 = ___array0; int32_t L_4 = V_1; NullCheck(L_3); int32_t L_5 = L_4; Guid_t L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); Guid_t L_7 = ___value1; NullCheck((EqualityComparer_1_t0D118F538343D64A03149EE6C285141397B3217E *)__this); bool L_8 = VirtFuncInvoker2< bool, Guid_t , Guid_t >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Guid>::Equals(T,T) */, (EqualityComparer_1_t0D118F538343D64A03149EE6C285141397B3217E *)__this, (Guid_t )L_6, (Guid_t )L_7); if (!L_8) { goto IL_001d; } } { int32_t L_9 = V_1; return L_9; } IL_001d: { int32_t L_10 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_10, (int32_t)1)); } IL_0021: { int32_t L_11 = V_1; int32_t L_12 = V_0; if ((((int32_t)L_11) >= ((int32_t)L_12))) { goto IL_000b; } } { return (-1); } } // System.Int32 System.Collections.Generic.EqualityComparer`1<System.Guid>::System.Collections.IEqualityComparer.GetHashCode(System.Object) extern "C" IL2CPP_METHOD_ATTR int32_t EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m29A87370BEC8B82AEEFB7D5D8D46290C108F5B72_gshared (EqualityComparer_1_t0D118F538343D64A03149EE6C285141397B3217E * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___obj0; if (L_0) { goto IL_0005; } } { return 0; } IL_0005: { RuntimeObject * L_1 = ___obj0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))) { goto IL_001a; } } { RuntimeObject * L_2 = ___obj0; NullCheck((EqualityComparer_1_t0D118F538343D64A03149EE6C285141397B3217E *)__this); int32_t L_3 = VirtFuncInvoker1< int32_t, Guid_t >::Invoke(9 /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Guid>::GetHashCode(T) */, (EqualityComparer_1_t0D118F538343D64A03149EE6C285141397B3217E *)__this, (Guid_t )((*(Guid_t *)((Guid_t *)UnBox(L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))))); return L_3; } IL_001a: { ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84((int32_t)2, /*hidden argument*/NULL); return 0; } } // System.Boolean System.Collections.Generic.EqualityComparer`1<System.Guid>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) extern "C" IL2CPP_METHOD_ATTR bool EqualityComparer_1_System_Collections_IEqualityComparer_Equals_mEC9BDD3234F1BCF30854003C2EA6CEC6AD26DA8E_gshared (EqualityComparer_1_t0D118F538343D64A03149EE6C285141397B3217E * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___x0; RuntimeObject * L_1 = ___y1; if ((!(((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(RuntimeObject *)L_1)))) { goto IL_0006; } } { return (bool)1; } IL_0006: { RuntimeObject * L_2 = ___x0; if (!L_2) { goto IL_000c; } } { RuntimeObject * L_3 = ___y1; if (L_3) { goto IL_000e; } } IL_000c: { return (bool)0; } IL_000e: { RuntimeObject * L_4 = ___x0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))) { goto IL_0031; } } { RuntimeObject * L_5 = ___y1; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))) { goto IL_0031; } } { RuntimeObject * L_6 = ___x0; RuntimeObject * L_7 = ___y1; NullCheck((EqualityComparer_1_t0D118F538343D64A03149EE6C285141397B3217E *)__this); bool L_8 = VirtFuncInvoker2< bool, Guid_t , Guid_t >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Guid>::Equals(T,T) */, (EqualityComparer_1_t0D118F538343D64A03149EE6C285141397B3217E *)__this, (Guid_t )((*(Guid_t *)((Guid_t *)UnBox(L_6, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8))))), (Guid_t )((*(Guid_t *)((Guid_t *)UnBox(L_7, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))))); return L_8; } IL_0031: { ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84((int32_t)2, /*hidden argument*/NULL); return (bool)0; } } // System.Void System.Collections.Generic.EqualityComparer`1<System.Guid>::.ctor() extern "C" IL2CPP_METHOD_ATTR void EqualityComparer_1__ctor_m36741616389F18E8BE332190727FF7AEF8319C81_gshared (EqualityComparer_1_t0D118F538343D64A03149EE6C285141397B3217E * __this, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Int16>::get_Default() extern "C" IL2CPP_METHOD_ATTR EqualityComparer_1_t4CD1CCB3DD1E825E044304118760FAF6CBEE389D * EqualityComparer_1_get_Default_m2AEFDB3BCF07619AD134345EEC46EFDF7DC28CB4_gshared (const RuntimeMethod* method) { EqualityComparer_1_t4CD1CCB3DD1E825E044304118760FAF6CBEE389D * V_0 = NULL; { EqualityComparer_1_t4CD1CCB3DD1E825E044304118760FAF6CBEE389D * L_0 = ((EqualityComparer_1_t4CD1CCB3DD1E825E044304118760FAF6CBEE389D_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->get_defaultComparer_0(); il2cpp_codegen_memory_barrier(); V_0 = (EqualityComparer_1_t4CD1CCB3DD1E825E044304118760FAF6CBEE389D *)L_0; EqualityComparer_1_t4CD1CCB3DD1E825E044304118760FAF6CBEE389D * L_1 = V_0; if (L_1) { goto IL_0019; } } { EqualityComparer_1_t4CD1CCB3DD1E825E044304118760FAF6CBEE389D * L_2 = (( EqualityComparer_1_t4CD1CCB3DD1E825E044304118760FAF6CBEE389D * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); V_0 = (EqualityComparer_1_t4CD1CCB3DD1E825E044304118760FAF6CBEE389D *)L_2; EqualityComparer_1_t4CD1CCB3DD1E825E044304118760FAF6CBEE389D * L_3 = V_0; il2cpp_codegen_memory_barrier(); ((EqualityComparer_1_t4CD1CCB3DD1E825E044304118760FAF6CBEE389D_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_defaultComparer_0(L_3); } IL_0019: { EqualityComparer_1_t4CD1CCB3DD1E825E044304118760FAF6CBEE389D * L_4 = V_0; return L_4; } } // System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Int16>::CreateComparer() extern "C" IL2CPP_METHOD_ATTR EqualityComparer_1_t4CD1CCB3DD1E825E044304118760FAF6CBEE389D * EqualityComparer_1_CreateComparer_mC0DC85B532B55655CCDF2E771E4C27B4B8E1B0EF_gshared (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (EqualityComparer_1_CreateComparer_mC0DC85B532B55655CCDF2E771E4C27B4B8E1B0EF_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_0 = NULL; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_1 = NULL; int32_t V_2 = 0; { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 2)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL); V_0 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_1, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_2 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_3 = { reinterpret_cast<intptr_t> (Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_0_0_0_var) }; Type_t * L_4 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_3, /*hidden argument*/NULL); bool L_5 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_2, (Type_t *)L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_002d; } } { ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B * L_6 = (ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B *)il2cpp_codegen_object_new(ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B_il2cpp_TypeInfo_var); ByteEqualityComparer__ctor_m2B86B16398C9ADBA996127A209179E9654EF6A68(L_6, /*hidden argument*/NULL); return ((EqualityComparer_1_t4CD1CCB3DD1E825E044304118760FAF6CBEE389D *)Castclass((RuntimeObject*)L_6, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_002d: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_7 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_8 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_9 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_8, /*hidden argument*/NULL); bool L_10 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_7, (Type_t *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_004a; } } { InternalStringComparer_tCD150130A3DB4C80186B5D8145B910B33496D4CD * L_11 = (InternalStringComparer_tCD150130A3DB4C80186B5D8145B910B33496D4CD *)il2cpp_codegen_object_new(InternalStringComparer_tCD150130A3DB4C80186B5D8145B910B33496D4CD_il2cpp_TypeInfo_var); InternalStringComparer__ctor_m471FF151AF831B76635ED96C53CF08114FD42C83(L_11, /*hidden argument*/NULL); return ((EqualityComparer_1_t4CD1CCB3DD1E825E044304118760FAF6CBEE389D *)Castclass((RuntimeObject*)L_11, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_004a: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_12 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 4)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_13 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_12, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_14 = V_0; NullCheck((Type_t *)L_13); bool L_15 = VirtFuncInvoker1< bool, Type_t * >::Invoke(104 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_13, (Type_t *)L_14); if (!L_15) { goto IL_0072; } } { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_16 = { reinterpret_cast<intptr_t> (GenericEqualityComparer_1_t86530EF2BF9E43CCEE775B5862B48F735555A90B_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_17 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_16, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_18 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_19 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_17, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_18, /*hidden argument*/NULL); return ((EqualityComparer_1_t4CD1CCB3DD1E825E044304118760FAF6CBEE389D *)Castclass((RuntimeObject*)L_19, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_0072: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_20 = V_0; NullCheck((Type_t *)L_20); bool L_21 = VirtFuncInvoker0< bool >::Invoke(70 /* System.Boolean System.Type::get_IsGenericType() */, (Type_t *)L_20); if (!L_21) { goto IL_00d6; } } { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_22 = V_0; NullCheck((Type_t *)L_22); Type_t * L_23 = VirtFuncInvoker0< Type_t * >::Invoke(95 /* System.Type System.Type::GetGenericTypeDefinition() */, (Type_t *)L_22); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_24 = { reinterpret_cast<intptr_t> (Nullable_1_t220FFA40D2CEE2CB28F8C04DB1216024A0BC75C3_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_25 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_24, /*hidden argument*/NULL); bool L_26 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_23, (Type_t *)L_25, /*hidden argument*/NULL); if (!L_26) { goto IL_00d6; } } { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_27 = V_0; NullCheck((Type_t *)L_27); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_28 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(94 /* System.Type[] System.Type::GetGenericArguments() */, (Type_t *)L_27); NullCheck(L_28); int32_t L_29 = 0; Type_t * L_30 = (L_28)->GetAt(static_cast<il2cpp_array_size_t>(L_29)); V_1 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_30, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_31 = { reinterpret_cast<intptr_t> (IEquatable_1_t7FBC51A9FCBF69422C0DEBF035FFDC9417EF3DA1_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_32 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_31, /*hidden argument*/NULL); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_33 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_34 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_33; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_35 = V_1; NullCheck(L_34); ArrayElementTypeCheck (L_34, L_35); (L_34)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_35); NullCheck((Type_t *)L_32); Type_t * L_36 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(90 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_32, (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_34); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_37 = V_1; NullCheck((Type_t *)L_36); bool L_38 = VirtFuncInvoker1< bool, Type_t * >::Invoke(104 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_36, (Type_t *)L_37); if (!L_38) { goto IL_00d6; } } { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_39 = { reinterpret_cast<intptr_t> (NullableEqualityComparer_1_tD235D1E336771C9615EB5024AC8C35CFF8ADD27F_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_40 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_39, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_41 = V_1; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_42 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_40, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_41, /*hidden argument*/NULL); return ((EqualityComparer_1_t4CD1CCB3DD1E825E044304118760FAF6CBEE389D *)Castclass((RuntimeObject*)L_42, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_00d6: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_43 = V_0; NullCheck((Type_t *)L_43); bool L_44 = VirtFuncInvoker0< bool >::Invoke(66 /* System.Boolean System.Type::get_IsEnum() */, (Type_t *)L_43); if (!L_44) { goto IL_016f; } } { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_45 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); Type_t * L_46 = Enum_GetUnderlyingType_m0715B4E60E6909F03FF7302B6E20B1AB88DA84B1((Type_t *)L_45, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); int32_t L_47 = Type_GetTypeCode_m3105BBCE671D89EFE212F9BA06AAB90944A6116F((Type_t *)L_46, /*hidden argument*/NULL); V_2 = (int32_t)L_47; int32_t L_48 = V_2; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_48, (int32_t)5))) { case 0: { goto IL_012d; } case 1: { goto IL_0143; } case 2: { goto IL_0117; } case 3: { goto IL_0143; } case 4: { goto IL_0143; } case 5: { goto IL_0143; } case 6: { goto IL_0159; } case 7: { goto IL_0159; } } } { goto IL_016f; } IL_0117: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_49 = { reinterpret_cast<intptr_t> (ShortEnumEqualityComparer_1_tCB4B7DE9F58431002227076F18CFFC289C6CBD64_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_50 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_49, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_51 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_52 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_50, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_51, /*hidden argument*/NULL); return ((EqualityComparer_1_t4CD1CCB3DD1E825E044304118760FAF6CBEE389D *)Castclass((RuntimeObject*)L_52, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_012d: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_53 = { reinterpret_cast<intptr_t> (SByteEnumEqualityComparer_1_t0E5A82C922F801F365CCC4BE3062A765423A5852_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_54 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_53, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_55 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_56 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_54, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_55, /*hidden argument*/NULL); return ((EqualityComparer_1_t4CD1CCB3DD1E825E044304118760FAF6CBEE389D *)Castclass((RuntimeObject*)L_56, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_0143: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_57 = { reinterpret_cast<intptr_t> (EnumEqualityComparer_1_tC44C7E08405BCDA86FDDFB9714C4301D39723C3A_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_58 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_57, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_59 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_60 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_58, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_59, /*hidden argument*/NULL); return ((EqualityComparer_1_t4CD1CCB3DD1E825E044304118760FAF6CBEE389D *)Castclass((RuntimeObject*)L_60, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_0159: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_61 = { reinterpret_cast<intptr_t> (LongEnumEqualityComparer_1_t6B940FD5688E20A1CF36AD68CCF3A39071FFB0DB_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_62 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_61, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_63 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_64 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_62, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_63, /*hidden argument*/NULL); return ((EqualityComparer_1_t4CD1CCB3DD1E825E044304118760FAF6CBEE389D *)Castclass((RuntimeObject*)L_64, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_016f: { ObjectEqualityComparer_1_t4BE55CB7FFC41D992028CD95C949EBE0386088F8 * L_65 = (ObjectEqualityComparer_1_t4BE55CB7FFC41D992028CD95C949EBE0386088F8 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5)); (( void (*) (ObjectEqualityComparer_1_t4BE55CB7FFC41D992028CD95C949EBE0386088F8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(L_65, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)); return L_65; } } // System.Int32 System.Collections.Generic.EqualityComparer`1<System.Int16>::IndexOf(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t EqualityComparer_1_IndexOf_mEDDB265AA151A7A02199C77D72B9588FAFA36B8D_gshared (EqualityComparer_1_t4CD1CCB3DD1E825E044304118760FAF6CBEE389D * __this, Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28* ___array0, int16_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = ___startIndex2; int32_t L_1 = ___count3; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1)); int32_t L_2 = ___startIndex2; V_1 = (int32_t)L_2; goto IL_001f; } IL_0009: { Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28* L_3 = ___array0; int32_t L_4 = V_1; NullCheck(L_3); int32_t L_5 = L_4; int16_t L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); int16_t L_7 = ___value1; NullCheck((EqualityComparer_1_t4CD1CCB3DD1E825E044304118760FAF6CBEE389D *)__this); bool L_8 = VirtFuncInvoker2< bool, int16_t, int16_t >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Int16>::Equals(T,T) */, (EqualityComparer_1_t4CD1CCB3DD1E825E044304118760FAF6CBEE389D *)__this, (int16_t)L_6, (int16_t)L_7); if (!L_8) { goto IL_001b; } } { int32_t L_9 = V_1; return L_9; } IL_001b: { int32_t L_10 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1)); } IL_001f: { int32_t L_11 = V_1; int32_t L_12 = V_0; if ((((int32_t)L_11) < ((int32_t)L_12))) { goto IL_0009; } } { return (-1); } } // System.Int32 System.Collections.Generic.EqualityComparer`1<System.Int16>::LastIndexOf(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t EqualityComparer_1_LastIndexOf_mD581BD6F43A40619295F99AE64DFEAA807C3F17F_gshared (EqualityComparer_1_t4CD1CCB3DD1E825E044304118760FAF6CBEE389D * __this, Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28* ___array0, int16_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = ___startIndex2; int32_t L_1 = ___count3; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1)); int32_t L_2 = ___startIndex2; V_1 = (int32_t)L_2; goto IL_0021; } IL_000b: { Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28* L_3 = ___array0; int32_t L_4 = V_1; NullCheck(L_3); int32_t L_5 = L_4; int16_t L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); int16_t L_7 = ___value1; NullCheck((EqualityComparer_1_t4CD1CCB3DD1E825E044304118760FAF6CBEE389D *)__this); bool L_8 = VirtFuncInvoker2< bool, int16_t, int16_t >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Int16>::Equals(T,T) */, (EqualityComparer_1_t4CD1CCB3DD1E825E044304118760FAF6CBEE389D *)__this, (int16_t)L_6, (int16_t)L_7); if (!L_8) { goto IL_001d; } } { int32_t L_9 = V_1; return L_9; } IL_001d: { int32_t L_10 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_10, (int32_t)1)); } IL_0021: { int32_t L_11 = V_1; int32_t L_12 = V_0; if ((((int32_t)L_11) >= ((int32_t)L_12))) { goto IL_000b; } } { return (-1); } } // System.Int32 System.Collections.Generic.EqualityComparer`1<System.Int16>::System.Collections.IEqualityComparer.GetHashCode(System.Object) extern "C" IL2CPP_METHOD_ATTR int32_t EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_mD5D73958EBE0B652A303B1003AC964411F3FB13E_gshared (EqualityComparer_1_t4CD1CCB3DD1E825E044304118760FAF6CBEE389D * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___obj0; if (L_0) { goto IL_0005; } } { return 0; } IL_0005: { RuntimeObject * L_1 = ___obj0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))) { goto IL_001a; } } { RuntimeObject * L_2 = ___obj0; NullCheck((EqualityComparer_1_t4CD1CCB3DD1E825E044304118760FAF6CBEE389D *)__this); int32_t L_3 = VirtFuncInvoker1< int32_t, int16_t >::Invoke(9 /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Int16>::GetHashCode(T) */, (EqualityComparer_1_t4CD1CCB3DD1E825E044304118760FAF6CBEE389D *)__this, (int16_t)((*(int16_t*)((int16_t*)UnBox(L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))))); return L_3; } IL_001a: { ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84((int32_t)2, /*hidden argument*/NULL); return 0; } } // System.Boolean System.Collections.Generic.EqualityComparer`1<System.Int16>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) extern "C" IL2CPP_METHOD_ATTR bool EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m407C0289C44257AFB3B988D7DB867218D9363DE4_gshared (EqualityComparer_1_t4CD1CCB3DD1E825E044304118760FAF6CBEE389D * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___x0; RuntimeObject * L_1 = ___y1; if ((!(((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(RuntimeObject *)L_1)))) { goto IL_0006; } } { return (bool)1; } IL_0006: { RuntimeObject * L_2 = ___x0; if (!L_2) { goto IL_000c; } } { RuntimeObject * L_3 = ___y1; if (L_3) { goto IL_000e; } } IL_000c: { return (bool)0; } IL_000e: { RuntimeObject * L_4 = ___x0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))) { goto IL_0031; } } { RuntimeObject * L_5 = ___y1; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))) { goto IL_0031; } } { RuntimeObject * L_6 = ___x0; RuntimeObject * L_7 = ___y1; NullCheck((EqualityComparer_1_t4CD1CCB3DD1E825E044304118760FAF6CBEE389D *)__this); bool L_8 = VirtFuncInvoker2< bool, int16_t, int16_t >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Int16>::Equals(T,T) */, (EqualityComparer_1_t4CD1CCB3DD1E825E044304118760FAF6CBEE389D *)__this, (int16_t)((*(int16_t*)((int16_t*)UnBox(L_6, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8))))), (int16_t)((*(int16_t*)((int16_t*)UnBox(L_7, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))))); return L_8; } IL_0031: { ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84((int32_t)2, /*hidden argument*/NULL); return (bool)0; } } // System.Void System.Collections.Generic.EqualityComparer`1<System.Int16>::.ctor() extern "C" IL2CPP_METHOD_ATTR void EqualityComparer_1__ctor_mEEBD58A83A60D8DE946615244EDBA65399BD725D_gshared (EqualityComparer_1_t4CD1CCB3DD1E825E044304118760FAF6CBEE389D * __this, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Int32>::get_Default() extern "C" IL2CPP_METHOD_ATTR EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3 * EqualityComparer_1_get_Default_m29AB689E21B310DF9163AE628A014EC80A4EBC94_gshared (const RuntimeMethod* method) { EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3 * V_0 = NULL; { EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3 * L_0 = ((EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->get_defaultComparer_0(); il2cpp_codegen_memory_barrier(); V_0 = (EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3 *)L_0; EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3 * L_1 = V_0; if (L_1) { goto IL_0019; } } { EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3 * L_2 = (( EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); V_0 = (EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3 *)L_2; EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3 * L_3 = V_0; il2cpp_codegen_memory_barrier(); ((EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_defaultComparer_0(L_3); } IL_0019: { EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3 * L_4 = V_0; return L_4; } } // System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Int32>::CreateComparer() extern "C" IL2CPP_METHOD_ATTR EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3 * EqualityComparer_1_CreateComparer_m81D95191FB1E936EEDE12D0820E7C5B73623FA69_gshared (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (EqualityComparer_1_CreateComparer_m81D95191FB1E936EEDE12D0820E7C5B73623FA69_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_0 = NULL; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_1 = NULL; int32_t V_2 = 0; { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 2)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL); V_0 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_1, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_2 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_3 = { reinterpret_cast<intptr_t> (Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_0_0_0_var) }; Type_t * L_4 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_3, /*hidden argument*/NULL); bool L_5 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_2, (Type_t *)L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_002d; } } { ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B * L_6 = (ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B *)il2cpp_codegen_object_new(ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B_il2cpp_TypeInfo_var); ByteEqualityComparer__ctor_m2B86B16398C9ADBA996127A209179E9654EF6A68(L_6, /*hidden argument*/NULL); return ((EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3 *)Castclass((RuntimeObject*)L_6, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_002d: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_7 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_8 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_9 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_8, /*hidden argument*/NULL); bool L_10 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_7, (Type_t *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_004a; } } { InternalStringComparer_tCD150130A3DB4C80186B5D8145B910B33496D4CD * L_11 = (InternalStringComparer_tCD150130A3DB4C80186B5D8145B910B33496D4CD *)il2cpp_codegen_object_new(InternalStringComparer_tCD150130A3DB4C80186B5D8145B910B33496D4CD_il2cpp_TypeInfo_var); InternalStringComparer__ctor_m471FF151AF831B76635ED96C53CF08114FD42C83(L_11, /*hidden argument*/NULL); return ((EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3 *)Castclass((RuntimeObject*)L_11, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_004a: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_12 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 4)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_13 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_12, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_14 = V_0; NullCheck((Type_t *)L_13); bool L_15 = VirtFuncInvoker1< bool, Type_t * >::Invoke(104 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_13, (Type_t *)L_14); if (!L_15) { goto IL_0072; } } { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_16 = { reinterpret_cast<intptr_t> (GenericEqualityComparer_1_t86530EF2BF9E43CCEE775B5862B48F735555A90B_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_17 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_16, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_18 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_19 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_17, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_18, /*hidden argument*/NULL); return ((EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3 *)Castclass((RuntimeObject*)L_19, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_0072: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_20 = V_0; NullCheck((Type_t *)L_20); bool L_21 = VirtFuncInvoker0< bool >::Invoke(70 /* System.Boolean System.Type::get_IsGenericType() */, (Type_t *)L_20); if (!L_21) { goto IL_00d6; } } { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_22 = V_0; NullCheck((Type_t *)L_22); Type_t * L_23 = VirtFuncInvoker0< Type_t * >::Invoke(95 /* System.Type System.Type::GetGenericTypeDefinition() */, (Type_t *)L_22); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_24 = { reinterpret_cast<intptr_t> (Nullable_1_t220FFA40D2CEE2CB28F8C04DB1216024A0BC75C3_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_25 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_24, /*hidden argument*/NULL); bool L_26 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_23, (Type_t *)L_25, /*hidden argument*/NULL); if (!L_26) { goto IL_00d6; } } { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_27 = V_0; NullCheck((Type_t *)L_27); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_28 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(94 /* System.Type[] System.Type::GetGenericArguments() */, (Type_t *)L_27); NullCheck(L_28); int32_t L_29 = 0; Type_t * L_30 = (L_28)->GetAt(static_cast<il2cpp_array_size_t>(L_29)); V_1 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_30, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_31 = { reinterpret_cast<intptr_t> (IEquatable_1_t7FBC51A9FCBF69422C0DEBF035FFDC9417EF3DA1_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_32 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_31, /*hidden argument*/NULL); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_33 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_34 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_33; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_35 = V_1; NullCheck(L_34); ArrayElementTypeCheck (L_34, L_35); (L_34)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_35); NullCheck((Type_t *)L_32); Type_t * L_36 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(90 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_32, (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_34); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_37 = V_1; NullCheck((Type_t *)L_36); bool L_38 = VirtFuncInvoker1< bool, Type_t * >::Invoke(104 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_36, (Type_t *)L_37); if (!L_38) { goto IL_00d6; } } { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_39 = { reinterpret_cast<intptr_t> (NullableEqualityComparer_1_tD235D1E336771C9615EB5024AC8C35CFF8ADD27F_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_40 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_39, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_41 = V_1; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_42 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_40, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_41, /*hidden argument*/NULL); return ((EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3 *)Castclass((RuntimeObject*)L_42, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_00d6: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_43 = V_0; NullCheck((Type_t *)L_43); bool L_44 = VirtFuncInvoker0< bool >::Invoke(66 /* System.Boolean System.Type::get_IsEnum() */, (Type_t *)L_43); if (!L_44) { goto IL_016f; } } { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_45 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); Type_t * L_46 = Enum_GetUnderlyingType_m0715B4E60E6909F03FF7302B6E20B1AB88DA84B1((Type_t *)L_45, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); int32_t L_47 = Type_GetTypeCode_m3105BBCE671D89EFE212F9BA06AAB90944A6116F((Type_t *)L_46, /*hidden argument*/NULL); V_2 = (int32_t)L_47; int32_t L_48 = V_2; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_48, (int32_t)5))) { case 0: { goto IL_012d; } case 1: { goto IL_0143; } case 2: { goto IL_0117; } case 3: { goto IL_0143; } case 4: { goto IL_0143; } case 5: { goto IL_0143; } case 6: { goto IL_0159; } case 7: { goto IL_0159; } } } { goto IL_016f; } IL_0117: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_49 = { reinterpret_cast<intptr_t> (ShortEnumEqualityComparer_1_tCB4B7DE9F58431002227076F18CFFC289C6CBD64_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_50 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_49, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_51 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_52 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_50, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_51, /*hidden argument*/NULL); return ((EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3 *)Castclass((RuntimeObject*)L_52, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_012d: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_53 = { reinterpret_cast<intptr_t> (SByteEnumEqualityComparer_1_t0E5A82C922F801F365CCC4BE3062A765423A5852_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_54 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_53, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_55 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_56 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_54, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_55, /*hidden argument*/NULL); return ((EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3 *)Castclass((RuntimeObject*)L_56, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_0143: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_57 = { reinterpret_cast<intptr_t> (EnumEqualityComparer_1_tC44C7E08405BCDA86FDDFB9714C4301D39723C3A_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_58 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_57, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_59 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_60 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_58, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_59, /*hidden argument*/NULL); return ((EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3 *)Castclass((RuntimeObject*)L_60, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_0159: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_61 = { reinterpret_cast<intptr_t> (LongEnumEqualityComparer_1_t6B940FD5688E20A1CF36AD68CCF3A39071FFB0DB_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_62 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_61, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_63 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_64 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_62, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_63, /*hidden argument*/NULL); return ((EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3 *)Castclass((RuntimeObject*)L_64, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_016f: { ObjectEqualityComparer_1_t117904942E956E4CD5825EF603C2B7D12268CDCD * L_65 = (ObjectEqualityComparer_1_t117904942E956E4CD5825EF603C2B7D12268CDCD *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5)); (( void (*) (ObjectEqualityComparer_1_t117904942E956E4CD5825EF603C2B7D12268CDCD *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(L_65, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)); return L_65; } } // System.Int32 System.Collections.Generic.EqualityComparer`1<System.Int32>::IndexOf(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t EqualityComparer_1_IndexOf_mF6D654A26B87A01E8A692EDBF327E9051ACBDE47_gshared (EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3 * __this, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___array0, int32_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = ___startIndex2; int32_t L_1 = ___count3; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1)); int32_t L_2 = ___startIndex2; V_1 = (int32_t)L_2; goto IL_001f; } IL_0009: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_3 = ___array0; int32_t L_4 = V_1; NullCheck(L_3); int32_t L_5 = L_4; int32_t L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); int32_t L_7 = ___value1; NullCheck((EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3 *)__this); bool L_8 = VirtFuncInvoker2< bool, int32_t, int32_t >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Int32>::Equals(T,T) */, (EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3 *)__this, (int32_t)L_6, (int32_t)L_7); if (!L_8) { goto IL_001b; } } { int32_t L_9 = V_1; return L_9; } IL_001b: { int32_t L_10 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1)); } IL_001f: { int32_t L_11 = V_1; int32_t L_12 = V_0; if ((((int32_t)L_11) < ((int32_t)L_12))) { goto IL_0009; } } { return (-1); } } // System.Int32 System.Collections.Generic.EqualityComparer`1<System.Int32>::LastIndexOf(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t EqualityComparer_1_LastIndexOf_mD0EB71F333E7E6ADBDF1A57778C4104B2C6308DA_gshared (EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3 * __this, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___array0, int32_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = ___startIndex2; int32_t L_1 = ___count3; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1)); int32_t L_2 = ___startIndex2; V_1 = (int32_t)L_2; goto IL_0021; } IL_000b: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_3 = ___array0; int32_t L_4 = V_1; NullCheck(L_3); int32_t L_5 = L_4; int32_t L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); int32_t L_7 = ___value1; NullCheck((EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3 *)__this); bool L_8 = VirtFuncInvoker2< bool, int32_t, int32_t >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Int32>::Equals(T,T) */, (EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3 *)__this, (int32_t)L_6, (int32_t)L_7); if (!L_8) { goto IL_001d; } } { int32_t L_9 = V_1; return L_9; } IL_001d: { int32_t L_10 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_10, (int32_t)1)); } IL_0021: { int32_t L_11 = V_1; int32_t L_12 = V_0; if ((((int32_t)L_11) >= ((int32_t)L_12))) { goto IL_000b; } } { return (-1); } } // System.Int32 System.Collections.Generic.EqualityComparer`1<System.Int32>::System.Collections.IEqualityComparer.GetHashCode(System.Object) extern "C" IL2CPP_METHOD_ATTR int32_t EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m9DFDFDF89EED5DBCB1FD18AEF29FB9BA74E862BB_gshared (EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___obj0; if (L_0) { goto IL_0005; } } { return 0; } IL_0005: { RuntimeObject * L_1 = ___obj0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))) { goto IL_001a; } } { RuntimeObject * L_2 = ___obj0; NullCheck((EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3 *)__this); int32_t L_3 = VirtFuncInvoker1< int32_t, int32_t >::Invoke(9 /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Int32>::GetHashCode(T) */, (EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3 *)__this, (int32_t)((*(int32_t*)((int32_t*)UnBox(L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))))); return L_3; } IL_001a: { ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84((int32_t)2, /*hidden argument*/NULL); return 0; } } // System.Boolean System.Collections.Generic.EqualityComparer`1<System.Int32>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) extern "C" IL2CPP_METHOD_ATTR bool EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m518A54C522FC4854E6D6A59FB850A19AD7474B71_gshared (EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3 * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___x0; RuntimeObject * L_1 = ___y1; if ((!(((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(RuntimeObject *)L_1)))) { goto IL_0006; } } { return (bool)1; } IL_0006: { RuntimeObject * L_2 = ___x0; if (!L_2) { goto IL_000c; } } { RuntimeObject * L_3 = ___y1; if (L_3) { goto IL_000e; } } IL_000c: { return (bool)0; } IL_000e: { RuntimeObject * L_4 = ___x0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))) { goto IL_0031; } } { RuntimeObject * L_5 = ___y1; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))) { goto IL_0031; } } { RuntimeObject * L_6 = ___x0; RuntimeObject * L_7 = ___y1; NullCheck((EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3 *)__this); bool L_8 = VirtFuncInvoker2< bool, int32_t, int32_t >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Int32>::Equals(T,T) */, (EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3 *)__this, (int32_t)((*(int32_t*)((int32_t*)UnBox(L_6, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8))))), (int32_t)((*(int32_t*)((int32_t*)UnBox(L_7, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))))); return L_8; } IL_0031: { ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84((int32_t)2, /*hidden argument*/NULL); return (bool)0; } } // System.Void System.Collections.Generic.EqualityComparer`1<System.Int32>::.ctor() extern "C" IL2CPP_METHOD_ATTR void EqualityComparer_1__ctor_mCD851203DF0E84736B407F195C9B23AF9FBF8FB1_gshared (EqualityComparer_1_tB4B7A6BE74484499A34574C8A7FE8E72455B8CF3 * __this, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Int32Enum>::get_Default() extern "C" IL2CPP_METHOD_ATTR EqualityComparer_1_t1C2A0392A1283327989CBB7C784638BDDB3805BB * EqualityComparer_1_get_Default_m288A9F99AC8135D64618DA688789C3AF29BB2AF9_gshared (const RuntimeMethod* method) { EqualityComparer_1_t1C2A0392A1283327989CBB7C784638BDDB3805BB * V_0 = NULL; { EqualityComparer_1_t1C2A0392A1283327989CBB7C784638BDDB3805BB * L_0 = ((EqualityComparer_1_t1C2A0392A1283327989CBB7C784638BDDB3805BB_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->get_defaultComparer_0(); il2cpp_codegen_memory_barrier(); V_0 = (EqualityComparer_1_t1C2A0392A1283327989CBB7C784638BDDB3805BB *)L_0; EqualityComparer_1_t1C2A0392A1283327989CBB7C784638BDDB3805BB * L_1 = V_0; if (L_1) { goto IL_0019; } } { EqualityComparer_1_t1C2A0392A1283327989CBB7C784638BDDB3805BB * L_2 = (( EqualityComparer_1_t1C2A0392A1283327989CBB7C784638BDDB3805BB * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); V_0 = (EqualityComparer_1_t1C2A0392A1283327989CBB7C784638BDDB3805BB *)L_2; EqualityComparer_1_t1C2A0392A1283327989CBB7C784638BDDB3805BB * L_3 = V_0; il2cpp_codegen_memory_barrier(); ((EqualityComparer_1_t1C2A0392A1283327989CBB7C784638BDDB3805BB_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_defaultComparer_0(L_3); } IL_0019: { EqualityComparer_1_t1C2A0392A1283327989CBB7C784638BDDB3805BB * L_4 = V_0; return L_4; } } // System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Int32Enum>::CreateComparer() extern "C" IL2CPP_METHOD_ATTR EqualityComparer_1_t1C2A0392A1283327989CBB7C784638BDDB3805BB * EqualityComparer_1_CreateComparer_m9511AEE64813F2E908922E9E9CC3933DC2649165_gshared (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (EqualityComparer_1_CreateComparer_m9511AEE64813F2E908922E9E9CC3933DC2649165_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_0 = NULL; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_1 = NULL; int32_t V_2 = 0; { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 2)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL); V_0 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_1, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_2 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_3 = { reinterpret_cast<intptr_t> (Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_0_0_0_var) }; Type_t * L_4 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_3, /*hidden argument*/NULL); bool L_5 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_2, (Type_t *)L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_002d; } } { ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B * L_6 = (ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B *)il2cpp_codegen_object_new(ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B_il2cpp_TypeInfo_var); ByteEqualityComparer__ctor_m2B86B16398C9ADBA996127A209179E9654EF6A68(L_6, /*hidden argument*/NULL); return ((EqualityComparer_1_t1C2A0392A1283327989CBB7C784638BDDB3805BB *)Castclass((RuntimeObject*)L_6, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_002d: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_7 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_8 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_9 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_8, /*hidden argument*/NULL); bool L_10 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_7, (Type_t *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_004a; } } { InternalStringComparer_tCD150130A3DB4C80186B5D8145B910B33496D4CD * L_11 = (InternalStringComparer_tCD150130A3DB4C80186B5D8145B910B33496D4CD *)il2cpp_codegen_object_new(InternalStringComparer_tCD150130A3DB4C80186B5D8145B910B33496D4CD_il2cpp_TypeInfo_var); InternalStringComparer__ctor_m471FF151AF831B76635ED96C53CF08114FD42C83(L_11, /*hidden argument*/NULL); return ((EqualityComparer_1_t1C2A0392A1283327989CBB7C784638BDDB3805BB *)Castclass((RuntimeObject*)L_11, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_004a: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_12 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 4)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_13 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_12, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_14 = V_0; NullCheck((Type_t *)L_13); bool L_15 = VirtFuncInvoker1< bool, Type_t * >::Invoke(104 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_13, (Type_t *)L_14); if (!L_15) { goto IL_0072; } } { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_16 = { reinterpret_cast<intptr_t> (GenericEqualityComparer_1_t86530EF2BF9E43CCEE775B5862B48F735555A90B_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_17 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_16, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_18 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_19 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_17, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_18, /*hidden argument*/NULL); return ((EqualityComparer_1_t1C2A0392A1283327989CBB7C784638BDDB3805BB *)Castclass((RuntimeObject*)L_19, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_0072: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_20 = V_0; NullCheck((Type_t *)L_20); bool L_21 = VirtFuncInvoker0< bool >::Invoke(70 /* System.Boolean System.Type::get_IsGenericType() */, (Type_t *)L_20); if (!L_21) { goto IL_00d6; } } { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_22 = V_0; NullCheck((Type_t *)L_22); Type_t * L_23 = VirtFuncInvoker0< Type_t * >::Invoke(95 /* System.Type System.Type::GetGenericTypeDefinition() */, (Type_t *)L_22); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_24 = { reinterpret_cast<intptr_t> (Nullable_1_t220FFA40D2CEE2CB28F8C04DB1216024A0BC75C3_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_25 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_24, /*hidden argument*/NULL); bool L_26 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_23, (Type_t *)L_25, /*hidden argument*/NULL); if (!L_26) { goto IL_00d6; } } { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_27 = V_0; NullCheck((Type_t *)L_27); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_28 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(94 /* System.Type[] System.Type::GetGenericArguments() */, (Type_t *)L_27); NullCheck(L_28); int32_t L_29 = 0; Type_t * L_30 = (L_28)->GetAt(static_cast<il2cpp_array_size_t>(L_29)); V_1 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_30, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_31 = { reinterpret_cast<intptr_t> (IEquatable_1_t7FBC51A9FCBF69422C0DEBF035FFDC9417EF3DA1_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_32 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_31, /*hidden argument*/NULL); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_33 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_34 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_33; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_35 = V_1; NullCheck(L_34); ArrayElementTypeCheck (L_34, L_35); (L_34)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_35); NullCheck((Type_t *)L_32); Type_t * L_36 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(90 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_32, (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_34); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_37 = V_1; NullCheck((Type_t *)L_36); bool L_38 = VirtFuncInvoker1< bool, Type_t * >::Invoke(104 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_36, (Type_t *)L_37); if (!L_38) { goto IL_00d6; } } { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_39 = { reinterpret_cast<intptr_t> (NullableEqualityComparer_1_tD235D1E336771C9615EB5024AC8C35CFF8ADD27F_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_40 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_39, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_41 = V_1; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_42 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_40, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_41, /*hidden argument*/NULL); return ((EqualityComparer_1_t1C2A0392A1283327989CBB7C784638BDDB3805BB *)Castclass((RuntimeObject*)L_42, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_00d6: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_43 = V_0; NullCheck((Type_t *)L_43); bool L_44 = VirtFuncInvoker0< bool >::Invoke(66 /* System.Boolean System.Type::get_IsEnum() */, (Type_t *)L_43); if (!L_44) { goto IL_016f; } } { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_45 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); Type_t * L_46 = Enum_GetUnderlyingType_m0715B4E60E6909F03FF7302B6E20B1AB88DA84B1((Type_t *)L_45, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); int32_t L_47 = Type_GetTypeCode_m3105BBCE671D89EFE212F9BA06AAB90944A6116F((Type_t *)L_46, /*hidden argument*/NULL); V_2 = (int32_t)L_47; int32_t L_48 = V_2; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_48, (int32_t)5))) { case 0: { goto IL_012d; } case 1: { goto IL_0143; } case 2: { goto IL_0117; } case 3: { goto IL_0143; } case 4: { goto IL_0143; } case 5: { goto IL_0143; } case 6: { goto IL_0159; } case 7: { goto IL_0159; } } } { goto IL_016f; } IL_0117: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_49 = { reinterpret_cast<intptr_t> (ShortEnumEqualityComparer_1_tCB4B7DE9F58431002227076F18CFFC289C6CBD64_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_50 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_49, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_51 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_52 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_50, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_51, /*hidden argument*/NULL); return ((EqualityComparer_1_t1C2A0392A1283327989CBB7C784638BDDB3805BB *)Castclass((RuntimeObject*)L_52, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_012d: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_53 = { reinterpret_cast<intptr_t> (SByteEnumEqualityComparer_1_t0E5A82C922F801F365CCC4BE3062A765423A5852_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_54 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_53, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_55 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_56 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_54, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_55, /*hidden argument*/NULL); return ((EqualityComparer_1_t1C2A0392A1283327989CBB7C784638BDDB3805BB *)Castclass((RuntimeObject*)L_56, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_0143: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_57 = { reinterpret_cast<intptr_t> (EnumEqualityComparer_1_tC44C7E08405BCDA86FDDFB9714C4301D39723C3A_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_58 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_57, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_59 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_60 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_58, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_59, /*hidden argument*/NULL); return ((EqualityComparer_1_t1C2A0392A1283327989CBB7C784638BDDB3805BB *)Castclass((RuntimeObject*)L_60, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_0159: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_61 = { reinterpret_cast<intptr_t> (LongEnumEqualityComparer_1_t6B940FD5688E20A1CF36AD68CCF3A39071FFB0DB_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_62 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_61, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_63 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_64 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_62, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_63, /*hidden argument*/NULL); return ((EqualityComparer_1_t1C2A0392A1283327989CBB7C784638BDDB3805BB *)Castclass((RuntimeObject*)L_64, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_016f: { ObjectEqualityComparer_1_tFD2C31148243BD367E1CDE9EF942038E39B56B33 * L_65 = (ObjectEqualityComparer_1_tFD2C31148243BD367E1CDE9EF942038E39B56B33 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5)); (( void (*) (ObjectEqualityComparer_1_tFD2C31148243BD367E1CDE9EF942038E39B56B33 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(L_65, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)); return L_65; } } // System.Int32 System.Collections.Generic.EqualityComparer`1<System.Int32Enum>::IndexOf(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t EqualityComparer_1_IndexOf_mFE57AFA02A80CC5641D12984B9502FA40AFDAB00_gshared (EqualityComparer_1_t1C2A0392A1283327989CBB7C784638BDDB3805BB * __this, Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A* ___array0, int32_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = ___startIndex2; int32_t L_1 = ___count3; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1)); int32_t L_2 = ___startIndex2; V_1 = (int32_t)L_2; goto IL_001f; } IL_0009: { Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A* L_3 = ___array0; int32_t L_4 = V_1; NullCheck(L_3); int32_t L_5 = L_4; int32_t L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); int32_t L_7 = ___value1; NullCheck((EqualityComparer_1_t1C2A0392A1283327989CBB7C784638BDDB3805BB *)__this); bool L_8 = VirtFuncInvoker2< bool, int32_t, int32_t >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Int32Enum>::Equals(T,T) */, (EqualityComparer_1_t1C2A0392A1283327989CBB7C784638BDDB3805BB *)__this, (int32_t)L_6, (int32_t)L_7); if (!L_8) { goto IL_001b; } } { int32_t L_9 = V_1; return L_9; } IL_001b: { int32_t L_10 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1)); } IL_001f: { int32_t L_11 = V_1; int32_t L_12 = V_0; if ((((int32_t)L_11) < ((int32_t)L_12))) { goto IL_0009; } } { return (-1); } } // System.Int32 System.Collections.Generic.EqualityComparer`1<System.Int32Enum>::LastIndexOf(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t EqualityComparer_1_LastIndexOf_m6F279DC560BC2DC682CB054FB5D688436A1F0CBD_gshared (EqualityComparer_1_t1C2A0392A1283327989CBB7C784638BDDB3805BB * __this, Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A* ___array0, int32_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = ___startIndex2; int32_t L_1 = ___count3; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1)); int32_t L_2 = ___startIndex2; V_1 = (int32_t)L_2; goto IL_0021; } IL_000b: { Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A* L_3 = ___array0; int32_t L_4 = V_1; NullCheck(L_3); int32_t L_5 = L_4; int32_t L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); int32_t L_7 = ___value1; NullCheck((EqualityComparer_1_t1C2A0392A1283327989CBB7C784638BDDB3805BB *)__this); bool L_8 = VirtFuncInvoker2< bool, int32_t, int32_t >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Int32Enum>::Equals(T,T) */, (EqualityComparer_1_t1C2A0392A1283327989CBB7C784638BDDB3805BB *)__this, (int32_t)L_6, (int32_t)L_7); if (!L_8) { goto IL_001d; } } { int32_t L_9 = V_1; return L_9; } IL_001d: { int32_t L_10 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_10, (int32_t)1)); } IL_0021: { int32_t L_11 = V_1; int32_t L_12 = V_0; if ((((int32_t)L_11) >= ((int32_t)L_12))) { goto IL_000b; } } { return (-1); } } // System.Int32 System.Collections.Generic.EqualityComparer`1<System.Int32Enum>::System.Collections.IEqualityComparer.GetHashCode(System.Object) extern "C" IL2CPP_METHOD_ATTR int32_t EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m2343C8C8C126EDA601D0FCBEF2756634A5381043_gshared (EqualityComparer_1_t1C2A0392A1283327989CBB7C784638BDDB3805BB * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___obj0; if (L_0) { goto IL_0005; } } { return 0; } IL_0005: { RuntimeObject * L_1 = ___obj0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))) { goto IL_001a; } } { RuntimeObject * L_2 = ___obj0; NullCheck((EqualityComparer_1_t1C2A0392A1283327989CBB7C784638BDDB3805BB *)__this); int32_t L_3 = VirtFuncInvoker1< int32_t, int32_t >::Invoke(9 /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Int32Enum>::GetHashCode(T) */, (EqualityComparer_1_t1C2A0392A1283327989CBB7C784638BDDB3805BB *)__this, (int32_t)((*(int32_t*)((int32_t*)UnBox(L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))))); return L_3; } IL_001a: { ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84((int32_t)2, /*hidden argument*/NULL); return 0; } } // System.Boolean System.Collections.Generic.EqualityComparer`1<System.Int32Enum>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) extern "C" IL2CPP_METHOD_ATTR bool EqualityComparer_1_System_Collections_IEqualityComparer_Equals_mF71ECDF88D7E4FD7A7D61EA3E2F432ACB5F86FD5_gshared (EqualityComparer_1_t1C2A0392A1283327989CBB7C784638BDDB3805BB * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___x0; RuntimeObject * L_1 = ___y1; if ((!(((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(RuntimeObject *)L_1)))) { goto IL_0006; } } { return (bool)1; } IL_0006: { RuntimeObject * L_2 = ___x0; if (!L_2) { goto IL_000c; } } { RuntimeObject * L_3 = ___y1; if (L_3) { goto IL_000e; } } IL_000c: { return (bool)0; } IL_000e: { RuntimeObject * L_4 = ___x0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))) { goto IL_0031; } } { RuntimeObject * L_5 = ___y1; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))) { goto IL_0031; } } { RuntimeObject * L_6 = ___x0; RuntimeObject * L_7 = ___y1; NullCheck((EqualityComparer_1_t1C2A0392A1283327989CBB7C784638BDDB3805BB *)__this); bool L_8 = VirtFuncInvoker2< bool, int32_t, int32_t >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Int32Enum>::Equals(T,T) */, (EqualityComparer_1_t1C2A0392A1283327989CBB7C784638BDDB3805BB *)__this, (int32_t)((*(int32_t*)((int32_t*)UnBox(L_6, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8))))), (int32_t)((*(int32_t*)((int32_t*)UnBox(L_7, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))))); return L_8; } IL_0031: { ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84((int32_t)2, /*hidden argument*/NULL); return (bool)0; } } // System.Void System.Collections.Generic.EqualityComparer`1<System.Int32Enum>::.ctor() extern "C" IL2CPP_METHOD_ATTR void EqualityComparer_1__ctor_m9791B7EB5A07B46B4240843CC42F7F7F834A06A8_gshared (EqualityComparer_1_t1C2A0392A1283327989CBB7C784638BDDB3805BB * __this, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Int64>::get_Default() extern "C" IL2CPP_METHOD_ATTR EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E * EqualityComparer_1_get_Default_mCFBF94A7FDC4FA95F38A5B888FEA377C22D5DFEA_gshared (const RuntimeMethod* method) { EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E * V_0 = NULL; { EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E * L_0 = ((EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->get_defaultComparer_0(); il2cpp_codegen_memory_barrier(); V_0 = (EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E *)L_0; EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E * L_1 = V_0; if (L_1) { goto IL_0019; } } { EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E * L_2 = (( EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); V_0 = (EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E *)L_2; EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E * L_3 = V_0; il2cpp_codegen_memory_barrier(); ((EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_defaultComparer_0(L_3); } IL_0019: { EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E * L_4 = V_0; return L_4; } } // System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Int64>::CreateComparer() extern "C" IL2CPP_METHOD_ATTR EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E * EqualityComparer_1_CreateComparer_m8044696E830B7180D5E538A6332B9FB74F8063C2_gshared (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (EqualityComparer_1_CreateComparer_m8044696E830B7180D5E538A6332B9FB74F8063C2_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_0 = NULL; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_1 = NULL; int32_t V_2 = 0; { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 2)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL); V_0 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_1, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_2 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_3 = { reinterpret_cast<intptr_t> (Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_0_0_0_var) }; Type_t * L_4 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_3, /*hidden argument*/NULL); bool L_5 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_2, (Type_t *)L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_002d; } } { ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B * L_6 = (ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B *)il2cpp_codegen_object_new(ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B_il2cpp_TypeInfo_var); ByteEqualityComparer__ctor_m2B86B16398C9ADBA996127A209179E9654EF6A68(L_6, /*hidden argument*/NULL); return ((EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E *)Castclass((RuntimeObject*)L_6, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_002d: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_7 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_8 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_9 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_8, /*hidden argument*/NULL); bool L_10 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_7, (Type_t *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_004a; } } { InternalStringComparer_tCD150130A3DB4C80186B5D8145B910B33496D4CD * L_11 = (InternalStringComparer_tCD150130A3DB4C80186B5D8145B910B33496D4CD *)il2cpp_codegen_object_new(InternalStringComparer_tCD150130A3DB4C80186B5D8145B910B33496D4CD_il2cpp_TypeInfo_var); InternalStringComparer__ctor_m471FF151AF831B76635ED96C53CF08114FD42C83(L_11, /*hidden argument*/NULL); return ((EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E *)Castclass((RuntimeObject*)L_11, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_004a: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_12 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 4)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_13 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_12, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_14 = V_0; NullCheck((Type_t *)L_13); bool L_15 = VirtFuncInvoker1< bool, Type_t * >::Invoke(104 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_13, (Type_t *)L_14); if (!L_15) { goto IL_0072; } } { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_16 = { reinterpret_cast<intptr_t> (GenericEqualityComparer_1_t86530EF2BF9E43CCEE775B5862B48F735555A90B_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_17 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_16, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_18 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_19 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_17, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_18, /*hidden argument*/NULL); return ((EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E *)Castclass((RuntimeObject*)L_19, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_0072: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_20 = V_0; NullCheck((Type_t *)L_20); bool L_21 = VirtFuncInvoker0< bool >::Invoke(70 /* System.Boolean System.Type::get_IsGenericType() */, (Type_t *)L_20); if (!L_21) { goto IL_00d6; } } { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_22 = V_0; NullCheck((Type_t *)L_22); Type_t * L_23 = VirtFuncInvoker0< Type_t * >::Invoke(95 /* System.Type System.Type::GetGenericTypeDefinition() */, (Type_t *)L_22); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_24 = { reinterpret_cast<intptr_t> (Nullable_1_t220FFA40D2CEE2CB28F8C04DB1216024A0BC75C3_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_25 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_24, /*hidden argument*/NULL); bool L_26 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_23, (Type_t *)L_25, /*hidden argument*/NULL); if (!L_26) { goto IL_00d6; } } { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_27 = V_0; NullCheck((Type_t *)L_27); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_28 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(94 /* System.Type[] System.Type::GetGenericArguments() */, (Type_t *)L_27); NullCheck(L_28); int32_t L_29 = 0; Type_t * L_30 = (L_28)->GetAt(static_cast<il2cpp_array_size_t>(L_29)); V_1 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_30, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_31 = { reinterpret_cast<intptr_t> (IEquatable_1_t7FBC51A9FCBF69422C0DEBF035FFDC9417EF3DA1_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_32 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_31, /*hidden argument*/NULL); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_33 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_34 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_33; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_35 = V_1; NullCheck(L_34); ArrayElementTypeCheck (L_34, L_35); (L_34)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_35); NullCheck((Type_t *)L_32); Type_t * L_36 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(90 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_32, (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_34); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_37 = V_1; NullCheck((Type_t *)L_36); bool L_38 = VirtFuncInvoker1< bool, Type_t * >::Invoke(104 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_36, (Type_t *)L_37); if (!L_38) { goto IL_00d6; } } { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_39 = { reinterpret_cast<intptr_t> (NullableEqualityComparer_1_tD235D1E336771C9615EB5024AC8C35CFF8ADD27F_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_40 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_39, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_41 = V_1; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_42 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_40, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_41, /*hidden argument*/NULL); return ((EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E *)Castclass((RuntimeObject*)L_42, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_00d6: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_43 = V_0; NullCheck((Type_t *)L_43); bool L_44 = VirtFuncInvoker0< bool >::Invoke(66 /* System.Boolean System.Type::get_IsEnum() */, (Type_t *)L_43); if (!L_44) { goto IL_016f; } } { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_45 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); Type_t * L_46 = Enum_GetUnderlyingType_m0715B4E60E6909F03FF7302B6E20B1AB88DA84B1((Type_t *)L_45, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); int32_t L_47 = Type_GetTypeCode_m3105BBCE671D89EFE212F9BA06AAB90944A6116F((Type_t *)L_46, /*hidden argument*/NULL); V_2 = (int32_t)L_47; int32_t L_48 = V_2; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_48, (int32_t)5))) { case 0: { goto IL_012d; } case 1: { goto IL_0143; } case 2: { goto IL_0117; } case 3: { goto IL_0143; } case 4: { goto IL_0143; } case 5: { goto IL_0143; } case 6: { goto IL_0159; } case 7: { goto IL_0159; } } } { goto IL_016f; } IL_0117: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_49 = { reinterpret_cast<intptr_t> (ShortEnumEqualityComparer_1_tCB4B7DE9F58431002227076F18CFFC289C6CBD64_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_50 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_49, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_51 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_52 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_50, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_51, /*hidden argument*/NULL); return ((EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E *)Castclass((RuntimeObject*)L_52, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_012d: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_53 = { reinterpret_cast<intptr_t> (SByteEnumEqualityComparer_1_t0E5A82C922F801F365CCC4BE3062A765423A5852_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_54 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_53, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_55 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_56 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_54, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_55, /*hidden argument*/NULL); return ((EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E *)Castclass((RuntimeObject*)L_56, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_0143: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_57 = { reinterpret_cast<intptr_t> (EnumEqualityComparer_1_tC44C7E08405BCDA86FDDFB9714C4301D39723C3A_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_58 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_57, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_59 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_60 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_58, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_59, /*hidden argument*/NULL); return ((EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E *)Castclass((RuntimeObject*)L_60, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_0159: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_61 = { reinterpret_cast<intptr_t> (LongEnumEqualityComparer_1_t6B940FD5688E20A1CF36AD68CCF3A39071FFB0DB_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_62 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_61, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_63 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeObject * L_64 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_62, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_63, /*hidden argument*/NULL); return ((EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E *)Castclass((RuntimeObject*)L_64, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))); } IL_016f: { ObjectEqualityComparer_1_t2BDB0B1586A046920CD44F45E8B0C66CF55EF7D0 * L_65 = (ObjectEqualityComparer_1_t2BDB0B1586A046920CD44F45E8B0C66CF55EF7D0 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5)); (( void (*) (ObjectEqualityComparer_1_t2BDB0B1586A046920CD44F45E8B0C66CF55EF7D0 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(L_65, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)); return L_65; } } // System.Int32 System.Collections.Generic.EqualityComparer`1<System.Int64>::IndexOf(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t EqualityComparer_1_IndexOf_m545F10CEDA5B22791BE62697D5B6C3A0B9BEFF87_gshared (EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E * __this, Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* ___array0, int64_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = ___startIndex2; int32_t L_1 = ___count3; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1)); int32_t L_2 = ___startIndex2; V_1 = (int32_t)L_2; goto IL_001f; } IL_0009: { Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_3 = ___array0; int32_t L_4 = V_1; NullCheck(L_3); int32_t L_5 = L_4; int64_t L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); int64_t L_7 = ___value1; NullCheck((EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E *)__this); bool L_8 = VirtFuncInvoker2< bool, int64_t, int64_t >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Int64>::Equals(T,T) */, (EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E *)__this, (int64_t)L_6, (int64_t)L_7); if (!L_8) { goto IL_001b; } } { int32_t L_9 = V_1; return L_9; } IL_001b: { int32_t L_10 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1)); } IL_001f: { int32_t L_11 = V_1; int32_t L_12 = V_0; if ((((int32_t)L_11) < ((int32_t)L_12))) { goto IL_0009; } } { return (-1); } } // System.Int32 System.Collections.Generic.EqualityComparer`1<System.Int64>::LastIndexOf(T[],T,System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t EqualityComparer_1_LastIndexOf_m5A571E7B59EB5D9513890C120EE0B5DC014D4E11_gshared (EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E * __this, Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* ___array0, int64_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = ___startIndex2; int32_t L_1 = ___count3; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1)); int32_t L_2 = ___startIndex2; V_1 = (int32_t)L_2; goto IL_0021; } IL_000b: { Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_3 = ___array0; int32_t L_4 = V_1; NullCheck(L_3); int32_t L_5 = L_4; int64_t L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); int64_t L_7 = ___value1; NullCheck((EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E *)__this); bool L_8 = VirtFuncInvoker2< bool, int64_t, int64_t >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Int64>::Equals(T,T) */, (EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E *)__this, (int64_t)L_6, (int64_t)L_7); if (!L_8) { goto IL_001d; } } { int32_t L_9 = V_1; return L_9; } IL_001d: { int32_t L_10 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_10, (int32_t)1)); } IL_0021: { int32_t L_11 = V_1; int32_t L_12 = V_0; if ((((int32_t)L_11) >= ((int32_t)L_12))) { goto IL_000b; } } { return (-1); } } // System.Int32 System.Collections.Generic.EqualityComparer`1<System.Int64>::System.Collections.IEqualityComparer.GetHashCode(System.Object) extern "C" IL2CPP_METHOD_ATTR int32_t EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_mF7F2178760C5496DE867091E4325A700DC9E56EA_gshared (EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___obj0; if (L_0) { goto IL_0005; } } { return 0; } IL_0005: { RuntimeObject * L_1 = ___obj0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))) { goto IL_001a; } } { RuntimeObject * L_2 = ___obj0; NullCheck((EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E *)__this); int32_t L_3 = VirtFuncInvoker1< int32_t, int64_t >::Invoke(9 /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Int64>::GetHashCode(T) */, (EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E *)__this, (int64_t)((*(int64_t*)((int64_t*)UnBox(L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))))); return L_3; } IL_001a: { ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84((int32_t)2, /*hidden argument*/NULL); return 0; } } // System.Boolean System.Collections.Generic.EqualityComparer`1<System.Int64>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) extern "C" IL2CPP_METHOD_ATTR bool EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m015E1A251FA9DD2D1CF31AC6EE8A940D7EFFCB1C_gshared (EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___x0; RuntimeObject * L_1 = ___y1; if ((!(((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(RuntimeObject *)L_1)))) { goto IL_0006; } } { return (bool)1; } IL_0006: { RuntimeObject * L_2 = ___x0; if (!L_2) { goto IL_000c; } } { RuntimeObject * L_3 = ___y1; if (L_3) { goto IL_000e; } } IL_000c: { return (bool)0; } IL_000e: { RuntimeObject * L_4 = ___x0; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))) { goto IL_0031; } } { RuntimeObject * L_5 = ___y1; if (!((RuntimeObject *)IsInst((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))) { goto IL_0031; } } { RuntimeObject * L_6 = ___x0; RuntimeObject * L_7 = ___y1; NullCheck((EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E *)__this); bool L_8 = VirtFuncInvoker2< bool, int64_t, int64_t >::Invoke(8 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Int64>::Equals(T,T) */, (EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E *)__this, (int64_t)((*(int64_t*)((int64_t*)UnBox(L_6, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8))))), (int64_t)((*(int64_t*)((int64_t*)UnBox(L_7, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 8)))))); return L_8; } IL_0031: { ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84((int32_t)2, /*hidden argument*/NULL); return (bool)0; } } // System.Void System.Collections.Generic.EqualityComparer`1<System.Int64>::.ctor() extern "C" IL2CPP_METHOD_ATTR void EqualityComparer_1__ctor_m9C90295E8A4A7E650156FC1435427AE212AD6244_gshared (EqualityComparer_1_tFC9F2864754EE91CB606761D0C5B0E139497309E * __this, const RuntimeMethod* method) { { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif
[ "646433178@qq.com" ]
646433178@qq.com
9c811bcfee8fa6db3020bdd387656b362fe8bcfc
e090c1f77179de0817bcc4376cecd2e5317ce90e
/sub/core/cv_Mat.cpp
ce562e2383c248ae387a9a6fc0850db6ffcc925a
[]
no_license
lubyk/cv
98d28900f8d43df00e5f8ef05ed869e8628d6bf8
0ff20314a0e43d17591a9f61c56c1c953dbf2e57
refs/heads/master
2020-05-16T22:59:35.189264
2012-04-18T15:07:28
2012-04-20T15:36:34
3,227,113
0
1
null
null
null
null
UTF-8
C++
false
false
54,727
cpp
#include "cv/cv.h" #include "lua_cpp_helper.h" using namespace cv; /* ============================ Constructors ====================== */ /** cv::Mat::Mat() * include/opencv/cxcore.hpp:746 */ static int Mat_Mat1(lua_State *L) { try { Mat * retval__ = new Mat(); lua_pushclass<Mat>(L, retval__, "cv.Mat"); return 1; } catch (cv::Exception &e) { std::string *s = new std::string("cv.Mat.Mat: failed ("); s->append(e.err); s->append(")"); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (std::exception &e) { std::string *s = new std::string("cv.Mat.Mat: "); s->append(e.what()); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (...) { lua_pushstring(L, "cv.Mat.Mat: Unknown exception"); lua_error(L); return 0; } } /** cv::Mat::Mat(int _rows, int _cols, int _type) * include/opencv/cxcore.hpp:754 */ static int Mat_Mat2(lua_State *L) { try { int _rows = dubL_checkint(L, 1); int _cols = dubL_checkint(L, 2); int _type = dubL_checkint(L, 3); Mat * retval__ = new Mat(_rows, _cols, _type); lua_pushclass<Mat>(L, retval__, "cv.Mat"); return 1; } catch (cv::Exception &e) { std::string *s = new std::string("cv.Mat.Mat: failed ("); s->append(e.err); s->append(")"); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (std::exception &e) { std::string *s = new std::string("cv.Mat.Mat: "); s->append(e.what()); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (...) { lua_pushstring(L, "cv.Mat.Mat: Unknown exception"); lua_error(L); return 0; } } /** cv::Mat::Mat(Size _size, int _type) * include/opencv/cxcore.hpp:755 */ static int Mat_Mat3(lua_State *L) { try { Size *_size = *((Size **)dubL_checkudata(L, 1, "cv.Size")); int _type = dubL_checkint(L, 2); Mat * retval__ = new Mat(*_size, _type); lua_pushclass<Mat>(L, retval__, "cv.Mat"); return 1; } catch (cv::Exception &e) { std::string *s = new std::string("cv.Mat.Mat: failed ("); s->append(e.err); s->append(")"); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (std::exception &e) { std::string *s = new std::string("cv.Mat.Mat: "); s->append(e.what()); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (...) { lua_pushstring(L, "cv.Mat.Mat: Unknown exception"); lua_error(L); return 0; } } /** cv::Mat::Mat(int _rows, int _cols, int _type, const Scalar &_s) * include/opencv/cxcore.hpp:757 */ static int Mat_Mat4(lua_State *L) { try { int _rows = dubL_checkint(L, 1); int _cols = dubL_checkint(L, 2); int _type = dubL_checkint(L, 3); const Scalar *_s = *((const Scalar **)dubL_checkudata(L, 4, "cv.Scalar")); Mat * retval__ = new Mat(_rows, _cols, _type, *_s); lua_pushclass<Mat>(L, retval__, "cv.Mat"); return 1; } catch (cv::Exception &e) { std::string *s = new std::string("cv.Mat.Mat: failed ("); s->append(e.err); s->append(")"); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (std::exception &e) { std::string *s = new std::string("cv.Mat.Mat: "); s->append(e.what()); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (...) { lua_pushstring(L, "cv.Mat.Mat: Unknown exception"); lua_error(L); return 0; } } /** cv::Mat::Mat(Size _size, int _type, const Scalar &_s) * include/opencv/cxcore.hpp:758 */ static int Mat_Mat5(lua_State *L) { try { Size *_size = *((Size **)dubL_checkudata(L, 1, "cv.Size")); int _type = dubL_checkint(L, 2); const Scalar *_s = *((const Scalar **)dubL_checkudata(L, 3, "cv.Scalar")); Mat * retval__ = new Mat(*_size, _type, *_s); lua_pushclass<Mat>(L, retval__, "cv.Mat"); return 1; } catch (cv::Exception &e) { std::string *s = new std::string("cv.Mat.Mat: failed ("); s->append(e.err); s->append(")"); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (std::exception &e) { std::string *s = new std::string("cv.Mat.Mat: "); s->append(e.what()); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (...) { lua_pushstring(L, "cv.Mat.Mat: Unknown exception"); lua_error(L); return 0; } } /** cv::Mat::Mat(const Mat &m) * include/opencv/cxcore.hpp:760 */ static int Mat_Mat6(lua_State *L) { try { const Mat *m = *((const Mat **)dubL_checkudata(L, 1, "cv.Mat")); Mat * retval__ = new Mat(*m); lua_pushclass<Mat>(L, retval__, "cv.Mat"); return 1; } catch (cv::Exception &e) { std::string *s = new std::string("cv.Mat.Mat: failed ("); s->append(e.err); s->append(")"); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (std::exception &e) { std::string *s = new std::string("cv.Mat.Mat: "); s->append(e.what()); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (...) { lua_pushstring(L, "cv.Mat.Mat: Unknown exception"); lua_error(L); return 0; } } /** cv::Mat::Mat(const Mat &m, const Range &rowRange, const Range &colRange) * include/opencv/cxcore.hpp:777 */ static int Mat_Mat9(lua_State *L) { try { const Mat *m = *((const Mat **)dubL_checkudata(L, 1, "cv.Mat")); const Range *rowRange = *((const Range **)dubL_checkudata(L, 2, "cv.Range")); const Range *colRange = *((const Range **)dubL_checkudata(L, 3, "cv.Range")); Mat * retval__ = new Mat(*m, *rowRange, *colRange); lua_pushclass<Mat>(L, retval__, "cv.Mat"); return 1; } catch (cv::Exception &e) { std::string *s = new std::string("cv.Mat.Mat: failed ("); s->append(e.err); s->append(")"); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (std::exception &e) { std::string *s = new std::string("cv.Mat.Mat: "); s->append(e.what()); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (...) { lua_pushstring(L, "cv.Mat.Mat: Unknown exception"); lua_error(L); return 0; } } /** cv::Mat::Mat(const Mat &m, const Rect &roi) * include/opencv/cxcore.hpp:784 */ static int Mat_Mat10(lua_State *L) { try { const Mat *m = *((const Mat **)dubL_checkudata(L, 1, "cv.Mat")); const Rect *roi = *((const Rect **)dubL_checkudata(L, 2, "cv.Rect")); Mat * retval__ = new Mat(*m, *roi); lua_pushclass<Mat>(L, retval__, "cv.Mat"); return 1; } catch (cv::Exception &e) { std::string *s = new std::string("cv.Mat.Mat: failed ("); s->append(e.err); s->append(")"); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (std::exception &e) { std::string *s = new std::string("cv.Mat.Mat: "); s->append(e.what()); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (...) { lua_pushstring(L, "cv.Mat.Mat: Unknown exception"); lua_error(L); return 0; } } /** cv::Mat::Mat(const CvMat *m, bool copyData=false) * include/opencv/cxcore.hpp:786 */ static int Mat_Mat11(lua_State *L) { try { int top__ = lua_gettop(L); Mat * retval__; const CvMat *m = *((const CvMat **)dubL_checkudata(L, 1, "cv.CvMat")); if (top__ < 2) { retval__ = new Mat(m); } else { bool copyData = lua_toboolean(L, 2); retval__ = new Mat(m, copyData); } lua_pushclass<Mat>(L, retval__, "cv.Mat"); return 1; } catch (cv::Exception &e) { std::string *s = new std::string("cv.Mat.Mat: failed ("); s->append(e.err); s->append(")"); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (std::exception &e) { std::string *s = new std::string("cv.Mat.Mat: "); s->append(e.what()); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (...) { lua_pushstring(L, "cv.Mat.Mat: Unknown exception"); lua_error(L); return 0; } } /** cv::Mat::Mat(const IplImage *img, bool copyData=false) * include/opencv/cxcore.hpp:788 */ static int Mat_Mat12(lua_State *L) { try { int top__ = lua_gettop(L); Mat * retval__; const IplImage *img = *((const IplImage **)dubL_checkudata(L, 1, "cv.IplImage")); if (top__ < 2) { retval__ = new Mat(img); } else { bool copyData = lua_toboolean(L, 2); retval__ = new Mat(img, copyData); } lua_pushclass<Mat>(L, retval__, "cv.Mat"); return 1; } catch (cv::Exception &e) { std::string *s = new std::string("cv.Mat.Mat: failed ("); s->append(e.err); s->append(")"); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (std::exception &e) { std::string *s = new std::string("cv.Mat.Mat: "); s->append(e.what()); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (...) { lua_pushstring(L, "cv.Mat.Mat: Unknown exception"); lua_error(L); return 0; } } /** cv::Mat::Mat(const MatExpr_Base &expr) * include/opencv/cxcore.hpp:792 */ static int Mat_Mat13(lua_State *L) { try { const MatExpr_Base *expr = *((const MatExpr_Base **)dubL_checkudata(L, 1, "cv.MatExpr_Base")); Mat * retval__ = new Mat(*expr); lua_pushclass<Mat>(L, retval__, "cv.Mat"); return 1; } catch (cv::Exception &e) { std::string *s = new std::string("cv.Mat.Mat: failed ("); s->append(e.err); s->append(")"); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (std::exception &e) { std::string *s = new std::string("cv.Mat.Mat: "); s->append(e.what()); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (...) { lua_pushstring(L, "cv.Mat.Mat: Unknown exception"); lua_error(L); return 0; } } /** Overloaded function chooser for Mat(...) */ static int Mat_Mat(lua_State *L) { int type__ = lua_type(L, 1); int top__ = lua_gettop(L); if (type__ == LUA_TUSERDATA && is_userdata(L, 1, "cv.MatExpr_Base")) { return Mat_Mat13(L); } else if (type__ == LUA_TNUMBER) { type__ = lua_type(L, 2); if (type__ == LUA_TNUMBER) { type__ = lua_type(L, 3); if (type__ == LUA_TNUMBER) { type__ = lua_type(L, 4); if (top__ < 4) { return Mat_Mat2(L); } else if (type__ == LUA_TUSERDATA && is_userdata(L, 4, "cv.Scalar")) { return Mat_Mat4(L); } else { // use any to raise errors return Mat_Mat4(L); } } else { // use any to raise errors return Mat_Mat4(L); } } else { // use any to raise errors return Mat_Mat4(L); } } else if (top__ < 1) { return Mat_Mat1(L); } else if (type__ == LUA_TUSERDATA && is_userdata(L, 1, "cv.CvMat")) { return Mat_Mat11(L); } else if (type__ == LUA_TUSERDATA && is_userdata(L, 1, "cv.Mat")) { type__ = lua_type(L, 2); if (type__ == LUA_TUSERDATA && is_userdata(L, 2, "cv.Rect")) { return Mat_Mat10(L); } else if (type__ == LUA_TUSERDATA && is_userdata(L, 2, "cv.Range")) { return Mat_Mat9(L); } else if (top__ < 2) { return Mat_Mat6(L); } else { // use any to raise errors return Mat_Mat6(L); } } else if (type__ == LUA_TUSERDATA && is_userdata(L, 1, "cv.IplImage")) { return Mat_Mat12(L); } else if (type__ == LUA_TUSERDATA && is_userdata(L, 1, "cv.Size")) { type__ = lua_type(L, 2); if (type__ == LUA_TNUMBER) { type__ = lua_type(L, 3); if (top__ < 3) { return Mat_Mat3(L); } else if (type__ == LUA_TUSERDATA && is_userdata(L, 3, "cv.Scalar")) { return Mat_Mat5(L); } else { // use any to raise errors return Mat_Mat5(L); } } else { // use any to raise errors return Mat_Mat5(L); } } else { // use any to raise errors return Mat_Mat5(L); } } /* ============================ Destructor ====================== */ static int Mat_destructor(lua_State *L) { Mat **userdata = (Mat**)dubL_checkudata(L, 1, "cv.Mat"); if (*userdata) delete *userdata; *userdata = NULL; return 0; } /* ============================ tostring ====================== */ static int Mat__tostring(lua_State *L) { Mat **userdata = (Mat**)dubL_checkudata(L, 1, "cv.Mat"); lua_pushfstring(L, "<cv.Mat: %p %dx%d>", *userdata, (*userdata)->rows, (*userdata)->cols); return 1; } /* ============================ Member Methods ====================== */ /** void cv::Mat::addref() * include/opencv/cxcore.hpp:892 */ static int Mat_addref(lua_State *L) { try { Mat *self__ = *((Mat**)dubL_checkudata(L, 1, "cv.Mat")); lua_remove(L, 1); self__->addref(); return 0; } catch (cv::Exception &e) { std::string *s = new std::string("cv.Mat.addref: failed ("); s->append(e.err); s->append(")"); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (std::exception &e) { std::string *s = new std::string("cv.Mat.addref: "); s->append(e.what()); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (...) { lua_pushstring(L, "cv.Mat.addref: Unknown exception"); lua_error(L); return 0; } } /** Mat& cv::Mat::adjustROI(int dtop, int dbottom, int dleft, int dright) * include/opencv/cxcore.hpp:910 */ static int Mat_adjustROI(lua_State *L) { try { Mat *self__ = *((Mat**)dubL_checkudata(L, 1, "cv.Mat")); lua_remove(L, 1); int dtop = dubL_checkint(L, 1); int dbottom = dubL_checkint(L, 2); int dleft = dubL_checkint(L, 3); int dright = dubL_checkint(L, 4); Mat retval__ = self__->adjustROI(dtop, dbottom, dleft, dright); lua_pushclass<Mat>(L, retval__, "cv.Mat"); return 1; } catch (cv::Exception &e) { std::string *s = new std::string("cv.Mat.adjustROI: failed ("); s->append(e.err); s->append(")"); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (std::exception &e) { std::string *s = new std::string("cv.Mat.adjustROI: "); s->append(e.what()); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (...) { lua_pushstring(L, "cv.Mat.adjustROI: Unknown exception"); lua_error(L); return 0; } } /** void cv::Mat::assignTo(Mat &m, int type=-1) const * include/opencv/cxcore.hpp:846 */ static int Mat_assignTo(lua_State *L) { try { Mat *self__ = *((Mat**)dubL_checkudata(L, 1, "cv.Mat")); lua_remove(L, 1); int top__ = lua_gettop(L); Mat *m = *((Mat **)dubL_checkudata(L, 1, "cv.Mat")); if (top__ < 2) { self__->assignTo(*m); } else { int type = dubL_checkint(L, 2); self__->assignTo(*m, type); } return 0; } catch (cv::Exception &e) { std::string *s = new std::string("cv.Mat.assignTo: failed ("); s->append(e.err); s->append(")"); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (std::exception &e) { std::string *s = new std::string("cv.Mat.assignTo: "); s->append(e.what()); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (...) { lua_pushstring(L, "cv.Mat.assignTo: Unknown exception"); lua_error(L); return 0; } } /** int cv::Mat::channels() const * include/opencv/cxcore.hpp:968 */ static int Mat_channels(lua_State *L) { try { Mat *self__ = *((Mat**)dubL_checkudata(L, 1, "cv.Mat")); lua_remove(L, 1); int retval__ = self__->channels(); lua_pushnumber(L, retval__); return 1; } catch (cv::Exception &e) { std::string *s = new std::string("cv.Mat.channels: failed ("); s->append(e.err); s->append(")"); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (std::exception &e) { std::string *s = new std::string("cv.Mat.channels: "); s->append(e.what()); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (...) { lua_pushstring(L, "cv.Mat.channels: Unknown exception"); lua_error(L); return 0; } } /** Mat cv::Mat::clone() const * include/opencv/cxcore.hpp:824 */ static int Mat_clone(lua_State *L) { try { Mat *self__ = *((Mat**)dubL_checkudata(L, 1, "cv.Mat")); lua_remove(L, 1); Mat retval__ = self__->clone(); lua_pushclass<Mat>(L, retval__, "cv.Mat"); return 1; } catch (cv::Exception &e) { std::string *s = new std::string("cv.Mat.clone: failed ("); s->append(e.err); s->append(")"); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (std::exception &e) { std::string *s = new std::string("cv.Mat.clone: "); s->append(e.what()); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (...) { lua_pushstring(L, "cv.Mat.clone: Unknown exception"); lua_error(L); return 0; } } /** Mat cv::Mat::col(int x) const * include/opencv/cxcore.hpp:804 */ static int Mat_col(lua_State *L) { try { Mat *self__ = *((Mat**)dubL_checkudata(L, 1, "cv.Mat")); lua_remove(L, 1); int x = dubL_checkint(L, 1); Mat retval__ = self__->col(x); lua_pushclass<Mat>(L, retval__, "cv.Mat"); return 1; } catch (cv::Exception &e) { std::string *s = new std::string("cv.Mat.col: failed ("); s->append(e.err); s->append(")"); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (std::exception &e) { std::string *s = new std::string("cv.Mat.col: "); s->append(e.what()); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (...) { lua_pushstring(L, "cv.Mat.col: Unknown exception"); lua_error(L); return 0; } } /** Mat cv::Mat::colRange(int startcol, int endcol) const * include/opencv/cxcore.hpp:809 */ static int Mat_colRange1(lua_State *L) { try { Mat *self__ = *((Mat**)dubL_checkudata(L, 1, "cv.Mat")); lua_remove(L, 1); int startcol = dubL_checkint(L, 1); int endcol = dubL_checkint(L, 2); Mat retval__ = self__->colRange(startcol, endcol); lua_pushclass<Mat>(L, retval__, "cv.Mat"); return 1; } catch (cv::Exception &e) { std::string *s = new std::string("cv.Mat.colRange: failed ("); s->append(e.err); s->append(")"); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (std::exception &e) { std::string *s = new std::string("cv.Mat.colRange: "); s->append(e.what()); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (...) { lua_pushstring(L, "cv.Mat.colRange: Unknown exception"); lua_error(L); return 0; } } /** Mat cv::Mat::colRange(const Range &r) const * include/opencv/cxcore.hpp:810 */ static int Mat_colRange2(lua_State *L) { try { Mat *self__ = *((Mat**)dubL_checkudata(L, 1, "cv.Mat")); lua_remove(L, 1); const Range *r = *((const Range **)dubL_checkudata(L, 1, "cv.Range")); Mat retval__ = self__->colRange(*r); lua_pushclass<Mat>(L, retval__, "cv.Mat"); return 1; } catch (cv::Exception &e) { std::string *s = new std::string("cv.Mat.colRange: failed ("); s->append(e.err); s->append(")"); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (std::exception &e) { std::string *s = new std::string("cv.Mat.colRange: "); s->append(e.what()); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (...) { lua_pushstring(L, "cv.Mat.colRange: Unknown exception"); lua_error(L); return 0; } } /** Overloaded function chooser for colRange(...) */ static int Mat_colRange(lua_State *L) { int type__ = lua_type(L, 1); if (type__ == LUA_TNUMBER) { return Mat_colRange1(L); } else if (type__ == LUA_TUSERDATA && is_userdata(L, 1, "cv.Range")) { return Mat_colRange2(L); } else { // use any to raise errors return Mat_colRange2(L); } } /** void cv::Mat::convertTo(Mat &m, int rtype, double alpha=1, double beta=0) const * include/opencv/cxcore.hpp:844 */ static int Mat_convertTo(lua_State *L) { try { Mat *self__ = *((Mat**)dubL_checkudata(L, 1, "cv.Mat")); lua_remove(L, 1); int top__ = lua_gettop(L); Mat *m = *((Mat **)dubL_checkudata(L, 1, "cv.Mat")); int rtype = dubL_checkint(L, 2); if (top__ < 3) { self__->convertTo(*m, rtype); } else { double alpha = dubL_checknumber(L, 3); if (top__ < 4) { self__->convertTo(*m, rtype, alpha); } else { double beta = dubL_checknumber(L, 4); self__->convertTo(*m, rtype, alpha, beta); } } return 0; } catch (cv::Exception &e) { std::string *s = new std::string("cv.Mat.convertTo: failed ("); s->append(e.err); s->append(")"); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (std::exception &e) { std::string *s = new std::string("cv.Mat.convertTo: "); s->append(e.what()); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (...) { lua_pushstring(L, "cv.Mat.convertTo: Unknown exception"); lua_error(L); return 0; } } /** void cv::Mat::copyTo(Mat &m) const * include/opencv/cxcore.hpp:829 */ static int Mat_copyTo1(lua_State *L) { try { Mat *self__ = *((Mat**)dubL_checkudata(L, 1, "cv.Mat")); lua_remove(L, 1); Mat *m = *((Mat **)dubL_checkudata(L, 1, "cv.Mat")); self__->copyTo(*m); return 0; } catch (cv::Exception &e) { std::string *s = new std::string("cv.Mat.copyTo: failed ("); s->append(e.err); s->append(")"); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (std::exception &e) { std::string *s = new std::string("cv.Mat.copyTo: "); s->append(e.what()); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (...) { lua_pushstring(L, "cv.Mat.copyTo: Unknown exception"); lua_error(L); return 0; } } /** void cv::Mat::copyTo(Mat &m, const Mat &mask) const * include/opencv/cxcore.hpp:831 */ static int Mat_copyTo2(lua_State *L) { try { Mat *self__ = *((Mat**)dubL_checkudata(L, 1, "cv.Mat")); lua_remove(L, 1); Mat *m = *((Mat **)dubL_checkudata(L, 1, "cv.Mat")); const Mat *mask = *((const Mat **)dubL_checkudata(L, 2, "cv.Mat")); self__->copyTo(*m, *mask); return 0; } catch (cv::Exception &e) { std::string *s = new std::string("cv.Mat.copyTo: failed ("); s->append(e.err); s->append(")"); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (std::exception &e) { std::string *s = new std::string("cv.Mat.copyTo: "); s->append(e.what()); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (...) { lua_pushstring(L, "cv.Mat.copyTo: Unknown exception"); lua_error(L); return 0; } } /** Overloaded function chooser for copyTo(...) */ static int Mat_copyTo(lua_State *L) { int type__ = lua_type(L, 1); int top__ = lua_gettop(L); if (type__ == LUA_TUSERDATA && is_userdata(L, 1, "cv.Mat")) { type__ = lua_type(L, 2); if (top__ < 2) { return Mat_copyTo1(L); } else if (type__ == LUA_TUSERDATA && is_userdata(L, 2, "cv.Mat")) { return Mat_copyTo2(L); } else { // use any to raise errors return Mat_copyTo2(L); } } else { // use any to raise errors return Mat_copyTo2(L); } } /** void cv::Mat::create(int _rows, int _cols, int _type) * include/opencv/cxcore.hpp:889 */ static int Mat_create1(lua_State *L) { try { Mat *self__ = *((Mat**)dubL_checkudata(L, 1, "cv.Mat")); lua_remove(L, 1); int _rows = dubL_checkint(L, 1); int _cols = dubL_checkint(L, 2); int _type = dubL_checkint(L, 3); self__->create(_rows, _cols, _type); return 0; } catch (cv::Exception &e) { std::string *s = new std::string("cv.Mat.create: failed ("); s->append(e.err); s->append(")"); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (std::exception &e) { std::string *s = new std::string("cv.Mat.create: "); s->append(e.what()); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (...) { lua_pushstring(L, "cv.Mat.create: Unknown exception"); lua_error(L); return 0; } } /** void cv::Mat::create(Size _size, int _type) * include/opencv/cxcore.hpp:890 */ static int Mat_create2(lua_State *L) { try { Mat *self__ = *((Mat**)dubL_checkudata(L, 1, "cv.Mat")); lua_remove(L, 1); Size *_size = *((Size **)dubL_checkudata(L, 1, "cv.Size")); int _type = dubL_checkint(L, 2); self__->create(*_size, _type); return 0; } catch (cv::Exception &e) { std::string *s = new std::string("cv.Mat.create: failed ("); s->append(e.err); s->append(")"); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (std::exception &e) { std::string *s = new std::string("cv.Mat.create: "); s->append(e.what()); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (...) { lua_pushstring(L, "cv.Mat.create: Unknown exception"); lua_error(L); return 0; } } /** Overloaded function chooser for create(...) */ static int Mat_create(lua_State *L) { int type__ = lua_type(L, 1); if (type__ == LUA_TNUMBER) { return Mat_create1(L); } else if (type__ == LUA_TUSERDATA && is_userdata(L, 1, "cv.Size")) { return Mat_create2(L); } else { // use any to raise errors return Mat_create2(L); } } /** Mat cv::Mat::cross(const Mat &m) const * include/opencv/cxcore.hpp:871 */ static int Mat_cross(lua_State *L) { try { Mat *self__ = *((Mat**)dubL_checkudata(L, 1, "cv.Mat")); lua_remove(L, 1); const Mat *m = *((const Mat **)dubL_checkudata(L, 1, "cv.Mat")); Mat retval__ = self__->cross(*m); lua_pushclass<Mat>(L, retval__, "cv.Mat"); return 1; } catch (cv::Exception &e) { std::string *s = new std::string("cv.Mat.cross: failed ("); s->append(e.err); s->append(")"); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (std::exception &e) { std::string *s = new std::string("cv.Mat.cross: "); s->append(e.what()); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (...) { lua_pushstring(L, "cv.Mat.cross: Unknown exception"); lua_error(L); return 0; } } /** int cv::Mat::depth() const * include/opencv/cxcore.hpp:962 */ static int Mat_depth(lua_State *L) { try { Mat *self__ = *((Mat**)dubL_checkudata(L, 1, "cv.Mat")); lua_remove(L, 1); int retval__ = self__->depth(); lua_pushnumber(L, retval__); return 1; } catch (cv::Exception &e) { std::string *s = new std::string("cv.Mat.depth: failed ("); s->append(e.err); s->append(")"); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (std::exception &e) { std::string *s = new std::string("cv.Mat.depth: "); s->append(e.what()); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (...) { lua_pushstring(L, "cv.Mat.depth: Unknown exception"); lua_error(L); return 0; } } /** Mat cv::Mat::diag(int d=0) const * include/opencv/cxcore.hpp:815 */ static int Mat_diag1(lua_State *L) { try { Mat *self__ = *((Mat**)dubL_checkudata(L, 1, "cv.Mat")); lua_remove(L, 1); int top__ = lua_gettop(L); Mat retval__; if (top__ < 1) { retval__ = self__->diag(); } else { int d = dubL_checkint(L, 1); retval__ = self__->diag(d); } lua_pushclass<Mat>(L, retval__, "cv.Mat"); return 1; } catch (cv::Exception &e) { std::string *s = new std::string("cv.Mat.diag: failed ("); s->append(e.err); s->append(")"); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (std::exception &e) { std::string *s = new std::string("cv.Mat.diag: "); s->append(e.what()); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (...) { lua_pushstring(L, "cv.Mat.diag: Unknown exception"); lua_error(L); return 0; } } /** static Mat cv::Mat::diag(const Mat &d) * include/opencv/cxcore.hpp:817 */ static int Mat_diag2(lua_State *L) { try { const Mat *d = *((const Mat **)dubL_checkudata(L, 1, "cv.Mat")); Mat retval__ = Mat::diag(*d); lua_pushclass<Mat>(L, retval__, "cv.Mat"); return 1; } catch (cv::Exception &e) { std::string *s = new std::string("cv.Mat.diag: failed ("); s->append(e.err); s->append(")"); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (std::exception &e) { std::string *s = new std::string("cv.Mat.diag: "); s->append(e.what()); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (...) { lua_pushstring(L, "cv.Mat.diag: Unknown exception"); lua_error(L); return 0; } } /** Overloaded function chooser for diag(...) */ static int Mat_diag(lua_State *L) { int type__ = lua_type(L, 1); if (type__ == LUA_TNUMBER) { return Mat_diag1(L); } else if (type__ == LUA_TUSERDATA && is_userdata(L, 1, "cv.Mat")) { return Mat_diag2(L); } else { // use any to raise errors return Mat_diag2(L); } } /** double cv::Mat::dot(const Mat &m) const * include/opencv/cxcore.hpp:873 */ static int Mat_dot(lua_State *L) { try { Mat *self__ = *((Mat**)dubL_checkudata(L, 1, "cv.Mat")); lua_remove(L, 1); const Mat *m = *((const Mat **)dubL_checkudata(L, 1, "cv.Mat")); double retval__ = self__->dot(*m); lua_pushnumber(L, retval__); return 1; } catch (cv::Exception &e) { std::string *s = new std::string("cv.Mat.dot: failed ("); s->append(e.err); s->append(")"); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (std::exception &e) { std::string *s = new std::string("cv.Mat.dot: "); s->append(e.what()); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (...) { lua_pushstring(L, "cv.Mat.dot: Unknown exception"); lua_error(L); return 0; } } /** size_t cv::Mat::elemSize() const * include/opencv/cxcore.hpp:943 */ static int Mat_elemSize(lua_State *L) { try { Mat *self__ = *((Mat**)dubL_checkudata(L, 1, "cv.Mat")); lua_remove(L, 1); size_t retval__ = self__->elemSize(); lua_pushnumber(L, retval__); return 1; } catch (cv::Exception &e) { std::string *s = new std::string("cv.Mat.elemSize: failed ("); s->append(e.err); s->append(")"); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (std::exception &e) { std::string *s = new std::string("cv.Mat.elemSize: "); s->append(e.what()); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (...) { lua_pushstring(L, "cv.Mat.elemSize: Unknown exception"); lua_error(L); return 0; } } /** size_t cv::Mat::elemSize1() const * include/opencv/cxcore.hpp:949 */ static int Mat_elemSize1(lua_State *L) { try { Mat *self__ = *((Mat**)dubL_checkudata(L, 1, "cv.Mat")); lua_remove(L, 1); size_t retval__ = self__->elemSize1(); lua_pushnumber(L, retval__); return 1; } catch (cv::Exception &e) { std::string *s = new std::string("cv.Mat.elemSize1: failed ("); s->append(e.err); s->append(")"); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (std::exception &e) { std::string *s = new std::string("cv.Mat.elemSize1: "); s->append(e.what()); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (...) { lua_pushstring(L, "cv.Mat.elemSize1: Unknown exception"); lua_error(L); return 0; } } /** bool cv::Mat::empty() const * include/opencv/cxcore.hpp:984 */ static int Mat_empty(lua_State *L) { try { Mat *self__ = *((Mat**)dubL_checkudata(L, 1, "cv.Mat")); lua_remove(L, 1); bool retval__ = self__->empty(); lua_pushnumber(L, retval__); return 1; } catch (cv::Exception &e) { std::string *s = new std::string("cv.Mat.empty: failed ("); s->append(e.err); s->append(")"); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (std::exception &e) { std::string *s = new std::string("cv.Mat.empty: "); s->append(e.what()); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (...) { lua_pushstring(L, "cv.Mat.empty: Unknown exception"); lua_error(L); return 0; } } /** static MatExpr_Initializer cv::Mat::eye(int rows, int cols, int type) * include/opencv/cxcore.hpp:880 */ static int Mat_eye1(lua_State *L) { try { int rows = dubL_checkint(L, 1); int cols = dubL_checkint(L, 2); int type = dubL_checkint(L, 3); MatExpr_Initializer retval__ = Mat::eye(rows, cols, type); lua_pushclass<MatExpr_Initializer>(L, retval__, "cv.MatExpr_Initializer"); return 1; } catch (cv::Exception &e) { std::string *s = new std::string("cv.Mat.eye: failed ("); s->append(e.err); s->append(")"); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (std::exception &e) { std::string *s = new std::string("cv.Mat.eye: "); s->append(e.what()); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (...) { lua_pushstring(L, "cv.Mat.eye: Unknown exception"); lua_error(L); return 0; } } /** static MatExpr_Initializer cv::Mat::eye(Size size, int type) * include/opencv/cxcore.hpp:881 */ static int Mat_eye2(lua_State *L) { try { Size *size = *((Size **)dubL_checkudata(L, 1, "cv.Size")); int type = dubL_checkint(L, 2); MatExpr_Initializer retval__ = Mat::eye(*size, type); lua_pushclass<MatExpr_Initializer>(L, retval__, "cv.MatExpr_Initializer"); return 1; } catch (cv::Exception &e) { std::string *s = new std::string("cv.Mat.eye: failed ("); s->append(e.err); s->append(")"); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (std::exception &e) { std::string *s = new std::string("cv.Mat.eye: "); s->append(e.what()); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (...) { lua_pushstring(L, "cv.Mat.eye: Unknown exception"); lua_error(L); return 0; } } /** Overloaded function chooser for eye(...) */ static int Mat_eye(lua_State *L) { int type__ = lua_type(L, 1); if (type__ == LUA_TNUMBER) { return Mat_eye1(L); } else if (type__ == LUA_TUSERDATA && is_userdata(L, 1, "cv.Size")) { return Mat_eye2(L); } else { // use any to raise errors return Mat_eye2(L); } } /** bool cv::Mat::isContinuous() const * include/opencv/cxcore.hpp:937 */ static int Mat_isContinuous(lua_State *L) { try { Mat *self__ = *((Mat**)dubL_checkudata(L, 1, "cv.Mat")); lua_remove(L, 1); bool retval__ = self__->isContinuous(); lua_pushnumber(L, retval__); return 1; } catch (cv::Exception &e) { std::string *s = new std::string("cv.Mat.isContinuous: failed ("); s->append(e.err); s->append(")"); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (std::exception &e) { std::string *s = new std::string("cv.Mat.isContinuous: "); s->append(e.what()); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (...) { lua_pushstring(L, "cv.Mat.isContinuous: Unknown exception"); lua_error(L); return 0; } } /** void cv::Mat::locateROI(Size &wholeSize, Point &ofs) const * include/opencv/cxcore.hpp:898 */ static int Mat_locateROI(lua_State *L) { try { Mat *self__ = *((Mat**)dubL_checkudata(L, 1, "cv.Mat")); lua_remove(L, 1); Size *wholeSize = *((Size **)dubL_checkudata(L, 1, "cv.Size")); Point *ofs = *((Point **)dubL_checkudata(L, 2, "cv.Point")); self__->locateROI(*wholeSize, *ofs); return 0; } catch (cv::Exception &e) { std::string *s = new std::string("cv.Mat.locateROI: failed ("); s->append(e.err); s->append(")"); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (std::exception &e) { std::string *s = new std::string("cv.Mat.locateROI: "); s->append(e.what()); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (...) { lua_pushstring(L, "cv.Mat.locateROI: Unknown exception"); lua_error(L); return 0; } } /** static MatExpr_Initializer cv::Mat::ones(int rows, int cols, int type) * include/opencv/cxcore.hpp:878 */ static int Mat_ones1(lua_State *L) { try { int rows = dubL_checkint(L, 1); int cols = dubL_checkint(L, 2); int type = dubL_checkint(L, 3); MatExpr_Initializer retval__ = Mat::ones(rows, cols, type); lua_pushclass<MatExpr_Initializer>(L, retval__, "cv.MatExpr_Initializer"); return 1; } catch (cv::Exception &e) { std::string *s = new std::string("cv.Mat.ones: failed ("); s->append(e.err); s->append(")"); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (std::exception &e) { std::string *s = new std::string("cv.Mat.ones: "); s->append(e.what()); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (...) { lua_pushstring(L, "cv.Mat.ones: Unknown exception"); lua_error(L); return 0; } } /** static MatExpr_Initializer cv::Mat::ones(Size size, int type) * include/opencv/cxcore.hpp:879 */ static int Mat_ones2(lua_State *L) { try { Size *size = *((Size **)dubL_checkudata(L, 1, "cv.Size")); int type = dubL_checkint(L, 2); MatExpr_Initializer retval__ = Mat::ones(*size, type); lua_pushclass<MatExpr_Initializer>(L, retval__, "cv.MatExpr_Initializer"); return 1; } catch (cv::Exception &e) { std::string *s = new std::string("cv.Mat.ones: failed ("); s->append(e.err); s->append(")"); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (std::exception &e) { std::string *s = new std::string("cv.Mat.ones: "); s->append(e.what()); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (...) { lua_pushstring(L, "cv.Mat.ones: Unknown exception"); lua_error(L); return 0; } } /** Overloaded function chooser for ones(...) */ static int Mat_ones(lua_State *L) { int type__ = lua_type(L, 1); if (type__ == LUA_TNUMBER) { return Mat_ones1(L); } else if (type__ == LUA_TUSERDATA && is_userdata(L, 1, "cv.Size")) { return Mat_ones2(L); } else { // use any to raise errors return Mat_ones2(L); } } /** void cv::Mat::release() * include/opencv/cxcore.hpp:895 */ static int Mat_release(lua_State *L) { try { Mat *self__ = *((Mat**)dubL_checkudata(L, 1, "cv.Mat")); lua_remove(L, 1); self__->release(); return 0; } catch (cv::Exception &e) { std::string *s = new std::string("cv.Mat.release: failed ("); s->append(e.err); s->append(")"); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (std::exception &e) { std::string *s = new std::string("cv.Mat.release: "); s->append(e.what()); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (...) { lua_pushstring(L, "cv.Mat.release: Unknown exception"); lua_error(L); return 0; } } /** Mat cv::Mat::reshape(int _cn, int _rows=0) const * include/opencv/cxcore.hpp:854 */ static int Mat_reshape(lua_State *L) { try { Mat *self__ = *((Mat**)dubL_checkudata(L, 1, "cv.Mat")); lua_remove(L, 1); int top__ = lua_gettop(L); Mat retval__; int _cn = dubL_checkint(L, 1); if (top__ < 2) { retval__ = self__->reshape(_cn); } else { int _rows = dubL_checkint(L, 2); retval__ = self__->reshape(_cn, _rows); } lua_pushclass<Mat>(L, retval__, "cv.Mat"); return 1; } catch (cv::Exception &e) { std::string *s = new std::string("cv.Mat.reshape: failed ("); s->append(e.err); s->append(")"); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (std::exception &e) { std::string *s = new std::string("cv.Mat.reshape: "); s->append(e.what()); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (...) { lua_pushstring(L, "cv.Mat.reshape: Unknown exception"); lua_error(L); return 0; } } /** Mat cv::Mat::row(int y) const * include/opencv/cxcore.hpp:802 */ static int Mat_row(lua_State *L) { try { Mat *self__ = *((Mat**)dubL_checkudata(L, 1, "cv.Mat")); lua_remove(L, 1); int y = dubL_checkint(L, 1); Mat retval__ = self__->row(y); lua_pushclass<Mat>(L, retval__, "cv.Mat"); return 1; } catch (cv::Exception &e) { std::string *s = new std::string("cv.Mat.row: failed ("); s->append(e.err); s->append(")"); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (std::exception &e) { std::string *s = new std::string("cv.Mat.row: "); s->append(e.what()); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (...) { lua_pushstring(L, "cv.Mat.row: Unknown exception"); lua_error(L); return 0; } } /** Mat cv::Mat::rowRange(int startrow, int endrow) const * include/opencv/cxcore.hpp:806 */ static int Mat_rowRange1(lua_State *L) { try { Mat *self__ = *((Mat**)dubL_checkudata(L, 1, "cv.Mat")); lua_remove(L, 1); int startrow = dubL_checkint(L, 1); int endrow = dubL_checkint(L, 2); Mat retval__ = self__->rowRange(startrow, endrow); lua_pushclass<Mat>(L, retval__, "cv.Mat"); return 1; } catch (cv::Exception &e) { std::string *s = new std::string("cv.Mat.rowRange: failed ("); s->append(e.err); s->append(")"); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (std::exception &e) { std::string *s = new std::string("cv.Mat.rowRange: "); s->append(e.what()); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (...) { lua_pushstring(L, "cv.Mat.rowRange: Unknown exception"); lua_error(L); return 0; } } /** Mat cv::Mat::rowRange(const Range &r) const * include/opencv/cxcore.hpp:807 */ static int Mat_rowRange2(lua_State *L) { try { Mat *self__ = *((Mat**)dubL_checkudata(L, 1, "cv.Mat")); lua_remove(L, 1); const Range *r = *((const Range **)dubL_checkudata(L, 1, "cv.Range")); Mat retval__ = self__->rowRange(*r); lua_pushclass<Mat>(L, retval__, "cv.Mat"); return 1; } catch (cv::Exception &e) { std::string *s = new std::string("cv.Mat.rowRange: failed ("); s->append(e.err); s->append(")"); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (std::exception &e) { std::string *s = new std::string("cv.Mat.rowRange: "); s->append(e.what()); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (...) { lua_pushstring(L, "cv.Mat.rowRange: Unknown exception"); lua_error(L); return 0; } } /** Overloaded function chooser for rowRange(...) */ static int Mat_rowRange(lua_State *L) { int type__ = lua_type(L, 1); if (type__ == LUA_TNUMBER) { return Mat_rowRange1(L); } else if (type__ == LUA_TUSERDATA && is_userdata(L, 1, "cv.Range")) { return Mat_rowRange2(L); } else { // use any to raise errors return Mat_rowRange2(L); } } /** Mat& cv::Mat::setTo(const Scalar &s, const Mat &mask=Mat()) * include/opencv/cxcore.hpp:851 */ static int Mat_setTo(lua_State *L) { try { Mat *self__ = *((Mat**)dubL_checkudata(L, 1, "cv.Mat")); lua_remove(L, 1); int top__ = lua_gettop(L); Mat retval__; const Scalar *s = *((const Scalar **)dubL_checkudata(L, 1, "cv.Scalar")); if (top__ < 2) { retval__ = self__->setTo(*s); } else { const Mat *mask = *((const Mat **)dubL_checkudata(L, 2, "cv.Mat")); retval__ = self__->setTo(*s, *mask); } lua_pushclass<Mat>(L, retval__, "cv.Mat"); return 1; } catch (cv::Exception &e) { std::string *s = new std::string("cv.Mat.setTo: failed ("); s->append(e.err); s->append(")"); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (std::exception &e) { std::string *s = new std::string("cv.Mat.setTo: "); s->append(e.what()); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (...) { lua_pushstring(L, "cv.Mat.setTo: Unknown exception"); lua_error(L); return 0; } } /** Size cv::Mat::size() const * include/opencv/cxcore.hpp:982 */ static int Mat_size(lua_State *L) { try { Mat *self__ = *((Mat**)dubL_checkudata(L, 1, "cv.Mat")); lua_remove(L, 1); Size retval__ = self__->size(); lua_pushclass<Size>(L, retval__, "cv.Size"); return 1; } catch (cv::Exception &e) { std::string *s = new std::string("cv.Mat.size: failed ("); s->append(e.err); s->append(")"); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (std::exception &e) { std::string *s = new std::string("cv.Mat.size: "); s->append(e.what()); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (...) { lua_pushstring(L, "cv.Mat.size: Unknown exception"); lua_error(L); return 0; } } /** size_t cv::Mat::step1() const * include/opencv/cxcore.hpp:975 */ static int Mat_step1(lua_State *L) { try { Mat *self__ = *((Mat**)dubL_checkudata(L, 1, "cv.Mat")); lua_remove(L, 1); size_t retval__ = self__->step1(); lua_pushnumber(L, retval__); return 1; } catch (cv::Exception &e) { std::string *s = new std::string("cv.Mat.step1: failed ("); s->append(e.err); s->append(")"); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (std::exception &e) { std::string *s = new std::string("cv.Mat.step1: "); s->append(e.what()); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (...) { lua_pushstring(L, "cv.Mat.step1: Unknown exception"); lua_error(L); return 0; } } /** int cv::Mat::type() const * include/opencv/cxcore.hpp:956 */ static int Mat_type(lua_State *L) { try { Mat *self__ = *((Mat**)dubL_checkudata(L, 1, "cv.Mat")); lua_remove(L, 1); int retval__ = self__->type(); lua_pushnumber(L, retval__); return 1; } catch (cv::Exception &e) { std::string *s = new std::string("cv.Mat.type: failed ("); s->append(e.err); s->append(")"); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (std::exception &e) { std::string *s = new std::string("cv.Mat.type: "); s->append(e.what()); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (...) { lua_pushstring(L, "cv.Mat.type: Unknown exception"); lua_error(L); return 0; } } /** static MatExpr_Initializer cv::Mat::zeros(int rows, int cols, int type) * include/opencv/cxcore.hpp:876 */ static int Mat_zeros1(lua_State *L) { try { int rows = dubL_checkint(L, 1); int cols = dubL_checkint(L, 2); int type = dubL_checkint(L, 3); MatExpr_Initializer retval__ = Mat::zeros(rows, cols, type); lua_pushclass<MatExpr_Initializer>(L, retval__, "cv.MatExpr_Initializer"); return 1; } catch (cv::Exception &e) { std::string *s = new std::string("cv.Mat.zeros: failed ("); s->append(e.err); s->append(")"); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (std::exception &e) { std::string *s = new std::string("cv.Mat.zeros: "); s->append(e.what()); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (...) { lua_pushstring(L, "cv.Mat.zeros: Unknown exception"); lua_error(L); return 0; } } /** static MatExpr_Initializer cv::Mat::zeros(Size size, int type) * include/opencv/cxcore.hpp:877 */ static int Mat_zeros2(lua_State *L) { try { Size *size = *((Size **)dubL_checkudata(L, 1, "cv.Size")); int type = dubL_checkint(L, 2); MatExpr_Initializer retval__ = Mat::zeros(*size, type); lua_pushclass<MatExpr_Initializer>(L, retval__, "cv.MatExpr_Initializer"); return 1; } catch (cv::Exception &e) { std::string *s = new std::string("cv.Mat.zeros: failed ("); s->append(e.err); s->append(")"); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (std::exception &e) { std::string *s = new std::string("cv.Mat.zeros: "); s->append(e.what()); lua_pushstring(L, s->c_str()); delete s; lua_error(L); // never reached return 0; } catch (...) { lua_pushstring(L, "cv.Mat.zeros: Unknown exception"); lua_error(L); return 0; } } /** Overloaded function chooser for zeros(...) */ static int Mat_zeros(lua_State *L) { int type__ = lua_type(L, 1); if (type__ == LUA_TNUMBER) { return Mat_zeros1(L); } else if (type__ == LUA_TUSERDATA && is_userdata(L, 1, "cv.Size")) { return Mat_zeros2(L); } else { // use any to raise errors return Mat_zeros2(L); } } /* ============================ Lua Registration ====================== */ static const struct luaL_Reg Mat_member_methods[] = { {"addref" , Mat_addref}, {"adjustROI" , Mat_adjustROI}, {"assignTo" , Mat_assignTo}, {"channels" , Mat_channels}, {"clone" , Mat_clone}, {"col" , Mat_col}, {"colRange" , Mat_colRange}, {"convertTo" , Mat_convertTo}, {"copyTo" , Mat_copyTo}, {"create" , Mat_create}, {"cross" , Mat_cross}, {"depth" , Mat_depth}, {"diag" , Mat_diag}, {"dot" , Mat_dot}, {"elemSize" , Mat_elemSize}, {"elemSize1" , Mat_elemSize1}, {"empty" , Mat_empty}, {"isContinuous" , Mat_isContinuous}, {"locateROI" , Mat_locateROI}, {"release" , Mat_release}, {"reshape" , Mat_reshape}, {"row" , Mat_row}, {"rowRange" , Mat_rowRange}, {"setTo" , Mat_setTo}, {"size" , Mat_size}, {"step1" , Mat_step1}, {"type" , Mat_type}, {"__tostring" , Mat__tostring}, {"__gc" , Mat_destructor}, {NULL, NULL}, }; static const struct luaL_Reg Mat_namespace_methods[] = { {"Mat" , Mat_Mat}, {"Mat_eye" , Mat_eye}, {"Mat_ones" , Mat_ones}, {"Mat_zeros" , Mat_zeros}, {NULL, NULL}, }; static const struct lua_constants_Reg Mat_namespace_constants[] = { {"MAGIC_VAL" , cv::Mat::MAGIC_VAL}, {"AUTO_STEP" , cv::Mat::AUTO_STEP}, {"CONTINUOUS_FLAG" , cv::Mat::CONTINUOUS_FLAG}, {NULL, NULL}, }; #ifdef DUB_LUA_NO_OPEN int luaload_cv_Mat(lua_State *L) { #else extern "C" int luaopen_cv_Mat(lua_State *L) { #endif // Create the metatable which will contain all the member methods luaL_newmetatable(L, "cv.Mat"); // metatable.__index = metatable (find methods in the table itself) lua_pushvalue(L, -1); lua_setfield(L, -2, "__index"); // register member methods luaL_register(L, NULL, Mat_member_methods); // register class methods in a global namespace table luaL_register(L, "cv", Mat_namespace_methods); // register class enums register_constants(L, "cv.Mat_const", Mat_namespace_constants); }
[ "gaspard@teti.ch" ]
gaspard@teti.ch
3f2c0cab57b6e96668e799026ccd07033eb2550a
b1aef802c0561f2a730ac3125c55325d9c480e45
/src/ripple/app/ledger/LedgerToJson.h
c8d2f69c35b5f808b2a281e3d0a474b5dfb89c0b
[]
no_license
sgy-official/sgy
d3f388cefed7cf20513c14a2a333c839aa0d66c6
8c5c356c81b24180d8763d3bbc0763f1046871ac
refs/heads/master
2021-05-19T07:08:54.121998
2020-03-31T11:08:16
2020-03-31T11:08:16
251,577,856
6
4
null
null
null
null
UTF-8
C++
false
false
1,216
h
#ifndef RIPPLE_APP_LEDGER_LEDGERTOJSON_H_INCLUDED #define RIPPLE_APP_LEDGER_LEDGERTOJSON_H_INCLUDED #include <ripple/app/ledger/Ledger.h> #include <ripple/app/misc/TxQ.h> #include <ripple/basics/StringUtilities.h> #include <ripple/protocol/jss.h> #include <ripple/protocol/STTx.h> #include <ripple/json/Object.h> namespace ripple { struct LedgerFill { LedgerFill (ReadView const& l, int o = 0, std::vector<TxQ::TxDetails> q = {}, LedgerEntryType t = ltINVALID) : ledger (l) , options (o) , txQueue(std::move(q)) , type (t) { } enum Options { dumpTxrp = 1, dumpState = 2, expand = 4, full = 8, binary = 16, ownerFunds = 32, dumpQueue = 64 }; ReadView const& ledger; int options; std::vector<TxQ::TxDetails> txQueue; LedgerEntryType type; }; void addJson(Json::Value&, LedgerFill const&); Json::Value getJson (LedgerFill const&); template <class Object> Blob serializeBlob(Object const& o) { Serializer s; o.add(s); return s.peekData(); } inline std::string serializeHex(STObject const& o) { return strHex(serializeBlob(o)); } } #endif
[ "sgy-official@hotmail.com" ]
sgy-official@hotmail.com
0570315a403d8b640ebb97fa919c09ab4397e8cc
e11f905da3a467dee4f0caa442ad73f136a9c344
/2_kurs/binary_search_tree/Tree.h
f7b7c0df35385b76cb8ccfd6e16b29e10e284bea
[]
no_license
RuziyaBadrutdinova/Univer_Proga
e9645bb9a4f3b1047ebd2666c0974d5474b02a4d
c939c7d3e5370ceaa56cf54b9ef4b6f293c1cd27
refs/heads/master
2020-04-07T04:45:08.593110
2019-11-18T21:55:18
2019-11-18T21:55:18
158,069,986
0
0
null
null
null
null
UTF-8
C++
false
false
589
h
#ifndef TREE_TREE_H #define TREE_TREE_H #include "NodeTree.h" #include "Queue.h" class Tree { private: NodeTree *root = nullptr; public: Tree(); void setRoot(NodeTree *root); NodeTree *getRoot(); void insert(int element, NodeTree *root); void print(NodeTree *root); bool find(NodeTree *first, int element); void PRINT(int level, NodeTree *root); // NodeTree *delete_element(NodeTree *root, int element); // void Delete_element (int element); void delete_elem(NodeTree *root, int element); void createQueue(); }; #endif //TREE_TREE_H
[ "noreply@github.com" ]
RuziyaBadrutdinova.noreply@github.com
8e14d11111aee9219893dd9134f1a1c587a53ef2
6c55391d930a331c61e461147d96efa0a295c967
/include/frameworks/base/include/private/opengles/gl_context.h
c81ab33f363b3cd2345b6aceb37a473ed2bad5c7
[]
no_license
gcxk721/rabbitrender
a31298a7a25ef13f13b18f9b19b4fd56246feecf
ff648c6eceeb38e100e40fcd46101783f8e02512
refs/heads/master
2020-04-07T04:22:46.443570
2018-09-19T00:18:45
2018-09-19T00:18:45
null
0
0
null
null
null
null
UTF-8
C++
false
false
18,435
h
/* * Copyright (C) 2006 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef ANDROID_OPENGLES_CONTEXT_H #define ANDROID_OPENGLES_CONTEXT_H #include <stdint.h> #include <stddef.h> #include <sys/types.h> #include <pthread.h> #ifdef HAVE_ANDROID_OS #include <bionic_tls.h> #endif #include <private/pixelflinger/ggl_context.h> //#include <hardware/gralloc.h> #include <GLES/gl.h> #include <GLES/glext.h> namespace android { const unsigned int OGLES_NUM_COMPRESSED_TEXTURE_FORMATS = 10 #ifdef GL_OES_compressed_ETC1_RGB8_texture + 1 #endif ; class EGLTextureObject; class EGLSurfaceManager; class EGLBufferObjectManager; namespace gl { struct ogles_context_t; struct matrixx_t; struct transform_t; struct buffer_t; ogles_context_t* getGlContext(); template<typename T> static inline void swap(T& a, T& b) { T t(a); a = b; b = t; } //template<typename T> //inline T max(T a, T b) { // return a<b ? b : a; //} //template<typename T> //inline T max(T a, T b, T c) { // return max(a, max(b, c)); //} //template<typename T> //inline T min(T a, T b) { // return a<b ? a : b; //} //template<typename T> //inline T min(T a, T b, T c) { // return min(a, min(b, c)); //} //template<typename T> //inline T min(T a, T b, T c, T d) { // return min(min(a,b), min(c,d)); //} // ---------------------------------------------------------------------------- // vertices // ---------------------------------------------------------------------------- struct vec3_t { union { struct { GLfixed x, y, z; }; struct { GLfixed r, g, b; }; struct { GLfixed S, T, R; }; GLfixed v[3]; }; }; struct vec4_t { union { struct { GLfixed x, y, z, w; }; struct { GLfixed r, g, b, a; }; struct { GLfixed S, T, R, Q; }; GLfixed v[4]; }; }; struct vertex_t { enum { // these constant matter for our clipping CLIP_L = 0x0001, // clipping flags CLIP_R = 0x0002, CLIP_B = 0x0004, CLIP_T = 0x0008, CLIP_N = 0x0010, CLIP_F = 0x0020, EYE = 0x0040, RESERVED = 0x0080, USER_CLIP_0 = 0x0100, // user clipping flags USER_CLIP_1 = 0x0200, USER_CLIP_2 = 0x0400, USER_CLIP_3 = 0x0800, USER_CLIP_4 = 0x1000, USER_CLIP_5 = 0x2000, LIT = 0x4000, // lighting has been applied TT = 0x8000, // texture coords transformed FRUSTUM_CLIP_ALL= 0x003F, USER_CLIP_ALL = 0x3F00, CLIP_ALL = 0x3F3F, }; // the fields below are arranged to minimize d-cache usage // we group together, by cache-line, the fields most likely to be used union { vec4_t obj; vec4_t eye; }; vec4_t clip; uint32_t flags; size_t index; // cache tag, and vertex index GLfixed fog; uint8_t locked; uint8_t mru; uint8_t reserved[2]; vec4_t window; vec4_t color; vec4_t texture[GGL_TEXTURE_UNIT_COUNT]; uint32_t reserved1[4]; inline void clear() { flags = index = locked = mru = 0; } }; struct point_size_t { GGLcoord size; GLboolean smooth; }; struct line_width_t { GGLcoord width; GLboolean smooth; }; struct polygon_offset_t { GLfixed factor; GLfixed units; GLboolean enable; }; // ---------------------------------------------------------------------------- // arrays // ---------------------------------------------------------------------------- struct array_t { typedef void (*fetcher_t)(ogles_context_t*, GLfixed*, const GLvoid*); fetcher_t fetch; GLvoid const* physical_pointer; GLint size; GLsizei stride; GLvoid const* pointer; buffer_t const* bo; uint16_t type; GLboolean enable; GLboolean pad; GLsizei bounds; void init(GLint, GLenum, GLsizei, const GLvoid *, const buffer_t*, GLsizei); inline void resolve(); inline const GLubyte* element(GLint i) const { return (const GLubyte*)physical_pointer + i * stride; } }; struct array_machine_t { array_t vertex; array_t normal; array_t color; array_t texture[GGL_TEXTURE_UNIT_COUNT]; uint8_t activeTexture; uint8_t tmu; uint16_t cull; uint32_t flags; GLenum indicesType; buffer_t const* array_buffer; buffer_t const* element_array_buffer; void (*compileElements)(ogles_context_t*, vertex_t*, GLint, GLsizei); void (*compileElement)(ogles_context_t*, vertex_t*, GLint); void (*mvp_transform)(transform_t const*, vec4_t*, vec4_t const*); void (*mv_transform)(transform_t const*, vec4_t*, vec4_t const*); void (*tex_transform[2])(transform_t const*, vec4_t*, vec4_t const*); void (*perspective)(ogles_context_t*c, vertex_t* v); void (*clipVertex)(ogles_context_t* c, vertex_t* nv, GGLfixed t, const vertex_t* s, const vertex_t* p); void (*clipEye)(ogles_context_t* c, vertex_t* nv, GGLfixed t, const vertex_t* s, const vertex_t* p); }; struct vertex_cache_t { enum { // must be at least 4 // 3 vertice for triangles // or 2 + 2 for indexed triangles w/ cache contention VERTEX_BUFFER_SIZE = 8, // must be a power of two and at least 3 VERTEX_CACHE_SIZE = 64, // 8 KB INDEX_BITS = 16, INDEX_MASK = ((1LU<<INDEX_BITS)-1), INDEX_SEQ = 1LU<<INDEX_BITS, }; vertex_t* vBuffer; vertex_t* vCache; uint32_t sequence; void* base; uint32_t total; uint32_t misses; int64_t startTime; void init(); void uninit(); void clear(); void dump_stats(GLenum mode); }; // ---------------------------------------------------------------------------- // fog // ---------------------------------------------------------------------------- struct fog_t { GLfixed density; GLfixed start; GLfixed end; GLfixed invEndMinusStart; GLenum mode; GLfixed (*fog)(ogles_context_t* c, GLfixed z); }; // ---------------------------------------------------------------------------- // user clip planes // ---------------------------------------------------------------------------- const unsigned int OGLES_MAX_CLIP_PLANES = 6; struct clip_plane_t { vec4_t equation; }; struct user_clip_planes_t { clip_plane_t plane[OGLES_MAX_CLIP_PLANES]; uint32_t enable; }; // ---------------------------------------------------------------------------- // lighting // ---------------------------------------------------------------------------- const unsigned int OGLES_MAX_LIGHTS = 8; struct light_t { vec4_t ambient; vec4_t diffuse; vec4_t specular; vec4_t implicitAmbient; vec4_t implicitDiffuse; vec4_t implicitSpecular; vec4_t position; // position in eye space vec4_t objPosition; vec4_t normalizedObjPosition; vec4_t spotDir; vec4_t normalizedSpotDir; GLfixed spotExp; GLfixed spotCutoff; GLfixed spotCutoffCosine; GLfixed attenuation[3]; GLfixed rConstAttenuation; GLboolean enable; }; struct material_t { vec4_t ambient; vec4_t diffuse; vec4_t specular; vec4_t emission; GLfixed shininess; }; struct light_model_t { vec4_t ambient; GLboolean twoSide; }; struct color_material_t { GLenum face; GLenum mode; GLboolean enable; }; struct lighting_t { light_t lights[OGLES_MAX_LIGHTS]; material_t front; light_model_t lightModel; color_material_t colorMaterial; vec4_t implicitSceneEmissionAndAmbient; vec4_t objViewer; uint32_t enabledLights; GLboolean enable; GLenum shadeModel; typedef void (*light_fct_t)(ogles_context_t*, vertex_t*); void (*lightVertex)(ogles_context_t* c, vertex_t* v); void (*lightTriangle)(ogles_context_t* c, vertex_t* v0, vertex_t* v1, vertex_t* v2); }; struct culling_t { GLenum cullFace; GLenum frontFace; GLboolean enable; }; // ---------------------------------------------------------------------------- // textures // ---------------------------------------------------------------------------- struct texture_unit_t { GLuint name; EGLTextureObject* texture; uint8_t dirty; }; struct texture_state_t { texture_unit_t tmu[GGL_TEXTURE_UNIT_COUNT]; int active; // active tmu EGLTextureObject* defaultTexture; GGLContext* ggl; uint8_t packAlignment; uint8_t unpackAlignment; }; // ---------------------------------------------------------------------------- // transformation and matrices // ---------------------------------------------------------------------------- struct matrixf_t; struct matrixx_t { GLfixed m[16]; void load(const matrixf_t& rhs); }; struct matrix_stack_t; struct matrixf_t { void loadIdentity(); void load(const matrixf_t& rhs); inline GLfloat* editElements() { return m; } inline GLfloat const* elements() const { return m; } void set(const GLfixed* rhs); void set(const GLfloat* rhs); static void multiply(matrixf_t& r, const matrixf_t& lhs, const matrixf_t& rhs); void dump(const char* what); private: friend struct matrix_stack_t; GLfloat m[16]; void load(const GLfixed* rhs); void load(const GLfloat* rhs); void multiply(const matrixf_t& rhs); void translate(GLfloat x, GLfloat y, GLfloat z); void scale(GLfloat x, GLfloat y, GLfloat z); void rotate(GLfloat a, GLfloat x, GLfloat y, GLfloat z); }; enum OPS_ENUM{ OP_IDENTITY = 0x00, OP_TRANSLATE = 0x01, OP_UNIFORM_SCALE = 0x02, OP_SCALE = 0x05, OP_ROTATE = 0x08, OP_SKEW = 0x10, OP_ALL = 0x1F }; struct transform_t { enum { FLAGS_2D_PROJECTION = 0x1 }; matrixx_t matrix; uint32_t flags; uint32_t ops; union { struct { void (*point2)(transform_t const* t, vec4_t*, vec4_t const*); void (*point3)(transform_t const* t, vec4_t*, vec4_t const*); void (*point4)(transform_t const* t, vec4_t*, vec4_t const*); }; void (*pointv[3])(transform_t const* t, vec4_t*, vec4_t const*); }; void loadIdentity(); void picker(); void dump(const char* what); }; struct mvui_transform_t : public transform_t { void picker(); }; struct matrix_stack_t { enum { DO_PICKER = 0x1, DO_FLOAT_TO_FIXED = 0x2 }; transform_t transform; uint8_t maxDepth; uint8_t depth; uint8_t dirty; uint8_t reserved; matrixf_t *stack; uint8_t *ops; void init(int depth); void uninit(); void loadIdentity(); void load(const GLfixed* rhs); void load(const GLfloat* rhs); void multiply(const matrixf_t& rhs); void translate(GLfloat x, GLfloat y, GLfloat z); void scale(GLfloat x, GLfloat y, GLfloat z); void rotate(GLfloat a, GLfloat x, GLfloat y, GLfloat z); GLint push(); GLint pop(); void validate(); matrixf_t& top() { return stack[depth]; } const matrixf_t& top() const { return stack[depth]; } uint32_t top_ops() const { return ops[depth]; } inline bool isRigidBody() const { return !(ops[depth] & ~(OP_TRANSLATE|OP_UNIFORM_SCALE|OP_ROTATE)); } }; struct vp_transform_t { transform_t transform; matrixf_t matrix; GLfloat zNear; GLfloat zFar; void loadIdentity(); }; struct transform_state_t { enum { MODELVIEW = 0x01, PROJECTION = 0x02, VIEWPORT = 0x04, TEXTURE = 0x08, MVUI = 0x10, MVIT = 0x20, MVP = 0x40, }; matrix_stack_t *current; matrix_stack_t modelview; matrix_stack_t projection; matrix_stack_t texture[GGL_TEXTURE_UNIT_COUNT]; // modelview * projection //transform_t mvp __attribute__((aligned(32))); __declspec (align(32)) transform_t mvp; // viewport transformation //vp_transform_t vpt __attribute__((aligned(32))); __declspec (align(32)) vp_transform_t vpt; // same for 4-D vertices transform_t mvp4; // full modelview inverse transpose transform_t mvit4; // upper 3x3 of mv-inverse-transpose (for normals) mvui_transform_t mvui; GLenum matrixMode; GLenum rescaleNormals; uint32_t dirty; void invalidate(); void update_mvp(); void update_mvit(); void update_mvui(); }; struct viewport_t { GLint x; GLint y; GLsizei w; GLsizei h; struct { GLint x; GLint y; } surfaceport; struct { GLint x; GLint y; GLsizei w; GLsizei h; } scissor; }; // ---------------------------------------------------------------------------- // Lerping // ---------------------------------------------------------------------------- struct compute_iterators_t { void initTriangle( vertex_t const* v0, vertex_t const* v1, vertex_t const* v2); void initLine( vertex_t const* v0, vertex_t const* v1); inline void initLerp(vertex_t const* v0, uint32_t enables); int iteratorsScale(int32_t it[3], int32_t c0, int32_t c1, int32_t c2) const; void iterators1616(GGLfixed it[3], GGLfixed c0, GGLfixed c1, GGLfixed c2) const; void iterators0032(int32_t it[3], int32_t c0, int32_t c1, int32_t c2) const; void iterators0032(int64_t it[3], int32_t c0, int32_t c1, int32_t c2) const; GGLcoord area() const { return m_area; } private: // don't change order of members here -- used by iterators.S GGLcoord m_dx01, m_dy10, m_dx20, m_dy02; GGLcoord m_x0, m_y0; GGLcoord m_area; uint8_t m_scale; uint8_t m_area_scale; uint8_t m_reserved[2]; }; // ---------------------------------------------------------------------------- // state // ---------------------------------------------------------------------------- #ifdef HAVE_ANDROID_OS // We have a dedicated TLS slot in bionic inline void setGlThreadSpecific(ogles_context_t *value) { ((uint32_t *)__get_tls())[TLS_SLOT_OPENGL] = (uint32_t)value; } inline ogles_context_t* getGlThreadSpecific() { return (ogles_context_t *)(((unsigned *)__get_tls())[TLS_SLOT_OPENGL]); } #else extern pthread_key_t gGLKey; inline void setGlThreadSpecific(ogles_context_t *value) { pthread_setspecific(gGLKey, value); } inline ogles_context_t* getGlThreadSpecific() { return static_cast<ogles_context_t*>(pthread_getspecific(gGLKey)); } #endif struct prims_t { typedef ogles_context_t* GL; void (*renderPoint)(GL, vertex_t*); void (*renderLine)(GL, vertex_t*, vertex_t*); void (*renderTriangle)(GL, vertex_t*, vertex_t*, vertex_t*); }; struct ogles_context_t { context_t rasterizer; //array_machine_t arrays __attribute__((aligned(32))); __declspec (align(32)) array_machine_t arrays; texture_state_t textures; transform_state_t transforms; vertex_cache_t vc; prims_t prims; culling_t cull; lighting_t lighting; user_clip_planes_t clipPlanes; //compute_iterators_t lerp; __attribute__((aligned(32))); __declspec (align(32)) compute_iterators_t lerp; vertex_t current; vec4_t currentColorClamped; vec3_t currentNormal; viewport_t viewport; point_size_t point; line_width_t line; polygon_offset_t polygonOffset; fog_t fog; uint32_t perspective : 1; uint32_t transformTextures : 1; EGLSurfaceManager* surfaceManager; EGLBufferObjectManager* bufferObjectManager; GLenum error; static inline ogles_context_t* get() { return getGlThreadSpecific(); } }; }; // namespace gl }; // namespace android #endif // ANDROID_OPENGLES_CONTEXT_H
[ "listream@126.com" ]
listream@126.com
9a3e81b4a05fea2a8080a7958907a695e578e1a9
19a9cadd19ed67b2efbaf49a8d17d62ab500875a
/trajectory_server/gezinge_server 0.96/include/query_service.h
c4f88aaf177f7ba9e568cebc656d36048a3130b5
[ "MIT" ]
permissive
ozdenurucar/TrajectoryDataProcessing
8a597d228eb626b097979c2df843927a9ed05f1c
d0685c68a4633587441188fc117ee7760414443a
refs/heads/master
2020-04-12T20:56:18.163420
2018-12-22T17:15:40
2018-12-22T17:15:40
162,750,902
0
0
null
null
null
null
UTF-8
C++
false
false
1,095
h
#pragma once #include <vector> #include "include/point.h" class query_service { public: class qt_node { point _data; point _bottom_left; point _top_right; qt_node* parent; public: qt_node * child[4]; int index; qt_node(qt_node * parent); qt_node(std::nullptr_t, qt_node * parent); point& data(); point& bottom_left(); point& top_right(); bool insert(point& p, int index); int get_section(point &p); void set_boundries(int sect); ~qt_node(); }; class quad_tree { public: qt_node * root; quad_tree(std::vector<point>& list); bool insert(point& p,int index); ~quad_tree(); }; enum intersection_state { INSIDE, NONE }; query_service(std::vector<point> points, point bottom_left, point top_right); ~query_service(); std::vector<point> query_result(); std::vector<int> index_result(); private: void query(qt_node* node, point& bottom_left, point& top_right); intersection_state boundry_intersection(qt_node * node, point& bottom_left, point& top_right); quad_tree tree; std::vector<point> results; std::vector<int> index; };
[ "ozdenuru@gmail.com" ]
ozdenuru@gmail.com
6eddf4e2bdcd2c0eb11dd59e20096c16b14d21da
85ef0f6ffc78282803d1b1e0db8c1800bb01f72c
/leetcode/461.cpp
8532c3dedde25bdc84c41fb42ef8877d7db33b70
[]
no_license
yangyiming0516/my-online-judge-code
76a461142e4a7cc7c2f08c8e2301aadbced3e543
5c2c7baf4acba72056cde83528870cbe5c6b289a
refs/heads/master
2021-01-25T11:57:16.705378
2019-03-03T18:25:03
2019-03-03T18:25:03
123,449,383
0
0
null
null
null
null
UTF-8
C++
false
false
234
cpp
class Solution { public: int hammingDistance(int x, int y) { int ans=0; while (x!=0 || y!=0){ if ((x&1) != (y&1)) ans++; x >>= 1; y >>= 1; } return ans; } };
[ "noreply@github.com" ]
yangyiming0516.noreply@github.com
de4938b4763fd28fb88bdcb0467e91990e6eea0e
b77d666bc8eec9db2176f6153a92d0281dfd6ef6
/src/relentry.cpp
196eed0882e4531b0fff71fd1699f5eddfa8e5d3
[]
no_license
nmhaker/ss
f8ef9ee348256031d2fa3a0030664787882af5e2
8ffae8191c72241d9344989261f0bbce0d7f9e2d
refs/heads/master
2021-09-16T06:50:44.554439
2018-06-18T01:52:28
2018-06-18T01:52:28
135,822,584
0
0
null
null
null
null
UTF-8
C++
false
false
633
cpp
#include "../include/relentry.h" RelEntry::RelEntry(int offset, RelocationType relocationType, int value) { this->offset = offset; this->relocationType = relocationType; this->value = value; } RelEntry::~RelEntry() { } void RelEntry::setOffset(int offset) { this->offset = offset; } void RelEntry::setRelocationType(RelocationType rt) { this->relocationType = relocationType; } void RelEntry::setValue(int value) { this->value = value; } int RelEntry::getOffset() { return this->offset; } RelocationType RelEntry::getRelocationType() { return this->relocationType; } int RelEntry::getValue() { return this->value; }
[ "nmhaker@gmail.com" ]
nmhaker@gmail.com
2703f988727ddb86e1746e0daeae031ffddb0665
0ef4f71c8ff2f233945ee4effdba893fed3b8fad
/misc_microsoft_gamedev_source_code/misc_microsoft_gamedev_source_code/xsystem/SerialWriter.h
25e96212479cb71ac03325481e6d3149eec4356f
[]
no_license
sgzwiz/misc_microsoft_gamedev_source_code
1f482b2259f413241392832effcbc64c4c3d79ca
39c200a1642102b484736b51892033cc575b341a
refs/heads/master
2022-12-22T11:03:53.930024
2020-09-28T20:39:56
2020-09-28T20:39:56
null
0
0
null
null
null
null
UTF-8
C++
false
false
473
h
#pragma once class BSerialWriter { public: virtual HRESULT writeData(void* pData, long lLength) = 0; virtual long capacity(void) const = 0; HRESULT write(char); HRESULT write(unsigned char); HRESULT write(short); HRESULT write(unsigned short); HRESULT write(int); HRESULT write(unsigned int); HRESULT write(long); HRESULT write(unsigned long); HRESULT write(float); HRESULT write(double); };
[ "benjamin.barratt@icloud.com" ]
benjamin.barratt@icloud.com
f565ef8ff2f74ecd73bcc9f45ee02a2f10549104
df86c8195d0fdb99cb70c9683ed690f21cc3e423
/src/AnimatedMesh.cpp
23d64d4af021ebbf1e4e4e67251921543704379f
[]
no_license
GeorgePMarshall/OpenGLIntro
5cf6f32b0e57ec520ee939da7d068cd618622abe
6389e3ce682f30a3c3a1a6058a21a73854c7b884
refs/heads/master
2021-01-10T17:31:51.718376
2016-03-08T05:39:32
2016-03-08T05:39:32
52,235,398
0
0
null
null
null
null
UTF-8
C++
false
false
3,339
cpp
#include "AnimatedMesh.h" AnimatedMesh::AnimatedMesh(ShaderProgram* shader, const char* filePath) { meshData = new FBXFile(); meshData->load(filePath); CreateBuffers(); this->shader = shader; } AnimatedMesh::~AnimatedMesh() { RemoveBuffers(); } void AnimatedMesh::CreateBuffers() { for (int i = 0; i < meshData->getMeshCount(); ++i) { FBXMeshNode* mesh = meshData->getMeshByIndex(i); GLuint* bufferData = new GLuint[3]; std::cout << meshData->getTextureCount(); glGenVertexArrays(1, &bufferData[0]); glBindVertexArray(bufferData[0]); glGenBuffers(1, &bufferData[1]); glBindBuffer(GL_ARRAY_BUFFER, bufferData[1]); glBufferData(GL_ARRAY_BUFFER, mesh->m_vertices.size() * sizeof(FBXVertex), mesh->m_vertices.data(), GL_STATIC_DRAW); glGenBuffers(1, &bufferData[2]); glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, bufferData[2]); glBufferData(GL_ELEMENT_ARRAY_BUFFER, mesh->m_indices.size() * sizeof(GLuint), mesh->m_indices.data(), GL_STATIC_DRAW); glEnableVertexAttribArray(0); glVertexAttribPointer(0, 4, GL_FLOAT, GL_FALSE, sizeof(FBXVertex), 0); glEnableVertexAttribArray(1); glVertexAttribPointer(1, 4, GL_FLOAT, GL_FALSE, sizeof(FBXVertex), ((char*)0) + FBXVertex::NormalOffset); glEnableVertexAttribArray(2); glVertexAttribPointer(2, 4, GL_FLOAT, GL_FALSE, sizeof(FBXVertex), ((char*)0) + FBXVertex::TangentOffset); glEnableVertexAttribArray(3); glVertexAttribPointer(3, 4, GL_FLOAT, GL_FALSE, sizeof(FBXVertex), ((char*)0) + FBXVertex::BiNormalOffset); glEnableVertexAttribArray(4); glVertexAttribPointer(4, 2, GL_FLOAT, GL_FALSE, sizeof(FBXVertex), ((char*)0) + FBXVertex::TexCoord1Offset); glEnableVertexAttribArray(5); glVertexAttribPointer(5, 4, GL_FLOAT, GL_FALSE, sizeof(FBXVertex), ((char*)0) + FBXVertex::WeightsOffset); glEnableVertexAttribArray(6); glVertexAttribPointer(6, 4, GL_FLOAT, GL_FALSE, sizeof(FBXVertex), ((char*)0) + FBXVertex::IndicesOffset); glBindVertexArray(0); glBindBuffer(GL_ARRAY_BUFFER, 0); glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, 0); mesh->m_userData = bufferData; } } void AnimatedMesh::RemoveBuffers() { for (int i = 0; i < meshData->getMeshCount(); ++i) { FBXMeshNode* mesh = meshData->getMeshByIndex(i); GLuint* bufferData = (GLuint*) mesh->m_userData; glDeleteVertexArrays(1, &bufferData[0]); glDeleteBuffers(1, &bufferData[1]); glDeleteBuffers(1, &bufferData[2]); delete[] bufferData; } } void AnimatedMesh::Draw() { shader->useProgram(); for (int i = 0; i < meshData->getMeshCount(); ++i) { FBXMeshNode* mesh = meshData->getMeshByIndex(i); GLuint* bufferData = (GLuint*)mesh->m_userData; FBXSkeleton* skeleton = meshData->getSkeletonByIndex(glm::min(i, (int)meshData->getSkeletonCount() - 1)); FBXAnimation* animation = meshData->getAnimationByIndex(glm::min(i, (int)meshData->getAnimationCount() - 1)); skeleton->evaluate(animation, 1.f); for (int i = 0; i < skeleton->m_boneCount; ++i) { skeleton->m_nodes[i]->updateGlobalTransform(); } skeleton = meshData->getSkeletonByIndex(glm::min(i, (int)meshData->getSkeletonCount() - 1)); skeleton->updateBones(); shader->setFloatArray("bones", (float*)skeleton->m_bones, skeleton->m_boneCount); glBindVertexArray(bufferData[0]); glDrawElements(GL_TRIANGLES, mesh->m_indices.size(), GL_UNSIGNED_INT, 0); } }
[ "george.marshall@ad.aie.edu" ]
george.marshall@ad.aie.edu
4b6c08cea088ef8edd2a76ebcd2c58b85779fd57
4efc9b3494ca74c8c737a54991712c78da1a7003
/nurbs/f_nurbsS_sp.cpp
c221163e47266209b6d51d4172fadae024b0685e
[]
no_license
leonshen33/freesurface_mesh
b104a47c288e2f2433e3d6f688aef2d9695c9e84
069c56e8e46f16595496af948c2a3ddfe216f88d
refs/heads/main
2023-08-25T20:45:05.385483
2021-10-14T06:21:48
2021-10-14T06:21:48
416,989,775
0
0
null
null
null
null
UTF-8
C++
false
false
48
cpp
#include "nurbsS_sp.h" namespace PLib { }
[ "leon.shen@okstate.edu" ]
leon.shen@okstate.edu
cdb14e674df115c51320ce9dd223b17298567434
d3b806bba9aa3e64b52f3248bed0ece66ab9bc01
/subs.cpp
94deebdcba6ad7842e3881b8be4b554b97daf829
[]
no_license
janisozaur/rosalind
6ef39def7aa09010a48048b67d1145077697fd74
fe4b44497a20a258dc280ed3ab7f551f82650f00
refs/heads/master
2021-03-16T09:17:24.644441
2015-06-21T21:51:17
2015-06-21T21:51:17
27,388,294
0
0
null
null
null
null
UTF-8
C++
false
false
286
cpp
#include <iostream> #include <string> using namespace std; int main() { string dna, sub; cin >> dna >> sub; size_t pos = 0; while (pos != string::npos) { pos = dna.find(sub, pos + 1); if (pos != string::npos) { cout << pos + 1 << " "; } } cout << endl; return 0; }
[ "janisozaur@gmail.com" ]
janisozaur@gmail.com
cc7c192a08a2b5aa180e56d4ea8c88d27a22783b
94ed75d40aafcdb75e32cbefddda8a2ca2d984b2
/customMain/customMain.cpp
36a94c32e53d5af7d760b69fc7105c609b0c3e8a
[]
no_license
subbuklce/C0x
53e3d5cf88fd68199c803bbaad47519bb4accf16
048d9efb30be366b57790a914ac1b2b25a7b4d15
refs/heads/master
2021-01-21T13:11:38.429727
2016-05-31T03:00:38
2016-05-31T03:00:38
36,791,162
1
0
null
null
null
null
UTF-8
C++
false
false
262
cpp
#include<iostream> namespace custom{ class test{ public: test(){ std::cout<<"\n Constructor";} //main program in different name space. int main(){ std::cout<<"\n Class main module "; } }; } //Real Main program int main(){ custom::test a; a.main(); return 0; }
[ "subbu.klce@outlook.com" ]
subbu.klce@outlook.com
807d1d284aa410fcf35b2100422d023f5a1206c8
5823d1e8d579d0d6d4e830794a68c61096c52367
/src/sycl-usm/update_tile_halo_kernel_l.cpp
5f8ca68e0e3cf6306bbd9669f6456ddd10e4a757
[]
no_license
UoB-HPC/CloverLeaf
74a1ab7748be406641f35fb0ddd5f3ae9ce07a92
4306b008eb21b0dbdad7bd241dfb6a5a337609ca
refs/heads/main
2023-08-21T13:32:13.089304
2023-08-13T06:34:39
2023-08-13T06:34:39
61,378,073
4
0
null
null
null
null
UTF-8
C++
false
false
8,313
cpp
/* Crown Copyright 2012 AWE. This file is part of CloverLeaf. CloverLeaf is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. CloverLeaf is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with CloverLeaf. If not, see http://www.gnu.org/licenses/. */ #include "context.h" #include "update_tile_halo_kernel.h" void update_tile_halo_l_kernel( // global_variables &globals, int x_min, int x_max, int y_min, int y_max, clover::Buffer2D<double> &density0, clover::Buffer2D<double> &energy0, clover::Buffer2D<double> &pressure, clover::Buffer2D<double> &viscosity, clover::Buffer2D<double> &soundspeed, clover::Buffer2D<double> &density1, clover::Buffer2D<double> &energy1, clover::Buffer2D<double> &xvel0, clover::Buffer2D<double> &yvel0, clover::Buffer2D<double> &xvel1, clover::Buffer2D<double> &yvel1, clover::Buffer2D<double> &vol_flux_x, clover::Buffer2D<double> &vol_flux_y, clover::Buffer2D<double> &mass_flux_x, clover::Buffer2D<double> &mass_flux_y, int left_xmin, int left_xmax, int left_ymin, int left_ymax, clover::Buffer2D<double> &left_density0, clover::Buffer2D<double> &left_energy0, clover::Buffer2D<double> &left_pressure, clover::Buffer2D<double> &left_viscosity, clover::Buffer2D<double> &left_soundspeed, clover::Buffer2D<double> &left_density1, clover::Buffer2D<double> &left_energy1, clover::Buffer2D<double> &left_xvel0, clover::Buffer2D<double> &left_yvel0, clover::Buffer2D<double> &left_xvel1, clover::Buffer2D<double> &left_yvel1, clover::Buffer2D<double> &left_vol_flux_x, clover::Buffer2D<double> &left_vol_flux_y, clover::Buffer2D<double> &left_mass_flux_x, clover::Buffer2D<double> &left_mass_flux_y, const int fields[NUM_FIELDS], int depth) { // Density 0 if (fields[field_density0] == 1) { // DO k=y_min-depth,y_max+depth clover::par_ranged1(globals.context.queue, Range1d{y_min - depth + 1, y_max + depth + 2}, ([=](int k) { for (int j = 0; j < depth; ++j) { density0(x_min - j, k) = left_density0(left_xmax + 1 - j, k); } })); } // Density 1 if (fields[field_density1] == 1) { // DO k=y_min-depth,y_max+depth clover::par_ranged1(globals.context.queue, Range1d{y_min - depth + 1, y_max + depth + 2}, ([=](int k) { for (int j = 0; j < depth; ++j) { density1(x_min - j, k) = left_density1(left_xmax + 1 - j, k); } })); } // Energy 0 if (fields[field_energy0] == 1) { // DO k=y_min-depth,y_max+depth clover::par_ranged1(globals.context.queue, Range1d{y_min - depth + 1, y_max + depth + 2}, ([=](int k) { for (int j = 0; j < depth; ++j) { energy0(x_min - j, k) = left_energy0(left_xmax + 1 - j, k); } })); } // Energy 1 if (fields[field_energy1] == 1) { // DO k=y_min-depth,y_max+depth clover::par_ranged1(globals.context.queue, Range1d{y_min - depth + 1, y_max + depth + 2}, ([=](int k) { for (int j = 0; j < depth; ++j) { energy1(x_min - j, k) = left_energy1(left_xmax + 1 - j, k); } })); } // Pressure if (fields[field_pressure] == 1) { // DO k=y_min-depth,y_max+depth clover::par_ranged1(globals.context.queue, Range1d{y_min - depth + 1, y_max + depth + 2}, ([=](int k) { for (int j = 0; j < depth; ++j) { pressure(x_min - j, k) = left_pressure(left_xmax + 1 - j, k); } })); } // Viscosity if (fields[field_viscosity] == 1) { // DO k=y_min-depth,y_max+depth clover::par_ranged1(globals.context.queue, Range1d{y_min - depth + 1, y_max + depth + 2}, ([=](int k) { for (int j = 0; j < depth; ++j) { viscosity(x_min - j, k) = left_viscosity(left_xmax + 1 - j, k); } })); } // Soundspeed if (fields[field_soundspeed] == 1) { // DO k=y_min-depth,y_max+depth clover::par_ranged1(globals.context.queue, Range1d{y_min - depth + 1, y_max + depth + 2}, ([=](int k) { for (int j = 0; j < depth; ++j) { soundspeed(x_min - j, k) = left_soundspeed(left_xmax + 1 - j, k); } })); } // XVEL 0 if (fields[field_xvel0] == 1) { // DO k=y_min-depth,y_max+1+depth clover::par_ranged1(globals.context.queue, Range1d{y_min - depth + 1, y_max + 1 + depth + 2}, ([=](int k) { for (int j = 0; j < depth; ++j) { xvel0(x_min - j, k) = left_xvel0(left_xmax + 1 - j, k); } })); } // XVEL 1 if (fields[field_xvel1] == 1) { // DO k=y_min-depth,y_max+1+depth clover::par_ranged1(globals.context.queue, Range1d{y_min - depth + 1, y_max + 1 + depth + 2}, ([=](int k) { for (int j = 0; j < depth; ++j) { xvel1(x_min - j, k) = left_xvel1(left_xmax + 1 - j, k); } })); } // YVEL 0 if (fields[field_yvel0] == 1) { // DO k=y_min-depth,y_max+1+depth clover::par_ranged1(globals.context.queue, Range1d{y_min - depth + 1, y_max + 1 + depth + 2}, ([=](int k) { for (int j = 0; j < depth; ++j) { yvel0(x_min - j, k) = left_yvel0(left_xmax + 1 - j, k); } })); } // YVEL 1 if (fields[field_yvel1] == 1) { // DO k=y_min-depth,y_max+1+depth clover::par_ranged1(globals.context.queue, Range1d{y_min - depth + 1, y_max + 1 + depth + 2}, ([=](int k) { for (int j = 0; j < depth; ++j) { yvel1(x_min - j, k) = left_yvel1(left_xmax + 1 - j, k); } })); } // VOL_FLUX_X if (fields[field_vol_flux_x] == 1) { // DO k=y_min-depth,y_max+depth clover::par_ranged1(globals.context.queue, Range1d{y_min - depth + 1, y_max + depth + 2}, ([=](int k) { for (int j = 0; j < depth; ++j) { vol_flux_x(x_min - j, k) = left_vol_flux_x(left_xmax + 1 - j, k); } })); } // MASS_FLUX_X if (fields[field_mass_flux_x] == 1) { // DO k=y_min-depth,y_max+depth clover::par_ranged1(globals.context.queue, Range1d{y_min - depth + 1, y_max + depth + 2}, ([=](int k) { for (int j = 0; j < depth; ++j) { mass_flux_x(x_min - j, k) = left_mass_flux_x(left_xmax + 1 - j, k); } })); } // VOL_FLUX_Y if (fields[field_vol_flux_y] == 1) { // DO k=y_min-depth,y_max+1+depth clover::par_ranged1(globals.context.queue, Range1d{y_min - depth + 1, y_max + 1 + depth + 2}, ([=](int k) { for (int j = 0; j < depth; ++j) { vol_flux_y(x_min - j, k) = left_vol_flux_y(left_xmax + 1 - j, k); } })); } // MASS_FLUX_Y if (fields[field_mass_flux_y] == 1) { // DO k=y_min-depth,y_max+1+depth clover::par_ranged1(globals.context.queue, Range1d{y_min - depth + 1, y_max + 1 + depth + 2}, ([=](int k) { for (int j = 0; j < depth; ++j) { mass_flux_y(x_min - j, k) = left_mass_flux_y(left_xmax + 1 - j, k); } })); } }
[ "tom91136@gmail.com" ]
tom91136@gmail.com
47b485f475e8fbd8f607b2366dffda11bfc2d830
8c559cc598ca07b85b2a8e3e5d04f45408ffa3fb
/build-QSuperviseur-Desktop_Qt_5_5_0_MinGW_32bit-Release/release/qrc_ressources.cpp
450ac522fda77e531527ff8fb73b45d269123d73
[]
no_license
SNIRNagios/FinalRemy
6e04d9442b8cbcfb3390c68cfc4edade5d87b4d1
ecde27081184efd688ed9f21bcef8b56fbfa35e2
refs/heads/master
2021-01-10T15:29:52.099353
2016-04-04T14:59:03
2016-04-04T14:59:03
55,419,786
0
0
null
null
null
null
UTF-8
C++
false
false
719,001
cpp
/**************************************************************************** ** Resource object code ** ** Created by: The Resource Compiler for Qt version 5.5.0 ** ** WARNING! All changes made in this file will be lost! *****************************************************************************/ static const unsigned char qt_resource_data[] = { // C:/SNIR_PROJET/Superviseur/Superviseur/QSuperviseur/img/eye.ico 0x0,0x0,0x2a,0xdc, 0x0, 0x1,0x97,0xc2,0x78,0x9c,0xed,0x9d,0x9,0x3c,0x55,0xcb,0x1f,0xc0,0x47,0x94,0x36, 0xd1,0x4e,0x29,0x7a,0x4a,0xab,0x22,0xbb,0x94,0x56,0x29,0xda,0x29,0xd1,0x62,0x49, 0x12,0x2a,0x54,0x5a,0x51,0x89,0x92,0xad,0x92,0x56,0x6d,0x5a,0x5f,0x49,0xef,0xb5, 0xa1,0x45,0xb2,0x55,0x4a,0xb,0xad,0x4f,0x75,0xc9,0x92,0x44,0x28,0x51,0x2e,0xf7, 0x7f,0x7e,0x9d,0x73,0xbb,0x3a,0xce,0xc5,0xe5,0xf2,0xea,0xfd,0xe7,0xfb,0xe9,0xd7, 0x75,0xce,0x99,0x33,0xdb,0x99,0x99,0x33,0xf3,0x9b,0x39,0xf3,0x43,0x48,0x4,0xb5, 0x40,0x52,0x52,0x88,0xf8,0x95,0x47,0x8b,0xc4,0x10,0x5a,0x88,0x48,0xe0,0xd8,0xb8, 0x3,0x42,0xc9,0xc4,0x39,0x65,0x65,0xf2,0xf8,0x54,0x1f,0x84,0xfe,0xe8,0x8a,0x90, 0xbc,0x3c,0x75,0x4c,0xdc,0x77,0x57,0x17,0x21,0xf,0xf,0xf2,0xb8,0x5f,0x4b,0x11, 0xe4,0x3c,0x9,0xa1,0x91,0x23,0xa9,0xe3,0xd1,0x8,0xed,0x33,0x11,0x41,0xfd,0x8, 0xff,0x8,0xa7,0xc4,0x19,0xf2,0xfc,0x77,0x8,0x7f,0x3b,0xb6,0x21,0x5,0x53,0x23, 0x2d,0x8,0x31,0x24,0xc4,0x95,0x90,0x95,0x84,0x10,0xb9,0x8a,0x9a,0xd5,0xf1,0xde, 0x29,0x84,0x78,0x11,0x32,0x9e,0x10,0x67,0x42,0x5c,0x8,0x99,0x46,0xc8,0x36,0x42, 0xc6,0xd6,0x72,0xef,0x32,0x42,0x8c,0x8,0xe9,0x44,0x48,0x10,0x75,0xbc,0x94,0x90, 0x5d,0x84,0x74,0x24,0xc4,0x84,0x10,0x7,0x3e,0xf7,0x2e,0x27,0x44,0x87,0xfa,0x7b, 0x9,0x25,0x3a,0x94,0x38,0x52,0x2,0x68,0x53,0x69,0xa2,0xe3,0x52,0xe5,0x7e,0x47, 0x2a,0x5c,0xd,0xea,0xb8,0x4b,0x95,0xfb,0xd5,0xa8,0xb0,0x98,0xb0,0x23,0x64,0x26, 0x15,0xff,0x1d,0x94,0x1f,0x9d,0x9,0xd9,0x49,0x9d,0x9b,0x40,0xa5,0xa9,0x26,0xc6, 0x10,0xe2,0x8b,0xc8,0x7c,0x84,0x38,0x41,0x1e,0x4e,0x24,0x64,0x33,0x22,0x9f,0x49, 0x5d,0x10,0x25,0x44,0x9f,0x90,0x55,0x88,0x7c,0x86,0xf0,0xb7,0x58,0x1d,0xef,0xfd, 0xbf,0x82,0xc3,0xf9,0x59,0xca,0xe4,0x10,0x2a,0x94,0x44,0x88,0x25,0x8e,0xd0,0x6d, 0xa2,0xc4,0xdd,0xde,0x49,0xfe,0xd,0xe7,0xe0,0x1a,0xdd,0xfd,0xd6,0xa9,0x93,0xc7, 0x4b,0xb4,0xee,0xd6,0x9a,0xf0,0x4a,0x62,0x82,0xc1,0xd8,0xe9,0xd0,0xda,0x80,0xb4, 0x84,0xdc,0xfe,0xb2,0xd6,0x22,0x9f,0xf8,0x69,0x66,0x65,0x38,0x7e,0x2c,0xe2,0x78, 0x7,0xdc,0x8b,0x26,0x8e,0x5a,0x2d,0x33,0x98,0x4d,0x3c,0xd6,0x36,0x1d,0x41,0x44, 0xd0,0xbe,0x3,0xd2,0x8,0xb5,0xf,0x9e,0x30,0x76,0x94,0xf1,0xaa,0x97,0xf9,0x21, 0xab,0x83,0x66,0xc6,0xef,0xba,0xe9,0xfe,0x6a,0x92,0xe6,0x24,0xcd,0x7e,0x7e,0x6a, 0xe5,0x8f,0xd5,0xe,0x8b,0x88,0x8f,0x5d,0x26,0xe3,0xb7,0x45,0xd6,0x7b,0x99,0x71, 0x7,0xe5,0x98,0xdb,0xa3,0x9c,0x8c,0x94,0x9d,0xd2,0xb7,0xf4,0xb,0x6b,0xb7,0x45, 0x3a,0x75,0xac,0xed,0x50,0xb1,0x4e,0x53,0x3d,0x6f,0x4b,0xdb,0x48,0xf9,0x6d,0xec, 0xee,0x35,0x72,0x79,0xc6,0xd0,0xe,0xbd,0xfc,0xcd,0x4d,0x6d,0xec,0x82,0xcf,0x2b, 0x48,0x48,0x7c,0x4e,0xd6,0x74,0x57,0x1e,0x3e,0xf2,0xba,0xf9,0x9b,0x67,0x4b,0xf3, 0x4a,0xd7,0xdf,0xaf,0x78,0xa2,0x7d,0x20,0xe5,0x5a,0xe9,0xab,0x3f,0xa3,0x4a,0xe6, 0x99,0x5c,0x37,0xbf,0xb2,0x64,0xc3,0xd1,0x7e,0x3e,0x4d,0xf5,0x6f,0x45,0x1f,0xa5, 0xf7,0xcd,0x52,0x3b,0x2a,0xe5,0xea,0x77,0x6d,0xbd,0x68,0xbc,0xbd,0xd9,0xce,0xc4, 0xd9,0x6a,0xa,0xfb,0x8d,0xba,0x4d,0xbb,0x3f,0xcd,0xdf,0x39,0x93,0x53,0xa9,0x64, 0x23,0xbe,0xff,0xf9,0xbd,0x85,0x3e,0xa7,0x7d,0xa3,0x1e,0x96,0x8c,0x1a,0xe3,0x86, 0x1e,0x6b,0x7,0x18,0x46,0x6c,0x99,0xf7,0xb9,0xf7,0x9b,0x92,0xf0,0x80,0xb,0x9b, 0x26,0x9d,0x5d,0xd8,0x7c,0xe0,0xf3,0xe,0x2b,0x4c,0x6e,0x85,0xf6,0x1a,0x81,0xec, 0x3e,0x5b,0xcb,0x8b,0x46,0x6c,0xbc,0x20,0xba,0x23,0xc2,0x3b,0xfa,0xfc,0xc6,0xce, 0x67,0x8f,0xe,0x7a,0x7f,0xb7,0x7f,0xd1,0xa2,0xbb,0x1,0xab,0xb7,0xf,0x8f,0x1b, 0x3d,0x31,0x71,0xd5,0xb6,0x47,0x17,0x7d,0xa2,0xf6,0xf9,0xec,0x94,0xd5,0x2f,0x6e, 0x61,0x73,0x44,0xbd,0xe2,0xf4,0x69,0x2f,0x4e,0xb6,0x48,0xb2,0x5f,0xd4,0xdd,0x89, 0x4a,0xa2,0xab,0x36,0x3c,0x5e,0x63,0xf7,0x2d,0x25,0x65,0x96,0x6f,0x9f,0x21,0xef, 0xef,0x1e,0x7a,0xa1,0x66,0x2b,0x6b,0xaf,0xb0,0xe8,0xdb,0xce,0xd3,0xbe,0x5f,0xdb, 0x6e,0x31,0x93,0xb0,0x55,0xdc,0x7c,0x8f,0x65,0x70,0xcc,0xcf,0x7d,0x68,0x58,0x8e, 0x9b,0xd9,0xd8,0x30,0xa9,0xa5,0xc7,0xb2,0x67,0xdd,0x6c,0xae,0x1b,0x17,0x60,0xe0, 0x5a,0xb4,0x4d,0x3a,0xde,0xc1,0x72,0xd8,0x3f,0x2f,0x62,0x56,0x7e,0x59,0xe6,0x6b, 0x1d,0x34,0x4d,0x5f,0x26,0xd1,0x6e,0xac,0xe2,0x8b,0x3,0xf1,0xb3,0x33,0x1f,0xed, 0xd3,0xb8,0x18,0x1a,0x38,0x3a,0x2a,0x8a,0xed,0xa5,0x75,0xcb,0xe1,0xc4,0xdf,0xc3, 0x16,0x3f,0x51,0x5b,0xf7,0xad,0x48,0x31,0x31,0xaf,0x6c,0xe1,0xcc,0x22,0x99,0x7, 0x2e,0x9a,0x15,0xda,0x49,0x63,0x26,0xe7,0xcb,0x18,0xb5,0xf,0x3f,0xff,0x22,0xde, 0xa3,0xb0,0x6d,0xf3,0x69,0x3,0x4f,0xf5,0x72,0xe9,0x19,0xfe,0xe4,0xaf,0xfe,0x33, 0x3f,0x75,0x7a,0x53,0x9a,0xfa,0xa1,0x43,0x98,0x74,0xb2,0xd1,0xd3,0xd4,0xa2,0x23, 0x6b,0xb7,0x7f,0x1c,0x1b,0x76,0xca,0xcb,0xa0,0x7b,0xf6,0xf4,0x90,0xa9,0x15,0x4f, 0x6,0x59,0xab,0x39,0x8e,0x19,0x30,0x46,0xc4,0xb5,0x68,0xf0,0xae,0x15,0xfd,0xe2, 0x1d,0x2e,0x75,0x11,0x9b,0xa0,0xd1,0xb1,0xa3,0xdb,0xbb,0x27,0x85,0xb6,0x5,0x9f, 0x2d,0x8a,0x57,0x4c,0x71,0x59,0x92,0xde,0xe3,0xcf,0xe,0x41,0x39,0xca,0x1d,0x6f, 0xfb,0x9b,0x39,0x49,0x6c,0xea,0xd5,0x6a,0x7c,0xfa,0x5c,0xdd,0x89,0xde,0x6b,0x6, 0x9b,0xd8,0x27,0x7c,0xba,0x22,0x96,0xf5,0xf2,0xee,0xed,0x4e,0x21,0xb,0xfb,0x4a, 0x84,0xac,0x56,0xdd,0xb0,0x43,0xcf,0x4a,0x6c,0xef,0xf6,0x5d,0xe1,0x7a,0x6d,0x3a, 0xb6,0x6d,0x75,0xc8,0xd9,0x32,0x75,0xa2,0x91,0xc9,0xe3,0x48,0xcd,0x82,0xdd,0x6e, 0x12,0x43,0x5c,0x46,0xa5,0x6e,0x16,0x7b,0x59,0xdc,0xbb,0x8f,0xd3,0xc9,0xcd,0x9c, 0x89,0x3b,0x4f,0xb5,0xb1,0x53,0x58,0x3d,0xec,0xd4,0xa7,0xbd,0x89,0x7d,0x9e,0x9e, 0x51,0x1f,0x94,0xe9,0xf4,0x34,0x32,0xf8,0xe5,0xbe,0x6d,0xef,0xe2,0x23,0x3b,0x3d, 0xf4,0x77,0x59,0xa4,0xaf,0x38,0x75,0x5c,0x7f,0xf1,0xe7,0x13,0x54,0xf2,0xbe,0xee, 0x8b,0xfe,0xfb,0xd9,0x18,0xbb,0xfd,0x4e,0xc3,0xc6,0x5d,0xbc,0x3c,0xef,0x4d,0xdc, 0x83,0xd5,0x7a,0xcd,0x94,0x4e,0xf4,0x93,0x31,0x3a,0xac,0x9b,0x2c,0x5b,0xee,0x7a, 0x6e,0xb7,0x95,0xb3,0x74,0x82,0xac,0xc6,0xd3,0xdc,0x31,0x5,0xdd,0x17,0xaa,0xa6, 0xc6,0xe,0xdb,0x1f,0x5b,0x16,0x31,0x70,0xfb,0xa7,0xe5,0x59,0x87,0x97,0x2c,0x7f, 0x3b,0xc4,0x29,0x35,0xc2,0xd7,0x7d,0x59,0x1f,0x25,0xbf,0x98,0x41,0x9f,0x2d,0xd4, 0x46,0xdc,0x6a,0xd6,0x22,0xb2,0xa0,0x97,0xcb,0x5e,0xd9,0x9c,0xb5,0x36,0x9a,0xcf, 0xc6,0x85,0xa5,0x65,0xe6,0xd8,0x3a,0x75,0xb3,0xf,0x31,0x6c,0xae,0x91,0xd5,0x53, 0x23,0x72,0xc9,0xb7,0x19,0x29,0xfa,0x5,0x8a,0xcf,0x6c,0x24,0xcc,0x8a,0x8c,0x64, 0xb7,0xc5,0xb7,0xad,0xd0,0xba,0xb8,0x33,0x31,0x6f,0x66,0xfc,0xfa,0x24,0xd3,0x6e, 0x91,0x81,0x4f,0x3c,0xc5,0x5f,0x7c,0x3c,0x53,0x64,0x9f,0x32,0xcf,0x67,0x8e,0xa6, 0xd9,0xd2,0x4a,0x87,0x5d,0xa5,0x97,0x92,0x46,0x7c,0xf0,0x4d,0x77,0xf6,0x9,0x9b, 0x68,0x2e,0x6d,0xbb,0xb1,0x8f,0xca,0x46,0xc7,0xd,0x6a,0x6e,0x8e,0x2f,0x6f,0x2d, 0x7b,0x56,0x22,0x13,0xb3,0x64,0xdb,0xc5,0xa1,0x5,0xfe,0x66,0x2f,0xee,0xe8,0x77, 0x2b,0x35,0x77,0xb4,0x37,0x8f,0x7c,0xba,0xeb,0xec,0x64,0x76,0xaf,0x87,0x9,0xe1, 0x93,0x3e,0x3e,0x7c,0x64,0x13,0x56,0xbc,0xc7,0x7e,0x6e,0xc4,0x9a,0xf1,0x27,0x3d, 0xfb,0xda,0x2d,0x51,0x2f,0x4d,0x55,0xe,0x39,0x71,0x6e,0xc1,0xab,0xb8,0x23,0x53, 0xf7,0xe9,0xe9,0xfb,0x6e,0x4a,0x7b,0x17,0xb5,0x64,0x96,0x59,0xf4,0x70,0x8d,0x47, 0xc3,0x16,0xc7,0xf7,0xf5,0xee,0x71,0x58,0x73,0x5b,0xff,0x4e,0xe1,0xe,0xb,0x3b, 0x1d,0x8a,0x8,0x4c,0xdd,0xb3,0x37,0x2d,0x98,0x75,0xf0,0xed,0xba,0xf8,0xc5,0x4f, 0x2f,0x6c,0xa8,0x8,0x72,0xf6,0xec,0xf6,0xf7,0xed,0x50,0xf5,0xe6,0x9f,0xf,0x4b, 0x5e,0xbf,0x63,0x50,0x58,0x6e,0x1b,0xe9,0x3d,0x60,0x56,0x49,0x52,0xfa,0x2c,0xdf, 0xce,0xea,0xeb,0x7d,0xf,0xfd,0x25,0xbf,0x68,0xc5,0x89,0x6e,0xa,0xda,0x8b,0x57, 0x8f,0xc9,0x7e,0x74,0x6f,0xd7,0xb1,0x75,0x23,0x26,0x28,0xef,0xdd,0x1f,0x7f,0x5e, 0xac,0xc7,0xd2,0xc1,0xcf,0x94,0x77,0x86,0x38,0x65,0xad,0xcb,0x8c,0x29,0xcf,0x59, 0x7c,0xd9,0xfc,0xd8,0x24,0x57,0xf5,0x4b,0x8e,0x16,0xb,0xa,0x3f,0x76,0xb9,0xf4, 0x21,0xc7,0x7b,0xb0,0xcd,0x8a,0xad,0xd6,0xd9,0xda,0xc9,0xdd,0xd9,0x37,0xe3,0x7d, 0x46,0xe9,0x6c,0x9a,0x6d,0xe4,0x67,0xf2,0x7a,0x8d,0x4e,0xe4,0x39,0x7b,0x97,0x79, 0x97,0xc,0xca,0x59,0x46,0x73,0x75,0x46,0xfc,0xa3,0x33,0xdb,0x3c,0x7b,0xcd,0xb8, 0xe8,0xab,0x25,0x12,0x67,0x16,0x8e,0x18,0x3e,0x7c,0x57,0x78,0xf7,0x4f,0x67,0xdf, 0x7c,0x32,0xcf,0xcd,0x1e,0x95,0xe1,0x18,0xfc,0xfa,0xdc,0x9e,0x4f,0x79,0x73,0xcb, 0xb7,0xa7,0x84,0xac,0x8,0xb6,0x7b,0x13,0x7b,0xee,0x5a,0x5,0x8a,0x32,0xdd,0xcf, 0x19,0x73,0xe8,0x4d,0xda,0xf0,0xd9,0xb,0xd7,0x8b,0xa5,0x95,0x36,0x5b,0x76,0x23, 0x7e,0x5b,0xa4,0xe7,0xa8,0x92,0x13,0x5f,0x8f,0xb1,0x26,0xb6,0x33,0x4d,0xc8,0x75, 0x77,0x56,0x3a,0x73,0xfc,0xf8,0x27,0xbd,0xdb,0x7a,0xe2,0xd3,0x9f,0xee,0xff,0xfa, 0x74,0xa8,0xd4,0xaa,0x22,0xb1,0x25,0x77,0x9b,0x4d,0x33,0x33,0xb9,0x95,0x6b,0x2f, 0x9a,0xd1,0x65,0xc0,0xd8,0x3e,0xeb,0x8c,0xd6,0x3e,0xfb,0xbb,0x9b,0xf9,0x9,0xb7, 0x43,0x2d,0xde,0x1d,0x7c,0xb1,0x21,0x60,0x50,0xc5,0x36,0xcd,0x29,0x9e,0x4e,0x5d, 0xf6,0x27,0xee,0x9c,0x50,0x64,0xd2,0x45,0x67,0xc6,0xa0,0x90,0xf7,0xc6,0x53,0x3e, 0xa5,0x47,0x1e,0x3d,0xfb,0x42,0x64,0xd8,0x56,0x35,0xab,0xe0,0x3d,0xf,0x8c,0x2, 0x8a,0xcf,0x2d,0x8,0xef,0xf7,0xb1,0xf3,0xdf,0xcd,0x9e,0xb9,0x4e,0xdf,0x7e,0xa7, 0x8d,0x55,0x7c,0x92,0x4c,0xd6,0x84,0xd7,0x93,0x8e,0x5e,0x1c,0x9f,0x51,0x79,0xa2, 0xb3,0xc2,0x9e,0x84,0xe9,0x1a,0xce,0x37,0x4d,0xda,0x7a,0xfc,0xa1,0x12,0xde,0x5d, 0x77,0xf1,0x51,0xd5,0xf9,0x5b,0x8a,0x83,0xaf,0xaa,0xad,0x3b,0xde,0xe9,0xbe,0xe9, 0xe0,0x99,0x6b,0xfa,0xee,0x5e,0xb3,0xe3,0xd9,0x84,0x8b,0xdf,0x5e,0xe4,0x7f,0x50, 0x92,0x8e,0x3d,0x99,0xf0,0x6a,0x49,0xc4,0x5c,0xe5,0xf,0x6e,0x79,0x96,0xcf,0x75, 0x46,0xd,0x5e,0x6a,0xda,0x22,0xdc,0xe5,0xd6,0x62,0x8f,0x45,0x76,0xb1,0x39,0x56, 0x9b,0x67,0xad,0x9e,0x99,0x3e,0x7d,0xd4,0xcb,0xd8,0xa7,0x69,0x27,0x7d,0xda,0xdc, 0x2f,0x88,0x18,0x1f,0x58,0x18,0x6c,0xeb,0x77,0xcc,0xfc,0x83,0xfc,0x99,0xe1,0xf6, 0xbd,0xb7,0xe6,0x2e,0x29,0xca,0x5f,0xff,0xe2,0x42,0x74,0xda,0x16,0x9d,0x80,0x3b, 0x32,0x69,0xb6,0x2b,0x52,0x96,0x6d,0x4b,0x5d,0xf0,0xac,0xfc,0x61,0x52,0xfe,0xd1, 0xb0,0x23,0x7b,0xa,0x62,0x34,0x47,0x5,0x7d,0xbe,0xa4,0x65,0x38,0x3c,0x7b,0xb6, 0x55,0x47,0xcb,0x98,0x52,0x6b,0xa7,0x6e,0x2f,0x36,0xef,0xa,0x4e,0x28,0x2d,0x46, 0xc7,0xda,0x4,0x6f,0xb8,0xaf,0xf6,0xe5,0xc8,0xfe,0x5e,0x47,0x57,0x2f,0x92,0xbc, 0xbe,0x71,0xa9,0xd7,0x29,0x69,0x79,0xff,0x27,0x26,0xec,0x54,0xef,0x7b,0xe2,0xb2, 0xc5,0x5f,0xb6,0xf6,0xc8,0x51,0x97,0xf5,0x4d,0x61,0x17,0xc8,0xa1,0xdb,0xb6,0xbb, 0xc7,0xdc,0xbd,0x7e,0xe3,0xb3,0x4b,0xab,0x72,0xcf,0x1d,0xf9,0x86,0xad,0xf,0xe5, 0x20,0xe9,0x1,0xfa,0x5,0x5a,0xf7,0x4a,0xd7,0xdd,0x76,0x18,0xb0,0xaa,0xdc,0xe0, 0x8c,0xb8,0x66,0xdf,0xb4,0x98,0xb7,0x9b,0xf3,0x3c,0x4b,0xd5,0x13,0x77,0xfb,0x27, 0x5b,0x9f,0x99,0x7a,0xb9,0x42,0xc2,0x72,0x4a,0xcc,0xfd,0xc,0xe9,0x2b,0xb1,0x39, 0x29,0xf9,0x7,0x7c,0x95,0xda,0x17,0x74,0x9b,0xed,0xbd,0x3e,0xee,0xb5,0xe9,0xbb, 0x40,0xd5,0x84,0x93,0x7,0x5f,0x6e,0xdb,0x3f,0x25,0xfa,0xf8,0x7c,0x29,0x3f,0xa9, 0x1e,0xae,0x5b,0x26,0x15,0x6a,0x1e,0xea,0x1e,0xf9,0x58,0xf6,0xdc,0x41,0x9b,0xe5, 0x4e,0x69,0xea,0xb7,0xa3,0x6c,0x4f,0xee,0xb8,0x22,0x93,0x94,0x75,0xb1,0xd8,0x61, 0x65,0x2e,0x4b,0xfa,0x4a,0x74,0x91,0x63,0xbc,0xfd,0x1d,0xdb,0xd1,0xb3,0x25,0x9d, 0x9d,0x94,0x27,0xb5,0x6f,0xfe,0x76,0x5c,0x89,0x7b,0xc6,0x3f,0x32,0x8b,0xcf,0x8f, 0xc9,0x4e,0xf1,0x5f,0xab,0x63,0x36,0xab,0xbb,0x62,0x8b,0xe2,0x90,0x8a,0x63,0x63, 0x8a,0x9f,0xdc,0xb0,0x39,0x78,0x3f,0x71,0xf4,0x56,0xc3,0xe9,0x97,0xba,0xee,0x19, 0xa4,0x71,0x53,0x6e,0x9d,0x7f,0x30,0xeb,0x83,0xc7,0xc0,0x1e,0xaf,0xd7,0xe4,0x1e, 0x1d,0x10,0xa0,0x3a,0xfc,0xfc,0x1e,0x91,0x1c,0xad,0x6f,0x1e,0xbb,0x9b,0x5,0xee, 0x4b,0x2a,0xcf,0x98,0x23,0xdf,0xbc,0x62,0x8b,0x7b,0x1f,0xd,0xce,0x46,0xe4,0xf0, 0x59,0xbb,0xdd,0xa6,0x64,0xdd,0xc4,0xe1,0xae,0x5b,0x16,0x2f,0x8f,0x7e,0x2c,0x2d, 0xe9,0xb2,0x82,0xb5,0x4c,0xbe,0x27,0x67,0x52,0x59,0xe8,0xd4,0x2f,0xaf,0x4e,0x77, 0x9,0x5e,0xb2,0xef,0x39,0x5b,0xb5,0xd9,0xec,0xfc,0x6e,0xd9,0x81,0x6b,0x23,0x9d, 0xc6,0x1f,0x7c,0x58,0x21,0xbe,0xd4,0x2c,0x37,0xeb,0xb6,0xb5,0x81,0xbc,0xf3,0x85, 0x71,0x6d,0x72,0xbe,0xa4,0xb6,0x1a,0xb1,0x33,0xc1,0xe8,0xaf,0xaf,0x72,0x12,0x6, 0x95,0xb2,0x89,0x9f,0x93,0x32,0xbb,0xfa,0x5f,0x73,0x35,0x4b,0x9b,0x5c,0x61,0x39, 0xf9,0xe5,0xc2,0xe6,0xbd,0x67,0xb9,0x89,0x69,0x9c,0xf4,0xda,0xa0,0xe5,0x67,0x1b, 0x9f,0xed,0xae,0x7c,0x5e,0xd6,0xa8,0x34,0xa0,0x7f,0x42,0xc9,0x9c,0xc4,0xf2,0xf9, 0x31,0x7a,0x5e,0xd3,0x9f,0x89,0xfb,0xad,0x4b,0xfb,0x38,0xf3,0xf2,0x76,0xa5,0xc1, 0xfb,0xc3,0x8e,0xdb,0xf4,0x2b,0x69,0x19,0xa8,0x76,0xb0,0x63,0xdf,0xf9,0x31,0xf9, 0x9e,0x76,0xf9,0x81,0x95,0x73,0xdf,0xfa,0x4f,0xf3,0x1f,0xa6,0xb8,0xd9,0xd8,0x3c, 0x47,0x5e,0x6a,0x8e,0x68,0x56,0xe1,0x86,0xc3,0x77,0x76,0xdd,0xb9,0x6e,0x7a,0x40, 0x31,0xca,0x36,0x55,0xec,0xfd,0x87,0x5,0x66,0xe9,0x13,0x7b,0xa4,0x4c,0x4c,0x99, 0x19,0xad,0x12,0xd7,0xf2,0x8f,0xec,0xd6,0x89,0x2c,0x64,0xa3,0xd9,0x79,0x7d,0x48, 0x70,0xdf,0xf0,0x24,0x83,0x7d,0xd6,0xcb,0xfd,0xdb,0x87,0xfa,0xec,0x6f,0x76,0x3f, 0x6b,0x7e,0xdb,0xaf,0xee,0xcb,0x4f,0xdd,0x57,0xab,0x7c,0xdd,0xc1,0x2a,0xa4,0xab, 0xcc,0xea,0xce,0xcd,0x7,0x5c,0x8f,0x8c,0xf0,0xa8,0xfc,0xd3,0xfe,0xe4,0x8b,0x35, 0xa3,0xa,0xd8,0x3,0xbf,0x4e,0xbb,0xf9,0xf5,0x9e,0xaa,0xf3,0x9e,0xc5,0x73,0xa2, 0x13,0x22,0x6e,0xbc,0x79,0x36,0x71,0xee,0x1f,0x46,0xe6,0x89,0x7,0x3c,0xb2,0x72, 0xb6,0xcd,0x8b,0x7b,0xe0,0x69,0xaa,0x10,0x70,0xac,0xc8,0xf7,0x39,0x3b,0xb6,0xd9, 0x83,0x3b,0x6a,0x41,0xec,0xb4,0x88,0xca,0x53,0x4e,0xeb,0xf,0x9e,0x9c,0xf3,0xfe, 0xee,0xb2,0xf1,0xe2,0x3d,0xd4,0x7a,0xc4,0xd9,0x1c,0xbd,0x73,0xe4,0xe9,0x5d,0x51, 0xd5,0xf7,0xa7,0xbf,0x3a,0x7d,0x50,0x8c,0xb8,0x1b,0xb1,0xa4,0x20,0x5a,0x46,0x66, 0xf1,0xf5,0x72,0x99,0xc8,0xb0,0x76,0xbd,0x2,0x5c,0xc6,0xcd,0xf7,0x31,0x1f,0x13, 0xb6,0xdb,0xf0,0x84,0xcf,0x7d,0x3d,0xb5,0xa0,0x6b,0xf7,0x76,0xb9,0xb8,0x4c,0xb9, 0xcf,0x91,0x7e,0x16,0xab,0x7e,0x74,0xa5,0xb2,0xf3,0x3f,0x1d,0x27,0xe,0x5e,0xdf, 0xdc,0xdd,0x67,0xc0,0xfc,0xa4,0xdc,0xd,0xc5,0x9e,0xf,0xd9,0x9d,0xd9,0xf2,0xc7, 0xd2,0xee,0xb1,0xa6,0x65,0x57,0xca,0xaa,0xde,0x1e,0x3b,0x35,0xa7,0xc5,0x9d,0xcc, 0x6e,0x91,0x3d,0x24,0xfa,0x1f,0xda,0x70,0x6b,0xb2,0x4f,0xec,0x9d,0x74,0x25,0xe5, 0xe3,0xf3,0xf6,0xcb,0x25,0x6,0x4f,0x72,0x71,0xf5,0xb7,0x13,0x6b,0xed,0x9a,0x70, 0xc0,0x32,0x73,0x66,0xf,0xb3,0xc9,0x9a,0x2d,0xf7,0x9b,0xb8,0x3e,0x7e,0x11,0x6e, 0xca,0x79,0x3f,0xa1,0x2b,0x27,0xbc,0x72,0x84,0xf1,0x62,0xdf,0xe8,0x49,0xe1,0x23, 0xdd,0x35,0x3c,0xbe,0xd9,0xb3,0xc6,0x5e,0xbb,0xb3,0xdb,0x9f,0x63,0x9f,0xc4,0xbe, 0x7d,0xd7,0xa5,0x35,0x47,0xf1,0x8b,0x88,0x65,0xf3,0xb1,0xaa,0xde,0xc8,0xc5,0xfe, 0x92,0xcc,0xee,0x44,0x47,0xd3,0xdd,0x29,0x76,0xb9,0xef,0x56,0x4e,0x39,0x79,0xc3, 0xcb,0x63,0x90,0x8a,0xd7,0xdd,0x51,0x83,0x5b,0xf7,0xd7,0xdb,0x6d,0xd4,0xb5,0xf5, 0xac,0x9e,0xa7,0x4c,0x3e,0xf4,0xce,0xee,0xfd,0x70,0x8e,0xa2,0xba,0xa8,0x56,0xb9, 0x79,0xb3,0x1b,0x71,0x81,0x97,0x5f,0x44,0xbc,0x7e,0x14,0xd1,0x33,0x79,0x6b,0xaf, 0xbd,0xe9,0xea,0xee,0xca,0x73,0x4b,0xb4,0x16,0xe,0xab,0xc,0x57,0x59,0x2a,0xc6, 0x52,0x78,0x9b,0xe9,0x51,0x74,0x45,0x66,0xb8,0xc3,0xfe,0xa2,0x2b,0xd1,0x36,0x87, 0x47,0x24,0xbc,0x89,0x6f,0xe5,0xac,0x37,0xb2,0x70,0x41,0xf1,0x5a,0xcb,0xc9,0x26, 0xb7,0xe4,0x2b,0xdf,0xcf,0x5f,0x35,0xd5,0xba,0x64,0xae,0xee,0xc7,0xb2,0x68,0x87, 0xd7,0xad,0xd3,0xc7,0x86,0x85,0x24,0xbc,0x69,0x9e,0xf0,0xc6,0xde,0x37,0xfa,0xd5, 0x38,0x69,0x55,0x95,0x72,0xc9,0x19,0x51,0xb9,0x5b,0x23,0x76,0x1e,0xbe,0x93,0x69, 0x92,0xbe,0xe9,0x9b,0xd4,0x9b,0x36,0x47,0xbf,0x6e,0xea,0x1d,0xf2,0xa6,0xd5,0xab, 0xd4,0xf6,0xdf,0xc4,0xf,0x4,0xd8,0xb5,0x76,0xbb,0x15,0xe1,0x16,0xea,0x54,0x11, 0x71,0xd2,0xb4,0x67,0xdf,0x45,0xef,0xb,0x87,0xf,0x7d,0xd6,0xb9,0xa7,0xca,0x39, 0x71,0xc7,0xd6,0xc9,0x19,0x4a,0xa3,0xce,0x78,0x67,0x78,0x3e,0xf2,0xf,0x5c,0xae, 0xf2,0x79,0xd4,0x69,0xeb,0xc8,0xa7,0x72,0xd9,0xdd,0xd8,0xd3,0xdf,0xae,0xe9,0xee, 0x2d,0x57,0x9c,0x72,0xb0,0x58,0xe4,0xce,0x5f,0xf7,0xe,0x4c,0x1f,0xac,0x71,0x4e, 0xfc,0xaa,0x74,0xea,0x1e,0xd7,0xb8,0x6c,0xc9,0xc4,0xab,0xbd,0xd0,0xd0,0xb2,0xeb, 0x53,0x59,0xb1,0xed,0x76,0x2b,0xe9,0xcd,0xb1,0x37,0x18,0xe2,0xd4,0xd6,0xfa,0x8c, 0xef,0xb0,0xbb,0xba,0x6e,0x4a,0x9a,0x2b,0xa5,0x77,0xdd,0x58,0x96,0x66,0x5d,0x50, 0x2c,0xe9,0x9c,0xb1,0x5f,0x29,0x61,0xaa,0x4e,0x9c,0x8d,0x48,0x76,0x7b,0x2d,0x3f, 0xd9,0x36,0xc7,0x46,0xe9,0x35,0xb,0x93,0x7d,0x3c,0x29,0xfa,0x6b,0xb9,0xac,0xeb, 0xb5,0xdc,0xfe,0x27,0xbd,0x7b,0x38,0x1b,0x85,0x9f,0x78,0xed,0x9f,0xae,0x68,0xe0, 0x1d,0x98,0x75,0xfa,0x19,0xdb,0xa2,0x7c,0x41,0xab,0xe2,0xf6,0x65,0x9,0x81,0x15, 0x6d,0xde,0xae,0x31,0xb4,0x1c,0xf8,0x32,0xff,0x9c,0x4b,0x6e,0x8e,0xf2,0x8d,0x99, 0x5a,0xd9,0xec,0x8e,0xbe,0xc3,0x9e,0xb6,0x98,0x99,0x78,0x21,0xee,0xb0,0x5a,0xff, 0x87,0x6c,0x34,0xfb,0x9a,0x52,0x72,0xf3,0x73,0x2d,0xd,0x2a,0x1d,0xc6,0x14,0xef, 0xf3,0x74,0x8d,0x3b,0x65,0x71,0xf8,0x8c,0xee,0xcb,0xd6,0xdb,0xce,0x47,0xaf,0x48, 0x2b,0x89,0x74,0xf2,0x7e,0xe6,0xa1,0xa2,0xb8,0x3a,0xc3,0x2d,0xbb,0x43,0x80,0xa5, 0xda,0x1f,0xf2,0x86,0x7,0xae,0x5,0x39,0xdb,0xc8,0x3f,0xf6,0x56,0x94,0x15,0xd3, 0x69,0x95,0xe3,0x17,0xa4,0xd3,0xc5,0x3f,0xff,0x62,0xe7,0x64,0xd1,0x81,0xae,0xeb, 0x96,0x7d,0x59,0x99,0xd6,0xd1,0xb7,0x44,0xf5,0xd0,0x90,0xf8,0xec,0x29,0x77,0xf7, 0x46,0xfb,0x25,0x5c,0x1b,0x68,0x9c,0xb1,0x48,0xfe,0xc4,0x11,0xc5,0x15,0xcf,0xa5, 0x8b,0x23,0x2,0xd7,0x6a,0xeb,0x9d,0xde,0xc9,0x6e,0x13,0x7f,0xbe,0x24,0x7a,0x79, 0x9a,0xed,0x1a,0x3d,0xb9,0xd6,0x71,0xa5,0xa7,0x3a,0xe6,0x6d,0x4e,0x93,0x3c,0xf6, 0xfa,0x8b,0xf2,0x8b,0x2b,0xd7,0x7d,0xed,0x9b,0x5,0x5e,0xbf,0xf9,0xe8,0xa2,0xa3, 0x6c,0x64,0x92,0x65,0xbf,0xae,0x3a,0x5,0xba,0x21,0x83,0x92,0xec,0xc6,0xe5,0xc9, 0x5e,0x75,0x2b,0xd6,0x5e,0x98,0xf6,0xc9,0xa,0xa9,0xe7,0xf5,0xf7,0xba,0x66,0xf4, 0xc8,0x40,0xe4,0x85,0xd5,0x90,0xa9,0xe9,0x3,0xf,0xdf,0x6d,0xd5,0x42,0xfb,0xd8, 0x64,0xd7,0xb4,0x94,0x7,0xce,0x1f,0x8c,0xfb,0x47,0x1f,0xb,0xe9,0x77,0xa9,0x55, 0xa8,0x92,0xf8,0xbd,0xa0,0x94,0x67,0x4e,0x57,0x54,0x8d,0x7d,0xaf,0xce,0xf6,0x8a, 0x3b,0x9e,0xe1,0xf5,0x74,0xee,0xe9,0xee,0x6,0x97,0xff,0xd2,0xea,0xf1,0xf9,0x63, 0xdf,0x3,0xd9,0xcf,0x65,0xa7,0xf,0xfe,0xc0,0xfe,0xba,0xf5,0xf9,0x1e,0x15,0x2b, 0xe3,0xb,0x7,0xca,0x23,0x36,0x6a,0x2c,0xd8,0x31,0xaa,0xcd,0x37,0x95,0x7d,0xcd, 0x9d,0x92,0x65,0x22,0x9e,0xf4,0xba,0x7a,0xe1,0x6d,0xc5,0x1b,0xd6,0xda,0x7f,0xfe, 0x91,0x57,0xd9,0xf2,0xe4,0x72,0xaa,0x7f,0x97,0xa0,0x3e,0x5e,0xa3,0xcf,0xa4,0x4f, 0x3e,0xe4,0xfc,0x71,0xe5,0xed,0xa0,0x1b,0x25,0x72,0x7f,0x69,0x9c,0xde,0xdf,0x5b, 0xdb,0x42,0x67,0x8a,0x4a,0xa9,0x79,0xe8,0x34,0x2b,0xb5,0x4d,0x7e,0xa7,0x2f,0x28, 0x3c,0xd4,0x3f,0x91,0x25,0x7f,0x6a,0xeb,0x8d,0x63,0xd9,0xad,0xb7,0x6b,0xf4,0x11, 0xff,0x9c,0xb8,0x4e,0x93,0xd3,0x69,0xd4,0xfb,0xa9,0x47,0xf6,0x7f,0x71,0xd5,0x78, 0x17,0x6b,0xf5,0x7a,0xbe,0xf7,0xca,0x76,0x6b,0xae,0x3f,0xde,0x32,0x2b,0xee,0x7d, 0x45,0xc2,0xac,0x93,0xb9,0xbe,0xff,0x44,0x4e,0x31,0x7e,0x36,0xb7,0x55,0xa8,0xd8, 0x8b,0x19,0xc7,0x63,0x73,0x65,0xf,0xfb,0x15,0x16,0xfa,0x95,0x1c,0x3f,0x94,0x13, 0x9f,0x36,0x6b,0x4d,0x6b,0xfd,0x90,0xa0,0x5,0x85,0x72,0x56,0x9d,0x73,0xca,0x97, 0x3d,0xbf,0xdb,0x65,0xc4,0xd3,0x11,0x52,0xb1,0x71,0x25,0x57,0x5a,0xec,0xc,0x38, 0xe4,0x33,0x2e,0xcf,0xc6,0x4b,0xea,0x96,0x65,0x68,0x40,0xbe,0xd9,0xfd,0xb8,0x55, 0x48,0xa5,0x32,0x28,0xed,0x2a,0x7a,0xb5,0x43,0xb1,0x40,0x76,0xcb,0x5f,0xa9,0xe3, 0xd5,0xbd,0xdb,0x14,0x67,0x4a,0xbc,0xb4,0x55,0x1d,0x96,0xfc,0x55,0x6e,0xfa,0x9f, 0xb,0x4f,0xf4,0x9,0xde,0x62,0x2c,0xf9,0x71,0xf0,0xf9,0xb9,0x65,0x66,0xf7,0x38, 0x97,0xa6,0x96,0xaa,0x8e,0xf3,0x94,0x55,0xcd,0xbc,0x20,0x36,0x3f,0xbb,0x28,0xf0, 0x83,0xdf,0x65,0xc7,0x77,0xeb,0x57,0x5d,0x6d,0xa7,0x12,0x6b,0x15,0xa7,0x95,0x6c, 0x65,0x1f,0x98,0x50,0xbe,0xb9,0xbc,0xeb,0xea,0xc1,0x1c,0x93,0xe0,0x50,0x25,0xdb, 0x3e,0x39,0x5,0x7a,0x1c,0x23,0xa9,0x33,0x57,0xe3,0xdf,0x6e,0x1f,0xfc,0x70,0x5a, 0xdb,0x66,0x76,0x72,0x1,0x6b,0x8b,0x2f,0xf6,0x31,0x5a,0xeb,0xf8,0x32,0x5e,0xed, 0x86,0x75,0x45,0x85,0x74,0x7a,0x57,0xf1,0x41,0x33,0x37,0xc7,0xa5,0xd9,0xed,0xd, 0xd1,0x35,0x76,0x97,0x98,0xce,0xf1,0x6d,0x7f,0xd5,0xea,0xa3,0xf8,0x89,0xb4,0x7e, 0x7f,0x2a,0xbf,0xee,0xaa,0xdf,0xe2,0x8d,0xcd,0x50,0xc3,0x7e,0x23,0x8e,0xf7,0x7e, 0xe2,0x90,0xed,0xa8,0xe8,0x34,0x3b,0x4d,0x73,0xe9,0xd1,0x3d,0xbb,0xff,0x89,0xd, 0x9b,0xfc,0xd0,0x20,0xcd,0x50,0x26,0x74,0x68,0xea,0xf5,0x7b,0x13,0x62,0x2,0xc6, 0xb5,0x99,0xdb,0xd9,0x75,0x55,0x50,0xdf,0x44,0x85,0xbd,0xe6,0xde,0x76,0xb3,0x5b, 0x7c,0xed,0x34,0x75,0x64,0x92,0xa7,0x6d,0xf3,0xd1,0xc1,0x59,0x16,0x3e,0xb9,0x7, 0xef,0xa6,0xcd,0xf3,0xb5,0xec,0x12,0xda,0xbb,0x93,0xe6,0xcb,0x63,0xd6,0x87,0xe3, 0xb3,0x35,0x92,0x52,0xb6,0xf6,0x9a,0x1d,0xfc,0x76,0xce,0x4c,0xb1,0x45,0xa3,0xfb, 0x9f,0x97,0x5d,0xc4,0x99,0x7f,0x70,0xa2,0xee,0xed,0xa1,0x6d,0x3b,0x9f,0xb4,0x52, 0xd6,0x5a,0x3a,0xc7,0x42,0x7b,0x5f,0xd1,0xfa,0x29,0x3d,0xd5,0x95,0xe2,0x4a,0x2e, 0x48,0x7b,0xaf,0x6b,0x1e,0x7a,0xae,0x8f,0xdf,0xa3,0x60,0xf1,0x95,0x12,0xf7,0xe7, 0x1a,0x1a,0xe6,0xb4,0x4f,0x2a,0xbd,0xdd,0x7a,0x77,0xa2,0xf5,0x49,0xad,0xe6,0xc1, 0xfa,0xff,0xbc,0xb7,0xbb,0x30,0xa6,0xaf,0x93,0xe4,0x7a,0x5f,0x69,0xb9,0xb2,0x39, 0xe3,0xaf,0x6,0x4a,0x2a,0xed,0xd8,0x36,0xdc,0xf3,0xea,0xfd,0x2b,0xeb,0x3e,0x25, 0x9a,0x4a,0x19,0xf8,0xc6,0x4,0x65,0xc8,0xaa,0xb4,0x9c,0xee,0xeb,0x3c,0xa5,0xfd, 0xe6,0xa8,0xd9,0x1,0xdb,0xc2,0x2d,0x45,0x86,0xeb,0xee,0x3a,0xdf,0x77,0x88,0x79, 0x98,0x78,0xfc,0xf2,0x15,0x4a,0x1f,0x75,0x92,0x9c,0x8a,0x13,0xf7,0x4e,0x7d,0x10, 0x35,0xa5,0xc3,0xdf,0x83,0xbe,0xc4,0x48,0xf,0xd9,0x9e,0x67,0x66,0x66,0x6b,0x78, 0xc8,0x79,0x74,0xbc,0x61,0xd9,0x8d,0x6d,0x45,0x51,0xed,0xc7,0xcc,0xee,0x90,0xb8, 0xf8,0x7c,0x42,0xc9,0x3f,0x87,0x14,0x22,0x4e,0x3f,0x69,0x67,0x9c,0x9e,0x7f,0x6c, 0xb2,0x48,0xcf,0xf3,0xd7,0xac,0xed,0x75,0x97,0xbf,0x52,0x3a,0xfb,0xaa,0x64,0xeb, 0xc5,0x80,0xc8,0x39,0x87,0x2c,0xd2,0x92,0xdf,0x7a,0xb3,0x9f,0x5a,0x1d,0xd4,0xd6, 0x9e,0x61,0x37,0xef,0x64,0xf1,0x81,0x4c,0xab,0xbc,0xd8,0x48,0xaf,0x4f,0x47,0x1d, 0x3d,0xde,0x49,0xe,0x90,0x4d,0x58,0x57,0xb4,0x3e,0xdc,0xa2,0x59,0x8a,0x53,0xd7, 0x7,0x7a,0x3b,0xed,0x5a,0xbd,0xfd,0x92,0x68,0x1a,0xbb,0xfb,0xac,0x4d,0x9b,0xb5, 0x5a,0x6,0xda,0x81,0x93,0x7a,0x86,0xe5,0x8e,0x96,0xfc,0xf6,0x50,0xe1,0x88,0xfe, 0xc1,0xa3,0xb7,0x9f,0x28,0x16,0x25,0x18,0x2d,0x38,0x7a,0xbc,0x74,0x75,0x88,0xb9, 0x76,0x87,0xf3,0x23,0x66,0x4,0x8e,0x70,0xf8,0xeb,0x9a,0x5c,0x92,0xae,0x43,0xc1, 0x8d,0x18,0xe7,0x87,0xf6,0x52,0xb9,0x1e,0xf6,0x17,0x1e,0xa0,0x6d,0xf6,0x66,0xbe, 0x13,0x13,0xc6,0x85,0x95,0x65,0x1e,0xd9,0xfc,0x4e,0xb7,0x8b,0x82,0xfe,0x56,0x6f, 0xb,0x83,0xfc,0xf8,0x8a,0xe5,0x95,0x29,0x7f,0xec,0xd6,0x7f,0xd3,0x45,0x77,0x69, 0xc8,0x78,0x7,0x43,0x9,0x49,0xce,0x37,0x5,0xbf,0x3b,0x4f,0x65,0x4a,0xa7,0x4b, 0x2a,0x86,0xe4,0x29,0x79,0xa7,0xae,0x9e,0xd4,0x7d,0xee,0x94,0x27,0x4b,0x7c,0x2e, 0xbc,0x2f,0x8c,0xfa,0xa8,0xa0,0xda,0xad,0xf7,0xa6,0xb0,0x9d,0xe1,0xa1,0xbe,0xae, 0x8e,0x2e,0x49,0xd9,0xf3,0x92,0xa6,0xad,0x58,0x92,0x32,0x38,0x21,0x6a,0xce,0x81, 0xeb,0xf7,0x9c,0xf,0xaf,0xf0,0x95,0x4e,0xd4,0xed,0x7e,0xfd,0x1,0xd2,0x89,0x9f, 0x96,0xb6,0x58,0x72,0x65,0xb1,0x6c,0x82,0x96,0xc6,0x8e,0x48,0xc3,0xee,0x11,0x29, 0xc7,0x2f,0xcc,0x3a,0x12,0x31,0xea,0xb2,0x46,0x98,0xcf,0x9a,0xa7,0x87,0x3e,0x2c, 0x50,0xee,0xef,0xdf,0xe6,0xd9,0x1f,0x92,0x39,0xb,0x8f,0x39,0xa9,0xf,0x71,0x7a, 0xbe,0x22,0x45,0x2e,0x63,0x5c,0x8b,0x28,0xf6,0xc4,0xbb,0x6f,0x35,0x47,0x6b,0x5d, 0x79,0x69,0x1c,0x6f,0xdd,0xcb,0x2b,0x6c,0xc9,0xc8,0x39,0xb2,0x89,0xc7,0x66,0xc4, 0x3b,0x4c,0x69,0xd7,0xfb,0x45,0x5b,0xcb,0xe0,0x15,0xfa,0x6e,0x6b,0xcc,0x92,0x8c, 0xce,0xb9,0xe4,0x6f,0x4f,0xd9,0x91,0xd8,0x7f,0xab,0x42,0x49,0x1b,0xcb,0xa5,0x1b, 0xac,0x7a,0x25,0xfe,0x6d,0x36,0x6f,0x98,0xcf,0xe4,0x4f,0x1f,0x94,0xf6,0x3f,0xb0, 0xf0,0xd9,0x13,0xeb,0x3c,0xf3,0x82,0x77,0xa8,0xf1,0x8c,0xfb,0xd3,0x56,0x5e,0xd8, 0x97,0x75,0xef,0xc8,0x96,0x98,0x83,0xc1,0xa1,0x2f,0x55,0x27,0x7d,0xce,0xd,0x9f, 0xd4,0xd9,0xe8,0xb1,0xeb,0x1b,0xa5,0x4d,0x6f,0x93,0xdf,0x26,0xed,0xc9,0x52,0xf8, 0x6c,0x18,0xb8,0x3c,0x2b,0x52,0xeb,0x95,0x9b,0xaf,0xf4,0xc7,0xf8,0x22,0x95,0xe9, 0x19,0xf,0x3d,0xfb,0x9e,0x1d,0xaf,0x97,0xb0,0x65,0x5a,0x6c,0x6,0xba,0x6c,0xbd, 0xba,0xef,0xce,0xf4,0x41,0x53,0x58,0xb6,0x11,0x3,0x33,0x2d,0x9e,0x48,0x1c,0xfc, 0xa4,0x54,0xd0,0xb3,0x6f,0x8a,0x4e,0x81,0x8b,0xd8,0xb6,0xb6,0x87,0x46,0x1f,0x3c, 0x7f,0x36,0x3f,0xe4,0x65,0x11,0x47,0x27,0xd3,0x20,0xde,0x56,0xcc,0xce,0x77,0x32, 0xeb,0xb6,0x4c,0xa8,0x8f,0xab,0xcc,0x84,0xb,0x6b,0xfa,0x4f,0x59,0x5b,0x90,0x71, 0x5d,0xa7,0xac,0xeb,0x90,0x2f,0xe7,0x2d,0xce,0x9a,0x2e,0x4a,0xe8,0x34,0xb1,0xe3, 0x9f,0xd7,0xe,0xf4,0x49,0xcb,0xfe,0x64,0x9c,0xb1,0xea,0xb3,0x45,0xb3,0x81,0x79, 0x99,0x66,0x95,0x4e,0xac,0x98,0xa2,0x4e,0x66,0x2a,0xa,0x5,0xbe,0xac,0x5,0x66, 0xb1,0x33,0xda,0x4a,0x2e,0x9b,0x35,0x77,0x96,0x7e,0x91,0x43,0xf,0xbd,0x5e,0xd6, 0xeb,0x64,0x1e,0x16,0x6d,0xf7,0x19,0xd9,0x8b,0xd3,0xbf,0xa7,0xfe,0x90,0x93,0x4a, 0xd7,0x12,0xc6,0xcc,0x31,0x3c,0x72,0xd2,0xb1,0x8b,0x63,0xee,0x83,0x55,0x5d,0xfe, 0x3a,0x93,0xfc,0x35,0xde,0x34,0xfe,0x61,0x6f,0x53,0xb,0xd7,0x71,0x3e,0x9d,0xbb, 0xf6,0x5b,0x20,0xab,0xb7,0x22,0x57,0xc5,0x38,0x59,0xff,0xf2,0xdf,0x21,0x8e,0x1f, 0x6c,0x86,0x94,0x6b,0xdd,0x6b,0x3f,0xf1,0xf4,0xb1,0x7d,0x3,0xba,0x3d,0xfa,0xcc, 0x99,0x31,0x38,0xff,0x9d,0xfe,0xac,0xa8,0x69,0xef,0x5e,0xf6,0xcd,0x1d,0xee,0x96, 0xaf,0x15,0x63,0xd4,0x6a,0xab,0xae,0xa2,0x29,0xdb,0x27,0xd4,0xa0,0xf3,0xb5,0x91, 0x1f,0x4f,0x99,0x38,0x67,0x6f,0x8f,0x57,0x5a,0x67,0x9a,0xf8,0xca,0x2d,0xfd,0xb8, 0x44,0xa7,0x3e,0x1c,0xa7,0x73,0x12,0x7b,0x9b,0x29,0xc6,0xcf,0xd6,0x6e,0xa9,0xda, 0xc3,0xaa,0xe7,0xac,0xe3,0x2c,0xa9,0x97,0xf2,0x91,0x41,0x7b,0xd9,0xd7,0x5f,0xef, 0xab,0x6c,0x19,0xee,0x14,0xfa,0x60,0x8b,0xfc,0xc4,0x96,0x9f,0x8f,0x6e,0xd1,0x9b, 0x6d,0xb5,0xa9,0xf9,0x4e,0x9f,0xd5,0xfe,0xbd,0x24,0xec,0xdb,0x8c,0x8f,0xcd,0xbb, 0xe5,0x1c,0xe1,0x33,0x6a,0xce,0xd8,0x43,0x48,0xc1,0xc1,0x21,0xa7,0xe3,0x8,0x2b, 0xed,0xee,0x47,0xcf,0xcd,0x29,0x54,0xbb,0x26,0x7e,0x38,0x78,0x79,0x54,0xca,0xee, 0x1b,0x9f,0x8f,0x77,0xfd,0xda,0xd3,0x4d,0xce,0x5a,0x7c,0x7e,0x91,0xf6,0xfc,0xf3, 0x3b,0xf2,0xa7,0xcd,0x52,0xd4,0xed,0x56,0x20,0xba,0x6c,0xc0,0xa4,0x77,0x23,0xc7, 0xeb,0x3c,0xda,0xee,0x7f,0xb1,0xef,0x6e,0x59,0xe7,0x45,0xa3,0xdb,0x69,0x67,0x6, 0x4e,0xee,0x63,0x62,0xbc,0x6c,0x4b,0x87,0x89,0xcf,0x63,0x27,0x57,0x26,0x6b,0xdc, 0xb0,0x54,0xb0,0x99,0xd6,0xd5,0x7c,0x5a,0xa7,0x71,0x4d,0xf4,0x2f,0x28,0x33,0xc3, 0x5d,0x4,0xe5,0xcd,0x9c,0x2e,0xb7,0xd6,0xb7,0x2f,0x42,0xa8,0xcf,0xf2,0x71,0xa6, 0xcb,0x17,0x58,0x2e,0xb7,0xd1,0xb1,0x76,0xb6,0x21,0x7e,0xd0,0x50,0x65,0x15,0x75, 0x25,0x65,0x35,0x25,0x15,0x75,0x63,0x15,0x4d,0x1d,0x55,0x35,0x1d,0x55,0x15,0x25, 0x65,0x75,0x1d,0x65,0xe5,0x3,0x8e,0x7e,0xbb,0x7e,0xba,0xc1,0x71,0xe9,0x2,0xbb, 0x85,0xab,0xf9,0xdf,0x90,0xaf,0xac,0xde,0x1f,0x74,0x51,0x13,0xc6,0x4d,0x1e,0x7b, 0x6e,0xb4,0xc5,0x46,0xd0,0x5d,0x2b,0x13,0x62,0x81,0xaa,0xe8,0xae,0x7b,0x63,0xdd, 0x35,0x6,0x83,0xc1,0x60,0x30,0x18,0xc,0xe6,0x27,0x60,0xe2,0x91,0xe8,0x25,0xa2, 0xa9,0x88,0x9c,0xab,0x5e,0x4b,0xc8,0x3a,0x42,0xec,0x9,0x31,0x20,0xa4,0xeb,0xbf, 0x17,0xb5,0x1a,0x19,0x46,0xc8,0x7e,0x42,0x72,0x8,0xe1,0xd4,0x22,0x8f,0x9,0x59, 0x4f,0x48,0xf7,0x7f,0x25,0xa6,0x3f,0x33,0x92,0x90,0x44,0x44,0xc6,0xeb,0x3,0x21, 0x7,0x9,0x99,0x47,0xc8,0x10,0x42,0xda,0x23,0x72,0xe,0x1e,0xd6,0x51,0x48,0x13, 0x32,0x1c,0x91,0x6b,0x6,0x6e,0x10,0x52,0x41,0xc8,0x37,0xca,0xbd,0x5c,0x53,0x47, 0x9a,0x8a,0xdb,0x71,0x44,0xc6,0xfb,0x19,0x21,0xe6,0x54,0x3c,0xb9,0xc0,0x3a,0x5, 0x58,0x67,0xc1,0x5d,0x3b,0x60,0x8c,0xc8,0xb5,0x17,0x5c,0x7a,0x12,0xb2,0x95,0x90, 0x4f,0x84,0x94,0x22,0xb2,0x8c,0x35,0x6f,0xf4,0x58,0x93,0xc0,0xda,0x8d,0xb7,0x84, 0x94,0x10,0xe2,0x84,0x7e,0x5e,0xd3,0x0,0xeb,0x2c,0xe,0x20,0x32,0x6f,0xe9,0xe5, 0x6,0xce,0xed,0x43,0x64,0xda,0xb8,0x40,0x7d,0x8,0x21,0xa4,0x92,0x90,0xfb,0x84, 0xf4,0x69,0xe4,0xb8,0xcf,0x25,0xe4,0x2b,0x21,0x8f,0x8,0x51,0xa4,0x5d,0x1b,0x44, 0x48,0x26,0x15,0xcf,0xdd,0x84,0xe8,0x22,0xf2,0x39,0x81,0x40,0xd9,0xd9,0x43,0x48, 0x39,0x22,0xd3,0x3e,0x80,0x76,0xef,0x68,0xea,0xde,0x22,0x42,0x26,0x37,0x52,0xdc, 0xa1,0x2c,0x40,0x3e,0x9e,0x25,0xa4,0x35,0xed,0x1a,0xac,0x8d,0xc9,0x22,0x24,0x9b, 0x90,0xa1,0xd4,0x39,0x5d,0xea,0x1e,0x90,0x61,0xd4,0x39,0x58,0x37,0x3,0x75,0x1c, 0xd2,0xd0,0x89,0xe6,0x7,0x3c,0xbb,0x6b,0x88,0xac,0x1b,0xce,0x42,0x8e,0xbb,0x37, 0x15,0xf7,0xed,0x88,0x6c,0x23,0xe9,0x40,0x3d,0x84,0xe7,0x2,0x43,0x6e,0xc8,0xef, 0xab,0xa8,0x7a,0xf9,0x89,0x44,0xe4,0x72,0x32,0x55,0xc4,0x2b,0x4b,0x74,0xa0,0x2c, 0xee,0xa6,0xdc,0xfb,0xa,0x29,0xee,0xdb,0x28,0xff,0x3c,0xf9,0x5c,0xef,0x44,0xc5, 0x27,0x90,0x3a,0x86,0xb8,0x43,0x39,0x81,0xf5,0x4d,0xed,0xa9,0x38,0xc3,0x7a,0x23, 0x48,0x5f,0x4,0xe5,0x66,0x27,0x75,0x4f,0x47,0xc4,0xcc,0x7a,0x2a,0x4c,0x48,0xb, 0x53,0x7e,0xd5,0x95,0xad,0x94,0x3f,0x1b,0x6a,0x70,0x33,0x8b,0x72,0x3,0xf9,0xaa, 0x4b,0xfd,0xbd,0x8a,0xc1,0x9d,0x13,0x75,0xd,0xea,0xbf,0x6,0xf5,0xb7,0x71,0xd, 0xfe,0x72,0xdd,0xc3,0x73,0xaa,0x4f,0x1a,0x36,0x51,0xf7,0x6f,0xae,0xc5,0xdd,0x6a, 0xca,0x9d,0x38,0x22,0xf3,0x1c,0xfe,0xee,0xc0,0xe0,0x4e,0x8a,0xba,0x6,0xef,0x80, 0x56,0xd4,0xdf,0xae,0xb5,0xf8,0xbd,0x84,0x72,0xb7,0xa7,0xce,0xb1,0xe6,0xe1,0x49, 0xdd,0xbb,0xb1,0x16,0x77,0x55,0xe3,0xbf,0x82,0xfa,0xbb,0x6d,0x2d,0xf7,0x70,0xe3, 0xcf,0xf4,0x9c,0xaa,0xe2,0x46,0xb9,0x73,0xa9,0x2d,0xb2,0x7c,0xe0,0xd6,0x5b,0xaf, 0x1a,0xdc,0x70,0xcb,0xf,0xb4,0x3b,0xc3,0xa8,0xbf,0x17,0xd7,0xe2,0xaf,0x3a,0xe5, 0xce,0xa4,0x6,0x37,0x4b,0x91,0x70,0xea,0x31,0xb7,0x1c,0x5,0x23,0xe6,0xf5,0x93, 0xd0,0xee,0x41,0x7d,0xf5,0xa7,0x8e,0xa1,0x9d,0xf9,0x4a,0x85,0x2f,0xc9,0xc7,0x4f, 0x68,0xc7,0xa0,0xfe,0xd2,0xdb,0x50,0x2e,0xdc,0xb8,0xef,0xad,0x5f,0x94,0xab,0xc1, 0x2d,0x17,0xe7,0x10,0xf9,0xec,0xe9,0x1c,0x26,0xa4,0x8c,0x10,0x25,0x44,0x96,0xf3, 0x28,0xc4,0x6b,0x37,0xe9,0x40,0xdf,0x8,0xd2,0x77,0x80,0x4f,0x58,0x1e,0x88,0x17, 0xf7,0x86,0xb4,0x3d,0x74,0xb8,0xef,0xde,0x64,0x84,0xb8,0xa,0xd5,0x1f,0x40,0x3f, 0x0,0xde,0x5d,0xf0,0xe,0x55,0xa2,0xce,0x41,0x59,0xa2,0xaf,0x11,0x85,0xf7,0x43, 0x16,0xe5,0xae,0x33,0xed,0x5a,0x4b,0x42,0x8e,0x22,0x32,0xee,0xde,0xc2,0x8a,0x34, 0x8d,0x11,0x84,0xbc,0x27,0x4,0x96,0x14,0xce,0xa0,0x5d,0x83,0x78,0x43,0x1a,0xe0, 0x39,0x40,0xf9,0x80,0x36,0xb2,0xd,0x25,0x9a,0x88,0x6c,0xf3,0x21,0xfd,0x10,0xff, 0x41,0xb4,0x7b,0x41,0xf7,0xfc,0x90,0xba,0x6e,0xd3,0x48,0x71,0xe7,0x22,0x4b,0xc8, 0x2d,0x44,0xe6,0xd3,0x69,0xea,0x98,0xb,0x3c,0x87,0xc3,0x88,0xac,0xf,0x4c,0xfd, 0x37,0x78,0x4f,0x77,0xa9,0xe2,0x1e,0xda,0x2c,0x18,0xe3,0x40,0x1f,0xf4,0x15,0x22, 0xd3,0xd9,0x14,0x40,0x3d,0x86,0x76,0xbc,0x84,0xa,0x1b,0xda,0x88,0xaa,0xfd,0x78, 0x28,0x1b,0xd0,0x2e,0xad,0xa6,0x4,0xfe,0xae,0x5a,0x57,0x25,0x10,0x39,0x3e,0xcb, 0x40,0x64,0x7f,0x27,0x88,0x3a,0xd7,0xd4,0x40,0x3f,0xfe,0x30,0x22,0xf3,0x1b,0xfa, 0xc0,0xd7,0x11,0x59,0xe6,0xe1,0x3d,0xc,0xe3,0x2b,0xa8,0xeb,0x90,0x56,0x78,0x9f, 0xc1,0xfb,0x19,0xca,0xc6,0x19,0x44,0xa6,0x1b,0xdc,0x9f,0x27,0x64,0x70,0x53,0x47, 0x9a,0x1,0x48,0x7,0xbc,0xe7,0x9e,0xa3,0xda,0xc7,0x8f,0x2f,0x9,0xd9,0x82,0xaa, 0xf7,0xbf,0x7f,0x15,0xa0,0x3e,0x40,0x1f,0x1e,0xde,0xfd,0xd0,0xf,0x5b,0x83,0xc8, 0xf1,0x3b,0xac,0xfb,0xee,0xf6,0x2f,0xc6,0xb,0x83,0xc1,0x60,0x30,0x18,0xc,0x6, 0xf3,0xb,0xc0,0xf9,0x4e,0x53,0xfc,0xb2,0x24,0xc9,0x5f,0xf,0x91,0xef,0xbf,0x44, 0xef,0xdf,0x1d,0x7e,0xcb,0xa4,0xa5,0xe5,0xe0,0xb7,0xd0,0xa2,0x85,0x24,0xfc,0xa6, 0xdf,0x14,0xf5,0x86,0xdf,0x58,0xcf,0x5e,0xb1,0xf0,0xeb,0xed,0x21,0x92,0xe,0xbf, 0x72,0x52,0x2d,0xcb,0xdc,0x89,0x41,0x83,0x9e,0xe8,0x4d,0xb6,0x1e,0x42,0x6c,0x77, 0xd1,0x9b,0x95,0xe4,0x6f,0x19,0xfc,0x12,0xe7,0xcb,0xd8,0xc4,0x75,0x8e,0xa4,0x54, 0x59,0x19,0x79,0x5f,0x51,0x21,0xe9,0x4f,0x7a,0x6c,0x55,0x7f,0xb9,0xe1,0x70,0xc3, 0xe5,0xc6,0x83,0x1b,0x2f,0x4e,0xa1,0x64,0xd3,0xe4,0x7,0xf9,0xb,0xeb,0xb4,0xe4, 0x11,0x39,0x11,0xf4,0x63,0x9d,0x96,0x14,0x5e,0xa7,0x85,0xc1,0x60,0x7e,0x5b,0x40, 0xcf,0x0,0xfa,0x2d,0xd0,0x45,0x83,0xbe,0xf0,0x1b,0x25,0x2c,0x44,0xea,0x80,0x2d, 0x11,0xa9,0x57,0x14,0x36,0x30,0x1f,0x5,0x73,0x4e,0xb9,0x88,0xd4,0x89,0x4d,0xa0, 0xe2,0x2,0xf3,0x6a,0x30,0x3f,0xfd,0x7,0x21,0x66,0x84,0x84,0x21,0x52,0xf,0xa, 0xba,0x35,0x71,0x21,0x85,0x3d,0xe,0x91,0xf3,0x92,0xa0,0xbb,0x6d,0x47,0x9d,0x83, 0xef,0xef,0x63,0x10,0xa9,0xef,0x2,0xb9,0x49,0xc8,0x24,0xea,0x5a,0x2f,0x42,0x4e, 0x20,0x52,0xe7,0x34,0x14,0x35,0xc,0xd0,0xf5,0xb0,0xd0,0xcf,0xfa,0x4b,0x1f,0x42, 0xd2,0x10,0x4f,0x77,0x8,0x62,0x8a,0x48,0x3d,0x67,0x55,0xfd,0x32,0xec,0x95,0x0, 0xfa,0x68,0x8b,0x7a,0x86,0xd,0xf3,0x13,0xa0,0xfb,0x95,0xa9,0x72,0xe,0xf6,0x6a, 0x78,0x41,0x9d,0x83,0x79,0xb,0x98,0xe7,0x2f,0x46,0xe4,0x7e,0x6,0x70,0xee,0x1f, 0xc4,0xcb,0x7,0x0,0x74,0x9f,0x29,0x88,0xd4,0xdd,0xb,0x2,0xe8,0xe1,0x6e,0x23, 0x72,0xce,0xa0,0x2a,0xa0,0x1f,0x86,0xbc,0x87,0x32,0x70,0x89,0xa,0x13,0x74,0xc3, 0x7f,0x23,0x72,0x9e,0x73,0x3a,0x22,0x9f,0x45,0x55,0xc0,0x8f,0x78,0xc4,0x9b,0x47, 0xa9,0xd,0x98,0x1f,0xbb,0x8b,0x78,0xcf,0xba,0x2a,0xa0,0xd3,0x85,0xf2,0x5d,0x84, 0x7e,0xce,0x17,0x88,0xc3,0x47,0x44,0xce,0x8f,0x95,0x30,0xdc,0x7,0xf7,0x40,0x79, 0xd9,0x5e,0xc7,0xf0,0x13,0x6a,0x8,0xbf,0x35,0x15,0x3e,0xd3,0x1c,0x4f,0x4d,0xe1, 0x83,0x9f,0xeb,0xeb,0x10,0x3e,0x37,0xe,0x90,0x7,0xf4,0x79,0xe0,0x58,0x44,0x3e, 0x5f,0xc8,0x7f,0xd0,0xf1,0x76,0xa1,0x5d,0x87,0xf5,0x45,0x31,0xb4,0x73,0x10,0x5f, 0x58,0xdb,0x12,0x50,0xc7,0xb0,0xb9,0xc0,0x1c,0x28,0xd4,0xa1,0xde,0x55,0xce,0xc1, 0xdc,0x6,0xac,0x4b,0xe9,0x4a,0xc5,0xa1,0xa8,0xca,0x35,0x98,0xd3,0x86,0xb2,0x39, 0xa5,0xca,0x39,0xc8,0x23,0x48,0x77,0x5d,0x9f,0x3d,0x1d,0xa8,0x57,0xd0,0xce,0x4d, 0xaf,0x72,0xce,0x8f,0x8a,0x17,0xa4,0x15,0x9e,0x11,0xcc,0xc5,0x41,0xbd,0x0,0xfd, 0xb1,0x4f,0x15,0x77,0x50,0x67,0xa1,0x9e,0xf2,0xdb,0xf,0xa4,0xae,0x80,0x1e,0xfd, 0x9,0x21,0x7f,0x22,0xde,0xfc,0x14,0xe4,0x3,0x3c,0x8b,0x52,0x4a,0x6e,0x51,0x71, 0x0,0xe0,0x99,0x41,0x5e,0xbf,0x41,0xe4,0xfa,0xf,0x61,0x0,0x6d,0x2c,0xe8,0x9b, 0xf3,0x10,0x39,0x37,0x3,0xf3,0xa3,0x50,0xb7,0xa1,0xfd,0x85,0xb5,0x4c,0xa0,0x9b, 0x86,0x7c,0x87,0x35,0x33,0xd0,0x46,0x43,0xfd,0x6d,0x8c,0x79,0xb,0xc8,0x6f,0xd8, 0x12,0xe8,0x2,0x22,0xdb,0x36,0x36,0x22,0xdf,0x3f,0xd0,0x3e,0x43,0x1b,0xb0,0x8, 0x91,0xe5,0x0,0x83,0xc1,0x60,0x7e,0x79,0x38,0x75,0x81,0x25,0x4e,0xaa,0x31,0x5a, 0x4a,0x71,0x2a,0x95,0xdb,0xba,0xb3,0x2d,0x5a,0xe8,0x95,0xb1,0xc4,0xe5,0x8a,0xd2, 0xbd,0x3,0x8a,0xd2,0x73,0x2,0xca,0x58,0x39,0x72,0x6c,0x8b,0x4,0x3d,0xb8,0x6, 0x6e,0xbe,0xbb,0x85,0x7b,0xea,0x0,0xe8,0x29,0x3c,0x20,0x22,0x22,0x55,0xf4,0x14, 0xc4,0x5f,0x58,0x4f,0x81,0xc1,0x60,0x30,0x18,0xc,0x6,0x83,0xc1,0x60,0x30,0x18, 0xc,0x6,0x83,0xc1,0x60,0x30,0x18,0xc,0x6,0x83,0xc1,0x60,0x30,0x18,0xc,0x6, 0x83,0xc1,0x60,0x30,0x18,0xc,0x6,0x83,0xc1,0x60,0x30,0x18,0xc,0x6,0x83,0xc1, 0x60,0x30,0x18,0xc,0x6,0x83,0xc1,0x60,0x30,0x18,0xc,0x6,0x83,0xc1,0x60,0x30, 0x18,0xc,0xa6,0x11,0x1,0x5b,0x36,0x5a,0x84,0xd8,0x21,0x72,0xff,0xbe,0x53,0x88, 0xdc,0x2f,0x12,0xf6,0xee,0x3,0x9b,0x84,0xb0,0xc7,0x20,0xd8,0xc1,0x1,0x7b,0x3c, 0x5f,0x10,0xb9,0xbf,0x1d,0xec,0x41,0x8,0x36,0x71,0xc0,0xee,0x10,0xec,0x35,0xa, 0x7b,0x6d,0x62,0x1b,0x2c,0xbf,0x7,0xb0,0xab,0x15,0xd8,0xcc,0x81,0x3d,0x4b,0x61, 0x6f,0x52,0xd8,0x43,0xb0,0x36,0xdb,0x40,0x75,0x15,0x16,0x22,0x6d,0x7d,0x81,0x4d, 0x31,0x7e,0x36,0xd8,0x30,0x4d,0xf,0xec,0x5,0xc,0x7b,0x56,0xc2,0x1e,0x91,0x60, 0xcb,0x4c,0x58,0xcf,0xbb,0x26,0x81,0x72,0x15,0x4d,0xc8,0x2,0xc4,0xdf,0x5e,0x1f, 0xa6,0x71,0x81,0xbd,0x98,0x61,0xcf,0x5d,0xd8,0x9b,0xb7,0x29,0x9e,0x39,0x3f,0x81, 0x3d,0x79,0x61,0x6f,0x54,0xe5,0xc6,0x4d,0x2e,0x86,0x2,0xf2,0x19,0xec,0xd1,0xd5, 0xa5,0x6d,0x87,0xfd,0x73,0x61,0xaf,0x63,0xb0,0x33,0xe,0xf6,0x48,0x61,0x6f,0x5d, 0xd8,0xbb,0x17,0xf6,0x14,0x87,0xbd,0x74,0xa1,0xed,0x0,0x5b,0x77,0x2d,0xa8,0x63, 0xd8,0xf7,0x16,0xf6,0xe4,0x9d,0x42,0xb9,0xf,0xa6,0xee,0x67,0xb2,0x2d,0xcd,0x24, 0xb0,0x17,0xf2,0xd8,0xc6,0x4b,0xfa,0xff,0x35,0xf0,0xcc,0x60,0xef,0x75,0xb0,0x41, 0xc8,0x2f,0xff,0xe1,0x1a,0xd8,0x66,0x7,0x1b,0xb4,0x3a,0xe8,0x67,0xfb,0xe6,0xd, 0x1,0xfa,0x91,0x7a,0x88,0xb4,0x37,0x98,0x52,0x43,0xf8,0x5c,0x89,0x43,0xa4,0xfd, 0x6e,0x4c,0xc3,0x81,0x3d,0xc6,0x61,0xcf,0xe9,0x9a,0xea,0x20,0x3c,0x13,0xa8,0xaf, 0x4d,0xd5,0x4f,0x57,0x40,0xe4,0xd8,0xe0,0x55,0xd,0x71,0x2,0x81,0x7d,0xd4,0x7b, 0xf3,0xf1,0x3,0x53,0x3b,0xd0,0x97,0x67,0x21,0xe6,0xbc,0x85,0x31,0x1b,0xd8,0xa5, 0xf8,0x37,0xeb,0x19,0xd8,0x2a,0x6,0x1b,0x12,0xf0,0x9c,0xf9,0xb5,0x4b,0xd0,0x27, 0x5,0x7b,0xb,0x4c,0x36,0x94,0x31,0xcc,0xc0,0xfe,0xf2,0x30,0xfe,0xe6,0x57,0xaf, 0xe0,0xfd,0x3f,0x40,0x40,0x3f,0xe1,0x59,0x81,0xd,0x70,0x57,0xea,0xfe,0xc7,0x88, 0xdc,0xf3,0xfe,0x2b,0x25,0x79,0xd4,0x39,0xb8,0x6,0xf6,0x70,0xd5,0x90,0x60,0xb6, 0xa8,0x7,0x12,0x72,0x1c,0xf1,0xef,0x97,0x80,0xfd,0x8c,0x91,0x2,0xc6,0xf9,0xff, 0x11,0x78,0x6f,0xf3,0x6b,0x57,0xe1,0xdd,0xae,0x2e,0xa0,0x7f,0xf0,0x4e,0xd8,0x8c, 0x48,0xbb,0xcb,0x82,0xf6,0xed,0x59,0x88,0xac,0xbb,0x32,0x74,0x4f,0x6b,0x0,0xb6, 0xdd,0xbe,0xc0,0xc7,0x3f,0x68,0x23,0x40,0x37,0x81,0xdb,0x2,0x66,0x9c,0x10,0xb3, 0x1d,0xf0,0x2,0x44,0x8e,0xb5,0x5,0xa9,0x8f,0x60,0x2b,0x2,0xec,0x9f,0x97,0x31, 0xf8,0x27,0xa8,0xc0,0x38,0x2,0x6c,0xd0,0xd0,0x6d,0xd6,0xd4,0xc4,0x28,0x44,0xb6, 0x27,0x4c,0xfe,0x81,0xcd,0xf,0x25,0xfe,0xb7,0xfe,0xdf,0x1,0xb6,0x6d,0xc0,0x6, 0xa,0x53,0x5e,0x81,0x5e,0x47,0x5a,0x40,0xff,0x8c,0x11,0x69,0x2b,0xaa,0xa1,0xcf, 0x9d,0x2e,0xef,0x10,0xcf,0x16,0x4b,0x5d,0x0,0x1b,0x2a,0xab,0x10,0xa9,0x5b,0x66, 0x2a,0x53,0x36,0x2,0xa6,0xeb,0xbf,0x8,0xd8,0x71,0x7f,0x84,0xaa,0xe7,0xf,0xe8, 0x55,0x6c,0x5,0xf4,0xb,0xec,0xd5,0xec,0x60,0xf0,0x8b,0x2b,0xd0,0xb6,0x80,0x6e, 0x7f,0x2d,0x22,0xf5,0xfa,0xd0,0x87,0xe8,0x4e,0xc9,0x0,0xea,0xdc,0x3a,0x44,0x8e, 0xe3,0x6b,0xd2,0x2f,0x4,0x50,0x61,0xd5,0x15,0x18,0x2f,0xc4,0xf1,0xf1,0xeb,0x30, 0x21,0x2d,0x5,0x4c,0xe7,0x7f,0x5,0xd0,0xc5,0x40,0x9d,0xa2,0xe7,0x9,0xcc,0xc1, 0xc,0x14,0xd0,0x2f,0xc8,0xc3,0xbf,0x18,0xfc,0x2,0xe1,0xda,0x8d,0xeb,0x2a,0x80, 0x7f,0xd0,0xe6,0x40,0x39,0xc9,0xe3,0xe3,0x27,0x8c,0x3d,0x4,0xb1,0x43,0x27,0x4a, 0xf9,0xc7,0x34,0x8e,0xbd,0x8f,0x48,0x3b,0x4b,0xff,0x4f,0x4c,0x46,0xcc,0xed,0xe2, 0x59,0x44,0xbe,0xf,0x4,0x1,0xf2,0xf6,0x6f,0x6,0xbf,0xa0,0xe,0xfb,0xd6,0xc3, 0xbf,0xaa,0xc0,0x58,0x4,0x6c,0x8c,0x55,0x30,0xf8,0x7f,0xe,0x9,0xd6,0xe,0x0, 0x1a,0x88,0x79,0x4c,0xb,0xf5,0x40,0x93,0xff,0x6d,0xff,0x29,0xa0,0x2f,0x47,0x6f, 0x5f,0xa1,0x6f,0xec,0x8e,0x4,0xeb,0xe3,0x71,0x9,0x42,0xd5,0xf3,0x13,0xe6,0x77, 0xf5,0xea,0x70,0x6f,0x2b,0x54,0xb7,0xfe,0x38,0xf4,0xe7,0x98,0xda,0x2a,0x41,0x6d, 0xdf,0x1,0x1d,0x8,0xb9,0xc8,0xe0,0x17,0xf4,0x9,0x66,0xd6,0xc3,0xbf,0xdf,0x9, 0x68,0x87,0x99,0xd2,0x6d,0x5a,0x4f,0xff,0x4c,0x18,0xfc,0x83,0xf9,0xfd,0x5e,0x7c, 0xdc,0xf,0x22,0xc4,0xb,0x91,0x36,0x28,0x3f,0x55,0xb9,0x7,0xfe,0x86,0xf1,0x25, 0xd8,0x47,0xe4,0xa7,0x5b,0xf8,0x83,0xf2,0x9b,0x1e,0x9e,0x20,0x7d,0x42,0x2e,0x50, 0xce,0x37,0x32,0xf8,0x5,0xf5,0xc0,0xb9,0x1e,0xfe,0xfd,0xe,0x80,0xd,0x53,0x7a, 0x7a,0xf3,0x9,0xd1,0xad,0xa7,0x7f,0x50,0x8f,0xe8,0xef,0x67,0xb0,0xe9,0x28,0xc7, 0xe0,0x56,0x11,0x31,0xd7,0x39,0x7e,0x2,0x7d,0x9,0x26,0xdd,0xad,0x3c,0x21,0xd9, 0x34,0xb7,0xd0,0x2e,0x8,0x32,0x36,0xac,0xa,0xd4,0xf7,0x12,0x86,0xf0,0xa1,0x5d, 0xa9,0x4f,0x5b,0xf8,0x2b,0x2,0xe9,0x60,0x6a,0xa3,0xc1,0xb6,0xa3,0xa0,0x7a,0xbc, 0xaa,0xec,0xa2,0xf9,0x7,0xfd,0x7b,0x6d,0x6,0x77,0xf0,0xbe,0x29,0x65,0x8,0xbf, 0x36,0x81,0xfe,0x89,0x25,0x83,0x7f,0xc3,0x50,0x75,0x3d,0x45,0x5d,0xec,0xbf,0xf2, 0x3,0x74,0x8d,0x4c,0xef,0x16,0x58,0x6f,0x22,0xd6,0x0,0x7f,0x7f,0x5,0xe0,0xd9, 0xef,0x45,0xd5,0xd3,0x6,0x76,0x56,0x7b,0x36,0xc0,0x5f,0x18,0xb3,0xd1,0xd7,0x7b, 0x6c,0x64,0x70,0xb7,0x9e,0x21,0x6c,0x41,0x65,0x1d,0x83,0xbf,0x9e,0x34,0x37,0x50, 0xbe,0x4,0xd1,0x13,0xd2,0x91,0x47,0xe4,0xb8,0x87,0x1e,0x36,0xcc,0x2d,0x8,0xcb, 0xde,0x75,0x53,0x3,0x73,0xeb,0x7,0x50,0xf5,0x34,0xc1,0x78,0x9f,0x6e,0x5f,0x58, 0x50,0xbc,0x68,0x7e,0x82,0x7e,0x97,0x3e,0x8e,0xb6,0x62,0x8,0x1b,0xe4,0x35,0x21, 0x2b,0x10,0xa9,0x83,0x83,0x7b,0x60,0x9e,0xb8,0x2f,0x21,0x8b,0x11,0xb3,0x2e,0x2, 0x64,0x3e,0xcd,0x6f,0xe8,0x33,0xbe,0xa5,0xb9,0xf1,0x6c,0x60,0x9a,0xe0,0x7d,0x96, 0xc8,0x10,0x76,0x14,0xfa,0xfd,0x74,0xc6,0x50,0xef,0x99,0xe6,0x70,0x92,0x50,0xc3, 0xed,0xf8,0x42,0xb9,0xa2,0xe7,0xbd,0x3,0xcd,0xd,0xf4,0xd5,0xe8,0xe3,0x4b,0x18, 0xc3,0x81,0x3e,0xbf,0xa6,0x75,0x1,0x10,0x6f,0x7b,0x54,0x5d,0x6f,0xc,0xef,0x68, 0x79,0x9a,0x5b,0x7,0x9a,0x1b,0x16,0x6a,0xf8,0x3b,0x1b,0xd6,0x30,0x46,0xa0,0xea, 0xf9,0x76,0x13,0x35,0x6c,0x1c,0xdb,0x94,0x40,0x1e,0xc0,0x9a,0x1b,0x7a,0x1a,0xa0, 0xcf,0x2d,0x8c,0xf5,0x72,0x9a,0x34,0x7f,0xe1,0x39,0xd3,0x6d,0x52,0x9f,0xa1,0xb9, 0x81,0x7e,0xf5,0x5c,0x1,0xc2,0x18,0x83,0xaa,0x97,0x81,0xd3,0x34,0x37,0x12,0xa8, 0x7a,0x19,0x53,0x13,0x20,0xc,0x7e,0x40,0xf9,0xc,0x43,0xd5,0xf3,0x2f,0xe,0x35, 0x8e,0xed,0x6d,0x61,0xc2,0xef,0x7d,0xf,0xed,0x1a,0x93,0xdd,0xfb,0xfa,0x40,0x1f, 0x43,0x86,0xd1,0xae,0xc3,0xd8,0x8f,0xae,0xaf,0xf1,0xae,0x47,0x38,0x8e,0x34,0x3f, 0x2a,0x50,0xf5,0x71,0xe5,0x59,0x9a,0x9b,0x95,0xf5,0x8,0x87,0x9,0xe8,0xf7,0x1d, 0x43,0xd5,0xf3,0x11,0xd6,0xaf,0xff,0xca,0x65,0x80,0xde,0x27,0xe7,0xd6,0x7b,0x61, 0x3d,0x7b,0x80,0x5e,0x37,0x16,0xd3,0xae,0xaf,0xa2,0x5d,0x87,0xbe,0x41,0x7d,0xfa, 0x50,0xf0,0x9e,0xa1,0xaf,0xf7,0x5a,0x45,0x73,0x63,0x47,0xbb,0x7e,0xa6,0x1e,0xe1, 0xd4,0x14,0x3e,0xd3,0x3b,0xf4,0x57,0x2d,0x3,0x30,0x66,0xa5,0xc7,0x15,0xd6,0x4f, 0xa,0x7b,0x8d,0x74,0x2a,0x2d,0xc,0x1d,0xda,0xf5,0x48,0xda,0xf5,0xb5,0xd,0x8, 0x8b,0xfe,0x8e,0x8f,0xa2,0x5d,0xd7,0xa6,0x5d,0x7f,0xdc,0x80,0xb0,0x98,0xe0,0xd7, 0x87,0x86,0x77,0xc1,0xaf,0xd4,0x1f,0x80,0xef,0x6b,0xe8,0x71,0x4c,0x46,0xd,0xef, 0xeb,0x31,0x91,0x4f,0xb,0x87,0x3e,0x3f,0x4c,0xef,0x1b,0xaa,0x34,0x20,0xac,0xfe, 0x34,0xbf,0x32,0x69,0xd7,0xbb,0xd0,0xae,0xe7,0x35,0x20,0x2c,0x7e,0xc0,0x3b,0x75, 0x1f,0xaa,0x9e,0xbf,0xb1,0xe8,0xd7,0x28,0x3,0xd0,0xa7,0xa6,0xc7,0xd,0xc6,0x51, 0x1d,0x1a,0x29,0x3c,0xfa,0x1c,0x5a,0x6b,0xda,0x75,0x7a,0x9f,0x8c,0x7e,0x5d,0x10, 0xc4,0x69,0x7e,0x7d,0x15,0xf0,0xba,0xb0,0x80,0x32,0x70,0x4,0x55,0xcf,0xe7,0x88, 0x46,0xa,0x4f,0x10,0x98,0xf4,0xd8,0x50,0xf7,0x7f,0x95,0xe7,0xdf,0x98,0x3a,0xb4, 0xa6,0x7a,0xfe,0xa0,0x5f,0xa6,0xf7,0x45,0x60,0xe,0xcd,0xb0,0x91,0xc2,0x13,0x94, 0xad,0xa8,0xe9,0xca,0x40,0x6d,0xed,0x3f,0x8b,0x76,0x5d,0xbe,0x11,0xe2,0xc0,0xa5, 0x29,0xda,0x7f,0xd0,0xfd,0xc4,0xa2,0xea,0xf9,0xbb,0xb0,0x11,0xc2,0x6a,0x8,0x30, 0x4f,0x4e,0x8f,0xe3,0x3,0x44,0x7e,0x5b,0x23,0x4c,0xe8,0xfd,0x3f,0xba,0xce,0xff, 0x12,0xed,0xba,0xb5,0x90,0xc3,0xaf,0x8a,0x16,0x2d,0x2c,0x61,0xf7,0xff,0x9a,0x23, 0xe6,0x79,0x2b,0x26,0x5d,0xf7,0xaf,0x0,0xac,0x93,0xa4,0xc7,0x15,0xf2,0x44,0x90, 0xb5,0x37,0xb5,0x71,0x8e,0xe6,0xbf,0x1d,0xed,0xba,0xb,0xed,0xfa,0x7d,0x21,0x86, 0x4d,0x67,0x11,0x2d,0x2c,0x61,0x8f,0xff,0x4e,0xa3,0xea,0xf9,0xb9,0x47,0x88,0x61, 0x34,0x6,0x4c,0xe3,0x40,0x98,0xef,0xe9,0x2e,0x24,0xff,0xd7,0xd0,0xfc,0x3e,0x4b, 0xbb,0xe,0x6b,0xa9,0xe8,0xeb,0x4b,0x16,0x9,0x29,0x6c,0x3a,0x74,0x3d,0xa3,0xab, 0x90,0xfc,0x85,0x67,0xcf,0xd4,0xdf,0x3b,0x4b,0x5d,0xfb,0xd5,0xd9,0x86,0xaa,0xc7, 0x1d,0xe6,0x5d,0x14,0x84,0xe0,0x37,0xbd,0xcd,0x5,0xdd,0x3c,0x5d,0x1f,0x72,0x94, 0xe6,0x6,0x74,0xb9,0x6,0x42,0x8,0xbb,0x2a,0x12,0xa8,0xfa,0xdc,0xbd,0xa0,0xdf, 0x27,0x30,0xc1,0x4f,0xef,0x73,0x5,0x9,0xef,0x9b,0xc6,0xa6,0x80,0x3e,0x47,0xa, 0x2,0xeb,0xb2,0x86,0x34,0xd0,0x5f,0xc8,0x9f,0x4c,0x9a,0xbf,0x74,0x1d,0x20,0xb4, 0x1,0xc5,0x34,0x37,0x30,0x6e,0x80,0x77,0x83,0xa0,0x6b,0xf6,0xf8,0xb1,0x98,0xe6, 0x3f,0xe8,0x19,0x1b,0x3a,0xff,0x3,0x69,0x3b,0x8c,0xaa,0xe7,0x1b,0xac,0x49,0xfe, 0xdd,0xe6,0x0,0x1,0xba,0x2e,0x16,0xa4,0x10,0x35,0xfc,0xbb,0xbd,0x2d,0x34,0x3f, 0x59,0xa8,0xba,0x8e,0x17,0xd6,0xd6,0x30,0x7d,0x97,0x7,0xef,0xa2,0x65,0x88,0xd4, 0xed,0xd4,0xb7,0x3e,0xc1,0xbc,0x71,0x3a,0xcd,0xdf,0xcd,0xf5,0xf4,0x8b,0xb,0xf4, 0xf5,0x4e,0x31,0xc4,0xf7,0x57,0xd3,0xf5,0x9,0xa,0xe8,0x50,0xe9,0xcf,0x1,0xda, 0xe3,0x86,0xac,0x75,0x84,0xfa,0x4d,0x5f,0xff,0xe1,0xce,0xe0,0x6e,0x9,0x43,0xd8, 0x74,0xa9,0xf,0x1b,0x50,0xf5,0xf4,0x34,0x64,0xfd,0x7,0xe8,0x30,0xe8,0xe3,0x16, 0x90,0x18,0xf4,0x7b,0x3f,0x7b,0x2e,0xe6,0xa8,0xfa,0x9a,0x29,0x78,0x2e,0x2b,0x1a, 0xe0,0xe7,0x6e,0x9a,0x7f,0xd0,0xbe,0x6b,0x30,0xb8,0x9b,0x85,0x7e,0x5e,0xeb,0xd9, 0xd0,0xe7,0xaf,0x85,0xaa,0xeb,0xa0,0x76,0xd4,0xc3,0x1f,0x2e,0x30,0x3e,0x4e,0x60, 0x88,0x57,0x34,0x22,0xd7,0x3,0xfc,0x57,0x80,0xfe,0xd7,0x67,0x54,0x3d,0x9d,0xb0, 0x56,0xa0,0x79,0x3d,0xfc,0x83,0x7c,0xfb,0x40,0xf3,0xb,0x74,0xff,0x3d,0x18,0xdc, 0xc2,0x5a,0xb3,0x93,0x88,0x79,0x1d,0xbf,0x20,0x80,0x3f,0xf4,0xbe,0x7,0x7c,0x5f, 0x52,0xdf,0x79,0xe,0xe8,0xf,0xbf,0x60,0x88,0x13,0x7c,0x43,0xfa,0x5f,0xfc,0x2e, 0x8,0xfa,0xc7,0xb0,0xcf,0x1a,0x3d,0xbd,0xa0,0xdf,0xea,0x5c,0xf,0xff,0x4c,0x19, 0xfc,0x82,0xfc,0xe4,0xb7,0xb6,0x50,0xe,0x91,0x7d,0x12,0x98,0xc7,0x83,0xb5,0xc2, 0xdf,0x4,0x8,0x4b,0xe,0x31,0x3f,0x2b,0xe3,0x7a,0xc4,0x1b,0x18,0x81,0x98,0xbf, 0x2f,0xa,0x45,0xbf,0xff,0xba,0xcf,0x9a,0x80,0x35,0x14,0x4c,0x6b,0x1d,0xa1,0x3f, 0xc5,0xd4,0x7e,0xd7,0x6,0xfd,0x3d,0x0,0x2,0x75,0x94,0x69,0x2d,0x70,0x7d,0x81, 0x35,0xbf,0x59,0xc,0xe1,0xd4,0xb7,0xdd,0x7,0x9d,0x15,0xd3,0xb7,0x60,0xf0,0xbd, 0xd2,0x7f,0x65,0xdd,0x77,0x4d,0xc0,0x7c,0xc6,0x35,0x54,0x3d,0xfd,0xd0,0xa7,0xa3, 0xaf,0xe5,0xab,0xd,0xa8,0x2b,0x4c,0x3a,0x52,0xe8,0x6f,0xc0,0x18,0xb4,0x21,0xe3, 0x26,0xe8,0x97,0x79,0x21,0xe6,0xef,0xd2,0xe1,0x1b,0x1,0x41,0xc7,0x92,0xe0,0x1f, 0x93,0x5e,0x7,0xfc,0x6f,0x2c,0x1d,0xd5,0xaf,0xa,0x3c,0x37,0xa6,0xef,0x2,0x40, 0x40,0xcf,0x25,0xc8,0xdc,0x11,0x3c,0x63,0x7e,0xdf,0x77,0x40,0xbd,0x85,0x71,0xbf, 0x20,0xf3,0x10,0xb0,0xc7,0xe3,0x72,0x54,0xfd,0x5b,0xf,0xae,0xc0,0xf7,0x86,0x82, 0xbe,0x9f,0x61,0x6f,0xb1,0xa7,0xc,0x7e,0xc1,0x78,0x58,0xd8,0xba,0xa9,0xdf,0x9, 0x58,0xa7,0xcd,0xb4,0x4f,0x3,0x3c,0x37,0x7d,0x1,0xfc,0x81,0xf2,0xc4,0xf4,0x2e, 0xa8,0xda,0xb6,0x80,0xe,0xd,0x9e,0x2b,0xec,0xdb,0x3,0xdf,0xf7,0x74,0xa1,0xa4, 0x37,0x75,0xe,0xc6,0x23,0x30,0xa7,0x5e,0xd3,0x7e,0x53,0x50,0x66,0x5,0xa9,0xf7, 0xa0,0xd3,0x71,0xe1,0x93,0xc6,0x54,0x84,0xf7,0x88,0x2,0x86,0x22,0xfe,0xfb,0xbe, 0xc0,0xfe,0x8a,0x82,0xf4,0xaf,0xa1,0x4f,0x48,0x1f,0x17,0x8,0x43,0xa0,0xaf,0x66, 0x22,0x60,0xba,0x40,0xc7,0xc4,0xef,0xdb,0x7f,0xd0,0xf5,0xfc,0x97,0xc6,0x77,0xd, 0x5,0xd6,0x9,0xd2,0xe7,0x53,0xb8,0x2,0xdf,0x47,0x99,0xb,0xe0,0x17,0xb4,0xf5, 0xd0,0x16,0x8,0x63,0x4f,0x58,0xf0,0x3,0xd6,0xb5,0xa,0xf2,0x3e,0x82,0xe7,0xea, 0xc9,0x27,0x7c,0x18,0x3,0x2f,0x10,0xc0,0xaf,0xff,0x37,0x60,0xbe,0x9e,0x9f,0xbe, 0x6,0xd6,0x91,0xb,0xf2,0x9d,0x3c,0xe8,0x9,0x41,0x57,0x4c,0x1f,0xb3,0xd7,0x45, 0x40,0x97,0x0,0x7d,0x3f,0x41,0xe6,0x2d,0xa1,0xad,0xb7,0x40,0xd5,0xd7,0x20,0x72, 0xe5,0x1e,0x22,0xbf,0x45,0xc5,0xd4,0xc,0x8c,0x11,0x61,0xce,0x83,0x29,0xf,0x41, 0x6f,0x18,0x8e,0x4,0x5b,0xd7,0x9,0xcf,0x5,0xf4,0x76,0x30,0x77,0xc,0xeb,0x7, 0xe0,0xbd,0xb,0xeb,0x88,0xbe,0x51,0x92,0x4f,0x9d,0x83,0xb5,0xe5,0xf0,0x7d,0x81, 0x26,0x12,0x6c,0x9e,0x15,0xfa,0x3,0xf0,0xde,0x79,0xc2,0x27,0xce,0xf0,0x7d,0x20, 0xe8,0x1d,0xfe,0xcb,0xe3,0x7a,0x61,0x3,0xe3,0x60,0x68,0x27,0xe9,0xeb,0xbd,0xaa, 0xa,0xe8,0xc9,0xc6,0xa1,0x7f,0x6f,0xcc,0xc,0xdf,0x35,0xc0,0x77,0x22,0x4c,0xfb, 0x2,0x70,0x5,0xf6,0x1c,0xc2,0x7d,0xbc,0xfa,0x3,0x63,0x31,0xd0,0x11,0x33,0xe9, 0x6e,0xb9,0x2,0x73,0x7a,0xd0,0x77,0x6f,0xc8,0x37,0xc5,0x75,0x5,0xea,0x3a,0xec, 0xf3,0x7c,0x18,0x31,0xeb,0xb3,0xb9,0xf2,0x12,0xd5,0x6f,0x6f,0x8,0xc,0x33,0xb0, 0x6e,0x0,0xc6,0x6f,0x35,0xbd,0xb3,0xe1,0xdd,0x0,0x73,0x29,0xf0,0xcd,0x7,0xb4, 0xe1,0xc2,0x9a,0xeb,0x87,0x7d,0x24,0xcd,0x10,0xb9,0xae,0x84,0xdf,0x9e,0x50,0x5c, 0x81,0x35,0xe,0x4b,0x51,0xfd,0xe6,0x34,0x30,0xb5,0x3,0xba,0xd8,0xda,0xca,0x1, 0x57,0xc0,0xc6,0xb,0xcc,0xa1,0xc2,0xfe,0xc,0xb0,0xdf,0x1e,0xe8,0x59,0x60,0x6f, 0x31,0x18,0xf3,0xc3,0xfa,0x1d,0x78,0x1f,0xc3,0xbb,0x83,0xbb,0x7,0x7c,0x1f,0x44, 0xae,0x4d,0x98,0x87,0xc8,0xef,0x1a,0xa0,0x9f,0x51,0xd7,0xbd,0x43,0xdf,0x20,0x52, 0xaf,0xfb,0xbb,0x7e,0xaf,0xff,0xbb,0x1,0xfa,0x34,0x58,0x27,0xc5,0xb4,0x8f,0x58, 0x53,0x9,0xbc,0x93,0x40,0x5f,0x4,0xb6,0x5,0x70,0xdf,0xee,0xdf,0x1,0xe6,0x12, 0xa0,0xde,0x81,0x9e,0xa5,0xb6,0xb5,0x1e,0xc2,0x12,0xf8,0xb6,0x1,0xf6,0x16,0x91, 0x6b,0x82,0xf4,0x61,0xea,0xe,0x7c,0xb,0x2,0x63,0x6,0xd0,0x23,0x9,0x73,0xf, 0x58,0x98,0x7,0x80,0xb1,0x21,0xcc,0x4d,0x35,0x45,0x1f,0x13,0x23,0x1c,0x60,0x7d, 0x5,0xe8,0x6c,0x3d,0x10,0xf9,0x3d,0x3d,0xac,0x33,0x80,0xbd,0xd8,0x61,0x4c,0x9, 0xba,0x39,0x68,0x2f,0x60,0xfc,0xf,0x76,0x84,0x40,0x47,0x4,0xe3,0x8,0xd0,0x3b, 0xc0,0x37,0xb7,0xa0,0x2b,0x80,0xb9,0x7d,0x5c,0xc7,0x31,0x18,0xc,0x6,0x83,0xc1, 0x60,0x30,0x18,0xc,0x6,0x83,0xc1,0x60,0x30,0x18,0xc,0x6,0x83,0xc1,0x60,0x30, 0x18,0xc,0x6,0x83,0xc1,0x60,0x30,0x18,0xc,0x6,0x83,0xc1,0x60,0x30,0x18,0xc, 0x6,0x83,0xc1,0x60,0x30,0x18,0xc,0x6,0x83,0xc1,0x60,0x30,0x18,0xc,0x6,0x83, 0xc1,0x60,0x30,0x18,0xc,0x6,0x83,0xc1,0x8,0x15,0xe,0x6,0xd3,0x60,0xd8,0x8, 0xb9,0x57,0x3d,0xbe,0x89,0x90,0x78,0x95,0xc3,0x4a,0x5a,0x49,0x3,0x4b,0x18,0x48, 0x8f,0x77,0xcc,0x82,0x63,0x49,0xde,0xb1,0x87,0x8,0x87,0x83,0x44,0xab,0xdc,0x2e, 0xc7,0xe1,0x14,0xf2,0x3c,0x60,0xa3,0xef,0xff,0xfd,0xf0,0xa0,0x50,0x14,0xee,0xf0, 0x90,0xfb,0xe1,0x9d,0x24,0x11,0xa0,0x3b,0xeb,0x47,0xc,0x6e,0xca,0x11,0x1,0xca, 0x95,0xfd,0xf0,0x10,0xb9,0x17,0x12,0xc1,0xb1,0x45,0xb8,0xde,0x8b,0x40,0x7c,0x45, 0x39,0xdc,0x24,0xb0,0x9,0xef,0xe4,0xca,0x8,0xf,0xa9,0x0,0xca,0xc4,0x89,0x4b, 0x95,0x88,0xc3,0xa2,0x2,0x28,0x94,0xe4,0x88,0x54,0xba,0x7b,0xc0,0x2f,0x19,0x9c, 0x5e,0xa5,0x28,0x4b,0xfc,0xa6,0x7b,0x19,0x15,0xe0,0x4d,0x77,0xb6,0xb8,0x87,0x8, 0x71,0x96,0xa,0x0,0x71,0xd8,0x92,0x8,0x15,0xea,0x71,0x10,0x37,0xb8,0xb2,0x9e, 0x8,0xad,0x92,0xe3,0x78,0xb8,0x53,0xc1,0x95,0xc9,0x22,0xa4,0x25,0xc7,0xb9,0xa9, 0x47,0x5,0x57,0xa8,0x25,0xce,0x92,0x95,0xa4,0x2,0x24,0x82,0x29,0xd4,0x92,0x2b, 0x23,0x8e,0xc9,0x0,0x89,0xb3,0x85,0xcb,0xf4,0xd8,0xed,0x24,0x39,0x64,0x80,0x2c, 0x3d,0xee,0x31,0x5b,0x94,0xc,0x9e,0x38,0x76,0xaf,0x24,0x8e,0xc9,0x8,0x78,0x70, 0xb8,0xc7,0x64,0x4,0x44,0x78,0xc7,0x1e,0xbc,0x63,0x4e,0x25,0xf7,0xd8,0x83,0x77, 0x2c,0xc2,0xf3,0xf,0x8e,0x2b,0x45,0x7f,0x84,0xf7,0xfd,0x98,0xfd,0x3d,0xfc,0xc2, 0xef,0xf1,0x81,0x63,0x32,0x3e,0x65,0xdf,0xe3,0x4b,0xa4,0x99,0x8a,0x2f,0xfb,0x7b, 0x7a,0xe0,0x98,0x4c,0x4f,0xe5,0xf7,0xf4,0x72,0xca,0xb8,0xe9,0xe5,0x7c,0xcf,0xf, 0x38,0x26,0xf3,0x83,0x88,0x0,0x91,0x5f,0x9c,0x1f,0xf9,0x45,0x38,0x23,0xf2,0x93, 0xc3,0xcb,0x4f,0x96,0x1c,0x91,0xdf,0x90,0xcb,0xa2,0xbc,0xe7,0x1,0x77,0x71,0xf3, 0x9f,0xfe,0xbc,0xd8,0x22,0xe4,0xf3,0xa4,0x82,0x83,0x6c,0xf8,0xe9,0x79,0x13,0xf, 0x1a,0xca,0x43,0xe5,0x8f,0x2,0x46,0x2f,0x2f,0x85,0xe2,0x3f,0x97,0x27,0x28,0x1b, 0xc4,0xbf,0x1f,0x5,0xf6,0x7b,0x51,0xac,0xac,0x52,0xa0,0xa1,0x2c,0x57,0x29,0xaf, 0x44,0x70,0x64,0x99,0xfe,0xe1,0x21,0x94,0xf7,0x2a,0x15,0x4,0xac,0x95,0x23,0x39, 0xde,0x31,0x87,0xde,0x32,0xb3,0x7e,0xae,0x4f,0x50,0xa1,0xdc,0x39,0x18,0x4c,0x83, 0xe9,0x47,0x94,0xb4,0x91,0x88,0xdc,0x20,0x51,0x4,0xc9,0x93,0x9d,0x2,0xe2,0x44, 0xc7,0x36,0xa4,0x60,0x30,0x18,0xc,0x6,0x83,0xc1,0x60,0x30,0x18,0xc,0x6,0x83, 0xc1,0x60,0x30,0x42,0x4,0x6c,0xfd,0x81,0x1d,0x4d,0x7f,0x42,0xae,0x21,0xd2,0x86, 0x1e,0x68,0x4b,0xc1,0x46,0x7,0x68,0x49,0xc1,0x4e,0x7,0xd8,0xd8,0x3c,0x8f,0x48, 0xfb,0x3b,0x23,0xd0,0xef,0x6f,0x77,0x9,0xec,0xc8,0x5b,0x22,0xd2,0x4e,0x59,0x7d, 0xec,0x17,0x15,0x10,0xb2,0x7,0x9,0x66,0xf,0xf5,0x57,0x0,0xd2,0xd,0xb6,0xd8, 0x73,0xd1,0xcf,0xf6,0xda,0xc0,0xe6,0x9a,0x33,0x22,0x6d,0x2c,0x82,0xfd,0x16,0xb0, 0xd3,0x6,0xb6,0x58,0xb9,0x36,0xda,0x20,0x9d,0x50,0x46,0xc0,0xa6,0xdb,0x53,0xf4, 0x73,0x5e,0x80,0xad,0xcd,0x11,0x4d,0x99,0x88,0x7a,0x32,0x89,0x10,0x16,0xe2,0xc5, 0x1b,0xca,0x3a,0xd8,0x10,0xab,0x8f,0xed,0xb8,0xbe,0x84,0xf8,0xa0,0x9f,0x6d,0x9e, 0x43,0x1e,0xca,0xb,0x21,0x9e,0xc2,0x6,0xec,0xa5,0x1e,0x41,0xbc,0x78,0x46,0x13, 0xa2,0xc1,0xe0,0xe,0x9e,0x35,0xd8,0x5b,0x4,0x3b,0x4e,0x60,0x57,0xef,0x2b,0x25, 0xaf,0x9,0xf9,0x93,0x90,0xd9,0x94,0x9b,0xaa,0x80,0xb6,0x1a,0xca,0x53,0x1,0xe5, 0x77,0x9,0x21,0xcb,0xd0,0xbf,0x67,0x1b,0x96,0x8e,0x12,0x22,0x6d,0xf,0x41,0xdc, 0xe0,0x59,0x99,0xf1,0x71,0x7,0xe5,0xa0,0x2e,0x36,0x7,0xd3,0x11,0xb3,0x7d,0xd1, 0xf6,0x84,0x4,0x23,0x9e,0xbd,0xd4,0x28,0x44,0xda,0x3b,0xfc,0x37,0x99,0x82,0x78, 0xb6,0x52,0xc1,0xbe,0x92,0xc,0x83,0x1b,0xa8,0xe3,0xdb,0x11,0x2f,0x7d,0x90,0x57, 0xae,0x84,0xa8,0x21,0xb2,0xde,0x83,0xa8,0x23,0xd2,0x8e,0x72,0x55,0x7b,0xbb,0x1, 0x88,0xf9,0x19,0x83,0x9d,0xc8,0xd7,0x94,0x9b,0x2c,0x42,0x74,0x84,0x96,0x1a,0xc1, 0xb0,0x47,0xbc,0x67,0xe1,0x8b,0xf8,0xdb,0x24,0xdd,0x41,0xb9,0x81,0x72,0xee,0x42, 0x73,0xd7,0xc,0xfd,0x6c,0x8f,0x1a,0xde,0x79,0x2b,0x11,0xf9,0x5e,0xe4,0xe6,0x1, 0x13,0x50,0xdf,0xce,0x50,0x6e,0x60,0xd6,0x7d,0x6e,0xbd,0x52,0x50,0x7f,0x3c,0xa8, 0xb0,0xcb,0x11,0x69,0xd7,0x9d,0x1f,0x26,0x88,0x97,0xf6,0xf1,0xd4,0xb9,0x56,0x88, 0x7c,0xd6,0x29,0x88,0x7c,0xf7,0x83,0x3c,0x46,0xa4,0x9d,0xdf,0x96,0x94,0x9b,0x9, 0x88,0x97,0x7,0x35,0xd9,0xda,0x5,0x7f,0xb8,0xcf,0x60,0xbd,0xe0,0xc9,0xa8,0x17, 0xdb,0xa8,0xf0,0xc0,0x3e,0xa5,0x61,0xd,0xee,0xa0,0xcd,0xe7,0xda,0xa7,0x77,0xa4, 0xce,0x81,0xcd,0xb1,0x67,0x88,0x7f,0xdd,0x87,0x3e,0x10,0xd7,0xe,0x9d,0x13,0xe2, 0xb5,0x7,0xf4,0x36,0xb1,0x2a,0xd3,0x10,0xcf,0x56,0x26,0x94,0xb5,0xc6,0x6c,0x17, 0x3,0xa8,0x70,0x3e,0xa1,0xda,0xdf,0xc7,0x73,0x28,0xb7,0xf0,0x9c,0xa1,0x8c,0xc3, 0x73,0xe7,0xa6,0x9d,0x45,0xc8,0x4c,0x44,0xf6,0x1,0xda,0x22,0x32,0xd,0x2f,0xab, 0xb8,0x17,0xa7,0xee,0xe1,0xda,0x5d,0x9f,0x5d,0x4b,0x58,0xd0,0x26,0x7c,0xa4,0xdc, 0x1e,0x44,0x82,0xd9,0x78,0xaf,0x2b,0xdc,0xb4,0x43,0x5f,0xa6,0x2e,0x6d,0xce,0x59, 0xca,0xfd,0x62,0xea,0x78,0x39,0xe2,0x3d,0xcf,0xae,0xc,0xee,0xa1,0x7d,0xe7,0xe6, 0xc1,0x32,0xea,0x9c,0x23,0x75,0xfc,0x67,0x1d,0xc2,0x53,0x46,0x3c,0xdb,0x88,0x60, 0x13,0x4f,0x58,0x36,0x92,0x1,0x6e,0x99,0x2f,0x26,0x44,0xbb,0x8e,0xf7,0xa4,0x53, 0xf7,0xf4,0xa5,0x8e,0x93,0x51,0xed,0xcf,0x72,0x1a,0xe5,0x26,0x89,0x3a,0xee,0x4f, 0x1d,0xbf,0xae,0x63,0x98,0x3,0x10,0x69,0xa7,0x99,0x9b,0x7,0xc2,0x28,0x7,0x9e, 0x94,0x7f,0xf0,0x9e,0xd3,0x15,0xe0,0x3e,0x6e,0xfb,0xc5,0xad,0xbb,0x65,0xd4,0x71, 0xbb,0x1a,0xee,0x69,0x4b,0xb9,0x29,0xa5,0x8e,0xc5,0x11,0xaf,0xfd,0xac,0x2b,0x30, 0xf5,0xcf,0xed,0x7b,0x1f,0x15,0xe0,0x3e,0x7e,0x6c,0x42,0x82,0x3f,0x7b,0x80,0x5f, 0xfa,0x5b,0xf2,0xbd,0xa3,0x3a,0xf5,0x49,0x3f,0xf4,0x3b,0xb9,0x7d,0x12,0x7b,0x1, 0xee,0xab,0x89,0xad,0x88,0x97,0x7,0xc3,0xea,0x78,0xf,0xb7,0xfc,0x2b,0x52,0xc7, 0xf7,0xa9,0xe3,0x9a,0xde,0x19,0x74,0xb8,0xe5,0xff,0x4d,0x1d,0xdd,0x83,0xd,0x6c, 0xee,0x78,0xc1,0x4b,0x80,0x70,0xea,0x2,0x37,0xf,0x20,0x6f,0xc7,0xd4,0xc1,0x7d, 0x18,0xe5,0xde,0x8e,0x3a,0xe6,0xbe,0xcf,0xc0,0x16,0x67,0xfb,0x3a,0x86,0xe9,0x40, 0xdd,0x73,0xa6,0xe,0x6e,0xa1,0xdc,0xbf,0xa3,0xdc,0xef,0xab,0xa3,0xff,0x82,0xb2, 0x11,0xf1,0xfa,0x5c,0x33,0x6a,0x71,0x3b,0x97,0x72,0xfb,0x8,0x91,0xef,0x64,0x28, 0xf7,0xa9,0x88,0xd7,0x7,0x9e,0x8e,0xc8,0xb1,0xd,0x3f,0xa0,0xed,0x4a,0xa1,0xdc, 0xf3,0x1b,0x53,0x70,0x19,0x84,0x78,0x69,0xf,0x45,0x8d,0xf3,0xfe,0xe3,0xc2,0x7d, 0x8f,0x41,0xbf,0x6b,0x69,0xd,0xee,0xa0,0xee,0x66,0xa1,0x9f,0xdf,0x81,0x3d,0x10, 0x2f,0xf,0xb8,0xc2,0xf,0xee,0xbb,0xf,0xc6,0x4c,0x35,0xf5,0x7f,0xa0,0x4d,0xca, 0x47,0xbc,0xf6,0xae,0x31,0xd3,0xce,0x65,0x3e,0x22,0xfb,0xbe,0x10,0x26,0x8c,0xc9, 0xf8,0xe9,0xaa,0x66,0x21,0x5e,0x79,0xe1,0xd6,0x19,0x28,0x7,0xa0,0x7,0xb9,0x4f, 0x9d,0x67,0x42,0x1f,0x91,0x6d,0x1e,0xdc,0x5b,0x53,0x39,0x83,0x6b,0xdc,0xbe,0xdf, 0x2e,0xd4,0x34,0x69,0xe7,0x2,0x7a,0x9c,0x42,0x2a,0x6c,0xd0,0x71,0x31,0x8d,0xfd, 0x80,0x20,0xc4,0xcb,0x3,0x68,0x8f,0x6b,0x8a,0x23,0x5c,0x83,0x32,0xc5,0x4d,0xfb, 0xf6,0x1a,0xdc,0x41,0x5d,0xac,0xa4,0x64,0x9d,0x80,0x71,0x17,0x16,0xd0,0xe6,0x40, 0x7b,0x6,0x71,0x85,0xbe,0xd7,0x64,0x6,0x37,0x10,0x57,0x6e,0x1e,0x70,0xfb,0xf8, 0xd0,0xbf,0x3,0x3b,0xf7,0xed,0x28,0x81,0xbf,0xa1,0x7d,0xac,0x3a,0x36,0xd8,0x81, 0x98,0xf3,0xa,0xea,0xd0,0xd,0xc4,0x6b,0x8b,0x67,0xa,0x2d,0x35,0xf5,0x3,0xe2, 0x7f,0xa,0xf1,0xe2,0xd,0xfd,0x2e,0x26,0xbd,0x4,0xd4,0x85,0x2c,0xf4,0x73,0xdd, 0x67,0x12,0x18,0x33,0x99,0x30,0xdc,0xf,0x79,0xb1,0x8,0xf1,0xca,0x1c,0xe4,0xe3, 0x20,0x21,0xa6,0xa3,0xa1,0x58,0x20,0x5e,0xdc,0x60,0x8c,0x0,0x3a,0xe,0x7a,0xfb, 0xe,0x6d,0x22,0xbc,0x17,0xe0,0xdd,0x8,0xfd,0x83,0x6f,0x94,0xc0,0xdf,0x30,0x5e, 0x98,0x83,0x98,0x75,0x85,0x46,0x84,0x3c,0x44,0xbc,0x76,0x17,0xea,0x45,0x2b,0x61, 0x27,0x40,0x8,0x74,0x43,0x3f,0x97,0x85,0x3c,0x44,0xf6,0x43,0x14,0xea,0xe1,0x57, 0x7,0x44,0xf6,0x1d,0xb8,0xef,0x40,0x90,0xbb,0x84,0x68,0xa,0x25,0xa6,0x8d,0xb, 0xf4,0x11,0xb9,0x75,0x94,0x2b,0xf,0x10,0xd9,0x87,0x82,0x36,0x1b,0xfa,0x69,0x52, 0x88,0x7c,0x6f,0x40,0xb9,0x86,0x71,0x30,0xf4,0x13,0xe1,0x39,0xbb,0x23,0x52,0x7f, 0x5a,0x5e,0xe5,0x5e,0xd0,0x8f,0x40,0xfd,0xf9,0x55,0x74,0x9e,0x75,0x5,0xf4,0x7a, 0x21,0x88,0x57,0x2f,0x4,0x11,0xd0,0x31,0x9c,0x40,0xe4,0x7b,0xf3,0x77,0x4b,0x37, 0x1d,0xe8,0xbf,0xc0,0xfb,0x12,0xc6,0x92,0x97,0x11,0xd9,0xff,0x83,0xf4,0x41,0x5d, 0x86,0xe7,0xc,0xba,0xb,0x68,0xfb,0x2f,0x22,0xf2,0xbd,0x6,0xba,0xb2,0xfa,0xcc, 0x19,0x60,0x30,0x18,0xc,0x6,0x83,0xc1,0x60,0x30,0x18,0xc,0x6,0x83,0xc1,0x60, 0x30,0x3f,0xf1,0x6f,0xef,0x53,0xc0,0x0,0xb5,0xa3,0x6,0x77,0xef,0x99,0x42,0x6a, 0xb,0xd,0x96,0x1e,0xb9,0x2f,0xc9,0x6,0x96,0xf8,0x77,0x7,0xe2,0x37,0x45,0x6f, 0x12,0x3f,0x95,0xb0,0x7,0xb,0xe1,0x90,0x2d,0xd7,0xc2,0xa2,0x4c,0x8f,0xc3,0x29, 0x73,0x93,0x6a,0xe9,0x46,0xdc,0x50,0xc8,0x96,0x17,0xd3,0x23,0x6e,0x48,0x27,0xfc, 0xd1,0xdb,0xc4,0xe1,0xc4,0xb2,0xc7,0xdc,0xd2,0x8b,0xe1,0x70,0xbc,0xd9,0xe3,0x33, 0xf4,0x58,0x1c,0x8e,0x24,0xfc,0x16,0x7e,0xff,0xad,0x84,0x5f,0x6f,0xf8,0x4d,0xff, 0xee,0xae,0x52,0x2f,0xf6,0xfb,0x7d,0x6c,0xb8,0x8f,0xf0,0x87,0xd,0xfe,0x94,0x8d, 0x90,0x2a,0x73,0x93,0x84,0x70,0xc4,0x59,0x10,0xe,0x37,0x5c,0x8e,0x28,0x19,0xf, 0xce,0x4d,0x96,0xf8,0x86,0xaa,0xf1,0x2c,0xa3,0xb6,0xbe,0xa9,0xe4,0x6e,0x89,0x53, 0x75,0xa7,0x90,0x5f,0x86,0xff,0x1,0x49,0x6,0xbd,0x8, // C:/SNIR_PROJET/Superviseur/Superviseur/QSuperviseur/img/1452464368_gnome-help.ico 0x0,0x0,0x32,0x19, 0x0, 0x1,0x43,0x26,0x78,0x9c,0xed,0x5d,0x7,0x58,0x14,0xd7,0x13,0x5f,0xa3,0x89,0x31, 0xcd,0x68,0x62,0x12,0xb1,0x21,0xdd,0x2e,0x6a,0xac,0xb1,0x62,0x17,0x50,0x4,0x1, 0xb1,0x20,0xa2,0x20,0x76,0xc0,0x5e,0xb1,0x1b,0x2b,0x4a,0xef,0xbd,0x77,0x2c,0x74, 0xc5,0xde,0xbb,0xb1,0x24,0xb1,0x1b,0x8d,0xdd,0x54,0x35,0x2a,0xf3,0x9f,0xd9,0xdd, 0x3b,0xee,0x8e,0xeb,0x5,0xd4,0xbf,0xef,0xfb,0x7e,0xdf,0xdd,0xde,0xed,0xee,0x9b, 0xf7,0xe6,0xf7,0x66,0xe6,0xcd,0xdb,0xc2,0x30,0xd5,0x98,0x1a,0x4c,0xdb,0xb6,0xc, 0x7e,0xea,0x33,0xc9,0xc6,0xc,0xd3,0x9f,0x61,0x18,0x7d,0x7d,0x7e,0xfb,0x4b,0x86, 0x79,0x8c,0xbf,0x7d,0xf9,0x25,0xb7,0x3d,0xa9,0x6,0xc3,0x4,0x76,0x64,0x18,0x1f, 0x1f,0x6e,0xdb,0xec,0xe3,0x6a,0x4c,0x59,0x57,0x86,0x31,0xc3,0x63,0xf0,0x14,0xcc, 0x38,0x86,0xfb,0x9d,0x2d,0x46,0xc,0x53,0xf7,0x53,0xe,0xef,0xcb,0xbb,0x53,0xfc, 0x6d,0x8c,0xf4,0x11,0xf6,0x88,0x55,0x88,0x4c,0xc4,0x69,0xc4,0x3d,0xc4,0x7f,0x3c, 0xee,0xf1,0xbf,0x65,0xf2,0xfb,0xd0,0xbe,0xfa,0x55,0x2c,0xf3,0xe7,0x8,0x47,0x44, 0x34,0xe2,0x16,0x2,0x54,0xc4,0x2d,0xfe,0x58,0x3a,0xc7,0xe7,0x95,0x28,0x77,0x2d, 0xc4,0x78,0x44,0x81,0x1a,0x32,0xcb,0x42,0x1,0x7f,0xce,0x5a,0x3a,0x96,0xbd,0xf, 0x22,0x51,0x8b,0x72,0x4b,0x82,0xce,0xdd,0x47,0x47,0xb2,0x4f,0x45,0x5c,0xd6,0xa1, 0xec,0x2,0x50,0x1d,0x53,0xb5,0x28,0x37,0xf1,0x7c,0x25,0xe2,0xa5,0xa2,0xba,0x3, 0x86,0x9b,0x40,0xc8,0xc8,0xd6,0x10,0xe5,0xda,0x15,0x62,0xdc,0x7b,0x8a,0x21,0xd2, 0xa5,0xb,0x4,0xd9,0xb7,0x50,0xb6,0xd,0x2f,0xf9,0x3a,0x35,0x1a,0x17,0xbc,0xec, 0x1b,0x94,0xed,0xbb,0xa0,0x11,0xcd,0x20,0x77,0xcd,0x14,0xf8,0xeb,0xaf,0xbf,0x40, 0xb2,0x3c,0x79,0xf2,0x84,0x6d,0x83,0x8a,0xba,0xd8,0xa0,0x49,0x1b,0xf8,0x3e,0x50, 0xba,0xbe,0x60,0x87,0x96,0xb0,0x73,0xa3,0xb7,0x4c,0xf9,0x49,0xf,0x6a,0xf0,0x69, 0xa5,0x9a,0xb2,0x4f,0x55,0x86,0x33,0x95,0x20,0xff,0x4b,0x55,0xc7,0x83,0x3f,0x67, 0x67,0x54,0x1e,0xab,0x3a,0x92,0x5f,0x30,0xa6,0x95,0xb2,0x4b,0xfe,0x9c,0x7d,0x57, 0xcb,0x46,0x92,0xfc,0xdb,0x37,0x78,0xc2,0xfd,0xfb,0xf7,0xd9,0x36,0x88,0xe2,0xce, 0x9d,0x3b,0x9a,0xc8,0xf,0xbc,0x4c,0xa,0xfd,0x83,0x3f,0xe7,0x47,0xd4,0xaa,0x23, 0xc8,0xbe,0x39,0x64,0xae,0xf2,0x80,0x73,0xe7,0xce,0xc1,0xa5,0x4b,0x97,0xc4,0x70, 0xe6,0xcc,0x19,0xd6,0x2e,0x69,0x20,0x3f,0x61,0xbc,0x2,0xd9,0xc9,0xde,0xa8,0xed, 0x57,0x3,0x6c,0x4d,0x21,0x72,0x62,0x77,0xc8,0x58,0xe1,0xe,0xd9,0x6b,0xa7,0x89, 0x21,0x7d,0x99,0x1b,0x6b,0x5b,0x35,0x94,0x9f,0x64,0x93,0x69,0x8f,0xfc,0xb9,0x58, 0x44,0xfd,0xf3,0xf,0x37,0x66,0xdb,0x40,0x7a,0x20,0x2e,0x89,0x82,0x6c,0x2b,0xf9, 0x7,0xd,0xe5,0x27,0x38,0xca,0x91,0x3f,0x5a,0xd3,0xf3,0x93,0x9c,0xe1,0xce,0xdf, 0x43,0xcc,0xc4,0x1e,0x42,0xdf,0x15,0x3d,0xe1,0x7,0x8,0x1d,0x65,0xe,0x81,0x76, 0xa6,0xda,0x90,0x3f,0x5a,0x86,0xec,0x14,0x3,0xdf,0xa,0xb4,0x33,0xd3,0xe8,0xfc, 0xe1,0x63,0xda,0xc3,0x85,0xc3,0xbb,0xe1,0xbf,0xff,0xfe,0x13,0xda,0x9e,0x17,0x2f, 0x5e,0xc0,0xfe,0x24,0x3f,0x6d,0xf0,0x87,0x40,0x71,0xab,0xbe,0x14,0xf9,0xed,0xa9, 0xef,0xe2,0x26,0x5b,0xb0,0x32,0xa8,0x7b,0xfe,0x88,0x71,0x9d,0xe0,0xfc,0xa1,0x5d, 0xf0,0xfc,0xf9,0x73,0xa1,0xfc,0xaf,0x5e,0xbd,0x82,0x73,0xbb,0x73,0x58,0xbd,0x68, 0x41,0x7e,0x82,0xbd,0x14,0xf9,0x57,0x85,0x8e,0x6a,0xb,0x29,0xb3,0x86,0x41,0x8a, 0xf7,0x50,0x56,0xef,0xb4,0xad,0x72,0xff,0x8f,0xed,0x0,0x47,0x76,0x24,0xc3,0x3f, 0xff,0xfc,0x23,0x94,0xbf,0xac,0xac,0xc,0xee,0xdf,0xba,0x6,0x31,0x6e,0x3d,0xb5, 0x35,0x6,0x56,0x49,0x91,0x3f,0x93,0xe2,0x93,0xd4,0xd9,0xc3,0x21,0x6d,0xe,0x7, 0x6a,0x47,0xec,0xa4,0x5e,0x2c,0x77,0x95,0x3d,0x37,0x71,0xa4,0x28,0x6c,0x35,0x3c, 0x7e,0xfc,0x18,0x5e,0xbf,0x7e,0x2d,0x6c,0xc3,0xcb,0x97,0x2f,0xa1,0x38,0x60,0x21, 0xc7,0x21,0x1c,0xe7,0x1a,0xca,0x9f,0x29,0x45,0xfe,0xd3,0xc4,0x9d,0xb4,0xb9,0xb6, 0x8,0x3b,0x16,0xe9,0xf3,0x46,0xb0,0xa0,0xb6,0xc4,0x4f,0xee,0xcb,0xea,0x5f,0x51, 0xff,0xd1,0x18,0x4d,0x9c,0x69,0x5,0x37,0x6f,0xde,0x14,0xe3,0x10,0xe9,0xe0,0xd1, 0xdd,0x9b,0x90,0xe4,0x65,0xcd,0x8e,0x71,0xd,0xe5,0x3f,0x2d,0x45,0xfe,0x7b,0xc9, 0x9e,0x96,0x9c,0xcc,0xf3,0xed,0x59,0x64,0xcc,0x77,0xe0,0xb0,0xc0,0x51,0x88,0xa4, 0x99,0x96,0x10,0x8d,0x36,0x3e,0xc4,0xa9,0x8d,0xf4,0x73,0x63,0xdf,0x52,0x3b,0xf, 0xe4,0xc4,0xc1,0xa3,0x47,0x8f,0x58,0xee,0xb,0xa,0xe9,0xe3,0xd2,0xfe,0x3c,0xf4, 0x63,0xdd,0x34,0xb5,0x45,0xf7,0xa4,0xc8,0xff,0x1f,0xf5,0xb9,0xa8,0xbc,0x99,0xb, 0x5,0x18,0x59,0x1,0xb4,0x5f,0xe2,0xf4,0x41,0xac,0x6d,0x94,0x6c,0xb,0xd9,0xff, 0xd4,0x79,0xe,0x70,0xf9,0xc2,0x39,0xf8,0xf3,0xcf,0x3f,0xc5,0x78,0x44,0xdf,0xcf, 0x15,0xa5,0x63,0x2c,0xdd,0x99,0xf5,0x15,0x6a,0xca,0xff,0x9f,0x34,0xf9,0xa9,0xcf, 0xc5,0xe4,0x5d,0xe4,0xc4,0x22,0x6b,0xf1,0x28,0xb9,0xa0,0x7d,0x49,0x77,0xb1,0x93, 0x7a,0xb3,0x7d,0x1f,0xe4,0xd0,0x2,0xc2,0x46,0xb7,0x83,0xfc,0x90,0x95,0x70,0xfd, 0xfa,0x75,0xf8,0xfb,0xef,0xbf,0xc5,0xda,0x40,0x3a,0x39,0x9c,0x12,0xc0,0xf1,0x51, 0xbd,0x36,0x48,0x93,0xff,0x5e,0xea,0x2c,0x1b,0x9,0x79,0x47,0xb3,0xc8,0x5e,0x32, 0x46,0x21,0x4,0xfb,0xd2,0x71,0xd4,0xf,0xc9,0x9e,0x56,0x90,0x86,0xb6,0x60,0x7f, 0x56,0x34,0xdc,0xba,0x75,0xb,0xfe,0xfd,0xf7,0x5f,0x76,0xc,0x88,0xb6,0x61,0x4f, 0xe4,0x6a,0xce,0x36,0xa8,0x3e,0x9e,0xa5,0xf1,0xe7,0x34,0xf1,0x41,0x4c,0xde,0xa5, 0x63,0x59,0xe4,0x28,0x1,0xc1,0xbe,0xa2,0xed,0xc9,0x5e,0x3a,0x6,0xf2,0xd6,0x4d, 0x81,0x33,0x7b,0xf3,0xe0,0xc1,0x83,0x7,0x62,0x3e,0x8d,0xca,0xdf,0x7f,0x3c,0x81, 0x4c,0xdc,0x57,0x85,0x79,0xa5,0xbc,0xf1,0x9b,0x49,0x3e,0x5f,0x4c,0x66,0x1f,0x67, 0xe,0xcb,0xc6,0x29,0x86,0x60,0x5f,0x89,0xb6,0xd0,0x6f,0x5,0x1b,0xa6,0xc3,0xa5, 0x93,0x87,0x2a,0xf0,0x88,0xf4,0x71,0xe7,0xd7,0xf3,0xac,0xce,0xe2,0xa7,0xf4,0x63, 0x63,0x8e,0xc8,0xf1,0x5d,0x58,0x5e,0x11,0xff,0x68,0x5c,0x5,0x3b,0xb6,0x62,0xc7, 0x13,0xc5,0x5,0x2c,0xd7,0x38,0x5d,0x49,0xb3,0x9f,0xab,0xc8,0xef,0xa,0xe5,0xe6, 0xe5,0xca,0x5d,0xe6,0x2,0xb9,0xcb,0xc7,0x2b,0x6,0xee,0x27,0xd6,0x16,0x11,0xbd, 0xd0,0xff,0x7b,0x22,0x56,0xc1,0xc3,0x87,0xf,0x59,0x3f,0x20,0x5a,0x48,0x27,0xc7, 0xb2,0xc2,0x21,0x6b,0xd1,0x48,0x20,0xfe,0xb2,0xfe,0x13,0x6d,0x6c,0xb2,0x97,0x15, 0x6b,0xeb,0x12,0x67,0xc,0x46,0x3b,0x31,0x10,0x12,0xa6,0xd,0x80,0xf8,0xa9,0xfd, 0xd8,0xf6,0xf8,0x4b,0xf7,0x5f,0xf6,0xa4,0x47,0x49,0x99,0xb7,0xad,0x70,0x45,0x4c, 0x50,0x2,0xae,0x15,0xdb,0x22,0xa2,0x8f,0xbc,0x75,0x53,0xe1,0xf2,0xd1,0x52,0x36, 0x16,0x12,0x2d,0xa4,0x8f,0xeb,0xe7,0x8e,0xe2,0x71,0x2e,0xac,0x9f,0x61,0xdb,0x80, 0x7e,0x93,0x6d,0x3,0xda,0x4,0xb1,0x36,0x4c,0xed,0x2f,0xb0,0xbb,0xd2,0xe2,0x7, 0x7d,0xd4,0xcd,0x2d,0xb2,0xff,0x62,0x32,0xaf,0xe4,0xb0,0x7d,0xd5,0x44,0x99,0x10, 0xec,0x53,0xa1,0x2d,0x22,0xed,0xd8,0xb9,0xd6,0x3,0x2e,0xec,0xdd,0x51,0x61,0xc, 0x10,0x87,0x1e,0x3f,0xbc,0x7,0x3b,0xd6,0x4c,0xe2,0x7c,0xa7,0x48,0x1b,0x48,0x7, 0x5c,0x1b,0x86,0xb0,0xb6,0x9a,0x62,0x1,0x7f,0x19,0xf1,0x1b,0xdf,0x86,0x68,0xf2, 0x4d,0x62,0x32,0xaf,0x76,0x63,0xb1,0x63,0xb5,0xbb,0x4c,0x8,0xf6,0xa9,0xd8,0x96, 0xf2,0x76,0x50,0xff,0xff,0x7a,0x6c,0xb7,0x18,0xff,0x5,0xfd,0x4f,0x73,0xe3,0x9d, 0x6b,0x27,0xf3,0x7e,0xdf,0x96,0x8d,0x61,0x4,0x71,0x98,0x28,0x8f,0xc2,0xb8,0xb8, 0x32,0x5a,0x9a,0xec,0xbc,0xfc,0x8e,0xec,0x1c,0x96,0x97,0x5b,0x28,0x23,0xf6,0xd, 0x81,0xfa,0xb0,0x1c,0x93,0x21,0x7f,0xc3,0xc,0x28,0xdc,0xec,0xc5,0x8e,0xcf,0x1d, 0xf8,0x9b,0xb0,0x2d,0x2,0xbd,0xac,0x28,0xef,0x87,0x12,0xbf,0xb9,0xf0,0xe7,0xe3, 0xfb,0x62,0x36,0x54,0xc0,0xff,0xdf,0xae,0x5f,0x61,0xcf,0x4f,0x76,0x97,0x6d,0x83, 0x40,0x7,0x82,0xb1,0xc0,0xeb,0x80,0x8f,0xed,0xe5,0xcd,0x5f,0xd8,0xf9,0x23,0x8d, 0x15,0x71,0x79,0x27,0x97,0xe3,0x47,0xe,0x24,0xfb,0xd1,0xcc,0x30,0xb8,0x77,0xfd, 0x32,0x5c,0xd8,0x95,0x9,0xbb,0x83,0x16,0x41,0xf1,0xd6,0x39,0x50,0xb0,0xc9,0x13, 0xff,0x9b,0xc6,0xf6,0x37,0xa1,0x60,0xe3,0x4c,0xd8,0x1b,0xbe,0x2,0x6e,0x5f,0x38, 0x51,0x41,0x76,0xda,0x26,0xbf,0x70,0xe9,0xf8,0x3e,0xb6,0x8d,0xe4,0xd3,0xd9,0x78, 0x4b,0xa,0x8f,0xf8,0xdc,0x97,0xdc,0xf9,0x23,0xdf,0x86,0xf1,0x14,0x23,0xa,0xe5, 0xe6,0xe5,0x25,0x3b,0x2e,0x8a,0x42,0x5f,0x6f,0xb8,0xb8,0x3f,0x5f,0xc8,0xe7,0xff, 0x9e,0xff,0xb,0xf,0xae,0x5d,0x84,0x6b,0xc7,0x4b,0xe1,0xe2,0xae,0xc,0x38,0x93, 0x97,0x80,0xed,0xca,0x80,0x9b,0x67,0xf,0xc1,0xbf,0x7f,0x3c,0x96,0x2a,0x3b,0x8d, 0x65,0xf2,0xb,0x47,0x73,0x63,0x59,0x8e,0x51,0xcc,0x22,0xd4,0x81,0x28,0x8f,0x28, 0xe6,0x43,0x1b,0xea,0xaf,0x60,0xfe,0xce,0xcb,0xcf,0xe6,0x4f,0xe2,0x3c,0xfa,0xf0, 0xb2,0x4e,0x15,0x22,0x7f,0xfd,0x34,0x21,0xa8,0xaf,0x7f,0x3e,0x5c,0x5c,0x61,0x3c, 0x2a,0x53,0x48,0x76,0x8a,0x4d,0x29,0xbe,0xbb,0x70,0xe2,0x20,0x7b,0x6e,0xf2,0x77, 0x14,0xbb,0xb0,0x3a,0x90,0xe0,0x51,0x84,0x73,0x47,0x92,0x5d,0xa9,0xfc,0x9,0xdf, 0x86,0x3e,0x18,0xe3,0xfe,0x4c,0xe7,0x63,0xe5,0x45,0x7e,0xb,0x50,0x80,0xbc,0x21, 0xec,0xa,0x98,0xf,0xbf,0x9c,0x3c,0xc0,0xe6,0x76,0x48,0x16,0x6a,0x7,0xc5,0x4, 0x92,0xfd,0x2c,0x2a,0x33,0xfd,0x4f,0x7d,0x4e,0x7e,0xec,0xde,0xbd,0x7b,0x70,0xe9, 0xf4,0x71,0x28,0x9,0x58,0xc0,0xda,0x4e,0x41,0x1c,0x25,0xa9,0x3,0xf2,0x6b,0x68, 0x33,0x95,0xce,0x5f,0x89,0xb4,0x61,0x2a,0xc6,0x26,0x2f,0x59,0xe,0x93,0xcc,0xc8, 0x63,0x51,0x94,0xf8,0xcf,0x83,0x9f,0x8e,0xee,0x65,0xe3,0xfc,0xbb,0x77,0xef,0xb2, 0x3c,0xa0,0x39,0xb,0xc5,0x9b,0x24,0x1f,0xf1,0xfa,0xd9,0xb3,0x67,0xec,0x27,0xcd, 0xc5,0xa8,0x9d,0xd4,0xdf,0xb4,0x2f,0xc5,0x74,0x67,0xf6,0x15,0x40,0x49,0xe0,0x42, 0x76,0x7c,0x93,0x7f,0x60,0xfb,0x9f,0xe2,0x45,0x51,0x1d,0x60,0xff,0xa3,0xbf,0x52, 0x39,0x7f,0x28,0xd2,0x86,0x95,0x34,0x6e,0xa,0x36,0xcd,0x64,0x51,0x88,0x63,0x53, 0x80,0x22,0xdf,0x59,0x50,0x1a,0xb4,0x18,0xe,0x25,0x6e,0x85,0x53,0x45,0x19,0x70, 0x6e,0x7f,0x21,0x5c,0x3a,0x75,0x4,0xae,0xfc,0x72,0x99,0x95,0xef,0xc6,0x8d,0x1b, 0x6c,0xdc,0x46,0xa0,0xed,0xab,0x57,0xaf,0xc2,0x85,0xe3,0x7,0xe1,0x64,0x61,0x26, 0xec,0x8d,0x5c,0xb,0xf9,0x1b,0x67,0xc0,0xf6,0x95,0x13,0x39,0xff,0xc0,0xc7,0x1a, 0x92,0x3a,0xe0,0xe7,0x7d,0x6a,0xe5,0x6f,0x79,0xf9,0xd9,0xfc,0x39,0xdb,0x6,0xec, 0x73,0xb2,0x95,0x84,0x22,0x1c,0xbb,0xec,0x77,0xfc,0x2c,0xda,0x32,0x9b,0xd5,0xc5, 0x6e,0xec,0xcb,0xd2,0xe0,0xc5,0xb0,0x27,0xd4,0x7,0xed,0xcd,0x32,0x38,0x98,0xb0, 0x19,0x8e,0x60,0x5c,0x70,0x38,0x23,0x1c,0xf6,0x45,0xad,0x86,0x5d,0xf8,0x3f,0x8d, 0x19,0x92,0x9b,0x6c,0x3,0xf5,0x3b,0xf9,0x6,0xa1,0xfc,0x22,0x3a,0xa0,0xfe,0xa7, 0xf8,0xc7,0x5f,0xc3,0xfc,0xb9,0x48,0x1b,0x56,0xe2,0xf9,0x5e,0x52,0x1d,0xd4,0xef, 0xe5,0xf0,0x16,0x82,0x6d,0xf,0xea,0x45,0x4c,0x57,0xe4,0x1b,0xf0,0x3b,0x8d,0x21, 0xd6,0x8e,0x9,0x7c,0x84,0xc0,0xcf,0x91,0x7f,0x23,0x1f,0x8d,0xfe,0x59,0x10,0xef, 0x91,0xaf,0xa,0x19,0xd9,0x4a,0x2b,0xeb,0x17,0x12,0xed,0x98,0x4a,0x63,0x9a,0x62, 0x10,0xea,0x73,0x31,0xf0,0x6d,0x11,0x6b,0x3,0xea,0x8b,0x1d,0xf3,0xeb,0x39,0x5f, 0x20,0x94,0x1f,0xfd,0xa,0xf9,0x38,0x81,0x8f,0x16,0xd5,0x1,0xcd,0xe5,0xd0,0x47, 0xfd,0xac,0x2e,0xdf,0x95,0x68,0x3,0xbb,0x7e,0xc7,0xe6,0x59,0xd0,0xaf,0x10,0x1f, 0x8,0x32,0xdb,0x80,0xe3,0x9e,0xda,0xc0,0xd9,0xdf,0x29,0xbc,0xf,0x14,0xd1,0x1, 0x2f,0x3f,0xe5,0x6,0xf8,0xb8,0x52,0x67,0xeb,0x77,0x22,0x6d,0x10,0xae,0x9f,0x92, 0x9f,0x23,0xfb,0x46,0xb2,0x48,0x6d,0xc3,0x46,0xbe,0xd,0x92,0x3a,0x40,0xf9,0xc9, 0xce,0x50,0xac,0x45,0xf1,0x8a,0x7f,0x25,0xad,0x9f,0x4a,0xb4,0xa3,0x7c,0xfd,0x1a, 0xe3,0x56,0xe4,0x2c,0x9b,0x1f,0xa7,0x38,0x91,0x64,0x23,0x7e,0x8,0xfa,0x9e,0xfa, 0x98,0xec,0x39,0xb5,0x95,0xf2,0x73,0xac,0xcc,0x78,0x8c,0x7f,0x15,0xac,0x5f,0xcb, 0x68,0xcb,0x5b,0x77,0xfd,0xc0,0xfb,0xa2,0x9d,0xc2,0x45,0x27,0xa2,0x9f,0x3e,0xd5, 0xd8,0xcf,0x57,0xc,0xd3,0x93,0x3e,0x9f,0x32,0x4c,0x6d,0xfa,0xbc,0xce,0x30,0x35, 0xe9,0xb3,0x94,0x61,0xaa,0xd3,0x27,0x7b,0x30,0xc3,0x94,0xd1,0xe7,0xd2,0xf2,0xcf, 0x57,0xf4,0xd9,0x93,0x61,0x9e,0xd3,0x67,0x13,0x86,0x79,0x4a,0x9f,0xb5,0xcb,0x3f, 0xaf,0xd3,0x67,0xcd,0x8a,0x9f,0xa5,0xf4,0x59,0xbd,0xf2,0x3e,0x65,0xc9,0x21,0x29, 0xaf,0xa0,0x1d,0x82,0x76,0x49,0xb6,0x57,0xd0,0xf,0xc2,0x7e,0x11,0xf4,0x93,0xa0, 0xdf,0x4,0xfd,0x28,0xe8,0x57,0x89,0xfe,0xa6,0xeb,0xb4,0xf4,0x11,0xbd,0x18,0x91, 0xeb,0xb4,0xbe,0x7c,0xbb,0xaf,0xd3,0x42,0xdb,0xf0,0x5,0xc2,0x2,0x31,0x19,0xe1, 0x8b,0x88,0xe5,0xe1,0xcb,0xff,0x46,0xff,0x7d,0xa1,0xe5,0x3a,0x3f,0x43,0x74,0x41, 0x44,0x21,0xae,0x28,0x91,0xc3,0xba,0xc2,0xef,0x4b,0xc7,0x7c,0xa6,0x61,0xdd,0x8d, 0x10,0x9b,0x11,0x57,0x55,0xcc,0xa3,0x1,0x7f,0xc,0x1d,0xdb,0x48,0x8d,0x7a,0x3f, 0x40,0xd8,0x20,0x8e,0x4b,0x3b,0x37,0xe5,0xfa,0x29,0x17,0x4b,0xbe,0x9d,0xcd,0x83, 0xe1,0x77,0x39,0xb9,0xca,0x13,0xfc,0xb9,0x3e,0x50,0xa1,0x6e,0xb,0x3e,0x1f,0x52, 0x56,0xe1,0x7c,0x58,0x4f,0xdc,0x94,0x1,0x70,0xf9,0x60,0x3e,0xce,0x49,0x77,0xb3, 0xb8,0xb8,0x6f,0xa7,0xbc,0x35,0xb4,0x32,0xfe,0x5c,0x16,0xca,0xc8,0xc0,0xcb,0x2a, 0xf3,0xba,0x31,0x6a,0x7b,0xda,0x82,0x51,0xec,0xfc,0x45,0x50,0x68,0x5e,0x13,0xce, 0xcd,0x5,0xe5,0x81,0xce,0x69,0xa3,0xa0,0xee,0x46,0x7c,0x9f,0x57,0x6c,0xb7,0xe6, 0xf5,0x97,0xf1,0xba,0x90,0xca,0x7,0x9e,0xe7,0x9b,0x15,0xf1,0x8a,0xea,0x4f,0x99, 0xe7,0x0,0xb7,0x6f,0xdf,0x66,0xe7,0x9a,0x4,0x9a,0xeb,0xd1,0xfa,0x9a,0x92,0xbc, 0xdc,0x2c,0x6d,0x5c,0xf0,0xe3,0x45,0x89,0xf1,0x65,0xc,0x91,0x6e,0x3d,0xa1,0x30, 0x6a,0x3,0x94,0xc4,0xfa,0xb2,0x28,0x88,0x58,0x2f,0x88,0x33,0x95,0x1d,0x17,0x5d, 0xa4,0xd4,0x1f,0xa5,0xec,0xd8,0xa,0xb0,0xa5,0xeb,0xa9,0xda,0xb0,0x73,0xa1,0x50, 0x4,0x5b,0xb7,0x6a,0xb9,0xfa,0x28,0x89,0xba,0xd1,0xae,0x19,0x2b,0x63,0x5b,0x58, 0x4,0xe3,0x78,0x3b,0x96,0x1d,0x5,0x57,0x8f,0x95,0xc0,0xd5,0xa3,0x25,0xb0,0x37, 0x7a,0x1d,0x4,0xaa,0xb6,0x76,0x46,0x75,0x7d,0x21,0x52,0xbf,0x5,0xe9,0x2f,0xc6, 0xbd,0x97,0xa2,0xb1,0xcc,0x82,0xf2,0xdf,0x57,0xce,0x1e,0x17,0xe6,0x25,0xee,0xfc, 0x72,0x1e,0xfb,0x41,0xf9,0xb5,0x4c,0x1e,0x16,0x22,0xf5,0x4f,0x8e,0x46,0x9d,0x52, 0x4e,0x25,0x71,0xc6,0x20,0x6e,0x1d,0x4d,0x4e,0x7b,0x48,0xc6,0x53,0x25,0xd9,0x6c, 0xce,0x83,0xcd,0xd9,0xe0,0x58,0x48,0x99,0x6d,0xcb,0xea,0x45,0x85,0xfa,0x27,0x8b, 0xd4,0xef,0x4b,0x79,0x4c,0x2e,0x37,0xc2,0xad,0x6d,0xa6,0xce,0x1a,0x6,0x71,0x38, 0x7f,0x9,0x75,0x6a,0x5b,0x51,0x16,0xec,0x9f,0xed,0x1b,0xbc,0xe0,0xfe,0xef,0x77, 0xd9,0xfa,0x9,0x57,0x4f,0xee,0xc5,0xfd,0xfb,0xa9,0x52,0xbf,0xaf,0x48,0xfd,0xb1, 0xa9,0x73,0x86,0x43,0xba,0x70,0x5d,0xb2,0x7c,0xad,0x2f,0x75,0x8e,0x2d,0x9b,0xa3, 0xa4,0xf5,0x87,0x60,0x11,0x1b,0x17,0xe3,0x61,0x1,0xa7,0xf7,0xe6,0xb1,0x39,0x22, 0x36,0xe7,0xf6,0xec,0x5f,0x38,0x93,0x97,0xa8,0xca,0xb5,0x4,0xb1,0xa2,0xf5,0x53, 0x9b,0xb9,0xf5,0x39,0xd9,0x6b,0x73,0xf4,0x7b,0x8a,0xb7,0x35,0xda,0xdf,0xbe,0xac, 0x3c,0xe9,0x4b,0xc6,0xc1,0xd5,0xcb,0x17,0x84,0x6b,0x58,0x94,0x33,0x3e,0x92,0xe2, 0xaf,0x8c,0x2d,0x92,0xac,0xdf,0x97,0xf2,0x81,0xc2,0xb5,0x32,0x79,0xeb,0x69,0xfc, 0x1a,0x94,0x20,0x9f,0xb2,0x3f,0xd9,0x1f,0xee,0xdc,0xba,0x2e,0x5c,0x8f,0xfd,0xe7, 0xe9,0x23,0x28,0xf2,0x9b,0xa7,0xcc,0xfa,0x9f,0x68,0xff,0x4f,0x8e,0x9f,0xd2,0x5f, 0x7c,0x7d,0x49,0xde,0x7a,0x92,0xc8,0x3a,0x12,0xcd,0xc1,0xe,0xa5,0x85,0xb0,0x36, 0x58,0xc0,0x5,0xca,0x47,0xe7,0xe2,0x3c,0x8d,0x72,0x2,0x74,0xbd,0x42,0xd4,0x84, 0x6e,0x38,0x3f,0xeb,0xcc,0xda,0x48,0x1a,0x27,0x81,0x5c,0xce,0x53,0x94,0x7f,0x16, 0xd1,0x13,0x7b,0xe0,0xb9,0xa9,0xe,0xc1,0x1a,0x8b,0xab,0xc,0x8c,0x67,0xf7,0x61, 0xf7,0x15,0xae,0xa1,0x4c,0x83,0xdf,0x6f,0xfc,0x2a,0xcc,0xe1,0xd3,0xe7,0xb1,0xac, 0x30,0x96,0xc7,0x29,0xde,0xc3,0x20,0xd9,0xcb,0x9a,0x5b,0x6b,0x40,0x8e,0x53,0xe, 0x9b,0xcf,0xe1,0x88,0x8e,0xbf,0x2f,0xc2,0xc6,0x74,0xb8,0x42,0x3a,0x2e,0x5f,0x1b, 0x91,0xb6,0x1e,0x32,0xb1,0x3c,0x3f,0xc1,0xe6,0x58,0xb8,0x1c,0xc5,0xf6,0x55,0x6e, 0x70,0xeb,0xc2,0x49,0x61,0xfd,0xd4,0x7,0xbf,0x1c,0xdb,0xcd,0xf2,0x85,0xcd,0xf5, 0xb2,0x32,0x58,0xb1,0x32,0x10,0x77,0xd0,0x5e,0x8a,0xd9,0x1f,0x2a,0x41,0xf6,0x2d, 0xa2,0xd2,0x90,0xeb,0x5c,0x5d,0xb4,0x6e,0x51,0xbe,0x3e,0x40,0xa0,0x36,0xd2,0x9c, 0x77,0xbb,0x58,0x9e,0x87,0x93,0x23,0x7f,0xfd,0x74,0x78,0xfa,0xe0,0x8e,0x30,0x47, 0x4a,0x5c,0xb8,0x78,0xa0,0x10,0x32,0xb1,0x3d,0x34,0x7e,0xc8,0xae,0x24,0x53,0xbe, 0xdc,0xd3,0x92,0xb5,0x71,0x1,0x76,0x66,0x62,0xf6,0x57,0xe0,0x7f,0x22,0x5c,0x3a, 0x5f,0x29,0xcf,0xef,0x97,0xe7,0xf5,0xf3,0x70,0xbe,0x7d,0xf9,0x60,0x1,0xdc,0xfd, 0xf9,0x2c,0x9c,0xde,0x16,0x5,0x87,0x12,0x36,0xc3,0x9e,0xb0,0x65,0x50,0x1a,0xea, 0x3,0x47,0x53,0x3,0xe0,0xf6,0xf9,0x63,0xc2,0xba,0xa9,0xf,0x28,0xaf,0x79,0x38, 0x33,0xc,0xb2,0x16,0x8d,0x12,0xe6,0x8b,0x89,0xdf,0xa4,0x87,0x10,0xa7,0xb6,0xb2, 0xfc,0xcf,0x67,0x1,0x76,0xa6,0x9b,0x89,0xd3,0x3b,0x7f,0x9c,0xc2,0x42,0x90,0xdf, 0xa6,0xbc,0xc5,0xad,0x8b,0xa7,0xd8,0x73,0xbf,0x7c,0xf1,0x1c,0x39,0xfe,0x10,0xfe, 0xf8,0xfd,0x26,0x3c,0x45,0x3c,0xfb,0xeb,0x29,0xfe,0xfe,0x4a,0x6c,0xdd,0xe0,0xd6, 0xb5,0x5f,0x21,0x7f,0xb3,0x37,0x3b,0x46,0xd2,0xe7,0x71,0x39,0xdf,0xd4,0xd9,0x36, 0xac,0x3d,0x43,0xff,0x2d,0xd5,0xff,0xf2,0x32,0x34,0x8a,0x70,0xee,0x78,0x22,0x77, 0x99,0x4b,0x99,0x68,0x5e,0xba,0x78,0xcb,0x6c,0xb8,0x76,0xf1,0xc,0x3c,0x7d,0xfa, 0x94,0x6d,0x1b,0xd9,0x5d,0x5a,0x6f,0xa4,0x7e,0xa6,0x4f,0xca,0x51,0xd3,0xef,0xb4, 0x5e,0xf4,0xf3,0x99,0x63,0x50,0x1a,0xb9,0x86,0xe5,0x25,0xd9,0x12,0xb2,0x67,0x69, 0xc8,0x43,0xd4,0x7d,0x19,0xfa,0xd,0x8a,0x6d,0xe4,0xc6,0xa3,0x81,0x76,0x66,0x36, 0xb1,0x93,0xfa,0xdc,0x2a,0xd8,0x58,0x9e,0x5b,0xa6,0x7c,0xe6,0x91,0x8c,0x70,0x38, 0xbf,0xbf,0x0,0x7e,0x3d,0x77,0x2,0x6e,0x5e,0xbb,0xc2,0xe6,0x8b,0x29,0xf6,0xf8, 0xfd,0xf7,0xdf,0xe1,0xb7,0xdf,0x7e,0x83,0x5f,0xd0,0x1f,0x9d,0x2a,0xcc,0x84,0x92, 0xe0,0x25,0x2c,0x4f,0x5,0x79,0x57,0x41,0xce,0x35,0x62,0x5c,0xa7,0x5b,0x68,0x13, 0xe4,0xc6,0x5f,0x7c,0x1f,0xb0,0xf1,0x67,0x9c,0x87,0xc5,0x2d,0xe4,0x61,0x99,0x20, 0xb7,0x2a,0xcc,0xa9,0xa2,0x6d,0xd9,0x15,0xb0,0x0,0x76,0x87,0x2c,0x81,0x7d,0x31, 0xeb,0x60,0x4f,0xd4,0x5a,0x28,0xc6,0xdf,0x28,0x7f,0x4a,0x6b,0x55,0xc4,0x47,0x1a, 0x9f,0x82,0xbc,0x69,0xca,0x2c,0x9b,0xb2,0x48,0x97,0xce,0x4a,0xc7,0x9f,0x2,0x19, 0xa8,0x1f,0xf0,0xb8,0x13,0x64,0x6f,0x44,0xf3,0xa2,0x5c,0xee,0x93,0xcb,0x61,0x51, 0x9d,0x82,0x1c,0xa8,0x30,0x7f,0xc8,0xaf,0xed,0x65,0xe3,0x71,0xb4,0xbe,0x82,0xf1, 0xc9,0x9,0x6a,0xb7,0xb2,0x75,0x4b,0xc8,0xd1,0x8,0xe5,0xd8,0x1c,0x3d,0xa1,0xfb, 0x15,0xb2,0x37,0xc4,0x45,0x92,0x43,0x28,0x83,0x30,0x87,0x36,0x45,0x98,0x3f,0xa3, 0x7e,0xa7,0x31,0x8f,0x3c,0xba,0x82,0xf5,0xaa,0x35,0xff,0x90,0x90,0x81,0x9d,0x7f, 0xa1,0xcd,0x88,0x42,0x9f,0x73,0x85,0xec,0x17,0xd9,0x9,0x6a,0x27,0x9b,0xbb,0xc3, 0x31,0x9a,0xbd,0xd4,0x99,0x1d,0x5b,0xc8,0x1b,0xb2,0xb1,0x57,0xc8,0x96,0xf8,0x6b, 0x61,0xfe,0x25,0x45,0x96,0x4a,0x9f,0x7f,0xea,0xba,0xb0,0x86,0xe3,0x7a,0x4d,0x36, 0x75,0x50,0xc6,0x30,0x4b,0x9f,0x33,0x4c,0x13,0x4a,0x31,0x10,0xae,0x33,0x4c,0xcd, 0x52,0x86,0xa9,0x2e,0x80,0xf,0xc3,0x54,0x53,0x6,0xa2,0xc7,0xd0,0x39,0x4,0xe7, 0xa3,0x73,0x53,0x1d,0x6c,0x9a,0x82,0xea,0xc4,0x42,0x79,0x8a,0x2f,0x19,0x2e,0x57, 0x21,0xcc,0x53,0xd4,0x90,0x9b,0xa7,0xa8,0xc6,0xed,0xc1,0xd0,0xbf,0xdf,0x20,0xc, 0x10,0xcd,0x78,0x18,0xf0,0xbf,0x7d,0xca,0xef,0x53,0x4d,0xca,0xb1,0x1f,0x22,0xbe, 0x42,0xb4,0x46,0xc,0x47,0x78,0x21,0x96,0xf1,0xf0,0xe2,0x7f,0x6b,0xcd,0xef,0xf3, 0xa1,0xc4,0x39,0x6a,0xf0,0xbf,0xf7,0xd2,0xfb,0xb2,0x96,0x8f,0x53,0x27,0xfd,0xfc, 0x35,0xc3,0xdb,0xfc,0x12,0x37,0xa1,0xeb,0xdf,0x4,0xfa,0x4e,0xbf,0xd1,0x7f,0xc, 0x97,0x7a,0xf9,0x8a,0x3f,0x46,0x50,0x37,0xc9,0xd5,0xb9,0x83,0x7e,0x5d,0x5f,0x1f, 0xeb,0x96,0x17,0x63,0x9d,0xdb,0x41,0x98,0x63,0xb,0x8,0xc4,0xb8,0x95,0x40,0xdf, 0xe9,0x37,0xfa,0x8f,0xf6,0xa1,0x7d,0xf9,0x63,0xe8,0xd8,0xea,0x88,0x6,0x8d,0xea, 0x7e,0xe2,0xbd,0x6c,0x68,0xcb,0x9f,0xc2,0x47,0xb6,0x14,0xc6,0x32,0xe4,0x93,0x6e, 0x9f,0x3b,0x2c,0xdc,0xa6,0xff,0x68,0x1f,0xda,0x97,0x8e,0xe1,0x8f,0xa5,0xb6,0x74, 0x1c,0xd7,0xcd,0x20,0x83,0xea,0x10,0x8d,0x85,0x24,0x8f,0x27,0xd0,0x3e,0xb4,0x2f, 0x1d,0xc3,0x1f,0x5b,0x13,0x61,0xbd,0x7e,0x84,0xf9,0x4f,0x91,0x63,0xc4,0x8f,0xa7, 0x18,0x87,0x6c,0xad,0xe8,0x6f,0xd4,0x16,0xda,0x97,0x8e,0xe1,0x8f,0x25,0x38,0x24, 0x4c,0xec,0xfa,0x67,0xa,0xc6,0x2,0x74,0xcd,0x9,0xad,0x5f,0xd1,0xdc,0x69,0x5f, 0xc4,0x4a,0x96,0xb,0xa2,0xd7,0xb1,0x53,0x7f,0xd0,0xbe,0x74,0xc,0x7f,0x2c,0xc9, 0x30,0x1c,0x7f,0xfb,0x23,0xb,0xfd,0x9a,0x20,0x46,0x63,0x6d,0x2c,0xfa,0xf6,0xc7, 0xb7,0x7e,0x85,0x47,0x37,0x7e,0x86,0x18,0xb7,0x1e,0xdc,0xb5,0xcd,0xf6,0xcd,0xe8, 0xf8,0x3f,0x78,0x7d,0x7e,0xc8,0xf7,0x41,0xf,0x5f,0xc7,0x76,0x27,0xb2,0x16,0xd8, 0xb,0x7d,0x3b,0xd9,0x54,0xb2,0x5b,0xa7,0x72,0x22,0x58,0x19,0xa8,0x2f,0x28,0x56, 0x49,0xf0,0xe8,0xd,0xb4,0x2f,0x1d,0xc3,0x1f,0x4b,0x3a,0x68,0x3a,0xcd,0xc2,0x24, 0x38,0xd3,0xdb,0x92,0x5b,0x9f,0x42,0x7f,0xf0,0xf2,0xf9,0xbf,0xf0,0xe8,0xe6,0x2f, 0xc2,0xb9,0xf8,0xbe,0xc8,0x55,0xec,0xfa,0x6a,0xb2,0x47,0x4f,0xa0,0x7d,0xe9,0x18, 0x11,0xe,0x7d,0xd2,0xac,0xfe,0x17,0x36,0x1b,0x1c,0xcc,0xf7,0x67,0x2f,0x74,0x60, 0xd7,0xe5,0x4e,0xe5,0x46,0xc0,0xd5,0x23,0x45,0xf0,0xeb,0xa1,0x7c,0xd8,0x1f,0xb5, 0x9a,0xb5,0xdd,0xc9,0xd3,0xfa,0xc3,0x6,0xfb,0xb6,0xfb,0x69,0x5f,0x3a,0x46,0x82, 0xbf,0xdf,0xe,0x6a,0xa5,0xe7,0xbe,0xc9,0xa1,0xdd,0xde,0x9c,0xf9,0xb6,0x90,0xff, 0xa3,0x7,0xec,0xf2,0x9f,0x7,0x45,0x68,0x93,0x73,0x97,0x8e,0x86,0x74,0xcf,0x41, 0x40,0xff,0xd1,0x3e,0xb4,0xaf,0x8c,0x31,0xf0,0x4d,0xab,0x6,0xb5,0x87,0xcc,0x1a, 0xd0,0x6c,0x73,0xe0,0xa8,0xe,0x7,0x92,0xdd,0xbb,0x3d,0x22,0xd0,0x77,0xfa,0x8d, 0xfe,0xe3,0xc7,0x91,0xe4,0xb1,0xa2,0x85,0x74,0xa2,0xc7,0x70,0xb7,0x83,0xfe,0xc0, 0xa3,0x2d,0xff,0x5b,0x4d,0x39,0xc7,0xa9,0x55,0x4a,0x51,0x3,0x3e,0xd5,0x38,0x28, 0x2a,0x82,0xfd,0xe8,0x98,0xa7,0xb5,0xc9,0xd8,0x70,0xf9,0x50,0x1f,0xfa,0xb3,0x9a, 0x88,0x9d,0xc1,0x6f,0x6f,0x73,0x3e,0xf4,0x7d,0x79,0x5f,0xde,0x97,0xf7,0x45,0xc9, 0x42,0x71,0x8,0xad,0x7,0x7f,0xcd,0x70,0x31,0x1,0xf9,0x25,0x13,0x44,0x73,0x86, 0x8b,0x77,0xc8,0x76,0x9b,0x23,0xda,0xf3,0x30,0xe7,0x7f,0x6b,0xcd,0xef,0x63,0xc2, 0x1f,0xd3,0x80,0x3f,0xc7,0xe7,0x4c,0x79,0x6c,0xf3,0xbe,0xbc,0x59,0x85,0xe6,0x7a, 0x34,0xf,0xa9,0x8f,0x30,0x66,0x38,0x1d,0x52,0x1c,0xd7,0x1d,0x41,0x79,0x9f,0x81, 0x8,0x2b,0x4,0xc5,0x17,0x23,0x18,0x2e,0xc6,0x1a,0x89,0x70,0x42,0x8c,0xe6,0xe1, 0xc4,0xff,0xe6,0xc0,0xef,0x63,0xc3,0x1f,0x33,0x90,0x3f,0x47,0x77,0xfe,0x9c,0xad, 0xf9,0x3a,0xa8,0xae,0xcf,0xf9,0xba,0xdf,0x97,0xca,0x2f,0x74,0x8d,0xa,0xc5,0x7b, 0x34,0x4e,0x3b,0x30,0x9c,0x7e,0xe8,0x11,0x1f,0xc3,0x10,0x8e,0xf5,0x3f,0xfb,0x70, 0x92,0x85,0x51,0x9d,0x55,0x4e,0xe6,0xf5,0xc2,0x27,0x75,0xd1,0xcb,0x9e,0xd5,0xab, 0xd1,0xfe,0x85,0x16,0x8d,0x7f,0xf2,0xe9,0xaf,0x7f,0x63,0xd5,0x20,0xfd,0x47,0x6b, 0x7,0x37,0xfd,0x1b,0xf1,0x6c,0xbd,0xa5,0x1,0x10,0xe8,0x3b,0xfd,0x46,0xff,0xd1, 0x3e,0xb8,0xef,0x79,0x3a,0x86,0x8e,0x75,0x68,0x5b,0x2f,0xac,0x8f,0x71,0xed,0x95, 0x74,0x4e,0x86,0xe3,0xc7,0x30,0xbe,0x2e,0xaa,0xb3,0x3d,0x2f,0x3,0xc9,0xf2,0x71, 0x15,0xf4,0xc3,0xff,0x53,0xa1,0xfe,0xa5,0x71,0xd7,0x82,0xe1,0xe6,0x8a,0xfd,0x10, 0xc3,0x3e,0xfd,0xb0,0xba,0x73,0x2f,0xc3,0x2f,0x57,0x4c,0xe8,0xf8,0x5d,0xca,0x2, 0x8b,0xc6,0xa7,0x56,0xf,0xd2,0x7f,0xbc,0xc9,0xda,0x10,0x42,0x71,0x4e,0x96,0x80, 0xf3,0xba,0x4c,0xb7,0xce,0xb0,0x73,0x7a,0x4f,0x28,0xf2,0xb4,0x80,0x92,0xd9,0xfd, 0xa1,0x74,0xee,0x20,0x28,0x9d,0x37,0x18,0xf6,0xcc,0x1f,0xc,0x7b,0x17,0x58,0xb2, 0xa0,0xef,0xf4,0xdb,0xee,0xb9,0x3,0xa1,0x64,0x56,0x7f,0x28,0xc4,0x7d,0xe9,0x98, 0x4c,0xf7,0xce,0xec,0x39,0x42,0xf0,0x5c,0x1b,0xf1,0x9c,0xc4,0x8f,0x79,0x7d,0x1a, 0x9f,0x74,0xfd,0xfe,0xbb,0xe4,0xde,0x86,0x5f,0x2e,0xa7,0xba,0x19,0x8e,0xf,0xfd, 0x78,0x99,0x68,0x5e,0x4e,0x5c,0x78,0xef,0x2b,0xb4,0x53,0xc8,0xbe,0xd6,0x45,0x98, 0x22,0xbe,0x47,0xd0,0x75,0x75,0x36,0xc6,0xf5,0x6a,0xcd,0x18,0xd3,0xfe,0x9b,0x98, 0xf9,0x7d,0x1a,0x9d,0xde,0x60,0x69,0xf0,0x22,0x72,0x54,0x2b,0x48,0x77,0xeb,0x4, 0xf9,0x33,0x7a,0xc3,0xee,0x39,0x3,0x61,0xf,0xea,0xb2,0xc4,0xbb,0x2f,0x14,0xce, 0xec,0x9,0xf9,0x53,0xbb,0xc1,0xce,0x49,0x9d,0x60,0xbb,0x7b,0x7,0xc8,0x9d,0x60, 0xe,0xd9,0xe3,0xdb,0x40,0x96,0x4b,0x2b,0xc8,0x1a,0xd7,0xa,0x32,0x9d,0x5b,0xb0, 0xa0,0xef,0xf4,0x1b,0xfd,0x47,0xfb,0xd0,0xbe,0x3b,0x3c,0x3a,0x43,0xc1,0xb4,0x1f, 0xa0,0xd8,0x13,0xcf,0x39,0x7b,0x0,0x72,0x64,0x8,0x7b,0x6e,0xaa,0x83,0xea,0x8a, 0x18,0xd9,0x92,0x6c,0xc7,0xb,0x92,0x81,0x64,0x21,0x99,0x18,0xce,0x6f,0x90,0x8c, 0x64,0x93,0x8c,0x10,0x75,0x18,0xf9,0xf3,0xca,0xf7,0x45,0x7a,0x21,0xbd,0xd3,0x38, 0x22,0x7f,0x4b,0x39,0x9,0xab,0xba,0x9f,0x7c,0x38,0xde,0xb1,0xed,0x37,0x21,0x4b, 0xfa,0x36,0xfe,0xc9,0xdf,0xc6,0xb8,0x2c,0xd5,0xf5,0x7b,0xd4,0x45,0x2f,0x56,0xd7, 0xa4,0x9f,0x82,0xe9,0x3d,0x60,0xc7,0xa4,0x8e,0x90,0x83,0x3a,0x14,0xe8,0x55,0x9b, 0xc8,0x72,0x6e,0x9,0xd9,0xae,0x6d,0xd8,0x3a,0xa8,0xae,0xdd,0x73,0x6,0xb0,0x75, 0x93,0xc,0xc9,0xe3,0xbf,0x87,0x2d,0x36,0x26,0x65,0xe4,0x37,0x1c,0x50,0x46,0x92, 0x95,0xe1,0xe2,0x87,0x1e,0x7c,0x1b,0xbe,0x65,0xde,0xc7,0xa,0xca,0x14,0xca,0x3d, 0x91,0x8d,0x6f,0x83,0xe8,0x8d,0x1b,0xf6,0x3,0x4c,0xeb,0xac,0x9d,0xd3,0xbb,0xe1, 0x1,0xb4,0xbf,0x2f,0x12,0xc7,0xb5,0x83,0xfc,0x99,0xbd,0xd1,0x56,0xf,0x82,0xc2, 0x19,0x3d,0x61,0x3b,0x8e,0xeb,0x2c,0x97,0xd6,0x90,0x31,0xb6,0x85,0x18,0x32,0x55, 0x85,0x9a,0x9c,0xc8,0x1e,0xdf,0x1a,0xed,0x44,0x27,0x28,0x42,0x3b,0xb3,0x7,0xfd, 0xa,0xc9,0x16,0xef,0x6c,0xe,0xeb,0xad,0xc,0x9f,0x7b,0xf7,0x6c,0x78,0xa0,0xbf, 0x49,0x9d,0x35,0xd4,0x6,0x6a,0xb,0xdf,0xa6,0xef,0xf8,0x36,0xbe,0x2f,0xe2,0x85, 0xc6,0x6,0xe5,0xd2,0x68,0x1e,0xd6,0xa7,0x7a,0x75,0xc6,0xde,0xae,0x4d,0x3d,0xff, 0xe5,0x3,0xf4,0x6f,0x44,0x8c,0x6c,0x5,0xdb,0xa7,0xf6,0x60,0xfd,0x76,0x11,0xda, 0xe2,0x6d,0xee,0x1d,0x59,0x9d,0x49,0xea,0x5c,0x5b,0x50,0x97,0x3b,0x59,0xe3,0x5a, 0x22,0x1f,0x3b,0xb2,0xfe,0x82,0x64,0xdd,0x3e,0xa5,0x3b,0x97,0x9b,0xc6,0x78,0x72, 0x78,0xcb,0xaf,0xb6,0x52,0x9b,0x18,0xce,0x37,0x50,0x1b,0xeb,0x33,0xef,0xed,0x81, 0xa0,0xd0,0x92,0x48,0x2b,0x44,0xef,0x5a,0x1f,0x55,0x77,0x22,0x1b,0xbf,0x6a,0xa0, 0xfe,0x9d,0x98,0x51,0x6d,0xd8,0x38,0x8c,0xe2,0xb1,0x9d,0xe8,0x8b,0x33,0xd1,0x47, 0xeb,0x4a,0xe7,0xda,0xe6,0x4d,0x36,0xca,0x4a,0x32,0xef,0x9a,0x4d,0xb1,0x64,0x1f, 0x88,0x72,0x6a,0x5,0xc8,0xe5,0xdf,0xec,0xdb,0x7c,0x1d,0xf4,0x51,0xf5,0xea,0x34, 0xcf,0x24,0x7b,0xd0,0x92,0x61,0xaf,0x8e,0xfd,0xbf,0x2d,0x1f,0x31,0x5c,0x8c,0x44, 0xd7,0x7,0xd8,0x38,0xb4,0xfe,0x3a,0x70,0xcd,0xa0,0xa6,0xf,0xe2,0xc6,0xb6,0x85, 0x22,0x6f,0xb,0x28,0xc6,0xf8,0x2d,0x77,0x62,0x7,0x48,0xc7,0xfe,0x94,0x85,0xaa, 0xd6,0xb9,0x32,0xd8,0xe6,0xd6,0x81,0x8d,0x45,0x8b,0x10,0xb1,0xa3,0xdb,0xc2,0xaa, 0x81,0x4d,0xef,0xdb,0xb6,0xaa,0xe7,0xcf,0x70,0xb1,0x22,0xb5,0xdd,0x90,0xef,0x8b, 0xff,0x97,0x42,0xf1,0x30,0xf9,0x41,0x9a,0x3b,0xf,0x6a,0xa7,0xf7,0xe9,0xec,0xa5, 0x18,0xd3,0x45,0xa2,0xad,0x2c,0x99,0xd5,0xf,0x8a,0xbc,0xfa,0x40,0xce,0x84,0xf6, 0x72,0xf5,0xae,0x29,0xaa,0x82,0x7,0xb9,0x13,0xdb,0x43,0x31,0xb6,0x8d,0x78,0x4d, 0x7e,0x61,0x11,0xc6,0x8a,0xad,0xf5,0x3e,0x9d,0x45,0x7d,0xc0,0xf7,0xc5,0x77,0xcc, 0xbb,0x3f,0x57,0xa0,0xb5,0x49,0xca,0x97,0x74,0xff,0xf2,0xe3,0xf,0xc7,0x4e,0xeb, 0xd6,0x20,0xd7,0xdf,0xc6,0xe4,0x25,0xf9,0x77,0xd2,0x7d,0x8e,0xab,0x39,0xa4,0x8f, 0x69,0xae,0x3a,0x74,0xc8,0x15,0x6d,0x73,0x27,0x17,0xb9,0xbd,0xb,0xdb,0x4a,0xf1, 0xc1,0xd6,0xa1,0x26,0x2f,0x3d,0xba,0xea,0xe5,0x7c,0xf1,0x71,0xf5,0x31,0xc,0x97, 0x4f,0x32,0xe1,0xfb,0xe8,0x5d,0x2c,0x94,0xa3,0xa5,0x18,0x78,0xe0,0x40,0x8c,0x8b, 0xd7,0xd,0x69,0xfa,0x30,0xd5,0xb5,0x3,0xeb,0x23,0xb7,0x4f,0xea,0x8c,0x7a,0x6c, 0x1,0x69,0xa8,0x4b,0x51,0xa8,0xc5,0x85,0x37,0x94,0x3b,0xe2,0xb1,0x42,0x4b,0xd8, 0x31,0x19,0xe3,0x3,0x9c,0x43,0x26,0xbb,0x74,0x80,0x35,0x3,0x9b,0x3e,0xe8,0x67, 0x54,0x87,0x9e,0x47,0x31,0x80,0xe1,0xe6,0x8b,0x55,0x7a,0x2f,0x9b,0x96,0xb,0xd9, 0x34,0x8a,0xed,0x3b,0x7d,0x54,0x9d,0xb1,0x9d,0xdc,0x55,0x2f,0x2b,0xd8,0xae,0x59, 0x59,0x91,0x97,0x5,0x3b,0x8f,0xce,0xc0,0x58,0x49,0x52,0xef,0x9a,0xe2,0x6d,0xe1, 0x4d,0x26,0xce,0x5d,0xb,0x66,0xf4,0x82,0x42,0xec,0x8b,0x0,0x3b,0xd3,0xd7,0x6e, 0x9d,0xeb,0xa7,0xe3,0x3c,0x81,0xae,0xe1,0xe8,0xc8,0xf7,0xd9,0xdb,0xee,0xf,0x68, 0x8e,0x43,0xeb,0x25,0x3d,0xc,0xea,0xd4,0x9c,0xe4,0xd3,0xaf,0xc9,0x4f,0xf1,0x18, 0xdf,0x51,0x1e,0x96,0x7c,0xbc,0xb6,0xf5,0xfe,0xb6,0x72,0x87,0x62,0x3,0x9a,0xe7, 0x50,0xec,0xbb,0xb8,0x5f,0xe3,0xf3,0xfa,0xd8,0x57,0xc,0xe7,0xf,0x8c,0x98,0xb7, 0x77,0x9e,0x48,0x39,0x70,0xba,0x14,0xc5,0x62,0xa0,0x59,0x9d,0x35,0xeb,0xad,0xd, 0x9e,0xe6,0x4c,0xee,0xc6,0xc6,0x77,0xe9,0x38,0xe6,0x53,0xb1,0x1f,0x4,0xa8,0x6a, 0x9d,0xbf,0x9,0xbc,0xc9,0x74,0x6e,0xc5,0xc5,0xbe,0x1e,0xdd,0x60,0xdd,0x10,0x83, 0xa7,0xfd,0x4c,0x58,0x7f,0x60,0xc1,0xf7,0xe1,0xdb,0xb6,0x9e,0x40,0xf3,0x19,0x5a, 0xa7,0x19,0x30,0xb6,0xdd,0xb7,0x11,0x41,0x76,0x66,0xaf,0x8b,0xbc,0xfa,0xa2,0xcf, 0xeb,0xa,0xa9,0xa3,0x9b,0x57,0xc4,0x18,0xf5,0x50,0xd5,0x3a,0xd7,0x5,0x77,0xf2, 0xa6,0x74,0x1,0xf2,0x8d,0x1,0xc3,0x4d,0x5f,0x3b,0x99,0xd7,0xb,0x63,0xb8,0x98, 0xa0,0x5,0xf3,0xf6,0xcc,0x11,0x69,0x6d,0x96,0x62,0x98,0xc1,0xee,0x5d,0xea,0xa7, 0x85,0xdb,0xb7,0x28,0x2b,0xf6,0xee,0x7,0xd9,0xae,0xed,0xa4,0xeb,0x5e,0x53,0xbc, 0x83,0xdc,0xa1,0xbe,0x2a,0xc6,0x39,0x42,0x88,0x7d,0xf3,0xb2,0x89,0x9d,0xbe,0x4b, 0xa3,0xbe,0xe4,0xfb,0xb4,0xd2,0x9e,0xcd,0xa0,0x66,0x21,0xf9,0xcc,0x31,0x86,0x19, 0xea,0xd5,0xa3,0x61,0x41,0xb4,0x53,0x4b,0x76,0xbe,0x9b,0xe1,0xdc,0x46,0x37,0xba, 0x7f,0x87,0x79,0x93,0x39,0xae,0xd,0xd0,0xb8,0x89,0x70,0x6c,0x5,0x33,0xbb,0xeb, 0x15,0x50,0x9f,0x32,0x5c,0xee,0xf8,0x4d,0xe5,0x0,0xd9,0xa7,0xd6,0xb5,0x3e,0xaa, 0x6e,0xb3,0xd0,0xa2,0xd1,0x21,0x8a,0xf3,0xc8,0x8e,0xa5,0x8e,0x6d,0x5,0x29,0xd8, 0xdf,0xea,0xa0,0xca,0x39,0x52,0xc5,0xdc,0xc9,0xc0,0x98,0xa0,0x18,0xfb,0x90,0xf2, 0x86,0xf3,0x7a,0x37,0x3c,0x44,0x7d,0xcb,0x70,0xb9,0xf2,0x37,0xcd,0x17,0x50,0x7c, 0xd2,0xb2,0x66,0x75,0xc6,0x6a,0x1,0xea,0x3e,0xc9,0xa5,0x1d,0x14,0x7a,0xf6,0xc6, 0x36,0xb7,0x50,0x5b,0xf7,0x9a,0xa2,0xca,0x39,0xa2,0x25,0xde,0xa4,0xe1,0xfc,0x80, 0xd6,0xbd,0x12,0x9d,0xdb,0x3,0xad,0x83,0x56,0x67,0x18,0x4b,0x86,0x5b,0x3b,0x78, 0x53,0x62,0x42,0x9a,0x9f,0x50,0x8c,0xda,0xdf,0xbb,0x47,0xc3,0xe2,0x78,0xe7,0xb6, 0x90,0x3f,0xa3,0x27,0xa4,0x8c,0xa9,0x1a,0xbd,0xbf,0x8b,0xbc,0x49,0x43,0x14,0xcc, 0xec,0xc9,0xda,0x81,0x99,0xdd,0x1b,0x14,0x31,0xdc,0xf5,0x67,0x66,0x4c,0xd5,0xcf, 0xd,0x29,0x3f,0x41,0xf3,0xfb,0xbe,0x1e,0x5d,0xf4,0x52,0xc9,0xdf,0x17,0xcc,0xec, 0xcd,0xf6,0x63,0xf2,0xa8,0x66,0xa,0x51,0xd5,0xba,0x7e,0x9b,0xb8,0x93,0x86,0xb6, 0xb4,0x10,0xfb,0x96,0xd6,0x49,0x26,0x76,0xfc,0x2e,0x85,0xe1,0xe6,0x86,0x46,0x4c, 0xd5,0xe6,0x88,0x28,0x47,0xd5,0x63,0xdc,0xf7,0xdf,0x44,0x45,0x38,0xb6,0x80,0x2, 0xb4,0x53,0xc9,0x4a,0xea,0x5e,0x53,0x54,0xb5,0xae,0xab,0x82,0x37,0x2c,0x7,0x3c, 0xfb,0xb0,0xf3,0x82,0x51,0xed,0xbe,0x9,0x65,0xb8,0x1c,0x91,0x5e,0x15,0xe9,0x9e, 0xf2,0xf9,0x1d,0x2d,0xcd,0xea,0xac,0xe,0xc6,0xf9,0x3d,0xc9,0x95,0x32,0xb6,0x25, 0x24,0xa1,0x6e,0x34,0x81,0x36,0xb8,0x91,0xe6,0x62,0xe,0x37,0xf,0xe7,0x4b,0xc7, 0x11,0xc5,0xf8,0x29,0x2b,0xa8,0xca,0x39,0x21,0xb,0x69,0x18,0x4f,0xd3,0x75,0x11, 0x94,0x53,0xe9,0x6f,0x5a,0x77,0x5,0xc3,0xe5,0x8a,0x2b,0x7b,0xbd,0x80,0xd6,0xa8, 0xda,0x18,0xd5,0xfb,0x64,0xfc,0x16,0x6b,0xa3,0x3f,0xf2,0xa7,0xf7,0x42,0x7f,0xdf, 0x12,0x12,0x9d,0x9a,0x55,0x40,0x92,0x24,0x34,0xe4,0x87,0x32,0xbc,0xc9,0x98,0xd8, 0x51,0x95,0x47,0xe1,0x56,0x28,0xf,0x2e,0x9d,0x78,0xa3,0x6d,0x4e,0x1a,0xce,0xb, 0x28,0xc6,0xda,0x60,0x65,0xf0,0xd4,0xa0,0xee,0xc7,0x2e,0xc,0xb7,0xae,0x56,0x59, 0xeb,0x86,0xe4,0x6f,0x4c,0x30,0xd6,0x1f,0xbc,0x62,0x80,0xfe,0x85,0x1c,0x8f,0xae, 0x90,0x31,0xde,0x5c,0xaa,0xee,0x35,0x81,0x26,0xbc,0x49,0xd7,0x91,0xfe,0xdf,0x24, 0x5f,0x95,0xe5,0xda,0xe,0xb2,0x26,0x75,0x81,0x25,0xfd,0x9b,0x9c,0x47,0x5d,0xd0, 0x35,0x4,0x26,0x4c,0xe5,0xc4,0x2,0x74,0x9d,0x42,0x8f,0x69,0x3f,0xe8,0x65,0x25, 0x8c,0x35,0x87,0x5c,0x8f,0x2e,0x90,0xe0,0x64,0x86,0x68,0x26,0x17,0xda,0xe6,0x87, 0x3c,0xa4,0x4f,0xd0,0x4c,0xff,0xf7,0x51,0xff,0x95,0xe5,0xab,0x34,0xe1,0xce,0xf6, 0xc9,0x5d,0x81,0xf2,0x2c,0x93,0xba,0xd4,0xa7,0x1c,0x61,0x77,0x5e,0x37,0xba,0x2c, 0x74,0xaf,0x73,0xfb,0x21,0xcd,0xbe,0x5a,0x19,0x6a,0xdf,0xfc,0x75,0xde,0xf4,0x9e, 0x90,0x30,0xd2,0x4c,0x31,0x9c,0x14,0x41,0xbb,0xdc,0x49,0xd3,0x86,0xfe,0x75,0xe8, 0xab,0xb4,0xc9,0x1d,0xf2,0xbd,0xc1,0x23,0x4c,0x5f,0xf,0x32,0xab,0x4b,0xcf,0x74, 0xa0,0xeb,0x88,0x74,0x99,0x1b,0x32,0xfa,0xaa,0xd6,0x47,0x36,0x9b,0xac,0xc,0x1f, 0xee,0x9c,0xd6,0x13,0x12,0x91,0x83,0xf1,0xa8,0x5f,0x55,0xa1,0x14,0x67,0x34,0xe0, 0x4d,0xaa,0x16,0xf4,0x5f,0x99,0xfe,0x4a,0x13,0xde,0xa4,0x62,0xcc,0x4d,0xf7,0x2a, 0xad,0x1b,0xdc,0xf4,0xfe,0x57,0x9f,0x54,0xa7,0x7b,0x91,0xc,0x75,0xa4,0x7b,0xba, 0x4e,0xb7,0x8b,0x67,0x8f,0x6,0xb9,0xa9,0xe3,0xbf,0x87,0x54,0x97,0xb6,0x10,0x87, 0x3a,0x8a,0x53,0x43,0xff,0xea,0x42,0x59,0xde,0xd0,0xbd,0x21,0x95,0xad,0xff,0xaa, 0x88,0x73,0x4,0xc8,0xc4,0x58,0x20,0xd9,0xa5,0x3d,0x4c,0xed,0xa6,0x97,0xc3,0x70, 0xd7,0x94,0x6a,0xfb,0xba,0x62,0xca,0x33,0xb5,0xea,0xdc,0xf8,0x8b,0x69,0x41,0xb6, 0x26,0xaf,0xb6,0x4f,0xe9,0x6,0x71,0x8e,0x66,0xb2,0x31,0x52,0x39,0xe8,0x8a,0x27, 0x29,0x1a,0xeb,0xff,0x78,0xa5,0xf9,0x2a,0x6d,0x71,0x67,0xc7,0x94,0x1f,0xc0,0xdf, 0xc6,0xf4,0x65,0x87,0x86,0x9f,0xd1,0x73,0xf3,0x5b,0x32,0xda,0xcd,0xd,0xea,0xd5, 0x60,0x98,0x3e,0x2b,0x31,0xde,0xcf,0x9e,0xd4,0xd,0x12,0x46,0xb5,0x80,0x58,0xd4, 0xb3,0x3c,0xc8,0xe5,0x87,0x8e,0xb9,0xa3,0xd,0xfd,0x57,0xa6,0xbf,0xd2,0x6,0x77, 0x68,0xfe,0x4d,0x73,0xb1,0x65,0x38,0x1f,0x60,0xb8,0xfb,0xb,0xea,0x6b,0x49,0xf7, 0x74,0xbf,0x92,0xf9,0xe8,0x76,0xdf,0xfa,0xc5,0x8c,0x6a,0xd,0x99,0x38,0xb7,0x8a, 0x75,0x34,0x95,0x2,0xf9,0x7c,0x50,0x16,0xda,0xe0,0x4d,0xb2,0x96,0xf5,0xaf,0x6b, 0x7f,0xa5,0x29,0x6f,0x4,0xdc,0xc9,0x71,0xef,0x4,0x51,0x23,0x5b,0xc2,0xc8,0xb6, 0xf5,0xe8,0x79,0x5a,0xe6,0x8c,0x76,0xee,0x35,0xab,0xff,0x69,0xcd,0x1a,0xfd,0x31, 0xe6,0x7b,0xb0,0xd,0x6d,0x4c,0x8c,0x83,0xa9,0x38,0x1c,0xe5,0x43,0x3a,0x57,0xb4, 0xcf,0x1b,0x51,0xee,0xd0,0xfd,0x98,0x9a,0x94,0x7b,0xa8,0xff,0xca,0xf4,0x57,0xda, 0xe2,0xe,0x71,0x60,0xdb,0xd4,0xee,0x14,0xb,0xde,0xab,0x59,0xa3,0x6,0xdd,0x93, 0xae,0xe9,0x7c,0x90,0x7c,0x48,0x1b,0x97,0xef,0xbf,0xb,0x8c,0x77,0x6e,0x3,0x49, 0x88,0xa,0xfa,0xd7,0x4,0x3a,0xe2,0x4e,0x92,0x36,0xf4,0xaf,0x45,0x5f,0x55,0x99, 0xdc,0x49,0x1f,0x67,0xe,0x71,0x63,0xda,0x0,0xd9,0x6b,0x86,0xcb,0xb,0x6a,0x12, 0x7,0x7c,0x5b,0xa3,0x6,0xd3,0x67,0x83,0xa5,0xc1,0xdd,0xec,0x49,0x5d,0x20,0x1a, 0x75,0xa6,0x9,0x2a,0x8b,0x37,0x49,0xe3,0x3b,0x68,0xac,0xff,0xca,0xf4,0x57,0xda, 0xe6,0x4d,0x8e,0x47,0x17,0x58,0x3b,0xa4,0xe9,0x6f,0xa4,0x3b,0x86,0xbb,0xf7,0x5c, 0xdd,0xb1,0xdf,0x7a,0x74,0xbb,0x7a,0xbe,0xc4,0xa7,0x64,0xe7,0xb6,0x10,0x65,0x6f, 0xca,0xc1,0x81,0x83,0xa6,0x7c,0xd0,0x15,0x6f,0x92,0x5c,0xb4,0xa1,0x7f,0xdd,0xfa, 0x2b,0xb5,0x79,0xa3,0x4,0x77,0x68,0xfd,0x2b,0x1a,0x63,0x35,0x87,0x36,0xdf,0x6c, 0x64,0xb8,0xeb,0x6,0xd5,0xc9,0xb,0xd7,0xc5,0x98,0xbf,0xe7,0xfa,0xc1,0x6,0x37, 0xb3,0xdc,0x3a,0x97,0xeb,0x5e,0x13,0x54,0x12,0x6f,0x12,0x35,0xd5,0xff,0xc5,0xe3, 0x6f,0x45,0x9c,0x23,0xf,0x59,0xee,0x5d,0x60,0xcd,0xa0,0xa6,0x37,0x6a,0xb0,0x6f, 0xdc,0x61,0x9f,0x43,0xa2,0x6a,0x31,0xb5,0x6d,0xf5,0xf5,0x92,0xd8,0x31,0xe6,0x90, 0x34,0xae,0x2d,0x44,0xda,0x9b,0xc8,0x84,0x56,0xb8,0xa1,0x45,0xee,0xe8,0x44,0xff, 0x3a,0xf4,0x57,0xba,0xe0,0x4e,0xda,0x78,0x73,0xf6,0x5a,0x91,0x61,0x2d,0xbe,0x5a, 0xc4,0x70,0xd7,0x89,0xa8,0x52,0xe8,0x59,0x4b,0xdf,0x2f,0xed,0xd7,0xe4,0xc0,0xb6, 0xd9,0x96,0x90,0xe0,0xf6,0x83,0x5c,0xfd,0x6b,0x2,0x5d,0x70,0x25,0xda,0xa1,0x19, 0xa4,0x4f,0xeb,0x2b,0x86,0xc,0x15,0x90,0x3a,0xa9,0xfb,0x5b,0x11,0xe7,0x28,0xe2, 0x4d,0xba,0x6b,0x7,0x58,0xd0,0xbb,0xd1,0x3e,0x86,0x7b,0x1e,0x91,0x2a,0xd7,0xb, 0xea,0xe9,0xd5,0xa9,0x69,0x15,0x34,0xc2,0xec,0x45,0x9e,0x8f,0x13,0xe4,0xac,0x70, 0x85,0x98,0x31,0xed,0x20,0x62,0x84,0x89,0xd2,0x88,0x14,0xe0,0x2d,0xe2,0x4d,0x55, 0xf9,0x2b,0xad,0xf3,0x86,0xe7,0x4e,0xfa,0xc4,0xe,0xb0,0x75,0x98,0xd1,0xf3,0x6f, 0x3f,0xaf,0x49,0xd7,0x8c,0x7e,0xa3,0x82,0xfe,0x5b,0x4c,0xe8,0xf4,0x9d,0x7f,0xfa, 0xe4,0xde,0xdc,0xfb,0x27,0x56,0xb9,0x41,0xd6,0x52,0x67,0x88,0x1a,0xd9,0x42,0x25, 0xe,0xa8,0x8b,0xb7,0x9e,0x3b,0x95,0xcc,0x1b,0x59,0xdc,0x89,0x73,0x6a,0xe,0xb4, 0x46,0xef,0xdc,0xfe,0xdb,0x2d,0xc,0xf7,0x6c,0x3a,0x65,0xa,0xdd,0x5f,0xd0,0x79, 0xcd,0xe0,0xa6,0x17,0x77,0xcc,0x1b,0x86,0xba,0x77,0x67,0xf5,0x4f,0xc8,0x5c,0xe0, 0x8,0x11,0xe,0x66,0x10,0x8e,0xba,0x51,0x5,0x95,0xc1,0x99,0xca,0xe0,0xcd,0xdb, 0xc8,0x1d,0x5a,0xb,0x5b,0x3e,0x40,0x9f,0x72,0xc2,0x9d,0x19,0xe5,0x9e,0x51,0xf9, 0x5d,0xbb,0x86,0x9f,0x8e,0x8e,0x74,0x6a,0x5d,0xb6,0x73,0xb9,0x33,0x6c,0x5b,0xed, 0x2e,0xe4,0x40,0x2e,0x82,0xde,0xb1,0x12,0x3e,0xc2,0x14,0xc2,0xed,0x4c,0x64,0x43, 0x45,0x7e,0x54,0x35,0x6f,0xde,0x9,0x9b,0x23,0x83,0x3b,0x29,0x2e,0xed,0x20,0x68, 0xb8,0x69,0x99,0xb9,0xde,0xa7,0xf4,0xdc,0x21,0x65,0xf2,0x81,0xa6,0x53,0xbb,0xe8, 0x85,0x67,0x4c,0xb5,0xe0,0x74,0x2f,0x80,0x8,0x7,0xe8,0xfd,0x3a,0x61,0xd8,0x57, 0x61,0x76,0xc6,0x12,0x30,0x91,0xb,0xb9,0x9c,0xd1,0x22,0x6f,0xde,0xdb,0x1c,0x91, 0x58,0x18,0x91,0xe0,0x6c,0xe,0x6e,0x9d,0xea,0x87,0x30,0xdc,0x35,0x62,0xf2,0xa, 0xad,0x17,0x74,0x58,0x3d,0xb0,0xe9,0xe9,0xdc,0x39,0x43,0x61,0xfb,0xea,0x49,0x12, 0xfa,0xe7,0x39,0xb0,0xd2,0xd,0x52,0x3c,0x2d,0x79,0xbd,0x4a,0x72,0x40,0x5d,0xbc, 0x19,0xdc,0x79,0x17,0x6d,0x4e,0xf2,0xb8,0x76,0xb0,0xac,0x5f,0x93,0x93,0xc,0x77, 0x7d,0x90,0xbc,0x7c,0xf0,0x17,0x5f,0x7d,0x5a,0xa3,0x6f,0x90,0x8d,0xf1,0x8b,0x9d, 0x3e,0xa3,0x78,0xfd,0x4b,0x72,0x80,0xb3,0x1,0x2c,0x7,0xbc,0xad,0x21,0x14,0xe5, 0xf,0x45,0xfd,0xa9,0xa,0x5d,0xf3,0x26,0xce,0xa5,0x13,0x5c,0x3d,0x98,0xa7,0x32, 0x4e,0xa6,0x7,0xbc,0xf1,0xdc,0x51,0x95,0x37,0xe4,0x3,0xfc,0x86,0x1a,0x3e,0xaf, 0xfd,0x71,0xd,0xca,0x7,0xcb,0xbb,0x56,0x5c,0xcf,0xae,0xf5,0xd7,0xb3,0xe2,0x5c, 0x3a,0xc2,0x8e,0xd5,0x6e,0xb0,0x9d,0x7d,0xcf,0x96,0x3c,0xe,0x4c,0x84,0xb4,0xd9, 0xc3,0x91,0x3,0x66,0x10,0x6a,0x6b,0xac,0x1a,0xd4,0xe0,0x8c,0x2a,0xbc,0x89,0x1b, 0xdf,0x49,0xad,0xdc,0xcf,0xcd,0x13,0xa5,0xef,0x9c,0xcd,0x89,0xc1,0x79,0x1b,0xdd, 0x9b,0x65,0xd5,0xa2,0xae,0x27,0x23,0xff,0xba,0x0,0x63,0xaf,0x1e,0xd,0xe3,0xd3, 0xa7,0x59,0xa0,0xee,0x3d,0x38,0xfd,0xb,0x39,0x20,0xdd,0xf,0x10,0x7,0xe8,0xdd, 0x8b,0xa1,0xf6,0xcd,0x20,0x4,0xf5,0xaa,0x2a,0x54,0xe6,0x8d,0x92,0xdc,0x89,0x74, 0x6a,0xa5,0xa6,0xfe,0x77,0xbf,0x35,0xbe,0x4a,0x15,0xee,0xd0,0x3c,0x70,0x5a,0xd7, 0x6,0xf4,0x1e,0x52,0x63,0x39,0xfa,0x6f,0xb3,0x7a,0x90,0xfe,0xc9,0x9c,0x79,0xc3, 0x79,0xfd,0x7b,0x8,0xf5,0x5f,0x91,0x3,0x6e,0x62,0x1c,0xc8,0x58,0x38,0x92,0x7d, 0xe6,0x7a,0x30,0xea,0x27,0x58,0xd,0x1e,0xe8,0x82,0x3b,0x65,0xfc,0xbb,0x22,0x55, 0x29,0xf,0xaf,0x5d,0xd0,0xa1,0xaf,0xaa,0x3a,0xee,0xd0,0xfa,0xfd,0xb2,0x1,0x4d, 0xe8,0x1d,0x5f,0xad,0x65,0xe8,0x9e,0x7d,0x67,0x9a,0xdf,0x30,0xc3,0x27,0x3b,0x96, 0x39,0x8b,0xe8,0xdf,0x43,0x29,0x3f,0x40,0xa0,0x77,0x90,0x86,0x3b,0xb5,0x86,0xe0, 0xe1,0xc6,0xd2,0x61,0xab,0x1c,0xb4,0xc5,0x8f,0x7f,0x1e,0xdd,0x53,0x59,0xff,0xaf, 0xfe,0x7b,0x1,0xe1,0xf6,0x52,0xfc,0x99,0x8e,0xfd,0x95,0xae,0x79,0x13,0x87,0xf6, 0x70,0xb3,0x95,0xc1,0x63,0x86,0xbb,0x5f,0x4c,0x5a,0x2e,0xf8,0x8b,0x16,0xdf,0x7e, 0x62,0x45,0xf7,0x71,0xe6,0xd1,0xfb,0x68,0xd7,0x4a,0xe8,0x5f,0x92,0x3,0xab,0xa4, 0x73,0x20,0xdb,0x67,0x1c,0x44,0x3a,0x7f,0x8f,0x73,0x4e,0x23,0x21,0x82,0x15,0x42, 0x6,0x5f,0x54,0xe4,0x8d,0x24,0x77,0x7e,0x3b,0x7f,0x58,0x65,0xfd,0x53,0x49,0xf3, 0xb2,0xd4,0x9e,0xbf,0xaa,0x72,0xde,0x70,0xdc,0x89,0xa6,0x77,0x2f,0x62,0x5f,0x1a, 0x7f,0xfd,0xc9,0x10,0x19,0x31,0x60,0x3d,0xfb,0x36,0x5f,0x7b,0xc7,0xbb,0x76,0x46, 0xdd,0x4f,0xe6,0x51,0xd1,0x6,0x28,0xf2,0x3,0x84,0x9c,0x15,0x13,0x20,0xce,0xbd, 0xa7,0x18,0x7,0xd4,0x85,0x26,0xdc,0xf9,0x29,0x3f,0x51,0x2d,0xfd,0x9f,0x48,0xf5, 0xab,0x12,0x7f,0xa5,0x6b,0xee,0x84,0x63,0x8c,0x66,0xd3,0xea,0x6b,0x8a,0x1,0xbf, 0x96,0xa2,0xff,0x6,0x53,0xba,0xea,0x6d,0x49,0xf2,0xe8,0x2d,0xa2,0xff,0xc9,0x2a, 0xfa,0x81,0x72,0xe,0x10,0x92,0x3c,0xad,0x20,0xc8,0xce,0x14,0x79,0x67,0x24,0x84, 0x36,0x38,0xa1,0x2c,0x6f,0xf6,0x87,0x2d,0x53,0x4b,0xff,0x4f,0xef,0x5e,0x57,0xdb, 0xe6,0xbc,0xc9,0xbc,0x21,0xbf,0xe6,0xde,0xa9,0xfe,0x66,0x86,0x7b,0xaf,0x99,0x64, 0x31,0x98,0xdf,0xa7,0x61,0x5a,0xda,0x8c,0xc1,0xb0,0xe3,0xc7,0x29,0x32,0x6c,0x80, 0xf2,0xb1,0x0,0xb,0xb4,0x3,0xe9,0xb,0x30,0x2e,0x1c,0xd9,0x1a,0x2,0xe9,0x3d, 0xa7,0xaa,0x60,0xb8,0x91,0xc6,0xbc,0x49,0x99,0x31,0x48,0x2d,0xfd,0x53,0xc9,0x5f, 0xe3,0xae,0x73,0x7f,0x55,0xd9,0x31,0x72,0x84,0x43,0x73,0x98,0xdd,0xab,0x41,0x32, 0xc3,0xbd,0xdb,0x4e,0xb2,0x98,0xac,0x1a,0xd8,0x74,0x5f,0xe6,0x9c,0xe1,0x9c,0xfe, 0x65,0x72,0x40,0x79,0x3f,0x20,0xe0,0x40,0xf6,0x32,0x17,0x88,0x72,0xed,0x6,0x1, 0xa8,0x57,0x1,0x54,0xe6,0x83,0x9a,0xdc,0xf9,0xfb,0xd1,0xef,0x6a,0xe9,0xff,0xe1, 0xb5,0x8b,0xa8,0x23,0x93,0x4a,0xf3,0x55,0x9a,0xc4,0x39,0xca,0x22,0xd2,0xb1,0x39, 0xf8,0xf4,0x6d,0xbc,0x97,0x91,0x9e,0x7,0x6e,0xbe,0x7e,0x88,0xc1,0xb9,0xec,0x5, 0xe,0xb0,0xb3,0x82,0xfe,0x35,0xf3,0x3,0x14,0xf,0x10,0x92,0xbc,0xac,0x21,0x68, 0x44,0x33,0x31,0x1e,0xa8,0x3,0x55,0xb8,0x70,0xb1,0x38,0x4d,0x6d,0x1b,0x50,0x1a, 0xb8,0xa0,0x52,0xfd,0x95,0xae,0xb9,0x13,0xee,0xd0,0x8c,0xae,0x9,0x3b,0xcb,0x48, 0x5f,0xb,0x6e,0xed,0x6b,0x6d,0x78,0x23,0x67,0xe9,0x58,0x56,0xff,0x9a,0x73,0x40, 0xdc,0x6,0x8,0x38,0x90,0xb9,0x78,0x34,0xbd,0xb7,0x1e,0xfc,0x87,0x19,0x8a,0x41, 0x53,0x4e,0xc8,0x42,0xe6,0x42,0x47,0xb5,0xf5,0xff,0xe2,0x9f,0x3f,0x21,0x76,0xc2, 0xf,0x95,0xe6,0xaf,0x74,0xcd,0x1b,0x8a,0xff,0x36,0xc,0x31,0xb8,0xc6,0x48,0xcf, 0x1,0xb4,0xc5,0xfe,0x7a,0xb2,0x6d,0x85,0x2b,0xea,0x7e,0xaa,0xc,0xe,0xc8,0x9a, 0x13,0xca,0xce,0xd,0x4a,0xe3,0x40,0xce,0x32,0x57,0x48,0x98,0x36,0x8,0x2,0x6c, 0x4d,0x2b,0xf0,0x40,0x55,0x28,0xc3,0x81,0xc7,0xb7,0xaf,0xa8,0xcd,0x81,0x9b,0xa7, 0xf7,0x43,0x20,0xca,0x59,0x19,0xbe,0x4a,0xd7,0xbc,0x9,0xc3,0xf8,0x6f,0xcb,0x50, 0xa3,0x47,0xc,0xf7,0xae,0x5b,0xc9,0x62,0x1e,0x32,0xdc,0xf8,0x9f,0xed,0xab,0xdd, 0x60,0xe7,0x3a,0x59,0xfa,0x97,0x1e,0xb,0xa8,0xea,0x7,0x58,0x2c,0x77,0x85,0xcc, 0x45,0x63,0x20,0x7c,0x5c,0x27,0xf0,0x43,0x3d,0x2a,0x82,0x26,0x1c,0x29,0xd,0x59, 0xa2,0xb6,0xfe,0xa9,0x1c,0x4b,0xd,0xa8,0x14,0x5f,0xa5,0x6b,0xee,0x84,0x8e,0xa0, 0xf1,0x66,0xf4,0x8f,0xc,0xfd,0xb7,0x47,0xfd,0x3f,0x27,0x9d,0x72,0xfa,0x97,0xcd, 0x1,0x6d,0xf8,0x1,0x1,0x7,0xb2,0x11,0x49,0x5e,0x43,0x21,0x10,0xe3,0x82,0xad, 0x43,0xd,0x69,0x9d,0xaa,0x1c,0x4a,0xf0,0x42,0x19,0x4,0xd9,0x99,0xc1,0x9f,0xf7, 0x6e,0xa9,0x4f,0x80,0xb2,0x32,0xd8,0x89,0xed,0xac,0xc,0x7f,0xa5,0x4b,0xee,0x4, 0xa1,0xf,0xf0,0xb7,0x31,0x7a,0xc6,0x70,0xeb,0xc0,0x15,0xf4,0x4f,0x79,0xc2,0x7c, 0xd2,0xfb,0xba,0xa9,0xa,0x38,0xa0,0x42,0x6e,0x50,0x9e,0x1f,0x40,0xdd,0xb,0x38, 0x90,0xe5,0xe3,0xc,0x31,0xee,0xbd,0xc1,0xcf,0xc6,0x98,0xe5,0x81,0xaa,0xf0,0x53, 0xc0,0x9d,0xa2,0x2d,0xb3,0x35,0xb2,0x1,0x2f,0x9f,0xff,0x8b,0xb1,0xc4,0xc8,0x4a, 0xf1,0x57,0xba,0xe2,0x4d,0x8,0xfa,0x31,0x8a,0x3,0x64,0xe8,0xdf,0x9c,0xd5,0xff, 0xc6,0x19,0xe5,0xfa,0x97,0xf4,0x3,0x5a,0x9a,0x13,0x4a,0xda,0x0,0x1,0x7,0xb2, 0x97,0x8f,0x87,0xf4,0x85,0x4e,0x10,0xe6,0xdc,0x19,0xfd,0x94,0xa1,0x54,0xa8,0xc3, 0xd,0x16,0xc3,0x8c,0xe0,0xf6,0xf9,0x23,0x1a,0x71,0x80,0xe2,0xc1,0xc4,0x19,0x83, 0x75,0xee,0xaf,0x74,0xc5,0x9d,0x60,0xfb,0x16,0x2,0xfd,0x4b,0xb3,0xff,0x6d,0xc9, 0xfe,0xef,0x58,0x3b,0x5,0xf2,0xd6,0x4d,0x93,0xcd,0x1,0x6d,0xf8,0x1,0x29,0x1c, 0xc8,0x16,0x60,0xd9,0x78,0x16,0xc9,0xb3,0x87,0x43,0x90,0x63,0x1b,0xd8,0x62,0x6d, 0x20,0xe,0x19,0xbc,0x50,0x4,0xe2,0x40,0xac,0x87,0x5,0x3b,0x8e,0x35,0x29,0x7f, 0x3d,0xbc,0xb,0x91,0xe3,0xbb,0x29,0x65,0x73,0xd4,0x81,0x2e,0x79,0x13,0x68,0x67, 0x4a,0x9f,0xcf,0x64,0xe8,0xbf,0x75,0xa8,0xad,0xf1,0x3f,0xa4,0xe3,0xbc,0xf5,0xd3, 0xc4,0x39,0xa0,0xd,0x3f,0x20,0x2f,0x16,0x90,0xb0,0x1,0x2,0xe,0x64,0xfb,0xb8, 0x40,0xe2,0x4c,0x6b,0x8,0x74,0x68,0x5,0xbe,0xa8,0x7b,0x45,0xa8,0xc0,0x15,0x29, 0xbc,0x29,0xf6,0x9b,0xa7,0x91,0xfe,0xa9,0x3c,0xbc,0x7e,0x9,0x82,0x47,0xb6,0x55, 0xdf,0x16,0xe9,0x28,0xce,0x51,0xc4,0x83,0x60,0xfb,0x96,0x10,0xc0,0xc5,0x7f,0xd2, 0xe6,0x7f,0xcd,0x83,0x6d,0x8d,0x1e,0x93,0x5e,0x59,0xfd,0xaf,0x97,0xb4,0x1,0x53, 0xb5,0xee,0x7,0x94,0xe2,0xc0,0x32,0x17,0x8c,0xd,0xc6,0x41,0xfc,0x8c,0x21,0xe0, 0x8f,0xf2,0x2b,0xc3,0x3,0x45,0xf8,0xa9,0x38,0x5d,0x63,0xe,0xdc,0x3a,0x73,0x10, 0xfc,0x6d,0xcd,0x14,0xda,0x1c,0x6d,0x43,0x13,0x9b,0x13,0xec,0xd8,0x1a,0xcf,0xc1, 0xce,0xff,0x9a,0x4b,0xd1,0xbf,0x9,0xee,0x73,0x9d,0x74,0x22,0xd0,0x7f,0x45,0xe, 0x68,0xc3,0xf,0x28,0x19,0xb,0x88,0xe8,0x9f,0xe3,0x80,0xb,0x7b,0xf,0x4a,0xfc, 0xb4,0xc1,0x10,0xe0,0xd0,0x9a,0xd6,0xb2,0x39,0x58,0x2b,0xf,0x81,0xfe,0xfd,0x47, 0xb4,0x80,0xbb,0x97,0x4f,0x69,0xcc,0x81,0x8b,0xa5,0xd9,0x9c,0xae,0x15,0xd8,0x1c, 0x75,0xfd,0x95,0xb6,0x11,0x82,0xfa,0xdf,0x64,0x65,0x70,0x95,0x91,0x9e,0xff,0x35, 0xc0,0xff,0xce,0xe4,0x2c,0x75,0x41,0xbd,0x4f,0x2f,0xe7,0x80,0xca,0x7e,0x40,0x83, 0x39,0xa1,0x98,0xd,0x70,0x95,0xb0,0x1,0x2,0x8c,0x63,0x91,0x48,0x73,0xc6,0x51, 0xed,0xa9,0x3d,0x62,0xd8,0xac,0x24,0x82,0x47,0x77,0x80,0x27,0x77,0xae,0x6b,0xcc, 0x81,0x63,0xe9,0xc1,0x6a,0xd9,0x20,0xb9,0xbe,0x4a,0xc3,0x38,0x47,0x16,0x42,0x9d, 0xcc,0x61,0xfd,0x90,0xa6,0xa7,0x19,0xe9,0xeb,0x3f,0xd,0x7e,0x1c,0xdc,0xb4,0x34, 0x63,0xd1,0x28,0x71,0xfd,0xcb,0xe0,0x40,0xd5,0xf8,0x1,0x71,0xe,0x64,0x2d,0x1d, 0x87,0x71,0xa2,0x2d,0x84,0xe2,0x7c,0x61,0xb3,0xb5,0x61,0x5,0x2e,0x28,0x42,0xa4, 0x5b,0x6f,0xf8,0xfb,0xb1,0xea,0xd7,0x8,0x49,0x96,0x3d,0x11,0xab,0x14,0xda,0x1c, 0x6d,0x42,0x5d,0xde,0x84,0x8e,0x6e,0x7,0x2b,0x7,0xea,0xef,0x66,0xa4,0xaf,0xff, 0xd6,0xf3,0xe9,0xd7,0x24,0x29,0x5,0xc7,0x55,0xde,0x86,0xe9,0x15,0x38,0x50,0x65, 0x7e,0x60,0xb9,0x14,0x3f,0x20,0xa2,0x7f,0x42,0x26,0xfa,0x85,0x34,0x9c,0x37,0x46, 0xb9,0xf7,0x81,0xad,0x76,0xcd,0x61,0x23,0xea,0x56,0x1e,0x44,0x39,0x10,0x3b,0x75, 0x10,0x3c,0xc7,0x79,0x9d,0x26,0x85,0xae,0x33,0xcc,0x58,0x34,0x46,0x39,0xdb,0xa3, 0x86,0xbf,0xd2,0x16,0x68,0xfc,0x2f,0xea,0xd3,0x28,0x81,0x91,0x7e,0xfd,0xc7,0x17, 0xb3,0x7b,0x34,0x5c,0x9f,0x38,0xa5,0x2f,0xe4,0x93,0xfe,0x25,0x39,0xa0,0x94,0x1f, 0xd0,0x52,0x6e,0x50,0x5,0x3f,0x20,0xd0,0xbf,0x10,0x4b,0xc6,0x42,0xa2,0xa7,0x35, 0x4,0x8f,0xe9,0x88,0xfa,0x35,0x84,0x8d,0x96,0x4d,0x15,0x22,0xd1,0xdb,0x46,0xe3, 0x79,0xe1,0xbf,0x4f,0x1f,0x41,0xb8,0x6b,0x77,0x95,0x6d,0x90,0xb2,0xfe,0x4a,0x1b, 0xbc,0x9,0x1b,0xd5,0x16,0x3c,0x7f,0xd0,0x5b,0xcb,0x48,0xbf,0xfe,0xeb,0x43,0xd7, 0xef,0xbf,0x9b,0x1c,0xe7,0xd6,0x1d,0xf5,0x3f,0x93,0xe3,0xc0,0x7a,0x75,0x38,0xa0, 0xa5,0x35,0x22,0x15,0xfd,0x40,0xb9,0xfe,0x39,0xe,0x10,0x52,0x17,0x38,0x42,0x94, 0x47,0x5f,0xf0,0x1f,0x69,0xe,0x1b,0x2c,0xd,0x10,0x4d,0x65,0x22,0x7b,0x85,0x1b, 0x9b,0xe7,0xd5,0xa4,0xdc,0x3c,0x7b,0x8,0x36,0x59,0x1b,0x29,0xb4,0x39,0xda,0x82, 0x4a,0xdc,0x19,0x6a,0x4,0x11,0xa3,0xdb,0xc3,0xe8,0x76,0xdf,0xb8,0x33,0x32,0x9e, 0x5,0xd0,0xa1,0xe1,0x67,0xbd,0xa2,0xe8,0x1d,0x2e,0x9b,0xbd,0x51,0xff,0x33,0xd4, 0xf6,0x3,0xca,0xc6,0x2,0x9a,0xfb,0x1,0x97,0xa,0x7e,0x40,0x92,0x3,0x19,0x8b, 0xc7,0xb0,0x48,0x9d,0x8f,0x5c,0x98,0xcc,0x71,0x61,0xa3,0x95,0x74,0xe,0xec,0x8d, 0xfe,0x51,0x23,0xfd,0x53,0x29,0xd,0x5b,0xa1,0x94,0xcd,0x11,0x83,0x92,0xbe,0x4a, 0x13,0x4,0x8e,0x6c,0xf,0xa1,0xb6,0xa6,0xd0,0xba,0xfe,0xe7,0xdd,0xa5,0xe9,0x9e, 0x2f,0x26,0xa1,0xb6,0xc6,0x4f,0x76,0xae,0x9f,0xc1,0xea,0xbf,0xca,0xfd,0x80,0x8c, 0xdc,0xa0,0xb2,0x7e,0x80,0xd5,0xbf,0x8,0x7,0x38,0x8c,0x86,0xd4,0x79,0x8e,0x10, 0x33,0x6d,0x10,0x84,0x8c,0xeb,0xa,0xbe,0x76,0x2d,0x28,0x26,0x16,0xe2,0x7c,0x49, 0x86,0x46,0xfa,0xff,0xef,0xd9,0x3f,0x10,0x34,0xb6,0x93,0x5c,0x5b,0x23,0x9,0x95, 0xf9,0xa2,0x4,0x6f,0x24,0xb9,0x13,0xe6,0xf2,0x3,0xe5,0x7e,0x1e,0x32,0xf2,0xef, 0xff,0xd0,0xdb,0x6c,0x65,0x78,0x34,0x77,0xd5,0x44,0x5e,0xff,0x33,0x74,0xe0,0x7, 0xd4,0x5f,0x23,0x52,0xd7,0xf,0x48,0x72,0x20,0x7d,0xd1,0xe8,0x72,0x2c,0x1c,0x5, 0xa9,0x73,0x1d,0x20,0x7a,0xca,0x40,0x8,0x1e,0xd7,0xd,0x2,0x46,0x77,0x84,0xc7, 0xb7,0xaf,0x6a,0xc4,0x81,0xb3,0xf9,0xc9,0x1c,0x9f,0x2c,0xcb,0xa1,0xa,0x1f,0xb4, 0xcd,0x9b,0xcd,0x43,0x8d,0x21,0x66,0xca,0x0,0x58,0x67,0x69,0x78,0x88,0x91,0x7f, 0xff,0xd7,0x17,0x4b,0x2d,0x9a,0x84,0x65,0x2e,0x70,0x62,0xd7,0x81,0x4,0x1c,0x50, 0xc9,0xf,0x54,0xc2,0x1a,0x91,0x4c,0xe,0x28,0xe1,0x7,0x4,0x36,0xa0,0x9c,0x3, 0xa3,0x58,0xe,0x10,0xd2,0x58,0x38,0xc1,0xee,0xd0,0xe5,0x1a,0xe9,0x9f,0xe6,0x3, 0xa1,0xe3,0x7b,0x88,0xd9,0x15,0x95,0x60,0xa9,0x2a,0x77,0xc8,0xbf,0x9b,0xc0,0x16, 0x9c,0xfb,0xf8,0x39,0xb4,0x86,0xc0,0x51,0x1d,0x20,0x14,0xb9,0x1c,0x8e,0xf3,0xdb, 0x28,0x8f,0xfe,0x2c,0xb7,0x93,0x66,0xd9,0xc1,0x2,0x8b,0xc6,0xc1,0x32,0x62,0x3f, 0x41,0xa9,0x3e,0xb1,0x63,0xfd,0x49,0x9,0x93,0x7a,0x41,0xa1,0xaf,0xb7,0x8,0x7, 0x14,0xf8,0x81,0x4a,0x5a,0x23,0x92,0x96,0x1b,0xd4,0xc4,0xf,0x48,0xe7,0x80,0x13, 0xa4,0x21,0xff,0x7f,0xff,0xe5,0xac,0x46,0x1c,0x38,0x92,0x1e,0xcc,0xea,0x6e,0xdd, 0x10,0xe5,0x20,0xaa,0xff,0x8d,0x18,0x43,0x6e,0x1a,0x66,0xa,0xbe,0x36,0xcd,0x50, 0xa7,0x2d,0xc1,0xcf,0xbe,0xd,0xf8,0x61,0xdc,0x12,0xe8,0xd4,0x1,0x2,0x71,0x5e, 0x13,0x32,0xae,0xb,0x84,0xb9,0xf6,0x80,0x8,0xb7,0x3e,0x10,0x3d,0xb9,0x3f,0xfa, 0xb2,0x21,0x10,0xcb,0x62,0x30,0x7e,0xe7,0x81,0xf3,0x5a,0x42,0x34,0x22,0xc1,0xdb, 0xe,0x62,0x26,0xf5,0x81,0x31,0xed,0xbe,0x9d,0xc8,0x28,0x78,0x1e,0x68,0xd3,0x2f, 0x3f,0x6c,0x13,0x61,0x6f,0xfa,0x5f,0xc1,0x96,0x59,0x62,0x36,0x40,0x3b,0x7e,0x40, 0xa,0x7,0x34,0x5d,0x23,0xd2,0x80,0x3,0x92,0x7e,0x40,0xd4,0x6,0xec,0xd3,0x30, 0x16,0x7c,0xf6,0xd7,0x53,0x48,0x46,0xbf,0x92,0x34,0xcb,0x16,0x12,0xbc,0x86,0xb2, 0x88,0x9f,0x69,0xd,0xb1,0x33,0x86,0x70,0x98,0x4e,0x18,0xcc,0x7e,0xc6,0xcd,0xb0, 0x46,0x58,0xb1,0xff,0x27,0x78,0xd,0x83,0x4,0x4f,0xdc,0x57,0x0,0xfc,0x4d,0x80, 0xb8,0x99,0x56,0xec,0x7e,0x1c,0x2c,0x59,0xc4,0x4e,0xb7,0xe4,0xcf,0xc5,0xe9,0x3f, 0x56,0x42,0xff,0x84,0xf4,0x25,0xae,0x18,0xfb,0x99,0xbd,0x68,0x58,0xe7,0xa3,0x56, 0xf2,0x74,0xcf,0x97,0xef,0x7c,0xad,0xd,0x8f,0x6f,0x43,0x7b,0x9c,0xbf,0x71,0xa6, 0x8a,0x7e,0xe0,0xcd,0xca,0xd,0xaa,0xe6,0x7,0xc4,0x39,0x90,0x81,0xc7,0xbd,0x7c, 0xf1,0x5c,0x23,0xe,0x14,0xf9,0x2f,0x80,0xa4,0xd9,0x76,0x3c,0x6c,0x59,0x2e,0x10, 0x12,0x67,0xd,0xe7,0xe0,0x3d,0x9c,0xcd,0x3d,0x10,0x12,0xbc,0x6c,0x38,0xdd,0xf3, 0x10,0xea,0xdf,0x53,0x42,0xff,0x33,0xa5,0xe9,0x9f,0xe7,0x80,0xc,0x1b,0x90,0x3c, 0x7f,0x14,0x5d,0xf7,0x79,0x98,0x51,0xee,0xf9,0x2f,0xb5,0x16,0x59,0x34,0xf6,0xcd, 0xc2,0x31,0x90,0xbf,0xc9,0x93,0xd3,0xbf,0xba,0xb1,0x40,0x55,0xac,0x11,0xc9,0xb4, 0x1,0xce,0x2a,0xfb,0x81,0xfb,0x57,0x7e,0xd2,0x48,0xff,0xa7,0x77,0xc4,0x43,0xf2, 0x1c,0x3b,0x29,0x1c,0x18,0x2e,0xc2,0x1,0x1b,0x11,0xe,0x94,0xeb,0x5f,0xcc,0x6, 0x48,0x72,0x40,0xae,0xd,0x10,0xe7,0x0,0xfd,0x47,0xbe,0x7f,0x7e,0xef,0x46,0xf4, 0x2c,0x58,0xa5,0xde,0x1d,0x6e,0x65,0x56,0xb7,0x7f,0xac,0xf3,0xf7,0x65,0x25,0xc8, 0x5f,0x49,0x1b,0xa0,0xfe,0x9c,0xb0,0xf2,0xd7,0x88,0xd4,0xf2,0x3,0x8b,0xca,0x6d, 0xc0,0xf5,0x53,0xfb,0x34,0xd2,0xff,0xad,0xb3,0x87,0x59,0xfd,0x97,0x73,0xc0,0xb6, 0x22,0x7,0xe4,0xd8,0x0,0x6d,0xf8,0x81,0x8c,0xa5,0xae,0x10,0xe9,0xd8,0xb6,0xac, 0xaf,0x49,0xed,0xbe,0xca,0xe8,0x9e,0x2f,0x7a,0xfe,0x43,0x8d,0xcf,0xe4,0xa1,0xbe, 0xb,0x58,0xfd,0x4b,0xe1,0x80,0x36,0xd6,0x88,0xa4,0xe6,0x6,0xab,0xc2,0xf,0x48, 0x8f,0x5,0x7e,0x39,0x54,0xa0,0x91,0xfe,0x1f,0x5e,0xbf,0x8c,0xba,0x1f,0x21,0xc3, 0x6,0x68,0xcb,0xf,0x58,0xc9,0xf5,0x3,0xe9,0x4b,0xc7,0x53,0xfe,0xef,0x14,0xa3, 0xda,0xfb,0x40,0x3e,0x5e,0xd0,0xa7,0xd1,0xca,0x8c,0x5,0xf6,0x50,0x48,0xb9,0x40, 0x29,0x1c,0x78,0xa3,0xfc,0x80,0x92,0x6b,0x44,0xaa,0xce,0x9,0xaf,0x1d,0xdf,0xad, 0x91,0xfe,0xff,0x7c,0x70,0x87,0xd7,0xbf,0x2c,0xe,0x28,0xe1,0x7,0xe4,0x71,0x40, 0x81,0x1f,0x48,0xf4,0x46,0x8e,0xe1,0xf1,0xb3,0x7b,0x36,0xa4,0x77,0xc3,0x29,0xf3, 0xec,0x3f,0x61,0x69,0x55,0xff,0x93,0xf6,0x51,0xf6,0x2d,0x5f,0x94,0x4,0x2c,0x94, 0x6d,0x3,0xde,0xc1,0xdc,0xa0,0x28,0x7,0xee,0x5f,0xbd,0xa0,0x91,0xfe,0xff,0xfd, 0xe3,0x91,0x98,0xfe,0x95,0xf5,0x3,0x72,0x63,0x1,0x15,0xfc,0x40,0xf6,0xa,0xf, 0xba,0xe7,0xeb,0x79,0xb3,0xaf,0x3f,0x69,0xa7,0x8a,0xee,0xf9,0xf2,0xd5,0x26,0x4b, 0xc3,0xe2,0x9d,0xa8,0xd3,0x82,0x8d,0x9e,0xa,0xfc,0xc0,0xdb,0xbb,0x46,0x24,0x2b, 0x16,0xc8,0xc4,0x63,0x5e,0xbe,0x78,0xa6,0xd9,0xf8,0xbf,0xff,0x1b,0xce,0x1,0x47, 0x28,0xb0,0x1,0xca,0xf9,0x81,0x4,0x29,0x36,0x40,0x1a,0x7,0x84,0x7e,0x0,0xbf, 0x67,0xfa,0x4c,0xa0,0xdc,0x42,0x21,0xea,0xb2,0xae,0x1a,0xfa,0xff,0x60,0x5a,0xd7, 0x6,0x1e,0x29,0x53,0xfb,0xc3,0xae,0xc0,0x45,0x22,0xfa,0xd7,0x8e,0x1f,0x78,0x13, 0xd7,0x88,0x44,0x6d,0xc0,0xe1,0x14,0x7f,0x8d,0x74,0x4f,0xe5,0xd1,0xad,0x5f,0x51, 0xff,0xf6,0x22,0xfa,0x57,0xd5,0xf,0x28,0x19,0xb,0x48,0xb1,0x1,0x59,0xcb,0xdd, 0x20,0xd6,0xad,0x27,0xbd,0x1b,0x96,0xd6,0xfb,0xd4,0x7a,0x7,0xcc,0xa7,0x38,0x5f, 0xc,0x1e,0x6e,0x7c,0xa5,0xc8,0x6f,0x3e,0x14,0x6c,0x9a,0x29,0x6e,0x3,0x94,0xcd, 0xd,0xbe,0x85,0x7e,0x80,0x78,0x44,0x63,0x57,0xd3,0x72,0xf3,0xcc,0x1,0x48,0x21, 0xfd,0x4b,0xd8,0x0,0xad,0xcc,0x9,0xe5,0xf9,0x1,0xdc,0xce,0x5d,0x3b,0x83,0xae, 0xf5,0xbe,0xf2,0xa9,0x66,0xef,0x80,0xfa,0x60,0x6e,0xaf,0xc6,0xf3,0xd2,0xbc,0xac, 0x39,0x1b,0x20,0xc9,0x81,0x4a,0x5a,0x23,0xba,0x76,0x6c,0x17,0xec,0x8d,0x58,0x55, 0x69,0x7e,0xe0,0xea,0xd1,0x12,0x8d,0x75,0x4f,0xe5,0x6c,0x41,0x32,0xaf,0xff,0x8a, 0x1c,0x10,0xd3,0xff,0x6c,0xed,0xfa,0x81,0xcc,0x65,0x13,0x21,0x61,0x4a,0x7f,0x8a, 0xfb,0xe6,0xa8,0x3b,0xf6,0x5,0x45,0xaf,0x56,0xad,0x46,0x21,0x76,0xc6,0xb7,0x8b, 0x59,0xfd,0x7b,0x6a,0xc7,0xf,0xa8,0x90,0x1b,0xa4,0xfb,0x51,0x4,0x85,0xee,0xe3, 0x3d,0x91,0x1d,0xce,0xee,0xab,0x8b,0x35,0x22,0xc2,0xe5,0x7d,0x3b,0xb4,0xa2,0x7b, 0x2a,0xa5,0x11,0x2b,0x59,0xfd,0xb,0x39,0xa0,0x92,0x1f,0x50,0x7f,0x4e,0xb8,0x7d, 0x83,0x17,0x4,0xd9,0x18,0xdd,0xfc,0xe4,0x13,0x46,0x4f,0x13,0xdd,0xf3,0xa5,0xfa, 0x62,0x8b,0xc6,0xcb,0x32,0xe6,0xda,0xa2,0xd,0x58,0x28,0xc7,0xf,0x48,0xe1,0x80, 0x16,0xd6,0x88,0x4a,0x2,0x16,0x54,0xe8,0x57,0x5a,0x63,0xbf,0x79,0xe6,0x20,0x1c, 0x49,0xde,0xca,0xee,0xa7,0xf9,0x1a,0x91,0x33,0x14,0x6e,0x99,0xd,0xbf,0xff,0x7c, 0x46,0x6b,0xba,0x27,0x19,0x29,0x87,0x98,0x32,0xcf,0x41,0x84,0x3,0x23,0x34,0x88, 0x5,0x94,0xf3,0x3,0x34,0xf6,0x13,0xd1,0x7,0xcc,0xeb,0xd5,0x78,0x29,0xa3,0x9d, 0xf7,0x3f,0x32,0x4d,0xbf,0xfc,0xb8,0x49,0xf8,0x8,0x93,0xfb,0xbb,0x43,0x7d,0xa0, 0x60,0xb3,0xa7,0x8e,0xfd,0x80,0x38,0x7,0xf6,0xc7,0xc8,0x5f,0x87,0xa1,0x7e,0xbe, 0x75,0xee,0x30,0x9c,0xde,0x11,0xb,0xbb,0x43,0x7c,0xd0,0x2f,0x4c,0x54,0xda,0xf, 0xd0,0xe7,0xde,0xa8,0x35,0x70,0xfd,0xc4,0x1e,0xb5,0x9e,0x15,0x29,0xaf,0x5c,0x3b, 0x5e,0xca,0xe9,0x5e,0x0,0xa9,0x1c,0xd0,0x86,0x1f,0x28,0xe7,0x0,0xfd,0x96,0xb7, 0x65,0x1e,0x84,0xd8,0x9a,0xdc,0xad,0x53,0xab,0x56,0x63,0x6d,0xe8,0x9e,0x2f,0x1f, 0x2c,0xb4,0x68,0xb4,0x20,0x75,0xe6,0x20,0xd8,0x13,0xb6,0x42,0xe8,0x7,0x94,0xcd, 0xd,0x6a,0xb2,0x46,0x74,0x3c,0x23,0x58,0xa5,0x7e,0xa7,0x39,0xdb,0x83,0x6b,0x17, 0xe1,0xca,0xd1,0x62,0x38,0x5f,0x94,0x2,0xc7,0x33,0x43,0xe1,0x68,0x5a,0x20,0x1c, 0x8c,0xdf,0x8,0x47,0x53,0x3,0xe1,0x54,0x6e,0x34,0x5c,0xde,0xbb,0xd,0xee,0x5e, 0x3e,0xd,0xcf,0xff,0xfa,0x43,0xab,0x3a,0x17,0x2d,0x85,0x7e,0xf3,0x20,0x55,0xaa, 0xfe,0x95,0xf1,0x3,0xea,0xe5,0x6,0x77,0x6e,0xf4,0x86,0x78,0xf7,0xde,0x34,0xf6, 0xe7,0x32,0xda,0x7d,0xff,0x33,0xbd,0x50,0xbc,0x4e,0xa0,0x8d,0xf1,0xa9,0xe2,0xad, 0x73,0xa1,0x78,0xcb,0x1c,0xd5,0xfc,0x80,0x6,0xb9,0xc1,0x73,0x85,0x29,0x3a,0xd3, 0x91,0xae,0xca,0x9d,0x8b,0x27,0xd8,0xeb,0xd,0xe9,0x3a,0x33,0xf5,0x39,0xa0,0x9a, 0x1f,0x48,0x99,0x37,0x12,0xb6,0xaf,0x9b,0x1,0x7e,0xc3,0x8c,0x4e,0xd4,0x56,0xef, 0x7d,0x6f,0xa,0xcb,0xb8,0xe,0xdf,0xd,0x8e,0x1b,0xdb,0xfe,0xe5,0xde,0xa8,0xd5, 0x9c,0xd,0x90,0xe7,0x7,0xb4,0x34,0x27,0xfc,0xe5,0x40,0x5e,0x55,0xab,0x53,0xa5, 0x42,0xcf,0x8f,0xdd,0xb9,0x7e,0x26,0xa7,0x7f,0x9e,0x3,0xca,0xf8,0x1,0x4d,0xd7, 0x88,0xa,0x3,0x96,0x42,0xcc,0xe8,0xb6,0x2f,0x47,0xb5,0xf9,0xa6,0xbf,0x2e,0x74, 0xcf,0x97,0x9a,0xeb,0x6,0x37,0x8d,0xd9,0x86,0xfe,0x74,0x77,0xf0,0x12,0x95,0xfd, 0x80,0x3a,0x6b,0x44,0x14,0xe7,0xbd,0x4d,0xe5,0xd4,0xb6,0x68,0xd4,0xfb,0xc8,0x72, 0xfd,0xcf,0x97,0x63,0x3,0xb4,0x94,0x1b,0xcc,0x5e,0x35,0x19,0xd2,0xb0,0x9e,0x35, 0x83,0xd,0xa2,0x48,0x47,0x3a,0xd4,0x3f,0xd3,0xb5,0x51,0x6d,0xc3,0x8,0x3b,0xd3, 0x7b,0xfb,0x70,0x6e,0x53,0xb4,0x75,0xb6,0x84,0xd,0xd0,0x7e,0x6e,0xf0,0xfe,0x55, 0xcd,0xd6,0xe0,0x2b,0xb3,0x5c,0x3d,0xba,0xb,0xd2,0x16,0x8c,0x64,0x21,0xc6,0x1, 0x1d,0xfa,0x81,0x94,0xf9,0x4e,0x50,0x84,0x63,0x3f,0xd4,0xce,0xf8,0xf7,0xd6,0xdf, 0xd6,0x96,0x76,0x5f,0x9f,0xb6,0x4b,0x35,0xaf,0x1e,0x8d,0xc6,0x27,0x8d,0xef,0x5c, 0x76,0x30,0x6e,0x3,0xea,0xdf,0x4b,0xa7,0xb9,0x41,0x6d,0xe4,0xe1,0x2a,0xa3,0xdc, 0x38,0x7d,0x0,0xd2,0x17,0x8d,0x61,0xaf,0x1d,0x2c,0xd7,0xff,0x48,0xd,0xfc,0x80, 0x14,0xe,0x48,0xac,0x11,0x11,0x76,0x85,0xad,0x86,0x68,0xe7,0xe,0xaf,0x3d,0x7b, 0x34,0x70,0x66,0xd4,0x7b,0xcf,0xaf,0x3a,0xe5,0x43,0xf4,0x3,0x61,0x99,0x73,0xed, 0xe0,0x40,0xf4,0x8f,0x4a,0xfa,0x1,0xf5,0xe6,0x84,0x2f,0xfe,0xf9,0xab,0xaa,0x55, 0xab,0xb0,0xfc,0x72,0x30,0x1f,0xd2,0x17,0x8f,0x11,0x5e,0x3b,0x2a,0xd5,0x6,0x48, 0xfa,0x1,0x9e,0x3,0x9a,0xf8,0x81,0x22,0xff,0xc5,0x90,0x8c,0xbe,0x7f,0xed,0x60, 0x3,0xba,0xae,0xf7,0xc3,0x4a,0xd2,0x3d,0x5b,0x1a,0xd7,0x66,0xea,0x4,0xd3,0x7c, 0x60,0xcb,0x6c,0x9c,0x77,0x2f,0xd1,0x5e,0x6e,0x50,0xc4,0x6,0xd0,0x7e,0x6f,0x72, 0xa1,0xdc,0xc3,0xe1,0xe4,0xad,0xe2,0xd7,0xe,0xab,0xc2,0x1,0xd,0xfc,0x40,0xee, 0x6a,0xb4,0x91,0x6b,0xa7,0xd1,0x3d,0x1d,0xc7,0x49,0x17,0x95,0xa9,0x7b,0x41,0x71, 0x6c,0x53,0xcf,0x3c,0xda,0xbe,0xf9,0x93,0xfd,0x31,0xeb,0xa0,0xc4,0x7f,0x9e,0xd6, 0xfd,0x0,0x3d,0xb3,0xeb,0xf9,0x5f,0x4f,0xab,0x5a,0xcd,0x15,0x4b,0x59,0x19,0xdc, 0x38,0xb5,0xf,0xb6,0xad,0x9d,0x22,0xf3,0xfa,0x71,0x99,0x1c,0xd0,0x82,0x1f,0xc8, 0x58,0xea,0x2,0x25,0x21,0x2b,0x21,0xdc,0xce,0xec,0xf1,0x88,0x16,0xf5,0xa4,0x3d, 0xcb,0xa7,0xb2,0x4a,0xb5,0x39,0xbd,0x1a,0xba,0x26,0x4c,0xe8,0xfc,0xfa,0x48,0xd2, 0x16,0xa0,0xdc,0x80,0x2e,0x72,0x83,0x7b,0xc2,0x57,0xc0,0x4f,0xc5,0x69,0x70,0xff, 0xca,0x79,0x76,0x7e,0x55,0x55,0xe5,0xf5,0xab,0x57,0xec,0x7c,0xa4,0xc8,0x6f,0x9e, 0xc2,0xeb,0xc7,0xe5,0xdb,0x80,0x8a,0x1c,0x50,0x76,0x8d,0x88,0xce,0xbf,0x2f,0x7a, 0x3,0xbd,0x8f,0xf9,0xb5,0x77,0xe5,0xfa,0x7c,0x59,0xe5,0x83,0x95,0x3,0xf4,0x97, 0x25,0x79,0xf4,0x84,0xa3,0x29,0x5b,0xd9,0x31,0xab,0xcb,0x35,0xa2,0x9d,0x78,0xcc, 0xa1,0xf8,0x8d,0x70,0x71,0x57,0x26,0xdc,0xb9,0x74,0x12,0xfe,0xfd,0xe3,0xb1,0x6e, 0x95,0x8e,0x63,0xfd,0xf1,0x6f,0x57,0xe1,0x6c,0x5e,0x2,0xca,0x34,0x55,0xa5,0xfb, 0x88,0xb4,0xed,0x7,0x52,0x31,0xd6,0x3f,0x10,0xbf,0x5,0x12,0x26,0xfe,0x50,0xb6, 0xbc,0x9f,0x3e,0x5d,0xd3,0xa5,0xd5,0x1c,0x9f,0x6,0xa5,0xc6,0xba,0x21,0x6,0x81, 0x69,0x9e,0x3,0xe1,0x58,0x8a,0x1f,0x14,0x6e,0xf6,0xaa,0xd4,0x35,0xa2,0xc2,0xad, 0x73,0xe0,0x58,0x5a,0x20,0x5c,0xdc,0x9d,0x85,0x71,0xf8,0x7e,0x78,0x78,0xe3,0x32, 0x3c,0xfb,0xf3,0x9,0x29,0x4f,0x65,0x75,0xbf,0xfa,0xef,0x39,0x3c,0xb9,0x73,0x8d, 0x5d,0x3,0x3e,0x9e,0x19,0x82,0x7c,0x9b,0xae,0xf6,0xf5,0xe3,0x8a,0xfc,0x80,0x74, 0xe,0x48,0x5f,0x23,0x4a,0xc1,0xfd,0xf7,0xc5,0x6c,0x82,0xc4,0xc9,0x7d,0x61,0xf5, 0x20,0x7d,0x7a,0x87,0x83,0x2a,0xef,0x73,0xaf,0x8c,0xf2,0xd1,0x66,0x6b,0xa3,0x94, 0xac,0x39,0xb6,0x70,0x3c,0xd5,0x1f,0xa,0x7d,0xbd,0x2a,0x6d,0x8d,0x48,0xd6,0x7d, 0x44,0xdb,0xf1,0xb8,0xdd,0x21,0x4b,0x61,0x5f,0xe4,0x2a,0x2e,0xff,0x8f,0x1c,0xa1, 0xf5,0xe3,0x33,0x3b,0xe2,0xe0,0x6c,0x7e,0x22,0x9c,0xcc,0x89,0x80,0x23,0x28,0xeb, 0x1,0x9c,0xc7,0x96,0x86,0x2e,0x83,0xbc,0x8d,0x5e,0x5a,0xbf,0x8f,0xa8,0xa2,0xfe, 0x55,0x8f,0x5,0x52,0xe7,0x3b,0xc0,0x81,0xd8,0xcd,0x90,0x32,0x73,0x8,0x3d,0xd3, 0x22,0x85,0xfa,0xba,0xaa,0x95,0x2d,0xad,0xb4,0xa8,0xc7,0x7c,0x16,0x30,0xcc,0xb8, 0x28,0x77,0x89,0x13,0x9c,0x4c,0xf,0x82,0x22,0xdf,0x59,0x95,0xb2,0x46,0x54,0xf5, 0xd7,0x8f,0xcb,0xbe,0x8f,0x48,0x53,0x3f,0x90,0xb6,0x70,0x34,0x1c,0x4a,0xf4,0x83, 0x74,0x1c,0x57,0x5b,0x87,0x1a,0xe6,0x51,0x1f,0x57,0xb5,0x9e,0xe5,0x95,0xbe,0x6, 0x75,0x6a,0x7,0xd8,0x18,0x17,0x66,0xcd,0xb5,0x85,0x93,0x68,0x3f,0x4b,0xfc,0xe6, 0xbc,0xf9,0xd7,0x8f,0x2b,0xb8,0x8f,0x48,0x1a,0x7,0x54,0xf2,0x3,0xf2,0x38,0x20, 0x27,0x37,0x98,0x81,0x75,0x1d,0x4e,0xe,0x82,0x14,0x4f,0x2b,0xf0,0x1b,0x6a,0x94, 0x4f,0x7d,0x5b,0xd5,0xfa,0x55,0xa6,0x74,0x69,0xc8,0xd4,0xda,0x62,0x6d,0x98,0x94, 0x36,0x73,0x10,0x9c,0xce,0xa,0x81,0x5d,0x1,0xda,0xbc,0x8f,0xe8,0xcd,0x78,0xc6, 0x90,0x2a,0xf7,0x11,0x49,0xc6,0x2,0xca,0xf8,0x81,0x9c,0x15,0x13,0xe1,0x48,0x4a, 0x10,0x24,0x4d,0xe9,0xb,0x9b,0xad,0xc,0x13,0xf5,0xf5,0x55,0xbb,0x7e,0xff,0xd, 0x28,0x35,0x36,0x5a,0x1a,0xf8,0x27,0x7b,0xf4,0x82,0xd3,0x99,0xa1,0xb0,0x2f,0x6c, 0xd9,0xff,0xed,0x7d,0x44,0xaa,0xfa,0x1,0x5a,0x3f,0x3c,0x92,0x1c,0x8,0xf1,0x13, 0xba,0xc1,0x86,0x21,0x4d,0xb7,0x32,0x6f,0x5e,0xac,0xa7,0x6c,0xf9,0x60,0xcd,0x60, 0x3,0x9f,0xc4,0x9,0x9d,0x5f,0x9f,0xc0,0x38,0xeb,0x58,0xb2,0x6f,0xf9,0x3d,0xa5, 0x3a,0xb8,0x7e,0xfc,0x4d,0xbd,0x8f,0x48,0x59,0x3f,0x90,0x86,0xdb,0x7b,0x23,0xd6, 0x60,0x3c,0xba,0x9,0x62,0x9d,0x3b,0xbc,0x5e,0x39,0xb0,0xe9,0x22,0xe6,0xcd,0x99, 0xe3,0xa9,0x5b,0xaa,0x2d,0xeb,0xa7,0x3f,0x32,0xc6,0xa1,0xf9,0x93,0xdd,0x1,0xf3, 0xe0,0x6c,0x6e,0x4,0x14,0xfb,0xcf,0x7d,0xa7,0xaf,0x1f,0x97,0xc6,0x1,0x45,0x7e, 0x20,0x7b,0xd9,0x4,0x38,0x9e,0x1e,0x8a,0xed,0x9f,0x9,0x51,0xf6,0xcd,0x9e,0x2c, 0xc1,0x3e,0x63,0xaa,0x3e,0xb7,0xa3,0xb5,0x32,0xb5,0x8b,0x9e,0x59,0xa8,0xad,0xf1, 0x89,0xec,0x5,0x23,0xe0,0xa7,0x9d,0xd1,0xb0,0x3f,0x72,0xc5,0xff,0xc5,0x7d,0x44, 0xca,0xf8,0x81,0x42,0xdf,0x39,0x70,0x32,0x2b,0x2,0xd2,0xbc,0x87,0xd1,0x3b,0x3a, 0x8e,0xba,0x77,0x6a,0x28,0xef,0x19,0x4d,0x6f,0x6d,0x19,0xd1,0xb0,0x61,0x2d,0x5f, 0x2b,0xa3,0x80,0xa4,0x89,0x9d,0x5f,0x9f,0x4c,0xf3,0x87,0x73,0x38,0xff,0x2e,0xf1, 0x9b,0x5b,0x29,0xcf,0x18,0xaa,0xaa,0xfb,0x88,0xe4,0xe5,0x6,0x49,0x86,0xe3,0xa9, 0x41,0x70,0x10,0xed,0x7d,0xbc,0x4b,0x87,0xd7,0x9b,0x86,0x18,0x4,0xf4,0x7a,0xfb, 0xe2,0x3c,0x55,0x4b,0xb5,0x95,0xfd,0xf5,0x1d,0x22,0xed,0xcd,0x7e,0xcf,0x5b,0x39, 0x1e,0x2e,0xe5,0xc7,0xc3,0xf1,0xa4,0xcd,0xec,0xfa,0x61,0xa5,0xfb,0x1,0x25,0xde, 0x43,0xa1,0x8b,0x67,0xc,0x65,0x2c,0x19,0x3,0xfb,0x22,0x56,0xc3,0x99,0xdc,0x18, 0xc8,0xc1,0x7d,0x22,0x47,0x98,0xdc,0x5d,0xd6,0xaf,0xf1,0x8,0xe6,0x1d,0xb2,0xf7, 0x8a,0xca,0x94,0x8e,0xd,0xbe,0xda,0x32,0xd4,0x28,0x2c,0xde,0xb9,0xdd,0xab,0x83, 0x11,0x2b,0xe1,0xe7,0xa2,0x24,0xd8,0x1f,0xb1,0x5c,0xa7,0xf7,0x11,0xe9,0xcc,0xf, 0x28,0x3d,0x27,0x1c,0xd,0x45,0x68,0xeb,0xcf,0xef,0x48,0x80,0xdd,0x81,0x8b,0x21, 0x6e,0x6c,0xdb,0xff,0x70,0x6e,0x17,0xe2,0xda,0xa5,0xa1,0x3a,0xf7,0x67,0xbe,0x13, 0x65,0xb1,0x45,0x93,0x2e,0xa1,0x76,0x26,0xc7,0x33,0x67,0xe,0x41,0x7f,0x10,0x6, 0x3f,0x17,0x26,0xc1,0x81,0xa8,0x55,0xe8,0x13,0x2a,0xef,0x59,0x73,0xba,0xce,0xd, 0x12,0x8a,0xfd,0x17,0xa0,0xde,0xe3,0xe0,0x44,0x6a,0x20,0xa4,0x4c,0xed,0x7,0xd8, 0xe6,0x23,0x8b,0x7b,0xeb,0x77,0xaa,0xea,0xfe,0x7f,0x13,0xa,0x1a,0xbe,0xea,0xeb, 0x7,0x1b,0x4e,0x8f,0x72,0x30,0xbd,0x9b,0x33,0x7f,0x4,0x9c,0xcf,0xe,0x85,0x2b, 0x25,0xa9,0x70,0x24,0xf6,0x47,0x2e,0x36,0xd4,0xc9,0xb3,0xe6,0x54,0xcf,0xd,0x2a, 0x73,0x1f,0x91,0xa8,0xd,0xa0,0xdf,0xf6,0x4,0x2f,0x81,0x8b,0x5,0x49,0x70,0x3c, 0xc5,0x1f,0xd2,0xbd,0xac,0x21,0xd2,0xde,0xf4,0xb7,0xb5,0x43,0x9a,0x4e,0x1b,0xa1, 0xa5,0x7b,0x73,0xde,0xa5,0xe2,0xd9,0xa5,0x61,0xad,0x8d,0x96,0x46,0x5e,0x91,0x23, 0x4c,0x6f,0x64,0xcd,0xb6,0x86,0x33,0x19,0x41,0x70,0x7d,0x4f,0x16,0x9c,0x4e,0xf5, 0x83,0x5d,0x7e,0xf3,0xde,0x9a,0x67,0xcd,0xd1,0x3d,0x8b,0x87,0x63,0xd7,0xc3,0x2f, 0x25,0xe9,0x70,0x3c,0x79,0xb,0xa4,0x79,0xe,0x81,0x88,0x11,0xa6,0xd7,0x37,0xe, 0x31,0x98,0x39,0xae,0x97,0xfe,0xbb,0x1e,0xdf,0x69,0x5c,0xdc,0xda,0x33,0x1f,0x62, 0x5f,0x79,0x44,0xda,0x99,0xfe,0x9c,0x3e,0x7d,0x0,0x1c,0x89,0x5e,0x5,0x37,0xf6, 0x66,0xc3,0xd5,0x5d,0x29,0x70,0x2c,0x61,0x23,0x14,0x62,0xac,0xf8,0xa6,0xad,0x11, 0xd1,0xf1,0xfb,0x31,0x8e,0xb9,0x94,0x9f,0x88,0x7a,0xcf,0x80,0x7d,0x21,0x4b,0x21, 0xd9,0xa3,0x37,0xe9,0xfd,0x32,0xda,0x36,0xf7,0x5e,0xbd,0xde,0xda,0x1c,0x5e,0x95, 0x15,0xb2,0x91,0xeb,0x6,0xe9,0x3b,0x4,0xdb,0x18,0x6f,0x8f,0x71,0x6a,0xf9,0x7c, 0xc7,0xd2,0xd1,0x70,0x26,0xdd,0x1f,0x7e,0x3f,0x9a,0x7,0xbf,0x16,0x27,0xc2,0xc9, 0x94,0xad,0xb0,0x27,0x68,0x11,0x6b,0x13,0x2a,0x7b,0x8d,0x88,0xbe,0xd3,0xb3,0x91, 0xe,0xa3,0x8f,0xba,0xb0,0x23,0x6,0x6e,0xec,0xdf,0xe,0xc7,0x92,0x7c,0x21,0x77, 0xf1,0x48,0x88,0x75,0x6a,0xf1,0x3c,0x70,0xb8,0x71,0xee,0x8f,0x96,0x4d,0xed,0xde, 0xdb,0x79,0xed,0x94,0x19,0x9d,0xbe,0xf9,0x76,0xd3,0x10,0x43,0xef,0x70,0x3b,0x93, 0x63,0x89,0xce,0xed,0xcb,0xa,0xd7,0xb8,0xc1,0xe9,0x14,0x5f,0xb8,0xb5,0x3f,0x1b, 0x1e,0x9c,0x2c,0xc6,0x78,0x21,0x19,0xf9,0xe0,0xb,0x7b,0x43,0x16,0x43,0x3e,0xce, 0x1f,0xb4,0xbd,0x46,0x44,0xbc,0xa2,0x5c,0xc5,0x91,0xb8,0x75,0x70,0x29,0x2f,0xe, 0x7e,0x3b,0x92,0xf,0x57,0x76,0xa5,0xc3,0xd1,0xb8,0xf5,0xb0,0x73,0xb9,0xb,0xc4, 0x8f,0x69,0x53,0x16,0x86,0xb2,0xad,0x47,0x1b,0x4f,0xb2,0x56,0x75,0x7f,0xbd,0xcb, 0x65,0xf5,0xa0,0xc6,0xcd,0xfd,0x87,0x1a,0x2d,0x9,0xb3,0x35,0xd9,0x1f,0xe7,0x68, 0xf6,0x22,0xc5,0xbd,0x3b,0xec,0xc2,0xf9,0xc2,0xb9,0x8c,0x40,0xb8,0x8d,0x7c,0x78, 0x7c,0x76,0x37,0x72,0xa2,0x8,0x6e,0xee,0xc9,0x80,0x9f,0xf3,0x62,0xe0,0x6c,0x46, 0x0,0x1c,0x4f,0xdc,0x0,0x87,0xd0,0x8f,0x10,0x3f,0x76,0xf9,0xd3,0x3d,0x8c,0xb3, 0xa0,0xd8,0xd7,0x9b,0x45,0x11,0x8e,0x63,0xba,0x8e,0xb9,0x34,0x70,0x21,0x1c,0x8, 0x5f,0x8e,0x71,0xe7,0x5a,0x38,0x99,0xba,0x15,0x2e,0xed,0x88,0x46,0xbf,0x93,0x9, 0xf7,0x4f,0x94,0xc0,0xbd,0x13,0x45,0xe8,0x7f,0xd2,0xe0,0x24,0x8e,0xf1,0xc2,0xb5, 0xee,0x90,0xe4,0xde,0xd,0xe2,0x1c,0x9b,0xbd,0x8,0x45,0x19,0xb6,0xa2,0x2c,0x3e, 0x16,0x6,0xd2,0xde,0xa9,0xf5,0xbe,0xe8,0xb8,0xcc,0xe9,0x66,0xfa,0xf9,0x46,0x4b, 0x83,0xc1,0xfe,0x36,0x46,0x6b,0xc3,0xec,0x8c,0x77,0xc7,0x38,0x98,0x3e,0x88,0x73, 0x6a,0x1,0x29,0x1e,0xbd,0x60,0xa7,0xcf,0x18,0x38,0x18,0xb4,0x0,0xce,0xa5,0xf9, 0xc1,0x95,0x82,0x58,0xb8,0x4d,0xba,0x3c,0x9e,0xf,0x4f,0xce,0xec,0x82,0xa7,0x67, 0x4b,0xe1,0x9,0xe2,0x31,0x7e,0x7f,0x78,0xaa,0x4,0x1e,0x1c,0x2f,0x80,0xdb,0x7, 0x72,0xe0,0x2a,0xda,0x91,0x4b,0xdb,0x23,0xe1,0x44,0xd2,0x26,0x28,0xf5,0x9b,0xd, 0xe4,0x73,0x92,0x3d,0x7a,0x42,0xdc,0xa8,0x96,0x10,0x6d,0x6f,0xfa,0x20,0xd4,0xd6, 0x78,0x37,0x72,0x6f,0xed,0x3a,0xac,0xd3,0xa7,0x57,0xbd,0x37,0xfa,0x5a,0x8c,0xff, 0xd7,0xf2,0x63,0xbf,0x46,0x7a,0x9b,0x2c,0x8d,0xac,0xb6,0xe,0x33,0xf4,0xe,0x18, 0x6e,0xe4,0x17,0x62,0x67,0x9c,0x13,0x3e,0xc2,0xe4,0x48,0x14,0xc6,0x62,0xa8,0xc3, 0xfb,0xb1,0xe,0xa6,0x7f,0xc4,0x39,0x9a,0x3e,0x8b,0x77,0x34,0x3,0x2,0x7d,0xa7, 0xdf,0xe8,0x3f,0xda,0x7,0x7d,0xcc,0xe1,0x90,0xe1,0xc6,0x39,0x1,0xc3,0x8c,0xfc, 0x7c,0xad,0xd,0xbd,0xe9,0x5c,0xab,0x6,0x34,0x51,0xe5,0xf9,0x89,0xef,0xcb,0xfb, 0xf2,0xbe,0xbc,0x2f,0x6f,0x74,0x51,0xf2,0x8a,0x68,0x86,0xa9,0x2d,0xba,0xed,0x83, 0x47,0x2e,0x15,0xfb,0x5b,0x6c,0x87,0xeb,0xb4,0x5d,0xad,0x7c,0x9b,0xab,0xaa,0xa7, 0xd8,0xee,0x22,0x7,0x3c,0xe5,0xb6,0xab,0xb,0xb6,0x4b,0x25,0x64,0xf3,0xe1,0xb7, 0xf9,0x1a,0xcb,0x4,0xb2,0x37,0xe1,0xb6,0x9f,0xb,0xb6,0x6b,0x8a,0x9d,0x4e,0x78, 0xc2,0xeb,0x82,0xed,0x6a,0xe2,0xa7,0x13,0x9c,0xb0,0xbc,0x33,0x7a,0x8a,0x9d,0x9e, 0xaf,0xe0,0x55,0xf9,0x76,0x6d,0xb1,0xea,0xf8,0xa,0x9f,0x96,0x6f,0x57,0x17,0xab, 0x8e,0xaf,0xb0,0xb4,0x7c,0x9b,0x11,0xaf,0x9e,0x13,0x40,0x64,0x93,0x15,0x40,0x62, 0xbb,0x4c,0x74,0xbb,0x89,0x98,0x38,0xac,0x40,0xcf,0x45,0xb7,0x6b,0x56,0xdc,0x7e, 0x2a,0xba,0x5d,0xbd,0xe2,0xf6,0x75,0xd1,0xed,0x6a,0xe2,0xe2,0x92,0xc0,0x92,0xdb, 0x3e,0x62,0xdb,0x4b,0x2b,0x6c,0x8b,0x6d,0x62,0x3,0x24,0xb6,0xcb,0xc4,0xb7,0x9b, 0x28,0xda,0x7e,0x25,0xbe,0x5d,0x5b,0xd1,0xf6,0x73,0xf1,0xed,0x9a,0x8a,0xb6,0x9f, 0x8a,0x6f,0x57,0xd7,0x74,0xfb,0xba,0xf8,0x76,0xb5,0xf7,0xdb,0xda,0xdd,0xd6,0xb6, 0xbe,0x54,0xe5,0x8b,0xaa,0x7c,0x54,0x95,0xef,0x8a,0xc6,0x8f,0xc2,0xf1,0x57,0x2a, 0xb6,0x5d,0x71,0xfc,0x5e,0x17,0xdd,0xac,0xa6,0xd8,0x3e,0x28,0xb2,0x2f,0x92,0xf6, 0x48,0xd2,0x5e,0x29,0xb2,0x6f,0x15,0xec,0xa1,0xa8,0xc0,0xd2,0xec,0xa9,0xa4,0xbd, 0x95,0xb4,0xc7,0x92,0xf6,0x5a,0xd2,0x9e,0x4b,0xda,0xfb,0xa,0xfe,0x40,0x58,0x61, 0x35,0xe9,0xfe,0x44,0xd2,0xdf,0x48,0xfa,0x23,0x49,0x7f,0x55,0xc1,0x9f,0x49,0xfa, 0x3b,0x49,0x7f,0x28,0xe9,0x2f,0x2b,0xf8,0x53,0x49,0x7f,0x2b,0xe9,0x8f,0x2b,0xf8, 0x6b,0xd9,0xe5,0x7f,0x5e,0x1e,0xb5,0x7c, // C:/SNIR_PROJET/Superviseur/Superviseur/QSuperviseur/img/white_wall.jpeg 0x0,0x0,0x1,0xff, 0x0, 0x0,0x6e,0xbb,0x78,0x9c,0xed,0xd1,0x37,0x50,0x15,0x41,0x0,0xc6,0xf1,0xdd,0xdb, 0x4b,0xef,0xde,0x3,0x39,0x92,0x4a,0xe3,0x90,0x14,0xed,0x8,0xc6,0xc6,0x1,0xf4, 0x29,0x74,0x60,0xb6,0x12,0xcc,0x76,0x60,0x40,0x9d,0xb1,0x0,0x33,0x95,0x98,0xb5, 0x3,0xb3,0x1d,0x2a,0xa6,0x4a,0x14,0x63,0x87,0x11,0xb0,0x11,0xb3,0x56,0x60,0xd6, 0xd1,0x39,0xf7,0x18,0xd4,0xc6,0x42,0x2d,0xac,0xfe,0xdf,0xed,0x6f,0xe6,0x66,0x36, 0xcc,0x7e,0xb3,0x41,0x57,0xf0,0x48,0x24,0x95,0xc7,0xcb,0xe2,0x42,0x4a,0x29,0x16, 0xe8,0x4f,0x4,0xf,0x45,0xa9,0x30,0xa4,0xc,0xc7,0x60,0x94,0xa5,0xc2,0xd8,0xa6, 0xa9,0x2c,0xc7,0x76,0x9c,0x90,0x1b,0x89,0x46,0x5c,0xd7,0x73,0x1d,0xc7,0x4b,0xf0, 0xbc,0x68,0x4c,0xc7,0x89,0x24,0xe,0x49,0x88,0x25,0x86,0xff,0xe1,0x21,0xe1,0xf6, 0x70,0x97,0x1e,0x31,0xd7,0x71,0x63,0x7f,0x9d,0xe0,0x92,0xf0,0x5d,0x33,0xc3,0xde, 0xa1,0x64,0x96,0x30,0x7c,0xa9,0x7c,0x19,0x74,0x88,0x11,0x42,0x48,0x4b,0xe,0x44, 0xc,0x46,0x1a,0xca,0xb4,0x6c,0x7d,0x25,0x2f,0xaa,0x17,0xb4,0x25,0xe9,0xeb,0x2b, 0x65,0xe8,0xcb,0x5a,0xa6,0xa9,0x67,0x37,0xe8,0x79,0x61,0xfa,0x56,0x72,0x66,0x7e, 0xb1,0x9d,0x52,0x51,0xe5,0x64,0xd5,0xa4,0x16,0xd4,0x37,0x35,0xbb,0xd9,0x25,0xad, 0xed,0x69,0x95,0x9d,0x7d,0x39,0x85,0xd5,0xb5,0xd,0x11,0x2f,0x7d,0xe8,0xb0,0xe1, 0x19,0xb9,0x23,0x47,0xe5,0x8d,0x1e,0x53,0x34,0x76,0xdc,0xf8,0x9,0x13,0x27,0x95, 0x4e,0x99,0x1a,0x9f,0x36,0xbd,0xac,0x7c,0xc6,0xcc,0x59,0xb3,0xe7,0xcc,0x9d,0x37, 0x7f,0xe1,0xa2,0xc5,0x4b,0x96,0x2e,0x5b,0xbe,0x62,0xe5,0xaa,0xd5,0x6b,0xea,0xd6, 0xae,0x5b,0xbf,0x71,0xd3,0xe6,0x2d,0x5b,0xb7,0x6d,0x6f,0xdc,0xb9,0x6b,0xf7,0x9e, 0xbd,0xfb,0xf6,0x1f,0x38,0xd8,0x72,0xe8,0xf0,0x91,0xa3,0xc7,0x8e,0x9f,0x38,0x79, 0xea,0xf4,0x99,0xb6,0xb3,0xe7,0xce,0x5f,0xb8,0x78,0xf9,0x4a,0xc7,0xd5,0x6b,0xd7, 0x6f,0xdc,0xbc,0x75,0xfb,0xce,0xdd,0x7b,0xf7,0x1f,0x74,0x75,0xf7,0xf4,0x3e,0x7e, 0xf2,0xf4,0xd9,0xf3,0x17,0x2f,0x5f,0xbd,0xee,0x7f,0xf3,0xf6,0xdd,0xfb,0xf,0x1f, 0x3f,0x7d,0xfe,0x12,0xf6,0x92,0x42,0xc9,0x1f,0xf9,0x6d,0x2f,0x5f,0xf7,0x32,0xf4, 0x1b,0x98,0x4e,0xd8,0x4b,0x1a,0x75,0xe1,0x2,0xdf,0xb4,0x32,0xf3,0xed,0xe4,0xe2, 0xa,0xa7,0xaa,0x26,0x25,0xab,0xa0,0xde,0x4d,0x2d,0x69,0x6a,0x6e,0x6d,0x8f,0x64, 0x17,0x56,0xf6,0xa5,0x55,0xd7,0x76,0x7a,0xe9,0x39,0x45,0xbd,0xb9,0xfd,0x61,0xb5, 0x81,0x66,0x7f,0x56,0xac,0xe1,0x9f,0x9a,0xfd,0x2c,0xf6,0xab,0x57,0x8f,0x88,0x29, 0xa9,0x1f,0x4f,0xf9,0x62,0xb2,0xf8,0xf6,0xb5,0xa5,0x31,0x4f,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xf8,0xaf,0x54,0xd0,0xfd,0x1d,0xaf,0xdb,0xb6,0xb1, // C:/SNIR_PROJET/Superviseur/Superviseur/QSuperviseur/img/1452464446_Message.ico 0x0,0x0,0x72,0x26, 0x0, 0x0,0x1,0x0,0x4,0x0,0x10,0x10,0x0,0x0,0x1,0x0,0x20,0x0,0x68,0x4,0x0, 0x0,0x46,0x0,0x0,0x0,0x30,0x30,0x0,0x0,0x1,0x0,0x20,0x0,0xa8,0x25,0x0, 0x0,0xae,0x4,0x0,0x0,0x20,0x20,0x0,0x0,0x1,0x0,0x20,0x0,0xa8,0x10,0x0, 0x0,0x56,0x2a,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x20,0x0,0x28,0x37,0x0, 0x0,0xfe,0x3a,0x0,0x0,0x28,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x20,0x0,0x0, 0x0,0x1,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x12,0xb,0x0, 0x0,0x12,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0x59,0x1,0x7f,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xdf,0x5f,0x7,0x1f,0xff,0x6d,0x6,0xff,0xdf,0x5e,0x6, 0x9f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xf6,0x6e,0xe,0x6f,0xff,0x73,0xe,0xff,0xfb,0x70,0xd, 0xff,0xdd,0x61,0xb,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xfa,0x76,0x17,0xaf,0xff,0x78,0x16,0xff,0xff,0x78,0x16, 0xff,0xfb,0x76,0x15,0xff,0xe0,0x66,0x10,0x6f,0xc9,0x58,0xb,0x5f,0xc9,0x58,0xb, 0x5f,0xca,0x59,0xb,0x3f,0xca,0x59,0xb,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xfb,0x7f,0x1f,0xff,0xff,0x7d,0x1d,0xff,0xff,0x7e,0x1f, 0xff,0xff,0x82,0x26,0xff,0xff,0x88,0x2d,0xff,0xff,0x8b,0x31,0xff,0xff,0x8b,0x31, 0xff,0xff,0x88,0x2d,0xff,0xf2,0x7a,0x22,0xff,0xe5,0x6e,0x18,0xbf,0xda,0x66,0x12, 0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xec,0x78,0x1f,0x4f,0xff,0x8b,0x29,0xff,0xff,0x82,0x24,0xff,0xff,0x83,0x27, 0xff,0xff,0x8a,0x31,0xff,0xff,0x92,0x3b,0xff,0xff,0x99,0x44,0xff,0xff,0x99,0x43, 0xff,0xff,0x92,0x3a,0xff,0xff,0x8a,0x30,0xff,0xff,0x83,0x28,0xff,0xf9,0x80,0x26, 0xff,0xdf,0x6b,0x17,0x9f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xf7,0x85,0x29,0xaf,0xff,0x86,0x2b,0xff,0xff,0x84,0x2a,0xff,0xff,0x84,0x29, 0xff,0xff,0x83,0x29,0xff,0xff,0x84,0x2b,0xff,0xff,0x85,0x2c,0xff,0xff,0x85,0x2c, 0xff,0xff,0x84,0x2a,0xff,0xff,0x83,0x29,0xff,0xff,0x83,0x2a,0xff,0xff,0x91,0x3f, 0xff,0xfc,0x98,0x4f,0xff,0xe2,0x70,0x1b,0x9f,0x0,0x0,0x0,0x0,0xed,0x85,0x2c, 0x3f,0xff,0x8d,0x34,0xff,0xff,0x8d,0x34,0xff,0xff,0x8d,0x34,0xff,0xff,0x8d,0x34, 0xff,0xff,0x8d,0x34,0xff,0xff,0x8d,0x34,0xff,0xff,0x8d,0x34,0xff,0xff,0x8d,0x34, 0xff,0xff,0x8d,0x34,0xff,0xff,0x8d,0x34,0xff,0xff,0x8d,0x34,0xff,0xff,0x8e,0x36, 0xff,0xff,0x9c,0x4f,0xff,0xfa,0x8a,0x33,0xff,0xdb,0x6c,0x17,0x3f,0xfb,0x9e,0x46, 0x9f,0xff,0x9b,0x42,0xff,0xff,0x92,0x3b,0xff,0xff,0x92,0x3b,0xff,0xff,0x92,0x3b, 0xff,0xff,0x92,0x3b,0xff,0xff,0x92,0x3b,0xff,0xff,0x92,0x3b,0xff,0xff,0x92,0x3b, 0xff,0xff,0x92,0x3b,0xff,0xff,0x92,0x3b,0xff,0xff,0x92,0x3b,0xff,0xff,0x92,0x3b, 0xff,0xff,0x94,0x3f,0xff,0xff,0x92,0x3b,0xff,0xec,0x7e,0x27,0x9f,0xff,0xa8,0x55, 0xbf,0xff,0xa6,0x50,0xff,0xff,0x9c,0x46,0xff,0xff,0x97,0x43,0xff,0xff,0x97,0x43, 0xff,0xff,0x97,0x43,0xff,0xff,0x97,0x43,0xff,0xff,0x97,0x43,0xff,0xff,0x97,0x43, 0xff,0xff,0x97,0x43,0xff,0xff,0x97,0x43,0xff,0xff,0x97,0x43,0xff,0xff,0x97,0x43, 0xff,0xff,0x97,0x43,0xff,0xff,0x97,0x43,0xff,0xf3,0x89,0x33,0xbf,0xfd,0xb0,0x6a, 0xbf,0xff,0xae,0x60,0xff,0xff,0xa8,0x54,0xff,0xff,0xa0,0x4c,0xff,0xff,0x9d,0x4b, 0xff,0xff,0x9d,0x4b,0xff,0xff,0x9d,0x4b,0xff,0xff,0x9d,0x4b,0xff,0xff,0x9d,0x4b, 0xff,0xff,0x9d,0x4b,0xff,0xff,0x9d,0x4b,0xff,0xff,0x9d,0x4b,0xff,0xff,0x9d,0x4b, 0xff,0xff,0x9d,0x4b,0xff,0xff,0x9d,0x4b,0xff,0xf4,0x8a,0x33,0xaf,0xff,0xb3,0x68, 0x6f,0xff,0xc0,0x86,0xff,0xff,0xae,0x60,0xff,0xff,0xaa,0x59,0xff,0xff,0xa5,0x53, 0xff,0xff,0xa2,0x52,0xff,0xff,0xa2,0x52,0xff,0xff,0xa2,0x52,0xff,0xff,0xa2,0x52, 0xff,0xff,0xa2,0x52,0xff,0xff,0xa2,0x52,0xff,0xff,0xa2,0x52,0xff,0xff,0xa2,0x52, 0xff,0xff,0xa2,0x52,0xff,0xff,0xa2,0x52,0xff,0xf2,0x8a,0x32,0x5f,0xff,0xb7,0x6f, 0xf,0xff,0xc2,0x8b,0xdf,0xff,0xc8,0x95,0xff,0xff,0xb0,0x64,0xff,0xff,0xad,0x5d, 0xff,0xff,0xa9,0x5a,0xff,0xff,0xa7,0x5a,0xff,0xff,0xa7,0x5a,0xff,0xff,0xa7,0x5a, 0xff,0xff,0xa7,0x5a,0xff,0xff,0xa7,0x5a,0xff,0xff,0xa7,0x5a,0xff,0xff,0xa7,0x5a, 0xff,0xff,0xa7,0x5a,0xff,0xfa,0x9c,0x49,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xff,0xba,0x78,0x2f,0xff,0xd8,0xb5,0xef,0xff,0xd0,0xa4,0xff,0xff,0xb4,0x6b, 0xff,0xff,0xaf,0x62,0xff,0xff,0xad,0x61,0xff,0xff,0xad,0x61,0xff,0xff,0xad,0x61, 0xff,0xff,0xad,0x61,0xff,0xff,0xad,0x61,0xff,0xff,0xad,0x61,0xff,0xff,0xad,0x61, 0xff,0xfd,0xa5,0x55,0xef,0xf8,0x94,0x3a,0x2f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xff,0xbe,0x82,0xf,0xff,0xc7,0x93,0x9f,0xff,0xca,0x97, 0xff,0xff,0xc1,0x85,0xff,0xff,0xb5,0x6f,0xff,0xff,0xb2,0x69,0xff,0xff,0xb2,0x69, 0xff,0xff,0xb2,0x69,0xff,0xff,0xb2,0x69,0xff,0xfe,0xaf,0x65,0xff,0xfe,0xaa,0x5b, 0x9f,0xf9,0x8d,0x2c,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xbb,0x77, 0x1f,0xff,0xbc,0x7a,0x6f,0xff,0xbd,0x7e,0x9f,0xff,0xba,0x78,0xbf,0xff,0xb6,0x6f, 0xbf,0xff,0xaf,0x62,0x9f,0xff,0xab,0x5c,0x6f,0xfe,0xa3,0x4e,0x1f,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xef,0xff,0x0, 0x0,0xc7,0xff,0x0,0x0,0xc3,0xff,0x0,0x0,0xc0,0x1f,0x0,0x0,0xc0,0x7,0x0, 0x0,0x80,0x3,0x0,0x0,0x80,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0, 0x0,0x80,0x1,0x0,0x0,0xc0,0x3,0x0,0x0,0xf0,0xf,0x0,0x0,0x28,0x0,0x0, 0x0,0x30,0x0,0x0,0x0,0x60,0x0,0x0,0x0,0x1,0x0,0x20,0x0,0x0,0x0,0x0, 0x0,0x0,0x24,0x0,0x0,0x12,0xb,0x0,0x0,0x12,0xb,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xba,0x47,0x0,0x1f,0xba,0x47,0x0, 0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd1,0x53,0x1,0x8f,0xcb,0x50,0x1, 0xcf,0xbc,0x49,0x2,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x61,0x2,0xcf,0xfa,0x69,0x3, 0xff,0xcc,0x52,0x2,0xcf,0xbe,0x4b,0x3,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xbf,0x4c,0x3,0x1f,0xf6,0x68,0x5,0xff,0xff,0x6c,0x5, 0xff,0xf2,0x66,0x5,0xff,0xc3,0x4e,0x3,0xcf,0xbf,0x4d,0x4,0xf,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xd5,0x59,0x5,0x5f,0xff,0x6e,0x7,0xff,0xff,0x6e,0x7, 0xff,0xff,0x6e,0x7,0xff,0xf3,0x68,0x7,0xff,0xc5,0x50,0x4,0xbf,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xe8,0x64,0x8,0xaf,0xff,0x70,0xa,0xff,0xff,0x70,0xa, 0xff,0xff,0x70,0xa,0xff,0xff,0x70,0xa,0xff,0xf3,0x6a,0x9,0xff,0xc8,0x53,0x5, 0x9f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xef,0x69,0xb,0xef,0xff,0x72,0xd,0xff,0xff,0x72,0xd, 0xff,0xff,0x72,0xd,0xff,0xff,0x72,0xd,0xff,0xff,0x72,0xd,0xff,0xf3,0x6b,0xb, 0xff,0xc3,0x51,0x6,0x9f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xc4,0x53,0x7,0x3f,0xff,0x73,0xf,0xff,0xff,0x73,0xf,0xff,0xff,0x73,0xf, 0xff,0xff,0x73,0xf,0xff,0xff,0x73,0xf,0xff,0xff,0x73,0xf,0xff,0xff,0x73,0xf, 0xff,0xe9,0x67,0xc,0xff,0xc4,0x53,0x7,0x9f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xe5,0x67,0xd,0x8f,0xff,0x75,0x13,0xff,0xff,0x75,0x12,0xff,0xff,0x75,0x12, 0xff,0xff,0x75,0x12,0xff,0xff,0x75,0x12,0xff,0xff,0x75,0x12,0xff,0xff,0x75,0x12, 0xff,0xff,0x75,0x12,0xff,0xe9,0x69,0xe,0xff,0xc6,0x54,0x8,0x6f,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xee,0x6d,0x11,0xcf,0xff,0x77,0x16,0xff,0xff,0x77,0x14,0xff,0xff,0x77,0x14, 0xff,0xff,0x77,0x14,0xff,0xff,0x77,0x14,0xff,0xff,0x77,0x14,0xff,0xff,0x77,0x14, 0xff,0xff,0x77,0x14,0xff,0xff,0x77,0x14,0xff,0xea,0x6b,0x10,0xff,0xc8,0x56,0x9, 0x5f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc9,0x58,0xb, 0x1f,0xf8,0x75,0x17,0xff,0xff,0x79,0x19,0xff,0xff,0x79,0x17,0xff,0xff,0x79,0x17, 0xff,0xff,0x79,0x17,0xff,0xff,0x79,0x17,0xff,0xff,0x79,0x17,0xff,0xff,0x79,0x17, 0xff,0xff,0x79,0x17,0xff,0xff,0x79,0x17,0xff,0xff,0x79,0x17,0xff,0xe4,0x68,0x10, 0xff,0xc9,0x58,0xb,0x7f,0xc9,0x58,0xb,0x7f,0xc9,0x58,0xb,0x7f,0xc9,0x58,0xb, 0xaf,0xc9,0x58,0xb,0xbf,0xc9,0x58,0xb,0xbf,0xc9,0x58,0xb,0x8f,0xc9,0x58,0xb, 0x7f,0xc9,0x58,0xb,0x7f,0xca,0x59,0xb,0x3f,0xca,0x59,0xb,0x1f,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0x65,0x10, 0x5f,0xff,0x7c,0x1c,0xff,0xff,0x7b,0x1b,0xff,0xff,0x7b,0x19,0xff,0xff,0x7b,0x19, 0xff,0xff,0x7b,0x19,0xff,0xff,0x7b,0x19,0xff,0xff,0x7b,0x19,0xff,0xff,0x7b,0x19, 0xff,0xff,0x7b,0x19,0xff,0xff,0x7b,0x1a,0xff,0xff,0x7b,0x1a,0xff,0xff,0x7c,0x1c, 0xff,0xee,0x72,0x19,0xff,0xf1,0x75,0x1b,0xff,0xf1,0x75,0x1c,0xff,0xf1,0x76,0x1c, 0xff,0xf1,0x76,0x1d,0xff,0xf1,0x76,0x1c,0xff,0xf1,0x75,0x1c,0xff,0xf1,0x75,0x1b, 0xff,0xe8,0x6e,0x17,0xff,0xe1,0x69,0x14,0xff,0xd7,0x62,0x10,0xff,0xca,0x59,0xb, 0xef,0xcb,0x5a,0xc,0x9f,0xcb,0x5a,0xc,0x5f,0xcb,0x5a,0xc,0xf,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0x70,0x16, 0xaf,0xff,0x81,0x20,0xff,0xff,0x7e,0x1d,0xff,0xff,0x7c,0x1c,0xff,0xff,0x7c,0x1c, 0xff,0xff,0x7c,0x1c,0xff,0xff,0x7c,0x1c,0xff,0xff,0x7c,0x1c,0xff,0xff,0x7d,0x1d, 0xff,0xff,0x7e,0x20,0xff,0xff,0x80,0x23,0xff,0xff,0x82,0x25,0xff,0xff,0x83,0x27, 0xff,0xff,0x84,0x29,0xff,0xff,0x86,0x2a,0xff,0xff,0x86,0x2b,0xff,0xff,0x87,0x2c, 0xff,0xff,0x87,0x2c,0xff,0xff,0x87,0x2c,0xff,0xff,0x87,0x2c,0xff,0xff,0x86,0x2b, 0xff,0xff,0x85,0x29,0xff,0xff,0x84,0x28,0xff,0xff,0x82,0x26,0xff,0xff,0x81,0x24, 0xff,0xef,0x74,0x1c,0xff,0xdf,0x68,0x14,0xff,0xcf,0x5d,0xd,0xff,0xcc,0x5b,0xd, 0x9f,0xcd,0x5c,0xd,0x2f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0x77,0x1b, 0xef,0xff,0x84,0x23,0xff,0xff,0x81,0x20,0xff,0xff,0x7e,0x1e,0xff,0xff,0x7e,0x1e, 0xff,0xff,0x7e,0x1e,0xff,0xff,0x7e,0x1f,0xff,0xff,0x7f,0x22,0xff,0xff,0x82,0x25, 0xff,0xff,0x84,0x28,0xff,0xff,0x86,0x2b,0xff,0xff,0x89,0x2e,0xff,0xff,0x8b,0x31, 0xff,0xff,0x8c,0x33,0xff,0xff,0x8e,0x35,0xff,0xff,0x8f,0x36,0xff,0xff,0x90,0x37, 0xff,0xff,0x90,0x38,0xff,0xff,0x90,0x37,0xff,0xff,0x8f,0x37,0xff,0xff,0x8e,0x35, 0xff,0xff,0x8d,0x33,0xff,0xff,0x8b,0x31,0xff,0xff,0x89,0x2f,0xff,0xff,0x87,0x2c, 0xff,0xff,0x85,0x29,0xff,0xff,0x82,0x26,0xff,0xfb,0x7e,0x22,0xff,0xec,0x72,0x19, 0xff,0xd4,0x61,0x10,0xff,0xce,0x5d,0xd,0xbf,0xce,0x5d,0xe,0x2f,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0x5e,0xe,0x3f,0xff,0x85,0x24, 0xff,0xff,0x87,0x25,0xff,0xff,0x84,0x22,0xff,0xff,0x81,0x21,0xff,0xff,0x80,0x21, 0xff,0xff,0x80,0x21,0xff,0xff,0x81,0x23,0xff,0xff,0x83,0x27,0xff,0xff,0x86,0x2b, 0xff,0xff,0x89,0x2e,0xff,0xff,0x8b,0x32,0xff,0xff,0x8e,0x35,0xff,0xff,0x91,0x38, 0xff,0xff,0x93,0x3c,0xff,0xff,0x95,0x3e,0xff,0xff,0x97,0x41,0xff,0xff,0x98,0x42, 0xff,0xff,0x99,0x43,0xff,0xff,0x98,0x43,0xff,0xff,0x97,0x41,0xff,0xff,0x95,0x3f, 0xff,0xff,0x93,0x3c,0xff,0xff,0x91,0x39,0xff,0xff,0x8e,0x35,0xff,0xff,0x8c,0x32, 0xff,0xff,0x89,0x2f,0xff,0xff,0x86,0x2b,0xff,0xff,0x83,0x28,0xff,0xff,0x81,0x24, 0xff,0xff,0x80,0x21,0xff,0xed,0x73,0x1a,0xff,0xd2,0x60,0xf,0xff,0xcf,0x5f,0xf, 0x8f,0xd0,0x5f,0xf,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x73,0x1b,0x8f,0xff,0x8a,0x29, 0xff,0xff,0x89,0x28,0xff,0xff,0x86,0x25,0xff,0xff,0x83,0x23,0xff,0xff,0x81,0x23, 0xff,0xff,0x81,0x23,0xff,0xff,0x82,0x25,0xff,0xff,0x84,0x29,0xff,0xff,0x87,0x2d, 0xff,0xff,0x8a,0x31,0xff,0xff,0x8d,0x35,0xff,0xff,0x90,0x38,0xff,0xff,0x93,0x3c, 0xff,0xff,0x96,0x3f,0xff,0xff,0x99,0x43,0xff,0xff,0x9c,0x47,0xff,0xff,0x9e,0x4a, 0xff,0xff,0xa0,0x4c,0xff,0xff,0x9e,0x4a,0xff,0xff,0x9c,0x47,0xff,0xff,0x99,0x43, 0xff,0xff,0x96,0x3f,0xff,0xff,0x93,0x3c,0xff,0xff,0x90,0x38,0xff,0xff,0x8d,0x34, 0xff,0xff,0x8a,0x31,0xff,0xff,0x87,0x2d,0xff,0xff,0x84,0x29,0xff,0xff,0x82,0x25, 0xff,0xff,0x81,0x23,0xff,0xff,0x81,0x23,0xff,0xfc,0x7f,0x22,0xff,0xdf,0x6a,0x16, 0xff,0xd1,0x60,0x10,0xcf,0xd1,0x61,0x10,0x2f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0x7b,0x21,0xcf,0xff,0x8f,0x2d, 0xff,0xff,0x8c,0x2a,0xff,0xff,0x84,0x26,0xff,0xff,0x82,0x25,0xff,0xff,0x82,0x25, 0xff,0xff,0x82,0x25,0xff,0xff,0x82,0x25,0xff,0xff,0x83,0x27,0xff,0xff,0x85,0x2b, 0xff,0xff,0x88,0x2e,0xff,0xff,0x8b,0x32,0xff,0xff,0x8d,0x35,0xff,0xff,0x90,0x39, 0xff,0xff,0x93,0x3c,0xff,0xff,0x95,0x3f,0xff,0xff,0x97,0x41,0xff,0xff,0x98,0x43, 0xff,0xff,0x99,0x44,0xff,0xff,0x98,0x43,0xff,0xff,0x97,0x41,0xff,0xff,0x95,0x3e, 0xff,0xff,0x92,0x3c,0xff,0xff,0x90,0x38,0xff,0xff,0x8d,0x35,0xff,0xff,0x8a,0x31, 0xff,0xff,0x88,0x2e,0xff,0xff,0x85,0x2a,0xff,0xff,0x82,0x27,0xff,0xff,0x82,0x25, 0xff,0xff,0x85,0x2a,0xff,0xff,0x8a,0x34,0xff,0xff,0x87,0x2e,0xff,0xff,0x82,0x26, 0xff,0xeb,0x73,0x1c,0xff,0xd2,0x61,0x10,0xef,0xd3,0x62,0x11,0x2f,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xd4,0x64,0x12,0x1f,0xf9,0x86,0x29,0xff,0xff,0x8d,0x2d, 0xff,0xff,0x83,0x27,0xff,0xff,0x83,0x27,0xff,0xff,0x83,0x27,0xff,0xff,0x83,0x27, 0xff,0xff,0x83,0x27,0xff,0xff,0x83,0x27,0xff,0xff,0x83,0x27,0xff,0xff,0x83,0x27, 0xff,0xff,0x84,0x29,0xff,0xff,0x86,0x2b,0xff,0xff,0x88,0x2e,0xff,0xff,0x8a,0x31, 0xff,0xff,0x8b,0x33,0xff,0xff,0x8d,0x35,0xff,0xff,0x8e,0x37,0xff,0xff,0x8e,0x37, 0xff,0xff,0x8f,0x38,0xff,0xff,0x8e,0x37,0xff,0xff,0x8d,0x36,0xff,0xff,0x8c,0x35, 0xff,0xff,0x8b,0x33,0xff,0xff,0x89,0x30,0xff,0xff,0x87,0x2d,0xff,0xff,0x85,0x2b, 0xff,0xff,0x83,0x28,0xff,0xff,0x83,0x27,0xff,0xff,0x83,0x27,0xff,0xff,0x83,0x27, 0xff,0xff,0x87,0x2e,0xff,0xff,0x8e,0x3a,0xff,0xff,0x8e,0x3a,0xff,0xff,0x99,0x4f, 0xff,0xff,0x8b,0x36,0xff,0xee,0x76,0x1e,0xff,0xd4,0x63,0x11,0xef,0xd4,0x64,0x12, 0x2f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xe1,0x6f,0x1a,0x6f,0xff,0x88,0x2b,0xff,0xff,0x83,0x29, 0xff,0xff,0x83,0x29,0xff,0xff,0x83,0x29,0xff,0xff,0x83,0x29,0xff,0xff,0x83,0x29, 0xff,0xff,0x83,0x29,0xff,0xff,0x83,0x29,0xff,0xff,0x83,0x29,0xff,0xff,0x83,0x29, 0xff,0xff,0x83,0x29,0xff,0xff,0x83,0x29,0xff,0xff,0x83,0x29,0xff,0xff,0x83,0x29, 0xff,0xff,0x84,0x2a,0xff,0xff,0x85,0x2b,0xff,0xff,0x85,0x2b,0xff,0xff,0x85,0x2c, 0xff,0xff,0x85,0x2c,0xff,0xff,0x85,0x2b,0xff,0xff,0x85,0x2b,0xff,0xff,0x84,0x2a, 0xff,0xff,0x84,0x2a,0xff,0xff,0x83,0x29,0xff,0xff,0x83,0x29,0xff,0xff,0x83,0x29, 0xff,0xff,0x83,0x29,0xff,0xff,0x83,0x29,0xff,0xff,0x83,0x29,0xff,0xff,0x83,0x29, 0xff,0xff,0x83,0x29,0xff,0xff,0x8a,0x34,0xff,0xff,0x8e,0x3c,0xff,0xff,0x9c,0x54, 0xff,0xff,0xa1,0x5f,0xff,0xff,0x91,0x41,0xff,0xef,0x77,0x20,0xff,0xd5,0x65,0x13, 0xef,0xd6,0x66,0x13,0x2f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xd7,0x67,0x14,0x3f,0xf4,0x80,0x27,0xff,0xff,0x89,0x2e,0xff,0xff,0x89,0x2e, 0xff,0xff,0x89,0x2e,0xff,0xff,0x88,0x2d,0xff,0xff,0x87,0x2d,0xff,0xff,0x87,0x2d, 0xff,0xff,0x86,0x2c,0xff,0xff,0x86,0x2c,0xff,0xff,0x86,0x2c,0xff,0xff,0x86,0x2c, 0xff,0xff,0x84,0x2b,0xff,0xff,0x84,0x2b,0xff,0xff,0x84,0x2b,0xff,0xff,0x84,0x2b, 0xff,0xff,0x84,0x2b,0xff,0xff,0x84,0x2b,0xff,0xff,0x84,0x2b,0xff,0xff,0x84,0x2b, 0xff,0xff,0x83,0x2a,0xff,0xff,0x83,0x2a,0xff,0xff,0x83,0x2a,0xff,0xff,0x83,0x2a, 0xff,0xff,0x84,0x2b,0xff,0xff,0x84,0x2b,0xff,0xff,0x84,0x2b,0xff,0xff,0x84,0x2b, 0xff,0xff,0x84,0x2b,0xff,0xff,0x84,0x2b,0xff,0xff,0x84,0x2b,0xff,0xff,0x85,0x2b, 0xff,0xff,0x86,0x2c,0xff,0xff,0x86,0x2c,0xff,0xff,0x8f,0x3b,0xff,0xff,0x93,0x41, 0xff,0xff,0xa2,0x5c,0xff,0xff,0xa5,0x61,0xff,0xff,0x8e,0x38,0xff,0xea,0x78,0x21, 0xff,0xd7,0x67,0x14,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xee,0x7c,0x24,0xdf,0xff,0x8a,0x30,0xff,0xff,0x8a,0x30,0xff,0xff,0x8a,0x30, 0xff,0xff,0x8a,0x30,0xff,0xff,0x8a,0x30,0xff,0xff,0x8a,0x30,0xff,0xff,0x8a,0x30, 0xff,0xff,0x8a,0x30,0xff,0xff,0x8a,0x30,0xff,0xff,0x8a,0x30,0xff,0xff,0x8a,0x30, 0xff,0xff,0x8a,0x30,0xff,0xff,0x8a,0x30,0xff,0xff,0x8a,0x30,0xff,0xff,0x8a,0x30, 0xff,0xff,0x8a,0x30,0xff,0xff,0x8a,0x30,0xff,0xff,0x8a,0x30,0xff,0xff,0x8a,0x30, 0xff,0xff,0x8a,0x30,0xff,0xff,0x8a,0x30,0xff,0xff,0x8a,0x30,0xff,0xff,0x8a,0x30, 0xff,0xff,0x8a,0x30,0xff,0xff,0x8a,0x30,0xff,0xff,0x8a,0x30,0xff,0xff,0x8a,0x30, 0xff,0xff,0x8a,0x30,0xff,0xff,0x8a,0x30,0xff,0xff,0x8a,0x30,0xff,0xff,0x8a,0x30, 0xff,0xff,0x8a,0x30,0xff,0xff,0x8a,0x30,0xff,0xff,0x8b,0x31,0xff,0xff,0x93,0x40, 0xff,0xff,0x98,0x49,0xff,0xff,0xa8,0x64,0xff,0xff,0x9b,0x4c,0xff,0xff,0x8a,0x30, 0xff,0xe2,0x71,0x1c,0xff,0xd8,0x69,0x15,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0x76,0x20, 0x5f,0xff,0x8c,0x33,0xff,0xff,0x8c,0x33,0xff,0xff,0x8c,0x33,0xff,0xff,0x8c,0x33, 0xff,0xff,0x8c,0x33,0xff,0xff,0x8c,0x33,0xff,0xff,0x8c,0x33,0xff,0xff,0x8c,0x33, 0xff,0xff,0x8c,0x33,0xff,0xff,0x8c,0x33,0xff,0xff,0x8c,0x33,0xff,0xff,0x8c,0x33, 0xff,0xff,0x8c,0x33,0xff,0xff,0x8c,0x33,0xff,0xff,0x8c,0x33,0xff,0xff,0x8c,0x33, 0xff,0xff,0x8c,0x33,0xff,0xff,0x8c,0x33,0xff,0xff,0x8c,0x33,0xff,0xff,0x8c,0x33, 0xff,0xff,0x8c,0x33,0xff,0xff,0x8c,0x33,0xff,0xff,0x8c,0x33,0xff,0xff,0x8c,0x33, 0xff,0xff,0x8c,0x33,0xff,0xff,0x8c,0x33,0xff,0xff,0x8c,0x33,0xff,0xff,0x8c,0x33, 0xff,0xff,0x8c,0x33,0xff,0xff,0x8c,0x33,0xff,0xff,0x8c,0x33,0xff,0xff,0x8c,0x33, 0xff,0xff,0x8c,0x33,0xff,0xff,0x8c,0x33,0xff,0xff,0x8c,0x33,0xff,0xff,0x8f,0x37, 0xff,0xff,0x96,0x45,0xff,0xff,0x9c,0x4f,0xff,0xff,0x99,0x4a,0xff,0xff,0x8c,0x33, 0xff,0xf8,0x86,0x2d,0xff,0xda,0x6b,0x16,0xef,0xda,0x6b,0x16,0x1f,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0x8f,0x34, 0xdf,0xff,0x90,0x36,0xff,0xff,0x8e,0x35,0xff,0xff,0x8e,0x35,0xff,0xff,0x8e,0x35, 0xff,0xff,0x8e,0x35,0xff,0xff,0x8e,0x35,0xff,0xff,0x8e,0x35,0xff,0xff,0x8e,0x35, 0xff,0xff,0x8e,0x35,0xff,0xff,0x8e,0x35,0xff,0xff,0x8e,0x35,0xff,0xff,0x8e,0x35, 0xff,0xff,0x8e,0x35,0xff,0xff,0x8e,0x35,0xff,0xff,0x8e,0x35,0xff,0xff,0x8e,0x35, 0xff,0xff,0x8e,0x35,0xff,0xff,0x8e,0x35,0xff,0xff,0x8e,0x35,0xff,0xff,0x8e,0x35, 0xff,0xff,0x8e,0x35,0xff,0xff,0x8e,0x35,0xff,0xff,0x8e,0x35,0xff,0xff,0x8e,0x35, 0xff,0xff,0x8e,0x35,0xff,0xff,0x8e,0x35,0xff,0xff,0x8e,0x35,0xff,0xff,0x8e,0x35, 0xff,0xff,0x8e,0x35,0xff,0xff,0x8e,0x35,0xff,0xff,0x8e,0x35,0xff,0xff,0x8e,0x35, 0xff,0xff,0x8e,0x35,0xff,0xff,0x8e,0x35,0xff,0xff,0x8e,0x35,0xff,0xff,0x8e,0x35, 0xff,0xff,0x94,0x3f,0xff,0xff,0x98,0x47,0xff,0xff,0x98,0x47,0xff,0xff,0x8e,0x35, 0xff,0xff,0x8e,0x35,0xff,0xe8,0x79,0x22,0xff,0xdb,0x6c,0x17,0x7f,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe4,0x78,0x21,0x4f,0xff,0x9e,0x43, 0xff,0xff,0x9a,0x3f,0xff,0xff,0x90,0x38,0xff,0xff,0x90,0x38,0xff,0xff,0x90,0x38, 0xff,0xff,0x90,0x38,0xff,0xff,0x90,0x38,0xff,0xff,0x90,0x38,0xff,0xff,0x90,0x38, 0xff,0xff,0x90,0x38,0xff,0xff,0x90,0x38,0xff,0xff,0x90,0x38,0xff,0xff,0x90,0x38, 0xff,0xff,0x90,0x38,0xff,0xff,0x90,0x38,0xff,0xff,0x90,0x38,0xff,0xff,0x90,0x38, 0xff,0xff,0x90,0x38,0xff,0xff,0x90,0x38,0xff,0xff,0x90,0x38,0xff,0xff,0x90,0x38, 0xff,0xff,0x90,0x38,0xff,0xff,0x90,0x38,0xff,0xff,0x90,0x38,0xff,0xff,0x90,0x38, 0xff,0xff,0x90,0x38,0xff,0xff,0x90,0x38,0xff,0xff,0x90,0x38,0xff,0xff,0x90,0x38, 0xff,0xff,0x90,0x38,0xff,0xff,0x90,0x38,0xff,0xff,0x90,0x38,0xff,0xff,0x90,0x38, 0xff,0xff,0x90,0x38,0xff,0xff,0x90,0x38,0xff,0xff,0x90,0x38,0xff,0xff,0x90,0x38, 0xff,0xff,0x90,0x39,0xff,0xff,0x96,0x43,0xff,0xff,0x95,0x42,0xff,0xff,0x90,0x38, 0xff,0xff,0x90,0x38,0xff,0xf6,0x87,0x30,0xff,0xdd,0x6e,0x18,0xdf,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0x91,0x39,0x8f,0xff,0xa1,0x48, 0xff,0xff,0xa0,0x46,0xff,0xff,0x95,0x3d,0xff,0xff,0x92,0x3a,0xff,0xff,0x92,0x3a, 0xff,0xff,0x92,0x3a,0xff,0xff,0x92,0x3a,0xff,0xff,0x92,0x3a,0xff,0xff,0x92,0x3a, 0xff,0xff,0x92,0x3a,0xff,0xff,0x92,0x3a,0xff,0xff,0x92,0x3a,0xff,0xff,0x92,0x3a, 0xff,0xff,0x92,0x3a,0xff,0xff,0x92,0x3a,0xff,0xff,0x92,0x3a,0xff,0xff,0x92,0x3a, 0xff,0xff,0x92,0x3a,0xff,0xff,0x92,0x3a,0xff,0xff,0x92,0x3a,0xff,0xff,0x92,0x3a, 0xff,0xff,0x92,0x3a,0xff,0xff,0x92,0x3a,0xff,0xff,0x92,0x3a,0xff,0xff,0x92,0x3a, 0xff,0xff,0x92,0x3a,0xff,0xff,0x92,0x3a,0xff,0xff,0x92,0x3a,0xff,0xff,0x92,0x3a, 0xff,0xff,0x92,0x3a,0xff,0xff,0x92,0x3a,0xff,0xff,0x92,0x3a,0xff,0xff,0x92,0x3a, 0xff,0xff,0x92,0x3a,0xff,0xff,0x92,0x3a,0xff,0xff,0x92,0x3a,0xff,0xff,0x92,0x3a, 0xff,0xff,0x92,0x3a,0xff,0xff,0x92,0x3a,0xff,0xff,0x92,0x3a,0xff,0xff,0x92,0x3a, 0xff,0xff,0x92,0x3a,0xff,0xff,0x92,0x3a,0xff,0xe2,0x74,0x1d,0xff,0xdf,0x70,0x19, 0x2f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf9,0x9b,0x44,0xbf,0xff,0xa3,0x4b, 0xff,0xff,0xa2,0x49,0xff,0xff,0xa0,0x46,0xff,0xff,0x94,0x3d,0xff,0xff,0x93,0x3d, 0xff,0xff,0x93,0x3d,0xff,0xff,0x93,0x3d,0xff,0xff,0x93,0x3d,0xff,0xff,0x93,0x3d, 0xff,0xff,0x93,0x3d,0xff,0xff,0x93,0x3d,0xff,0xff,0x93,0x3d,0xff,0xff,0x93,0x3d, 0xff,0xff,0x93,0x3d,0xff,0xff,0x93,0x3d,0xff,0xff,0x93,0x3d,0xff,0xff,0x93,0x3d, 0xff,0xff,0x93,0x3d,0xff,0xff,0x93,0x3d,0xff,0xff,0x93,0x3d,0xff,0xff,0x93,0x3d, 0xff,0xff,0x93,0x3d,0xff,0xff,0x93,0x3d,0xff,0xff,0x93,0x3d,0xff,0xff,0x93,0x3d, 0xff,0xff,0x93,0x3d,0xff,0xff,0x93,0x3d,0xff,0xff,0x93,0x3d,0xff,0xff,0x93,0x3d, 0xff,0xff,0x93,0x3d,0xff,0xff,0x93,0x3d,0xff,0xff,0x93,0x3d,0xff,0xff,0x93,0x3d, 0xff,0xff,0x93,0x3d,0xff,0xff,0x93,0x3d,0xff,0xff,0x93,0x3d,0xff,0xff,0x93,0x3d, 0xff,0xff,0x93,0x3d,0xff,0xff,0x93,0x3d,0xff,0xff,0x93,0x3d,0xff,0xff,0x93,0x3d, 0xff,0xff,0x93,0x3d,0xff,0xff,0x93,0x3d,0xff,0xe9,0x7c,0x25,0xff,0xe0,0x71,0x1a, 0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf7,0x99,0x43,0xff,0xff,0xa5,0x4e, 0xff,0xff,0xa4,0x4c,0xff,0xff,0xa3,0x4a,0xff,0xff,0x9e,0x46,0xff,0xff,0x95,0x3f, 0xff,0xff,0x95,0x3f,0xff,0xff,0x95,0x3f,0xff,0xff,0x95,0x3f,0xff,0xff,0x95,0x3f, 0xff,0xff,0x95,0x3f,0xff,0xff,0x95,0x3f,0xff,0xff,0x95,0x3f,0xff,0xff,0x95,0x3f, 0xff,0xff,0x95,0x3f,0xff,0xff,0x95,0x3f,0xff,0xff,0x95,0x3f,0xff,0xff,0x95,0x3f, 0xff,0xff,0x95,0x3f,0xff,0xff,0x95,0x3f,0xff,0xff,0x95,0x3f,0xff,0xff,0x95,0x3f, 0xff,0xff,0x95,0x3f,0xff,0xff,0x95,0x3f,0xff,0xff,0x95,0x3f,0xff,0xff,0x95,0x3f, 0xff,0xff,0x95,0x3f,0xff,0xff,0x95,0x3f,0xff,0xff,0x95,0x3f,0xff,0xff,0x95,0x3f, 0xff,0xff,0x95,0x3f,0xff,0xff,0x95,0x3f,0xff,0xff,0x95,0x3f,0xff,0xff,0x95,0x3f, 0xff,0xff,0x95,0x3f,0xff,0xff,0x95,0x3f,0xff,0xff,0x95,0x3f,0xff,0xff,0x95,0x3f, 0xff,0xff,0x95,0x3f,0xff,0xff,0x95,0x3f,0xff,0xff,0x95,0x3f,0xff,0xff,0x95,0x3f, 0xff,0xff,0x95,0x3f,0xff,0xff,0x95,0x3f,0xff,0xf0,0x84,0x2d,0xff,0xe1,0x73,0x1b, 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfd,0xa4,0x50,0xff,0xff,0xa7,0x52, 0xff,0xff,0xa6,0x50,0xff,0xff,0xa5,0x4e,0xff,0xff,0xa3,0x4c,0xff,0xff,0x9d,0x46, 0xff,0xff,0x97,0x42,0xff,0xff,0x97,0x42,0xff,0xff,0x97,0x42,0xff,0xff,0x97,0x42, 0xff,0xff,0x97,0x42,0xff,0xff,0x97,0x42,0xff,0xff,0x97,0x42,0xff,0xff,0x97,0x42, 0xff,0xff,0x97,0x42,0xff,0xff,0x97,0x42,0xff,0xff,0x97,0x42,0xff,0xff,0x97,0x42, 0xff,0xff,0x97,0x42,0xff,0xff,0x97,0x42,0xff,0xff,0x97,0x42,0xff,0xff,0x97,0x42, 0xff,0xff,0x97,0x42,0xff,0xff,0x97,0x42,0xff,0xff,0x97,0x42,0xff,0xff,0x97,0x42, 0xff,0xff,0x97,0x42,0xff,0xff,0x97,0x42,0xff,0xff,0x97,0x42,0xff,0xff,0x97,0x42, 0xff,0xff,0x97,0x42,0xff,0xff,0x97,0x42,0xff,0xff,0x97,0x42,0xff,0xff,0x97,0x42, 0xff,0xff,0x97,0x42,0xff,0xff,0x97,0x42,0xff,0xff,0x97,0x42,0xff,0xff,0x97,0x42, 0xff,0xff,0x97,0x42,0xff,0xff,0x97,0x42,0xff,0xff,0x97,0x42,0xff,0xff,0x97,0x42, 0xff,0xff,0x97,0x42,0xff,0xff,0x97,0x42,0xff,0xf2,0x88,0x31,0xff,0xe3,0x75,0x1c, 0xbf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xaa,0x57,0xff,0xff,0xa9,0x55, 0xff,0xff,0xa7,0x53,0xff,0xff,0xa6,0x51,0xff,0xff,0xa5,0x4f,0xff,0xff,0xa4,0x4d, 0xff,0xff,0x9d,0x47,0xff,0xff,0x99,0x45,0xff,0xff,0x99,0x45,0xff,0xff,0x99,0x45, 0xff,0xff,0x99,0x45,0xff,0xff,0x99,0x45,0xff,0xff,0x99,0x45,0xff,0xff,0x99,0x45, 0xff,0xff,0x99,0x45,0xff,0xff,0x99,0x45,0xff,0xff,0x99,0x45,0xff,0xff,0x99,0x45, 0xff,0xff,0x99,0x45,0xff,0xff,0x99,0x45,0xff,0xff,0x99,0x45,0xff,0xff,0x99,0x45, 0xff,0xff,0x99,0x45,0xff,0xff,0x99,0x45,0xff,0xff,0x99,0x45,0xff,0xff,0x99,0x45, 0xff,0xff,0x99,0x45,0xff,0xff,0x99,0x45,0xff,0xff,0x99,0x45,0xff,0xff,0x99,0x45, 0xff,0xff,0x99,0x45,0xff,0xff,0x99,0x45,0xff,0xff,0x99,0x45,0xff,0xff,0x99,0x45, 0xff,0xff,0x99,0x45,0xff,0xff,0x99,0x45,0xff,0xff,0x99,0x45,0xff,0xff,0x99,0x45, 0xff,0xff,0x99,0x45,0xff,0xff,0x99,0x45,0xff,0xff,0x99,0x45,0xff,0xff,0x99,0x45, 0xff,0xff,0x99,0x45,0xff,0xff,0x99,0x45,0xff,0xf8,0x90,0x3b,0xff,0xe4,0x76,0x1d, 0xbf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0xa5,0x53,0xff,0xff,0xac,0x5c, 0xff,0xff,0xa9,0x57,0xff,0xff,0xa8,0x55,0xff,0xff,0xa7,0x53,0xff,0xff,0xa6,0x51, 0xff,0xff,0xa5,0x4f,0xff,0xff,0x9e,0x49,0xff,0xff,0x9a,0x47,0xff,0xff,0x9a,0x47, 0xff,0xff,0x9a,0x47,0xff,0xff,0x9a,0x47,0xff,0xff,0x9a,0x47,0xff,0xff,0x9a,0x47, 0xff,0xff,0x9a,0x47,0xff,0xff,0x9a,0x47,0xff,0xff,0x9a,0x47,0xff,0xff,0x9a,0x47, 0xff,0xff,0x9a,0x47,0xff,0xff,0x9a,0x47,0xff,0xff,0x9a,0x47,0xff,0xff,0x9a,0x47, 0xff,0xff,0x9a,0x47,0xff,0xff,0x9a,0x47,0xff,0xff,0x9a,0x47,0xff,0xff,0x9a,0x47, 0xff,0xff,0x9a,0x47,0xff,0xff,0x9a,0x47,0xff,0xff,0x9a,0x47,0xff,0xff,0x9a,0x47, 0xff,0xff,0x9a,0x47,0xff,0xff,0x9a,0x47,0xff,0xff,0x9a,0x47,0xff,0xff,0x9a,0x47, 0xff,0xff,0x9a,0x47,0xff,0xff,0x9a,0x47,0xff,0xff,0x9a,0x47,0xff,0xff,0x9a,0x47, 0xff,0xff,0x9a,0x47,0xff,0xff,0x9a,0x47,0xff,0xff,0x9a,0x47,0xff,0xff,0x9a,0x47, 0xff,0xff,0x9a,0x47,0xff,0xff,0x9a,0x47,0xff,0xf4,0x8b,0x35,0xff,0xe6,0x78,0x1e, 0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfd,0xa9,0x59,0xcf,0xff,0xb6,0x75, 0xff,0xff,0xad,0x5e,0xff,0xff,0xaa,0x58,0xff,0xff,0xa9,0x56,0xff,0xff,0xa8,0x54, 0xff,0xff,0xa7,0x52,0xff,0xff,0xa6,0x50,0xff,0xff,0x9f,0x4b,0xff,0xff,0x9c,0x49, 0xff,0xff,0x9c,0x49,0xff,0xff,0x9c,0x49,0xff,0xff,0x9c,0x49,0xff,0xff,0x9c,0x49, 0xff,0xff,0x9c,0x49,0xff,0xff,0x9c,0x49,0xff,0xff,0x9c,0x49,0xff,0xff,0x9c,0x49, 0xff,0xff,0x9c,0x49,0xff,0xff,0x9c,0x49,0xff,0xff,0x9c,0x49,0xff,0xff,0x9c,0x49, 0xff,0xff,0x9c,0x49,0xff,0xff,0x9c,0x49,0xff,0xff,0x9c,0x49,0xff,0xff,0x9c,0x49, 0xff,0xff,0x9c,0x49,0xff,0xff,0x9c,0x49,0xff,0xff,0x9c,0x49,0xff,0xff,0x9c,0x49, 0xff,0xff,0x9c,0x49,0xff,0xff,0x9c,0x49,0xff,0xff,0x9c,0x49,0xff,0xff,0x9c,0x49, 0xff,0xff,0x9c,0x49,0xff,0xff,0x9c,0x49,0xff,0xff,0x9c,0x49,0xff,0xff,0x9c,0x49, 0xff,0xff,0x9c,0x49,0xff,0xff,0x9c,0x49,0xff,0xff,0x9c,0x49,0xff,0xff,0x9c,0x49, 0xff,0xff,0x9c,0x49,0xff,0xff,0x9c,0x49,0xff,0xf3,0x8b,0x34,0xff,0xe8,0x7a,0x1f, 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0xaa,0x5b,0x9f,0xff,0xb4,0x6f, 0xff,0xff,0xb7,0x76,0xff,0xff,0xac,0x5c,0xff,0xff,0xab,0x5a,0xff,0xff,0xaa,0x58, 0xff,0xff,0xa9,0x56,0xff,0xff,0xa8,0x54,0xff,0xff,0xa7,0x52,0xff,0xff,0xa2,0x4e, 0xff,0xff,0x9e,0x4c,0xff,0xff,0x9e,0x4c,0xff,0xff,0x9e,0x4c,0xff,0xff,0x9e,0x4c, 0xff,0xff,0x9e,0x4c,0xff,0xff,0x9e,0x4c,0xff,0xff,0x9e,0x4c,0xff,0xff,0x9e,0x4c, 0xff,0xff,0x9e,0x4c,0xff,0xff,0x9e,0x4c,0xff,0xff,0x9e,0x4c,0xff,0xff,0x9e,0x4c, 0xff,0xff,0x9e,0x4c,0xff,0xff,0x9e,0x4c,0xff,0xff,0x9e,0x4c,0xff,0xff,0x9e,0x4c, 0xff,0xff,0x9e,0x4c,0xff,0xff,0x9e,0x4c,0xff,0xff,0x9e,0x4c,0xff,0xff,0x9e,0x4c, 0xff,0xff,0x9e,0x4c,0xff,0xff,0x9e,0x4c,0xff,0xff,0x9e,0x4c,0xff,0xff,0x9e,0x4c, 0xff,0xff,0x9e,0x4c,0xff,0xff,0x9e,0x4c,0xff,0xff,0x9e,0x4c,0xff,0xff,0x9e,0x4c, 0xff,0xff,0x9e,0x4c,0xff,0xff,0x9e,0x4c,0xff,0xff,0x9e,0x4c,0xff,0xff,0x9e,0x4c, 0xff,0xff,0x9e,0x4c,0xff,0xff,0x9e,0x4c,0xff,0xf0,0x86,0x2e,0xff,0xe9,0x7b,0x21, 0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xb1,0x64,0x5f,0xff,0xb0,0x63, 0xff,0xff,0xc0,0x8a,0xff,0xff,0xaf,0x62,0xff,0xff,0xad,0x5e,0xff,0xff,0xac,0x5b, 0xff,0xff,0xab,0x59,0xff,0xff,0xaa,0x57,0xff,0xff,0xa8,0x55,0xff,0xff,0xa7,0x53, 0xff,0xff,0xa4,0x50,0xff,0xff,0xa0,0x4f,0xff,0xff,0xa0,0x4f,0xff,0xff,0xa0,0x4f, 0xff,0xff,0xa0,0x4f,0xff,0xff,0xa0,0x4f,0xff,0xff,0xa0,0x4f,0xff,0xff,0xa0,0x4f, 0xff,0xff,0xa0,0x4f,0xff,0xff,0xa0,0x4f,0xff,0xff,0xa0,0x4f,0xff,0xff,0xa0,0x4f, 0xff,0xff,0xa0,0x4f,0xff,0xff,0xa0,0x4f,0xff,0xff,0xa0,0x4f,0xff,0xff,0xa0,0x4f, 0xff,0xff,0xa0,0x4f,0xff,0xff,0xa0,0x4f,0xff,0xff,0xa0,0x4f,0xff,0xff,0xa0,0x4f, 0xff,0xff,0xa0,0x4f,0xff,0xff,0xa0,0x4f,0xff,0xff,0xa0,0x4f,0xff,0xff,0xa0,0x4f, 0xff,0xff,0xa0,0x4f,0xff,0xff,0xa0,0x4f,0xff,0xff,0xa0,0x4f,0xff,0xff,0xa0,0x4f, 0xff,0xff,0xa0,0x4f,0xff,0xff,0xa0,0x4f,0xff,0xff,0xa0,0x4f,0xff,0xff,0xa0,0x4f, 0xff,0xff,0xa0,0x4f,0xff,0xff,0xa0,0x4f,0xff,0xec,0x7f,0x24,0xef,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xb2,0x67,0xf,0xff,0xb2,0x67, 0xef,0xff,0xbd,0x81,0xff,0xff,0xbc,0x80,0xff,0xff,0xaf,0x61,0xff,0xff,0xae,0x5f, 0xff,0xff,0xad,0x5d,0xff,0xff,0xab,0x5b,0xff,0xff,0xaa,0x59,0xff,0xff,0xa9,0x57, 0xff,0xff,0xa8,0x55,0xff,0xff,0xa6,0x52,0xff,0xff,0xa2,0x51,0xff,0xff,0xa2,0x51, 0xff,0xff,0xa2,0x51,0xff,0xff,0xa2,0x51,0xff,0xff,0xa2,0x51,0xff,0xff,0xa2,0x51, 0xff,0xff,0xa2,0x51,0xff,0xff,0xa2,0x51,0xff,0xff,0xa2,0x51,0xff,0xff,0xa2,0x51, 0xff,0xff,0xa2,0x51,0xff,0xff,0xa2,0x51,0xff,0xff,0xa2,0x51,0xff,0xff,0xa2,0x51, 0xff,0xff,0xa2,0x51,0xff,0xff,0xa2,0x51,0xff,0xff,0xa2,0x51,0xff,0xff,0xa2,0x51, 0xff,0xff,0xa2,0x51,0xff,0xff,0xa2,0x51,0xff,0xff,0xa2,0x51,0xff,0xff,0xa2,0x51, 0xff,0xff,0xa2,0x51,0xff,0xff,0xa2,0x51,0xff,0xff,0xa2,0x51,0xff,0xff,0xa2,0x51, 0xff,0xff,0xa2,0x51,0xff,0xff,0xa2,0x51,0xff,0xff,0xa2,0x51,0xff,0xff,0xa2,0x51, 0xff,0xff,0xa2,0x51,0xff,0xf9,0x97,0x43,0xff,0xec,0x7f,0x23,0x9f,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xb4,0x6a, 0x9f,0xff,0xb5,0x6e,0xff,0xff,0xc9,0x9b,0xff,0xff,0xb8,0x77,0xff,0xff,0xb0,0x63, 0xff,0xff,0xae,0x61,0xff,0xff,0xad,0x5f,0xff,0xff,0xac,0x5c,0xff,0xff,0xab,0x5a, 0xff,0xff,0xaa,0x58,0xff,0xff,0xa9,0x56,0xff,0xff,0xa8,0x54,0xff,0xff,0xa5,0x53, 0xff,0xff,0xa3,0x53,0xff,0xff,0xa3,0x53,0xff,0xff,0xa3,0x53,0xff,0xff,0xa3,0x53, 0xff,0xff,0xa3,0x53,0xff,0xff,0xa3,0x53,0xff,0xff,0xa3,0x53,0xff,0xff,0xa3,0x53, 0xff,0xff,0xa3,0x53,0xff,0xff,0xa3,0x53,0xff,0xff,0xa3,0x53,0xff,0xff,0xa3,0x53, 0xff,0xff,0xa3,0x53,0xff,0xff,0xa3,0x53,0xff,0xff,0xa3,0x53,0xff,0xff,0xa3,0x53, 0xff,0xff,0xa3,0x53,0xff,0xff,0xa3,0x53,0xff,0xff,0xa3,0x53,0xff,0xff,0xa3,0x53, 0xff,0xff,0xa3,0x53,0xff,0xff,0xa3,0x53,0xff,0xff,0xa3,0x53,0xff,0xff,0xa3,0x53, 0xff,0xff,0xa3,0x53,0xff,0xff,0xa3,0x53,0xff,0xff,0xa3,0x53,0xff,0xff,0xa3,0x53, 0xff,0xff,0xa3,0x53,0xff,0xf2,0x89,0x30,0xff,0xed,0x80,0x24,0x1f,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xb5,0x6c, 0xf,0xff,0xb5,0x6c,0xef,0xff,0xc2,0x8b,0xff,0xff,0xcd,0xa1,0xff,0xff,0xb5,0x72, 0xff,0xff,0xb0,0x64,0xff,0xff,0xaf,0x62,0xff,0xff,0xae,0x60,0xff,0xff,0xad,0x5e, 0xff,0xff,0xac,0x5c,0xff,0xff,0xab,0x5a,0xff,0xff,0xaa,0x58,0xff,0xff,0xa9,0x56, 0xff,0xff,0xa7,0x56,0xff,0xff,0xa6,0x56,0xff,0xff,0xa5,0x56,0xff,0xff,0xa5,0x56, 0xff,0xff,0xa5,0x56,0xff,0xff,0xa5,0x56,0xff,0xff,0xa5,0x56,0xff,0xff,0xa5,0x56, 0xff,0xff,0xa5,0x56,0xff,0xff,0xa5,0x56,0xff,0xff,0xa5,0x56,0xff,0xff,0xa5,0x56, 0xff,0xff,0xa5,0x56,0xff,0xff,0xa5,0x56,0xff,0xff,0xa5,0x56,0xff,0xff,0xa5,0x56, 0xff,0xff,0xa5,0x56,0xff,0xff,0xa5,0x56,0xff,0xff,0xa5,0x56,0xff,0xff,0xa5,0x56, 0xff,0xff,0xa5,0x56,0xff,0xff,0xa5,0x56,0xff,0xff,0xa5,0x56,0xff,0xff,0xa5,0x56, 0xff,0xff,0xa5,0x56,0xff,0xff,0xa5,0x56,0xff,0xff,0xa5,0x56,0xff,0xff,0xa5,0x56, 0xff,0xfb,0x9c,0x4a,0xff,0xef,0x82,0x25,0x9f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xff,0xb6,0x6f,0x6f,0xff,0xb6,0x72,0xff,0xff,0xcc,0x9f,0xff,0xff,0xca,0x9c, 0xff,0xff,0xb5,0x71,0xff,0xff,0xb1,0x65,0xff,0xff,0xb0,0x63,0xff,0xff,0xaf,0x62, 0xff,0xff,0xae,0x5f,0xff,0xff,0xad,0x5d,0xff,0xff,0xac,0x5b,0xff,0xff,0xab,0x59, 0xff,0xff,0xaa,0x59,0xff,0xff,0xa8,0x59,0xff,0xff,0xa7,0x59,0xff,0xff,0xa7,0x59, 0xff,0xff,0xa7,0x59,0xff,0xff,0xa7,0x59,0xff,0xff,0xa7,0x59,0xff,0xff,0xa7,0x59, 0xff,0xff,0xa7,0x59,0xff,0xff,0xa7,0x59,0xff,0xff,0xa7,0x59,0xff,0xff,0xa7,0x59, 0xff,0xff,0xa7,0x59,0xff,0xff,0xa7,0x59,0xff,0xff,0xa7,0x59,0xff,0xff,0xa7,0x59, 0xff,0xff,0xa7,0x59,0xff,0xff,0xa7,0x59,0xff,0xff,0xa7,0x59,0xff,0xff,0xa7,0x59, 0xff,0xff,0xa7,0x59,0xff,0xff,0xa7,0x59,0xff,0xff,0xa7,0x59,0xff,0xff,0xa7,0x59, 0xff,0xff,0xa7,0x59,0xff,0xff,0xa7,0x59,0xff,0xff,0xa7,0x59,0xff,0xff,0xa7,0x59, 0xff,0xf3,0x8b,0x30,0xef,0xf0,0x84,0x26,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xff,0xb7,0x71,0xaf,0xff,0xbb,0x7d,0xff,0xff,0xdd,0xbe, 0xff,0xff,0xd5,0xaf,0xff,0xff,0xb6,0x72,0xff,0xff,0xb2,0x67,0xff,0xff,0xb1,0x65, 0xff,0xff,0xb0,0x63,0xff,0xff,0xaf,0x61,0xff,0xff,0xad,0x5f,0xff,0xff,0xac,0x5d, 0xff,0xff,0xab,0x5b,0xff,0xff,0xaa,0x5b,0xff,0xff,0xa9,0x5b,0xff,0xff,0xa9,0x5b, 0xff,0xff,0xa9,0x5b,0xff,0xff,0xa9,0x5b,0xff,0xff,0xa9,0x5b,0xff,0xff,0xa9,0x5b, 0xff,0xff,0xa9,0x5b,0xff,0xff,0xa9,0x5b,0xff,0xff,0xa9,0x5b,0xff,0xff,0xa9,0x5b, 0xff,0xff,0xa9,0x5b,0xff,0xff,0xa9,0x5b,0xff,0xff,0xa9,0x5b,0xff,0xff,0xa9,0x5b, 0xff,0xff,0xa9,0x5b,0xff,0xff,0xa9,0x5b,0xff,0xff,0xa9,0x5b,0xff,0xff,0xa9,0x5b, 0xff,0xff,0xa9,0x5b,0xff,0xff,0xa9,0x5b,0xff,0xff,0xa9,0x5b,0xff,0xff,0xa9,0x5b, 0xff,0xff,0xa9,0x5b,0xff,0xff,0xa9,0x5b,0xff,0xff,0xa9,0x5b,0xff,0xf8,0x95,0x3e, 0xff,0xf2,0x86,0x27,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xff,0xb8,0x73,0xf,0xff,0xb8,0x74,0xcf,0xff,0xc7,0x95, 0xff,0xff,0xf3,0xe8,0xff,0xff,0xd5,0xb0,0xff,0xff,0xb7,0x74,0xff,0xff,0xb3,0x69, 0xff,0xff,0xb2,0x66,0xff,0xff,0xb1,0x64,0xff,0xff,0xaf,0x62,0xff,0xff,0xae,0x60, 0xff,0xff,0xad,0x5e,0xff,0xff,0xac,0x5e,0xff,0xff,0xab,0x5e,0xff,0xff,0xaa,0x5e, 0xff,0xff,0xaa,0x5e,0xff,0xff,0xaa,0x5e,0xff,0xff,0xaa,0x5e,0xff,0xff,0xaa,0x5e, 0xff,0xff,0xaa,0x5e,0xff,0xff,0xaa,0x5e,0xff,0xff,0xaa,0x5e,0xff,0xff,0xaa,0x5e, 0xff,0xff,0xaa,0x5e,0xff,0xff,0xaa,0x5e,0xff,0xff,0xaa,0x5e,0xff,0xff,0xaa,0x5e, 0xff,0xff,0xaa,0x5e,0xff,0xff,0xaa,0x5e,0xff,0xff,0xaa,0x5e,0xff,0xff,0xaa,0x5e, 0xff,0xff,0xaa,0x5e,0xff,0xff,0xaa,0x5e,0xff,0xff,0xaa,0x5e,0xff,0xff,0xaa,0x5e, 0xff,0xff,0xaa,0x5e,0xff,0xff,0xaa,0x5e,0xff,0xfb,0x9d,0x49,0xff,0xf4,0x87,0x28, 0x5f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xb9,0x74,0xf,0xff,0xb9,0x76, 0xcf,0xff,0xcf,0xa3,0xff,0xff,0xef,0xe1,0xff,0xff,0xdf,0xc2,0xff,0xff,0xbd,0x80, 0xff,0xff,0xb4,0x6b,0xff,0xff,0xb2,0x68,0xff,0xff,0xb1,0x66,0xff,0xff,0xb0,0x64, 0xff,0xff,0xaf,0x62,0xff,0xff,0xae,0x60,0xff,0xff,0xad,0x60,0xff,0xff,0xac,0x60, 0xff,0xff,0xac,0x60,0xff,0xff,0xac,0x60,0xff,0xff,0xac,0x60,0xff,0xff,0xac,0x60, 0xff,0xff,0xac,0x60,0xff,0xff,0xac,0x60,0xff,0xff,0xac,0x60,0xff,0xff,0xac,0x60, 0xff,0xff,0xac,0x60,0xff,0xff,0xac,0x60,0xff,0xff,0xac,0x60,0xff,0xff,0xac,0x60, 0xff,0xff,0xac,0x60,0xff,0xff,0xac,0x60,0xff,0xff,0xac,0x60,0xff,0xff,0xac,0x60, 0xff,0xff,0xac,0x60,0xff,0xff,0xac,0x60,0xff,0xff,0xac,0x60,0xff,0xff,0xac,0x60, 0xff,0xff,0xac,0x60,0xff,0xfb,0x9f,0x4b,0xff,0xf5,0x89,0x29,0x5f,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xba,0x76, 0xf,0xff,0xba,0x78,0xaf,0xff,0xc3,0x8a,0xff,0xff,0xdd,0xbd,0xff,0xff,0xd3,0xab, 0xff,0xff,0xc6,0x91,0xff,0xff,0xb6,0x6f,0xff,0xff,0xb3,0x69,0xff,0xff,0xb2,0x67, 0xff,0xff,0xb1,0x65,0xff,0xff,0xb0,0x63,0xff,0xff,0xaf,0x63,0xff,0xff,0xae,0x63, 0xff,0xff,0xae,0x63,0xff,0xff,0xae,0x63,0xff,0xff,0xae,0x63,0xff,0xff,0xae,0x63, 0xff,0xff,0xae,0x63,0xff,0xff,0xae,0x63,0xff,0xff,0xae,0x63,0xff,0xff,0xae,0x63, 0xff,0xff,0xae,0x63,0xff,0xff,0xae,0x63,0xff,0xff,0xae,0x63,0xff,0xff,0xae,0x63, 0xff,0xff,0xae,0x63,0xff,0xff,0xae,0x63,0xff,0xff,0xae,0x63,0xff,0xff,0xae,0x63, 0xff,0xff,0xae,0x63,0xff,0xff,0xae,0x63,0xff,0xff,0xae,0x63,0xff,0xff,0xae,0x63, 0xff,0xfb,0x9e,0x48,0xef,0xf7,0x8b,0x2a,0x4f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xff,0xba,0x78,0x6f,0xff,0xbc,0x7e,0xef,0xff,0xc5,0x8f, 0xff,0xff,0xd3,0xa9,0xff,0xff,0xd2,0xa8,0xff,0xff,0xc0,0x82,0xff,0xff,0xb4,0x6b, 0xff,0xff,0xb3,0x69,0xff,0xff,0xb2,0x67,0xff,0xff,0xb1,0x65,0xff,0xff,0xb0,0x65, 0xff,0xff,0xb0,0x65,0xff,0xff,0xb0,0x65,0xff,0xff,0xb0,0x65,0xff,0xff,0xb0,0x65, 0xff,0xff,0xb0,0x65,0xff,0xff,0xb0,0x65,0xff,0xff,0xb0,0x65,0xff,0xff,0xb0,0x65, 0xff,0xff,0xb0,0x65,0xff,0xff,0xb0,0x65,0xff,0xff,0xb0,0x65,0xff,0xff,0xb0,0x65, 0xff,0xff,0xb0,0x65,0xff,0xff,0xb0,0x65,0xff,0xff,0xb0,0x65,0xff,0xff,0xb0,0x65, 0xff,0xff,0xb0,0x65,0xff,0xff,0xb0,0x65,0xff,0xfe,0xab,0x5e,0xff,0xfa,0x98,0x3e, 0xbf,0xf8,0x8c,0x2b,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xbb,0x77,0x1f,0xff,0xbc,0x7b, 0x9f,0xff,0xbe,0x7f,0xff,0xff,0xc8,0x94,0xff,0xff,0xd1,0xa5,0xff,0xff,0xca,0x99, 0xff,0xff,0xc1,0x85,0xff,0xff,0xb7,0x70,0xff,0xff,0xb3,0x68,0xff,0xff,0xb1,0x68, 0xff,0xff,0xb1,0x68,0xff,0xff,0xb1,0x68,0xff,0xff,0xb1,0x68,0xff,0xff,0xb1,0x68, 0xff,0xff,0xb1,0x68,0xff,0xff,0xb1,0x68,0xff,0xff,0xb1,0x68,0xff,0xff,0xb1,0x68, 0xff,0xff,0xb1,0x68,0xff,0xff,0xb1,0x68,0xff,0xff,0xb1,0x68,0xff,0xff,0xb1,0x68, 0xff,0xff,0xb1,0x68,0xff,0xff,0xb1,0x68,0xff,0xff,0xb1,0x68,0xff,0xff,0xb1,0x68, 0xff,0xfe,0xaf,0x64,0xff,0xfc,0xa1,0x4c,0xef,0xfa,0x94,0x36,0x5f,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xff,0xba,0x76,0x2f,0xff,0xba,0x75,0x9f,0xff,0xb9,0x74,0xff,0xff,0xbe,0x7e, 0xff,0xff,0xc6,0x8f,0xff,0xff,0xcd,0x9e,0xff,0xff,0xc7,0x90,0xff,0xff,0xbe,0x7f, 0xff,0xff,0xb7,0x71,0xff,0xff,0xb3,0x6a,0xff,0xff,0xb3,0x6a,0xff,0xff,0xb3,0x6a, 0xff,0xff,0xb3,0x6a,0xff,0xff,0xb3,0x6a,0xff,0xff,0xb3,0x6a,0xff,0xff,0xb3,0x6a, 0xff,0xff,0xb3,0x6a,0xff,0xff,0xb3,0x6a,0xff,0xff,0xb3,0x6a,0xff,0xff,0xb3,0x6a, 0xff,0xff,0xb3,0x6a,0xff,0xff,0xb3,0x6a,0xff,0xfe,0xb1,0x66,0xff,0xfd,0xa4,0x50, 0xdf,0xfb,0x95,0x37,0x5f,0xfb,0x90,0x2d,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xba,0x76,0xf,0xff,0xb9,0x74, 0x5f,0xff,0xb8,0x73,0xaf,0xff,0xb7,0x71,0xff,0xff,0xbb,0x79,0xff,0xff,0xc1,0x85, 0xff,0xff,0xc4,0x8b,0xff,0xff,0xc4,0x8b,0xff,0xff,0xba,0x77,0xff,0xff,0xb5,0x6d, 0xff,0xff,0xb5,0x6d,0xff,0xff,0xb5,0x6d,0xff,0xff,0xb5,0x6d,0xff,0xff,0xb5,0x6d, 0xff,0xff,0xb5,0x6d,0xff,0xff,0xb5,0x6d,0xff,0xff,0xb5,0x6d,0xff,0xfe,0xb3,0x69, 0xff,0xfe,0xab,0x5b,0xdf,0xfe,0xa5,0x51,0x8f,0xfd,0x92,0x2e,0x3f,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xb8,0x72,0x3f,0xff,0xb7,0x70, 0x6f,0xff,0xb2,0x68,0x8f,0xff,0xb6,0x6f,0xbf,0xff,0xb6,0x6f,0xbf,0xff,0xb6,0x6f, 0xbf,0xff,0xaf,0x62,0xef,0xff,0xb1,0x66,0xdf,0xff,0xb6,0x6f,0xbf,0xff,0xb3,0x6a, 0xbf,0xff,0xad,0x5e,0xaf,0xff,0xad,0x5f,0x7f,0xfe,0xa8,0x55,0x4f,0xfe,0x93,0x2f, 0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0xff,0x9f,0xff, 0xff,0xff,0xff,0x0,0x0,0xff,0x8f,0xff,0xff,0xff,0xff,0x0,0x0,0xff,0x87,0xff, 0xff,0xff,0xff,0x0,0x0,0xff,0x3,0xff,0xff,0xff,0xff,0x0,0x0,0xff,0x3,0xff, 0xff,0xff,0xff,0x0,0x0,0xff,0x1,0xff,0xff,0xff,0xff,0x0,0x0,0xff,0x0,0xff, 0xff,0xff,0xff,0x0,0x0,0xfe,0x0,0x7f,0xff,0xff,0xff,0x0,0x0,0xfe,0x0,0x3f, 0xff,0xff,0xff,0x0,0x0,0xfe,0x0,0x1f,0xff,0xff,0xff,0x0,0x0,0xfc,0x0,0x0, 0x3,0xff,0xff,0x0,0x0,0xfc,0x0,0x0,0x0,0x3f,0xff,0x0,0x0,0xfc,0x0,0x0, 0x0,0xf,0xff,0x0,0x0,0xfc,0x0,0x0,0x0,0x3,0xff,0x0,0x0,0xf8,0x0,0x0, 0x0,0x0,0xff,0x0,0x0,0xf8,0x0,0x0,0x0,0x0,0x7f,0x0,0x0,0xf8,0x0,0x0, 0x0,0x0,0x3f,0x0,0x0,0xf0,0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0xf0,0x0,0x0, 0x0,0x0,0xf,0x0,0x0,0xe0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0xe0,0x0,0x0, 0x0,0x0,0x7,0x0,0x0,0xc0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0xc0,0x0,0x0, 0x0,0x0,0x3,0x0,0x0,0x80,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x80,0x0,0x0, 0x0,0x0,0x1,0x0,0x0,0x80,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x80,0x0,0x0, 0x0,0x0,0x1,0x0,0x0,0x80,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x80,0x0,0x0, 0x0,0x0,0x1,0x0,0x0,0x80,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x80,0x0,0x0, 0x0,0x0,0x1,0x0,0x0,0x80,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x80,0x0,0x0, 0x0,0x0,0x3,0x0,0x0,0x80,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0xc0,0x0,0x0, 0x0,0x0,0x3,0x0,0x0,0xc0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0xe0,0x0,0x0, 0x0,0x0,0x7,0x0,0x0,0xf0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0xf0,0x0,0x0, 0x0,0x0,0x1f,0x0,0x0,0xf8,0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0xfc,0x0,0x0, 0x0,0x0,0x7f,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0xff,0x0,0x0,0xff,0x80,0x0, 0x0,0x3,0xff,0x0,0x0,0xff,0xe0,0x0,0x0,0x7,0xff,0x0,0x0,0xff,0xf8,0x0, 0x0,0x3f,0xff,0x0,0x0,0xff,0xff,0x80,0x1,0xff,0xff,0x0,0x0,0xff,0xff,0xff, 0xff,0xff,0xff,0x0,0x0,0x28,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x40,0x0,0x0, 0x0,0x1,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x12,0xb,0x0, 0x0,0x12,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xba,0x47,0x0,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xe0,0x5b,0x1,0xaf,0xc5,0x4e,0x1,0x6f,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xf2,0x65,0x4,0xff,0xf2,0x65,0x4,0xff,0xc9,0x51,0x3, 0x5f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xd9,0x5b,0x6,0x4f,0xff,0x6f,0x8,0xff,0xff,0x6f,0x8,0xff,0xf3,0x68,0x7, 0xff,0xca,0x54,0x5,0x5f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xea,0x66,0xa,0x8f,0xff,0x71,0xb,0xff,0xff,0x71,0xb,0xff,0xff,0x71,0xb, 0xff,0xe8,0x65,0x9,0xff,0xc2,0x51,0x6,0x5f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xf2,0x6d,0xe,0xdf,0xff,0x74,0xf,0xff,0xff,0x74,0xf,0xff,0xff,0x74,0xf, 0xff,0xff,0x74,0xf,0xff,0xeb,0x69,0xd,0xef,0xc5,0x53,0x8,0x2f,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc8,0x56,0x9, 0x1f,0xfb,0x74,0x14,0xff,0xff,0x76,0x13,0xff,0xff,0x76,0x13,0xff,0xff,0x76,0x13, 0xff,0xff,0x76,0x13,0xff,0xff,0x76,0x13,0xff,0xec,0x6b,0x10,0xef,0xc8,0x56,0x9, 0x2f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0x6b,0x12, 0x6f,0xff,0x7a,0x19,0xff,0xff,0x79,0x17,0xff,0xff,0x79,0x17,0xff,0xff,0x79,0x17, 0xff,0xff,0x79,0x17,0xff,0xff,0x79,0x17,0xff,0xff,0x79,0x17,0xff,0xe9,0x6c,0x12, 0xef,0xca,0x59,0xb,0x7f,0xc9,0x58,0xb,0x8f,0xd6,0x61,0x10,0xbf,0xce,0x5b,0xc, 0xbf,0xc9,0x58,0xb,0x8f,0xca,0x59,0xb,0x7f,0xca,0x59,0xb,0x5f,0xca,0x59,0xb, 0x2f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf5,0x77,0x1a, 0xaf,0xff,0x7e,0x1e,0xff,0xff,0x7c,0x1b,0xff,0xff,0x7c,0x1b,0xff,0xff,0x7c,0x1b, 0xff,0xff,0x7c,0x1b,0xff,0xff,0x7c,0x1d,0xff,0xff,0x7e,0x1f,0xff,0xff,0x80,0x22, 0xff,0xff,0x81,0x25,0xff,0xff,0x83,0x26,0xff,0xff,0x83,0x27,0xff,0xff,0x83,0x27, 0xff,0xff,0x83,0x26,0xff,0xff,0x81,0x25,0xff,0xf2,0x77,0x1e,0xff,0xe8,0x6f,0x19, 0xff,0xda,0x64,0x12,0xdf,0xcc,0x5b,0xc,0x8f,0xcd,0x5c,0xd,0x1f,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf5,0x7b,0x1e, 0xff,0xff,0x82,0x21,0xff,0xff,0x7e,0x1e,0xff,0xff,0x7e,0x1e,0xff,0xff,0x7e,0x20, 0xff,0xff,0x81,0x24,0xff,0xff,0x85,0x29,0xff,0xff,0x88,0x2d,0xff,0xff,0x8b,0x31, 0xff,0xff,0x8e,0x34,0xff,0xff,0x8f,0x37,0xff,0xff,0x90,0x38,0xff,0xff,0x90,0x38, 0xff,0xff,0x8f,0x36,0xff,0xff,0x8d,0x34,0xff,0xff,0x8a,0x30,0xff,0xff,0x87,0x2c, 0xff,0xff,0x84,0x28,0xff,0xf8,0x7c,0x21,0xff,0xe6,0x6d,0x17,0xff,0xd2,0x60,0xf, 0xbf,0xcf,0x5e,0xe,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe2,0x6d,0x17,0x4f,0xff,0x88,0x27, 0xff,0xff,0x86,0x25,0xff,0xff,0x82,0x22,0xff,0xff,0x80,0x22,0xff,0xff,0x82,0x25, 0xff,0xff,0x86,0x2b,0xff,0xff,0x8a,0x30,0xff,0xff,0x8e,0x36,0xff,0xff,0x92,0x3b, 0xff,0xff,0x96,0x40,0xff,0xff,0x9a,0x45,0xff,0xff,0x9d,0x48,0xff,0xff,0x9c,0x47, 0xff,0xff,0x99,0x43,0xff,0xff,0x95,0x3e,0xff,0xff,0x91,0x39,0xff,0xff,0x8d,0x34, 0xff,0xff,0x89,0x2f,0xff,0xff,0x84,0x29,0xff,0xff,0x81,0x23,0xff,0xfc,0x7e,0x21, 0xff,0xde,0x69,0x15,0xff,0xd0,0x60,0xf,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x7c,0x21,0x8f,0xff,0x8f,0x2d, 0xff,0xff,0x87,0x27,0xff,0xff,0x82,0x25,0xff,0xff,0x82,0x25,0xff,0xff,0x82,0x26, 0xff,0xff,0x84,0x29,0xff,0xff,0x88,0x2e,0xff,0xff,0x8c,0x33,0xff,0xff,0x90,0x38, 0xff,0xff,0x94,0x3d,0xff,0xff,0x97,0x41,0xff,0xff,0x99,0x43,0xff,0xff,0x98,0x42, 0xff,0xff,0x95,0x3f,0xff,0xff,0x92,0x3b,0xff,0xff,0x8e,0x36,0xff,0xff,0x8a,0x31, 0xff,0xff,0x86,0x2c,0xff,0xff,0x83,0x27,0xff,0xff,0x83,0x28,0xff,0xff,0x89,0x31, 0xff,0xff,0x86,0x2c,0xff,0xee,0x75,0x1d,0xff,0xd2,0x62,0x11,0x9f,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0x83,0x27,0xdf,0xff,0x88,0x2a, 0xff,0xff,0x82,0x28,0xff,0xff,0x82,0x28,0xff,0xff,0x82,0x28,0xff,0xff,0x82,0x28, 0xff,0xff,0x82,0x28,0xff,0xff,0x83,0x28,0xff,0xff,0x84,0x2a,0xff,0xff,0x86,0x2c, 0xff,0xff,0x87,0x2e,0xff,0xff,0x89,0x30,0xff,0xff,0x89,0x31,0xff,0xff,0x89,0x31, 0xff,0xff,0x88,0x2f,0xff,0xff,0x86,0x2d,0xff,0xff,0x85,0x2b,0xff,0xff,0x83,0x29, 0xff,0xff,0x82,0x28,0xff,0xff,0x82,0x28,0xff,0xff,0x83,0x29,0xff,0xff,0x8d,0x39, 0xff,0xff,0x96,0x4a,0xff,0xff,0x98,0x4f,0xff,0xef,0x78,0x22,0xff,0xd5,0x64,0x12, 0x9f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xe6,0x74,0x1e,0x7f,0xff,0x88,0x2d,0xff,0xff,0x87,0x2d, 0xff,0xff,0x87,0x2d,0xff,0xff,0x86,0x2c,0xff,0xff,0x86,0x2c,0xff,0xff,0x86,0x2c, 0xff,0xff,0x85,0x2b,0xff,0xff,0x84,0x2b,0xff,0xff,0x84,0x2b,0xff,0xff,0x84,0x2b, 0xff,0xff,0x84,0x2b,0xff,0xff,0x84,0x2b,0xff,0xff,0x84,0x2b,0xff,0xff,0x84,0x2b, 0xff,0xff,0x84,0x2b,0xff,0xff,0x84,0x2b,0xff,0xff,0x84,0x2b,0xff,0xff,0x84,0x2b, 0xff,0xff,0x84,0x2b,0xff,0xff,0x84,0x2b,0xff,0xff,0x84,0x2b,0xff,0xff,0x88,0x2f, 0xff,0xff,0x91,0x40,0xff,0xff,0xa1,0x5b,0xff,0xff,0x9c,0x52,0xff,0xed,0x79,0x22, 0xff,0xd7,0x67,0x14,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xda,0x6a,0x16,0x1f,0xfa,0x87,0x2e,0xff,0xff,0x8b,0x31,0xff,0xff,0x8b,0x31, 0xff,0xff,0x8b,0x31,0xff,0xff,0x8b,0x31,0xff,0xff,0x8b,0x31,0xff,0xff,0x8b,0x31, 0xff,0xff,0x8b,0x31,0xff,0xff,0x8b,0x31,0xff,0xff,0x8b,0x31,0xff,0xff,0x8b,0x31, 0xff,0xff,0x8b,0x31,0xff,0xff,0x8b,0x31,0xff,0xff,0x8b,0x31,0xff,0xff,0x8b,0x31, 0xff,0xff,0x8b,0x31,0xff,0xff,0x8b,0x31,0xff,0xff,0x8b,0x31,0xff,0xff,0x8b,0x31, 0xff,0xff,0x8b,0x31,0xff,0xff,0x8b,0x31,0xff,0xff,0x8b,0x31,0xff,0xff,0x8b,0x31, 0xff,0xff,0x8e,0x37,0xff,0xff,0x98,0x48,0xff,0xff,0xa4,0x5d,0xff,0xff,0x8c,0x33, 0xff,0xe2,0x72,0x1c,0xff,0xda,0x6a,0x16,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xf0,0x88,0x2f,0x9f,0xff,0x90,0x36,0xff,0xff,0x8e,0x35,0xff,0xff,0x8e,0x35, 0xff,0xff,0x8e,0x35,0xff,0xff,0x8e,0x35,0xff,0xff,0x8e,0x35,0xff,0xff,0x8e,0x35, 0xff,0xff,0x8e,0x35,0xff,0xff,0x8e,0x35,0xff,0xff,0x8e,0x35,0xff,0xff,0x8e,0x35, 0xff,0xff,0x8e,0x35,0xff,0xff,0x8e,0x35,0xff,0xff,0x8e,0x35,0xff,0xff,0x8e,0x35, 0xff,0xff,0x8e,0x35,0xff,0xff,0x8e,0x35,0xff,0xff,0x8e,0x35,0xff,0xff,0x8e,0x35, 0xff,0xff,0x8e,0x35,0xff,0xff,0x8e,0x35,0xff,0xff,0x8e,0x35,0xff,0xff,0x8e,0x35, 0xff,0xff,0x8e,0x35,0xff,0xff,0x95,0x41,0xff,0xff,0x98,0x47,0xff,0xff,0x90,0x3a, 0xff,0xf6,0x85,0x2e,0xff,0xdb,0x6c,0x17,0x9f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xfa,0x9a,0x40,0xef,0xff,0x9b,0x41,0xff,0xff,0x90,0x39,0xff,0xff,0x90,0x39, 0xff,0xff,0x90,0x39,0xff,0xff,0x90,0x39,0xff,0xff,0x90,0x39,0xff,0xff,0x90,0x39, 0xff,0xff,0x90,0x39,0xff,0xff,0x90,0x39,0xff,0xff,0x90,0x39,0xff,0xff,0x90,0x39, 0xff,0xff,0x90,0x39,0xff,0xff,0x90,0x39,0xff,0xff,0x90,0x39,0xff,0xff,0x90,0x39, 0xff,0xff,0x90,0x39,0xff,0xff,0x90,0x39,0xff,0xff,0x90,0x39,0xff,0xff,0x90,0x39, 0xff,0xff,0x90,0x39,0xff,0xff,0x90,0x39,0xff,0xff,0x90,0x39,0xff,0xff,0x90,0x39, 0xff,0xff,0x90,0x39,0xff,0xff,0x91,0x3a,0xff,0xff,0x95,0x41,0xff,0xff,0x91,0x3a, 0xff,0xff,0x90,0x39,0xff,0xe4,0x75,0x1f,0xef,0x0,0x0,0x0,0x0,0xef,0x8b,0x34, 0x3f,0xff,0xa3,0x4b,0xff,0xff,0xa2,0x49,0xff,0xff,0x98,0x40,0xff,0xff,0x93,0x3d, 0xff,0xff,0x93,0x3d,0xff,0xff,0x93,0x3d,0xff,0xff,0x93,0x3d,0xff,0xff,0x93,0x3d, 0xff,0xff,0x93,0x3d,0xff,0xff,0x93,0x3d,0xff,0xff,0x93,0x3d,0xff,0xff,0x93,0x3d, 0xff,0xff,0x93,0x3d,0xff,0xff,0x93,0x3d,0xff,0xff,0x93,0x3d,0xff,0xff,0x93,0x3d, 0xff,0xff,0x93,0x3d,0xff,0xff,0x93,0x3d,0xff,0xff,0x93,0x3d,0xff,0xff,0x93,0x3d, 0xff,0xff,0x93,0x3d,0xff,0xff,0x93,0x3d,0xff,0xff,0x93,0x3d,0xff,0xff,0x93,0x3d, 0xff,0xff,0x93,0x3d,0xff,0xff,0x93,0x3d,0xff,0xff,0x93,0x3d,0xff,0xff,0x93,0x3d, 0xff,0xff,0x93,0x3d,0xff,0xef,0x82,0x2b,0xff,0xe0,0x71,0x1a,0x3f,0xf9,0x9d,0x48, 0x4f,0xff,0xa6,0x51,0xff,0xff,0xa4,0x4d,0xff,0xff,0xa2,0x4a,0xff,0xff,0x98,0x42, 0xff,0xff,0x96,0x40,0xff,0xff,0x96,0x40,0xff,0xff,0x96,0x40,0xff,0xff,0x96,0x40, 0xff,0xff,0x96,0x40,0xff,0xff,0x96,0x40,0xff,0xff,0x96,0x40,0xff,0xff,0x96,0x40, 0xff,0xff,0x96,0x40,0xff,0xff,0x96,0x40,0xff,0xff,0x96,0x40,0xff,0xff,0x96,0x40, 0xff,0xff,0x96,0x40,0xff,0xff,0x96,0x40,0xff,0xff,0x96,0x40,0xff,0xff,0x96,0x40, 0xff,0xff,0x96,0x40,0xff,0xff,0x96,0x40,0xff,0xff,0x96,0x40,0xff,0xff,0x96,0x40, 0xff,0xff,0x96,0x40,0xff,0xff,0x96,0x40,0xff,0xff,0x96,0x40,0xff,0xff,0x96,0x40, 0xff,0xff,0x96,0x40,0xff,0xf6,0x8b,0x35,0xff,0xe2,0x74,0x1c,0x3f,0xf1,0x90,0x3b, 0x7f,0xff,0xa9,0x56,0xff,0xff,0xa7,0x53,0xff,0xff,0xa6,0x50,0xff,0xff,0xa3,0x4c, 0xff,0xff,0x99,0x44,0xff,0xff,0x98,0x44,0xff,0xff,0x98,0x44,0xff,0xff,0x98,0x44, 0xff,0xff,0x98,0x44,0xff,0xff,0x98,0x44,0xff,0xff,0x98,0x44,0xff,0xff,0x98,0x44, 0xff,0xff,0x98,0x44,0xff,0xff,0x98,0x44,0xff,0xff,0x98,0x44,0xff,0xff,0x98,0x44, 0xff,0xff,0x98,0x44,0xff,0xff,0x98,0x44,0xff,0xff,0x98,0x44,0xff,0xff,0x98,0x44, 0xff,0xff,0x98,0x44,0xff,0xff,0x98,0x44,0xff,0xff,0x98,0x44,0xff,0xff,0x98,0x44, 0xff,0xff,0x98,0x44,0xff,0xff,0x98,0x44,0xff,0xff,0x98,0x44,0xff,0xff,0x98,0x44, 0xff,0xff,0x98,0x44,0xff,0xf8,0x90,0x3a,0xff,0xe4,0x76,0x1d,0x3f,0xff,0xad,0x5d, 0x3f,0xff,0xb2,0x6a,0xff,0xff,0xaa,0x58,0xff,0xff,0xa8,0x55,0xff,0xff,0xa7,0x52, 0xff,0xff,0xa3,0x4e,0xff,0xff,0x9c,0x48,0xff,0xff,0x9b,0x48,0xff,0xff,0x9b,0x48, 0xff,0xff,0x9b,0x48,0xff,0xff,0x9b,0x48,0xff,0xff,0x9b,0x48,0xff,0xff,0x9b,0x48, 0xff,0xff,0x9b,0x48,0xff,0xff,0x9b,0x48,0xff,0xff,0x9b,0x48,0xff,0xff,0x9b,0x48, 0xff,0xff,0x9b,0x48,0xff,0xff,0x9b,0x48,0xff,0xff,0x9b,0x48,0xff,0xff,0x9b,0x48, 0xff,0xff,0x9b,0x48,0xff,0xff,0x9b,0x48,0xff,0xff,0x9b,0x48,0xff,0xff,0x9b,0x48, 0xff,0xff,0x9b,0x48,0xff,0xff,0x9b,0x48,0xff,0xff,0x9b,0x48,0xff,0xff,0x9b,0x48, 0xff,0xff,0x9b,0x48,0xff,0xf7,0x90,0x3b,0xff,0xe7,0x79,0x1f,0x3f,0xff,0xaf,0x61, 0x1f,0xff,0xb3,0x6c,0xff,0xff,0xb4,0x6f,0xff,0xff,0xab,0x5a,0xff,0xff,0xaa,0x57, 0xff,0xff,0xa8,0x54,0xff,0xff,0xa5,0x51,0xff,0xff,0x9f,0x4d,0xff,0xff,0x9e,0x4c, 0xff,0xff,0x9e,0x4c,0xff,0xff,0x9e,0x4c,0xff,0xff,0x9e,0x4c,0xff,0xff,0x9e,0x4c, 0xff,0xff,0x9e,0x4c,0xff,0xff,0x9e,0x4c,0xff,0xff,0x9e,0x4c,0xff,0xff,0x9e,0x4c, 0xff,0xff,0x9e,0x4c,0xff,0xff,0x9e,0x4c,0xff,0xff,0x9e,0x4c,0xff,0xff,0x9e,0x4c, 0xff,0xff,0x9e,0x4c,0xff,0xff,0x9e,0x4c,0xff,0xff,0x9e,0x4c,0xff,0xff,0x9e,0x4c, 0xff,0xff,0x9e,0x4c,0xff,0xff,0x9e,0x4c,0xff,0xff,0x9e,0x4c,0xff,0xff,0x9e,0x4c, 0xff,0xff,0x9e,0x4c,0xff,0xf4,0x8d,0x36,0xff,0xe9,0x7b,0x20,0x1f,0x0,0x0,0x0, 0x0,0xff,0xb1,0x65,0xdf,0xff,0xbf,0x87,0xff,0xff,0xae,0x60,0xff,0xff,0xac,0x5d, 0xff,0xff,0xab,0x5a,0xff,0xff,0xa9,0x56,0xff,0xff,0xa7,0x53,0xff,0xff,0xa2,0x50, 0xff,0xff,0xa0,0x4f,0xff,0xff,0xa0,0x4f,0xff,0xff,0xa0,0x4f,0xff,0xff,0xa0,0x4f, 0xff,0xff,0xa0,0x4f,0xff,0xff,0xa0,0x4f,0xff,0xff,0xa0,0x4f,0xff,0xff,0xa0,0x4f, 0xff,0xff,0xa0,0x4f,0xff,0xff,0xa0,0x4f,0xff,0xff,0xa0,0x4f,0xff,0xff,0xa0,0x4f, 0xff,0xff,0xa0,0x4f,0xff,0xff,0xa0,0x4f,0xff,0xff,0xa0,0x4f,0xff,0xff,0xa0,0x4f, 0xff,0xff,0xa0,0x4f,0xff,0xff,0xa0,0x4f,0xff,0xff,0xa0,0x4f,0xff,0xff,0xa0,0x4f, 0xff,0xff,0xa0,0x4f,0xff,0xef,0x85,0x2c,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xff,0xb3,0x6a,0x7f,0xff,0xbd,0x80,0xff,0xff,0xbe,0x83,0xff,0xff,0xaf,0x63, 0xff,0xff,0xad,0x5f,0xff,0xff,0xac,0x5c,0xff,0xff,0xaa,0x59,0xff,0xff,0xa9,0x56, 0xff,0xff,0xa5,0x53,0xff,0xff,0xa3,0x53,0xff,0xff,0xa3,0x53,0xff,0xff,0xa3,0x53, 0xff,0xff,0xa3,0x53,0xff,0xff,0xa3,0x53,0xff,0xff,0xa3,0x53,0xff,0xff,0xa3,0x53, 0xff,0xff,0xa3,0x53,0xff,0xff,0xa3,0x53,0xff,0xff,0xa3,0x53,0xff,0xff,0xa3,0x53, 0xff,0xff,0xa3,0x53,0xff,0xff,0xa3,0x53,0xff,0xff,0xa3,0x53,0xff,0xff,0xa3,0x53, 0xff,0xff,0xa3,0x53,0xff,0xff,0xa3,0x53,0xff,0xff,0xa3,0x53,0xff,0xff,0xa3,0x53, 0xff,0xfc,0x9e,0x4d,0xff,0xed,0x80,0x23,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xff,0xb6,0x6d,0xf,0xff,0xb7,0x72,0xef,0xff,0xcd,0xa1,0xff,0xff,0xbb,0x7f, 0xff,0xff,0xb1,0x65,0xff,0xff,0xaf,0x61,0xff,0xff,0xad,0x5e,0xff,0xff,0xab,0x5b, 0xff,0xff,0xaa,0x58,0xff,0xff,0xa8,0x57,0xff,0xff,0xa6,0x57,0xff,0xff,0xa6,0x57, 0xff,0xff,0xa6,0x57,0xff,0xff,0xa6,0x57,0xff,0xff,0xa6,0x57,0xff,0xff,0xa6,0x57, 0xff,0xff,0xa6,0x57,0xff,0xff,0xa6,0x57,0xff,0xff,0xa6,0x57,0xff,0xff,0xa6,0x57, 0xff,0xff,0xa6,0x57,0xff,0xff,0xa6,0x57,0xff,0xff,0xa6,0x57,0xff,0xff,0xa6,0x57, 0xff,0xff,0xa6,0x57,0xff,0xff,0xa6,0x57,0xff,0xff,0xa6,0x57,0xff,0xff,0xa6,0x57, 0xff,0xf5,0x8f,0x37,0xdf,0xef,0x82,0x25,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xff,0xb7,0x71,0x4f,0xff,0xbd,0x80,0xff,0xff,0xdb,0xbb, 0xff,0xff,0xbe,0x82,0xff,0xff,0xb2,0x67,0xff,0xff,0xb0,0x63,0xff,0xff,0xae,0x60, 0xff,0xff,0xad,0x5d,0xff,0xff,0xab,0x5b,0xff,0xff,0xaa,0x5b,0xff,0xff,0xa8,0x5b, 0xff,0xff,0xa8,0x5b,0xff,0xff,0xa8,0x5b,0xff,0xff,0xa8,0x5b,0xff,0xff,0xa8,0x5b, 0xff,0xff,0xa8,0x5b,0xff,0xff,0xa8,0x5b,0xff,0xff,0xa8,0x5b,0xff,0xff,0xa8,0x5b, 0xff,0xff,0xa8,0x5b,0xff,0xff,0xa8,0x5b,0xff,0xff,0xa8,0x5b,0xff,0xff,0xa8,0x5b, 0xff,0xff,0xa8,0x5b,0xff,0xff,0xa8,0x5b,0xff,0xff,0xa8,0x5b,0xff,0xfa,0x9b,0x47, 0xff,0xf1,0x85,0x27,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xb9,0x74,0x5f,0xff,0xcb,0x9b, 0xff,0xff,0xeb,0xda,0xff,0xff,0xc1,0x89,0xff,0xff,0xb3,0x69,0xff,0xff,0xb1,0x65, 0xff,0xff,0xb0,0x62,0xff,0xff,0xae,0x60,0xff,0xff,0xac,0x5f,0xff,0xff,0xab,0x5f, 0xff,0xff,0xab,0x5f,0xff,0xff,0xab,0x5f,0xff,0xff,0xab,0x5f,0xff,0xff,0xab,0x5f, 0xff,0xff,0xab,0x5f,0xff,0xff,0xab,0x5f,0xff,0xff,0xab,0x5f,0xff,0xff,0xab,0x5f, 0xff,0xff,0xab,0x5f,0xff,0xff,0xab,0x5f,0xff,0xff,0xab,0x5f,0xff,0xff,0xab,0x5f, 0xff,0xff,0xab,0x5f,0xff,0xff,0xab,0x5f,0xff,0xfd,0xa4,0x54,0xff,0xf6,0x8d,0x31, 0x5f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xba,0x77, 0x5f,0xff,0xcc,0x9d,0xff,0xff,0xe3,0xc9,0xff,0xff,0xc7,0x93,0xff,0xff,0xb7,0x71, 0xff,0xff,0xb2,0x67,0xff,0xff,0xb1,0x64,0xff,0xff,0xaf,0x62,0xff,0xff,0xae,0x62, 0xff,0xff,0xae,0x62,0xff,0xff,0xae,0x62,0xff,0xff,0xae,0x62,0xff,0xff,0xae,0x62, 0xff,0xff,0xae,0x62,0xff,0xff,0xae,0x62,0xff,0xff,0xae,0x62,0xff,0xff,0xae,0x62, 0xff,0xff,0xae,0x62,0xff,0xff,0xae,0x62,0xff,0xff,0xae,0x62,0xff,0xff,0xae,0x62, 0xff,0xff,0xae,0x62,0xff,0xfd,0xa4,0x53,0xef,0xf8,0x90,0x33,0x5f,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xff,0xbb,0x7a,0x2f,0xff,0xbe,0x82,0xcf,0xff,0xca,0x98,0xff,0xff,0xd2,0xa8, 0xff,0xff,0xc2,0x87,0xff,0xff,0xb5,0x6d,0xff,0xff,0xb2,0x67,0xff,0xff,0xb0,0x66, 0xff,0xff,0xb0,0x66,0xff,0xff,0xb0,0x66,0xff,0xff,0xb0,0x66,0xff,0xff,0xb0,0x66, 0xff,0xff,0xb0,0x66,0xff,0xff,0xb0,0x66,0xff,0xff,0xb0,0x66,0xff,0xff,0xb0,0x66, 0xff,0xff,0xb0,0x66,0xff,0xff,0xb0,0x66,0xff,0xff,0xb0,0x66,0xff,0xfe,0xae,0x62, 0xff,0xfc,0xa1,0x4d,0xbf,0xf8,0x8c,0x2b,0x2f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xbc,0x7b,0x5f,0xff,0xbe,0x7f, 0xdf,0xff,0xc2,0x88,0xff,0xff,0xca,0x98,0xff,0xff,0xc5,0x8d,0xff,0xff,0xbc,0x7b, 0xff,0xff,0xb3,0x6a,0xff,0xff,0xb3,0x6a,0xff,0xff,0xb3,0x6a,0xff,0xff,0xb3,0x6a, 0xff,0xff,0xb3,0x6a,0xff,0xff,0xb3,0x6a,0xff,0xff,0xb3,0x6a,0xff,0xff,0xb3,0x6a, 0xff,0xff,0xb3,0x6a,0xff,0xfe,0xb0,0x66,0xff,0xfe,0xaa,0x5c,0xcf,0xfc,0x9b,0x41, 0x5f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xff,0xba,0x75,0x2f,0xff,0xb8,0x73,0x8f,0xff,0xbb,0x79,0xcf,0xff,0xbe,0x7f, 0xff,0xff,0xc3,0x89,0xff,0xff,0xba,0x78,0xff,0xff,0xb5,0x6e,0xff,0xff,0xb5,0x6e, 0xff,0xff,0xb5,0x6e,0xff,0xff,0xb5,0x6e,0xff,0xff,0xb1,0x66,0xff,0xfe,0xad,0x5f, 0xcf,0xfe,0xa9,0x58,0x8f,0xfd,0x9d,0x43,0x2f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xff,0xab,0x5a,0x2f,0xff,0xb7,0x70,0x3f,0xff,0xb7,0x70,0x3f,0xff,0xb7,0x70, 0x3f,0xff,0xae,0x60,0x3f,0xff,0x94,0x30,0x2f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfd,0xff,0xff, 0xff,0xfc,0xff,0xff,0xff,0xfc,0x7f,0xff,0xff,0xf8,0x3f,0xff,0xff,0xf8,0x1f,0xff, 0xff,0xf8,0xf,0xff,0xff,0xf0,0x7,0xff,0xff,0xf0,0x0,0x7,0xff,0xf0,0x0,0x0, 0xff,0xf0,0x0,0x0,0x3f,0xe0,0x0,0x0,0x1f,0xe0,0x0,0x0,0xf,0xe0,0x0,0x0, 0x7,0xc0,0x0,0x0,0x3,0x80,0x0,0x0,0x1,0x80,0x0,0x0,0x1,0x80,0x0,0x0, 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x80,0x0,0x0,0x1,0x80,0x0,0x0,0x1,0x80,0x0,0x0, 0x1,0xc0,0x0,0x0,0x3,0xe0,0x0,0x0,0x7,0xf0,0x0,0x0,0xf,0xf8,0x0,0x0, 0x1f,0xfe,0x0,0x0,0x7f,0xff,0x80,0x1,0xff,0xff,0xf8,0x1f,0xff,0x89,0x50,0x4e, 0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x8,0x6,0x0,0x0,0x0,0x5c,0x72,0xa8,0x66,0x0,0x0, 0x0,0x6,0x62,0x4b,0x47,0x44,0x0,0xff,0x0,0xff,0x0,0xff,0xa0,0xbd,0xa7,0x93, 0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0x0,0x48,0x0,0x0,0x0,0x48, 0x0,0x46,0xc9,0x6b,0x3e,0x0,0x0,0x36,0x66,0x49,0x44,0x41,0x54,0x78,0xda,0xed, 0x9d,0x69,0x90,0x24,0xc7,0x75,0xdf,0xff,0xd5,0xe7,0x9c,0x3b,0xb3,0xbb,0xb3,0x8b, 0x8b,0xc4,0xe,0x48,0x82,0xa0,0xa0,0x63,0x7,0x14,0x49,0x51,0x96,0x64,0xc,0x25, 0xca,0xa1,0x70,0x84,0x3,0x13,0xe,0x87,0x25,0x85,0xf,0x8c,0x14,0x16,0x25,0xd9, 0x24,0x30,0x0,0x1,0xc8,0x92,0x25,0x71,0x69,0x5b,0xb2,0x22,0x1c,0x21,0xe,0x2d, 0xe8,0x96,0xc9,0x81,0x28,0xea,0x96,0x38,0x3c,0x84,0xeb,0x53,0xd3,0xe1,0x70,0x58, 0x96,0x44,0xcd,0x82,0xb8,0xb8,0x2,0xb8,0xb3,0x0,0x76,0x77,0xee,0xe9,0xbb,0xba, 0xce,0xf4,0x87,0xac,0xea,0xce,0xaa,0xce,0xaa,0xae,0xea,0xbb,0x7b,0xde,0x6f,0xa3, 0xb7,0xab,0xb3,0x2a,0xab,0x6a,0xaa,0xfb,0xff,0xf2,0xbd,0x97,0x99,0x55,0x0,0x41, 0x10,0x4,0x41,0x10,0x4,0x41,0x10,0x4,0x41,0x10,0x4,0x41,0x10,0x4,0x41,0x10, 0xe3,0x89,0x32,0xe8,0x13,0x20,0x7a,0xc3,0xd2,0x93,0xec,0x7e,0x49,0xf1,0xa2,0xf3, 0xa,0x63,0xdb,0x79,0x79,0xd8,0xfa,0xa8,0xf2,0xd5,0x41,0xff,0x4d,0x44,0xf7,0x21, 0x3,0x30,0x42,0x2c,0x3d,0xc9,0x2e,0x0,0x58,0xbc,0xf7,0x16,0x2c,0x56,0x75,0x2c, 0x4e,0x65,0x30,0xf,0x60,0x9,0x0,0x18,0xc3,0x62,0x36,0xe5,0x15,0xf7,0x4c,0x6, 0x48,0x25,0xa3,0xef,0xdf,0xb4,0x80,0xb2,0xee,0x2d,0xab,0x19,0x40,0xcd,0x74,0x96, 0x4d,0xfe,0x39,0x91,0xc0,0xf6,0x51,0xb5,0x6e,0x24,0x72,0xce,0xfb,0xb6,0xfb,0xda, 0xfa,0xa8,0x72,0x6d,0xd0,0xd7,0x8a,0x88,0x6,0x19,0x80,0x21,0xe4,0x81,0xcf,0xdb, 0xf7,0x4f,0xa7,0xb1,0x78,0x6e,0x46,0x59,0xcc,0xab,0x6c,0x79,0x3a,0xab,0xcc,0x6b, 0x26,0x96,0x66,0x32,0x83,0x3e,0xb3,0x66,0xca,0x3a,0x60,0xda,0x40,0x59,0x63,0x30, 0x6d,0x20,0xaf,0x72,0x23,0xa1,0x99,0xd8,0x2,0x90,0x7,0x37,0x10,0xdb,0x0,0xb6, 0xb7,0x3e,0x96,0x20,0x2f,0x62,0xc8,0x20,0x3,0x30,0x40,0x1e,0x79,0x86,0xcd,0x31, 0x60,0x49,0x35,0xd8,0x72,0x52,0xc1,0x92,0x69,0x63,0x69,0x32,0xad,0x2c,0xe,0xfa, 0xbc,0xba,0x45,0x5e,0x65,0x75,0xf,0x22,0xaf,0xd6,0x8d,0xc5,0x16,0xb8,0x41,0xd8, 0x2,0x37,0xe,0x5b,0x97,0x3f,0x96,0x28,0xc,0xfa,0x5c,0x4f,0x2a,0x64,0x0,0xfa, 0xc8,0xa3,0xcf,0xb2,0x8b,0xc,0x58,0x6,0xc3,0x12,0x3,0x96,0xe1,0xc4,0xe3,0xcc, 0xf9,0x8f,0xd,0xfa,0x4,0xfb,0x40,0xcd,0x60,0x75,0x63,0x90,0x57,0x81,0xa,0xf, 0x39,0xb6,0xd0,0x30,0x8,0xb9,0xcb,0x1f,0x4b,0x50,0x8,0xd1,0x27,0xc8,0x0,0xf4, 0x90,0x47,0x9f,0x65,0x17,0x1,0x2c,0x6b,0x6,0x56,0x32,0x69,0x2c,0x81,0x61,0x1e, 0x68,0x8,0x9d,0x9,0x1f,0x9a,0xc4,0x7f,0x12,0xac,0x81,0x43,0x5e,0xe5,0x46,0xe1, 0xa0,0x52,0x37,0x8,0xdb,0x70,0x8c,0x1,0x80,0xdc,0xe5,0x87,0xc8,0x20,0xf4,0xa, 0x32,0x0,0x5d,0xe4,0xe3,0xcf,0xb1,0xb,0x60,0x58,0x6,0xb0,0xe2,0xb4,0xf0,0xf3, 0x75,0x1d,0x33,0x9f,0xf0,0x7d,0x65,0xf5,0xf2,0x8,0xc2,0x9f,0x75,0x72,0x1,0xa7, 0xb2,0xce,0x67,0xe7,0x5d,0x33,0x81,0xdd,0xa,0x50,0x35,0x6,0x7d,0x25,0xda,0xc7, 0xb4,0x18,0xf2,0x35,0xe0,0xb0,0xc2,0x8d,0x82,0xc6,0x13,0x90,0x5b,0xe0,0xc6,0x60, 0xf3,0xf2,0x43,0x49,0xca,0x23,0x74,0x11,0x32,0x0,0x1d,0xf2,0xd8,0x73,0xec,0x22, 0x3,0x56,0x0,0xac,0x38,0xae,0x7d,0x1d,0x99,0x6b,0x1f,0x56,0xe6,0x67,0x36,0x3, 0x4c,0xa5,0x81,0x6c,0xca,0x79,0x4f,0xf2,0x65,0x17,0xd3,0x6,0x4a,0x1a,0x70,0x5c, 0x3,0x8a,0x1a,0xa0,0x5b,0x83,0xbe,0x1a,0xdd,0xa7,0xac,0x71,0x43,0xb0,0x5b,0x62, 0xae,0x77,0x90,0x7,0xb0,0xe9,0xbc,0x72,0x97,0x1f,0x4a,0x52,0xfe,0xa0,0x3,0xc8, 0x0,0xb4,0xc1,0x63,0xcf,0xb1,0x8b,0x0,0x56,0xc1,0x5b,0xfa,0xc5,0xb8,0x22,0x97, 0x85,0x0,0xb3,0x19,0xde,0x92,0x4f,0xa5,0x1b,0xa2,0x97,0x51,0xd5,0xb9,0xe0,0x8f, 0x6b,0xa3,0xdd,0xd2,0xb7,0x43,0xcd,0x60,0x38,0xa8,0x78,0x8c,0x1,0xe0,0x18,0x83, 0x17,0x1e,0x4a,0x3e,0x35,0xe8,0xf3,0x1b,0x45,0xc8,0x0,0x44,0xe4,0xf1,0xe7,0xd9, 0x5,0xc6,0xb0,0xa,0x2e,0xfc,0xc5,0x58,0x22,0xf7,0x6d,0x9b,0x54,0xb8,0xd8,0x67, 0x32,0xdc,0x8d,0x9f,0x4a,0x7,0x1f,0xb7,0xde,0xca,0xab,0xfc,0x65,0x9d,0xa0,0xdc, 0x40,0x18,0xae,0x31,0xb8,0x5e,0x60,0xd0,0x4c,0x6,0x34,0x3c,0x83,0x8d,0x17,0x1e, 0x4e,0x51,0x98,0x10,0x11,0x32,0x0,0x21,0x3c,0xfe,0x3c,0x9b,0x3,0x77,0xef,0x57, 0x19,0x8f,0xed,0x23,0x8b,0x5c,0xdc,0x36,0xa9,0x0,0x33,0x59,0x6f,0x2b,0x1f,0x86, 0x66,0x72,0xb1,0x17,0x35,0x20,0x5f,0x1b,0xf4,0x55,0x18,0x7e,0xca,0x1a,0xc3,0xf5, 0x2,0xc3,0x41,0x85,0xc1,0xb2,0x1,0xf0,0x24,0xe2,0x6,0xb8,0x31,0xa0,0x4,0x62, 0x8,0x64,0x0,0x24,0x3c,0xfe,0x3c,0xbb,0x8,0x60,0xd,0xc0,0xa,0xf3,0x65,0xee, 0xa3,0xba,0xfb,0x99,0x24,0x30,0xef,0x88,0x7e,0x7e,0xb2,0xf5,0x31,0x35,0x13,0x38, 0x52,0x81,0x83,0xea,0xc9,0x73,0xed,0xbb,0x85,0x69,0x31,0x1c,0x56,0xb8,0x31,0xa8, 0x68,0xf5,0xe2,0x4d,0x0,0x1b,0x2f,0xac,0xa5,0xbe,0x38,0xe8,0xf3,0x1b,0x46,0xc8, 0x0,0x8,0x3c,0xfe,0x3c,0x7b,0x10,0xdc,0xc5,0x5f,0x66,0x82,0xa2,0xa3,0x26,0xf3, 0x26,0x53,0xdc,0xad,0x3f,0x3b,0xd9,0xba,0x95,0x7,0x78,0x97,0xd7,0x41,0x15,0x38, 0xaa,0x39,0x9,0x3c,0x72,0xef,0xbb,0x46,0x5e,0x65,0xd8,0x2d,0x31,0xec,0x95,0x6c, 0xb7,0x68,0x1b,0xc0,0x3a,0x80,0x8d,0x17,0xd6,0xd2,0x94,0x38,0x74,0x38,0xf1,0x6, 0xe0,0x9,0xee,0xe6,0xaf,0x32,0xde,0xe2,0x2f,0xca,0x84,0x2f,0xbc,0x35,0x95,0x65, 0x92,0xc0,0x5c,0x16,0x38,0x13,0x51,0xf4,0x9a,0xc9,0x13,0x78,0x3b,0x65,0x40,0xb3, 0xe0,0xdd,0x39,0xd1,0x75,0x6a,0x6,0xc3,0x5e,0x89,0xe1,0x7a,0xc1,0x86,0xc9,0x6d, 0x41,0x1e,0x3c,0x3c,0x58,0xff,0xfa,0x5a,0xfa,0xc4,0x87,0x7,0x27,0xd6,0x0,0x38, 0xc2,0x5f,0x73,0x84,0x3f,0xf,0x0,0xcc,0x27,0xf6,0xa0,0xbe,0xfb,0x84,0xc2,0x45, 0x7f,0x6e,0x9a,0xb7,0xfa,0xad,0xb0,0x18,0x6f,0xe9,0x5d,0xf7,0xbe,0xbe,0x4f,0x99, 0xf0,0xc9,0x18,0xf4,0x4,0xd3,0x66,0xb8,0x51,0x60,0xb8,0x9e,0xb7,0xdd,0x3c,0x1, 0xc0,0xd,0xc1,0xa5,0xaf,0x3f,0x72,0x72,0xd,0xc1,0x89,0x33,0x0,0x71,0x85,0x5f, 0x2f,0x67,0xc0,0x44,0xa,0x38,0x37,0xc5,0xc5,0x9f,0x4c,0xb4,0x3e,0xd6,0x71,0xd, 0x38,0xac,0x2,0xc7,0x9a,0x77,0x9f,0x2c,0x48,0xe4,0x24,0xfe,0xbe,0xb0,0x5b,0xb4, 0xf1,0xc6,0xb1,0xed,0xe,0x32,0x2,0x4e,0xb0,0x21,0x38,0x31,0x6,0xc0,0x15,0x3e, 0xb8,0xf8,0xe7,0xdd,0xf2,0xb4,0x2,0xa4,0x12,0xfc,0x95,0x10,0xae,0x86,0xcd,0x0, 0xc3,0x6,0x2a,0x6,0x30,0x3f,0x1,0x9c,0x9b,0x4,0x26,0x23,0xba,0xf8,0xbb,0x15, 0xe0,0x50,0x5,0x4c,0x86,0x66,0x63,0x42,0xad,0xfe,0xd0,0xf0,0xc6,0x91,0x8d,0xeb, 0x5,0x4b,0xe2,0x11,0x64,0x4e,0x8c,0x21,0x18,0x7b,0x3,0x20,0x13,0x7e,0x52,0x1, 0x32,0x9,0x20,0x1d,0xd2,0x8a,0x27,0x13,0xc0,0xc2,0x14,0x30,0x37,0x1,0xa8,0x11, 0xb2,0xf2,0x7,0x55,0x2e,0xfa,0x92,0x1e,0x90,0x34,0xf4,0xe7,0x16,0x3c,0xb,0x90, 0xac,0x24,0xfa,0x1,0xf,0xd,0x6c,0xdc,0x28,0xd8,0x27,0xd2,0x10,0x8c,0xb5,0x1, 0x78,0x82,0x67,0xf5,0x2f,0x31,0x67,0xd6,0x5d,0x5a,0xe1,0xc3,0x69,0x13,0x21,0x7f, 0x75,0x3a,0x9,0xdc,0x32,0xc3,0x93,0x7a,0x2e,0xc7,0xaa,0x7c,0x5b,0xcd,0xe4,0xa2, 0xdf,0xad,0xf0,0x38,0x5f,0x9a,0x34,0x8c,0x2a,0xfc,0xb0,0x72,0xa2,0xe7,0x98,0x16, 0xc3,0xd5,0x43,0xb,0xbb,0xa5,0xfa,0x97,0x90,0x7,0xef,0x35,0x58,0x7f,0xf1,0xd1, 0xcc,0xd8,0xf6,0x1a,0x8c,0xa5,0x1,0x78,0xe2,0x79,0x76,0x3f,0x80,0x75,0xe6,0xdc, 0x2d,0x27,0x15,0x41,0xf8,0x19,0x47,0xf8,0xa7,0x7d,0x7d,0xf6,0xa6,0xc5,0x5b,0x75, 0x91,0xb2,0xc6,0x85,0x7f,0xe0,0x18,0x86,0xc0,0xdc,0x81,0x64,0xa6,0x1f,0x85,0x0, 0xc3,0x4d,0x45,0x63,0xf8,0xe6,0x81,0x85,0x62,0xad,0xfe,0xa5,0x6c,0x3,0xb8,0xf4, 0xe2,0xa3,0x99,0xb1,0x1c,0x6a,0x3c,0x56,0x6,0xc0,0x71,0xf7,0xd7,0xc1,0xbb,0xf5, 0x90,0x74,0x84,0x9f,0x8c,0xd9,0xe2,0x8b,0x94,0x34,0xb8,0xdd,0x47,0x38,0x54,0x81, 0x3d,0xdf,0x6c,0xbb,0x30,0x77,0x9f,0x84,0x3f,0xba,0xec,0x16,0x6d,0x5c,0x3d,0x34, 0xc5,0xb0,0x20,0x7,0x60,0xed,0xc5,0x47,0xb3,0x97,0x7,0x7d,0x6e,0xdd,0x64,0x6c, 0xc,0xc0,0x13,0xcf,0xb3,0x87,0xc1,0xdd,0xfd,0x79,0x5,0x40,0xb6,0x45,0x8c,0x9f, 0xe,0x68,0xf1,0x45,0x6a,0x26,0x6f,0xed,0xf3,0x9a,0xaf,0xdf,0x1e,0xd1,0xe3,0x7c, 0xa,0x1,0x46,0x17,0xd3,0x66,0x78,0xf3,0xc8,0xc2,0xcd,0x82,0x2d,0x16,0x5f,0x2, 0xb0,0xfe,0xe2,0xc7,0xb3,0x63,0x11,0x16,0x8c,0xbc,0x1,0x78,0xe2,0x79,0x76,0x1, 0xc0,0x86,0x33,0xff,0x9e,0xc7,0xf9,0x9,0x40,0x9,0xf8,0xcb,0x12,0xa,0xb0,0x30, 0xcd,0x13,0x7c,0x61,0x5d,0x79,0x55,0x3,0xd8,0xce,0x3,0xfb,0x55,0xc0,0xb2,0xc3, 0x6f,0xe2,0x21,0x15,0x39,0xe4,0x9e,0x0,0x25,0xfe,0x46,0x8f,0x82,0x6a,0xe3,0xea, 0x81,0x85,0xaa,0xee,0x9,0xb,0x56,0x5f,0xfc,0x78,0x76,0xe4,0x27,0x1d,0x8d,0xb4, 0x1,0x78,0xe2,0x79,0xf6,0x30,0xe3,0x16,0x79,0x5e,0x1,0x30,0xd1,0xc2,0xdd,0x3f, 0x3d,0x9,0xdc,0x3e,0x1b,0x2e,0x7c,0xcb,0x6,0xde,0x2a,0x71,0xf1,0x37,0x9,0xdf, 0x59,0x88,0xea,0xee,0x53,0x8,0x30,0x5e,0xbc,0x79,0x64,0xe1,0xcd,0x63,0xcf,0x4d, 0x17,0xd6,0x1,0x5c,0x7a,0x69,0x84,0xbd,0x81,0x91,0x34,0x0,0xfe,0x56,0x3f,0xa5, 0x0,0x59,0x25,0xb8,0xd5,0x9f,0x48,0x1,0xb7,0x9f,0xe2,0xe3,0xf4,0xc3,0xd8,0x2d, 0x3,0x6f,0x15,0x81,0x82,0xe,0xe9,0x40,0xa0,0x38,0x22,0x6f,0x6b,0xb4,0x1f,0x19, 0x84,0xa1,0xa7,0xa0,0xda,0x78,0x6d,0xcf,0x10,0x7,0x11,0x6d,0x3,0x58,0x7d,0xe9, 0xb1,0x89,0x91,0xf4,0x6,0x46,0xce,0x0,0x3c,0xf1,0x3c,0x7b,0x80,0xf1,0x7e,0xda, 0x79,0x0,0x98,0x48,0x70,0x3,0x20,0x23,0xa1,0xf0,0x38,0xff,0xdc,0x74,0xf8,0x3e, 0x8f,0x54,0x2e,0xfe,0x92,0xe,0x94,0x24,0x9,0x3e,0xe1,0x2d,0x72,0x9c,0x1f,0x6b, 0xb4,0x1f,0x9,0x7f,0xa4,0xe0,0x5d,0x86,0x26,0xf6,0x4b,0xde,0xdc,0xc0,0x4b,0x8f, 0x4d,0x7c,0x72,0xd0,0xe7,0x16,0x97,0x91,0x31,0x0,0x4f,0x3c,0xcf,0xe6,0x98,0x93, 0xe1,0x7,0x80,0x4,0x78,0xac,0x1f,0xd4,0xb5,0x37,0x9d,0x1,0xee,0x9c,0xe3,0xdd, 0x7b,0x41,0x94,0x75,0xe0,0x8d,0x2,0x60,0x58,0x40,0xd9,0x0,0x6a,0x8e,0x77,0x27, 0x9d,0xb,0x10,0x23,0xce,0x6f,0x3b,0xf6,0x27,0x43,0x30,0x52,0xec,0x95,0x2c,0x6c, 0x7b,0x7b,0xa,0xb6,0x0,0xac,0xbc,0xf4,0xd8,0xc4,0xc8,0xc,0x20,0x1a,0x9,0x3, 0xf0,0xc4,0xf3,0xec,0xa2,0xd3,0xea,0x2f,0x31,0xe6,0xb8,0xfc,0x9,0xf9,0xd9,0x27, 0x15,0x2e,0xfc,0xb9,0x89,0xe0,0xfd,0xe9,0x16,0x17,0x7e,0x59,0xe7,0x62,0xad,0x98, 0x3c,0xc3,0xdf,0xcd,0x38,0xdf,0x9f,0xf1,0xf,0x35,0x6,0x24,0xfc,0x91,0xa5,0xaa, 0xd9,0x78,0x6d,0xdf,0x10,0x13,0x84,0x79,0x0,0xab,0x2f,0x3d,0x36,0x39,0x12,0xf7, 0x1f,0x18,0x7a,0x3,0xf0,0x91,0x2f,0xb0,0x7,0xe7,0xa6,0xb1,0xee,0xde,0x98,0x23, 0x6c,0x8,0xef,0x4c,0x8b,0x56,0xdf,0xb2,0x79,0x56,0x7f,0xa7,0xcc,0x3f,0xdb,0xc, 0x28,0xea,0xde,0x51,0x7c,0xed,0x74,0xeb,0x45,0x16,0xbe,0xac,0x80,0xc4,0x3f,0xf2, 0x98,0x16,0xc3,0xf6,0xa1,0x89,0xfd,0x92,0x37,0x41,0xf8,0xf2,0xe3,0x93,0x8f,0xc, 0xfa,0xdc,0x5a,0x31,0xd4,0x6,0xe0,0xf1,0xe7,0xd9,0xa7,0x0,0xac,0xb9,0x2,0xb, 0x1a,0xd4,0x73,0x66,0x12,0xf8,0xf6,0x5b,0xb8,0xf8,0x1,0xe0,0x8d,0x3c,0x50,0xd0, 0xbc,0xdb,0xb8,0xee,0xbe,0x7b,0xe7,0x5c,0xcb,0xe6,0xe2,0xb7,0x81,0xb6,0xe3,0x7c, 0xb1,0xdc,0xdf,0xc2,0xb7,0xbc,0xeb,0x2f,0x9,0x7f,0xec,0xb8,0x99,0x37,0x71,0xed, 0xd0,0x14,0x8b,0x72,0x0,0x56,0x5e,0x7e,0x7c,0x72,0x68,0x7b,0x9,0x86,0xd2,0x0, 0x38,0xf7,0xe2,0xdb,0x60,0xc,0x2b,0xee,0x49,0xca,0xe2,0xfd,0x5b,0x67,0x81,0xf7, 0xde,0x6,0x5c,0x98,0xf7,0x76,0xed,0xbd,0x91,0xe7,0x2f,0x80,0xb7,0xee,0x6f,0x14, 0x80,0x82,0x70,0x6f,0x3d,0xcd,0x2,0xaa,0x66,0x43,0xfc,0xdd,0x8c,0xf3,0xdb,0x12, 0x3e,0x19,0x83,0xb1,0xa1,0xa8,0xda,0xf8,0xc6,0x8e,0xe,0xcb,0xf6,0x8c,0x19,0x58, 0x79,0xf9,0x89,0xa9,0xa1,0x1c,0x41,0x38,0x74,0x6,0xe0,0xf1,0xe7,0xd9,0x1c,0x63, 0xc8,0xc1,0x19,0xc7,0xaf,0x80,0x67,0xfa,0xc5,0x2e,0xbe,0x4c,0x12,0xf8,0xde,0xb, 0xc0,0x5d,0xa7,0x79,0x17,0x9f,0xb8,0xae,0x66,0x2,0x7f,0x7f,0x83,0xb7,0xf0,0x85, 0x1a,0x17,0xbf,0x78,0x27,0x5d,0xd5,0x4,0xaa,0xce,0xed,0xb7,0x3a,0xed,0xd6,0xb, 0x72,0xf7,0x63,0xb5,0xf8,0x24,0xfe,0xb1,0xa3,0xa2,0xd9,0xb8,0xb2,0xa3,0xbb,0x77, 0x2b,0x6,0x9c,0xbc,0xc0,0xcb,0x4f,0x4c,0xd,0x5d,0x5e,0x60,0xa8,0xc,0x80,0x73, 0xbf,0xfd,0x1c,0x9c,0x27,0xea,0x24,0xd1,0x3c,0xaa,0xef,0xce,0x39,0x2e,0xfe,0x99, 0x6c,0x73,0xac,0x5f,0xd6,0x81,0x2b,0x7,0x40,0xb1,0x6,0x5c,0x2f,0x35,0xcf,0xe2, 0x2b,0x1b,0xbe,0x64,0x1f,0x3a,0x8c,0xf3,0x9d,0xf,0xad,0x6,0xb,0x51,0xab,0x7f, 0xf2,0xb0,0x2c,0x86,0x97,0x6f,0x68,0x62,0x72,0x10,0xe0,0x46,0x60,0xa8,0x26,0x15, 0xd,0x8d,0x1,0x70,0xc5,0xef,0xce,0xd9,0x4f,0xc1,0xc9,0xf4,0xb,0x7c,0xe0,0x6d, 0xc0,0xbd,0xe7,0xf9,0x8d,0x39,0xfc,0xa3,0xf9,0xca,0x3a,0xf0,0xc2,0xe,0x1f,0xbb, 0x7f,0xf5,0x98,0x77,0xed,0xb9,0xd8,0xc,0x28,0x9a,0xbe,0x91,0x7d,0x3d,0x8a,0xf3, 0xdb,0x12,0x3e,0x19,0x83,0xb1,0xc4,0xb4,0x19,0xae,0xec,0xe8,0x28,0xaa,0x9e,0xf1, 0x2,0xeb,0xaf,0xfc,0xcc,0xd4,0xd0,0x24,0x7,0x87,0xc2,0x0,0x3c,0xf6,0x1c,0x7b, 0x10,0x7c,0xfa,0xee,0xbc,0x7b,0x1f,0x7d,0x51,0xfc,0xae,0xcb,0xbf,0x78,0x9a,0x8b, 0xdf,0x9f,0xb,0xd8,0x2d,0x3,0xaf,0x1f,0x1,0x3b,0x25,0xe0,0x7a,0xd1,0xbb,0xce, 0xb4,0x81,0xb2,0xe9,0xd,0x3,0x3a,0xed,0xd6,0xb,0x8a,0xf3,0x69,0xf4,0x1f,0x21, 0xe3,0xf5,0x3d,0x1d,0x7,0x25,0x4f,0x72,0x70,0xe3,0x95,0x9f,0x99,0xfe,0xb1,0x41, 0x9f,0x17,0x30,0x4,0x6,0xe0,0xb1,0xe7,0xd8,0x83,0xc,0xd8,0x70,0x85,0x95,0x92, 0x88,0xff,0x87,0xee,0x6,0xce,0xcf,0x34,0xc7,0xfb,0x0,0x70,0x2d,0xf,0x5c,0x3d, 0x92,0x67,0xfe,0xd,0x9b,0xbb,0xfd,0xae,0xfd,0xed,0x7a,0x9c,0xef,0x2c,0xd0,0xe8, 0x3f,0xa2,0x15,0xaf,0xef,0x69,0x38,0xf0,0x76,0x13,0xe,0x85,0x11,0x18,0xa8,0x1, 0xf8,0xf8,0x73,0xec,0x41,0x30,0x6c,0x0,0x5c,0xf,0x6e,0xcc,0xef,0x92,0x49,0x2, 0x3f,0xf4,0x6e,0x3e,0x9c,0x57,0x76,0x3f,0xbe,0x6f,0x1c,0x0,0xdb,0xc7,0x5c,0xfc, 0xfe,0xdb,0x76,0x69,0x36,0x1f,0xe0,0x3,0x74,0x37,0xce,0xaf,0xaf,0x8b,0x90,0x44, 0xa4,0x10,0x80,0x10,0xf9,0xe6,0x9e,0x86,0x83,0xf2,0x70,0x19,0x81,0x81,0x19,0x0, 0x57,0xfc,0xee,0x6f,0x3f,0x48,0xfc,0xb7,0xcd,0x36,0x3f,0x28,0xd3,0xb4,0x81,0xcb, 0x3b,0xfc,0x79,0xf2,0xaf,0x1d,0x34,0x3f,0x2f,0x4f,0xb5,0xf8,0xab,0x57,0xdd,0x7a, 0x51,0x47,0xff,0x1,0x90,0xac,0x8c,0x58,0x4e,0x8c,0x25,0xdf,0xdc,0xd3,0x9a,0xc3, 0x81,0xff,0x38,0x33,0x30,0x23,0x30,0x10,0x3,0xf0,0xf1,0x67,0x1d,0xb7,0xdf,0xc1, 0x1d,0xd7,0x2f,0xf2,0x3,0xef,0x4,0xde,0xbd,0xc0,0x6f,0xdc,0x21,0xe2,0x8a,0xff, 0xcd,0x7c,0xa3,0xaf,0x5f,0xa4,0x62,0x2,0xba,0xdd,0xdf,0x38,0x9f,0x42,0x0,0x22, 0xe,0x32,0x23,0xf0,0xea,0x80,0x8c,0x40,0xdf,0xd,0xc0,0xc7,0x9f,0x65,0xf7,0x33, 0xde,0xd5,0x7,0x6,0x47,0xfc,0xf0,0xc6,0xf6,0xf7,0xdd,0xe,0x7c,0xf0,0x4e,0x89, 0xf8,0xad,0x60,0xf1,0xdb,0x8c,0xb7,0xfa,0x9a,0x13,0xf0,0xf7,0x2a,0xce,0x17,0xeb, 0x6,0x1d,0xa3,0x79,0xc7,0x6d,0x94,0x11,0x63,0xd,0xf,0x7,0x6,0x6f,0x4,0xfa, 0x6a,0x0,0x1e,0x7d,0xd6,0xdb,0xd5,0xa7,0x30,0x60,0x42,0xf1,0x9e,0xc5,0xd9,0x49, 0xe0,0x87,0x2f,0x6,0x8b,0xff,0xe5,0x5d,0x3e,0x7d,0x57,0x84,0x31,0x9e,0xe9,0x37, 0x23,0xb4,0xd2,0x62,0x79,0x37,0xe2,0x7c,0xa,0x1,0x88,0x76,0xb0,0x2c,0x86,0x57, 0x6f,0xd4,0x50,0xd5,0x3d,0x5d,0x84,0x1b,0xaf,0xfe,0x6c,0x7f,0x8d,0x40,0x84,0xe7, 0xdb,0x74,0x7,0x8f,0xf8,0x19,0x0,0x6,0x64,0x7c,0xe2,0x7,0x80,0xf,0xdf,0x1d, 0x4f,0xfc,0x36,0x3,0x4a,0x8e,0xf8,0x9d,0xdd,0x2,0xf0,0x8a,0x55,0x2c,0x63,0xbe, 0xed,0x20,0x94,0xd5,0xb7,0xf7,0x97,0xb1,0x66,0xf1,0xfb,0xcb,0x98,0xff,0x60,0x22, 0x41,0x65,0x24,0xfe,0x13,0x4b,0x32,0xa9,0xe0,0x9e,0xdb,0x27,0x30,0x99,0x51,0xd0, 0xf8,0x31,0xb0,0xd5,0xf7,0xfc,0xb7,0xd2,0x27,0xfa,0x79,0x1e,0x7d,0xf1,0x0,0x1e, 0x7d,0x96,0xcd,0x31,0x20,0x7,0xc6,0x87,0xf7,0x32,0x70,0xf1,0xfb,0x27,0xf6,0x7c, 0xe7,0xed,0xc0,0xf7,0xdd,0xe5,0x2d,0x13,0xc5,0x7f,0xd8,0xa2,0xe5,0x77,0xcb,0xdc, 0x63,0xf8,0xcb,0x3c,0xe5,0x21,0xc3,0x77,0x3b,0x99,0x1b,0xe0,0x3d,0xc1,0xe,0xca, 0x88,0x13,0x81,0x6e,0xda,0x78,0xe9,0xad,0xaa,0x78,0x4f,0x1,0x0,0x58,0x7d,0xf5, 0x67,0x67,0xfb,0x32,0x62,0xb0,0x2f,0x1e,0x0,0x3,0x36,0xc1,0xb0,0xe4,0xda,0xb9, 0x94,0x44,0xfc,0x17,0xe6,0x81,0xbb,0x17,0xbc,0x65,0xae,0xf8,0x5f,0x8a,0x20,0xfe, 0xc8,0xad,0xb4,0xf3,0x81,0xc1,0xfb,0x82,0xcf,0x33,0x88,0xea,0x41,0x88,0xc7,0x10, 0xff,0x60,0x44,0x29,0x3,0x48,0xfc,0x27,0x9c,0x4c,0x2a,0x81,0x7b,0x6e,0x9b,0xf4, 0xff,0x20,0x37,0xde,0xf3,0xcb,0xa5,0x8b,0xfd,0x38,0x7e,0xcf,0xd,0xc0,0x23,0xcf, 0xb0,0x4f,0x31,0x86,0x65,0xf7,0x77,0x9e,0x0,0xbf,0x73,0xaf,0xc8,0x99,0x49,0xe0, 0xcc,0x14,0x1f,0xe8,0xe3,0x52,0x33,0x1a,0xe2,0x97,0xc5,0xfc,0x75,0xb7,0x9f,0x5, 0x8b,0xd5,0x5f,0x26,0x73,0xf7,0x9b,0xca,0x5a,0x88,0x3c,0xcc,0xb8,0xf8,0xeb,0x7a, 0xca,0x65,0x65,0xb2,0x72,0x7a,0x9d,0xb8,0xd7,0x64,0x36,0x89,0xb,0xe7,0xb2,0xfe, 0xf2,0xdc,0x3d,0xbf,0x5c,0xba,0x80,0x1e,0xd3,0xd3,0x10,0x60,0xed,0x19,0xf6,0x20, 0xd0,0x18,0xe8,0x3,0xf0,0xa4,0x9f,0x68,0x75,0xce,0x4c,0xf1,0xd6,0x1f,0xe0,0x77, 0xf1,0x59,0x3c,0xcd,0x67,0xf4,0xbd,0x76,0x8,0x5c,0x3b,0x6,0xf6,0x2b,0xde,0x7d, 0xda,0x68,0xc,0xed,0xed,0xc6,0x34,0xdd,0x30,0x77,0xbf,0x27,0xb7,0xfb,0x66,0x11, 0xb6,0x21,0x4e,0x24,0x57,0xf7,0x54,0x1c,0x7a,0x7b,0x6,0xb6,0x0,0x2c,0x7f,0xe3, 0xe7,0x4e,0xf5,0xec,0x7e,0x2,0x11,0x9e,0x6e,0xdf,0x1e,0x6b,0xcf,0xb0,0x8b,0xe0, 0xe3,0xfb,0x39,0x8c,0xc7,0xfd,0x6e,0xca,0x3,0x0,0x26,0x53,0xc0,0x1d,0xa7,0x1a, 0x75,0xa,0x35,0xe0,0xf2,0x4d,0xbe,0x7c,0x58,0xe5,0x4f,0xe1,0x11,0x91,0xc6,0xfc, 0xc2,0x3a,0x7f,0x99,0x34,0xce,0x77,0x16,0xda,0x11,0x79,0x57,0x63,0x7f,0x12,0x3e, 0xe1,0x63,0xf1,0xfc,0x24,0xaa,0x7a,0x5,0x6a,0xa3,0x67,0x60,0x9,0xfc,0x3e,0x98, 0x3d,0xeb,0x19,0xe8,0x49,0x8,0xb0,0xf6,0x8c,0x73,0x43,0xf,0x27,0xe3,0xcf,0x18, 0x3f,0x50,0xd2,0x37,0xa7,0xff,0xee,0x5,0xfe,0x58,0x6e,0x3f,0x87,0x55,0x3e,0xc6, 0x5f,0x44,0x74,0xfb,0x81,0x66,0x57,0x5a,0x2c,0x73,0x3f,0x78,0xdc,0x78,0xb7,0x4c, 0x22,0x7e,0x99,0xbb,0x1f,0x27,0x4,0x80,0x70,0x4c,0x12,0x3f,0xd1,0x9,0xef,0xbc, 0x65,0x92,0xeb,0xa4,0x11,0xb,0xac,0xde,0xf3,0x4b,0xc5,0x87,0x7b,0x75,0xbc,0x9e, 0x18,0x0,0x6,0xac,0x33,0xc6,0x6f,0xe0,0xe9,0xfe,0xd6,0xd3,0xc2,0x1f,0x95,0x4, 0xf0,0x8e,0xd3,0xce,0xed,0xbc,0x7d,0x81,0x4f,0x55,0xe7,0xae,0xbf,0x58,0xe6,0x8a, 0xdf,0x92,0x8,0x13,0x90,0x8,0x9f,0x79,0x85,0xdf,0x4e,0xb7,0x9e,0xac,0x4c,0xe6, 0x35,0x88,0x7f,0xb4,0xb4,0x8c,0x85,0x7c,0x16,0xcb,0xe8,0x45,0x2f,0x6,0x64,0x53, 0x9,0x2c,0x9e,0x9b,0x0,0xf3,0xfe,0x5b,0x7f,0xf7,0x2f,0x15,0x2e,0xa2,0x7,0x74, 0x3d,0x7,0xf0,0xf0,0xd3,0xec,0x1,0x0,0x9b,0xa2,0x0,0xd3,0xf0,0x26,0xfe,0x2e, 0xcc,0x3,0x67,0xa7,0x9a,0xeb,0xea,0x26,0xf0,0xca,0x7e,0xf3,0xd4,0xdd,0xb2,0x9, 0x88,0x91,0x51,0xaf,0x86,0xef,0xb6,0x13,0x2,0xb4,0xdd,0xe2,0x93,0x17,0x40,0x84, 0xf0,0xda,0x4e,0x15,0x85,0x4a,0x73,0x3e,0xe0,0xca,0xcf,0xcf,0x75,0x35,0x1f,0xd0, 0x55,0xf,0xe0,0xe1,0xa7,0xd9,0x1c,0x43,0x63,0x82,0xf,0x3,0x1f,0xed,0x27,0x8a, 0xff,0xcc,0xa4,0x5c,0xfc,0xa6,0xcd,0xe7,0xf4,0x87,0x89,0x3f,0x6c,0xf0,0x8d,0xa7, 0xc5,0x47,0xa3,0xac,0x95,0xbb,0x2f,0x2b,0x8b,0x12,0x2,0x84,0xb6,0xe6,0x71,0xb6, 0x21,0x8,0x9,0x8b,0xe7,0x26,0x91,0xf1,0x3e,0xf1,0x66,0x9,0xfc,0x31,0x78,0x5d, 0xa5,0xab,0x1e,0xc0,0x43,0x4f,0xb3,0x2f,0x0,0x58,0x11,0x5,0x98,0x41,0xe3,0xc9, 0x3d,0x93,0x69,0x3e,0xc1,0x47,0x16,0xf7,0xbf,0x76,0xe8,0xbd,0x71,0x27,0x63,0x40, 0xd9,0x2,0x2c,0xe1,0xb3,0xb3,0x5b,0x61,0x23,0x79,0xab,0x1f,0xb5,0x25,0x17,0xcb, 0xdb,0xf1,0xe,0x3c,0x44,0x6d,0xf5,0x49,0xfc,0x44,0x44,0x4a,0xaa,0x89,0x7f,0xb8, 0x59,0xf1,0x17,0x2f,0x5f,0xf9,0xf9,0xf9,0xae,0x3d,0x86,0xac,0x6b,0x6,0xe0,0xa1, 0xa7,0xd9,0x3,0x8c,0xf,0xf8,0x1,0xd0,0xf8,0x9d,0x4f,0xa,0x47,0xb9,0xf7,0x1c, 0x30,0x29,0x79,0x3e,0xdf,0xcd,0x22,0x70,0xa3,0xd4,0xf8,0xcc,0x18,0x50,0x71,0xc4, 0xdf,0xcd,0x69,0xba,0x7d,0x9,0x1,0x48,0xf8,0x44,0x17,0xf9,0xe6,0x4e,0xc5,0x1f, 0xa,0x6c,0x3,0x58,0xba,0xf2,0xb,0xf3,0x5d,0x9,0x5,0xba,0x12,0x2,0x7c,0xec, 0x69,0xe7,0xb1,0x5d,0x82,0xeb,0xcc,0xc0,0x93,0x7d,0xae,0xf8,0xdf,0x36,0x27,0x17, 0x7f,0x49,0x6b,0x16,0x7f,0xd9,0x6a,0xc,0xf2,0x1,0x9a,0xdd,0x6e,0x8f,0xbb,0xef, 0x2f,0x93,0x85,0x9,0x88,0x57,0xd6,0x56,0x8,0x10,0xe4,0xee,0xdb,0x20,0xf1,0x13, 0x6d,0x73,0xe7,0xb9,0x29,0x24,0x12,0x1e,0x5d,0x2d,0xb2,0x2e,0x86,0x2,0xdd,0xc9, 0x1,0x30,0x5c,0x62,0xc,0x8b,0xa2,0x30,0xc1,0x1c,0x3,0xc0,0xf8,0x13,0x7b,0x6e, 0x99,0x86,0xd7,0x3a,0x30,0x27,0xee,0x3f,0x6c,0x7c,0xae,0xbb,0xfd,0x12,0x61,0xfa, 0x8d,0x4b,0x9c,0x38,0xbf,0x9d,0x91,0x7d,0xb2,0x32,0x8f,0xf8,0xc5,0x65,0x99,0xc0, 0x6d,0x34,0xc4,0x4f,0x2f,0x7a,0xb5,0xf9,0x4a,0x25,0x14,0xdc,0x76,0xba,0xe9,0x39, 0x77,0x6b,0x77,0xff,0x97,0xfc,0xfd,0xe8,0x2,0x1d,0xf,0x4,0xfa,0xe8,0x5f,0xb1, 0xb,0xc,0x58,0x3,0x1a,0xa2,0x74,0xdf,0x12,0xe0,0x37,0xf0,0x5c,0x9c,0x97,0x6b, 0xe4,0xf5,0x3,0x6e,0x4,0x0,0xc7,0xed,0xb7,0x85,0xc7,0x74,0xb9,0xf8,0x5d,0x7b, 0x59,0x59,0x88,0xbb,0x2e,0x96,0x77,0x2b,0x4,0x90,0x56,0x10,0xcb,0x6c,0x10,0x44, 0xd7,0x38,0x37,0x97,0xc5,0x61,0x49,0x87,0xaa,0x79,0x1f,0x3d,0x6,0xe0,0xbe,0x4e, 0xf7,0xdd,0xd,0xf,0x60,0x43,0xd6,0x22,0xbb,0xc9,0x85,0xf3,0x33,0x40,0x46,0x62, 0x66,0x6e,0x14,0xf9,0xe3,0xb8,0x1,0x9f,0xdb,0xef,0x6e,0x20,0xb4,0xdc,0xce,0xc7, 0x96,0xee,0xbe,0xac,0xac,0x95,0x77,0x20,0x2b,0x6b,0x39,0xe1,0x27,0xcc,0xdd,0x27, 0xf1,0x13,0x3d,0xe0,0x8e,0xb3,0x93,0xfe,0xa2,0xa5,0xbb,0xff,0xf3,0xf1,0x83,0x9d, 0xee,0xb7,0xa3,0x24,0xe0,0x47,0xff,0xca,0xb9,0xbb,0x8f,0xa4,0x45,0x4e,0x0,0x38, 0x93,0x1,0xee,0xbd,0xa5,0xb9,0x5e,0x55,0x7,0x5e,0xd9,0x73,0xb6,0x85,0x37,0xdb, 0xf,0xbf,0xa0,0x85,0xf2,0x4e,0x5a,0xed,0xae,0x78,0x7,0x41,0x2d,0x3e,0xb5,0xfa, 0x44,0x1f,0xb8,0xba,0x53,0x41,0xa1,0xea,0xb9,0xfb,0x6d,0x1e,0xc0,0xe2,0x3f,0xfc, 0xe2,0xe9,0xb6,0x13,0x82,0x1d,0x79,0x0,0x8c,0xc7,0xfe,0x81,0xad,0xef,0xdb,0xe7, 0x9b,0xeb,0xd4,0xe3,0x7e,0x70,0x77,0xbf,0xe8,0x13,0xbf,0x3f,0xc,0x6a,0xf2,0x4, 0xda,0x68,0xb5,0xc3,0xbc,0x83,0x48,0x1e,0x83,0xac,0xc5,0x77,0x57,0x52,0xab,0x4f, 0xf4,0x89,0x3b,0xce,0x4e,0xc0,0xa7,0x90,0x79,0x80,0xad,0x75,0xb2,0xcf,0xb6,0x3d, 0x80,0xff,0xf0,0x95,0xc6,0x8d,0x3d,0x65,0xad,0xe7,0x6c,0x1a,0xf8,0xb6,0x73,0xcd, 0x77,0xf7,0x79,0x33,0xf,0xec,0x95,0xf9,0x8d,0x3b,0x55,0xa1,0x99,0x8f,0x1a,0xe7, 0x8b,0xc7,0xe8,0x4b,0x57,0x1f,0x93,0x68,0x9f,0x5a,0x7d,0x62,0x40,0xbc,0xb1,0x57, 0xc1,0x91,0x1b,0x3b,0x73,0xf2,0x0,0x16,0x5f,0xfb,0xc4,0x99,0xb6,0xbc,0x80,0xb6, 0x93,0x80,0xcc,0xe9,0x8a,0x8,0x12,0xd1,0xad,0x53,0x40,0x45,0x7,0x66,0xb3,0x8d, 0x49,0x40,0x6e,0x97,0x9f,0x66,0x3b,0xa3,0xfb,0x2,0x84,0x2f,0xee,0xaf,0x17,0x7d, 0xf7,0x51,0xdd,0xfd,0x50,0xe1,0xcb,0x3c,0x2,0x82,0xe8,0x31,0xb7,0xce,0x4f,0xf8, 0xd,0xc0,0x3c,0x3a,0x98,0x31,0xd8,0x96,0x7,0xf0,0xef,0xbf,0xc2,0x1e,0x60,0xc, 0x9b,0x80,0x5c,0x58,0x67,0x26,0x80,0xdb,0xa6,0x1b,0xe5,0xe9,0x4,0x77,0xf7,0x5f, 0x3d,0x2,0x6a,0x16,0x9a,0x45,0x8e,0xc6,0xc2,0xb0,0xc4,0xf9,0x4c,0x52,0x46,0xee, 0x3e,0x31,0xc,0xbc,0xb1,0x57,0xc1,0x71,0x59,0xf7,0x17,0x2f,0xbe,0xf6,0x89,0x33, 0xd7,0xe2,0xee,0xab,0xad,0x1c,0x0,0x63,0x42,0xb7,0x1f,0xbc,0x71,0x74,0x42,0x1, 0xce,0xfb,0x12,0x96,0x86,0xd,0xbc,0x55,0x6a,0x88,0xdf,0x13,0x6b,0x3b,0xff,0x45, 0x8d,0xf3,0x11,0xb3,0x2c,0x72,0x9c,0xf,0xef,0xb9,0x89,0x65,0x60,0xe0,0x89,0xa, 0x12,0x3f,0x31,0x4,0x9c,0x9b,0xcb,0xa,0x89,0xaf,0xfa,0x6b,0xad,0x9d,0x7d,0xc5, 0x36,0x0,0x3f,0xfd,0x65,0x76,0x3f,0x43,0xe3,0x16,0x5f,0x7e,0x11,0x9d,0x9d,0x90, 0x3c,0xb9,0xd7,0x0,0xe,0x54,0x79,0xb7,0x5e,0x3b,0x77,0xdf,0xed,0x56,0x57,0x5f, 0xfd,0x38,0x92,0x2e,0x47,0x8f,0x15,0x10,0xbc,0x16,0x82,0x18,0x34,0x93,0xd9,0x14, 0xa6,0x27,0x9a,0xa2,0xf7,0xd5,0x77,0x5d,0x3a,0x9c,0x8b,0xbb,0xaf,0xd8,0x39,0x0, 0x6,0xac,0x2,0x72,0xb7,0x3b,0xa1,0x0,0x67,0xb3,0x68,0x12,0xcb,0x8d,0x92,0xdc, 0xa5,0x1e,0xb6,0x38,0xdf,0x73,0x6e,0x94,0xe1,0x27,0x86,0x98,0x85,0xb9,0x9,0x94, 0x6b,0x65,0xb1,0x68,0x1e,0x7c,0x40,0xde,0x27,0xe3,0xec,0x27,0x96,0x7,0xf0,0x53, 0x5f,0x66,0x73,0x8c,0x61,0x35,0xa8,0x95,0x9e,0xcf,0x34,0xb7,0xfe,0xfb,0xaa,0xf3, 0x9c,0x3e,0xa0,0xc9,0xcd,0x76,0xeb,0xba,0xfb,0xea,0x5b,0x8,0xc0,0xe0,0x11,0x7f, 0xd3,0xb9,0x31,0xf0,0x2c,0x25,0x89,0x9f,0x18,0x52,0xe6,0xa6,0x33,0x48,0x27,0xbd, 0x93,0x4,0xc0,0x78,0xe3,0x1c,0x87,0x58,0x1e,0x0,0x73,0xe,0x10,0xd4,0xfa,0x9e, 0x9d,0xf0,0xae,0xb3,0x6c,0x60,0xa7,0x1a,0xde,0xad,0xd7,0xad,0xae,0xbe,0x56,0xfb, 0xc,0xea,0xd6,0xf3,0x9f,0x1b,0x73,0x63,0x7d,0x72,0xf9,0x89,0x21,0xe7,0xcc,0x6c, 0x6,0xbb,0xc7,0x9e,0x5b,0x66,0x2f,0xbe,0xf3,0x13,0x7,0xf,0xbe,0xfe,0xc9,0x85, 0xc8,0xcf,0x14,0x88,0x67,0x0,0x9c,0x31,0xff,0x40,0xb3,0xb0,0xe6,0xb3,0xfc,0x3e, 0x7f,0x22,0x37,0x2a,0xa8,0x3f,0xf0,0xa0,0xaf,0x7d,0xf7,0xb2,0xfa,0xad,0x84,0xef, 0xb4,0xfa,0x8c,0x84,0x4f,0x8c,0x8,0xa7,0x67,0xb2,0x7e,0x3,0x0,0xf0,0x10,0x3d, 0xb2,0x1,0x88,0x1c,0x2,0x7c,0xe4,0x4b,0xec,0x22,0x80,0xc5,0xa0,0xa9,0xb1,0xa7, 0xb3,0xde,0xed,0xcb,0x3a,0x70,0x54,0xeb,0x61,0xe2,0x2e,0x62,0x59,0x53,0xa2,0xd1, 0xdd,0xbf,0x58,0x66,0x3,0xcc,0x20,0xf1,0x13,0xa3,0x45,0x3a,0x9d,0xc4,0xec,0x54, 0xda,0xdf,0x21,0xb0,0xfc,0x8e,0x5f,0x3c,0xb8,0x10,0x75,0x1f,0x91,0x3d,0x0,0x4d, 0xb7,0xd7,0x32,0x69,0x6e,0x2f,0x3c,0x3a,0x61,0xbc,0x9f,0x7f,0x3a,0xe5,0x15,0x50, 0xdd,0xf5,0x47,0x1f,0xfa,0xee,0x65,0xfb,0x94,0xf5,0xe7,0x3b,0xb,0x62,0x1d,0xdb, 0x2,0x98,0xe7,0x7e,0xb,0x4,0x31,0x3a,0x9c,0x9a,0xca,0xa0,0x58,0x69,0x1a,0x13, 0xb0,0x8a,0x88,0xc9,0xc0,0xc8,0x1e,0x80,0xa2,0xf0,0x5b,0x7d,0x79,0x84,0xc4,0x1a, 0xb1,0xbf,0xc8,0x51,0x8d,0x77,0xfd,0xf5,0xa5,0xef,0x1e,0xde,0x56,0x5e,0x9a,0x68, 0xf4,0x9d,0xaf,0x5b,0x66,0x19,0x24,0x7e,0x62,0xb4,0x39,0x35,0x95,0x91,0x15,0xaf, 0x46,0xad,0x1f,0xc9,0x0,0xfc,0xd3,0xdf,0x53,0x1f,0x48,0xa5,0x12,0xf3,0x0,0xa4, 0x42,0xf2,0xbb,0xff,0x3b,0xd5,0x3e,0xf4,0xdd,0xcb,0xca,0x2,0xdc,0x7d,0x59,0x99, 0xad,0x83,0xb2,0xfc,0xc4,0xc8,0x93,0x4c,0x26,0xb8,0x11,0xf0,0xf6,0x6,0x2c,0xbe, 0xe3,0x17,0xf6,0x2f,0x46,0xa9,0x1f,0x29,0x4,0x38,0x3b,0x97,0x5e,0x9,0x72,0xa9, 0x4f,0xa5,0x79,0xff,0xbf,0x2b,0xc4,0x7d,0x15,0xd0,0xad,0x1e,0xf6,0xdd,0xcb,0xca, 0x64,0xe7,0x16,0x70,0xbe,0xcc,0x76,0xc4,0x4f,0x10,0x63,0xc2,0xf4,0x44,0x1a,0xc5, 0x8a,0xe6,0x2f,0x5e,0x5,0xf0,0x48,0xab,0xba,0x91,0x3c,0x0,0xdb,0xf6,0xba,0xff, 0x62,0x6b,0x3b,0x9b,0x6e,0x6c,0xe7,0xe9,0xf6,0x83,0xc4,0x35,0x47,0xb4,0x96,0x3c, 0x96,0xc7,0xc0,0xfc,0xc6,0xcf,0x5b,0x26,0x9e,0xaf,0x6d,0x92,0xf8,0x89,0xf1,0x63, 0x56,0x1e,0x6,0x2c,0x47,0xa9,0xdb,0x72,0x32,0xd0,0x3f,0xfb,0x6c,0xed,0xe2,0xf9, 0xd3,0xd9,0x2d,0x40,0xde,0x9d,0xf6,0xad,0xa7,0x1b,0x83,0x7f,0x76,0xaa,0x5e,0xf7, 0xbf,0x5e,0x7,0xfd,0xef,0xd6,0xf3,0x97,0xd9,0x6,0x6f,0xfd,0x9,0x62,0x1c,0xb9, 0x72,0xed,0x10,0xba,0xd9,0xf4,0x3,0x5f,0xbc,0xfa,0x5f,0xcf,0x87,0x4e,0x10,0x6a, 0xe9,0x1,0xa4,0x53,0xca,0x8a,0xb4,0xeb,0x8c,0x71,0xf7,0xdf,0x15,0xbf,0x65,0x3, 0x7b,0x6a,0x7,0x89,0x3b,0x44,0xf4,0xe,0xa2,0x74,0xeb,0x89,0x65,0xc,0xb0,0x74, 0x12,0x3f,0x31,0xde,0x4c,0x4d,0xa6,0x65,0xc5,0xcb,0xad,0xea,0xb5,0xcc,0x1,0xa4, 0x53,0x89,0xe5,0xa0,0x51,0x7c,0xd3,0xe9,0x46,0xf9,0x9e,0xca,0x8d,0x40,0x5f,0xe3, 0x7c,0x67,0x21,0xa8,0xcc,0x15,0x3f,0x8d,0xea,0x23,0xc6,0x9d,0xe9,0x89,0xc,0xf2, 0xa5,0x9a,0xbf,0x78,0x5,0x2d,0x6,0x5,0xb5,0x34,0x0,0xb6,0xcd,0x96,0x83,0xfa, 0xf3,0x4f,0x39,0xa1,0x87,0x65,0xf3,0xe4,0x5f,0xc7,0x7d,0xf7,0x41,0x65,0x31,0xdd, 0x7d,0x80,0xb7,0xf8,0x16,0xc5,0xfb,0xc4,0x9,0x61,0x6a,0xa2,0x3d,0xf,0x20,0x34, 0x4,0xb8,0xef,0x57,0x8e,0xee,0x9f,0x11,0x46,0x1a,0x1,0xd,0x81,0xa5,0x13,0x8d, 0xa1,0xbf,0x7b,0x6a,0xe3,0x41,0x1e,0x5d,0xd,0x1,0x62,0x74,0xeb,0x89,0xe2,0xb7, 0x2d,0x12,0x3f,0x71,0xb2,0xc8,0xa4,0x93,0xb2,0xc9,0x41,0xf3,0x77,0xfd,0xa7,0xdd, 0xd0,0xee,0xc0,0x50,0xf,0x60,0x6e,0x26,0xb3,0x1c,0xd4,0x42,0xbb,0x23,0xff,0xea, 0xad,0x7f,0x37,0xbb,0xfa,0x2,0x5a,0x77,0x4f,0x1d,0x61,0xa5,0xc7,0x18,0x98,0x7c, 0x80,0xf,0x41,0x9c,0x34,0x52,0xa9,0xa4,0x2c,0x11,0xb8,0x4,0xe0,0x72,0x60,0x9d, 0xb0,0x1d,0x9e,0x9a,0x49,0x2d,0x5,0x9,0x7a,0xc6,0xf1,0x38,0xf2,0xba,0xf0,0x70, 0xf,0xdf,0x76,0xad,0xca,0xfc,0xfb,0x8c,0x3a,0x7c,0x37,0xc8,0x48,0xd8,0x24,0x7e, 0xe2,0x4,0x33,0x3d,0x99,0x46,0xb5,0xd6,0xe4,0xfa,0x2e,0x21,0x24,0xf,0x10,0x6a, 0x0,0x18,0xc3,0x92,0xf3,0xde,0x28,0x73,0xde,0x27,0x53,0xfc,0xc3,0x4e,0x65,0x70, 0x71,0xbe,0x58,0x66,0xd2,0xb0,0x5e,0xe2,0x84,0x93,0xcd,0xa4,0x64,0x9,0xef,0xa5, 0xb0,0x3a,0x81,0x6,0x60,0xf1,0xe7,0x76,0xe6,0x12,0x8a,0xb2,0x18,0x24,0xde,0x89, 0x24,0x70,0x58,0xe3,0x77,0xf8,0x75,0xcb,0x64,0xdb,0x5,0x95,0xd5,0xcb,0x63,0x88, 0x5c,0xdc,0x97,0x68,0x38,0x4c,0x9d,0xc7,0xfd,0x4,0x71,0x92,0x49,0x27,0x93,0xb2, 0xe2,0xe5,0xb0,0x3a,0x21,0x49,0x40,0xb6,0x34,0x3d,0x99,0x92,0x26,0xe9,0x5c,0xf7, 0xff,0x66,0x35,0x5a,0xdf,0xbd,0xac,0x2c,0xb4,0xef,0x5e,0x2c,0x43,0xa3,0xac,0x69, 0xb4,0x1f,0x89,0x9f,0x20,0xea,0x4c,0x64,0xd3,0x68,0x56,0xa,0xc3,0xe2,0xcf,0xdd, 0xbc,0x10,0x54,0x27,0xd0,0x3,0x60,0xc,0x4b,0xc9,0x54,0xc2,0x5d,0x6e,0x94,0x83, 0xb7,0xfe,0x25,0x1d,0x70,0x9f,0x55,0x18,0x3b,0x4,0x8,0xe9,0xbb,0xf7,0xd4,0xf, 0x2b,0x23,0xf1,0x13,0x44,0x13,0x8a,0xa2,0xc0,0xb6,0x9b,0xe2,0x80,0x45,0x0,0xd2, 0x11,0x81,0x81,0x1e,0xc0,0x85,0xdb,0x67,0xe6,0x83,0xba,0xf5,0x12,0x8a,0xd3,0xfa, 0xa3,0x59,0xfc,0xa1,0x5d,0x7d,0x92,0x2e,0xbc,0x76,0xba,0xfa,0x18,0x3,0x8c,0x1a, 0x89,0x9f,0x20,0xfc,0x4c,0x64,0xe2,0x8d,0x7,0x8,0xf4,0x0,0xd4,0x9a,0xb9,0x4, 0xc8,0x5b,0xf2,0x23,0x49,0xec,0x2f,0x6e,0xdb,0x76,0xb7,0x5e,0x94,0xae,0x3e,0x6, 0x98,0x35,0xef,0x31,0x8,0x82,0x68,0x8f,0x40,0x3,0x30,0x91,0x4d,0xce,0x7,0x9, 0x5a,0xb3,0x7b,0x37,0x7c,0xd7,0x5f,0xdf,0x6f,0x80,0xc,0x12,0x3f,0x41,0x4,0x32, 0x35,0x91,0x46,0x55,0x6d,0x9a,0x1a,0xbc,0x8c,0x80,0x3b,0x4,0x5,0x1a,0x80,0x54, 0x32,0xb1,0xd8,0xad,0x6e,0xbd,0x6e,0x75,0xf5,0x19,0x35,0xd0,0xa4,0x1e,0x82,0x8, 0x41,0xc,0xc1,0xa3,0x10,0x68,0x0,0xc,0xd3,0x5e,0x74,0x77,0x58,0xdf,0x79,0xaf, 0xbb,0xf5,0x42,0x3c,0x6,0x43,0x3,0x6c,0x12,0x3f,0x41,0xb4,0xc3,0x7c,0xd0,0x8a, 0xe0,0x5e,0x0,0xc4,0x1c,0xd9,0xd7,0xc5,0x38,0xdf,0xbf,0x4f,0x53,0xa3,0x84,0x1f, 0x41,0x44,0xa2,0x9e,0x31,0xf7,0xb0,0x14,0xb4,0x79,0xab,0x91,0x80,0x9e,0xfd,0xfa, 0xcb,0x7b,0x12,0xe7,0xfb,0xca,0xc,0x8d,0xf,0xf1,0x25,0x8,0xa2,0x35,0xa9,0x54, 0x32,0xde,0xf6,0xb2,0xc2,0x3b,0x7f,0xe6,0xfa,0x5,0x84,0xb8,0xfb,0xdd,0x8a,0xe9, 0xc5,0x7d,0xc9,0xca,0x48,0xfc,0x4,0x11,0x8f,0x74,0x37,0xc,0x0,0x18,0x5b,0x64, 0x60,0xb1,0xdd,0xfd,0x6e,0x86,0x0,0x96,0x41,0x13,0x7b,0x8,0xa2,0x2d,0x62,0x74, 0x93,0x49,0xd,0x40,0xac,0x6e,0xbd,0x1e,0x74,0xf5,0x59,0x26,0x8f,0xfb,0x9,0x82, 0x88,0x7,0xf3,0xe9,0xa9,0x15,0x61,0x43,0x81,0xf9,0x7b,0xfd,0xbf,0xee,0x77,0xeb, 0x79,0xf6,0xe9,0x2c,0xd8,0x16,0x77,0xfd,0x9,0x82,0x88,0x8f,0x61,0xc6,0xeb,0x2a, 0xb,0x4f,0x2,0x3a,0xff,0xf5,0x32,0xce,0x17,0xbd,0xc,0xdb,0x2,0xf4,0x1a,0xe2, 0x99,0x30,0x82,0x20,0xea,0x18,0x46,0xbc,0xb8,0x39,0x28,0x7,0x50,0x1f,0xa3,0x5f, 0x2f,0x72,0xfe,0x8b,0x24,0x72,0xdf,0xb6,0x81,0x1e,0x3,0xf3,0x2e,0xeb,0x34,0xca, 0x8f,0x20,0x3a,0x82,0x6b,0xb2,0xc3,0x1c,0x0,0x80,0xed,0x4e,0xfb,0xee,0x43,0xcb, 0x7c,0xe7,0xc7,0x0,0x68,0x2a,0x89,0x9f,0x20,0xfa,0x8d,0xd4,0x0,0xbc,0xf9,0xdf, 0xdf,0x7e,0x6d,0xe1,0x57,0xe,0xbb,0x1f,0x2,0x48,0x84,0xf,0x6,0xe8,0x34,0xca, 0x8f,0x20,0xba,0x42,0xd7,0x86,0x2,0xd7,0x34,0xab,0x7b,0x21,0x80,0x4c,0xf8,0xce, 0x82,0xa9,0x53,0x77,0x1f,0x41,0x74,0xb,0xb5,0xaa,0xc5,0xb2,0x0,0xc1,0x49,0x40, 0x47,0xb5,0x1d,0x87,0x0,0x1,0xad,0x3e,0x83,0x93,0xf1,0xa7,0xdb,0x77,0x13,0x44, 0x17,0x91,0xfa,0x0,0x5b,0x41,0x5b,0x7,0x1a,0x80,0x52,0x59,0xdb,0x66,0xc0,0x62, 0x37,0xe3,0x7c,0x71,0x1b,0xdb,0xe6,0x71,0x3f,0x41,0x10,0xdd,0xc3,0x30,0xa5,0x43, 0x67,0xf3,0x41,0xdb,0x87,0x78,0x0,0xd8,0x66,0xc,0x8b,0x8d,0x8f,0xe8,0x28,0xce, 0xf7,0x6c,0x3,0x40,0x57,0x11,0x2f,0x58,0x21,0x8,0xa2,0x25,0xa6,0x21,0x9d,0x35, 0x97,0xf,0xda,0x3e,0x6c,0x36,0x60,0xbe,0x58,0xaa,0x61,0x76,0x76,0x22,0x7a,0x8, 0x20,0x9b,0x3c,0x24,0x31,0x1a,0x46,0x8d,0x92,0x7e,0x4,0xd1,0x6d,0x34,0x4d,0xf, 0x6a,0x53,0xb7,0x82,0xea,0x84,0xdd,0x15,0x78,0xcb,0x34,0xed,0xba,0x80,0xfd,0xdd, 0x82,0xcc,0x97,0xe4,0x93,0x26,0xc,0x7d,0x63,0x1,0x18,0xe3,0x9,0x3f,0x93,0x92, 0x7e,0x4,0xd1,0x75,0x6c,0xdb,0x46,0x43,0xad,0x9e,0x57,0x3e,0xa8,0x4e,0x68,0x8, 0x50,0xad,0x1a,0x98,0x9f,0x77,0x3f,0x22,0x72,0x9c,0x2f,0xbc,0x79,0xca,0x28,0xee, 0x27,0x88,0xde,0x51,0x55,0x3,0x7b,0x0,0xb6,0x82,0xea,0x84,0xc,0x5,0x66,0xdb, 0xa5,0x52,0xd,0xc,0x73,0xd1,0xe2,0x7c,0x67,0x21,0x2c,0x4c,0xd0,0x54,0xa,0xfb, 0x9,0xa2,0x57,0x68,0x9a,0xe,0xb9,0xc2,0x94,0xed,0xa0,0x3a,0x81,0x21,0xc0,0xf5, 0x5f,0x5d,0xfc,0xaa,0xea,0x58,0x14,0x4f,0x8,0x10,0x94,0xdd,0x67,0xe1,0x61,0x2, 0xdd,0xd2,0x8b,0x20,0x7a,0x8b,0xae,0xcb,0x67,0xd1,0x5d,0xff,0xd5,0xb,0xd7,0x82, 0xea,0x84,0x4e,0x6,0x32,0x4d,0xb6,0xad,0x69,0xe6,0x62,0x26,0x9b,0x6a,0xd9,0xad, 0x27,0x96,0x9,0x6f,0xbc,0xbf,0xdf,0xa4,0x19,0x7e,0x4,0xd1,0x4b,0x2c,0xdb,0x86, 0x21,0xef,0x1,0xc8,0x85,0xd5,0xb,0x35,0x0,0x0,0xb6,0x4a,0xa5,0xda,0xe2,0x99, 0xcc,0x4c,0xbd,0x20,0xee,0x4,0x20,0x66,0x93,0xeb,0x4f,0x10,0xbd,0x46,0x55,0x6b, 0x41,0xab,0xb6,0xc2,0xea,0x25,0x10,0xa,0xdb,0x2a,0x95,0xf9,0x50,0xbd,0x7a,0x18, 0x10,0xa5,0x57,0x40,0x28,0x33,0x34,0x9a,0xe4,0x43,0x10,0xbd,0x86,0x1b,0x0,0x69, 0xf,0xc0,0x56,0x58,0xbd,0x70,0xf,0x80,0x21,0x57,0x2e,0x56,0xc1,0x70,0xa6,0xad, 0x9,0x40,0x96,0x49,0x43,0x7d,0x9,0xa2,0x1f,0xd4,0xd4,0x5a,0x40,0xfe,0x2f,0x3c, 0x4,0x8,0xf5,0x0,0x6e,0xac,0xdf,0xf5,0x55,0x5d,0x37,0xa1,0x69,0x66,0x53,0x7f, 0xbe,0xdf,0xdd,0xf7,0x7b,0x7,0x8c,0x39,0xa3,0xfd,0x8,0x82,0xe8,0x29,0x96,0x65, 0x43,0xd7,0xa5,0x2d,0x6d,0xfe,0xc6,0xa7,0xee,0xba,0x16,0x56,0xb7,0x55,0xe,0x0, 0xc,0xc8,0x15,0xf2,0xd5,0xe5,0x85,0xf3,0xa7,0xea,0x5,0x51,0x3c,0x1,0x5d,0x3, 0x6c,0x72,0xfd,0x9,0xa2,0xe7,0x54,0xaa,0xd5,0xa0,0x1c,0xdb,0x66,0xab,0xba,0x2d, 0xd,0x0,0x18,0xcb,0x95,0x4a,0xea,0xf2,0xc2,0xb9,0x53,0x91,0x43,0x0,0xba,0xa9, 0x27,0x41,0xf4,0x8f,0x6a,0xa5,0x12,0x94,0x68,0xcb,0xb5,0xaa,0x9b,0x68,0xb5,0x1, 0x80,0xcd,0x62,0xbe,0xa,0xd3,0xe4,0x5d,0xc,0x51,0x42,0x0,0x72,0xfd,0x9,0xa2, 0x7f,0xd4,0x82,0x7b,0x0,0x72,0xad,0xea,0x2a,0x51,0xe,0x70,0xdb,0xc3,0xdf,0xbc, 0xfa,0xb6,0xb,0xb,0x8b,0xa7,0xcf,0xce,0xb6,0x1c,0xed,0x67,0x68,0xd4,0xe7,0x4f, 0x10,0xfd,0xa2,0x5a,0xa9,0x60,0x6f,0x77,0x4f,0xb6,0x6a,0xeb,0xe6,0xa7,0xdf,0x71, 0x5f,0xab,0xfa,0xad,0x43,0x0,0x0,0x0,0xcb,0x15,0x8e,0x2b,0xab,0xf3,0x67,0x66, 0x1b,0x25,0xce,0x7f,0xa2,0xe3,0x61,0xdb,0x7c,0xa6,0x1f,0x41,0x10,0xfd,0xa1,0x5c, 0x2a,0x21,0x60,0x94,0xcd,0x66,0x94,0xfa,0x91,0xc,0x0,0x63,0xd8,0x2c,0x16,0xaa, 0xab,0xba,0x66,0x20,0x9d,0x4d,0x7,0xce,0xd,0xd0,0x69,0xc0,0xf,0x41,0x48,0xc9, 0x24,0x81,0xa4,0x13,0x70,0x5b,0x36,0xa0,0x77,0xe1,0x61,0xb7,0xb6,0x65,0xa1,0x52, 0xa9,0x6,0xad,0xde,0x88,0xb2,0x8f,0x48,0x21,0x0,0x0,0xdc,0xfa,0xd0,0xeb,0x57, 0x6f,0xbd,0xe3,0xec,0xe2,0xc2,0xf9,0x39,0xe9,0xbc,0x0,0xcb,0x4,0x6a,0xd5,0xa8, 0x7b,0x23,0x88,0x93,0x41,0x4a,0x1,0xa6,0xb3,0xd,0xf1,0xbb,0x58,0x36,0x50,0xd1, 0x0,0xb3,0x83,0x16,0xb3,0x5c,0x2a,0xe1,0x70,0x7f,0x5f,0xb6,0x6a,0x6b,0xe7,0x7f, 0xbc,0xb3,0xa5,0xfb,0xf,0x44,0xe,0x1,0x0,0x0,0x9b,0x87,0xfb,0x85,0xb5,0xb3, 0xe7,0xe7,0x0,0xa0,0xe9,0x41,0xa1,0x1a,0xdd,0xe1,0x87,0x20,0x3c,0x24,0x13,0xc0, 0xcc,0x84,0x93,0x69,0xf7,0x69,0x23,0xa9,0xf0,0x75,0x85,0xe,0x6e,0x87,0x5f,0x2c, 0x14,0x82,0x56,0x6d,0x44,0xdd,0x47,0x74,0x3,0xc0,0xd8,0x86,0xa1,0x19,0x6b,0xc5, 0x82,0x8a,0xd9,0x53,0x93,0x10,0xff,0x26,0x53,0xa7,0x99,0x7e,0x4,0x21,0x92,0x54, 0x80,0xd9,0x2c,0x77,0xb1,0x83,0xf4,0xad,0x0,0x98,0x4a,0x3,0xe5,0x36,0x46,0xcb, 0x6a,0xaa,0xa,0x43,0xb,0xcc,0xb6,0x6f,0x46,0xdd,0x4f,0x94,0x6e,0x40,0x0,0xc0, 0xce,0xaf,0xbd,0xeb,0x32,0x80,0xad,0xc3,0xbd,0xbc,0x67,0xb4,0x1f,0xdd,0xe4,0x83, 0x20,0x9a,0x99,0xce,0x2,0x4a,0x84,0x0,0x3b,0xe6,0xd3,0xbc,0xeb,0xf0,0xe4,0x9f, 0x94,0xcd,0x9d,0x5f,0x7b,0xd7,0xb5,0xa8,0xfb,0x89,0x13,0x2,0x0,0xc0,0x7a,0xb5, 0x54,0xdd,0xd0,0x6b,0x4e,0x32,0x10,0xce,0x80,0x1f,0x72,0xfd,0x9,0xa2,0xce,0x54, 0x86,0xc7,0xfe,0x51,0x74,0x91,0x0,0x90,0x4a,0x0,0x66,0x8c,0xa4,0xa0,0x69,0x1a, 0xa8,0x94,0x3,0xd,0xc0,0x46,0x9c,0x73,0x8d,0x65,0x0,0x18,0xc3,0x26,0x80,0xfc, 0xfe,0xce,0xf1,0xfc,0xed,0x17,0xce,0xc3,0x76,0x67,0xfb,0x75,0xf1,0xe2,0x11,0xc4, 0x28,0x93,0x4e,0x0,0xd9,0x54,0x4c,0x4d,0xb0,0x78,0xdb,0xe7,0x8f,0x8e,0x83,0xf2, 0x6,0xdb,0xbb,0x4f,0xbe,0xeb,0x8b,0x71,0xe,0x1d,0x39,0x4,0x0,0x80,0xdd,0x27, 0xdf,0x55,0x0,0xd8,0x7a,0xe1,0xa8,0x8,0x5d,0x33,0x60,0xd4,0x48,0xfc,0x4,0xe1, 0xa2,0x80,0xb7,0xfe,0x71,0x89,0xa3,0x21,0xdb,0xb2,0x50,0xad,0x96,0x11,0x30,0xf5, 0x77,0x3d,0xee,0xb1,0xe3,0x86,0x0,0x0,0x77,0x31,0x2e,0xed,0xdd,0x38,0xc2,0xfc, 0xe9,0x5b,0x3a,0xbd,0x66,0x4,0x31,0x36,0x4c,0xa6,0x81,0x84,0x12,0x3f,0xab,0xef, 0xbf,0xab,0x76,0x18,0xc5,0x42,0x1,0x4c,0x9e,0x71,0xcf,0x23,0xa6,0xfb,0xf,0xc4, 0xf4,0x0,0x0,0x60,0xf7,0xc9,0xbb,0xaf,0x81,0xb1,0x8d,0xd2,0x71,0x11,0x66,0xcc, 0x67,0x91,0x13,0xc4,0xb8,0x92,0x4a,0x0,0x13,0xe9,0xde,0x1e,0xc3,0x34,0xc,0x94, 0xa,0xf9,0x86,0xc5,0xf0,0xbe,0xd6,0x77,0x9f,0xbc,0xbb,0x10,0x77,0x9f,0xed,0x78, 0x0,0x0,0x70,0x89,0x1,0xab,0x85,0xe3,0x43,0x9c,0x39,0x7f,0x6b,0x6f,0xff,0x6a, 0x82,0x18,0x72,0x14,0x0,0xd3,0x99,0xf6,0xc3,0x61,0x23,0x62,0x17,0x7a,0xe1,0xf8, 0x10,0xb6,0x2d,0x7f,0xf2,0x8f,0x2,0xac,0xb7,0x73,0xec,0xd8,0x1e,0x0,0x0,0xec, 0xfe,0xfa,0xbb,0xaf,0x1,0xd8,0xa8,0x94,0x4b,0xd0,0xdc,0x7b,0x91,0xd3,0x8b,0x5e, 0x27,0xf4,0x35,0x99,0xe2,0xae,0x7f,0x3b,0x75,0x4d,0x2b,0xe2,0x76,0x7a,0x68,0xe6, 0x7f,0x7d,0xf7,0xd7,0xdf,0x1d,0xbb,0xf5,0x7,0xda,0x34,0x0,0xe,0x97,0xc0,0x80, 0xc2,0xd1,0x7e,0x7,0xbb,0x20,0x88,0xd1,0xa6,0x53,0xd7,0x3f,0x6a,0xf7,0xdf,0xd1, 0xfe,0x6e,0x90,0x71,0xc8,0xa3,0xcd,0xd6,0x1f,0x0,0xda,0x1c,0x86,0x0,0x54,0xfe, 0xe6,0xd7,0xa,0xd3,0xef,0xff,0xe8,0xbc,0x65,0x1a,0x1f,0x4c,0xa5,0xb3,0x48,0x67, 0xda,0x48,0x7f,0x12,0xc4,0x8,0xa3,0x0,0x98,0x89,0x30,0xe0,0x27,0xa1,0x0,0xe7, 0x67,0xf9,0x6b,0x26,0xb,0xa8,0x6,0x60,0x39,0xf1,0x42,0x45,0x7,0x5a,0x45,0x0, 0x6a,0xa5,0x8c,0x52,0xe1,0x28,0x68,0xf5,0xaf,0xec,0xfd,0xc6,0x3d,0xcf,0xb5,0xfb, 0x37,0xb4,0x9b,0x3,0x70,0xb9,0x4,0x60,0x35,0x7f,0xb8,0x37,0x3f,0x31,0x39,0x9, 0x25,0xd1,0xb6,0x3d,0x21,0x88,0x91,0x63,0x2a,0xc3,0x87,0xfc,0x86,0x5,0xff,0x89, 0x4,0x70,0xdb,0x29,0x20,0xe3,0x8c,0xd,0x48,0x25,0xf9,0xe7,0x37,0xf3,0x80,0x61, 0x1,0x66,0xb,0xf5,0x33,0xdb,0x42,0xfe,0x70,0x2f,0x68,0xf5,0x36,0x3a,0x68,0xfd, 0x81,0xce,0x42,0x0,0xec,0xfd,0xc6,0x3d,0x5,0xc6,0x70,0xc9,0x32,0x4d,0x14,0x8e, 0xf,0x3b,0xbb,0x9a,0x4,0x31,0x42,0xa4,0x12,0xc0,0x44,0x84,0xe6,0x73,0x61,0x9a, 0x8b,0x5f,0x24,0x91,0x0,0x66,0x32,0x40,0x2d,0x42,0x27,0x5a,0xa9,0x90,0x87,0x69, 0x98,0x1,0x89,0x7f,0x5c,0xda,0xfb,0x8d,0x7b,0xda,0x8a,0xfd,0x5d,0x22,0x4f,0x7, 0xe,0xe3,0xdc,0x4f,0x7f,0xe3,0xef,0x1,0x2c,0x2d,0xdc,0xf6,0x36,0x64,0x27,0xa7, 0xba,0xb1,0x4b,0x82,0x18,0x5a,0x14,0x0,0xa7,0x27,0x5b,0xbb,0xfe,0x73,0x13,0xc0, 0x99,0x19,0xf9,0xba,0xe3,0xa,0xf0,0xcd,0xc3,0xf0,0x9e,0x3,0x43,0xab,0x61,0xef, 0xfa,0x1b,0x41,0xab,0x73,0xfb,0xbf,0x79,0xcf,0x87,0x3a,0xfd,0x5b,0x3a,0xd,0x1, 0x1c,0xd8,0x1a,0x80,0xdc,0xf1,0xfe,0xe,0xce,0xdf,0x71,0x1,0x9,0xa,0x5,0x88, 0x31,0x66,0x76,0xa2,0xb5,0xf8,0x53,0x9,0x60,0x6e,0xa,0x81,0xa,0x57,0x8d,0xd6, 0x83,0x7f,0x8e,0xf7,0x77,0x10,0x62,0x22,0xd6,0xba,0xf1,0xb7,0x74,0x45,0xa9,0xd5, 0xbf,0x7d,0xf2,0xda,0xf4,0xfb,0x3f,0x3a,0xcf,0x6c,0xfb,0x83,0x8c,0x31,0x64,0xa7, 0xa6,0xbb,0xb1,0x5b,0x82,0x18,0x3a,0xa6,0xd2,0x40,0x36,0x42,0xd6,0xff,0x96,0x59, 0x7e,0x17,0x20,0x19,0x8c,0x1,0x3b,0x45,0xa0,0x66,0x6,0xd7,0x2f,0x1d,0x1f,0x40, 0xad,0x4,0x76,0xfb,0x5d,0xda,0xff,0xcd,0xf7,0xfc,0x49,0x37,0xfe,0x9e,0x8e,0x72, 0x0,0xfe,0x93,0x2,0x43,0xbe,0x52,0x38,0x86,0xa6,0xd2,0xad,0x81,0x88,0xf1,0x23, 0x9d,0x4,0x26,0x23,0x74,0x76,0x4d,0xa5,0xf9,0xb0,0xe0,0x20,0x6a,0x6,0xcf,0xfe, 0x7,0xa1,0xa9,0x55,0x94,0x8e,0xf,0x83,0xba,0xfd,0xb6,0xd1,0x61,0xe2,0x4f,0xa4, 0x2b,0x39,0x0,0x97,0x73,0x3f,0xf5,0xca,0x3,0x0,0x36,0x95,0x44,0x2,0xb7,0xbc, 0xfd,0x9d,0x14,0xa,0x10,0x63,0x43,0x32,0x1,0x9c,0x9a,0x70,0x6,0xfc,0x84,0x90, 0x4a,0x0,0x77,0xcc,0x3b,0xbd,0x3,0x12,0x2c,0x1b,0x38,0xa8,0x0,0x6f,0x1c,0xcb, 0xd7,0xdb,0xb6,0x85,0xfd,0xeb,0xdb,0xb0,0xcc,0xc0,0xc,0xe1,0xf2,0xfe,0x6f,0x7d, 0xcb,0x57,0xbb,0xf5,0x77,0x75,0xd5,0x0,0x0,0xc0,0xc2,0x4f,0xbd,0xf2,0x29,0x0, 0x6b,0x99,0x89,0x29,0x2c,0xdc,0x76,0x67,0xb7,0x77,0x3f,0x96,0xb0,0x56,0x5d,0x41, 0x11,0xc7,0x98,0xba,0xcf,0x6b,0x18,0x16,0x14,0x5,0x91,0x7f,0x61,0xad,0x62,0x6a, 0xa5,0x9b,0xbe,0x6a,0xdc,0xbf,0x3,0x5c,0xfc,0x51,0x6e,0xde,0x71,0xdb,0xa9,0xf0, 0xd6,0xbf,0xa2,0x1,0x6f,0xe5,0x81,0x62,0xc0,0xcd,0x7c,0x8e,0x76,0xdf,0x42,0xad, 0x5a,0xe,0xaa,0xbe,0x7e,0xf0,0x5b,0xdf,0xf2,0x48,0x37,0xff,0xb6,0x2e,0x25,0x1, 0x5,0x18,0x2e,0x1,0x58,0xd1,0xd5,0xea,0x62,0xe9,0xf8,0x0,0xb3,0xa7,0x17,0xba, 0x7e,0x88,0x41,0xe2,0x17,0xab,0x4c,0x9c,0x32,0x41,0xb3,0xfa,0x7f,0x27,0x87,0xbe, 0x3c,0x15,0x5a,0x91,0xd8,0x18,0x45,0x6e,0x50,0xfc,0x65,0x51,0x8c,0x4a,0x1c,0xf1, 0x9f,0x9e,0xc,0x17,0xbf,0x66,0xf2,0xe4,0x5f,0x90,0xf8,0xcb,0x85,0x23,0xd4,0x2a, 0x81,0xe2,0xdf,0x3a,0xf8,0xed,0xee,0x8a,0x1f,0xe8,0x81,0x1,0x38,0xf8,0xed,0x6f, 0x29,0x2c,0xfc,0xe4,0x2b,0x2b,0x0,0xb6,0x4a,0xc7,0x7,0x48,0x65,0xb2,0x98,0x98, 0x9e,0xed,0x74,0xb7,0x5d,0xc5,0xdf,0x52,0x8a,0x3f,0xd4,0x28,0x2,0x27,0x86,0x8, 0x26,0xb1,0xab,0x6d,0x7e,0x67,0x1e,0x3,0xe1,0x18,0x91,0x99,0xc,0x37,0x2,0x9e, 0x19,0xb8,0x12,0x3,0x33,0x9d,0x6,0x4e,0x87,0xf4,0x80,0x5b,0x36,0x17,0xff,0x5e, 0x59,0x7e,0x7a,0xba,0x5a,0x45,0x31,0x78,0xc0,0x4f,0x1e,0xc0,0x6a,0x2f,0x2e,0x5f, 0xd7,0x43,0x0,0x97,0x85,0x9f,0x7c,0xf9,0x61,0x0,0xeb,0x4a,0x22,0x81,0xb3,0xb7, 0x5e,0x40,0x3a,0x3b,0xd1,0xab,0x43,0x79,0x4,0x2d,0xb6,0xb4,0x1e,0xf1,0x92,0x90, 0x89,0x98,0x4c,0x67,0xa2,0x8d,0xf3,0xcf,0xa6,0x81,0xdb,0x4f,0x39,0xb7,0xfe,0x16, 0x14,0x25,0x1a,0x89,0x92,0x6,0x14,0x6b,0xc0,0x8d,0x62,0x73,0x7d,0x43,0xab,0xe1, 0x70,0xe7,0x5a,0xd0,0x3c,0x7f,0x0,0x58,0x3d,0xf8,0xed,0x7b,0x9f,0xea,0xc5,0xdf, 0xd8,0x33,0x3,0x0,0x0,0xb,0x1f,0x79,0xf9,0xb,0x0,0x56,0x92,0xa9,0x34,0xce, 0xde,0x71,0x17,0x12,0xc9,0x78,0x49,0x41,0x26,0x6b,0xa5,0x45,0x8b,0x3f,0x64,0x31, 0x2f,0x31,0x3e,0x4c,0xa4,0xb9,0x1,0x68,0x45,0x2a,0x9,0xbc,0x7d,0x3e,0x38,0xe9, 0x7,0xf0,0x8c,0x7f,0xcd,0xe4,0x3,0x7f,0x5c,0x89,0x2b,0xce,0x7f,0xcc,0xb6,0x70, 0xbc,0x73,0xd,0xa6,0x1e,0x78,0x87,0xdf,0x8d,0x83,0xdf,0xb9,0xf7,0xc7,0x7a,0xf5, 0x77,0x76,0x3f,0x7,0x20,0xc0,0xb8,0xdb,0x92,0x33,0x4d,0x63,0xa9,0x56,0x2d,0x61, 0x6a,0x76,0xde,0xbb,0x9e,0xc9,0xdf,0x63,0x89,0xba,0xa7,0x26,0x8c,0x38,0x89,0x64, 0x53,0xfc,0xae,0xbe,0xad,0x48,0x28,0x3c,0xe9,0x97,0xc,0xc9,0x25,0xa8,0x3a,0x9f, 0xef,0xff,0x66,0x1e,0xb0,0xc5,0x6,0xcd,0xf9,0xef,0xe8,0xe6,0x5b,0x30,0x83,0x1f, 0xa6,0xb9,0x75,0xd8,0x43,0xf1,0x3,0x7d,0x90,0xcf,0xd9,0x8f,0xbc,0x7c,0x11,0x8c, 0xe5,0xb2,0xd3,0xb3,0xf3,0xa7,0x6f,0x79,0x3b,0x6c,0x8b,0xe2,0xea,0x28,0x28,0x51, 0xca,0x94,0x68,0xeb,0x62,0xc1,0xa4,0x8b,0xad,0xd7,0x61,0x3c,0x9c,0xb1,0x4c,0x92, 0x8f,0xf4,0x6b,0x45,0x52,0x1,0xee,0x98,0x6b,0x1e,0xe7,0x2f,0xa2,0x9b,0x40,0xd5, 0xe0,0x83,0x7e,0xa,0x92,0x67,0x66,0x16,0xf7,0x6f,0xa0,0x56,0xc9,0x7,0x25,0x23, 0xf3,0x50,0x94,0xc5,0xc3,0xdf,0xb9,0xb7,0xa3,0xb1,0xfe,0xad,0xe8,0x4b,0xfb,0x79, 0xf6,0x27,0x5e,0x7a,0x58,0x49,0x24,0xd6,0x6f,0x59,0x7c,0xf,0x6c,0xb3,0xf3,0xfd, 0x8d,0x2b,0x8a,0x7f,0xd9,0x9f,0xb5,0x56,0x82,0x2b,0xf6,0xea,0x8b,0xc,0xec,0xbd, 0xf0,0x27,0xdf,0x7c,0x9f,0x47,0xd1,0x18,0x44,0xed,0xeb,0x7,0x80,0x5b,0x9d,0xa9, 0xbd,0x41,0xb8,0xe2,0xbf,0x59,0xe4,0xb1,0xbf,0x9f,0xc2,0xfe,0x75,0xd4,0xca,0x5, 0xfe,0xdd,0x35,0x1b,0x80,0x3c,0x80,0xe5,0xc3,0xdf,0xfd,0xd6,0xcb,0xbd,0xfe,0x9b, 0x7b,0x1a,0x2,0x8,0x6c,0x32,0xdb,0x5e,0xd7,0xd4,0xa,0xd2,0xd9,0x69,0x24,0x53, 0x80,0x6d,0xe1,0x44,0x19,0x3,0xa5,0x69,0xa1,0xb1,0x28,0x8a,0xdd,0x5d,0x56,0x7c, 0x95,0x83,0x5a,0x78,0xe9,0x6f,0x35,0xcc,0x33,0x8,0x80,0x5,0x7e,0xe0,0x3b,0x61, 0xfe,0x75,0x8a,0xf0,0x91,0x9,0xdb,0x30,0xef,0x66,0x8c,0x5,0x1f,0x63,0x98,0x8c, 0x44,0xca,0x11,0xbf,0x82,0xd6,0x1e,0xea,0xb9,0x19,0x1e,0x22,0x4,0x6d,0xe6,0x69, 0xf9,0x25,0xf,0xcd,0xa9,0xe4,0xf7,0xb9,0xf8,0x85,0xeb,0xe8,0x63,0xad,0x1f,0xe2, 0xf,0x3e,0x7c,0xf,0x38,0xf3,0x13,0x2f,0x5d,0x9d,0x3a,0x75,0x66,0x71,0xf6,0xc, 0xbf,0x87,0xe0,0xc4,0x1c,0xa0,0x97,0x1,0xab,0x8d,0xc7,0x22,0x8d,0x1a,0x1e,0x51, 0x2b,0x5e,0x63,0x50,0x37,0x2,0x92,0xec,0xb1,0x6c,0x3b,0x4f,0xb9,0x64,0x9d,0xfc, 0xe0,0x11,0x60,0x2d,0x56,0x31,0xf9,0x66,0xee,0x3a,0xd1,0x40,0x78,0x3c,0x1,0x7f, 0x9e,0xa7,0xc5,0xf6,0x83,0x40,0x51,0x9c,0xbe,0xfe,0x8,0xe3,0x2,0x26,0xd3,0x7c, 0xa4,0x5f,0x10,0xba,0xc9,0x33,0xfe,0x6f,0x1e,0xf3,0x7e,0x7f,0x3f,0x6a,0x39,0x8f, 0xe2,0xe1,0xd,0x7e,0x5c,0xa0,0x69,0x30,0xbe,0x2,0xac,0x1e,0xfe,0xee,0xb7,0xf6, 0x24,0xe3,0x2f,0xa3,0x5f,0x1e,0x0,0xc0,0xd8,0xa6,0xae,0x56,0xd6,0x78,0xe6,0x93, 0xff,0x20,0x32,0xb3,0x80,0x51,0x5,0x8c,0x5a,0xe7,0xbb,0x1f,0x16,0x14,0xff,0xbb, 0xac,0x65,0x8f,0x22,0x7c,0x45,0xbe,0x3f,0xf8,0xea,0x43,0xb2,0x1f,0xc8,0xea,0x44, 0x38,0x71,0xa9,0xa7,0xcf,0xbc,0xe7,0xe3,0xf,0x9,0x98,0xbf,0x2e,0xf3,0xb6,0xfe, 0x8a,0xb3,0x4e,0x91,0x19,0x0,0x6,0x30,0xc5,0xdb,0xea,0xb6,0x93,0x7,0xee,0x94, 0x99,0x2c,0x90,0x4c,0x46,0x3b,0xe6,0xec,0x44,0x78,0xcb,0xbf,0x57,0xe6,0x6e,0xbf, 0xcd,0xd0,0xf4,0x5,0xd4,0x4a,0xc7,0x28,0x1e,0xdc,0x68,0x5c,0xbb,0x44,0xe3,0xba, 0x38,0x6c,0x1c,0xfe,0xde,0xb7,0xf5,0x4d,0xfc,0x40,0x3f,0xd,0x0,0x90,0x33,0xf5, 0xda,0x9a,0x65,0xe8,0x48,0xa6,0x32,0xb0,0x74,0x20,0x95,0x5,0x52,0x93,0x80,0x92, 0x4,0xf4,0xa,0x6,0xdf,0x14,0x74,0x80,0x4c,0xe8,0xad,0x44,0x1f,0x28,0xf8,0x20, 0x3,0xe1,0xdf,0xce,0xb7,0xad,0xec,0x7c,0xe2,0x22,0x1d,0xd9,0x58,0xff,0xaf,0x59, 0xe8,0x8a,0xaf,0x1e,0x53,0xf8,0x8f,0x9a,0xb9,0xe7,0xc0,0x4,0x23,0xc1,0x1a,0xf, 0xcb,0x54,0x7c,0xdb,0x36,0x1f,0x30,0xf8,0x7c,0xba,0xc9,0x44,0xda,0x99,0xb5,0x17, 0xf1,0x38,0x56,0x40,0x57,0xfd,0x41,0x99,0xf7,0xf1,0xab,0x1,0x1e,0xad,0x5a,0x3e, 0x46,0x49,0x10,0xbf,0xe4,0x7b,0xdb,0x38,0xfa,0xbd,0x6f,0xeb,0x69,0xc6,0x5f,0x46, 0x5f,0x3b,0xd1,0xce,0xfc,0xbb,0x17,0xd9,0xa9,0x85,0xdb,0x31,0x31,0x7b,0x1a,0x89, 0x24,0x90,0x99,0x1,0xff,0x81,0x30,0xee,0x15,0xe8,0x15,0x9e,0x1b,0x18,0x5,0x2, 0xc5,0xac,0x44,0x13,0x7e,0x64,0x63,0x10,0x54,0x16,0x21,0x41,0x28,0xcb,0x3b,0x48, 0x9,0xc9,0xee,0xfb,0x5,0xd8,0x14,0xd3,0x33,0x49,0xab,0xed,0xf3,0x2,0x3c,0xef, 0x21,0xeb,0x9b,0xbc,0x3,0xc8,0xcb,0xba,0x45,0x32,0x1,0xcc,0x4d,0xc6,0x9f,0x12, 0x3b,0x3b,0xc1,0x67,0x6,0x2,0xfc,0x96,0x5e,0x37,0x43,0x84,0xf,0x0,0xe5,0xa3, 0x9b,0x50,0x8b,0xde,0x7b,0xfa,0xf9,0x12,0x7f,0x3,0x11,0x3f,0xd0,0x5f,0xf,0x0, 0x60,0x6c,0xb3,0x56,0x29,0xad,0x4c,0xcc,0x9e,0xe6,0xdd,0x81,0xbe,0xe1,0x95,0x99, 0x19,0xc0,0x50,0x1,0x6b,0x88,0x9f,0x37,0xe2,0x99,0xdf,0xa2,0x4,0xb7,0xf8,0x32, 0xc3,0x80,0x56,0xdb,0x88,0xfb,0x4,0x42,0x3d,0x83,0xa6,0xbc,0x80,0xdf,0x20,0x8, 0x75,0x23,0x23,0x11,0x98,0xbf,0xf5,0x17,0x5d,0x79,0xc5,0x57,0x27,0xc8,0xb,0xa8, 0x87,0x2,0xae,0x7,0x10,0x70,0x1f,0x3d,0xcf,0x3a,0xe7,0xdd,0xbf,0xa9,0xf8,0xb9, 0x53,0x63,0xe0,0x3e,0xc9,0x27,0x2e,0x25,0xa7,0xdb,0x5e,0x37,0x81,0xb2,0xe6,0xc, 0xee,0x9,0xd8,0x4f,0x69,0xef,0x2d,0xd4,0xca,0x79,0xcf,0x1f,0xa0,0x78,0xff,0xa8, 0x8d,0xa3,0xff,0xf9,0xed,0x3,0x11,0x3f,0xd0,0x6f,0x3,0x0,0xe4,0x8c,0x5a,0x79, 0xc5,0xfd,0x60,0x9b,0x40,0x22,0xe5,0x1d,0x0,0x94,0x9a,0xe0,0x65,0xe6,0x10,0x3e, 0x72,0x5c,0x14,0x66,0xa0,0xc0,0x25,0x1e,0x80,0xb4,0x3c,0xac,0x2e,0x20,0xf7,0x8, 0x42,0x7a,0xa,0xa4,0x6,0xc0,0xb3,0xd0,0x2,0x31,0x93,0x2f,0x16,0xb,0x7e,0xbe, 0xd8,0xa,0xd7,0xc5,0x2f,0xc4,0xf0,0x62,0xbc,0xef,0x31,0x2,0x6e,0x5d,0xe1,0x87, 0xef,0xd3,0x79,0xe3,0xdd,0xa9,0xb,0x78,0x85,0x2e,0x2e,0x2b,0x5d,0xf2,0x4,0x32, 0x6d,0xfe,0xfa,0x6d,0x6,0x54,0xf5,0x46,0x92,0x2f,0xe8,0x12,0x17,0xf7,0x7d,0xe2, 0x47,0xd3,0xf7,0x34,0x50,0xf1,0x3,0x7d,0x36,0x0,0xcc,0xed,0xe,0xac,0x56,0x90, 0x99,0x9c,0x86,0x65,0xf0,0xf8,0xdf,0x5d,0xc9,0xe0,0xfc,0x90,0x92,0x40,0x6a,0xa, 0xb0,0xb4,0xc1,0x77,0x15,0x8a,0x82,0xf4,0x88,0x53,0xd2,0x8a,0x4b,0x5b,0x77,0x49, 0x19,0x42,0x8c,0x45,0x94,0x70,0x1,0x40,0x68,0xc8,0x10,0xd8,0x33,0x20,0x94,0x37, 0xf5,0xef,0xb,0x15,0x3c,0xad,0xbe,0x2b,0x46,0x21,0x19,0x28,0x6d,0xe9,0x11,0xfe, 0xe,0x8,0x86,0x41,0x3c,0xe,0x1a,0x2,0xf7,0xd4,0x9,0xd9,0x99,0x7b,0x5c,0xb7, 0x72,0xdb,0x23,0xc2,0xdb,0xa8,0xa4,0x1a,0x5c,0xfc,0x61,0x55,0x6d,0xdb,0x42,0x7e, 0xe7,0x2a,0x4c,0xbd,0xe6,0xed,0x92,0xf5,0x1a,0xd8,0x8d,0xe3,0x1,0x8b,0x1f,0xe8, 0x73,0xe,0x0,0x0,0x4e,0xff,0xf8,0xd7,0xaf,0x4e,0xce,0x9d,0x5d,0x9c,0x3d,0x7b, 0x1b,0x0,0x20,0x3b,0x8b,0xe6,0x18,0x8f,0x35,0x7e,0x64,0xb6,0xc9,0xd,0xc1,0x20, 0x2f,0x50,0x90,0x50,0xc3,0xca,0x81,0x10,0xa3,0x10,0x51,0xf8,0xd2,0x6d,0xdd,0x93, 0x42,0x70,0x5d,0x71,0x9d,0xff,0x6f,0x11,0x91,0xfe,0x88,0xfd,0x31,0x7d,0xab,0xee, 0xbb,0x16,0xf1,0x7c,0x50,0xb9,0x27,0xbe,0xf7,0xaf,0xf7,0x6f,0xeb,0xaf,0x17,0xb6, 0xbf,0x18,0x4c,0xa5,0xa3,0x3d,0xcd,0xd7,0x66,0x8d,0xa9,0xbc,0x76,0x8b,0x83,0x18, 0x9a,0x8a,0xd2,0xc1,0x75,0x2e,0x7e,0xe1,0xc2,0xfb,0x13,0x7e,0xc7,0x9f,0x19,0xbc, 0xf8,0x81,0xfe,0x87,0x0,0x0,0xd8,0xa6,0xae,0x96,0xd7,0xdc,0xeb,0x68,0x5b,0x4e, 0x42,0x24,0xe8,0x7,0x95,0x4,0x12,0x93,0x80,0xad,0x3,0xac,0x4f,0x9,0x42,0x99, 0xab,0x2f,0x4e,0x1,0x15,0x45,0xe9,0xff,0x1c,0xd5,0x40,0xb4,0x32,0x1c,0xd2,0xfd, 0x6,0x6c,0x53,0x3f,0x95,0x20,0x23,0x11,0xf5,0x9b,0xa9,0xff,0x27,0x1f,0xe0,0x23, 0x7a,0x3,0x75,0x4f,0xc0,0xb7,0x5e,0x8c,0xf7,0xfd,0xf1,0xbc,0xd4,0x2d,0x40,0x63, 0x5f,0x62,0xaf,0x81,0xe8,0x25,0x4,0x96,0x8b,0xe7,0x8d,0x86,0x37,0x12,0xd5,0x10, 0x54,0xc,0x3e,0x4e,0x7f,0x32,0xdd,0x48,0xea,0xb9,0x58,0x8c,0xdf,0xb7,0xdf,0xb0, 0xe4,0xfd,0xf9,0x32,0x74,0xb5,0x8c,0xe2,0xde,0x1b,0x60,0x42,0x26,0x5b,0x92,0x9c, 0x5d,0x3b,0xfe,0xcc,0x77,0x7c,0x3a,0xc6,0xd7,0xd2,0x53,0x6,0x60,0x0,0x90,0xb3, 0xf4,0xda,0x9a,0xa5,0xeb,0x48,0xa6,0x1b,0xdd,0x81,0x41,0x1e,0x80,0x9b,0x8,0x4a, 0xa4,0x79,0xbf,0xa9,0xdd,0xa7,0x4,0xa1,0x47,0xf8,0xee,0xe7,0x90,0x96,0x1c,0x92, 0x72,0x25,0xac,0xbc,0x83,0x10,0x22,0xaa,0x11,0x68,0xf2,0x8,0x2,0x90,0xe,0xdc, 0x11,0xbe,0x8f,0x7a,0x8c,0xf,0xaf,0xc0,0x9b,0x84,0xec,0xb9,0x80,0xde,0x75,0x61, 0xe2,0x8d,0xbc,0x2c,0x84,0x1f,0x8a,0x6f,0x1b,0xcf,0x76,0x31,0x72,0x4,0xba,0xc5, 0x5f,0x9d,0xa2,0x16,0xe,0x50,0x3e,0xba,0xe9,0xbd,0x4,0xcd,0x17,0x7d,0xf5,0xf8, 0x33,0xdf,0xf1,0x54,0xe7,0x47,0xeb,0x1e,0x7d,0xf,0x1,0x0,0xe0,0xf4,0x8f,0xbf, 0xc0,0x66,0x16,0xde,0x86,0x89,0xd9,0xd3,0x50,0x12,0x40,0xc6,0xb9,0x7d,0xb2,0xcc, 0x25,0xf4,0xbf,0x33,0x6,0x30,0x13,0x2d,0x6f,0xa3,0xd5,0xee,0xc5,0x8,0x6b,0xa9, 0xa5,0x62,0x55,0xda,0xaf,0x13,0x6a,0x20,0x5a,0xec,0x4b,0xb6,0x1e,0xb2,0x6d,0xea, 0xff,0xc9,0xbf,0x6c,0x59,0xd7,0x5d,0x93,0xab,0x2d,0x2b,0xb,0x72,0xc3,0x7d,0xe5, 0x41,0xdb,0xbb,0xf7,0x70,0x60,0x2d,0xf6,0xd5,0xb4,0xef,0xb8,0x75,0xba,0xff,0x33, 0xf1,0x60,0x5b,0x16,0xca,0x7,0x6f,0xc1,0xa8,0xa,0x13,0xfd,0x9b,0x2f,0x74,0x1e, 0xc0,0xf2,0xf1,0x67,0xbe,0xe3,0x72,0x8f,0x4f,0x27,0x36,0x83,0xf0,0x0,0xc0,0x18, 0x36,0xb5,0x4a,0x71,0x25,0x3b,0x73,0x1a,0xcc,0xed,0xe,0x74,0xdd,0xbc,0x10,0xf1, 0xbb,0x28,0x49,0x0,0x9,0x34,0xea,0x76,0x88,0x28,0x7c,0xe1,0xcd,0xb3,0xde,0xdf, 0xca,0x7b,0xba,0xfe,0xe0,0x5d,0x8e,0x5a,0x47,0x3c,0x56,0x90,0x37,0xd1,0x71,0x5e, 0x41,0xf1,0x9e,0xa3,0xbf,0xc9,0xac,0x3b,0x5a,0xa,0x9a,0xb2,0xeb,0xf5,0x46,0x3c, 0xc0,0x8d,0xf7,0xb8,0xed,0xce,0xbb,0xe2,0x2b,0xaf,0x6f,0x87,0xc6,0xbe,0x15,0xe1, 0x98,0x62,0x1d,0xf8,0xce,0x41,0xea,0xd,0xb4,0xa8,0xe3,0x39,0x6f,0xc4,0xf,0xb, 0xe2,0x60,0xe9,0x2a,0x8a,0xbb,0xd7,0x60,0xbb,0x37,0xf0,0xf4,0xc7,0x24,0x9c,0x2d, 0x0,0xab,0xf9,0xcf,0xe,0x9f,0xf8,0x81,0x1,0x19,0x0,0x80,0xe5,0x8c,0x5a,0x69, 0xc5,0xfd,0x64,0x99,0x40,0x32,0x25,0x4f,0x26,0x35,0xbd,0x8b,0x5f,0x76,0xd2,0xb9, 0xe6,0x1d,0x1a,0x1,0x99,0x90,0x3d,0xa2,0x91,0x6c,0x1f,0xb4,0xa3,0x20,0x43,0xd2, 0x64,0x64,0x22,0x18,0x92,0x56,0x75,0x82,0x72,0x10,0xd2,0x10,0x43,0xac,0xe7,0x5e, 0x67,0xc5,0xe7,0xde,0xfb,0xbf,0x25,0xe1,0x5c,0xfc,0x62,0x57,0x7c,0x79,0x0,0xa5, 0x4d,0xb1,0x37,0x1d,0x7,0x8,0x34,0x2a,0xfe,0x3a,0xee,0xfe,0xc5,0x3a,0x61,0x51, 0x49,0x37,0x51,0x8b,0xfb,0xa8,0x1c,0xde,0x6c,0xfe,0xa2,0xbd,0x6c,0x2,0x58,0xcd, 0x7f,0xf6,0x62,0xa1,0xf,0xa7,0xd4,0x16,0x3,0x32,0x0,0xbc,0x3b,0xd0,0x50,0xcb, 0x48,0x4f,0xce,0xd4,0xc7,0x3,0xb4,0xf4,0x0,0x24,0xbd,0x5,0x70,0x6f,0xc3,0x64, 0xa3,0xb3,0x6f,0x5e,0x9,0x7e,0xf,0x14,0xa7,0x5f,0x78,0xbe,0xed,0x82,0x62,0x7a, 0xd9,0x7e,0x20,0xec,0xaf,0xa9,0xbb,0x50,0xdc,0x3e,0x6a,0xc8,0x21,0xd9,0xaf,0xb8, 0x8d,0x18,0xd3,0xb7,0x4c,0xd2,0x39,0x75,0x83,0x8c,0x40,0x53,0xd7,0x5c,0xd0,0xfe, 0x64,0xfb,0xf,0x30,0x2a,0x41,0x9a,0x12,0xc5,0xde,0xe4,0x8d,0xc0,0x9b,0x78,0x54, 0x44,0x23,0xd2,0xe1,0xcf,0xc3,0xc5,0x32,0x75,0x94,0xf,0xde,0x84,0x51,0xab,0xb4, 0xa,0xa0,0x2f,0xe5,0x3f,0x7b,0xf1,0x93,0x5d,0x38,0x64,0x4f,0x19,0xc8,0xcd,0x96, 0xf3,0x9f,0xbd,0x78,0xd,0xc,0xdb,0x5a,0xa5,0x8,0xc6,0xb8,0x7,0xd0,0x8e,0xf8, 0xc5,0x98,0x8f,0x29,0xce,0xb,0xf1,0x5e,0x1e,0x4,0xe1,0x31,0xdf,0xe7,0xfa,0xbb, 0x4f,0xc1,0x2c,0xa4,0x4e,0xe8,0x3a,0xe1,0x33,0x8b,0x7a,0xec,0x80,0xf3,0x6d,0x3a, 0xe,0x9a,0xaf,0x5f,0xfd,0x5a,0x31,0xde,0x95,0x55,0xcf,0xa7,0x40,0x38,0x7,0xff, 0x72,0xab,0x73,0x91,0x18,0x49,0xff,0x3a,0x16,0x56,0xb7,0xd5,0x3a,0x45,0xb8,0x8e, 0x1,0xae,0x19,0xb,0xb8,0xde,0x41,0xd7,0x25,0xee,0xef,0x43,0x7c,0x69,0xd5,0x2, 0xf2,0xd7,0xaf,0xc0,0x50,0x2b,0x61,0x1b,0xe6,0xc1,0xb0,0x3c,0xa,0xe2,0x7,0x6, 0x64,0x0,0x0,0x80,0x81,0x6d,0x1a,0xb5,0xc6,0xa3,0x8f,0x2c,0xa7,0xab,0x25,0xd0, 0x8,0x38,0xff,0x35,0x79,0x0,0xee,0x7b,0x87,0xe6,0x5d,0xdc,0x9f,0x7f,0xbc,0xbb, 0xe7,0x30,0xc2,0x7,0xa9,0x68,0xc2,0xf6,0x27,0x89,0x47,0x3,0x13,0x6f,0x2c,0xb8, 0xbc,0x7e,0xd,0x82,0x5e,0x68,0x88,0xbc,0xfe,0x6e,0xf3,0x65,0x5b,0xb6,0x6c,0x4b, 0xc,0x83,0xb0,0xaf,0xb8,0xfd,0xf0,0xd2,0xbf,0xb1,0x8d,0x6b,0xd1,0x64,0x9d,0x7c, 0xee,0x7f,0xf3,0x5,0xef,0x51,0xac,0x6f,0xe8,0x28,0xee,0x5e,0x45,0x71,0x77,0x1b, 0xb6,0x6d,0x81,0x5,0xff,0xcb,0x1,0x6c,0x31,0xbf,0x71,0xf1,0xab,0x3d,0x38,0x8d, 0x9e,0x30,0xa8,0x10,0x0,0x60,0xc8,0x99,0x1a,0x9f,0x1d,0x98,0x48,0x67,0x1a,0xe3, 0x1,0x10,0xec,0x1,0x38,0xf5,0x9a,0x7f,0x50,0xb2,0x66,0x2c,0x2,0xd2,0x58,0x55, 0x5c,0x66,0xc1,0xee,0x66,0xbd,0xd5,0xb,0x89,0x89,0x43,0x63,0xd8,0xa0,0x64,0x96, 0xa4,0xbc,0xa5,0x7b,0xee,0x3b,0x77,0xd9,0xb0,0x5c,0x77,0x3,0x45,0x52,0x47,0x5c, 0xa8,0x5f,0xca,0x10,0xc3,0x1b,0xb9,0x27,0x40,0xf8,0x7e,0x82,0xc,0x87,0xb8,0x1f, 0x99,0x51,0x6d,0x32,0x2a,0x2d,0xea,0xf8,0x7f,0x6,0x9e,0x3a,0x6d,0xfc,0x4c,0x6a, 0x85,0x7d,0x54,0x8f,0x77,0xc2,0xee,0xd8,0xcb,0x51,0x70,0xa9,0xb0,0xb1,0x34,0x12, 0xad,0xbe,0xf7,0xb4,0x7,0xc8,0xdc,0x83,0x5b,0x6c,0xfa,0xdc,0xdb,0x31,0x31,0x7b, 0x6,0x50,0x80,0xcc,0x44,0x40,0xcb,0x17,0xf6,0xc3,0x69,0x53,0xfc,0xe2,0x5,0x88, 0x15,0x5f,0xfb,0x63,0xed,0xa0,0x18,0x5c,0xf2,0x39,0xca,0xf6,0x91,0xbb,0xfc,0x14, 0xef,0x79,0xbb,0x7f,0x8b,0xdf,0x1d,0xf7,0x7f,0xc1,0x81,0x6,0x40,0xfc,0xcc,0xbc, 0x86,0xa1,0xc9,0x28,0xf8,0x5,0x8e,0x60,0x63,0xd0,0xd2,0x6b,0x68,0xa3,0x3c,0xb4, 0x6b,0x31,0x6c,0x5f,0x31,0x7e,0x26,0xa6,0xa6,0xa2,0x72,0x78,0x1d,0x66,0xad,0xd2, 0x6a,0xd3,0x2d,0x0,0xab,0x85,0xa7,0x96,0x2e,0x47,0xdc,0xf5,0x50,0x31,0x38,0xf, 0x0,0x0,0xc0,0x36,0xf5,0x4a,0x61,0x25,0x3b,0x73,0x6,0x70,0xdc,0x51,0x71,0xd4, 0x97,0xff,0xb6,0xe0,0xb2,0x16,0x40,0xea,0x2a,0x46,0xc4,0xe3,0x1,0xf8,0x92,0x51, 0xa1,0xc9,0xa4,0x36,0x5b,0xef,0x96,0xad,0xba,0x24,0xa9,0xe5,0xb9,0x5a,0xe2,0x26, 0xee,0xb9,0x22,0x42,0x8b,0x1f,0xd5,0xcc,0xfb,0x5b,0x60,0xd6,0xbc,0x2c,0x13,0xb7, 0x67,0x7d,0x90,0x1,0x10,0x97,0xa3,0x7a,0x10,0x1,0xe5,0x9e,0xaf,0x5c,0xf2,0xbb, 0xf0,0x1f,0xdf,0x53,0xde,0xe2,0x67,0xc2,0x6c,0xb,0xea,0xf1,0xe,0x6a,0xc5,0xfd, 0x28,0xbf,0xa0,0xf5,0xc2,0x53,0x4b,0x8f,0x44,0xbc,0xba,0x43,0xc9,0x80,0xd,0x0, 0x72,0xa6,0x38,0x3b,0xd0,0x6a,0xdc,0x99,0xc5,0xe3,0x9,0xf8,0x63,0xc0,0x2e,0x79, 0x0,0x1e,0x8f,0xda,0x27,0xe4,0x50,0x97,0x5e,0x38,0x5c,0xd0,0x72,0x47,0x8,0x71, 0x48,0x93,0x7d,0x8,0x10,0xbb,0x7b,0xbe,0x6e,0x58,0x2,0x34,0xb6,0x8b,0x7b,0x52, 0x61,0x73,0xfe,0xa5,0xa2,0x17,0xcb,0x3,0x8c,0x43,0xbb,0x21,0x44,0x3d,0xd7,0x11, 0x50,0x5f,0x6a,0x20,0x64,0x5e,0x83,0xf8,0xf7,0x4,0x50,0x2b,0xec,0x43,0xcd,0xef, 0x78,0x86,0xf2,0x6,0xb0,0x85,0x11,0x6e,0xf5,0x45,0x6,0x6d,0x0,0x36,0x6d,0xcb, 0xf2,0x76,0x7,0x8a,0x77,0x67,0x9,0x70,0xf7,0xea,0xef,0x1d,0xba,0xff,0x6e,0xd5, 0x20,0x23,0xd0,0xaa,0x95,0x8e,0xf5,0xde,0xe2,0xf8,0x68,0xb5,0x1b,0x5f,0x8b,0x2f, 0x8a,0x5d,0x14,0xba,0xa7,0xc5,0xf7,0x7b,0x11,0x61,0x7d,0x6b,0xb2,0x4b,0x19,0xe6, 0x11,0x88,0xeb,0x23,0x1a,0x85,0xb0,0xc4,0x6e,0xbb,0x5e,0x41,0x3b,0x5e,0x83,0x1f, 0xad,0x74,0x4,0xf5,0x78,0x7,0x96,0xd9,0xf2,0x6,0x95,0x79,0x45,0xc1,0x7a,0xe1, 0xa9,0xfb,0x46,0x2e,0xd6,0xf,0x62,0xa0,0x39,0x0,0x0,0x38,0xf5,0x6f,0xff,0xfe, 0x6a,0xf6,0xd4,0xb9,0xc5,0xe9,0xb3,0x77,0x0,0x0,0xd2,0xee,0x3d,0xd9,0xc5,0x2f, 0xb2,0xc7,0x46,0xa0,0x9e,0x7,0x50,0x24,0xcb,0x42,0xdc,0xf,0xc4,0x8f,0xd5,0xdb, 0xbe,0x21,0x88,0x24,0xc6,0x97,0x6d,0x2b,0xbc,0xc9,0x63,0xfe,0xb8,0xdf,0x30,0x6b, 0xbe,0x94,0x1e,0x57,0xda,0xbf,0x8d,0xbf,0x75,0x6d,0x11,0x1e,0x78,0xde,0x11,0xfe, 0xdd,0x6,0x85,0x10,0x71,0x8c,0x2,0x93,0x9d,0xa3,0x83,0xa1,0x96,0xa1,0xe6,0x77, 0x60,0xd6,0x2,0x1f,0xc8,0x29,0x92,0x3,0xb0,0x5a,0xfc,0xfd,0xfb,0xae,0xc5,0xbc, 0xa2,0x43,0xcd,0xa0,0x3d,0x0,0x0,0x6c,0xd3,0xac,0x95,0xd6,0xdc,0x4f,0xb6,0x5, 0x24,0x12,0xfd,0x13,0xbf,0xa7,0xba,0xdf,0x97,0xf7,0xb7,0xde,0x6d,0xb4,0xf2,0x41, 0x9b,0xa3,0xc5,0xae,0x82,0xdc,0x7b,0x31,0x4,0xf0,0xe4,0x24,0x84,0xcf,0x1e,0x2b, 0xc0,0xe2,0x59,0x79,0x26,0xf9,0x10,0xc9,0xb,0x10,0x97,0xa3,0x86,0x9,0x40,0xb0, 0xf0,0x11,0x4d,0xe0,0xa1,0xeb,0xfd,0xcb,0xe,0x86,0x5a,0x8a,0x23,0xfc,0x6d,0x40, 0x59,0x2d,0xfe,0xfe,0x7d,0x23,0xd3,0xb5,0x17,0x87,0xc1,0x1b,0x0,0x86,0x9c,0xa5, 0xa9,0x6b,0xa6,0xa1,0x21,0x99,0xca,0x7a,0xa7,0x7,0xb7,0x10,0xbf,0x27,0xbe,0xed, 0xd0,0x8,0xb4,0x7f,0xfa,0x2d,0x92,0x75,0x51,0xb6,0x89,0xea,0xde,0x8b,0x6,0x1, 0xde,0xed,0x80,0xe0,0x98,0xbf,0x69,0x90,0x8e,0xec,0x8f,0x8,0xb9,0x84,0x8c,0x49, 0x36,0xf,0xf0,0x2,0xc4,0xed,0xdb,0x9,0x13,0xc2,0x72,0x7,0x81,0x39,0x2,0xa0, 0xa5,0x7,0x1,0x0,0x46,0xad,0x4,0xf5,0x38,0xb2,0xf0,0xf3,0x0,0x2e,0x15,0x3f, 0xf7,0xde,0x4f,0x47,0xd9,0x78,0x54,0x19,0x78,0x8,0x0,0x0,0xa7,0xfe,0xcd,0xd7, 0xd8,0xd4,0xc2,0x9d,0xc8,0xcc,0x9e,0x85,0x2,0x20,0x9d,0x8d,0x2e,0x7e,0xd9,0xf, 0xbe,0x93,0xb,0xe1,0xf,0x1,0x64,0x61,0x41,0xd3,0xba,0x30,0x17,0x3e,0xac,0xbe, 0x50,0x17,0x41,0xfb,0xf1,0x2f,0xfb,0xeb,0x88,0x27,0x8f,0x60,0xb1,0x47,0xf9,0xa2, 0x59,0xc0,0x87,0xb6,0xf2,0x2,0xbe,0xe5,0xd8,0x9e,0x80,0x64,0xbb,0xa8,0xf9,0x5, 0xff,0xbe,0xb5,0xd2,0x21,0xd4,0xfc,0xe,0xec,0xd6,0x31,0xbe,0xcb,0x25,0x0,0xeb, 0xc5,0xcf,0xbd,0xb7,0x10,0xb5,0xc2,0xa8,0x32,0x78,0xf,0x0,0x0,0xc0,0x36,0x8d, 0x6a,0x7e,0x25,0x33,0x7b,0x16,0xc,0x8d,0xee,0xc0,0xa8,0xa3,0x2,0xbb,0x72,0x6, 0xbe,0x65,0xdf,0xfd,0xda,0xbd,0x63,0xdd,0x25,0x75,0x3,0x5b,0x7c,0xe7,0x83,0x18, 0x5d,0x34,0xb5,0xe6,0x41,0xee,0xbd,0xb0,0xd,0x83,0x77,0x3b,0x40,0xde,0xe2,0xd7, 0x8d,0x43,0xc8,0x75,0xf1,0x45,0x8,0xad,0xaf,0x4d,0x80,0x7,0xe0,0xa9,0xdf,0xc2, 0xb,0x10,0x97,0x7b,0x62,0x14,0x7c,0xdb,0xd8,0x96,0x89,0x5a,0x71,0x1f,0x5a,0xf9, 0x30,0x8e,0xf0,0x37,0x0,0xe5,0x52,0xf1,0x73,0xef,0x1d,0xab,0x38,0x3f,0x8c,0xa1, 0x30,0x0,0x8c,0x21,0x67,0xa8,0xe5,0x15,0xf7,0x4b,0xb4,0x2d,0xa7,0x37,0x0,0xfd, 0xf3,0x0,0xea,0xe7,0x2,0xaf,0x88,0x45,0x37,0xdd,0x15,0x72,0x68,0x86,0x1e,0x5e, 0x31,0x7b,0xc,0x82,0xcf,0xd5,0x6f,0xd5,0x9d,0xe7,0x9,0x7,0x9c,0xfa,0x81,0x59, 0x7e,0x7f,0x78,0x20,0x12,0xe2,0xd,0x34,0x6d,0x2e,0xa9,0xef,0xcf,0x91,0x84,0x7a, 0x4,0xfe,0xed,0x24,0x82,0xf6,0x7c,0x9f,0x1,0xdb,0xb4,0x9b,0x3b,0x30,0xd4,0x12, 0xb4,0xd2,0x21,0xb4,0xb2,0xf7,0x36,0xdc,0x2d,0xd8,0x50,0x14,0x5c,0x2a,0x7e,0xee, 0x3b,0x4f,0x8c,0xf0,0x5d,0x86,0xc2,0x0,0x0,0xd8,0x64,0xb6,0xb5,0x6e,0xaa,0x25, 0xa4,0x26,0x67,0x61,0xdb,0xdc,0x0,0x48,0xfb,0xff,0x7b,0x28,0x7e,0x17,0xf1,0xb0, 0xa,0xf3,0xe8,0x2d,0x34,0xf,0x88,0x80,0xed,0x9a,0x5a,0xf3,0x38,0xdd,0x79,0x3e, 0xd1,0x8b,0x31,0xbf,0xdf,0x38,0x0,0xc2,0x36,0x71,0x9b,0xf9,0x80,0xb,0xc1,0xe4, 0xc5,0xf2,0x10,0x21,0x46,0x5e,0x40,0x5c,0xe,0xf5,0x8,0xd0,0xda,0x28,0xd8,0xb6, 0xc9,0xbb,0xf2,0xa,0x7b,0x71,0x5a,0xfb,0x3c,0xf8,0x74,0xdd,0x4b,0xa5,0x3f,0x38, 0x79,0xc2,0x77,0x19,0x8a,0x1c,0x0,0x0,0xcc,0xfe,0xeb,0xbf,0xbb,0x9a,0x3d,0x75, 0x6e,0x71,0xf2,0xec,0xdb,0x1,0x0,0xa9,0xb4,0xb3,0x42,0xe6,0xea,0xf5,0x50,0xfc, 0x61,0xb8,0x1e,0x41,0xd4,0x6e,0xbb,0xb0,0x58,0x3e,0x72,0x77,0x9e,0x3f,0xfe,0xf7, 0x6c,0x28,0x8f,0xf9,0xbb,0xf9,0xa5,0xca,0xf2,0x2,0x61,0x1e,0x0,0xe0,0x13,0xaa, 0xbf,0x5e,0xbb,0x1e,0x81,0x58,0xee,0xbc,0xeb,0x95,0x3c,0xb4,0xd2,0x21,0xf4,0x6a, 0xac,0x50,0x3d,0xf,0x60,0x1d,0xc0,0x7a,0xe9,0xf,0xbe,0x73,0xec,0x63,0xfc,0x56, 0xc,0x8b,0x7,0x0,0xf0,0xd9,0x81,0x6b,0xee,0x30,0x0,0xb1,0x3b,0x30,0x74,0x52, 0x50,0x3f,0xcf,0xd0,0x79,0x77,0xbd,0x2,0x7f,0x88,0x10,0xc5,0xbd,0x6f,0xd9,0xfa, 0xcb,0xea,0xb8,0x27,0xe0,0xcb,0xfa,0x3,0xc1,0x31,0x7f,0xa4,0x1,0x40,0x61,0x7f, 0x24,0x82,0xaf,0xaf,0x34,0x27,0x20,0x2c,0xc4,0xf6,0x2,0xc4,0x6d,0x5b,0x88,0x5f, 0xaf,0xe4,0xf9,0xab,0x9a,0x8f,0x32,0x62,0x4f,0x64,0xb,0xc0,0x7a,0xe9,0xf,0xde, 0xf7,0x54,0x9c,0x4a,0xe3,0xce,0xf0,0x18,0x0,0x86,0x9c,0xad,0xa9,0x6b,0xb6,0xa1, 0x21,0x91,0xca,0xf2,0x44,0xa0,0xd3,0x1d,0x8,0x78,0xc5,0xef,0x1f,0xff,0xdd,0xff, 0x53,0x95,0x18,0x3,0x25,0x9a,0xc0,0x65,0x6,0xc1,0x5d,0xe6,0xb,0xcd,0x5d,0x7b, 0xe2,0x81,0x5b,0xc6,0xfc,0x32,0x4f,0xa0,0x8d,0xeb,0xc4,0x2,0x3f,0x34,0xb,0xde, 0xbf,0x89,0xac,0x67,0xc0,0x5f,0x4f,0xb6,0x2c,0xb,0xf,0x6c,0xdb,0x84,0xa1,0x96, 0xeb,0xc2,0x8f,0x29,0x7a,0x0,0xd8,0x0,0xb0,0x51,0xfa,0xfc,0xfb,0xc6,0xb2,0x1f, 0xbf,0x53,0x86,0x26,0x4,0x0,0x80,0x99,0x7f,0xf5,0xb7,0x6c,0x72,0xe1,0x2,0x32, 0xb3,0xb,0x0,0x80,0x94,0x63,0x9e,0xfc,0xf3,0x2,0xa4,0x3f,0xaa,0x21,0x40,0xc, 0x11,0x9a,0xba,0xfe,0x42,0x96,0x83,0xc2,0x0,0xcf,0x67,0x7f,0x7d,0xb1,0x38,0xe4, 0x5b,0x6c,0xf7,0xb,0x66,0x21,0x2b,0x58,0xd0,0xb6,0xac,0xf5,0xe7,0x40,0x8f,0x40, 0x58,0x6f,0x19,0x1a,0xf4,0x4a,0x1e,0x86,0x5a,0x8a,0xeb,0xde,0xbb,0x6c,0x83,0xbb, 0xf9,0x1b,0xe5,0xcf,0xbf,0xef,0xc4,0xbb,0xf9,0x61,0xc,0x8f,0x7,0xc0,0x71,0xba, 0x3,0xb9,0x1,0xa8,0xcf,0xe,0x4,0xea,0xe2,0x77,0x97,0x85,0xb7,0xa1,0xa1,0xee, 0x19,0xb8,0xad,0x37,0x1c,0xf,0x41,0x69,0x2c,0x33,0x67,0x85,0xbf,0x6b,0xaf,0xa9, 0xc5,0x17,0xf6,0x11,0x96,0xf5,0x7,0x82,0xbb,0x27,0xe3,0xe6,0x5,0x62,0xf5,0x8, 0xf8,0x3e,0xc4,0xed,0x19,0x10,0xeb,0x58,0x86,0x6,0x43,0x2d,0xc1,0xa8,0x95,0x61, 0xa8,0xa5,0x38,0x89,0x3c,0x91,0x3c,0x9c,0xd6,0xbe,0xfc,0xf9,0xf7,0x5d,0x6e,0x67, 0x7,0x27,0x91,0xe1,0x32,0x0,0x8c,0xe5,0x4c,0xb5,0xd4,0xe8,0xe,0xb4,0xf9,0xec, 0x40,0x51,0xfc,0xd2,0x8c,0xf0,0x90,0xe2,0x6f,0x9,0x5d,0xef,0x20,0xc1,0xbc,0x42, 0xf7,0x78,0x0,0x42,0x28,0x50,0x7f,0x6b,0x11,0xf3,0x7,0x8e,0xf4,0x93,0x6d,0x13, 0xe5,0x7c,0x43,0x56,0xc6,0xca,0xb,0x4,0x78,0x4,0xa6,0x56,0x85,0x51,0x2b,0xf1, 0xf7,0xf6,0x5,0xf,0x34,0x32,0xf9,0x9b,0xe5,0x3f,0x7c,0xff,0x17,0xdb,0xdd,0xc9, 0x49,0x66,0xb8,0xc,0x0,0xb0,0x9,0xa1,0x3b,0xb0,0x9e,0xf1,0x1f,0x41,0xf1,0xcb, 0x70,0x13,0x9a,0xb6,0xf3,0xc1,0x13,0x26,0x30,0xfe,0xa4,0x5a,0x99,0xd1,0x10,0x17, 0x82,0x62,0x7e,0xbf,0xa1,0x8,0x44,0x66,0x9,0x22,0x5e,0xc8,0xa8,0xad,0xbf,0x58, 0xc6,0x5,0xae,0xc1,0xd4,0xaa,0x30,0x35,0x15,0xa6,0x70,0x1b,0xb8,0x36,0xd9,0x6, 0x17,0x7d,0x8e,0x44,0xdf,0x39,0x43,0x95,0x3,0x0,0x80,0xe9,0x1f,0xfd,0x9b,0xab, 0x99,0xb9,0xf3,0x8b,0x13,0x67,0xef,0x4,0xc0,0x9f,0xe1,0x2e,0x8e,0x7e,0xf3,0x8b, 0x7f,0xd4,0x8c,0x40,0x14,0x14,0x70,0x63,0x60,0xaa,0x25,0x24,0x14,0x20,0x91,0xca, 0x20,0x99,0xce,0xb6,0xac,0x13,0xad,0x30,0x6,0xad,0x42,0x0,0x7,0xcb,0xd0,0x60, 0x9b,0x3a,0x4c,0xad,0xa,0x66,0x5b,0x75,0xd1,0x5b,0x46,0xdb,0x2d,0xbb,0xf7,0xcf, 0x50,0x90,0x3,0x9f,0x8d,0xb7,0x59,0xfe,0xc3,0xf7,0x93,0x7b,0xdf,0x45,0x86,0xcd, 0x3,0x0,0xc0,0x36,0x4d,0xb5,0xb4,0x56,0x6f,0x49,0xdc,0x87,0x86,0x60,0xf4,0x3d, 0x80,0xc8,0x57,0x0,0x80,0x5a,0x3c,0x40,0xed,0xe0,0xaa,0xa7,0x3c,0x91,0xca,0x22, 0x99,0xce,0x40,0x49,0xa4,0x90,0xca,0x4e,0x7a,0xca,0x5c,0xd2,0x93,0xa7,0xbc,0x3b, 0xea,0x0,0x43,0x6d,0x3c,0xed,0xc6,0x32,0x74,0xd8,0x26,0x7f,0x4a,0xab,0xa9,0xa9, 0x60,0xb6,0xe9,0x29,0xeb,0x32,0x5b,0x80,0x92,0x3,0x17,0x7d,0xae,0xfc,0x87,0xef, 0xa7,0x44,0x5e,0x8f,0x18,0x42,0x3,0x80,0x9c,0xad,0x57,0xd7,0x6c,0x43,0x83,0x92, 0xce,0xc2,0x66,0x40,0x52,0x39,0x59,0x1e,0x80,0x51,0x6a,0x16,0x3f,0x0,0xd8,0xa6, 0x56,0x17,0x9c,0x5e,0x39,0x8e,0xb5,0xcf,0x64,0x66,0x12,0x89,0x64,0xf3,0xd7,0x6d, 0x5b,0x26,0x2c,0x5d,0x1d,0xf4,0x9f,0x9c,0x3,0xef,0xa7,0xcf,0x1,0xc8,0x55,0xfe, 0xe8,0x3,0x24,0xf8,0x3e,0x31,0x74,0x21,0x0,0x0,0x4c,0xff,0xe8,0xff,0x63,0x13, 0xb,0x77,0x21,0xed,0xf4,0x6,0x24,0xfd,0x1e,0x0,0xbc,0xef,0xe3,0x44,0x90,0xf8, 0xc7,0x88,0x1c,0xb8,0xd8,0xb7,0xc1,0xc5,0x4e,0x2e,0xfd,0x0,0x19,0x46,0xf,0x0, 0x60,0x6c,0xd3,0xac,0x1e,0xaf,0xa4,0x66,0x9c,0xee,0x40,0x8,0x3d,0x61,0x12,0xf7, 0x7f,0x5c,0xc,0x81,0xad,0x57,0x50,0x3b,0x7c,0xc3,0x9b,0x52,0x57,0x94,0x4d,0x0, 0xf3,0x60,0x6c,0x9,0xc0,0xfc,0xa0,0xcf,0x31,0x22,0x79,0x28,0xca,0x16,0xb8,0xc8, 0xb7,0xc1,0x45,0xbf,0x5d,0xf9,0xa3,0xf,0x9c,0xd8,0x31,0xf7,0xc3,0xca,0x70,0x1a, 0x0,0x20,0x67,0xaa,0xc5,0x15,0xf7,0x83,0xe7,0xfe,0xfc,0x18,0x4f,0xf1,0x5b,0x5a, 0x5,0xea,0xce,0xab,0x7c,0xc,0x74,0x83,0xd5,0xca,0x1f,0x7d,0xc0,0x33,0x74,0x75, 0xfa,0x47,0xfe,0xfa,0x7e,0x67,0x71,0x9,0xdc,0x20,0x2c,0x3a,0x2f,0xf8,0x96,0x7b, 0x45,0x1e,0xbc,0x5,0x7,0x1a,0x2,0xaf,0x97,0x55,0xfe,0xf8,0xbb,0x68,0xc4,0xdd, 0x8,0x31,0x9c,0x21,0xc0,0x8f,0xfc,0xf5,0x5,0x6,0x6c,0x4f,0xde,0xfa,0x1e,0x24, 0x9d,0xa4,0x96,0xf3,0xe8,0xc0,0x26,0xf1,0x8f,0x83,0x1,0xb0,0x1d,0xf1,0xfb,0x86, 0xb9,0x5e,0xaa,0xfe,0xf1,0x77,0x7d,0xb2,0x93,0xfd,0xa,0xc6,0xa2,0x23,0x48,0xd4, 0xe3,0xcb,0x50,0x1a,0x0,0x0,0x98,0xfa,0xe1,0xbf,0xbe,0x9a,0x3e,0x75,0xcb,0x62, 0xf6,0xec,0x5,0x0,0xcd,0xcf,0x30,0x1b,0x97,0x3c,0x80,0x6d,0x6a,0xa8,0x5e,0x7f, 0xd1,0xdf,0xf2,0x6f,0x54,0xff,0xe4,0xbb,0x7e,0x6c,0xd0,0xe7,0x46,0x8c,0x3f,0x3, 0x7b,0x36,0x60,0x6b,0xd8,0xa6,0x55,0x6b,0x74,0x43,0xc9,0xdc,0xfe,0x51,0x17,0x3f, 0xb3,0x4c,0xd4,0x76,0xaf,0x0,0xb6,0xf3,0x74,0x54,0xfe,0x22,0xf1,0x13,0x7d,0x63, 0x88,0xd,0x0,0x72,0xb6,0x5e,0x85,0x65,0x68,0x60,0x70,0x46,0xcf,0xc1,0x2b,0xfe, 0x51,0x7e,0xd9,0x96,0x9,0x75,0xe7,0x15,0xd8,0x7a,0x55,0xfc,0x9b,0x37,0xaa,0x7f, 0xf2,0x41,0x12,0x3f,0xd1,0x37,0x86,0x36,0x4,0x0,0x80,0xa9,0x7f,0xf9,0x7f,0x59, 0x66,0xe1,0x1d,0x48,0xcf,0x9e,0x3,0xd0,0xb0,0x56,0xa3,0xee,0x1,0x30,0xdb,0x44, 0xed,0x66,0x93,0xf8,0xb7,0xaa,0x7f,0xfa,0xc1,0xfb,0x6,0x7d,0x6e,0xc4,0xc9,0x62, 0x98,0x3d,0x0,0x30,0x60,0xd3,0xac,0x1e,0x37,0x5a,0x4d,0x34,0x8b,0x7f,0xd0,0x2d, 0x79,0x3b,0xaf,0xda,0xee,0x15,0x58,0x7a,0x55,0x2c,0xdb,0x2,0xb0,0x3c,0xe8,0xeb, 0x4d,0x9c,0x3c,0x86,0xda,0x0,0x0,0x2c,0x67,0xd5,0x1a,0x83,0xc2,0x58,0xc0,0xfb, 0x28,0xa1,0xed,0xbf,0xe,0x9e,0xdb,0xa8,0xcb,0x7f,0xb,0xc0,0x72,0xf5,0x4f,0x3f, 0x48,0xa3,0xdf,0x88,0xbe,0x33,0xdc,0x6,0x80,0x61,0x13,0x96,0x5,0xb3,0x5a,0xac, 0x3f,0x16,0xda,0x33,0x43,0x50,0x28,0x1b,0x85,0x57,0x6d,0xef,0x75,0x98,0xa5,0x7d, 0xd1,0x1d,0xd8,0x2,0xb0,0xac,0x92,0xf8,0x89,0x1,0x31,0xd4,0x6,0x40,0xfd,0xb3, 0xef,0xbe,0x6,0x60,0xdb,0xaa,0x36,0x6e,0xf1,0x2c,0xf6,0xfd,0x8f,0x92,0x7,0xa0, 0xed,0xbf,0xe,0xab,0xec,0x79,0xe4,0x74,0x1e,0xc0,0x8a,0xfa,0xa7,0xdf,0x4d,0xe2, 0x27,0x6,0xc6,0x50,0x1b,0x0,0xe,0xdb,0xb4,0x6a,0x5,0x4f,0xc,0xd,0xdf,0xfb, 0xb0,0xbf,0x8c,0xc2,0x4d,0x58,0xe5,0x3d,0xb1,0x34,0xf,0xb0,0x65,0xc7,0xc0,0x11, 0xc4,0xc0,0x18,0x7a,0x3,0xc0,0x9c,0xee,0x40,0xdb,0xa8,0x79,0x5c,0x7e,0x31,0xc, 0x18,0xe6,0x97,0x59,0xda,0x83,0x7e,0xb4,0x2d,0x16,0xe5,0x19,0xb0,0xac,0xfe,0xd9, 0x3f,0xa2,0x49,0x30,0xc4,0xc0,0x19,0xea,0x6e,0x40,0x97,0x89,0x7f,0xf1,0x7f,0x58, 0x66,0xe1,0x9d,0x48,0xce,0x9e,0x6f,0x3a,0xe9,0x61,0xe,0x3,0xac,0xd2,0x1e,0xf4, 0x83,0xd7,0xc5,0xa2,0x3c,0x80,0xe5,0xda,0x9f,0x93,0xf8,0x89,0xe1,0x60,0xe8,0x3d, 0x0,0x87,0x4d,0xd3,0x97,0x7,0x10,0xdf,0x87,0x11,0xb3,0x59,0xfc,0x0,0xb0,0x46, 0xe2,0x27,0x86,0x89,0x61,0x9d,0xd,0xe8,0x85,0xb1,0x9c,0xad,0x16,0x56,0x58,0x80, 0xe2,0x87,0xcd,0x10,0x30,0xbd,0x2,0xe3,0xf0,0x2a,0xbc,0xd3,0x7a,0xb1,0x5a,0xfb, 0xf3,0xef,0xa1,0x87,0x52,0x10,0x43,0xc5,0xc8,0x78,0x0,0xb0,0x2d,0xd8,0x6a,0x73, 0xc2,0x7c,0xd8,0xc4,0x6f,0x6b,0x15,0x68,0x37,0x9b,0x26,0xf7,0x90,0xf8,0x89,0xa1, 0x64,0x24,0xc,0x40,0xed,0x2f,0xbe,0xe7,0x1a,0x73,0xba,0x3,0xfd,0x79,0x36,0x60, 0xe0,0x79,0xbe,0xc6,0x48,0x45,0xad,0x2,0x7d,0xe7,0x45,0x30,0xdb,0x12,0xcb,0xd7, 0x6a,0x7f,0x41,0xe2,0x27,0x86,0x93,0x91,0x30,0x0,0x0,0x0,0xc6,0x36,0x2d,0xb5, 0x50,0x57,0xd5,0xb0,0xf5,0x4,0x30,0xa3,0x6,0xed,0xe6,0x8b,0x60,0x96,0x29,0x8e, 0xfe,0xd9,0xd0,0xfe,0xe2,0x7b,0x3e,0x3d,0xe8,0x4b,0x47,0x10,0x41,0x8c,0x8e,0x1, 0x0,0x72,0x4c,0xaf,0xc0,0x36,0x6a,0x43,0xe7,0x1,0xd8,0x96,0x9,0x7d,0xf7,0x55, 0x67,0x5a,0x6f,0x9d,0xd,0xed,0x2f,0xbf,0x97,0x66,0xf6,0x11,0x43,0xcd,0x48,0x74, 0x3,0xba,0x64,0xff,0xf9,0xff,0x66,0xa9,0x85,0x77,0x21,0x39,0x7b,0xcb,0xa0,0x4f, 0xa5,0xe,0xb3,0x4c,0x18,0x3b,0x2f,0x82,0xe9,0x15,0xb1,0x98,0xc4,0x4f,0x8c,0x4, 0xa3,0xe4,0x1,0x0,0x60,0x9b,0x76,0xf5,0x68,0xf0,0x4d,0xbe,0xeb,0xf6,0x5b,0x26, 0x8c,0x9d,0xaf,0x83,0xe9,0x65,0x71,0x45,0x8e,0xc4,0x4f,0x8c,0xa,0x23,0x65,0x0, 0x18,0x43,0xce,0x52,0xf3,0x83,0xd6,0x7d,0x63,0x88,0xef,0xee,0x2b,0xb0,0xb5,0x8a, 0x38,0xe1,0x67,0xb,0xc0,0xca,0xa0,0xaf,0x13,0x41,0x44,0x65,0xa4,0xc,0x0,0x42, 0xba,0x3,0xfb,0x8d,0xb1,0x7f,0x5,0x76,0xcd,0x73,0x1e,0x5b,0x0,0x96,0xb5,0xbf, 0xfc,0xbe,0xc1,0x9f,0x1c,0x41,0x44,0x64,0xa4,0xc,0x80,0xfe,0x85,0xef,0x73,0x66, 0x7,0x1e,0xe,0x74,0x5a,0xaf,0xb1,0x7f,0x5,0x76,0x79,0x4f,0x3c,0xb5,0x2d,0x0, 0xcb,0xfa,0x17,0x48,0xfc,0xc4,0x68,0x31,0x52,0x6,0x0,0x0,0xc0,0xd8,0x26,0x1b, 0x60,0x18,0x60,0xee,0x5f,0x81,0x5d,0xda,0x15,0x2d,0x42,0x1e,0xc0,0xa,0x89,0x9f, 0x18,0x45,0x46,0xcf,0x0,0x38,0xdd,0x81,0xcc,0xa8,0xf5,0xfd,0xc0,0x56,0xe1,0x3a, 0xec,0xf2,0xae,0x58,0x94,0x7,0x6f,0xf9,0x69,0x5a,0x2f,0x31,0x92,0x8c,0x54,0x37, 0xa0,0x4b,0x7a,0xe5,0x7f,0xb1,0xe4,0xc2,0xbb,0x91,0x9c,0xe9,0x5f,0x77,0xa0,0x55, 0xde,0x85,0x75,0x70,0x45,0x2c,0xca,0x3,0x58,0x36,0x36,0xff,0x31,0x4d,0xee,0x21, 0x46,0x96,0x51,0xf4,0x0,0x0,0x86,0x4d,0xbb,0x72,0xd8,0x37,0xb7,0xdf,0x2a,0xed, 0xc2,0xda,0xbf,0x22,0x16,0xe6,0xc1,0x48,0xfc,0xc4,0xe8,0x33,0x9a,0x6,0x0,0x2c, 0xc7,0x6a,0xf9,0xbe,0x1c,0xc9,0x2e,0xed,0xc0,0x3a,0xf8,0x6,0x7c,0x66,0x61,0xcd, 0xf8,0x22,0x89,0x9f,0x18,0x7d,0x46,0xd4,0x0,0x60,0x13,0xb6,0x9,0x5b,0xcd,0xf7, 0x34,0xdb,0x6f,0x6b,0x65,0x58,0x47,0x4d,0x73,0xfa,0x57,0x8d,0x2f,0xde,0x4f,0x93, 0x7b,0x88,0xb1,0x60,0x24,0xd,0x80,0xf1,0xc5,0xfb,0xaf,0x1,0xd8,0xb6,0xab,0x87, 0x3d,0x3b,0x6,0xd3,0xcb,0xb0,0x76,0x2e,0x37,0x4d,0xeb,0x25,0xf1,0x13,0xe3,0xc4, 0x48,0x1a,0x0,0x0,0x0,0x63,0x39,0xa6,0x1e,0xf7,0x24,0xe6,0xb7,0xb5,0x32,0xac, 0x9b,0x5b,0x80,0x77,0x66,0xdf,0x1a,0x89,0x9f,0x18,0x37,0x46,0xd6,0x0,0x30,0x60, 0xb3,0x17,0xdd,0x81,0xcc,0xa8,0xc1,0xda,0xd9,0xf2,0xcf,0xe9,0xdf,0x30,0xbe,0xb4, 0x4c,0xd3,0x7a,0x89,0xb1,0x63,0x34,0x6e,0x9,0x26,0x27,0x7,0x0,0xac,0x96,0x7, 0x52,0xb7,0x76,0x67,0x8f,0xb6,0x9,0x6b,0xaf,0xf9,0x51,0xdd,0xe6,0x97,0x96,0x69, 0x72,0xf,0x31,0x96,0x8c,0xac,0x7,0x60,0x7e,0x69,0xb9,0x0,0xc6,0x72,0x76,0xe5, 0xa0,0x2b,0xfb,0x63,0x96,0xc9,0xdd,0x7e,0xad,0x2c,0xba,0xfd,0x24,0x7e,0x62,0xac, 0x19,0x59,0x3,0xe0,0xb0,0x89,0x2e,0x74,0x7,0x32,0xcb,0x84,0xbd,0xb3,0x5,0xe8, 0x65,0xb1,0x38,0x67,0x7e,0xf9,0x43,0x24,0x7e,0x62,0xac,0x19,0xe5,0x10,0x0,0x0, 0x72,0xcc,0x32,0x61,0x57,0xf3,0x50,0x26,0xe7,0xdb,0xde,0x89,0xbd,0xfb,0x22,0x98, 0xe6,0x11,0xff,0x96,0xa2,0xd0,0xb4,0x5e,0x62,0xfc,0x19,0x69,0xf,0xc0,0xfc,0xf2, 0x87,0x2e,0x3,0xd8,0x66,0xd5,0x83,0xf6,0x33,0xfe,0xfb,0xaf,0xc2,0x37,0xa8,0x68, 0xb,0xc0,0xb2,0xf9,0xe5,0xf,0xd1,0xe4,0x1e,0x62,0xec,0x19,0x69,0x3,0xc0,0x61, 0x39,0x56,0x3b,0x6e,0x4b,0xfd,0xf6,0xfe,0x2b,0x60,0xe5,0x9b,0x62,0xe1,0x16,0x80, 0x65,0xeb,0x2b,0x24,0x7e,0xe2,0x64,0x30,0x6,0x6,0x0,0x9b,0xd0,0xcb,0x60,0xa6, 0x1a,0xaf,0xe5,0x3f,0x78,0x5,0x28,0xef,0x88,0xfb,0xc9,0x3,0x58,0x21,0xf1,0x13, 0x27,0x89,0x71,0x30,0x0,0x39,0x30,0x80,0xa9,0xf9,0xc8,0x15,0x58,0xe1,0x4d,0xa0, 0xb4,0xe3,0x9d,0xdc,0x3,0x2c,0x5b,0x5f,0xf9,0x7e,0x9a,0xd6,0x4b,0x9c,0x28,0x46, 0xde,0x0,0x58,0x5f,0xf9,0xfe,0x2,0x3,0x72,0xac,0x7a,0x10,0xed,0x46,0x9e,0xa5, 0x9b,0x60,0x47,0xaf,0x89,0x45,0x79,0x70,0xf1,0xd3,0xe4,0x1e,0xe2,0xc4,0x31,0xf2, 0x6,0x80,0xc3,0x36,0x51,0x8b,0x30,0x2c,0xb8,0x7c,0x13,0xec,0xe0,0x15,0xb1,0x24, 0xf,0x60,0xd9,0xfa,0x2b,0x12,0x3f,0x71,0x32,0x19,0xf,0x3,0xc0,0x90,0x83,0x65, 0x82,0xa9,0xc7,0xc1,0x9b,0x94,0x6e,0x82,0xed,0xbf,0xe2,0xb7,0xa,0x6b,0x36,0x89, 0x9f,0x38,0xc1,0x8c,0x85,0x1,0xb0,0x9f,0xfe,0x81,0xcb,0x0,0xb6,0x51,0xdd,0x97, 0xb7,0xfc,0x5a,0x9,0x38,0xfa,0x7,0x7f,0xb5,0x55,0xfb,0xe9,0x1f,0xa0,0xc9,0x3d, 0xc4,0x89,0x66,0x2c,0xc,0x0,0x87,0xe5,0x20,0xeb,0xe,0xd4,0x4a,0xc0,0xce,0xd7, 0x0,0xdb,0x10,0x57,0x90,0xf8,0x9,0x2,0xe3,0x64,0x0,0x18,0x36,0xa1,0x95,0xc1, 0xc,0xd5,0xdb,0xf2,0xdf,0xfc,0x9a,0x33,0xad,0x17,0xd,0xb7,0xff,0xe9,0xf,0x93, 0xf8,0x9,0x2,0xe3,0x64,0x0,0x80,0x1c,0x3,0x80,0x9a,0x93,0x7,0x30,0x54,0x60, 0xe7,0x6b,0x60,0xb6,0xe9,0x99,0xd6,0x6b,0x3f,0xf3,0x61,0x9a,0xd6,0x4b,0x10,0xe, 0x63,0x63,0x0,0xec,0x67,0x3e,0x5c,0x0,0x90,0x63,0xd5,0x7d,0x30,0xcb,0x0,0xdb, 0x7b,0xa1,0xe9,0x69,0xbd,0xec,0x99,0xf,0xd3,0xe4,0x1e,0x82,0x10,0x18,0x1b,0x3, 0xc0,0xe1,0xdd,0x81,0xd8,0xf9,0x3b,0x28,0x7a,0x9,0x82,0xdf,0x4f,0xe2,0x27,0x8, 0x9,0xa3,0x3e,0x1b,0xd0,0xb,0x43,0x4e,0xb1,0x4c,0xc0,0xf2,0x4e,0xeb,0x65,0xcf, 0xfe,0x20,0x89,0x9f,0x20,0x24,0x8c,0x95,0x7,0xc0,0x9e,0xfd,0x41,0xde,0x1d,0xd8, 0x60,0xb,0xf4,0xb4,0x5e,0x82,0x8,0x64,0xac,0xc,0x0,0x0,0x30,0x27,0x19,0xc8, 0x80,0x2d,0x6,0x2c,0xb3,0x67,0x7f,0x90,0x26,0xf7,0x10,0x44,0x0,0xe3,0x15,0x2, 0x0,0x0,0x63,0x9b,0x0,0x96,0x0,0x2c,0xe3,0xb9,0x7f,0x42,0xe2,0x27,0x88,0x10, 0xc6,0xce,0x3,0x0,0xbf,0x59,0x28,0x89,0x9f,0x20,0x8,0x82,0x20,0x8,0x82,0x20, 0x8,0x82,0x20,0x8,0x82,0x20,0x8,0x82,0x20,0x8,0x82,0x38,0xc1,0xfc,0x7f,0x1a, 0x73,0xe6,0x25,0x59,0x4a,0x8f,0xe9,0x0,0x0,0x0,0x25,0x74,0x45,0x58,0x74,0x64, 0x61,0x74,0x65,0x3a,0x63,0x72,0x65,0x61,0x74,0x65,0x0,0x32,0x30,0x31,0x35,0x2d, 0x30,0x34,0x2d,0x32,0x32,0x54,0x31,0x30,0x3a,0x34,0x39,0x3a,0x34,0x35,0x2d,0x30, 0x35,0x3a,0x30,0x30,0x6d,0x32,0x9b,0x5,0x0,0x0,0x0,0x25,0x74,0x45,0x58,0x74, 0x64,0x61,0x74,0x65,0x3a,0x6d,0x6f,0x64,0x69,0x66,0x79,0x0,0x32,0x30,0x31,0x33, 0x2d,0x30,0x34,0x2d,0x33,0x30,0x54,0x31,0x37,0x3a,0x33,0x36,0x3a,0x35,0x37,0x2d, 0x30,0x35,0x3a,0x30,0x30,0x90,0xee,0xce,0xf8,0x0,0x0,0x0,0x0,0x49,0x45,0x4e, 0x44,0xae,0x42,0x60,0x82, // C:/SNIR_PROJET/Superviseur/Superviseur/QSuperviseur/img/logo.png 0x0,0x0,0xa6,0xac, 0x89, 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, 0x0,0x1,0x95,0x0,0x0,0x0,0xc3,0x8,0x6,0x0,0x0,0x0,0x4a,0xfb,0x8c,0x65, 0x0,0x0,0x0,0x19,0x74,0x45,0x58,0x74,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65, 0x0,0x41,0x64,0x6f,0x62,0x65,0x20,0x49,0x6d,0x61,0x67,0x65,0x52,0x65,0x61,0x64, 0x79,0x71,0xc9,0x65,0x3c,0x0,0x0,0x3,0x22,0x69,0x54,0x58,0x74,0x58,0x4d,0x4c, 0x3a,0x63,0x6f,0x6d,0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e,0x78,0x6d,0x70,0x0,0x0, 0x0,0x0,0x0,0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b,0x65,0x74,0x20,0x62,0x65,0x67, 0x69,0x6e,0x3d,0x22,0xef,0xbb,0xbf,0x22,0x20,0x69,0x64,0x3d,0x22,0x57,0x35,0x4d, 0x30,0x4d,0x70,0x43,0x65,0x68,0x69,0x48,0x7a,0x72,0x65,0x53,0x7a,0x4e,0x54,0x63, 0x7a,0x6b,0x63,0x39,0x64,0x22,0x3f,0x3e,0x20,0x3c,0x78,0x3a,0x78,0x6d,0x70,0x6d, 0x65,0x74,0x61,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x3d,0x22,0x61,0x64,0x6f, 0x62,0x65,0x3a,0x6e,0x73,0x3a,0x6d,0x65,0x74,0x61,0x2f,0x22,0x20,0x78,0x3a,0x78, 0x6d,0x70,0x74,0x6b,0x3d,0x22,0x41,0x64,0x6f,0x62,0x65,0x20,0x58,0x4d,0x50,0x20, 0x43,0x6f,0x72,0x65,0x20,0x35,0x2e,0x30,0x2d,0x63,0x30,0x36,0x31,0x20,0x36,0x34, 0x2e,0x31,0x34,0x30,0x39,0x34,0x39,0x2c,0x20,0x32,0x30,0x31,0x30,0x2f,0x31,0x32, 0x2f,0x30,0x37,0x2d,0x31,0x30,0x3a,0x35,0x37,0x3a,0x30,0x31,0x20,0x20,0x20,0x20, 0x20,0x20,0x20,0x20,0x22,0x3e,0x20,0x3c,0x72,0x64,0x66,0x3a,0x52,0x44,0x46,0x20, 0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x72,0x64,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a, 0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,0x2f,0x31,0x39,0x39, 0x39,0x2f,0x30,0x32,0x2f,0x32,0x32,0x2d,0x72,0x64,0x66,0x2d,0x73,0x79,0x6e,0x74, 0x61,0x78,0x2d,0x6e,0x73,0x23,0x22,0x3e,0x20,0x3c,0x72,0x64,0x66,0x3a,0x44,0x65, 0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x72,0x64,0x66,0x3a,0x61,0x62, 0x6f,0x75,0x74,0x3d,0x22,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x6d,0x70, 0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x6e,0x73,0x2e,0x61,0x64,0x6f,0x62, 0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x78,0x61,0x70,0x2f,0x31,0x2e,0x30,0x2f,0x22,0x20, 0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x6d,0x70,0x4d,0x4d,0x3d,0x22,0x68,0x74,0x74, 0x70,0x3a,0x2f,0x2f,0x6e,0x73,0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d, 0x2f,0x78,0x61,0x70,0x2f,0x31,0x2e,0x30,0x2f,0x6d,0x6d,0x2f,0x22,0x20,0x78,0x6d, 0x6c,0x6e,0x73,0x3a,0x73,0x74,0x52,0x65,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a, 0x2f,0x2f,0x6e,0x73,0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x78, 0x61,0x70,0x2f,0x31,0x2e,0x30,0x2f,0x73,0x54,0x79,0x70,0x65,0x2f,0x52,0x65,0x73, 0x6f,0x75,0x72,0x63,0x65,0x52,0x65,0x66,0x23,0x22,0x20,0x78,0x6d,0x70,0x3a,0x43, 0x72,0x65,0x61,0x74,0x6f,0x72,0x54,0x6f,0x6f,0x6c,0x3d,0x22,0x41,0x64,0x6f,0x62, 0x65,0x20,0x50,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70,0x20,0x43,0x53,0x35,0x2e, 0x31,0x20,0x57,0x69,0x6e,0x64,0x6f,0x77,0x73,0x22,0x20,0x78,0x6d,0x70,0x4d,0x4d, 0x3a,0x49,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70, 0x2e,0x69,0x69,0x64,0x3a,0x42,0x46,0x42,0x37,0x30,0x45,0x43,0x33,0x35,0x46,0x45, 0x39,0x31,0x31,0x45,0x32,0x42,0x45,0x38,0x38,0x38,0x44,0x39,0x38,0x41,0x33,0x33, 0x38,0x36,0x46,0x43,0x45,0x22,0x20,0x78,0x6d,0x70,0x4d,0x4d,0x3a,0x44,0x6f,0x63, 0x75,0x6d,0x65,0x6e,0x74,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x64,0x69,0x64, 0x3a,0x42,0x46,0x42,0x37,0x30,0x45,0x43,0x34,0x35,0x46,0x45,0x39,0x31,0x31,0x45, 0x32,0x42,0x45,0x38,0x38,0x38,0x44,0x39,0x38,0x41,0x33,0x33,0x38,0x36,0x46,0x43, 0x45,0x22,0x3e,0x20,0x3c,0x78,0x6d,0x70,0x4d,0x4d,0x3a,0x44,0x65,0x72,0x69,0x76, 0x65,0x64,0x46,0x72,0x6f,0x6d,0x20,0x73,0x74,0x52,0x65,0x66,0x3a,0x69,0x6e,0x73, 0x74,0x61,0x6e,0x63,0x65,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x69,0x69,0x64, 0x3a,0x42,0x46,0x42,0x37,0x30,0x45,0x43,0x31,0x35,0x46,0x45,0x39,0x31,0x31,0x45, 0x32,0x42,0x45,0x38,0x38,0x38,0x44,0x39,0x38,0x41,0x33,0x33,0x38,0x36,0x46,0x43, 0x45,0x22,0x20,0x73,0x74,0x52,0x65,0x66,0x3a,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e, 0x74,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x64,0x69,0x64,0x3a,0x42,0x46,0x42, 0x37,0x30,0x45,0x43,0x32,0x35,0x46,0x45,0x39,0x31,0x31,0x45,0x32,0x42,0x45,0x38, 0x38,0x38,0x44,0x39,0x38,0x41,0x33,0x33,0x38,0x36,0x46,0x43,0x45,0x22,0x2f,0x3e, 0x20,0x3c,0x2f,0x72,0x64,0x66,0x3a,0x44,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69, 0x6f,0x6e,0x3e,0x20,0x3c,0x2f,0x72,0x64,0x66,0x3a,0x52,0x44,0x46,0x3e,0x20,0x3c, 0x2f,0x78,0x3a,0x78,0x6d,0x70,0x6d,0x65,0x74,0x61,0x3e,0x20,0x3c,0x3f,0x78,0x70, 0x61,0x63,0x6b,0x65,0x74,0x20,0x65,0x6e,0x64,0x3d,0x22,0x72,0x22,0x3f,0x3e,0xcf, 0x2f,0x70,0x35,0x0,0x0,0xa3,0x20,0x49,0x44,0x41,0x54,0x78,0xda,0xec,0xbd,0x7, 0x80,0x24,0x57,0x75,0x2e,0xfc,0x55,0x55,0xe7,0x34,0xdd,0x33,0x3d,0x39,0x87,0xcd, 0x59,0xbb,0x92,0x56,0x8,0x25,0x24,0x24,0x21,0x90,0x10,0x42,0x2,0x44,0x7c,0xc2, 0xf0,0x30,0x18,0xfc,0x6c,0x63,0x3,0xc6,0x7e,0xfe,0x1,0x9b,0x67,0xc0,0x3c,0x6c, 0x82,0xc9,0xe2,0x11,0x44,0x36,0x49,0x6,0x94,0x40,0xd2,0x2a,0xef,0xae,0x76,0xb5, 0x39,0xcc,0x4e,0xce,0x3d,0xd3,0x39,0xc7,0xaa,0xff,0xdc,0x5b,0xd5,0xd5,0x3d,0xb3, 0xb3,0x61,0xa4,0x5d,0x21,0xed,0xd4,0x91,0x6a,0x67,0xa6,0xbb,0xea,0x56,0xd5,0xed, 0xea,0xf3,0xdd,0xef,0x44,0x41,0x21,0x81,0x21,0x86,0x18,0x62,0x88,0x21,0x86,0x3c, 0x7f,0x79,0x88,0xb6,0xeb,0xd9,0x2f,0x82,0x1,0x2a,0x86,0x18,0x62,0x88,0x21,0x86, 0xbc,0x0,0xc9,0xd3,0xb6,0x8e,0xb6,0x1,0xf6,0x87,0x68,0xcc,0x87,0x21,0x86,0x18, 0x62,0x88,0x21,0x2f,0x40,0xbe,0x50,0x6,0x14,0x83,0xa9,0x18,0x62,0x88,0x21,0x86, 0x18,0xf2,0x42,0x84,0x81,0xc9,0x46,0xda,0x32,0xe5,0x17,0xc,0xa6,0x62,0x88,0x21, 0x86,0x18,0x62,0xc8,0xf3,0x95,0xbf,0xaa,0x6,0x14,0x83,0xa9,0x18,0x62,0x88,0x21, 0x86,0x18,0xf2,0x7c,0xe5,0x77,0xb4,0xbd,0x6e,0xe1,0x8b,0x6,0xa8,0x18,0x62,0x88, 0x21,0x86,0x18,0xb2,0x54,0x49,0xd2,0xb6,0x9a,0xb6,0xc9,0x85,0x6f,0x18,0xe6,0x2f, 0x43,0xc,0x31,0xc4,0x10,0x43,0x96,0x2a,0x9f,0x5a,0xc,0x50,0xc,0xa6,0x62,0x88, 0x21,0x86,0x18,0x62,0xc8,0x52,0x65,0x1f,0x6d,0xdb,0x68,0x2b,0x19,0xa0,0x62,0x88, 0x21,0x86,0x18,0x62,0xc8,0xb,0x91,0x92,0x6,0x28,0xfb,0x4e,0xb5,0x83,0x61,0xfe, 0x32,0xc4,0x10,0x43,0xc,0x31,0xe4,0x6c,0xe5,0x8b,0xa7,0x3,0x14,0x83,0xa9,0x18, 0x62,0x88,0x21,0x86,0x18,0x72,0xb6,0x32,0xc,0x35,0x27,0x25,0x79,0xba,0x9d,0xc, 0xa6,0x62,0x88,0x21,0x86,0x18,0x62,0xc8,0xd9,0xc8,0x87,0xce,0x4,0x28,0x6,0x53, 0x31,0xc4,0x10,0x43,0xc,0x31,0xe4,0x6c,0xe4,0x47,0xb4,0xbd,0xed,0x6c,0x76,0x34, 0x40,0xc5,0x10,0x43,0xc,0x31,0xc4,0x90,0xd3,0x49,0x18,0x6a,0x4e,0xca,0xdc,0xd9, 0xec,0x6c,0x98,0xbf,0xc,0x31,0xc4,0x10,0x43,0xc,0x39,0x9d,0x7c,0xe4,0x6c,0x1, 0xc5,0x60,0x2a,0x86,0x18,0x62,0x88,0x21,0x86,0x9c,0x4e,0x9e,0xa0,0xed,0x8a,0xa5, 0x1c,0x60,0x80,0x8a,0x21,0x86,0x18,0x62,0x88,0x21,0x8b,0xc9,0xbc,0x3e,0x29,0x67, 0x2b,0x86,0xf9,0xcb,0x10,0x43,0xc,0x31,0xc4,0x90,0xc5,0xe4,0x53,0x4b,0x5,0x14, 0x83,0xa9,0x18,0x62,0x88,0x21,0x86,0x18,0xb2,0x98,0x1c,0xa1,0x6d,0x8b,0xc6,0x56, 0xc,0x50,0x31,0xc4,0x10,0x43,0xc,0x31,0xe4,0x79,0xb,0x2b,0xc5,0xf2,0xa,0xda, 0x76,0x3d,0x9f,0x83,0xd,0xf3,0x97,0x21,0x86,0x18,0x62,0x88,0x21,0xd5,0xf2,0x99, 0xe7,0xb,0x28,0x6,0x53,0x31,0xc4,0x10,0x43,0xc,0x31,0xa4,0x5a,0x9e,0xb7,0xd9, 0xcb,0x0,0x15,0x43,0xc,0x31,0xc4,0x10,0x43,0xaa,0xe5,0x5,0x99,0xbd,0xca,0x62, 0x98,0xbf,0xce,0x9b,0x28,0xf3,0x7e,0x57,0xff,0x3b,0x57,0xe3,0x2a,0x55,0xa3,0x2, 0xca,0x39,0xbf,0x6e,0x36,0xae,0xcc,0x7f,0x3d,0xf3,0xf8,0x6c,0x27,0xa5,0xea,0xb8, 0x73,0x7f,0x45,0x86,0x18,0x62,0xc8,0x8b,0x22,0x2f,0xc8,0xec,0x65,0x30,0x95,0xf3, 0xe,0x29,0xa,0x4d,0xae,0x0,0x45,0xe0,0xbf,0x9d,0x53,0xf4,0x66,0x1f,0x98,0xc0, 0x7f,0xd1,0x7e,0x13,0xaa,0x5e,0x3b,0x17,0x80,0xa5,0x88,0x74,0xdd,0xfa,0x3,0xa2, 0xd,0x7c,0xf2,0xe8,0xec,0xd1,0x11,0xd8,0xfe,0x82,0x40,0x10,0x44,0xf7,0xa8,0xc8, 0xda,0xf5,0x8,0xc6,0x3,0x60,0x88,0x21,0x2f,0x2f,0x79,0xc1,0x66,0x2f,0x3,0x54, 0xce,0x3b,0xaa,0xa8,0xca,0x56,0x5,0x17,0x45,0x53,0xb4,0xe7,0x42,0xd9,0x2a,0xd5, 0xc3,0x57,0x7f,0x94,0xe7,0x97,0x74,0x9,0x8b,0x0,0xca,0x22,0xe0,0xa1,0x9c,0xdf, 0x2b,0x31,0xc4,0x10,0x43,0xce,0xbd,0x30,0xb3,0xd7,0xa5,0xb4,0xed,0x39,0x17,0x83, 0x99,0x8c,0xf9,0x3c,0x4f,0xc2,0xd9,0x3,0x5b,0xbf,0xb3,0x95,0xfb,0xb9,0xb7,0x32, 0x96,0x15,0xba,0x4c,0x5a,0x5c,0x14,0xce,0x8d,0x3a,0x97,0x65,0x19,0xd9,0x40,0x12, 0xc5,0x78,0x16,0xa2,0x28,0xa2,0x44,0xc4,0xc3,0xda,0x60,0x87,0xcd,0xeb,0x38,0x69, 0x6c,0x76,0xfe,0x42,0x3a,0x87,0xdc,0x4c,0xa,0x72,0x51,0xbb,0x4f,0x8b,0x8,0x7b, 0xb3,0x1b,0x26,0xab,0xf1,0x58,0x19,0x62,0xc8,0xcb,0x48,0x3e,0x73,0xae,0x0,0xc5, 0x60,0x2a,0x2f,0x26,0x71,0xd1,0xfe,0x15,0xce,0xc5,0x3a,0xfe,0x14,0xf8,0xf1,0x42, 0x61,0x25,0x1f,0xc9,0x60,0xdf,0x27,0x1e,0xc4,0xc4,0x3,0xfd,0xb0,0x5a,0x6d,0x28, 0x16,0xf2,0x58,0xfb,0xb1,0xab,0xd1,0xf7,0xf6,0x8b,0x8,0x17,0x4f,0x1e,0x39,0xf0, 0xcc,0x30,0xf6,0xff,0xfd,0x3,0xc8,0xce,0x65,0xe9,0xc4,0x32,0x9c,0x6d,0x3e,0x6c, 0xfd,0xca,0xcd,0xf0,0xf6,0xfa,0x8d,0xf,0xdc,0x10,0x43,0x5e,0x1e,0x72,0xce,0xcc, 0x5e,0x6,0x53,0x39,0x5f,0xe0,0xa1,0x61,0x74,0x3e,0x9a,0x46,0x7a,0x34,0x86,0xcc, 0x6c,0x12,0xd1,0x13,0x41,0x58,0x7c,0x36,0x74,0xbd,0x61,0x3d,0x4c,0x76,0xcb,0x92, 0x60,0x40,0x41,0xc5,0xaf,0xa1,0x28,0x4,0x49,0x82,0x6a,0xf7,0x9a,0x7c,0x64,0x10, 0xb1,0x3,0x53,0xf0,0xac,0xa8,0x87,0xa3,0xd9,0x3,0x6b,0x93,0x13,0xd6,0x5a,0x7, 0xb1,0x4,0x73,0xd5,0xb1,0x4b,0x3,0x31,0x99,0xa8,0x49,0xa2,0x3f,0x8c,0xd0,0xf1, 0x31,0x58,0x60,0x47,0x1,0xc4,0x44,0x2,0x89,0x53,0x5e,0x67,0x21,0x96,0xc7,0xdc, 0xfe,0x49,0x64,0x23,0x49,0xfe,0x7e,0x3e,0x98,0x86,0x9c,0xc9,0x1b,0xf,0x81,0x21, 0x86,0xbc,0x3c,0x84,0x99,0xbd,0xde,0x79,0x2e,0x1,0xc5,0x0,0x95,0xf3,0x20,0x65, 0xb3,0xd4,0xf8,0x6f,0x8e,0x60,0xef,0x67,0x1f,0x82,0x32,0x5b,0x40,0x22,0x1c,0x42, 0xc3,0xe6,0x6e,0xb4,0x5c,0xd5,0xb,0x53,0xab,0x45,0x53,0xf6,0xd0,0xfe,0x65,0xa0, 0x71,0xa,0xe6,0xb1,0xc0,0x6f,0x21,0x68,0xca,0x5d,0xce,0xe5,0x71,0xf4,0xb3,0x3b, 0x30,0xfe,0xc0,0x51,0xd8,0x3c,0x36,0x58,0x9b,0x5d,0x68,0xb9,0x6e,0x5,0xb6,0x7c, 0xfa,0x6,0x1d,0x54,0x74,0x2,0x2a,0x2c,0xed,0xda,0x4d,0x76,0x1b,0x1,0x8a,0x15, 0x66,0xd1,0x4a,0xe4,0x43,0x80,0x68,0x91,0x4e,0x39,0x88,0x68,0x92,0x60,0xa6,0xfd, 0xe5,0x48,0x81,0x87,0x22,0x48,0x74,0x2d,0x82,0x64,0x4,0x14,0x1a,0x62,0xc8,0xcb, 0x44,0xce,0xa9,0xd9,0x4b,0xd7,0xb,0xc6,0xbc,0x9e,0x63,0xa6,0x52,0x5e,0x2,0x64, 0x4a,0x88,0x1e,0x9b,0x44,0x2e,0x9c,0x26,0xe4,0xb6,0x22,0x7e,0x34,0x84,0xf0,0xe1, 0x99,0xca,0x5e,0x5a,0x50,0x95,0xa0,0xc8,0x3c,0x42,0xec,0x14,0x5a,0x9e,0x83,0x83, 0xc2,0x80,0x85,0x47,0x92,0xa9,0x2f,0x7,0x1e,0x1f,0x46,0x68,0xe7,0x38,0x7d,0x78, 0x2,0xa,0xf1,0x1c,0xc2,0xc7,0xa7,0x9,0x68,0x64,0x98,0x9d,0xb6,0x2a,0x40,0x11, 0x16,0x75,0xa4,0x9f,0xfd,0x1d,0x28,0x4b,0xd8,0x77,0x9,0x87,0x18,0x62,0x88,0x21, 0x2f,0x5,0x61,0x66,0xaf,0x4f,0x9d,0x8f,0x81,0xd,0x50,0x39,0xd7,0x4c,0x45,0xfb, 0xd9,0xf0,0x8a,0xe,0x34,0xae,0xec,0x22,0x7e,0x59,0x82,0x45,0xb4,0x23,0x9b,0x4b, 0x21,0xf0,0xe8,0x20,0x14,0xee,0xd4,0x56,0x43,0x76,0x79,0x2e,0x8,0x29,0x7e,0x41, 0x11,0x4e,0x39,0x16,0x3,0x6,0x41,0xcb,0xff,0x28,0x9b,0xb2,0x26,0x7e,0x7b,0x2, 0xd9,0x58,0x92,0xc6,0xb5,0xd0,0x48,0x22,0x6a,0x5a,0x1a,0xd0,0xf7,0xae,0x6d,0x9c, 0x39,0x70,0xbc,0x12,0x4,0x23,0x4,0xcb,0x10,0x43,0xc,0x39,0x95,0x9c,0x17,0xb3, 0x97,0x1,0x2a,0xe7,0x59,0xdc,0x7d,0x7e,0xd4,0x5f,0xd9,0x45,0xb0,0x51,0x22,0xe6, 0x50,0x22,0xb6,0x62,0xc2,0xcc,0x83,0x83,0xc8,0x4,0xa2,0xfa,0xaa,0x5e,0xd0,0xc, 0x5a,0xa7,0x4,0x0,0xfe,0xa6,0x9a,0xfb,0x51,0xde,0x25,0x31,0x16,0xc1,0xf4,0x43, 0x27,0x8,0x88,0x24,0x1e,0x57,0x2c,0x6b,0x0,0x56,0x7f,0x59,0x87,0x7a,0x88,0xa0, 0x7e,0xa8,0xc2,0x39,0x4c,0xb7,0x34,0xc4,0x10,0x43,0x2e,0x28,0x39,0x2f,0x66,0x2f, 0x3,0x54,0xce,0xb3,0x98,0x9c,0x16,0x34,0x5e,0xb3,0x2,0x76,0x87,0x8b,0x74,0x7f, 0x11,0x56,0x62,0x2b,0xe1,0xbd,0x53,0x8,0x1d,0x98,0xd3,0x69,0x48,0xd9,0xb3,0x72, 0x4a,0xbb,0x91,0x96,0xd4,0xa8,0xba,0x52,0x54,0x58,0x99,0x79,0x64,0x4,0xf1,0xb1, 0x30,0x24,0x7a,0xb3,0x44,0x8,0x62,0xf2,0x58,0xd0,0x7e,0xfb,0x5a,0xee,0xcb,0x28, 0xef,0xab,0x26,0xb8,0xeb,0x90,0x65,0x88,0x21,0x86,0x18,0x52,0x96,0x83,0x38,0x4f, 0x66,0x2f,0x3,0x54,0xce,0xab,0xa8,0xca,0xbc,0xf1,0xb2,0x4e,0x78,0x37,0x37,0xa1, 0xc0,0xd8,0xa6,0xa0,0x6a,0xfb,0x91,0x9f,0xec,0x87,0x22,0x2b,0x3a,0xf3,0xe0,0xaa, 0x5f,0x39,0xf5,0x28,0x82,0xe,0x3c,0x6a,0x1e,0xc9,0xe8,0xcf,0x9e,0x83,0x9c,0xcc, 0x43,0x10,0x4d,0x34,0x6a,0x11,0xfe,0x2d,0xad,0xdc,0x49,0xcf,0xc7,0xe2,0x81,0x61, 0x25,0x35,0x42,0x8c,0xff,0x2f,0xe2,0xa5,0xe9,0xe8,0x50,0x96,0xf0,0xfe,0x59,0xee, 0x7b,0xd6,0x43,0x2e,0x1c,0x5b,0x39,0xcd,0x18,0xca,0x8b,0x70,0xaf,0x86,0x18,0xf2, 0xa2,0x49,0x86,0xb6,0xb7,0xe0,0x3c,0x99,0xbd,0xc,0x50,0x39,0xaf,0xa2,0x42,0x86, 0xb3,0xdb,0x8b,0x26,0x62,0x2b,0xcc,0xa1,0x2e,0x97,0x48,0xd9,0x33,0x13,0xd8,0x43, 0x3,0x48,0x4d,0x45,0x34,0x56,0xa1,0x39,0xec,0x85,0x53,0xf9,0x54,0x94,0x79,0xd1, 0xbc,0x89,0xc1,0x10,0x6d,0xc1,0x8a,0x22,0x94,0x64,0x34,0x5c,0xd9,0xd,0x5b,0x9d, 0x1b,0x3a,0xaa,0x10,0x87,0xe1,0x90,0x25,0x2e,0xb4,0xaa,0x69,0xf5,0xbc,0x50,0x15, 0x19,0xf6,0xa2,0x43,0xc9,0x62,0xe7,0x57,0x4e,0x52,0xf0,0xfc,0x3f,0xa5,0xf2,0x9e, 0x32,0xff,0x9f,0xca,0xfd,0xf0,0xb2,0x30,0x4a,0x65,0x3c,0x45,0xa9,0xba,0xd7,0x32, 0x6b,0xab,0xae,0xbb,0xa6,0xcc,0xfb,0x4f,0xf3,0x5a,0x55,0x26,0x58,0x28,0x1f,0x29, 0xeb,0x8c,0xef,0x54,0x73,0xa5,0x28,0xd5,0xd7,0xca,0x76,0x94,0x2b,0xe6,0x46,0xe5, 0xe4,0x67,0x61,0xde,0xfd,0x96,0xf7,0x35,0x52,0xc4,0xc,0x79,0x71,0xe5,0x23,0x50, 0x1d,0xf4,0xe7,0x55,0xc,0x50,0x39,0x6f,0xa,0x54,0x75,0xac,0x37,0x5e,0xdd,0xd, 0x7b,0x9d,0x8b,0xd4,0x94,0xc,0x41,0x12,0x90,0x9f,0x49,0x61,0xe2,0x77,0x47,0xf9, 0x7b,0x9c,0xa5,0x9c,0x2e,0x42,0x4b,0xd1,0x94,0x9c,0xe6,0xc8,0x9f,0xb8,0xef,0x38, 0xd2,0xa3,0x71,0x48,0x82,0x89,0xf4,0x52,0x11,0x56,0x8f,0x1b,0xd,0x97,0x77,0xe9, 0xa,0x5b,0x59,0x54,0x8d,0x55,0x73,0x22,0xf5,0xe3,0x16,0xfe,0x24,0xb5,0xb9,0xca, 0xec,0x4c,0xd,0x93,0x66,0x80,0x50,0x8e,0x52,0x63,0xca,0x55,0xd1,0x9d,0x4b,0xea, 0x75,0xa,0x42,0xf5,0xdf,0xd5,0xf7,0x52,0xb9,0x4b,0xf5,0x3e,0x44,0xb5,0xf6,0x98, 0xa0,0x8d,0x21,0x6b,0xf9,0x3c,0xda,0xee,0x6a,0xa0,0x83,0xc0,0xc7,0x53,0xd3,0x7d, 0x44,0x7d,0xee,0x17,0x7,0xf2,0xf2,0x98,0xda,0xb1,0xa7,0x98,0x2a,0x7e,0xf,0x50, 0x73,0x88,0xca,0x9f,0xa3,0x50,0x5,0x4e,0xa7,0x5d,0x70,0x8,0xa2,0x76,0x7d,0x6, 0xa8,0x18,0xf2,0xa2,0xc9,0xfd,0xb4,0x7d,0xe5,0xc5,0x38,0x91,0x91,0xa7,0x72,0x5e, 0xb9,0xa,0xd0,0x70,0x71,0x1b,0x6a,0xb7,0xb5,0x63,0xe2,0x81,0xa3,0x90,0x14,0xb, 0x64,0x52,0xa6,0x53,0xf7,0x9e,0xc0,0xaa,0xf7,0xbd,0x42,0x8b,0xfc,0xaa,0x14,0x85, 0x3c,0x49,0xd,0x57,0xbd,0x5c,0x88,0x67,0x31,0x73,0xff,0x9,0x14,0xb3,0x59,0x98, 0x25,0x1b,0x4f,0x54,0xac,0xdd,0xdc,0x84,0x86,0xab,0xba,0xb4,0xf3,0x89,0x28,0x24, 0xb3,0x18,0xff,0xed,0x51,0xc4,0x8f,0xcc,0xa2,0x98,0x2b,0x41,0xa4,0xf1,0x25,0xb7, 0x85,0x33,0xa6,0xda,0x8d,0x2d,0xa8,0x59,0xe1,0x87,0x54,0x95,0x1c,0xf9,0x62,0xcf, 0x48,0xb9,0x36,0x25,0x57,0xc3,0x42,0x75,0xd,0xb3,0x8a,0x8a,0x2f,0x96,0x52,0xf4, 0x7e,0x1e,0xa5,0x52,0x81,0xbf,0x29,0x49,0x66,0x7a,0xdf,0x4,0x49,0x74,0x70,0xa6, 0x57,0x9e,0x11,0x35,0x87,0xa7,0x2,0x46,0x3a,0x0,0x8,0x2a,0x78,0xa5,0xc6,0xa2, 0x28,0xa5,0x4a,0xfa,0x53,0x6e,0x6d,0x74,0xc1,0xe2,0xb6,0xe9,0x80,0x9f,0x18,0x8, 0x23,0x7c,0x60,0xa,0xa9,0xc1,0x30,0x72,0xe1,0xc,0x7f,0xd5,0xe2,0x77,0xc0,0xb3, 0xd2,0xf,0xdf,0x86,0x66,0xb8,0xba,0xbc,0x67,0x2c,0x3,0xaa,0x2,0x83,0x7e,0x47, 0xfc,0xb5,0x7c,0x22,0x87,0xd8,0xb1,0x0,0x22,0xfb,0x68,0xec,0x89,0x4,0xe4,0x4c, 0x11,0xa2,0x55,0x84,0xb5,0xce,0xc1,0x13,0x55,0x7d,0x1b,0x9b,0xe0,0x6c,0xf7,0xce, 0x67,0x48,0x86,0x18,0x72,0x7e,0x85,0x39,0x72,0xdf,0xf9,0x62,0x9d,0xcc,0x0,0x95, 0xf3,0xb8,0x2e,0x67,0x7a,0xd3,0x5c,0x63,0x47,0xcb,0x4d,0xab,0x31,0xbb,0x63,0x10, 0xc8,0x16,0xf9,0x7b,0x91,0xbd,0x53,0x98,0xdd,0x3d,0x81,0xc6,0x8b,0xdb,0x79,0x8e, 0x8a,0x70,0xaa,0x10,0x30,0x96,0x9b,0xa2,0xad,0xb2,0xa7,0x1f,0x19,0x44,0xf0,0x89, 0x11,0xfa,0xcb,0xac,0xae,0xf9,0x5,0x9,0xbd,0xef,0xbd,0x8,0x26,0x9b,0x85,0x1b, 0x95,0x98,0xfa,0x2b,0xa4,0x72,0x38,0xf6,0x85,0xc7,0x31,0xbe,0xfb,0x18,0xed,0x65, 0x55,0x97,0xed,0x90,0x60,0xb1,0x39,0xe1,0xec,0xf3,0xc0,0xb7,0xb6,0x11,0x7d,0xef, 0xba,0x18,0x6d,0x37,0xad,0xf9,0xd3,0xc0,0x8a,0x50,0x4e,0xf6,0x54,0xb4,0xea,0x0, 0xea,0xbd,0x31,0x20,0x9,0x27,0x9e,0xc4,0x6c,0xec,0x11,0xc4,0xd2,0x87,0x9,0x78, 0xf3,0x50,0x18,0xa8,0x30,0xaf,0x90,0x40,0x20,0x48,0xa0,0xe2,0xb4,0xb7,0xa2,0xc1, 0x7d,0x35,0x7c,0x9e,0x2b,0xe1,0xb0,0xb6,0x69,0x6c,0x47,0xd1,0xc6,0xd5,0x0,0x4a, 0x63,0xb,0xc,0x34,0xf6,0xfe,0xe3,0x83,0x8,0x1f,0x9c,0xe4,0xb3,0x2a,0xd9,0xcd, 0xd8,0xfc,0x89,0x1b,0xd0,0x7a,0xfd,0x4a,0x4,0x9e,0x1c,0xc2,0x89,0xef,0xec,0x21, 0x40,0x19,0x47,0xaa,0x3f,0x8a,0x5c,0x3c,0xc5,0x59,0x24,0x3b,0x46,0xa2,0xaf,0x83, 0xcd,0xe7,0x82,0x63,0xa5,0x1b,0xfe,0x2d,0xed,0x58,0xf3,0x17,0x57,0xc2,0xb7,0xbe, 0xe9,0xd4,0x34,0xb2,0x6c,0x71,0xd3,0x40,0x91,0x1,0xfa,0xb1,0xaf,0x3f,0x89,0xf8, 0x89,0x30,0x8d,0x1d,0x41,0x11,0x59,0xee,0xd7,0x12,0xf8,0xbf,0x16,0x38,0xea,0xec, 0x70,0xac,0xf6,0xa1,0x7e,0x6b,0x37,0x7a,0xdf,0x79,0x11,0x6a,0x37,0x35,0xa9,0x61, 0xe0,0x86,0x18,0x72,0x7e,0xe5,0x2e,0xd,0x58,0xc,0x50,0x79,0x59,0x33,0x15,0x6e, 0xb5,0x52,0x57,0xb0,0xed,0x37,0xaf,0x44,0xff,0x97,0x9f,0xa2,0xd5,0xf1,0x2c,0x57, 0x92,0xa9,0xb9,0x38,0x66,0x7e,0xdf,0xcf,0x41,0x85,0xaf,0x86,0x4f,0x61,0x6,0x29, 0x9b,0x5e,0x8a,0x99,0x3c,0x26,0x7f,0x77,0xc,0x99,0x44,0x8a,0x67,0xbb,0xcb,0x72, 0x11,0x9e,0xd,0x4d,0x68,0xbf,0x75,0xbd,0xa,0x5f,0x1a,0xa5,0x31,0xb9,0x6c,0xb4, 0xa,0xae,0x83,0x75,0xb7,0x93,0x3e,0x58,0xb3,0xe6,0xa6,0x27,0x95,0x96,0x2d,0x21, 0x7a,0x28,0x80,0xf0,0xa1,0x49,0xcc,0x3e,0x31,0x8c,0x6d,0x9f,0xbf,0x5,0x3d,0x77, 0x6e,0xf9,0xd3,0x1,0xae,0x50,0x69,0x6,0x30,0x15,0xf9,0x1d,0x46,0x66,0xbe,0x8e, 0x70,0xf2,0x59,0x14,0x8a,0x33,0xc4,0x50,0xaa,0xac,0x44,0xe5,0xfd,0x99,0xfb,0x28, 0xe,0x4c,0xcc,0xfd,0xc,0x6e,0xc7,0x6,0x74,0x35,0xbe,0x17,0x5d,0xd,0xef,0xa0, 0xf9,0x11,0x2b,0xc6,0x46,0xad,0x84,0x4d,0x39,0xb8,0x21,0x39,0x10,0xc1,0xec,0xbe, 0x61,0x2,0xa,0x82,0x57,0xb3,0x8d,0xfb,0xa2,0x6,0xbe,0x97,0xc0,0x73,0x9f,0xb8, 0x1f,0x89,0x91,0x20,0xdf,0xc7,0x4c,0xb3,0xc9,0xc1,0xb7,0xc,0x46,0x74,0xa2,0x62, 0x24,0x8b,0xd0,0xce,0x18,0x82,0x3b,0x27,0x10,0x7a,0x72,0xa,0x9b,0x3f,0x7b,0x3d, 0xda,0x5f,0xb3,0xf6,0x14,0x8b,0x86,0x4a,0xc5,0x83,0xe3,0x77,0x3f,0x8d,0xbd,0xff, 0xf0,0x20,0x32,0x81,0x30,0x4f,0x76,0x65,0xa3,0xdb,0xe0,0xa8,0x72,0xaf,0x28,0xc8, 0x84,0xb2,0x48,0x3c,0x39,0x8c,0x19,0xda,0x82,0xfb,0xc6,0x71,0xf9,0xd7,0xdf,0x8, 0xef,0x9a,0x46,0xe3,0xcb,0x62,0xc8,0xf9,0x94,0xaf,0xd1,0xf6,0xbb,0x17,0xf3,0x84, 0x6,0xa8,0x9c,0x37,0x54,0x91,0x79,0x5f,0x12,0xa6,0x19,0xdd,0xdd,0x75,0xf0,0x5f, 0xd1,0x81,0xf8,0x40,0x50,0x55,0x32,0x25,0x19,0x81,0x47,0x87,0x90,0xfd,0xe0,0x76, 0xd8,0xea,0x9c,0x67,0x34,0x83,0xb0,0xe3,0xa6,0x1f,0x1b,0x54,0xfb,0xb2,0x48,0x22, 0xa,0xa5,0x3c,0x7a,0xdf,0xb5,0x19,0x16,0xbb,0xb5,0x6c,0x58,0xe2,0xff,0x9a,0x1d, 0x56,0x38,0xba,0x7c,0xba,0x29,0x46,0x16,0x45,0x28,0x72,0x89,0xaf,0xc2,0xed,0xa2, 0x9d,0x9b,0xd3,0x52,0x53,0x9,0xec,0xf9,0x9b,0xdf,0xc3,0xde,0xe2,0x41,0xf3,0x55, 0xbd,0xfa,0x9a,0x5b,0x58,0xb0,0x2,0x3f,0x1f,0xdc,0x4d,0x5,0x8,0x81,0x83,0x81, 0x2c,0xe7,0xd0,0x3f,0xf5,0x39,0xc,0x4c,0x7d,0x9,0xf9,0x62,0x90,0x57,0x5a,0x36, 0xd1,0x3f,0x66,0x49,0xaa,0x2a,0x61,0xa3,0xe8,0x66,0x26,0xc6,0x26,0x4a,0x72,0x8c, 0xc0,0xe7,0x9,0xc4,0xd3,0x7,0x10,0x8a,0x3d,0x8e,0xb5,0x1d,0x9f,0x80,0xdd,0xda, 0xaa,0x99,0xbf,0x2a,0xed,0x65,0x98,0x38,0x5a,0xdd,0xb0,0xc3,0xc9,0x41,0x5c,0xb4, 0x9a,0x70,0xfc,0xab,0x3b,0x91,0x19,0x4f,0x20,0x1b,0x4b,0xd0,0x5c,0x38,0x51,0x90, 0x59,0x5a,0xaa,0xc,0x89,0x1,0x8a,0xa8,0x46,0xd6,0xb1,0x9c,0x22,0x96,0x4c,0x6a, 0x95,0xdc,0x7c,0xde,0x42,0xc4,0x74,0x76,0xbd,0xf7,0x5e,0x98,0xee,0xb1,0xa0,0xf9, 0xea,0x3e,0x68,0x99,0xa5,0xaa,0x59,0x92,0xe5,0x8,0xd1,0x67,0x2c,0x12,0x6c,0x8d, 0xdf,0x77,0x14,0x7b,0xff,0xf6,0x3e,0xe4,0xa3,0x59,0x1a,0xdb,0xc3,0x8f,0xe5,0xec, 0x87,0x18,0x96,0x20,0xaa,0x1,0x5,0x45,0x59,0xe6,0x97,0xe6,0x10,0x5c,0xc8,0x29, 0x19,0x58,0x6d,0xb4,0x0,0x68,0xf3,0x1a,0xdf,0x13,0x43,0xce,0xa7,0x30,0xa7,0xfc, 0x87,0x5f,0xec,0x93,0x1a,0xa0,0x72,0xde,0x54,0xa8,0xa8,0x2b,0x7b,0xb6,0xb5,0xde, 0xb0,0x1a,0x23,0xbf,0xd8,0xf,0x21,0xce,0x94,0x8b,0x84,0x70,0xff,0x34,0x52,0xa3, 0x11,0xe,0x2a,0x67,0x2a,0x2b,0x19,0xd8,0x31,0x82,0xe4,0x89,0x8,0x4f,0xa0,0x2c, 0xd0,0x52,0xde,0xd5,0x5a,0x8b,0x96,0x1b,0x57,0xe9,0xab,0x78,0x41,0x2b,0x7d,0xcf, 0x56,0xcd,0x9d,0xb7,0xaf,0x83,0x77,0x7d,0x3,0xb7,0xe1,0x83,0x94,0x5b,0xe2,0x44, 0x10,0x23,0x3f,0x3b,0x88,0xf0,0xb3,0x93,0x5c,0xc1,0x5a,0x25,0x3b,0xe2,0x33,0x41, 0x1c,0xfa,0xdc,0xc3,0xdc,0xb4,0xc3,0xce,0x2f,0xcc,0x6b,0xce,0x72,0xbe,0xec,0xfc, 0x2a,0x34,0xb0,0x6b,0x2c,0x96,0x92,0x38,0x38,0xfa,0x31,0x8c,0xcc,0x7e,0x8b,0x95, 0xa1,0x84,0xd9,0x24,0xcd,0x73,0x9c,0x2b,0xb,0xc0,0x4d,0x9d,0x1f,0x91,0x40,0x47, 0xe4,0xf3,0x5a,0x94,0xe3,0x18,0xf,0xde,0x8d,0x74,0x7e,0x0,0x9b,0x7b,0xbe,0xd, 0xb7,0xbd,0x97,0x2b,0x6e,0xa1,0xaa,0x67,0x8d,0xe4,0xb0,0xa8,0x6c,0x82,0x94,0x7a, 0x31,0x5b,0x40,0xfc,0xd0,0x1c,0x7f,0xc7,0x4a,0xec,0x24,0x27,0x67,0x9,0xe8,0xeb, 0xd1,0x74,0x65,0x37,0xfc,0xdb,0xdb,0x61,0xad,0xb7,0x23,0x1f,0xc9,0x61,0x8e,0xd8, 0xc9,0xf4,0x7d,0xfd,0x48,0x4d,0x46,0x20,0x49,0xc4,0x9,0x15,0x1b,0xff,0x7d,0xdf, 0xc7,0x1f,0x84,0xf7,0x37,0x8d,0xb0,0xd7,0xbb,0x75,0xf6,0xc9,0xe6,0x8b,0x1,0x50, 0x2e,0x96,0xc6,0xe1,0xcf,0x3c,0x46,0x80,0x92,0x81,0x45,0xb4,0x11,0x58,0x15,0x60, 0xab,0x77,0xa1,0xf3,0xce,0xd,0xa8,0x7f,0x65,0x37,0xcc,0x2e,0x33,0xf2,0xb3,0x29, 0x4,0xf7,0x4e,0x61,0xe6,0x81,0x13,0x88,0x1c,0x9f,0x81,0xa5,0xd6,0x86,0x95,0xef, 0xdd,0xa,0xb3,0xdb,0x6a,0x7c,0x51,0xc,0x39,0x5f,0xc2,0xc2,0x86,0xdf,0x6,0x35, 0x8c,0xd8,0x0,0x95,0xb,0x82,0xa8,0xf0,0x58,0x61,0x45,0x73,0x28,0x8b,0xf0,0x6e, 0x6c,0x24,0xe5,0xe5,0x46,0x2e,0x1e,0xe5,0x4a,0x49,0x8e,0x15,0x10,0xde,0x37,0x85, 0xba,0x8b,0xda,0x4e,0xab,0xc6,0xd3,0x81,0x4,0x26,0x7e,0x7b,0x8c,0x56,0xe9,0x39, 0xd8,0x24,0x27,0x32,0xa5,0x14,0xda,0xee,0xd8,0xe,0x77,0x5f,0x5d,0x55,0x36,0xbe, 0xa0,0x87,0xb3,0x36,0x6c,0xef,0xe4,0x5b,0x79,0x50,0x85,0x56,0xc8,0xdd,0xef,0xda, 0x8a,0x83,0x9f,0x7c,0x18,0x27,0xbe,0xb5,0xb,0x42,0x41,0xe1,0x66,0x99,0xe9,0x7, 0x87,0x31,0xf5,0xe0,0x9,0xf4,0xdc,0xb9,0x59,0xf3,0x45,0x9c,0x7f,0x98,0x65,0x9e, 0x9f,0x7c,0x3e,0x82,0x43,0x63,0x1f,0x21,0x40,0xf9,0xe,0x4c,0x12,0xf3,0x99,0x88, 0x4b,0x2,0x32,0x85,0xd8,0x84,0x49,0x52,0xab,0x9,0xcc,0xc5,0x1e,0xc5,0x9e,0xc1, 0x77,0x63,0x6b,0xef,0xb7,0x8,0x58,0x56,0xb2,0x48,0x5d,0xe,0x22,0x6c,0x3c,0xc9, 0x2a,0xaa,0xa6,0x3f,0xde,0x6f,0x86,0x0,0x5e,0x64,0x60,0x54,0x80,0x4c,0xac,0xa5, 0xf7,0xce,0x4b,0xb0,0xee,0xef,0xae,0x82,0xb7,0xcf,0xf,0xc1,0x2c,0xaa,0x60,0x44, 0x3b,0xf6,0xbd,0x73,0x1b,0x62,0x43,0xb3,0x38,0xfc,0x2f,0x8f,0x10,0x10,0x1f,0x41, 0xa9,0x58,0xe2,0x91,0x76,0x73,0xbb,0x27,0xd0,0xff,0xb5,0x67,0xb0,0xf1,0x7f,0xbf, 0xba,0xec,0x97,0xd7,0x82,0x28,0x4,0xcc,0x3e,0x36,0x4c,0x80,0x31,0xe,0x13,0x1, 0x76,0x89,0xc6,0x77,0x76,0xd4,0xe0,0xe2,0xff,0xb8,0x19,0x6d,0xaf,0x5b,0x3,0xd1, 0x2c,0xe9,0xf6,0xbb,0xee,0xb7,0x6e,0x41,0xf2,0xaf,0xa2,0xe8,0xff,0xe6,0x33,0xc8, 0xc7,0x33,0x68,0x7c,0x75,0x9f,0xf1,0x25,0x31,0xe4,0x7c,0xca,0x3f,0xd2,0xb6,0xef, 0x4f,0x71,0x62,0x23,0xa4,0xf8,0xbc,0xc2,0x8a,0xa8,0xdb,0xdc,0x6b,0x56,0xfa,0xd1, 0x78,0x69,0x27,0x37,0xb9,0x30,0x25,0x57,0x48,0x15,0x30,0xfe,0xdb,0xe3,0xdc,0xec, 0x72,0x3a,0x9,0xee,0x1e,0x43,0xe0,0xb1,0x41,0x98,0x5,0x2b,0xf2,0xa5,0x3c,0x9c, 0x5e,0x1f,0x3a,0x6f,0xdb,0x0,0x93,0xc5,0x8c,0x79,0x61,0xba,0xd5,0x76,0x2c,0xad, 0xae,0x18,0x4f,0x9f,0x10,0x5,0x38,0x1a,0x3c,0xd8,0xfc,0xa9,0xeb,0xd1,0xf2,0xba, 0xd5,0xb4,0x7c,0xc9,0xd1,0x2a,0x5c,0x42,0xa1,0x98,0xc6,0xc4,0x43,0xc7,0x50,0xc8, 0x14,0x5e,0xa4,0x18,0x24,0xa6,0xe0,0xb,0x18,0x98,0xfe,0x2c,0x1,0xca,0xb7,0x39, 0xa0,0x8,0x82,0xb4,0xe4,0x47,0x90,0xb1,0x3,0x45,0x51,0x99,0x82,0x49,0x12,0x11, 0x8c,0x3d,0x86,0xe3,0x93,0xff,0x8a,0x12,0x8d,0x2d,0x54,0xe5,0x7a,0xea,0xe5,0xcf, 0x44,0xd5,0xf7,0xc1,0x14,0x3e,0x4d,0x22,0xd6,0x7e,0xf4,0x72,0x5c,0xf6,0xb5,0x37, 0xa0,0x76,0x6d,0x23,0xaf,0xc0,0xac,0x87,0x57,0xb3,0xfd,0xe9,0x6f,0xdf,0xea,0x66, 0x5c,0xf2,0xd5,0x5b,0xd1,0x72,0xcb,0x4a,0xb5,0xc9,0x9a,0x1a,0x49,0x80,0xb1,0x5f, 0x1c,0x43,0x72,0x32,0x56,0x65,0x6c,0x54,0x4f,0x34,0xfb,0xe4,0x18,0x84,0x8c,0x3a, 0xd7,0xcc,0xe4,0xd5,0x74,0xed,0x4a,0x74,0xbc,0x61,0xbd,0x6,0x28,0x95,0x3c,0x23, 0x91,0xc0,0xcb,0xd3,0x5d,0x87,0xad,0x9f,0xbe,0x9,0xdb,0x3e,0xf7,0x7a,0x58,0x6a, 0xec,0x30,0x12,0x23,0xd,0x39,0x4f,0xf2,0x30,0x6d,0xff,0xf6,0xa7,0x3a,0xb9,0x1, 0x2a,0xe7,0x53,0x8d,0x6a,0xe5,0x52,0xf8,0x44,0x93,0x22,0x6f,0xba,0xa6,0x17,0x12, 0xf3,0x83,0x28,0xea,0xc4,0xb3,0xb0,0xd3,0xc8,0xa1,0xc0,0x29,0x8f,0x2f,0xe5,0xa, 0x98,0x7a,0x60,0x0,0xd9,0x4c,0x8a,0x8e,0x67,0x19,0xf4,0x5,0xd4,0x5f,0xd5,0x8e, 0xda,0x4d,0xcd,0xfa,0xf8,0xdc,0x76,0xaf,0xa8,0x4b,0x67,0xdd,0xaf,0x0,0xcd,0x11, 0xce,0x73,0x20,0xd5,0xf3,0x33,0x73,0x58,0xd7,0x9b,0x36,0xc0,0x6c,0xb5,0xa3,0x50, 0x2a,0x10,0x45,0xb5,0x20,0x79,0x6c,0xe,0xf9,0x70,0x72,0x11,0x46,0x71,0x7e,0x24, 0x1c,0x7f,0x16,0x43,0x81,0x6f,0x11,0x18,0x8,0x3c,0x4c,0x58,0x57,0xba,0x4b,0xe1, 0x3b,0x8a,0x66,0x58,0x94,0x55,0xdf,0xc,0x11,0x10,0x4c,0x6,0xef,0xc5,0x34,0x6d, 0xd5,0x57,0x5f,0xe,0xf2,0xe5,0xbe,0xf,0x85,0xcd,0x5c,0x1,0x1d,0x77,0x6c,0xc0, 0xba,0xbf,0xb9,0xa,0x26,0x9b,0x99,0x55,0x64,0x83,0x1a,0x1d,0xa7,0xa8,0xed,0x33, 0xab,0xa0,0xd5,0xe2,0x71,0x60,0xc5,0x5d,0x97,0x40,0xa8,0x91,0x8,0xf4,0x59,0x54, 0x98,0x88,0xd4,0xf4,0x1c,0x32,0x23,0x11,0xd,0x7f,0x2a,0xb,0x81,0x7c,0x32,0x47, 0x43,0x48,0xfa,0x3c,0x57,0x4c,0x5a,0x6a,0xf0,0x80,0x22,0x54,0xa0,0x9f,0x1f,0x4b, 0x20,0x67,0x71,0x9a,0xd5,0xa2,0xa2,0x8a,0x11,0x52,0x6c,0xc8,0xb9,0xff,0x9a,0xe1, 0x45,0xc,0x1f,0x5e,0xb6,0xa0,0xf2,0xa7,0xca,0x1f,0xe7,0xe6,0x2f,0x1,0x7a,0xe6, 0x74,0xcb,0x8d,0x2b,0xe0,0xee,0xa8,0xe5,0xe,0x61,0xb6,0x4a,0xcf,0x4e,0x24,0x30, 0xf3,0x50,0xff,0x29,0x47,0xc8,0xcc,0xc4,0x31,0xf1,0xab,0x23,0xb0,0xc1,0xe,0xb9, 0x58,0xe2,0x40,0xd0,0xf1,0xc6,0xf5,0x30,0x7b,0xac,0xfa,0xea,0x5f,0x54,0x44,0x55, 0x41,0x95,0x9d,0xda,0x7a,0xd2,0xe0,0xc9,0x46,0x25,0x77,0x8f,0x1f,0xe6,0x6,0x3b, 0x3f,0x3f,0xb,0x9f,0xcd,0x8e,0x25,0x51,0x8,0x67,0x4e,0x62,0x14,0xcf,0xcf,0xaf, 0xa2,0x9c,0x16,0x8,0xd8,0xdb,0x81,0xd8,0x7d,0xc8,0x14,0xc2,0x44,0x1e,0x4c,0xea, 0xdc,0x40,0x5c,0xfa,0xb9,0x44,0x41,0x6b,0xd3,0xac,0x66,0xb4,0x9b,0x39,0xeb,0xa, 0x63,0x2c,0xf8,0x5d,0x14,0xa,0x89,0x4a,0xd8,0x72,0x39,0x58,0x41,0x60,0x71,0x11, 0x32,0x9c,0xcd,0x5e,0xac,0xfa,0x9f,0x17,0x13,0x43,0xb0,0xa9,0xc5,0x8,0x38,0x9d, 0x13,0xd5,0xc4,0x4b,0x51,0xd0,0x92,0x55,0x15,0x3d,0xc9,0xdd,0xd3,0x5b,0x7,0x87, 0xcf,0xad,0x1,0xf,0xcd,0x6f,0x41,0x41,0x66,0x36,0xa5,0xde,0x4f,0x95,0xef,0x86, 0x8d,0x27,0x2b,0x45,0x2d,0x82,0x4c,0x42,0x68,0xd7,0x18,0x12,0x13,0x51,0x94,0x83, 0x7,0x4,0xd,0xbc,0x14,0x3d,0x91,0x55,0xdd,0xaa,0xd9,0x8e,0x21,0x86,0x9c,0x43, 0x79,0xf,0x6d,0x93,0x7f,0xca,0xb,0x58,0x16,0x3e,0x95,0x42,0x36,0x8f,0xe9,0x7, 0xfb,0x91,0x99,0x4e,0xa1,0xf9,0xba,0x1e,0xd4,0xe8,0xed,0x6e,0x85,0x53,0x2b,0x41, 0xa1,0xda,0x94,0x22,0xe8,0x66,0x8c,0xb2,0x4f,0x5b,0xfd,0xa9,0xe8,0xf9,0x28,0x5c, 0x65,0x94,0xcb,0xd4,0x57,0x15,0x80,0x14,0xaa,0x7e,0x77,0xb5,0xf9,0xd0,0x70,0x55, 0x7,0x92,0xc7,0x67,0xf9,0x2a,0xbb,0x50,0xc8,0x22,0xf0,0xc8,0x10,0x56,0xbc,0xf7, 0x52,0x5a,0x1d,0xdb,0xe6,0x45,0x2f,0xb1,0x1f,0xd1,0xc3,0x1,0x24,0x27,0xc3,0xb0, 0x8,0x36,0x14,0x95,0x1c,0x1c,0xa4,0x18,0xfd,0xdb,0x3a,0xf4,0x5c,0xc,0xd5,0x66, 0xa3,0xcc,0xcb,0x10,0xcf,0xcc,0x25,0x10,0x3f,0x1a,0x44,0x31,0x99,0x87,0x9c,0x2f, 0x22,0x13,0x4c,0x21,0x17,0x4a,0x81,0x16,0xeb,0x48,0xe,0x85,0x21,0x27,0x98,0x9f, 0x40,0xe4,0xf7,0x53,0x8,0xe7,0x50,0x4c,0x97,0x16,0x31,0x54,0x69,0xe1,0xb2,0x38, 0x8b,0xe4,0x70,0x8d,0x13,0x28,0x5a,0xae,0xfa,0x62,0x60,0xc3,0xe6,0x2f,0x9b,0xd, 0x60,0x3a,0xfc,0x4b,0x98,0x4d,0xe5,0x24,0x48,0x8d,0x59,0xcd,0x5b,0xc7,0x9f,0x9d, 0x51,0xb1,0x9c,0x30,0x59,0x2e,0xb4,0x69,0x31,0xcb,0x8,0x25,0x1f,0x43,0x28,0xb1, 0x3,0x4d,0xb5,0xaf,0x2b,0xf3,0x4,0x70,0xe8,0x28,0xa9,0x59,0x28,0xf5,0x34,0x6f, 0xfe,0x6d,0xed,0x95,0xc9,0xad,0xa,0xf9,0x16,0xaa,0xa3,0xba,0x4,0x15,0x44,0xac, 0xcd,0x4e,0x7a,0x4e,0x1a,0x90,0x1e,0x8e,0x70,0xf0,0x93,0xb3,0x32,0x12,0xa3,0xa1, 0x79,0x80,0xc5,0x84,0x55,0x4c,0x38,0xfe,0xc5,0x27,0xa0,0xa4,0xd5,0xc8,0xbc,0xe0, 0x33,0x13,0xd8,0xf5,0xfe,0x5f,0x61,0xf5,0x9f,0x6f,0x87,0x6f,0x5b,0xb,0x1c,0x8d, 0x35,0x9a,0x63,0xbf,0x62,0x9e,0x54,0xca,0x25,0x69,0xe6,0xd9,0x2c,0xd,0x31,0xe4, 0x5,0xcb,0xdd,0xb4,0xfd,0xea,0x4f,0x7d,0x11,0xcb,0x2,0x54,0x58,0x8b,0xdb,0xe3, 0x5f,0x7a,0x12,0x53,0x4f,0xd,0xe2,0x8a,0xef,0xbc,0x8d,0x94,0x45,0xfd,0x19,0x56, 0xdc,0x2c,0xf7,0x43,0xd4,0x80,0xa2,0x7a,0x15,0x2e,0xcc,0xcf,0x29,0x51,0x54,0x25, 0xa4,0x68,0xa,0x4e,0xd0,0x3d,0xb8,0x8a,0x16,0x51,0xc5,0xde,0x13,0x51,0xcd,0x1d, 0x7a,0xde,0xbd,0x15,0x43,0xdf,0x3d,0x0,0xa1,0xa0,0x86,0xaf,0xce,0x3e,0x3d,0x8e, 0xb9,0x9d,0x63,0x68,0x7d,0xf5,0x4a,0xd,0x20,0xb4,0xee,0x8e,0x5,0x19,0x43,0x3f, 0xd8,0xa7,0x95,0x2c,0x51,0x8,0x54,0x8a,0x68,0xbb,0x75,0x1d,0x5c,0x5d,0x3e,0xed, 0xdc,0x2,0x1f,0xbf,0x9c,0xef,0x31,0xb7,0x6b,0x14,0x33,0xf,0xc,0x62,0xf6,0xa9, 0x11,0x9e,0x29,0x5e,0x20,0x50,0x51,0xf2,0xc,0x39,0x64,0x14,0x4b,0x45,0x5d,0x15, 0x4a,0xa2,0xc4,0x4d,0x71,0x34,0x20,0x8a,0x74,0xd,0x72,0x49,0x59,0x40,0x5d,0xb5, 0x95,0xb5,0x96,0x5c,0x28,0x9f,0x51,0xc5,0x57,0xd4,0x62,0xb9,0x16,0x17,0xaa,0xd4, 0x7a,0x59,0x1,0x7,0x93,0x3b,0x90,0xcc,0x9d,0xd0,0x80,0x47,0x2d,0xe7,0xf,0x59, 0xa9,0x28,0xdc,0xa5,0x10,0x40,0xa1,0xba,0x1c,0x8a,0xea,0xec,0xcf,0x15,0xe2,0x1c, 0x54,0x1a,0x7c,0x37,0xa8,0x61,0xc4,0xfc,0xda,0x4a,0xea,0xfc,0xb3,0x2a,0xd1,0xd, 0x2e,0x98,0x9c,0xd6,0x5,0x80,0x28,0xcc,0xb3,0x55,0x96,0x49,0x25,0x1b,0xde,0x4a, 0x20,0x6f,0x6b,0x71,0xf3,0xf2,0x2f,0x12,0x9b,0x7,0x9a,0xaf,0x6c,0x30,0x39,0x6f, 0xe1,0xc1,0xf6,0x6b,0xba,0xb2,0x7,0xed,0xb7,0x6e,0xc0,0x89,0x1f,0xee,0x82,0x95, 0xfe,0x63,0x80,0x3d,0xf1,0xdb,0x23,0x98,0xd9,0x31,0x88,0xfa,0x4b,0x3b,0xd0,0xf6, 0xda,0x35,0x68,0xba,0x61,0x5,0x6a,0xd7,0x34,0x55,0xdd,0x67,0xf5,0xb9,0xc,0x40, 0x31,0xe4,0x9c,0xc8,0x71,0xda,0xfe,0xea,0xa5,0x70,0x21,0xcb,0x2,0x54,0xca,0xb8, 0x20,0x90,0x62,0x10,0x15,0xb1,0xa,0x3c,0x84,0x45,0xf7,0xae,0xe4,0x3c,0x8,0x5a, 0x12,0xa3,0xac,0x47,0xfd,0xf0,0x1f,0x82,0x96,0xf4,0xc6,0xb,0x3,0x6a,0x75,0x84, 0xcb,0x19,0xde,0x5a,0x86,0xbc,0x52,0xae,0x4b,0xa5,0x16,0x88,0xd2,0xd7,0xf3,0x2c, 0xda,0xab,0x76,0x6b,0x33,0xc2,0x4f,0x8f,0xb0,0x20,0x59,0x64,0xc3,0x9,0xcc,0x3e, 0x3e,0x82,0x96,0xeb,0xfa,0xd4,0x64,0x3e,0xed,0xbc,0xac,0xd4,0xc7,0xcc,0x1f,0x6, 0xc1,0xdc,0xbd,0x45,0xa2,0x19,0xb6,0x1a,0x27,0xda,0x6f,0x5e,0x5,0x93,0xdd,0xac, 0xaa,0x6b,0x41,0xd,0xb3,0x4d,0xcd,0x24,0x70,0xe8,0x5f,0x1f,0xc1,0xf8,0x6f,0xf, 0x21,0x3d,0x14,0xe5,0xab,0x72,0x49,0xb7,0x6a,0x96,0xeb,0x5c,0x89,0xda,0x2b,0xba, 0xa7,0x41,0xcd,0xa3,0x61,0x7f,0x2f,0x30,0x80,0xca,0x55,0xc6,0x25,0x41,0x67,0x61, 0xa7,0x98,0x57,0xa5,0xb2,0xec,0xe7,0x77,0x2b,0x2e,0xac,0xa9,0x55,0xf9,0x3d,0x92, 0xda,0xcd,0x5b,0x0,0x10,0xa6,0x95,0xb,0x36,0xa3,0x52,0xbf,0x4b,0x79,0xc1,0x9f, 0x30,0x67,0x76,0xa9,0x3,0xc8,0x17,0x42,0xb0,0x59,0x9a,0x2a,0xd,0x9b,0xf5,0xc8, 0x36,0xf9,0x2c,0x9e,0x12,0x59,0x4f,0xa8,0x64,0xc7,0x89,0x92,0xd6,0x99,0x86,0x7d, 0xb6,0x4,0x80,0x62,0xbe,0x32,0x59,0x82,0x8a,0x89,0xbc,0x7d,0xf3,0xe6,0x7f,0xb9, 0xe,0x89,0xe1,0x20,0xa6,0x9f,0x1a,0x80,0x4d,0x74,0xc2,0x44,0xcc,0xb2,0x94,0xc8, 0x63,0xea,0xf,0x27,0x30,0xfb,0x87,0x51,0xb8,0xd7,0xee,0x46,0xc3,0xe5,0x9d,0xe8, 0x79,0xd7,0x16,0x34,0x5e,0xde,0xa3,0x2d,0x4,0x64,0x18,0x2e,0x4d,0x43,0xce,0x91, 0xb0,0xf0,0x61,0xe6,0x47,0x49,0xbe,0x14,0x2e,0x66,0x79,0xf8,0x54,0x98,0x62,0x31, 0x8b,0x6a,0x49,0xc,0xf1,0xcc,0xf9,0x18,0x3c,0x34,0x15,0x45,0x2d,0x2c,0x18,0x9a, 0x12,0x10,0xb5,0x90,0xa2,0xca,0xf1,0x7c,0x5c,0x45,0x54,0x57,0xad,0xa8,0x14,0x2f, 0x2c,0x97,0xed,0xa8,0x98,0xa5,0xd4,0xf0,0x56,0xa6,0x49,0x4d,0x66,0x13,0x3a,0xdf, 0xb6,0x1e,0x5,0x1a,0x5f,0x14,0x4d,0x7c,0xe4,0xc0,0x23,0x83,0x48,0x8d,0xc5,0xaa, 0x35,0x35,0x46,0x7f,0x7d,0x84,0xaf,0x8c,0x25,0xd1,0x4c,0xa0,0x52,0x40,0xc3,0x15, 0xdd,0xf0,0x5f,0xde,0xa1,0xef,0xc2,0xc6,0x8d,0x9c,0x98,0xc3,0x93,0xef,0xf8,0x29, 0x8e,0x7e,0x69,0x7,0x52,0x43,0x71,0xba,0x35,0xb,0x2c,0x92,0x8d,0xfb,0x4b,0x18, 0xf0,0x14,0xe9,0x59,0xcb,0x22,0xcd,0x1d,0xfc,0x1c,0x24,0x24,0xcd,0x77,0x20,0xb, 0xda,0x4a,0x7b,0x31,0x3,0x97,0xa8,0xff,0xab,0xe8,0x26,0x9a,0x53,0x91,0x86,0x12, 0xbf,0x16,0xb1,0xcc,0x6f,0x98,0x9,0xa9,0x34,0x5f,0xd1,0x97,0x1,0x23,0x99,0x1b, 0xd4,0x4d,0x4b,0xba,0xbf,0x41,0x38,0x1b,0x65,0x7f,0x96,0xb0,0x42,0x63,0xa5,0x73, 0xe3,0x28,0x14,0x63,0xfa,0xd5,0xf1,0x33,0xc9,0x65,0x3,0x9b,0x78,0x76,0x5f,0x87, 0x5,0x5,0x94,0xc5,0x2a,0x53,0xa0,0x52,0x8d,0xc0,0x5a,0x60,0x4,0x3,0x61,0x77, 0x57,0x1d,0x5e,0xf1,0xfd,0x37,0xa1,0xf7,0x8e,0x8b,0x88,0x18,0x66,0x21,0xcb,0x79, 0x98,0x24,0xe2,0x2d,0x92,0x95,0x3f,0x43,0xb1,0x23,0x33,0xe8,0xff,0xd6,0x4e,0xec, 0x78,0xf3,0x3d,0x78,0xee,0x7f,0x3f,0x80,0x62,0xba,0xa0,0x2,0xbe,0x51,0x50,0xd2, 0x90,0x73,0x23,0xac,0x3f,0xca,0xae,0x97,0xca,0xc5,0x2c,0x1f,0xa6,0xa2,0x3b,0x2b, 0x8a,0x67,0x9,0xb5,0x26,0xa4,0xe7,0x12,0x98,0x7a,0xe0,0x4,0x62,0xfb,0xa7,0x51, 0x2c,0x91,0xf2,0xe8,0xae,0xe1,0x49,0x87,0xde,0x15,0xd,0x9a,0x71,0x47,0x2b,0x84, 0x42,0xca,0x26,0x31,0x19,0xc1,0xd4,0xbd,0xc7,0x11,0xeb,0x9f,0xe5,0x39,0x11,0xfe, 0x4b,0xda,0xd1,0x76,0xd3,0xa,0x98,0xdd,0x76,0xad,0x8c,0x8a,0xc2,0x95,0x12,0xbb, 0x8a,0xe6,0xab,0x7a,0xe0,0x68,0xf4,0xa2,0x10,0x48,0x73,0xa5,0x15,0x3d,0x34,0x8d, 0xd8,0xa1,0x0,0x5c,0x9d,0x3e,0x3e,0x66,0x66,0x2e,0x89,0xa9,0xfb,0x6,0xf8,0x39, 0x4a,0x72,0x9,0x66,0x8b,0x9,0x6d,0xaf,0x5d,0xd,0xab,0xc7,0xa1,0x6b,0xd0,0xf8, 0x50,0x10,0x4f,0xdf,0xf5,0xb,0xcc,0x3d,0x39,0x0,0x8b,0x68,0xe5,0x2a,0x9c,0x39, 0xa4,0xd9,0x75,0xba,0xba,0x6a,0x50,0x77,0x69,0x1b,0xdc,0xab,0x1b,0x78,0xe6,0xbc, 0xd5,0x4d,0x60,0xe3,0x75,0x20,0x35,0x1c,0xc1,0xc1,0xcf,0x3d,0x82,0xcc,0x68,0x94, 0xce,0x62,0xd6,0xcb,0xb7,0xcf,0x33,0xfc,0x69,0xc,0xa6,0xac,0x88,0x59,0x80,0xc0, 0x3c,0x67,0x4f,0xf5,0x34,0x99,0x8,0x14,0xcb,0x40,0xc5,0xd4,0x67,0x41,0x46,0x29, 0x57,0x5c,0x40,0x4,0xd5,0xe3,0x8a,0xc5,0x8,0x14,0xdd,0x95,0x20,0xea,0x7e,0x5, 0x45,0x39,0x75,0x25,0xe0,0xa5,0x7e,0xc2,0x85,0x12,0x31,0x35,0x25,0x5b,0x65,0x7c, 0x93,0x50,0x2a,0x33,0x47,0xe5,0xec,0xc0,0x4b,0x4f,0x6e,0x84,0xea,0x63,0xe1,0x41, 0xd,0xe5,0xaa,0xc2,0xd5,0x73,0xc5,0x89,0xd,0xdd,0x89,0xa8,0x96,0xbf,0xf7,0xf6, 0xd6,0xe3,0xb2,0xaf,0xbf,0x11,0x8d,0xf4,0xd9,0xe,0x7c,0x73,0x27,0x22,0x7,0x66, 0x78,0xb6,0x3d,0x3b,0x52,0x12,0x2d,0xfc,0x19,0xc8,0x4d,0xa6,0x70,0xe0,0xb3,0x8f, 0xf0,0x5,0xc4,0xb6,0x7f,0x7f,0x2d,0x6c,0xb5,0x4e,0x43,0x1d,0x1a,0xf2,0x42,0x85, 0x55,0x1f,0xfe,0xf4,0x4b,0xe9,0x82,0x96,0x47,0xf2,0xa3,0xa2,0xe8,0xd5,0x80,0x5, 0x9c,0xb9,0x80,0x5f,0x31,0x9e,0xc5,0xc1,0xcf,0x3f,0x8a,0x81,0xaf,0xef,0x45,0x21, 0x91,0xe1,0x39,0x6,0x2c,0x84,0x55,0x2e,0x16,0x70,0xf0,0x93,0x8f,0xa2,0xef,0x3, 0xdb,0xb1,0xe5,0x13,0xd7,0xf1,0x70,0x56,0xa6,0x11,0xc7,0x7e,0x7f,0x4,0x7b,0x3f, 0x7c,0x3f,0x92,0x23,0x21,0x1e,0xfa,0xcb,0xa,0x58,0x1d,0xfa,0xca,0xa3,0xe8,0x78, 0xcd,0x3a,0xbc,0xe2,0x5b,0xb7,0xf3,0x4c,0x6c,0xa1,0xca,0x2f,0xe3,0xe9,0xab,0x47, 0xdb,0xeb,0xd7,0xe0,0xc8,0x37,0x9f,0x84,0x5d,0x70,0x21,0x1d,0x4d,0x60,0xfc,0xfe, 0x63,0x68,0xba,0xb6,0x17,0x92,0xcd,0x8c,0xc9,0x7,0x8f,0x23,0xb8,0x67,0x8c,0xd7, 0xef,0xca,0x11,0xd7,0x68,0xb8,0xa8,0xb,0x6d,0xaf,0x59,0xa3,0xab,0x35,0x56,0x8d, 0x78,0xf7,0x87,0xee,0x45,0xf0,0xc9,0x41,0x98,0x25,0x3b,0xb1,0x83,0x12,0x4a,0x92, 0x8c,0xd6,0x5b,0x56,0x61,0xcd,0x5f,0x5f,0x1,0xef,0xda,0x6,0x98,0x8,0x48,0x58, 0x2e,0xb,0x3,0xb8,0x32,0x1e,0xc4,0x8e,0xce,0xe2,0xd8,0x37,0x9e,0x46,0x82,0x14, 0xa5,0x95,0x17,0xa6,0x5c,0x8,0x12,0x22,0x3f,0x7f,0xb9,0x4f,0x8,0x3b,0xac,0x98, 0xc8,0xe9,0x4c,0x6c,0xde,0x12,0x9e,0x41,0x83,0x59,0x65,0x7e,0x65,0x93,0x1b,0xb, 0xc,0x28,0x65,0xa,0x55,0x8c,0x4b,0x38,0xe9,0x51,0x53,0x19,0x8d,0x5c,0x31,0x4d, 0x9d,0x13,0x97,0x82,0xa2,0x45,0x5a,0x55,0xf2,0x5e,0x14,0x8d,0x49,0x31,0xc5,0x5e, 0x3c,0x65,0x10,0xc1,0x22,0xe3,0x68,0x75,0xd4,0x2a,0xed,0x5b,0x44,0x95,0x81,0x89, 0xca,0xc9,0xd7,0x2a,0x56,0x95,0x91,0xa1,0x39,0xb2,0xd6,0x3a,0xb0,0xfa,0x3,0xaf, 0x40,0xcf,0x5b,0x37,0x23,0x39,0x1a,0xe1,0xb,0x92,0x91,0x1f,0xee,0x43,0xfc,0xe8, 0x1c,0x98,0x5b,0x4b,0x22,0x66,0x2a,0xd0,0xf4,0xc,0xfc,0x60,0xf,0x7f,0x26,0x2f, 0xfd,0xda,0xad,0x30,0x3b,0x8d,0xac,0x7a,0x43,0x9e,0xb7,0x8c,0x41,0xcd,0x9a,0x7f, 0x49,0xc9,0xf2,0x0,0x15,0x41,0x33,0x3f,0xa1,0xca,0x91,0xac,0xa8,0xe1,0xa6,0xa2, 0x6,0x3a,0x65,0x8d,0xc1,0x6c,0xe7,0x87,0xbf,0xf8,0x38,0x76,0xff,0xf3,0xef,0xe1, 0x6b,0xaa,0xc7,0xea,0xbf,0xbc,0x9c,0x94,0x7d,0xf,0xcf,0x4c,0x9f,0x7d,0x6c,0x14, 0xc7,0xbf,0xf6,0x34,0x8e,0x7c,0xe9,0x51,0xd4,0xad,0x6f,0x44,0xd7,0x9b,0x36,0x22, 0x33,0x9b,0xc4,0x91,0x4f,0xef,0x40,0x62,0x68,0x16,0xeb,0xfe,0xfa,0x6a,0x34,0x5e, 0xdd,0xc3,0xcd,0x56,0x13,0xf7,0x1e,0xe5,0xbe,0x13,0x56,0xb2,0x63,0xbe,0xb9,0x4d, 0xe1,0x8a,0xbb,0xe5,0xda,0x3e,0xc,0x7d,0x67,0x2f,0x94,0x62,0x91,0x43,0x5d,0xe0, 0xc9,0x51,0xa4,0x26,0x93,0x70,0xf7,0x78,0x31,0xf6,0xb3,0xc3,0x50,0xf2,0x25,0xb5, 0x6e,0xae,0x60,0x42,0xfb,0x8d,0x6b,0x35,0x16,0xa3,0x8e,0x32,0xf6,0x8b,0x83,0x98, 0x79,0x74,0x88,0xd5,0x1f,0xe6,0x75,0xa6,0x88,0xaa,0x60,0xdd,0xdf,0x5d,0x81,0x8d, 0xff,0x74,0x2d,0x1,0x89,0xa9,0x4a,0x45,0x2a,0xf3,0x40,0x80,0xe5,0x5c,0x28,0x25, 0x59,0xf7,0x1,0xf1,0xcc,0x7e,0xa1,0x1a,0x54,0x48,0xf9,0xda,0xcd,0x7a,0x24,0x17, 0x9b,0x2d,0x56,0xbe,0x44,0x61,0xce,0x7c,0x53,0x65,0xbc,0xb2,0xc7,0x85,0x95,0xd1, 0x67,0x26,0xb5,0x72,0x35,0xe4,0x52,0x9e,0x98,0x12,0xcb,0xdb,0xd0,0x4e,0x59,0x59, 0xf5,0x3,0x56,0x53,0xad,0x6e,0x84,0x52,0xf4,0xb4,0x74,0x59,0x67,0x6f,0x2f,0x94, 0xa9,0xb0,0x1c,0x52,0xb3,0xc9,0x3,0x49,0xb2,0x6a,0x64,0xb3,0xba,0xb,0x8b,0x7c, 0x96,0x8d,0xc9,0x84,0x79,0xd1,0x77,0x65,0xe7,0x3d,0x7b,0x7a,0x4a,0xe5,0x74,0x96, 0x5,0xd8,0xaa,0xe7,0x9b,0x96,0x83,0x35,0xe8,0xa7,0xd5,0xe7,0xe4,0x5b,0xdd,0xe6, 0x36,0xac,0x7c,0xdf,0xc5,0x38,0x71,0xf7,0x1e,0x9e,0x91,0x9f,0x1e,0x8c,0x70,0x73, 0x66,0x89,0x26,0x7d,0xec,0x57,0x47,0xd0,0x7e,0xcb,0x3a,0x74,0xde,0xbe,0xde,0x50, 0x8d,0x86,0x3c,0x1f,0x61,0x7e,0x94,0x3b,0xa0,0xe6,0xa5,0x18,0xa0,0xf2,0x52,0xb1, 0x89,0x55,0xb9,0x5d,0x75,0x13,0x4e,0xe4,0xd0,0x34,0x4e,0x7c,0x6f,0x27,0xdc,0xd, 0x75,0xb8,0xe2,0x47,0x6f,0x45,0xf3,0x35,0x95,0x72,0x1a,0x6d,0x37,0xae,0x81,0x67, 0x43,0x3d,0x1e,0xbf,0xeb,0xa7,0x4,0x2e,0x4f,0xa1,0xfd,0xd6,0xb5,0x48,0xf4,0xcf, 0x21,0x74,0x74,0x6,0x9e,0xb5,0x4d,0xd8,0xf2,0x99,0x1b,0x75,0x55,0xd6,0xf3,0xf6, 0x2d,0x3c,0x2,0x4b,0x28,0x83,0x99,0x52,0x36,0xa9,0xa8,0x8a,0xca,0x7f,0x49,0x7, 0x6a,0x56,0xd7,0x21,0x74,0x68,0x12,0x56,0xc1,0x86,0xe8,0x73,0x13,0x88,0x1e,0x99, 0x41,0xb1,0x90,0xc3,0xec,0x93,0xc3,0xf4,0xc1,0x48,0xdc,0xf4,0xe2,0xea,0xf0,0xa1, 0xf5,0x86,0x15,0x15,0xe3,0xb,0x81,0xc2,0xdc,0xa3,0x63,0x28,0x12,0x23,0x30,0xb1, 0x96,0xc2,0x4,0x2a,0xec,0xfd,0x8d,0xff,0x70,0xd,0x7,0x94,0x6a,0x7e,0x50,0xee, 0x52,0x5f,0xae,0xed,0xc5,0x4c,0x35,0xe5,0xfc,0x90,0xb2,0x39,0x5f,0xac,0x52,0xb6, 0x22,0x81,0x84,0xc5,0x63,0xd1,0x59,0x15,0x63,0x20,0xe9,0xe9,0x94,0xa,0x2a,0x3a, 0xf9,0xd0,0x6b,0x94,0xc0,0xe4,0xb1,0x41,0xb4,0x99,0xf4,0x33,0x95,0xb2,0x39,0xe4, 0x82,0xa9,0x8a,0x79,0xa8,0x2a,0x8e,0xd6,0x65,0x5b,0x45,0x97,0x60,0x2e,0x3b,0xac, 0x0,0xbd,0x41,0xd9,0xb9,0x70,0xd4,0xab,0xc7,0x3b,0xad,0x3d,0x30,0x8b,0xbe,0x32, 0xe7,0x38,0x27,0x63,0x96,0xef,0x45,0x5c,0x2c,0x4,0x41,0xa8,0x8a,0x7e,0xd3,0x40, 0xb4,0x3c,0x37,0x6a,0xe2,0x2b,0xb1,0x17,0xaf,0xb,0xeb,0x3f,0x7c,0x15,0xfc,0x97, 0x77,0xe2,0xa9,0xb7,0xfd,0x1c,0xe9,0x91,0x28,0x67,0xa0,0xc5,0x64,0x1a,0xc1,0x5d, 0xa3,0xe8,0xb8,0x6d,0xad,0xca,0x26,0xd,0x31,0x64,0x69,0xc2,0xa,0x45,0xee,0x7a, 0x29,0x5e,0x98,0xf1,0x34,0x57,0x2b,0x9,0x52,0x4,0x33,0x8f,0x8f,0x20,0x32,0x38, 0x89,0xae,0xd7,0xae,0x83,0xab,0xaf,0x8e,0x57,0x8,0x8e,0x9d,0x8,0x22,0xce,0xb6, 0x81,0x10,0xea,0xd6,0xb5,0xc2,0xdb,0xee,0x47,0xf0,0xe0,0x4,0x22,0xfb,0xa7,0xe1, 0x68,0xf7,0x92,0xe2,0xb0,0xf3,0xfd,0x6,0x7f,0xf0,0x2c,0x32,0x33,0x9,0x5d,0xa1, 0x5b,0x5c,0x56,0xdd,0x84,0xa2,0x6,0x3b,0xc9,0xaa,0x79,0x85,0xad,0xdc,0x6b,0xed, 0x34,0xbe,0x9f,0x67,0xc4,0xb3,0x7e,0x21,0xcc,0xa9,0x1e,0x23,0x80,0x1a,0xb8,0x7b, 0x37,0x8f,0x1c,0x52,0x8f,0x91,0x79,0x67,0xc7,0xba,0x4b,0x5a,0xf5,0x6b,0xcc,0x46, 0x52,0xdc,0x9f,0x22,0xaa,0xa9,0xda,0x90,0x8,0x48,0x1a,0xae,0xe8,0x85,0xc9,0x6e, 0xa9,0xf0,0x92,0x2a,0xa0,0x28,0xd7,0x20,0x63,0x52,0x48,0x15,0x51,0x88,0xe5,0xb4, 0xb0,0x1,0xa5,0x4a,0xf1,0x57,0xcc,0x5f,0x56,0xbf,0x5d,0x6f,0xb6,0xcb,0xfe,0x4d, 0xd,0x85,0x2a,0x11,0x60,0x5a,0x44,0x5b,0xb9,0x5b,0xa5,0x8d,0xf6,0x35,0xd9,0x54, 0x4e,0xc3,0x12,0x8,0xf3,0xb9,0x2,0xaf,0x82,0xac,0x2,0x90,0x30,0xf,0x2b,0xbc, 0xee,0xcb,0xb4,0xab,0x29,0xe9,0x2d,0x7e,0xb5,0xc2,0xfc,0xe7,0xe4,0xb3,0x63,0x2c, 0xa2,0xc6,0xb1,0x5,0x16,0x73,0x9d,0xf6,0xaa,0xfc,0xbc,0xc6,0x5e,0xc8,0x68,0x14, 0x8d,0x8e,0x8,0x55,0xbc,0x4f,0x7f,0x47,0xa9,0x4a,0x15,0xd5,0xcc,0x7d,0x82,0x20, 0x57,0x60,0x52,0xf7,0xfb,0xcb,0x68,0xda,0xde,0x85,0xbe,0xbb,0xb6,0xd0,0x22,0xa0, 0xa8,0x47,0x3,0x26,0x87,0xa3,0xc8,0xc5,0xb2,0xc6,0x97,0xcf,0x90,0xa5,0xca,0x4f, 0xf1,0x22,0x75,0x71,0x34,0x98,0xca,0xf3,0x59,0x8d,0xea,0xed,0x15,0x5,0x5e,0x7, 0x2b,0x76,0x70,0x86,0x38,0x82,0x8d,0x97,0x47,0x99,0x7d,0x6a,0x8c,0xe7,0x73,0x28, 0x9a,0x52,0x91,0x25,0x11,0x12,0xed,0xcf,0x0,0x84,0xad,0xe2,0x53,0xa3,0x31,0xf8, 0x2f,0x6e,0xc7,0xa6,0x8f,0x5f,0x83,0xdd,0x1f,0xf9,0x2d,0x1e,0x7f,0xe7,0xf,0x48, 0xc1,0xf7,0xa1,0xf1,0xf2,0x3e,0xb4,0x5e,0xdb,0x87,0xe6,0xeb,0x56,0xe8,0xc9,0x6e, 0x42,0xb9,0x5c,0x87,0xa6,0xa1,0x4d,0x2e,0xb,0xda,0x6f,0x5e,0x8d,0x89,0x5f,0x1f, 0xe1,0xf5,0xbf,0x2c,0xa2,0x3,0xa3,0xf7,0x3c,0x87,0xf4,0x44,0x2,0x42,0x51,0xf5, 0x53,0x58,0x68,0x95,0xdb,0x75,0xe7,0x46,0x5a,0xc9,0x4a,0xba,0x89,0xae,0x94,0x2d, 0xa9,0x39,0x28,0xe5,0x4c,0x4c,0x52,0xe6,0xac,0xb3,0x60,0x95,0x56,0xd4,0xb,0x24, 0xaa,0xd1,0x69,0x6a,0x43,0x2f,0xe6,0xa8,0x1e,0xfa,0x29,0x8d,0x3f,0x99,0x80,0x24, 0x58,0x55,0x95,0x2e,0x2b,0x27,0xb5,0x49,0x77,0xb4,0x7a,0x79,0xa8,0x33,0x8f,0x54, 0xa3,0x99,0x48,0xe,0x45,0x10,0x3d,0x1e,0xe0,0xa1,0xd0,0x65,0x2b,0x61,0xd9,0xfc, 0xc5,0xb2,0xc9,0x6d,0x7e,0x2f,0xc1,0x44,0x80,0x47,0x80,0x9,0xc5,0x22,0x82,0xbb, 0x27,0x50,0x2a,0x14,0x21,0x99,0x4d,0x9a,0x72,0x55,0x19,0xa0,0xdf,0xb5,0x1d,0x2e, 0xc7,0x3a,0xc4,0x53,0xcf,0x41,0x2a,0x47,0xe0,0x29,0xca,0xf3,0xc8,0xfb,0x5b,0xc8, 0x6c,0x4,0x5e,0x76,0xc6,0x66,0xf6,0xc1,0xef,0xb9,0x46,0xf,0x9,0x56,0xf4,0xb4, 0xcc,0x25,0x8e,0xbe,0xa0,0x5a,0xb3,0x50,0x15,0x32,0x2e,0x88,0xb,0xb8,0x8a,0x30, 0x9f,0x17,0xaa,0x99,0xf2,0xd5,0x4e,0x7d,0x61,0xde,0xda,0x8d,0x65,0xe9,0xab,0x61, 0xcb,0x6a,0x4c,0x75,0xa9,0x40,0x9f,0x72,0x51,0x36,0x54,0xa4,0x21,0x4b,0x11,0x96, 0x8f,0xf2,0x9e,0x97,0xf2,0x5,0x2e,0x73,0xa6,0x32,0x5f,0xa9,0xc9,0xa4,0xc,0x73, 0x73,0x29,0x52,0xba,0x16,0x38,0x3b,0x7d,0xf0,0xae,0xac,0x47,0x4d,0x5f,0x3,0xbc, 0x2b,0xea,0x79,0x2b,0xd8,0x1a,0x52,0xa,0x9e,0x5e,0x1f,0x3a,0x6f,0xd9,0x80,0x95, 0x77,0x6d,0x87,0xbb,0x47,0x35,0xb5,0xac,0x78,0xcf,0xa5,0xb8,0xe2,0x7b,0x77,0xa2, 0xf3,0xd6,0xad,0x88,0x1d,0xd,0xe2,0xd9,0xcf,0xfc,0x1a,0x8f,0xbc,0xe3,0x7,0x38, 0xf1,0xdd,0xdd,0x98,0x5f,0xc8,0x5d,0x80,0x56,0xc,0x8a,0x9b,0x3c,0x1a,0xaf,0xea, 0x86,0x67,0x65,0x1d,0xa9,0x99,0x2,0x4c,0x92,0x19,0xa1,0x7d,0x93,0x28,0x4,0xd3, 0x6a,0xbf,0x11,0xfa,0xcf,0xdd,0x5d,0x29,0x71,0x5f,0x16,0x33,0x81,0x91,0x95,0x95, 0x1a,0x81,0x6,0x32,0xb9,0x22,0xa2,0xfb,0x27,0x75,0x35,0x58,0xee,0x88,0xa8,0x97, 0x87,0xd1,0xee,0x8f,0xd9,0xf4,0xfb,0xbf,0xfe,0x34,0x7,0x19,0x89,0x15,0x72,0xa4, 0x73,0x94,0x4a,0x39,0x52,0x6a,0xa5,0x8a,0x82,0x67,0x8a,0x6f,0x55,0x1d,0x9c,0x2d, 0x5e,0xc2,0xd2,0x3c,0x77,0x2c,0xe7,0x88,0x19,0x1d,0xf8,0xcc,0xc3,0x90,0x4b,0x25, 0xdd,0x51,0x5d,0x8e,0x1a,0x63,0xf7,0x50,0xb7,0xbd,0x9d,0xe8,0x12,0x73,0x38,0xc8, 0xc4,0x9e,0x24,0x5e,0x76,0x66,0xe4,0xbf,0xe,0xcd,0xc7,0x6d,0xda,0x2c,0xa4,0xf4, 0x5b,0x6b,0xdf,0x82,0x42,0x71,0x9e,0xfd,0x8,0x50,0x5e,0xb8,0xe9,0xab,0x44,0x7a, 0xb9,0xc1,0x7b,0x13,0xea,0x3c,0xdb,0xe7,0x33,0xcf,0x17,0x38,0x6e,0x39,0xe3,0x5f, 0x5,0x60,0x99,0xdf,0x63,0xb5,0x71,0x8c,0x9d,0x83,0x95,0xbe,0x9f,0x7a,0x74,0x40, 0x4b,0x2f,0xaa,0x54,0x9,0x28,0x27,0x3b,0x9,0x55,0xf7,0x37,0xbd,0x63,0x88,0x7, 0xe,0x30,0xb,0x20,0x3,0x3c,0x47,0xa3,0x93,0x27,0x59,0x1a,0x62,0xc8,0x59,0xa, 0xab,0xa9,0x74,0x1b,0x5e,0x22,0xf9,0x28,0xcb,0x9a,0xa9,0x8,0xa8,0xd4,0x5b,0x52, 0x4e,0x36,0x9c,0xe8,0xd8,0x6a,0xad,0xb1,0xc3,0xe4,0xb3,0xf1,0xbc,0x8e,0x55,0x1f, 0xbc,0x4,0x1d,0xb7,0x6e,0x80,0x9c,0x2f,0x9d,0xc,0x44,0xdc,0x62,0x45,0xeb,0x79, 0x87,0x45,0x7f,0xb5,0xfd,0xe6,0xb5,0x3c,0x97,0x24,0x35,0x1a,0xc5,0xc8,0xcf,0xf6, 0xe1,0xc0,0x67,0x1f,0xc6,0x81,0x4f,0xfd,0x1,0x75,0x5b,0x5a,0x51,0xbb,0xa9,0xa5, 0xea,0x94,0x95,0x15,0xac,0xb3,0xbd,0x16,0xcd,0x37,0xad,0xe2,0xbd,0x55,0x2c,0x25, 0xb,0xcc,0x2c,0x34,0x58,0x50,0xd5,0x18,0x33,0xb3,0x37,0x5c,0xd3,0xad,0xb5,0x9b, 0x55,0x74,0xfb,0x3d,0xab,0x6e,0xeb,0x59,0x5d,0x8f,0x19,0x52,0x64,0xdc,0x2f,0x24, 0xb,0x98,0xfe,0xef,0xe3,0xc4,0x42,0xf6,0xa3,0xe7,0xcd,0x9b,0xe6,0xaf,0xb6,0xe9, 0x47,0x2e,0x9c,0xc2,0x91,0x7f,0x7f,0x2,0xfd,0x5f,0x7e,0x12,0x72,0xb2,0x4,0xb3, 0xc9,0xca,0xfd,0x1a,0xdc,0x49,0x4f,0x77,0x9a,0x9a,0x89,0xab,0x77,0xa5,0x11,0x36, 0x56,0xac,0xd2,0x7f,0x55,0x3b,0x86,0x7e,0x1c,0xe4,0x1d,0xc,0x79,0x86,0xf8,0x2f, 0x8f,0xf0,0xc6,0x5e,0xab,0xfe,0xd7,0x76,0x78,0x7a,0xea,0xab,0x3a,0x2e,0x2,0x2d, 0x37,0xf4,0xe1,0xf8,0x37,0x9e,0x42,0x61,0x36,0xcb,0x41,0x88,0x99,0xd7,0xf6,0x7d, 0xec,0x7e,0x14,0x22,0x19,0xf4,0xde,0x75,0x11,0xcc,0xf6,0x4a,0x74,0x53,0xb3,0xf7, 0x66,0xc,0xda,0xbe,0x8c,0x7c,0x71,0x82,0x40,0xd4,0xa4,0x99,0x4,0x35,0x3e,0xa3, 0xb5,0x8,0x50,0xca,0xe,0xa,0x88,0x1a,0x13,0xd3,0xf8,0x82,0x52,0xa9,0x56,0x50, 0xae,0x26,0xc0,0x80,0xb1,0x58,0x2c,0xc0,0x61,0x69,0x40,0x97,0xff,0x2e,0x48,0x92, 0x5d,0x57,0xf7,0x7a,0xf2,0x26,0xbf,0x4f,0x41,0x37,0xd9,0x9d,0x61,0x89,0x51,0xf5, 0xf1,0x8,0x30,0xdb,0x2c,0x9a,0x49,0x8b,0x0,0x98,0xe6,0x2c,0x39,0x1a,0xac,0x2e, 0x4,0xcd,0xff,0x1d,0xff,0xd5,0x21,0xec,0xfd,0xc4,0x83,0xb4,0xa0,0xd8,0x88,0xde, 0x77,0x6e,0x85,0xff,0xa2,0xd6,0xaa,0xf9,0xaf,0x9c,0xf3,0xc4,0x3d,0xbb,0x31,0xfc, 0xe3,0x3,0x3c,0xc,0x9b,0xb3,0x13,0xfa,0x80,0xbd,0x9b,0x9b,0x79,0x3,0x31,0x43, 0xc,0x39,0x4b,0x79,0x1f,0xd4,0xc6,0x5b,0x2f,0x69,0x59,0x16,0x4f,0x74,0x39,0x3b, 0x9e,0x27,0x1b,0x9a,0x4d,0xb,0x40,0x45,0xe0,0xab,0x4d,0x16,0xad,0xc5,0x42,0x42, 0xeb,0xb7,0xb7,0xe1,0xf0,0xdd,0x39,0x4c,0xdc,0x7f,0x1c,0x9d,0xb7,0x6f,0x84,0xc5, 0x71,0xf6,0x2b,0x49,0xe6,0x5b,0x61,0x5b,0xcd,0x6a,0x3f,0xd2,0x93,0x51,0xf4,0x7f, 0x6f,0x37,0x22,0x7,0x3,0x15,0x50,0x59,0x60,0xee,0x61,0xa5,0xd7,0x1b,0xaf,0x5e, 0x81,0xfe,0x6f,0xec,0x46,0x31,0x53,0x24,0x85,0x63,0x56,0x23,0x8c,0x68,0xe9,0x6d, 0xf2,0xda,0x78,0xf,0x8e,0x8a,0xc6,0xd7,0xc0,0x86,0x14,0x5c,0xf3,0x6b,0x56,0x60, 0xe8,0x9e,0xbd,0x28,0x26,0x8a,0xa4,0x9c,0x2d,0xc8,0xcc,0xa5,0xb1,0xfb,0x2f,0xee, 0x45,0xe0,0x8f,0x83,0x68,0xbe,0xbe,0x17,0xd6,0xfa,0x1a,0xe4,0x43,0x71,0x4,0x9f, 0x9d,0xc2,0xec,0x8e,0x61,0x84,0x77,0x8e,0x11,0xd3,0x10,0x78,0x24,0x59,0x89,0x94, 0x30,0x9d,0x88,0x77,0x3c,0x64,0x26,0x2b,0x96,0x4f,0xa1,0xdc,0xbe,0x81,0x2b,0x68, 0xa6,0x31,0x4d,0x4,0x2,0x7d,0x6f,0xbf,0x18,0x93,0x7f,0x3c,0x81,0xe2,0x6c,0x1a, 0x16,0x52,0xd4,0x2c,0xc0,0xec,0xf8,0x97,0x9f,0xe2,0xe3,0xd7,0x6c,0x69,0x81,0xdd, 0x6f,0x43,0xe3,0x75,0x2b,0xd0,0xfe,0xda,0x35,0xa8,0xbf,0xa4,0x83,0x47,0x31,0xf5, 0x7f,0xfb,0x19,0xbe,0xa,0x37,0x8b,0x16,0xa4,0xc6,0x22,0x78,0xf6,0x6f,0x7f,0x87, 0x91,0x9f,0x1e,0x80,0x6f,0x43,0x33,0xaf,0x6b,0xb6,0xf2,0x2f,0x2e,0x83,0xa7,0x65, 0x35,0x56,0xb5,0x7c,0x18,0x7,0x46,0xff,0x86,0xc6,0x54,0x93,0x3f,0xcb,0x79,0x2a, 0xea,0xc2,0x9e,0x81,0xa9,0xc8,0xa3,0xd4,0x4,0x51,0xcb,0x97,0x91,0x25,0xfd,0x3d, 0xb5,0x3f,0xd,0x5d,0xb7,0xa6,0xf9,0x99,0x7f,0xa2,0x44,0x7f,0xb7,0x37,0xdc,0x85, 0x7a,0xef,0xd5,0xda,0x14,0x57,0xc2,0x94,0xab,0x4b,0xc8,0xcc,0x4f,0x34,0x5c,0x3c, 0xef,0x46,0x58,0xf0,0x8e,0x54,0x67,0x1,0x8f,0x52,0x96,0x55,0xc6,0x11,0x3d,0x32, 0x8b,0xc4,0x48,0x4,0x9e,0xae,0x72,0x30,0x80,0x8c,0xe1,0x1f,0xec,0x47,0x7a,0x34, 0x82,0x63,0x5f,0x7c,0x2,0xd3,0xbf,0x39,0x8e,0xfa,0xab,0xbb,0x51,0x7b,0x71,0x2b, 0x5c,0xed,0x1e,0x1e,0x19,0x97,0x1c,0x89,0x61,0xee,0xf1,0x11,0x4c,0xd1,0xf3,0x54, 0x8a,0x13,0xfb,0x23,0x50,0x29,0x20,0x87,0xba,0xf5,0xed,0x68,0xbe,0xc1,0xe8,0xa9, 0x62,0xc8,0x59,0xcb,0x37,0x69,0xfb,0xc1,0xcb,0xe1,0x42,0x97,0x7,0xa8,0x8,0x9a, 0x59,0xa8,0x58,0x22,0x5,0x10,0x25,0xa5,0x17,0x45,0x29,0xa5,0x45,0x66,0x89,0x2, 0x82,0xfb,0x27,0xb1,0x9b,0x56,0xe2,0xb5,0x1b,0x9a,0x70,0xf9,0x4f,0xef,0x40,0xd3, 0xb7,0x57,0xe1,0xf8,0x8f,0x9e,0x81,0xd5,0xe7,0x42,0xef,0xbb,0xb7,0xc2,0xdd,0xe9, 0xe5,0x0,0xc0,0x12,0x1,0xd9,0xca,0x5b,0x30,0x57,0xf2,0xe5,0x13,0xc3,0x21,0x4, 0xf7,0x4d,0xf0,0x84,0x48,0x77,0x37,0x29,0x1b,0x13,0xbd,0xd6,0x1f,0x46,0x8c,0x14, 0x8d,0xc9,0x6d,0x86,0xc5,0x6f,0x9b,0xa7,0xb5,0xca,0x6e,0xdc,0x72,0x45,0x30,0xff, 0x25,0xad,0xa8,0xbf,0xb4,0x1d,0xd3,0x8f,0xf6,0x33,0x5e,0xc0,0xcd,0x53,0x79,0xfa, 0xaf,0xfd,0x35,0xeb,0x8,0x8c,0x1a,0xaa,0x30,0xa5,0x62,0x5a,0x69,0xbb,0x71,0x35, 0xba,0xdf,0xbe,0x5,0xfd,0x5f,0x7b,0x9a,0x14,0x30,0x2b,0x27,0x62,0x46,0x21,0x94, 0xc6,0xd0,0xb7,0xf6,0x90,0x22,0x3f,0xc8,0x59,0x94,0x48,0xab,0x61,0xe6,0x98,0x67, 0xca,0x5b,0xe2,0xf0,0x41,0x4a,0xda,0x65,0x82,0xc3,0xe3,0x41,0x7e,0x2e,0xc9,0x57, 0xcb,0xac,0x8f,0x7a,0x78,0xf7,0x4,0xdd,0x97,0xc,0xc9,0x2c,0xea,0x2a,0xb5,0xe9, 0x9a,0x1e,0xf4,0xde,0xbe,0x19,0xc7,0xbf,0xb6,0x13,0xf9,0x52,0x9,0x26,0x52,0x84, 0x44,0x9,0x10,0x3d,0x3c,0x83,0xf0,0xe1,0x0,0x5d,0xf,0x81,0x99,0xc7,0xce,0x41, 0x85,0xe5,0xaa,0xac,0xff,0xd8,0x55,0xb4,0x8a,0x8f,0x22,0xf0,0xd0,0x71,0x3a,0xdc, 0x4a,0x6c,0x88,0xc0,0x31,0x23,0xf3,0x6,0x56,0x6c,0x33,0x7b,0x1c,0xe8,0x7e,0xdb, 0x46,0xa0,0xd5,0x8d,0xce,0xc6,0xf7,0x20,0x99,0x1b,0xc1,0xf0,0xcc,0x7f,0xd2,0xb5, 0xd3,0x38,0xa2,0x59,0xab,0x4,0x56,0xe9,0x13,0x5f,0xe,0xcf,0x55,0x34,0x46,0xc2, 0x67,0x8b,0x9b,0xec,0x54,0x86,0xc5,0x59,0x27,0xef,0x91,0xa2,0xa0,0xd1,0x7b,0x3d, 0xba,0x1b,0xfe,0x5c,0xf3,0x3b,0x95,0xc1,0x43,0xd0,0xe7,0x57,0x2d,0x3a,0x23,0xe3, 0xac,0x93,0xd7,0xab,0x8a,0x3c,0xd6,0xac,0x6b,0x26,0x36,0x6a,0x85,0x1c,0xa7,0xf9, 0xa1,0xff,0x52,0x3,0x21,0x4c,0xde,0x7f,0xc,0x9e,0x3f,0xbf,0x8c,0xef,0x3a,0xf2, 0xf3,0x3,0x98,0xdd,0x35,0xae,0xf5,0xa4,0xa7,0xcf,0x7d,0x24,0x88,0xf8,0x77,0x43, 0x18,0xff,0xe9,0x21,0x62,0x20,0x92,0xda,0xd3,0x26,0x57,0xe2,0xbe,0x3a,0xfe,0x65, 0x13,0x59,0x45,0xe5,0x2,0x6c,0xb5,0x1e,0xac,0xfb,0xc8,0x15,0xa8,0xe9,0xf1,0x1b, 0xaa,0xd2,0x90,0xb3,0x11,0xd6,0x6c,0xeb,0x43,0x2f,0x97,0x8b,0x5d,0x46,0x19,0xf5, 0xa,0x8a,0xb9,0x2c,0xe,0x7e,0xea,0x61,0x1c,0xfa,0xb7,0xc7,0x39,0x1b,0x90,0x78, 0xd9,0x73,0x11,0xc5,0x3c,0xad,0x1d,0xc3,0x31,0x94,0xa2,0xb5,0x70,0xd6,0x7b,0xb1, 0xf5,0x93,0x37,0x60,0xd7,0x87,0x7e,0x8d,0x43,0x5f,0xfd,0x23,0x86,0xbe,0xbf,0x1b, 0xb5,0x1b,0x5b,0x78,0x32,0xa1,0xe4,0xb2,0x60,0xf3,0x3f,0xbe,0x1a,0xde,0xf5,0x8d, 0xfa,0xd8,0x63,0xbf,0x3c,0x8c,0x67,0xfe,0xf7,0xbd,0x70,0xd5,0xf9,0xe0,0x27,0x50, 0x82,0xa4,0xae,0xfe,0x63,0xd3,0xb3,0x58,0xf3,0x3f,0x5e,0xa9,0xf5,0x36,0x87,0x9e, 0xb7,0x21,0x6a,0x28,0x51,0x2e,0x5e,0xec,0x6c,0xf6,0xa0,0xed,0x86,0x15,0xdc,0x9c, 0xc5,0x4c,0x39,0x2c,0x81,0x4f,0x22,0x45,0xd6,0xfd,0x8e,0x8b,0x38,0x73,0x59,0xe0, 0xa,0x56,0xff,0x25,0x45,0xbe,0xed,0xff,0xde,0x4,0xd1,0x26,0xa1,0xff,0x2b,0xbb, 0xa0,0x14,0xa,0x5c,0xe9,0x31,0x29,0xc6,0xf3,0x50,0xa1,0x4b,0xd2,0x9d,0xcc,0xac, 0x97,0x8,0x6b,0x61,0xbb,0xe9,0x13,0xd7,0xc3,0xd6,0x5c,0x83,0x3d,0x1f,0xfc,0xd, 0x32,0x81,0x24,0x57,0xbd,0x91,0x3d,0x13,0x28,0xc6,0x72,0x90,0xfc,0x26,0xcd,0xb1, 0xaf,0xf0,0x48,0xb2,0xad,0xff,0xf6,0x5a,0x38,0xdb,0x7d,0x38,0x4a,0x73,0x95,0x8b, 0xa4,0xb9,0xf3,0x5e,0x64,0x3e,0x1c,0x85,0xce,0x25,0x99,0x68,0x1c,0x97,0x3e,0x7, 0xac,0x40,0xe7,0xe5,0xdf,0xbd,0xd,0xbb,0x3e,0x70,0x2f,0x26,0xef,0x3b,0xa6,0x16, 0xb2,0x24,0xc0,0x62,0x60,0x56,0x42,0x16,0xce,0x56,0x7,0xcd,0x9d,0x6a,0x6,0x33, 0x49,0x2e,0xac,0xef,0xf8,0x57,0x38,0x2c,0x6d,0x38,0x3a,0xf9,0x49,0x2,0xad,0x24, 0xf,0x8d,0x56,0x2b,0xe,0x28,0xba,0x29,0xb2,0x1c,0x21,0xa5,0x17,0xe7,0xd4,0x41, 0xa1,0xc4,0x93,0x27,0x9,0xde,0xd1,0x51,0x7f,0x27,0xd6,0x77,0x7e,0xe,0x36,0x4b, 0xb3,0x16,0x98,0x50,0x55,0xf2,0x9e,0x57,0x27,0x26,0x36,0x24,0x9b,0x78,0xd0,0x83, 0x52,0x52,0x4e,0x7a,0x22,0x16,0x7d,0x56,0xaa,0x26,0xbc,0x99,0xc0,0xb5,0xa6,0xdb, 0x8f,0xe8,0xfe,0x69,0xe,0x5a,0xb9,0x6c,0xe,0x63,0xdf,0x7f,0xe,0x9d,0x37,0xaf, 0x51,0x3,0x1a,0xac,0x4,0xd2,0x6d,0x6e,0x24,0x7,0x82,0x34,0xf1,0x26,0x3e,0x47, 0xec,0xaa,0x59,0x1,0xd3,0x62,0xa6,0x52,0xa6,0x86,0xfb,0x51,0x98,0x51,0x55,0xc9, 0xc3,0xbd,0xc2,0x8f,0x6d,0x5f,0xb8,0x9,0x6d,0x37,0xad,0x3b,0x47,0xd5,0x4,0xc, 0xb9,0xc0,0x85,0xd5,0x1d,0x62,0x7e,0x94,0xfc,0xcb,0xe5,0x82,0xa5,0x4f,0x90,0x5c, 0xe8,0x9f,0xa,0x6b,0x76,0x35,0xb7,0x7b,0x1c,0xc5,0xb9,0x1c,0x2c,0x3e,0x3b,0x29, 0x6b,0x85,0x2b,0x4,0x81,0x94,0x32,0x2d,0xac,0x61,0x22,0x85,0x67,0xf5,0x3a,0xe0, 0x5e,0xef,0x47,0xd7,0x1d,0x9b,0xe0,0xe9,0xf3,0xa3,0xe9,0xd5,0x7d,0xa4,0xec,0x2c, 0xc8,0x4e,0xc4,0x91,0x9c,0x20,0xe6,0x31,0x1e,0x44,0x31,0x94,0x43,0xf3,0x75,0xbd, 0xc4,0x48,0xea,0x2a,0x66,0x15,0x1b,0x29,0xc1,0x94,0xc2,0xcb,0xca,0xc7,0x46,0x83, 0x48,0x4f,0x44,0x79,0x98,0xef,0xea,0xf,0x5c,0x81,0xcd,0x9f,0xb8,0x16,0x16,0x97, 0x4d,0x37,0xdd,0xa8,0xbe,0x1,0xad,0xba,0xb0,0x50,0xc9,0x8d,0x61,0x9,0x87,0xc1, 0x3,0xe3,0x3c,0x1a,0xcb,0xe4,0x36,0xa1,0xe5,0xaa,0x15,0x58,0xfd,0xbf,0x2e,0x53, 0x93,0xb,0x15,0x2d,0x65,0xb3,0xac,0x30,0xb5,0xb1,0x24,0xb3,0x99,0x47,0x97,0x59, 0x1b,0x9d,0xc4,0x8c,0x66,0x9,0x90,0x8a,0x4,0x2e,0xec,0xed,0x92,0x3a,0x26,0xad, 0xec,0x4d,0x76,0x1,0x26,0x62,0x4a,0x1d,0x6f,0xd8,0x80,0x6d,0x5f,0xba,0x19,0xdd, 0xb7,0x6d,0xe4,0x65,0x55,0xc6,0x7f,0x7f,0xc,0xe9,0x48,0x1c,0x76,0xaf,0x13,0x96, 0x7a,0x37,0x5a,0xdf,0xb0,0x6,0x76,0xd6,0xab,0x5e,0xb,0x5c,0xe0,0x90,0x64,0x36, 0xa1,0xf1,0x95,0xdd,0x68,0xb8,0xa6,0x93,0x5f,0x7f,0x76,0x2e,0xc5,0x9d,0xd5,0x25, 0x3a,0x8f,0x99,0x58,0x4a,0xef,0x9d,0x5b,0x50,0xb3,0x46,0x63,0x52,0x2c,0x1f,0x83, 0xd8,0x48,0xeb,0x6b,0x57,0xc3,0xdd,0xeb,0x27,0x80,0xce,0xa2,0x90,0xcd,0xf2,0xfb, 0x29,0x14,0xf3,0xf0,0x6e,0x6c,0xe5,0xfb,0x9b,0x9c,0x16,0x55,0xc9,0x12,0x3b,0xa9, 0x73,0xbf,0x2,0xe,0x6b,0xf,0xa2,0xc9,0xe7,0x90,0xcf,0x87,0x80,0xaa,0xd0,0x67, 0x54,0xf9,0x2d,0xd4,0xf2,0x60,0xcc,0x7f,0x52,0xe2,0x11,0x6c,0x45,0x1a,0xd3,0x6c, 0x6e,0xc4,0x8a,0xe6,0xbf,0xc3,0xda,0xf6,0x4f,0xc3,0x6a,0xae,0xd5,0xd9,0x4d,0x75, 0xe5,0xdf,0x99,0xc7,0x87,0x90,0x1a,0x89,0xc0,0xe6,0x26,0xa6,0x48,0x73,0x5a,0xbf, 0xad,0x13,0xad,0x37,0xae,0x3c,0xb,0x56,0xab,0xe8,0x9f,0x91,0xd9,0x69,0x43,0xb4, 0x3f,0x80,0xb9,0x67,0x46,0x55,0xd3,0xa0,0x93,0x98,0x67,0x9d,0x3,0x7e,0x9a,0x17, 0x57,0x5b,0xd,0xbc,0xab,0x1a,0x8,0x1c,0xd6,0xc0,0x46,0xc,0x2c,0x17,0xca,0xa0, 0x94,0x27,0xc0,0x93,0x4b,0x7c,0x9e,0xe4,0xb2,0xf1,0x8d,0xc0,0xc8,0xec,0x10,0xe9, 0x38,0x27,0xda,0x6f,0x5f,0x87,0x6d,0x9f,0xbf,0x9,0x4d,0xf4,0xf9,0xa,0x1a,0x23, 0x32,0xaa,0x14,0x1b,0x72,0x6,0x79,0x33,0x6d,0x3b,0x5f,0x56,0x8b,0x78,0x45,0x51, 0x2e,0xf8,0xaa,0x76,0x4c,0xb9,0xb1,0x95,0x6b,0xa5,0xf6,0x46,0x75,0x29,0x7b,0x16, 0xd5,0x23,0xea,0xfd,0xde,0x45,0x8b,0xa8,0x5,0x85,0x6a,0xf5,0xa4,0x12,0x39,0x24, 0x49,0x39,0x15,0x52,0x39,0x58,0xfd,0xe,0xb8,0xda,0x6b,0x48,0xd9,0x5b,0x74,0xe5, 0x5e,0x5e,0x59,0x67,0x2,0x9,0xa4,0xc6,0xe3,0xdc,0x8e,0xee,0xea,0x74,0xc3,0x5a, 0xeb,0xd6,0x15,0x6e,0xb5,0x8d,0x1f,0x9a,0xeb,0x58,0xeb,0x5f,0xa8,0x9a,0x68,0xe8, 0xfa,0x52,0xe1,0x4,0xe4,0x5c,0x91,0x27,0x23,0x9a,0x3d,0x4b,0x8b,0xa,0x62,0xfd, 0x52,0xa6,0x1f,0x19,0x44,0xe8,0xd9,0x49,0xe4,0x66,0x93,0x7c,0x25,0xcf,0x6a,0x7d, 0xd5,0xac,0xf2,0xa3,0xe1,0x8a,0x1e,0xf8,0xd6,0x35,0xe8,0xf7,0x93,0x4b,0xa6,0xd1, 0xff,0xcd,0xdd,0x28,0x25,0x8b,0xc4,0xa2,0xba,0xe0,0xdd,0xd4,0x2,0xb,0xeb,0x56, 0x28,0x6a,0xb9,0x25,0x42,0x75,0xb8,0x6f,0x25,0x38,0x36,0x39,0x12,0x26,0xe5,0x3a, 0x82,0xe8,0xbe,0x19,0x1e,0xf5,0xd5,0xfb,0xee,0x6d,0x1c,0x7c,0x17,0x34,0x98,0xd1, 0x58,0x42,0x89,0x27,0x72,0x6,0x1e,0x1f,0x41,0xec,0x70,0x10,0xb5,0x5b,0x5b,0xd0, 0xc3,0x40,0xc5,0x7e,0x32,0x31,0x8e,0xa5,0xe,0x62,0x30,0xf0,0x65,0x4,0xe3,0xf, 0x21,0x9b,0x9b,0xa6,0x6b,0xcf,0xa9,0x18,0x82,0xca,0xb0,0x3c,0x94,0x82,0x40,0xd2, 0x66,0xae,0x47,0x8d,0x6b,0x3b,0x56,0x36,0x7f,0x14,0xfe,0x9a,0xed,0x55,0x9e,0x75, 0x54,0x85,0x86,0xab,0x57,0x9c,0x25,0x76,0x25,0xa7,0xb,0x3c,0x7f,0x86,0x85,0x6c, 0xb3,0x72,0x28,0x36,0xaf,0x3,0x67,0xea,0x5f,0x52,0x49,0x16,0x55,0x3f,0xab,0xc8, 0xb1,0x29,0x3c,0x7a,0xeb,0x8f,0xe1,0x6c,0x71,0xa1,0xf7,0x7f,0x5c,0xc4,0x83,0x37, 0x24,0x2,0x2a,0x51,0x50,0xe6,0xb1,0x9e,0x22,0xb1,0x98,0xd0,0x9e,0x29,0xcc,0xb2, 0xca,0x8,0xe3,0x31,0x14,0xe2,0x19,0x3e,0x4f,0xd6,0x7a,0xf,0x31,0xdb,0x7a,0xe, 0xd0,0x2c,0x5a,0x50,0xe7,0x2f,0x8a,0x1,0x28,0x86,0x9c,0x51,0x58,0x4b,0xe0,0x8f, 0xbc,0xec,0x2c,0x43,0xcb,0x1,0x54,0x96,0xc,0x42,0x38,0x7d,0x48,0x6a,0x59,0xf1, 0x28,0xc2,0x99,0xf2,0x20,0xce,0xdc,0x80,0x49,0xd1,0x4c,0x3a,0x59,0x79,0x16,0xb9, 0x62,0x80,0x5e,0xc8,0xa3,0x58,0x4a,0xa3,0x90,0x4b,0x12,0xfb,0xc8,0xf0,0x72,0xf1, 0x66,0xc9,0xc5,0x37,0xd1,0x64,0x87,0xc5,0xe4,0x25,0x6,0x55,0x43,0x3f,0xfd,0x7c, 0xc5,0xbf,0xb4,0x1b,0x53,0x70,0x6a,0x7b,0xcb,0x7c,0x25,0x79,0xda,0x5d,0xf5,0x23, 0xe6,0xe7,0xad,0x97,0x53,0x19,0xc5,0xd3,0x1d,0x51,0xce,0x38,0x9f,0x97,0x23,0xa4, 0x82,0x4b,0x30,0xbe,0x3,0xd1,0xf4,0x1,0xe4,0xf2,0xc3,0x28,0x94,0x58,0x12,0x25, 0x81,0xac,0xe0,0x86,0xcd,0xd2,0x5,0x97,0x75,0x25,0xea,0x3c,0x97,0xa2,0xa1,0xe6, 0x55,0xfa,0x31,0x8c,0xb9,0x54,0xf2,0x52,0x94,0xaa,0xa,0x2,0xa7,0x98,0xf6,0x6a, 0x10,0x3a,0x55,0x83,0xb6,0xaa,0x2e,0x30,0xe5,0x6e,0x90,0x73,0x4,0xd6,0xde,0xb5, 0xf5,0xc4,0x38,0x6c,0xb,0xf6,0x82,0x1e,0xb5,0xb6,0xe4,0x7,0xc,0xf3,0xcb,0xd8, 0x9c,0x5a,0x64,0xb5,0x43,0xa5,0x81,0x3f,0xcb,0x4d,0x9e,0xa0,0xed,0x6a,0xae,0x1c, 0xc,0x50,0xb9,0x50,0x45,0xae,0x18,0x64,0xaa,0x35,0x97,0xb6,0xaa,0x3d,0x5d,0xc3, 0xa5,0x62,0x31,0x81,0x2c,0x7,0xc,0x19,0x26,0xc9,0xd,0x49,0x24,0x90,0x30,0xb9, 0xe7,0x9b,0xe8,0x4a,0x79,0xe4,0xb,0x73,0xa4,0x4c,0xe3,0xc8,0xe4,0x46,0x11,0xcf, 0xf6,0x23,0x99,0x39,0x8a,0x44,0xf6,0x28,0xa,0x5,0x2,0x9c,0xc2,0x14,0xa,0x72, 0x9e,0xc0,0xa4,0x9,0x76,0x4b,0x3b,0x6a,0x5d,0x5b,0x50,0xe7,0xba,0x1c,0x1e,0xe7, 0x3a,0xb8,0x1d,0x6b,0x17,0x60,0x87,0xae,0xf2,0xf4,0xf6,0xc2,0x4a,0xb9,0x3c,0xa, 0x6b,0x3f,0x7c,0xe,0x14,0xd4,0xe9,0x40,0x47,0xa9,0x9a,0x1f,0xa1,0xea,0x9a,0x16, 0x9b,0x9f,0x85,0xaf,0x33,0xe7,0x76,0x8e,0xe6,0xa1,0x24,0xa7,0xf9,0x7c,0x89,0xa2, 0x8d,0xee,0xb9,0x91,0x87,0x2b,0xbf,0xd4,0x56,0x1b,0xcc,0x4f,0xc2,0xfa,0xd3,0xeb, 0x8d,0xdd,0x20,0x2c,0x3a,0x29,0xca,0xf3,0x48,0xc3,0xac,0xce,0xdf,0x57,0xab,0x30, 0x28,0xf3,0xaa,0x3e,0x1b,0x72,0x41,0xcb,0x1c,0x6d,0x1b,0x69,0x9b,0x79,0x39,0x5e, 0xbc,0x1,0x2a,0x4b,0xd6,0x28,0x95,0x95,0xee,0xa9,0x94,0x45,0xa1,0x10,0x45,0x3c, 0x7d,0x10,0xb1,0xcc,0x41,0xa4,0x9,0x20,0xd2,0xd9,0xe3,0x48,0xe7,0x27,0xf8,0x9e, 0x26,0xc9,0xb,0x8b,0xe4,0x83,0xc5,0xe2,0xa7,0x9f,0xd,0xb0,0x9a,0xeb,0x68,0x25, 0xde,0x8,0x9b,0xb5,0x3,0x4e,0x5a,0x8d,0x5b,0xf5,0x32,0x23,0x2c,0x96,0x20,0x8b, 0x6c,0x7e,0xa,0xc9,0xec,0x10,0x12,0xe9,0x43,0x88,0xa7,0xfa,0x11,0x4e,0xee,0xa5, 0x71,0x77,0x12,0xf8,0x70,0x7f,0x3d,0xdc,0xb6,0x55,0x68,0xf0,0x5e,0x83,0x5a,0xf7, 0x65,0xf0,0x7b,0xae,0x86,0xc3,0xda,0xb1,0xe8,0xb2,0xb8,0x5a,0x79,0x2b,0xd5,0x6d, 0x92,0x5f,0x32,0x73,0x7b,0x16,0xa,0xf3,0x25,0xd4,0x79,0xf7,0x45,0x33,0x5f,0xe9, 0x85,0x39,0xd,0x40,0x59,0x26,0xc2,0x98,0xc9,0xf5,0xb4,0x3d,0xfc,0x72,0xbd,0x1, 0x3,0x54,0xce,0x81,0xf2,0x63,0x8a,0x3f,0x91,0x3a,0x8a,0x50,0xf2,0x69,0xde,0xe1, 0x30,0x9d,0x1d,0x46,0xb6,0x30,0x41,0xec,0x24,0xc2,0xaa,0xe0,0xab,0x26,0x21,0xcd, 0xda,0xc3,0x72,0x3e,0x18,0xe7,0x91,0xb5,0x85,0xa7,0x49,0x4,0x1,0x89,0x95,0x83, 0x89,0xdd,0xd2,0x42,0x3f,0x1b,0xe1,0x72,0xac,0x42,0x8d,0x63,0x3d,0xdc,0xf6,0xb5, 0x4,0x1a,0x6b,0x60,0x32,0x79,0xf4,0x73,0xe5,0x88,0xb5,0x24,0x89,0xc5,0xc4,0x52, 0x7,0xb8,0xb9,0x28,0x18,0x7f,0x9c,0xce,0x37,0xcd,0xdf,0x73,0xda,0xd6,0xa1,0xa9, 0xf6,0x72,0xb4,0xd5,0xbe,0x9,0x35,0xae,0x6d,0xb4,0xc2,0xaf,0x39,0x49,0x23,0xeb, 0x65,0xec,0x5f,0x52,0x80,0x52,0xc5,0x54,0x74,0x93,0x96,0xac,0xb1,0x21,0x11,0x2f, 0xd5,0x3e,0xee,0x99,0xb9,0x4,0xf2,0xa1,0xac,0x56,0x28,0x41,0x98,0xcf,0x2a,0x5e, 0x20,0xd,0x14,0x88,0x98,0x39,0x9a,0xdd,0x30,0x39,0x6c,0x67,0x69,0x26,0x33,0xe4, 0x2,0x91,0x7f,0xc4,0x4b,0xac,0x3f,0x8a,0x1,0x2a,0xe7,0x6d,0x65,0x5a,0xaa,0x64, 0x7c,0xb3,0xbe,0x90,0x72,0x2,0xa9,0xcc,0x28,0x32,0xd9,0x1,0xc4,0x33,0x87,0x79, 0x67,0x43,0x85,0x77,0xee,0x30,0x43,0x12,0xad,0x1c,0x8,0x4c,0x52,0x8d,0xa6,0xa, 0x24,0xee,0x83,0x29,0xca,0x29,0xce,0x3e,0x4a,0x72,0x6,0xf9,0x52,0x8c,0x37,0xae, 0x62,0x8d,0xa5,0x72,0xf9,0x30,0xfd,0x3d,0x4d,0x3f,0x23,0x4,0x46,0x3c,0x2a,0x99, 0x58,0x88,0x4,0xb3,0xa9,0x96,0xd8,0x4b,0x23,0x1,0xc4,0x46,0x78,0x1c,0x9b,0xe0, 0xb1,0xad,0x85,0xd7,0x75,0x31,0x67,0x36,0x2a,0x93,0xc9,0x10,0xa0,0x4d,0x22,0x14, 0x7f,0x1a,0x73,0x1c,0x60,0x9e,0xa2,0x6b,0x39,0x4a,0x97,0x57,0x43,0xcc,0x65,0x25, 0x5a,0xbc,0xaf,0x47,0x43,0xcd,0x75,0xdc,0x17,0xb1,0x64,0x56,0xf0,0x27,0x59,0xf5, 0x2f,0x4,0x3e,0xe0,0xe4,0x94,0xc4,0x97,0x8e,0xec,0xfb,0xf8,0x3,0x38,0xfe,0x93, 0x9d,0x3c,0x88,0x40,0xd0,0xd9,0xeb,0xb,0x57,0xff,0xac,0xd3,0xa7,0xc5,0x67,0xc5, 0x65,0xff,0xe7,0xd,0x68,0xbe,0x61,0xe5,0x59,0xf9,0x82,0xc,0xb9,0x20,0xe4,0x57, 0x50,0xc3,0x87,0x5f,0xd6,0x62,0xd4,0x88,0x38,0x5b,0xf4,0xd5,0x7b,0x97,0x97,0xd1, 0x98,0xf7,0xf4,0x83,0xdd,0xd6,0x85,0x1a,0xcf,0x56,0x48,0x82,0xd,0xa2,0x68,0x21, 0x5,0xc3,0x4a,0xad,0x48,0x5a,0xfa,0xdd,0x42,0x5,0x20,0x6b,0x55,0x6f,0x65,0xad, 0x5a,0x6f,0x11,0xb2,0x5c,0x40,0xbe,0x18,0x26,0x70,0x8,0x21,0x57,0x9a,0xe2,0xfe, 0x17,0xb6,0x25,0x33,0x27,0x8,0x20,0x9e,0x23,0xe6,0xb3,0x13,0xd1,0xd4,0x21,0x1a, 0xf3,0xe7,0x4,0x52,0x36,0xb8,0xec,0xdd,0x9c,0x91,0xd8,0xcd,0x2d,0xa8,0x73,0x5f, 0x89,0x46,0xef,0xb5,0xe8,0x68,0x78,0x7,0x5a,0xfd,0x77,0x70,0x16,0x13,0x4d,0x1f, 0x44,0x3c,0xb1,0x1f,0x33,0xb1,0xff,0xc6,0x91,0x89,0x4f,0x61,0x38,0xf0,0x65,0xd4, 0xb9,0x2e,0x23,0x60,0xba,0x18,0x6d,0x75,0x6f,0xa2,0xe3,0xfb,0x5e,0x82,0x73,0x5b, 0x6,0x3b,0x2d,0x3e,0x4e,0xa8,0x74,0xd5,0xd4,0x16,0xee,0x2f,0xc9,0x7c,0x8e,0x7c, 0x38,0x87,0xe4,0x70,0x88,0xb7,0x6f,0x56,0xd3,0x4b,0xcb,0xbd,0xe7,0x17,0xdc,0x1f, 0x16,0xb6,0x6d,0x56,0x4e,0xaa,0x79,0x3c,0xdf,0xfe,0x91,0x47,0x31,0xe8,0x44,0x31, 0x5b,0xac,0xda,0x1f,0x6,0x5b,0xb9,0xb0,0xe5,0x20,0xd4,0x3e,0xf3,0x2f,0x7f,0x5d, 0xb9,0x6c,0x99,0xca,0xa2,0x8b,0xdf,0xaa,0x17,0x75,0x4d,0x56,0xa9,0xd,0x36,0x7f, 0x75,0x2d,0x73,0x50,0xe0,0x99,0xdd,0xb4,0xb2,0x54,0x94,0x2c,0x6d,0x79,0x15,0x28, 0xb4,0xfe,0x29,0x8a,0xc8,0x7a,0xb8,0xab,0x7d,0x11,0x59,0x78,0xa9,0x28,0x98,0xb4, 0xcd,0x42,0x43,0xdb,0x78,0xe1,0xca,0x53,0x75,0xa2,0x64,0xa0,0x53,0x92,0x93,0xc4, 0x64,0x22,0x88,0xa5,0x8f,0x22,0x94,0x78,0xc,0xe1,0xf8,0x93,0x48,0x66,0xf,0x13, 0x9b,0x49,0x41,0x26,0xe6,0x64,0x35,0x49,0xb0,0xd9,0x3a,0xe1,0xf7,0x5c,0x4f,0xac, 0xe4,0x36,0xf8,0x5c,0x5b,0x78,0x10,0x0,0x6f,0x2d,0xac,0xa4,0x90,0x48,0x1d,0xc7, 0x64,0xe8,0x27,0x98,0x8,0xfd,0x1c,0x39,0x39,0x44,0xcc,0xc7,0x41,0xfb,0xbe,0x6, 0x3d,0xd,0xef,0xa7,0x7d,0x37,0xd3,0x5d,0x59,0xf5,0xdc,0xf3,0x17,0x7f,0xae,0xcf, 0xe2,0x98,0xca,0x53,0xaa,0xbe,0xf0,0x22,0x44,0x41,0x2d,0xc5,0x57,0xb2,0xef,0xa3, 0xf,0xe0,0xe8,0x57,0x9e,0xe2,0xd5,0x16,0x58,0x62,0xa8,0xac,0x54,0x41,0x48,0xf9, 0x72,0xe9,0x97,0x52,0x86,0x9e,0x89,0x9c,0xcc,0xbb,0x47,0x72,0xde,0xea,0xb2,0xf2, 0xa2,0x9e,0xb2,0x52,0x5c,0x14,0x2a,0x4a,0x44,0x57,0xcd,0x4d,0x36,0x5c,0xfe,0xf5, 0x37,0x12,0x53,0x59,0x55,0x9,0x6,0x59,0xe0,0x59,0x39,0x3b,0xa8,0xd1,0x40,0xae, 0x3c,0x77,0x8b,0xe6,0x80,0x6a,0x55,0x3f,0x5,0xf1,0xf4,0x1f,0xa1,0xfe,0x39,0x56, 0xd5,0x6a,0x5b,0x30,0x4c,0x35,0xb1,0x94,0x39,0xcc,0x8a,0x55,0x9f,0xbf,0xac,0x57, 0x71,0x36,0x78,0xd7,0x3c,0x61,0x8e,0x79,0x66,0x4e,0x18,0x36,0x40,0xe5,0x82,0x40, 0x96,0x6a,0x13,0xb,0x3,0xa,0xb1,0xa2,0x54,0xaa,0xbe,0x31,0xc5,0x52,0x92,0x98, 0x40,0x10,0xe9,0xfc,0x24,0x72,0xb9,0x69,0x64,0x72,0xe3,0xc8,0x16,0xc7,0x90,0xc9, 0x7,0x88,0x69,0xcc,0x22,0x4f,0x2c,0xa1,0x54,0x8a,0x73,0xf3,0x56,0x51,0x66,0x2d, 0x78,0x9,0x68,0xa4,0x12,0x64,0x51,0x86,0x49,0xb0,0x72,0x26,0x23,0x49,0x4e,0x1e, 0xfd,0xc5,0xc2,0x81,0xad,0xe6,0x7a,0xda,0x5a,0xe0,0xb0,0xb6,0xd1,0xdf,0xd,0x30, 0xd3,0xdf,0x76,0xa9,0xd,0x4e,0xb1,0x9d,0xf6,0x77,0x72,0x5,0xc5,0xb3,0xc2,0x15, 0x2d,0x41,0x52,0x54,0x1d,0xeb,0x19,0x8c,0x21,0x94,0x7d,0x14,0xe1,0xe4,0x33,0x48, 0xa6,0xf7,0x73,0x73,0x57,0xbe,0x90,0xa5,0xf7,0x25,0xb8,0x6c,0x1d,0x68,0xaa,0xb9, 0xd,0xf5,0x35,0x37,0xa2,0xd6,0x7c,0x31,0x1d,0x65,0x45,0xa9,0x48,0xd7,0x20,0xc4, 0x31,0x5b,0xf8,0x15,0x66,0x42,0xff,0x8d,0xd9,0xc4,0x13,0x50,0x4a,0x19,0xb4,0xf8, 0x6e,0x46,0x53,0xed,0x9b,0xe1,0xb7,0x5d,0x3,0x49,0x76,0xf3,0xfe,0xf6,0xa2,0x28, 0xcc,0xbf,0xf7,0x17,0xae,0xa1,0x79,0xde,0x8e,0x60,0x32,0xd1,0x4f,0xf1,0x79,0xe0, 0x8a,0x16,0x26,0xfc,0x62,0x32,0x95,0x25,0x68,0xbb,0xe8,0xa1,0x19,0x24,0x6,0x22, 0xbc,0x6c,0xf,0xe7,0x28,0x5a,0x4,0x60,0x39,0x9,0x93,0xe7,0xfe,0xd8,0x5,0xf4, 0xff,0xe7,0x2e,0x8c,0xfd,0xea,0x30,0x58,0x39,0x33,0x8b,0xcf,0x86,0x8d,0xff,0x7c, 0x3d,0x2f,0xa,0xca,0x32,0xef,0x17,0xd,0x47,0x66,0x39,0x55,0x66,0x89,0xe7,0xf7, 0xd8,0x1b,0xdc,0x1a,0xbb,0x55,0x95,0xbe,0x5e,0xf5,0x58,0x47,0x16,0xe1,0xac,0x7c, 0x2e,0xe5,0x5a,0xd9,0xc2,0x82,0xd9,0x85,0x1e,0x59,0xb6,0xf8,0x8,0x8a,0x52,0x3d, 0xf6,0x82,0x30,0x7a,0xa5,0x2,0xfa,0xf3,0xd7,0xd,0xc2,0xbc,0xe3,0x2b,0x63,0xcb, 0x6a,0x48,0xb9,0xce,0x4e,0xd,0x48,0xc1,0x5,0xe0,0x98,0x37,0xcc,0x5f,0xf3,0x16, 0x55,0xf3,0xcd,0x2c,0xdc,0xf7,0xb1,0xa0,0x65,0x46,0xbe,0x18,0xe2,0xc,0x61,0x3c, 0xf4,0x53,0x24,0xd2,0xc7,0x8,0x44,0x46,0x91,0xcd,0x85,0xd4,0x55,0xa9,0x50,0xee, 0x2f,0x32,0x3f,0x67,0x90,0x2d,0xa,0x2d,0xb4,0x8,0xed,0x3c,0xf6,0x46,0xb8,0x42, 0x5d,0x28,0x98,0x93,0xda,0x2a,0x4f,0xe6,0x89,0x78,0xbc,0xd4,0x8,0x98,0xe9,0x6b, 0x1a,0x29,0x99,0x80,0x49,0x70,0x10,0xa8,0x34,0x20,0x6b,0x6a,0x41,0xce,0xda,0x1, 0x8b,0x54,0x8b,0x74,0x3a,0x8f,0x68,0x3c,0x89,0x78,0x3c,0x83,0x2,0xeb,0xfd,0x5e, 0x62,0x1b,0x53,0xfc,0x56,0x9e,0xab,0x2,0xe5,0x7a,0x24,0x73,0xed,0x48,0x67,0xba, 0x61,0x73,0x66,0xd0,0xd4,0x50,0x7,0x8b,0x8d,0x8d,0x3a,0x82,0xb8,0xfd,0x1,0x88, 0xae,0x30,0xb2,0x49,0x3b,0xa6,0x3,0x4,0x84,0x29,0x3a,0x4e,0xae,0xa5,0x7b,0xb9, 0x5,0x99,0x74,0x2d,0xec,0xf4,0x5e,0xde,0x5f,0x40,0xd4,0xf5,0x20,0xac,0xbe,0x12, 0xd2,0x49,0x37,0xc6,0x27,0x83,0xc8,0x64,0xb2,0x6a,0x99,0x16,0xc9,0x54,0x29,0xe2, 0x58,0x9e,0xab,0x25,0x69,0x75,0xf5,0x38,0x96,0x10,0xe8,0xea,0xf0,0x63,0xdd,0xbb, 0xaf,0x85,0xab,0xc5,0xbf,0xe4,0x4f,0xa8,0xdc,0x18,0x4b,0xed,0x3f,0x82,0x73,0xd4, 0x7a,0xf8,0xc,0x6b,0x7a,0x61,0x1,0x2f,0x3d,0x5,0xcb,0x62,0x73,0xe3,0x5d,0xdf, 0xc4,0xb7,0x33,0xc9,0xcc,0xfd,0x43,0x74,0xed,0x25,0xb5,0x4d,0x33,0x81,0x4c,0xd3, 0xd5,0x3d,0xf0,0xae,0x6b,0x5c,0xc2,0x54,0x8,0x15,0x9f,0x93,0x50,0x99,0x9d,0xb2, 0x5e,0x16,0x4e,0x3,0xca,0xa8,0xf2,0xf6,0x94,0x67,0x54,0xe0,0x40,0x54,0x1e,0x5a, 0xd6,0xcb,0xf9,0x2c,0x6e,0x9a,0xac,0xea,0x8a,0xa3,0x94,0x97,0x5f,0xb2,0x9e,0x28, 0xab,0x54,0x99,0xf8,0xf4,0xc6,0x6b,0x3c,0x87,0x4b,0xd4,0xdb,0x2b,0xcf,0x9b,0x48, 0x3d,0x47,0xc9,0xc8,0xbd,0xd1,0xe4,0xc3,0x17,0x12,0xa0,0x2c,0x6b,0x50,0x11,0x4e, 0xaa,0xaa,0x35,0x7f,0x69,0x1e,0x4f,0x1f,0x42,0x34,0xf5,0x1c,0xa6,0x42,0x3f,0x47, 0x20,0x7a,0x3f,0xb2,0xf9,0x82,0xda,0xaf,0x5c,0xe4,0x35,0x28,0x79,0x38,0xaf,0x49, 0x74,0xc2,0x4c,0xa,0x5e,0xe2,0xc9,0x89,0x1e,0xce,0x42,0x98,0x69,0xb,0x56,0x13, 0xc4,0x88,0x1d,0xd2,0xce,0xed,0x28,0xee,0xf1,0x43,0xae,0xc9,0xf1,0x2f,0x1d,0x6b, 0x4e,0x65,0xd2,0xfa,0x9d,0xb0,0xdf,0xcd,0xa4,0xbc,0x25,0x56,0x42,0xdf,0x4c,0x70, 0x66,0xa2,0xd7,0x4c,0x45,0xfa,0x42,0x86,0x51,0x90,0x3,0x90,0x88,0x61,0x78,0x58, 0x1,0xcb,0x74,0xe,0x91,0x78,0x1a,0xc1,0x50,0x14,0xa9,0x54,0x86,0x40,0xa1,0x48, 0xc,0x25,0x4d,0xfb,0xb0,0x72,0x2c,0xe,0x58,0xc5,0x5a,0x62,0x3c,0xe,0xa4,0xed, 0x16,0xd4,0xf8,0x5c,0x68,0x6a,0xf4,0x1,0x6e,0x11,0x19,0xfb,0x4,0xcc,0xa2,0x82, 0x5a,0x3a,0x3e,0x35,0x35,0x8b,0xc9,0x99,0x30,0x1d,0xaf,0x20,0x97,0xb1,0xd3,0x79, 0x7b,0x91,0xa1,0x7d,0xdb,0xdb,0x68,0x5f,0xef,0x28,0xec,0x36,0x5,0x35,0x99,0x22, 0xe2,0x63,0xb3,0x98,0xb,0xc6,0x10,0x4b,0x24,0x91,0x87,0xcc,0xd,0x73,0xbc,0xe6, 0xd7,0x22,0x7d,0xf,0xcf,0x34,0xb7,0x4c,0x9,0x65,0x91,0x42,0x43,0x5f,0xf,0x7a, 0xdf,0x70,0x19,0x81,0xca,0xd2,0x3f,0xa1,0x79,0x79,0x2e,0xc2,0xf9,0xf7,0x28,0x88, 0x8b,0x98,0x70,0x94,0x53,0x28,0x6d,0xdd,0xf,0xa4,0x99,0xbc,0xaa,0xf7,0xab,0x6e, 0xe1,0xcc,0xc1,0xaa,0x58,0xd4,0xda,0x36,0x8b,0xac,0xe7,0x1b,0x4a,0x55,0xbe,0x92, 0xd3,0x25,0x61,0x96,0xef,0xb8,0x82,0xe7,0x27,0x73,0x81,0xd3,0x19,0xc0,0xd4,0x4b, 0x94,0xb5,0x1,0x84,0x8a,0xf1,0xac,0xd2,0x2b,0x4e,0xad,0xef,0xa0,0x51,0xab,0x53, 0x2f,0x1c,0x84,0xf9,0x11,0x83,0x3a,0x20,0xcc,0x37,0xc8,0x95,0x7d,0x47,0x7a,0x8, 0xb4,0x80,0xc5,0x6c,0x6d,0xfa,0x3e,0x86,0x97,0x8,0x77,0xd3,0xf6,0xc5,0xb,0xed, 0xa6,0x96,0xaf,0xa3,0xfe,0x24,0x6d,0xa1,0xfe,0x91,0xca,0xe,0x63,0x34,0x70,0xf, 0x86,0x66,0xbf,0x8d,0x44,0x6a,0x8c,0x9b,0x99,0x59,0xb5,0x7c,0x97,0xdd,0xf,0x87, 0xb9,0x9,0x76,0x7b,0x37,0x1c,0x96,0xe,0xd8,0xcd,0x9d,0xb0,0x59,0x5b,0x60,0xb5, 0x34,0x72,0x73,0x96,0xcd,0xd4,0x48,0x6c,0xc3,0x4f,0x60,0xa1,0x66,0xb9,0x67,0x67, 0xf3,0xf8,0xfd,0xd8,0xe7,0x30,0xb2,0xef,0x97,0x70,0x7a,0x6b,0xd5,0xe8,0x31,0xd6, 0xa5,0x91,0x83,0x8a,0xc0,0x4b,0xbc,0x5b,0x8,0x99,0xcc,0x16,0x9,0x56,0x9b,0x5, 0x36,0xda,0xec,0xe,0x2b,0x9c,0x76,0x1b,0x5c,0x2e,0x3b,0x1c,0x4e,0x3b,0xdc,0x2e, 0x2,0xa,0x42,0x9c,0x66,0x49,0xed,0x3a,0xc8,0x8a,0x22,0xc6,0x63,0x69,0x84,0x22, 0x71,0x44,0x23,0x9,0x84,0xc2,0x9,0x44,0x63,0x9,0x62,0x22,0x61,0x24,0x8,0xf4, 0x82,0x61,0x1,0x23,0x11,0x89,0xae,0xcb,0x8c,0xda,0xba,0x1a,0x34,0x34,0x78,0x89, 0xc1,0xf8,0xb0,0xb9,0x5b,0xad,0xf9,0x15,0xe,0x47,0x31,0x36,0x16,0xc4,0xf8,0xf8, 0x1c,0x2,0x91,0x51,0x4c,0xf7,0x8f,0xc2,0x6a,0x37,0xa1,0xb5,0xd9,0x8f,0xce,0xce, 0x26,0x6c,0xbd,0x6a,0x23,0x8f,0x7d,0x9e,0x9c,0xc,0xe1,0xc4,0xc0,0x14,0x9d,0x23, 0xce,0x43,0xa0,0x4d,0x26,0x89,0x80,0x53,0x3c,0xeb,0x7e,0x5a,0xb2,0xa0,0x5a,0xce, 0xa5,0x90,0x19,0x76,0x1f,0x1,0xad,0xf9,0x85,0xfa,0x6d,0x34,0xe5,0xf3,0x62,0xd8, 0xc1,0xaa,0x1b,0x39,0x9e,0xce,0x40,0x53,0x7e,0x7e,0x4,0xd5,0x7f,0x26,0x94,0x1, 0xa6,0x9c,0xb,0x54,0x5,0x82,0x82,0xae,0x7e,0xe7,0xe7,0x3a,0x9d,0xae,0xa0,0x64, 0xf9,0x68,0x56,0x6b,0x2d,0x37,0x93,0x42,0x66,0x2e,0x89,0x12,0x33,0x97,0xd1,0xe7, 0x60,0x72,0xdb,0x61,0x6f,0x72,0xc1,0x56,0x6b,0x3f,0xbd,0x5a,0xd6,0xae,0x91,0x33, 0xce,0x92,0x46,0x33,0x64,0xe6,0xeb,0x93,0xd5,0x8e,0xa1,0x82,0x76,0xd,0xa7,0x61, 0xa2,0xfc,0x58,0xb9,0x2a,0x60,0x42,0x54,0x78,0x71,0x4d,0xa5,0x5c,0x11,0x81,0xbd, 0xce,0xe2,0xe6,0x75,0xca,0x44,0x9f,0xbd,0x54,0xf1,0x13,0x26,0x27,0xa2,0xc8,0x4e, 0x27,0x38,0xcb,0x76,0xb5,0xd6,0xc0,0xd1,0xea,0xe1,0xa5,0x73,0x4,0x45,0x58,0xee, 0x4c,0xe5,0x69,0xda,0x3e,0x70,0x21,0xde,0xd8,0xf2,0x0,0x15,0x65,0x41,0x36,0xb2, 0x5e,0x62,0xa5,0xa2,0x36,0xd2,0xb9,0x71,0x8c,0xcf,0xfe,0x4,0x3,0x81,0xbb,0x91, 0xca,0x1c,0x87,0xc3,0xda,0x88,0x96,0xba,0x57,0xc2,0x6d,0x5f,0x5,0x9f,0xeb,0x62, 0x38,0x6d,0xbd,0xc4,0x8,0x9a,0x38,0x88,0xb0,0x1a,0x54,0x67,0xd4,0x4d,0x8c,0xd2, 0x28,0x92,0x56,0xb6,0x5d,0x5d,0xf2,0x96,0x68,0x81,0x9a,0x97,0x55,0xe7,0x3e,0x6b, 0x7e,0x95,0xcb,0xa9,0x4a,0x48,0x14,0xd2,0xe5,0x9a,0x1f,0xbc,0xcc,0xbc,0xd5,0x66, 0x86,0x99,0x80,0xc1,0x69,0xb7,0xc2,0xe7,0x75,0xa1,0xa6,0xc6,0x9,0x8f,0xdb,0x41, 0xa0,0x63,0xa6,0xdf,0x1d,0xa8,0x25,0x45,0x9d,0x27,0x10,0x89,0x27,0x33,0x1c,0x54, 0x66,0x66,0xa2,0x8,0x5,0xe3,0x48,0x24,0xd2,0xc8,0xe5,0x8b,0xc4,0x10,0x8a,0x98, 0x9a,0xa,0x61,0x7a,0x2a,0x8c,0x21,0xb7,0x8d,0xc0,0xc5,0x87,0x96,0xe6,0x3a,0x34, 0xd4,0xd7,0x60,0xdb,0x96,0x3e,0x74,0x77,0x37,0x63,0x9c,0x58,0xc9,0xe4,0x64,0x90, 0x80,0x28,0x81,0x81,0x81,0x0,0xa6,0x67,0x22,0xa8,0xaf,0x73,0xa3,0xad,0xbd,0x1, 0x6d,0x2d,0x7e,0xda,0xdf,0xc7,0x1,0x68,0x78,0x34,0xc0,0x41,0xac,0x98,0x97,0x9, 0x3c,0x45,0xcd,0xe4,0x51,0x9e,0xbb,0x8a,0x11,0x71,0xde,0xbd,0xcb,0x6a,0x9b,0x63, 0x2d,0x23,0xe7,0x79,0xf7,0xa1,0x2f,0x65,0xa,0x98,0x7e,0x72,0x84,0x0,0x4d,0x40, 0xf3,0x35,0x7d,0xf3,0x6d,0x8c,0x9a,0x12,0x53,0xaa,0x8d,0x41,0x27,0xa1,0x80,0x32, 0x9f,0x93,0x9e,0x21,0x60,0x80,0xd5,0x6f,0x63,0x6d,0x10,0x9c,0xd,0x2e,0x78,0xd7, 0x36,0x43,0xb0,0x48,0x15,0x9f,0x82,0xa0,0x54,0xd5,0x6e,0xd3,0x4c,0x49,0xbc,0x87, 0x98,0xa8,0xad,0xba,0x55,0xdf,0x82,0x50,0x36,0x2f,0x55,0xdb,0xa5,0x4,0x61,0xc1, 0xaa,0x5c,0x58,0x84,0xa9,0xcc,0xbf,0xb8,0xe4,0x58,0x14,0x33,0x8f,0xc,0xf0,0x9a, 0x6e,0xf1,0xc1,0x39,0xe4,0x83,0x69,0xc8,0x39,0x56,0x8c,0x93,0x36,0x5a,0x6c,0xd8, 0x1a,0x5d,0xbc,0x57,0x4d,0xeb,0xab,0x57,0xa0,0xe9,0xaa,0x5e,0x48,0x36,0x33,0x50, 0xad,0xe8,0x85,0x8a,0xdf,0x22,0x33,0x15,0x47,0xff,0x57,0x9f,0x46,0x72,0x34,0x6, 0x85,0xa8,0x52,0xd3,0x8d,0xbd,0xe8,0x79,0xdb,0x16,0x28,0x66,0x93,0x56,0x39,0x5b, 0x58,0x3c,0x40,0x81,0x86,0x9b,0xfc,0x7d,0x3f,0x26,0x7e,0x7e,0x88,0x40,0x81,0x58, 0xb3,0xcf,0x86,0x15,0xef,0xbd,0x98,0xce,0xdb,0x84,0x32,0xdd,0x61,0x44,0x68,0xe8, 0x27,0xcf,0x21,0xf0,0xd0,0x8,0x2f,0xa4,0xe9,0xdb,0xda,0x8c,0xb5,0x7f,0xf9,0x4a, 0xc4,0x4e,0xcc,0xa1,0xff,0x9b,0xbb,0x30,0xb7,0x7b,0x4,0xf9,0xe9,0x24,0x6f,0x72, 0xe6,0xa3,0x39,0xbd,0xf4,0x3f,0xdf,0x0,0x57,0xbb,0x77,0xb9,0xe7,0xde,0xb0,0x56, 0xad,0x2f,0xab,0xca,0xc3,0x6,0xa8,0x2c,0x6e,0xab,0xa8,0x14,0x77,0x14,0x2a,0xa6, 0x0,0x16,0xad,0x35,0x38,0xf3,0xd,0x8c,0xce,0xde,0xcd,0x23,0xad,0xbc,0xce,0x8b, 0xb0,0xaa,0xe5,0xfd,0xa8,0x73,0x5f,0xc6,0x99,0x88,0xc5,0x54,0x47,0xec,0xc3,0x7e, 0xd2,0x90,0xf9,0x62,0xc,0x99,0xc2,0x4,0x29,0xf7,0x59,0xfa,0x3d,0x82,0x5c,0x71, 0x8e,0x3b,0xea,0xe9,0x5b,0x8b,0x92,0x40,0x6a,0x3d,0x52,0x40,0x7b,0x87,0x1d,0x4d, 0x1b,0x37,0x43,0xf4,0x9,0xbc,0xf1,0x14,0x5b,0xad,0x15,0xb,0xf4,0x3e,0x2d,0xff, 0x19,0x28,0xe4,0x72,0xf4,0xb3,0x50,0x40,0x26,0x4b,0xbf,0x67,0x72,0x7c,0xd5,0xc8, 0x1c,0xeb,0xa9,0x64,0x9,0x72,0x3c,0x8b,0xa8,0x90,0x40,0x80,0x94,0x3d,0x33,0x91, 0x59,0x9,0x64,0x3c,0x1e,0x7,0x7c,0x4,0x28,0x3e,0xaf,0x1b,0xb5,0x4,0x36,0xbe, 0x1a,0x17,0x6a,0x9,0x70,0x5a,0x9b,0xea,0x90,0x24,0x80,0x99,0xb,0xc7,0x30,0x37, 0x1b,0x27,0x90,0x89,0x20,0x4d,0xe3,0x31,0x13,0x5b,0x2c,0x96,0x41,0x9c,0xc0,0x66, 0x92,0xd8,0x89,0x87,0x8e,0x69,0x6a,0xf6,0xa2,0xb3,0xa3,0x11,0x1b,0x37,0x74,0xa3, 0xab,0xb3,0x11,0xd3,0xd3,0x11,0x8c,0x8d,0xcf,0xd2,0x31,0x21,0x8c,0x4f,0x84,0x30, 0x13,0x88,0x61,0xc8,0x37,0x8d,0xde,0xde,0x66,0x2,0x18,0x3f,0x5a,0xdb,0xfc,0x98, 0x98,0x98,0xc3,0xd0,0xe0,0x34,0x22,0xc4,0x8e,0x58,0x93,0x29,0x16,0x14,0x20,0x94, 0xa3,0x91,0x74,0x47,0xae,0xa2,0xf9,0x25,0xc4,0xf9,0x7d,0xde,0x79,0xfb,0xe4,0xe7, 0xc7,0x54,0x42,0xa4,0xe0,0x1f,0x7f,0xeb,0x3d,0xb4,0xb8,0x2e,0xa0,0xfb,0xe6,0xcd, 0x58,0xf1,0x17,0xaf,0x40,0xfd,0x96,0x36,0x54,0x57,0xe8,0x2c,0xfb,0x5b,0x54,0x45, 0x5a,0x56,0xe8,0xca,0x3c,0x6,0xc0,0xbb,0xaa,0x94,0x1b,0xb5,0x9d,0x6,0x59,0x66, 0x1f,0x1f,0xc1,0x8e,0xf,0xfd,0x18,0x1d,0xd7,0xac,0xc6,0x2b,0xbe,0x7c,0x3b,0xaf, 0x48,0x5c,0x39,0x57,0xd9,0x4,0xa4,0x68,0xc,0x63,0x41,0x19,0x15,0xdd,0xef,0x23, 0xe8,0xce,0xfa,0xea,0x35,0x4d,0xc5,0x50,0x55,0x1d,0x3a,0x5d,0xf6,0x71,0xcc,0x27, 0xce,0xac,0xd,0xf5,0xf1,0x6f,0x3e,0x83,0xe8,0xa1,0x0,0x8a,0x89,0x2c,0xf7,0xbf, 0x9,0x5c,0xf5,0x97,0x1,0x52,0xe6,0x73,0x3f,0xfd,0xe0,0x9,0xc,0xfd,0xf0,0x59, 0x34,0x5f,0xb1,0x12,0x9b,0x3e,0x79,0x1d,0xbc,0x6b,0x1a,0x2b,0x66,0xa9,0x2a,0xd6, 0x94,0x23,0x40,0x1a,0xfc,0xd1,0x1e,0x84,0x47,0xa6,0x79,0xb7,0x4f,0xc5,0xa,0xf4, 0xbc,0x65,0xb,0x4,0x73,0x95,0xe9,0xea,0x14,0x4c,0x25,0xbc,0x6b,0x2,0x47,0xbf, 0xf7,0x4,0x1d,0x55,0x84,0xdd,0xe5,0x46,0xcb,0xf5,0x2b,0x39,0x98,0x55,0x4c,0x69, 0xa,0xc2,0x7b,0x26,0x71,0xf4,0xfb,0x8f,0xf1,0x5,0x54,0xeb,0xd0,0x4a,0x48,0xe, 0x9,0x27,0xbe,0xb3,0x17,0xc1,0x9d,0xc3,0x3a,0x4b,0x63,0x39,0x5c,0x72,0xac,0xc4, 0x9b,0xd1,0x2d,0x73,0x29,0xb7,0x4,0x9e,0xb9,0x50,0x6f,0x70,0x79,0x34,0xe9,0xd2, 0xa2,0x67,0xf4,0xe2,0x83,0x8a,0x9a,0x2b,0x92,0xc8,0xf4,0x63,0x74,0xee,0xdb,0xa4, 0xec,0x33,0xe8,0x6b,0xfe,0x10,0xbc,0xae,0x2d,0x70,0xd9,0x56,0x90,0x32,0x76,0xce, 0xd3,0x8,0xf9,0x7c,0x18,0xf1,0xec,0x21,0xc4,0xd3,0x87,0x91,0xa4,0x63,0xd2,0x39, 0x56,0xf0,0x30,0x40,0x5b,0xc,0x45,0x2,0x92,0x42,0x29,0xcd,0xa3,0xbe,0x78,0xc4, 0x17,0x53,0x60,0x52,0x9,0xd6,0xa4,0xf,0x6b,0x9b,0x3e,0x8,0xff,0xba,0x8d,0xc8, 0x3b,0xb4,0x96,0xbd,0xbc,0x2c,0xbd,0xea,0xc0,0x2c,0x10,0x78,0x14,0x8,0x60,0xa, 0xb4,0x2,0x2c,0x15,0x65,0x64,0x9,0x58,0x12,0x9c,0x79,0x24,0x11,0x8f,0xa6,0x90, 0xcd,0xe5,0x79,0xb5,0xde,0x3c,0xed,0x93,0xcb,0xe4,0x9,0x78,0x8a,0x48,0x25,0x72, 0x98,0x21,0x10,0xb0,0xb1,0x3e,0x1e,0x4e,0x1b,0x67,0x2d,0x2d,0xc4,0x2a,0xfc,0x75, 0x5e,0xb8,0x5c,0xe,0x78,0x9,0x70,0x3a,0xdb,0x4a,0xa4,0xfc,0x9,0x58,0xe6,0x22, 0x98,0x9a,0xe,0x21,0x49,0xc7,0x30,0x20,0x4b,0x65,0x73,0x48,0xcf,0x96,0x10,0xc, 0x26,0x30,0x3a,0x3c,0x87,0xe6,0xd6,0x5a,0x2,0x95,0x6,0x74,0x77,0x35,0xa2,0xb5, 0xa5,0x16,0x93,0xd3,0xc4,0x6a,0x86,0xa6,0x11,0xa6,0x63,0x67,0x83,0x11,0xba,0x8e, 0x14,0xfd,0x3d,0x83,0x2e,0x2,0xa0,0x36,0x2,0x96,0xfa,0x7a,0x2f,0x26,0x9,0x74, 0x86,0x87,0xa7,0xe8,0x5a,0x72,0x3c,0x4a,0x8e,0x99,0xd4,0x54,0x25,0xb,0xbd,0xb1, 0x96,0x88,0x4a,0xc4,0xcf,0xb,0x15,0xf7,0x8a,0x3a,0xac,0xf9,0xab,0x2b,0x30,0xf8, 0xf5,0x5d,0x38,0x7a,0xf7,0x53,0x18,0xbf,0xff,0x18,0x36,0x7e,0xe4,0x55,0x58,0x4d, 0xe0,0xc2,0xcc,0x40,0xba,0x5d,0xbe,0x8a,0x86,0x94,0x57,0xc0,0x15,0x72,0x5a,0xaa, 0xd4,0x3b,0xd3,0x17,0xf2,0xf2,0xa2,0xa1,0xd4,0xc5,0x3c,0x81,0xfc,0x4c,0x6,0x85, 0xb9,0x3c,0xaa,0x83,0x22,0x65,0x4d,0x3f,0xb,0xe5,0x20,0x2c,0xbd,0xd6,0x97,0x58, 0x65,0x2a,0x13,0xb4,0x57,0x64,0x2c,0xc5,0xae,0x23,0xe8,0xe0,0x28,0xf0,0x45,0xc7, 0xe1,0xcf,0x3e,0x82,0x43,0x9f,0x79,0x4,0x85,0x44,0x86,0x7f,0x3d,0x19,0x13,0x32, 0xb,0x4e,0xde,0xa6,0x41,0x14,0xd4,0xfc,0x28,0xb6,0xf0,0x28,0x15,0xa,0xdc,0x61, 0x9e,0x9f,0x49,0x63,0xe8,0xe7,0x7b,0x10,0x39,0x32,0x83,0x6d,0x9f,0x7f,0x2d,0x6f, 0xe0,0xb6,0xd0,0x7b,0xcf,0x4c,0xa7,0x12,0xb1,0x5c,0x33,0xac,0x1c,0x54,0x24,0xab, 0xb4,0xa8,0xa7,0x63,0x31,0x61,0xcd,0xdb,0xd4,0x26,0x64,0x6a,0x9f,0x1f,0x41,0x5a, 0xf8,0xdd,0x12,0x88,0xc1,0x38,0x69,0x1f,0xb,0xef,0xfa,0x99,0x3c,0x1c,0xc4,0xfe, 0x8f,0xff,0x1,0xf9,0x50,0x92,0x5e,0x53,0xbd,0x72,0xac,0xc3,0x27,0x5b,0x48,0xb1, 0xf6,0xdb,0x27,0x39,0xee,0x97,0x9f,0xbc,0x87,0xb6,0x5d,0x17,0xf2,0xd,0x2e,0x93, 0x26,0x5d,0x82,0xde,0xb,0x9d,0xaf,0xf3,0x48,0xf9,0x47,0x92,0xfb,0xf8,0xda,0xaf, 0xb7,0xf1,0x2f,0x61,0xb6,0xf8,0xb8,0xa3,0x9d,0x49,0xa1,0x10,0x47,0x2c,0xb9,0x93, 0x97,0x5b,0x9,0x27,0x9f,0x22,0x20,0xd9,0x4f,0xc0,0x11,0xe3,0xd9,0xeb,0x32,0xdb, 0x94,0x2c,0x67,0x1d,0xd5,0xdf,0x7,0xb9,0x54,0xe5,0xe6,0x57,0xc0,0x9d,0xb1,0xa2, 0x5c,0xe4,0xa,0x46,0x92,0x24,0xae,0x7c,0xb9,0x99,0x84,0xb5,0xcf,0x65,0xad,0x69, 0x99,0xc9,0xc1,0x2c,0xc1,0x62,0x37,0xeb,0x2b,0x5d,0xf6,0x3a,0xfb,0xe2,0x15,0x9, 0x60,0x58,0x78,0x2f,0x53,0x30,0x8c,0x7d,0x30,0xa6,0x12,0x26,0x90,0xc9,0xa4,0xd3, 0xc4,0x3e,0xf2,0xdc,0x84,0x96,0xa6,0xb1,0xd3,0xd9,0x24,0x81,0x47,0x8a,0x58,0x44, 0x18,0x66,0xfa,0xe2,0xd7,0x10,0x6b,0x69,0x69,0x65,0x0,0xe3,0x46,0x7d,0x43,0xd, 0xfc,0x7e,0xf,0x7a,0xba,0x9b,0x88,0xf5,0x64,0x31,0x4a,0x4c,0x24,0x10,0x88,0xf2, 0xdf,0x99,0xd3,0x38,0x96,0x48,0x21,0x71,0x22,0x87,0xd1,0xd1,0x59,0xb8,0xdd,0x76, 0x74,0x12,0xb8,0xb4,0x34,0xd7,0xa2,0xbd,0xad,0x1e,0x11,0x66,0xe,0x1b,0x9a,0xc2, 0xf4,0x64,0x88,0x58,0x4f,0xc,0xb1,0x78,0x1a,0xc7,0x6,0x26,0xe8,0x3d,0x3f,0x7, 0x98,0x9e,0xae,0x6,0x4c,0x4e,0x85,0xd0,0xdf,0x3f,0xc9,0x41,0x50,0x32,0x49,0xea, 0xca,0x5c,0xa9,0x30,0xc1,0x73,0x55,0x13,0xcb,0x4e,0xf7,0xb2,0xe9,0xa3,0x4,0x22, 0x7f,0xb6,0x1d,0x13,0x7f,0x38,0x86,0x3,0xff,0xf4,0x47,0xec,0xfc,0xe8,0xbd,0x8, 0x3d,0x37,0x85,0x8b,0xff,0xe3,0x75,0xb0,0x12,0xa8,0x32,0xa0,0x56,0x5b,0x21,0xb, 0x95,0xe2,0x99,0x55,0x2e,0xf,0xd5,0xfc,0xa8,0x5,0xf,0x68,0xd7,0x79,0xaa,0x7c, 0xc,0xd6,0xf6,0x80,0x29,0x50,0x91,0x58,0x61,0x35,0x28,0xa,0xe5,0x24,0xd,0x61, 0xbe,0xd3,0xa5,0x5c,0x52,0x46,0xd1,0x22,0x9e,0xd4,0xfb,0x7e,0x1e,0xac,0x8c,0x94, 0x7e,0x31,0x57,0xc4,0xae,0xf,0xfe,0x1a,0x83,0xdf,0x7f,0x16,0x42,0x1e,0xbc,0x32, 0x83,0xc5,0x69,0x41,0xd3,0xf5,0x7d,0x68,0xbf,0x7d,0x3d,0x6f,0x49,0x6d,0x76,0x59, 0x78,0x97,0xce,0xf8,0x40,0x8,0x13,0xbf,0x3a,0x8c,0xb1,0x7b,0x8f,0x20,0x3d,0x1d, 0x27,0x75,0x6e,0x43,0xfc,0xf0,0x2c,0x9e,0xb8,0xf3,0xa7,0xd8,0xfe,0xcd,0x5b,0xd1, 0x79,0xc7,0xa6,0x4a,0xbf,0x9f,0x32,0xa1,0x10,0x4,0xbd,0xbb,0xe6,0x92,0x3e,0x9f, 0x85,0xc7,0x2d,0x38,0x96,0xdd,0xad,0x99,0x81,0x85,0xd6,0xc3,0xa7,0x18,0xcb,0xab, 0x1d,0x2f,0x19,0x18,0xb2,0xee,0xa0,0xb7,0xad,0x45,0x33,0xdd,0x3,0xfb,0x98,0xb2, 0x81,0x38,0x67,0x31,0xc0,0xb2,0x75,0xa7,0xfc,0x3d,0x6d,0x3f,0xba,0xd0,0x6f,0x72, 0x99,0x38,0xea,0xcb,0x9,0x8c,0x9a,0x9a,0x11,0x2c,0xf0,0xbb,0x2f,0xd6,0x23,0x9a, 0x32,0xb9,0x49,0x4c,0x87,0x7f,0x4f,0x60,0xf2,0x2c,0xa2,0xa9,0x67,0x68,0x3b,0x48, 0xc,0x82,0x14,0xa6,0x58,0x28,0x87,0xf0,0x2f,0x70,0x52,0xb3,0x17,0x58,0xd8,0x2d, 0xad,0xcf,0x4c,0x2e,0x58,0xed,0x2d,0xb0,0x9b,0x9b,0x61,0x32,0xd7,0x72,0x70,0x32, 0xdb,0x6b,0x80,0x88,0x1d,0x53,0x13,0x2,0x86,0x9e,0xdd,0x3,0xd1,0xab,0xb5,0x3, 0x26,0x5,0xcc,0x1c,0xf4,0xcc,0xe9,0x6d,0x31,0x93,0xfa,0x22,0xc6,0x61,0xb6,0x98, 0xe1,0xb0,0xd1,0x1a,0xd2,0x62,0x21,0xf0,0x11,0x39,0x40,0x58,0xb4,0x86,0x5c,0x4e, 0x62,0x23,0x8d,0x8d,0xb5,0xc4,0x6a,0x8,0x8,0xe2,0x49,0x44,0x9,0x44,0x42,0xc4, 0x34,0x82,0xe1,0x18,0xb2,0x99,0x1c,0x1,0x9c,0x48,0x2c,0xaa,0x48,0x4c,0x44,0x40, 0x3a,0x1d,0xc1,0x4,0x29,0x7b,0xe6,0x7b,0x69,0x6e,0xf6,0xa1,0x91,0x98,0x45,0x5d, 0x9d,0x7,0x75,0xf5,0x35,0xa8,0x25,0xe5,0xcc,0x42,0x93,0x99,0x9f,0x65,0x72,0x72, 0x8e,0x7e,0x67,0xd,0xb7,0x4a,0xdc,0xfc,0x96,0xcb,0xe5,0x10,0xc,0xc5,0x51,0x5f, 0x57,0xc3,0x19,0x49,0x5b,0x4b,0x1d,0xb6,0x6f,0x5f,0x8b,0x89,0xc9,0x0,0x86,0x89, 0xa9,0xcc,0xce,0xa5,0x90,0x4a,0xe5,0x39,0x88,0x30,0xa6,0xd2,0xd1,0xd1,0x80,0x2e, 0x62,0x37,0x8d,0x4d,0xb5,0x38,0x31,0x30,0x89,0x89,0xb1,0x39,0xba,0x6,0x59,0x65, 0x8,0xe2,0x2,0x1f,0xc7,0xb,0xa7,0x98,0x9c,0x91,0x30,0xff,0x41,0xef,0x5b,0x2e, 0x42,0xd3,0x2b,0x7a,0xb0,0xf7,0x93,0xf,0x61,0xf0,0x87,0x7b,0x78,0xfe,0xce,0x65, 0x5f,0x7b,0x3d,0xcd,0xb5,0xed,0xa4,0x32,0x26,0xfc,0xcc,0x2c,0xc7,0x47,0x4d,0x1c, 0x81,0x68,0xaa,0xaa,0x6e,0x70,0x16,0x97,0x25,0x2c,0x66,0x3d,0x55,0x54,0xff,0x1, 0xf3,0x1b,0x70,0x46,0x62,0x16,0x2b,0x55,0x16,0x38,0x43,0x52,0xfb,0xe4,0x60,0x89, 0xe,0xe8,0xf2,0x4c,0x1d,0xf9,0xc2,0x63,0x18,0xfa,0xfe,0x1e,0x2,0x14,0xb5,0xd, 0x71,0xcd,0x5a,0x3f,0x36,0x7f,0xe6,0x6,0xb4,0x5d,0xbf,0x9a,0x98,0xc5,0xfc,0xaf, 0xa9,0xa7,0xd7,0x8f,0x96,0x57,0xf5,0xa1,0xe7,0xae,0xad,0xd8,0xf7,0xb1,0x7,0x31, 0xb3,0xe3,0x4,0x24,0xc1,0x8a,0x3c,0x2d,0x3e,0xf6,0x7e,0xec,0x7e,0x78,0xd6,0xd4, 0xa3,0x76,0x7d,0xcb,0x8b,0xf3,0xd5,0x62,0x91,0x90,0x16,0xcd,0x34,0x27,0xa8,0x9f, 0x57,0xa1,0x54,0xe0,0x9f,0x19,0x3,0xfe,0x2e,0xd6,0x18,0xce,0xa2,0x2,0x89,0x52, 0x52,0x3,0x4,0xce,0x94,0x68,0x79,0x81,0xa,0x3,0x93,0xcf,0x2c,0x87,0x1b,0x5d, 0x86,0xd1,0x5f,0x6c,0xcd,0x5a,0x40,0xbe,0x10,0x26,0x36,0xf2,0x1c,0x66,0x22,0xbf, 0x46,0x28,0xb1,0x3,0xe9,0xdc,0x10,0x7d,0x19,0x54,0xbf,0x19,0xab,0xbd,0xc5,0xf4, 0x90,0xac,0x71,0x1b,0xd6,0xaa,0xd7,0x44,0x60,0xc1,0x42,0x87,0x59,0x15,0x60,0xaf, 0x63,0x1b,0x3c,0xae,0x4d,0x70,0x5a,0xba,0x8,0x1c,0xea,0x78,0x58,0xb1,0x59,0xf2, 0xf2,0xe4,0x46,0x51,0xb3,0xf,0x64,0xc4,0x34,0xee,0x9b,0xfe,0x32,0x6,0x8f,0x3d, 0x7,0xa7,0xc7,0xc7,0x33,0xe4,0x5,0xee,0xbf,0x16,0xf9,0xf7,0x89,0x39,0xe4,0x19, 0x80,0x30,0x26,0x63,0x62,0x0,0x43,0x9b,0x8b,0x58,0x83,0x87,0x56,0xdf,0x5e,0xda, 0x9c,0x76,0x3b,0xf7,0xa5,0xb0,0xf7,0xad,0xb4,0x6f,0xa3,0xdf,0x87,0xa6,0x6,0x3f, 0x72,0x5d,0x39,0xa4,0x88,0x69,0x84,0x9,0x60,0xa6,0x67,0x23,0xc4,0x2c,0x52,0xc8, 0xe7,0xf2,0x5c,0xd9,0xb1,0xc8,0x32,0xe6,0xac,0x8f,0x13,0xbb,0x18,0x1d,0x21,0x16, 0xe2,0x71,0x70,0x6,0xc2,0x4c,0x64,0x6c,0xdc,0x3a,0x9f,0x7,0xbd,0x3d,0xcd,0x18, 0x9f,0x8,0x60,0x84,0x58,0x4a,0x22,0x96,0xe3,0xec,0x88,0x7d,0xcf,0x67,0x66,0xc2, 0x98,0x9b,0x8b,0x11,0x4b,0x99,0x46,0x67,0x47,0x3d,0xb1,0x1c,0x2,0x8e,0xc6,0x3a, 0xee,0xec,0x1f,0x1e,0x99,0xa6,0xf3,0xa8,0x81,0x0,0x87,0xf,0x8d,0x60,0x6c,0x3c, 0x80,0xbe,0xde,0x16,0xac,0x5e,0xdd,0x89,0xf6,0xf6,0x6,0xc,0xc,0x8c,0x73,0x56, 0x93,0xcb,0x6a,0x11,0x6e,0xd2,0xb9,0x58,0x87,0xaa,0x80,0x50,0x48,0xe6,0x10,0x78, 0x6a,0x8,0x81,0x87,0x87,0x68,0x35,0x4f,0xcc,0x8f,0x56,0xef,0x36,0xb7,0x13,0x23, 0x3f,0xdc,0x87,0x9a,0x95,0x75,0xd8,0xf4,0xf1,0xeb,0xaa,0x92,0xef,0x48,0xad,0x17, 0x4a,0x8,0x3d,0x3b,0x8a,0xf1,0x7,0x6,0x90,0x9d,0x48,0xd2,0xca,0xd8,0x84,0xfa, 0xed,0xad,0x68,0x7d,0xdd,0x5a,0x58,0x69,0xe5,0x7c,0xba,0x32,0xf4,0x8a,0xfe,0x89, 0x9f,0xfc,0xbe,0x5c,0x52,0x30,0x7c,0xef,0x21,0x4c,0xdf,0x7b,0xc,0x26,0x9b,0xd, 0xbe,0xcb,0x5b,0xd1,0x71,0x93,0xda,0x31,0x13,0x4a,0xa5,0xc5,0x0,0x84,0x25,0xdf, 0x22,0xc2,0xfb,0x27,0x70,0xe2,0x6b,0xcf,0xe8,0x6e,0x5b,0x77,0x5f,0x1d,0x2e,0xff, 0x7f,0x77,0xc0,0x7f,0x49,0x47,0xd9,0x78,0xab,0xe6,0x86,0xe8,0x5e,0x19,0x81,0x33, 0xdd,0x86,0x4b,0x3b,0x71,0xf9,0x3d,0xb7,0xe3,0xe9,0xf7,0xfc,0x2,0x13,0xf,0x1c, 0xa3,0x67,0xd0,0x8e,0xc4,0x50,0x8,0xc7,0xbe,0xba,0x13,0xdb,0xbf,0x78,0xb,0xdf, 0xe7,0x7c,0x1a,0x95,0xcb,0x37,0x5b,0x92,0x2a,0x1e,0x23,0xd6,0xc2,0x81,0x1,0xcb, 0xfa,0x8f,0x5c,0x81,0x9e,0x37,0x6f,0xd2,0xc0,0x43,0x7b,0x97,0x5e,0x97,0x35,0x13, 0xe4,0x32,0x83,0x94,0x1d,0xb4,0xdd,0xb5,0x5c,0x6e,0x76,0x99,0x80,0x8a,0xfa,0x8, 0x17,0x8a,0x71,0x9e,0xc0,0x18,0x88,0xfe,0xe,0x93,0xe1,0x9f,0x22,0x95,0x3d,0xc1, 0x93,0x11,0xb5,0xe0,0x1c,0xae,0x5c,0x99,0x1f,0xa3,0x54,0x12,0x48,0x99,0x3b,0x8, 0x40,0x1a,0x88,0x45,0xf4,0xa0,0xce,0x71,0x9,0x6a,0xdd,0x57,0xc2,0xe3,0xdc,0x4, 0x9b,0xb9,0xf1,0xac,0x9a,0x32,0x29,0xa4,0x21,0x44,0xa1,0x8,0xb,0xcb,0xf4,0x30, 0x8b,0x7a,0x3b,0x16,0x45,0xcb,0x60,0x66,0x7e,0x8e,0x7c,0x5e,0xf7,0xf8,0x70,0xd3, 0x82,0x14,0x8c,0x71,0x16,0xc3,0xd4,0x86,0x83,0x40,0xc5,0x5b,0xeb,0x22,0xb6,0xe1, 0x26,0x0,0xb3,0xd3,0xdf,0x56,0xee,0xac,0x37,0x13,0xf8,0xd4,0xf9,0xbd,0xa8,0xf5, 0xd7,0xa0,0xbb,0xa7,0x51,0x35,0x81,0x11,0xfb,0x8,0xce,0x25,0xb8,0xd2,0x67,0x8e, 0x7f,0xf6,0x45,0x66,0x3e,0x99,0xdc,0x5c,0x1,0x11,0x62,0x21,0xc3,0x23,0x33,0x68, 0x25,0x6,0xc2,0x18,0x8c,0xd7,0xeb,0xc1,0xea,0x95,0x9d,0xc4,0x36,0x9a,0xb9,0xf9, 0x8b,0x45,0x81,0x45,0x63,0x69,0xd2,0xcb,0x6a,0xef,0xf7,0x68,0x24,0x89,0x58,0x34, 0x89,0x89,0xf1,0x20,0x7a,0x8,0x38,0x9a,0xe8,0x98,0x66,0x2,0xa6,0x91,0xe1,0x29, 0x1e,0x9,0x96,0x88,0x65,0xf9,0xfb,0x7b,0x9e,0x1b,0xe0,0xe,0xfc,0xde,0xbe,0x16, 0x6c,0xdc,0xd4,0x8b,0x30,0x31,0x28,0xc6,0x5c,0xc2,0x74,0xbe,0x22,0x2b,0x8a,0x69, 0x7a,0xa1,0xa,0x4d,0x40,0x72,0x34,0x82,0x67,0x3f,0x76,0x1f,0x86,0x7f,0xb2,0x87, 0xee,0xdb,0xc2,0x5b,0x40,0x2b,0x79,0x82,0x67,0x62,0x67,0x4c,0xc9,0xf6,0x7f,0x75, 0x37,0x5a,0x5f,0xbb,0x6,0xfe,0x4d,0xad,0x5c,0xbd,0xe5,0xa3,0x59,0x1c,0xfa,0x8f, 0x47,0x71,0xe4,0xd3,0x8f,0xd3,0x67,0x58,0xe0,0xdd,0x1e,0xb,0xf9,0x2,0x8e,0x7c, 0x39,0x8f,0x8e,0x5b,0x36,0xd0,0xca,0xf9,0x16,0x78,0xba,0xeb,0xce,0xf0,0xb9,0xc9, 0x8b,0xe6,0xe4,0x30,0xd3,0x5e,0x64,0xff,0xc,0x6,0x7f,0xb6,0x87,0x1e,0x10,0x2, 0xbb,0x6f,0xe4,0xd0,0xf3,0xfa,0xcd,0xd8,0xfe,0x8d,0x37,0xc2,0xde,0xe8,0x9e,0xe7, 0x1f,0x39,0x6b,0x60,0xd1,0xc2,0x7d,0x7,0xbf,0xb3,0x8f,0x77,0xd,0x95,0x98,0x89, 0xd4,0x2,0xac,0xfd,0xf8,0x55,0x1c,0x50,0xca,0x4d,0xd0,0x4,0xed,0x19,0x2e,0x37, 0x36,0xab,0xe4,0xc8,0x10,0x9b,0x6d,0xf5,0x61,0xe3,0x27,0xae,0xe7,0x3e,0x95,0xcc, 0x18,0x3d,0x3f,0x30,0x63,0xe6,0xbe,0x7e,0xc4,0x3f,0x10,0x80,0xf7,0x3c,0xb2,0x95, 0xea,0xc2,0x3,0x66,0x87,0x55,0x5,0x3e,0x99,0x17,0x17,0x42,0xed,0x45,0xb4,0xd8, 0xb8,0x75,0xa3,0xe,0x28,0x65,0x50,0x14,0x99,0x1f,0x4e,0x28,0x7f,0x11,0x96,0x4d, 0x48,0xf1,0x0,0x6d,0x77,0xe0,0x2,0x8d,0xf4,0x5a,0x26,0xa0,0x52,0xfe,0x56,0x57, 0x6a,0x76,0xa5,0xb2,0x43,0x98,0x8,0xfe,0x2,0xb1,0xd4,0x3e,0xcc,0xc5,0x59,0x22, 0x63,0x18,0x4c,0xe7,0x49,0x2c,0xfa,0x46,0x4,0x2f,0x4f,0xcf,0xb2,0xc8,0x59,0x3, 0x2c,0xaf,0x63,0x2d,0xbc,0xee,0xed,0xb0,0x5b,0x3b,0xe1,0xb1,0x6f,0x82,0xcf,0xb5, 0xf5,0x24,0x9f,0x33,0x2b,0x2,0x59,0x94,0xe3,0xbc,0x36,0x57,0xb1,0x44,0x4c,0x81, 0xc0,0x2a,0x57,0x98,0x26,0xd0,0x4a,0x70,0xff,0x8b,0x6c,0x4a,0xa1,0x10,0x2a,0xa1, 0xb1,0xb9,0x88,0xda,0x75,0x1b,0x20,0xb0,0xe8,0x2f,0x5a,0xe9,0x96,0x48,0xdb,0x16, 0x98,0xcf,0x84,0x85,0xfd,0xe6,0x4a,0x5c,0xf1,0xb3,0x28,0x30,0x66,0x16,0x28,0xf2, 0x7e,0xee,0xaa,0x4f,0x85,0xad,0xf4,0x8b,0x4,0x10,0x2c,0xa3,0x7e,0x68,0x78,0x1a, 0x76,0x9b,0x15,0x35,0xb4,0xca,0x76,0x12,0xb8,0xb8,0xdd,0xe,0x35,0xcc,0x98,0x58, 0x88,0xd5,0x46,0xc,0xa6,0xc1,0x87,0x86,0x86,0x5a,0x24,0x93,0x69,0x9e,0x87,0x12, 0x89,0xa6,0x10,0x8,0xc4,0x11,0x23,0xa0,0xe0,0x91,0x66,0xdc,0x37,0x93,0xc3,0x91, 0xc3,0xe3,0x4,0xc,0x1,0xd4,0xd5,0x7a,0xd0,0xd0,0x58,0x83,0xa6,0xa6,0x5a,0xac, 0x5c,0xd9,0x8a,0xce,0xce,0x46,0x35,0xfc,0x78,0x7a,0xe,0x33,0x81,0x28,0xf,0x18, 0x10,0xe8,0xb1,0x8,0x13,0xb8,0x84,0x77,0x1f,0x47,0x6d,0x9d,0x87,0xf6,0x65,0x11, 0x63,0xd,0x68,0x6a,0xa9,0x45,0x60,0x26,0x8e,0xf1,0xf1,0x59,0x6e,0x32,0x9b,0x9e, 0x89,0xf2,0x9f,0xcd,0x8d,0xc4,0x86,0x5a,0x89,0x35,0x6c,0xea,0xe6,0x26,0x3a,0x96, 0x7,0x33,0x3b,0x17,0xe7,0x41,0x8,0x8a,0x50,0x51,0xd1,0xd5,0xe1,0xb9,0xe5,0xcf, 0x88,0xbf,0x22,0xab,0x4b,0xd7,0x6a,0x7d,0x1c,0xeb,0x9f,0xc3,0x13,0x7f,0xf6,0x13, 0x4,0x9f,0x1c,0xc3,0x9a,0xf,0x5c,0x89,0xfa,0x4b,0xdb,0x61,0xf6,0xda,0x90,0xf, 0x65,0x88,0xb9,0x8c,0x10,0x53,0x79,0xe,0xa9,0x69,0x62,0x56,0xdf,0xd8,0x5,0xff, 0x57,0xdf,0x80,0x2,0x81,0xdd,0xee,0xbf,0xfd,0x2d,0x8e,0xde,0xbd,0x3,0x3d,0xaf, 0xdd,0x8a,0xf6,0x9b,0xd7,0xc2,0xd6,0xe4,0x42,0x8e,0x5e,0x9f,0xdd,0x31,0x84,0x43, 0xdf,0xd9,0x81,0x2,0xcd,0xf9,0x95,0xdf,0x7d,0x33,0x1c,0x4d,0xee,0xc5,0x75,0x3c, 0x8f,0xf0,0x92,0x54,0x36,0xb9,0xc0,0x9f,0xcc,0x58,0x63,0xdf,0x5b,0x37,0xa3,0x6e, 0x4d,0x13,0x4a,0xb9,0x22,0x66,0x88,0x9,0x1d,0xff,0xf1,0x4e,0xd8,0xda,0xbd,0xd8, 0xfe,0x85,0xd7,0x11,0x2b,0x78,0x7e,0x5f,0xa5,0xf8,0x70,0x88,0xb7,0x5d,0x2e,0x3f, 0xb1,0xee,0x2e,0x2f,0xda,0x5f,0xbf,0xb6,0xda,0x90,0x57,0x65,0x92,0xab,0x56,0xc4, 0x95,0xdf,0xeb,0x36,0x36,0xa1,0xe9,0xca,0x3e,0xc,0xdc,0xb3,0x97,0xbb,0xf6,0xe3, 0xa3,0x21,0x84,0xf,0xcf,0x9e,0x57,0x50,0x99,0xc7,0xf6,0xc4,0x72,0x96,0xbc,0x9a, 0x9d,0xdf,0x7a,0xed,0xa,0xb8,0x3a,0xbd,0xf3,0xf6,0x16,0xf5,0xeb,0x15,0xcf,0xda, 0xc,0x79,0x1,0x48,0x8c,0xb6,0xd7,0x40,0xad,0xed,0x5,0x3,0x54,0x5e,0xae,0x90, 0xa2,0xd7,0x16,0x52,0x1f,0xde,0xd9,0xc8,0xc3,0x38,0x3a,0xfe,0x4f,0x98,0x8d,0x3f, 0xc9,0x1f,0x64,0x2b,0x2b,0xa1,0x62,0x52,0xcb,0x2b,0xe5,0x48,0x91,0x5b,0xcd,0xb5, 0xa8,0xf7,0x5c,0x4c,0x1b,0x6b,0x74,0xb5,0x9d,0xf7,0x30,0xb1,0x5a,0xe6,0xe7,0xa1, 0x14,0xe5,0x34,0x67,0x35,0xb9,0xfc,0xc,0xd2,0xb9,0x49,0x24,0x33,0xc7,0x90,0xca, 0xd,0x20,0x5b,0x50,0xc3,0x89,0x59,0x28,0x71,0xb1,0x94,0x20,0xb0,0x49,0x93,0x62, 0x20,0xc0,0x61,0xe7,0xc8,0x58,0xb0,0xa9,0xed,0x63,0xa8,0x97,0x37,0x21,0x6f,0x8f, 0xf2,0x2f,0x13,0x53,0xf0,0x2c,0xde,0x9f,0x39,0x5b,0x8b,0x4,0x32,0x79,0xfa,0x3b, 0x97,0xcd,0x23,0x9d,0xc9,0x22,0x95,0xcc,0x20,0x16,0x67,0xfe,0x8b,0x1c,0x81,0x4d, 0x81,0xfb,0x4c,0x98,0x96,0x61,0x60,0xc7,0x80,0x67,0x26,0x90,0x85,0x4c,0xca,0x9f, 0xe5,0xaf,0xb0,0x44,0x49,0x97,0xd3,0x41,0x0,0xe1,0x26,0x40,0xa9,0x21,0x90,0x71, 0xd2,0xdf,0x76,0xf8,0x6a,0x5a,0x79,0xb4,0x58,0xa2,0x33,0x85,0xb9,0x60,0x1c,0x53, 0x2c,0x7f,0x85,0x65,0xe2,0x27,0x72,0xdc,0xaf,0x90,0x23,0x16,0x33,0xca,0xf2,0x53, 0xa6,0x43,0xa8,0xa9,0x99,0x41,0xb,0xb1,0x97,0xf6,0xf6,0x7a,0xf4,0xf5,0x35,0xa3, 0xa3,0xa3,0x1e,0x53,0xd3,0x41,0x9e,0x9b,0x32,0x4b,0xe0,0x92,0xa1,0x6b,0x30,0xd1, 0x1c,0xce,0xcd,0x45,0x69,0x8b,0x10,0x1b,0xa,0xa1,0x8f,0x98,0x51,0x17,0x81,0x4b, 0x7b,0xbb,0x1f,0x43,0x23,0xd3,0x18,0x1c,0x9a,0xa1,0xb1,0x33,0xc4,0x76,0x82,0x4, 0x4a,0x61,0xb4,0xd2,0xeb,0xbd,0xc4,0x6e,0xb6,0x5e,0xb4,0x82,0xae,0x37,0x82,0xfd, 0xbb,0x8e,0x23,0x9f,0xab,0x80,0xfb,0xbc,0x50,0xe3,0x79,0x86,0x28,0x65,0x5e,0x5e, 0x23,0xb,0x3b,0x3d,0xfc,0xc5,0x27,0x30,0xf6,0xc4,0x11,0x5c,0xfc,0xa1,0xd7,0x60, 0xdb,0x97,0x6e,0x99,0xf7,0x79,0xf4,0xbc,0x73,0xb,0xac,0x8d,0xe,0x1c,0xfa,0xd7, 0x1d,0x8,0x3e,0x3b,0x89,0x5c,0x38,0x8d,0xa9,0x7,0xfb,0x9,0x50,0x1e,0x43,0xeb, 0x55,0x6b,0x71,0xd5,0x2f,0xde,0x3e,0xcf,0xf,0xd1,0xf7,0xce,0x8b,0x90,0xa6,0x7b, 0x1a,0xfa,0xdd,0x1,0x4c,0xfc,0x76,0x23,0x56,0xbe,0xe7,0x92,0x53,0x3c,0x3c,0xd5, 0x55,0xae,0xca,0xf9,0x1e,0x32,0x4f,0x18,0x64,0x79,0x47,0xde,0x55,0x8d,0x7c,0x63, 0xd2,0x76,0xcb,0x2a,0x44,0x8e,0x6,0x30,0xfe,0x83,0xfd,0xd8,0xf2,0xf,0xaf,0x82, 0xbd,0xc9,0x53,0x29,0x29,0xb3,0x4,0x8d,0x19,0x3f,0x34,0x87,0x4,0xcd,0x1f,0x37, 0x23,0xd1,0x7f,0x8d,0x57,0xf7,0xc2,0x5a,0x63,0x5b,0xd2,0x33,0x2f,0xd9,0x2d,0x3c, 0x57,0x65,0xe4,0x17,0x7,0x51,0xca,0xc8,0xbc,0x24,0x4c,0x76,0x2e,0x7d,0x6,0x4f, 0xd1,0xb9,0x17,0xc6,0x74,0x5,0x49,0x82,0x77,0x4d,0x3,0xf7,0xf,0x2a,0xfa,0x9c, 0xbe,0x44,0xcb,0x4c,0x9f,0x5f,0x61,0xcc,0xe4,0x36,0x8d,0xa9,0xc0,0x0,0x95,0x97, 0x35,0x4b,0xa9,0x84,0xb7,0x8e,0x5,0x7f,0x84,0xc3,0xa3,0x7f,0x4f,0x0,0x30,0x46, 0x40,0xa1,0xbe,0xcd,0xac,0x43,0xec,0x67,0x8d,0x73,0x3d,0x1a,0x6a,0xae,0xa5,0xed, 0x6,0xe,0x26,0x16,0x93,0x6f,0xde,0x48,0x69,0x3a,0x26,0x9a,0x7c,0x8e,0x0,0xe4, 0x8,0x62,0x99,0x3,0x48,0xd0,0xc6,0x9a,0x61,0x95,0x88,0xa1,0xc8,0x72,0x49,0xb5, 0xd,0xa3,0x52,0xfb,0x4b,0xd4,0x16,0x60,0xec,0x27,0xf3,0xc9,0x48,0x82,0x9d,0x3b, 0x76,0x4b,0x5,0x52,0x15,0x36,0xe8,0xd1,0x41,0x26,0x93,0x19,0x8a,0x49,0x1,0xbb, 0x1c,0x27,0x4f,0x10,0x74,0x70,0xb3,0x81,0xac,0x45,0x7c,0xa5,0xb3,0x39,0x24,0x12, 0x59,0x24,0x8,0x60,0x58,0xe4,0x55,0x38,0x1c,0x47,0x3a,0x9d,0x85,0x44,0xe0,0x62, 0xd2,0x72,0x21,0xb2,0xe9,0x3c,0x32,0xc4,0x3e,0x42,0xc4,0x6,0x46,0x49,0xb9,0x33, 0x36,0x51,0xeb,0xf7,0xa0,0x9e,0x7e,0xaa,0x79,0x2c,0x2e,0x78,0x58,0x34,0x58,0x73, 0x1d,0x31,0x8e,0x4,0x37,0x53,0x4d,0x93,0x92,0x67,0x80,0x65,0x26,0x44,0x65,0x25, 0x43,0x58,0xe8,0x72,0x8c,0xd8,0xd0,0xc4,0x44,0x90,0x9b,0xc5,0x98,0x39,0xac,0xab, 0xb3,0x89,0x3b,0xea,0xa7,0x88,0x1,0x1c,0xef,0x9f,0xc0,0xec,0x6c,0x94,0xe7,0xba, 0xb0,0x90,0xd0,0x58,0x24,0x8d,0xbd,0x7b,0x87,0x31,0x3c,0x32,0xcb,0x81,0x83,0xf9, 0x66,0x98,0xbf,0x66,0xe0,0xc4,0x34,0xaf,0x1b,0xc6,0xc2,0x9e,0xc7,0x46,0x67,0xe8, 0x98,0x18,0x3a,0x8,0xa8,0x7a,0xba,0x1a,0xf1,0xca,0x4b,0xd7,0x60,0xce,0xc9,0x82, 0x13,0xcc,0x55,0x9f,0x50,0x55,0x51,0xc3,0x72,0xc6,0xb7,0x58,0x31,0xe7,0xb0,0xbf, 0x53,0xa3,0x61,0x8c,0xfd,0xf2,0x10,0x6a,0xdb,0x9b,0xd1,0xf7,0xfe,0x4b,0xab,0x16, 0xc,0xea,0x8a,0x98,0x29,0xac,0xb5,0x1f,0xbc,0x1c,0x43,0xdf,0x7c,0x16,0x19,0x2, 0xcf,0xc8,0xa1,0x19,0xcc,0x3d,0x33,0xce,0xf7,0x61,0x85,0x1a,0x27,0xff,0x70,0x82, 0xfb,0x56,0xca,0xbe,0x7b,0xd1,0x2a,0xc1,0xee,0xf7,0x70,0xbf,0x56,0xf8,0xc0,0x24, 0x31,0x8d,0x2,0x81,0x8e,0x79,0x91,0xe5,0xb7,0x1a,0x39,0xc6,0x2a,0x40,0x97,0x23, 0x33,0xd4,0xc5,0xb5,0xc0,0xb3,0xc6,0x67,0xfe,0x30,0x84,0xd0,0x73,0x2a,0x88,0x31, 0x6,0x94,0x8f,0x64,0x78,0xe0,0x45,0x2e,0x9c,0xe1,0xa0,0x52,0x7d,0x4f,0x67,0xfd, 0xc4,0x66,0x88,0xcd,0x15,0x8b,0xaa,0x91,0x48,0x94,0xe1,0x59,0xe3,0x9f,0x97,0x91, 0x7e,0xb6,0xe2,0x68,0xf3,0xc0,0xec,0xb6,0xa0,0x90,0xc9,0x40,0x52,0x24,0x14,0x82, 0xc9,0x53,0x18,0xac,0xce,0xef,0xb7,0x8f,0x1,0x1c,0xab,0xc2,0x5c,0xbd,0x74,0x58, 0xa6,0x69,0x8e,0x2c,0x5b,0xfe,0x61,0x2c,0x43,0x31,0x5d,0x68,0x98,0xc2,0x14,0x77, 0xa1,0x98,0x44,0xff,0xe4,0x3f,0x63,0x28,0xf0,0xd,0x5a,0xb9,0xc7,0xf8,0x3a,0x99, 0x16,0xfb,0x4,0x1c,0x76,0x34,0xf8,0xae,0x40,0x47,0xc3,0xdb,0xe1,0x73,0x5e,0xc, 0x8f,0x63,0x75,0xd5,0x2a,0xab,0xc4,0x3b,0x36,0x86,0xe3,0x4f,0x63,0x36,0xf6,0x0, 0xe2,0xd9,0x23,0xb4,0x5a,0x1f,0xa3,0xd5,0x7d,0x48,0x7,0xb,0x4d,0xbf,0x70,0xd3, 0x19,0x2f,0xb,0x29,0x6b,0x3e,0x18,0x59,0x4d,0x87,0xe0,0xab,0x46,0x89,0x7,0x86, 0xf1,0xd5,0x39,0x8b,0x50,0x2a,0x71,0xb3,0x57,0x91,0x1f,0xc0,0xfb,0xac,0x48,0x6a, 0x58,0x26,0xab,0x8,0x2c,0x89,0xda,0xd7,0x8e,0x18,0x1,0xcb,0xb0,0x97,0x58,0x45, 0x63,0x52,0x98,0x1e,0x62,0x21,0xa,0x29,0xf7,0x62,0xbe,0x88,0x64,0x2a,0x83,0x44, 0x32,0xad,0x46,0x7d,0xcd,0x25,0x90,0x4e,0x66,0x91,0x65,0x1,0x5,0x5c,0xc1,0xd2, 0x8a,0x34,0x2f,0x63,0x72,0x2a,0xcc,0x33,0xe2,0x1d,0x76,0x1b,0xea,0xfc,0x2e,0x9e, 0x11,0x5f,0x47,0x4a,0xd4,0xe5,0xb0,0xa1,0xa3,0xad,0x1,0xf5,0x7e,0x2f,0xba,0x23, 0x49,0x2,0x8b,0x30,0xf7,0xbf,0xb0,0xda,0x5e,0xc,0xf0,0x4c,0x74,0xfe,0x24,0x1, 0xcb,0x89,0x64,0x8a,0xbf,0xd7,0xdc,0xec,0x47,0x77,0x37,0x1,0x4b,0x5b,0x1d,0x1a, 0xe8,0xf8,0x31,0x96,0xf4,0x38,0xc4,0x9c,0xf4,0x49,0x1e,0xba,0x2b,0x12,0xb0,0x85, 0xe8,0xf7,0x68,0xb4,0x1f,0x13,0x63,0x5e,0xac,0x5c,0xdd,0xce,0x4d,0x5e,0x1d,0x5d, 0xd,0x38,0x7e,0x7c,0x12,0x53,0x53,0x41,0x5e,0x9f,0x8c,0xf9,0x56,0x66,0x2,0x61, 0xf4,0x36,0x75,0xa0,0x71,0x45,0x11,0xc3,0x73,0xff,0x88,0xf6,0x96,0xb7,0xc0,0xef, 0xbc,0x7a,0xbe,0x49,0x47,0xa8,0x2e,0x78,0x58,0x79,0x3d,0x33,0x9b,0x42,0x92,0xee, 0xa7,0xf3,0x86,0x75,0xf0,0xac,0x6a,0xa8,0x80,0x51,0x55,0x48,0xaf,0xc5,0x65,0x83, 0xb5,0xde,0x8e,0xc,0x1,0x6f,0x7a,0x2a,0x8e,0xcc,0x24,0xb,0xad,0xb5,0x62,0xec, 0x7b,0xfb,0x31,0xf4,0xff,0xf6,0xd1,0xe7,0xa1,0xe8,0xa1,0xc0,0x8a,0x28,0x11,0x3b, 0x2c,0xf1,0x52,0xec,0xac,0x53,0x23,0xcb,0x2a,0x87,0x75,0x71,0x7f,0xa,0xe3,0xb, 0xe2,0xbc,0xeb,0x11,0x11,0xdc,0x3b,0x81,0xfd,0xff,0xfc,0x7,0x2,0xab,0x7e,0x14, 0x93,0x79,0x35,0x77,0x84,0xbe,0x3a,0x32,0xed,0xc8,0xaa,0x8,0x97,0x8a,0x1a,0x0, 0xe9,0x95,0x4,0x96,0x42,0x33,0x2a,0x16,0x21,0xce,0xa4,0xdd,0xd6,0xe7,0x67,0x8e, 0xb2,0x99,0x21,0x99,0x2d,0x28,0xf2,0xdc,0x3a,0x7a,0xdc,0x72,0xa5,0x17,0xfd,0xeb, 0xa7,0x2e,0xae,0x84,0x79,0x6d,0xab,0x5,0x61,0x59,0x6,0xf,0xb3,0x28,0xaf,0xbb, 0xb1,0x4c,0xe5,0x82,0x0,0x15,0xbd,0xc4,0x4,0x6d,0xe1,0xf8,0x33,0x38,0x36,0xf9, 0x29,0x2,0x86,0x7,0x79,0x64,0x13,0x63,0xd,0x5e,0x2,0x10,0x9f,0x73,0x3b,0xea, 0x7d,0xd7,0x71,0x56,0x62,0x33,0xab,0x8a,0x8a,0x25,0x2c,0x86,0xe2,0x4f,0x71,0x36, 0x12,0x8c,0x3f,0x86,0x48,0x72,0x2f,0x72,0xc5,0x59,0xde,0xd5,0x91,0x29,0x24,0x1e, 0x5,0x26,0x81,0xdb,0xd9,0x15,0x9e,0xdf,0x52,0xe4,0xbd,0xe1,0x99,0xb0,0x22,0x8e, 0x4e,0x5b,0x7,0x8d,0xd5,0xa,0x8b,0xd4,0xc8,0x57,0xe3,0x26,0x5e,0xda,0xde,0x7, 0xbb,0xb3,0xe,0x4a,0xc8,0x8e,0xc9,0xb1,0x59,0x1c,0xdb,0xb9,0x1b,0x52,0x9d,0x89, 0x7f,0xe1,0x18,0x70,0x98,0x8,0x75,0x24,0x96,0xa3,0x62,0xb3,0xc0,0x2c,0xa9,0x9, 0x84,0x56,0xa2,0x51,0x76,0x56,0xfb,0x8b,0x39,0xe3,0x89,0x49,0xc8,0xcc,0x44,0x46, 0xa,0xca,0x4c,0x27,0x67,0x25,0x59,0x7c,0x3e,0x17,0x9a,0x9b,0xea,0x88,0x65,0xb1, 0xe4,0xc5,0x18,0xe6,0x82,0x51,0xb5,0x8a,0x71,0x34,0xc1,0xcd,0x64,0xbc,0xaa,0xb0, 0xc8,0xc2,0x8a,0x33,0x48,0x8f,0x65,0x78,0xc4,0x96,0xd7,0xe7,0xe4,0xfe,0x16,0xc6, 0x5c,0xfc,0xfe,0x1a,0xee,0x70,0x67,0xe3,0xb4,0x75,0xd4,0x61,0x72,0x32,0xcc,0x4d, 0x5c,0x2c,0xa2,0x8b,0x95,0x84,0x62,0x91,0x68,0x29,0x62,0x47,0x3,0xa9,0x9,0x1e, 0x72,0xdc,0xd4,0x44,0xcc,0xa5,0xbd,0x11,0xdd,0x5d,0x4d,0xdc,0x44,0x36,0x3a,0x12, 0x20,0x36,0x32,0x87,0x50,0x28,0xce,0x4d,0x62,0xcc,0xe7,0x30,0x43,0x2c,0x26,0x48, 0xc7,0xb7,0xb6,0xd6,0xf3,0xfc,0x96,0x8b,0x36,0xf7,0xa0,0xa9,0xa1,0x6,0x63,0xe3, 0x41,0x1e,0x1c,0x10,0x4b,0x64,0xb0,0x7f,0x76,0x0,0xcd,0x8e,0x5a,0xb4,0x16,0x24, 0x1c,0x9f,0xf9,0x34,0x66,0x4c,0xf,0xa1,0xbb,0xf1,0xcf,0x68,0xde,0x7a,0x2a,0xc4, 0xa4,0x1c,0xb2,0xcd,0x41,0x46,0x35,0x95,0xb1,0x48,0x36,0x1e,0x9e,0xcb,0xe6,0x47, 0xac,0x36,0x98,0x71,0x75,0xa9,0xa6,0x18,0xb2,0x9c,0x9e,0x7c,0x89,0xfb,0x32,0x98, 0x69,0x8a,0xf5,0x2c,0x61,0xb9,0xda,0xbd,0x6f,0xdd,0x2,0x47,0xab,0x1b,0xa,0x53, 0xaa,0x5a,0x59,0x78,0xc6,0xcc,0x14,0x49,0xcd,0x2b,0x69,0x7c,0x65,0x17,0x67,0x2e, 0x8b,0xea,0x77,0x51,0xe4,0x63,0x97,0x64,0x45,0x4f,0x7e,0x9c,0x7d,0x66,0x4,0x4f, 0xbd,0xe3,0xbf,0x90,0x20,0xf6,0xd4,0xfe,0xc6,0x35,0x68,0xba,0xac,0x1b,0xae,0x95, 0xf5,0xdc,0x9c,0xb8,0xef,0x53,0x7f,0x44,0xf2,0x60,0xa0,0xba,0xa,0xfd,0x19,0xa, 0x33,0x2e,0x66,0x33,0x52,0x9f,0x5f,0x51,0x4b,0xd8,0xcc,0xc5,0x73,0xcf,0xeb,0x3b, 0x50,0x4a,0xe4,0x50,0xca,0x67,0xf8,0x73,0x5a,0xa2,0x7b,0x36,0x55,0x99,0xd0,0x58, 0xb8,0xb3,0x52,0x5d,0x2a,0x46,0x5c,0xda,0x77,0x6b,0x29,0x4c,0x85,0x33,0x2e,0x41, 0x2e,0x3b,0xa9,0xd4,0xcf,0x0,0xcb,0xca,0xfa,0xc5,0x42,0x87,0xff,0x1e,0xcb,0x58, 0x5e,0xc6,0xa0,0x52,0x95,0x97,0xa0,0x3d,0xb1,0x53,0xa1,0x7b,0xb1,0x7f,0xf8,0xaf, 0xb9,0x63,0x9e,0x2d,0x18,0x6b,0x9c,0x1b,0x69,0xb5,0xfc,0x41,0x34,0x7a,0x5f,0x43, 0xca,0x9a,0x15,0x7b,0x54,0xbf,0x68,0xa9,0xcc,0x30,0x26,0x42,0x3f,0xc5,0x5c,0xfc, 0x21,0xde,0xeb,0x9d,0x31,0x1b,0x20,0xab,0x86,0x3a,0xb2,0xb8,0x7b,0x16,0x4f,0xac, 0xa8,0x3d,0xd2,0xd5,0x2e,0x2b,0x2c,0xec,0xd6,0x1,0xaf,0x9d,0xc0,0xc9,0xb5,0x8d, 0x98,0xc4,0x46,0x38,0xad,0x3d,0x4,0x28,0xcd,0x34,0x6e,0x3,0xad,0xf8,0xad,0x6a, 0xaf,0xb,0xee,0xb1,0x34,0xf1,0xb0,0xe2,0x54,0x31,0x81,0x83,0xc1,0xff,0xc4,0xc8, 0xd8,0x0,0x1c,0x89,0x3a,0xae,0xd0,0xaa,0x4b,0x84,0xf0,0x2,0x91,0x8a,0x1a,0x2c, 0x60,0xb1,0x9a,0x60,0xb3,0x33,0x50,0xb1,0xc1,0xcd,0x9c,0xf1,0x1e,0x3b,0xbc,0x5e, 0x37,0x5c,0xb4,0x1a,0x17,0xb4,0xd6,0xba,0xec,0x9a,0x58,0x6e,0x8b,0xa3,0xbd,0x9e, 0xfb,0x41,0xa,0xb9,0x22,0xa2,0xf1,0x14,0xf7,0x77,0xb0,0x2,0x90,0x89,0x64,0x8e, 0x8f,0xc9,0x5b,0x1d,0x17,0x19,0xf8,0xc4,0xe9,0x3d,0x5a,0xbd,0x5b,0xcc,0xc4,0x5a, 0xdc,0x68,0x23,0x16,0xc2,0x0,0xa2,0x8e,0x95,0x78,0xf1,0xb8,0x91,0xee,0x69,0xe4, 0x9,0x91,0xa3,0xe3,0x2c,0x72,0x2c,0xc6,0x4d,0x4a,0xec,0x9e,0x59,0xf9,0xfb,0xc1, 0xc1,0x69,0x4c,0x4e,0x84,0x9,0x94,0x58,0x8,0x72,0x2b,0x56,0xac,0x6c,0xe1,0xc0, 0x31,0x31,0x19,0xc4,0xe0,0xf0,0xc,0x37,0xcb,0x99,0x24,0x35,0xf8,0x60,0x64,0x78, 0xe,0x53,0x13,0x21,0x34,0x36,0xd5,0x60,0xd5,0xaa,0x76,0x62,0x39,0xd,0x98,0x18, 0x9f,0xc5,0xe0,0xe8,0xc,0xe6,0x62,0xb3,0xc4,0xac,0x1a,0xe8,0x33,0xf8,0x28,0x4c, 0xed,0x71,0x9c,0x98,0xf8,0x2a,0x76,0x1d,0xbf,0x3,0x9d,0x8d,0xff,0x13,0x9d,0xd, 0x77,0xf1,0x26,0x65,0x3a,0xb0,0x54,0xd9,0xdd,0xad,0x75,0x4e,0x38,0x88,0x5d,0x25, 0x6,0x66,0x11,0x3b,0x11,0x44,0xcd,0x8a,0xfa,0x93,0xaa,0xf1,0x86,0xf,0x5,0x90, 0x99,0x48,0xf2,0x92,0x21,0x35,0x6b,0xfc,0xb0,0xf8,0x2c,0xbc,0x9c,0x49,0xf3,0xf5, 0x3d,0xe8,0xbe,0x7d,0x13,0x7,0xa6,0x79,0xd5,0xa7,0xcb,0xe5,0xb9,0x24,0xe1,0x94, 0x6c,0xc2,0x4c,0x2c,0x81,0xd5,0xfb,0xca,0x46,0x52,0xdc,0x44,0xc6,0xe4,0xe8,0xe7, 0x1e,0x47,0x64,0x20,0x80,0x8d,0x1f,0xb9,0x6,0x9b,0xfe,0xe9,0x3a,0x9e,0x99,0x5e, 0x7e,0xde,0xfa,0xbf,0xb9,0x1b,0x89,0x7d,0x1,0x88,0xca,0xc9,0xcc,0xeb,0x6c,0x45, 0xb4,0x4b,0x4,0x50,0x66,0x5e,0x6,0x45,0x90,0x25,0x44,0x9,0xa4,0xe4,0x62,0x81, 0xbf,0x56,0xb5,0xdc,0x5f,0x50,0x3d,0xf9,0xe4,0xa6,0x2f,0xc9,0x81,0x39,0xe4,0x63, 0x79,0xcd,0x21,0x2e,0xc3,0x5e,0x15,0x8c,0xc0,0x3e,0x5b,0xd1,0x64,0xd2,0x93,0x41, 0x4b,0x89,0x2,0x37,0xb7,0x4a,0x98,0x6f,0x76,0x2c,0x57,0x57,0x56,0xe6,0xa5,0xf4, 0x28,0xa8,0x2e,0x87,0x79,0x56,0x18,0x53,0xdd,0xf2,0x65,0x79,0xd5,0x8d,0x64,0xe6, 0xae,0xbb,0xb0,0xcc,0xe5,0x65,0xc,0x2a,0xd5,0xd5,0x5e,0x4b,0x18,0x9,0x7c,0x7, 0x7,0x47,0xfe,0x8e,0x98,0x44,0x2,0x3e,0xcf,0x6,0x74,0xd5,0xbf,0x1f,0xad,0xb5, 0xb7,0xc1,0x66,0xd5,0xfa,0xb9,0x97,0xa,0x88,0xc4,0xf7,0x60,0x64,0xee,0x6e,0x4, 0xa2,0xbf,0x41,0x96,0x18,0x89,0x2c,0x17,0xa1,0x5a,0xa3,0x44,0xe,0xa,0x3c,0xed, 0x8c,0x99,0xac,0x8a,0x32,0xcf,0x39,0x61,0x40,0xe4,0x71,0x6c,0x44,0x4b,0xcd,0xad, 0xa4,0x88,0x5f,0xc9,0x1d,0xf8,0x26,0xb1,0x86,0xdb,0xd1,0x17,0xae,0xe6,0x58,0x44, 0x58,0x49,0x61,0x9,0x89,0x69,0x52,0x5c,0x32,0xef,0xc3,0x62,0xb5,0x16,0x51,0x63, 0xf3,0xc0,0x4a,0xe0,0xc0,0x92,0xd,0x19,0xfb,0x60,0xe3,0x33,0x65,0x5c,0x2c,0xa9, 0xed,0x84,0x59,0x55,0xa7,0x62,0x46,0x26,0xa0,0x2b,0xd0,0x75,0x24,0xb9,0xfe,0xb0, 0x90,0x2,0x60,0xb9,0x2b,0x76,0xbb,0x89,0x47,0x76,0x31,0xf3,0x95,0xcb,0x69,0xe5, 0xfe,0x10,0x16,0x85,0xc4,0xbe,0xd8,0xec,0xf7,0xc6,0xfa,0x1a,0xee,0x47,0x61,0xbe, 0x90,0xb9,0x50,0x8c,0x80,0x20,0x88,0x70,0x38,0xc1,0x93,0x11,0xcb,0xcc,0x8d,0x45, 0x80,0x4d,0x4f,0x85,0xb8,0x7f,0x64,0x60,0x78,0xa,0x1d,0xac,0x60,0x64,0x6b,0x1d, 0x1c,0xe,0x2b,0xaf,0xfd,0xc5,0x92,0x2b,0x3,0xb3,0x61,0x9c,0xe8,0x9f,0x40,0x94, 0xd8,0x5,0x73,0x27,0x98,0xe8,0xfe,0xa,0xc5,0x3c,0x46,0x27,0x66,0xe9,0xbd,0x18, 0x67,0x2e,0x2b,0x57,0xb5,0xa1,0x6f,0x45,0x2b,0x9a,0x9,0x98,0x86,0x86,0x27,0x31, 0x32,0x32,0x8b,0x5c,0x2e,0xcf,0x99,0x16,0x2b,0x16,0xc8,0x12,0x23,0x43,0xa1,0x4, 0x31,0x21,0x3f,0xfa,0x7a,0x5b,0x39,0x83,0xd9,0x2f,0x1d,0x45,0x8a,0x57,0x28,0x76, 0xc0,0x6d,0xe9,0xc0,0xe6,0xae,0x7f,0xc7,0x4c,0xf4,0x7e,0xc,0xce,0x7c,0x5,0xb3, 0x91,0xfb,0xd0,0xd7,0xf2,0x77,0xa8,0xf3,0x5c,0xca,0x81,0x58,0xa9,0x32,0x82,0x79, 0xba,0x6b,0xd1,0x72,0xc3,0x2a,0xf4,0xff,0xf0,0x19,0x9c,0xf8,0xd6,0xb3,0xd8,0xfa, 0x7f,0x6e,0xa0,0x5d,0x2a,0x36,0xa2,0x1c,0xcb,0xf2,0xff,0xc2,0xe3,0xc8,0x67,0x53, 0xa8,0xbf,0xb4,0x15,0xbe,0xf5,0xcd,0xa8,0xdb,0xde,0x9,0xdc,0xb3,0xb,0x87,0xfe, 0xef,0xe,0xf8,0x2f,0xed,0x80,0xa7,0xab,0xf6,0x24,0x3d,0x27,0x9c,0x21,0xde,0xd7, 0xea,0xb5,0xc3,0xe4,0xb3,0x22,0x74,0x68,0xa,0xa9,0xf1,0x28,0x31,0x9e,0x1a,0x64, 0x66,0xd3,0x90,0x8,0x98,0x99,0x19,0xce,0xe4,0xb4,0xe8,0xfb,0x4e,0xef,0x18,0xe4, 0xb5,0xc9,0x18,0x3,0x92,0xab,0x3,0x6c,0x97,0xe8,0x53,0x71,0xf6,0xfa,0xe0,0x6a, 0xf4,0x22,0x12,0xcc,0x70,0x40,0x8,0x3c,0x32,0x84,0x2c,0xfd,0xee,0x68,0x32,0xab, 0x65,0x7d,0xca,0xf1,0xee,0x1a,0x90,0x68,0x81,0x72,0x5a,0x59,0x18,0xb5,0xb3,0x62, 0x2e,0x9e,0xc5,0xd4,0x1f,0x87,0x20,0x13,0x73,0x63,0x21,0xc5,0xa2,0x60,0x86,0xd5, 0xe7,0xa8,0x30,0x30,0x9b,0x9,0x66,0x87,0x5d,0x6b,0x77,0x4c,0x8b,0xaa,0xc9,0x4, 0x8a,0xc9,0x2c,0xcf,0x84,0x67,0xcf,0xa3,0xa8,0x55,0x9b,0x60,0xd1,0x6f,0xb2,0x56, 0x75,0xa0,0xdc,0x4f,0x27,0x4e,0x8b,0xb,0xf5,0x29,0x35,0xa9,0x59,0xf9,0x4b,0xa2, 0x1c,0xcb,0xca,0xf4,0xc5,0xda,0x1,0x5f,0xb0,0x45,0x22,0x97,0x1,0xa8,0x54,0x8a, 0x50,0xb0,0xdc,0x93,0xfe,0x89,0xcf,0xe3,0xe8,0xe4,0xbf,0xc0,0xed,0xe8,0xc5,0x9a, 0xc6,0x4f,0xd2,0x4a,0xf8,0xcf,0x60,0x91,0x5c,0x7c,0xcf,0x5c,0x21,0x4c,0x2b,0xe6, 0x87,0x31,0x19,0xfa,0x39,0x66,0xa3,0xf7,0x12,0xb8,0x64,0xf9,0x42,0x55,0x12,0x25, 0x5e,0x1c,0x51,0x2e,0x15,0x39,0x8b,0x60,0x43,0xca,0x2,0xcb,0x4d,0x69,0x41,0xad, 0xeb,0x72,0x34,0xf8,0x6e,0x44,0xbd,0xe7,0x6,0xd8,0x2c,0xbe,0x2a,0xbf,0x4b,0x91, 0x47,0x78,0xe5,0x73,0x9,0xa4,0x72,0xf4,0xe5,0x2f,0x4,0x90,0xcb,0xd3,0x8a,0x39, 0x3f,0xce,0x37,0xe6,0x7f,0x29,0x95,0xc2,0xc8,0xb,0x61,0x8,0x71,0x7,0x56,0xac, 0xbe,0xd,0x5b,0xc4,0x57,0xa1,0xe0,0x48,0x92,0xb2,0x16,0x78,0x64,0x56,0x26,0x9f, 0xe7,0xc5,0x23,0x33,0x4,0x22,0x99,0x74,0x86,0x87,0x15,0x67,0xe9,0xf7,0x14,0xbd, 0x56,0x28,0xa8,0xc5,0xa5,0x72,0xb4,0x1f,0xeb,0xdf,0x92,0x4e,0x3,0xa1,0x70,0xa, 0xc7,0x84,0x49,0xce,0x5a,0x1a,0xea,0x3d,0xf0,0xd7,0xd5,0xa0,0xc6,0xe7,0x84,0x8b, 0x58,0x8d,0xa2,0x25,0x1a,0xb2,0xcc,0x7b,0x56,0x36,0xbf,0x9d,0x58,0x2,0x8b,0xfa, 0x1a,0x1f,0x9b,0x43,0x28,0x18,0x43,0x8a,0xc6,0x67,0x35,0xba,0xd8,0xbd,0xb2,0x5b, 0x8c,0x46,0xd3,0x88,0x84,0x7,0x31,0x4a,0x2c,0xa2,0xb3,0xa3,0x89,0x3b,0xe8,0xdd, 0x4e,0x3b,0xba,0x3b,0x9a,0x9,0xa0,0xea,0x88,0x55,0x4d,0x61,0x8c,0x98,0x4b,0x22, 0x96,0xe1,0xa5,0x67,0x58,0xe2,0x25,0x63,0x3d,0xa3,0x34,0x1e,0x33,0x75,0xb1,0x5a, 0x61,0xc,0x94,0xb6,0x6c,0x5c,0x41,0xac,0xa7,0x1e,0xc7,0x8e,0x4d,0x60,0x8e,0x0, 0x29,0x5f,0x2c,0x71,0xd3,0x11,0xbb,0xbf,0x81,0x13,0x53,0xdc,0xfc,0xd6,0xd7,0xd7, 0x86,0x8d,0x1b,0x56,0x22,0xe9,0x4f,0x23,0x53,0x38,0x0,0x8f,0x7c,0x19,0x2f,0xcc, 0xd9,0x52,0xfb,0x7a,0x34,0x7a,0xae,0xc3,0xc0,0xcc,0x97,0x71,0x78,0xec,0xef,0xd1, 0xe4,0xbd,0x11,0x1d,0xf5,0x6f,0x87,0xdd,0xd6,0x51,0x79,0x28,0x5d,0x56,0xac,0xfe, 0xf3,0x57,0x20,0xf0,0xf0,0x20,0xe,0xfe,0xfb,0x1f,0x51,0xcc,0xe5,0xd0,0x7d,0xdb, 0x3a,0x48,0xc4,0xe2,0xb2,0x33,0x9,0x1c,0xfd,0xc6,0xd3,0x18,0xff,0xef,0x43,0xa8, 0xdf,0xdc,0x89,0x15,0x1f,0xb8,0x94,0x2b,0xba,0x8e,0x5b,0xd7,0x62,0xf2,0x77,0x1b, 0x31,0x7c,0xdf,0x73,0x78,0xfc,0xed,0x3f,0xc2,0xea,0xf7,0x5d,0xe,0x67,0x97,0x97, 0x83,0xb9,0xb5,0xce,0x1,0xdf,0xba,0xe6,0x33,0xda,0x60,0x9c,0x2b,0x8,0xcc,0xae, 0x59,0x89,0x63,0x3f,0x79,0x1a,0x3b,0xff,0xea,0x5e,0xac,0xff,0xeb,0xab,0xe8,0x9c, 0x66,0x14,0xf2,0x59,0xc,0xdf,0xf3,0x2c,0x3c,0x2b,0xeb,0x78,0xfd,0xaa,0xe0,0x9e, 0x31,0x1c,0xfe,0xfc,0x93,0x88,0xf7,0x4f,0xc3,0xe6,0x22,0xd6,0x37,0x11,0x45,0xed, 0xa6,0x66,0xd5,0x21,0xbd,0x44,0x3d,0xea,0x5d,0xdb,0x88,0xda,0xad,0xcd,0x8,0x1f, 0x9e,0xe4,0x8a,0x3b,0x4d,0xf7,0x37,0xfe,0x9b,0xc3,0x58,0xf5,0xbe,0xcb,0xb8,0xf, 0x4e,0x1,0xf4,0xe4,0x4a,0x45,0x73,0xd9,0x94,0xcb,0xce,0x8b,0x5a,0x84,0xe3,0xdc, 0x33,0x63,0x98,0xdb,0x37,0xce,0xd4,0x3e,0x67,0x3c,0xde,0x35,0x2d,0xf0,0x6d,0xa9, 0x84,0x13,0x9b,0x7c,0xf4,0x7c,0x74,0xb8,0x21,0x3c,0x25,0xf3,0x7a,0x5c,0xf1,0x3, 0x33,0xbc,0xbc,0x8b,0x9d,0x98,0x28,0x2f,0x6a,0xa9,0x15,0xe6,0x54,0x59,0x63,0xa5, 0x9c,0x51,0x62,0x30,0x88,0xc0,0x1f,0x47,0x38,0x50,0x29,0xe5,0xb6,0xc4,0x86,0x2c, 0x26,0xac,0xd,0x30,0xb,0x1d,0x8e,0x19,0x53,0xf1,0x72,0x5,0x15,0xd,0x53,0xb2, 0xf9,0x49,0x1c,0x1b,0xff,0x17,0x4c,0x85,0xef,0xc5,0x8a,0x96,0xbf,0x46,0x4f,0xf3, 0x7,0xe1,0xb6,0x75,0xf3,0x15,0x1e,0x2b,0xfa,0x18,0x8c,0x3f,0x8d,0xb1,0xd9,0xef, 0x22,0x18,0x7b,0x88,0xf7,0xec,0xb4,0x90,0x2,0x36,0x9b,0xcc,0xdc,0x9c,0xc5,0x1c, 0xf3,0x44,0x54,0x88,0x75,0x38,0x61,0x37,0xd3,0x97,0xd0,0xbd,0x15,0x8d,0x35,0xaf, 0xa6,0x95,0xf3,0x95,0xa4,0xb0,0xfb,0xf8,0x69,0x8a,0xa5,0x34,0x8d,0x33,0x4a,0xa, 0x36,0x83,0x78,0xea,0x30,0xa2,0xe9,0x3,0x48,0xe4,0xd4,0x82,0x92,0x19,0x2,0x95, 0x7c,0x61,0xe,0x45,0xed,0xbb,0x56,0xe,0xd8,0xe1,0x3a,0xc5,0x4c,0xe7,0x2a,0xf9, 0xe8,0xb5,0x22,0x81,0x94,0xd,0x79,0x47,0x1,0xcc,0xab,0xeb,0xa4,0x37,0x6b,0x45, 0xb5,0x52,0x2e,0x73,0x68,0xca,0xb4,0xec,0x64,0x21,0xc5,0xa9,0x6c,0x16,0x69,0xfa, 0x99,0x88,0x67,0x78,0x9f,0x94,0x78,0x22,0x45,0x2c,0xa0,0xc8,0x43,0x8f,0xb,0x45, 0xc6,0x80,0x14,0x9e,0x25,0xcf,0x7c,0x20,0x43,0xe6,0x0,0xbc,0xac,0x42,0x71,0xad, 0x83,0x33,0x18,0x56,0x44,0x92,0x15,0x98,0x64,0xbe,0x1a,0x36,0x2d,0xad,0xc4,0x3c, 0x1a,0x1b,0xbc,0x3c,0x6a,0x2c,0x10,0x88,0x60,0x7a,0x3a,0xc4,0xc3,0x7e,0x59,0x7e, 0xc,0xbb,0x38,0xd6,0x1b,0x25,0x16,0xcd,0x62,0x5f,0x84,0xc0,0x65,0xcc,0xc5,0x8b, 0x49,0x36,0x37,0xd7,0xc3,0xe3,0xb6,0x63,0xc3,0xba,0x6e,0xb4,0x13,0x70,0x8c,0xd, 0xcd,0x72,0x3f,0x4a,0x8a,0x97,0x82,0x21,0x45,0x44,0xa0,0x94,0x49,0xe7,0x70,0xe8, 0xe0,0x30,0x4f,0x8a,0xec,0xe8,0x54,0xfd,0x2d,0x97,0x5d,0xb6,0x8a,0x47,0x8f,0xd, 0xe,0xcc,0x20,0x16,0x4b,0xf2,0x3c,0x1b,0xb6,0x2f,0xab,0x31,0xb6,0xe7,0xb9,0x13, 0x8,0x78,0x9a,0xd0,0x79,0xb5,0x19,0x43,0xc1,0x4f,0x63,0x76,0x6a,0xd,0x7a,0x7c, 0xef,0x83,0xc7,0xb9,0x81,0xc0,0xdc,0x89,0x55,0x6d,0x1f,0x43,0xb3,0xef,0x16,0xf4, 0x4f,0xfd,0x2b,0xe,0x8c,0x7c,0x18,0x6d,0xfe,0xb7,0xd1,0x67,0x70,0x11,0xaf,0x58, 0xc0,0xa4,0xf1,0x95,0x9d,0xb8,0xec,0xdb,0x6f,0xc4,0x73,0x9f,0x78,0x0,0xc7,0xbe, 0xf3,0x14,0x6,0xbf,0xbd,0x87,0x33,0x89,0x5c,0x88,0x0,0xcf,0x2b,0xa3,0xfd,0x86, 0x75,0xd8,0xfc,0xa9,0x57,0xc1,0xb7,0xa6,0x89,0x3f,0x10,0xce,0x56,0x2f,0x2e,0xf9, 0xd2,0xeb,0x60,0xfe,0x7,0x1b,0x26,0x1e,0x3b,0x84,0x27,0xde,0xf9,0x63,0x58,0xe9, 0x9e,0x98,0x1f,0xaa,0xfd,0x8d,0x6b,0x71,0xf5,0xf7,0xef,0x9c,0xd7,0x7c,0x6b,0x31, 0xb1,0x11,0x58,0x6f,0xfc,0xf8,0xd5,0xc8,0x85,0x93,0x98,0xdd,0x3b,0x84,0x47,0xdf, 0xf2,0x3,0xac,0xfd,0xf0,0x95,0x68,0xcd,0xaf,0xc6,0xcc,0x9e,0x11,0x4,0x5f,0xf3, 0x3d,0x48,0xc4,0x1e,0xd3,0xf1,0x18,0x7c,0x9b,0x5b,0xe1,0x5f,0xd7,0x41,0x8a,0x77, 0x16,0xd1,0xe3,0x73,0x68,0xbb,0x69,0xcd,0xf3,0x58,0x9c,0xab,0x71,0x51,0x9d,0x77, 0x6e,0xc6,0xc4,0x7d,0xfd,0xc8,0xb3,0x30,0xe0,0xac,0x88,0x3,0x9f,0xd9,0x1,0x57, 0x6f,0x1d,0x5a,0xae,0x5d,0xa1,0x33,0xce,0x6a,0xbf,0x84,0x50,0x65,0x53,0x9a,0x7b, 0x76,0x1c,0x7,0xff,0xe5,0x21,0xe4,0x27,0x93,0xa4,0xfc,0x89,0x79,0x88,0x5,0x74, 0xbf,0x63,0x13,0x5c,0x1d,0x5e,0xdd,0x72,0x66,0xab,0xb1,0xc3,0x47,0xe0,0x35,0xaa, 0xc6,0xce,0x21,0x4d,0xb,0x95,0xb1,0x9f,0x1f,0x44,0xdd,0xa6,0xb6,0xaa,0xb1,0xc4, 0xaa,0xd2,0x66,0x2,0xb2,0xa1,0x14,0x8e,0x7e,0x99,0x80,0x73,0x20,0x0,0x8b,0x60, 0x43,0x41,0xc9,0x2f,0x30,0x3b,0x1b,0xa2,0x9,0xcb,0x41,0x61,0xed,0x80,0x27,0x8d, 0xa9,0x78,0x39,0x83,0xa,0x2b,0x47,0x92,0x3e,0x82,0xc1,0x99,0xaf,0x91,0x12,0xb3, 0xe3,0xaa,0xf5,0x3b,0xe0,0xd4,0x80,0x20,0x96,0x3a,0x88,0x89,0xe0,0x4f,0x30,0x13, 0xf9,0x15,0x92,0xd9,0xe3,0x3c,0x4c,0x97,0x8,0x9,0x4c,0x82,0x89,0x2b,0xc8,0x82, 0x5c,0xe0,0xab,0x76,0xab,0xa9,0x81,0x94,0xf3,0xc5,0x68,0xad,0x7b,0x23,0x81,0xc9, 0xd,0xbc,0xcc,0x7d,0xf9,0x3b,0xc3,0x92,0x24,0x63,0x4,0x22,0xc1,0xf8,0xe,0xc4, 0x92,0xbb,0xb8,0xf3,0xbe,0x20,0x47,0x8,0x64,0xb2,0x6a,0xa4,0x97,0x6,0x22,0x2c, 0x52,0xcb,0x6c,0x2a,0x5b,0xa6,0x35,0x37,0x25,0xeb,0x87,0x24,0x54,0x2a,0x4c,0x32, 0x27,0x32,0x5f,0x5d,0xa,0x6a,0x70,0x25,0xb3,0x5f,0xb0,0x60,0x21,0xa5,0xa8,0xf6, 0x19,0x31,0x59,0x44,0xf8,0x6c,0x6e,0x34,0xd0,0x80,0x72,0xb3,0x4c,0xcc,0xa7,0x40, 0xe7,0x2b,0x72,0x27,0x74,0x34,0x9a,0x44,0x60,0x36,0x82,0x38,0x31,0x7,0xc6,0x3a, 0xf2,0x8a,0xc4,0x81,0x66,0x96,0xd8,0x1,0xeb,0x4,0x39,0x3a,0x1a,0xe4,0xd,0xb9, 0xfc,0xf5,0x1e,0x9e,0xcc,0xc8,0x4a,0xe2,0x3b,0xed,0x66,0xba,0x5f,0x1,0x4d,0x4, 0x2c,0x8c,0xd5,0x74,0xf5,0x34,0xf0,0x12,0x2a,0xe3,0xe3,0x61,0xe,0x4a,0xb9,0x7c, 0x8e,0xfb,0x7e,0xcc,0x34,0x29,0x2c,0x1b,0x3f,0x12,0x49,0xf2,0x30,0x61,0xd6,0x31, 0x92,0xd5,0xf5,0x6a,0xa8,0xf7,0x62,0xe3,0xa6,0x1e,0x74,0x12,0x68,0x8c,0x8f,0xce, 0x62,0x6c,0x72,0x96,0x3,0x6,0x8b,0xfb,0x35,0x9b,0x6c,0x74,0x4d,0x29,0x44,0x63, 0xc,0x90,0x2,0xe8,0xed,0x69,0xe1,0x65,0x5a,0x58,0xb4,0xd9,0x14,0xb1,0x93,0x63, 0xc7,0xc6,0x10,0x89,0xa5,0xb8,0x22,0xb4,0x4a,0x26,0xda,0x67,0x4,0xd9,0xa3,0x2b, 0xb0,0xc5,0xf1,0x6e,0x44,0xe4,0x5f,0x60,0xd7,0x89,0x3b,0xd1,0xe2,0x7f,0x13,0xba, 0xea,0xef,0x22,0xf0,0x68,0x27,0x80,0x59,0x8b,0x6d,0x2b,0x7e,0x80,0x50,0xec,0x31, 0x8c,0x87,0x7e,0x45,0x8b,0x83,0xff,0x42,0x3b,0xb1,0x96,0xc6,0x9a,0x6b,0x69,0xde, 0xcc,0x68,0x27,0x45,0xdd,0xb0,0xbd,0x3,0x81,0xc7,0x47,0x31,0xb7,0x67,0x1c,0xa5, 0x58,0x96,0x9b,0xa4,0x9a,0xae,0xec,0x41,0xcd,0xfa,0x46,0x98,0x79,0xe8,0xaa,0xa2, 0x87,0x29,0x7b,0xfa,0xea,0xf1,0xca,0x7b,0xde,0x84,0xf0,0x73,0x57,0x60,0xee,0xa9, 0x11,0xa4,0x26,0x62,0x3c,0x5c,0xbb,0x76,0x6b,0x6b,0xa5,0x95,0xce,0x19,0xfa,0x78, 0xd4,0x6e,0x68,0xc6,0xb5,0xbf,0x7c,0x17,0xe6,0x76,0x8e,0xd1,0x79,0x87,0xd1,0xfd, 0xf6,0x8d,0x4,0x36,0x1e,0xcc,0xec,0x18,0xc2,0xdc,0xd3,0x23,0xfc,0x19,0xf2,0x5f, 0xd4,0x81,0xd6,0x1b,0x56,0x22,0x78,0x70,0x12,0xb1,0xfd,0x33,0x68,0xb8,0xb2,0x5b, 0x5d,0xc9,0xcf,0xcb,0xc3,0x39,0x7b,0x69,0xbb,0x71,0x15,0x56,0x7e,0x70,0x3b,0xe, 0xfd,0x7f,0xf,0xf1,0x22,0xa4,0x99,0x91,0x28,0x1e,0x7f,0xcb,0x4f,0xb0,0xf6,0x6f, 0x5e,0x89,0xae,0x3b,0x36,0xc2,0xb3,0xc2,0x7f,0xd2,0x88,0x89,0x91,0x30,0x26,0x7e, 0x7f,0x1c,0x47,0xfe,0xed,0x31,0xa4,0x46,0x42,0x3c,0x1e,0x2d,0x87,0x34,0x7a,0xdf, 0xbc,0xd,0xab,0xdf,0x7f,0x99,0xa,0x58,0x55,0xd1,0x72,0x2c,0x43,0xdf,0xe2,0x76, 0x20,0x9f,0xc8,0xc1,0x22,0xda,0xd0,0xff,0x85,0xa7,0x61,0xef,0xf4,0xa1,0xfb,0xf6, 0xd,0xb0,0xfa,0x2a,0x55,0xb9,0xb,0x99,0x3c,0x42,0x7b,0xc7,0x71,0xf8,0x73,0x8f, 0x63,0xe6,0xb7,0x27,0xc0,0x8d,0xc2,0x5a,0xff,0x9a,0x52,0xb2,0x80,0x42,0x38,0x63, 0x68,0xcd,0x8a,0xb0,0xc9,0x78,0x1d,0x96,0x61,0x2e,0xca,0x69,0xd5,0xb3,0xb2,0x94, 0xf0,0x8e,0x97,0x88,0xa4,0x32,0x3,0x98,0xc,0xff,0x8e,0x18,0x45,0x17,0x37,0xa7, 0xf0,0xd7,0xb2,0xe3,0x98,0xc,0xfd,0x4,0x23,0x33,0xdf,0x44,0x32,0x37,0xa0,0x86, 0x37,0x4a,0x50,0x6b,0x71,0xd1,0x1f,0x85,0x7c,0x89,0x13,0x78,0x87,0xbd,0x5,0x4d, 0x35,0xaf,0xa3,0xe3,0xde,0xc0,0x4d,0x2f,0xe5,0x6f,0x6b,0x2a,0x33,0x84,0x50,0xfc, 0x9,0x4,0x13,0x8f,0x21,0x98,0xfc,0x23,0xe2,0xe9,0x91,0xaa,0x12,0x19,0x2a,0x88, 0x48,0x5a,0xe3,0x2d,0xb5,0xdb,0x9f,0x9a,0xec,0xc5,0x7d,0x24,0x5a,0x68,0x31,0x77, 0xcd,0xb0,0xd7,0x89,0xa9,0xd8,0x32,0x5e,0xac,0x7d,0xe0,0x2f,0x51,0x37,0xb4,0x1e, 0x79,0x57,0xec,0xff,0x67,0xef,0x3b,0x0,0x23,0xab,0xab,0xf5,0xbf,0x3b,0xbd,0x65, 0x26,0xbd,0xef,0x26,0x9b,0x6c,0x5f,0xb6,0xb0,0xf4,0x22,0x1d,0x41,0xc1,0x6,0x82, 0x60,0x79,0x60,0x7b,0x3e,0x15,0x6c,0xd8,0xcb,0xb3,0x3c,0x15,0xff,0x62,0x17,0x14, 0x2b,0x28,0xa0,0xa2,0x28,0x88,0xd2,0x5c,0xaa,0xb0,0xd4,0x65,0x77,0xd9,0x6,0x5b, 0xb2,0xe9,0x7d,0x92,0x4c,0xef,0x33,0xf7,0x7f,0xce,0xb9,0x77,0x5a,0x92,0xa5,0x2c, 0x20,0x24,0xdc,0xa3,0x97,0x64,0x27,0x33,0x73,0xcb,0xdc,0x39,0xdf,0xef,0x3b,0xe5, 0x3b,0xc5,0x49,0x77,0x8a,0xd6,0x48,0x67,0x2a,0xc,0x99,0x52,0x5,0x60,0x38,0xcf, 0xc2,0xff,0x12,0x99,0x16,0xa5,0x38,0x68,0x89,0x3f,0x9d,0x8,0xad,0xfc,0x27,0x8, 0x10,0xa6,0x26,0xc2,0xd2,0x8c,0xc8,0xea,0xc5,0xcc,0x3c,0x78,0xff,0x1a,0x43,0x32, 0xb,0xc0,0x55,0x56,0xba,0xd1,0xd8,0x54,0x83,0x26,0x62,0x1f,0x5e,0xb7,0x3,0x76, 0x9b,0x96,0xec,0x65,0xa6,0xc3,0xf9,0x8f,0xb1,0xb1,0x90,0x74,0xbb,0x73,0xb9,0x2f, 0x33,0x21,0xab,0x55,0x9b,0x8b,0xc2,0xc0,0xcb,0x21,0x40,0x1e,0xa,0xc6,0xaf,0x5f, 0xd8,0xae,0xe5,0x5a,0xac,0x84,0x86,0xbc,0x3f,0x96,0x73,0xe1,0xa6,0x49,0x16,0x96, 0x64,0xc0,0x62,0x96,0x95,0xd2,0x29,0x1a,0x87,0xe4,0x96,0x2c,0x69,0x91,0x22,0x0, 0xde,0xc7,0xbe,0xdd,0x83,0xe8,0x26,0xc0,0x61,0xa9,0xfe,0xc,0x1,0x50,0xdd,0x61, 0x1d,0x78,0xe3,0x1f,0xbf,0x48,0x8e,0xb1,0x42,0x16,0x1,0xdd,0x43,0x3f,0x11,0xe1, 0xcd,0x8e,0xc6,0x4b,0x88,0x9d,0x5c,0x58,0xc8,0x99,0xf3,0xb9,0xc,0x4f,0xdc,0x82, 0xe1,0xc0,0x3f,0xe0,0xb2,0xb5,0xd2,0xdf,0xce,0x87,0xd7,0xb5,0xfa,0x39,0xd6,0xf9, 0xc5,0xa1,0x54,0xca,0xf4,0xa1,0x24,0xb3,0x3f,0xbb,0xf0,0x9c,0x3,0xe,0xf1,0x55, 0x95,0x83,0xaa,0x54,0x52,0xf5,0xb1,0xbd,0xca,0x2c,0xa5,0x4e,0x9b,0x2e,0xbb,0x1d, 0xbb,0x7e,0x74,0xbf,0x28,0x7,0xd8,0x9a,0xdc,0x38,0xed,0x1f,0xef,0x43,0xcd,0x61, 0xad,0x65,0xcf,0x49,0xd3,0x67,0xfc,0xd8,0x47,0x6e,0xc1,0xbe,0xeb,0x9e,0xa0,0x95, 0x9e,0x15,0x5a,0xfd,0x5b,0x16,0xb5,0x87,0xb6,0xa2,0xf9,0xcc,0xa5,0xf0,0x2e,0xad, 0x83,0xd9,0x61,0x46,0x36,0x9e,0x25,0x40,0xf1,0x63,0x64,0x43,0x17,0xfc,0x8f,0xf4, 0xea,0x79,0x15,0xb,0x52,0x48,0xa0,0xf5,0xa4,0xe5,0x38,0xee,0xf7,0xe7,0xc3,0xbd, 0xa0,0xaa,0x28,0x35,0xa3,0x9f,0x4f,0x3a,0x96,0xc2,0xe3,0x97,0xde,0x82,0xdd,0xbf, 0x7d,0xc,0x76,0xee,0xa1,0x52,0x33,0x50,0xcc,0x56,0x34,0xbf,0xb9,0x53,0x3,0x1c, 0x1f,0x1,0xe,0xcf,0xf0,0xd9,0x39,0x82,0xe1,0xdb,0xf7,0x20,0x4e,0xf7,0x9a,0xc6, 0x89,0xb8,0xdc,0xdd,0x2a,0x3d,0x3e,0x59,0x7a,0xcd,0xba,0xaf,0x9e,0x81,0xb5,0x5f, 0x3b,0xb5,0xec,0xd8,0xf7,0xfe,0xee,0x9,0x3c,0x7c,0xf1,0x9f,0xf9,0x2e,0x84,0xd9, 0x6b,0xc3,0x71,0xd7,0x9e,0x8f,0x85,0x6f,0x5b,0x35,0xdf,0x7d,0x67,0x56,0xcf,0xa1, 0xdc,0x6a,0xc0,0xc8,0x1c,0x63,0x2a,0xc5,0x4e,0x6b,0xad,0xdc,0x94,0x73,0x22,0xe9, 0x4c,0x1c,0x2d,0xb5,0xe7,0xc0,0x4d,0xab,0xdd,0x44,0x7a,0x4,0x83,0xfe,0xbf,0xa2, 0x77,0xfc,0x6,0x4,0xa2,0x8f,0x14,0x2a,0xa5,0xf4,0x20,0x93,0x8,0xdc,0xb1,0xff, 0x73,0xdb,0x17,0xa2,0xa9,0xea,0xd,0xf4,0xba,0x77,0xa2,0xce,0x77,0x82,0x1e,0xde, 0x8a,0x60,0x22,0xbc,0x11,0x43,0x13,0x7f,0xc7,0x54,0xf8,0x71,0x84,0xe3,0x5b,0x91, 0xca,0x66,0xa5,0xe3,0x9e,0x85,0x55,0x59,0x85,0x18,0x7a,0x9c,0x39,0x9f,0xb8,0xcc, 0x64,0xd3,0xc2,0x34,0x72,0x39,0xad,0xdc,0x98,0x3b,0xf2,0xad,0x96,0x1a,0x5a,0xfd, 0xd5,0x91,0x13,0xaf,0x11,0x6,0x64,0x77,0x57,0x1,0x1,0x1f,0x86,0x7,0x73,0xe8, 0xda,0xbc,0x19,0xa6,0x4a,0x93,0x80,0x1b,0x3,0x6,0x27,0xda,0x1d,0xb4,0x3,0x1b, 0x97,0x11,0xbb,0x6c,0xb0,0xd9,0x68,0xb3,0x70,0x5,0x18,0x97,0x24,0x5b,0xb5,0xae, 0x7b,0x96,0x6b,0xe1,0xea,0x1c,0x91,0xb,0x51,0xe1,0xa9,0xb0,0xc3,0xeb,0x6b,0x94, 0xa6,0xc2,0xb0,0xcc,0xab,0xd7,0x6,0x71,0x31,0x93,0x89,0x46,0x13,0x5,0x65,0x60, 0x9e,0xfe,0xc8,0x7d,0x24,0x9c,0x17,0xe1,0x24,0x3e,0x4f,0x6f,0xe4,0x92,0x64,0x87, 0xd3,0x41,0xfb,0xb4,0xd1,0xeb,0x6b,0x9,0x2c,0xaa,0x44,0x3c,0xb2,0xa7,0x67,0x14, 0x7e,0xff,0x14,0x52,0xe9,0x9c,0xe8,0x89,0x71,0xb1,0x2,0x4b,0xb4,0xf0,0x18,0xe1, 0x61,0xfa,0x3b,0xcb,0xb7,0xb0,0xb0,0x24,0xcb,0xba,0x70,0x29,0x32,0xb3,0xa1,0xfd, 0xf4,0x9a,0xd1,0xe1,0x9,0xc9,0x9d,0xd8,0xac,0x76,0x71,0x5c,0x2c,0x42,0xc9,0xd2, 0x30,0x2c,0xd5,0xb2,0x62,0x65,0x2b,0xd6,0x1d,0xda,0x89,0x96,0x96,0x7a,0x3c,0xbd, 0xaf,0x1f,0xfb,0x59,0x2a,0x86,0xae,0x27,0xcf,0x9c,0x1,0x2a,0xd0,0xd9,0xf8,0x61, 0xd4,0x57,0x9c,0x80,0xee,0xd1,0x5f,0x60,0x57,0xff,0xe7,0x31,0x3c,0xf9,0x4f,0xac, 0x58,0xf0,0x15,0xe9,0x17,0xe2,0xfc,0x0,0x7f,0xa6,0x3e,0xcf,0x5a,0x62,0x9a,0x7f, 0xc1,0x3e,0x2,0x9f,0x4a,0xf7,0x3a,0x62,0x2e,0xef,0xa4,0xeb,0x5b,0x35,0x4b,0xfc, 0xb3,0x64,0x38,0x56,0x19,0xfc,0x3f,0x7b,0xd2,0xf8,0xd9,0x1,0xe3,0x40,0xb3,0x3e, 0x66,0xc6,0xcc,0xa6,0xb7,0xf4,0x95,0xea,0xc1,0x15,0xef,0xd9,0x62,0xc9,0x96,0xa2, 0x87,0x9e,0x94,0xd9,0xa1,0x8e,0x58,0x97,0x3,0x87,0xff,0xe8,0x4d,0x30,0x13,0xb0, 0xef,0xfe,0xe5,0x46,0xb9,0x7f,0xed,0xb0,0x11,0xeb,0x1a,0xc4,0xe8,0x96,0x1e,0xe9, 0xc1,0x61,0x71,0xcc,0x5c,0x82,0xd8,0x6c,0x2e,0x2e,0x7d,0x32,0x56,0x7a,0x34,0x49, 0x8b,0xe5,0x2c,0x1,0x4a,0xc7,0xb9,0x87,0xe2,0xb0,0xef,0x9d,0x25,0x80,0x52,0xb8, 0x36,0x25,0x3c,0x8e,0x93,0xf2,0x6b,0xbf,0x7c,0x1a,0x2,0xbb,0x9,0x90,0x36,0xee, 0x26,0x60,0x71,0x4b,0x83,0x55,0xef,0xcd,0x3b,0xd0,0x73,0xf3,0x76,0x11,0x4d,0xcd, 0x42,0xab,0x97,0xa7,0x3b,0x52,0xc0,0xca,0x6c,0xb1,0x62,0xc5,0x27,0x5f,0x87,0xe1, 0xbb,0xf6,0x22,0xb8,0x7d,0x4c,0x40,0xce,0xcf,0xcd,0x9f,0xc4,0x76,0xa4,0x9f,0x46, 0x3f,0xd1,0x5c,0xa1,0x1a,0x2d,0x5f,0xe,0xa1,0xed,0x3b,0x97,0xd7,0x2e,0x53,0x95, 0x19,0x78,0xaf,0xbe,0xd0,0xd2,0xeb,0x57,0x9f,0x5d,0x6a,0x0,0xca,0x1c,0x5,0x15, 0xee,0x5d,0xc8,0xcb,0xea,0x69,0x5d,0xe9,0x66,0x54,0x56,0x68,0x2b,0xd8,0xe1,0xc9, 0x7f,0x60,0xef,0xf0,0xf,0x30,0x15,0x7a,0x98,0x1c,0x7d,0x4a,0x9a,0xf9,0xb8,0x67, 0x43,0xaa,0xb1,0x68,0x55,0x95,0xca,0x10,0x98,0xd8,0x1a,0xb0,0xa8,0xee,0x42,0x2c, 0xa8,0xb9,0x10,0xd5,0x15,0x9a,0x3c,0x47,0x2c,0xde,0x87,0xa1,0xa9,0xbf,0x61,0x34, 0x78,0x17,0x1,0xd1,0x16,0x49,0xb6,0xe7,0x5,0x25,0x9d,0x2c,0x5a,0x58,0x14,0xab, 0x92,0xfc,0x4c,0x1e,0x44,0x78,0x31,0xea,0x72,0x90,0xa3,0x75,0x1e,0x4a,0x8e,0x70, 0x15,0x3c,0x8e,0x76,0xb8,0xec,0x9d,0x4,0x58,0x2d,0xb4,0xdf,0x4a,0x51,0x31,0xe6, 0x64,0xb4,0xd9,0x6c,0x47,0xcc,0x14,0xc1,0xdd,0xc3,0x57,0xa1,0x67,0xef,0x5e,0xb8, 0xaa,0x2b,0x65,0xa5,0x27,0x13,0x8e,0x78,0x64,0xb0,0xce,0x46,0x2c,0x3c,0xd1,0xd1, 0x61,0x87,0xdb,0x6d,0x87,0x8b,0x36,0xaf,0xc7,0x2d,0x6a,0xc2,0x15,0x6e,0x97,0x94, 0x18,0x6b,0x55,0x65,0x39,0xa9,0xc8,0xe2,0x2a,0x2e,0x7e,0xd,0xb3,0x11,0x6f,0xa5, 0xb,0xad,0x2d,0x75,0x22,0x20,0xc9,0x4d,0x8f,0xdc,0xfc,0x18,0xa,0x85,0xe4,0x8b, 0xcb,0x95,0xc1,0xa1,0xa9,0x18,0xc2,0xe4,0xd0,0x79,0xa2,0x63,0x2d,0x81,0xb,0x27, 0xd7,0x79,0x56,0x3d,0x8f,0x29,0x76,0x10,0x5a,0xb2,0xd4,0xa,0x3f,0x3e,0x3a,0xea, 0x97,0x1c,0x9,0x97,0x16,0x67,0xe8,0xe4,0xac,0x66,0x1b,0x1c,0x66,0x55,0xf2,0x27, 0x1c,0xca,0x62,0xd9,0x16,0xde,0xf,0xcf,0x51,0xe1,0x3c,0x4a,0x6d,0x6d,0x15,0xed, 0xcb,0x8f,0xfd,0xfb,0x7,0x45,0xdb,0x8b,0x81,0xc0,0x26,0x40,0x98,0x15,0x6,0xc4, 0x3,0xbe,0x16,0xb6,0xd5,0x4b,0xf5,0xd7,0xf1,0xc7,0xad,0x44,0x15,0xed,0x2b,0xe0, 0xa6,0xeb,0xa1,0x14,0xcb,0x5b,0x2b,0xdc,0xab,0xb0,0xa6,0xe3,0x27,0x68,0xa,0x9e, 0x83,0xae,0xa1,0x1f,0xe3,0x89,0x3d,0x6f,0xc7,0xc2,0xba,0xf7,0xa2,0xb3,0xe9,0x13, 0x32,0x51,0xd2,0xe3,0xe8,0xc4,0xf2,0x96,0xcf,0x63,0x22,0xf2,0xa8,0x8c,0x23,0xd8, 0xd5,0xfb,0x75,0x34,0xd7,0xbc,0xd,0x75,0x95,0x27,0x96,0xdc,0x15,0x39,0x9d,0x31, 0xea,0x53,0x14,0x4b,0xa5,0xd,0x9e,0x7,0x64,0x3c,0x47,0x64,0x75,0x96,0x67,0x2a, 0xb3,0xbc,0xd7,0x1,0x87,0xcb,0x6b,0xb3,0x5b,0x4a,0x86,0xc2,0x65,0x58,0x7a,0x27, 0x17,0x93,0x63,0x35,0x4d,0x65,0xa1,0xa6,0x73,0xba,0xb,0xce,0xe9,0xce,0x5f,0xeb, 0xa7,0x71,0x54,0xbb,0x71,0xf8,0xf7,0xcf,0x82,0x77,0x65,0xd,0xf6,0xfd,0xf2,0x31, 0x4c,0xec,0x1a,0x92,0xfd,0x70,0x72,0x9d,0xe5,0x7f,0x72,0xb1,0x94,0x7c,0x17,0x38, 0x71,0x9e,0xa5,0x7f,0x73,0x52,0xde,0xb7,0xa2,0x1,0x8b,0xdf,0x7b,0x4,0x96,0xbd, 0xef,0x68,0x29,0x48,0x28,0x0,0x95,0x52,0x98,0x6d,0x5a,0xc8,0xde,0x78,0x16,0x55, 0xe3,0xb8,0x5f,0x9d,0x83,0x27,0xbf,0x72,0x17,0x7a,0xff,0xba,0x83,0x97,0x5c,0x2, 0x4d,0x59,0x59,0x80,0x65,0x5,0x58,0xf8,0xb5,0x9,0x2,0x2a,0x2f,0x7d,0x8e,0xab, 0x2e,0x3b,0x1,0x4b,0x3f,0x78,0xa4,0x54,0xde,0xf9,0xb7,0xf5,0xcb,0xe2,0xbc,0xff, 0xd6,0xa7,0x30,0x78,0xe7,0x3a,0x74,0x9c,0xb7,0xa6,0x38,0x51,0x35,0x91,0xa5,0x57, 0x44,0x35,0x35,0xef,0x50,0x6,0xb9,0x64,0xa6,0x70,0x8d,0x4a,0xcb,0x8a,0xb3,0x6a, 0x1a,0x49,0x5a,0x4,0x2a,0xa0,0x45,0x8e,0xb5,0x76,0x2e,0xfb,0xcd,0x6f,0xd1,0xf6, 0x73,0x3,0x3e,0xe6,0x6a,0xf8,0x4b,0x9f,0x27,0x5f,0x3a,0xa3,0x83,0xf3,0x26,0xbb, 0x7,0x2f,0xc7,0x78,0xf8,0x5f,0x48,0x26,0x27,0xc4,0x91,0xb2,0x43,0x12,0x77,0xc3, 0x93,0x14,0xc5,0xf9,0xb7,0xa2,0xbd,0xe1,0x43,0x68,0xae,0x7a,0x2b,0x39,0xb2,0x95, 0xb2,0xf2,0x1b,0x9b,0xda,0x80,0xfe,0x89,0xeb,0x11,0x8c,0x3d,0x81,0x68,0xbc,0x8b, 0x40,0x27,0x45,0xab,0x31,0x2d,0x45,0xc9,0xa1,0xad,0x9c,0xce,0x48,0xb2,0xd9,0x4c, 0x41,0x86,0xc5,0x62,0xae,0x40,0xad,0xef,0x75,0x68,0xf0,0xbe,0x51,0xc2,0x32,0x76, 0x7b,0x13,0x81,0x48,0x1b,0xad,0x9e,0xab,0xa5,0x74,0xf3,0x40,0xc6,0x55,0x3c,0x1b, 0x2e,0xfe,0x9,0x7a,0xef,0x7a,0xa,0xee,0xfa,0x4a,0x9,0x6f,0xe5,0x9d,0x4d,0x7e, 0x4d,0x97,0xff,0x3d,0xdf,0x86,0xc0,0x60,0xe3,0xa0,0x95,0x2a,0xb,0x48,0x32,0x83, 0xf1,0x79,0x1d,0x92,0x2b,0xe1,0x24,0x3a,0x37,0xdb,0xf1,0x97,0x56,0x93,0x88,0xc9, 0x69,0xe0,0xa9,0x68,0x1d,0xfb,0x11,0x72,0x5a,0xe1,0x48,0x54,0x2a,0xb1,0x6,0x7, 0xa7,0x10,0x8f,0xa7,0x90,0x1f,0xc3,0xc8,0x81,0x36,0x2e,0x51,0xae,0xf0,0x39,0xa4, 0x9,0xb2,0xad,0xb5,0xe,0x3e,0x5f,0x5,0x37,0xc8,0xc8,0xb5,0x4a,0xd0,0x73,0xb9, 0xb2,0xab,0xaf,0x6f,0x4c,0xd8,0xf,0xf7,0x77,0x70,0xb2,0x9d,0xc3,0x2f,0xcc,0x32, 0xb8,0xeb,0x5f,0x66,0xb4,0xb4,0x54,0xa3,0xb3,0xa3,0x15,0x6e,0x5a,0xf1,0x72,0x2f, 0xb,0x4b,0xb3,0xec,0x23,0x70,0x9,0x7,0xe2,0xda,0x78,0x61,0x11,0xe6,0xcc,0xa, 0x9b,0xe4,0xe3,0x6d,0x6e,0xad,0x41,0x67,0x7d,0x2b,0x52,0x2d,0x7e,0x24,0x2e,0xca, 0xa2,0x6d,0xfd,0x7f,0xc1,0x6d,0x5e,0x58,0x1e,0xf2,0xc9,0x4,0x30,0x16,0xb8,0x1b, 0x83,0x13,0x7f,0x23,0x67,0x33,0x8a,0x56,0x62,0x25,0xed,0xf5,0xef,0x2f,0xb0,0x9, 0xae,0xec,0xb,0x45,0x77,0x10,0x9b,0x7c,0x84,0x18,0xa4,0x1f,0xcd,0xd5,0xe7,0xd0, 0xc2,0xe0,0x88,0x72,0x6,0xa1,0x96,0xa1,0xc1,0xab,0xe1,0x86,0x2d,0xf2,0x1a,0x3d, 0x22,0x37,0xf6,0x68,0x1f,0x2,0x4f,0xf,0xcb,0x62,0xc5,0xe2,0xb4,0xa0,0xf5,0xb4, 0xe5,0x70,0xd4,0x79,0xa6,0x11,0x21,0x5d,0x5c,0x33,0x7f,0x8f,0xef,0xf5,0x23,0xb8, 0x73,0x14,0x81,0x5d,0xa3,0x32,0xd2,0x97,0x67,0xd6,0xe7,0x58,0xfa,0xdf,0x63,0x81, 0xbb,0xcd,0x87,0xba,0x23,0x16,0x88,0x24,0xd,0x87,0xc5,0xbc,0xcb,0xea,0x34,0xd9, 0x7f,0x68,0x8d,0x9e,0xa2,0x7b,0x63,0xd2,0x8f,0x22,0x3f,0x2,0x53,0xcd,0xe7,0x93, 0x4c,0x48,0xfa,0x23,0x74,0x4c,0x3,0x18,0x79,0xa8,0x1b,0xe1,0xed,0x23,0x52,0x62, 0xcc,0x40,0xc7,0x7a,0x6a,0xd5,0xeb,0x1b,0x51,0x7b,0xf8,0x2,0x54,0xae,0x6e,0x46, 0xd5,0xca,0x7a,0xb9,0xae,0xe3,0x8f,0xf5,0xe2,0xb1,0x4b,0xff,0x2e,0xa1,0xb8,0xaa, 0xc3,0x1a,0xd1,0x74,0xea,0x52,0x99,0xe9,0x92,0x97,0xde,0xe,0xec,0x1d,0xc7,0xc8, 0x83,0x5d,0x92,0x7f,0xe1,0xfb,0xb4,0xfe,0x84,0x4e,0x78,0xdb,0xab,0xb4,0xa9,0xa9, 0x99,0x29,0x4c,0x45,0xb7,0x4a,0xf9,0xbe,0xc7,0xb9,0x84,0x16,0x21,0x3e,0x29,0x21, 0xb7,0x5b,0x2b,0x30,0x47,0x4b,0x8e,0xaf,0xd4,0x59,0x8a,0x61,0x73,0x13,0x54,0xd4, 0x69,0x34,0x99,0x6e,0xe0,0xf0,0x66,0x6c,0xd9,0xff,0x3f,0x98,0x8a,0x3c,0x21,0x39, 0x13,0xad,0xb,0xda,0x2c,0xcc,0x84,0x45,0x1a,0x9d,0xb6,0x3a,0xb4,0xd6,0xbe,0x7, 0x8b,0x1a,0xfe,0x7,0x6e,0x5a,0xf5,0x72,0x95,0xd7,0x58,0xe0,0x5f,0xe8,0x19,0xbd, 0x9a,0x56,0xbf,0xf,0xd1,0x73,0x2,0x5a,0x1d,0xbe,0x49,0x9b,0xd2,0xa7,0xe8,0x71, 0xe3,0x9c,0x92,0xd1,0x73,0xb,0xa0,0xd5,0x7c,0xd,0x2a,0x3d,0x47,0x12,0x90,0x9c, 0x89,0xfa,0x4a,0x2e,0x2b,0x6e,0x90,0x99,0x29,0xcf,0x76,0x9c,0xd3,0x97,0xab,0xd1, 0x91,0x0,0xee,0x7e,0xef,0x55,0xe8,0xbf,0xf3,0x29,0xb8,0xea,0xbc,0x5a,0xac,0x7e, 0x36,0xf7,0xa3,0x68,0x53,0x1f,0x45,0xa5,0x56,0x9f,0x9e,0x98,0x1f,0x69,0x6e,0x26, 0xc7,0x6f,0xb3,0x98,0xe1,0xf2,0xd8,0x25,0xc7,0xc1,0x23,0x7d,0x7d,0x3e,0xa7,0xe4, 0x4a,0x84,0x39,0xa9,0x9a,0x6c,0x3f,0x33,0x86,0x9c,0x84,0xf3,0xb2,0x88,0xf0,0x2c, 0x95,0xde,0x51,0x8c,0xc,0x7,0x10,0x26,0xc6,0x61,0x52,0x34,0xa0,0xcc,0xe9,0x53, 0xa,0x9d,0x4e,0xab,0x84,0xb5,0x16,0x2c,0x68,0x14,0xb0,0x50,0x4c,0x1a,0x1b,0xe2, 0x9c,0x13,0x57,0x8b,0x75,0xb1,0x2c,0xcb,0x54,0x90,0x1e,0x33,0x49,0xbf,0xa,0x3b, 0x2a,0x99,0xad,0x44,0xc7,0xe2,0x21,0xf6,0xb4,0xa8,0xb3,0x49,0x14,0x8b,0x9d,0xf4, 0x7b,0x38,0x1c,0xc5,0xfe,0xee,0x51,0x49,0xf4,0x73,0x99,0x34,0x27,0xff,0xb5,0x3c, 0x13,0x64,0xe5,0x5b,0x6b,0xaf,0xc7,0xc2,0x13,0x5d,0x98,0xba,0xf8,0x8f,0xc8,0xb6, 0x24,0x71,0x48,0xe3,0x37,0x89,0x31,0xbe,0x5b,0xf3,0x75,0xb9,0xe2,0x9c,0xa6,0x54, 0x66,0x12,0xa3,0x53,0xb7,0xa3,0x7b,0xe4,0x57,0x52,0x70,0xb1,0xb4,0xf9,0x32,0x54, 0xb8,0x56,0x16,0xc1,0x27,0x1b,0x44,0x20,0xf2,0x94,0x84,0x29,0x5d,0x8e,0x45,0x58, 0x50,0x77,0xbe,0xa8,0x22,0xa8,0xba,0x54,0x8d,0xf6,0x46,0xaf,0x32,0x7,0xa5,0x2f, 0x86,0xa4,0xe9,0x55,0x51,0x66,0x9,0x9f,0x15,0xfb,0x66,0xd4,0xb2,0x80,0x91,0xa9, 0x8c,0x5,0xe5,0x58,0xc1,0x3a,0x92,0x92,0x1e,0x14,0xb9,0x4f,0xe8,0x73,0xe0,0x71, 0xc0,0x16,0x62,0xb6,0x8a,0x69,0x96,0x3b,0x4a,0x67,0x6d,0xa5,0x1,0x28,0x6d,0x32, 0xa5,0x49,0x6f,0xce,0x2c,0x32,0xaf,0x2c,0xbd,0x67,0x96,0xd8,0xf,0xeb,0xa4,0x49, 0x9d,0x1,0x8f,0xe,0x76,0xdb,0xa6,0xd,0x5,0x53,0x65,0xb1,0x90,0x9a,0x4a,0x4a, 0x8,0xcd,0xe2,0xb2,0x16,0xcb,0x9c,0x5,0xc8,0x72,0x25,0xd3,0x21,0x8b,0xe1,0x3f, 0xae,0x9a,0x8c,0xc4,0x9e,0xa6,0xcf,0x2e,0x22,0x95,0x95,0x36,0x33,0x2d,0xc2,0x4c, 0x36,0xbd,0x1,0xb9,0x34,0x6c,0x39,0xa7,0xec,0x3a,0xda,0xfe,0xcb,0x80,0x8d,0xb9, 0xce,0x54,0x4a,0x6c,0x8a,0x0,0x65,0x73,0xf7,0x87,0xc8,0xc1,0x6c,0x92,0x3c,0x44, 0x1e,0x4c,0x38,0xc7,0x6d,0x56,0x1d,0x68,0xa8,0x7a,0x3,0x96,0xb5,0x7e,0x15,0x3e, 0xf7,0x6a,0x71,0xce,0x63,0x81,0xd,0xe4,0xa8,0xae,0xc4,0x58,0xe8,0x1e,0xfa,0x82, 0x27,0x4,0x9c,0x4c,0xf2,0x45,0x37,0x49,0x28,0x4d,0x5b,0xc8,0x65,0xf5,0xba,0x2d, 0x7,0xbc,0xce,0x15,0x4,0x22,0x67,0xa,0xbb,0xf1,0xb9,0xd6,0x90,0x23,0xb5,0xcd, 0x3a,0xcb,0xbc,0x10,0x82,0x29,0x89,0xe5,0xab,0x25,0xd,0x63,0xbc,0x9f,0x18,0x81, 0xca,0x3d,0x17,0xff,0x8c,0x98,0xca,0x56,0xb8,0xea,0x7d,0xba,0x1c,0x47,0x49,0x85, 0x90,0x52,0x8c,0x79,0x6b,0x39,0x1b,0x45,0xef,0x97,0xc9,0x87,0x4d,0x38,0x82,0xad, 0x87,0x30,0x44,0x5f,0x4c,0x85,0x8d,0xbe,0xf4,0xd5,0xb5,0x95,0xa8,0xab,0xf7,0xa2, 0x8e,0x58,0x47,0xa5,0xd7,0x5d,0x18,0xa4,0xc7,0x1c,0xc1,0xac,0x83,0x25,0xaf,0x48, 0x79,0x46,0xca,0xd0,0xe0,0xb8,0x8c,0xfe,0xe5,0x39,0xf5,0x12,0x8c,0x30,0x69,0x4e, 0x86,0x9,0x45,0x5,0x39,0xa5,0xd6,0x5,0x35,0x32,0x26,0xd8,0x5b,0xa1,0x55,0xff, 0x30,0x38,0x71,0x7f,0x4c,0xff,0xc0,0x18,0xf6,0x75,0xd,0x22,0x1a,0x4a,0x8a,0xb8, 0xa1,0x96,0xba,0x50,0x85,0x25,0xf1,0x73,0x58,0x2,0x66,0xf1,0x92,0x56,0xe9,0xb2, 0xe7,0x19,0x20,0x63,0xe3,0x53,0xc4,0x5a,0x46,0x88,0x25,0xf9,0x75,0x86,0xa4,0xe5, 0xe,0x52,0x53,0x31,0xd4,0x1c,0xba,0x10,0xeb,0x7e,0xb6,0x2,0x53,0xd5,0x37,0x62, 0xcc,0xff,0x20,0x5a,0x6b,0x2e,0x94,0xd2,0x6f,0x9f,0x6b,0x95,0x76,0x9e,0x25,0xf2, 0xc4,0xc9,0xd4,0x30,0xf6,0xe,0xff,0x10,0xe3,0xc1,0x8d,0xf4,0xbc,0xf3,0x89,0x69, 0x5e,0x54,0x6,0xe6,0x99,0x4c,0xc,0x23,0x53,0xb7,0x21,0x14,0xdb,0x21,0xca,0x6, 0xf5,0x55,0xa7,0x49,0xb8,0xf1,0x55,0xb6,0xe,0xd2,0x7e,0x28,0x2a,0x4a,0x3,0x50, 0xca,0x1,0xf9,0x8c,0x96,0xf5,0x30,0xe5,0xf2,0x79,0x7,0xb5,0xe4,0xde,0x78,0x76, 0x21,0xc6,0x42,0x60,0x2b,0xdf,0x5b,0x52,0xd0,0xdc,0x2a,0x8e,0x3e,0x2e,0xe8,0x9f, 0x15,0xde,0x4d,0x99,0x1,0x6a,0xb3,0xbd,0x6f,0xbe,0xb3,0x5e,0x6b,0x88,0x2c,0xcf, 0x6,0xa9,0xa5,0xca,0x10,0x28,0xe6,0x3b,0xe5,0x33,0x4c,0x8f,0x60,0x32,0xb0,0x9, 0xe9,0x5c,0x84,0xee,0xab,0xd5,0xa8,0xa0,0x85,0x9d,0x49,0x71,0x94,0x10,0xc9,0x32, 0x69,0x80,0xb9,0xe4,0x2b,0x6f,0x86,0x36,0x17,0x25,0x6b,0xc0,0xc6,0x1c,0x67,0x2a, 0xf9,0x1b,0x2f,0x96,0xe8,0xc3,0xa6,0xae,0xf7,0x61,0x2c,0x78,0xf,0xec,0x7a,0x57, 0x39,0xaf,0x8a,0xb9,0x29,0xc4,0xe7,0x5e,0x8b,0xa5,0x8d,0x9f,0x47,0x73,0xed,0x39, 0x32,0x43,0x7e,0x92,0x40,0x67,0xff,0xc8,0x55,0xb4,0xfa,0xfd,0x87,0xf4,0x9a,0x70, 0x6f,0x46,0x7e,0x25,0xa5,0xa9,0xd0,0x6a,0xe1,0x2d,0xfe,0x7,0x3b,0xad,0x5a,0xf7, 0x71,0xb4,0xfa,0xbd,0x8,0xd5,0xde,0xe3,0xe0,0xb4,0x37,0xcf,0xca,0x40,0x4a,0x67, 0xd0,0x17,0xe3,0xee,0xea,0x1,0xe3,0xee,0xb1,0xb1,0x28,0xfe,0xf5,0xae,0x2b,0xd1, 0x77,0xf7,0x53,0xf0,0x54,0x7b,0x85,0x31,0xb1,0x53,0x17,0x31,0x2b,0x75,0x7a,0x4a, 0x38,0xff,0xf5,0x2e,0xf6,0x66,0x6b,0x95,0x44,0xa6,0xc2,0xc4,0x3f,0xbd,0x20,0x59, 0xba,0xfd,0xd9,0x17,0xbb,0xdc,0xe,0x54,0x11,0xa8,0x2c,0x20,0xd6,0xc1,0xa3,0x80, 0x59,0xbf,0x4b,0xc4,0x2c,0x55,0x45,0xaa,0xbd,0x78,0x45,0xcb,0xff,0x93,0xdc,0x4a, 0xdf,0xa8,0x88,0x43,0xb2,0xa4,0x3e,0xcf,0x6e,0xd1,0x0,0x4c,0x3b,0x8,0xb7,0xc7, 0x21,0x4d,0x93,0xdc,0x77,0xc2,0xe5,0xc9,0x16,0x29,0x91,0x66,0x50,0x8a,0xa,0xb0, 0x70,0x23,0x63,0x42,0x8f,0x91,0x6b,0x53,0x2b,0xb9,0x4b,0x3f,0x2d,0x43,0xb8,0x5a, 0x5b,0x6a,0x65,0x90,0x17,0x4b,0xf0,0xf3,0xfb,0x76,0xf7,0x8e,0x60,0xef,0xbe,0x61, 0x84,0x23,0xdc,0x60,0xaa,0x22,0x4d,0xa0,0x52,0xbb,0x7e,0x11,0xce,0xfc,0xe3,0x27, 0x51,0xb1,0xb8,0x2,0x5d,0xc3,0xbf,0xc5,0x33,0x3,0x5f,0x27,0x6,0xe4,0x90,0xea, 0xaf,0xf6,0xba,0xf7,0xc1,0x66,0xab,0x29,0x38,0xc2,0x3c,0x23,0x1d,0xf,0xfe,0x9b, 0x16,0x3,0x57,0x11,0x90,0xc6,0x88,0x71,0x7e,0x44,0xf2,0x29,0x66,0x53,0xb1,0x43, 0x3c,0x14,0x7b,0x6,0xe3,0x81,0xfb,0x68,0x15,0x3c,0x81,0xc6,0xaa,0x37,0x11,0xab, 0x59,0xfa,0x2a,0x3,0x17,0xb5,0x70,0xeb,0x16,0xe5,0x65,0x4a,0x9c,0x69,0x89,0xee, 0x59,0xde,0xf9,0xe7,0xcf,0x5f,0x9d,0xf6,0x36,0x79,0xe9,0x97,0x52,0x4e,0xa3,0x94, 0xa1,0x97,0xfe,0x5b,0xa1,0xf2,0xac,0x44,0xc9,0x45,0x99,0x76,0x1c,0xba,0x16,0x9a, 0x8e,0x7a,0x5,0x47,0x5f,0x78,0xd7,0x82,0x44,0x8b,0xa2,0x83,0x8a,0x52,0xb6,0x67, 0xed,0xbe,0x2d,0xed,0x99,0x29,0x99,0xfe,0x98,0x8b,0x23,0x18,0xd9,0x89,0x50,0x7c, 0x17,0x2d,0xce,0x96,0x8b,0x44,0x92,0xd9,0xec,0x28,0xbc,0x67,0x11,0x82,0xd4,0x17, 0x98,0xe5,0x7a,0x55,0xd8,0x6,0x68,0xa5,0xc3,0x29,0x3,0x32,0xe6,0x20,0xa8,0xa8, 0x85,0x2f,0x52,0xf1,0xa6,0x63,0xad,0xae,0x6d,0x3d,0x9f,0x96,0xe4,0x3a,0x33,0x14, 0x91,0x3b,0x21,0xff,0xec,0x71,0xad,0xc4,0xc2,0xba,0xff,0xc2,0xe2,0xc6,0x4f,0x90, 0xb3,0x33,0x13,0x83,0x79,0x52,0x42,0x28,0x3,0x81,0x3f,0x90,0xe3,0x8b,0x8b,0xf8, 0xa1,0xc8,0x9a,0x48,0xa8,0x45,0xa3,0xf1,0x19,0xe9,0x14,0xb7,0xa2,0x82,0x58,0x89, 0xcf,0x7d,0x28,0x5a,0xab,0xce,0x27,0x86,0x73,0x86,0xbc,0xbe,0x94,0x71,0xcc,0x3c, 0x2e,0xb5,0xec,0x71,0xb5,0x64,0x76,0xfd,0xf4,0x2a,0x16,0x6,0xb6,0xf0,0xc8,0x30, 0xee,0xfb,0xe8,0x6f,0xd1,0x7f,0xd7,0x5e,0xb8,0xac,0xd5,0x32,0x2d,0x30,0x23,0xa3, 0x56,0x53,0x30,0x39,0x2c,0x92,0x7e,0x95,0xf0,0x44,0x7e,0x15,0xa8,0xbe,0x90,0x6b, 0xa4,0xca,0x35,0xe0,0x9f,0xdc,0xf5,0x5e,0x55,0xe5,0x42,0x73,0x4b,0x1d,0x2a,0x7d, 0x6e,0xc9,0x67,0xb0,0x30,0xa5,0xb0,0x97,0x9c,0xb6,0x82,0x64,0x1c,0xe3,0xb9,0xf4, 0x5c,0x15,0xc6,0x25,0xc2,0x1,0x19,0xe0,0x95,0x95,0x7c,0x52,0x4e,0xaf,0x5b,0xe6, 0xf7,0x68,0x6f,0x6b,0x41,0x4d,0x55,0x5,0x2a,0x7c,0x2e,0xd8,0x6d,0x66,0x3a,0xde, 0x9c,0x8,0x4f,0xf2,0xf8,0xe0,0xd1,0xd1,0x20,0x62,0xf1,0x94,0xa4,0x72,0x4d,0x16, 0xb3,0x80,0x32,0x5f,0x4f,0xa7,0xc3,0x8a,0x76,0x2,0x24,0x9e,0x2c,0xc9,0x13,0x29, 0x39,0xb7,0xd3,0xc5,0x15,0x64,0xa3,0x53,0x98,0xe8,0xf5,0x13,0x53,0x69,0xc7,0x19, 0x7f,0xb8,0x4,0x35,0xcb,0xb5,0x12,0x5a,0x9e,0xbc,0xb9,0x77,0xe8,0x7b,0x18,0xd, 0xdc,0x43,0x0,0xde,0x8a,0x25,0xcd,0x9f,0x20,0x76,0x78,0x3a,0xac,0x66,0x6f,0x79, 0x60,0x88,0x58,0xd1,0x80,0xff,0xf,0x18,0xa,0xdc,0x9,0x9f,0x73,0x15,0xea,0x7d, 0x27,0x8b,0xe6,0x1a,0x8b,0x76,0xe6,0xaf,0x3f,0xeb,0xb6,0xf9,0x83,0xf7,0xd2,0xfb, 0xb4,0xd3,0xe7,0xb9,0x84,0x8e,0xa5,0x95,0xde,0xc7,0x57,0xb6,0xa2,0xd6,0x34,0x1e, 0x15,0xbc,0x36,0xc5,0x72,0x5f,0xa,0xcb,0xb3,0x90,0x62,0x1f,0x96,0x52,0x12,0xce, 0xe3,0x5,0x5a,0x38,0xf6,0x34,0x22,0xf1,0x3d,0x4,0xf2,0x51,0x34,0x55,0xbf,0x1, 0x76,0x6b,0xdd,0xb4,0xd7,0xce,0x69,0x7b,0x84,0x36,0xae,0xa1,0x36,0x1a,0x74,0xe6, 0x1e,0xa8,0xe8,0xd4,0xa1,0x70,0x13,0x6a,0xce,0x25,0x12,0xef,0xc2,0x93,0xfb,0x2e, 0xc2,0x58,0x60,0x23,0xac,0x56,0x4d,0x66,0xde,0x46,0x4e,0xba,0xb5,0xe6,0x1d,0x58, 0xda,0xf4,0x79,0xb8,0x9d,0xb,0x11,0x88,0x6e,0x25,0x66,0xf2,0xb,0xf4,0xfb,0xaf, 0x45,0x2a,0x93,0x0,0x87,0x84,0xb5,0xfe,0x14,0x2d,0xbc,0xc2,0xbd,0x24,0x3c,0x85, 0x90,0xb1,0xaa,0xaa,0xe2,0x48,0xb4,0xd6,0x9e,0x87,0x96,0xea,0xb,0x24,0x99,0x3f, 0x7b,0x6e,0x44,0x39,0x60,0xb8,0x4b,0xd5,0x13,0x1e,0xf9,0xd5,0x7e,0xa1,0x94,0x94, 0x90,0x2b,0x14,0xa7,0x15,0x74,0xf0,0x3e,0x84,0x93,0x4f,0x23,0x16,0xe9,0x85,0x7f, 0xc7,0x5e,0xc4,0x7b,0xb3,0xc8,0x4e,0x54,0xc2,0x36,0xba,0x1c,0xca,0xfe,0xc5,0x88, 0xee,0xb,0x21,0x32,0x31,0x6,0xb,0x1,0xb,0x6b,0x32,0xe5,0x24,0x74,0xf7,0xc2, 0x86,0x18,0xa9,0xa5,0x2b,0x58,0x66,0x26,0x74,0x6e,0x69,0x72,0xc2,0x56,0x9b,0x15, 0x4d,0xf5,0x5a,0xb5,0x57,0x4d,0x9d,0x4f,0xf2,0x27,0x52,0x75,0x93,0xd5,0x94,0x7d, 0x59,0x15,0x39,0x9e,0x48,0x12,0xa3,0x18,0x97,0xbc,0xb,0xcf,0x6c,0x91,0xfd,0x9b, 0x35,0xd5,0x5f,0x6,0x21,0x8f,0xd3,0x29,0x52,0xf6,0x8b,0xda,0x1a,0xe1,0x23,0x70, 0x61,0x44,0xe2,0x22,0x83,0xa1,0xe1,0x31,0x74,0x75,0x8d,0x8,0xc8,0x64,0xa4,0xa1, 0xd4,0x22,0x39,0x2d,0x7e,0x6f,0x96,0x69,0xf1,0xb8,0x6c,0xe8,0x68,0x6f,0x42,0xc7, 0xa2,0x26,0x29,0x41,0xe6,0x32,0xe3,0xcd,0xf,0xed,0x44,0xac,0xd1,0x8b,0xd7,0xff, 0xfe,0x53,0xa8,0x5a,0x5a,0xae,0xc5,0x15,0x8e,0xed,0xc1,0xee,0xa1,0x6f,0x61,0xc8, 0x7f,0x13,0x6a,0xbc,0x27,0x63,0x59,0xeb,0xa7,0x51,0xeb,0x3d,0x69,0x6,0xb0,0x67, 0x73,0x19,0xec,0x1f,0xbd,0x4a,0x7a,0x88,0x2a,0xec,0x4b,0x89,0x8d,0xbe,0x4d,0x42, 0x5f,0xa5,0x36,0x19,0x7e,0x92,0xd8,0xe9,0x13,0x4,0x38,0x3e,0xf8,0x5c,0xcb,0x9, 0x60,0x96,0xd1,0xef,0xae,0x3,0xe4,0xbc,0xc,0x74,0x99,0x7d,0x5,0xa3,0x94,0x95, 0xef,0x17,0x81,0x38,0xa7,0x85,0x8b,0xf3,0xe1,0x38,0xa5,0x58,0x6d,0xc7,0xec,0x64, 0xc0,0xff,0x37,0x59,0xf4,0x35,0x55,0x9d,0x4a,0xcc,0xf9,0x98,0x3,0x0,0xd2,0x9c, 0x35,0xd6,0xf3,0x7a,0x1d,0xc,0xf9,0x95,0xb9,0xcb,0x54,0xb4,0xc4,0xb3,0x52,0x58, 0xd,0xc5,0x93,0xc3,0xd8,0xdc,0xf5,0x7e,0xc,0x4e,0xdd,0x1,0x9b,0xa2,0x25,0xb2, 0x59,0x46,0x65,0x49,0xeb,0x27,0x25,0xef,0xc1,0x95,0x25,0xfb,0x86,0x7e,0x8a,0xde, 0xf1,0x6b,0xe5,0xc6,0xb6,0x98,0xb5,0x49,0x89,0xf9,0x2f,0xe,0x83,0x9,0x97,0xca, 0x72,0x49,0xae,0xcf,0xb5,0x16,0xad,0x75,0xe7,0x12,0x18,0xbd,0x93,0x1c,0x67,0x67, 0x79,0x74,0x5b,0x2d,0xed,0x61,0x38,0x40,0x9c,0x59,0x55,0xf5,0x78,0xb7,0x9,0xd3, 0x9b,0xe4,0xb8,0xdf,0xa5,0x6b,0xf8,0x87,0xe8,0x1b,0xbf,0x11,0xa1,0xd8,0x4e,0xe9, 0x8b,0xe1,0x50,0x94,0x9d,0x16,0xcd,0xec,0xdb,0x72,0x3c,0x36,0x3e,0x52,0xb,0x5f, 0xf2,0x4c,0x78,0x7b,0xcf,0xc6,0xc8,0xad,0x11,0xf4,0xdf,0xf1,0x30,0xb2,0xa9,0x14, 0x2c,0x1e,0xa7,0x76,0x62,0xcf,0xff,0x23,0x2b,0x39,0xee,0xe2,0x50,0x32,0x3e,0x16, 0x1e,0x49,0x9c,0xca,0xa4,0x89,0x65,0xd8,0xc4,0xb1,0xb3,0x4,0xb,0x77,0xca,0x57, 0x7a,0x3d,0xb2,0xf2,0xe7,0x51,0xc5,0x8a,0xc5,0x2c,0xcd,0x8b,0x2c,0xfb,0xc2,0x1a, 0x61,0x5c,0xc5,0xc5,0xbf,0x73,0xc1,0x3,0x3f,0x9e,0xc9,0x64,0x44,0x20,0xb2,0xb6, 0xda,0x27,0x82,0x93,0xdc,0xd4,0xe8,0xa9,0x70,0x48,0xd8,0x23,0x1a,0x4b,0x88,0x52, 0x71,0x77,0xcf,0x28,0x2,0x93,0x11,0xc9,0xe7,0x98,0xf4,0xd0,0x22,0xf7,0xd6,0x64, 0xe9,0x42,0x57,0xd7,0xf8,0x8,0x5c,0x1a,0xd1,0xbe,0xa8,0x1,0xa6,0x8,0x81,0x91, 0x73,0xa,0xb5,0x9f,0x3e,0x1a,0x8d,0x2b,0x8f,0x2f,0x89,0xf7,0xab,0x85,0x5c,0xd5, 0x90,0xff,0x16,0x3c,0x33,0xf8,0x1d,0xc4,0x92,0x7b,0x88,0x75,0x5e,0x84,0x25,0x2d, 0x9f,0x86,0xd3,0xd6,0x32,0x23,0xfc,0x29,0x23,0xa1,0xc7,0xff,0x24,0x8d,0xad,0xd5, 0x9e,0x63,0x69,0x45,0xfc,0x26,0x29,0xa0,0x28,0xb2,0xc3,0xac,0x3e,0x54,0x6d,0x2f, 0x9d,0x8b,0x87,0x3e,0xe3,0x85,0x12,0x16,0x9d,0xc9,0x34,0x9f,0x6f,0x5f,0xcb,0xfc, 0x5,0x14,0xed,0xb6,0xd1,0x0,0x62,0x26,0x8b,0x2b,0x5f,0x58,0x15,0xc3,0x72,0xb9, 0xb2,0xfc,0x62,0x2c,0xd1,0x4b,0xf7,0xfb,0xef,0x61,0x56,0x5c,0xf4,0xbd,0xba,0x50, 0xf,0x1b,0xab,0xb3,0x5c,0xef,0x39,0xb,0x2a,0xdc,0x25,0x7f,0x2c,0x5e,0x63,0xa3, 0x80,0xe7,0x61,0xf8,0x4b,0x2d,0xe6,0x18,0x68,0x85,0xfa,0xc4,0xbe,0xf7,0xd0,0x8d, 0xfb,0x27,0x79,0xcc,0x66,0xb6,0xa1,0xb3,0xe9,0x32,0x2c,0xa1,0x8d,0x9b,0xc,0x47, 0x3,0x1b,0xb0,0x77,0xf8,0xfb,0xc4,0x60,0xee,0xd2,0x72,0x23,0xd2,0x3e,0x6f,0x2a, 0x24,0xe,0xd3,0x7a,0x69,0xb1,0xc7,0xd5,0x8e,0x85,0x35,0xef,0xc1,0xc2,0xda,0xb, 0xe9,0xf7,0x15,0x33,0xbe,0x5c,0x4a,0x3e,0x5e,0x5c,0x26,0xdf,0xa1,0x3c,0x27,0xf8, 0xe5,0x25,0xf7,0x93,0xa9,0x9,0xec,0xec,0xff,0x12,0x7a,0xc7,0x7e,0xa1,0xb1,0x28, 0x26,0x48,0x3c,0xdf,0x44,0x14,0x59,0x14,0x7d,0x38,0x57,0x16,0x39,0x4b,0xe,0x66, 0xa7,0x9,0x35,0x15,0xa7,0x60,0xb1,0xe3,0x6b,0xf0,0xdf,0xac,0x60,0xe3,0x57,0xae, 0x45,0x72,0x32,0xa,0x57,0x95,0x47,0x97,0x6a,0x7f,0x21,0x4e,0x41,0x1b,0xfa,0x95, 0xcf,0x1b,0xca,0x4a,0x52,0x7,0xbc,0x8c,0xde,0x40,0xc9,0x7d,0x30,0x3e,0x9f,0x1b, 0x6d,0xb,0x1a,0xa4,0x24,0x98,0xab,0xbd,0xb4,0x29,0x93,0x59,0xc9,0xb9,0xf0,0xf1, 0x86,0x82,0x51,0x62,0x2d,0xe3,0xd2,0x31,0xcf,0xc2,0x96,0x1c,0x4e,0x63,0x95,0xe5, 0x6c,0x3a,0x27,0x21,0xc1,0xfa,0x7a,0x2f,0xda,0xda,0x6a,0x9,0xa0,0xea,0xe0,0x74, 0x38,0xe4,0xfd,0xa7,0x2,0x4,0xa2,0xdd,0x43,0xe8,0xe9,0x1e,0x46,0x32,0x99,0x25, 0xc7,0x62,0x91,0x5c,0xc,0x57,0x2,0x25,0x53,0x19,0xa9,0x2,0x6b,0x20,0x86,0xb2, 0xa6,0x7d,0x19,0xdc,0x87,0x4c,0x61,0xd7,0x19,0x7f,0x46,0xcd,0x8a,0x53,0xb0,0xa4, 0xe6,0x32,0x2,0x82,0xc6,0x19,0x39,0x94,0x54,0x7a,0x12,0x7d,0x63,0xbf,0x93,0xa1, 0x6a,0x36,0x6b,0x15,0x3a,0x1b,0x2f,0xc5,0x2,0x2,0xff,0xd9,0xfc,0xd1,0x54,0xf4, 0x49,0xc,0x8e,0xdf,0x42,0x9f,0xef,0x94,0xc8,0xb9,0x34,0x54,0xbf,0x91,0x40,0xa4, 0x38,0xd8,0x4a,0x62,0xfb,0xd1,0x9d,0x32,0xb9,0x93,0x47,0x12,0x78,0x9c,0x2b,0xe1, 0x71,0x2c,0x2a,0xc1,0xe2,0x7c,0xb1,0x84,0xc1,0x58,0x4a,0x13,0x2e,0x99,0x6c,0x5c, 0xee,0x25,0x56,0xe7,0x56,0x94,0x62,0xee,0x7,0x8a,0x32,0x3,0x68,0xc6,0x88,0x8d, 0xf,0x8c,0xdf,0x80,0xa,0xd7,0x6a,0x74,0x34,0xbc,0x5f,0xfa,0xb3,0x8a,0x20,0x52, 0xfe,0xfc,0xd2,0x85,0xcf,0x1c,0x32,0xd6,0xf1,0x3a,0xa,0x86,0x9e,0xd7,0x41,0x99, 0xf9,0x6b,0x64,0xaf,0x1e,0xa6,0x2,0x7d,0x55,0xa4,0x62,0xf7,0xc0,0xe5,0xd8,0x33, 0xfc,0x53,0x71,0xce,0x75,0xbe,0x23,0xb1,0xba,0xed,0x7b,0x58,0xdc,0xfc,0x31,0x72, 0x26,0x7e,0x3c,0xd3,0xfb,0x7f,0x78,0x7a,0xe0,0xeb,0xc4,0xa,0x9e,0xd2,0x34,0xb8, 0x4c,0x16,0x6d,0x9a,0xa2,0x38,0x95,0xac,0x48,0x98,0x58,0x2d,0x15,0xc4,0x4a,0xce, 0xc5,0x9a,0xb6,0x1f,0xc8,0xa4,0x47,0x9b,0xb5,0x6e,0xd6,0x7d,0x9,0x98,0x28,0xf9, 0x55,0xd8,0xb3,0x57,0xa5,0xe4,0xbf,0x38,0x79,0x9,0xf0,0x54,0x26,0x84,0x5d,0xbd, 0x5f,0x44,0x37,0x1,0x8a,0x49,0x97,0xac,0xd7,0x72,0x33,0x85,0xc6,0x80,0xa2,0x7c, 0x8,0x27,0xdd,0x63,0x39,0x4,0x43,0xfb,0x11,0xb7,0xed,0xc4,0x8a,0x53,0xdf,0xd, 0x6f,0xed,0x4a,0xc,0xfe,0x7b,0x1b,0x32,0x91,0x24,0x2c,0xe,0xeb,0xf3,0xce,0xab, 0xe4,0x8f,0x41,0x2d,0xa8,0xd7,0xea,0xdd,0xda,0xfa,0xca,0x33,0x3f,0xc,0x8c,0x1d, 0x68,0x2c,0x9e,0xc4,0xa8,0x3f,0x4,0xbf,0x3f,0x8c,0x44,0x22,0x29,0x9d,0xf5,0xdc, 0xbd,0x2f,0x61,0xbb,0xac,0xa,0xb7,0xd3,0x29,0x8d,0x90,0x3e,0xaf,0x53,0xae,0x3b, 0x8f,0x33,0x4e,0x33,0x30,0xd0,0xeb,0x39,0x31,0xcf,0xa3,0x8d,0xc7,0xfc,0x1,0x11, 0x89,0xe4,0xf3,0xb3,0xd9,0x2c,0x92,0x73,0xa9,0xad,0xf6,0x12,0x48,0x79,0xa4,0x8c, 0x39,0x9e,0x4c,0x12,0x30,0xa4,0xa5,0xcf,0x86,0xe7,0xac,0xf0,0x7e,0x3,0xc4,0x7e, 0x46,0x7,0x82,0x48,0xba,0xe8,0xf3,0x58,0xff,0xc,0xfa,0x33,0xb7,0x60,0x2a,0xf8, 0x6f,0xb8,0xed,0x8b,0x84,0x89,0xf0,0x88,0xe2,0xfc,0xe7,0x60,0x31,0x3b,0x51,0xed, 0x3d,0x86,0x3e,0xe7,0xd3,0x88,0x91,0x74,0xd1,0x42,0xe2,0x1a,0x4c,0x86,0x1f,0xa3, 0xc5,0x43,0x43,0x41,0x60,0x52,0xd5,0x4b,0x58,0x9d,0xb6,0x66,0x2,0xe6,0x63,0xe8, 0x35,0x1e,0x4c,0x84,0x1e,0x81,0x3f,0xf4,0xa0,0xc,0x48,0xb3,0x5b,0x1a,0xe4,0x3d, 0xb9,0x77,0x88,0x57,0xcd,0xac,0x2d,0xa6,0x9,0x8b,0xe,0x10,0xbb,0xe9,0x11,0x8d, 0x38,0x55,0x64,0x70,0x1c,0xaf,0x79,0x40,0x29,0x5,0x0,0x15,0x1a,0xa0,0x64,0xb2, 0x61,0xbd,0xe4,0xd7,0x56,0x9c,0xb2,0xa9,0x94,0x3e,0x5f,0x2b,0x8e,0xe1,0x11,0x13, 0x3,0x13,0x37,0xa1,0xb9,0xe6,0x2d,0x68,0x6b,0xb8,0x88,0x5e,0x63,0xd7,0xb1,0x47, 0xd1,0x59,0x4f,0x39,0x13,0xd4,0xf5,0x30,0xe7,0xd2,0x35,0x1f,0xa1,0x8d,0x3b,0x6d, 0x7b,0xd,0x78,0x98,0x73,0x4c,0x45,0x9d,0xdd,0xc9,0x93,0x3d,0xdd,0xf7,0xbf,0xd8, 0x39,0xf8,0x5d,0x62,0x1f,0x76,0x2c,0x6d,0xfa,0xc,0x16,0x35,0xbe,0x8f,0x9c,0x46, 0x33,0xf6,0x13,0x33,0xd9,0x37,0xf2,0x33,0x9,0x85,0x68,0x5a,0x5c,0xe6,0xc2,0x4a, 0x8b,0x31,0x81,0x43,0x37,0x8a,0x62,0x43,0x4b,0xd5,0x79,0xe8,0x68,0xfa,0xa8,0xf4, 0x3a,0x58,0x2d,0xbe,0x59,0x68,0x7d,0x49,0x39,0x67,0xd9,0x17,0x1,0x78,0xf6,0x52, 0xc7,0x72,0x71,0x8e,0xdd,0x3,0xdf,0x15,0x96,0x62,0x36,0xf1,0x5c,0x16,0x73,0x49, 0xa5,0x4f,0xde,0xe1,0xeb,0xcf,0x57,0xb5,0x3,0x14,0x39,0xb,0x72,0xb8,0x29,0xa2, 0x8,0x2d,0xb5,0x6f,0xc4,0x11,0x4b,0x6e,0xc2,0xbe,0x6b,0x9f,0xc4,0x43,0x9f,0xb9, 0x46,0x9a,0xcf,0xa4,0x3f,0x80,0x8f,0x87,0x7b,0x3d,0x94,0xd2,0x7a,0xb5,0xe9,0x4e, 0x41,0x29,0x14,0x33,0xa8,0x7a,0xff,0x49,0xf1,0xbc,0xf4,0xde,0x97,0xfc,0xa4,0x25, 0x8e,0x89,0xe7,0x14,0xe9,0x45,0x51,0x64,0xca,0xa4,0x5,0xcd,0x4d,0xb5,0x68,0x6f, 0xaf,0x13,0x1,0x4a,0xd,0xf0,0x72,0x22,0x27,0xc0,0xd7,0x8f,0xab,0xbe,0xba,0xbb, 0x47,0xd0,0x3f,0xe0,0x97,0x5c,0xa,0x3,0x85,0xaa,0xe7,0xa5,0x18,0x8c,0x6a,0x6a, 0x7d,0xe8,0x5c,0xd4,0x20,0x4d,0x99,0xdc,0xec,0xc6,0x2a,0xcb,0xa3,0xfe,0x29,0x74, 0xf5,0xc,0x61,0x6c,0x28,0x28,0x85,0x11,0xcc,0x76,0x38,0x1c,0x15,0xf7,0x47,0x51, 0xbd,0x7e,0x11,0x4e,0xb9,0xf6,0x1d,0x88,0xb7,0x3c,0x84,0xdd,0xdd,0xdf,0x21,0xd0, 0x8a,0xa2,0xa9,0xea,0x58,0x5a,0x20,0x7c,0x9a,0x40,0xe4,0xa4,0x19,0xd7,0x9c,0x99, 0x46,0x38,0xfe,0x34,0xfa,0xc7,0xfe,0x80,0xe1,0xc0,0x6d,0xa8,0x74,0xaf,0xc1,0xca, 0x85,0xdf,0xd1,0xd8,0xc6,0xb4,0x8f,0x26,0x95,0x9e,0x40,0x84,0xee,0x5,0x7f,0xf0, 0x41,0x51,0x8c,0xae,0xa9,0x3c,0x1,0x8d,0x95,0x67,0x94,0x49,0xa6,0xb0,0xb3,0x4c, 0x65,0x3,0xc4,0xa0,0xc6,0x45,0xb2,0xc7,0x42,0x8b,0xd,0xb7,0x63,0x81,0x14,0x6, 0x94,0x4e,0x92,0x7c,0xee,0xcf,0x7e,0x1e,0x30,0x92,0x59,0xc0,0x25,0x91,0x1a,0xe3, 0x6,0x15,0x5a,0x30,0x54,0xd0,0x7d,0x6c,0x2d,0xf9,0x66,0x68,0xd7,0x25,0x9f,0x67, 0x49,0xa6,0xfc,0xd8,0x35,0xf8,0x75,0x11,0x8f,0xe9,0x68,0xfc,0xa0,0xe4,0xad,0x66, 0xbe,0xf7,0x6c,0xdf,0xb1,0x39,0x65,0xc,0x28,0x9c,0x94,0xdf,0x65,0x40,0xc3,0x9c, 0x62,0x2a,0xc5,0x95,0x8c,0xaa,0x2a,0x85,0x4a,0x92,0x3c,0xa0,0x74,0xd,0x5f,0x85, 0x9d,0x7d,0x5f,0xa7,0x15,0x75,0x1d,0x8e,0x5c,0x72,0x9d,0xac,0x86,0x52,0xc9,0x31, 0x6c,0xee,0xfe,0x20,0xf6,0x8f,0x5e,0x2d,0x4c,0xc5,0x2a,0x32,0x27,0x66,0x29,0x6f, 0x95,0xa0,0x91,0xa2,0xb1,0x13,0x8f,0x63,0x39,0xd6,0x2c,0xfa,0x29,0x16,0xb7,0x7c, 0x92,0x56,0xe0,0x9d,0x7a,0xa3,0x55,0xe9,0xca,0x69,0x7a,0x78,0x4b,0x99,0x65,0x15, 0xa5,0x3c,0x8f,0x8c,0x86,0x42,0x2c,0xe9,0x69,0x3c,0xdd,0xff,0x15,0xa9,0xcb,0xb7, 0x4a,0x1e,0x47,0x99,0xa6,0x5,0x85,0x2,0xc4,0x14,0x24,0x44,0xf4,0x15,0x1f,0x1f, 0x75,0x3c,0x3e,0x8e,0xda,0x9a,0x63,0xb0,0xf0,0xb0,0x13,0x11,0xe8,0x19,0xc6,0xd8, 0xa6,0x2e,0x98,0x6d,0xda,0xfb,0x40,0x98,0x93,0xe5,0x59,0x99,0x4a,0xf1,0x77,0xe5, 0x0,0x47,0x98,0xdf,0xb4,0x73,0x34,0xe9,0x8d,0x72,0x5c,0xf5,0x15,0x98,0xc,0x63, 0x74,0x7c,0x12,0xb1,0x58,0x12,0x2e,0x97,0x15,0x56,0xbb,0xc6,0x92,0x98,0xe1,0xf0, 0xe4,0xc9,0x86,0xfa,0x6a,0xb8,0x2b,0x1c,0xf2,0x77,0xd6,0x3,0xcb,0x83,0x2e,0x17, 0x4,0x84,0x82,0x31,0x8c,0x8c,0x4,0x84,0xf5,0x78,0xe9,0x39,0xe,0x97,0x1d,0x5e, 0xaf,0x1b,0xd,0x4,0x36,0x16,0x3a,0x7e,0x4e,0xfe,0xb3,0xd2,0xb2,0xf4,0xb7,0x24, 0x32,0x70,0x37,0xfa,0xb0,0xfc,0xfc,0x33,0xd0,0xd4,0x7a,0x22,0xea,0xbc,0xa7,0xd1, 0xe7,0x34,0x86,0xc1,0x89,0xbf,0x62,0x70,0xf2,0x9f,0xf4,0xbb,0x9f,0x40,0xe3,0xd0, 0x42,0x45,0x97,0x44,0xe0,0x15,0x96,0x92,0x69,0x42,0xad,0xef,0x4,0x54,0x79,0x8e, 0x22,0x36,0xb2,0x11,0xfb,0x86,0xff,0x1f,0xb2,0x99,0x28,0x2d,0x12,0xd6,0x89,0x4, 0x4e,0x91,0xe1,0xb8,0x88,0x95,0xb4,0xc0,0x4b,0x8b,0x7,0x2e,0x4d,0x9e,0x8a,0x3c, 0x8e,0xd1,0xc9,0x3b,0x45,0x8b,0xcd,0xa9,0x87,0xd9,0x78,0x25,0xcd,0x15,0x61,0xac, 0xd1,0xc6,0x52,0x3a,0x2c,0xa4,0x98,0x4c,0xfb,0x89,0x65,0x6,0x84,0xbd,0xb0,0x58, 0xe2,0xc1,0xaa,0xb,0xcf,0x1d,0x56,0x92,0xcf,0x53,0x66,0xb,0xe7,0xc9,0x43,0xe5, 0xb8,0x12,0x8f,0x99,0x9b,0xc3,0x56,0xab,0x31,0x47,0x3d,0xdf,0x55,0x1c,0x89,0xac, 0xdd,0x3b,0xa1,0xc8,0xe,0x6c,0xeb,0xf9,0x38,0x5d,0xc3,0x6,0xac,0x5c,0xf0,0x15, 0xb9,0xe6,0xb3,0x7f,0x5f,0x66,0xfb,0x8e,0xcd,0x19,0xe3,0xdc,0xc9,0x29,0x6,0xa0, 0xcc,0x49,0x50,0x29,0xe,0x5,0xca,0x87,0x6e,0x34,0xc7,0xab,0x62,0xc0,0x7f,0xa3, 0x94,0xe,0xd7,0x54,0x1c,0x85,0x23,0x97,0xdd,0x28,0xe,0xa7,0x6f,0xfc,0x3a,0x6c, 0xde,0xff,0x3e,0x4c,0x46,0x1e,0x23,0x90,0xe0,0xaa,0x23,0xab,0x96,0x2c,0x17,0x34, 0xc9,0x4a,0x52,0x59,0x81,0x53,0x42,0x5c,0xeb,0x3a,0xae,0x26,0x67,0x74,0xbc,0xd0, 0x78,0xb5,0xe4,0x8b,0xf1,0x52,0x1f,0x3f,0xdb,0xd0,0xc4,0xcd,0xe8,0x19,0xbb,0x46, 0x6f,0xc2,0x7c,0x9e,0xc9,0x48,0x9d,0x51,0x48,0xbe,0x25,0x97,0x82,0xcd,0xdc,0x88, 0x86,0xaa,0xd3,0x61,0x27,0xa7,0xdc,0x7f,0xef,0x4e,0xa4,0x27,0xe2,0xa2,0x44,0x9b, 0x53,0x94,0x97,0xe5,0x2b,0x29,0xcd,0x9f,0x26,0x3d,0x74,0x47,0xcc,0x88,0x2b,0xb4, 0x58,0x9a,0x85,0x67,0x8e,0x54,0x54,0x38,0x45,0xb5,0x58,0x3e,0x1b,0x93,0x49,0xca, 0x93,0x79,0xe2,0xa3,0xc5,0x6a,0x42,0x34,0x92,0x22,0x0,0x50,0xe5,0xb8,0x19,0xd0, 0xb9,0xe2,0x6b,0x72,0x22,0x42,0xc0,0x14,0x84,0x6a,0xca,0x12,0x80,0xdb,0xe0,0x74, 0xb8,0x50,0x5d,0xeb,0x45,0x5d,0x9d,0x4f,0xba,0xf3,0xa3,0xd1,0x38,0x92,0x91,0x4, 0xdc,0xcd,0x3e,0x74,0x9c,0x73,0x18,0x9c,0x4,0x3a,0x9c,0x58,0x6f,0xac,0x3e,0x1b, 0xd5,0x9e,0xa3,0xc9,0xa1,0x3d,0x85,0x81,0xc9,0x5b,0x31,0x1e,0xba,0x13,0xe,0x6b, 0xb,0xb1,0x87,0x45,0x7a,0x8e,0x48,0x63,0xf,0xc,0x2e,0x1c,0xc2,0x6a,0xac,0x7e, 0x33,0x6c,0xd6,0x26,0xf4,0xf9,0x7f,0x87,0xfe,0xf1,0xdf,0x13,0x7b,0xf5,0x88,0xde, 0x1a,0x97,0x85,0xe7,0x17,0x29,0xbc,0x78,0x70,0xd9,0x5b,0x51,0x45,0xf7,0xb,0x97, 0x29,0x8f,0x6,0xee,0x42,0x30,0xb2,0x95,0x9e,0x53,0x21,0x80,0x65,0x52,0x2c,0x22, 0xe,0x6a,0x21,0x7,0x6a,0xb7,0x56,0xd2,0x7b,0xf8,0xe8,0x6f,0x3c,0x6b,0x25,0x20, 0xa1,0x1f,0xe,0x9f,0xb1,0xd2,0xef,0x7c,0x24,0x29,0xa,0xf2,0x21,0x5e,0xe8,0x55, 0x5c,0x8a,0x94,0xfe,0x6,0xa3,0x4f,0x9,0x78,0x73,0x8e,0x4b,0x1b,0x83,0x8d,0x42, 0x18,0x2b,0x9f,0x60,0x67,0x16,0xcc,0xbd,0x5e,0x3b,0xfb,0xfe,0x57,0x1a,0x8b,0x97, 0xb7,0x7e,0x4e,0x5f,0x0,0xa8,0xf3,0xd,0x84,0x19,0x50,0x4e,0x32,0x0,0x65,0xe, 0xe7,0x54,0x4a,0xfb,0x50,0x14,0x7d,0x76,0xe9,0x58,0xf0,0x7e,0xec,0xe8,0xfd,0x8c, 0x54,0xf5,0x1c,0xb6,0xe4,0xb7,0xe2,0x54,0x9e,0xea,0xfe,0x18,0x76,0xf,0x7e,0x93, 0x9c,0x58,0x48,0xc0,0xc4,0x94,0x6f,0xe,0x63,0x7d,0x2e,0x69,0x60,0x34,0x8b,0x92, 0xed,0xaa,0x5,0xdf,0xa5,0x1b,0xfe,0xcb,0x52,0x6a,0x5c,0xc,0x9,0xbd,0xd4,0x80, 0x52,0xec,0xa0,0xcf,0xaa,0x29,0xf4,0xfb,0xaf,0xc3,0x44,0xf8,0x71,0xc9,0x3d,0x3c, 0xef,0xfd,0xe4,0x25,0x34,0x58,0xb3,0x8b,0x5,0x1c,0xe1,0xc0,0x2,0x2,0x43,0x7b, 0xa5,0x17,0xa3,0x8f,0xef,0xc1,0xd4,0x9e,0x21,0x62,0x2b,0x66,0x29,0x87,0x56,0x67, 0x4c,0x65,0x7f,0x69,0xc1,0x45,0x91,0x26,0x4c,0x45,0x98,0xb,0x2b,0xd,0xfb,0x27, 0x82,0xd2,0xd0,0xc8,0x3d,0x2e,0x66,0xab,0x36,0x29,0x92,0xcf,0x8d,0xa5,0x61,0xea, 0xea,0xaa,0x8,0x28,0x52,0x88,0x10,0x50,0x64,0x72,0x9a,0x30,0x26,0xcb,0xb6,0x24, 0x12,0x29,0xc,0x8f,0x4,0xa5,0xef,0xc5,0x6a,0x65,0x96,0xe3,0x20,0x36,0xe1,0x44, 0x53,0x53,0xb5,0x34,0x67,0x6,0xe9,0x7d,0x4d,0xd5,0x5e,0x2c,0x3d,0xf7,0x78,0x38, 0x6a,0x35,0x67,0xc4,0xc,0x8c,0x9b,0x15,0x79,0xda,0x23,0x87,0x26,0x47,0x3,0xf7, 0x13,0x3,0xfd,0x95,0x84,0xbc,0xdc,0xf6,0x25,0xb0,0xdb,0xaa,0x35,0x75,0x68,0xfd, 0x82,0xf1,0x9c,0x90,0x4a,0xf7,0x6a,0x29,0x21,0xe7,0x9e,0x88,0xee,0xb1,0xab,0x25, 0x59,0x6f,0x33,0x57,0xd1,0x3e,0xab,0x74,0x36,0xaa,0xb3,0x1c,0x5a,0x4c,0xd8,0xac, 0xf5,0xa8,0xf1,0x1e,0x27,0xd7,0x8e,0x8b,0x38,0x62,0xf1,0x1e,0x9,0xc5,0x59,0x2d, 0x1e,0x2d,0x4a,0x4a,0xef,0xcd,0xab,0x72,0x4e,0xee,0x73,0x82,0xd9,0x62,0x72,0xd1, 0xfd,0x42,0x6c,0xcc,0x64,0x99,0xeb,0xaa,0xb9,0xb3,0xde,0x6f,0x2a,0x8a,0x8b,0x2b, 0x15,0x69,0xc4,0x93,0x3,0xc4,0xe8,0xb6,0x10,0x88,0xb7,0xc1,0xe5,0x68,0xd1,0xc2, 0x7f,0x7a,0xb8,0xb0,0xb0,0xc8,0x93,0x72,0xe1,0x98,0x2c,0xe8,0xf6,0x8f,0xfe,0x1c, 0x8b,0x9b,0x3f,0x89,0xf6,0x86,0x8b,0x75,0xd0,0x57,0x4b,0x22,0xc,0xf3,0x6,0x50, 0x38,0xe4,0xb5,0xd3,0x80,0x83,0x39,0x9b,0x53,0x29,0xc6,0x5a,0xf3,0xf1,0x5a,0x6e, 0x62,0xeb,0x26,0xc7,0xc2,0xce,0x80,0x87,0x66,0xd,0xf8,0x6f,0xc2,0xfe,0xe1,0x2b, 0x31,0x19,0x7e,0x58,0xb4,0xaf,0x54,0x1d,0x4c,0x4c,0x92,0x90,0xce,0x88,0x64,0x89, 0xd5,0x5c,0x8b,0xb6,0x86,0xf7,0x62,0x51,0xc3,0x87,0x44,0xe3,0xab,0x90,0xf1,0x28, 0xd1,0xd8,0x7e,0x69,0xc1,0xa5,0x78,0xdc,0xc9,0xcc,0x38,0xb6,0xec,0x7b,0xbf,0xa8, 0x24,0x73,0xa5,0xd3,0xb,0xe1,0x38,0x9c,0x57,0x61,0xd9,0x95,0x14,0x39,0xe7,0x6a, 0x5a,0x59,0x1f,0xbb,0x6a,0x3,0x39,0xc8,0x1a,0x3c,0x79,0xc5,0x2d,0xd8,0xf4,0xcd, 0x5b,0xc0,0x5f,0x5b,0x93,0xcd,0x4e,0x4f,0xce,0xe8,0xb3,0x42,0x94,0x97,0xeb,0x93, 0xd7,0xba,0xf4,0xf5,0xd5,0x2b,0x87,0xb6,0xb8,0xe3,0xbf,0xaa,0xca,0x8b,0xe6,0x96, 0x1a,0xb4,0x2d,0xa8,0x87,0xcb,0xe9,0x10,0xed,0x29,0x3e,0x4,0x96,0xbb,0x1f,0x23, 0x90,0xe0,0x32,0xe4,0xe1,0xd1,0x49,0x11,0xa3,0xe4,0x70,0x19,0x8b,0x49,0x72,0x92, 0xde,0xc6,0xb9,0x9a,0x66,0x7e,0x5d,0x1d,0xea,0x9,0x84,0x38,0xff,0x32,0xda,0x3b, 0x89,0x49,0x4f,0xa,0x8b,0xbe,0xf1,0x46,0xd4,0x2d,0x5b,0x35,0x6b,0x7c,0x3f,0x18, 0xdb,0x85,0x41,0xff,0x1f,0xd0,0x33,0x7a,0x3,0xb9,0xb7,0x4,0x81,0xcd,0xbb,0x44, 0xb7,0xad,0x42,0x1f,0xba,0x86,0x12,0xc9,0x11,0xb6,0x68,0xb2,0x9f,0x18,0xcb,0xd, 0x12,0xea,0xb2,0x5b,0x2a,0x69,0x5,0x7d,0x36,0x1a,0x2a,0x4f,0x17,0xe1,0xcf,0xd9, 0x52,0x8,0xfe,0xe0,0x23,0xd2,0x79,0x9f,0xc9,0x71,0x9,0xb4,0x7,0x3e,0xf7,0x72, 0xd1,0xd,0xb3,0x14,0x9a,0x2d,0x9f,0x3b,0xf7,0x30,0x77,0x31,0xa5,0x98,0x1,0xcc, 0x10,0x3b,0x99,0xc,0x3d,0x21,0x8f,0x55,0xba,0xf,0x21,0xf0,0xae,0x2b,0x29,0xf4, 0x40,0x31,0x4c,0x4b,0x16,0x4f,0xd,0xd1,0x62,0xee,0xa,0x64,0x32,0x53,0x2,0x28, 0x95,0x52,0x9a,0xad,0xce,0x67,0x40,0xd9,0x6e,0x40,0xc1,0x1c,0x67,0x2a,0xf9,0x44, 0xb3,0x68,0x64,0xd1,0xca,0x69,0x64,0xea,0x2e,0x34,0x93,0x73,0x60,0x69,0xfa,0xa7, 0xfb,0xbe,0x4c,0x74,0xfb,0xf3,0x52,0x12,0x6a,0xb7,0x9a,0xf5,0xaa,0x26,0xed,0xa6, 0xcf,0xb0,0xce,0x57,0x8e,0x1b,0x18,0x8f,0xc6,0xea,0xf6,0xef,0xa1,0xb3,0xe9,0x12, 0x2,0x9d,0xea,0xa2,0x84,0x44,0xc1,0x7,0x2b,0x2f,0x43,0x9d,0xbc,0x52,0x60,0x2b, 0x59,0xfa,0x82,0xe,0x4f,0xdd,0x4a,0xab,0xeb,0x3d,0xa2,0xe2,0xfb,0xfc,0x1d,0x91, 0x52,0x56,0x51,0x63,0xb7,0xd5,0x4b,0xdf,0xc,0x57,0x32,0x45,0x7,0x27,0xd1,0x77, 0xc7,0x56,0x4d,0xcd,0xd8,0x9a,0x17,0xbb,0x34,0xbd,0x8c,0xe,0x47,0x29,0xb9,0x66, 0xaa,0x94,0x5,0xf3,0xbf,0x43,0xa1,0x38,0xc6,0xc7,0xb8,0xeb,0x3e,0x21,0x79,0x11, 0x87,0xcb,0x26,0xcd,0x91,0x3c,0xe1,0xb2,0xba,0xb2,0x2,0xd,0xf5,0x55,0x70,0xbb, 0x6d,0xd2,0x5d,0xcf,0x1b,0x4b,0xc2,0x70,0xe9,0xb2,0x9a,0x51,0x65,0xce,0xcb,0xe8, 0x78,0x48,0x1a,0x2c,0x79,0x5e,0x4c,0x53,0x55,0x23,0xdc,0x2d,0x41,0xec,0x6b,0xfa, 0xd,0xd2,0x9e,0x28,0xdc,0xd6,0xe,0x9,0x3b,0x15,0x99,0x1f,0xc4,0xc1,0xd7,0xf9, 0x4e,0x21,0x86,0x7a,0x16,0x52,0x99,0x11,0x62,0x22,0xbf,0x96,0x61,0x6b,0x7c,0x2c, 0x1e,0xe7,0x22,0x1d,0x2c,0xa,0x7a,0x22,0xf4,0x79,0xfb,0x50,0xeb,0x3d,0x5e,0x2a, 0xc0,0xa2,0x89,0x1e,0xc,0x4e,0xfe,0x9,0x81,0xe8,0x53,0xc4,0x38,0xdc,0x12,0xce, 0x31,0x29,0x96,0xa2,0x44,0x30,0x58,0xad,0x7a,0x1,0x1,0xd4,0x52,0xc9,0xab,0xe4, 0x68,0xf5,0xcd,0x61,0x9f,0x64,0xd2,0x2f,0x2b,0x71,0x85,0xd8,0x30,0xcb,0xbb,0x28, 0xf3,0x34,0xa7,0x92,0x7,0x94,0x78,0x6a,0x18,0xe3,0xc1,0xfb,0x25,0xcc,0x57,0xe7, 0x3b,0x51,0x2a,0x23,0x4b,0x27,0x43,0x2a,0x25,0xfa,0xf4,0x93,0xa1,0x47,0xb1,0xbd, 0xe7,0x32,0x79,0x6c,0x75,0xdb,0x15,0x85,0x9e,0xae,0xd2,0xfb,0xe5,0xe5,0xe3,0xd0, 0xff,0x71,0x40,0xe1,0x31,0xc0,0xdb,0xc,0x18,0x98,0xf3,0xa0,0x52,0x52,0xce,0xa8, 0x66,0x69,0x95,0x1b,0x42,0x2d,0x81,0x9,0x33,0x90,0x4d,0x7b,0xb5,0xbe,0x14,0xb3, 0x59,0x95,0x8e,0x6d,0xd,0x13,0xf4,0x7e,0x10,0x5a,0x29,0xb3,0x3,0xe8,0x68,0xfc, 0x8,0xdd,0xec,0x3f,0x2c,0x4a,0xa0,0xab,0xd3,0xcb,0x16,0x95,0x92,0x7d,0xe0,0x25, 0x73,0x16,0x25,0x1,0x3b,0x71,0xf6,0xfe,0xf0,0xfd,0x22,0xe9,0xad,0xcd,0x86,0xd7, 0x87,0x30,0x15,0x46,0x8,0xcf,0xbe,0xe2,0xcd,0xe9,0xf,0x89,0xaa,0x70,0x2e,0x27, 0x8a,0xbb,0xed,0xf5,0xff,0x2d,0x5f,0xf6,0xe0,0x6e,0x72,0xa8,0xb7,0x6f,0x41,0x8e, 0xe7,0xa6,0x48,0x43,0xa1,0xe9,0xe5,0xfd,0xda,0xe6,0xaf,0x97,0xac,0x52,0x4d,0xc8, 0xab,0x4,0x68,0x3,0xbb,0x14,0x4,0x43,0x9c,0x6f,0x99,0x40,0x2c,0x9a,0x94,0xcf, 0x82,0x7,0x8a,0xe5,0x1d,0x50,0x4d,0x4d,0x5,0xea,0x6a,0x2b,0xa5,0x2f,0x25,0x16, 0x4b,0x20,0x19,0xcf,0x10,0x0,0x99,0x84,0x9d,0x64,0x52,0x69,0x4c,0x10,0xa3,0x19, 0xe3,0x70,0x5a,0xda,0xa,0x5b,0x7d,0x12,0x3d,0xb,0x7f,0x8b,0xde,0xf8,0x2d,0x48, 0x25,0xfa,0xe8,0x9c,0x3b,0xf5,0x5e,0x95,0x52,0x61,0x43,0x5,0x36,0x6b,0xd,0x1, 0xcb,0x5b,0x50,0xe9,0x3a,0x14,0x91,0xd8,0x6e,0x1,0x17,0x7f,0xe8,0x21,0x2,0x91, 0x2a,0x49,0xc4,0xa3,0x70,0xb8,0xda,0x45,0xb6,0x11,0x4b,0x61,0x7,0x59,0xe7,0x3d, 0x49,0xd4,0x70,0xfb,0xe9,0xbe,0x61,0xa1,0x51,0x6,0x15,0x97,0xbd,0x4d,0xf,0xd5, 0x14,0xaf,0x20,0x87,0xda,0xdc,0x8e,0x76,0x78,0x69,0xd5,0xcd,0xe7,0x10,0x4f,0xe, 0x21,0x91,0x1e,0x47,0x22,0x35,0x40,0x9f,0x5b,0x8a,0xc7,0x58,0x69,0xe1,0x36,0x93, 0xe5,0x0,0x61,0xcf,0x57,0x20,0x76,0x35,0x6b,0x55,0xd5,0xac,0xab,0xb4,0xe2,0x78, 0x88,0x72,0x51,0x31,0x62,0xfb,0x9b,0x30,0x1e,0xfa,0xb7,0xe4,0xac,0xea,0x2b,0x4f, 0x2a,0x51,0x80,0x50,0x4a,0x16,0x39,0xda,0xcf,0xfe,0xb1,0x1b,0xb0,0xab,0xef,0x2b, 0xa8,0xf7,0x9e,0x4c,0x8b,0xb6,0xef,0xd3,0x35,0xf3,0xa2,0x14,0x42,0x4,0x7c,0xe7, 0x7,0x53,0xc9,0x3,0xca,0x56,0x3,0x2,0xe6,0x5,0xa8,0x28,0x5,0x35,0x3d,0xbe, 0xc1,0x6d,0x56,0x1f,0xad,0xa2,0xee,0xc5,0x13,0x5d,0xef,0x95,0x2f,0x80,0xdd,0xa6, 0xe8,0xab,0x4d,0x55,0x2f,0x69,0xcc,0xd0,0x17,0x3f,0x2b,0x9,0xd8,0x55,0x6d,0x97, 0x63,0xf9,0x82,0x2f,0xc9,0x6a,0x75,0x86,0x73,0x9c,0xb5,0xa,0xe5,0xa5,0xc,0x1f, 0x15,0x81,0x83,0x41,0x20,0x1c,0xdf,0x8d,0xd1,0xe0,0xdd,0x32,0x18,0x4c,0xc3,0x31, 0xad,0x4f,0x44,0xd1,0x27,0xdf,0x29,0x7,0x38,0x77,0xc6,0x9b,0x9c,0x36,0xd1,0x1c, 0xf5,0xbe,0x33,0x24,0xdc,0xc7,0xcf,0x9d,0xd8,0xd9,0x87,0x9e,0x7f,0x6c,0x96,0xee, 0x7a,0x93,0x3e,0xf7,0x5e,0x79,0x79,0x3f,0x85,0xa2,0xa3,0x98,0xfe,0x37,0x1e,0x20, 0xc6,0xd2,0x2d,0x44,0xb,0xa7,0xa6,0xc2,0x18,0xf7,0x7,0xa5,0xa9,0xd1,0xe5,0xb4, 0xd3,0xa6,0x81,0x8b,0x8d,0xc0,0x87,0xa7,0x48,0x56,0xfa,0x3c,0xd2,0xa9,0x1f,0xa, 0xc7,0x24,0x81,0xcf,0x8c,0x86,0x41,0x93,0x67,0xba,0xc,0xf7,0x4f,0x20,0xe5,0xb2, 0xc2,0x7d,0xa2,0x17,0x49,0xf7,0x6e,0x8c,0x4d,0xee,0x20,0x56,0xf1,0x0,0xb1,0x84, 0x28,0x3c,0x8e,0xa5,0xc2,0xd0,0xb4,0x6b,0x9a,0xd3,0xfd,0x9a,0x22,0xac,0x82,0xc1, 0x85,0xa7,0x41,0x8e,0x87,0x1e,0x44,0xd7,0xe8,0xd5,0x74,0xad,0xbb,0x8,0x28,0x9a, 0xe1,0xb4,0xb5,0xa2,0x20,0xb2,0xae,0xc7,0x6c,0x78,0x2a,0x64,0x5d,0xe5,0x29,0xf0, 0x39,0x57,0xd2,0x8a,0xbc,0x1f,0xa3,0x81,0xdb,0x31,0x15,0x7e,0x52,0xee,0x1f,0xee, 0x89,0x29,0x96,0x17,0xeb,0xce,0x91,0xce,0xcd,0x6e,0xad,0x95,0x15,0x38,0xb3,0x26, 0x2d,0x9c,0x9a,0x10,0x90,0xc9,0xd0,0x71,0xf1,0xdc,0x8f,0xac,0x1a,0xd3,0x26,0x1f, 0x4a,0xc1,0xc7,0xcb,0xef,0x44,0x8b,0x15,0x5a,0x25,0x5d,0xff,0x6a,0x7e,0x82,0xa2, 0x5a,0xa6,0x32,0xf1,0xec,0x4,0x58,0xd5,0x9f,0x6f,0xa2,0xcf,0x24,0x2a,0x23,0xb7, 0xa3,0xc9,0x2e,0x2,0xde,0xe3,0x51,0xed,0x39,0x6c,0x46,0x68,0x2c,0x7f,0xcd,0xf9, 0xd7,0xdd,0x83,0xdf,0x46,0xf7,0xf8,0x35,0xc4,0xfe,0x3f,0x8e,0x25,0x2d,0x9f,0x10, 0x50,0x2e,0x96,0xab,0xbf,0xa4,0xeb,0xb3,0x57,0xda,0x26,0x69,0x3b,0xdd,0x0,0x94, 0x79,0x4,0x2a,0x5,0xb9,0x6e,0x49,0x6,0x66,0xe8,0x66,0xfe,0x3f,0xec,0xec,0xfd, 0x2,0xad,0x1a,0xfb,0xc9,0x51,0x69,0x2b,0xf4,0x9c,0xbe,0xe2,0xe2,0xbf,0xf3,0xb, 0x5a,0x6a,0x2f,0xc0,0x21,0xed,0x97,0xa3,0xb5,0xe6,0x9c,0x57,0x8c,0x76,0x17,0x2, 0x24,0x4a,0x1e,0x1c,0x6c,0x18,0xf,0xdf,0x45,0x4c,0x2b,0x20,0x3d,0x2a,0x45,0xe5, 0x5f,0xf3,0x1,0x67,0xa0,0xe7,0xbf,0xf8,0x2c,0x6a,0x6f,0x52,0x5d,0x58,0xd2,0xfc, 0x49,0xf8,0x5c,0x87,0xc8,0xa3,0xbd,0x77,0x3f,0x85,0xc1,0x7b,0x76,0x68,0x4d,0x9c, 0x16,0xd3,0xb3,0xcc,0x51,0xc7,0x7f,0xc4,0xc1,0x9,0xa3,0x32,0x69,0x3d,0x27,0xc, 0x28,0x13,0x13,0x61,0x4c,0xfa,0x39,0xb4,0x95,0x92,0x70,0x18,0xf,0x13,0xe3,0xc2, 0x9,0xaf,0xc7,0x21,0xcd,0x93,0x3c,0xbd,0x32,0x95,0x4c,0x13,0x6b,0x48,0xca,0x39, 0x58,0x6d,0x26,0x24,0x42,0x21,0xc0,0x57,0x8d,0xc3,0xdf,0xf3,0x29,0x34,0x77,0x1c, 0x83,0x5c,0x26,0x8e,0xb1,0xc0,0xa3,0xc4,0x40,0xee,0x26,0x70,0x79,0x54,0x12,0xef, 0x5e,0x2,0x3,0x4e,0xb0,0x6b,0x60,0x9c,0x93,0xeb,0xc3,0xa5,0xc2,0x5c,0xf9,0xd7, 0x54,0xc5,0x83,0xd1,0xda,0x30,0x12,0xb8,0x3,0xbd,0xc4,0x5c,0x22,0x9,0x96,0x60, 0xa9,0x10,0xc6,0x51,0x94,0x79,0xd7,0x9c,0xad,0x83,0x40,0xa7,0x8e,0x45,0x27,0x5d, 0xab,0xe8,0x33,0xf1,0x23,0x14,0xdb,0x25,0xa3,0xa2,0x43,0xb1,0xed,0x4,0x48,0x1d, 0x65,0x65,0xcb,0x5c,0x35,0x28,0x23,0x76,0xcd,0x15,0xc2,0x9a,0x18,0x64,0x2c,0x16, 0xb7,0xec,0x97,0x25,0x77,0x58,0x10,0x94,0xb,0xa,0x78,0x42,0xa1,0xc6,0x82,0x5f, 0x5e,0xa9,0x91,0xfc,0xf5,0xd6,0xa,0x58,0x4c,0x5,0x94,0x90,0xa6,0xdc,0xe7,0x2, 0x14,0x9d,0x75,0x68,0xa9,0x44,0x6d,0xa2,0x68,0x98,0xce,0x7d,0x3c,0xf0,0x6f,0xba, 0x15,0x4d,0x68,0xac,0x3a,0x43,0xbb,0x5e,0x3a,0xeb,0x52,0x4b,0x86,0x9a,0xf1,0xff, 0x82,0xb1,0x9d,0xd8,0xde,0xf7,0x69,0x11,0x85,0x5c,0xb1,0xe0,0x6b,0xb4,0xc8,0x79, 0x6b,0xe1,0xb9,0xca,0xfc,0x53,0x1e,0x60,0x40,0x39,0xd5,0x0,0x94,0x79,0x6,0x2a, 0x79,0x71,0x6f,0xbe,0x55,0xbb,0x86,0x7f,0x8c,0x5d,0xfd,0xff,0x4b,0x8f,0x44,0x65, 0x3e,0x3b,0x4a,0xe4,0x21,0xb8,0xca,0x88,0x13,0xd8,0x2b,0x16,0x7e,0x9b,0xb6,0xaf, 0x14,0x9a,0xad,0xb4,0xa6,0x2c,0xe5,0x15,0x70,0xb6,0x28,0x8b,0xbd,0x3b,0xec,0x8d, 0x22,0xd1,0x32,0x1e,0x7e,0x10,0x66,0xbd,0xfb,0x52,0xa4,0xed,0xcb,0x84,0xf9,0x66, 0x72,0x1d,0x95,0xd5,0x92,0x33,0x2a,0xaa,0x3c,0x47,0x60,0x69,0xcb,0x17,0xc5,0xd9, 0xa5,0x63,0x71,0xec,0xfa,0xd5,0xbd,0x98,0xdc,0xda,0xf,0x8b,0xc3,0xa6,0x49,0x8e, 0xab,0xaf,0xcc,0x30,0x43,0x45,0x51,0x66,0x80,0x8b,0x45,0x77,0xaa,0x31,0x2,0x14, 0x3f,0x1,0xcb,0xd8,0xd8,0x94,0xfc,0xdd,0xe3,0x75,0x9,0xa3,0xe1,0x62,0x85,0xea, 0x6a,0x2f,0x6a,0x6b,0xbd,0xc2,0x60,0x58,0x11,0x39,0x95,0x26,0xc7,0x9d,0xca,0xa1, 0xa2,0xd5,0x87,0x15,0xe7,0x9d,0x81,0xba,0xa6,0xa3,0xd0,0x50,0xc9,0xe,0xae,0x85, 0xc0,0xe1,0x19,0xf8,0xc3,0xdb,0x30,0x3a,0x75,0x37,0x39,0xb5,0x47,0x88,0x9d,0xb6, 0x6a,0x25,0xc5,0x85,0xb8,0xbd,0xa2,0x87,0xac,0x2a,0xa5,0xbc,0xbc,0x99,0x75,0xbe, 0x2c,0x8d,0x18,0xf0,0xff,0x9,0x7d,0xe3,0xd7,0x22,0x96,0xec,0x46,0x85,0x63,0x95, 0x48,0xba,0x28,0xd3,0x64,0x44,0xec,0xd6,0x7a,0x54,0xd1,0x6b,0xb8,0x69,0x92,0x35, 0xc0,0x62,0x89,0x2e,0x7a,0xdd,0x1f,0x11,0x4b,0xd,0x48,0xd7,0x3d,0xbf,0xa7,0xd6, 0x2b,0xa4,0x14,0x24,0x5b,0x78,0x55,0xce,0x9f,0x83,0x85,0x9e,0x6f,0x25,0xe6,0xcc, 0xa1,0x35,0x1,0xa1,0x12,0x47,0xfd,0xf2,0x87,0xb9,0xca,0xd5,0x80,0xe5,0x77,0x35, 0xf,0x2e,0xca,0xb3,0x87,0xc0,0x4a,0x18,0xc7,0xd0,0xc4,0x3f,0x9,0x4c,0x1f,0x94, 0x3e,0x9f,0x5a,0xef,0xb1,0x33,0xd4,0x9f,0x15,0xa5,0xd8,0xbb,0x34,0x30,0x7e,0x13, 0xb6,0x77,0x7f,0x4c,0xd8,0xe1,0x21,0xed,0xdf,0xd5,0x12,0xf2,0x65,0x91,0xdb,0x79, 0x55,0x3a,0xcc,0x8d,0x8d,0x27,0xc1,0x48,0xca,0xcf,0xc7,0xf0,0x97,0xf6,0x25,0x19, 0xd,0xdc,0x8d,0xed,0x3d,0x97,0x92,0x73,0x8a,0xc9,0x6a,0x58,0xaa,0x91,0xf4,0x7b, 0x98,0x1,0xc5,0x63,0x5f,0x82,0xf5,0x9d,0xbf,0xc1,0x82,0xba,0xb,0xb4,0x59,0x19, 0x6a,0x29,0xcd,0x57,0x5e,0x21,0x67,0xab,0x96,0xfc,0xdb,0x24,0x40,0x37,0x15,0xdb, 0x8c,0x60,0xa2,0x47,0xb,0x83,0x71,0xed,0x96,0x92,0x3b,0xe0,0xb8,0x74,0x2e,0x3a, 0xc8,0x64,0x33,0x12,0xf2,0x3b,0xa4,0xfd,0xfb,0x4,0x2c,0xeb,0xe5,0x71,0xff,0x8e, 0x7e,0x6c,0xbb,0x72,0x3,0xd2,0x93,0x74,0x2d,0x88,0x1,0x28,0x85,0xd0,0xc4,0x2b, 0x67,0xc5,0x70,0x8c,0xa2,0x8d,0xa6,0xe5,0x64,0xbe,0x49,0x4b,0x5e,0xa5,0x53,0x69, 0x29,0x43,0x9e,0x9a,0x8a,0x48,0xc3,0xa3,0xcb,0x65,0x17,0x56,0x63,0xb7,0x5a,0x51, 0x5b,0xe3,0x95,0x8d,0xb5,0xd7,0x26,0xe9,0x39,0x8e,0xba,0xa,0x74,0xbe,0xfd,0x30, 0x38,0xe9,0x31,0x76,0xd4,0x55,0x9e,0x23,0xd1,0x4c,0xab,0x61,0xbe,0x5e,0xe1,0xc4, 0x4e,0x2,0x97,0x9d,0xc4,0x5e,0x6e,0x45,0x22,0xd5,0x2f,0x55,0x7c,0xf6,0xfc,0xec, 0xf2,0x92,0xaa,0x2f,0x76,0x8c,0x55,0x15,0x47,0xd0,0x2a,0xfa,0x3c,0xba,0x57,0x7c, 0x18,0x9c,0xbc,0x11,0x3d,0xa3,0xbf,0x24,0x50,0x9f,0xa4,0xfb,0x64,0x31,0x1,0x41, 0x25,0xca,0x75,0xa6,0x4c,0x12,0x5a,0xe3,0x15,0x3a,0x4f,0x1d,0x64,0xd6,0x13,0x4b, 0x74,0x63,0x88,0x5e,0xc7,0xd5,0x66,0xd9,0x6c,0x5c,0x0,0xc9,0x5c,0xa6,0x64,0xac, 0xdf,0x5f,0x8a,0x36,0x49,0x54,0xeb,0xd7,0x30,0xbd,0xec,0x2c,0xa5,0xb8,0x68,0x51, 0x4a,0x2a,0xb1,0x98,0xa5,0xa7,0xf5,0x73,0x31,0x23,0x5f,0xd4,0xf0,0x6c,0x45,0x27, 0xb1,0x64,0x3f,0xba,0x47,0x7e,0x2b,0x15,0x74,0xb,0x88,0xd9,0x7b,0x9c,0x1d,0x85, 0x12,0xe0,0xf2,0xdc,0x8c,0xa6,0x90,0xb0,0x7f,0xe4,0x6a,0xec,0x19,0xfa,0x36,0x3a, 0x1b,0x3f,0x4a,0x8b,0x9b,0xcf,0x4a,0x4e,0x2b,0xdf,0x3f,0xa6,0xe6,0x83,0xa3,0xea, 0x9c,0x93,0x58,0x39,0x90,0xf5,0x41,0x53,0x1b,0xde,0x6b,0xb8,0xfc,0x79,0x9,0x2a, 0x9c,0x74,0x9f,0x90,0xe,0xdd,0x50,0xfc,0x69,0xbd,0x24,0x57,0x4b,0x4a,0x73,0x3c, 0x9b,0xdb,0x20,0x38,0x51,0xb8,0xae,0xe3,0xe7,0xb2,0xda,0x92,0xbc,0x4a,0x21,0xa7, 0xf8,0x6a,0x28,0xf9,0x54,0xa,0xf3,0xbe,0x39,0xf9,0x5b,0xe9,0x5a,0x8f,0x50,0x64, 0x8b,0x7c,0xa9,0xa1,0x33,0x15,0xa5,0x30,0xca,0x28,0xff,0x85,0x54,0x25,0x3e,0x9d, 0x13,0xf6,0x55,0x85,0x55,0x6d,0x57,0x8,0x58,0xe6,0x65,0x58,0xb6,0xfd,0xf4,0xe, 0xf4,0xdd,0xf9,0x94,0x3e,0x22,0x56,0x73,0x2c,0xec,0xc8,0x95,0x57,0xc,0x3c,0xa7, 0xc5,0xf9,0xf5,0x11,0xb7,0x39,0x3d,0xcf,0xc5,0x0,0xc2,0x8f,0x47,0xa2,0x31,0x8c, 0xe,0x7,0x10,0x8f,0x27,0x61,0x77,0x58,0xe1,0x70,0x3a,0xe4,0x88,0x3d,0x15,0x4e, 0x34,0x36,0xd6,0xc0,0xc2,0x53,0x6a,0xbd,0xe,0x2c,0x38,0xfb,0x28,0xb8,0x6a,0x3d, 0xc8,0xc7,0xfb,0x39,0xf9,0x5e,0xef,0x3b,0xd,0x35,0xbe,0x93,0x90,0x4e,0xf,0x20, 0x42,0xf7,0x81,0x3f,0xf8,0x18,0x46,0x83,0xb7,0xc3,0xa4,0xd8,0xb,0x21,0xb1,0xe9, 0x9f,0x35,0x3,0x45,0x4d,0xc5,0xd1,0xc4,0x78,0xde,0x28,0xc7,0x31,0x30,0xf1,0x7, 0xf4,0x8c,0xfd,0x56,0xfa,0x4c,0x5c,0xf6,0x76,0x1,0xad,0xd2,0x1c,0x8a,0x1c,0x2d, 0x4b,0x90,0x58,0x79,0x3c,0xf4,0x3a,0xd4,0x78,0x4f,0xe5,0xf9,0xbc,0x8,0x44,0x37, 0xc9,0xdc,0xfb,0x60,0x6c,0x9b,0xdc,0x7b,0xcc,0x5e,0x64,0xfa,0x62,0xbe,0x3f,0xa6, 0x50,0x48,0x32,0x5d,0xc2,0xe7,0xe5,0xbb,0xa7,0x8a,0xd7,0x3d,0x83,0x78,0x6a,0x4c, 0x1b,0x43,0x6c,0xb6,0x4a,0x7e,0x6a,0xa6,0xfc,0x4f,0xc9,0xb8,0x61,0x35,0x85,0xc9, 0xf0,0x13,0x18,0x9c,0xf8,0xb,0x7c,0x9e,0x43,0xd1,0x52,0xfb,0x56,0x61,0x5a,0xe5, 0x8b,0x19,0xb5,0xa0,0x6d,0xc7,0x85,0x9,0xdb,0x7a,0x3e,0x83,0xa1,0xa9,0xbf,0x60, 0x6d,0xdb,0xf,0xd1,0x5a,0x7f,0x81,0x7e,0xad,0x4b,0xaa,0xc1,0x74,0x89,0x21,0x6d, 0x32,0xa7,0x32,0xd7,0x31,0x65,0x37,0xb4,0x4e,0x79,0x43,0xcb,0xeb,0x3f,0xe5,0x43, 0x5e,0xfe,0x3e,0x95,0xf2,0xf1,0xa1,0x1c,0x47,0xdf,0xdd,0xf7,0x35,0xec,0x1e,0xfa, 0x8e,0x88,0x30,0xb2,0x0,0x23,0xcb,0x96,0x64,0x38,0x7f,0x82,0xa,0x5a,0x65,0x9d, 0x8f,0x55,0xb,0xbe,0x21,0x31,0xf2,0x3,0xbf,0xd7,0x2b,0x65,0xb3,0xef,0x3f,0x12, 0xdf,0x8f,0xed,0xbd,0x9f,0x82,0x3f,0xb2,0x11,0xd9,0xf4,0x94,0xc8,0xc6,0xe4,0x17, 0x78,0x39,0x7d,0xb5,0x67,0x56,0xbc,0xc4,0x6c,0x56,0x61,0x45,0xcb,0x97,0x45,0x59, 0x37,0x6f,0xfb,0x6f,0xdf,0x84,0x7f,0x7f,0xf8,0x1a,0xa4,0xfc,0x11,0x99,0xf,0x8e, 0x57,0xed,0x1c,0x4e,0xa5,0x28,0x34,0xa8,0x16,0xaf,0x85,0xaa,0x87,0x2a,0x3d,0x1e, 0x7,0x96,0x2c,0x6d,0x45,0x13,0x81,0x9,0xeb,0x8b,0x59,0x19,0x78,0x22,0xc4,0xc2, 0x2a,0x27,0x60,0xff,0x48,0x7,0x1a,0x56,0x1c,0x2b,0x21,0xac,0xfc,0x65,0xcc,0xb, 0xe0,0xb2,0xd6,0xd7,0xa0,0xff,0x6f,0xe8,0x1e,0xbb,0x12,0x81,0xc8,0x4e,0xba,0x5e, 0x61,0xd4,0x56,0x9c,0x4a,0xab,0xe7,0x4f,0xa1,0x9a,0x0,0xc4,0x6a,0xa9,0x46,0xe9, 0x8b,0x54,0x14,0xa5,0xda,0xc3,0xf1,0x6e,0x51,0x37,0x1e,0x98,0xf8,0x3d,0xb1,0x99, 0x2a,0xb4,0x12,0x93,0xe1,0xe,0x7c,0x16,0xa1,0x64,0x0,0x2a,0xda,0xcc,0xb9,0x1e, 0x2c,0x51,0x12,0xa1,0x2d,0x9a,0xec,0x45,0x3c,0x3d,0x44,0x2b,0xfb,0x15,0xa8,0xf3, 0x9e,0x20,0xb9,0x15,0x6,0x7f,0x96,0x70,0xb1,0x58,0x3c,0x2,0x4a,0xcf,0x37,0x3e, 0xaa,0x72,0xae,0x46,0xd5,0xd8,0xc5,0x81,0x43,0x56,0x33,0x1f,0xd3,0x86,0xae,0xc5, 0x90,0x4a,0x47,0x45,0xb1,0xd9,0x6e,0xaf,0x13,0x60,0x30,0x99,0xcc,0x38,0xd0,0xf8, 0xdd,0x9c,0x14,0xb0,0xc,0x63,0x6c,0x6a,0x3,0x1d,0xff,0x8,0xda,0xea,0xde,0x9, 0x17,0x31,0xb3,0xc2,0xac,0x9d,0x42,0x9e,0x45,0x7f,0x7e,0x2e,0x29,0x5,0x31,0x4f, 0xf7,0x7f,0x83,0xc0,0xca,0x82,0x43,0xda,0xbe,0x8f,0x6a,0x62,0x8d,0x7,0xe,0x73, 0xcd,0x8b,0x9e,0x1d,0xce,0x9d,0xbc,0x41,0xf,0x7d,0x19,0x36,0x1f,0x40,0xa5,0x7c, 0x3e,0x8a,0x76,0xd3,0x76,0xf,0xff,0x12,0xdb,0xfa,0x2e,0xa5,0x1b,0x3e,0x5,0xb3, 0x6a,0x95,0xb2,0xe2,0x74,0x36,0x27,0x7a,0x42,0x6b,0xda,0xbe,0x87,0x56,0xa2,0xee, 0x50,0xe6,0xe0,0x4d,0xad,0x6a,0xe5,0x9b,0xdc,0x37,0x31,0x15,0xdb,0xa,0x35,0x17, 0x94,0x71,0xc0,0x2c,0x70,0xe9,0xa0,0x73,0x6b,0xaa,0x39,0x1f,0x4d,0xbe,0xb3,0xa, 0xda,0x55,0x6c,0xdd,0xff,0xda,0x82,0x87,0x3e,0xfc,0x5b,0xc4,0x86,0x83,0xb0,0x7a, 0xec,0xaf,0x62,0x40,0x79,0x2e,0xe2,0xa6,0xc8,0x98,0x63,0xe,0x91,0xf1,0x60,0xaf, 0xce,0x45,0xcd,0x68,0x6a,0xa9,0x82,0x47,0xa9,0x42,0xb4,0x6e,0x8,0x3b,0x4e,0xff, 0x31,0x4c,0xad,0x95,0x58,0xd6,0xf8,0x25,0xe9,0x47,0x2a,0x8e,0xfe,0x2d,0xf9,0x8c, 0xe9,0x5e,0x19,0x9e,0xfc,0x3b,0xf6,0xc,0x7f,0x17,0x63,0x81,0xc7,0x65,0xa1,0x51, 0x57,0x79,0x3c,0x81,0xcb,0xe7,0xc9,0xd9,0x9f,0x5c,0x18,0xba,0xa5,0x8d,0xc5,0xd5, 0x41,0x42,0x7f,0x29,0xab,0x45,0xf7,0xfb,0xff,0x84,0xa1,0x89,0x3f,0x13,0xc0,0xef, 0x96,0x84,0xfd,0x82,0xda,0x77,0x49,0xc8,0xcc,0x66,0xa9,0x2e,0x73,0xde,0xd3,0xc3, 0x39,0x1c,0x66,0xe2,0xbe,0xa3,0x9c,0x9a,0x24,0xa0,0xd9,0x89,0x60,0x7c,0x17,0x1d, 0xa,0x31,0x2f,0x6b,0x93,0x80,0x13,0xb3,0x51,0x45,0x80,0xc5,0x24,0x2,0x9a,0x52, 0x54,0x20,0xb2,0x2f,0x26,0x9d,0x9,0x99,0x75,0xf1,0x4e,0xbe,0x10,0x69,0x1,0x33, 0x8b,0xc5,0x85,0xe9,0x33,0x77,0x8a,0xe0,0x56,0x9e,0xfc,0x4e,0x67,0xc2,0x32,0x17, 0x28,0x91,0x1a,0x11,0x19,0x1b,0xa7,0xad,0x89,0x16,0x5a,0x36,0xfd,0xd2,0xe6,0x4a, 0xc2,0x7a,0x45,0x36,0x93,0x4c,0x8f,0xcb,0xe8,0x87,0x50,0x74,0x17,0xea,0x2b,0x4f, 0x93,0x52,0xe1,0x72,0xf0,0x2c,0x7,0x9,0x7e,0xef,0xa7,0x7,0xfe,0x8f,0xae,0xcf, 0x5f,0xd0,0xd1,0x70,0x9,0x96,0xb6,0x7e,0x76,0x9a,0x2e,0xde,0xbc,0x34,0x9e,0xd8, 0xc8,0x23,0x80,0x27,0xd,0x37,0x3f,0xef,0x98,0x4a,0x51,0xf1,0x74,0x8a,0x68,0xfa, 0x63,0xbb,0xdf,0x8a,0x44,0x66,0x88,0x9c,0xab,0x45,0x66,0x88,0x88,0x10,0xa4,0x6b, 0x31,0xd6,0xb6,0xff,0x14,0x8d,0x55,0x67,0x3e,0xcb,0xca,0x69,0xe,0xe1,0x8b,0xca, 0xaa,0xae,0xa3,0xb2,0x72,0xe5,0x95,0xb6,0xc5,0xec,0x28,0xfb,0x7b,0x26,0x99,0x46, 0xdf,0x86,0xad,0xd8,0xf8,0xe9,0xeb,0x11,0xea,0x1e,0x87,0xd3,0xe7,0x1,0xd4,0xb9, 0x89,0x28,0xaa,0xe,0x8,0x30,0x69,0x8a,0xb6,0xdc,0x69,0xcf,0x3f,0x1b,0x1b,0x7d, 0x58,0xd9,0xb6,0xc,0x8e,0x55,0x1,0xec,0x7c,0xfd,0xf,0x11,0xae,0x1c,0x85,0x1d, 0x36,0x2c,0xac,0xff,0x0,0xda,0xeb,0x3e,0x80,0x4a,0xcf,0xa1,0xc5,0x8b,0x55,0xe2, 0x79,0x13,0x74,0xdd,0xfa,0x27,0x6e,0x40,0xff,0xd8,0xf5,0xf0,0x87,0xb6,0x48,0x38, 0xb0,0xa3,0xfe,0x43,0x68,0x6f,0x78,0x8f,0xe4,0x63,0xb8,0x9c,0xbb,0xf8,0x3a,0x94, 0xdd,0x27,0x3c,0x2b,0x66,0x24,0x70,0x1b,0x7a,0xc7,0x7e,0x8b,0x60,0x74,0xab,0xc, 0xe9,0xd2,0x9c,0xee,0x99,0xf0,0x38,0x3a,0xa7,0x1d,0xfb,0x4c,0x7,0x5f,0x6a,0xac, 0xb,0x16,0x4e,0x3c,0x43,0xb,0x9e,0x10,0xb1,0x4c,0x76,0xf2,0x1c,0x8a,0xb2,0x89, 0x33,0xd6,0xaa,0xd5,0x34,0xa5,0x7,0xb0,0xec,0xb,0x6f,0xf4,0x77,0xbb,0xb5,0x4a, 0x8e,0xaf,0x10,0xa2,0x52,0x4b,0xee,0xe5,0x69,0x60,0xc6,0x82,0x96,0xac,0xfc,0x9b, 0xca,0x4e,0xea,0x21,0xbf,0x15,0xf4,0x9d,0xb0,0x15,0xef,0x7e,0x55,0x57,0x4f,0x2e, 0x9,0xbf,0xe5,0x8,0xb4,0xa6,0x22,0x9b,0x30,0x3e,0x75,0x9f,0x36,0xda,0xa1,0xee, 0x82,0x92,0xd1,0xbd,0xfa,0xe7,0x50,0x68,0x4e,0xd4,0x98,0xd9,0x78,0xf0,0x1,0x6c, 0xeb,0xb9,0x8c,0xce,0x63,0x52,0xbe,0x63,0xdc,0x64,0x5a,0x7e,0xd,0x80,0x79,0x38, 0xb4,0xec,0x1,0x1d,0x50,0x22,0x86,0x8b,0x9f,0x57,0xa0,0xa2,0x96,0xc9,0x3f,0xb0, 0x32,0xec,0xe3,0x7b,0xde,0x21,0x14,0xdc,0x6a,0xb6,0xa,0x7d,0xcf,0x64,0x55,0x9, 0x39,0xac,0x5e,0x74,0x85,0x38,0x8c,0xfc,0x6a,0x32,0x5f,0xd,0xf3,0x9f,0x4a,0x92, 0xbe,0xf8,0x90,0x18,0x4a,0x92,0x9c,0x38,0x60,0x27,0x7c,0x3a,0x14,0x85,0x7f,0xe7, 0x0,0xf6,0xdd,0xba,0x9,0xfb,0x6e,0xd8,0x88,0xa4,0x3f,0xc,0x2b,0x4f,0x55,0xcc, 0xcd,0xd1,0x9b,0x47,0x2f,0xa0,0x92,0xcf,0xcb,0x54,0x1c,0xb1,0xc6,0x5a,0x5b,0x69, 0x2,0x4e,0x37,0x7c,0x68,0x3b,0xd9,0x7,0x5c,0x7a,0xf,0x26,0x2b,0x1f,0x25,0x4f, 0xaa,0x85,0x3,0x7d,0xce,0x65,0xa2,0x3e,0xdd,0x5a,0xf3,0x6e,0xe9,0x78,0x2f,0x44, 0xb7,0x4a,0x6,0xa5,0x45,0xe2,0xfb,0x30,0x34,0xf9,0x67,0xec,0x1f,0xfd,0x1d,0xfc, 0x81,0x3d,0xa8,0x70,0xd5,0x10,0x18,0x5d,0x88,0x5,0xf5,0xef,0x92,0xb0,0x58,0x19, 0x82,0xe7,0x3f,0x6,0x93,0x52,0x60,0xc8,0x7e,0x72,0xa6,0x3,0xb4,0x32,0xf,0xc6, 0x8,0x98,0x14,0x7,0xea,0xe9,0x3e,0xe3,0x7e,0x16,0x9e,0x1a,0x59,0x0,0xa6,0x69, 0xf7,0xaa,0x56,0x66,0xab,0xbe,0xc8,0x3c,0xc2,0xec,0x6c,0xa1,0x14,0x4c,0xc2,0x89, 0x7d,0x74,0xdd,0x88,0xa9,0x2b,0x4e,0x19,0x69,0x9d,0x7,0x86,0x2,0x93,0xca,0x83, 0x51,0xc9,0xfd,0xcf,0xaa,0xd8,0x23,0x81,0x7f,0x89,0xc4,0x3f,0x37,0x7c,0x36,0x54, 0x9d,0x96,0x3f,0xf2,0x7c,0xd6,0xe,0x28,0x69,0x98,0x65,0x89,0x95,0xbd,0xc3,0x57, 0x61,0xef,0xd0,0x15,0x4,0xae,0x87,0xe2,0xd0,0x8e,0xab,0xa4,0xdc,0xba,0x74,0x3f, 0xc5,0x71,0xd8,0xf3,0xaa,0xca,0xeb,0x36,0xda,0xce,0x83,0x31,0x53,0x7e,0x9e,0x32, 0x95,0xc2,0x2a,0x34,0x27,0xa5,0xc3,0xcf,0xf4,0x7f,0x1b,0xa2,0x12,0x4f,0xdf,0xbb, 0x34,0x79,0x97,0x5,0x35,0x6f,0xc7,0x21,0x6d,0xdf,0x95,0x72,0xd2,0xb2,0x31,0xa7, 0xf9,0x2f,0xcb,0x9c,0xa8,0x3c,0x51,0xcb,0x42,0x39,0x79,0x7f,0x90,0x8e,0xa5,0x30, 0xf0,0xc0,0x76,0x24,0x86,0x83,0x30,0x59,0x2d,0x48,0x10,0x80,0xf8,0xb7,0xed,0xc7, 0xc8,0x23,0x5d,0x8,0xf6,0x4e,0xc0,0x62,0x32,0xc3,0xe2,0xd1,0xbb,0xd4,0x4b,0x57, 0xb4,0x73,0x89,0x91,0x15,0x56,0xe1,0xfa,0x27,0x96,0xcb,0x69,0xa2,0x9f,0xb2,0x82, 0x37,0x21,0x3a,0x16,0x42,0xfd,0x61,0x9d,0x38,0xf6,0xd7,0xa7,0x22,0xdc,0x74,0x7, 0x7a,0xfa,0xaf,0x41,0x3c,0x35,0x21,0xc5,0x18,0x3c,0x21,0xb3,0xc6,0x7b,0x22,0x3a, 0x9b,0x3f,0x83,0xa6,0xaa,0xb3,0x66,0x19,0x69,0xab,0xe8,0xce,0xf4,0x29,0x74,0x8f, 0x5e,0x47,0xdb,0xef,0x10,0x4d,0xfa,0xe1,0x73,0x35,0xa2,0xb3,0xfe,0x23,0x4,0x2e, 0xd3,0xc6,0x42,0xeb,0xa0,0x34,0x5d,0x40,0x24,0x1a,0xa7,0x6b,0x1e,0xb8,0x9d,0x40, 0xe6,0x7e,0xc9,0x9d,0x70,0x42,0x9f,0x93,0xfd,0x2c,0xc3,0x5f,0xe1,0x5a,0x3e,0xeb, 0xc2,0x45,0xcd,0xb3,0x98,0xc2,0xe9,0x29,0xcf,0xba,0x70,0x2a,0x57,0x71,0xc8,0xf7, 0x9a,0x94,0x12,0x8,0xe,0xf1,0x86,0xa5,0x52,0x30,0x9d,0x8e,0x8b,0x68,0x26,0x6b, 0x9b,0x39,0xca,0x6,0xc7,0x95,0xe4,0x4e,0x4a,0x40,0x2d,0x93,0x89,0x60,0x68,0xea, 0x6f,0xc4,0x50,0xb6,0x4a,0x4e,0xae,0xa9,0xea,0xc,0x69,0x4,0x56,0xcb,0x5e,0xa6, 0x96,0x55,0x45,0x6,0xa3,0x3b,0xb0,0xab,0xef,0x73,0x18,0x23,0x60,0x5d,0xdc,0xf4, 0x71,0xa9,0xee,0xe2,0x30,0x9e,0xa6,0x8d,0x87,0x59,0x6a,0xd5,0xd5,0x59,0x8f,0x7b, 0xe,0xda,0x8d,0xb4,0xfd,0x17,0x64,0xf9,0x62,0xd8,0x1c,0x7,0x95,0xd9,0x92,0x89, 0xc5,0xdf,0x59,0x6e,0xe3,0xb1,0xbd,0xe7,0x22,0x95,0x1a,0xd3,0x93,0xb3,0xc0,0xf2, 0x96,0x2f,0x61,0x71,0xf3,0x27,0xa4,0x84,0xb4,0xc4,0x1d,0x97,0x85,0x56,0xe6,0x4e, 0xcc,0x37,0x3b,0xed,0xb,0xa9,0x20,0x3a,0x32,0x89,0xbb,0x2e,0xbe,0x12,0xc3,0xf7, 0xed,0x80,0xc3,0x57,0x89,0x64,0x34,0xe,0x25,0xab,0x4a,0x35,0x8f,0xc9,0x69,0x16, 0xe9,0x93,0x9c,0xaa,0xf,0x33,0xce,0x2b,0x6b,0xcc,0x35,0x50,0x29,0x5,0x7d,0x35, 0x5b,0xac,0x50,0xd2,0xe5,0xd3,0x13,0x13,0x61,0xd4,0xac,0x5b,0x84,0x33,0xff,0xf8, 0x39,0xf8,0x96,0x54,0xd0,0x7d,0xf0,0x28,0x7a,0xfd,0xbf,0xc1,0x90,0xff,0x4f,0x48, 0xa4,0x62,0x72,0xc5,0x1c,0xf6,0x3a,0x54,0x7a,0x8e,0x47,0x47,0xfd,0x45,0x68,0xac, 0x79,0x53,0x41,0x32,0xa6,0x3c,0x91,0xcd,0xc2,0x93,0x4f,0x62,0x2c,0x70,0x3f,0xfa, 0xc6,0x7e,0x8b,0xc9,0xe8,0x2e,0x29,0xe7,0x6e,0xac,0x3c,0x1a,0xad,0xb5,0x17,0x97, 0xc,0xfb,0x42,0x89,0xe,0x5c,0xb9,0x93,0xe4,0x70,0x56,0x30,0xbe,0x4d,0x34,0xe5, 0xa2,0xf1,0x2e,0x44,0x13,0xdd,0xf4,0xa9,0x25,0xe0,0xb6,0x2f,0x84,0xd7,0xb9,0x4e, 0x4a,0x8f,0x5d,0xf6,0x45,0xd2,0x45,0xff,0xfc,0xee,0x75,0x1c,0xb0,0x1f,0x49,0xc0, 0x20,0x1b,0x91,0x50,0x1e,0x17,0x2,0x70,0xaf,0x8c,0x93,0xc0,0xcc,0x61,0x6d,0x24, 0x30,0xf5,0xc1,0xe5,0x5c,0xf8,0x1c,0xdf,0x1d,0x3e,0xde,0x49,0xf4,0xfb,0x6f,0x94, 0x26,0x4e,0x9f,0x7b,0x9d,0x5e,0x1a,0xbd,0xae,0xec,0x3c,0xa7,0x97,0xd7,0xa7,0xd2, 0x41,0x62,0x26,0x97,0xa3,0x77,0xfc,0x46,0xf8,0x3c,0xab,0xb1,0xac,0xe9,0xd3,0x52, 0x41,0x59,0xbc,0x8e,0x25,0x2,0x92,0x72,0xe0,0xf9,0xfb,0x76,0x5e,0x30,0x94,0x5f, 0xd2,0xf6,0x11,0xe4,0xe7,0x6b,0x1b,0x36,0x77,0x41,0xa5,0x10,0xf6,0xd1,0xcb,0x2f, 0x35,0xc9,0xd,0x53,0xe1,0x86,0xe7,0x24,0xe1,0x93,0xfb,0xde,0x87,0x91,0xa9,0x3b, 0xc0,0xea,0x23,0x2a,0xac,0x4,0x28,0x5f,0xa5,0xd5,0xd3,0x67,0xa6,0xcd,0x3d,0x99, 0xcb,0x36,0x13,0xfc,0xa2,0xa3,0x53,0xf8,0xd7,0x7b,0x7e,0x8a,0xfe,0xd,0x4f,0xc1, 0x55,0xa5,0x95,0x78,0xb2,0xdc,0xbc,0xa2,0x0,0x7,0x18,0xe8,0x38,0x6f,0x4c,0xd5, 0x1b,0xf6,0x12,0x13,0x11,0xd4,0x1e,0xda,0x86,0xd3,0x6f,0xb8,0x4,0x55,0x4b,0x5b, 0xa,0xce,0xd6,0x1f,0xda,0x48,0xcc,0xe3,0x67,0x18,0x9d,0xfa,0x27,0x32,0x3c,0x91, 0x92,0x1e,0x17,0xed,0xaf,0xaa,0x33,0x69,0x65,0x7d,0x59,0x21,0xdf,0x32,0x9b,0xca, 0x74,0x3c,0xd9,0x4f,0x4e,0xf3,0x7a,0x51,0x2a,0x9e,0x88,0xec,0x14,0xb5,0xdd,0x5, 0xd5,0x6f,0x40,0x5b,0xfd,0xc5,0xe4,0x40,0x4f,0xd4,0xa5,0x7d,0x4a,0x59,0xc3,0xcc, 0x7c,0x1,0xcb,0xb2,0x70,0xdf,0xa,0x83,0x4b,0x30,0xb6,0x1d,0xe1,0xe4,0x1e,0x62, 0x4f,0x71,0x91,0x7c,0xe1,0xc4,0xbe,0x9b,0x0,0xc0,0x43,0x2c,0xc6,0xe3,0x58,0x2c, 0x22,0x95,0xcf,0x2b,0xe8,0x95,0xcb,0xc8,0x28,0xe4,0x8,0x6d,0xd9,0x5c,0x92,0x8e, 0x21,0x21,0x73,0x4b,0x5c,0x36,0x7e,0xaf,0x76,0x79,0xdf,0xd2,0xa2,0x81,0xf2,0xd0, 0xa9,0x22,0xdd,0xf3,0x79,0x10,0x64,0xc9,0xf9,0xb1,0xc9,0xbb,0x8,0x70,0xdb,0xd0, 0x54,0x7b,0x36,0xaa,0x5c,0x47,0x94,0x68,0x92,0x15,0xab,0xee,0x4a,0x5f,0x33,0x32, 0x75,0x27,0x76,0xf4,0x7e,0x99,0x98,0xe0,0x7e,0x74,0x34,0x7c,0x14,0x4b,0x5a,0x3e, 0x59,0xb2,0xbf,0x3,0x2d,0xce,0xe6,0x4d,0xa2,0xfe,0xcb,0xb4,0x7d,0xcb,0x70,0xe7, 0xf3,0x88,0xa9,0x14,0x46,0xe7,0xaa,0x45,0xd1,0x39,0x4d,0x9e,0x29,0x87,0xdd,0x3, 0xdf,0xc6,0xae,0xfe,0xaf,0xd2,0xa,0x9d,0xb5,0x94,0xbc,0x58,0xb5,0xf0,0xff,0xa1, 0xbd,0xf1,0xfd,0xd3,0x4a,0x35,0xe7,0x5f,0x15,0x4a,0x74,0x34,0x80,0xbb,0x2f,0xbe, 0xa,0xfd,0x77,0x6e,0x83,0xab,0xde,0xa7,0x25,0x13,0x5e,0x23,0x36,0x3,0x54,0xae, 0x27,0x50,0x59,0xd6,0x52,0xf6,0x9c,0x74,0x26,0x80,0xa1,0xc9,0x5b,0xb1,0x7b,0xf8, 0xdb,0x8,0xc7,0x76,0x6b,0xae,0x51,0x94,0x89,0x97,0xa2,0xa5,0xf6,0x42,0x2c,0xaa, 0xff,0x10,0xad,0xee,0x9b,0xca,0x42,0x3c,0x45,0x86,0xa0,0xcd,0x9e,0x1f,0x25,0x47, 0xda,0x3d,0xf6,0x2b,0x4c,0x84,0x9f,0x24,0xe7,0x5f,0x83,0x7a,0xef,0xb1,0x68,0xad, 0x7e,0x17,0x9a,0x6a,0xde,0xa2,0xcf,0xa2,0x2f,0xbd,0x47,0x73,0xd3,0x44,0x47,0xf3, 0x60,0x90,0x24,0x60,0xb,0x23,0x91,0x1c,0x23,0x50,0xd8,0x4d,0x1b,0x97,0x18,0x8f, 0x21,0xab,0x86,0x9,0x68,0x62,0x1a,0x40,0xd0,0xbe,0x6d,0x96,0x1a,0x51,0x78,0xb0, 0x70,0xd5,0x94,0xde,0x33,0xa5,0xe6,0xd2,0xc8,0xa8,0x69,0xb9,0x97,0xcd,0xe6,0x4a, 0xd8,0x2d,0xdc,0x50,0xe9,0xa5,0xfb,0xdc,0x85,0xa,0xc7,0x22,0x2,0xca,0x5a,0xf9, 0xbd,0x98,0xc3,0x51,0xcb,0x2a,0x21,0xa7,0xb3,0x1e,0x66,0xf4,0xbd,0xa3,0xbf,0xa1, 0xc5,0x97,0xd,0xcd,0x35,0x17,0xa,0x3b,0xb1,0x16,0x24,0xfd,0xd5,0x69,0xb,0xb9, 0x7c,0x25,0x98,0x1f,0x7b,0x86,0xae,0xc0,0xfe,0xa1,0x5f,0x10,0xa3,0x59,0x81,0x43, 0xda,0x2e,0x47,0x8d,0xf7,0x78,0xa9,0x50,0x9b,0x1f,0xb,0xb6,0x67,0x35,0xe,0x73, 0x7d,0x88,0xb6,0x6b,0xd,0x57,0x3e,0x2f,0x41,0x5,0x33,0x80,0x61,0x22,0xf4,0x20, 0x1e,0xdd,0x7d,0x2e,0x7d,0x51,0xc7,0x69,0xd5,0xd7,0x40,0x80,0xf2,0x7d,0x2c,0xac, 0x7f,0x67,0xc9,0x8d,0x9e,0xcb,0xc7,0x50,0x5e,0x19,0x4d,0x12,0x3,0x54,0xfe,0xa3, 0x4c,0xa5,0xd0,0xf1,0x5e,0x90,0xb,0x50,0x89,0x31,0xc,0x13,0x30,0xfc,0x12,0xfd, 0xfe,0xdf,0x20,0x9e,0x18,0xa4,0xcb,0xa4,0xca,0x74,0xca,0xa,0xd7,0x2a,0x74,0xd4, 0x7f,0x1c,0xb,0x6a,0xdf,0x1,0xab,0xb5,0xe2,0x0,0xb,0x6c,0x55,0x42,0x3e,0xc3, 0x93,0xb7,0xa0,0x6b,0xe4,0xc7,0x8,0x44,0x77,0xc9,0x7d,0x54,0xe3,0x39,0x4c,0x56, 0xeb,0x75,0x95,0x27,0xcb,0xd0,0x2e,0x53,0x61,0xa2,0x64,0x99,0x57,0x9e,0x75,0xe5, 0xce,0x80,0xc5,0xac,0x83,0xe7,0xaf,0x64,0xb2,0xda,0x64,0xc8,0xb4,0xcc,0xb9,0xf, 0xd1,0xb1,0xc5,0xb9,0x78,0x5a,0x97,0x6e,0xf1,0xc8,0x50,0x38,0xab,0x49,0x6b,0xb8, 0x64,0xf0,0xe0,0xde,0x12,0x4e,0xbe,0x63,0x46,0x27,0xbe,0x1e,0xac,0x9a,0xad,0xa4, 0x99,0xde,0x9f,0xa7,0x9a,0xf6,0x8d,0x5d,0x47,0x0,0x31,0x4a,0xe7,0xfb,0x4e,0x34, 0xd6,0x9c,0x25,0x52,0xfd,0xc5,0x53,0xd5,0x4b,0x8b,0x4b,0xf2,0x45,0x39,0x62,0x5b, 0x83,0x74,0xde,0x4f,0xf7,0xfd,0xaf,0xcc,0x3f,0xe1,0x50,0x57,0x67,0xf3,0xa7,0xe8, 0x5a,0x79,0x4b,0xf6,0x38,0xaf,0x1,0x85,0x2b,0xbb,0x38,0x21,0x7f,0xa7,0xe1,0xc6, 0xe7,0x69,0xf8,0xab,0x54,0x2,0x42,0x1c,0x4a,0x62,0x8,0x4f,0x74,0x5d,0x8c,0x41, 0xff,0x6,0x5a,0x41,0xb5,0x62,0x4d,0xdb,0xf,0x69,0x5,0xfa,0xf6,0x59,0x8,0x49, 0x6e,0xbe,0xd,0xfe,0x31,0x40,0xe5,0x39,0x99,0x4a,0xe9,0xb5,0xd0,0x93,0xcb,0x91, 0x5d,0xe8,0xf3,0x5f,0x23,0xe3,0x6b,0xa5,0x3a,0x8a,0x73,0x34,0xf4,0x27,0xee,0x51, 0x59,0x58,0xf7,0xdf,0xa2,0x63,0xc5,0x9,0x6a,0xad,0xcb,0xbb,0x98,0x4c,0xcf,0xdf, 0x37,0xd9,0x6c,0x52,0x98,0xcb,0x58,0xe8,0x76,0x4c,0x44,0x1e,0x47,0x20,0xb2,0x47, 0x16,0x32,0x8d,0xd5,0x6f,0x47,0xad,0xe7,0x58,0x54,0x57,0x1c,0x2e,0x55,0x56,0x3c, 0xb3,0x7e,0xe6,0x82,0x48,0x29,0x1,0x15,0xe5,0x45,0xad,0x6f,0x8a,0xdf,0x87,0xe9, 0xd5,0x55,0xe5,0x8d,0x8b,0xf1,0x64,0x1f,0x31,0xac,0x87,0x9,0x50,0x9e,0x20,0x30, 0x19,0x24,0x76,0x71,0x2,0x1,0xca,0x45,0xc4,0x76,0x7c,0xb3,0x7c,0x2f,0x8a,0xaf, 0xe7,0x66,0xd1,0x9,0x62,0x34,0x5d,0x23,0x3f,0xc3,0x78,0xf0,0x3e,0xd4,0x56,0xbc, 0xe,0x8b,0x9b,0x2f,0x45,0x7d,0xe5,0xeb,0xcb,0x20,0xc,0xcf,0x25,0x42,0x39,0xb7, 0x8d,0x9b,0x19,0xdf,0x42,0xdb,0xe3,0x86,0xb,0x7f,0xf5,0x99,0xe5,0xc5,0xbe,0x41, 0x51,0xc6,0xa2,0x58,0x6,0xcc,0x2b,0xbd,0xae,0x91,0x5f,0xa2,0x6f,0x62,0x3,0xaa, 0x3d,0x8b,0x70,0x28,0xf7,0xa0,0xd4,0x9c,0x55,0xf0,0x27,0xd3,0xb,0x50,0xe6,0x39, 0x45,0x37,0xc,0x33,0x89,0x86,0x26,0x6f,0xa6,0xcd,0x1,0xe1,0x9f,0x3e,0xcf,0x4a, 0xac,0xf6,0x5c,0x81,0xb6,0xba,0xf,0xa0,0x6f,0xfc,0xf7,0x18,0xa,0xdc,0x88,0x58, 0xb2,0xb,0x23,0x53,0xf7,0x11,0x13,0xb9,0xf,0x35,0x4,0xa,0x6d,0xd,0x17,0xa3, 0xb1,0xea,0x6c,0x19,0x85,0x3b,0xbd,0x6c,0x9b,0x9b,0x4a,0x9b,0x6b,0xdf,0x22,0x5b, 0x3c,0x31,0x40,0xe,0xf7,0x6e,0xc,0x4d,0xdd,0x82,0x9e,0x91,0xeb,0xb1,0x37,0xfb, 0x3,0x54,0xba,0x56,0xa0,0xb6,0xf2,0x14,0x7a,0xfd,0x1b,0xe1,0x75,0x2e,0x87,0xc3, 0xd6,0x2c,0x61,0xab,0xf2,0x7b,0x2f,0xaf,0xbf,0x95,0xd5,0xe5,0x81,0xf4,0x7b,0xba, 0x2c,0x64,0x96,0xcf,0x69,0xa8,0x25,0xd2,0x2a,0xf9,0xc7,0xd5,0x12,0x10,0x30,0xcd, 0x18,0xfe,0xc5,0xd2,0xfa,0x11,0x2,0x4c,0x56,0x10,0xf0,0x87,0xee,0x97,0x7a,0xec, 0xd6,0xda,0x77,0x63,0x6d,0xfb,0xf,0x4b,0x98,0x4d,0x4e,0x4f,0xc1,0x9b,0xca,0xc6, 0x6e,0xf3,0x31,0xf1,0x18,0xe0,0xfd,0xc3,0x57,0x61,0x60,0xf2,0x46,0x2,0xcc,0xe5, 0x38,0x62,0xf1,0x75,0x4,0x9a,0x6f,0x2a,0xfb,0x2e,0x69,0xc7,0x95,0x2b,0x2b,0x47, 0x9e,0x67,0xb6,0xf,0xda,0x2c,0x94,0x6e,0xe3,0x9b,0x34,0x6f,0xc3,0x5f,0xa5,0x5f, 0x32,0xed,0xb,0xc0,0x25,0x8d,0xf7,0x6e,0x3f,0x9a,0x56,0x86,0x8d,0x38,0xbc,0xe3, 0x17,0xa8,0xaf,0x3a,0xb5,0x4,0x4d,0xf2,0x5f,0xb2,0x62,0xd5,0x8b,0x3a,0xf,0x57, 0x55,0x7,0x62,0x2a,0x2c,0xe9,0x9f,0x53,0x8a,0x1a,0x61,0xe5,0xd2,0x27,0xc5,0x55, 0xbc,0x4c,0xbc,0x2c,0xe9,0x1f,0x28,0x56,0xfb,0x68,0x8e,0x2b,0x5f,0x39,0xa6,0x5d, 0xc2,0xd2,0xeb,0x99,0x9b,0x36,0x99,0x2f,0x5f,0x5,0xa5,0x96,0x84,0x44,0x8a,0x53, 0x2c,0x9f,0xf3,0x6,0x29,0xd9,0x33,0xa6,0x7,0x56,0xca,0x16,0xe0,0xc5,0x93,0x28, 0x65,0x2a,0x75,0xc4,0x54,0x4e,0xbb,0x8e,0x98,0xca,0xf2,0x16,0xed,0xb5,0xb9,0xd2, 0x9,0x9d,0xc0,0x6c,0x7a,0x56,0x6c,0x2c,0xa3,0xd2,0x33,0x76,0x2d,0x1,0xc3,0x5f, 0x11,0x8d,0xed,0x43,0x3a,0xc7,0xc0,0x1,0x51,0x77,0xee,0x6c,0xf8,0x1f,0xd1,0xe, 0x73,0x39,0x16,0x3e,0xb,0xeb,0xc8,0x27,0xcf,0xf7,0x8,0xb8,0xc,0xf8,0xff,0x49, 0xe,0x7d,0x17,0x3d,0x16,0x24,0xc6,0xd3,0x46,0xe0,0x72,0x16,0xb1,0x9f,0x93,0x51, 0xe1,0x58,0x22,0x55,0x5f,0xda,0x40,0xaa,0xe7,0x77,0xaf,0x6b,0x37,0xec,0xf3,0x2b, 0xc1,0xe5,0xa2,0x0,0x9e,0x10,0x1a,0x8a,0xef,0x84,0x3f,0x70,0xf,0xfd,0xdc,0x25, 0xda,0x67,0x2c,0x8e,0xd9,0x5a,0x73,0x41,0x49,0xee,0x67,0x5a,0x15,0x58,0xc9,0xb5, 0x8d,0xc4,0x9f,0x41,0xf7,0xc8,0xaf,0xd0,0x3d,0x76,0x35,0xed,0xda,0x8e,0x45,0x8d, 0x1f,0xc0,0x8a,0xd6,0x2f,0x17,0x8f,0x79,0xda,0xc8,0xe5,0x69,0x31,0xc2,0xf9,0x64, 0xcc,0x4c,0x58,0x76,0xc5,0xe8,0x92,0x9f,0xcf,0x4c,0x5,0x33,0x6,0x9,0x1,0xfb, 0x47,0xaf,0x92,0x31,0xb0,0x87,0x2f,0xfe,0x35,0x7d,0xf9,0x4f,0x2a,0xde,0xe4,0x65, 0xde,0x44,0x29,0x5b,0x1d,0xce,0xbf,0xe5,0xb8,0x5a,0xe6,0x8e,0xd5,0xd2,0x66,0x36, 0x45,0x8f,0x8f,0x4b,0xf1,0x8e,0xae,0x69,0xa5,0xea,0x33,0x54,0xf4,0x4a,0xba,0x52, 0x30,0x90,0x49,0x23,0x8a,0x3e,0x4f,0x5e,0x74,0x9d,0x74,0x27,0x92,0x2b,0x71,0x40, 0xa6,0x92,0xbd,0x69,0x8a,0x94,0x2,0x5e,0xa6,0x9c,0xa6,0x2c,0xcc,0xf,0xa9,0xa6, 0x3c,0xdc,0xa8,0x7a,0xd3,0xa2,0x7e,0x4c,0x5,0x3c,0xd0,0x4b,0x4c,0x75,0xcc,0x31, 0x71,0xa4,0x29,0xa7,0xc9,0xf5,0xe7,0x27,0x44,0x72,0xd2,0x5a,0xcd,0x99,0xf4,0x21, 0x6b,0x5a,0x2,0x3c,0x5f,0x5,0xcc,0x80,0xc9,0xcf,0x95,0x7b,0x21,0x93,0x45,0x2a, 0x1b,0x47,0x36,0x9b,0xd1,0xce,0x11,0x85,0x31,0x67,0x85,0x29,0x85,0x45,0x99,0x44, 0xa5,0xc4,0x2f,0x6a,0x15,0x4d,0xdc,0x43,0xb2,0xba,0xfd,0x3b,0xb4,0x92,0x3f,0xf, 0x3,0xc4,0x5c,0x86,0x3,0xff,0xa0,0xc5,0x4a,0x37,0x46,0x26,0x9f,0x10,0x65,0x86, 0x7a,0xdf,0xf1,0x68,0xa9,0x3e,0x17,0xd,0xd5,0x67,0xd1,0xaa,0x7d,0x49,0x19,0xe3, 0xcd,0xbb,0x53,0xae,0x98,0xaa,0x70,0xad,0xc4,0x32,0xda,0x16,0x37,0x7d,0x4a,0xc2, 0x46,0xfe,0xd0,0x83,0x98,0x8c,0x3c,0x82,0x3e,0xff,0xf5,0xe8,0x1a,0xfd,0x19,0x5c, 0x96,0x16,0x78,0x9c,0xab,0xe0,0x73,0x1e,0x2,0xaf,0x87,0x2b,0xbe,0x56,0xc8,0xc, 0x17,0xbb,0xad,0x96,0x5e,0xef,0x9c,0xe6,0x96,0x4b,0xf3,0x7f,0xb3,0x4c,0xf6,0x54, 0x59,0x21,0x62,0xa,0xc9,0xd4,0x30,0x81,0xd9,0x3e,0x2,0xb1,0x3d,0x8,0xc6,0x76, 0x48,0x45,0x18,0x97,0x5c,0xfb,0x9c,0xeb,0xb0,0xac,0xf9,0xb,0x68,0x22,0x76,0x51, 0x2e,0x2f,0x3f,0xb3,0xc,0x9f,0x7f,0xc4,0x53,0x83,0x4,0x86,0x7f,0xc1,0xde,0xa1, 0x1f,0x4a,0xb8,0x8c,0xc5,0x22,0xf9,0x3c,0x6a,0xbd,0xaf,0x2b,0x7,0xf,0xe5,0xc0, 0xd3,0x7b,0xe6,0x91,0xdd,0x4a,0xdb,0x5,0x30,0x9a,0x1a,0x5f,0x3b,0x4c,0x25,0xff, 0x63,0x74,0x72,0x3,0xb6,0xf6,0x5e,0x82,0x35,0x6d,0x3f,0x10,0x49,0x88,0xa2,0x6e, 0xd1,0xb3,0xcb,0x62,0xcc,0x37,0xe3,0x92,0xe2,0xd,0xef,0xfd,0x19,0x6,0xee,0x20, 0xa6,0x52,0x57,0x29,0xa1,0x8e,0x9c,0xde,0xa4,0xc6,0x9a,0x60,0x5a,0x7d,0x42,0x4e, 0x7e,0x2f,0x4b,0xc3,0xea,0x62,0x80,0xfc,0xb7,0x9c,0xaa,0xcd,0x68,0x51,0xf2,0xd5, 0x74,0x85,0xf,0xad,0x58,0x10,0xc5,0xef,0x69,0xd2,0xe5,0x3c,0x18,0x63,0x4c,0x8a, 0xa2,0xe3,0x4d,0xbe,0x89,0x2e,0x27,0x4e,0xdc,0xa4,0xea,0x8c,0x20,0xdf,0xf9,0xae, 0x9a,0x4a,0x5c,0x8f,0x2a,0xa3,0x8e,0x4d,0x2,0x36,0xfa,0x23,0xf9,0x86,0x3a,0x55, 0x13,0xfc,0xd4,0x6,0x76,0xea,0x20,0xa0,0xbf,0xb5,0xc8,0xef,0xa8,0x4a,0x21,0x9c, 0x99,0xcb,0xcb,0xb7,0xa7,0xd2,0xd2,0xe0,0xe8,0x68,0xf2,0xa0,0xa2,0xad,0x1e,0x27, 0xfc,0xf8,0x22,0xd4,0xac,0x5c,0x88,0x42,0xcf,0xbd,0xaa,0xf,0xe4,0x52,0x4c,0x3a, 0x13,0x2a,0x16,0x77,0x95,0x9e,0x63,0xa9,0xb3,0xe4,0x64,0xf6,0xc8,0xe4,0x3f,0x31, 0x16,0xbc,0x1f,0x81,0xd8,0x23,0x88,0x25,0xb2,0xb0,0x59,0x81,0x4a,0xf7,0x61,0x58, 0x40,0xe0,0x52,0x57,0x79,0x92,0x0,0x48,0x31,0xc1,0xad,0x77,0x9a,0xcf,0x92,0x23, 0x49,0x67,0x22,0x8,0xc5,0xb6,0x21,0x4a,0xc,0x62,0x22,0xfa,0x8,0x82,0x91,0xed, 0x4,0x4,0x63,0x30,0x4b,0xcd,0xbb,0x4d,0xc0,0xc8,0xcc,0x33,0xef,0xed,0xb,0x8, 0x60,0x5a,0x68,0x3f,0x4d,0x22,0xc1,0xc2,0xc,0x83,0x25,0x55,0xb4,0xab,0xa6,0x4d, 0x8c,0x4c,0x67,0x23,0xd2,0xe5,0xce,0x7a,0x5c,0x99,0x4c,0x88,0x80,0x74,0x4a,0xf2, 0x1e,0x3c,0xa2,0x38,0x9b,0x4b,0xc9,0x28,0x64,0x56,0x8d,0xe0,0x5e,0x13,0x8f,0x3e, 0x13,0x68,0x5a,0x20,0xb0,0xa4,0x9b,0x5f,0x33,0xee,0x9e,0xe7,0xf0,0xd8,0x9e,0xe1, 0x5f,0xd0,0x31,0x6e,0x23,0x10,0x39,0xd,0x9d,0xc4,0x4e,0x9a,0xab,0xdf,0xaa,0x2b, 0xa,0xcf,0x7c,0xfd,0x3c,0xf,0x21,0x5f,0x49,0xdb,0x27,0x60,0xf4,0xa0,0xbc,0x56, 0x40,0xa5,0x18,0x76,0x48,0xa4,0x87,0xb1,0xa5,0xeb,0x12,0xa2,0xf5,0xe7,0x63,0x41, 0xdd,0x3b,0x4a,0x6e,0xfc,0xfc,0x66,0x7e,0xcd,0x5c,0x58,0x6,0x95,0xbb,0xdf,0x7b, 0x15,0x81,0xca,0x76,0xd8,0x6b,0x2a,0x68,0xe5,0xce,0xf1,0x1b,0x45,0x64,0xe3,0x35, 0x99,0xff,0x9c,0xc8,0xb0,0xab,0x8a,0x55,0x26,0x3d,0x32,0xe8,0xf2,0x27,0x91,0xe5, 0x6,0x49,0xee,0x4c,0x37,0xb3,0xb6,0x94,0x49,0x98,0x80,0x9a,0xe5,0x7f,0x33,0xe, 0x10,0x7c,0xa8,0xda,0x7c,0x7b,0x96,0x42,0xe1,0x9,0x8c,0x3a,0xfe,0x88,0xee,0x15, 0xbf,0xb7,0xbc,0x79,0x56,0x15,0xa7,0xcd,0x2a,0xb7,0xcc,0x56,0x34,0x49,0x28,0xda, 0xb7,0x59,0x3,0x8d,0x9c,0xb0,0x10,0xa5,0x28,0x6d,0x9f,0xcd,0x22,0x67,0x35,0xd3, 0x7b,0x5b,0x34,0xf0,0xcb,0x65,0x68,0x5f,0xfa,0xb1,0xaa,0x5a,0x47,0xb8,0x8c,0x51, 0x36,0x6b,0x8b,0x2,0x39,0x76,0xdd,0xe7,0xab,0x59,0x45,0xef,0x64,0xd7,0x59,0x27, 0x1d,0x97,0x89,0xde,0x6b,0xd5,0xc7,0xdf,0x0,0x5f,0x7b,0xd,0xf6,0xfe,0xf5,0x31, 0x1c,0xf1,0xc5,0xb7,0xa3,0xf1,0xf0,0xce,0x17,0x58,0xe2,0xaa,0xea,0x93,0x34,0x95, 0x62,0x28,0x8f,0xfe,0x19,0x4b,0xf5,0xc9,0x10,0xaa,0xe1,0x89,0x7f,0x62,0x24,0x70, 0x2b,0xa2,0xc9,0x18,0xec,0x74,0xd8,0x76,0x5b,0x3b,0xaa,0x3c,0x2b,0xd1,0xe0,0x3b, 0x8d,0x9c,0xef,0x3b,0xe0,0x9c,0xa6,0x72,0x5d,0x14,0x37,0x2d,0x7,0x19,0xd6,0xd3, 0x62,0x76,0xc1,0xfd,0x33,0x3c,0x92,0x21,0x1c,0xdb,0x8b,0x78,0xba,0x4b,0xb4,0xdb, 0x58,0x97,0x2b,0x9b,0xe3,0xa,0xb0,0x4,0x9d,0x73,0x4a,0x64,0xe6,0x55,0x5d,0x93, 0x8b,0x45,0x26,0x2d,0x66,0x27,0x81,0x8c,0x5b,0x74,0xb8,0xac,0xe6,0x4a,0x2,0x9d, 0x5a,0x3a,0x8e,0x16,0xb8,0xed,0x6d,0x4,0x48,0x4d,0xd2,0xf7,0xe2,0xb4,0xb6,0x4c, 0x3b,0x67,0xb5,0x4,0xc,0x4c,0x65,0xc7,0x12,0x8e,0x3e,0x83,0x81,0x89,0x3f,0xa3, 0x7b,0xec,0x5a,0x24,0x92,0xdd,0xa8,0xa3,0x73,0xe9,0x6c,0xfa,0x30,0x81,0xca,0x49, 0x52,0x69,0xa6,0x1f,0x31,0xb4,0x82,0x98,0x52,0xcc,0x9d,0xb7,0xc2,0x90,0x59,0x1d, 0x4c,0xae,0x34,0x5c,0xf5,0x6b,0xc,0x54,0xf2,0xd6,0x3b,0xf6,0x7b,0x59,0xd9,0xb6, 0x35,0xbc,0xeb,0x0,0x4e,0xe2,0xb5,0x93,0x94,0x8f,0x8d,0x6,0xf0,0xaf,0x8b,0x7e, 0x86,0x9e,0xbb,0x36,0xc1,0x53,0x5b,0x45,0xab,0x60,0x9b,0x38,0x63,0x95,0x1c,0x78, 0x36,0x9d,0x91,0x55,0xba,0xcd,0x69,0xa3,0xd5,0x6d,0x1a,0x6a,0x22,0xd,0xb3,0xcd, 0xc6,0x23,0x16,0xe9,0xef,0xaa,0xfe,0x5d,0xd2,0xf4,0x6c,0x84,0x31,0x30,0x58,0x64, 0xf4,0xc1,0x59,0x5,0x8d,0x2d,0x6,0x3,0x45,0x94,0x73,0xb3,0x4a,0x46,0xcf,0xd0, 0x68,0x20,0xa3,0x9a,0xb2,0x2,0x3e,0x45,0xd9,0xf,0x7d,0xe5,0x4e,0xef,0x93,0xe3, 0xf0,0x54,0x9a,0x20,0x27,0x4d,0xa0,0xc4,0x5a,0x29,0x26,0x53,0x41,0xf9,0x57,0x63, 0x3e,0xda,0x22,0xc1,0xa4,0x7b,0x2d,0x95,0x80,0x49,0xcd,0x69,0x39,0x4,0x93,0x84, 0xc2,0x4a,0x42,0x70,0x5,0x47,0x96,0xd5,0x98,0xf,0xe7,0x7a,0xe8,0x7d,0xed,0xd5, 0x4e,0x2c,0x79,0xf7,0xd1,0x98,0xdc,0x3e,0x84,0xc8,0xd0,0x14,0x4e,0xfd,0xed,0x47, 0x50,0xbb,0x72,0x81,0xc8,0xb8,0x68,0x2c,0x88,0xf6,0x93,0xa1,0xfd,0xeb,0xe3,0xa3, 0xb5,0xdc,0x43,0x4e,0x9b,0x1d,0xc2,0x14,0x27,0x2f,0xd7,0x63,0x36,0xcd,0x52,0x49, 0x95,0x67,0x1b,0x41,0x4,0xa2,0x3b,0xa4,0x5a,0xac,0xd7,0x7f,0xd,0x22,0xf1,0x31, 0x91,0xfe,0xb2,0xd1,0x75,0xf6,0xba,0xd6,0x90,0x23,0x3e,0x15,0xcd,0xb5,0xe7,0xa0, 0xda,0x75,0xb8,0x76,0xfd,0xca,0x1c,0xba,0xf2,0x9c,0x21,0x22,0x81,0xe5,0x6c,0x54, 0x9b,0x5b,0x4f,0xa0,0x92,0x55,0x79,0x8b,0xd3,0x67,0x98,0xd6,0x87,0xb0,0x59,0x75, 0x71,0x49,0x97,0xa8,0x2e,0x6b,0xfd,0x28,0xf6,0xe2,0x4c,0x96,0x19,0xb,0xaf,0x7c, 0x9f,0xcc,0xcc,0x3c,0xc,0x27,0xe0,0xfb,0xc7,0xaf,0xc5,0xd0,0xe4,0x2d,0x88,0x12, 0x68,0xd6,0x78,0x4e,0xc4,0x92,0xc6,0x8f,0xa1,0xbe,0xea,0xa4,0x72,0xe9,0xff,0xb2, 0x30,0xd9,0xf3,0x3b,0x8f,0x39,0x6c,0x9c,0x37,0x61,0x47,0x62,0x94,0xc,0xbf,0x56, 0xc3,0x5f,0xc9,0xd4,0x38,0xa2,0x89,0x3e,0x54,0x7a,0xe,0xd1,0xcb,0x36,0xd5,0xf9, 0x7c,0xc3,0x3f,0xa7,0x45,0x86,0x26,0x70,0xd7,0xbb,0x7e,0x82,0x4c,0x22,0x85,0x23, 0xbe,0x44,0xce,0x8d,0x9c,0xea,0xbe,0x3f,0x3f,0x8c,0x2d,0xff,0xef,0x76,0xb8,0x9a, 0x3c,0x58,0x7b,0xd9,0xd9,0x68,0x3a,0x6e,0x5,0xa2,0xe3,0x53,0xd8,0x71,0xe5,0x6, 0xf4,0xdf,0xbe,0x8d,0xd8,0x4c,0x6,0x47,0x7e,0xfb,0x7c,0x5a,0xe1,0xd7,0x63,0xd3, 0xb7,0x6e,0xc6,0xc4,0x8e,0x3e,0xac,0xb8,0x88,0x1c,0xcc,0xbb,0x5f,0x87,0xa7,0x7e, 0x74,0x1b,0xfa,0xff,0xb1,0x15,0xd6,0x1a,0x37,0xd6,0x7e,0xea,0x6c,0x54,0xaf,0x68, 0xc2,0xbf,0x2f,0xfd,0x1d,0x52,0x81,0x18,0x56,0x7e,0xe8,0x14,0xb4,0x9d,0xb9,0x16, 0x9b,0xbf,0x73,0x2b,0x7a,0xef,0xde,0x82,0x23,0xbf,0x72,0x3e,0x6c,0x2e,0x1b,0xb6, 0x5e,0xf1,0x4f,0x71,0x62,0xab,0x3f,0x76,0x3a,0x32,0xa9,0x34,0xb6,0x5c,0xfe,0xf, 0xac,0xfc,0xe0,0x69,0xe8,0xb8,0xe0,0x68,0x6c,0xfd,0xee,0xad,0x18,0xb8,0x6b,0x7, 0x3a,0xde,0x71,0x14,0x6a,0xd7,0x2f,0xc2,0xa6,0xaf,0xfc,0x45,0x98,0x8d,0x77,0x79, 0x3,0xe,0xfb,0xc2,0x9b,0x31,0xf1,0x44,0xf,0xb6,0x5d,0xbd,0x1,0xd9,0x68,0x1a, 0x9d,0x17,0x1c,0x89,0xda,0xb5,0xed,0xd8,0x7c,0xf9,0x3f,0x91,0x4d,0x26,0xb1,0xea, 0x92,0xd3,0x24,0x44,0x14,0xea,0x1b,0xc7,0x8a,0x8b,0x4f,0xd2,0x84,0x3e,0x88,0xc5, 0x84,0x47,0x82,0xd8,0xf6,0xfd,0xdb,0xb0,0xe4,0x5d,0xc7,0xa1,0xf9,0xf8,0xe5,0x8, 0xd3,0xdf,0xa3,0x7d,0x13,0x58,0xf8,0xfa,0xb5,0x72,0xfe,0x6c,0x7b,0x6e,0xda,0x88, 0xfd,0x37,0x3d,0xc1,0x29,0x6,0x28,0x76,0x5,0x4b,0xce,0x3f,0xe,0x1d,0x6f,0x3e, 0x1c,0xa9,0x50,0x4,0x9b,0x7f,0x78,0x1b,0x2,0xbb,0x86,0x5,0xd8,0x16,0xbf,0xf5, 0x70,0x2c,0xbb,0xe0,0x78,0xbd,0x52,0x4c,0x2d,0xac,0xca,0xa7,0x2f,0x4c,0x98,0x41, 0xb0,0x14,0xca,0xf0,0xe4,0xcd,0x92,0x90,0xf,0xc5,0xb6,0x20,0x91,0x4a,0xc8,0x94, 0x4a,0x7,0xad,0xee,0x7d,0xae,0xb5,0x68,0xa9,0xb9,0x90,0x56,0xfd,0xa7,0x88,0x78, 0xa3,0x49,0xb1,0x4d,0x73,0xf6,0x28,0x6b,0xdc,0x55,0x5f,0x82,0x31,0xce,0x45,0xd9, 0x21,0xa5,0xec,0xdf,0x9a,0x5a,0xb7,0x59,0x7,0xc5,0x30,0x81,0xe2,0x93,0x32,0xf, 0xa6,0x7f,0x92,0xae,0x6b,0xc6,0x8f,0x6a,0xcf,0x5a,0xb4,0x37,0x7c,0x4,0xad,0xb5, 0xe7,0xcb,0xe0,0xb0,0xb2,0xe8,0x72,0xe1,0x38,0xd5,0x3,0x82,0xd3,0x3c,0x32,0xae, 0xf0,0x7a,0x83,0xfe,0xd3,0xb0,0x39,0x66,0x2f,0xd9,0x9d,0x69,0xb5,0xd4,0xa0,0xaa, 0xe2,0x50,0xba,0xe1,0xed,0xfa,0x77,0x61,0xa6,0x1e,0x89,0xaa,0xbe,0x76,0x7a,0x35, 0x32,0xc4,0x3e,0x9a,0x8e,0x5d,0x86,0x93,0x7f,0xf6,0x7e,0x58,0x1c,0x16,0xec,0xba, 0xe6,0x5e,0x8c,0x6d,0xde,0xf,0x5b,0x8d,0x13,0x27,0xff,0xf2,0x83,0x68,0x58,0xdf, 0x89,0xed,0xbf,0xb8,0xb,0x4a,0x2a,0x87,0x93,0xaf,0xfe,0x0,0x9a,0x4f,0x58,0x2, 0x35,0x9d,0x23,0x7,0xbc,0xe,0x9d,0x6f,0x3b,0xa,0xf5,0x47,0x2e,0x86,0xd5,0xe7, 0x44,0xe7,0x79,0xc7,0xa0,0xf5,0x75,0x2b,0xd1,0x70,0xc4,0x22,0xa4,0xd3,0x69,0xd8, 0x3c,0x2e,0x74,0x9c,0x75,0x28,0x3a,0xce,0x3e,0x2,0xd,0xc7,0x2f,0x85,0xc5,0x69, 0xc2,0xd2,0xb,0x8e,0xc1,0x82,0x93,0x56,0xa3,0x7a,0x4d,0x1b,0xd2,0xb4,0xaa,0xae, 0x5f,0xd7,0x8e,0xc6,0x23,0x97,0xe9,0xde,0x28,0x4b,0xfb,0xea,0x40,0xdd,0xda,0xe, 0x62,0x45,0x29,0x54,0x2e,0x6a,0xc0,0xc2,0x13,0x56,0xe1,0xb0,0xcf,0xbc,0x19,0xf6, 0x1a,0xf,0x7c,0xcd,0xd5,0x68,0x39,0xb2,0x13,0x6a,0x92,0x18,0x14,0xb1,0x84,0x86, 0xa3,0x97,0x90,0x43,0x3f,0x6,0x8b,0xce,0x39,0x12,0x15,0xb,0xaa,0x91,0x49,0xc7, 0xe1,0x5b,0x54,0x87,0xe6,0xa3,0x97,0xd1,0x67,0x9b,0x95,0x4,0x7c,0xed,0xaa,0x76, 0x34,0x1d,0xbd,0x14,0xd1,0x9e,0x71,0xf4,0xdf,0xb3,0xd,0xde,0xc5,0x8d,0xb0,0x56, 0x38,0x31,0xfa,0xd0,0x6e,0xa4,0x13,0x49,0xb4,0x9d,0xb2,0x5a,0x3e,0xf9,0xbd,0x7f, 0x7c,0x4,0x81,0xa7,0x87,0x8a,0xd5,0xad,0xf4,0xf9,0x4f,0x6e,0x1d,0x84,0x7f,0x53, 0xaf,0x1c,0xb3,0xab,0xa1,0x6,0xf,0x7c,0xf4,0x5a,0xec,0xfb,0xeb,0xe3,0x32,0xac, 0xad,0xef,0xce,0x9d,0xa8,0x68,0x6b,0xc4,0x92,0x37,0x1f,0x81,0xaa,0xe5,0xad,0x85, 0x25,0x89,0xa2,0x17,0x36,0xcc,0xd6,0xcf,0xc4,0x39,0x86,0xa,0xe7,0x12,0x2c,0x69, 0xfe,0x34,0x8e,0x5d,0x76,0x27,0x8e,0x58,0xfc,0x77,0x2c,0x6b,0xfe,0x28,0x2a,0x1c, 0x9d,0xd2,0xb0,0x38,0x1e,0xbc,0x1f,0x5b,0xba,0xff,0x7,0xf,0x3e,0x7d,0x32,0x36, 0xed,0xbb,0x18,0x7b,0x87,0x7e,0x84,0xc9,0xf0,0x63,0x12,0xee,0xe2,0x6e,0x7a,0x8d, 0x15,0x16,0xdf,0x77,0x3a,0xa0,0xa8,0x7,0x10,0xfb,0x54,0x31,0xfb,0xe3,0x50,0x67, 0x8e,0xbc,0x56,0xf4,0x30,0x1b,0xef,0x6f,0x2a,0xfc,0x38,0x9e,0xee,0xfb,0x6,0x1e, 0xde,0x75,0x6,0x1e,0xdc,0x75,0x36,0xf6,0x8f,0xdd,0x8,0x9f,0xa3,0x3,0xeb,0x3a, 0xae,0xc6,0xb1,0x2b,0xee,0xc5,0xa2,0xc6,0xf,0x16,0x1,0xa5,0x28,0xd9,0x59,0x9c, 0xca,0x28,0x17,0x73,0x5e,0x3,0xca,0x6,0xda,0x8e,0x32,0x0,0x65,0xee,0xda,0x4b, 0x54,0xfd,0x5,0x2d,0x9e,0x3f,0xe3,0xd1,0x69,0xbf,0xbd,0x86,0xfa,0x51,0x2c,0x4e, 0x33,0x96,0xbf,0xf7,0x44,0x44,0x87,0x82,0xb8,0xef,0xbf,0x7f,0x83,0x50,0xcf,0x88, 0xac,0x92,0x97,0xbf,0xff,0x44,0x54,0xae,0x5a,0x80,0xbb,0xdf,0xf5,0x53,0xec,0xbd, 0xe3,0x11,0xc,0xdd,0xf7,0xc,0xce,0xfe,0xfb,0xa7,0xd1,0x76,0xd6,0x7a,0x44,0x7, 0x27,0x91,0x4d,0x24,0x30,0xb9,0x6f,0x0,0x8b,0xde,0xb4,0xe,0x81,0x3d,0x43,0xf0, 0xb4,0xd5,0x22,0x1e,0x8c,0xc0,0xbb,0xa8,0x51,0xe6,0xb3,0x38,0x1b,0xbd,0xf2,0xa9, 0xb1,0x60,0x65,0xc7,0xd9,0x87,0xb2,0x8a,0x20,0x5c,0x8d,0xd5,0x8,0xf6,0x8e,0x91, 0x43,0xae,0x86,0xcd,0xe4,0x26,0x40,0xcb,0x10,0x18,0xa4,0xe4,0x7a,0x67,0x55,0x8b, 0xc,0xd0,0xca,0x65,0xb5,0x52,0x63,0x82,0x5,0xf8,0x77,0xf4,0xa2,0xf6,0xd0,0x76, 0x61,0x30,0xe9,0x60,0x82,0x58,0x4c,0x56,0x9a,0x7,0x7d,0xb,0x5a,0xb0,0xf0,0x8c, 0xb5,0xd8,0x7f,0xeb,0x13,0xa8,0x24,0x26,0xd4,0x76,0xe6,0x7a,0x8c,0x6d,0xef,0x41, 0x8e,0x5e,0x9f,0x49,0x67,0xf5,0xae,0xf0,0x9c,0x84,0x80,0x58,0x79,0x79,0x74,0xd3, 0x7e,0xc,0x6e,0x7c,0x6,0xad,0x27,0xac,0x44,0x60,0xef,0x30,0x76,0xfc,0xec,0x4e, 0x3a,0x96,0x4a,0xf9,0xc8,0xcd,0x2e,0x33,0x6c,0x5e,0x3b,0x39,0xef,0xc,0xbd,0x77, 0xae,0xec,0xce,0x70,0xd2,0xf1,0x76,0x9e,0x7b,0x14,0xda,0xde,0xb8,0xe,0xd1,0x7e, 0x3f,0x7a,0xff,0xb1,0x19,0x8d,0x87,0x77,0x8,0xbb,0xca,0x12,0xb3,0x4b,0x85,0x12, 0x50,0x4a,0x9b,0x45,0xf3,0xb9,0x98,0x67,0xb9,0x7d,0x64,0x4c,0xb1,0xd5,0x8b,0xa6, 0xea,0xd7,0xd3,0x76,0x1a,0x22,0x89,0x6e,0x24,0x92,0x7d,0xe2,0xc4,0x7,0xa7,0x6e, 0x46,0x28,0xbe,0x7,0xfd,0xe3,0x37,0xa2,0x7f,0xec,0x8f,0x70,0xda,0xbc,0x70,0xdb, 0x97,0xc3,0x6e,0x69,0x41,0x95,0xf7,0x70,0x54,0xb9,0x8f,0x41,0x85,0x6b,0x99,0xc, 0x2,0xe3,0x50,0x56,0x69,0x83,0xe4,0x81,0x94,0xb2,0x95,0x3,0xb1,0x70,0xfd,0x21, 0x4e,0xd2,0xe7,0x72,0x51,0x62,0xf0,0x13,0x98,0x8,0x6f,0xc4,0x58,0xf0,0x5e,0x3a, 0xa6,0xa7,0x11,0x4f,0x75,0xd1,0x16,0x95,0xb0,0x56,0x5b,0xed,0xdb,0x85,0x45,0xf1, 0xd8,0x7,0xbb,0xad,0x6a,0x6,0xd7,0x99,0xb7,0x95,0x91,0x7,0x36,0x23,0x21,0x6f, 0x80,0x8a,0x61,0x7,0xa4,0x80,0x4,0xb2,0xce,0x7a,0xf,0x82,0x7b,0x47,0x91,0x9c, 0x8a,0x49,0x8e,0x83,0xd5,0x42,0x9c,0x35,0x15,0xc8,0xc6,0xd2,0x88,0x4f,0x44,0xc4, 0x6d,0xa4,0x43,0x31,0xa4,0xa3,0x9,0x49,0xba,0x57,0x2c,0x69,0x40,0x8e,0x1c,0xfc, 0xde,0x3f,0x3e,0x8c,0xd5,0xff,0x73,0x6,0xda,0xdf,0xbc,0x1e,0xfe,0x6d,0x3d,0x92, 0xd3,0xa8,0x68,0xad,0x25,0xa7,0xeb,0x82,0xa7,0xd9,0x27,0x8c,0x66,0xcf,0x5f,0x36, 0xa2,0xf5,0xa4,0x35,0xc4,0x5c,0x9c,0x18,0xdf,0x4c,0xe,0x74,0x2a,0x82,0xca,0x4e, 0x62,0xc,0x6e,0x76,0x88,0x5a,0xb5,0x56,0x22,0x14,0xd7,0x56,0xb6,0x16,0x5,0x66, 0xab,0x56,0x20,0x60,0x75,0x58,0xd1,0x7f,0xef,0x4e,0x58,0x6c,0x66,0xac,0xf9,0xf0, 0x99,0x18,0x7e,0x6c,0xaf,0xbc,0x1f,0x43,0x46,0xcd,0x21,0x2d,0xc2,0x88,0xb6,0xfd, 0xe4,0x4e,0x38,0x9b,0x2b,0xd1,0x7a,0xc6,0x21,0xd8,0xf6,0xf3,0xbb,0xb4,0xf7,0x30, 0x29,0x74,0x9c,0x49,0x24,0x93,0x9,0xa9,0xf2,0xe2,0xa4,0xbd,0x85,0xce,0xd1,0xec, 0x75,0xc2,0x6c,0xb1,0xc0,0x62,0xb7,0xc2,0x52,0xe1,0x92,0xdc,0x4a,0x2e,0xab,0xc2, 0xea,0x72,0xc0,0xb9,0xb8,0xa,0xa9,0xd1,0x58,0x19,0x43,0xe5,0x1c,0x91,0x5e,0x60, 0x46,0xc0,0x6b,0x87,0xd9,0xed,0x42,0x36,0x9d,0x92,0xe6,0x3e,0xce,0xef,0x24,0xe9, 0x3c,0xc2,0x3d,0x13,0x7a,0x5f,0x4b,0xb9,0xa7,0x7e,0xb6,0x44,0x7f,0xe9,0x3c,0x1b, 0x5e,0xc9,0xf3,0x50,0x2e,0xde,0x6a,0x7d,0x27,0xa3,0xa3,0xf9,0x13,0x8,0x44,0x1e, 0xc3,0x68,0xe0,0x4e,0xfa,0xf9,0xb8,0xf4,0x8d,0x8c,0x87,0x36,0xd3,0x79,0x3c,0x8e, 0x1,0x2,0x1c,0xce,0xc5,0x38,0x88,0x69,0xfb,0x3c,0x87,0x11,0xb8,0xac,0x46,0x5, 0x1,0x8e,0xd3,0xd1,0x24,0x82,0x8c,0x16,0x53,0x5,0x7d,0x36,0x6e,0x98,0x15,0x7d, 0x38,0x97,0x29,0x3f,0xe5,0x51,0x2b,0x21,0x56,0x89,0x81,0x48,0xb5,0x97,0x68,0x88, 0xc5,0x90,0xc8,0xf8,0x45,0xf4,0x32,0x18,0xdd,0x29,0xfb,0xa,0xc4,0x1f,0x27,0x50, 0x4f,0x73,0x7c,0x10,0xe,0x5b,0x3d,0x7c,0xae,0xf5,0x58,0xd6,0xfa,0x26,0x34,0x57, 0xbd,0xd,0x4e,0xfb,0x82,0x67,0x39,0x97,0xd7,0xd4,0xd7,0x85,0x35,0xbc,0x2e,0x85, 0xa6,0x34,0x6c,0x98,0x1,0x2a,0x86,0xcd,0x1a,0xfe,0x22,0x70,0x98,0xdc,0xde,0x87, 0xda,0xf5,0xed,0x58,0xf5,0xe1,0xd3,0xd0,0x77,0xc7,0x66,0xa9,0xe6,0x1a,0xdf,0xde, 0x2d,0xc0,0xb2,0xf2,0xfd,0x27,0x21,0x16,0xb,0x62,0xe5,0xbb,0x4f,0x45,0x45,0x7b, 0x2d,0x1e,0xf9,0xdc,0x93,0xf0,0xad,0x6c,0xa1,0x55,0x7c,0x15,0x7a,0x6e,0xdb,0x8c, 0xc5,0xe7,0x1d,0x83,0x55,0xef,0x3b,0x15,0xf,0x7f,0xf1,0x6,0xd8,0x2b,0x9c,0x68, 0x3c,0x62,0x9,0xbc,0x1d,0xf5,0xc4,0x72,0x16,0x22,0x9d,0xce,0x60,0xff,0xcd,0x9b, 0xb0,0xf8,0xdc,0xa3,0xe1,0x5b,0xb8,0x2,0xf7,0x7c,0xf8,0x57,0xa8,0x5a,0xdd,0x82, 0x5,0xa7,0x1e,0x22,0x33,0x5a,0xe2,0x53,0x51,0x2c,0x38,0x65,0x15,0xea,0xe,0x5f, 0x24,0xe,0xbb,0x66,0x5d,0x3b,0x7a,0x88,0xd,0x30,0xd8,0xd8,0x7c,0x76,0xa4,0x13, 0x69,0x6c,0xb9,0xe2,0x36,0xd4,0x1f,0xd1,0x89,0x45,0x67,0x1e,0x8a,0xa1,0x8d,0x4f, 0x13,0xe8,0x58,0x89,0x3d,0x1c,0xd,0x5b,0x55,0x5,0x1a,0xe,0xef,0x24,0x0,0xb3, 0xd2,0x3e,0x3b,0x50,0xbd,0x66,0x21,0xbd,0x5f,0x4,0xbe,0xe5,0x8d,0xf4,0x7e,0xed, 0x88,0x47,0xa3,0xa8,0x5f,0x4b,0x3f,0x7,0xa7,0x88,0xbd,0xe4,0xe8,0x75,0x36,0x98, 0xe8,0xb9,0x26,0x2,0x15,0x25,0x67,0x92,0xe4,0xba,0xad,0xd2,0x89,0x11,0x2,0xab, 0x4d,0x3f,0xf9,0x2b,0x5a,0x57,0xac,0x80,0xc5,0x6a,0x29,0xac,0xbf,0x73,0xa9,0xc, 0x52,0x4,0xb2,0xc1,0xae,0x51,0x62,0x3a,0x5d,0x18,0xbc,0x77,0x3b,0xe,0xff,0xfc, 0x9b,0x60,0xaf,0x76,0x21,0x3e,0x1a,0xc2,0xea,0xf,0x9f,0x8e,0xa6,0xa3,0x97,0xc8, 0x79,0x14,0xab,0xbf,0xf2,0x7d,0x3e,0xca,0xb3,0x30,0x95,0x99,0x12,0x29,0xf9,0xca, 0x31,0x33,0x31,0xf,0x96,0x41,0xe1,0x2d,0x2f,0xa3,0x3f,0x15,0x7e,0x4c,0x7a,0x48, 0x82,0xb1,0xa7,0x44,0x9c,0x92,0x4b,0x82,0x87,0x26,0xfe,0x85,0xcc,0x38,0x6d,0x5c, 0xa8,0x47,0x38,0xea,0xb4,0x59,0x65,0xe6,0x9,0x2b,0x28,0x5b,0x4c,0x5e,0x2,0x15, 0x8f,0xcc,0x77,0xcf,0xe9,0x3d,0x46,0xac,0xbf,0xc5,0x1a,0x61,0x59,0xda,0xd2,0xe9, 0x10,0xd2,0x99,0x31,0x24,0xb3,0x9,0xd9,0x87,0xc5,0x64,0x21,0x26,0x54,0x8b,0x6a, 0xd7,0x51,0xa8,0xf4,0xac,0x87,0xc7,0xb5,0x2,0x95,0xee,0xc3,0x51,0x4d,0x1b,0x94, 0x99,0x81,0xb4,0x22,0x98,0x28,0xaf,0x35,0x85,0x9,0x4e,0xc8,0x9f,0x3,0x6d,0x5a, 0xa3,0x61,0x6,0xa8,0x18,0x76,0x20,0x53,0x53,0x39,0x6c,0xfd,0xe1,0xed,0x68,0x3a, 0x6a,0x19,0x96,0x9e,0x7f,0x2c,0xda,0xcf,0x5c,0x4b,0x60,0xb1,0x5,0x5b,0xaf,0xf8, 0x7,0x1e,0xf9,0xc2,0xf5,0x58,0xf2,0xae,0x13,0x70,0xea,0x8f,0x3e,0x4,0x8b,0xcb, 0x8e,0xc7,0xbf,0xf6,0x37,0xec,0xfc,0xe7,0x3d,0x38,0xa6,0xfd,0x42,0x72,0xb4,0x7b, 0x89,0x3d,0xec,0xc6,0xee,0x1b,0x1e,0x44,0xeb,0xeb,0x56,0x61,0xcf,0xf5,0xf,0x91, 0x33,0xef,0x40,0xe3,0x71,0xcb,0xa4,0x7a,0x2a,0x1b,0x49,0x61,0xf8,0xfe,0xa7,0x31, 0xba,0x71,0x2f,0xf6,0xfc,0x61,0x23,0xad,0xe8,0x17,0xa2,0xeb,0x2f,0x8f,0xa2,0x2d, 0xb8,0x16,0xe1,0x13,0x57,0x23,0x9b,0x64,0xc0,0xf8,0x7,0x7c,0x1d,0x75,0x38,0xe2, 0xeb,0xe7,0x22,0x47,0x0,0x32,0xfc,0xd0,0x33,0x78,0xf2,0xf2,0x5b,0x90,0x44,0x2, 0x93,0x9c,0xe3,0x30,0x9b,0x31,0xbe,0x6f,0x1f,0x36,0x7e,0xea,0x7a,0x1c,0x73,0xf9, 0x85,0xc4,0x86,0x7a,0x65,0xb5,0x6e,0x72,0x3a,0xb0,0xe9,0xeb,0x37,0x61,0xfb,0xaf, 0x6e,0x43,0xd5,0xe2,0x36,0x1c,0xfd,0xcd,0x77,0xc2,0x47,0xec,0x67,0xdf,0x4d,0x8f, 0xa2,0xf9,0xc4,0xe5,0x38,0xea,0x6b,0xe7,0x11,0x58,0x66,0x10,0x1b,0x9a,0xa2,0x7d, 0xfc,0x1d,0xb1,0x74,0x10,0xd6,0xa0,0xb,0xfe,0x2d,0x3d,0x8,0xf7,0xfa,0x91,0x88, 0x4,0x91,0x8e,0xc5,0x30,0xf2,0xc8,0x6e,0x54,0x2d,0x6d,0xc5,0xeb,0xbf,0x71,0x9, 0x22,0xa3,0x7e,0xa4,0x92,0x99,0x2,0xdf,0x70,0xd5,0x7b,0xa1,0x26,0x53,0xd8,0x78, 0xd9,0xd,0xc4,0xa4,0xa2,0x58,0x72,0xe1,0xb1,0x58,0xfa,0xce,0xe3,0xa4,0x22,0xac, 0x7a,0x69,0x3d,0x9e,0xfa,0xc9,0xed,0xd8,0x75,0x8d,0x1b,0x8b,0xdf,0x71,0x4,0x1, 0xee,0x89,0x85,0x65,0xbb,0xa2,0x2a,0x38,0x50,0xc4,0x69,0x6,0x8b,0x29,0x29,0x1b, 0x2e,0x28,0x68,0xeb,0xa,0x5,0xfc,0x1c,0xee,0x6d,0xe1,0x8d,0x2d,0x9a,0xe8,0x47, 0x22,0xd5,0x87,0x58,0x62,0x3f,0x31,0x98,0x67,0xe8,0x9c,0x7a,0x91,0x48,0x7,0x8, 0x24,0xa6,0x90,0xca,0x8c,0x23,0x93,0x8d,0x12,0xe8,0xf4,0x22,0x4b,0x8c,0x44,0x95, 0xb2,0x62,0x82,0x14,0x2,0xc,0x45,0x35,0x4b,0xc5,0x17,0xf7,0xb3,0x30,0x93,0xb1, 0x59,0x5b,0xe0,0x75,0xaf,0x82,0xdb,0xd1,0xa,0x8f,0x7d,0x19,0xb1,0xa4,0x76,0x29, 0x2b,0x76,0xda,0xda,0x45,0x12,0xa6,0x1c,0x46,0x72,0xc5,0x63,0x54,0xf3,0x4d,0xb1, 0xf9,0x6,0xe2,0x99,0x72,0xff,0xf3,0xd8,0xb6,0xeb,0x80,0x62,0xe4,0x4f,0xe6,0x91, 0xfd,0x47,0x66,0xd4,0xbf,0x16,0x2d,0x19,0x8a,0xe0,0x99,0xeb,0x1f,0x44,0x62,0x2c, 0x8c,0xb6,0xb7,0xac,0x47,0x45,0x67,0x83,0x84,0xb2,0xc6,0x37,0xf7,0x23,0x9b,0x4a, 0xa1,0x69,0x3d,0xb1,0x0,0x62,0x26,0x13,0xc4,0x66,0x46,0x1e,0xd9,0x87,0x9c,0xc3, 0x8c,0x5a,0x62,0x5,0x16,0xbb,0x19,0xfe,0xad,0x83,0x70,0x55,0xba,0xe0,0xaa,0xf5, 0x62,0xec,0xf1,0x2e,0xd8,0xc9,0x11,0x57,0x2e,0x69,0x44,0xc4,0x1f,0x84,0xa3,0xd1, 0x87,0x5c,0x38,0x81,0xc0,0xce,0x21,0xb8,0x9b,0xab,0xe1,0xa8,0xf1,0x60,0x72,0xef, 0x20,0x3c,0x6d,0x75,0xf0,0x2c,0xa8,0xc1,0xc4,0x13,0xdd,0x88,0xf7,0x4f,0xc0,0xb7, 0xaa,0x19,0x8d,0xaf,0x5b,0x4e,0xa0,0x65,0xc5,0xc0,0xbf,0xf7,0x20,0xb4,0x77,0x44, 0xdc,0x6a,0x45,0x1b,0xcb,0xb1,0x9b,0x25,0x7,0xa3,0xb8,0xad,0xa8,0x23,0x36,0x92, 0xf1,0x47,0x11,0xde,0x37,0x82,0xca,0xe5,0xad,0x92,0x1b,0x9,0x45,0xa6,0x60,0xc9, 0x58,0x51,0xbf,0x62,0x1,0x14,0x2b,0xb1,0xab,0xad,0xbd,0x74,0xfc,0xf5,0x68,0x3d, 0x7b,0x1d,0x94,0x8c,0x8a,0xe1,0x3b,0x76,0x60,0x72,0xf7,0x0,0xac,0xb4,0x6f,0x93, 0xd3,0x8a,0x4a,0x3a,0xb7,0xb4,0x3f,0x8c,0x50,0x97,0x5f,0x42,0x7c,0xd5,0xc4,0xce, 0x2a,0x96,0x36,0x40,0x49,0xa9,0x48,0x8c,0x6,0xe9,0x7d,0x9b,0xe0,0x69,0xd0,0x4a, 0x63,0x23,0xe3,0x41,0x4,0xf6,0x8c,0x20,0xe1,0x8f,0xc0,0x45,0xe7,0xd2,0x74,0xe4, 0x62,0x6d,0x70,0x5b,0x26,0x8b,0xd0,0x80,0x1f,0xa1,0xc1,0x49,0xe4,0x62,0x69,0x29, 0xe,0xa8,0x5a,0xdc,0xa4,0xdf,0xa4,0x85,0x2a,0xe3,0x67,0x77,0xb5,0x25,0x73,0xeb, 0xcb,0xfb,0x51,0x4a,0xca,0x92,0xf3,0x6d,0xa6,0xca,0xec,0xbd,0x1d,0x9c,0x50,0xcf, 0x12,0xdb,0x60,0x69,0xfe,0x74,0x6e,0x8a,0x7e,0x8f,0x89,0x34,0x3e,0x57,0x99,0x31, 0xa8,0xc8,0xe4,0x64,0xd6,0xc,0x83,0x19,0x16,0x96,0xb9,0x37,0x7b,0x68,0x73,0x4a, 0x9f,0x8a,0x85,0x7e,0x37,0x29,0x8e,0xd9,0xa7,0x49,0xaa,0xf9,0xb1,0xbf,0x4a,0xb9, 0xa6,0x97,0x7e,0x7c,0xca,0x6c,0x5d,0xf5,0xf3,0xdb,0x6e,0xa2,0xed,0xbd,0x30,0xe6, 0xc8,0x1b,0xa0,0x62,0xd8,0xf3,0xe2,0x29,0x98,0x3e,0x9e,0x35,0x33,0x19,0x87,0x3a, 0x1a,0x86,0xc5,0x61,0x85,0x5a,0xe5,0x4,0x3c,0x16,0xad,0xa3,0xdc,0xac,0x37,0xf7, 0x25,0xb3,0x48,0x3f,0x33,0xa,0x95,0xfe,0x6d,0x5b,0xd1,0x28,0x8d,0x92,0x33,0xfc, 0x65,0x9c,0x1c,0x5e,0x28,0x9,0x73,0xbd,0x4b,0xd3,0x50,0x29,0xdd,0xdf,0x58,0x2, 0x39,0x7a,0x4b,0x53,0xb5,0x53,0x7f,0x44,0x3a,0x29,0xc9,0x41,0x93,0x23,0xc,0xe7, 0x60,0xae,0xa3,0xd7,0x58,0xa7,0x39,0x3b,0x2,0x27,0x2e,0x19,0x36,0xd5,0x3a,0xa1, 0x58,0x2c,0xc5,0x1d,0x45,0x69,0x73,0x2b,0x65,0xe1,0xa6,0x5c,0x3c,0x89,0x9c,0x3f, 0xe,0x78,0x6d,0x30,0x57,0x38,0xb5,0xdc,0x2,0xc7,0x89,0xc2,0xe4,0x6c,0x6d,0x74, 0x6,0xee,0x62,0x72,0x5b,0x8d,0x25,0x90,0x99,0x48,0xc0,0x4c,0xc7,0x62,0xa2,0xc7, 0xa5,0x40,0x60,0x34,0x4,0x35,0x9a,0x85,0xd5,0x49,0xcf,0xa3,0x6b,0x0,0x33,0xbd, 0xd6,0x5b,0xf2,0x1a,0x7e,0xd6,0x48,0x94,0xae,0x51,0xc,0x4a,0x85,0x19,0x4a,0xb3, 0x8f,0x13,0x1d,0x65,0xe5,0xb9,0x2f,0xde,0xdd,0x1e,0x40,0x12,0xe5,0x3f,0x7a,0x5f, 0xbc,0xe6,0xc5,0x53,0x39,0x7f,0xf2,0x59,0xda,0x7e,0x6c,0xf8,0x9,0x23,0xfc,0x65, 0xd8,0xf3,0xc7,0xea,0xc2,0xda,0x33,0x17,0x4d,0x21,0xfa,0xf3,0x47,0x11,0xfe,0xfd, 0xe3,0x48,0x8f,0xf9,0xf9,0x11,0xd8,0x17,0xb6,0xa1,0xee,0xb6,0x8b,0xc8,0xd1,0x7b, 0x90,0xd,0xc6,0x11,0xfa,0xc1,0xbf,0x11,0xfd,0xcb,0x66,0x64,0xc7,0xa7,0xc4,0xb9, 0xdb,0x1a,0x89,0x75,0x7c,0xe8,0x18,0xb8,0x3f,0x74,0x54,0x21,0xa4,0x93,0xd9,0x33, 0x8e,0xc9,0x4f,0xfc,0xd,0xc9,0x7d,0xdd,0xa8,0xfe,0xec,0x5b,0xe0,0xf9,0xc0,0x31, 0x5a,0xbe,0x38,0x98,0xc4,0xc4,0xc7,0xff,0x8a,0xd8,0xc6,0x2d,0x70,0xac,0x58,0x8c, 0xea,0x1f,0x9d,0x7,0x4b,0x47,0xb5,0xb6,0x77,0xb3,0x5,0xe1,0x1f,0xdf,0x4b,0xfb, 0x7e,0x0,0xf6,0x65,0xc4,0x8c,0x7e,0xfe,0x76,0x58,0x5a,0x35,0x19,0x93,0xe8,0xcd, 0x3b,0x31,0xf5,0x8d,0x5b,0x80,0x58,0xe,0x95,0x5f,0x7c,0x23,0x3c,0x17,0x69,0xe1, 0xa0,0xd8,0x86,0x3d,0x98,0xbc,0xf4,0x26,0x78,0x2f,0x3a,0x1a,0xde,0x2f,0x9e,0x52, 0x70,0x82,0xb1,0x1b,0x36,0x23,0xf8,0xdd,0xbb,0xe0,0xbe,0xe8,0x4,0x54,0x7e,0x89, 0x1e,0x8f,0x67,0xe1,0xff,0xe8,0x5f,0x91,0x78,0x68,0x1b,0xcc,0xae,0x1a,0xd4,0x5c, 0x77,0x3e,0x6c,0xab,0x5b,0x44,0x8f,0x2c,0x72,0xf5,0xa3,0x8,0xfd,0xfc,0x5e,0x54, 0xfd,0xef,0x39,0x70,0xbd,0x67,0x9d,0xbc,0xc3,0xe4,0x47,0x6f,0x45,0x62,0xcb,0x3e, 0x28,0x5c,0x45,0xa6,0xa6,0x4,0x50,0xab,0xbf,0xf4,0x36,0x3a,0xcf,0x23,0x91,0x1e, 0xa,0x22,0xf4,0xad,0x7b,0x10,0xbd,0xed,0x29,0xe4,0x82,0x51,0xc0,0xa9,0xa2,0xe6, 0x73,0xe7,0xa0,0xe2,0xe3,0xc7,0x41,0x29,0x21,0x20,0x2f,0x3e,0xd5,0xa0,0x1c,0xe0, 0xf7,0xff,0xdc,0x7d,0xf1,0x1a,0xb7,0x3e,0x68,0xfa,0x5d,0x8f,0x18,0x3e,0xc2,0x0, 0x15,0xc3,0xe,0xc2,0x7d,0x30,0x4b,0x98,0xfa,0xe2,0x5d,0x8,0xfe,0x62,0x3,0x6c, 0xb,0x9b,0x51,0xf9,0xb1,0x53,0x91,0x33,0x91,0x53,0x8d,0x41,0x98,0x4a,0x36,0x10, 0xc7,0xe4,0xa7,0xfe,0x8e,0xf0,0x75,0x1b,0x61,0x5b,0xd6,0x6,0xef,0x65,0xa7,0x23, 0xdb,0x13,0x46,0xec,0x57,0x8f,0x63,0xe2,0x33,0x37,0x4b,0x77,0xba,0xf7,0xd2,0xe3, 0x34,0x50,0xe9,0xb,0x20,0xfd,0xf8,0x30,0xd2,0x93,0x13,0x88,0xde,0xfa,0xc,0x1c, 0xe7,0xad,0x85,0xb9,0xd2,0x85,0xd4,0xbe,0x71,0x24,0x6e,0xeb,0x42,0xc6,0x1f,0x40, 0x32,0x3a,0x8a,0xac,0x3f,0x2a,0xa0,0x22,0xeb,0xe2,0xac,0x8a,0xf4,0xb6,0x51,0xa4, 0xf7,0x8e,0x23,0x37,0x4c,0x4b,0xc4,0x27,0xfa,0x75,0x50,0x51,0x11,0xbb,0x79,0x1b, 0xd2,0x5b,0xc7,0x84,0x4d,0xa5,0xb6,0xd0,0x1f,0x2f,0xca,0xb3,0x97,0xc,0xd2,0x7b, 0xfc,0xc8,0x8c,0xc5,0xa0,0x8b,0x89,0x69,0x95,0x4e,0x93,0x49,0x64,0xf6,0x6,0xe4, 0x98,0xb5,0x30,0x51,0xe,0xd9,0xfe,0x28,0xbd,0x77,0x0,0x19,0x44,0x11,0xf8,0xc6, 0x7d,0xa8,0xfb,0xf3,0xbb,0x98,0xfa,0x22,0x3b,0x96,0x42,0x7a,0xdf,0x14,0x1,0x66, 0xb2,0xb8,0x46,0xef,0xd,0x0,0xe3,0x59,0xb8,0x2f,0x39,0x2,0xe6,0x1a,0xf,0x72, 0x99,0xc,0xac,0x47,0x69,0x15,0x5e,0xa1,0xef,0x3e,0x80,0xd0,0xd5,0xf7,0xc3,0x79, 0xd6,0xa1,0xf0,0xbc,0x75,0x5,0x32,0xc4,0xc8,0x2c,0xeb,0x8b,0xd5,0x5f,0x5,0x39, 0x19,0xc3,0x29,0xcf,0x65,0xdb,0xa0,0x3,0x8a,0xa1,0x30,0x6c,0x80,0x8a,0x61,0x7, 0x6b,0x89,0x87,0xba,0x11,0xfd,0xf5,0xc3,0xc4,0x4c,0x1a,0x50,0xf3,0xa7,0xf7,0xc0, 0xb1,0xae,0xb9,0xd8,0x21,0x6e,0x32,0x21,0x7c,0xf3,0x66,0x44,0xae,0x7d,0x1c,0xce, 0xa3,0x97,0xa1,0xfa,0x9a,0xf3,0x61,0x5f,0x52,0x27,0x40,0x60,0x5b,0xdb,0x84,0xc9, 0x8f,0xdc,0x8c,0xf0,0x35,0x9b,0xe1,0xbd,0xe4,0x58,0x59,0xa2,0x67,0xc6,0x22,0xc8, 0x46,0x92,0xb0,0x39,0xeb,0x91,0x7e,0xac,0x17,0xe9,0x6e,0x3f,0x2c,0x87,0x2e,0x44, 0x62,0xe3,0x7e,0x64,0x26,0x42,0x30,0x7b,0x1b,0x9,0xac,0x32,0xc8,0x4e,0xc5,0x8a, 0x1,0xb8,0x68,0x2,0xb9,0xf1,0x24,0x4c,0x66,0x2,0x99,0x68,0x1a,0xf1,0x7,0xbb, 0xe1,0x7a,0xdb,0x21,0x48,0xf7,0x4d,0x21,0xb9,0x69,0x0,0x26,0x8f,0x17,0xa,0xf9, 0xfd,0x4c,0xcf,0x44,0xc9,0x1d,0xc1,0xc2,0x29,0x76,0x28,0x36,0x73,0xb9,0xa2,0xba, 0x55,0xfe,0x3,0x93,0x35,0x9f,0x30,0xcf,0xc9,0x63,0x26,0xae,0x8a,0x72,0xda,0x90, 0xbc,0x65,0x17,0x12,0xf,0xec,0x83,0xf3,0xa4,0x25,0xf4,0x5a,0xed,0xb9,0xb0,0x15, 0xc3,0x6d,0x1c,0xd6,0x33,0x2d,0xac,0x41,0xc5,0xa7,0x4e,0x84,0xa5,0xb2,0x42,0xb, 0xe,0xd2,0x63,0xd9,0x70,0x2,0xe9,0x2d,0xfd,0x84,0x52,0x56,0xb8,0xdf,0xb9,0x1e, 0x9e,0xf3,0xd6,0x48,0xe8,0xaf,0xa0,0x90,0xa5,0x16,0x79,0x5f,0x4e,0x4f,0xb7,0x1b, 0x36,0xe7,0xec,0xab,0xb4,0x7d,0xc3,0xb8,0xc,0xaf,0xd,0x33,0x19,0x97,0xe0,0xe5, 0x31,0x91,0x7e,0xbf,0x67,0x1f,0x32,0xb1,0x20,0x2a,0xde,0x77,0x2c,0x1c,0xb4,0xf2, 0x56,0xa5,0xc4,0x4a,0x91,0x3c,0x4a,0x2e,0x92,0x42,0xe2,0xf6,0xdd,0xb4,0xb2,0x4f, 0xc1,0x73,0xd1,0x11,0xb0,0x2f,0xab,0xd7,0xfe,0x66,0x35,0xc1,0x79,0xee,0x2a,0x58, 0xd7,0xd2,0x4a,0x7d,0x22,0x8c,0xcc,0x48,0x48,0x63,0x6,0xfb,0xfd,0x30,0xd3,0xc7, 0xe5,0x7c,0xe7,0x61,0xc8,0x66,0xe2,0x48,0xfc,0x6b,0x1f,0x72,0x9,0x62,0x4,0x9b, 0x87,0x60,0x59,0x5e,0x5,0xf7,0xb9,0x6b,0x24,0x74,0x94,0xed,0x9a,0x2c,0x30,0x25, 0xe,0x2b,0x65,0x46,0xc2,0x70,0x9d,0xba,0xc,0xd6,0x95,0x35,0x88,0xdf,0xf5,0x34, 0x39,0xf1,0x14,0x62,0xb4,0x5f,0xb5,0x3b,0x4,0xcf,0xdb,0x57,0xc1,0x52,0xe7,0x46, 0x6e,0x2a,0x51,0x64,0x5,0x6a,0xa9,0xe4,0xe1,0xf4,0xc0,0x8d,0x2a,0x2a,0xc8,0xf9, 0x5b,0x47,0x8d,0x27,0x61,0x59,0x54,0x9,0xf7,0x7f,0x1f,0xe,0xd5,0xa6,0x62,0xea, 0x13,0xb7,0xb,0xa8,0x29,0x2e,0x1b,0x4c,0xd3,0xf2,0x7,0x8a,0xcd,0x2,0x75,0x38, 0x84,0xe0,0x37,0xee,0x41,0xe0,0x6b,0xb7,0x61,0xf2,0x9b,0x77,0x20,0xb9,0x6b,0x14, 0xe6,0xa,0x7,0x2c,0x6b,0x5a,0xa1,0x5a,0x33,0x98,0xfa,0xe8,0x5f,0x31,0xf5,0xe5, 0xdb,0x91,0x7c,0xb4,0xf,0x6a,0x3a,0x5b,0x3e,0xaa,0x45,0x81,0xc1,0x54,0xe6,0x9e, 0x8d,0x43,0x1b,0xa8,0x65,0x0,0x8a,0x1,0x2a,0x86,0xbd,0x78,0x50,0xc9,0x21,0x3b, 0x99,0x24,0x37,0x98,0x81,0x52,0xe3,0x46,0xe9,0x7c,0x4c,0xf9,0x2f,0x27,0xd1,0x3, 0x31,0x7a,0x9c,0xa0,0xc2,0x95,0xd7,0xa3,0xd2,0x5b,0xf7,0x3c,0xe4,0x68,0xbd,0x36, 0x51,0x27,0xce,0x65,0xb5,0x6,0x8c,0x74,0xd7,0x14,0x54,0x8b,0x15,0xf6,0x53,0x3a, 0x60,0x6e,0xa8,0x46,0xf2,0xaf,0xbb,0x90,0xea,0x1a,0x47,0xf2,0xbe,0x1e,0x38,0xcf, 0x58,0x3,0xfb,0x71,0xed,0xb4,0x92,0xa7,0x55,0x7f,0xcf,0xa4,0x0,0x9a,0xbc,0xdb, 0x30,0xb1,0x9b,0xb1,0x20,0xec,0x27,0x2c,0x84,0xed,0xec,0x15,0xc8,0xec,0x1e,0x46, 0xea,0xb1,0x1e,0xa4,0x9f,0x18,0x80,0x52,0xe5,0x84,0xf3,0xdd,0x6b,0xa1,0x7a,0xad, 0x50,0x23,0x19,0x11,0xba,0xd4,0x63,0x4d,0x72,0x1c,0x8a,0x49,0x2d,0x9f,0x28,0xc8, 0xe2,0x8e,0xc,0x15,0xb9,0xbc,0x9f,0xd7,0xfb,0x29,0x42,0x49,0xb8,0xde,0xb7,0x1e, 0x8e,0x37,0xaf,0x42,0x6a,0xdb,0x0,0x42,0xdf,0x7b,0x40,0x97,0xc5,0xb7,0xc0,0xa4, 0x96,0x74,0xd2,0x13,0xab,0x51,0xc3,0x31,0xc4,0x6f,0xde,0x89,0xe8,0xd,0x9b,0x10, 0xbb,0x69,0xb,0x32,0xfb,0xa6,0xe4,0x4f,0xbe,0x2f,0x9e,0x8c,0xea,0xcf,0xbe,0x81, 0xce,0xcb,0x8d,0xe0,0x77,0xee,0xc2,0xd8,0x5b,0x7f,0x8d,0xf0,0xaf,0x1e,0x15,0x1, 0x4e,0x45,0x1f,0x2e,0x26,0x82,0x98,0x46,0x49,0xc9,0x5c,0x32,0xce,0x9b,0x1c,0xae, 0x87,0xbd,0xc,0x33,0x40,0xc5,0xb0,0x17,0x6d,0xdc,0x3d,0xe7,0xb3,0xca,0xaf,0xc9, 0x67,0x46,0x67,0xfe,0xdd,0x6e,0xd6,0x2b,0xb5,0x52,0xc2,0x28,0x4a,0xf9,0x40,0x6e, 0x34,0x84,0x4c,0x4f,0x40,0x1a,0xed,0x2c,0xf5,0x6e,0xc9,0x63,0x64,0xfb,0x3,0xe2, 0x98,0xed,0x6b,0xea,0xe1,0x58,0xb3,0x10,0xa9,0x2d,0x43,0x88,0x5e,0xfb,0x24,0x32, 0xa3,0x93,0x70,0x9f,0x47,0x8c,0x63,0x61,0xa5,0x80,0x41,0x7a,0x90,0xc0,0x27,0xa1, 0x1,0x44,0x76,0x34,0x4c,0x0,0x13,0x85,0x75,0x7d,0x33,0x9c,0x27,0x2c,0x11,0xcc, 0xa,0xfd,0xf4,0x61,0xa4,0x36,0xf,0xc3,0x7a,0x78,0x2b,0x6c,0x27,0x74,0x12,0x80, 0xd9,0x91,0x9b,0x88,0x22,0x33,0xa8,0x1d,0x83,0x26,0xed,0x9e,0xd3,0xe7,0x75,0x95, 0xdc,0x1e,0x89,0xb4,0xc8,0xc4,0x14,0x7,0x54,0xea,0x33,0xd3,0x93,0x19,0x98,0xdd, 0x4e,0x54,0xfc,0xdf,0xe9,0xc4,0xb2,0xac,0x8,0xff,0xfa,0x71,0x24,0xee,0xed,0x92, 0x10,0x9a,0x5a,0x54,0xac,0x87,0x1a,0x4d,0xc3,0xd2,0x51,0x8f,0x86,0x7f,0x7f,0x4, 0xcd,0x5b,0xbe,0x80,0xd6,0x87,0x3e,0xd,0xd7,0x59,0x4b,0xe5,0xaf,0xd6,0x26,0x2f, 0x2a,0xbf,0x79,0x26,0x9a,0x1e,0xb8,0x4,0xbe,0x6f,0xbd,0x45,0x8e,0x3b,0x7a,0xc5, 0x46,0x64,0x87,0x2,0x85,0x81,0x58,0x7,0x50,0x4b,0x31,0xec,0xd5,0x69,0x3f,0xa0, 0xed,0x24,0x68,0x89,0x79,0xc3,0xc,0x50,0x31,0xec,0x25,0xb9,0xb0,0x56,0x33,0x1c, 0xc4,0x1e,0x14,0xab,0x17,0x91,0xeb,0x1f,0x46,0xf4,0x2f,0xdb,0x89,0x99,0x24,0x25, 0x79,0x9d,0x25,0x10,0x31,0x59,0xc9,0xed,0x9e,0xc6,0x4e,0xd5,0x82,0xc8,0xb5,0x8f, 0x21,0xf1,0x70,0x2f,0x72,0xb1,0xc,0x32,0x43,0x21,0x4,0x2f,0xbf,0x1f,0x89,0xfe, 0x61,0x58,0x8e,0x5e,0x8,0x13,0xe7,0x36,0xfc,0x31,0xe4,0x6,0x3,0xb0,0x34,0x38, 0xa0,0x34,0xf8,0x60,0x3d,0xba,0x85,0x1c,0x76,0x1a,0xd1,0x5f,0x3c,0x6,0xeb,0x8a, 0x16,0x58,0xd7,0x34,0xc3,0xe4,0x75,0x42,0xb1,0x7b,0x80,0x68,0x1c,0xd0,0x99,0x4a, 0x66,0x20,0xcc,0x93,0x8,0x60,0x5e,0xe0,0x83,0xfd,0x90,0x66,0xd8,0x56,0xb6,0x20, 0x76,0xfb,0x56,0x64,0x76,0x8e,0xc2,0xfd,0xe6,0xe5,0xb0,0x70,0x37,0x7c,0x8d,0xb, 0x39,0x62,0x1b,0xb9,0x7e,0xd,0x54,0x4c,0x5c,0xae,0xec,0x54,0x10,0x7f,0xa8,0xb, 0xa9,0x3d,0x13,0x72,0x4c,0xb9,0x89,0x4,0x92,0xf,0xf5,0x33,0x84,0xc0,0xba,0xb2, 0x5e,0xc7,0x14,0x7d,0xa6,0xa,0xf,0x7a,0x89,0xa4,0xe0,0x5c,0xdc,0x0,0xf7,0x7b, 0xd7,0x23,0x47,0xcc,0x28,0x79,0x5f,0x97,0x0,0x90,0x62,0x29,0x19,0x4,0xc6,0xe0, 0x60,0xd6,0x4a,0x8f,0x15,0x87,0x4d,0x2b,0x2b,0x36,0xe9,0xda,0xbd,0x31,0xda,0x7f, 0x30,0x5,0x54,0xbb,0xe0,0x38,0xb9,0x43,0xaf,0x5c,0x33,0x17,0x80,0x4b,0x86,0x7a, 0xa9,0xa5,0xf2,0x8a,0x86,0xbd,0x8a,0xc3,0x5d,0x6f,0xa1,0xed,0x32,0x68,0xa5,0xc3, 0x86,0xbd,0x6,0xcd,0x48,0xd4,0xbf,0x8c,0xe6,0x3c,0x7d,0x19,0x7c,0x9f,0x3b,0x15, 0x81,0xcb,0x37,0xc0,0xff,0xee,0x6b,0x60,0x3b,0xac,0x85,0x38,0x40,0x6,0x16,0xc5, 0x83,0x9a,0x1b,0x2f,0x80,0xe7,0x2d,0x87,0x20,0x75,0xc9,0x29,0x8,0x5d,0xf9,0x6f, 0x8c,0x9e,0xf3,0x2b,0x2,0x88,0x2a,0x64,0x27,0xe3,0xc8,0x6c,0x23,0xf6,0xf1,0x96, 0x75,0xa8,0xfc,0xd6,0xe9,0x1a,0x1b,0xe8,0xd,0x21,0xb1,0xbb,0x17,0xf6,0xe3,0x97, 0xc8,0xc,0x12,0xc7,0x1b,0x97,0x41,0xf9,0xf2,0xbf,0x90,0xa,0xf7,0xc1,0x7d,0xc4, 0x61,0xc2,0x36,0x4c,0x3e,0x2,0x8,0x9f,0x19,0x99,0x3d,0x63,0xc4,0xa,0x52,0x50, 0x2b,0x9d,0x48,0x3c,0xb0,0x9f,0x80,0x2c,0xc,0xc5,0x65,0x87,0xa5,0xd9,0x3,0xdb, 0xb1,0x8b,0x10,0xdd,0xb1,0x9,0xd6,0x86,0x65,0xb0,0x1d,0xb7,0x48,0x23,0x54,0xb, 0x2b,0x90,0xba,0x6b,0x18,0x49,0x62,0x2f,0x76,0x7a,0xcc,0xb6,0xa6,0x9,0x15,0x97, 0xbe,0xe,0xc1,0xef,0x6e,0xc0,0xd8,0xdb,0x7e,0xa,0x53,0x43,0x25,0xd4,0x58,0x1a, 0x99,0x4d,0x93,0x70,0xbe,0xff,0x58,0xb8,0xde,0xb4,0x52,0x3b,0x39,0x26,0x33,0x61, 0x62,0x38,0x81,0x49,0x64,0x9,0x14,0x98,0x93,0xf9,0xbe,0x7c,0x1a,0x92,0x9b,0x6, 0x11,0x7b,0x72,0x33,0xcc,0x70,0x22,0x1b,0xca,0x14,0xae,0x5,0xe7,0x72,0x52,0xbb, 0xf6,0x63,0xf4,0xf4,0x9f,0x10,0xb0,0x28,0x12,0xf6,0xab,0xbe,0xf4,0x4c,0xb8,0x2e, 0x5c,0x83,0xc0,0xf7,0x1f,0x40,0xe4,0xce,0x4d,0x30,0xd9,0x89,0x95,0xed,0x9e,0x82, 0x52,0xe3,0x81,0xfb,0xb3,0xc7,0xc2,0xd2,0xe2,0x2b,0x6f,0xe,0x34,0xda,0x3c,0x5e, 0xcd,0xc6,0x73,0x4f,0xfe,0x4b,0x7,0x16,0xc3,0x5e,0xcb,0x41,0x9a,0xaf,0x91,0x19, 0x97,0xe1,0xa5,0x37,0x29,0x81,0xb5,0x5b,0xc8,0x91,0xb7,0x91,0xa3,0x6e,0x21,0x87, 0xef,0x0,0x58,0x2b,0xab,0xda,0x9,0xdb,0xfa,0x76,0x2,0x88,0xe,0x58,0x68,0x65, 0x6e,0x3f,0x91,0x1c,0xf9,0x92,0x46,0x6d,0xec,0x2f,0x39,0x5e,0xcb,0xc2,0x7a,0x54, 0x7c,0xf4,0x78,0x54,0x7d,0xfe,0x14,0x58,0x17,0x54,0xe9,0xa1,0xa3,0xa4,0xb8,0x55, 0xc7,0xdb,0x56,0xc1,0xb1,0xae,0x15,0xe6,0x6,0x2f,0xcf,0x1a,0x20,0xe6,0xd1,0x8, 0xcf,0x39,0xeb,0x60,0xed,0xa8,0x91,0xaa,0x2d,0xc5,0x65,0x81,0x79,0x69,0x3,0xec, 0xc7,0x74,0x12,0x1b,0x30,0x21,0xe7,0x8f,0xc2,0xbe,0xba,0x89,0x56,0xff,0xcb,0xa1, 0x54,0x10,0x43,0x20,0x56,0x62,0x76,0x90,0xc3,0x7e,0xf7,0x61,0x70,0x9c,0xd0,0x49, 0xaf,0x31,0xc3,0x4c,0xaf,0x31,0x55,0x39,0xe1,0x38,0x72,0x11,0xac,0x4b,0x6a,0x25, 0xa1,0x6e,0x3b,0xb2,0xd,0xe6,0x66,0xda,0x77,0x38,0x29,0x8d,0x90,0xa6,0x6,0x97, 0xf4,0xcd,0xf8,0x3e,0x73,0x32,0xcc,0x95,0xce,0x42,0x4c,0x4b,0x4d,0x67,0x60,0x5b, 0x46,0xfb,0x3b,0x7d,0x31,0x4c,0x95,0x2e,0x62,0x4b,0xe,0x2,0xc6,0x3a,0x98,0x9c, 0xc4,0x38,0x8e,0x5c,0xa,0xd7,0xe9,0x4b,0x60,0x69,0xd3,0x64,0xdc,0xd5,0x64,0x2, 0x96,0xe,0xfa,0x5b,0x4d,0x5,0x2c,0x95,0x6e,0x98,0x6a,0x3d,0xb0,0x1f,0x45,0xfb, 0xec,0xac,0x41,0x7a,0xf7,0x18,0x32,0x7b,0xc7,0x61,0x4a,0x9b,0xe0,0x38,0x6a,0x21, 0xbc,0x9f,0x3f,0xd,0x9e,0x77,0xac,0x15,0x39,0x19,0x4d,0x5a,0x45,0xd5,0x48,0x8b, 0x91,0xac,0x7f,0x35,0x1a,0xd7,0x98,0x7f,0x1c,0x9a,0xba,0x70,0xcc,0xb8,0x1c,0x86, 0x19,0x1d,0xf5,0x2f,0x1f,0xac,0x68,0xff,0xcf,0xb,0x22,0x26,0xb3,0xc8,0x25,0x33, 0x30,0x89,0x52,0xa1,0x45,0x97,0x72,0x2f,0x76,0x8a,0x23,0xc6,0x13,0x20,0x69,0x65, 0x6f,0xb7,0xc2,0xe4,0xb6,0x14,0xdf,0x43,0x92,0xfa,0x39,0x51,0x12,0xe6,0x8e,0x78, 0x2e,0x45,0x16,0x7,0xcb,0xdd,0xec,0xf4,0xb8,0x42,0xcc,0x45,0x35,0xe9,0xbb,0x63, 0x89,0x79,0x9e,0x1c,0x69,0x53,0x34,0xa5,0xab,0xb4,0x5e,0xca,0xc5,0xaf,0xe3,0x5e, 0xf,0xe,0x59,0x25,0xb4,0xbf,0x6b,0xd3,0x10,0xf5,0x63,0x4c,0x72,0xa8,0x8a,0xfe, 0x6e,0xd1,0x35,0xa8,0xf4,0xa8,0x68,0x8e,0xbb,0xe5,0x53,0xb4,0xf,0xbb,0x89,0xd8, 0x90,0xad,0xfc,0x98,0xe8,0xb6,0xe1,0x63,0x92,0x4,0x3a,0x1d,0x3,0xa,0xd2,0x5c, 0x4a,0x21,0xa7,0x23,0xfb,0x51,0xf4,0xd9,0x3a,0x5c,0x8,0x20,0xf,0x9b,0x50,0x18, 0x4a,0x6f,0xd5,0xaa,0xe1,0x18,0x6c,0xd5,0x48,0x5a,0xfa,0x62,0x14,0x8f,0x55,0xc0, 0x58,0xdb,0x93,0x76,0x7c,0x12,0xfe,0x32,0xa9,0x33,0xe6,0xd6,0x1b,0xf6,0x8a,0xdb, 0x56,0x68,0xbd,0x27,0xbb,0x8d,0x4b,0x61,0x98,0x1,0x2a,0xff,0x9,0x50,0x79,0xd6, 0x90,0xcd,0xf3,0x99,0x8c,0x59,0xfe,0xe2,0x42,0xdf,0xc6,0xf4,0x41,0x52,0x52,0x19, 0x35,0x4d,0x18,0x4b,0xd5,0x52,0x12,0x79,0x85,0xdf,0xe7,0x5a,0xe1,0xe7,0xfd,0xbc, 0x5a,0xc4,0xba,0x3,0x3c,0x47,0xcb,0x6c,0x68,0xfa,0x55,0xa6,0xe2,0x59,0xe8,0x4d, 0x2d,0x33,0x55,0xac,0xe,0x1c,0xb3,0x52,0xb,0xaf,0x53,0x66,0x39,0x6b,0x7d,0x3f, 0x5c,0x36,0xa0,0xeb,0x66,0x29,0x46,0xb6,0xfe,0xd5,0x64,0xdf,0x82,0x56,0x2a,0x6c, 0xe4,0x4e,0xc,0x33,0x40,0xc5,0x30,0xc3,0xc,0x3b,0x68,0xe3,0x8a,0x2e,0xce,0x9d, 0x18,0x52,0xf5,0x86,0x19,0xa0,0x62,0x98,0x61,0x86,0xbd,0x28,0xfb,0x3,0x6d,0x1f, 0xa1,0x2d,0x68,0x5c,0xa,0xc3,0xc,0x50,0x31,0xcc,0x30,0xc3,0xe,0xd6,0x58,0xa6, 0xe1,0x52,0x1d,0x54,0xc,0x33,0xcc,0x0,0x15,0xc3,0xc,0x33,0xec,0x45,0xb1,0x13, 0xae,0xec,0x32,0x4a,0x85,0xd,0x33,0x40,0xc5,0x30,0xc3,0xc,0x3b,0x68,0xe3,0xdc, 0x9,0x87,0xba,0x6e,0x33,0x2e,0x85,0x61,0x6,0xa8,0x18,0x66,0x98,0x61,0x2f,0xc6, 0xae,0xa4,0xed,0xb,0x30,0xa6,0x32,0x1a,0x66,0x80,0x8a,0x61,0x86,0x19,0xf6,0x22, 0x6c,0x17,0x6d,0x1f,0x80,0x31,0x44,0xcb,0x30,0x3,0x54,0xc,0x33,0xcc,0xb0,0x17, 0x61,0xdc,0x6b,0xf2,0x1d,0x68,0xbd,0x27,0x46,0xdf,0x89,0x61,0x6,0xa8,0x18,0x66, 0x98,0x61,0x7,0x6d,0x8f,0xe8,0xec,0x64,0x97,0x71,0x29,0xc,0x33,0x40,0xc5,0x30, 0xc3,0xc,0x3b,0x58,0xe3,0x5e,0x13,0x9e,0xc8,0xf8,0x63,0xe3,0x52,0x18,0x66,0x80, 0x8a,0x61,0x86,0x19,0xf6,0x62,0xec,0x5a,0x68,0x89,0xf8,0x11,0xe3,0x52,0x18,0x66, 0x80,0x8a,0x61,0x86,0x19,0x76,0xb0,0xc6,0x2,0x90,0x5c,0x26,0x6c,0x24,0xe2,0xd, 0x33,0x40,0xc5,0x30,0xc3,0xc,0x3b,0x68,0xb,0xea,0xcc,0xe4,0x97,0xd0,0xb5,0xa2, 0xd,0x33,0xcc,0x0,0x15,0xc3,0xc,0x33,0xec,0x85,0x1a,0x57,0x72,0xfd,0x86,0xb6, 0x2f,0x43,0x93,0x5a,0x31,0xcc,0x30,0x3,0x54,0xc,0x33,0xcc,0xb0,0x83,0xb2,0x9b, 0x69,0xfb,0x2c,0x6d,0xfb,0x8c,0x4b,0x61,0x98,0x1,0x2a,0x86,0x19,0x66,0xd8,0xc1, 0x1a,0xe7,0x4d,0x58,0xab,0xcb,0x90,0xa6,0x37,0xcc,0x0,0x15,0xc3,0xc,0x33,0xec, 0xa0,0x8d,0xa7,0x2f,0x72,0xf3,0xe2,0x75,0xc6,0xa5,0x30,0xcc,0x0,0x15,0xc3,0xc, 0x33,0xec,0x60,0xad,0x5b,0x7,0x93,0x6b,0x61,0x24,0xe1,0xd,0x33,0x40,0xc5,0x30, 0xc3,0xc,0x3b,0x48,0x1b,0xd4,0xc1,0x84,0x13,0xf1,0x86,0xb4,0x8a,0x61,0x6,0xa8, 0x18,0x66,0x98,0x61,0x7,0x65,0x3c,0xd7,0xe4,0x1b,0x3a,0x98,0xc4,0x8d,0xcb,0x61, 0x98,0x1,0x2a,0x86,0x19,0x66,0xd8,0xc1,0x18,0x97,0x4,0xb3,0xe8,0xe3,0xcf,0x61, 0x48,0xd2,0x1b,0x66,0x80,0x8a,0x61,0x86,0x19,0x76,0x90,0xc6,0x8d,0x8b,0x3f,0xd0, 0x37,0x3,0x4c,0xc,0x33,0x40,0xc5,0x30,0xc3,0xc,0x3b,0x28,0xe3,0x30,0x17,0x8b, 0x3d,0x5e,0xa9,0x3,0x8b,0x61,0x86,0x19,0xa0,0x62,0x98,0x61,0x86,0xbd,0x60,0xdb, 0xae,0x83,0x9,0x97,0x6,0x1b,0x9,0x78,0xc3,0xc,0x50,0x31,0xcc,0x30,0xc3,0xe, 0xca,0x36,0xd0,0x76,0x85,0xfe,0xd3,0x30,0xc3,0xc,0x50,0x31,0xcc,0x30,0xc3,0x5e, 0xb0,0xa5,0x74,0x46,0xf2,0x63,0x9d,0xa1,0x18,0x66,0x98,0x1,0x2a,0x86,0x19,0x66, 0xd8,0xb,0x36,0xae,0xe4,0xfa,0xb9,0xe,0x26,0xe3,0xc6,0xe5,0x30,0xcc,0x0,0x15, 0xc3,0xc,0x33,0xec,0x60,0x6c,0xbb,0xe,0x26,0xd7,0xc2,0xe8,0x31,0x31,0xcc,0x0, 0x15,0xc3,0xc,0x33,0xec,0x20,0x8c,0x2b,0xb7,0xae,0xd3,0x81,0xe4,0x49,0xe3,0x72, 0x18,0x66,0x80,0x8a,0x61,0x86,0x19,0x76,0x30,0xb6,0x41,0x7,0x92,0x9b,0xd,0x56, 0x62,0x98,0x1,0x2a,0x86,0x19,0x66,0xd8,0xc1,0x58,0xb7,0xe,0x24,0x2c,0xa1,0x32, 0x68,0x5c,0xe,0xc3,0xc,0x50,0x31,0xcc,0x30,0xc3,0x5e,0xa8,0xc5,0x75,0x36,0xc2, 0xa3,0x7a,0x8d,0x19,0x26,0x86,0x19,0xa0,0x62,0x80,0x8a,0x61,0x86,0xbd,0x60,0xe3, 0x52,0xe0,0xd,0x3a,0x98,0xdc,0x4,0xa3,0xe3,0xdd,0x30,0xc3,0xc,0x50,0x31,0xcc, 0xb0,0x17,0x68,0x41,0x1d,0x48,0x6e,0xd4,0x7f,0x1a,0x40,0x62,0x98,0x61,0x6,0xa8, 0x18,0x66,0xd8,0xb,0xb2,0x11,0xda,0x6e,0xd5,0xb7,0xd,0x30,0x64,0x53,0xc,0x33, 0xcc,0x0,0x15,0xc3,0xc,0x7b,0x81,0xd6,0xad,0xb3,0x91,0xdb,0x68,0x7b,0xc8,0xb8, 0x1c,0x86,0x19,0x66,0x80,0x8a,0x61,0x86,0xbd,0x10,0x8b,0xe8,0xe0,0xc1,0x1b,0xe7, 0x48,0x76,0x19,0x97,0xc4,0x30,0xc3,0xc,0x50,0x31,0xcc,0xb0,0xe7,0x6b,0xc1,0x12, 0x10,0xb9,0x97,0xb6,0xc7,0x8d,0x4b,0x62,0x98,0x61,0x6,0xa8,0x18,0x66,0xd8,0xf3, 0x35,0xd6,0xd9,0x7a,0xa0,0x4,0x44,0xb6,0x1a,0x97,0xc4,0x30,0xc3,0xc,0x50,0x31, 0xcc,0xb0,0xe7,0x6b,0xfb,0x74,0xe0,0x60,0x10,0xe1,0xe4,0xba,0x11,0xce,0x32,0xcc, 0x30,0x3,0x54,0xc,0x33,0xec,0x79,0xd9,0x76,0x1d,0x40,0x78,0x7b,0x52,0xff,0x69, 0x94,0xfa,0x1a,0x66,0x98,0x1,0x2a,0x86,0x19,0x76,0x40,0xcb,0xea,0x60,0xc1,0x8c, 0x63,0xb7,0xce,0x44,0x76,0xc3,0x8,0x63,0x19,0x66,0x98,0x1,0x2a,0x86,0x19,0x36, 0x8b,0x31,0xc3,0x48,0xe9,0xac,0x23,0xa2,0x3,0x6,0xcf,0x18,0xe9,0x83,0xa6,0x9f, 0x35,0x62,0x5c,0x22,0xc3,0xc,0x33,0x40,0xc5,0xb0,0xd7,0x9e,0xc5,0x51,0x9e,0xbf, 0x98,0xfe,0xef,0x3e,0x1d,0x2c,0x76,0xeb,0xe0,0xb1,0x1d,0x46,0x33,0xa1,0x61,0x86, 0xcd,0x3b,0xfb,0xff,0x2,0xc,0x0,0x63,0x9e,0x10,0xbc,0x49,0x84,0xe6,0xe0,0x0, 0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82, // C:/SNIR_PROJET/Superviseur/Superviseur/QSuperviseur/img/logoSUB.png 0x0,0x0,0x26,0x7a, 0x89, 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, 0x0,0x0,0x62,0x0,0x0,0x0,0x54,0x8,0x6,0x0,0x0,0x0,0x79,0x86,0xe2,0xbe, 0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0x2,0x76,0x0,0x0,0x2,0x76, 0x1,0xda,0x60,0xe3,0x4f,0x0,0x0,0x0,0x20,0x63,0x48,0x52,0x4d,0x0,0x0,0x7a, 0x25,0x0,0x0,0x80,0x83,0x0,0x0,0xf9,0xff,0x0,0x0,0x80,0xe9,0x0,0x0,0x75, 0x30,0x0,0x0,0xea,0x60,0x0,0x0,0x3a,0x98,0x0,0x0,0x17,0x6f,0x92,0x5f,0xc5, 0x46,0x0,0x0,0x26,0x0,0x49,0x44,0x41,0x54,0x78,0xda,0xec,0xbd,0x79,0xb4,0x65, 0xd7,0x5d,0xdf,0xf9,0xd9,0x7b,0x9f,0x73,0xe7,0x79,0x7c,0xf3,0x50,0xaf,0x24,0x95, 0x54,0x1a,0xcb,0x48,0x96,0x19,0x3c,0xe1,0x60,0x37,0x18,0x92,0x90,0x15,0x43,0x2, 0x9,0xa4,0x49,0x42,0x7b,0xad,0xee,0xce,0xea,0x34,0x84,0x5,0x4,0xdb,0x38,0x31, 0x83,0x69,0xba,0xb3,0x48,0x9a,0x38,0xe9,0x15,0x86,0x5,0x9,0x1,0x2,0xe,0x6, 0xc,0xc6,0x26,0xc4,0x78,0x90,0x25,0x97,0x25,0x59,0x96,0x50,0x95,0xea,0xd5,0x9b, 0xa7,0xfb,0xee,0x3c,0xdf,0x7b,0x86,0xbd,0xfb,0x8f,0x73,0xde,0xab,0x2a,0x45,0x36, 0xf2,0x52,0xc9,0x65,0xb3,0x6a,0xaf,0x7a,0xeb,0xd,0xf7,0xdd,0x7b,0xcf,0x3b,0xdf, 0xbd,0xf7,0xef,0xfb,0xfb,0xfe,0xbe,0xbf,0x5d,0xc2,0x18,0xc3,0xed,0x71,0xeb,0x87, 0xbc,0x7d,0xb,0x6e,0x3,0x71,0x7b,0xdc,0x6,0xe2,0x36,0x10,0xb7,0xc7,0x6d,0x20, 0xbe,0xba,0x87,0x75,0xfb,0x16,0x7c,0x25,0xc7,0x9,0x45,0x35,0x80,0x8,0x3f,0x4b, 0xc0,0x20,0x6e,0xd3,0xd7,0x5b,0x8d,0xd,0xe6,0xf6,0xd6,0xf4,0xd5,0x30,0x4,0xc2, 0x88,0xdb,0x2b,0xe2,0xaf,0x56,0x8c,0x78,0xf6,0x1f,0xfe,0xdf,0xc6,0xfe,0x5c,0x9, 0x3f,0x3b,0x45,0x20,0x50,0x52,0x20,0x84,0xc0,0x18,0x3,0x52,0x60,0x2b,0xb,0x65, 0x49,0x2c,0x1b,0x94,0x65,0x50,0x96,0x87,0x30,0xe,0xbe,0x76,0xd1,0x9e,0x8f,0xeb, 0xf9,0x8c,0x47,0x53,0xda,0xbd,0x11,0x8d,0x66,0x87,0xe1,0x70,0xcc,0x78,0xe4,0x31, 0x18,0x8d,0x70,0xb5,0x8f,0x20,0x41,0x54,0xa6,0x88,0xda,0x9,0x12,0xf1,0x8,0xd9, 0x7c,0x8a,0x99,0x6a,0x9e,0x54,0x5a,0x12,0x8d,0x3b,0xd8,0xd2,0x30,0x1c,0x4d,0xd9, 0x3d,0x38,0xe6,0xe8,0xa8,0xc5,0x70,0x68,0x98,0x8e,0xa3,0xd8,0x2a,0x46,0x2e,0x9f, 0x62,0x71,0x21,0x4f,0x3a,0xe7,0x13,0x8f,0x19,0x46,0x63,0x8f,0xdd,0x9d,0x63,0xea, 0x8d,0x2e,0xdd,0xfe,0x0,0x7,0x8d,0x2,0x24,0x16,0x12,0x71,0xb2,0x53,0xbc,0xcc, 0xc9,0x6c,0x30,0x8,0x26,0xc,0xa9,0x9c,0x3d,0xc3,0xf7,0x5d,0xf9,0xd7,0xe2,0x96, 0x2,0xf1,0xc2,0xce,0x88,0xad,0xa7,0x7f,0x97,0x64,0xae,0x80,0x31,0x3e,0x42,0xa, 0xa4,0x10,0x18,0x23,0x90,0x52,0x12,0xb1,0x15,0x76,0x44,0x11,0x8d,0x45,0x88,0xc5, 0x22,0xc4,0x13,0x51,0x92,0xf1,0x18,0xa9,0x54,0x9c,0x44,0x32,0x4e,0x3a,0x15,0x21, 0x6b,0xd9,0xcc,0x2a,0x81,0x90,0x2,0xe3,0x1b,0x7a,0xdd,0x11,0xcd,0x76,0x8f,0x4e, 0xbb,0x4f,0xb3,0xd5,0xa7,0xd3,0xed,0x33,0x1a,0xb6,0xe8,0x3b,0x2e,0x8d,0x96,0x60, 0xab,0xad,0x88,0x45,0x6d,0xa,0xc5,0x2c,0x95,0x4a,0x8e,0x99,0x4a,0x9e,0x7,0x57, 0xef,0x47,0x2a,0x41,0xab,0xd5,0x61,0x67,0xa7,0xc1,0xee,0x6e,0x9d,0x5a,0x7b,0x9b, 0xc3,0x17,0xb6,0x89,0xc6,0x2d,0xe6,0x67,0x4b,0x2c,0x2f,0xcf,0xf0,0x9a,0x37,0xdc, 0xf,0xd2,0xb0,0xbf,0xdf,0xe4,0xca,0xfa,0x1,0x9d,0x76,0xf,0xed,0x83,0x65,0x29, 0x94,0x92,0xbc,0xdc,0x4d,0x42,0xb,0x83,0x44,0xa0,0x9a,0x36,0xf1,0x7c,0xfa,0xab, 0x80,0x35,0x19,0x85,0x41,0x82,0x10,0x60,0x4,0xbe,0x7,0x8e,0xf6,0x30,0xc6,0xa0, 0x84,0x64,0x3a,0x5,0x84,0x40,0x8a,0x51,0x48,0x16,0xc,0x96,0x65,0x11,0x8d,0xd9, 0xd8,0x51,0x9b,0x64,0x3c,0x4a,0x3e,0x97,0x22,0x9b,0x4d,0x92,0x49,0x27,0x88,0x27, 0x6c,0xb2,0xd9,0x4,0x85,0x7c,0x1a,0xc7,0x71,0xe9,0xd,0xc6,0x74,0xba,0x7d,0x8e, 0x8e,0x3a,0x34,0x1b,0x3d,0xfa,0xfd,0x11,0x53,0xc7,0x63,0x82,0xc7,0xc1,0x41,0x93, 0xc3,0x83,0x16,0x1b,0xe9,0x18,0x95,0x4a,0x9e,0xb9,0xd9,0x22,0x95,0x72,0x96,0xaf, 0x7b,0xe8,0x2c,0xab,0xab,0xb3,0xec,0xee,0x1c,0xb3,0xbf,0xdf,0xa0,0xd1,0xea,0xb3, 0xbe,0x5e,0xe3,0xf0,0xa8,0x4d,0xb9,0x98,0x66,0x61,0xb1,0xc2,0xc2,0x5c,0x89,0xb9, 0xd9,0x3c,0x3b,0x3b,0xd,0x36,0xb7,0x6b,0x34,0xdb,0x3d,0x3c,0x47,0x13,0xb1,0x82, 0xbf,0xc5,0x20,0x10,0x98,0x53,0x96,0xf3,0x62,0x7c,0x84,0xe,0x56,0x3c,0xe8,0xf0, 0xe3,0x15,0x84,0x8a,0x9b,0x11,0x23,0x3e,0xfb,0x3,0xff,0xc2,0xb8,0x17,0xd,0x32, 0x2f,0xd0,0xda,0xe0,0xfb,0x1a,0xcf,0xf5,0xf0,0xb5,0x8f,0xe3,0xb8,0x4c,0xa7,0x3e, 0x8e,0xeb,0x32,0x9e,0xb8,0x4c,0xc7,0x53,0x8c,0xbe,0x46,0xe2,0xb4,0xe,0xfe,0x16, 0xcb,0x56,0x28,0x4b,0x12,0x8d,0xda,0x64,0x32,0x9,0xf2,0xf9,0x34,0xf9,0x5c,0x9a, 0x42,0x2e,0x45,0x3a,0x9d,0x40,0x60,0x98,0x3a,0x2e,0x83,0xc1,0x98,0x7a,0xab,0x4b, 0xfd,0xb8,0xc7,0xd1,0x51,0x9b,0xd1,0x78,0x8a,0x92,0x12,0xad,0xd,0x42,0x1a,0xe2, 0x91,0x8,0x99,0x5c,0x8a,0x99,0xd9,0x1c,0xcb,0x4b,0x55,0x32,0xe9,0x4,0xbd,0xde, 0x88,0xc3,0xc3,0x36,0x3b,0xbb,0xc7,0x1c,0x1d,0x35,0xf1,0x7c,0x83,0x6d,0x5b,0x14, 0xf2,0x29,0xd6,0xd6,0x66,0x99,0x9b,0x2f,0x62,0xc,0xec,0xed,0xd5,0xd9,0xb8,0x7a, 0x48,0xbb,0xdd,0x47,0x59,0x16,0x52,0x2a,0xa4,0x8,0x37,0x2b,0x13,0xc0,0x42,0x8, 0x87,0x46,0x22,0x44,0x30,0xf7,0x26,0xcd,0x1,0xa5,0x87,0x96,0x79,0xc7,0x67,0x7f, 0x5a,0xdc,0x52,0x20,0x36,0x7f,0xfc,0x5d,0xa6,0xb4,0x79,0x3f,0x4e,0xa2,0x17,0xb2, 0x65,0x1f,0x81,0x4,0x3,0xae,0xe7,0xe3,0xba,0x1e,0xae,0xef,0xe3,0x7b,0x9a,0xc9, 0xc4,0xa5,0x3f,0x18,0xd3,0xe9,0xe,0xe8,0x75,0x86,0x4c,0xa6,0xe,0x5a,0x83,0xe3, 0x7a,0x78,0xbe,0x8f,0x10,0x12,0x5b,0x4a,0x84,0x84,0x58,0xd4,0x22,0x91,0x8c,0x91, 0xcd,0x26,0x98,0x9b,0x2b,0x51,0x2a,0xe6,0xb0,0x94,0xc4,0xb2,0x15,0xce,0xd4,0xa7, 0xdd,0xee,0x71,0x54,0x6f,0x73,0x70,0xd8,0x64,0xd0,0x9f,0x9e,0x82,0x2f,0xa4,0x85, 0x25,0x25,0xe9,0x54,0x8c,0xd9,0xf9,0x2,0x2b,0xcb,0x15,0xd2,0xc9,0x4,0x8e,0xe3, 0xb2,0x7f,0xd8,0x62,0x63,0xe3,0x90,0x56,0xbb,0x87,0xeb,0x79,0x44,0xec,0x8,0xf9, 0x5c,0x8a,0x95,0xa5,0x2a,0xf3,0xb,0x45,0xa6,0xae,0xc7,0xfe,0x5e,0x93,0xcd,0xcd, 0x3,0xc6,0x93,0x29,0xc2,0x48,0xa4,0x12,0x20,0xc,0x98,0x20,0xf6,0x5,0x58,0x84, 0x11,0x42,0x8a,0x9b,0x2,0xc4,0x4d,0xd9,0x9a,0x24,0x1a,0xa5,0x14,0x52,0x9,0x24, 0x12,0x23,0x2d,0x8c,0x36,0x8,0x61,0x90,0xb6,0x22,0x12,0xb7,0x43,0xd4,0x5,0x46, 0x1b,0x7c,0xed,0xe3,0x79,0x1a,0x5f,0x6b,0x7c,0x5f,0x33,0x18,0x8c,0xa9,0x1d,0xb5, 0x69,0x75,0x86,0x8c,0x47,0x23,0x46,0x63,0x7,0xdf,0x83,0x91,0xf6,0x18,0x4d,0x6, 0xb4,0xdb,0x43,0xf6,0xf6,0x5a,0xd8,0xb6,0x24,0x9b,0x4d,0x31,0x37,0x5f,0xa2,0x54, 0x4c,0x53,0xae,0x64,0x29,0x95,0x32,0x9c,0x59,0x9d,0x61,0x38,0x98,0xb0,0xbd,0x7b, 0x4c,0xad,0xd6,0x61,0x38,0x98,0xa0,0x3d,0x8f,0x6e,0x7f,0x48,0xff,0xca,0x94,0xed, 0xed,0x63,0xd2,0xe9,0x38,0xcb,0xcb,0x15,0xe6,0x66,0xb,0x2c,0x2e,0x94,0x69,0xb7, 0xfa,0xac,0x6f,0x1c,0x70,0xb8,0xdf,0xa4,0x7e,0xdc,0xa5,0xdb,0x1b,0x71,0x69,0x7d, 0x8f,0xc5,0x85,0x12,0x2b,0x4b,0x55,0xce,0xac,0x54,0xd8,0x3f,0x68,0xf2,0xc2,0xb, 0xfb,0xf4,0x7,0x63,0x94,0xa5,0x10,0x42,0x4,0x78,0x18,0x13,0xae,0x6,0x71,0xd3, 0x58,0xd3,0x4d,0x59,0x11,0x8f,0x7d,0xdf,0x7b,0xcd,0xe4,0x9,0x7,0x99,0xb,0x6e, 0xb6,0xb0,0x14,0x52,0x4a,0x94,0x92,0x44,0x6c,0x8b,0x68,0xd4,0xc2,0x8e,0xd8,0x24, 0x62,0x36,0xd1,0x48,0x4,0x19,0x6,0x44,0x21,0x40,0x20,0xd0,0xe1,0x1e,0xec,0x7a, 0x1e,0xdd,0xde,0x80,0x4e,0x7b,0x48,0xb3,0xd1,0xa7,0xd1,0xea,0x32,0x19,0x4f,0x11, 0x22,0x58,0x5d,0x52,0x4,0xfb,0xb4,0x6f,0x34,0x99,0x74,0x82,0xd9,0xd9,0x3c,0xd5, 0x72,0x8e,0x62,0x31,0x83,0x15,0xb1,0x30,0x5a,0xd3,0xeb,0x8d,0x39,0x38,0x68,0xb2, 0xbf,0x5f,0xa7,0xd7,0x1b,0x62,0xc2,0x2d,0x4,0xc,0x8,0x49,0xb9,0x98,0x65,0x61, 0xa1,0xc4,0xc2,0x5c,0x11,0x3b,0x1a,0x61,0x6f,0xbf,0xc6,0xe6,0xc6,0x11,0xc7,0xf5, 0x21,0xda,0x68,0xa4,0x30,0x24,0x13,0x31,0x96,0x96,0x2a,0xac,0xac,0x54,0x31,0xc6, 0x70,0x65,0x7d,0x9f,0xbd,0x9d,0x3a,0x8e,0x13,0x3c,0x1e,0x5c,0x8e,0x80,0x10,0x8c, 0xaf,0x9a,0xad,0xe9,0x77,0xbf,0xe5,0x67,0xcd,0xd5,0x8f,0x7e,0x86,0x64,0x26,0x8f, 0xc1,0x47,0x18,0x90,0x22,0xd8,0x5e,0x2c,0xcb,0xc2,0xb6,0x25,0x4a,0x29,0x2c,0xdb, 0x22,0x6a,0x5b,0xa4,0xd2,0x71,0x32,0xd9,0x4,0xb9,0x6c,0x82,0x64,0x3c,0x8e,0xb2, 0x82,0xc7,0x95,0x94,0x8,0x29,0x10,0x52,0x31,0x9d,0x4e,0x19,0xf6,0x87,0xb4,0xda, 0x43,0xe,0x8f,0xdb,0xb4,0x5b,0x43,0x9c,0xa9,0x83,0xd6,0x3a,0x8,0xa4,0xc6,0x60, 0xc,0xc4,0xa2,0x36,0xe9,0x4c,0x82,0xb9,0xd9,0x2,0x73,0x73,0x25,0x92,0xa9,0x28, 0xb6,0xb4,0x18,0x8d,0x27,0xec,0xee,0xd5,0xd8,0xda,0x3e,0xa6,0xdf,0x9d,0xe2,0x6b, 0x1f,0x29,0x4,0x9e,0xef,0xa3,0x94,0x22,0x9d,0x4d,0xb0,0xbc,0x54,0xe6,0xcc,0x6a, 0x15,0x83,0xe4,0xf0,0xa0,0xc5,0xe6,0xd6,0x21,0xed,0x56,0xf,0xd7,0xd5,0x60,0x20, 0x9d,0x8d,0x73,0x76,0x6d,0x8e,0x85,0xc5,0x2a,0xc3,0xe1,0x98,0xf5,0xf5,0x5d,0xea, 0xc7,0x5d,0xa6,0x13,0x1f,0x21,0x83,0x2d,0xeb,0xab,0x2a,0x46,0xfc,0xd7,0xb7,0xbe, 0xcf,0x6c,0xff,0xc9,0x93,0xc4,0x8b,0xf9,0x20,0xfa,0xa,0x30,0x26,0xc,0x6c,0xda, 0xa0,0xcd,0xb5,0x5c,0x5e,0x8,0x81,0x52,0xc1,0x6a,0x11,0x18,0x12,0xf1,0x38,0xb9, 0x42,0x8a,0x62,0x31,0x4d,0x26,0x15,0x27,0x11,0x8f,0x12,0x8d,0xda,0x58,0xb6,0x15, 0x50,0x49,0xc,0xbe,0xef,0x7,0xdb,0xd3,0x7e,0x9d,0x46,0xbd,0x4f,0xbf,0x3f,0xc2, 0x71,0xdd,0x80,0xa9,0x19,0x7d,0x9a,0xbb,0x24,0x52,0x31,0xe6,0xe7,0x8a,0xcc,0xce, 0xe6,0xc9,0xe5,0x32,0xc4,0x22,0x36,0x13,0xc7,0x61,0x7b,0xfb,0x98,0xdd,0x9d,0x63, 0x3a,0xdd,0x11,0xae,0xe7,0x6,0xfb,0x7b,0xb8,0x22,0xb,0xf9,0x34,0x67,0xd6,0xe6, 0x98,0x99,0xcd,0xa3,0x84,0x64,0x6b,0xf3,0x80,0xcd,0xed,0x1a,0xfd,0xee,0x4,0xcf, 0x77,0x41,0x4a,0xaa,0xe5,0x2c,0x6b,0x67,0xe7,0x28,0x95,0xb3,0xb4,0x1a,0x7d,0xae, 0xac,0xef,0xd3,0x6a,0xf6,0xd0,0x1a,0x94,0xa5,0x70,0xda,0xc3,0xaf,0xe,0x20,0x1e, 0xfb,0xfe,0x9f,0x34,0xee,0x45,0x83,0xc8,0xb,0xb4,0x6f,0xf0,0x3d,0x17,0xd7,0xd3, 0xf8,0x8e,0xc7,0x64,0xea,0x33,0x99,0x3a,0x38,0x8e,0x8b,0xf1,0x35,0x9e,0x36,0xb8, 0x9e,0x1f,0xc4,0x16,0x25,0x90,0x8,0xb4,0xd1,0x68,0x63,0x88,0xc7,0xa2,0x64,0x33, 0x71,0x92,0xa9,0x38,0xe9,0x74,0x22,0xa0,0xb4,0x99,0x4,0xd1,0x98,0x45,0xc4,0x8e, 0x60,0x10,0xc,0x6,0x23,0x5a,0xad,0xe,0xed,0xce,0x90,0x5a,0xad,0x47,0xb7,0x3b, 0xc2,0x73,0xbd,0x0,0x10,0xa5,0xf0,0x5d,0x9f,0x44,0x22,0x42,0xb1,0x90,0xa1,0x52, 0xcd,0x32,0x33,0x53,0x20,0x9b,0x4b,0x32,0x9d,0x86,0x54,0xf7,0xb0,0xce,0x51,0xad, 0xc3,0x64,0xe2,0x22,0x85,0x15,0x6,0x61,0x43,0xa1,0x98,0x61,0x66,0x26,0xc7,0xf2, 0x52,0x5,0x6d,0x34,0xb5,0xa3,0x1e,0xbb,0xbb,0xc7,0x34,0x9a,0x3d,0x3c,0xcf,0xc7, 0xb6,0x25,0xb3,0xd5,0x2,0x73,0xf3,0x45,0x72,0xf9,0x24,0x9d,0xf6,0x90,0xdd,0xdd, 0x3a,0xc7,0xf5,0x1e,0x93,0xf6,0x80,0x99,0x87,0x57,0xf9,0xae,0x27,0x7e,0xe6,0x4b, 0x3,0xa1,0x83,0x9d,0x32,0x8,0xfb,0x88,0x9b,0xe,0xc4,0xf6,0x3f,0x7f,0xb7,0x29, 0xef,0x3c,0x80,0x13,0xef,0x0,0x12,0xdf,0xd7,0xf8,0xbe,0x8f,0xf6,0x34,0x9e,0x6f, 0x70,0x7c,0xcd,0x74,0xe2,0x30,0x1a,0x4f,0x18,0xe,0xc6,0x74,0x7b,0x43,0x86,0xc3, 0x29,0x93,0xa9,0xcb,0x64,0x3c,0x5,0xd,0x52,0x29,0xc,0xe1,0xf3,0x7c,0x8d,0x1d, 0xb5,0x89,0xc5,0x22,0xa4,0x92,0x9,0x8a,0x85,0x34,0x95,0x4a,0x96,0x7c,0x2e,0x49, 0x32,0x19,0xc7,0xb6,0x14,0x8e,0xeb,0xd1,0xef,0xf,0xa9,0x37,0x7a,0x1c,0x1c,0x75, 0x68,0x36,0x3b,0xc,0xfb,0x53,0xa4,0x92,0x8,0x61,0x70,0xa7,0x3e,0x96,0xad,0x42, 0xc6,0x55,0x64,0x71,0xb1,0x4c,0xb9,0x9c,0xc5,0x71,0x3c,0xe,0xe,0x1b,0xec,0xec, 0x34,0x38,0xae,0x75,0x18,0x4f,0x5d,0x2c,0x21,0x71,0x7d,0xf,0x30,0xe4,0xb,0x19, 0xce,0x9e,0xa9,0xb2,0xb4,0x50,0xc1,0x37,0xb0,0xb1,0x75,0xc8,0xd5,0x8d,0x23,0x86, 0xfd,0x31,0xc6,0x33,0x58,0xb6,0x64,0x7e,0xb1,0xc4,0xda,0xda,0x1c,0xc9,0x78,0x94, 0xa3,0x5a,0x9b,0xcf,0x3f,0x71,0x99,0xd8,0xda,0xc,0x7f,0xef,0xf3,0xef,0xff,0x4b, 0x80,0x30,0xc6,0x84,0x94,0x37,0xbc,0xfd,0xe2,0xa6,0x2,0xb1,0xf5,0x63,0xef,0x36, 0xc5,0xcd,0x7b,0x71,0xd2,0x7d,0x84,0x11,0x2f,0x12,0x0,0x40,0xc8,0xe0,0x67,0x46, 0x1b,0x74,0xc8,0x94,0x46,0x93,0x29,0xfd,0xfe,0x84,0x7e,0x6f,0x48,0xb7,0x37,0xa2, 0xd5,0xea,0x31,0x1a,0x4d,0x30,0x46,0x86,0x89,0x52,0x20,0x1a,0x1b,0x6d,0x90,0x52, 0x11,0x8d,0x4a,0xa,0xc5,0xc,0x85,0x52,0x86,0x72,0x31,0x43,0x3e,0x9f,0x26,0x11, 0xb3,0xf1,0xd,0x8c,0x47,0x53,0x5a,0xed,0x3e,0x7b,0x7b,0x75,0xe,0x6b,0x6d,0x86, 0xc3,0x29,0x4a,0x48,0xa4,0x31,0x78,0x68,0x84,0x94,0xa4,0x93,0x71,0x66,0x67,0xf3, 0xac,0xac,0xcc,0x52,0x2e,0x67,0xf0,0x5c,0x97,0x83,0xc3,0x2e,0x97,0x5f,0xd8,0xe3, 0xf8,0xb8,0x3,0x46,0x23,0xa5,0xc2,0xf7,0x3,0x46,0x94,0x2f,0x24,0x59,0x5b,0x9b, 0x63,0x6e,0xae,0xc0,0x78,0x3c,0x65,0xfd,0xca,0x21,0xbb,0xfb,0xd,0xa6,0x63,0x7, 0xf0,0x89,0xc5,0xe3,0x2c,0x2d,0x96,0x39,0xb3,0x52,0x65,0xda,0x1e,0x52,0x4f,0x2a, 0x5e,0xff,0xa1,0x7f,0x26,0xbe,0xb4,0xd0,0x1a,0xfc,0x13,0x26,0x64,0x29,0x37,0x7b, 0x45,0x6c,0xfc,0xe8,0xbb,0x4c,0xe1,0xea,0xbd,0x38,0xa9,0xe,0x68,0x10,0x42,0x21, 0x54,0x0,0xbd,0x92,0xc1,0x7,0x98,0x20,0x6e,0x68,0x82,0xad,0x48,0xeb,0x0,0x2c, 0x29,0xf0,0x1c,0x8f,0xc1,0x70,0x4c,0x7f,0x30,0xa,0xd8,0x52,0xbd,0xcf,0x68,0x30, 0x61,0xe2,0x39,0x60,0x40,0x85,0xaf,0x65,0xc,0x48,0x29,0x48,0xc4,0x63,0x14,0x4b, 0x29,0x16,0xe6,0x4a,0x14,0x4b,0x19,0x52,0x89,0x18,0x4a,0x29,0xc6,0x13,0x87,0x4e, 0x7b,0xc0,0xc1,0x61,0x8b,0xbd,0xfd,0x3a,0xdd,0xfe,0x0,0xa3,0x3,0xc2,0x10,0xc4, 0x2e,0x43,0x32,0x95,0x60,0x76,0xb6,0xc4,0xea,0xea,0xc,0xc5,0x42,0xa,0x67,0xe2, 0xb2,0xb3,0x57,0x67,0x63,0xe3,0x90,0x76,0x6b,0x10,0x4,0x73,0xcb,0xc2,0xd7,0x1a, 0x25,0xa1,0x5a,0xce,0x71,0xe7,0xb9,0x45,0xa,0xf9,0x14,0xed,0xee,0x90,0xcb,0x97, 0xf7,0x39,0x38,0x68,0xe0,0xb9,0x1e,0x96,0xa5,0x48,0xa7,0xe3,0xac,0xcd,0x2c,0x51, 0x78,0x8d,0xe1,0xae,0xf,0xfc,0xd8,0xad,0x8d,0x11,0x9f,0xf8,0x9e,0xf7,0x9a,0xfe, 0x27,0xfb,0xa8,0xa2,0x85,0x0,0x94,0x90,0x58,0x4a,0xa1,0x6c,0x45,0x24,0x16,0xc1, 0x56,0x1,0xc3,0x88,0x46,0x23,0xc4,0x63,0x11,0xe2,0xf1,0x28,0xd1,0x88,0x85,0xf6, 0xfd,0x30,0x90,0x7,0xab,0xc6,0x60,0x70,0x5d,0x1f,0xd7,0xf5,0x69,0x34,0xba,0xd4, 0x1b,0x1d,0x46,0x23,0x87,0x4e,0xa7,0xcf,0x64,0x3c,0xc5,0x52,0x16,0x42,0xa,0x7c, 0x3f,0x48,0xcd,0x2d,0x4b,0x91,0xcb,0x27,0xa9,0x56,0xf2,0xe4,0xf3,0x69,0x4a,0xa5, 0x2c,0x89,0x78,0x84,0xe9,0xc4,0xa5,0x3b,0x18,0xb2,0xbf,0xdf,0xe2,0xb8,0xd6,0xa1, 0xdd,0xea,0xe1,0xfb,0x1a,0xcb,0x56,0xf8,0x9e,0x6,0x9,0xf1,0x78,0x94,0x99,0x99, 0x3c,0x2b,0x8b,0x55,0x4a,0xe5,0x2c,0x53,0xc7,0x65,0x7b,0xab,0xc6,0xee,0x7e,0x9d, 0x66,0xb3,0x87,0x44,0x22,0xa5,0xc4,0xd3,0x3e,0x96,0x25,0x99,0x9f,0x2f,0xb3,0xb8, 0x50,0x26,0x93,0x89,0x73,0x70,0xd0,0x64,0x67,0xb7,0x41,0xbb,0xd9,0xc3,0x35,0x1a, 0x35,0x56,0xcc,0x3e,0x5a,0xe0,0xaf,0x7f,0xfc,0xe7,0x6e,0x2d,0x10,0x1f,0x7c,0xeb, 0x4f,0x9b,0xad,0x3f,0x79,0x82,0x44,0xbe,0x88,0x31,0x1a,0x79,0x5a,0x81,0xa,0x6f, 0xb0,0x1,0x25,0x4,0x91,0xa8,0x45,0x2c,0x1e,0x21,0x1e,0x8f,0x91,0x4e,0xc5,0x49, 0x67,0xe2,0xe4,0x72,0x69,0x52,0xa9,0x18,0x42,0x6,0xcf,0x10,0x80,0x10,0x32,0xa0, 0xa7,0x80,0x3b,0xf5,0xe8,0xf4,0x86,0xd4,0xeb,0x6d,0xf6,0xf7,0x9b,0xf4,0x7,0x53, 0x84,0x8,0xb5,0x9f,0x53,0x86,0x6,0x91,0x88,0x4d,0xb1,0x94,0x66,0x61,0xb6,0xc4, 0xdc,0x5c,0x91,0x78,0xcc,0xc6,0x68,0x18,0x4d,0x27,0xd4,0x6a,0x1d,0xb6,0x77,0xeb, 0x34,0xea,0xdd,0x20,0x2b,0x36,0x1a,0x8d,0x41,0x6b,0x88,0x45,0xa3,0x54,0x2b,0x19, 0xd6,0xce,0xcc,0x53,0xaa,0xa4,0x99,0x8c,0x5c,0xf6,0xf6,0x1b,0x5c,0xdd,0x3c,0xa2, 0xdb,0x1b,0x61,0x29,0x30,0x1a,0x7c,0x5f,0x10,0xb1,0x25,0xd5,0x99,0x2c,0x77,0xdd, 0xb5,0x48,0x3c,0x1e,0x63,0x6f,0xf7,0x98,0xab,0xdb,0x47,0xd4,0xb7,0x8e,0xa9,0x5c, 0x58,0xe3,0xef,0x7c,0xee,0x16,0xb3,0xa6,0xf,0x7f,0xc7,0xbf,0x30,0x47,0x1f,0x5d, 0x27,0x5a,0x4e,0x63,0xb4,0x8f,0xd6,0x6,0x6d,0xc,0xda,0x37,0x78,0xbe,0x8f,0xd1, 0x5e,0x28,0x8,0xca,0x40,0x48,0x13,0xc1,0x3e,0x1c,0xb1,0x2c,0x2c,0xdb,0x22,0x1e, 0xb7,0xa8,0x54,0xa,0x94,0x4b,0x39,0x52,0xc9,0x28,0x76,0x24,0x90,0xcd,0x8d,0x9, 0xb6,0x52,0x29,0x40,0x6b,0xc3,0x68,0x3c,0xa5,0xde,0xec,0xb2,0xbf,0xd7,0xa0,0xd5, 0xea,0xe3,0x38,0x5e,0xb8,0x92,0x4,0xc2,0x18,0xb4,0xd1,0x28,0x4b,0x91,0xc9,0x24, 0x58,0x5a,0xac,0xb0,0x30,0x5f,0x24,0x91,0x88,0x22,0x10,0x8c,0x27,0x2e,0xb5,0xe3, 0x16,0x57,0x5e,0xd8,0xa3,0xd3,0x1f,0x63,0xfc,0x40,0x90,0x34,0x22,0xc8,0xf0,0x63, 0x91,0x60,0x85,0xdc,0x79,0xd7,0x2,0xb9,0x6c,0x8a,0xe1,0x70,0xc2,0xc6,0xe6,0x3e, 0x5b,0x5b,0xc7,0x4c,0xa7,0x4e,0x50,0xc1,0x11,0x60,0x7c,0x88,0xc5,0x23,0x2c,0x2c, 0x95,0x38,0xbb,0x36,0x8f,0x44,0xf2,0xf9,0xc7,0x9f,0x67,0x58,0x4a,0xf2,0x8e,0xcf, 0xbc,0xef,0xd6,0x2,0x71,0xe5,0x9f,0xbd,0xd7,0xa4,0x5e,0x58,0xc6,0x4d,0xc,0x30, 0xbe,0xc0,0x71,0x3d,0xc6,0x8e,0xc3,0x74,0x3c,0x65,0x3c,0x76,0x19,0x8f,0xc6,0x4c, 0xa6,0xe,0x93,0xb1,0xcb,0x70,0x3c,0xc5,0x75,0x4d,0x18,0xca,0xd,0xc6,0x98,0x40, 0xc0,0x14,0x12,0x21,0x24,0xa9,0x54,0x8c,0x4a,0x39,0x43,0xa9,0x98,0x25,0x9b,0x4f, 0x92,0x8a,0xc7,0x10,0x4a,0x9c,0x88,0xb6,0xe8,0x30,0x91,0xab,0x37,0x7a,0xec,0xee, 0xd4,0x69,0x36,0xba,0xc,0x47,0x63,0x30,0x12,0x29,0x3,0x5e,0x18,0x4c,0x7a,0x9f, 0x5c,0x2e,0xc9,0xf2,0xd2,0xc,0xb3,0xb3,0x79,0xd2,0xc9,0x38,0x52,0x2a,0x46,0x63, 0x87,0xad,0x9d,0x3,0x76,0x76,0xeb,0xf4,0xbb,0x63,0xb4,0x36,0x41,0x62,0x86,0xc0, 0xd7,0x86,0x64,0x2a,0xca,0xca,0x72,0x85,0xa5,0xc5,0xa,0xb9,0x4c,0x8a,0x5a,0xa3, 0xc3,0xa5,0x4b,0x7b,0xd4,0x8f,0x5b,0x38,0x9e,0x8f,0x12,0x41,0xd2,0xa9,0xb5,0x26, 0x99,0x8c,0x71,0xf6,0xec,0x2,0x73,0xd9,0x1c,0x83,0xd2,0x88,0xbb,0xff,0xbf,0x1f, 0xba,0xb5,0x40,0x6c,0xfc,0xe8,0xbb,0x4c,0x71,0xe3,0x3c,0x4e,0xba,0xf,0x3a,0x54, 0x25,0xa5,0x40,0x62,0x90,0x52,0xa0,0xb5,0x60,0x3a,0x71,0x18,0x4e,0x26,0x8c,0x26, 0xe,0xfd,0xde,0x98,0x4e,0xbb,0x4f,0xaf,0x3f,0x64,0x3a,0xf5,0xd0,0x9e,0xc6,0xf5, 0xdc,0x40,0xd1,0x44,0xe0,0x7b,0x1e,0xb6,0x6d,0x93,0xcb,0xa5,0xc8,0x17,0x12,0x94, 0x4b,0x39,0x72,0xf9,0x34,0xb1,0xa8,0x85,0xa5,0x14,0xc6,0x80,0x25,0x15,0x9e,0xd1, 0xb4,0x5a,0x3d,0x6a,0xb5,0x36,0x87,0x87,0x4d,0x86,0xfd,0x31,0xae,0x17,0x6c,0x57, 0xca,0x92,0xf8,0x1e,0x68,0xe3,0x93,0xcf,0xa7,0x98,0x9f,0x2b,0x30,0x3b,0x5b,0x26, 0x93,0x8e,0x13,0x8b,0xd9,0x74,0x6,0x43,0x76,0x36,0x8e,0xd9,0xde,0xaa,0x31,0x1c, 0x4f,0x3,0xc9,0x5e,0x2a,0x34,0x1a,0xdf,0xf3,0xc8,0xe5,0xd2,0x2c,0x2d,0x57,0x59, 0x5d,0x99,0xc1,0x8e,0x48,0xf6,0xf6,0x1a,0x5c,0x5d,0x3f,0xa2,0xdb,0x1d,0xe0,0x7a, 0x3e,0x96,0x54,0x81,0x66,0x66,0xc,0xb,0x99,0x19,0x96,0xdf,0x68,0xf3,0xc0,0xaf, 0xbe,0xf7,0xd6,0x3,0x51,0xda,0xba,0xf,0x37,0xd5,0xc5,0xe8,0x13,0xda,0x1a,0xc4, 0x6,0x63,0x82,0xd9,0x2f,0xa4,0x40,0x4a,0x85,0xad,0x14,0x5a,0x6b,0xa6,0x8e,0xcb, 0xd4,0xf3,0xf0,0x1c,0x9f,0x4e,0x67,0x40,0xed,0xb8,0x4d,0xaf,0x3b,0x66,0x38,0x1a, 0xe3,0x38,0x3e,0x68,0xf0,0xb4,0x87,0x54,0x92,0x48,0x24,0x42,0x2c,0x6a,0x53,0x2a, 0x67,0x98,0x99,0x29,0x90,0xcf,0xa5,0x49,0xc6,0x6d,0x94,0x25,0x90,0x42,0xe1,0xf9, 0x86,0xe1,0x64,0x44,0xfd,0xb8,0xcb,0xee,0x6e,0x8b,0x76,0xab,0xc7,0xd4,0x99,0x22, 0x8,0xa4,0x93,0x20,0x81,0x34,0x24,0x93,0x31,0x66,0xaa,0x79,0x96,0x96,0x2a,0x54, 0xca,0x39,0x2c,0x5b,0xd1,0xed,0x8e,0xd8,0xdd,0x3e,0x66,0x67,0xff,0x98,0x6e,0x77, 0x0,0x46,0xa2,0xa4,0x85,0xeb,0x39,0x20,0xc,0xd9,0x5c,0x8a,0xb5,0x33,0x73,0x2c, 0x2e,0x56,0xb0,0x95,0xe0,0xe0,0xa0,0xc5,0xa5,0x4b,0x3b,0xb4,0xbb,0xc3,0x40,0x25, 0x90,0x8a,0x51,0xa3,0x4f,0xf5,0xe1,0x3b,0x78,0xc7,0x13,0xb7,0x1a,0x88,0x1f,0x7b, 0xb7,0x29,0x6e,0xdc,0x8b,0x93,0xea,0x9e,0x70,0x64,0x10,0x22,0xd0,0x63,0x42,0x71, 0xcc,0x60,0x30,0x9e,0x46,0xfb,0x41,0xa1,0x45,0x29,0x79,0xaa,0x5e,0x9a,0x30,0xe0, 0xe,0x6,0x13,0x9a,0xad,0x1e,0xed,0x66,0x9f,0x7a,0xbd,0xc3,0x60,0x10,0xcc,0x70, 0x6d,0x34,0x4a,0x1,0x28,0x2c,0x25,0xc9,0xe5,0x92,0xcc,0xcc,0x16,0x99,0x9d,0x2b, 0x90,0x49,0xc6,0x88,0x46,0x2,0x75,0xd7,0x37,0x86,0xe9,0xd4,0xe1,0xf8,0xb8,0xc7, 0xee,0x6e,0x9d,0xa3,0x5a,0x8b,0xe9,0xd4,0xc3,0xb6,0x15,0x42,0x80,0xef,0x6b,0x8c, 0xd1,0x24,0xe3,0x51,0x66,0x66,0x8b,0x2c,0xad,0x54,0xa9,0x56,0xb,0xd8,0x52,0x50, 0xaf,0x77,0xd8,0xde,0x3e,0x66,0x7b,0xe7,0x98,0xe1,0xd0,0xc1,0xb2,0x4,0x52,0xa, 0x1c,0x2f,0x60,0x68,0x95,0x72,0x86,0x3b,0xee,0x98,0x67,0x6e,0xae,0xc8,0x74,0xea, 0xb0,0x7e,0x79,0x9f,0xcd,0x9d,0x1a,0xe3,0x89,0x87,0xd7,0x19,0x52,0x7e,0xcd,0x19, 0xbe,0xfb,0xe2,0x2d,0xe,0xd6,0x9f,0xfa,0xbe,0xf7,0x9a,0xd1,0x63,0x63,0x64,0x4e, 0x22,0x45,0x50,0x6e,0x54,0x96,0x24,0x16,0xb1,0x88,0x44,0x23,0xc4,0x13,0x11,0x22, 0x91,0x8,0x11,0x4b,0x10,0x89,0xda,0x58,0xca,0xa,0xb2,0x6f,0xcf,0xc7,0xd3,0x3a, 0xd8,0x77,0x85,0x41,0x58,0x32,0x48,0xaa,0x3c,0x9f,0x7e,0x6f,0x44,0xa3,0x19,0x14, 0x7f,0x3a,0x9d,0x1,0xc3,0xe1,0x4,0x83,0xc0,0xb6,0x44,0x48,0x41,0x25,0xe9,0x4c, 0x82,0x6a,0x39,0xcb,0xdc,0x6c,0x9e,0x42,0x3e,0x4d,0x2c,0x1e,0x3b,0x65,0x52,0x53, 0xc7,0xe7,0xe8,0xa8,0xc5,0xd6,0x56,0x8d,0x46,0xa3,0x8d,0xe3,0x6a,0x6c,0xdb,0x42, 0x8,0x13,0x6c,0x85,0xbe,0x26,0x95,0x8a,0xb1,0xbc,0x5c,0x65,0x79,0xa9,0x4c,0x31, 0x9f,0x41,0x1b,0xcd,0xde,0x7e,0x83,0x8d,0xad,0x1a,0xb5,0xc3,0x26,0xae,0xe7,0x13, 0xb1,0xa3,0x18,0xc,0x9e,0xe7,0x61,0xd9,0x16,0xb3,0xd5,0x2,0x77,0xdf,0xb3,0x40, 0x31,0x9f,0xa6,0x7e,0xdc,0xe7,0xf9,0xf5,0x5d,0x36,0x9e,0xdd,0xa1,0xf8,0xc0,0x12, 0xdf,0xfb,0xd4,0xfb,0x6f,0x2d,0x10,0xbf,0xf7,0x2d,0xef,0x33,0x5b,0x1f,0x7d,0x8a, 0x44,0x21,0x87,0xc1,0x7,0xa1,0x82,0x72,0x68,0x38,0xeb,0x2d,0x4b,0x12,0x8d,0x45, 0x49,0x26,0xa3,0x24,0x92,0x51,0x32,0xa9,0x24,0x99,0x6c,0x82,0x74,0x32,0x41,0x2c, 0x6e,0x63,0x4c,0x90,0x71,0x1b,0x4d,0x58,0xc7,0x10,0x28,0x2b,0x90,0xc7,0x9d,0x89, 0x4f,0xbf,0x3f,0xe2,0xf0,0xa8,0xcd,0xfe,0x41,0x8b,0x5e,0xaf,0x87,0x1,0x94,0x52, 0x68,0x17,0x84,0x84,0x48,0x54,0x51,0x2a,0x67,0x59,0x5a,0xac,0x30,0x53,0xc9,0x13, 0x8d,0xd9,0x8,0x13,0x50,0xdc,0xc1,0x78,0x4a,0xad,0xd6,0x60,0x6f,0xb7,0x41,0xad, 0xd6,0xc1,0x37,0x1a,0x5b,0x45,0x10,0x18,0x5c,0xcf,0x3,0x1,0x99,0x6c,0x82,0x85, 0xf9,0x32,0x2b,0x4b,0x55,0x72,0x85,0x14,0xa3,0xa1,0xc3,0xfe,0x41,0x83,0x8d,0x8d, 0x7d,0x8e,0xeb,0x3d,0xa4,0x90,0x44,0x94,0x85,0x6f,0x7c,0x7c,0x3f,0x8,0xe8,0x4b, 0xcb,0x15,0xce,0xae,0xcd,0x93,0x48,0x46,0x78,0xee,0xb3,0x97,0xe9,0x24,0xe3,0xbc, 0xfd,0xe3,0xef,0xba,0xc5,0x40,0xbc,0xed,0x7d,0x66,0xfb,0x23,0x9f,0x27,0x59,0xc9, 0xa1,0xfd,0x90,0x11,0x85,0xaf,0x6b,0xe0,0xf4,0xeb,0x93,0xe2,0x96,0xa5,0x24,0xb1, 0x78,0x94,0x78,0x2c,0x4a,0x24,0x12,0x21,0x9b,0x89,0x31,0x33,0x53,0x20,0x93,0x8e, 0x23,0x2d,0x89,0x42,0xa1,0xb5,0x8f,0x36,0x1a,0x4b,0x59,0x18,0x61,0xf0,0x7d,0xc3, 0x60,0x38,0xa5,0x3f,0x18,0x52,0x3f,0x6e,0xb1,0xbf,0xdf,0x66,0x3c,0x76,0x82,0x77, 0x90,0x20,0x91,0x44,0x2c,0x8b,0x74,0x36,0x46,0xa9,0x94,0x65,0x79,0xa1,0x4c,0x36, 0x9b,0x6,0x25,0xd0,0xbe,0xcf,0x64,0xec,0xd0,0x68,0xf5,0xd8,0xd9,0x39,0xe6,0xe8, 0xa8,0x8d,0xd1,0x1a,0x4b,0x2a,0x34,0xa1,0x34,0x2e,0x45,0x50,0xe3,0x98,0x2f,0xb0, 0x76,0x66,0x81,0x64,0x22,0xc2,0x78,0x3c,0x61,0x77,0xbf,0xc1,0xfa,0xc6,0x3e,0xfd, 0xce,0x18,0x29,0x15,0x42,0x82,0xef,0xfb,0x80,0x24,0x93,0x8e,0x33,0xb7,0x50,0x64, 0xad,0xb2,0x80,0x33,0xdf,0xe0,0xcc,0xbf,0xf9,0xd1,0xaf,0x14,0x10,0x2f,0xfe,0x65, 0x21,0x86,0x47,0x1d,0xf3,0xb1,0x7f,0xf0,0xff,0xb2,0xfb,0xc7,0x9f,0x27,0x51,0xce, 0x60,0xcc,0x8b,0x44,0x94,0x13,0x1,0x5c,0x4,0xd5,0x39,0x1,0xe8,0x30,0x88,0x87, 0xea,0x38,0x4a,0x9,0x22,0x96,0x22,0x91,0x8a,0x52,0xad,0x16,0x28,0x97,0x73,0x64, 0xb3,0x71,0xa2,0x11,0x1b,0xad,0xc1,0x18,0x8d,0x10,0x41,0x8d,0x43,0x3,0x9e,0xef, 0x33,0xe8,0x8d,0xd8,0xde,0xae,0x71,0x74,0xd8,0xa1,0x3f,0x9a,0x22,0x45,0xc0,0xf3, 0xb5,0xd1,0x8,0x21,0x89,0xc7,0x6d,0x96,0x97,0xca,0x2c,0x2e,0xce,0x90,0x49,0x27, 0x10,0x32,0x58,0x75,0xae,0xe3,0x53,0xab,0xb5,0xb9,0xba,0x71,0x48,0xbb,0xdd,0x45, 0x6b,0x89,0x25,0x25,0x1a,0x83,0xaf,0x3,0x45,0x38,0x15,0x8f,0xb0,0xba,0x36,0xcb, 0xf2,0x52,0x85,0x78,0x3c,0x42,0xbf,0x3f,0x64,0x63,0xb3,0xc6,0xe6,0xd6,0x31,0xd3, 0xf1,0x14,0xdb,0xb2,0x42,0xc5,0x18,0xc,0x3e,0xa5,0x68,0x85,0xa5,0x37,0x24,0x78, 0xf8,0x37,0xde,0xf3,0x6a,0x2,0xa1,0xcd,0x69,0xf4,0xd,0xa0,0x30,0x42,0x20,0x8c, 0x31,0x46,0x8,0x21,0x46,0x47,0x1d,0xf3,0xa7,0xdf,0xff,0x8b,0x6c,0x7f,0xe4,0x69, 0x12,0x95,0x2c,0x84,0x37,0xee,0x54,0x58,0x3c,0x9,0xc8,0xa1,0xd8,0x15,0xf8,0x9d, 0x74,0x50,0x8c,0x17,0x12,0xd0,0xf8,0x27,0x59,0xb8,0x6,0x5f,0x1b,0x22,0xb6,0xa4, 0x50,0xca,0x51,0xae,0x64,0x28,0x97,0xb2,0xe4,0x32,0x49,0x64,0x18,0xd0,0x7d,0x40, 0x99,0x30,0x63,0x17,0x86,0x4e,0x77,0xc4,0xc1,0x7e,0x9d,0xfd,0x83,0xa0,0x6e,0xd, 0x2,0x21,0x35,0x6,0x81,0xef,0x43,0x3a,0x19,0x65,0x61,0xb1,0xc8,0xe2,0x42,0x89, 0x4c,0x3a,0x19,0xc8,0xef,0x42,0x32,0x71,0x5c,0x76,0xf7,0x8e,0x59,0xbf,0xba,0xcf, 0xb0,0x37,0xd,0xd4,0x5f,0x41,0x90,0x18,0x6a,0x1f,0x29,0x24,0xb9,0x7c,0x92,0xb3, 0x77,0x2c,0xb0,0xb8,0x50,0x46,0x21,0x39,0xae,0xb7,0x59,0xdf,0x38,0x62,0x7f,0xbf, 0x11,0xae,0x44,0x89,0x0,0x9c,0xf6,0x88,0xe2,0x43,0x4b,0x7c,0xd7,0xcd,0xae,0x59, 0x1b,0xcc,0xc9,0x24,0xe6,0xc4,0x24,0x7b,0xb2,0x1a,0x44,0x48,0x75,0x4e,0x3e,0x23, 0x6d,0x7c,0x5f,0xa1,0xb1,0xc0,0x53,0x68,0xe3,0x23,0xe4,0xb5,0x7d,0x48,0x98,0xeb, 0xbc,0x85,0x27,0x5,0x19,0xc0,0x88,0xd0,0xcc,0x25,0x24,0xca,0x48,0xc,0x3a,0x90, 0x39,0x64,0xc0,0x7e,0x8e,0xe,0x9b,0xd4,0x6a,0x4d,0x12,0xc9,0x18,0xf9,0x4c,0x92, 0xc5,0xa5,0x32,0xe5,0x62,0x16,0xcb,0xb2,0x90,0x2a,0x4c,0xee,0x34,0x64,0x73,0x49, 0x72,0xb9,0x14,0x8b,0xb,0x55,0x76,0x76,0x6a,0xec,0xec,0xd5,0x99,0x4c,0x83,0xda, 0x87,0x12,0x82,0xe1,0x70,0xcc,0xe5,0xcb,0x7b,0xec,0xed,0x37,0x58,0x5c,0xa8,0xb0, 0xba,0x32,0x43,0x2c,0x6a,0x13,0x8f,0x45,0xb8,0xf3,0xec,0x3c,0x95,0x72,0x8e,0xf5, 0xab,0xfb,0x1c,0x1e,0xb4,0x98,0x4c,0xbd,0xc0,0x16,0x2c,0x3,0x4d,0xab,0xd9,0xec, 0xd3,0xe9,0xbe,0xc0,0xd1,0x61,0x8b,0x33,0x6b,0x73,0x14,0xcb,0x59,0xa,0x85,0x34, 0x9b,0xe5,0x34,0x57,0xd6,0xf,0xe9,0xf,0x26,0x48,0x61,0x4e,0x8b,0x53,0xaf,0x64, 0xa8,0xf7,0xbc,0xe7,0x3d,0x2f,0xe1,0x60,0xe3,0x3d,0x27,0x13,0xfa,0xa4,0x92,0x15, 0x7c,0xbe,0xb1,0x5a,0xae,0xcd,0xc4,0x8c,0xfb,0x35,0xb6,0x3e,0xf6,0x38,0xbd,0x9d, 0x26,0xb6,0x48,0x20,0x3c,0xb,0xcf,0xd1,0x18,0xdf,0x41,0x58,0x2,0x50,0x1,0xb4, 0xa1,0xac,0x21,0xae,0x3,0x45,0x9c,0x5e,0xbe,0x41,0xdc,0x0,0x97,0x8,0xca,0xa6, 0x8,0xdc,0xa9,0x77,0x6a,0x87,0x69,0x34,0x3b,0x78,0xbe,0xc6,0xf7,0x3,0x22,0x10, 0x8d,0xd8,0x8,0x13,0x64,0xb9,0x91,0x48,0x84,0x6a,0x35,0x4f,0xb5,0x92,0xc3,0xb2, 0x14,0xc6,0x18,0xa6,0x8e,0x87,0xef,0x1b,0xa4,0xa,0x58,0x54,0xa3,0xde,0xa5,0xd1, 0x6c,0x3,0xa,0x61,0x4,0x56,0xc4,0x26,0x9d,0x8a,0x51,0xad,0x16,0xc8,0x65,0x53, 0x8,0x61,0x98,0x4e,0x3c,0xa6,0x8e,0x87,0xd0,0x1a,0x65,0x59,0x18,0x23,0x68,0xb7, 0x7,0x1c,0x1d,0x36,0x71,0x1c,0x8f,0x48,0xc4,0x62,0x61,0xa1,0xca,0xcc,0x4c,0xe, 0x9,0x4c,0x5d,0x8f,0x61,0x67,0x44,0xac,0x9a,0xe5,0xbe,0x1f,0x7c,0xcb,0x4f,0xde, 0xe4,0xad,0xc9,0x84,0x3f,0x36,0xa7,0xd6,0x49,0x71,0x5d,0x51,0xa1,0x37,0xbe,0x44, 0xbd,0xfb,0x67,0xf4,0xa7,0xcf,0x33,0x1a,0x6c,0xd3,0x78,0xf6,0xa,0xe3,0x6d,0x1f, 0xbf,0x99,0x23,0x52,0x3b,0x87,0xd8,0x38,0xcb,0x70,0xbd,0xc7,0xa0,0x79,0x8c,0x15, 0xb3,0x50,0x31,0xb,0x6d,0x40,0x19,0x73,0x7d,0x2d,0xe4,0x65,0x45,0xa4,0x53,0x81, 0xcf,0x8,0x7c,0xdf,0xc7,0xd5,0x3e,0x76,0xc4,0x66,0xb6,0x12,0xb0,0xa4,0x62,0x39, 0x4b,0x3c,0x6e,0x23,0x8,0xf2,0x4,0x81,0xc4,0x56,0x92,0xf1,0x64,0xca,0xe6,0x76, 0x9d,0xed,0xed,0x1a,0xfd,0xde,0x30,0x78,0x7f,0x25,0xd1,0xda,0xc7,0xd7,0x9a,0x54, 0x3c,0xce,0xd2,0x4a,0x85,0xd5,0xe5,0x19,0xb2,0xd9,0x4,0x48,0x89,0xf6,0xd,0x7, 0x87,0xc7,0x5c,0xbd,0x7a,0xc4,0x71,0x2d,0x0,0xfd,0x64,0x5,0xfa,0xbe,0xc6,0xf1, 0x7c,0x52,0x89,0x8,0x67,0x56,0x66,0x39,0xb3,0x3a,0x4b,0x3e,0x9f,0xa2,0xdd,0x19, 0xf2,0xe4,0x27,0x9f,0x63,0x34,0x93,0xe1,0xbb,0x3e,0xf3,0x2f,0x6f,0x72,0x8c,0x30, 0x3a,0xb0,0x2a,0x84,0x35,0x4,0x11,0x4e,0x5c,0xcf,0x1f,0x98,0xab,0x87,0xff,0xf, 0x3b,0xf5,0xdf,0xa4,0x37,0x7a,0xe,0x4f,0x83,0x52,0x10,0xcd,0x82,0x4a,0x10,0xd0, 0xc9,0x41,0x89,0xec,0xf4,0x6d,0x64,0xb6,0xdf,0xce,0xd1,0x87,0x6,0xec,0xfe,0xd1, 0xa7,0xf1,0x1d,0x7,0x2b,0x15,0xe7,0x54,0xf3,0x7e,0x99,0xce,0xd2,0x6b,0x1b,0xe5, 0x9,0xeb,0xa,0x2,0xb2,0xa7,0xd,0x8e,0xe7,0x12,0x8d,0x44,0x4e,0xe5,0x8b,0x99, 0x6a,0x9e,0x5c,0x26,0x85,0x9,0xad,0x3a,0x81,0x93,0x44,0xd0,0xeb,0x8d,0xd8,0xdd, 0xa9,0xb3,0xbb,0xdf,0xa0,0xd7,0x1b,0xa1,0xa4,0x44,0x4a,0x81,0xe7,0x79,0xf8,0x46, 0x53,0x2a,0x64,0x59,0x59,0xae,0x32,0x37,0x57,0x24,0x95,0x8e,0x21,0x10,0xc,0x47, 0x13,0xf6,0xf6,0x1b,0x6c,0x6e,0xd5,0xe8,0xb4,0x6,0x48,0x1,0xd2,0x52,0xa1,0xfc, 0xe2,0xe3,0x1b,0x9f,0x42,0x31,0xcb,0x99,0x95,0x19,0x56,0x56,0xab,0xc8,0x81,0xe1, 0x20,0xde,0xe6,0xde,0x5f,0xba,0xf9,0x5a,0x53,0x68,0x6e,0xd3,0xa1,0xea,0x28,0xc4, 0xd4,0x69,0x9a,0xe7,0x76,0x7f,0x9c,0xed,0xe3,0x7f,0x87,0xaf,0x21,0xa2,0x40,0x28, 0xb,0x61,0x40,0xb,0x11,0x16,0x84,0x7c,0xb4,0xa5,0x51,0x71,0x49,0x31,0xfd,0x66, 0xce,0xc6,0xde,0x43,0xe3,0x83,0x82,0x4f,0xfd,0xc4,0xaf,0x30,0x6d,0xd,0x49,0xe4, 0x53,0x41,0xc2,0xf5,0xf2,0xd6,0xc3,0x29,0x47,0x13,0x42,0x11,0x84,0xe9,0x93,0xf8, 0x12,0x4c,0x12,0x2f,0x4c,0xa,0x2d,0x4b,0x92,0xcd,0x26,0x59,0x5e,0xac,0x32,0x3b, 0x5f,0x20,0x93,0x4e,0x84,0xd5,0x40,0x1f,0xa1,0x4,0xbe,0x86,0x5e,0x77,0xc8,0xf6, 0x76,0x9d,0xed,0x9d,0x63,0x26,0x63,0x17,0xa5,0x14,0x42,0x69,0x7c,0x57,0x23,0xa4, 0xa2,0x52,0xc9,0xb0,0xbc,0x5c,0x62,0x7e,0xae,0x4c,0x3c,0x16,0x3,0xc,0xed,0xce, 0x80,0xab,0x9b,0x7,0x6c,0x6d,0x1e,0x32,0x9d,0xfa,0x28,0x61,0x61,0x59,0x81,0x1e, 0x35,0x75,0x3c,0x6c,0xcb,0xa2,0x3a,0x93,0xe1,0xfe,0x95,0xbb,0x48,0xde,0xdb,0xa6, 0xf2,0xb3,0x3f,0x72,0x73,0x81,0x8,0x18,0xd1,0xb5,0x99,0xe9,0x78,0x3d,0x9e,0xdb, 0xfa,0x11,0x36,0x8e,0x3f,0x80,0x12,0x60,0x29,0x2b,0xf4,0x86,0x6,0xda,0xbe,0x31, 0x41,0x66,0x4c,0x58,0x15,0xc7,0xf3,0x71,0x85,0xa1,0x32,0xf3,0x5a,0x5e,0xb3,0xfa, 0x6b,0x6c,0xff,0x4a,0x9b,0x4f,0xfe,0xf0,0xbf,0x47,0xf,0x1d,0x22,0xe9,0x18,0xe6, 0x65,0xad,0xc,0x73,0xad,0xe4,0x1a,0x6e,0x51,0x81,0x33,0x44,0x20,0xa4,0xb9,0x81, 0x26,0x6b,0xed,0xe1,0x6b,0x8d,0x50,0x16,0xb9,0x6c,0x8a,0xf9,0xb9,0x3c,0x8b,0x73, 0x65,0x92,0xe9,0x58,0xa0,0x94,0x7a,0x1a,0x25,0x15,0xae,0xf6,0xa9,0xd5,0x5a,0x6c, 0xef,0x1c,0x53,0x3b,0xee,0xe2,0x4c,0x1d,0x6c,0x15,0x78,0xc1,0x3d,0x5f,0x63,0x47, 0x5,0xf3,0xb3,0x45,0xd6,0x56,0xe6,0xc8,0x17,0x52,0x44,0x13,0x11,0xa6,0x13,0x87, 0xc3,0x83,0x36,0x1b,0x5b,0x87,0xd4,0x1b,0x5d,0x5c,0xc7,0x23,0x62,0x5b,0x80,0x41, 0x6b,0x83,0xab,0x35,0x69,0x91,0x61,0xe1,0x1b,0x13,0xbc,0xe9,0x43,0x3f,0x23,0x6e, 0x7e,0x8c,0xb8,0x8e,0x7,0x5c,0xde,0x7b,0x3f,0xcf,0xed,0xfe,0x38,0x4a,0x7a,0x28, 0xa1,0xc2,0xb2,0x8f,0x8,0x6f,0x52,0xe0,0xe8,0x3b,0xa9,0x9,0x80,0x44,0x87,0x4c, 0xc2,0xf1,0x35,0xf3,0xa5,0x6f,0xe5,0xe1,0x3b,0xfe,0xb,0xeb,0xbf,0xf2,0x39,0x3e, 0xf9,0xc3,0xbf,0x8c,0x71,0x35,0x2a,0x6a,0x5,0xf6,0x45,0xa3,0xd1,0x42,0xdc,0xe0, 0x29,0xbd,0xf1,0x2a,0x44,0x18,0x23,0x4e,0x72,0x9,0xc9,0xb5,0x96,0xa7,0x30,0x37, 0x39,0xad,0x91,0x6b,0x8c,0xe,0x2,0xb7,0x50,0x82,0x68,0xd4,0x62,0x6e,0xb6,0xc4, 0xca,0x4a,0x99,0x7c,0x2e,0x1d,0xa,0x5a,0x81,0xd1,0xd6,0xf3,0x3c,0x3a,0xdd,0x21, 0x9b,0x9b,0x47,0xec,0xee,0x35,0xd0,0x61,0xf0,0x37,0x26,0xa8,0xa3,0x44,0xa2,0x36, 0xc5,0x52,0x96,0xb5,0xd5,0x2a,0x33,0x33,0x5,0x24,0x8a,0xe9,0xc4,0xa1,0xd6,0x68, 0x73,0x75,0xeb,0x80,0xe3,0x83,0xee,0xa9,0x17,0x4b,0x1b,0x9f,0x71,0x63,0x48,0xe1, 0xc2,0x2a,0x7f,0xf7,0xe2,0x4f,0xdd,0x7c,0xcb,0xa5,0x8,0x6f,0x77,0x6f,0xf4,0x3c, 0xbb,0x8d,0x5f,0x3,0xe3,0xa1,0x84,0x75,0xc3,0xee,0x1d,0x4,0x73,0x4e,0x61,0x9, 0xbe,0x31,0x1,0x20,0x42,0x62,0x49,0x4d,0xbd,0xf5,0x69,0xda,0xe3,0x4f,0x73,0xd7, 0xdf,0x7f,0x33,0xfb,0x8f,0x3f,0xcb,0xe5,0x5f,0xfe,0x38,0xd2,0x4e,0x4,0xb4,0x58, 0x68,0x4,0xf6,0x4b,0x82,0x10,0xbc,0x9c,0xb9,0xee,0x6b,0xf9,0x3f,0xac,0x14,0xcc, 0xf5,0x1e,0x6d,0x81,0x90,0x20,0xa5,0x44,0x1b,0xc3,0x74,0xec,0xb2,0x79,0xf5,0x80, 0xa3,0x5a,0x9d,0xb9,0xd9,0x12,0xab,0x2b,0x55,0x52,0xe9,0x4,0x42,0x7,0x12,0x7a, 0xb5,0x94,0xa3,0x90,0xcd,0x50,0xa9,0xe6,0xb9,0x72,0xe5,0x80,0x5e,0x77,0x14,0xe8, 0x5d,0x88,0xc0,0x23,0xbb,0xd7,0xa0,0x71,0xdc,0x65,0x79,0xb9,0xcc,0x5d,0x77,0xcc, 0x93,0x48,0xc6,0x59,0x58,0x28,0x53,0x2c,0xa4,0xd8,0x28,0xd4,0xd8,0xdc,0x38,0x64, 0x3c,0x71,0x3,0xff,0x95,0x94,0x28,0x5e,0x99,0x42,0x21,0xff,0xb2,0x60,0xd9,0xec, 0x7d,0x82,0xee,0xe8,0x39,0x6c,0xeb,0xcb,0x0,0x3b,0x9c,0xb9,0x12,0x89,0xd6,0x7d, 0x8e,0xea,0x1f,0x45,0x28,0xc1,0xb9,0xbf,0xfb,0x6,0x12,0xf3,0x25,0xbc,0x81,0x87, 0x90,0xa0,0xc3,0x84,0xe,0x6e,0x6e,0xd7,0x92,0xc,0x4d,0x6c,0x52,0x49,0x46,0x23, 0x8f,0xab,0x1b,0x35,0x3e,0xfd,0xd8,0x25,0x2e,0x5d,0xda,0x63,0x32,0x75,0x40,0x4, 0x89,0xa3,0x54,0x92,0xe5,0xc5,0xa,0x5f,0xff,0xba,0xbb,0x39,0x77,0xf7,0x3c,0xb1, 0x58,0x2c,0x34,0x1e,0x9,0x22,0x4a,0xe2,0xb9,0x1e,0xeb,0x57,0xe,0xf9,0xc4,0xa7, 0x9f,0xe7,0xca,0xe6,0x1e,0xd3,0xc9,0x84,0x44,0x3c,0xc1,0xb9,0x73,0x4b,0xbc,0xee, 0xeb,0xef,0x61,0x61,0xbe,0x84,0x20,0xa8,0x42,0xbe,0x52,0x5b,0xfe,0x97,0xec,0xa1, 0xf3,0x8d,0x43,0x6f,0xfc,0x85,0x70,0xa3,0xfa,0x32,0xda,0xed,0x4e,0x58,0x8e,0x4, 0x2d,0x7c,0x7a,0xfd,0x8b,0x18,0x34,0xa5,0x7,0x56,0x29,0x3f,0xb4,0x8c,0x6f,0x3c, 0x8c,0xd6,0x81,0x61,0xf9,0xcb,0xea,0xd1,0xf9,0x32,0xf7,0x5d,0x21,0x82,0xa0,0x8c, 0x64,0x3c,0x72,0x79,0xfe,0xf9,0x5d,0x1e,0xfb,0xcc,0xf3,0xec,0xec,0xd5,0x71,0x5c, 0x8f,0xd0,0x28,0x48,0x3c,0x12,0xe1,0xee,0xbb,0x96,0x79,0xdd,0xa3,0xe7,0x59,0x98, 0x2b,0x20,0xa4,0xc0,0xd5,0x3e,0x46,0x48,0xa4,0x25,0xe9,0xf5,0x86,0x3c,0xf5,0xd4, 0x16,0x8f,0x5f,0x5c,0x67,0xff,0xb0,0x8e,0xc0,0x50,0x2e,0x64,0x79,0xe4,0xe1,0xbb, 0x78,0xf0,0xc1,0xb3,0x64,0x32,0x71,0xb4,0x51,0xaf,0xe8,0x5a,0xad,0x2f,0xb5,0x1a, 0x3c,0xbf,0xcb,0x78,0xba,0x8d,0x12,0x37,0x6e,0x48,0x7f,0xf9,0x8c,0x4,0x2d,0x34, 0x42,0x7,0xcf,0x71,0x75,0xb,0xd7,0x6f,0x13,0xcd,0x16,0x99,0x79,0xf4,0x2c,0x7b, 0x1f,0x7b,0x16,0xe3,0xfa,0x88,0x88,0x75,0x1a,0xe4,0x41,0xbc,0x3a,0x60,0xa0,0x41, 0x1a,0x8c,0x9,0xc4,0xc4,0x76,0x7b,0xc8,0xc5,0xcf,0x5d,0x26,0x9f,0xcf,0x30,0x37, 0x5f,0x64,0x79,0xb1,0x42,0x22,0x1e,0x43,0xfb,0x9a,0x5c,0x2e,0xce,0x43,0x17,0xd6, 0x98,0xaf,0x97,0xd8,0xdd,0xa9,0x73,0x58,0x6b,0xe1,0xfb,0x41,0x79,0x54,0xa,0xc9, 0xd1,0x41,0x93,0x56,0xb3,0xcb,0xdc,0x5c,0x91,0xe5,0xc5,0x32,0x95,0x72,0x9e,0x3b, 0xd6,0xe6,0xc8,0x58,0x31,0x5a,0x29,0xe7,0xd5,0x0,0x42,0x73,0xe2,0xf0,0x32,0xa7, 0x1b,0x87,0x79,0xd9,0x37,0xeb,0x24,0x4f,0x36,0x22,0x14,0xf9,0xf0,0xd1,0xbe,0xb, 0xa,0x32,0xcb,0x15,0x94,0xa5,0xd0,0xae,0x8f,0x10,0x81,0x8a,0xf9,0xc5,0x82,0xf5, 0xcd,0x18,0x26,0x2c,0x62,0xb,0x11,0xe8,0x2d,0x96,0xb2,0xd0,0xda,0xe7,0xb8,0xd6, 0xa5,0xd9,0xe8,0x51,0x3b,0xea,0x71,0xe6,0xcc,0x2c,0x95,0x4a,0x86,0x88,0x1d,0xb4, 0x83,0xad,0x2e,0x55,0x99,0xad,0x14,0xd8,0xdd,0xaf,0xb1,0x7e,0xf5,0x90,0x76,0x7b, 0x8,0x26,0x70,0xe,0x6a,0x57,0xb3,0x71,0xf5,0x90,0xc3,0xa3,0xe,0x4b,0x8b,0x25, 0x56,0x57,0x67,0x99,0xab,0xce,0x91,0x2d,0x6f,0xdf,0x7c,0x20,0x4e,0x18,0x93,0x25, 0xd3,0x44,0xed,0x52,0x38,0x61,0xc5,0x29,0x97,0x3a,0xe5,0xf7,0xf2,0x84,0xaf,0xbe, 0x8,0xc6,0x30,0xc8,0x4a,0x21,0x1,0x1f,0x29,0x13,0x58,0x2a,0x13,0x68,0x2a,0x96, 0xd,0x4a,0x61,0x1c,0xef,0xd4,0xa5,0xf1,0xaa,0x8e,0x93,0xd5,0x7c,0xba,0xbd,0x6a, 0xa4,0x14,0xc4,0x63,0x11,0xb4,0xd6,0x1c,0x1d,0x35,0x69,0x36,0x3b,0xcc,0xcf,0x95, 0x58,0x5e,0xae,0x52,0xae,0x64,0x30,0x4,0xf5,0x90,0xb5,0x33,0xb3,0x94,0x8a,0x39, 0x2e,0xaf,0xef,0xb1,0xbf,0xdf,0x60,0x3c,0x74,0xb1,0x6d,0x45,0x2c,0x1e,0xc5,0x9d, 0x3a,0x5c,0xb9,0xbc,0xc7,0xd1,0x71,0x9b,0xf3,0xb,0x2e,0xc5,0xb4,0x7b,0xf3,0x81, 0x38,0xb9,0xd9,0x4a,0xc5,0x49,0xc5,0xce,0x9d,0xb6,0x2e,0x21,0xc0,0x68,0x81,0x10, 0x1a,0x8c,0x78,0x49,0xc9,0x3b,0xe0,0xc4,0xa1,0xbd,0x45,0x68,0x8c,0x10,0xa4,0xe3, 0xe7,0x51,0x2a,0x71,0xca,0xf9,0xd1,0x3a,0xc8,0x92,0x5f,0xc5,0x95,0x70,0xed,0x5a, 0xae,0xb7,0x99,0x9a,0x1b,0x9,0xba,0x10,0x44,0x6d,0xb,0xdf,0xf7,0xd9,0xde,0x3a, 0xa2,0x5e,0xef,0xb0,0xb8,0x1c,0xc8,0x1e,0xb9,0x6c,0x70,0xbd,0xe9,0x54,0x9c,0x87, 0x1e,0x58,0x63,0x7e,0xb6,0xc8,0xfa,0xfa,0x11,0x87,0x47,0x4d,0x7c,0x47,0x13,0xb1, 0x14,0x46,0x48,0xfa,0x9d,0x11,0x9f,0xad,0x3d,0xc7,0x52,0xa2,0xc2,0xe2,0xcd,0xdf, 0x9a,0xae,0xd1,0xd2,0x72,0xea,0x4d,0xa4,0x62,0x4b,0x4c,0xa6,0x3b,0x61,0x22,0x17, 0xc6,0x62,0x21,0x4f,0x9d,0xd4,0x2f,0x4d,0x7d,0xd,0xc6,0xf8,0x28,0x93,0xa0,0x9a, 0x7d,0xcb,0x29,0x60,0xfd,0x83,0x26,0xda,0xf3,0x82,0x40,0x22,0x5e,0xc4,0x48,0xbf, 0x82,0xe3,0x4,0x8,0xc2,0x6a,0x9f,0x52,0x8a,0xf1,0xd8,0xe1,0x85,0xcb,0xfb,0xd4, 0x8f,0x3a,0xcc,0xcd,0x17,0x99,0x9d,0xc9,0x93,0xcb,0xa7,0x51,0x42,0x32,0x37,0x93, 0x27,0x9b,0x4d,0xb2,0xbf,0x9f,0x65,0x7b,0xfb,0x98,0x56,0x7b,0x10,0x74,0xcc,0x46, 0x15,0xa3,0x5e,0x97,0x66,0xb3,0xfc,0x6a,0xb0,0xa6,0x6b,0xf3,0x3c,0x97,0xb9,0xc0, 0x42,0xe1,0x7b,0xf1,0x4d,0xe0,0x15,0xa,0x52,0x84,0xf0,0x46,0xeb,0x2f,0x1e,0x23, 0xb4,0x4,0xdf,0x87,0x6c,0xf2,0x41,0x4a,0x99,0x6f,0xe,0x82,0xf6,0x68,0x4c,0xe3, 0x73,0x9b,0xe8,0xb1,0x87,0xa,0x6d,0x31,0xaf,0x90,0xf5,0xbd,0x22,0x46,0xc5,0x75, 0xd5,0x43,0x80,0x88,0x52,0x28,0x21,0x68,0x77,0x87,0xfc,0xc5,0xf3,0xbb,0x7c,0xe6, 0xf1,0x4b,0x5c,0xb9,0xb2,0xc7,0xd4,0xf5,0x0,0x48,0xc4,0xa2,0x9c,0x5d,0x9b,0xe7, 0xe1,0x87,0xef,0xe4,0xee,0x73,0x8b,0xd8,0xb6,0xc4,0x71,0x75,0xd0,0xb3,0x67,0xbd, 0x2a,0x79,0x84,0xb9,0x6e,0x65,0x28,0xd6,0x66,0xdf,0x49,0x29,0xfb,0x6,0x26,0x3a, 0xb8,0x73,0xc6,0xa8,0x20,0x19,0x93,0xe6,0x8b,0x2,0xe1,0x79,0x3e,0x11,0x3b,0xcb, 0x9d,0xb,0x3f,0x42,0x2c,0x12,0xcc,0x96,0xd6,0xe5,0x43,0x6a,0x17,0xb7,0x2,0xa1, 0x5b,0xa9,0xe0,0xcd,0x5,0xb7,0x74,0x9c,0x36,0xe6,0x3,0x46,0x6,0x9d,0xa9,0xb6, 0xa,0x1c,0x1c,0xa3,0xd1,0x84,0x67,0x9f,0xdd,0xe2,0xf1,0xc7,0x2f,0xb1,0x77,0xd4, 0xc2,0xd3,0x7e,0x50,0xe3,0x4e,0x25,0xb8,0xe7,0xdc,0x22,0x5f,0xff,0xda,0xbb,0x99, 0x9f,0x2f,0xe2,0x9b,0xa0,0x8b,0xf6,0x55,0x60,0x4d,0xd7,0xa2,0xb3,0x11,0x9a,0x78, 0x74,0x41,0x3c,0xb0,0xfc,0xb,0xe6,0xa9,0xab,0xff,0x98,0xce,0xf0,0x71,0xa4,0xe5, 0x23,0xcc,0x8b,0xd9,0xce,0x89,0xe3,0x5b,0xa3,0xb5,0x47,0x54,0xe5,0xb9,0x67,0xe9, 0xfd,0xcc,0x16,0xbe,0xfd,0x14,0x9e,0xab,0xbf,0xfd,0x18,0xfd,0xcd,0x63,0xec,0x54, 0x34,0x4,0x14,0xf8,0x22,0x1,0xff,0x2b,0x5,0xc0,0xc9,0x16,0x75,0x92,0x2b,0x9, 0x82,0xd8,0x16,0x74,0x93,0x86,0xc,0xeb,0xb8,0x45,0xbb,0xd5,0x67,0x61,0xa1,0xc4, 0xca,0x6a,0x95,0x7c,0x2e,0x83,0x10,0x82,0x72,0x25,0x47,0xb6,0x90,0x21,0x23,0x6d, 0x3a,0x29,0xfb,0x15,0xc6,0xb2,0x2f,0xa2,0x35,0xbd,0x54,0xe1,0x60,0x30,0xde,0x30, 0x5f,0xd8,0xfe,0xa7,0x34,0x6,0x9f,0xc2,0x77,0xdb,0x20,0xfc,0x53,0x52,0xa2,0xc3, 0x67,0x28,0x91,0x21,0x1d,0x3f,0xcf,0xdd,0xf3,0xff,0x9c,0x6a,0xe1,0x5b,0xaf,0x79, 0x9f,0x3e,0x7c,0x91,0x3f,0x7f,0xe7,0x2f,0xe3,0x34,0x6,0x58,0xc9,0xc8,0x2d,0x89, 0xb,0x2f,0x97,0x66,0x99,0x93,0x18,0x69,0xae,0xd1,0x76,0x63,0xc0,0xd3,0x3e,0xa9, 0x54,0x8c,0x3b,0xee,0x5c,0x60,0x76,0xa6,0x18,0x34,0x69,0x4a,0x89,0x19,0x40,0x23, 0xd7,0xe4,0xce,0x7f,0xfb,0x95,0xb4,0x5c,0x1a,0x4c,0xab,0x7f,0x91,0xfd,0xd6,0x7f, 0xa6,0x3d,0x7a,0x1a,0xa3,0xbb,0xc1,0xea,0x10,0x11,0x62,0xd1,0x79,0x66,0x8b,0xef, 0x60,0x36,0xfb,0x6d,0x28,0x15,0x3d,0x7d,0xca,0xe6,0x9f,0x3c,0xc5,0x27,0xdf,0xf9, 0x4b,0x8c,0xe,0xbb,0xc1,0x6a,0xf8,0x5a,0x3c,0x87,0x45,0x4,0x5b,0xae,0xef,0x5, 0x7d,0x16,0xd9,0x6c,0x82,0xb5,0xd5,0x39,0x66,0xe7,0xf3,0xa4,0x44,0x9e,0x61,0xf9, 0x80,0xb9,0xff,0xeb,0xff,0xb8,0x35,0x76,0x1a,0x63,0x30,0x53,0xa7,0x86,0xc1,0xc7, 0xb6,0xa,0x58,0x2a,0x76,0xc3,0xe3,0xde,0xd4,0x65,0xe7,0xa3,0x4f,0xf3,0xa9,0x1f, 0xfa,0x75,0x7a,0x9b,0x75,0xe2,0xd9,0x14,0x98,0xaf,0x4d,0x14,0x4e,0x24,0x7f,0x64, 0xe0,0x52,0xd7,0x7e,0x40,0x5c,0x66,0x66,0xb2,0xdc,0xb3,0x7c,0x17,0xb1,0xf3,0x1d, 0x16,0x7f,0xfe,0x47,0xbe,0x12,0xd,0xef,0xc6,0x5c,0x5f,0xbe,0x34,0xa1,0x22,0x1a, 0x8b,0x56,0xff,0x87,0xdf,0x74,0x7b,0x43,0x1a,0xcf,0xed,0xb1,0xfe,0xa1,0x8b,0xac, 0xff,0xc7,0x4f,0x31,0x6d,0xf4,0x89,0xe5,0x92,0x5f,0x66,0x85,0xee,0xab,0x8,0x6, 0x61,0x42,0x76,0x27,0x4f,0x93,0x13,0x65,0x5,0x12,0xf8,0xfe,0x7e,0x83,0xce,0xbe, 0xcb,0x72,0x34,0xfb,0x6a,0xe4,0x11,0x7f,0xc9,0x45,0x71,0x8d,0xfa,0xb9,0x23,0x87, 0xbd,0x8f,0x7f,0x81,0xc9,0x61,0x17,0x69,0x5b,0x4c,0x1a,0x7d,0x1a,0xcf,0x6c,0x70, 0xf4,0xd8,0x55,0xba,0xdb,0x4d,0x2c,0xa9,0xb0,0x53,0xb1,0xeb,0x2,0xf2,0xd7,0x1e, 0x18,0xfa,0xc4,0x7a,0x12,0x36,0xce,0x1b,0xad,0x91,0x22,0x38,0x81,0x27,0x1a,0x8f, 0xd1,0x3d,0xae,0x73,0xb4,0x9f,0x79,0xb5,0x58,0xd3,0x4b,0xb0,0x28,0x7c,0x73,0x32, 0x2b,0x4e,0x3c,0x35,0x6e,0x7f,0x68,0x9e,0xfe,0x85,0xf,0x73,0xf8,0x67,0xcf,0x12, 0xcb,0xe6,0x98,0xe,0xc7,0x8,0xdf,0x4,0x36,0xc5,0x84,0x8d,0x65,0x59,0x68,0x13, 0x9c,0xf2,0x62,0xc4,0xf5,0xf6,0x9a,0xaf,0xa9,0x25,0x71,0x8d,0x67,0x1b,0x1d,0x4a, 0x37,0xe2,0xb4,0xe,0x63,0x29,0xf1,0x12,0x67,0xd7,0xbc,0xaa,0x2b,0xe2,0xc4,0xb0, 0x74,0xe3,0x45,0xa,0xd,0xbe,0xe3,0x63,0x3c,0x9f,0x48,0x34,0x82,0x90,0xf2,0xf4, 0xda,0xcd,0x75,0xc5,0x1b,0xf1,0x35,0x7a,0x58,0x9a,0x30,0xd7,0xaf,0x64,0xf9,0xa2, 0x7c,0x2b,0x4,0x44,0x7c,0x45,0x81,0x78,0x29,0x2f,0x8c,0x40,0x2a,0x15,0x9c,0x0, 0x66,0xab,0x1b,0xe3,0xc0,0xed,0x53,0xea,0x5e,0x69,0x66,0x7d,0x7b,0xdc,0x6,0xe2, 0x36,0x10,0xb7,0xc7,0x5f,0x49,0x20,0x84,0x11,0xd7,0xd5,0xa3,0xc5,0x4b,0x54,0x43, 0x43,0x5,0xf7,0x86,0x1f,0x5e,0xcf,0x3d,0x4c,0xe8,0x63,0x16,0x5c,0x47,0xd3,0x6e, 0xd4,0xb5,0x6e,0x8,0x42,0xd7,0xd1,0xea,0x17,0xe9,0x5f,0x5f,0x46,0xca,0x76,0xa3, 0x84,0xf0,0x92,0xb1,0x4e,0x7c,0xb1,0xc4,0xfb,0x16,0x3,0x61,0xcc,0xd,0xb7,0xd3, 0x10,0xf8,0xf6,0x4d,0xe8,0xe4,0x37,0x27,0xdd,0x29,0x61,0xed,0xc2,0x18,0x71,0x7a, 0xe8,0x94,0xb9,0xe1,0x58,0xe6,0x13,0x8a,0x6b,0xd0,0x88,0xb0,0xaf,0xce,0x5c,0xab, 0x79,0x9c,0x9e,0x71,0x18,0xd0,0x60,0x23,0xae,0xdd,0x7c,0x7d,0x72,0xde,0x4b,0xe8, 0x91,0xd,0x1e,0xf,0xb8,0xb2,0x39,0xed,0xc5,0x10,0xa1,0x3,0x5d,0x60,0xc2,0xa3, 0xba,0x8c,0xb8,0xde,0x64,0x1d,0xd8,0xfc,0xcd,0x89,0xb6,0x24,0xc0,0x84,0x7d,0xe1, 0xa7,0xe7,0x43,0x9d,0x3c,0x1e,0xbe,0x87,0x10,0x2,0xe3,0xf9,0x38,0xfe,0x18,0xdf, 0x7f,0xd5,0xd4,0xd7,0x97,0xaf,0xc1,0x5c,0x73,0xfd,0x89,0xf0,0x44,0xb2,0xa0,0x8f, 0x4d,0x98,0xe0,0x38,0x1,0x23,0x3,0x35,0x53,0x87,0x9,0xa1,0x38,0xe5,0xe0,0x41, 0x45,0x5b,0x1b,0x83,0x90,0x41,0xd5,0x4f,0x12,0xdc,0x90,0x6b,0xbc,0x3d,0x78,0x13, 0x8d,0x41,0x8a,0x6b,0xa6,0x36,0x29,0x64,0xd8,0x98,0x62,0x10,0x3a,0x68,0x5c,0x37, 0x22,0x68,0x10,0x46,0x87,0x6e,0xc0,0xd0,0xf6,0x7f,0x3a,0x63,0x8d,0x41,0x8b,0xa0, 0x4a,0x6e,0x42,0x17,0x8f,0x11,0x27,0xe7,0x49,0x29,0xc4,0xc9,0x49,0x6,0x22,0x34, 0x3,0x9d,0x80,0x8e,0xbe,0xd6,0x52,0x10,0xb8,0x4b,0x83,0xbf,0x73,0xea,0xa2,0x7d, 0x28,0xdc,0xb1,0x40,0xb4,0x98,0xb9,0xc5,0x40,0x84,0xcb,0x5a,0x0,0x5a,0xfb,0x18, 0x4f,0x83,0xa,0x3a,0x4a,0xc1,0x60,0x7c,0xd,0xda,0x47,0xb,0x1b,0x69,0xc9,0xd0, 0x3a,0x19,0xb4,0x62,0x49,0xed,0x23,0x55,0x70,0x56,0x9e,0xd1,0x2,0xed,0xeb,0xa0, 0xf7,0x41,0x4a,0xa4,0x91,0x68,0xad,0xd1,0xc6,0x47,0xa9,0x0,0x50,0xad,0x35,0xc6, 0x37,0x48,0x19,0xda,0x70,0x7c,0x83,0x21,0x38,0x55,0x46,0x87,0xdf,0x6b,0x4,0x52, 0x99,0xd0,0xf5,0x7,0x52,0x5e,0x27,0x73,0xfb,0x3e,0xd8,0xa,0x8c,0x1d,0x4c,0x17, 0xed,0x61,0x64,0x70,0xad,0x22,0xcc,0x98,0x4d,0xd8,0x35,0x4,0x2,0x3f,0xf4,0xe9, 0xa,0x1,0xda,0x27,0x9c,0x20,0x27,0xa,0xa0,0x8f,0x8c,0x28,0xee,0xfb,0x27,0xff, 0x13,0xd9,0x95,0x22,0x57,0x7e,0xe7,0xf1,0x5b,0xb,0x84,0x40,0x60,0xb4,0xc4,0xc5, 0x25,0x2a,0xc,0x56,0x3c,0x1a,0xde,0x30,0x3f,0x28,0x96,0x8,0x49,0x24,0x1e,0xc3, 0xf3,0x5c,0xfc,0xf1,0x14,0x15,0x89,0x80,0x15,0x1c,0xeb,0x80,0x32,0x81,0x84,0x63, 0xbc,0xc0,0xf1,0x11,0x91,0x18,0x2f,0xe8,0x1c,0xd2,0x52,0x63,0x54,0x68,0x56,0xf0, 0x41,0xa2,0xf0,0x85,0x17,0x1e,0x39,0x14,0x16,0x63,0x6d,0x8d,0x34,0x2a,0x34,0x3b, 0xc8,0xf0,0xac,0x3d,0x83,0x11,0xa,0x6d,0x1b,0x84,0x6b,0xf0,0x5d,0xf,0x15,0x51, 0xa0,0x24,0x5a,0x59,0x8,0xa3,0x1,0x17,0x1d,0x9e,0x52,0x20,0xc3,0xee,0x25,0x2d, 0x4f,0xce,0xae,0xd,0x40,0x34,0x52,0x6,0xfd,0x1d,0x61,0x53,0x64,0x70,0x56,0x88, 0xf,0x26,0x38,0x13,0x56,0xbb,0x6,0x2b,0x1d,0x43,0x3b,0x63,0xae,0xfe,0xce,0x13, 0x8c,0xe,0x3a,0xb7,0x16,0x8,0xed,0xfb,0xf8,0xd3,0x29,0xb3,0x8f,0xde,0xc5,0xc3, 0x3f,0xfe,0x9d,0x14,0xee,0x59,0x64,0xfd,0xb7,0x3e,0xcd,0x53,0x3f,0xfb,0x61,0x52, 0xf3,0x39,0x1e,0xf8,0x3f,0xdf,0xce,0xec,0x37,0xdc,0xcd,0xb0,0xde,0xe6,0xd9,0x7f, 0xf3,0x51,0x76,0x3f,0xfc,0xc,0x66,0xe4,0xf1,0xc8,0x4f,0xbd,0x83,0xec,0x4a,0x85, 0x8b,0xef,0xfb,0x20,0xcd,0x67,0x77,0xb8,0xfb,0xfb,0xde,0xc0,0x1d,0xdf,0xfb,0x4d, 0x7c,0xfe,0x5f,0xfd,0x21,0xbb,0xbf,0xff,0x34,0x76,0x31,0xc9,0x83,0xff,0xf4,0xdb, 0x29,0xdc,0x3d,0xcb,0x9f,0xff,0x6f,0xbf,0x8a,0xd3,0x19,0x71,0xcf,0xf,0xbe,0x99, 0xe5,0xb7,0x3d,0xc0,0x93,0x3f,0xf3,0x21,0xb6,0x3f,0xf6,0x14,0x8f,0xfc,0xc4,0x3b, 0x88,0x24,0x22,0x3c,0xfd,0x73,0x7f,0x0,0x48,0xee,0xfb,0x27,0x7f,0xd,0xcf,0x71, 0x79,0xea,0xa7,0x7f,0x9f,0x7b,0xfe,0xd1,0x5b,0x38,0xf3,0xdd,0x8f,0xf2,0xf4,0xfb, 0x3f,0xc4,0xde,0x47,0x9e,0xe5,0xcc,0x77,0xbd,0x96,0xd2,0x85,0x55,0x2e,0xfe,0xc4, 0x6f,0x23,0xa5,0x22,0x73,0xae,0xca,0x6b,0x7e,0xf4,0x3b,0x68,0x7e,0x76,0x8b,0x67, 0x3e,0xf0,0x51,0xfc,0xe1,0x94,0xb5,0xef,0x7e,0x84,0xd2,0x3,0x2b,0x3c,0xf9,0xd3, 0x7f,0x80,0x3f,0x9e,0x70,0xfe,0x7f,0x7d,0xb,0x52,0x5a,0xf4,0x76,0xea,0xdc,0xfd, 0xfd,0x6f,0xc,0x22,0x99,0x12,0xf4,0x8f,0xba,0x3c,0xf3,0xf3,0x7f,0xc8,0x1d,0xdf, 0xf3,0xd,0xcc,0x7d,0xe3,0x39,0x4a,0xf,0xd4,0x19,0xee,0x34,0x6f,0x6d,0xb0,0xf6, 0x26,0x2e,0xb3,0x5f,0x7f,0x17,0x6f,0xfa,0xc5,0x1f,0xc0,0x8a,0x59,0xfc,0xc5,0x2f, 0xff,0x37,0x8e,0x9f,0xdc,0x20,0x52,0x8c,0xf3,0xa6,0x7f,0xff,0x8f,0xa8,0x5e,0x58, 0xe3,0xb,0xff,0xee,0x23,0x8,0x47,0xf3,0xa6,0xf,0xfc,0x43,0xe6,0x5e,0x7f,0x7, 0xc6,0xd5,0x2c,0x7d,0xcb,0x83,0xac,0xfd,0xcd,0xd7,0x52,0x79,0xe4,0x2c,0x76,0x36, 0xce,0xda,0xdf,0x7e,0x1d,0xb,0xdf,0x74,0xf,0xd5,0x87,0x57,0x71,0x5d,0x97,0x48, 0x2a,0xc1,0x99,0x6f,0x7b,0x88,0x33,0x6f,0x7f,0x98,0xea,0x37,0xde,0x89,0x15,0x97, 0xdc,0xf9,0xdd,0xaf,0x63,0xf1,0x8d,0xf7,0x51,0xb8,0x7f,0x19,0xd7,0x9f,0x50,0x79, 0x70,0x85,0x99,0x47,0xee,0x3a,0xdd,0x2a,0xaa,0x17,0xce,0x50,0x7e,0xe0,0xc,0x9e, 0xe7,0x90,0x5b,0xad,0xb2,0xf4,0xfa,0xf3,0xbc,0xe6,0x87,0xbf,0x83,0x68,0x31,0x45, 0x76,0xae,0xc0,0xfc,0x23,0x6b,0x98,0xa9,0x8f,0xaf,0x7d,0xaa,0x8f,0xde,0xc1,0xd9, 0xbf,0xf1,0x3a,0x56,0xbf,0xf3,0x11,0xd2,0x8b,0x5,0x3c,0x77,0x4c,0x76,0xb5,0xcc, 0xdc,0xa3,0x77,0x21,0x44,0x20,0xd7,0x94,0xce,0xaf,0x30,0xfb,0xe8,0x9d,0xc,0xb7, 0xea,0xec,0xfe,0xe9,0x33,0x64,0xce,0xce,0x60,0xa7,0xe3,0xd4,0x3e,0x79,0x19,0x77, 0x32,0x65,0xf9,0xcd,0xf7,0x21,0x80,0x2b,0xbf,0xf1,0x18,0x9d,0xe7,0xf,0x6e,0xed, 0x8a,0xb0,0xe2,0x8a,0x73,0xff,0xe0,0xd,0xc,0xf,0xba,0xfc,0xd9,0x3f,0xfe,0xf, 0xf4,0xb6,0x8e,0x90,0x22,0xc2,0xb9,0x1f,0x78,0x3,0xb9,0xf3,0x8b,0x7c,0xec,0x7b, 0xfe,0x35,0x57,0xfe,0xe8,0x31,0xe,0xfe,0xec,0x12,0x6f,0xff,0xbd,0x1f,0x62,0xf9, 0xdb,0x2e,0x30,0xdc,0x6f,0xe1,0x4f,0x26,0xb4,0xd6,0xf7,0x58,0xfd,0xf6,0x7,0xe9, 0xbc,0x70,0x40,0x6a,0xb9,0xc4,0xb8,0x3b,0x20,0xb3,0x3a,0x83,0xc1,0x27,0x3e,0x93, 0x1,0xb,0x86,0x47,0x2d,0xce,0xbc,0xfd,0x21,0x70,0x5c,0x12,0x33,0x5,0xba,0xdb, 0xc7,0xa4,0x97,0xb,0x44,0x64,0x12,0x6f,0xe2,0xe1,0xb9,0xe,0x42,0x8,0x7c,0x63, 0xe1,0x7b,0x1a,0xed,0x7,0x8c,0xc8,0xc7,0xd0,0x78,0x76,0x9b,0xd2,0x43,0x2b,0xdc, 0xf7,0xbf,0xff,0x35,0xdc,0xee,0x4,0xcf,0xf1,0xf1,0xfd,0x29,0xd9,0xc5,0x79,0x96, 0xde,0xfa,0x0,0x1b,0x1f,0xfa,0x2c,0xb9,0xbb,0x67,0x59,0x7e,0xdb,0x5,0x8e,0xbf, 0xb0,0x15,0x1c,0x7d,0xe7,0xfa,0x41,0xc4,0x33,0x1a,0xad,0x5d,0xa4,0x6d,0x51,0xbb, 0xb8,0xc1,0xfe,0xa7,0x2e,0xb1,0xf0,0xfa,0x7b,0xe8,0x5c,0x39,0xe4,0xd9,0x5f,0xfc, 0x63,0x12,0x33,0xb9,0xe0,0xcc,0x8f,0x84,0x22,0x92,0x89,0xe2,0xdd,0x6a,0xd6,0x24, 0xa5,0x24,0x5e,0x49,0xd1,0xbd,0x52,0x63,0xda,0x1e,0x21,0x8d,0x44,0x28,0x88,0x17, 0xd3,0xf8,0x23,0x97,0x71,0x73,0x80,0x0,0xdc,0xde,0x8,0x77,0x38,0x41,0x29,0x49, 0xfa,0x8e,0x2a,0xda,0xf1,0xb9,0xf2,0x1b,0x9f,0xe6,0xbe,0xff,0xe5,0xad,0xac,0x7c, 0xc7,0x5,0x1a,0xcf,0x6c,0x61,0xb4,0x21,0xbd,0x50,0x22,0x92,0x48,0x90,0x9a,0xcb, 0x62,0x5c,0xcd,0xb,0xbf,0xfd,0x29,0x16,0xde,0x78,0x3f,0x91,0x54,0x9c,0xfa,0x93, 0x9b,0x4c,0xda,0x3,0x72,0x6b,0x33,0xd8,0xc9,0xa0,0xee,0x8d,0x80,0x49,0x6f,0x1c, 0xb8,0xc5,0x2d,0x81,0xb2,0x83,0x4e,0x4f,0x3b,0x66,0xb3,0xfb,0xdf,0x9e,0xc3,0x8a, 0x28,0xee,0x7f,0xe7,0xdb,0x38,0x7c,0xfc,0xa,0xc6,0xd5,0xf8,0x18,0x8a,0xf7,0xce, 0x53,0x7d,0x78,0x95,0x67,0x7e,0xe1,0x8f,0x89,0xcf,0xe5,0x58,0x78,0xeb,0xbd,0x3c, 0xf3,0x6f,0x3f,0x12,0xbc,0x86,0x14,0xb8,0xc3,0x29,0xd3,0xe9,0x4,0x6d,0x4,0x52, 0x9,0x2c,0x29,0x51,0x99,0x38,0xca,0xb2,0xb0,0xa2,0x36,0x56,0x3a,0x1,0x26,0x68, 0xf5,0xb2,0x13,0x31,0xe2,0x67,0xf3,0x38,0xb5,0xd1,0x2d,0xde,0x9a,0x1c,0x9f,0xda, 0x13,0x1b,0x94,0x2e,0xac,0x70,0xfe,0x9d,0x6f,0xa1,0xf0,0xe0,0x12,0xb9,0xfb,0x16, 0xa8,0x7f,0x61,0x93,0x78,0x31,0xcd,0x3d,0x3f,0xf0,0x46,0xf2,0xf7,0x2e,0x71,0xcf, 0xf,0x7e,0x33,0xe9,0x95,0x12,0x9b,0x7f,0xf0,0x39,0x32,0x67,0xaa,0xc4,0x67,0xf2, 0x6c,0xfd,0xe1,0x93,0x8c,0x9b,0x3d,0xce,0xff,0xcf,0xdf,0xcc,0xc1,0xc7,0xff,0x82, 0xd6,0xd3,0x5b,0x24,0xe7,0xb,0x64,0xce,0x54,0xc8,0x9d,0x5f,0xc2,0x75,0x3d,0x36, 0x3e,0x78,0x91,0x58,0x31,0xc1,0xfc,0x37,0xde,0xcd,0xa5,0x5f,0xff,0x73,0xba,0x3b, 0x35,0x4a,0xf,0xae,0x60,0xa5,0x22,0x8c,0xdb,0x43,0xca,0xf7,0x2f,0x51,0xfe,0xba, 0x55,0xf2,0xf7,0xcf,0x52,0x7c,0x70,0x85,0xe1,0x71,0xf,0xd0,0x44,0xb2,0x51,0xac, 0x98,0xc5,0x53,0x3f,0xff,0x61,0xba,0x1b,0x47,0xac,0xbe,0xed,0x21,0xac,0x54,0x4, 0x65,0xdb,0xac,0xfd,0xad,0x47,0x89,0xe4,0xd3,0x54,0xbf,0x6e,0x8d,0x48,0xc2,0x66, 0xe1,0xcd,0xe7,0x29,0xdc,0xbf,0xc4,0xb8,0x3d,0x20,0x7b,0x6e,0x86,0xf2,0xd7,0xad, 0x50,0xbc,0xb0,0x42,0xe5,0x81,0x15,0xb4,0xe3,0xe1,0xb9,0x1a,0x50,0xc8,0x84,0x8d, 0x8c,0xda,0x8,0x2d,0x11,0x4a,0x12,0xc9,0xc5,0xa9,0x5d,0xbc,0xca,0xc5,0x5f,0xf8, 0x1d,0x5a,0xcf,0x6c,0xbd,0xa2,0xfb,0xf8,0x92,0x5d,0xa5,0x5f,0xce,0x98,0x34,0xfa, 0xef,0xf9,0xcc,0xbb,0x7f,0x8b,0xc9,0x51,0x9f,0xb3,0xdf,0xf9,0x5a,0x16,0xde,0x7c, 0x1e,0x7c,0xc3,0xb,0xbf,0xfa,0x9,0xdc,0xc1,0x88,0xc5,0xb7,0x3e,0xc4,0xf2,0x9b, 0xee,0x27,0x77,0x76,0x86,0x67,0x3f,0xf0,0xa7,0x7c,0xee,0x57,0x3e,0xc8,0xc2,0x43, 0xf7,0x80,0x2d,0x78,0xea,0x5f,0xfd,0x3e,0xb1,0x7c,0xa,0x29,0x15,0x8f,0xbf,0xeb, 0xb7,0x30,0x40,0x76,0xad,0xc2,0xee,0x9f,0x3c,0x43,0x76,0xa5,0xca,0xb4,0xd9,0xe7, 0xd2,0x2f,0x7d,0x9c,0x78,0x25,0x83,0x3b,0xf2,0x78,0xe2,0x5d,0xbf,0x89,0x6d,0x47, 0x28,0xdd,0xb7,0xc4,0xa5,0x5f,0xfb,0x38,0xf5,0x27,0xb7,0x28,0xbf,0x66,0x95,0xf9, 0x6f,0x3e,0xcf,0xdc,0x37,0x9c,0xa3,0xbb,0x7e,0xc4,0x13,0xef,0xfe,0x6d,0xfa,0xdd, 0x6,0xe5,0x73,0xab,0xb8,0xfd,0x29,0x97,0x7f,0xef,0xbf,0xd3,0xbf,0xd4,0x24,0x77, 0xd7,0x2c,0x8d,0x67,0xb6,0xd8,0xfd,0xc8,0xd3,0x9c,0xfd,0x3b,0xdf,0xc4,0xfa,0x7f, 0xfa,0x24,0x9f,0xf9,0xc9,0x5f,0xe7,0xe8,0x53,0x57,0xc9,0x9c,0x99,0xa5,0xbf,0xd3, 0x60,0xf3,0xf7,0x2f,0x52,0xb8,0x67,0x8e,0xd5,0x6f,0xbd,0xc0,0xc2,0x1b,0xef,0xc5, 0xeb,0x4d,0x78,0xea,0xe7,0x7e,0x8f,0xe3,0x8d,0x4d,0xcc,0x14,0x2a,0x17,0x56,0xe9, 0x5e,0x39,0x62,0xf7,0xbf,0x3f,0x8d,0x37,0x74,0xa8,0x3e,0x72,0x86,0xfc,0x1d,0xf3, 0xcc,0x9d,0xbb,0x8b,0x78,0x25,0xc3,0xfc,0xeb,0xcf,0xdf,0xec,0xae,0xd2,0x97,0x3f, 0xa6,0xbd,0x81,0xb9,0xf4,0xeb,0x9f,0x60,0x72,0xdc,0x67,0xf9,0xaf,0x5f,0x20,0xbd, 0x56,0xa5,0xf1,0xcc,0x16,0xf5,0x27,0x77,0xf1,0x1d,0x87,0xd9,0xb,0x67,0x28,0xdc, 0x33,0x4f,0xf3,0xb,0x3b,0x1c,0x3d,0xb6,0x8e,0x8e,0x29,0x4a,0xf7,0x2f,0x61,0x45, 0x15,0x8d,0xa7,0xf7,0x49,0xe4,0x12,0x24,0x4a,0x19,0x8e,0x9f,0xb8,0x4a,0xb4,0x92, 0x21,0x77,0xc7,0xc,0x83,0x46,0x97,0xd8,0x4c,0x16,0xdd,0x9f,0xd0,0x79,0xee,0x80, 0xe4,0x5c,0x81,0x58,0x31,0x45,0xeb,0xca,0x3e,0xa9,0xe5,0x32,0xa9,0xc5,0x22,0xcd, 0xcf,0x6e,0x32,0xde,0x6d,0x92,0x3d,0x3f,0xc7,0xcc,0x37,0x9d,0xc3,0x4a,0xd8,0xec, 0xfd,0xf9,0xb,0xf4,0xae,0x1c,0x21,0x11,0xa4,0x97,0x4b,0x28,0xa9,0xe8,0x6e,0x1f, 0x23,0x92,0x36,0xe5,0x87,0xcf,0xe0,0x35,0x86,0xf4,0xd7,0x8f,0xc8,0x9d,0x5b,0xa0, 0x73,0xe5,0x90,0xde,0xa0,0x8d,0xe5,0xd9,0x54,0xee,0x5e,0x44,0xd8,0x92,0xfa,0xd3, 0xdb,0xa4,0xd7,0x2a,0x2c,0xbc,0xfd,0x41,0x84,0x67,0x38,0xfc,0xa3,0x67,0x69,0x5d, 0xde,0xc3,0x2e,0xa6,0x90,0x71,0x9b,0xdc,0x5a,0x15,0xb7,0xd1,0xa7,0x77,0xb5,0x81, 0x50,0x50,0xb8,0xb0,0x42,0xfa,0xce,0x2a,0xc2,0x31,0x4c,0x6a,0x5d,0x16,0xde,0x70, 0xfe,0x56,0x9d,0xc5,0x71,0xa2,0x3d,0xc8,0xd3,0xb,0xf0,0x5a,0x63,0x63,0x6a,0x7d, 0xac,0x98,0x8d,0xc9,0xc7,0x21,0x65,0x5,0xa7,0x93,0x5,0xa7,0x84,0x9,0xa6,0xbe, 0x71,0x2f,0xd5,0x30,0x4a,0x10,0xb9,0x7b,0x26,0x38,0xec,0xef,0x45,0x8a,0x89,0x18, 0xbb,0xf8,0xbd,0x29,0xaa,0x92,0x8,0x8e,0xb5,0xfc,0x52,0x57,0x80,0x31,0xf8,0x3e, 0x7a,0xe4,0x40,0x5f,0xa3,0xca,0x9,0xb0,0x5f,0xf4,0x9c,0xfe,0xc4,0xf8,0x43,0x17, 0x59,0x8a,0x23,0x2c,0xeb,0x5a,0x9d,0x77,0x68,0x20,0xf9,0xca,0x4f,0x5b,0xd7,0xc3, 0xa9,0x91,0xc9,0xe8,0x2b,0x7a,0x8d,0xdb,0xff,0xc7,0xd0,0x6d,0x19,0xfc,0xf6,0xb8, 0xd,0xc4,0x6d,0x20,0x6e,0x8f,0xdb,0x40,0xdc,0x6,0xe2,0xf6,0xb8,0xd,0xc4,0xd7, 0xd0,0xf8,0xff,0x7,0x0,0x9a,0x3,0x59,0x44,0xb3,0x42,0x19,0x4a,0x0,0x0,0x0, 0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82, // C:/SNIR_PROJET/Superviseur/Superviseur/QSuperviseur/img/LOGOFEN.png 0x0,0x0,0x81,0x7e, 0x89, 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, 0x0,0x0,0x62,0x0,0x0,0x0,0x54,0x8,0x6,0x0,0x0,0x0,0x79,0x86,0xe2,0xbe, 0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0x2,0x76,0x0,0x0,0x2,0x76, 0x1,0xda,0x60,0xe3,0x4f,0x0,0x0,0x0,0x20,0x63,0x48,0x52,0x4d,0x0,0x0,0x7a, 0x25,0x0,0x0,0x80,0x83,0x0,0x0,0xf9,0xff,0x0,0x0,0x80,0xe9,0x0,0x0,0x75, 0x30,0x0,0x0,0xea,0x60,0x0,0x0,0x3a,0x98,0x0,0x0,0x17,0x6f,0x92,0x5f,0xc5, 0x46,0x0,0x0,0x81,0x4,0x49,0x44,0x41,0x54,0x78,0x1,0x0,0xf4,0x80,0xb,0x7f, 0x1,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd6,0x69,0x8d,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x0,0x0,0x1,0xfb,0x2,0x0,0x6,0xd7,0x14,0x0,0xfe,0x1,0xfe,0x0,0x0, 0x7,0xfe,0x0,0x2,0x1,0x2,0x0,0x2,0x1,0x1,0x0,0xff,0xff,0xff,0x0,0xff, 0x1,0x0,0x0,0x5,0x4,0x4,0x0,0x4,0x3,0x3,0x0,0x3,0x5,0x0,0x0,0x3, 0x4,0xff,0x0,0x2,0x3,0xfc,0x0,0x1,0x0,0xf8,0x0,0xfe,0xfe,0xfb,0x0,0xfd, 0xfb,0xfb,0x0,0xfb,0xfb,0xfd,0x0,0xf7,0xf7,0xf9,0x0,0xf0,0xf3,0xf8,0x0,0xeb, 0xec,0xf0,0x0,0xf1,0xf1,0xf2,0x0,0xf6,0xf6,0xfc,0x0,0xf7,0xf8,0xf8,0x0,0xf8, 0xff,0xfa,0x0,0x0,0x0,0x7,0x0,0x7,0x0,0xe,0x0,0x8,0x3,0xd,0x0,0x9, 0x8,0x7,0x0,0xe,0x10,0xa,0x0,0x18,0x17,0x12,0x0,0x12,0x12,0xa,0x0,0x8, 0xa,0xfa,0x0,0x5,0x5,0xfb,0x0,0xfc,0xfa,0xfc,0x0,0xe7,0xea,0xee,0x0,0xe1, 0xe3,0xe8,0x0,0xee,0xec,0xf6,0x0,0xf9,0xfa,0x6,0x0,0xff,0x0,0xa,0x0,0xd, 0x9,0xb,0x0,0x1b,0x1b,0x12,0x0,0x18,0x18,0x8,0x0,0xa,0xc,0xfc,0x0,0x1, 0x0,0xfe,0x0,0xe7,0xe8,0xf0,0x0,0xe2,0xe1,0xe9,0x0,0xee,0xf1,0xf4,0x0,0xf6, 0xfe,0xf8,0x0,0x0,0x0,0x1,0x0,0x5,0x0,0x3,0x0,0x2,0x0,0x3,0x0,0x0, 0x0,0xff,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2, 0x0,0x1,0x0,0xfa,0x0,0xf9,0x0,0x1,0x9,0x3,0x0,0x12,0x1b,0x1b,0x0,0xff, 0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xfa,0xf2,0xf6,0x0,0x51,0xba,0x7e,0x0,0x15,0x30,0x20,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x1,0x0, 0x2,0x7,0x4,0x0,0x0,0x0,0x0,0x0,0xff,0x0,0xff,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8, 0x0,0x0,0x0,0x15,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x4,0x2,0x0,0xec,0xd2,0xe1,0x0,0xfe,0xfd,0xfe, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0x0,0x0,0x0,0x76,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x1,0x1, 0x0,0xc,0x2,0x1,0x2,0x6,0x0,0x1,0x0,0xfe,0xff,0x1,0xff,0x0,0x1,0x1, 0x1,0x0,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x1,0x1, 0x1,0x0,0x1,0x1,0x1,0x0,0x1,0x1,0x0,0x0,0x1,0x1,0x0,0x0,0x1,0x1, 0x1,0x0,0x1,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, 0x0,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xfe,0xff,0x0,0xfe,0xfe, 0xfe,0x0,0xfe,0xfe,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0xff,0x0,0x0,0x0, 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x0, 0x1,0x0,0x1,0x1,0x1,0x0,0x2,0x1,0x1,0x0,0x1,0x1,0x1,0x0,0x1,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x0,0xfe,0xfe,0xfe,0x0,0xfe,0xfe, 0xff,0x0,0xff,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x1, 0x1,0x0,0x2,0x1,0x1,0x0,0x1,0x1,0x1,0x0,0x0,0xff,0x0,0x0,0xff,0xff, 0xff,0x0,0xfe,0xfe,0xff,0x0,0xfe,0xfe,0xff,0x0,0xff,0x0,0xff,0x0,0x1,0x0, 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfb,0x0,0x0,0x0,0xf3,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0xc, 0x7,0x0,0xc1,0x6e,0x9e,0x0,0x25,0x56,0x39,0x0,0x1,0x0,0x1,0x0,0xff,0x0, 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xe4,0x0,0x0,0x0,0x97,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0xfe,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0xe,0x1,0xfe,0x0,0x7a,0xfb,0xfd,0xfb,0x24,0xfe, 0x1,0xfe,0xfd,0x1,0xfd,0xff,0x0,0xff,0x1,0xfe,0x0,0xff,0x1,0x1,0x0,0xff, 0xff,0x0,0x0,0xff,0x1,0x0,0x0,0x1,0x1,0x1,0x0,0x1,0x1,0x0,0x0,0x0, 0xfe,0x0,0x0,0x1,0xfe,0x0,0x0,0x0,0x2,0xfe,0x0,0x2,0x0,0x0,0x0,0x0, 0x1,0x0,0x0,0x1,0x2,0x1,0x0,0x2,0x3,0x1,0x0,0x3,0x4,0x3,0x0,0x4, 0x4,0x3,0x0,0x4,0x6,0x3,0x0,0x5,0x6,0x5,0x0,0x5,0xfb,0x1,0x0,0xfb, 0xfc,0x3,0x0,0x2,0xfd,0x2,0x0,0xff,0x0,0x1,0x0,0x0,0x0,0xff,0x0,0xff, 0xff,0xff,0x0,0xff,0xff,0xfd,0x0,0xfe,0xff,0xfd,0x0,0xfd,0xfe,0xfd,0x0,0xfb, 0xfd,0xfc,0x0,0x4,0xfe,0xfd,0x0,0x4,0x0,0x0,0x0,0x1,0x1,0x1,0x0,0x3, 0x4,0x4,0x0,0x6,0x6,0x5,0x0,0x5,0x6,0xfa,0x0,0xfc,0xfd,0x2,0x0,0xfd, 0xff,0xff,0x0,0xfe,0xff,0xfd,0x0,0xfc,0xfc,0xfd,0x0,0xfb,0xfd,0xfd,0x0,0x7, 0xfe,0xfe,0x0,0x2,0x2,0x0,0x0,0x4,0x4,0x4,0x0,0x6,0x7,0x4,0x0,0x5, 0x5,0x3,0x0,0xf9,0xfb,0x2,0x0,0xfe,0x0,0xff,0x0,0xff,0x0,0xff,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x0,0x0,0xff,0x0,0x0,0xff,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x0,0x0,0x0,0x2,0x0, 0x1,0x1,0xdd,0x0,0x0,0x0,0x79,0x0,0x0,0x0,0xfe,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0xc,0x9,0x0,0xdc, 0xac,0xc8,0x0,0x26,0x55,0x3a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0x0,0x0,0x0,0xe8,0x1, 0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xbb,0x53,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x19, 0xff,0xfa,0xfc,0xc2,0xef,0xcc,0xe8,0x24,0x0,0xff,0x2,0x0,0x3,0x7,0x3,0x0, 0x1,0x0,0xff,0x0,0x3,0x2,0x2,0x0,0xff,0xff,0x0,0x0,0xff,0x1,0x2,0x0, 0x6,0x5,0x3,0x0,0x6,0x6,0x3,0x0,0x5,0x6,0x3,0x0,0x8,0x8,0x5,0x0, 0x6,0x9,0x5,0x0,0x9,0x6,0x3,0x0,0x8,0x7,0x4,0x0,0x6,0x7,0x7,0x0, 0x9,0x8,0x3,0x0,0x2,0x1,0x2,0x0,0xfc,0xfe,0xff,0x0,0xf9,0xfc,0xfb,0x0, 0xfb,0xf9,0xfb,0x0,0xf6,0xf4,0xfa,0x0,0xee,0xf1,0xf3,0x0,0xf1,0xf1,0xf3,0x0, 0xf2,0xf3,0xf9,0x0,0xf6,0xf4,0xfa,0x0,0xfa,0xf9,0x0,0x0,0x0,0xff,0x0,0x0, 0x6,0x7,0x2,0x0,0xa,0xb,0x8,0x0,0x8,0x7,0x5,0x0,0xd,0xe,0x6,0x0, 0x14,0x13,0xc,0x0,0xf,0xf,0xc,0x0,0x8,0x8,0x6,0x0,0xfd,0xff,0xfe,0x0, 0xf2,0xf2,0xf5,0x0,0xe9,0xe7,0xf2,0x0,0xe8,0xe8,0xf3,0x0,0xf2,0xf2,0xf5,0x0, 0x3,0x2,0x3,0x0,0x9,0xc,0x5,0x0,0x11,0x11,0x7,0x0,0x19,0x17,0x12,0x0, 0xf,0xf,0xd,0x0,0x0,0x0,0xfe,0x0,0xf0,0xf2,0xf4,0x0,0xe1,0xe2,0xeb,0x0, 0xe8,0xe9,0xee,0x0,0xfd,0xfb,0xfd,0x0,0x3,0x1,0x4,0x0,0x5,0x5,0x2,0x0, 0x0,0x1,0x2,0x0,0xff,0xff,0xff,0x0,0x1,0x0,0x0,0x0,0xff,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x1,0x0, 0xfc,0xf8,0xfa,0x0,0x0,0x5,0x1,0x0,0x11,0x24,0x1a,0xd9,0xff,0xff,0xff,0x2c, 0x0,0x0,0x0,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xfe,0xf9,0xfb,0x0,0x9,0x16,0xf,0x0,0x52,0xc0,0x80,0x0, 0xff,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xef,0xf1,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xfc,0xfc,0xf9,0xfe,0xf1,0xe0,0xe9,0xe0, 0x0,0x4,0xfe,0x4,0x0,0x4,0x7,0x6,0x0,0xfd,0xfd,0xfe,0x0,0x0,0x0,0xff, 0x0,0xff,0xff,0x0,0x0,0x3,0x2,0x3,0x0,0x4,0x4,0x2,0x0,0x3,0x3,0x2, 0x0,0x4,0x4,0x3,0x0,0x4,0x6,0x3,0x0,0x4,0x4,0x3,0x0,0x7,0x6,0x7, 0x0,0xa,0xa,0x7,0x0,0x8,0xb,0xa,0x0,0xe,0xd,0x7,0x0,0x10,0xd,0xb, 0x0,0xc,0xc,0x9,0x0,0xe,0xf,0xc,0x0,0x8,0x7,0x5,0x0,0x2,0x3,0x2, 0x0,0xfc,0xfb,0xfe,0x0,0xf5,0xf5,0xf7,0x0,0xec,0xee,0xf2,0x0,0xed,0xed,0xf0, 0x0,0xea,0xec,0xf1,0x0,0xed,0xec,0xf3,0x0,0xf6,0xf5,0xf5,0x0,0xf0,0xec,0xf1, 0x0,0x3,0x3,0x3,0x0,0x9,0xf1,0x7,0x0,0xe7,0xec,0x8,0x0,0x10,0x10,0xb, 0x0,0x19,0x18,0x13,0x0,0x19,0x1a,0x13,0x0,0x1f,0x22,0x1a,0x0,0x1f,0x20,0x17, 0x0,0xeb,0xee,0xf1,0x0,0xde,0xde,0xe8,0x0,0xe2,0xe2,0xeb,0x0,0xeb,0xf0,0xee, 0x0,0xe9,0xef,0x2,0x0,0xeb,0xef,0xf7,0x0,0x1e,0x1e,0x13,0x0,0x1b,0x1b,0x13, 0x0,0x1d,0x21,0x19,0x0,0x1b,0x1e,0x18,0x0,0xe4,0xe3,0xe9,0x0,0xdf,0xe0,0xea, 0x0,0xec,0xef,0xf3,0x0,0xfb,0xfe,0xfe,0x0,0x7,0x5,0x3,0x0,0x4,0x3,0x2, 0x0,0xfe,0xff,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfe,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xff,0xff,0xff,0x0,0x1,0x4,0x2,0x0,0x1,0xff,0x1,0x0,0x0,0x1,0xff, 0x0,0x4,0x8,0x4,0xec,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x6,0x3, 0x0,0xff,0xfc,0xfc,0x0,0xdd,0xae,0xc8,0x0,0x23,0x52,0x38,0x0,0xff,0x0,0xff, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x13,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x0,0xfd,0xf9,0x1,0x0,0x4,0x1c,0x1f,0x0,0x3,0x3,0x2,0x0,0x1,0x5, 0x2,0x0,0xfc,0xfb,0xfe,0x0,0xfc,0xfc,0xfc,0x0,0xfe,0xfe,0xfd,0x0,0xfd,0xfd, 0xfd,0x0,0xfc,0xfd,0xff,0x0,0xfd,0xfc,0xfe,0x0,0xfa,0xfc,0xfc,0x0,0xf7,0xf1, 0xf8,0x0,0x0,0xfd,0xff,0x0,0x2,0x3,0xf7,0x0,0x4,0x6,0x2,0x0,0x2,0x2, 0x3,0x0,0x5,0x4,0x3,0x0,0xb,0xa,0x6,0x0,0x9,0xa,0x8,0x0,0xb,0xa, 0x7,0x0,0xd,0xe,0x9,0x0,0x11,0x11,0xd,0x0,0x10,0xf,0xd,0x0,0xb,0xa, 0x8,0x0,0x21,0x1c,0x17,0x0,0x1b,0x17,0x13,0x0,0xf1,0xf1,0xf3,0x0,0xec,0xed, 0xf3,0x0,0xeb,0xec,0xf0,0x0,0xec,0xed,0xf3,0x0,0xf2,0xf2,0xf6,0x0,0xf7,0xf6, 0xf9,0x0,0xf9,0xf6,0xfc,0x0,0xf5,0xf2,0xf7,0x0,0xeb,0xea,0xf0,0x0,0xe1,0xdf, 0xe7,0x0,0x17,0x15,0x11,0x0,0x17,0x19,0x10,0x0,0x13,0x15,0xe,0x0,0x36,0x33, 0x29,0x0,0x23,0x1f,0x1a,0x0,0xe1,0xe2,0xeb,0x0,0xe4,0xe5,0xec,0x0,0xeb,0xeb, 0xf1,0x0,0xef,0xee,0xef,0x0,0xe2,0xe0,0xea,0x0,0x16,0x16,0x11,0x0,0x20,0x1f, 0x16,0x0,0x1e,0x1e,0x16,0x0,0x15,0x16,0x11,0x0,0xe4,0xe6,0xec,0x0,0xe0,0xe0, 0xe9,0x0,0xf0,0xec,0xf3,0x0,0x1,0x2,0x0,0x0,0x6,0x7,0x7,0x0,0x2,0x2, 0x2,0x0,0x0,0xff,0xff,0x0,0xff,0x0,0xff,0x0,0x0,0xff,0x0,0x0,0x1,0x0, 0x1,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0xfe,0x0,0x1,0x0,0x3,0xfe, 0xff,0x0,0xff,0xfe,0xfd,0x0,0x0,0x1,0x0,0x0,0xff,0xfd,0xfe,0x1,0xff,0xff, 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0xf6,0xe9,0xf1,0x0,0xe8,0xc7, 0xda,0x0,0x23,0x52,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xff,0xff,0xff,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd6, 0x73,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x15,0x1,0xfb,0x1,0xb7,0x7, 0xdf,0x15,0x33,0x0,0x3,0x0,0x0,0xfe,0x5,0xfb,0x0,0xff,0xfc,0xfe,0x0,0xfe, 0xfd,0xff,0x0,0xff,0x0,0xff,0x0,0xfa,0xf9,0xfc,0x0,0xf9,0xfa,0xfc,0x0,0xfa, 0xfa,0xfb,0x0,0xfa,0xfc,0xfd,0x0,0xf7,0xf6,0xf9,0x0,0xf7,0xf6,0xfa,0x0,0xf6, 0xf7,0xfa,0x0,0xf7,0xf6,0xf8,0x0,0xf9,0xf9,0xfb,0x0,0xfe,0xff,0xff,0x0,0x2, 0x2,0x1,0x0,0x0,0x1,0xff,0x0,0x3,0x4,0x4,0x0,0x9,0x8,0x7,0x0,0xa, 0xa,0x7,0x0,0xc,0xb,0x7,0x0,0x10,0xe,0xb,0x0,0x11,0x12,0xd,0x0,0x12, 0x11,0xc,0x0,0xe,0xe,0xb,0x0,0x1,0x1,0x1,0x0,0xf5,0xf7,0xf8,0x0,0xf2, 0xf1,0xf6,0x0,0xeb,0xe9,0xf1,0x0,0xe6,0xea,0xed,0x0,0xef,0xf0,0xf4,0x0,0xf6, 0xf4,0xfa,0x0,0xfd,0xfe,0xfd,0x0,0x3,0x1,0x0,0x0,0x6,0x7,0x7,0x0,0xb, 0xd,0x9,0x0,0x15,0x13,0xe,0x0,0x1b,0x1b,0x13,0x0,0x17,0x16,0xf,0x0,0x4, 0x3,0x4,0x0,0xf2,0xf1,0xf6,0x0,0xe0,0xe3,0xe9,0x0,0xdf,0xdf,0xe8,0x0,0xed, 0xee,0xf3,0x0,0x0,0x1,0xff,0x0,0x12,0x10,0xd,0x0,0x1c,0x1e,0x16,0x0,0x1a, 0x1a,0x13,0x0,0x10,0xd,0xb,0x0,0xf8,0xf9,0xf9,0x0,0xe0,0xe0,0xea,0x0,0xe2, 0xe2,0xe9,0x0,0xf3,0xf4,0xf7,0x0,0x3,0x3,0x3,0x0,0x7,0x6,0x5,0x0,0x1, 0x2,0x0,0x0,0xff,0xff,0xfe,0x0,0x1,0xff,0x2,0x0,0x0,0x1,0x0,0x0,0x0, 0xff,0x0,0x0,0xff,0x0,0x1,0x0,0x1,0x3,0x1,0x0,0xfd,0xf7,0xfa,0x0,0x0, 0x0,0x0,0x0,0x10,0x28,0x19,0xc6,0xff,0xff,0xff,0x3e,0x0,0x0,0x0,0xfd,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xff,0xfd,0xfe,0x0,0x1,0x4,0x2,0x0,0x37,0x80,0x56,0x0,0x1f, 0x49,0x31,0x0,0xff,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd,0xf,0xf9,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xff,0x0,0x2,0xfe,0x5,0x0,0x14,0xfa,0x17,0x0,0xff,0x1,0xfe,0x0, 0xfe,0x4,0xf8,0x0,0x0,0xff,0x2,0x0,0xff,0xff,0xff,0x0,0x1,0x1,0x0,0x0, 0xfe,0xfd,0xfe,0x0,0xfb,0xfc,0xfe,0x0,0xfd,0xfd,0xfc,0x0,0xfe,0xfe,0x1,0x0, 0xfc,0xfa,0xfc,0x0,0xf6,0xf8,0xf9,0x0,0xf4,0xf6,0xf8,0x0,0xf6,0xf5,0xf9,0x0, 0xf9,0xf8,0xfa,0x0,0xf8,0xf9,0xfc,0x0,0xf2,0xf2,0xf4,0x0,0xf2,0xf3,0xf6,0x0, 0xfa,0xfa,0xfc,0x0,0xf4,0xf3,0xf6,0x0,0xf2,0xf2,0xf5,0x0,0x6,0x3,0x3,0x0, 0xe8,0x8,0x5,0x0,0x9,0x9,0x6,0x0,0x10,0x10,0xb,0x0,0x10,0x10,0xd,0x0, 0xc,0xc,0xa,0x0,0x11,0x10,0xd,0x0,0x13,0x13,0xe,0x0,0x14,0x13,0xe,0x0, 0x1d,0x1f,0x14,0x0,0xe8,0xec,0xf0,0x0,0xef,0xed,0xf4,0x0,0xf0,0xef,0xf4,0x0, 0xee,0xee,0xf3,0x0,0xf6,0xf7,0xfa,0x0,0xf8,0xf8,0xfb,0x0,0xf3,0xef,0xf5,0x0, 0xe8,0xe9,0xf0,0x0,0x16,0x17,0x10,0x0,0x16,0x13,0xe,0x0,0x10,0x10,0xc,0x0, 0x25,0x25,0x1c,0x0,0x19,0x18,0x12,0x0,0xe6,0xe7,0xee,0x0,0xe8,0xe9,0xef,0x0, 0xec,0xeb,0xf0,0x0,0xd5,0xd3,0xe1,0x0,0xe8,0xe6,0xef,0x0,0x1a,0x18,0x11,0x0, 0x13,0x16,0xf,0x0,0x1e,0x1e,0x16,0x0,0x17,0x16,0x10,0x0,0xe9,0xea,0xee,0x0, 0xe8,0xe8,0xef,0x0,0xf0,0xf0,0xf5,0x0,0x2,0x3,0x2,0x0,0x3,0x4,0x2,0x0, 0x2,0x1,0x0,0x0,0x1,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x1,0x1,0xff,0x0, 0x1,0x0,0x1,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x4,0x2,0x0, 0xf6,0xe9,0xf2,0x0,0xf7,0xea,0xf1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xff,0xff,0xff, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xd7,0x75,0x7c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x15,0x2,0xfd,0x2, 0xb7,0xa,0xdf,0x1b,0x33,0xfe,0x2,0xfe,0x0,0x0,0x6,0xfe,0x0,0x1,0x1,0x3, 0x0,0x0,0x1,0x0,0x0,0x2,0x1,0x0,0x0,0x3,0x3,0x1,0x0,0x2,0x2,0x2, 0x0,0x2,0x3,0x2,0x0,0x5,0x3,0x2,0x0,0x4,0x3,0x4,0x0,0xff,0x0,0x0, 0x0,0xfe,0xfe,0xfd,0x0,0xfe,0xff,0x0,0x0,0xfe,0xfe,0x0,0x0,0xf9,0xf9,0xfa, 0x0,0xf2,0xf1,0xf5,0x0,0xf2,0xf3,0xf7,0x0,0xf2,0xf3,0xf5,0x0,0xf1,0xf1,0xf3, 0x0,0xf4,0xf3,0xfa,0x0,0xf9,0xf8,0xfc,0x0,0xfa,0xfc,0xfb,0x0,0x0,0x1,0x0, 0x0,0x4,0x2,0x2,0x0,0x2,0x1,0x0,0x0,0x6,0x7,0x6,0x0,0xe,0x10,0xc, 0x0,0x14,0x13,0xd,0x0,0x16,0x15,0xf,0x0,0x12,0x10,0xc,0x0,0x7,0x7,0x6, 0x0,0xfd,0xff,0xfe,0x0,0xf1,0xf1,0xf5,0x0,0xe8,0xe9,0xef,0x0,0xe8,0xe7,0xef, 0x0,0xf0,0xef,0xf4,0x0,0xf8,0xf8,0xf8,0x0,0xfd,0x0,0x0,0x0,0x3,0x3,0x4, 0x0,0x5,0x5,0x2,0x0,0xe,0xd,0xa,0x0,0x1b,0x1b,0x13,0x0,0x1b,0x19,0x14, 0x0,0xb,0xa,0x8,0x0,0xf7,0xf8,0xfa,0x0,0xe2,0xe2,0xeb,0x0,0xe0,0xe0,0xe7, 0x0,0xf0,0xf1,0xf6,0x0,0xff,0x0,0x1,0x0,0xa,0xb,0x7,0x0,0x1d,0x1b,0x12, 0x0,0x1c,0x1b,0x15,0x0,0xd,0xd,0x9,0x0,0xf3,0xf3,0xf7,0x0,0xdf,0xe1,0xe8, 0x0,0xe8,0xe8,0xef,0x0,0xfb,0xfa,0xfd,0x0,0x3,0x2,0x2,0x0,0x3,0x2,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x4,0x2,0x0,0xfc,0xf5,0xf9, 0x0,0x0,0x1,0x1,0x0,0x10,0x28,0x19,0xc6,0xff,0xff,0xff,0x3e,0x0,0x0,0x0, 0xfd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x0,0xff,0xfb,0xfd, 0x0,0x43,0xa1,0x6b,0x0,0x15,0x2f,0x20,0x0,0xff,0x0,0xff,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0xe3,0xa,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x0,0xff,0xfa,0xfd,0x0,0xef,0xcf,0xd4,0x0,0x1,0x0, 0x0,0x0,0x3,0x7,0x3,0x0,0x0,0x1,0x1,0x0,0x3,0x2,0x2,0x0,0x1,0x2, 0x2,0x0,0x6,0x5,0x4,0x0,0x8,0x8,0x4,0x0,0x5,0x5,0x5,0x0,0x8,0x8, 0x5,0x0,0x8,0x7,0x6,0x0,0x8,0x8,0x6,0x0,0x5,0x5,0x4,0x0,0x6,0x6, 0x4,0x0,0x6,0x5,0x4,0x0,0xa,0x9,0x6,0x0,0xb,0xc,0x8,0x0,0x1a,0xff, 0x1,0x0,0xf9,0xf9,0xf9,0x0,0xf3,0xf5,0xf8,0x0,0xf1,0xf0,0xf6,0x0,0xed,0xed, 0xf1,0x0,0xf0,0xf0,0xf4,0x0,0xf5,0xf7,0xf9,0x0,0xf9,0xf8,0xfc,0x0,0xff,0xfd, 0xfe,0x0,0xf8,0xf8,0xfb,0x0,0xf3,0xe5,0xeb,0x0,0xe9,0xe8,0xee,0x0,0xe2,0xd, 0x9,0x0,0x14,0x14,0xe,0x0,0x16,0x16,0x10,0x0,0x11,0x11,0xd,0x0,0xd,0xd, 0xa,0x0,0x12,0x12,0xd,0x0,0x1c,0x1a,0x15,0x0,0xe8,0xe8,0xef,0x0,0xe9,0xea, 0xeb,0x0,0xed,0xee,0xf3,0x0,0xf8,0xf8,0xfd,0x0,0xfb,0xfa,0xfd,0x0,0xec,0xeb, 0xf1,0x0,0xef,0xef,0xf4,0x0,0xe6,0xe5,0xee,0x0,0x1b,0x1b,0x14,0x0,0x19,0x19, 0x12,0x0,0x26,0x28,0x1b,0x0,0x15,0x16,0xd,0x0,0xe2,0xe2,0xec,0x0,0xe8,0xe9, 0xf2,0x0,0xf4,0xf5,0xf5,0x0,0xd9,0xda,0xe5,0x0,0xe6,0xe6,0xef,0x0,0x1b,0x1b, 0x14,0x0,0x1f,0x1f,0x15,0x0,0x2c,0x2b,0x20,0x0,0x13,0x13,0xf,0x0,0xe6,0xe5, 0xed,0x0,0xf1,0xf0,0xf5,0x0,0xfc,0xfc,0xfb,0x0,0x0,0x1,0x1,0x0,0x1,0x2, 0x1,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x0,0xfb,0xf7,0xfa,0x0,0xf8,0xed,0xf3,0x0,0xff,0xfe, 0xff,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xff, 0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xad,0x47,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x15,0xfc, 0xf9,0xfb,0xb7,0xe2,0xc5,0xcd,0x33,0x1,0xfe,0x3,0x0,0x4,0x7,0x6,0x0,0xff, 0xfe,0xfd,0x0,0x3,0x1,0x2,0x0,0x0,0x1,0x0,0x0,0x2,0x2,0x3,0x0,0x4, 0x4,0x1,0x0,0x3,0x3,0x2,0x0,0x1,0x2,0x3,0x0,0x5,0x3,0x2,0x0,0xa, 0xb,0x7,0x0,0xc,0xd,0x9,0x0,0xd,0xb,0x7,0x0,0xc,0xb,0x9,0x0,0x9, 0x9,0x8,0x0,0x8,0x9,0x6,0x0,0x7,0x7,0x6,0x0,0x7,0x5,0x4,0x0,0x4, 0x5,0x4,0x0,0xff,0x0,0xff,0x0,0xfc,0xfa,0xfa,0x0,0xf3,0xf5,0xf8,0x0,0xeb, 0xee,0xf3,0x0,0xeb,0xea,0xf1,0x0,0xf0,0xef,0xf4,0x0,0xf5,0xf7,0xf8,0x0,0xfd, 0xfb,0xfd,0x0,0xfe,0xfe,0xff,0x0,0xfb,0xfd,0xfd,0x0,0x2,0x1,0x2,0x0,0x7, 0x7,0x4,0x0,0x11,0x10,0xc,0x0,0x18,0x18,0x11,0x0,0x16,0x17,0x11,0x0,0x12, 0x10,0xd,0x0,0x7,0x6,0x6,0x0,0xf5,0xf6,0xf6,0x0,0xe5,0xe6,0xec,0x0,0xe4, 0xe3,0xec,0x0,0xef,0xef,0xf5,0x0,0xfb,0xfa,0xfc,0x0,0xfc,0xfd,0xfd,0x0,0xfc, 0xfe,0xfd,0x0,0x4,0x4,0x4,0x0,0xc,0xe,0x9,0x0,0x21,0x1f,0x16,0x0,0x20, 0x1f,0x18,0x0,0x3,0x4,0x3,0x0,0xed,0xec,0xf2,0x0,0xe3,0xe4,0xea,0x0,0xe8, 0xe7,0xed,0x0,0xf4,0xf4,0xf9,0x0,0xfe,0xfd,0xfe,0x0,0xf,0x10,0xa,0x0,0x24, 0x25,0x1c,0x0,0x1c,0x1c,0x16,0x0,0xfa,0xfb,0xfa,0x0,0xe7,0xe6,0xeb,0x0,0xe6, 0xe5,0xef,0x0,0xf1,0xf2,0xf7,0x0,0xff,0xfe,0xff,0x0,0x5,0x7,0x4,0x0,0xfe, 0xf7,0xfb,0x0,0x0,0x1,0x0,0x0,0x10,0x28,0x19,0xc6,0xff,0xff,0xff,0x3e,0x0, 0x0,0x0,0xfd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xfd,0xf8,0xfb,0x0,0x53,0xc5,0x83,0x0,0x6,0xd,0x9,0x0,0xff, 0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x3,0x80,0x80,0x80,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0xab,0xc1,0x0, 0x4,0x4,0xfe,0x0,0x4,0x4,0xfe,0x0,0x4,0x4,0xfe,0x0,0x4,0x4,0xfe,0x0, 0x4,0x4,0xfe,0x0,0x4,0x4,0xfe,0x0,0x4,0x4,0xfe,0x0,0x4,0x4,0xfe,0x0, 0x4,0x4,0xfe,0x0,0x4,0x4,0xfd,0xb,0x4,0x1,0xfc,0x5c,0xfe,0xea,0xf4,0x1a, 0x8,0xa,0x7,0x0,0xa,0xb,0x8,0x0,0x7,0x6,0x4,0x0,0x4,0x6,0x5,0x0, 0x4,0x5,0x3,0x0,0x2,0x0,0x0,0x0,0xfd,0xfd,0x0,0x0,0xfc,0xfc,0xfc,0x0, 0xfb,0xfb,0xfc,0x0,0xf8,0xfa,0xfc,0x0,0xf7,0xf7,0xf9,0x0,0xf0,0xf0,0xf6,0x0, 0xe9,0xe9,0xf0,0x0,0xe9,0xea,0xf0,0x0,0xef,0xf1,0xf5,0x0,0xf2,0xf4,0xf7,0x0, 0xf6,0xf6,0xf8,0x0,0xf9,0xf8,0xfa,0x0,0xfb,0xfb,0xfc,0x0,0xfe,0xfe,0xff,0x0, 0x3,0x5,0x5,0x0,0xb,0xc,0x9,0x0,0x16,0x14,0xe,0x0,0x17,0x16,0x10,0x0, 0xd,0xf,0xc,0x0,0x7,0x5,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x0, 0x1,0x2,0x2,0x0,0xfe,0xff,0xff,0x0,0xfd,0xfc,0xfe,0x0,0xf5,0xf5,0xf8,0x0, 0xed,0xed,0xf2,0x0,0xee,0xee,0xf3,0x0,0xf7,0xf6,0xf7,0x0,0xfd,0xfe,0xfd,0x0, 0x9,0x9,0x8,0x0,0x18,0x17,0x12,0x0,0x16,0x18,0x11,0x0,0x8,0x8,0x4,0x0, 0xfe,0xfe,0x0,0x0,0xfb,0xfd,0xfc,0x0,0xff,0xff,0xfe,0x0,0xfe,0xfe,0xfe,0x0, 0xf8,0xf7,0xfa,0x0,0xeb,0xea,0xf2,0x0,0xef,0xef,0xf3,0x0,0x1,0x2,0x1,0x0, 0x13,0x13,0xf,0x0,0x18,0x16,0x10,0x0,0x9,0x8,0x6,0x0,0xff,0xff,0xff,0x0, 0xfe,0xfe,0xff,0x0,0xf2,0xf3,0xf6,0x0,0xe7,0xe8,0xef,0x0,0xf3,0xf1,0xf4,0x0, 0xb,0xb,0x7,0x0,0x18,0x18,0x13,0x0,0xe,0xf,0xb,0x0,0xff,0xff,0xfe,0x0, 0xfa,0xfa,0xfb,0x0,0xfc,0xfc,0xfd,0x0,0xfb,0xf9,0xfb,0x0,0x2,0x4,0x1,0x0, 0xa,0x15,0xd,0xe3,0x0,0x0,0x0,0x9f,0x1,0x1,0x0,0xff,0x1,0x1,0x0,0x0, 0x1,0x1,0x0,0x0,0x1,0x1,0x0,0x0,0x1,0x1,0x0,0x0,0x1,0x1,0x0,0x0, 0x1,0x1,0x0,0x0,0x1,0x1,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x2,0x1,0x0, 0x16,0x34,0x22,0x0,0xd,0x1d,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xcc,0x69,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0, 0x15,0x0,0xfb,0x1,0xb7,0x1,0xd9,0x8,0x33,0x0,0x2,0xff,0x0,0xfd,0x5,0xfe, 0x0,0xfd,0xfb,0xfc,0x0,0xfc,0xfb,0xfd,0x0,0xfe,0xfb,0xfe,0x0,0xf8,0xf9,0xfd, 0x0,0xf7,0xf9,0xfa,0x0,0xf9,0xf9,0xfa,0x0,0xfc,0xfc,0xfc,0x0,0xfb,0xf9,0xfd, 0x0,0xf8,0xfa,0xfb,0x0,0xfb,0xfd,0xfd,0x0,0x1,0x1,0x1,0x0,0x1,0x0,0xff, 0x0,0x0,0xff,0x0,0x0,0xfe,0x0,0x0,0x0,0x6,0x4,0x3,0x0,0xa,0xb,0x8, 0x0,0xc,0xb,0x7,0x0,0x9,0xb,0x8,0x0,0xf,0xe,0xb,0x0,0x11,0x10,0xc, 0x0,0xe,0xd,0x8,0x0,0xa,0xb,0x9,0x0,0x7,0x6,0x6,0x0,0xfd,0xfd,0xfe, 0x0,0xf1,0xf2,0xf2,0x0,0xef,0xef,0xf4,0x0,0xec,0xec,0xf2,0x0,0xe9,0xea,0xf2, 0x0,0xf3,0xf3,0xf7,0x0,0xfa,0xf9,0xfa,0x0,0xff,0x0,0x0,0x0,0xff,0xff,0x0, 0x0,0x5,0x3,0x1,0x0,0xc,0xc,0x9,0x0,0x10,0x10,0xc,0x0,0x17,0x17,0x10, 0x0,0x1a,0x1a,0x13,0x0,0xc,0xd,0x9,0x0,0xf7,0xf7,0xfa,0x0,0xea,0xea,0xef, 0x0,0xe1,0xe2,0xe8,0x0,0xe8,0xe8,0xf0,0x0,0xf9,0xf9,0xfd,0x0,0x0,0xff,0x1, 0x0,0x2,0x1,0xff,0x0,0x6,0x6,0x4,0x0,0xd,0x10,0xb,0x0,0x1c,0x1a,0x12, 0x0,0x1c,0x1c,0x14,0x0,0x0,0x0,0x1,0x0,0xec,0xeb,0xf4,0x0,0xe1,0xe2,0xe8, 0x0,0xe6,0xe7,0xee,0x0,0xf9,0xf9,0xfa,0x0,0xb,0xa,0x7,0x0,0x18,0x16,0x12, 0x0,0x1b,0x1e,0x13,0x0,0x10,0x10,0xb,0x0,0xf4,0xf3,0xf9,0x0,0xe6,0xe7,0xed, 0x0,0xe0,0xdd,0xe7,0x0,0xfb,0xfc,0xfd,0x0,0x15,0x2b,0x1b,0xc6,0x0,0x0,0xff, 0x3e,0x0,0x0,0x0,0xfd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xfd,0xfb,0xfd,0x0,0x7,0xd,0x9,0x0,0x56,0xc5,0x85, 0x0,0xff,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x15, 0xfd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x2,0xfc,0x3,0x0,0x11,0xfe, 0x1e,0x0,0xff,0x2,0xfd,0x0,0xfe,0x4,0xfb,0x0,0xfd,0xfb,0x0,0x0,0xfe,0xfe, 0xfd,0x0,0xff,0xfd,0xfe,0x0,0xfc,0xfd,0xff,0x0,0xfa,0xfd,0xfe,0x0,0xfb,0xfa, 0xfd,0x0,0xf9,0xf9,0xf9,0x0,0xf6,0xf6,0xf7,0x0,0xf3,0xf4,0xf7,0x0,0xf3,0xf3, 0xf8,0x0,0xf7,0xf8,0xfb,0x0,0xf5,0xf5,0xf6,0x0,0xfa,0xf7,0xfc,0x0,0x1,0x0, 0xff,0x0,0xfa,0xfa,0xfc,0x0,0xf8,0xfa,0xf2,0x0,0xef,0xee,0x0,0x0,0x4,0x6, 0x3,0x0,0x7,0x7,0x6,0x0,0x9,0x8,0x7,0x0,0xf,0xe,0xb,0x0,0x14,0x14, 0xe,0x0,0x14,0x13,0xd,0x0,0x10,0x11,0xd,0x0,0x13,0x12,0xf,0x0,0x14,0x13, 0x10,0x0,0x1c,0x1c,0xf8,0x0,0xef,0xee,0xf4,0x0,0xe6,0xe8,0xf1,0x0,0xe9,0xea, 0xee,0x0,0xef,0xed,0xf2,0x0,0xf7,0xf8,0xfb,0x0,0xfa,0xfc,0xfe,0x0,0xef,0xef, 0xf4,0x0,0xf0,0xef,0xf5,0x0,0xe9,0xe9,0xef,0x0,0xe5,0xe6,0xec,0x0,0x1b,0x1b, 0x14,0x0,0x1b,0x1b,0x14,0x0,0x24,0x22,0x1a,0x0,0x19,0x19,0x12,0x0,0xe3,0xe4, 0xeb,0x0,0xe5,0xe3,0xed,0x0,0xe7,0xea,0xf0,0x0,0xf7,0xf6,0xfa,0x0,0xfd,0xf7, 0xfa,0x0,0xf5,0xf8,0xf9,0x0,0xef,0xee,0xf4,0x0,0xec,0xec,0xf2,0x0,0x21,0x20, 0x17,0x0,0x1b,0x1a,0x12,0x0,0x15,0x17,0xe,0x0,0xdf,0xe1,0xe8,0x0,0xdd,0xdd, 0xe7,0x0,0xf2,0xef,0xf6,0x0,0xde,0xdd,0xe7,0x0,0xeb,0xed,0xf0,0x0,0x20,0x21, 0x18,0x0,0x1d,0x1b,0x15,0x0,0x2c,0x2b,0x20,0x0,0x10,0xc,0x7,0x0,0xdb,0xdd, 0xe8,0x0,0xfd,0xfd,0x3,0x0,0x2,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x2,0x0,0xff,0xfd,0x3,0x0,0xe6,0xc3,0xd9,0x0,0x19,0x3d,0x26,0x0,0x0,0x0, 0x0,0x0,0x1,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe2,0x80,0x7c,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0xff,0x15,0x2,0xfc,0x5,0xb7,0x13,0xe8,0x2b,0x33,0xff,0x4,0xfd,0x0,0xfe, 0x4,0xfa,0x0,0x0,0xfe,0x2,0x0,0x0,0x1,0x0,0x0,0xff,0x0,0xff,0x0,0x1, 0xff,0x1,0x0,0x0,0x2,0x0,0x0,0x1,0xff,0x0,0x0,0xfd,0xfe,0xfe,0x0,0xfd, 0xfd,0xfd,0x0,0xfb,0xfa,0xfc,0x0,0xf8,0xf9,0xfa,0x0,0xf4,0xf5,0xfb,0x0,0xf4, 0xf4,0xf5,0x0,0xf3,0xf3,0xf7,0x0,0xf0,0xf0,0xf5,0x0,0xf3,0xf3,0xf5,0x0,0xf8, 0xf8,0xfc,0x0,0xfc,0xfa,0xfd,0x0,0x0,0xff,0xfe,0x0,0xfe,0x0,0x1,0x0,0x0, 0x0,0xff,0x0,0x4,0x3,0x4,0x0,0x8,0x8,0x3,0x0,0xc,0xd,0x9,0x0,0x12, 0x12,0xe,0x0,0x14,0x14,0xf,0x0,0x14,0x14,0xe,0x0,0x11,0xf,0xa,0x0,0x5, 0x6,0x5,0x0,0xf9,0xf9,0xfb,0x0,0xf1,0xf2,0xf5,0x0,0xe8,0xe8,0xef,0x0,0xe4, 0xe5,0xec,0x0,0xec,0xed,0xf2,0x0,0xf8,0xf7,0xfc,0x0,0x0,0xfe,0xfe,0x0,0xff, 0x0,0xfe,0x0,0x1,0x3,0x2,0x0,0xa,0x9,0x7,0x0,0x12,0x11,0xc,0x0,0x1d, 0x1c,0x15,0x0,0x1d,0x1f,0x17,0x0,0xd,0xb,0x7,0x0,0xf6,0xf6,0xfa,0x0,0xe1, 0xe2,0xeb,0x0,0xda,0xdb,0xe6,0x0,0xef,0xee,0xf1,0x0,0xfd,0xfd,0xfe,0x0,0xff, 0xff,0x1,0x0,0x2,0x1,0x1,0x0,0xb,0xc,0x7,0x0,0x16,0x17,0x10,0x0,0x20, 0x20,0x17,0x0,0x12,0x12,0xc,0x0,0xf0,0xf1,0xf6,0x0,0xdf,0xde,0xe9,0x0,0xe4, 0xe4,0xec,0x0,0xf3,0xf2,0xf4,0x0,0x4,0x5,0x3,0x0,0x12,0x12,0xf,0x0,0x21, 0x22,0x17,0x0,0x18,0x10,0xe,0x0,0xf6,0xf9,0xf9,0x0,0xf2,0xa,0x1,0xc6,0x1, 0x0,0x0,0x3e,0x0,0x0,0x0,0xfd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0xfb,0xf1,0xf6,0x0,0xf, 0x34,0x23,0x0,0x30,0x88,0x5c,0x0,0xff,0x0,0xff,0x0,0x3,0x80,0x80,0x80,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xe6,0xac,0xb4,0x0,0x0,0x5,0x6,0x0,0xfd,0xfd,0x0,0x0,0xfd,0xfd,0x0,0x0, 0xfd,0xfd,0x0,0x0,0xfd,0xfd,0x0,0x0,0xfd,0xfd,0x0,0x0,0xfd,0xfd,0x0,0x0, 0xfd,0xfd,0x0,0x0,0xfd,0xfd,0x0,0x0,0xfd,0xfe,0x1,0xb,0xfe,0xfb,0x2,0x5c, 0x1,0xec,0xd,0x1a,0xfa,0xfb,0xf8,0x0,0xf9,0xfc,0xf8,0x0,0xfc,0xfa,0xff,0x0, 0xfd,0xfe,0xfd,0x0,0xfc,0xfe,0xff,0x0,0xff,0xfe,0x0,0x0,0x2,0x1,0x0,0x0, 0x0,0x0,0xfe,0x0,0x1,0x1,0x3,0x0,0x4,0x2,0x3,0x0,0x7,0x5,0x5,0x0, 0x8,0x8,0x6,0x0,0xd,0xc,0x8,0x0,0x11,0x12,0xd,0x0,0x13,0x13,0xe,0x0, 0x13,0x12,0xd,0x0,0x13,0x14,0xe,0x0,0xd,0xd,0x9,0x0,0x4,0x4,0x5,0x0, 0x2,0x0,0x2,0x0,0xfe,0x0,0xfe,0x0,0xfe,0x0,0xff,0x0,0x0,0xfe,0xfe,0x0, 0xfa,0xfc,0xfd,0x0,0xf6,0xf6,0xfa,0x0,0xef,0xf0,0xf4,0x0,0xec,0xeb,0xf2,0x0, 0xed,0xef,0xf3,0x0,0xf6,0xf6,0xf9,0x0,0xff,0xff,0xff,0x0,0x7,0x7,0x4,0x0, 0xf,0xe,0xb,0x0,0x12,0x12,0xe,0x0,0x14,0x13,0xf,0x0,0xd,0xc,0x9,0x0, 0x3,0x1,0x2,0x0,0xfb,0xfe,0xfc,0x0,0xfc,0xfd,0xfd,0x0,0xff,0xff,0x0,0x0, 0xfc,0xfb,0xfd,0x0,0xf3,0xf3,0xf6,0x0,0xeb,0xec,0xf1,0x0,0xef,0xef,0xf4,0x0, 0xfd,0xfd,0x0,0x0,0xc,0xf,0xa,0x0,0x18,0x16,0x10,0x0,0x15,0x13,0xe,0x0, 0x4,0x7,0x4,0x0,0xfd,0xfc,0xfe,0x0,0xfb,0xfa,0xfd,0x0,0xfd,0xff,0xfe,0x0, 0xfa,0xfa,0xfb,0x0,0xef,0xf0,0xf5,0x0,0xee,0xeb,0xf1,0x0,0xfc,0xfd,0xff,0x0, 0x15,0x14,0xf,0x0,0x1a,0x1a,0x12,0x0,0x10,0x11,0xd,0x0,0xfb,0xfd,0xfe,0x0, 0xf3,0xf2,0xf6,0x0,0xf3,0xf3,0xf6,0x0,0xed,0xed,0xf1,0x0,0xf7,0xf4,0xfc,0x0, 0xf,0x11,0xc,0x0,0xe,0x1c,0xfc,0xe3,0x9,0xa,0xff,0x9f,0x9,0xb,0xff,0xff, 0x9,0xb,0xff,0x0,0x9,0xb,0xff,0x0,0x9,0xb,0xff,0x0,0x9,0xb,0xff,0x0, 0x9,0xb,0xff,0x0,0x9,0xb,0xff,0x0,0x9,0xb,0xff,0x0,0x9,0xb,0xff,0x0, 0x9,0xa,0xfe,0x0,0xb,0xf,0x0,0x0,0x6,0x1,0xf8,0x0,0x6,0x18,0x12,0x0, 0x8,0x19,0x15,0x0,0x1,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0xbe,0xc8,0x0,0xd6,0x91,0xb0, 0x0,0x7,0x13,0xc,0x0,0xff,0xfe,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x0,0x15,0x0,0xfb,0xff,0xb7,0xf7,0xd1,0xf9,0x33,0x0,0x2,0xfe, 0x0,0x2,0x8,0x2,0x0,0x2,0xfe,0x1,0x0,0x4,0x4,0x4,0x0,0x2,0x4,0x2, 0x0,0x5,0x7,0x5,0x0,0x6,0x4,0x3,0x0,0x2,0x3,0x1,0x0,0x4,0x4,0x4, 0x0,0x8,0x7,0x6,0x0,0x9,0x9,0x6,0x0,0x8,0x7,0x5,0x0,0x1,0x0,0xff, 0x0,0xff,0x0,0x1,0x0,0x1,0x1,0x2,0x0,0x1,0x1,0xff,0x0,0xff,0x1,0x0, 0x0,0xfa,0xfa,0xfc,0x0,0xf6,0xf7,0xfb,0x0,0xf1,0xf0,0xf5,0x0,0xec,0xee,0xf0, 0x0,0xf3,0xf3,0xf7,0x0,0xf4,0xf3,0xf6,0x0,0xf4,0xf4,0xf7,0x0,0x0,0xfe,0xff, 0x0,0xff,0x1,0x2,0x0,0xff,0xff,0xfe,0x0,0x0,0xff,0x0,0x0,0x4,0x4,0x3, 0x0,0xe,0xe,0xa,0x0,0x15,0x16,0xf,0x0,0x14,0x13,0xf,0x0,0x12,0x12,0xe, 0x0,0x10,0x10,0xc,0x0,0xff,0xfe,0xfe,0x0,0xf2,0xf3,0xf5,0x0,0xe8,0xeb,0xf0, 0x0,0xe8,0xe7,0xef,0x0,0xee,0xec,0xf2,0x0,0xf7,0xf5,0xf7,0x0,0xff,0x0,0x0, 0x0,0xff,0x0,0x0,0x0,0xfe,0xfe,0xff,0x0,0x7,0x8,0x6,0x0,0x12,0x13,0xd, 0x0,0x1f,0x1c,0x15,0x0,0x1c,0x1b,0x15,0x0,0x6,0x6,0x5,0x0,0xea,0xec,0xf1, 0x0,0xe2,0xe2,0xe8,0x0,0xe7,0xe8,0xee,0x0,0xf4,0xf5,0xf9,0x0,0x1,0xff,0x0, 0x0,0xfe,0xfe,0xff,0x0,0x1,0x3,0x1,0x0,0x13,0x12,0xd,0x0,0x1e,0x1e,0x16, 0x0,0x16,0x16,0x11,0x0,0xfe,0xfd,0xfc,0x0,0xe2,0xe3,0xec,0x0,0xe7,0xe6,0xee, 0x0,0xef,0xf0,0xf3,0x0,0xfc,0xf9,0xff,0x0,0x11,0x11,0xd,0x0,0x16,0x30,0xd, 0xc6,0xff,0xff,0xff,0x3e,0x0,0x0,0x0,0xfd,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x0,0xf8,0xea,0xef,0x0,0x2d,0x73,0x53,0x0,0x25,0x5d,0x47,0x0,0x1,0xff,0xff, 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xff,0x0,0x0,0x0,0xda,0xa4,0xc3,0x0,0xd4,0x9b,0xbf,0x0,0x5,0xd, 0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x15,0xfc,0xf9, 0xfc,0xb7,0xe6,0xc6,0xd4,0x33,0x1,0x0,0x4,0x0,0x4,0x8,0x6,0x0,0x1,0xfe, 0xfe,0x0,0x1,0x1,0x1,0x0,0x1,0x1,0x1,0x0,0x1,0x2,0x2,0x0,0x1,0x1, 0x0,0x0,0x2,0x1,0x1,0x0,0x5,0x5,0x3,0x0,0x9,0xa,0x7,0x0,0xa,0xa, 0x9,0x0,0xc,0xb,0x9,0x0,0xb,0xc,0x6,0x0,0xd,0xd,0xa,0x0,0xd,0xd, 0xa,0x0,0x3,0x3,0x2,0x0,0x1,0x1,0xff,0x0,0x1,0x1,0x1,0x0,0x1,0x0, 0x1,0x0,0xfe,0xfe,0xff,0x0,0xfd,0xfe,0xfd,0x0,0xfb,0xf9,0xfd,0x0,0xf1,0xf3, 0xf6,0x0,0xec,0xec,0xf0,0x0,0xea,0xea,0xf0,0x0,0xef,0xf0,0xf6,0x0,0xfd,0xfd, 0xfd,0x0,0x1,0x1,0x1,0x0,0xfe,0xfd,0xfe,0x0,0x0,0x1,0x0,0x0,0x1,0x1, 0x1,0x0,0x6,0x5,0x5,0x0,0xe,0x10,0xa,0x0,0x1a,0x19,0x12,0x0,0x1d,0x1b, 0x15,0x0,0xe,0xe,0xa,0x0,0xff,0xfe,0xff,0x0,0xf7,0xf9,0xfa,0x0,0xee,0xee, 0xf1,0x0,0xe4,0xe4,0xed,0x0,0xe8,0xea,0xf0,0x0,0xf8,0xf6,0xfa,0x0,0x0,0xff, 0xff,0x0,0xff,0x0,0xfe,0x0,0xfe,0xff,0xff,0x0,0x4,0x4,0x5,0x0,0x14,0x12, 0xe,0x0,0x20,0x1f,0x16,0x0,0x1a,0x1b,0x14,0x0,0x4,0x4,0x2,0x0,0xea,0xea, 0xf1,0x0,0xdf,0xe1,0xe8,0x0,0xe8,0xe8,0xf0,0x0,0xfb,0xfb,0xfa,0x0,0x0,0x0, 0x0,0x0,0xff,0xfe,0x0,0x0,0x2,0x2,0x4,0x0,0xf,0xe,0x8,0x0,0x20,0x21, 0x17,0x0,0x1a,0x1a,0x14,0x0,0xf9,0xf8,0xfa,0x0,0xe0,0xe2,0xea,0x0,0xdd,0xda, 0xe5,0x0,0xf9,0xf9,0xfa,0x0,0x15,0x2c,0x1d,0xc6,0xff,0xff,0xff,0x3e,0x0,0x0, 0x0,0xfd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0xfc,0xfe,0x0,0x5,0xb, 0x7,0x0,0x41,0x94,0x62,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc, 0x1e,0x13,0x0,0xff,0xfd,0xf8,0x0,0x2,0x2,0x5,0x0,0xff,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x0,0x1,0x2,0xfe,0x0,0x5,0x2,0x5,0x0,0x1, 0x2,0x4,0x0,0x2,0x3,0x2,0x0,0xff,0x0,0xff,0x0,0xff,0xff,0x0,0x0,0xfe, 0xfe,0xff,0x0,0xfd,0xfb,0xfb,0x0,0xfe,0xfe,0xfd,0x0,0x1,0x1,0x0,0x0,0x1, 0x1,0x1,0x0,0xf2,0xf4,0xf9,0x0,0x3,0x3,0xf3,0x0,0x3,0x3,0x2,0x0,0x7, 0x6,0x4,0x0,0x8,0x7,0x6,0x0,0x8,0xa,0x6,0x0,0x12,0x11,0xb,0x0,0x13, 0x12,0xf,0x0,0xd,0xc,0xa,0x0,0x5,0x5,0x3,0x0,0x3,0x4,0x2,0x0,0x3, 0x4,0x3,0x0,0x2,0x2,0x3,0x0,0x16,0x7,0x5,0x0,0x12,0x11,0xb,0x0,0x1b, 0x1a,0x14,0x0,0xed,0xee,0xf4,0x0,0xe7,0xe8,0xed,0x0,0xee,0xee,0xf2,0x0,0xf9, 0xf7,0xfe,0x0,0x0,0x1,0x0,0x0,0x1,0x1,0x1,0x0,0xf9,0xfb,0xfc,0x0,0xec, 0xec,0xf1,0x0,0xf1,0xf0,0xf4,0x0,0xe5,0xe6,0xed,0x0,0x18,0x18,0x11,0x0,0x1d, 0x1a,0x14,0x0,0x10,0x10,0xc,0x0,0x1b,0x1b,0x14,0x0,0x10,0x10,0xe,0x0,0x19, 0xee,0xf2,0x0,0xe2,0xe1,0xe9,0x0,0xe7,0xe8,0xed,0x0,0xfb,0xfb,0x0,0x0,0x2, 0x1,0x3,0x0,0xff,0xfe,0xff,0x0,0xea,0xed,0xee,0x0,0xf0,0xf2,0xf4,0x0,0xe4, 0xe4,0xec,0x0,0x1f,0x21,0x17,0x0,0x1b,0x1a,0x14,0x0,0x12,0x13,0xd,0x0,0xe5, 0xe6,0xed,0x0,0xdf,0xdf,0xe6,0x0,0xed,0xed,0xf2,0x0,0xff,0x1,0xff,0x0,0xfe, 0x0,0xfc,0x0,0xf0,0xf1,0xf4,0x0,0xd7,0xd5,0xf9,0x0,0xec,0xec,0xf1,0x0,0x1d, 0x1e,0x16,0x0,0x2b,0x2b,0x1f,0x0,0x14,0xe,0xb,0x0,0xd8,0xdb,0xe4,0x0,0xfe, 0x0,0x1,0x0,0x1,0x1,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x3,0x6,0x3,0x0,0xf5,0xe4,0xf0,0x0,0xf9,0xf0,0xf6,0x0,0x1, 0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x0,0xff,0xfd,0xfe,0x0,0xe4,0xa8,0xb4,0x0, 0xec,0xc0,0xc6,0x0,0x4,0xb,0xa,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x1,0x0,0x15, 0x1,0xfc,0x1,0xb7,0x2,0xdb,0xd,0x33,0x0,0x0,0xfe,0x0,0xfe,0x5,0xfe,0x0, 0xfc,0xf9,0xfd,0x0,0xf8,0xfc,0xfb,0x0,0xf9,0xf8,0xfb,0x0,0xf8,0xf6,0xfa,0x0, 0xf8,0xf8,0xf8,0x0,0xfa,0xfb,0xf9,0x0,0xfa,0xf9,0xfe,0x0,0xf7,0xf8,0xfc,0x0, 0xfb,0xfc,0xfd,0x0,0x0,0x0,0x0,0x0,0x2,0x2,0x1,0x0,0x0,0xff,0x0,0x0, 0x3,0x3,0x0,0x0,0x6,0x7,0x5,0x0,0x7,0x6,0x7,0x0,0xb,0xa,0x7,0x0, 0x11,0x13,0xd,0x0,0x14,0x12,0xd,0x0,0xb,0xd,0x9,0x0,0xc,0xa,0x7,0x0, 0x4,0x3,0x3,0x0,0xff,0x0,0xfe,0x0,0xff,0xfe,0x1,0x0,0xfa,0xfb,0xfb,0x0, 0xf8,0xf9,0xfc,0x0,0xef,0xf0,0xf3,0x0,0xe6,0xe6,0xef,0x0,0xed,0xeb,0xf0,0x0, 0xf5,0xf6,0xf9,0x0,0xfe,0xfe,0xff,0x0,0x2,0x1,0x1,0x0,0x0,0x2,0x0,0x0, 0x1,0x2,0x2,0x0,0x4,0x3,0x2,0x0,0xc,0xc,0x8,0x0,0x1b,0x1b,0x13,0x0, 0x1c,0x1b,0x15,0x0,0xf,0xe,0xa,0x0,0x1,0x1,0x1,0x0,0xf5,0xf5,0xf9,0x0, 0xe4,0xe5,0xeb,0x0,0xe1,0xe3,0xe9,0x0,0xf0,0xef,0xf6,0x0,0xfc,0xfa,0xfd,0x0, 0x1,0x3,0xff,0x0,0x2,0x1,0x1,0x0,0x1,0x1,0x3,0x0,0x7,0x9,0x6,0x0, 0x1b,0x1b,0x12,0x0,0x20,0x1f,0x17,0x0,0x10,0xf,0xb,0x0,0xf9,0xf8,0xfa,0x0, 0xdb,0xdd,0xe7,0x0,0xdf,0xdf,0xe9,0x0,0xf8,0xf7,0xf7,0x0,0xff,0x0,0x1,0x0, 0x3,0x1,0x2,0x0,0x2,0x4,0x2,0x0,0x8,0x8,0x5,0x0,0x1a,0x1b,0x14,0x0, 0x1c,0x16,0x15,0x0,0x1,0x2,0xfd,0x0,0xf2,0xc,0xfa,0xc6,0x0,0xff,0x0,0x3e, 0x0,0x0,0x0,0xfd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x0, 0xfd,0xf5,0xf9,0x0,0x26,0x7e,0x5b,0x0,0x1,0xff,0xff,0xff,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff, 0x0,0x1,0x1,0x1,0x0,0xee,0xbb,0xbc,0x0,0xee,0xbb,0xbb,0x0,0x2,0x5,0x5, 0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xff,0x15,0x1,0xfc,0x4,0xb7,0x10,0xe5,0x23, 0x33,0xff,0x2,0xfe,0x0,0xfd,0x3,0xfc,0x0,0xff,0xfd,0x0,0x0,0xfe,0x1,0xff, 0x0,0xff,0xfe,0xfd,0x0,0xff,0xfd,0xff,0x0,0xfc,0xfc,0xfe,0x0,0xf9,0xf8,0xfa, 0x0,0xf6,0xf7,0xf9,0x0,0xf4,0xf7,0xf8,0x0,0xf4,0xf4,0xf9,0x0,0xf4,0xf3,0xf6, 0x0,0xf4,0xf5,0xf6,0x0,0xf9,0xf9,0xfc,0x0,0xfe,0xfd,0xff,0x0,0xfe,0xfe,0xfc, 0x0,0xfd,0xff,0x1,0x0,0x3,0x2,0x2,0x0,0x6,0x5,0x4,0x0,0x9,0x9,0x6, 0x0,0xf,0xf,0xc,0x0,0x13,0x13,0xc,0x0,0x11,0x11,0xc,0x0,0xe,0xe,0xc, 0x0,0x7,0x8,0x4,0x0,0x3,0x2,0x3,0x0,0x1,0x1,0x0,0x0,0xfe,0xfc,0x0, 0x0,0xf7,0xf8,0xfa,0x0,0xee,0xef,0xf2,0x0,0xe8,0xe8,0xee,0x0,0xec,0xec,0xf2, 0x0,0xf4,0xf3,0xf6,0x0,0xfc,0xfd,0xfd,0x0,0xff,0xff,0x0,0x0,0x1,0x1,0x0, 0x0,0x1,0x2,0x2,0x0,0x4,0x4,0x3,0x0,0x11,0x10,0xb,0x0,0x18,0x19,0x11, 0x0,0x17,0x17,0x12,0x0,0x11,0xf,0xf,0x0,0x3,0x3,0x0,0x0,0xf1,0xf3,0xf4, 0x0,0xe5,0xe6,0xed,0x0,0xe4,0xe0,0xeb,0x0,0xed,0xee,0xf3,0x0,0xfe,0x0,0xfe, 0x0,0x3,0x1,0x3,0x0,0x0,0x2,0x1,0x0,0x2,0x2,0xff,0x0,0xe,0xd,0xa, 0x0,0x1b,0x1a,0x14,0x0,0x1e,0x1e,0x17,0x0,0xa,0xc,0x8,0x0,0xec,0xec,0xf0, 0x0,0xdf,0xdf,0xe8,0x0,0xe7,0xe7,0xf0,0x0,0xf9,0xf9,0xf9,0x0,0x0,0x0,0x0, 0x0,0x2,0x0,0x3,0x0,0x0,0x4,0xff,0x0,0x12,0xc,0xf,0x0,0x21,0x21,0x17, 0x0,0xd,0x27,0xfc,0xc6,0xff,0xff,0xff,0x3e,0x0,0x0,0x0,0xfd,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x0,0xfc,0xf1,0xf3,0x0,0x16,0x54,0x45,0x0,0x16,0x54,0x44, 0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x0,0x12,0x45, 0x44,0x0,0xf6,0xda,0xda,0x0,0xf8,0xe0,0xdf,0x0,0x2,0x7,0x7,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, 0xff,0x0,0x0,0x1,0xff,0x0,0x2,0x1,0x2,0x0,0xff,0x3,0x0,0x0,0xff,0x3, 0xff,0x0,0x1,0x2,0x2,0x0,0x2,0x2,0x3,0x0,0x0,0x0,0x3,0x0,0x1,0x1, 0x2,0x0,0x1,0x0,0x0,0x0,0xfe,0xfe,0x9,0x0,0xfd,0xfe,0xff,0x0,0x0,0x1, 0x0,0x0,0xfb,0xf9,0xfc,0x0,0xf5,0xf5,0xf8,0x0,0xf4,0xf7,0xf7,0x0,0xfa,0xfa, 0xfc,0x0,0xf6,0xf3,0xf9,0x0,0xef,0xf0,0xf2,0x0,0xf2,0xf4,0xf8,0x0,0xf8,0xf8, 0xfa,0x0,0xf7,0xf7,0xf9,0x0,0xf6,0xf4,0xf9,0x0,0xef,0xef,0xf6,0x0,0xe7,0xe8, 0xec,0x0,0xd,0xd,0xa,0x0,0xe,0xd,0xc,0x0,0xf,0x10,0x9,0x0,0x12,0x11, 0xd,0x0,0xf,0xf,0xc,0x0,0xa,0x8,0x7,0x0,0x11,0xf,0x9,0x0,0xe,0xe, 0x7,0x0,0x15,0x15,0x10,0x0,0xf0,0xf1,0xf3,0x0,0xec,0xec,0xef,0x0,0xeb,0xea, 0xf3,0x0,0xed,0xed,0xf4,0x0,0xfb,0xfc,0xfa,0x0,0xff,0xff,0xfe,0x0,0xfa,0xf9, 0xff,0x0,0xe8,0xe9,0xf0,0x0,0xee,0xef,0xf5,0x0,0xe4,0xe5,0xed,0x0,0x15,0x13, 0x10,0x0,0x1d,0x1d,0x13,0x0,0x16,0x15,0x11,0x0,0x10,0x10,0xd,0x0,0x1a,0x17, 0x12,0x0,0xe4,0xe3,0xed,0x0,0xe5,0xe7,0xed,0x0,0xf2,0xf2,0xf3,0x0,0xfc,0xfc, 0xfd,0x0,0xfd,0xfd,0x1,0x0,0xee,0xec,0xf4,0x0,0xf1,0xf1,0xf6,0x0,0xe6,0xe9, 0xee,0x0,0x21,0x20,0x18,0x0,0x1a,0x1a,0x13,0x0,0x2f,0x2f,0x24,0x0,0x1e,0x1c, 0xf2,0x0,0xe1,0xe0,0xe8,0x0,0xe5,0xe7,0xed,0x0,0xfb,0xfd,0xfd,0x0,0x0,0xfd, 0x0,0x0,0xe9,0xe8,0xee,0x0,0xf6,0xf6,0xf7,0x0,0x18,0x5,0x16,0x0,0xff,0xff, 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x0,0x0,0xff, 0x3,0x0,0xe,0x6,0xb,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x1e,0x1c,0x0,0xfb, 0xe6,0xe4,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x1,0xff,0x1,0x0,0x1, 0x2,0x2,0x0,0x1,0x1,0xfe,0x0,0xff,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0xfe, 0xff,0xff,0x0,0x0,0x1,0x1,0x0,0x0,0xfe,0x0,0x0,0x0,0x0,0xff,0x0,0x1, 0x1,0x0,0x0,0x3,0x3,0x3,0x0,0x2,0x0,0x0,0x0,0x6,0x9,0x3,0x0,0xb, 0xa,0x7,0x0,0x15,0x1,0xf,0x0,0x0,0xff,0x1,0x0,0xf9,0xfa,0xfa,0x0,0xf3, 0xf4,0xf8,0x0,0xf3,0xf3,0xf7,0x0,0xee,0xef,0xf3,0x0,0xf1,0xf0,0xf4,0x0,0xf3, 0xf1,0xf7,0x0,0xf4,0xf5,0xf6,0x0,0xf5,0xf5,0xf9,0x0,0xf5,0xf4,0xfa,0x0,0xeb, 0xea,0xf1,0x0,0x8,0x8,0x5,0x0,0xd,0xe,0xa,0x0,0x12,0x12,0xe,0x0,0x15, 0x13,0x10,0x0,0x12,0x14,0xc,0x0,0xf,0xe,0x9,0x0,0xe,0xc,0x9,0x0,0xe, 0xd,0x8,0x0,0x16,0x15,0xf,0x0,0xf0,0x1a,0xf6,0x0,0xe8,0xe7,0xef,0x0,0xe8, 0xe8,0xee,0x0,0xef,0xef,0xf3,0x0,0xf9,0xfa,0xfc,0x0,0x1,0x0,0x2,0x0,0xfa, 0xf9,0xfb,0x0,0xeb,0xe9,0xfa,0x0,0xee,0xed,0xf3,0x0,0xe9,0xe9,0xed,0x0,0x1b, 0x1a,0x14,0x0,0x1d,0x1c,0x15,0x0,0x14,0x17,0x11,0x0,0x14,0x15,0x12,0x0,0x19, 0xe8,0x12,0x0,0xe2,0xe2,0xe8,0x0,0xe6,0xe6,0xee,0x0,0xf3,0xf3,0xf9,0x0,0x0, 0x2,0xff,0x0,0xfd,0xfd,0xfd,0x0,0xea,0xe8,0xf0,0x0,0xef,0xee,0xf5,0x0,0xe6, 0xe6,0xef,0x0,0x23,0x22,0x18,0x0,0x19,0x19,0x12,0x0,0x12,0x13,0xe,0x0,0x11, 0xde,0xe6,0x0,0xe0,0xe2,0xe9,0x0,0xf3,0xf6,0xf9,0x0,0xf9,0x0,0xf9,0x0,0xf2, 0xf2,0xf5,0x0,0x4,0xec,0xff,0x0,0xff,0xff,0xfe,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xf9,0xf2,0xf6,0x0,0x1d,0x41,0x2b,0x0,0x1e,0x4e,0x39,0x0,0xff, 0x0,0xff,0x0,0x3,0x80,0x80,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xb,0x27,0x28,0x0,0xe1,0xb1,0xc4,0x0,0xfb,0xf9,0x1,0x0, 0xfa,0xfb,0x2,0x0,0xfa,0xfa,0x2,0x0,0xfa,0xfa,0x2,0x0,0xfa,0xfa,0x2,0x0, 0xfa,0xfa,0x2,0xb,0xf9,0xf6,0x2,0x5c,0xf4,0xe1,0xfc,0x1a,0xf2,0xf4,0xf5,0x0, 0xf4,0xf7,0xf9,0x0,0xf7,0xf6,0xfa,0x0,0xf7,0xf8,0xfa,0x0,0xfa,0xfa,0xfc,0x0, 0xfe,0xfe,0xff,0x0,0x0,0x1,0x1,0x0,0xff,0x2,0x1,0x0,0xff,0xff,0xfe,0x0, 0x0,0xff,0xff,0x0,0xff,0x0,0x1,0x0,0xff,0x0,0x1,0x0,0xff,0xfd,0xff,0x0, 0xfb,0xfd,0xfc,0x0,0x3,0x3,0x3,0x0,0xd,0xd,0x9,0x0,0x10,0x10,0xc,0x0, 0x12,0x14,0xe,0x0,0x11,0x12,0xd,0x0,0xe,0xd,0x9,0x0,0x8,0x9,0x7,0x0, 0x3,0x3,0x3,0x0,0xff,0xff,0xff,0x0,0xfe,0xfe,0xfe,0x0,0xfa,0xfb,0xfd,0x0, 0xf6,0xf6,0xfa,0x0,0xf1,0xf0,0xf4,0x0,0xee,0xef,0xf4,0x0,0xf1,0xf6,0xf9,0x0, 0xf9,0xf9,0xfb,0x0,0x1,0xff,0xfe,0x0,0x3,0x2,0x3,0x0,0x6,0x7,0x6,0x0, 0xd,0xc,0x8,0x0,0x11,0x11,0xb,0x0,0x10,0x11,0xe,0x0,0x9,0x8,0x7,0x0, 0xfb,0xfc,0xfe,0x0,0xfa,0xf9,0xfa,0x0,0x1,0x0,0x0,0x0,0x3,0x6,0x3,0x0, 0x0,0x0,0x0,0x0,0xf7,0xf6,0xf8,0x0,0xec,0xed,0xf2,0x0,0xea,0xed,0xf2,0x0, 0xf8,0xf8,0xfb,0x0,0xb,0xc,0x7,0x0,0x15,0x14,0xd,0x0,0x15,0x14,0x10,0x0, 0xa,0xa,0x7,0x0,0xf9,0xfb,0xfb,0x0,0xf8,0xf9,0xf9,0x0,0xff,0xff,0xff,0x0, 0x5,0x5,0x3,0x0,0xfd,0xfe,0x0,0x0,0xef,0xef,0xf4,0x0,0xea,0xeb,0xef,0x0, 0xf5,0xf5,0xf8,0x0,0xf,0xf,0xb,0x0,0x1d,0x1e,0x14,0x0,0x12,0x10,0xd,0x0, 0xfe,0xfe,0x0,0x0,0xf2,0xf1,0xf5,0x0,0xfd,0xfd,0xfe,0x0,0xb,0x17,0xb,0xe3, 0x0,0x1,0xfd,0x9f,0x1,0x1,0xfe,0xff,0x1,0x1,0xfe,0x0,0x1,0x1,0xfe,0x0, 0x1,0x1,0xfe,0x0,0x1,0x1,0xfe,0x0,0x1,0x1,0xfe,0x0,0x1,0x1,0xfe,0x0, 0x1,0x1,0xfe,0x0,0x1,0x1,0xfe,0x0,0x0,0x0,0xfd,0x0,0x5,0x9,0x2,0x0, 0x25,0x54,0x36,0x0,0x16,0x31,0x21,0x0,0x0,0x0,0x0,0x0,0x1,0xff,0xff,0xff, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x0,0xda,0x9d,0xb7,0x0,0xdc,0xa5,0xcf,0x0,0x1,0x2,0xff,0x0,0x3,0xc,0x0, 0x0,0x2,0x5,0x1,0x0,0xff,0xff,0x0,0x0,0x0,0x1,0x0,0x15,0xfe,0xfb,0xfd, 0xb7,0xec,0xc9,0xe3,0x33,0x0,0x1,0x2,0x0,0x4,0x8,0x5,0x0,0x1,0x2,0x2, 0x0,0x3,0x2,0x1,0x0,0x5,0x3,0x2,0x0,0x5,0x6,0x5,0x0,0x8,0x8,0x5, 0x0,0x8,0x9,0x7,0x0,0x9,0x8,0x5,0x0,0xa,0xb,0x7,0x0,0xb,0xb,0xa, 0x0,0x7,0x5,0x4,0x0,0x4,0x3,0x3,0x0,0x1,0x3,0x1,0x0,0x1,0x0,0x1, 0x0,0xfd,0xfd,0xfc,0x0,0xfe,0x0,0xff,0x0,0x3,0x3,0x3,0x0,0x2,0x0,0x1, 0x0,0xff,0xff,0xff,0x0,0xf7,0xf8,0xfa,0x0,0xef,0xef,0xf4,0x0,0xed,0xed,0xf2, 0x0,0xec,0xec,0xf3,0x0,0xee,0xef,0xf4,0x0,0xf8,0xf8,0xf9,0x0,0xfe,0xfe,0xfc, 0x0,0x0,0x1,0x2,0x0,0x3,0x2,0x3,0x0,0x9,0x8,0x7,0x0,0x11,0x12,0xb, 0x0,0x16,0x15,0xf,0x0,0x17,0x17,0x12,0x0,0x11,0x10,0xc,0x0,0x9,0x9,0x6, 0x0,0x0,0x1,0x0,0x0,0xf8,0xf7,0xfb,0x0,0xed,0xed,0xf2,0x0,0xe2,0xe3,0xe9, 0x0,0xe9,0xe9,0xee,0x0,0xf2,0xf3,0xf8,0x0,0xfe,0xfe,0xfe,0x0,0x5,0x4,0x3, 0x0,0xfe,0xfd,0x0,0x0,0xfa,0xfc,0xfc,0x0,0x6,0x7,0x4,0x0,0x18,0x16,0xf, 0x0,0x1f,0x1f,0x17,0x0,0x1b,0x19,0x14,0x0,0xb,0xc,0x8,0x0,0xf0,0xf1,0xf5, 0x0,0xdd,0xdd,0xe7,0x0,0xe3,0xe5,0xea,0x0,0xf0,0xef,0xf4,0x0,0xff,0x0,0x2, 0x0,0x5,0x4,0x3,0x0,0xfc,0xfc,0xfd,0x0,0xfe,0xfd,0xfe,0x0,0x12,0x12,0xd, 0x0,0x26,0x27,0x1b,0x0,0x1d,0x1c,0x16,0x0,0x4,0x5,0x4,0x0,0xdc,0xd9,0xe2, 0x0,0xd9,0xda,0xe4,0x0,0x2,0x18,0x14,0xc6,0x2,0x1,0x0,0x3e,0x0,0x0,0x0, 0xfd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xfe,0xfc,0xfd,0x0,0x9,0x10,0x9,0x0,0x52,0xc1,0x7f,0x0,0xff,0x0,0xff, 0x0,0x0,0x0,0x0,0x0,0x1,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x0,0xfc,0xfe,0xf7,0x0,0xc3,0x96, 0x7c,0x0,0xa,0xf,0x18,0x0,0xec,0xb1,0xfd,0x0,0xfa,0xed,0xfe,0x0,0x3,0x8, 0x2,0x0,0x0,0x1,0x1,0x15,0xfe,0xf9,0xfb,0xb7,0xe3,0xc6,0xd5,0x33,0x2,0x2, 0x4,0x0,0x3,0x7,0x6,0x0,0x0,0xff,0xfe,0x0,0xff,0xfe,0xff,0x0,0x1,0x1, 0x0,0x0,0x0,0x0,0x2,0x0,0x1,0x2,0xff,0x0,0x3,0x3,0x4,0x0,0x7,0x7, 0x5,0x0,0x5,0x7,0x4,0x0,0xb,0x9,0x7,0x0,0xe,0xf,0xa,0x0,0xe,0xc, 0xa,0x0,0xa,0xa,0x9,0x0,0x7,0x8,0x4,0x0,0xa,0x9,0x6,0x0,0x8,0x7, 0x6,0x0,0xfe,0xfe,0xff,0x0,0xff,0xfd,0xff,0x0,0x0,0x1,0x0,0x0,0xff,0x0, 0xfe,0x0,0x1,0x1,0x1,0x0,0xfd,0xfc,0xff,0x0,0xf1,0xf3,0xf6,0x0,0xea,0xeb, 0xf2,0x0,0xeb,0xeb,0xef,0x0,0xf3,0xf3,0xf4,0x0,0xf4,0xf5,0xf9,0x0,0xfa,0xf8, 0xfd,0x0,0x0,0x1,0x1,0x0,0x2,0x3,0xff,0x0,0x8,0x8,0x5,0x0,0x12,0x11, 0xf,0x0,0x19,0x17,0x10,0x0,0x13,0x14,0xe,0x0,0x10,0xe,0xa,0x0,0xc,0xb, 0xa,0x0,0xff,0x2,0x1,0x0,0xf3,0xf4,0xf5,0x0,0xec,0xeb,0xf0,0x0,0xe8,0xe7, 0xef,0x0,0xe8,0xea,0xef,0x0,0xf2,0xf2,0xf8,0x0,0x1,0xff,0x0,0x0,0x4,0x5, 0x2,0x0,0xfe,0xfd,0xfe,0x0,0xfd,0x0,0xff,0x0,0x9,0x9,0x8,0x0,0x18,0x15, 0x10,0x0,0x1d,0x1e,0x15,0x0,0x1a,0x1a,0x13,0x0,0x3,0x3,0x4,0x0,0xeb,0xeb, 0xee,0x0,0xde,0xdf,0xe7,0x0,0xe2,0xe4,0xec,0x0,0xf7,0xf6,0xf9,0x0,0x6,0x1, 0x4,0x0,0x0,0x3,0x1,0x0,0xfc,0xfd,0xfd,0x0,0x6,0x6,0x5,0x0,0x16,0x17, 0x10,0x0,0x23,0x23,0x19,0x0,0x12,0xd,0xb,0x0,0xf1,0xf2,0xf3,0x0,0xef,0x6, 0xf9,0xc6,0x2,0x0,0x1,0x3e,0x0,0x0,0x0,0xfd,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xfe,0xfe,0x0,0x16,0x56, 0x41,0x0,0x22,0x58,0x3b,0x0,0xff,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x1,0xff, 0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x0,0xf9,0xfd,0xec,0x0,0xd8,0xee,0x75,0x0,0xe,0xd,0x28,0x0,0x2, 0xd3,0x31,0x0,0xd1,0x7c,0xd1,0x0,0x0,0x3,0xfa,0x0,0x1,0x3,0x3,0x15,0xfe, 0xf9,0xfc,0xb7,0xe5,0xc5,0xd9,0x33,0x3,0x3,0x2,0x0,0x3,0x8,0x7,0x0,0x0, 0xfe,0xfe,0x0,0x0,0xff,0x0,0x0,0xff,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0xff, 0xff,0xff,0x0,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0, 0xff,0x0,0x0,0x4,0x5,0x4,0x0,0x5,0x5,0x3,0x0,0x3,0x4,0x4,0x0,0xa, 0x9,0x6,0x0,0x13,0x11,0xc,0x0,0xf,0xf,0xb,0x0,0xe,0x10,0xa,0x0,0xd, 0xb,0xc,0x0,0x6,0x6,0x2,0x0,0x0,0xff,0xff,0x0,0xff,0xff,0x0,0x0,0xff, 0x0,0xfe,0x0,0xff,0x0,0x0,0x0,0xfd,0xfc,0x0,0x0,0xf8,0xfa,0xfb,0x0,0xf3, 0xf3,0xf4,0x0,0xe9,0xe9,0xf0,0x0,0xe8,0xe7,0xef,0x0,0xf1,0xf0,0xf4,0x0,0xfa, 0xfb,0xfd,0x0,0x2,0x3,0x3,0x0,0x5,0x3,0x3,0x0,0x5,0x6,0x2,0x0,0xa, 0xb,0x7,0x0,0x14,0x13,0xf,0x0,0x1d,0x1b,0x12,0x0,0x15,0x16,0x12,0x0,0x8, 0x9,0x7,0x0,0xfd,0xfc,0xfd,0x0,0xf5,0xf6,0xf7,0x0,0xee,0xef,0xf3,0x0,0xe2, 0xe3,0xec,0x0,0xe8,0xe6,0xee,0x0,0xf7,0xf6,0xf7,0x0,0x2,0x0,0x3,0x0,0x1, 0x4,0x3,0x0,0xff,0xfe,0xfd,0x0,0x0,0x1,0x1,0x0,0x9,0xb,0x8,0x0,0x1a, 0x18,0x12,0x0,0x1f,0x20,0x17,0x0,0x15,0x14,0xe,0x0,0x0,0x0,0x0,0x0,0xe5, 0xe5,0xeb,0x0,0xda,0xdc,0xe5,0x0,0xec,0xec,0xf2,0x0,0xf9,0xf9,0xfd,0x0,0x4, 0x3,0x1,0x0,0x2,0x0,0x1,0x0,0xfd,0xff,0xff,0x0,0x8,0x9,0x4,0x0,0x1a, 0x15,0x17,0x0,0x21,0x21,0x16,0x0,0x5,0x20,0xf3,0xc6,0xff,0xff,0x1,0x3e,0x0, 0x0,0x0,0xfd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x0,0xf9,0xef,0xf3,0x0,0x28,0xa1,0x81,0x0,0x0,0x1,0x5,0x0,0xff, 0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x0,0x0, 0xfd,0xf2,0x3,0x0,0xfa,0xf8,0xfd,0x0,0x1c,0x35,0x1a,0x0,0x23,0x72,0xe7,0x0, 0xdd,0x8a,0xe6,0x0,0x3,0xf,0x0,0x0,0xff,0xfc,0x0,0x0,0x2,0x1,0x0,0x0, 0x1,0x1,0x0,0x0,0x3,0x1,0x0,0x0,0xff,0x1,0x1,0x0,0x0,0x1,0x0,0x0, 0x0,0x0,0x1,0x0,0x0,0x1,0x0,0x0,0xff,0x0,0xff,0x0,0x0,0xff,0x1,0x0, 0xff,0xff,0xff,0x0,0x1,0x0,0x0,0x0,0xfe,0xff,0x0,0x0,0xfd,0xfb,0xfc,0x0, 0xfc,0xfb,0xfd,0x0,0x0,0xff,0xf9,0x0,0xf4,0xf3,0xf5,0x0,0xed,0xed,0xf2,0x0, 0x6,0x5,0x3,0x0,0xd,0xd,0xa,0x0,0x13,0x12,0xe,0x0,0x13,0x13,0xd,0x0, 0xe,0x10,0xa,0x0,0x9,0x8,0x8,0x0,0x5,0x5,0x3,0x0,0x2,0x0,0xff,0x0, 0x2,0x4,0x0,0x0,0x3,0x4,0x7,0x0,0xa,0x9,0x6,0x0,0x12,0x10,0xe,0x0, 0x19,0x18,0x11,0x0,0xe7,0xe7,0xee,0x0,0xe8,0xe8,0xf1,0x0,0xf2,0xf3,0xf7,0x0, 0xfd,0xfb,0xfc,0x0,0xfd,0xf8,0xfe,0x0,0xf9,0xfb,0xfc,0x0,0xf1,0xf2,0xf7,0x0, 0xea,0xeb,0xf0,0x0,0x1a,0x18,0xf1,0x0,0x1b,0x1c,0x14,0x0,0x12,0x11,0xc,0x0, 0xb,0xb,0x9,0x0,0xa,0xa,0x9,0x0,0x10,0xf,0xd,0x0,0x17,0x15,0x11,0x0, 0xe4,0xe5,0xeb,0x0,0xeb,0xeb,0xef,0x0,0xf8,0xf7,0xfc,0x0,0x4,0x2,0x2,0x0, 0x0,0x1,0x1,0x0,0xf5,0xf5,0xf8,0x0,0xdd,0xdd,0xe6,0x0,0xea,0xea,0xee,0x0, 0x1d,0x1d,0x16,0x0,0x1e,0x1e,0x17,0x0,0x1e,0x1f,0x17,0x0,0x14,0x14,0xf,0x0, 0xe0,0xe1,0xea,0x0,0xdf,0xe0,0xe9,0x0,0xf0,0xee,0xf4,0x0,0xfe,0xfe,0xff,0x0, 0x3,0x4,0x1,0x0,0xf8,0xfa,0xfc,0x0,0xdf,0xde,0xe5,0x0,0xf3,0xf3,0xf6,0x0, 0x15,0x1,0xc,0x0,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfd,0xf6,0xf9,0x0,0x28,0x6c,0x4c,0x0, 0xfe,0xfd,0x1,0x0,0x1,0x4,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x0,0x0,0x0,0xc0,0x0,0x0,0x0, 0xf0,0x0,0x0,0x0,0x0,0x2,0x1,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0, 0x0,0xfc,0xf6,0xfc,0x0,0x10,0x3d,0x2,0x0,0x13,0xe4,0xf9,0x0,0xeb,0x91,0x13, 0x0,0x2,0x14,0xf5,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0, 0x0,0xff,0x0,0xfe,0x0,0x0,0x1,0x2,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x0,0xff,0x1,0xff,0x0,0x2,0x0,0x2,0x0,0x0,0x1,0x0, 0x0,0x3,0xff,0xff,0x0,0x2,0x1,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x1,0xfe, 0x0,0xfe,0xff,0x1,0x0,0xfe,0xff,0xff,0x0,0xf9,0xf9,0xfc,0x0,0xf6,0xf5,0xef, 0x0,0xeb,0xeb,0xf0,0x0,0xb,0xb,0x9,0x0,0xe,0x10,0xa,0x0,0x13,0x13,0xe, 0x0,0x14,0x12,0xf,0x0,0xe,0xc,0x8,0x0,0x7,0x7,0x5,0x0,0x1,0x1,0x2, 0x0,0x1,0x0,0x0,0x0,0x8,0x6,0x5,0x0,0x18,0x17,0x13,0x0,0x11,0x13,0xe, 0x0,0x19,0x1a,0xf3,0x0,0xe9,0xe8,0xee,0x0,0xe8,0xe9,0xf1,0x0,0xf2,0xf1,0xf7, 0x0,0xfc,0xfd,0xfb,0x0,0xff,0xfe,0xfe,0x0,0xef,0xf0,0xf6,0x0,0xf2,0xf1,0xf7, 0x0,0xe8,0xea,0xee,0x0,0x1a,0x19,0x12,0x0,0x18,0x18,0x12,0x0,0x12,0x11,0xe, 0x0,0xd,0xc,0x8,0x0,0xc,0xb,0x19,0x0,0x17,0x17,0xf,0x0,0xe2,0xe3,0xe9, 0x0,0xe0,0xe0,0xe9,0x0,0xf2,0xf0,0xf7,0x0,0xff,0x0,0xff,0x0,0x3,0x2,0x1, 0x0,0x0,0xfe,0xfe,0x0,0xf2,0xf1,0xf7,0x0,0xd8,0xf4,0xe2,0x0,0xe8,0xe8,0xed, 0x0,0x23,0x24,0x1b,0x0,0x1e,0x1d,0x17,0x0,0x28,0x26,0x1d,0x0,0x16,0x14,0xf, 0x0,0xdc,0xdd,0xe7,0x0,0xe4,0xe3,0xeb,0x0,0xf8,0xfa,0xfb,0x0,0x1,0x5,0x4, 0x0,0xff,0xfe,0xf9,0x0,0xec,0xeb,0xee,0x0,0xfc,0xe5,0x8,0x0,0xff,0xff,0xff, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x0,0xf6,0xe8,0xf4,0x0,0x2c,0x1e,0x1d,0x0,0x2,0x4,0x4,0x0,0xff,0x0,0xff, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x80,0x80,0x80,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x90,0x0,0x0,0x0,0xc1,0x0,0x0,0x0,0xee,0x0,0x0,0xff,0x0,0xdc,0xe7, 0x8d,0x0,0xfc,0xfe,0xf4,0x0,0x5,0x3,0xf,0x0,0xc,0x8,0x25,0x0,0xf7,0xf7, 0xec,0x0,0x1,0x28,0xd9,0x0,0xfd,0xa,0xed,0x6,0xf5,0xcb,0x11,0x5b,0xf3,0xe7, 0xf0,0x1b,0x2,0xfc,0x4,0x0,0x0,0x0,0x3,0x0,0xff,0xfd,0xfd,0x0,0x0,0x1, 0xff,0x0,0x1,0x1,0x0,0x0,0x1,0x1,0x2,0x0,0x1,0xff,0x0,0x0,0x0,0x0, 0x1,0x0,0x1,0x0,0x1,0x0,0xff,0x0,0x0,0x0,0x1,0x0,0xff,0x0,0x0,0x1, 0x1,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x1,0x0,0x2,0x1,0x3,0x0,0x2,0x1, 0x1,0x0,0x3,0x2,0x1,0x0,0x3,0x3,0x1,0x0,0x0,0x1,0x1,0x0,0xf9,0xf9, 0xfc,0x0,0xf2,0xf0,0xf4,0x0,0xed,0xee,0xf2,0x0,0xed,0xed,0xf2,0x0,0xf5,0xf6, 0xf8,0x0,0xff,0xff,0xff,0x0,0x2,0x1,0x2,0x0,0x2,0x2,0x1,0x0,0x1,0x1, 0x0,0x0,0xfe,0x0,0x0,0x0,0x3,0x3,0x3,0x0,0xd,0xd,0xb,0x0,0x13,0x11, 0xf,0x0,0xf,0xd,0xa,0x0,0x3,0x4,0x1,0x0,0xfc,0xfd,0xfe,0x0,0xfe,0xfe, 0xfe,0x0,0x1,0x0,0x0,0x0,0xfe,0xfe,0xfe,0x0,0xf7,0xf6,0xf9,0x0,0xee,0xef, 0xf4,0x0,0xee,0xf0,0xf4,0x0,0xfc,0xfd,0xfd,0x0,0x4,0x4,0x3,0x0,0x4,0x3, 0x2,0x0,0xa,0x9,0x7,0x0,0x15,0x14,0xf,0x0,0xe,0xe,0xb,0x0,0x1,0x0, 0x0,0x0,0xfc,0xfc,0xfd,0x0,0xfb,0xfc,0xfe,0x0,0xff,0x0,0x1,0x0,0x3,0x3, 0x3,0x0,0x0,0x0,0x0,0x0,0xf3,0xf4,0xf6,0x0,0xec,0xec,0xf2,0x0,0xf4,0xf4, 0xf7,0x0,0x1,0x3,0x3,0x0,0x14,0x13,0xd,0x0,0x18,0x16,0x10,0x0,0x8,0x9, 0x6,0x0,0xfa,0xfb,0xfd,0x0,0xfc,0xfc,0xfc,0x0,0xfc,0xfa,0xfb,0x0,0x1,0x1, 0x1,0x0,0x9,0x15,0xe,0xe3,0x0,0x0,0x0,0x9f,0x1,0x0,0x0,0xff,0x1,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xf9,0xf0,0xf5,0x0,0x31,0x72,0x4b,0x0,0x21,0x49, 0x31,0x0,0x1,0x4,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x0,0x0,0x0,0xf6,0x0, 0x0,0x1,0x0,0xfc,0xfe,0xf5,0x0,0xf9,0xfd,0xef,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x0,0x2,0x1e,0x1,0xfe,0x2,0x8,0x0,0x0,0x3,0xfa,0xa, 0x48,0xe1,0x16,0xf3,0xd6,0xfc,0xa,0x3,0xe9,0xf5,0x0,0x2,0xf9,0x6,0x0,0x3, 0xfe,0xd,0x0,0xfd,0xf8,0x8,0x0,0xfe,0xf8,0xf7,0x0,0x0,0x4,0xfc,0x0,0x2, 0x6,0x7,0x0,0x1,0x0,0x1,0x0,0xff,0x1,0xfe,0x0,0x0,0x0,0x0,0x0,0x1, 0xff,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xff,0x0,0x0,0x0,0x0,0xfe,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x2,0x0,0x3,0x1,0x0,0x0,0x3,0x2,0x0,0x0,0xfe,0xfe,0x1,0x0,0xff, 0xfe,0xff,0x0,0xf1,0xf0,0xf6,0x0,0xf2,0xf1,0xf7,0x0,0xe5,0xe4,0xed,0x0,0x16, 0x16,0xf,0x0,0x12,0x13,0xe,0x0,0xf,0xe,0xb,0x0,0x10,0xf,0xa,0x0,0x6, 0x6,0x6,0x0,0xfe,0xfd,0xfd,0x0,0x2,0x2,0x1,0x0,0x16,0x18,0x12,0x0,0x13, 0x14,0xe,0x0,0xeb,0xeb,0xf0,0x0,0xe8,0xe9,0xee,0x0,0xec,0xed,0xf3,0x0,0xf0, 0xef,0xf6,0x0,0xfd,0xfd,0xfc,0x0,0xff,0xff,0xff,0x0,0xee,0xee,0xf3,0x0,0xf3, 0xf2,0xf4,0x0,0xeb,0xea,0xf0,0x0,0x1a,0x18,0x14,0x0,0x10,0x10,0xc,0x0,0x11, 0x12,0xc,0x0,0x1a,0x19,0x13,0x0,0x11,0x11,0xd,0x0,0xe7,0xe7,0xee,0x0,0xe6, 0xe6,0xec,0x0,0xe8,0xe9,0xf1,0x0,0xf8,0xf6,0xf8,0x0,0x2,0x1,0x1,0x0,0x5, 0x6,0x7,0x0,0xfb,0xfc,0xff,0x0,0xde,0xde,0xe8,0x0,0xeb,0xec,0xf0,0x0,0x1c, 0x1b,0x14,0x0,0x1d,0x1c,0x16,0x0,0x20,0x21,0x1a,0x0,0x14,0x14,0xe,0x0,0xe4, 0xe5,0xed,0x0,0xe1,0xdd,0xe7,0x0,0xf1,0xf2,0xf6,0x0,0xfd,0xff,0xff,0x0,0xff, 0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc, 0xfd,0xfe,0x0,0x6,0x11,0xa,0x0,0x3,0x7,0x4,0x0,0xff,0x0,0xff,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xf4,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0, 0x2,0x0,0x4,0x0,0xfe,0x0,0x2,0x0,0x1,0x1,0x2,0x27,0xfa,0xfc,0xf0,0xb1, 0xf9,0xfe,0xed,0x25,0xfa,0xf7,0xf8,0x0,0xfb,0xf6,0xf8,0x1,0x2,0x45,0xbe,0x0, 0x12,0x29,0xf8,0x0,0xfd,0xee,0xd,0x0,0x5,0xea,0x26,0x0,0x4,0xdf,0x2c,0x0, 0xf8,0xdc,0x2,0x0,0xf3,0xe4,0xea,0x0,0xfc,0xf3,0xf5,0x0,0x4,0xb,0x5,0x0, 0x1,0x4,0x3,0x0,0x0,0xfd,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x2,0x0,0x2,0x2,0xff,0x0,0x3,0x3,0x0,0x0, 0x0,0x0,0x2,0x0,0xfa,0xfa,0xfe,0x0,0xe0,0xe1,0xea,0x0,0xdf,0xe3,0xeb,0x0, 0xf,0xd,0xb,0x0,0x1b,0x19,0x12,0x0,0x19,0x1a,0x13,0x0,0xf,0x11,0xb,0x0, 0x6,0x5,0x3,0x0,0xff,0xff,0xfc,0x0,0x0,0x0,0x0,0x0,0x19,0x18,0x11,0x0, 0x18,0x17,0x10,0x0,0xed,0xee,0xf4,0x0,0xdf,0xe0,0xea,0x0,0xe8,0xe7,0xec,0x0, 0xf6,0xf7,0xfa,0x0,0x3,0x2,0x1,0x0,0x0,0xff,0x0,0x0,0xe7,0xe7,0xed,0x0, 0xe8,0xe8,0xef,0x0,0x12,0x10,0xc,0x0,0x1f,0x21,0x19,0x0,0x1e,0x1c,0x14,0x0, 0xb,0xa,0x8,0x0,0x21,0x20,0x19,0x0,0x18,0x18,0x10,0x0,0xe0,0xe0,0xe9,0x0, 0xe0,0xe0,0xe9,0x0,0xf0,0xef,0xf4,0x0,0xfd,0xfc,0xfc,0x0,0x4,0x4,0x4,0x0, 0x5,0x5,0x4,0x0,0xf5,0xf5,0xf9,0x0,0xd6,0xd8,0xe2,0x0,0xe6,0xe7,0xee,0x0, 0x24,0x21,0x19,0x0,0x1f,0x1e,0x16,0x0,0x32,0x30,0x23,0x0,0x19,0x12,0xe,0x0, 0xd4,0xd7,0xe3,0x0,0xf9,0x7,0x4,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x8,0x5,0x0,0x2,0x1,0x2,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x0,0x0,0x0,0x0, 0x0,0xff,0x0,0x0,0x0,0xfd,0xfe,0xf6,0x0,0xdd,0xe6,0x93,0x0,0xfb,0xfe,0xef, 0x2d,0x1,0x1,0x2,0x9c,0xeb,0xf0,0xc1,0x36,0xf0,0xf6,0xd0,0x0,0xfd,0xfc,0xfc, 0x0,0x1,0x2,0xfe,0x0,0x6,0xb,0xff,0x0,0x2,0xa,0x0,0x0,0xff,0xfd,0xfe, 0x0,0x0,0xf5,0xf,0x0,0xd,0xf7,0x41,0x0,0xf,0xeb,0x4b,0xfe,0xef,0xc0,0x2, 0xe0,0xe5,0xb0,0xd8,0x1d,0xf4,0xe4,0xe4,0x5,0x3,0xf,0x8,0x0,0x3,0x6,0x5, 0x0,0x0,0xfd,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x0,0xff,0xff,0xff,0x0,0x1,0x1,0x1, 0x0,0x1,0x1,0xff,0x0,0xfd,0xfe,0x0,0x0,0xfb,0xfe,0xfd,0x0,0x2,0x2,0x0, 0x0,0xb,0xa,0xb,0x0,0x17,0x17,0xf,0x0,0x1a,0x19,0x11,0x0,0x15,0x12,0xf, 0x0,0x8,0x7,0x6,0x0,0xfe,0xfe,0xfd,0x0,0xfe,0xff,0xff,0x0,0x0,0x2,0x3, 0x0,0xfb,0xfa,0xfb,0x0,0xe9,0xea,0xf0,0x0,0xe3,0xe4,0xec,0x0,0xe9,0xe9,0xf0, 0x0,0xf9,0xf8,0xf9,0x0,0x2,0x2,0x3,0x0,0x1,0x0,0x0,0x0,0xfd,0xff,0xfc, 0x0,0x6,0x6,0x6,0x0,0x19,0x18,0x12,0x0,0x1f,0x1e,0x16,0x0,0x16,0x16,0xf, 0x0,0x9,0xa,0x7,0x0,0xfd,0xfc,0xfe,0x0,0xec,0xed,0xf2,0x0,0xe3,0xe4,0xea, 0x0,0xe2,0xe3,0xec,0x0,0xf4,0xf2,0xf7,0x0,0x4,0x3,0x1,0x0,0x2,0x4,0x3, 0x0,0x1,0xfe,0x1,0x0,0xfc,0xfd,0xfc,0x0,0x3,0x6,0x3,0x0,0x15,0x15,0x11, 0x0,0x22,0x23,0x18,0x0,0x1d,0x15,0x12,0x0,0xf9,0xf9,0xfb,0x0,0xec,0x8,0xf2, 0xc6,0x1,0x0,0x0,0x3e,0x0,0x0,0x0,0xfd,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xfd,0xf2,0xf5,0x0,0x1a,0x61,0x49,0x0,0x13,0x49,0x36,0x0,0x0,0xff,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x80,0x80, 0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0xfe,0x1b,0xf0,0xf4,0xcb,0x23,0xf4,0xf8,0xda,0x98,0xe5,0xee,0xb4,0x37,0xf1,0xf5, 0xd5,0x0,0x3,0x1,0xfc,0x0,0x4,0x3,0xfe,0x0,0x3,0x2,0xff,0x0,0x1,0x0, 0x2,0x0,0xff,0xfa,0x2,0x0,0x1,0xfb,0xff,0x0,0xfd,0x4,0xf8,0x0,0xfc,0xf, 0xe2,0x0,0x3,0x21,0xeb,0xfa,0x7,0x39,0xdd,0x61,0x1a,0x22,0x43,0xf7,0xf6,0xdc, 0x6,0x2c,0xee,0xe1,0xdf,0x4,0x4,0x3,0x6,0x0,0x3,0x6,0x4,0x0,0x0,0x0, 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0x0,0x0,0x0,0x0,0xff,0x0,0x0,0x0, 0x2,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0xff,0x0,0x2,0x1,0x0,0x0,0x1,0x0, 0x1,0x0,0x2,0x3,0x2,0x0,0xff,0xfd,0x0,0x0,0xf7,0xf8,0xf9,0x0,0xf1,0xef, 0xf4,0x0,0xee,0xed,0xf2,0x0,0xf4,0xf6,0xf9,0x0,0x2,0x2,0x2,0x0,0x7,0xa, 0x7,0x0,0x6,0x5,0x6,0x0,0x2,0x1,0x0,0x0,0x5,0x5,0x1,0x0,0xc,0xe, 0x9,0x0,0x12,0x12,0xe,0x0,0xf,0xd,0x9,0x0,0xfb,0xfd,0xfe,0x0,0xf5,0xf5, 0xf8,0x0,0xfc,0xfc,0xff,0x0,0x0,0x1,0x1,0x0,0xfe,0xfe,0xfd,0x0,0xf1,0xf1, 0xf7,0x0,0xed,0xee,0xf4,0x0,0xf4,0xf6,0xf7,0x0,0x3,0x3,0x1,0x0,0xe,0xd, 0xa,0x0,0xf,0x10,0xd,0x0,0x15,0x13,0xe,0x0,0xd,0xd,0xa,0x0,0xfa,0xfb, 0xfa,0x0,0xf2,0xf4,0xf7,0x0,0xfc,0xfa,0xfc,0x0,0x0,0x0,0x2,0x0,0x3,0x4, 0x3,0x0,0xfd,0xfe,0xfe,0x0,0xf0,0xf0,0xf6,0x0,0xea,0xeb,0xef,0x0,0xf9,0xf7, 0xff,0x0,0x12,0x13,0xc,0x0,0xe,0x1a,0xf7,0xe3,0xa,0xa,0xff,0x9f,0xa,0xa, 0xff,0xff,0xa,0xa,0xff,0x0,0xa,0xa,0xff,0x0,0xa,0xa,0xff,0x0,0xa,0xa, 0xff,0x0,0xa,0xa,0xff,0x0,0xa,0xa,0xff,0x0,0x9,0x4,0xf9,0x0,0xf,0x38, 0x2a,0x0,0x4,0x1c,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x80,0x80,0x80,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0xfe,0xf4,0x0,0xfe, 0xff,0xfa,0x0,0x0,0x0,0xfe,0xf,0xfc,0xfd,0xf6,0x96,0xe9,0xf0,0xb6,0x69,0xe5, 0xed,0xb1,0x30,0xf9,0xfa,0xe7,0x0,0x6,0x4,0x1,0x0,0x5,0x4,0x4,0x0,0x1, 0x2,0x3,0x0,0x1,0x1,0x2,0x0,0x0,0xfc,0x2,0x0,0xff,0xfd,0x1,0x0,0x0, 0xfc,0x1,0x0,0x0,0xfe,0x0,0x0,0xfe,0xf9,0xfa,0x0,0xf4,0xf7,0xe3,0x4,0x2, 0xf,0xfa,0x11,0x9,0x23,0xff,0x9f,0x14,0xd,0x48,0x6,0xf7,0xdb,0xfb,0x2d,0xf4, 0xe8,0xe6,0x0,0x3,0x5,0x4,0x0,0x2,0x4,0x3,0x0,0x0,0xff,0xff,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x0,0x1, 0x1,0x0,0x0,0x1,0x1,0x1,0x0,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0xff, 0xff,0x1,0x0,0xff,0xff,0x1,0x0,0xff,0x1,0x1,0x0,0x1,0x1,0x1,0x0,0x2, 0x2,0x2,0x0,0x2,0x1,0x2,0x0,0x0,0xfe,0xff,0x0,0xf8,0xf8,0xf9,0x0,0xef, 0xf1,0xf5,0x0,0xed,0xee,0xf5,0x0,0xf5,0xf6,0xf7,0x0,0x1,0xff,0x1,0x0,0x5, 0x4,0x4,0x0,0x2,0x5,0x3,0x0,0x3,0x2,0x3,0x0,0x8,0x5,0x5,0x0,0xf, 0xe,0xb,0x0,0x10,0x10,0xa,0x0,0x5,0x6,0x3,0x0,0xfc,0xfd,0xfd,0x0,0xfb, 0xfc,0xfc,0x0,0xfe,0xfc,0xfd,0x0,0x1,0x0,0x0,0x0,0xfa,0xf9,0xfd,0x0,0xf0, 0xf1,0xf4,0x0,0xf0,0xf1,0xf4,0x0,0xfc,0xfb,0xfd,0x0,0x7,0x4,0x4,0x0,0xa, 0xb,0x7,0x0,0x12,0x12,0xe,0x0,0x10,0x10,0xc,0x0,0x4,0x3,0x4,0x0,0xfc, 0xfd,0xfe,0x0,0xf8,0xf9,0xfa,0x0,0xfc,0xfd,0xfc,0x0,0x4,0x3,0x3,0x0,0x2, 0x1,0x0,0x0,0xf9,0xfa,0xfa,0x0,0xed,0xeb,0xf4,0x0,0xf3,0xf4,0xf8,0x0,0xf9, 0x7,0xfb,0xe3,0xee,0xef,0xf9,0x9f,0xee,0xef,0xf9,0xff,0xee,0xef,0xf9,0x0,0xee, 0xef,0xf9,0x0,0xee,0xef,0xf9,0x0,0xee,0xef,0xf9,0x0,0xee,0xef,0xf9,0x0,0xee, 0xef,0xf9,0x0,0xed,0xed,0xf6,0x0,0xf6,0xfd,0x4,0x0,0xf,0x2a,0x21,0x0,0x4, 0x9,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3, 0x80,0x80,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xf7,0xfa,0xe5,0x0,0xfe,0xff,0xf7,0x0,0xfc,0xfd,0xf1,0x1f, 0xe9,0xef,0xb8,0x7d,0xdf,0xea,0x9b,0x20,0xf7,0xfa,0xe5,0x0,0x7,0x5,0x2,0x0, 0x3,0x3,0x3,0x0,0xff,0x0,0x1,0x0,0xff,0x0,0x0,0x0,0x0,0xfe,0x1,0x0, 0x0,0x1,0xfe,0x0,0x1,0x2,0x0,0x0,0x0,0x1,0xff,0x0,0x2,0x0,0x3,0x0, 0x0,0xff,0x2,0x0,0xfe,0xfa,0xfe,0x0,0xf8,0xf5,0xf8,0x25,0x2,0x2,0x0,0x12, 0x11,0x15,0x30,0x97,0x13,0x1c,0x2a,0x1e,0xf0,0xda,0xe7,0x20,0xf6,0xe9,0xf0,0x0, 0x4,0x7,0x5,0x0,0x0,0x1,0x1,0x0,0x1,0xff,0xff,0x0,0x0,0x0,0x0,0x0, 0xff,0x1,0x2,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0x2,0x0,0x1,0x1,0x1,0x0, 0x0,0x0,0xff,0x0,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0, 0x0,0x1,0x0,0x0,0x1,0x0,0xfe,0x0,0x0,0x1,0x1,0x0,0x1,0x1,0x2,0x0, 0x2,0x3,0x3,0x0,0x3,0x2,0x1,0x0,0xff,0xfe,0xff,0x0,0xf6,0xf7,0xfa,0x0, 0xf1,0xf0,0xf4,0x0,0xeb,0xed,0xf1,0x0,0xf0,0xf1,0xf5,0x0,0x0,0xff,0x0,0x0, 0x7,0x6,0x3,0x0,0x4,0x3,0x3,0x0,0x2,0x1,0x2,0x0,0xa,0xa,0x8,0x0, 0x11,0x12,0xc,0x0,0x13,0x12,0xd,0x0,0x9,0x9,0x6,0x0,0xfb,0xfa,0xfc,0x0, 0xf8,0xf9,0xfa,0x0,0x1,0x1,0x1,0x0,0xff,0xff,0xff,0x0,0xf7,0xf6,0xf9,0x0, 0xee,0xee,0xf4,0x0,0xed,0xee,0xf3,0x0,0xf4,0xf6,0xf9,0x0,0x8,0x8,0x5,0x0, 0x13,0x11,0xe,0x0,0x14,0x12,0x10,0x0,0x12,0x11,0xc,0x0,0x6,0x8,0x3,0x0, 0xf7,0xf7,0xf9,0x0,0xf9,0xf7,0xfb,0x0,0x4,0x4,0x2,0x0,0x6,0x7,0x6,0x0, 0xfb,0xf8,0xf8,0x0,0xf2,0xf2,0xf7,0x0,0xf9,0x5,0xc,0xe3,0xf0,0xef,0xff,0x9f, 0xf0,0xf0,0xff,0xff,0xf0,0xf0,0xff,0x0,0xf0,0xf0,0xff,0x0,0xf0,0xf0,0xff,0x0, 0xf0,0xf0,0xff,0x0,0xf0,0xf0,0xff,0x0,0xf0,0xf0,0xff,0x0,0xf2,0xf6,0x4,0x0, 0xdf,0xbc,0xd6,0x0,0x24,0x51,0x38,0x0,0x9,0x16,0xf,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x80,0x80,0x80,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0xfe,0xf7, 0x0,0x3,0x2,0x8,0x1b,0xf8,0xfb,0xe9,0x84,0xdb,0xe6,0x8a,0x30,0xee,0xf3,0xd1, 0x5,0x8,0x5,0x1,0x0,0x3,0x2,0x3,0x0,0xfe,0xff,0xff,0x0,0x1,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x1,0x1,0x1,0x0,0x1,0x1,0x0,0x0,0x1,0x0,0x0, 0x0,0x1,0x1,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x1,0x0,0x0,0x3,0x4,0x1, 0x0,0xfd,0xfa,0xfb,0x0,0xfc,0xf7,0xfd,0x25,0x7,0x19,0x3,0x99,0x15,0x15,0x36, 0xa8,0xfe,0xf0,0xa,0x43,0xee,0xda,0xe0,0x16,0xfd,0xf8,0xfa,0x0,0x3,0x6,0x5, 0x0,0x1,0xff,0xfe,0x0,0x0,0x1,0x3,0x0,0x1,0x0,0x1,0x0,0x0,0x0,0xff, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x1,0x1,0xff,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x0,0x1,0x1,0x1,0x0,0x1,0x1,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xff,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x1,0x1,0x2, 0x0,0x3,0x3,0x2,0x0,0x4,0x2,0x2,0x0,0xfe,0xfe,0xff,0x0,0xf8,0xf7,0xf9, 0x0,0xf1,0xf0,0xf5,0x0,0xee,0xef,0xf1,0x0,0xf5,0xf7,0xf8,0x0,0x1,0x2,0x1, 0x0,0x6,0x6,0x4,0x0,0x1,0x2,0x1,0x0,0x5,0x4,0x4,0x0,0xe,0xc,0x8, 0x0,0x14,0x12,0xf,0x0,0xc,0xe,0xb,0x0,0xfc,0xfe,0xfe,0x0,0xf7,0xf7,0xfa, 0x0,0x2,0x1,0x0,0x0,0x1,0x0,0x2,0x0,0xfa,0xfb,0xfc,0x0,0xf2,0xf4,0xf7, 0x0,0xec,0xed,0xf2,0x0,0xf1,0xf0,0xf4,0x0,0x3,0x3,0x2,0x0,0x10,0xf,0xb, 0x0,0xd,0xf,0xa,0x0,0x13,0x12,0xd,0x0,0xb,0xb,0x9,0x0,0xfa,0xfa,0xfc, 0x0,0xf6,0xf6,0xf9,0x0,0xff,0x1,0x1,0x0,0x2,0xfe,0x0,0x0,0x2,0x1,0x0, 0x0,0x7,0x12,0xf,0xe3,0x0,0xfe,0x1,0x9f,0x0,0xff,0x1,0xff,0x0,0xff,0x1, 0x0,0x0,0xff,0x1,0x0,0x0,0xff,0x1,0x0,0x0,0xff,0x1,0x0,0x0,0xff,0x1, 0x0,0x0,0xff,0x1,0x0,0x0,0xfe,0x1,0x0,0x1,0x5,0x6,0x0,0xfd,0xf8,0xfa, 0x0,0x1a,0x39,0x26,0x0,0x2,0x6,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x3,0x80,0x80,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xef,0xf3,0xca,0x0,0xfb,0xfc,0xef,0x1c,0xf4,0xf7, 0xd9,0x7d,0xe2,0xed,0xa8,0x12,0x1,0x0,0xf5,0x0,0x3,0x2,0x3,0x0,0xff,0x0, 0x1,0x0,0x1,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0xfe,0x0,0xfd,0xff, 0xf5,0xfe,0xe,0xa,0x2b,0x2f,0xf,0xf9,0x43,0x9f,0x10,0x1d,0x20,0x42,0xed,0xd7, 0xe0,0x25,0xf2,0xdd,0xeb,0x0,0x5,0x8,0x7,0x0,0xff,0x3,0xff,0x0,0x0,0x0, 0x1,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x0,0x0,0x3,0x3,0x2,0x0,0x4,0x3,0x3,0x0,0x2,0x0,0x0,0x0,0xf8,0xf9, 0xfb,0x0,0xef,0xf1,0xf7,0x0,0xf0,0xf0,0xf4,0x0,0xf7,0xf8,0xfa,0x0,0x6,0x5, 0x4,0x0,0x7,0x7,0x6,0x0,0xfe,0xfe,0x0,0x0,0x2,0x2,0x3,0x0,0xd,0xd, 0x9,0x0,0x12,0x12,0xd,0x0,0x8,0x9,0x6,0x0,0xfb,0xfa,0xfb,0x0,0xf6,0xf8, 0xfb,0x0,0x1,0x1,0x2,0x0,0x5,0x3,0x2,0x0,0xff,0xfe,0xfe,0x0,0xf3,0xf1, 0xf7,0x0,0xee,0xee,0xf4,0x0,0xf7,0xfa,0xf8,0x0,0x5,0x6,0x1,0x0,0xe,0xb, 0xa,0x0,0xf,0xf,0xe,0x0,0xf,0x12,0xb,0x0,0x5,0x5,0x3,0x0,0xf7,0xf7, 0xf9,0x0,0xf7,0xf3,0xf8,0x0,0x1,0x2,0x2,0x0,0xc,0x17,0xc,0xe3,0x2,0x2, 0xfe,0x9f,0x2,0x2,0xff,0xff,0x2,0x2,0xff,0x0,0x2,0x2,0xff,0x0,0x2,0x2, 0xff,0x0,0x2,0x2,0xff,0x0,0x2,0x2,0xff,0x0,0x2,0x2,0xff,0x0,0x2,0x2, 0xff,0x0,0x4,0x7,0x2,0x0,0xec,0xce,0xde,0x0,0x30,0x6e,0x49,0x0,0x1,0x3, 0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x80,0x80,0x80,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe5, 0xec,0xa7,0x0,0xf8,0xfb,0xe6,0x10,0xf4,0xf8,0xdb,0x52,0xed,0xf3,0xcb,0x15,0x2, 0x1,0xf9,0x0,0x2,0x1,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x0,0x0,0x0, 0x1,0x1,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x3,0x2,0x7,0x2,0x13,0x1b,0xfc, 0x3,0xe7,0xae,0xd,0xd,0x24,0xc0,0xf6,0xdd,0xfe,0x32,0xec,0xd3,0xdd,0x19,0x1, 0x1,0x1,0x0,0x3,0x6,0x5,0x0,0x1,0x0,0x0,0x0,0xff,0x0,0xff,0x0,0x1, 0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x2,0x2,0x0,0x3,0x3,0x4,0x0,0x0,0x0,0x1,0x0,0xf9, 0xf8,0xfc,0x0,0xf0,0xf0,0xf4,0x0,0xf1,0xf1,0xf5,0x0,0x1,0x0,0x0,0x0,0xa, 0xa,0x8,0x0,0x5,0x5,0x4,0x0,0x0,0x0,0x1,0x0,0x4,0x3,0x2,0x0,0xe, 0xe,0xa,0x0,0x12,0x11,0xf,0x0,0x3,0x3,0x3,0x0,0xf4,0xf3,0xf6,0x0,0xf9, 0xf8,0xf9,0x0,0x3,0x4,0x3,0x0,0x3,0x4,0x3,0x0,0xf9,0xfa,0xfb,0x0,0xee, 0xf0,0xf5,0x0,0xef,0xf0,0xf4,0x0,0xfc,0xfc,0xfe,0x0,0xc,0xc,0x8,0x0,0x11, 0x10,0xc,0x0,0x11,0xf,0xc,0x0,0xe,0xf,0xb,0x0,0xf8,0xf7,0xf8,0x0,0xf4, 0xf3,0xf7,0x0,0x3,0xf,0xc,0xe3,0xfd,0xfd,0x0,0x9f,0xfd,0xfd,0x0,0xff,0xfd, 0xfd,0x0,0x0,0xfd,0xfd,0x0,0x0,0xfd,0xfd,0x0,0x0,0xfd,0xfd,0x0,0x0,0xfd, 0xfd,0x0,0x0,0xfd,0xfd,0x0,0x0,0xfd,0xfd,0x0,0x0,0xfd,0xfd,0x0,0x0,0xff, 0x2,0x2,0x0,0xf0,0xde,0xeb,0x0,0x20,0x48,0x2f,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0xf8,0xda,0x0,0x1,0x1,0x3,0x0, 0xfa,0xfc,0xee,0x0,0x2,0x0,0xfd,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x1,0x0,0x0,0xff,0x1,0xfe,0x0,0x2,0x1,0x0,0x0, 0xfe,0xff,0xff,0x0,0xf9,0xfc,0xe6,0xfd,0xfe,0x8,0xef,0xfe,0x10,0xfa,0x45,0xca, 0xb,0x19,0x14,0xe3,0xb,0x1b,0x10,0x32,0xf7,0xe5,0xf2,0x0,0x4,0x8,0x6,0x0, 0x0,0x1,0xff,0x0,0x1,0x1,0xff,0x0,0x0,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0xff,0x0,0x4,0x3,0xff,0x0,0xff,0x2,0x1,0x0,0xfd,0xfd,0xff,0x0, 0xec,0xec,0xf2,0x0,0xf6,0xf6,0xf7,0x0,0xe9,0xeb,0xef,0x0,0x15,0x17,0x12,0x0, 0x17,0x15,0xf,0x0,0xf,0xc,0xa,0x0,0x4,0x3,0x6,0x0,0x7,0x5,0x5,0x0, 0x9,0x9,0x6,0x0,0xd,0xe,0x8,0x0,0xe5,0xe5,0xed,0x0,0xee,0xee,0xf2,0x0, 0xf8,0xf9,0xfb,0x0,0x4,0x3,0x2,0x0,0x0,0xfc,0xfd,0x0,0xed,0xeb,0xf3,0x0, 0xf4,0xf2,0xf8,0x0,0xed,0xef,0xf1,0x0,0x1f,0x1e,0x17,0x0,0x16,0x13,0xe,0x0, 0x20,0x1e,0x17,0x0,0xa,0x4,0x5,0x0,0xde,0xdf,0xe9,0x0,0xf8,0x11,0x8,0x0, 0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xfc,0xfe,0x0,0xfc,0xdf,0xea,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xfa,0xfd,0xf1,0x0,0x1,0x1,0x2,0x0,0xfc,0xfd,0xf4,0x0,0x0,0xff,0xfe, 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x0,0x0,0xff,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0xfd,0xff,0xfa, 0x0,0x2,0xfc,0x4,0x0,0xfc,0xe2,0x12,0x1,0x10,0x22,0x2,0x4,0x9,0x14,0xe, 0x0,0xf6,0xe1,0xef,0x0,0xff,0xff,0xfe,0x0,0x0,0x2,0x1,0x0,0x0,0xfe,0x1, 0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xfe,0x0,0x3,0x4,0x2,0x0,0xff,0xfe,0x3,0x0,0xf6,0xf5,0xfb, 0x0,0xe2,0xf6,0xea,0x0,0xe7,0xe7,0xef,0x0,0x16,0x16,0x10,0x0,0x22,0x21,0x1a, 0x0,0x15,0x14,0xf,0x0,0x5,0x5,0x2,0x0,0xc,0xc,0x8,0x0,0x24,0x23,0x19, 0x0,0x18,0x15,0x11,0x0,0xe9,0xe9,0xee,0x0,0xe0,0xe3,0xe9,0x0,0xed,0xed,0xf3, 0x0,0xfc,0xfd,0xff,0x0,0x3,0x5,0x4,0x0,0xf8,0xf8,0xf8,0x0,0xe1,0xde,0xea, 0x0,0xec,0xeb,0xf3,0x0,0x19,0x18,0x12,0x0,0x1f,0x20,0x16,0x0,0x17,0x13,0x13, 0x0,0xd,0xf,0xd,0x0,0xf1,0xa,0xeb,0x0,0x1,0xff,0x1,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xff,0xfb,0xfc,0x0,0xee,0xa3,0xb6,0x0,0x12,0x5d,0x4a, 0x0,0x0,0xff,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x3,0xc,0x0,0x1,0x1, 0x3,0x0,0xfe,0xfe,0xfb,0x0,0xff,0x1,0x2,0x0,0x1,0x1,0x0,0x0,0xff,0x0, 0x0,0x0,0x1,0x0,0xff,0x0,0xff,0xff,0x1,0x0,0x0,0x1,0x0,0x0,0x1,0x1, 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x1,0x0,0x0,0xff,0x0,0x0,0x0,0x1,0x0, 0x1,0x0,0x1,0x1,0xff,0x0,0x0,0x0,0x2,0x0,0xff,0x0,0x3,0x0,0x8,0xb, 0xf,0x1,0xfe,0xff,0x3,0x0,0x4,0x6,0x6,0x0,0xfe,0xff,0xff,0x0,0xfe,0x0, 0xfe,0x0,0x2,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xfe,0x1,0x0,0x1,0x0, 0xff,0x0,0x1,0x2,0x2,0x0,0x2,0x5,0x4,0x0,0xfd,0xfd,0xfe,0x0,0xf9,0xf7, 0xfb,0x0,0xe3,0xe3,0xeb,0x0,0xf1,0xf2,0xf7,0x0,0x1b,0x1a,0x13,0x0,0x19,0x19, 0x12,0x0,0x12,0x11,0xd,0x0,0xa,0x9,0x6,0x0,0x7,0x13,0x5,0x0,0xd,0xd, 0x7,0x0,0x11,0x12,0xc,0x0,0xdd,0xdf,0xe9,0x0,0xe4,0xe6,0xec,0x0,0xf8,0xf7, 0xf9,0x0,0x3,0x2,0x3,0x0,0xff,0x0,0x0,0x0,0xf1,0xf1,0xf5,0x0,0xf4,0xf5, 0xf8,0x0,0xec,0xee,0xf0,0x0,0x22,0x1d,0x1f,0x0,0x22,0x1f,0x14,0x0,0xf,0xd, 0xff,0x0,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xf9, 0xfc,0x0,0x3,0xf6,0xf1,0x0,0xff,0xfc,0xfd,0x0,0x1,0x3,0x3,0x0,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xa,0x7,0x20,0x0,0x1,0x1,0x4,0x0,0x2,0x2,0x9,0x1,0xff, 0x0,0x3,0x0,0xff,0x0,0x0,0x0,0x1,0x0,0xff,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, 0x0,0xff,0x0,0x1,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5, 0x5,0x13,0x0,0x6,0x6,0x12,0x0,0x2,0x6,0x1,0xff,0xfd,0xfe,0xfc,0x0,0xff, 0x2,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0xff,0x1,0x0,0x0,0xff,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0xff,0x0,0x0,0xff,0x1,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xff,0x0,0x4,0x4,0x1,0x0,0x5,0x5,0x6,0x0,0xfc,0xfb,0xfd,0x0,0xf0, 0xef,0xf3,0x0,0xf4,0xf2,0xf5,0x0,0xeb,0xea,0xf0,0x0,0x1d,0x1d,0x15,0x0,0x1b, 0x1b,0x14,0x0,0xd,0xc,0x9,0x0,0x4,0x6,0x4,0x0,0x19,0x18,0x12,0x0,0xb, 0xa,0x9,0x0,0x10,0x11,0xb,0x0,0xe5,0xe3,0xec,0x0,0xec,0xec,0xf3,0x0,0xfc, 0xfe,0xfd,0x0,0x5,0x5,0x3,0x0,0xff,0xfc,0xfe,0x0,0xeb,0xe9,0xef,0x0,0xf4, 0xee,0xfa,0x0,0xf2,0xf1,0xf3,0x0,0x14,0x0,0x3,0x0,0xff,0xfe,0xff,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfb,0xde,0xce,0x0,0x1e, 0x15,0x19,0x0,0x16,0x52,0x40,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0xa,0x3a,0x0, 0x2,0x1,0x6,0x3,0xf5,0xfa,0xe0,0x7,0x4,0x3,0xb0,0x0,0xfd,0xfc,0xf2,0x0, 0x1,0x4,0x0,0x0,0xff,0xfe,0x1,0x0,0x1,0x1,0xff,0x0,0x0,0xff,0x0,0x0, 0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xff,0x1,0x0,0x1,0xff,0xff,0x0, 0xfd,0x0,0xfd,0x0,0xfe,0xff,0x6,0x0,0xe,0x9,0x2c,0x0,0xd,0xb,0x22,0x0, 0x12,0x24,0x10,0xff,0xe6,0xb3,0xe8,0xfc,0xfd,0xf7,0xf8,0x0,0x1,0x2,0x0,0x0, 0x1,0x0,0x1,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0, 0x0,0x1,0x0,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0x0,0x0, 0xff,0xff,0xff,0x0,0x3,0x3,0x2,0x0,0xa,0x3,0x6,0x0,0xfb,0xfc,0xfc,0x0, 0xea,0xea,0xef,0x0,0xf2,0xf2,0xf5,0x0,0xee,0xef,0xf4,0x0,0x1f,0x1d,0x16,0x0, 0x11,0x12,0xa,0x0,0x8,0x7,0x7,0x0,0xc,0xd,0x9,0x0,0x28,0x24,0x1b,0x0, 0x16,0x12,0x10,0x0,0xe0,0xe2,0xea,0x0,0xe2,0xe4,0xe9,0x0,0xf8,0xf6,0xfa,0x0, 0x2,0x2,0x2,0x0,0x7,0x6,0x8,0x0,0xf7,0xf3,0xf7,0x0,0xd9,0xdb,0xe2,0x0, 0xf0,0xa,0x1a,0x0,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xfa,0xf3,0xfc,0x0,0xff,0xd4,0xeb,0x0,0x11,0x46,0xf8,0x0, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xe,0x8,0x29,0x0,0x1,0x1,0x6,0xf1,0x4,0x1,0xc, 0xbe,0xf,0xa,0x28,0x5a,0xec,0xf0,0xe9,0x9,0xff,0xfd,0xfe,0x0,0x1,0x2,0x2, 0x0,0xff,0x0,0xff,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xff,0x0,0x1,0x0,0xff, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x0,0xff,0x0,0x0,0x1,0xff,0x0,0xfd,0xfc,0x0,0x0,0x3,0x1,0x8, 0x0,0x14,0xd,0x3d,0x3,0x11,0xb,0x32,0x2,0x4,0x1,0xb,0x37,0xfa,0xf7,0xf5, 0x1d,0xf7,0xe9,0xf1,0x0,0x2,0x4,0x3,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x0,0x0,0x1,0x1, 0x0,0x0,0x0,0x0,0x0,0x4,0x4,0x4,0x0,0x4,0x4,0x4,0x0,0xfa,0xfa,0xfc, 0x0,0xe1,0xe0,0xe9,0x0,0xee,0xed,0xf3,0x0,0x14,0x15,0xe,0x0,0x1a,0x1b,0x12, 0x0,0x18,0x17,0x12,0x0,0x9,0x7,0x4,0x0,0x15,0x14,0xc,0x0,0xa,0xc,0x7, 0x0,0x13,0x13,0xc,0x0,0xe0,0xe0,0xea,0x0,0xea,0xec,0xf1,0x0,0xfd,0xfd,0xfe, 0x0,0x3,0x3,0xff,0x0,0x1,0x1,0xfd,0x0,0xf9,0xf9,0x0,0x0,0xff,0xff,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xa, 0x0,0xcf,0x97,0xbd,0x0,0x1c,0x44,0x2f,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfb,0xfd, 0xf1,0x0,0x0,0x0,0x1,0xe8,0x3,0x3,0x8,0x79,0x1c,0x12,0x59,0x4b,0xef,0xf5, 0xd0,0x9,0xfa,0xfb,0xf1,0x0,0x6,0x2,0xfe,0x0,0x1,0x1,0x1,0x0,0xff,0xff, 0xfe,0x0,0xff,0x0,0x1,0x0,0x1,0xff,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x0,0x2,0x0,0xfd,0x0, 0xfb,0x0,0xfa,0xfd,0x0,0x0,0x1b,0x10,0x34,0x0,0x11,0xc,0x39,0xd2,0xe,0x8, 0x26,0xdc,0xfe,0xfc,0xff,0xa2,0xed,0xd4,0xe0,0x32,0xf7,0xea,0xf5,0x0,0x3,0x3, 0x5,0x0,0x1,0x2,0x3,0x0,0xff,0xfe,0xfe,0x0,0x2,0xff,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x0,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x0,0x1,0x1,0x0,0x0,0x6,0x5,0x3,0x0,0xfd,0xff,0xff,0x0,0xf5,0xf5, 0xf7,0x0,0xf2,0xf4,0xf6,0x0,0xec,0xeb,0xf0,0x0,0xf3,0x22,0xf7,0x0,0x1e,0x1e, 0x15,0x0,0xd,0xa,0x8,0x0,0xa,0x8,0x6,0x0,0x1d,0x1d,0x16,0x0,0xf,0xf, 0xa,0x0,0xe5,0xe4,0xec,0x0,0xe2,0xe5,0xec,0x0,0xeb,0xe7,0xf8,0x0,0x2,0xff, 0x1,0x0,0x3,0x2,0xfd,0x0,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x13,0x8,0x0,0xe6,0xc5, 0xd6,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x4,0xe,0x0,0xff,0xff,0xfe,0x0,0x4, 0x4,0xb,0x0,0x18,0x7,0x4b,0xbe,0xf1,0xf8,0xd4,0x5a,0xdd,0xe6,0x98,0x0,0xf9, 0xfb,0xfc,0x0,0x7,0x5,0x3,0x0,0x1,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, 0x0,0xff,0x0,0xfd,0xfe,0xfb,0x0,0xfe,0xfe,0x1,0x0,0x11,0xa,0x28,0x0,0x1e, 0x1d,0x55,0xcd,0xb,0xa,0x1a,0x5e,0x0,0x0,0x0,0x1c,0xf2,0xe0,0xea,0x1e,0xe8, 0xc9,0xdc,0x0,0xfd,0xfa,0xfc,0x0,0x6,0x11,0x9,0x0,0x1,0xff,0xff,0x0,0x0, 0x0,0x0,0x0,0xff,0x2,0x0,0x0,0x1,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x0,0x0, 0x1,0x0,0x0,0x2,0x1,0x0,0x0,0x2,0x2,0x2,0x0,0x2,0xff,0x0,0x0,0xf5, 0xf4,0xf8,0x0,0xd7,0xd6,0xe2,0x0,0xec,0xec,0xf1,0x0,0x1f,0x1f,0x16,0x0,0x18, 0x17,0x12,0x0,0xa,0xa,0x8,0x0,0x11,0xf,0xc,0x0,0xb,0x8,0x6,0x0,0x15, 0x16,0x11,0x0,0xd7,0x7,0xe1,0x0,0xe6,0xe6,0xec,0x0,0xfa,0xfa,0xfe,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x7,0x7,0x0,0xcd,0x8f,0xb6,0x0,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x5,0x5,0xe,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xec,0x3,0x0,0x5,0x71, 0x22,0x15,0x69,0x12,0xff,0xfc,0xf9,0x48,0xe4,0xee,0xaf,0x0,0xf8,0xfb,0xec,0x0, 0x2,0x2,0x0,0x0,0x4,0x1,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xff,0x1,0x1,0x0,0xff,0xfe,0xff,0x0,0xfe,0xfe,0x0,0x0,0x5,0x3,0x7,0x0, 0x1,0x4,0x0,0xd4,0x16,0x14,0x3c,0xde,0x3,0xed,0x24,0x89,0xf5,0xf1,0xf8,0xd6, 0xc,0x1e,0xa,0xb3,0xe1,0xb6,0xce,0x2b,0xed,0xce,0xe1,0x0,0x3,0x7,0x4,0x0, 0x2,0x6,0x1,0x0,0xfe,0xfc,0xff,0x0,0x1,0x1,0xff,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x0,0xfe,0xfe,0xfe,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x0,0xff,0xff,0xff,0x0,0x1,0x1,0x2,0x0,0x0,0x1,0xfe,0x0, 0xfe,0x0,0x0,0x0,0x3,0x1,0x2,0x0,0x2,0x5,0x0,0x0,0xfc,0xfb,0xfc,0x0, 0xe8,0xe6,0xed,0x0,0xf1,0xf0,0xf5,0x0,0xeb,0x1a,0xf0,0x0,0x20,0x20,0x19,0x0, 0x15,0x13,0xf,0x0,0x7,0x8,0x8,0x0,0x19,0xc,0xa,0x0,0x8,0x3,0x5,0x0, 0x11,0xe,0xb,0x0,0xf3,0xd,0x2,0x0,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x10,0xd,0x7,0x0,0x1,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf9,0xfa,0xea,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xfe,0xff,0xfd,0x0,0x1,0x0,0x6,0x25,0xfb,0xfc,0xeb, 0x8d,0xd7,0xe5,0x83,0x27,0xee,0xf6,0xcf,0x25,0xfd,0xfb,0xf0,0x1,0xfa,0xfc,0xe7, 0x0,0x4,0x3,0x7,0x0,0x1,0x0,0x4,0x0,0xf9,0xfd,0xf5,0x0,0x4,0x4,0xd, 0x0,0x9,0x4,0x19,0x0,0xff,0xfe,0xfb,0xdc,0xf5,0xff,0xdf,0x5e,0x41,0x26,0xc8, 0xdb,0xf8,0xd6,0x13,0xec,0xfa,0xef,0xfb,0x1f,0xfd,0x0,0xf4,0xbe,0xcd,0x82,0xb0, 0x22,0xeb,0xc9,0xdf,0x0,0x8,0x12,0xa,0x0,0x0,0x3,0x1,0x0,0x0,0xfe,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0xff,0x0,0xff,0x0,0x1,0x1,0x0, 0x0,0x0,0x0,0xff,0x0,0x0,0xfe,0x0,0x0,0xfe,0xfe,0xff,0x0,0xfc,0xfe,0xff, 0x0,0x0,0x0,0xff,0x0,0x13,0x15,0xe,0x0,0x21,0x21,0x19,0x0,0x15,0x13,0xf, 0x0,0xd,0xe,0x8,0x0,0x9,0x0,0x7,0x0,0xf6,0xf9,0xf8,0x0,0xee,0xb,0xee, 0xc6,0x0,0xff,0x1,0x3e,0x0,0x0,0x0,0xfd,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x0,0x0,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xff,0x0,0x0,0x0,0xff,0xdb,0x5,0x4,0x11,0x66,0xa,0x6,0x1e,0x15,0x18,0x11, 0x4d,0x8e,0xf5,0xf7,0xd9,0x30,0xef,0xf7,0xd1,0x14,0xf8,0xf9,0xdd,0xec,0x1,0x1, 0xfc,0xf5,0x12,0x7,0x1a,0x1d,0x4,0x3,0xf,0xf3,0x10,0x11,0x34,0xe0,0xf,0x0, 0x30,0x78,0xf7,0xe3,0xf9,0xc7,0x11,0x6,0x37,0xa,0xed,0xc,0xe6,0x29,0xf1,0xe0, 0xdd,0x84,0xd5,0x98,0xbc,0x1c,0xec,0xca,0xde,0x0,0x6,0xe,0x9,0x0,0x1,0x4, 0x2,0x0,0xff,0xfd,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x0,0x0,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x1, 0x0,0x0,0x2,0x3,0x1,0x0,0x5,0x3,0x0,0x0,0xfc,0xfd,0xff,0x0,0xeb,0xea, 0xf3,0x0,0xf1,0xf1,0xf6,0x0,0x14,0x12,0xc,0x0,0x1e,0x1f,0x15,0x0,0x1c,0x15, 0x18,0x0,0x9,0xc,0x9,0x0,0xe,0xe,0x2,0x0,0x0,0xff,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x0,0xfe, 0xff,0xfa,0xe8,0x0,0x0,0x0,0xe8,0xa,0x4,0x1b,0x5c,0x0,0x8,0xfc,0x1e,0x1d, 0x16,0x5f,0x97,0xda,0xe6,0x7e,0x89,0xf3,0xf4,0xd5,0xcb,0x29,0x16,0x8c,0xaa,0xeb, 0xf9,0xb7,0x82,0x4,0xe9,0x20,0xce,0xd,0x5,0x3f,0xed,0x9,0x6,0xfb,0x12,0xf8, 0xf9,0xf6,0xa5,0xf8,0xf1,0xf0,0x2c,0xd6,0x9b,0xbd,0x1b,0xe6,0xc3,0xd7,0x1,0x6, 0xa,0xa,0x0,0x3,0x7,0x4,0x0,0xff,0xfd,0xff,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xff,0x0,0x4,0x3,0x1,0x0,0x3,0x2,0x3,0x0,0xfc,0xfb,0xfe,0x0,0xe7, 0xe6,0xf0,0x0,0xec,0xee,0xf3,0x0,0xee,0x1a,0xf8,0x0,0x23,0x24,0x19,0x0,0x4, 0xd,0xfa,0x0,0xff,0xfe,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xf9,0xfa,0xea,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xfe,0xff,0xfc,0x0,0x1,0x0,0x5,0x0,0xfe,0xff,0xf8,0x0,0xde,0xe8,0x95,0x0, 0x16,0xe,0x45,0x0,0x9,0x9,0x1b,0x0,0x5,0x4,0x11,0x12,0x0,0xf9,0x7,0xf0, 0xea,0xd3,0xd9,0xfe,0xfc,0xe9,0x3,0x12,0xfe,0x0,0xf8,0xee,0xfd,0xf5,0xfc,0xb, 0x19,0x38,0x2a,0xa5,0xfe,0xff,0xfd,0x39,0xe0,0xb9,0xd1,0x16,0xdb,0xa6,0xc4,0x0, 0xeb,0xcc,0xdf,0x0,0x4,0x9,0x6,0x0,0x4,0x6,0x4,0x0,0x0,0xff,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xfe,0x0,0x0,0x0,0x0,0x1,0x0, 0x0,0x2,0xff,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xfb,0xfc,0xfb,0x0, 0x1,0xf9,0x2,0x0,0x15,0x17,0x12,0x0,0x17,0x32,0xa,0xc6,0xff,0xff,0xff,0x3e, 0x0,0x0,0x0,0xfd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xff,0x0,0xfe,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x9, 0x0,0xff,0xff,0xfc,0x0,0x5,0x2,0x16,0xa6,0x2,0xfb,0x10,0x39,0xf9,0xf1,0xe8, 0xf1,0x4,0x4,0x5,0x4,0xfc,0xf3,0xfd,0x5,0xd6,0x9e,0xbb,0x1e,0xea,0xcf,0xdf, 0x6,0xea,0xd1,0xe5,0x0,0xfb,0xed,0xf4,0x0,0x5,0x9,0x6,0x0,0x2,0x6,0x5, 0x0,0x0,0xff,0x0,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0x0,0xff, 0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0xff,0xff,0xfe,0x0,0x0,0xff,0xff, 0x0,0x2,0x1,0x1,0x0,0x7,0x6,0x6,0x0,0xf9,0xfa,0xf9,0x0,0xeb,0xec,0xee, 0x0,0xfe,0xe5,0x8,0x0,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x1,0x0,0x3,0x0,0x5,0x3, 0x10,0x0,0x7,0x3,0x18,0x0,0x8,0x1,0x1e,0x0,0x0,0x2,0xfe,0x9,0xf8,0xf3, 0xf0,0x24,0xdc,0xb0,0xc5,0x1e,0xe2,0xb6,0xce,0x0,0x6,0x7,0xa,0x0,0xfb,0xfa, 0xfd,0x0,0xf8,0xec,0xf1,0x0,0xfe,0xf4,0xfa,0x0,0xfe,0x0,0xfe,0x0,0x5,0x9, 0x6,0x0,0x2,0x5,0x4,0x0,0x0,0xff,0xff,0x0,0xff,0x1,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0xff, 0xff,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x1, 0x2,0x0,0x3,0x3,0x1,0x0,0xff,0xff,0xfd,0x0,0xfe,0xfc,0xff,0x0,0xff,0xff, 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x0,0xff, 0xff,0x0,0x0,0x6,0x3,0x14,0x0,0x26,0x16,0x7a,0x0,0xff,0x0,0xfb,0x0,0xfe, 0xff,0xfa,0x0,0x2,0x1,0x4,0xfe,0xfe,0xfd,0xfe,0xfc,0xf4,0xe3,0xed,0x0,0xec, 0xd9,0xe0,0x0,0x6,0x0,0xb,0x0,0x3,0x7,0x5,0x0,0x1,0x1,0x2,0x0,0x4, 0x6,0x4,0x0,0x5,0x6,0x2,0x0,0x1,0x2,0x2,0x0,0xff,0xfe,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x0,0x1,0x0,0x0,0x0,0x1, 0x1,0x2,0x0,0x2,0x2,0xff,0x0,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xff,0x0,0x3,0x0,0xa,0x0,0x0,0x1,0x4,0x0,0xff,0xfe,0xfe,0x0, 0xff,0x0,0xfa,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x1,0x0,0x0, 0x0,0x3,0x2,0x0,0x6,0x9,0x7,0x0,0x6,0x1,0xb,0x0,0x6,0xd,0x9,0x0, 0x5,0x9,0x6,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0xff,0x0,0x0,0x0, 0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xff,0x1,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x2,0xff,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe, 0x0,0x0,0x0,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x1, 0x0,0x0,0x1,0x1,0x0,0x1,0x1,0x1,0x0,0x0,0x0,0x1,0x0,0xff,0xfe,0xfe, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xff,0x1,0x0, 0x0,0x0,0xff,0x0,0xff,0x0,0xff,0x0,0x0,0x0,0x1,0x0,0xff,0x0,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x0, 0x0,0x0,0xff,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x0,0xff,0x0,0x1,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0xff,0x0, 0x1,0x1,0x0,0x0,0x0,0x1,0x1,0x0,0xff,0x0,0x1,0x0,0x0,0x1,0x0,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xff,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xff,0x0,0xff,0x0,0xff,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff, 0x0,0xff,0x0,0xff,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x0,0xfe, 0x0,0xff,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xff,0x1,0x0,0x0,0xff,0x0,0x1, 0x0,0x1,0xfe,0x0,0x0,0x0,0x1,0xff,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x1, 0x0,0xff,0xff,0x1,0x0,0x1,0x2,0x0,0x0,0xff,0xff,0xff,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x0,0xff,0x0,0xff,0x1,0x0, 0x0,0xff,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0x0,0xff,0x1,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0x1,0x0,0x0,0x1,0x0, 0x0,0x0,0x1,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0xff,0xff,0x0,0x0,0x0,0x1, 0x0,0xff,0x1,0x0,0x0,0x0,0xff,0x0,0x0,0x1,0x0,0x1,0x0,0x0,0xff,0x1, 0x0,0xff,0x1,0x0,0x0,0xff,0x1,0x1,0x0,0x1,0x0,0x0,0x0,0xff,0xff,0xff, 0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x1,0x0,0x0,0xff,0x0, 0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x1,0x1,0x0,0x0,0xff,0x0, 0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x1,0xff, 0x0,0x1,0xff,0x1,0x0,0x0,0x0,0x0,0x0,0xff,0x0,0x1,0x0,0xff,0xff,0x1, 0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x0,0xfe,0x0,0x0,0x1,0xff, 0x0,0x1,0xfe,0x2,0x0,0x0,0x0,0x1,0x0,0xff,0x2,0xff,0x0,0x3,0x1,0x1, 0x0,0xfc,0xfe,0xfd,0x0,0xfc,0xff,0xfa,0x0,0xfe,0xfc,0xfd,0x0,0xff,0xff,0xff, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfe,0x0,0xfe,0x2, 0x0,0x0,0x0,0x0,0x2,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0xff,0x0,0x1,0x1, 0x1,0x0,0xff,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x0,0x2,0x0,0x0,0x0,0xff,0x0,0xff,0xff,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xff,0x0,0xff,0x0,0x1,0x0,0xff,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0xff,0x0,0xff,0x0,0xff,0x0, 0x1,0x0,0x2,0x1,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x1,0x0,0x0,0xff, 0x0,0x0,0xff,0x1,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0xff, 0x0,0x0,0x0,0x1,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x0,0xff,0x0,0x0,0x0, 0x1,0x0,0xff,0xff,0x2,0x0,0x1,0x0,0xff,0x0,0x0,0x1,0x0,0x0,0xff,0x0, 0x1,0x0,0x0,0x0,0x0,0x0,0x2,0x1,0x1,0x0,0x0,0x0,0xff,0x0,0x0,0x0, 0xff,0x0,0x1,0xff,0x0,0x0,0xff,0x0,0x1,0x0,0x0,0x1,0x0,0x0,0xff,0x0, 0x0,0x0,0x0,0x2,0x1,0x0,0xfd,0xf7,0xfb,0x0,0xfa,0xf5,0xf8,0x0,0x2,0xe, 0x5,0x0,0x0,0x7,0x3,0x0,0x1,0xfe,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x1,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0xff,0xfe,0xff,0x0,0x0, 0xfd,0xff,0x0,0xfe,0x0,0xff,0x0,0x2,0x1,0x0,0x0,0x1,0xff,0x1,0x0,0x0, 0x0,0xff,0x0,0xfe,0xff,0xfd,0x0,0x1,0xff,0x3,0x0,0xff,0x1,0x2,0x0,0x1, 0x2,0xff,0x0,0x1,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x0,0xfe,0xff,0x0,0x1, 0x1,0xff,0x0,0xff,0x1,0x1,0x0,0x0,0x0,0xff,0x0,0xff,0xfe,0xff,0x0,0x0, 0x1,0x0,0x0,0x2,0x2,0xff,0x0,0xff,0x0,0x1,0x0,0x0,0xff,0x1,0x0,0xff, 0xff,0xfe,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xff,0x1,0xff,0x0,0x0, 0xff,0x0,0x0,0xff,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x1,0xff,0x1,0x0,0xfe, 0xff,0xfe,0x0,0x0,0xff,0x0,0x0,0x0,0x2,0x0,0x0,0xfe,0x0,0xfd,0x0,0x1, 0x0,0x2,0x0,0x2,0xff,0x0,0x0,0x1,0x0,0xff,0x0,0xff,0xff,0x0,0x0,0x0, 0x1,0x1,0x0,0x1,0x1,0x1,0x0,0xff,0x0,0x0,0x0,0x1,0xfd,0xff,0x0,0xff, 0x1,0xff,0x0,0x0,0x2,0x2,0x0,0x1,0x0,0x1,0x0,0xff,0xfe,0xff,0x0,0xff, 0x1,0xff,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xff,0x0,0x0,0x0, 0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x1,0xff,0x1,0x0,0x0, 0xff,0xfe,0x0,0xff,0x1,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0xfe,0x2,0x0,0x0, 0x1,0xff,0x0,0xfe,0x1,0xff,0x0,0xff,0xff,0x1,0x0,0x1,0xf9,0xfd,0x0,0x2, 0x4,0x3,0x0,0x18,0x39,0x28,0x0,0x9,0x1a,0xd,0x0,0xfb,0xf8,0xfb,0x0,0x1, 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x0,0x1,0x0,0xff,0x0, 0xff,0xff,0xfd,0x0,0xfc,0xf9,0xfa,0x0,0xff,0xfd,0xff,0x0,0x0,0x3,0x0,0x0, 0x2,0x7,0x5,0x0,0xff,0xff,0xfe,0x0,0xfd,0xfa,0xfc,0x0,0xff,0xfd,0xfd,0x0, 0xff,0x0,0xfd,0x0,0x2,0x5,0x3,0x0,0x4,0x6,0x3,0x0,0x0,0x2,0x0,0x0, 0xfd,0xfa,0xfd,0x0,0xfe,0xfa,0xfb,0x0,0x5,0x4,0x5,0x0,0x2,0x7,0x3,0x0, 0xfe,0xfd,0xfe,0x0,0xfc,0xf9,0xfb,0x0,0x2,0x3,0x1,0x0,0x2,0x6,0x4,0x0, 0x1,0x1,0x2,0x0,0xfe,0xfd,0xfd,0x0,0xfb,0xfc,0xfb,0x0,0x3,0x4,0x2,0x0, 0x3,0x5,0x4,0x0,0xfe,0xfd,0xff,0x0,0xfd,0xf9,0xfb,0x0,0x3,0x2,0x3,0x0, 0x1,0x7,0x4,0x0,0xfd,0xfd,0xfd,0x0,0xfd,0xfc,0xfc,0x0,0x4,0x4,0x4,0x0, 0x0,0x1,0x1,0x0,0xff,0xfb,0xff,0x0,0xfe,0xfe,0xfc,0x0,0x1,0x5,0x2,0x0, 0x0,0x2,0x1,0x0,0xfb,0xf8,0xfd,0x0,0x2,0xff,0x0,0x0,0x3,0x7,0x4,0x0, 0x0,0x1,0x1,0x0,0xfe,0xfc,0xfc,0x0,0x0,0x2,0x0,0x0,0x2,0x2,0x3,0x0, 0x0,0xff,0x2,0x0,0xfe,0xfc,0xf9,0x0,0xfd,0xfe,0xfc,0x0,0x4,0x5,0x4,0x0, 0x0,0x5,0x2,0x0,0x0,0xff,0xfe,0x0,0xfb,0xfb,0xfc,0x0,0x3,0x1,0x1,0x0, 0x2,0x5,0x3,0x0,0xff,0xff,0xff,0x0,0xfe,0xfb,0xfc,0x0,0x1,0x2,0x1,0x0, 0x0,0xfe,0x0,0x0,0xfd,0xfc,0xfd,0x0,0xff,0x0,0xff,0x0,0x0,0x1,0x1,0x0, 0x2,0x2,0x0,0x0,0xfc,0xf8,0xfa,0x0,0x10,0x2a,0x1a,0x0,0x25,0x5e,0x3a,0x0, 0xfb,0xf1,0xf6,0x0,0xe2,0xbe,0xd4,0x0,0x1,0x2,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1, 0x0,0x1,0xff,0x2,0x0,0xff,0xfb,0x0,0x0,0xfd,0x2,0xff,0x0,0xf,0x20,0x13, 0x0,0xd,0x1b,0x16,0x0,0xf9,0xf0,0xf5,0x0,0xf4,0xe4,0xed,0x0,0xfb,0xf6,0xf8, 0x0,0x7,0x16,0xf,0x0,0xf,0x1d,0x15,0x0,0xfc,0xfb,0xfa,0x0,0xf5,0xe2,0xec, 0x0,0xfb,0xf2,0xf9,0x0,0x1,0x7,0x3,0x0,0x9,0x12,0xc,0x0,0x4,0xc,0x5, 0x0,0xf9,0xef,0xf8,0x0,0xfb,0xf2,0xf6,0x0,0x3,0xb,0x5,0x0,0xf,0x1f,0x16, 0x0,0xfc,0xf5,0xfa,0x0,0xf9,0xeb,0xf4,0x0,0xfe,0x0,0xfc,0x0,0x5,0x10,0xa, 0x0,0xa,0x10,0x11,0x0,0xfa,0xee,0xf5,0x0,0xfb,0xf0,0xfa,0x0,0x5,0xc,0x6, 0x0,0xb,0x1c,0x10,0x0,0xfe,0xf7,0xfd,0x0,0xf7,0xec,0xf3,0x0,0x3,0xd,0x5, 0x0,0x9,0xe,0xf,0x0,0xfc,0xf1,0xf9,0x0,0xfb,0xf4,0xf8,0x0,0x7,0xe,0xa, 0x0,0x3,0xb,0x5,0x0,0xfa,0xf1,0xf8,0x0,0x0,0xff,0xfe,0x0,0xe,0x22,0x11, 0x0,0xfe,0xf5,0xfa,0x0,0xf6,0xea,0xf2,0x0,0x4,0x9,0x6,0x0,0x6,0x1b,0x12, 0x0,0xfd,0xf8,0xf9,0x0,0xfc,0xf0,0xf6,0x0,0x1,0x2,0x2,0x0,0x5,0x14,0xa, 0x0,0xb,0x9,0x6,0x0,0xfa,0xf0,0xf5,0x0,0xfb,0xf6,0xfa,0x0,0x2,0x6,0x6, 0x0,0x9,0x14,0xc,0x0,0xff,0xfb,0xfd,0x0,0xfa,0xee,0xf7,0x0,0x3,0xa,0x5, 0x0,0x9,0x14,0xc,0x0,0xfe,0xfc,0xfe,0x0,0x2,0x7,0x5,0x0,0x7,0xc,0x7, 0x0,0xff,0xfc,0xfc,0x0,0xff,0x3,0x4,0x0,0xfc,0xf4,0xf9,0x0,0xf8,0xec,0xf3, 0x0,0xd,0x1f,0x14,0x0,0xfa,0xf1,0xf3,0x0,0xee,0xd3,0xe6,0x0,0x2,0x0,0x1, 0x0,0x0,0xff,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xfd,0xfb,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x1,0x0,0x0,0xfc,0xf9,0xf9,0x0,0xfe,0xfe, 0xfc,0x0,0x1b,0x3b,0x29,0x0,0x31,0x73,0x4c,0x0,0x17,0x35,0x23,0x0,0xdf,0xb2, 0xcd,0x0,0xcc,0x83,0xb1,0x0,0xb,0x10,0x11,0x0,0x30,0x73,0x4b,0x0,0x1b,0x40, 0x2d,0x0,0xfd,0xff,0xfc,0x0,0xe0,0xb2,0xcd,0x0,0xd3,0x93,0xbb,0x0,0xf4,0xe4, 0xeb,0x0,0x28,0x60,0x3f,0x0,0x25,0x53,0x38,0x0,0xd4,0x99,0xbb,0x0,0xd7,0xa2, 0xc1,0x0,0x20,0x3a,0x2f,0x0,0x33,0x7b,0x53,0x0,0xe7,0xc7,0xd9,0x0,0xce,0x87, 0xb0,0x0,0xfa,0xf1,0xf8,0x0,0x23,0x59,0x3a,0x0,0x29,0x5d,0x3c,0x0,0xd4,0x9a, 0xbd,0x0,0xd6,0x9f,0xbf,0x0,0x22,0x40,0x35,0x0,0x33,0x77,0x4e,0x0,0xe8,0xc6, 0xdb,0x0,0xc7,0x7c,0xa5,0x0,0x1b,0x37,0x2b,0x0,0x2a,0x5e,0x40,0x0,0xdb,0xa7, 0xc6,0x0,0xe0,0xb3,0xcd,0x0,0x1d,0x45,0x2c,0x0,0x1d,0x48,0x2d,0x0,0xd5,0x9a, 0xbe,0x0,0xf9,0xec,0xf5,0x0,0x39,0x86,0x5a,0x0,0xf9,0xf3,0xf5,0x0,0xc7,0x73, 0xa5,0x0,0x1,0x3,0x2,0x0,0x2a,0x68,0x42,0x0,0xed,0xce,0xe0,0x0,0xd8,0xa2, 0xbf,0x0,0x8,0x10,0x10,0x0,0x27,0x55,0x38,0x0,0x1f,0x48,0x2f,0x0,0xd5,0x95, 0xbc,0x0,0xd9,0xac,0xc2,0x0,0x12,0x21,0x1b,0x0,0x2b,0x62,0x3e,0x0,0xf4,0xe4, 0xf1,0x0,0xd1,0x93,0xb7,0x0,0x14,0x20,0x1f,0x0,0x26,0x5d,0x3c,0x0,0xf5,0xe5, 0xf0,0x0,0x1,0x5,0x4,0x0,0x22,0x50,0x34,0x0,0x4,0x4,0x2,0x0,0xfd,0xfe, 0xff,0x0,0xe1,0xb6,0xd0,0x0,0xe9,0xc5,0xd9,0x0,0x28,0x5f,0x40,0x0,0xb,0x1d, 0x13,0x0,0xa,0x15,0x11,0x0,0xfa,0xed,0xf5,0x0,0x0,0x2,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfa,0xf4,0xf8,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2, 0x3,0x3,0x0,0xfc,0xf9,0xfc,0x0,0x17,0x37,0x26,0x0,0x14,0x2e,0x1c,0x0,0x1, 0x0,0x0,0x0,0xd5,0x99,0xbd,0x0,0xeb,0xd2,0xe1,0x0,0x4,0xd,0x6,0x0,0x36, 0x7d,0x51,0x0,0x13,0x2b,0x1f,0x0,0xd8,0xa2,0xc1,0x0,0xf,0x23,0x15,0x0,0x2d, 0x66,0x44,0x0,0xfa,0xed,0xf5,0x0,0xd0,0x90,0xb3,0x0,0x11,0x26,0x1a,0x0,0x18, 0x39,0x26,0x0,0xec,0xd4,0xe2,0x0,0xde,0xb6,0xcd,0x0,0x17,0x3a,0x28,0x0,0x1a, 0x3b,0x28,0x0,0xfe,0xf9,0xfa,0x0,0x3,0xd,0x5,0x0,0xfe,0xf3,0xf6,0x0,0x16, 0x2d,0x1f,0x0,0x19,0x38,0x27,0x0,0xef,0xdc,0xe9,0x0,0xde,0xb2,0xca,0x0,0x17, 0x35,0x21,0x0,0x1a,0x3a,0x28,0x0,0xfc,0xf5,0xfa,0x0,0x0,0xc,0x4,0x0,0x6, 0x11,0x9,0x0,0x16,0x31,0x23,0x0,0xe5,0xbc,0xd6,0x0,0xfc,0x0,0xf9,0x0,0xa, 0x16,0xe,0x0,0x15,0x2f,0x21,0x0,0x5,0xe,0x8,0x0,0xfa,0xf1,0xf8,0x0,0x11, 0x23,0x18,0x0,0x10,0x27,0x19,0x0,0xe7,0xc0,0xd7,0x0,0xe6,0xbf,0xd6,0x0,0x14, 0x22,0x18,0x0,0xfa,0xe5,0xf0,0x0,0xfa,0xff,0xf7,0x0,0x11,0x17,0x1d,0x0,0x1b, 0x3c,0x29,0x0,0x1d,0x40,0x2d,0x0,0xee,0xd1,0xe2,0x0,0xdd,0xb1,0xc7,0x0,0xff, 0x2,0xfd,0x0,0x11,0x29,0x1c,0x0,0x3,0x5,0x7,0x0,0xfd,0x0,0xf9,0x0,0x5, 0x9,0x7,0x0,0x16,0x32,0x24,0x0,0xeb,0xff,0xde,0x0,0xdc,0xae,0xc7,0x0,0xd, 0x1f,0x13,0x0,0x24,0x53,0x36,0x0,0xeb,0xcb,0xdd,0x0,0xe7,0xc4,0xd6,0x0,0x7, 0xf,0xb,0x0,0x18,0x35,0x23,0x0,0xea,0xd2,0xe1,0x0,0xe2,0xb7,0xd2,0x0,0x8, 0x12,0xc,0x0,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x0,0x0,0xfd,0xfa,0xfc,0x0,0xfe,0xfa,0xfc,0x0,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0xff,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xfc,0xfe,0x0,0x7,0xd,0x6,0x0, 0x22,0x52,0x34,0x0,0xf7,0xeb,0xf4,0x0,0xc7,0x76,0xa3,0x0,0xe1,0xc6,0xcf,0x0, 0x4,0xfe,0x8,0x0,0x24,0x4e,0x38,0x0,0x18,0x3e,0x2a,0x0,0xd5,0x95,0xba,0x0, 0xc6,0x90,0xa6,0x0,0x10,0x14,0x1a,0x0,0x12,0x27,0x1d,0x0,0x1d,0x43,0x2c,0x0, 0xe6,0xc0,0xd6,0x0,0x0,0x1,0xff,0x0,0xf6,0xee,0xf0,0x0,0x13,0x2d,0x1c,0x0, 0x1d,0x3f,0x2b,0x0,0xd,0x1f,0x14,0x0,0xfc,0xfa,0xfb,0x0,0x6,0xe,0xa,0x0, 0x5,0xe,0x8,0x0,0x4,0xf0,0xf7,0x0,0x6,0xf,0x8,0x0,0xfc,0xf6,0xf9,0x0, 0x10,0x24,0x15,0x0,0x22,0x4d,0x33,0x0,0x12,0x29,0x1c,0x0,0xfb,0xf7,0xfa,0x0, 0x0,0x2,0xff,0x0,0xd,0x14,0x12,0x0,0x1,0xfd,0x3,0x0,0xfb,0xfa,0xfa,0x0, 0xfd,0xfc,0xfb,0x0,0xfe,0x0,0x0,0x0,0xfd,0xfb,0xff,0x0,0xff,0xfe,0xff,0x0, 0x1,0x2,0x1,0x0,0x1,0x6,0x2,0x0,0xf1,0xe0,0xea,0x0,0x9,0x19,0xf,0x0, 0x28,0x5f,0x3e,0x0,0x2,0x5,0x2,0x0,0xfa,0xf7,0xfb,0x0,0xfb,0xf8,0xf9,0x0, 0x1,0x0,0x0,0x0,0x19,0x3b,0x26,0x0,0x1,0x6,0x2,0x0,0xe8,0xcc,0xdb,0x0, 0x11,0x2c,0x1c,0x0,0x13,0x2b,0x20,0x0,0xf6,0xec,0xef,0x0,0xff,0xfc,0xff,0x0, 0xfd,0xfa,0xfd,0x0,0xfe,0x0,0xfd,0x0,0xfd,0xf9,0xfa,0x0,0x1,0x3,0x1,0x0, 0xff,0xfc,0xff,0x0,0xe1,0xc6,0xcf,0x0,0x1,0x2,0x3,0x0,0x18,0x32,0x21,0x0, 0xe3,0xbb,0xd2,0x0,0xe0,0xbf,0xcb,0x0,0x23,0x45,0x3a,0x0,0x1,0x5,0x3,0x0, 0x7,0x10,0x9,0x0,0x4,0xe,0x8,0x0,0xfd,0xfe,0xfd,0x0,0x1,0x2,0x1,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x0,0xfa,0xf4,0xf8,0x0, 0xd,0x1c,0x13,0x0,0x11,0x24,0x19,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0, 0x0,0x1,0x1,0x0,0x0,0x1,0x1,0x0,0x0,0x1,0x1,0x0,0x0,0x1,0x1,0x0, 0x0,0x1,0x1,0x0,0x0,0x1,0x1,0x0,0x0,0x1,0x1,0x0,0x0,0x1,0x1,0x0, 0x0,0x1,0x0,0x0,0x0,0x2,0x5,0x4,0x0,0xc,0x1b,0x10,0x0,0x1,0x0,0x0, 0x0,0xf4,0xe6,0xef,0x0,0xf8,0xf9,0xf4,0x0,0xfe,0xfb,0xfc,0x0,0x9,0x15,0xe, 0x0,0x4,0x8,0x7,0x0,0xf5,0xe8,0xf0,0x0,0xf7,0xf8,0xf0,0x0,0xf7,0xec,0xf1, 0x0,0xf9,0xf2,0xf7,0x0,0x3,0x5,0x4,0x0,0xe,0x27,0x18,0x0,0x6,0xf,0x9, 0x0,0xe1,0xb4,0xcf,0x0,0x4,0xa,0x8,0x0,0x29,0x64,0x41,0x0,0xff,0x1,0xfe, 0x0,0xe4,0xc2,0xd5,0x0,0xfe,0x0,0x1,0x0,0xd,0x19,0x15,0x0,0xc,0x15,0xf, 0x0,0x6,0x11,0x9,0x0,0xe4,0xc4,0xd4,0x0,0xfd,0xf8,0xfc,0x0,0x2e,0x6a,0x49, 0x0,0x4,0xc,0x8,0x0,0xe2,0xc0,0xd4,0x0,0x0,0x2,0x2,0x0,0xf,0x21,0x18, 0x0,0x1,0x2,0x2,0x0,0x2,0x6,0x3,0x0,0xfc,0xfe,0xfc,0x0,0xf8,0x0,0xf6, 0x0,0x0,0x0,0xff,0x0,0x3,0xb,0x6,0x0,0x1,0x3,0x2,0x0,0x6,0xb,0x7, 0x0,0xf7,0xec,0xf2,0x0,0xd9,0xa5,0xc3,0x0,0x5,0x8,0x6,0x0,0x2f,0x71,0x4b, 0x0,0xb,0x1d,0x13,0x0,0xfa,0xf3,0xf8,0x0,0x9,0xa,0xc,0x0,0x1e,0x47,0x2c, 0x0,0x7,0x10,0xa,0x0,0xee,0xd6,0xe4,0x0,0xf,0x26,0x19,0x0,0x19,0x40,0x29, 0x0,0x3,0x3,0x5,0x0,0x2,0x5,0x4,0x0,0xfe,0x3,0x1,0x0,0xf8,0x0,0xf7, 0x0,0xfa,0xfb,0xfa,0x0,0x3,0x8,0x5,0x0,0x3,0x4,0x3,0x0,0x0,0x0,0xff, 0x0,0x0,0xff,0x0,0x0,0x1,0xff,0x1,0x0,0x0,0x0,0x2,0x0,0xff,0xfe,0x2, 0x0,0x0,0x0,0x1,0x0,0x0,0xfe,0x0,0x0,0x0,0x3,0x0,0x0,0xff,0xb,0xff, 0x0,0xff,0x1,0xfe,0x0,0xfe,0x1,0xfe,0x0,0xfe,0x1,0xfe,0x0,0xfe,0x1,0xfe, 0x0,0xfe,0x1,0xfe,0x0,0xfe,0x1,0xfe,0x0,0xfe,0x1,0xfe,0x0,0xfe,0x1,0xfe, 0x0,0xfe,0x1,0xfe,0x0,0xfe,0x1,0xfe,0x0,0xfe,0x1,0xfe,0x0,0xff,0x2,0xff, 0x0,0xfa,0xf9,0xf9,0x0,0x3,0xc,0x6,0x0,0x2d,0x68,0x46,0x0,0x2a,0x63,0x43, 0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0xfe,0x1,0x0,0xfe,0xfe,0x1,0x0,0xfe,0xfe, 0x1,0x0,0xfe,0xfe,0x1,0x0,0xfe,0xfe,0x1,0x0,0xfe,0xfe,0x1,0x0,0xfe,0xfe, 0x1,0x0,0xfe,0xfe,0x1,0x0,0xfe,0xfe,0x1,0x0,0xfe,0x1,0x2,0x0,0xfa,0xf5, 0xfa,0x0,0xe9,0xcc,0xde,0x0,0x6,0x10,0xa,0x0,0x27,0x5c,0x3f,0x0,0x1f,0x2b, 0x31,0x0,0x10,0x23,0x1b,0x0,0xee,0xdd,0xe5,0x0,0xfa,0xed,0xf3,0x0,0x21,0x4d, 0x33,0x0,0x1f,0x2d,0x32,0x0,0x25,0x57,0x3b,0x0,0x11,0x28,0x18,0x0,0xe3,0xbd, 0xd1,0x0,0xfd,0xfa,0xfb,0x0,0xe,0x21,0x18,0x0,0xe3,0xbd,0xd4,0x0,0xeb,0xd1, 0xe0,0x0,0x1e,0x47,0x31,0x0,0xf9,0xed,0xf4,0x0,0xde,0xab,0xc7,0x0,0xfe,0xfb, 0xfc,0x0,0xe,0x1d,0x16,0x0,0xd,0x20,0x17,0x0,0x3,0xb,0x7,0x0,0xdf,0xb4, 0xce,0x0,0xef,0xdb,0xe7,0x0,0x17,0x35,0x24,0x0,0xef,0xd8,0xe6,0x0,0xdc,0xab, 0xc5,0x0,0x7,0x11,0xa,0x0,0xd,0x20,0x14,0x0,0xf5,0xea,0xef,0x0,0x2,0x5, 0x3,0x0,0x15,0x2d,0x20,0x0,0x12,0x17,0x1a,0x0,0x11,0x2d,0x1b,0x0,0xfe,0xff, 0x0,0x0,0xf5,0xe7,0xef,0x0,0x2,0x5,0x1,0x0,0x7,0xe,0x8,0x0,0xe0,0xb4, 0xce,0x0,0xd5,0x9e,0xbe,0x0,0xf,0x1e,0x15,0x0,0x16,0x2f,0x1f,0x0,0xfc,0xf6, 0xf9,0x0,0xf,0x1f,0x1a,0x0,0x16,0x33,0x24,0x0,0x5,0xc,0x9,0x0,0x3,0x3, 0x2,0x0,0x7,0x10,0xa,0x0,0x1a,0x3d,0x29,0x0,0x2,0x9,0x7,0x0,0xf9,0xf5, 0xf7,0x0,0xf,0x24,0x17,0x0,0x15,0x1b,0x1f,0x0,0x14,0x32,0x21,0x0,0x9,0x13, 0xe,0x0,0xf9,0xef,0xf3,0x0,0xfe,0x0,0xff,0x0,0x4,0x8,0x6,0x0,0x1,0x9, 0x4,0x0,0x3,0x7,0x6,0x0,0x1,0x0,0x3,0x0,0x1,0x3,0x2,0x0,0x0,0x0, 0x1,0x0,0xe7,0xcb,0xdb,0x0,0xe1,0xbc,0xcd,0x0,0xf4,0xe2,0xeb,0x0,0xf4,0xe1, 0xeb,0x0,0xf4,0xe1,0xeb,0x0,0xf4,0xe1,0xeb,0x0,0xf4,0xe1,0xeb,0x0,0xf4,0xe1, 0xeb,0x0,0xf4,0xe1,0xeb,0x0,0xf4,0xe1,0xeb,0x0,0xf4,0xe1,0xeb,0x0,0xf4,0xe1, 0xeb,0x0,0xf4,0xe1,0xeb,0x0,0xf3,0xde,0xe9,0x0,0xf6,0xe5,0xed,0x0,0x30,0x68, 0x48,0x0,0xe,0x1f,0x16,0x0,0x0,0x0,0xff,0x0,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2, 0x3,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x2,0x5,0x4,0xff,0xf9,0xef,0xf6,0xff,0xd9,0xa3,0xc4,0x0,0xc, 0x1b,0x14,0x0,0x1e,0x45,0x2f,0x0,0x18,0x35,0x23,0x0,0xe1,0xba,0xd1,0x0,0xd7, 0x9c,0xbe,0x0,0xd1,0x8e,0xb4,0x0,0x28,0x62,0x40,0x0,0x3b,0x85,0x5d,0x0,0x6, 0xd,0xa,0x0,0xe5,0xc3,0xd9,0x0,0xcf,0x9e,0xb5,0x0,0x17,0x2c,0x23,0x0,0xf9, 0xec,0xf2,0x0,0xe8,0xcd,0xda,0x0,0xfa,0xf6,0xf7,0x0,0x15,0x2e,0x20,0x0,0xe6, 0xbf,0xd7,0x0,0xed,0xd6,0xe2,0x0,0x19,0x3d,0x29,0x0,0xfe,0xfd,0xfb,0x0,0x3, 0x8,0x6,0x0,0xf2,0xdd,0xeb,0x0,0xe8,0xc4,0xdb,0x0,0xf7,0xe9,0xf1,0x0,0x1a, 0x39,0x28,0x0,0xe2,0xba,0xd2,0x0,0xed,0xd2,0xe0,0x0,0x26,0x51,0x38,0x0,0x0, 0x1,0xff,0x0,0xe5,0xc1,0xd6,0x0,0xde,0xae,0xca,0x0,0x19,0x3c,0x27,0x0,0x3c, 0x13,0x5d,0x0,0xc,0x1f,0x14,0x0,0xd9,0xa2,0xc2,0x0,0xe6,0xce,0xd7,0x0,0x1a, 0x38,0x29,0x0,0xf7,0xe8,0xf2,0x0,0xf5,0xed,0xed,0x0,0xe3,0xbf,0xcf,0x0,0x15, 0x2e,0x21,0x0,0x19,0x3d,0x27,0x0,0xf8,0xee,0xf2,0x0,0xb,0x1c,0x11,0x0,0xf2, 0xe1,0xee,0x0,0xda,0xa5,0xbe,0x0,0xe8,0xc7,0xd9,0x0,0xf5,0xeb,0xf3,0x0,0xf, 0x23,0x19,0x0,0x0,0x2,0x1,0x0,0xdc,0xab,0xc7,0x0,0x2d,0x6a,0x47,0x0,0x3d, 0x89,0x60,0x0,0x6,0x11,0xb,0x0,0xeb,0xc8,0xdc,0x0,0xdd,0xb5,0xc9,0x0,0xf9, 0x0,0xf8,0x0,0xf7,0xeb,0xf2,0x0,0xf0,0xd8,0xe5,0x0,0xf4,0xe4,0xeb,0x0,0xfa, 0x0,0xf5,0x0,0xf4,0xe3,0xeb,0x0,0xf0,0xdd,0xe7,0x0,0x14,0x23,0x1e,0x0,0x28, 0x48,0x3d,0x0,0x0,0xfe,0xfe,0x1,0x0,0x2,0x1,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe, 0xfd,0xff,0x0,0x24,0x54,0x3a,0x0,0x15,0x2f,0x21,0x0,0x0,0x0,0xff,0x0,0x0, 0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x13,0xc,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x2,0xf3, 0xff,0xfd,0xfc,0xfc,0xf,0x20,0x15,0x0,0xf5,0xe5,0xf1,0x0,0xff,0xfd,0xfc,0x0, 0x17,0x3d,0x26,0x0,0xfe,0x9,0x2,0x0,0xfb,0xfc,0xfe,0x0,0xfb,0xfa,0xfa,0x0, 0xf6,0xeb,0xf3,0x0,0x18,0x37,0x25,0x0,0xf5,0xe6,0xee,0x0,0xe7,0xc5,0xec,0x0, 0x1c,0x41,0x33,0x0,0x17,0x36,0x24,0x0,0xfc,0x4,0xff,0x0,0x1f,0x4b,0x35,0x0, 0x5,0x8,0x7,0x0,0xf3,0xdf,0xea,0x0,0x11,0x27,0x1b,0x0,0xb,0x1c,0x12,0x0, 0x2,0x4,0x3,0x0,0x15,0x3a,0x26,0x0,0xfd,0xff,0xff,0x0,0x1,0x9,0x4,0x0, 0x1c,0x42,0x2c,0x0,0x4,0x7,0x6,0x0,0xef,0xda,0xe8,0x0,0x16,0x36,0x23,0x0, 0x12,0x2e,0x1d,0x0,0x0,0x8,0x6,0x0,0x15,0x34,0x24,0x0,0x27,0xef,0xf7,0x0, 0xfa,0xf1,0xf6,0x0,0x0,0x6,0x3,0x0,0x20,0x51,0x33,0x0,0xef,0xdc,0xea,0x0, 0x1,0x6,0x5,0x0,0x2a,0x5c,0x46,0x0,0x10,0x22,0x17,0x0,0x2,0x7,0x6,0x0, 0x21,0x4a,0x36,0x0,0x10,0x27,0x1e,0x0,0xf9,0xfc,0xfb,0x0,0xf3,0xec,0xf1,0x0, 0x1c,0x44,0x2d,0x0,0x4,0x5,0x5,0x0,0xf7,0xe7,0xf0,0x0,0xff,0x6,0x2,0x0, 0x9,0x26,0x17,0x0,0xf8,0xed,0xf4,0x0,0x12,0x23,0xff,0x0,0x27,0x57,0x39,0x0, 0xf6,0xeb,0xf2,0x0,0xfe,0x2,0x0,0x0,0x1e,0x53,0x36,0x0,0xf6,0xe0,0xec,0x0, 0xe4,0xb4,0xd0,0x0,0x15,0x32,0x24,0x0,0x15,0x3b,0x29,0x0,0xe,0x1b,0x15,0x0, 0x2,0x7,0x6,0x0,0x15,0x2f,0x20,0x0,0x32,0x5,0x4e,0x0,0xb,0x16,0x10,0x0, 0xfc,0xfc,0xfb,0x0,0xf,0x2a,0x1b,0x0,0x9,0x16,0x10,0x0,0xf8,0xeb,0xf0,0xe, 0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xfe,0xfc,0xfc,0x0,0x1a,0x3d,0x29,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x2,0x4,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0xab,0x6,0xd,0x9,0x36,0xc,0x1b,0x13, 0x73,0xfa,0xf1,0xf8,0xc6,0xfc,0xfb,0xfb,0x21,0x2,0xfb,0x0,0x85,0x18,0x1a,0x19, 0x21,0x15,0x62,0x44,0x0,0xfc,0x2,0x1,0xfd,0xf5,0xef,0xf1,0x83,0xfb,0xf5,0xf8, 0xbf,0xfd,0xf9,0xfb,0x6,0x2,0x4,0x2,0xd,0x33,0x6b,0x4e,0x84,0x10,0x16,0x10, 0x2a,0xfe,0xf0,0xf4,0x0,0x16,0x6c,0x4c,0x0,0xec,0xd4,0xe0,0x8b,0xfc,0xf2,0xf7, 0xb5,0xc,0x1b,0x12,0x7,0xfc,0xf9,0xfa,0x0,0x3,0x6,0x6,0xfe,0x7,0x14,0x4, 0x0,0x12,0x1d,0x17,0x86,0xe,0x22,0x15,0x35,0x4,0x3,0x4,0x96,0xf4,0xe1,0xed, 0xac,0x2,0x2,0x1,0x5,0xc,0x1c,0x12,0x0,0x0,0x4,0x1,0x0,0x2,0xb,0x5, 0x0,0x8,0x13,0xe,0x0,0x12,0x27,0x1b,0x0,0x2,0x7,0x3,0x0,0xfe,0xfc,0xfd, 0x0,0x1,0x3,0x1,0x0,0x0,0x1,0x0,0x0,0x8,0x16,0xe,0x0,0x4,0x7,0x5, 0x0,0xa,0x14,0xd,0x0,0x3,0xa,0x6,0x0,0xa,0x12,0xf,0x0,0x19,0x32,0x23, 0x79,0xe,0x28,0x19,0xb,0xef,0xe3,0xec,0x6c,0xb,0x18,0x11,0x10,0x0,0xfc,0xff, 0xfc,0x11,0x27,0x19,0x5a,0x1b,0x3d,0x28,0x63,0xfd,0xfe,0xfd,0x0,0xf7,0xe8,0xf1, 0xc2,0xf5,0xe5,0xed,0x84,0xe,0x20,0x14,0x1,0x0,0x3,0x3,0x0,0x0,0x1,0x1, 0x0,0x1,0x4,0x1,0x0,0xff,0xff,0xff,0x0,0x1,0x3,0x2,0x0,0xd,0x1d,0x16, 0x0,0x6,0x16,0xe,0x0,0x8,0x13,0xb,0x0,0x3,0xb,0x7,0x0,0x9,0x15,0xf, 0x0,0x12,0x24,0xff,0x0,0x6,0x11,0x8,0x0,0xff,0x3,0x2,0xf7,0x2,0x9,0x4, 0x57,0xd,0x1b,0x11,0x5b,0xfc,0xf6,0xf8,0x65,0x0,0x1,0x1,0xfd,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xfe,0xff,0x0,0xfe,0xfc,0xfd, 0x0,0x17,0x32,0x21,0x0,0x0,0xff,0x0,0x0,0xff,0x1,0x0,0x0,0x1,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfb,0x0,0x0, 0x1,0x9c,0x0,0x1,0x0,0x9b,0xff,0xff,0xff,0xbd,0x0,0xff,0xff,0xf2,0x0,0x0, 0x0,0xcb,0x2,0xfd,0x0,0xe3,0x4,0x2,0x4,0x1a,0x2,0x10,0xd,0xfe,0xff,0x11, 0xa,0xf9,0xfa,0xf9,0xf8,0xc4,0xfe,0xfe,0xfe,0xef,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1,0xa,0x17,0xf,0xe7,0x9,0xe,0xb,0x1e,0xfc,0xf2,0xf9,0xfe,0x4,0x17, 0xf,0xfc,0xf0,0xdd,0x7,0xc5,0xfb,0xf0,0xf5,0xeb,0xff,0xfd,0xfe,0x0,0xfe,0xfc, 0xfe,0x0,0xff,0xff,0xff,0x0,0xff,0xfd,0xfe,0x0,0x5,0x4,0x5,0xef,0x8,0x12, 0xd,0x24,0x4,0x5,0x3,0xc3,0xfe,0xfd,0xfd,0xe6,0x0,0x0,0x0,0x0,0xff,0xfd, 0xfe,0x0,0xff,0xff,0x0,0x0,0x0,0xff,0xff,0x0,0xff,0xfe,0xfe,0x0,0xfe,0xfb, 0xfd,0x0,0x2,0x6,0x2,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x0,0x0,0x0, 0x0,0x0,0xff,0xfe,0xff,0x0,0xfe,0xfb,0xfc,0x0,0xfe,0xfd,0xfd,0x0,0x0,0xff, 0xff,0x0,0xfe,0xfb,0xfd,0x0,0x6,0xc,0x8,0xe6,0x8,0x12,0xc,0x9,0xff,0xe1, 0xea,0xcb,0xff,0xfd,0xfe,0x0,0xfe,0xfc,0xfe,0x0,0x5,0xe,0x9,0xda,0xc,0x1d, 0x13,0xbc,0x0,0x0,0x0,0xfc,0x2,0x0,0x0,0xda,0xf4,0xe3,0xec,0xd2,0xfe,0xfc, 0xfe,0x0,0xff,0xfd,0xfe,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xfd,0xfd,0x0,0xfe,0xfb,0xfc,0x0,0xfe,0xfc, 0xfd,0x0,0xff,0xff,0xff,0x0,0xff,0xfd,0xfe,0x0,0xfe,0xfb,0xfd,0x0,0xff,0xfc, 0xfe,0x0,0x0,0xfe,0xff,0x0,0x2,0x3,0x1,0xdd,0x4,0x3,0x4,0xae,0xff,0xfe, 0xff,0xc7,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0x0,0x0,0x5,0xa, 0x6,0x0,0x16,0x31,0x20,0x0,0xfe,0xff,0x0,0x0,0x3,0x6,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xff, 0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xff,0xff,0xad,0x1a,0xc8,0x33,0x96,0x98,0x9d, 0x31,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82, // C:/SNIR_PROJET/Superviseur/Superviseur/QSuperviseur/img/1452464407_address-book.ico 0x0,0x0,0x15,0x36, 0x0, 0x0,0x1,0x0,0x2,0x0,0x10,0x10,0x0,0x0,0x1,0x0,0x20,0x0,0x68,0x4,0x0, 0x0,0x26,0x0,0x0,0x0,0x20,0x20,0x0,0x0,0x1,0x0,0x20,0x0,0xa8,0x10,0x0, 0x0,0x8e,0x4,0x0,0x0,0x28,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x20,0x0,0x0, 0x0,0x1,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x12,0xb,0x0, 0x0,0x12,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0x88,0x5b,0x2d,0xff,0x88,0x5b,0x2d, 0xff,0xa6,0x8b,0x6e,0x3a,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0x88,0x5b,0x2d, 0xff,0x88,0x5b,0x2d,0xff,0x88,0x5b,0x2d,0xff,0x88,0x5b,0x2d,0xff,0x88,0x5b,0x2d, 0xff,0x88,0x5b,0x2d,0xff,0x88,0x5b,0x2d,0xff,0xf1,0xce,0xa3,0xff,0xff,0xe7,0xc0, 0xff,0x88,0x5b,0x2d,0xff,0x88,0x5b,0x2d,0xff,0x88,0x5b,0x2d,0xff,0x88,0x5b,0x2d, 0xff,0x88,0x5b,0x2d,0xff,0x88,0x5b,0x2d,0xff,0x96,0x69,0x3b,0xff,0x88,0x5b,0x2d, 0xff,0xf9,0xde,0xbb,0xff,0xf9,0xde,0xbb,0xff,0xf9,0xde,0xbb,0xff,0xf9,0xde,0xbb, 0xff,0xf9,0xde,0xbb,0xff,0xf9,0xde,0xbb,0xff,0xf9,0xde,0xbb,0xff,0xf9,0xde,0xbb, 0xff,0xf9,0xde,0xbb,0xff,0xf9,0xde,0xbb,0xff,0xf9,0xde,0xbb,0xff,0xf9,0xde,0xbb, 0xff,0xf9,0xde,0xbb,0xff,0xf9,0xde,0xbb,0xff,0x88,0x5b,0x2d,0xff,0x88,0x5b,0x2d, 0xff,0xf9,0xde,0xbb,0xff,0xec,0xee,0xf1,0xff,0xee,0xee,0xef,0xff,0xee,0xee,0xef, 0xff,0xee,0xee,0xef,0xff,0xee,0xee,0xef,0xff,0xef,0xf0,0xf1,0xff,0xa2,0xa0,0x9e, 0xff,0xe1,0xe1,0xe1,0xff,0x9f,0x9c,0x99,0xff,0x9f,0x9c,0x99,0xff,0x9f,0x9c,0x99, 0xff,0xe7,0xe9,0xec,0xff,0xf9,0xde,0xbb,0xff,0x88,0x5b,0x2d,0xff,0x88,0x5b,0x2d, 0xff,0xf9,0xde,0xbb,0xff,0xf6,0xf6,0xf7,0xff,0xeb,0xeb,0xee,0xff,0xf0,0xf0,0xf1, 0xff,0xee,0xee,0xef,0xff,0xe7,0xe7,0xe8,0xff,0xe8,0xe9,0xea,0xff,0x9f,0x9b,0x98, 0xff,0xe8,0xe9,0xe9,0xff,0xe4,0xe4,0xe4,0xff,0xe4,0xe4,0xe4,0xff,0xe1,0xe1,0xe1, 0xff,0xe5,0xe5,0xe5,0xff,0xf9,0xde,0xbb,0xff,0x88,0x5b,0x2d,0xff,0x88,0x5b,0x2d, 0xff,0xf9,0xde,0xbb,0xff,0xee,0xee,0xef,0xff,0x9f,0x9c,0x99,0xff,0x9f,0x9c,0x99, 0xff,0x9f,0x9c,0x99,0xff,0x9f,0x9c,0x99,0xff,0xed,0xed,0xef,0xff,0x9f,0x9c,0x99, 0xff,0xe8,0xe8,0xe9,0xff,0xe4,0xe4,0xe5,0xff,0xe5,0xe5,0xe5,0xff,0xe4,0xe5,0xe5, 0xff,0xe6,0xe6,0xe6,0xff,0xf9,0xde,0xbb,0xff,0x88,0x5b,0x2d,0xff,0x88,0x5b,0x2d, 0xff,0xf9,0xde,0xbb,0xff,0xee,0xee,0xef,0xff,0xf5,0xf5,0xf6,0xff,0xee,0xee,0xef, 0xff,0xee,0xee,0xef,0xff,0xee,0xee,0xef,0xff,0xee,0xee,0xf0,0xff,0xa0,0x9e,0x99, 0xff,0xe6,0xe6,0xe6,0xff,0x9f,0x9c,0x99,0xff,0x9f,0x9c,0x99,0xff,0x9f,0x9c,0x99, 0xff,0xec,0xec,0xec,0xff,0xf9,0xde,0xbb,0xff,0x88,0x5b,0x2d,0xff,0x88,0x5b,0x2d, 0xff,0xf9,0xde,0xbb,0xff,0xff,0xfd,0xfc,0xff,0xff,0xf3,0xf1,0xff,0xff,0xf8,0xf6, 0xff,0xff,0xf6,0xf3,0xff,0xed,0xed,0xef,0xff,0xee,0xee,0xef,0xff,0xa0,0x9d,0x99, 0xff,0xeb,0xec,0xed,0xff,0xea,0xea,0xeb,0xff,0xed,0xed,0xee,0xff,0xed,0xed,0xee, 0xff,0xe8,0xe8,0xe9,0xff,0xf9,0xde,0xbb,0xff,0x88,0x5b,0x2d,0xff,0x88,0x5b,0x2d, 0xff,0xf9,0xde,0xbb,0xff,0xb,0xaa,0xe0,0xff,0xb,0xaa,0xe0,0xff,0x0,0xa1,0xdc, 0xff,0xe,0xa9,0xde,0xff,0xe4,0xea,0xec,0xff,0xf1,0xf0,0xf1,0xff,0xa2,0x9e,0x9b, 0xff,0xe9,0xe9,0xea,0xff,0x9f,0x9c,0x99,0xff,0x9f,0x9c,0x99,0xff,0x9f,0x9c,0x99, 0xff,0xef,0xef,0xef,0xff,0xf9,0xde,0xbb,0xff,0x88,0x5b,0x2d,0xff,0x88,0x5b,0x2d, 0xff,0xf9,0xde,0xbb,0xff,0xff,0xff,0xfe,0xff,0xb,0xaa,0xe0,0xff,0x0,0xa0,0xdb, 0xff,0xde,0xea,0xee,0xff,0xf2,0xef,0xef,0xff,0xf1,0xf1,0xf3,0xff,0xa3,0x9f,0x9b, 0xff,0xeb,0xec,0xec,0xff,0xee,0xee,0xef,0xff,0xee,0xee,0xef,0xff,0xee,0xee,0xef, 0xff,0xf0,0xf0,0xf2,0xff,0xf9,0xde,0xbb,0xff,0x88,0x5b,0x2d,0xff,0x88,0x5b,0x2d, 0xff,0xf9,0xde,0xbb,0xff,0xff,0xff,0xff,0xff,0xb,0xaa,0xe0,0xff,0xb,0xaa,0xe0, 0xff,0xfa,0xf5,0xf6,0xff,0xf6,0xf6,0xf8,0xff,0xfd,0xfe,0xff,0xff,0xa7,0xa6,0xa3, 0xff,0xf8,0xf8,0xfb,0xff,0xf1,0xf1,0xf2,0xff,0xf1,0xf1,0xf2,0xff,0xf0,0xf0,0xf2, 0xff,0xf4,0xf4,0xf5,0xff,0xf9,0xde,0xbb,0xff,0x88,0x5b,0x2d,0xff,0x88,0x5b,0x2d, 0xff,0x54,0x44,0x34,0xff,0xa0,0xa0,0xa2,0xff,0xd9,0xd2,0xd1,0xff,0xe9,0xdd,0xdb, 0xff,0xca,0xc9,0xcb,0xff,0x9c,0x9c,0x9e,0xff,0x66,0x58,0x4a,0xff,0x66,0x54,0x42, 0xff,0x88,0x87,0x88,0xff,0xb1,0xb1,0xb2,0xff,0xc5,0xc5,0xc8,0xff,0xb5,0xb5,0xb6, 0xff,0x8f,0x90,0x91,0xff,0x50,0x40,0x30,0xff,0x88,0x5b,0x2d,0xff,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0x5c,0x66,0x67,0xf,0x91,0x93,0x95,0xa2,0x8f,0x92,0x93, 0xa8,0x92,0x94,0x97,0xa0,0x68,0x71,0x72,0xa,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0x99,0x99,0x9a,0x94,0x94,0x94,0x95,0xa2,0x97,0x97,0x98, 0x98,0x93,0x90,0x8d,0x4,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0x0, 0x0,0xfe,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xc1,0xc3,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x28,0x0,0x0, 0x0,0x20,0x0,0x0,0x0,0x40,0x0,0x0,0x0,0x1,0x0,0x20,0x0,0x0,0x0,0x0, 0x0,0x0,0x10,0x0,0x0,0x12,0xb,0x0,0x0,0x12,0xb,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xec,0xc9,0x95,0x0,0xeb,0xc7,0x92,0x1,0xea,0xc5,0x90, 0x1,0xe9,0xc3,0x8d,0x2,0xe8,0xc0,0x8a,0x2,0xe6,0xbe,0x87,0x2,0xe5,0xbc,0x85, 0x2,0xe4,0xba,0x82,0x2,0xe3,0xb8,0x7f,0x2,0xe2,0xb6,0x7d,0x2,0xe1,0xb4,0x7a, 0x2,0xe0,0xb2,0x78,0x2,0xdf,0xb1,0x76,0x2,0xde,0xaf,0x73,0x2,0x80,0x51,0x23, 0xff,0x80,0x51,0x23,0xff,0x80,0x51,0x23,0xff,0x80,0x51,0x23,0xff,0x80,0x51,0x23, 0xff,0xd9,0xa6,0x68,0x2,0xd9,0xa5,0x67,0x2,0xd8,0xa4,0x66,0x2,0xd8,0xa4,0x66, 0x2,0xd8,0xa4,0x66,0x2,0xd8,0xa4,0x66,0x2,0xd8,0xa4,0x66,0x2,0xd8,0xa4,0x66, 0x2,0xd8,0xa4,0x66,0x2,0xd8,0xa4,0x66,0x2,0xd8,0xa4,0x66,0x1,0xd8,0xa4,0x66, 0x1,0xd8,0xa4,0x66,0x0,0x80,0x51,0x23,0xff,0x82,0x53,0x25,0xff,0x85,0x57,0x28, 0xff,0x87,0x58,0x2a,0xff,0x87,0x59,0x2a,0xff,0x87,0x59,0x2a,0xff,0x87,0x59,0x2a, 0xff,0x87,0x59,0x2a,0xff,0x87,0x58,0x2a,0xff,0x87,0x58,0x29,0xff,0x87,0x58,0x29, 0xff,0x87,0x58,0x29,0xff,0x87,0x58,0x29,0xff,0x87,0x58,0x29,0xff,0xb5,0x8d,0x63, 0xff,0xf6,0xd9,0xb7,0xff,0xf6,0xd9,0xb7,0xff,0xf6,0xd9,0xb7,0xff,0xb4,0x8c,0x63, 0xff,0x86,0x57,0x28,0xff,0x86,0x57,0x28,0xff,0x86,0x57,0x27,0xff,0x86,0x57,0x27, 0xff,0x86,0x57,0x27,0xff,0x86,0x57,0x27,0xff,0x86,0x57,0x27,0xff,0x86,0x57,0x27, 0xff,0x86,0x57,0x27,0xff,0x85,0x56,0x27,0xff,0x84,0x55,0x26,0xff,0x81,0x52,0x24, 0xff,0x80,0x51,0x23,0xff,0x82,0x53,0x25,0xff,0xf7,0xdb,0xb9,0xff,0xf6,0xd9,0xb5, 0xff,0xf5,0xd7,0xb1,0xff,0xf4,0xd6,0xaf,0xff,0xf3,0xd5,0xae,0xff,0xf3,0xd5,0xae, 0xff,0xf3,0xd4,0xad,0xff,0xf2,0xd3,0xac,0xff,0xf2,0xd2,0xab,0xff,0xf2,0xd2,0xaa, 0xff,0xf1,0xd1,0xa9,0xff,0xf1,0xd0,0xa9,0xff,0xf0,0xd0,0xa8,0xff,0xf0,0xd0,0xa7, 0xff,0xf0,0xcf,0xa6,0xff,0xf0,0xce,0xa5,0xff,0xf0,0xce,0xa5,0xff,0xef,0xcd,0xa4, 0xff,0xef,0xcd,0xa4,0xff,0xef,0xcc,0xa3,0xff,0xee,0xcc,0xa3,0xff,0xee,0xcc,0xa2, 0xff,0xee,0xcb,0xa2,0xff,0xee,0xcb,0xa2,0xff,0xee,0xcb,0xa2,0xff,0xee,0xcb,0xa2, 0xff,0xee,0xcb,0xa2,0xff,0xef,0xcd,0xa4,0xff,0xf1,0xd1,0xaa,0xff,0xf5,0xd7,0xb4, 0xff,0x81,0x52,0x24,0xff,0x85,0x57,0x29,0xff,0xf6,0xda,0xb6,0xff,0x88,0x7b,0x69, 0xff,0xbb,0xa5,0x85,0xff,0xee,0xcd,0xa1,0xff,0xef,0xcd,0x9f,0xff,0xee,0xcc,0x9d, 0xff,0xee,0xca,0x9b,0xff,0xec,0xc9,0x9a,0xff,0xec,0xc8,0x98,0xff,0xeb,0xc6,0x96, 0xff,0xea,0xc5,0x95,0xff,0xea,0xc4,0x92,0xff,0xe9,0xc2,0x90,0xff,0xae,0x94,0x71, 0xff,0x6e,0x60,0x50,0xff,0x9f,0x86,0x68,0xff,0xe2,0xba,0x88,0xff,0xe5,0xbc,0x89, 0xff,0xe5,0xbb,0x87,0xff,0xe4,0xba,0x86,0xff,0xe3,0xb9,0x85,0xff,0xe3,0xb8,0x83, 0xff,0xe3,0xb7,0x83,0xff,0xe2,0xb7,0x82,0xff,0xe2,0xb6,0x81,0xff,0xe2,0xb6,0x81, 0xff,0xcb,0xa5,0x78,0xff,0x90,0x79,0x5e,0xff,0xa6,0x8d,0x70,0xff,0xf1,0xd1,0xaa, 0xff,0x84,0x55,0x26,0xff,0x87,0x59,0x2b,0xff,0xf6,0xda,0xb5,0xff,0x54,0x4f,0x47, 0xff,0x66,0x66,0x66,0xff,0x34,0x34,0x33,0xff,0x58,0x51,0x46,0xff,0x74,0x67,0x55, 0xff,0x7c,0x6e,0x59,0xff,0x7c,0x6d,0x58,0xff,0x7b,0x6c,0x57,0xff,0x5d,0x54,0x47, 0xff,0x56,0x4e,0x43,0xff,0x3d,0x3a,0x37,0xff,0x32,0x32,0x32,0xff,0x6a,0x6a,0x6a, 0xff,0xa8,0xa8,0xa8,0xff,0x78,0x78,0x78,0xff,0x36,0x36,0x36,0xff,0x51,0x49,0x3f, 0xff,0x6b,0x5c,0x49,0xff,0x77,0x64,0x4d,0xff,0x86,0x6f,0x52,0xff,0x99,0x7c,0x58, 0xff,0x96,0x7a,0x57,0xff,0x76,0x62,0x4a,0xff,0x76,0x62,0x4a,0xff,0x48,0x41,0x3a, 0xff,0x48,0x48,0x48,0xff,0x82,0x82,0x82,0xff,0x86,0x72,0x5a,0xff,0xef,0xcc,0xa4, 0xff,0x85,0x56,0x27,0xff,0x88,0x5b,0x2c,0xff,0xf6,0xda,0xb5,0xff,0x54,0x4f,0x47, 0xff,0xca,0xca,0xca,0xff,0xe7,0xe7,0xe8,0xff,0xc4,0xc4,0xc4,0xff,0xa8,0xa8,0xa8, 0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9e,0x9e,0x9f,0xff,0xbb,0xbb,0xbc, 0xff,0xc1,0xc1,0xc1,0xff,0xda,0xda,0xda,0xff,0xe4,0xe4,0xe4,0xff,0xe3,0xe3,0xe3, 0xff,0xe2,0xe2,0xe3,0xff,0x70,0x6b,0x64,0xff,0xe1,0xe1,0xe2,0xff,0xc2,0xc2,0xc2, 0xff,0xa7,0xa7,0xa7,0xff,0x9a,0x9a,0x9a,0xff,0x8a,0x8a,0x8a,0xff,0x77,0x77,0x77, 0xff,0x79,0x79,0x79,0xff,0x99,0x99,0x99,0xff,0x99,0x99,0x99,0xff,0xc7,0xc7,0xc8, 0xff,0xdd,0xdd,0xdd,0xff,0x8d,0x8d,0x8d,0xff,0x85,0x70,0x58,0xff,0xee,0xcb,0xa2, 0xff,0x86,0x57,0x27,0xff,0x88,0x5b,0x2d,0xff,0xf7,0xdb,0xb6,0xff,0x32,0x32,0x32, 0xff,0xeb,0xeb,0xec,0xff,0xea,0xea,0xeb,0xff,0xe9,0xe9,0xea,0xff,0xe9,0xe9,0xea, 0xff,0xe8,0xe8,0xe9,0xff,0xe7,0xe7,0xe8,0xff,0xe7,0xe7,0xe8,0xff,0xe6,0xe6,0xe7, 0xff,0xe6,0xe6,0xe6,0xff,0xe5,0xe5,0xe6,0xff,0xe4,0xe4,0xe5,0xff,0xe4,0xe4,0xe4, 0xff,0xe3,0xe3,0xe4,0xff,0x70,0x6b,0x64,0xff,0xe2,0xe2,0xe2,0xff,0xe1,0xe1,0xe2, 0xff,0xe1,0xe1,0xe1,0xff,0xe0,0xe0,0xe1,0xff,0xe0,0xe0,0xe0,0xff,0xdf,0xdf,0xe0, 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, 0xff,0xde,0xde,0xde,0xff,0xd3,0xd3,0xd3,0xff,0x32,0x32,0x32,0xff,0xee,0xcb,0xa2, 0xff,0x86,0x57,0x27,0xff,0x88,0x5b,0x2d,0xff,0xf7,0xdb,0xb7,0xff,0x32,0x32,0x32, 0xff,0xec,0xec,0xed,0xff,0xeb,0xeb,0xec,0xff,0xea,0xea,0xeb,0xff,0xea,0xea,0xeb, 0xff,0xe9,0xe9,0xea,0xff,0xe8,0xe8,0xe9,0xff,0xe8,0xe8,0xe8,0xff,0xe7,0xe7,0xe8, 0xff,0xe6,0xe6,0xe7,0xff,0xe6,0xe6,0xe6,0xff,0xe5,0xe5,0xe6,0xff,0xe4,0xe4,0xe5, 0xff,0xe4,0xe4,0xe4,0xff,0x70,0x6b,0x64,0xff,0xe3,0xe3,0xe3,0xff,0xe2,0xe2,0xe3, 0xff,0xe2,0xe2,0xe2,0xff,0xe1,0xe1,0xe1,0xff,0xe1,0xe1,0xe1,0xff,0xe0,0xe0,0xe0, 0xff,0xe0,0xe0,0xe0,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xde,0xde,0xde, 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0x32,0x32,0x32,0xff,0xee,0xcb,0xa2, 0xff,0x86,0x57,0x27,0xff,0x88,0x5b,0x2d,0xff,0xf7,0xdc,0xb8,0xff,0x32,0x32,0x32, 0xff,0xed,0xed,0xee,0xff,0xec,0xec,0xed,0xff,0xeb,0xeb,0xec,0xff,0xea,0xea,0xec, 0xff,0xea,0xea,0xeb,0xff,0xe9,0xe9,0xea,0xff,0xe8,0xe8,0xe9,0xff,0xe8,0xe8,0xe9, 0xff,0xe7,0xe7,0xe8,0xff,0xe6,0xe6,0xe7,0xff,0xe6,0xe6,0xe7,0xff,0xe5,0xe5,0xe6, 0xff,0xe5,0xe5,0xe5,0xff,0x70,0x6b,0x64,0xff,0xe3,0xe3,0xe4,0xff,0xe3,0xe3,0xe3, 0xff,0xe2,0xe2,0xe3,0xff,0xe2,0xe2,0xe2,0xff,0xe1,0xe1,0xe2,0xff,0xe1,0xe1,0xe1, 0xff,0xe0,0xe0,0xe0,0xff,0xe0,0xe0,0xe0,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, 0xff,0xde,0xde,0xdf,0xff,0xde,0xde,0xde,0xff,0x32,0x32,0x32,0xff,0xee,0xcb,0xa2, 0xff,0x86,0x57,0x27,0xff,0x88,0x5b,0x2d,0xff,0xf8,0xdd,0xb9,0xff,0x32,0x32,0x32, 0xff,0xed,0xed,0xef,0xff,0xed,0xed,0xee,0xff,0x6d,0x68,0x61,0xff,0xeb,0xeb,0xec, 0xff,0xeb,0xeb,0xec,0xff,0x6d,0x68,0x61,0xff,0x6d,0x68,0x61,0xff,0x6d,0x68,0x61, 0xff,0x6d,0x68,0x61,0xff,0x6d,0x68,0x61,0xff,0xe7,0xe7,0xe7,0xff,0xe6,0xe6,0xe7, 0xff,0xe5,0xe5,0xe6,0xff,0x70,0x6b,0x64,0xff,0xe4,0xe4,0xe5,0xff,0xe4,0xe4,0xe4, 0xff,0xe3,0xe3,0xe3,0xff,0xe2,0xe2,0xe3,0xff,0xe2,0xe2,0xe2,0xff,0xe1,0xe1,0xe2, 0xff,0xe1,0xe1,0xe1,0xff,0xe0,0xe0,0xe1,0xff,0xe0,0xe0,0xe0,0xff,0xdf,0xdf,0xe0, 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0x32,0x32,0x32,0xff,0xee,0xcc,0xa3, 0xff,0x86,0x57,0x27,0xff,0x89,0x5b,0x2d,0xff,0xf8,0xdd,0xb9,0xff,0x32,0x32,0x32, 0xff,0xee,0xee,0xf0,0xff,0xed,0xed,0xef,0xff,0xed,0xed,0xee,0xff,0xec,0xec,0xed, 0xff,0xeb,0xeb,0xed,0xff,0xeb,0xeb,0xec,0xff,0xea,0xea,0xeb,0xff,0xe9,0xe9,0xea, 0xff,0xe9,0xe9,0xea,0xff,0xe8,0xe8,0xe9,0xff,0xe7,0xe7,0xe8,0xff,0xe7,0xe7,0xe8, 0xff,0xe6,0xe6,0xe7,0xff,0x70,0x6b,0x64,0xff,0xe5,0xe5,0xe6,0xff,0xe4,0xe4,0xe5, 0xff,0xe4,0xe4,0xe4,0xff,0xe3,0xe3,0xe4,0xff,0xe3,0xe3,0xe3,0xff,0xe2,0xe2,0xe2, 0xff,0xe1,0xe1,0xe2,0xff,0xe1,0xe1,0xe1,0xff,0xe0,0xe0,0xe1,0xff,0xe0,0xe0,0xe0, 0xff,0xdf,0xdf,0xe0,0xff,0xdf,0xdf,0xdf,0xff,0x32,0x32,0x32,0xff,0xef,0xcc,0xa3, 0xff,0x86,0x57,0x28,0xff,0x89,0x5b,0x2e,0xff,0xf8,0xde,0xba,0xff,0x32,0x32,0x32, 0xff,0xef,0xef,0xf0,0xff,0xee,0xee,0xf0,0xff,0xee,0xee,0xef,0xff,0xed,0xed,0xee, 0xff,0xec,0xec,0xee,0xff,0xec,0xec,0xed,0xff,0xeb,0xeb,0xec,0xff,0xea,0xea,0xeb, 0xff,0xe9,0xe9,0xeb,0xff,0xe9,0xe9,0xea,0xff,0xe8,0xe8,0xe9,0xff,0xe7,0xe7,0xe8, 0xff,0xe7,0xe7,0xe8,0xff,0x70,0x6b,0x64,0xff,0xe6,0xe6,0xe6,0xff,0xe5,0xe5,0xe6, 0xff,0xe4,0xe4,0xe5,0xff,0xe4,0xe4,0xe4,0xff,0xe3,0xe3,0xe4,0xff,0xe3,0xe3,0xe3, 0xff,0xe2,0xe2,0xe3,0xff,0xe2,0xe2,0xe2,0xff,0xe1,0xe1,0xe1,0xff,0xe1,0xe1,0xe1, 0xff,0xe0,0xe0,0xe0,0xff,0xe0,0xe0,0xe0,0xff,0x32,0x32,0x32,0xff,0xef,0xcd,0xa4, 0xff,0x86,0x57,0x28,0xff,0x89,0x5c,0x2e,0xff,0xf9,0xdf,0xba,0xff,0x32,0x32,0x32, 0xff,0xf0,0xf0,0xf1,0xff,0xef,0xef,0xf1,0xff,0x6d,0x68,0x61,0xff,0xee,0xee,0xef, 0xff,0xed,0xed,0xee,0xff,0x6d,0x68,0x61,0xff,0x6d,0x68,0x61,0xff,0x6d,0x68,0x61, 0xff,0x6d,0x68,0x61,0xff,0x6d,0x68,0x61,0xff,0xe9,0xe9,0xea,0xff,0xe8,0xe8,0xe9, 0xff,0xe8,0xe8,0xe9,0xff,0x70,0x6b,0x64,0xff,0xe6,0xe6,0xe7,0xff,0xe6,0xe6,0xe6, 0xff,0xd3,0xd2,0xd2,0xff,0xb8,0xb6,0xb4,0xff,0x99,0x96,0x92,0xff,0x7f,0x7b,0x75, 0xff,0x6d,0x68,0x61,0xff,0x6d,0x68,0x61,0xff,0x6d,0x68,0x61,0xff,0xe1,0xe1,0xe1, 0xff,0xe1,0xe1,0xe1,0xff,0xe0,0xe0,0xe0,0xff,0x32,0x32,0x32,0xff,0xef,0xce,0xa5, 0xff,0x86,0x57,0x28,0xff,0x89,0x5c,0x2e,0xff,0xf9,0xdf,0xbb,0xff,0x32,0x32,0x32, 0xff,0xf0,0xf0,0xf2,0xff,0xf0,0xf0,0xf1,0xff,0xef,0xef,0xf1,0xff,0xef,0xef,0xf0, 0xff,0xee,0xee,0xef,0xff,0xed,0xed,0xef,0xff,0xed,0xed,0xee,0xff,0xec,0xec,0xed, 0xff,0xeb,0xeb,0xec,0xff,0xeb,0xeb,0xec,0xff,0xea,0xea,0xeb,0xff,0xe9,0xe9,0xea, 0xff,0xe8,0xe8,0xe9,0xff,0x70,0x6b,0x64,0xff,0xe7,0xe7,0xe8,0xff,0xe7,0xe7,0xe7, 0xff,0xe6,0xe6,0xe7,0xff,0xe5,0xe5,0xe6,0xff,0xe5,0xe5,0xe5,0xff,0xe4,0xe4,0xe5, 0xff,0xe3,0xe3,0xe4,0xff,0xe3,0xe3,0xe3,0xff,0xe2,0xe2,0xe3,0xff,0xe2,0xe2,0xe2, 0xff,0xe1,0xe1,0xe2,0xff,0xe1,0xe1,0xe1,0xff,0x32,0x32,0x32,0xff,0xf0,0xce,0xa6, 0xff,0x86,0x57,0x28,0xff,0x89,0x5c,0x2e,0xff,0xf9,0xdf,0xbb,0xff,0x32,0x32,0x32, 0xff,0xf1,0xf1,0xf3,0xff,0xf1,0xf1,0xf2,0xff,0xf0,0xf0,0xf2,0xff,0xef,0xef,0xf1, 0xff,0xef,0xef,0xf0,0xff,0xee,0xee,0xf0,0xff,0xed,0xed,0xef,0xff,0xed,0xed,0xee, 0xff,0xec,0xec,0xed,0xff,0xeb,0xeb,0xed,0xff,0xeb,0xeb,0xec,0xff,0xea,0xea,0xeb, 0xff,0xe9,0xe9,0xea,0xff,0x70,0x6b,0x64,0xff,0xe8,0xe8,0xe9,0xff,0xe7,0xe7,0xe8, 0xff,0xe7,0xe7,0xe7,0xff,0xe6,0xe6,0xe7,0xff,0xe5,0xe5,0xe6,0xff,0xe5,0xe5,0xe5, 0xff,0xe4,0xe4,0xe5,0xff,0xe4,0xe4,0xe4,0xff,0xe3,0xe3,0xe4,0xff,0xe2,0xe2,0xe3, 0xff,0xe2,0xe2,0xe2,0xff,0xe1,0xe1,0xe2,0xff,0x32,0x32,0x32,0xff,0xf0,0xcf,0xa7, 0xff,0x86,0x57,0x28,0xff,0x89,0x5c,0x2e,0xff,0xf9,0xdf,0xbb,0xff,0x32,0x32,0x32, 0xff,0xf2,0xf2,0xf3,0xff,0xb5,0xde,0xee,0xff,0x9,0xa9,0xde,0xff,0x9,0xa9,0xde, 0xff,0x9,0xa9,0xde,0xff,0x9,0xa9,0xde,0xff,0x9,0xa9,0xde,0xff,0x9,0xa9,0xde, 0xff,0x9,0xa9,0xde,0xff,0xa9,0xd8,0xe9,0xff,0xec,0xec,0xed,0xff,0xeb,0xeb,0xec, 0xff,0xea,0xea,0xeb,0xff,0x70,0x6b,0x64,0xff,0xe9,0xe9,0xea,0xff,0xe8,0xe8,0xe9, 0xff,0xd4,0xd4,0xd3,0xff,0xba,0xb8,0xb6,0xff,0x9a,0x97,0x93,0xff,0x80,0x7b,0x75, 0xff,0x6d,0x68,0x61,0xff,0x6d,0x68,0x61,0xff,0x6d,0x68,0x61,0xff,0xe3,0xe3,0xe4, 0xff,0xe3,0xe3,0xe3,0xff,0xe2,0xe2,0xe2,0xff,0x32,0x32,0x32,0xff,0xf0,0xd0,0xa8, 0xff,0x87,0x58,0x29,0xff,0x89,0x5c,0x2e,0xff,0xf9,0xdf,0xbb,0xff,0x32,0x32,0x32, 0xff,0xf2,0xf2,0xf4,0xff,0xea,0xef,0xf3,0xff,0x7e,0xcd,0xe9,0xff,0x2c,0xb4,0xe1, 0xff,0x9,0xa9,0xde,0xff,0x9,0xa9,0xde,0xff,0x9,0xa9,0xde,0xff,0x1c,0xaf,0xdf, 0xff,0xa5,0xd8,0xea,0xff,0xed,0xed,0xee,0xff,0xec,0xec,0xee,0xff,0xec,0xec,0xed, 0xff,0xeb,0xeb,0xec,0xff,0x70,0x6b,0x64,0xff,0xea,0xea,0xeb,0xff,0xe9,0xe9,0xea, 0xff,0xe8,0xe8,0xe9,0xff,0xe8,0xe8,0xe8,0xff,0xe7,0xe7,0xe8,0xff,0xe6,0xe6,0xe7, 0xff,0xe6,0xe6,0xe6,0xff,0xe5,0xe5,0xe6,0xff,0xe5,0xe5,0xe5,0xff,0xe4,0xe4,0xe4, 0xff,0xe3,0xe3,0xe4,0xff,0xe3,0xe3,0xe3,0xff,0x32,0x32,0x32,0xff,0xf1,0xd0,0xa9, 0xff,0x87,0x58,0x29,0xff,0x89,0x5c,0x2e,0xff,0xf9,0xdf,0xbb,0xff,0x32,0x32,0x32, 0xff,0xf3,0xf3,0xf5,0xff,0xf2,0xf2,0xf4,0xff,0xf2,0xf2,0xf4,0xff,0xa5,0xd9,0xec, 0xff,0x9,0xa9,0xde,0xff,0x9,0xa9,0xde,0xff,0x9,0xa9,0xde,0xff,0xa3,0xd8,0xeb, 0xff,0xef,0xef,0xf0,0xff,0xee,0xee,0xef,0xff,0xed,0xed,0xef,0xff,0xed,0xed,0xee, 0xff,0xec,0xec,0xed,0xff,0x70,0x6b,0x64,0xff,0xeb,0xeb,0xec,0xff,0xea,0xea,0xeb, 0xff,0xe9,0xe9,0xea,0xff,0xe8,0xe8,0xe9,0xff,0xe8,0xe8,0xe9,0xff,0xe7,0xe7,0xe8, 0xff,0xe6,0xe6,0xe7,0xff,0xe6,0xe6,0xe7,0xff,0xe5,0xe5,0xe6,0xff,0xe5,0xe5,0xe5, 0xff,0xe4,0xe4,0xe5,0xff,0xe3,0xe3,0xe4,0xff,0x32,0x32,0x32,0xff,0xf1,0xd1,0xaa, 0xff,0x87,0x58,0x29,0xff,0x89,0x5c,0x2e,0xff,0xf9,0xdf,0xbb,0xff,0x32,0x32,0x32, 0xff,0xf3,0xf3,0xf5,0xff,0xf3,0xf3,0xf5,0xff,0xf3,0xf3,0xf4,0xff,0x9a,0xd7,0xec, 0xff,0x9,0xa9,0xde,0xff,0x9,0xa9,0xde,0xff,0x9,0xa9,0xde,0xff,0xa1,0xd8,0xeb, 0xff,0xef,0xef,0xf1,0xff,0xef,0xef,0xf0,0xff,0xee,0xee,0xf0,0xff,0xed,0xed,0xef, 0xff,0xed,0xed,0xee,0xff,0x70,0x6b,0x64,0xff,0xeb,0xeb,0xed,0xff,0xeb,0xeb,0xec, 0xff,0xd7,0xd6,0xd6,0xff,0xbb,0xb9,0xb7,0xff,0x9c,0x99,0x94,0xff,0x7f,0x7b,0x75, 0xff,0x6d,0x68,0x61,0xff,0x6d,0x68,0x61,0xff,0x6d,0x68,0x61,0xff,0xe5,0xe5,0xe6, 0xff,0xe5,0xe5,0xe5,0xff,0xe4,0xe4,0xe5,0xff,0x32,0x32,0x32,0xff,0xf2,0xd2,0xab, 0xff,0x87,0x58,0x29,0xff,0x88,0x5a,0x2d,0xff,0xf9,0xdf,0xbb,0xff,0x32,0x32,0x32, 0xff,0xf4,0xf4,0xf6,0xff,0xf3,0xf3,0xf5,0xff,0xf3,0xf3,0xf5,0xff,0xc7,0xe5,0xf0, 0xff,0x9,0xa9,0xde,0xff,0x9,0xa9,0xde,0xff,0x9,0xa9,0xde,0xff,0xc8,0xe4,0xee, 0xff,0xf0,0xf0,0xf2,0xff,0xef,0xef,0xf1,0xff,0xef,0xef,0xf0,0xff,0xee,0xee,0xf0, 0xff,0xee,0xee,0xef,0xff,0x70,0x6b,0x64,0xff,0xec,0xec,0xee,0xff,0xec,0xec,0xed, 0xff,0xeb,0xeb,0xec,0xff,0xea,0xea,0xeb,0xff,0xe9,0xe9,0xea,0xff,0xe9,0xe9,0xea, 0xff,0xe8,0xe8,0xe9,0xff,0xe7,0xe7,0xe8,0xff,0xe7,0xe7,0xe8,0xff,0xe6,0xe6,0xe7, 0xff,0xe6,0xe6,0xe6,0xff,0xe5,0xe5,0xe6,0xff,0x32,0x32,0x32,0xff,0xf3,0xd4,0xad, 0xff,0x86,0x58,0x29,0xff,0x86,0x58,0x2a,0xff,0xf9,0xde,0xbc,0xff,0x32,0x32,0x32, 0xff,0xf4,0xf4,0xf6,0xff,0xf4,0xf4,0xf6,0xff,0xf4,0xf4,0xf5,0xff,0xf3,0xf3,0xf5, 0xff,0x6f,0xc9,0xe8,0xff,0x2d,0xb4,0xe1,0xff,0x77,0xcb,0xe8,0xff,0xf1,0xf1,0xf3, 0xff,0xf1,0xf1,0xf2,0xff,0xf0,0xf0,0xf2,0xff,0xf0,0xf0,0xf1,0xff,0xef,0xef,0xf1, 0xff,0xee,0xee,0xf0,0xff,0x70,0x6b,0x64,0xff,0xed,0xed,0xee,0xff,0xec,0xec,0xee, 0xff,0xec,0xec,0xed,0xff,0xeb,0xeb,0xec,0xff,0xea,0xea,0xeb,0xff,0xea,0xea,0xeb, 0xff,0xe9,0xe9,0xea,0xff,0xe8,0xe8,0xe9,0xff,0xe8,0xe8,0xe8,0xff,0xe7,0xe7,0xe8, 0xff,0xe6,0xe6,0xe7,0xff,0xe6,0xe6,0xe6,0xff,0x32,0x32,0x32,0xff,0xf4,0xd7,0xb2, 0xff,0x85,0x56,0x28,0xff,0x82,0x53,0x26,0xff,0xf8,0xde,0xbc,0xff,0x32,0x32,0x32, 0xff,0xa0,0xa0,0xa1,0xff,0xef,0xef,0xf1,0xff,0xf4,0xf4,0xf6,0xff,0xf4,0xf4,0xf5, 0xff,0xf3,0xf3,0xf5,0xff,0xf3,0xf3,0xf5,0xff,0xf2,0xf2,0xf4,0xff,0xf2,0xf2,0xf4, 0xff,0xf1,0xf1,0xf3,0xff,0xf1,0xf1,0xf3,0xff,0xf0,0xf0,0xf2,0xff,0xb8,0xb8,0xb9, 0xff,0x75,0x75,0x75,0xff,0x70,0x6b,0x64,0xff,0x9e,0x9e,0x9f,0xff,0xd5,0xd5,0xd7, 0xff,0xed,0xed,0xee,0xff,0xec,0xec,0xed,0xff,0xeb,0xeb,0xec,0xff,0xea,0xea,0xec, 0xff,0xea,0xea,0xeb,0xff,0xe9,0xe9,0xea,0xff,0xe8,0xe8,0xe9,0xff,0xe8,0xe8,0xe9, 0xff,0xdc,0xdc,0xdd,0xff,0x8f,0x8f,0x90,0xff,0x32,0x32,0x32,0xff,0xf7,0xda,0xb8, 0xff,0x81,0x53,0x24,0xff,0x80,0x51,0x23,0xff,0x82,0x53,0x26,0xff,0x79,0x52,0x2b, 0xff,0x50,0x40,0x30,0xff,0x34,0x33,0x32,0xff,0x72,0x72,0x73,0xff,0x99,0x99,0x9a, 0xff,0xa6,0xa6,0xa8,0xff,0xbd,0xbd,0xbe,0xff,0xa6,0xa6,0xa7,0xff,0xa6,0xa6,0xa6, 0xff,0x8c,0x8c,0x8d,0xff,0x66,0x66,0x66,0xff,0x39,0x39,0x39,0xff,0x4c,0x3e,0x31, 0xff,0x6a,0x4d,0x2f,0xff,0x6d,0x4e,0x2f,0xff,0x56,0x43,0x30,0xff,0x3d,0x37,0x31, 0xff,0x48,0x48,0x48,0xff,0x70,0x70,0x70,0xff,0x7c,0x7c,0x7d,0xff,0x90,0x90,0x91, 0xff,0xa1,0xa1,0xa2,0xff,0x84,0x84,0x85,0xff,0x7b,0x7b,0x7c,0xff,0x5b,0x5b,0x5b, 0xff,0x37,0x34,0x32,0xff,0x56,0x43,0x2f,0xff,0x7c,0x53,0x29,0xff,0x82,0x53,0x25, 0xff,0x80,0x51,0x23,0xff,0xfb,0xe3,0xb7,0x0,0xfb,0xe3,0xb7,0x1,0xfb,0xe3,0xb7, 0x1,0xfb,0xe3,0xb7,0x2,0x4a,0x47,0x42,0x11,0x34,0x34,0x34,0x55,0x34,0x33,0x33, 0x88,0x34,0x33,0x33,0x9a,0x33,0x33,0x33,0xb8,0x34,0x33,0x33,0x9a,0x34,0x33,0x33, 0x9a,0x34,0x33,0x33,0x79,0x35,0x35,0x34,0x46,0x56,0x52,0x4a,0xb,0xfb,0xe3,0xb6, 0x2,0xfa,0xe2,0xb5,0x2,0xfa,0xe1,0xb4,0x2,0xf9,0xdf,0xb2,0x2,0xf8,0xde,0xb0, 0x2,0x3e,0x3d,0x3a,0x20,0x34,0x34,0x33,0x55,0x34,0x33,0x33,0x67,0x34,0x33,0x33, 0x82,0x34,0x33,0x33,0x9a,0x34,0x33,0x33,0x73,0x34,0x33,0x33,0x67,0x39,0x38,0x36, 0x3b,0xef,0xce,0x9c,0x2,0xee,0xcc,0x99,0x2,0xed,0xca,0x97,0x1,0xec,0xc8,0x94, 0x1,0xeb,0xc6,0x91,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff, 0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, 0xff,0x80,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x0,0x0, 0x1,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, 0xff,0xff,0xff,0xff,0xff, }; static const unsigned char qt_resource_name[] = { // img 0x0,0x3, 0x0,0x0,0x70,0x37, 0x0,0x69, 0x0,0x6d,0x0,0x67, // eye.ico 0x0,0x7, 0xc,0xf8,0x4f,0x5f, 0x0,0x65, 0x0,0x79,0x0,0x65,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, // 1452464368_gnome-help.ico 0x0,0x19, 0x1,0x12,0x61,0x5f, 0x0,0x31, 0x0,0x34,0x0,0x35,0x0,0x32,0x0,0x34,0x0,0x36,0x0,0x34,0x0,0x33,0x0,0x36,0x0,0x38,0x0,0x5f,0x0,0x67,0x0,0x6e,0x0,0x6f,0x0,0x6d,0x0,0x65,0x0,0x2d, 0x0,0x68,0x0,0x65,0x0,0x6c,0x0,0x70,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, // white_wall.jpeg 0x0,0xf, 0x3,0xa2,0x3b,0xf7, 0x0,0x77, 0x0,0x68,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x5f,0x0,0x77,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x2e,0x0,0x6a,0x0,0x70,0x0,0x65,0x0,0x67, // 1452464446_Message.ico 0x0,0x16, 0x2,0x30,0x3b,0x7f, 0x0,0x31, 0x0,0x34,0x0,0x35,0x0,0x32,0x0,0x34,0x0,0x36,0x0,0x34,0x0,0x34,0x0,0x34,0x0,0x36,0x0,0x5f,0x0,0x4d,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x61,0x0,0x67, 0x0,0x65,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, // logo.png 0x0,0x8, 0x5,0xe2,0x59,0x27, 0x0,0x6c, 0x0,0x6f,0x0,0x67,0x0,0x6f,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67, // logoSUB.png 0x0,0xb, 0x8,0x73,0xeb,0xc7, 0x0,0x6c, 0x0,0x6f,0x0,0x67,0x0,0x6f,0x0,0x53,0x0,0x55,0x0,0x42,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67, // LOGOFEN.png 0x0,0xb, 0xa,0x43,0x2f,0x27, 0x0,0x4c, 0x0,0x4f,0x0,0x47,0x0,0x4f,0x0,0x46,0x0,0x45,0x0,0x4e,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67, // 1452464407_address-book.ico 0x0,0x1b, 0xa,0x24,0x9e,0x5f, 0x0,0x31, 0x0,0x34,0x0,0x35,0x0,0x32,0x0,0x34,0x0,0x36,0x0,0x34,0x0,0x34,0x0,0x30,0x0,0x37,0x0,0x5f,0x0,0x61,0x0,0x64,0x0,0x64,0x0,0x72,0x0,0x65,0x0,0x73, 0x0,0x73,0x0,0x2d,0x0,0x62,0x0,0x6f,0x0,0x6f,0x0,0x6b,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, }; static const unsigned char qt_resource_struct[] = { // : 0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, // :/img 0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2, // :/img/img 0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x3, // :/img/img/1452464368_gnome-help.ico 0x0,0x0,0x0,0x20,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x2a,0xe0, // :/img/img/1452464446_Message.ico 0x0,0x0,0x0,0x7c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x5f,0x0, // :/img/img/white_wall.jpeg 0x0,0x0,0x0,0x58,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x5c,0xfd, // :/img/img/logo.png 0x0,0x0,0x0,0xae,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xd1,0x2a, // :/img/img/logoSUB.png 0x0,0x0,0x0,0xc4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x77,0xda, // :/img/img/1452464407_address-book.ico 0x0,0x0,0x0,0xfc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x1f,0xda, // :/img/img/LOGOFEN.png 0x0,0x0,0x0,0xe0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x9e,0x58, // :/img/img/eye.ico 0x0,0x0,0x0,0xc,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0, }; #ifdef QT_NAMESPACE # define QT_RCC_PREPEND_NAMESPACE(name) ::QT_NAMESPACE::name # define QT_RCC_MANGLE_NAMESPACE0(x) x # define QT_RCC_MANGLE_NAMESPACE1(a, b) a##_##b # define QT_RCC_MANGLE_NAMESPACE2(a, b) QT_RCC_MANGLE_NAMESPACE1(a,b) # define QT_RCC_MANGLE_NAMESPACE(name) QT_RCC_MANGLE_NAMESPACE2( \ QT_RCC_MANGLE_NAMESPACE0(name), QT_RCC_MANGLE_NAMESPACE0(QT_NAMESPACE)) #else # define QT_RCC_PREPEND_NAMESPACE(name) name # define QT_RCC_MANGLE_NAMESPACE(name) name #endif #ifdef QT_NAMESPACE namespace QT_NAMESPACE { #endif bool qRegisterResourceData(int, const unsigned char *, const unsigned char *, const unsigned char *); bool qUnregisterResourceData(int, const unsigned char *, const unsigned char *, const unsigned char *); #ifdef QT_NAMESPACE } #endif int QT_RCC_MANGLE_NAMESPACE(qInitResources_ressources)(); int QT_RCC_MANGLE_NAMESPACE(qInitResources_ressources)() { QT_RCC_PREPEND_NAMESPACE(qRegisterResourceData) (0x01, qt_resource_struct, qt_resource_name, qt_resource_data); return 1; } int QT_RCC_MANGLE_NAMESPACE(qCleanupResources_ressources)(); int QT_RCC_MANGLE_NAMESPACE(qCleanupResources_ressources)() { QT_RCC_PREPEND_NAMESPACE(qUnregisterResourceData) (0x01, qt_resource_struct, qt_resource_name, qt_resource_data); return 1; } namespace { struct initializer { initializer() { QT_RCC_MANGLE_NAMESPACE(qInitResources_ressources)(); } ~initializer() { QT_RCC_MANGLE_NAMESPACE(qCleanupResources_ressources)(); } } dummy; }
[ "john.bruyere@orange.fr" ]
john.bruyere@orange.fr
afc5efc930ac888444e18db4cc155a67909b1e10
e6bf17b3e658ae3684a3875f2db79fb7ae04b8b8
/POI/POI 06-Aesthetics.cpp
d149e02e53c1d284960b83c6b6411d7beec0b9c2
[]
no_license
stefdasca/CompetitiveProgramming
8e16dc50e33b309c8802b99da57b46ee98ae0619
0dbabcc5fe75177f61d232d475b99e4dbd751502
refs/heads/master
2023-07-26T15:05:30.898850
2023-07-09T08:47:52
2023-07-09T08:47:52
150,778,979
37
5
null
null
null
null
UTF-8
C++
false
false
3,639
cpp
/* POI 06-Aesthetics Let's solve this task using DP. Let ans[j][i] be the best answer we can get, if the last sequence chosen is formed from elements in range [i, j]. This can be computed easily in O(n^3) but that's not enough. However, we can optimize the complexity to O(n^2 log n) using prefix sums and binary search. Let's keep for a position x all the good subarray sums(sums not bigger than m) in sorted order. Using ans[i][j], we can create prefix sums where we will keep min in range [1, i] and in range [j, number of good subarrays ending in x]. Because we have to deal with absolute value, we have to do a "normalization". Namely, if we have a value sol and the corresponding subarray sum is p, we will update the first prefix sum array with ans[j][i] + m - p, and the second one with ans[i][j] + p. Why are we doing this? Because we can now assume that our sum is every value we want, and finding ans[j][i] based on the answers found at step (i-1) is easy now with one binary search. */ #include<bits/stdc++.h> #define god dimasi5eks #pragma GCC optimize("O3") #define fi first #define se second #define pb push_back #define pf push_front #define mod 1000000007 #define dancila 3.14159265359 #define eps 1e-9 // #define fisier using namespace std; typedef long long ll; int m, n, v[2002], sp[2002]; int vals[2002][2002], sz[2002], ans[2002][2002], poz[2002][2002]; int mini[2002][2002], minidr[2002][2002]; void build(int pz) { for(int i = pz; i >= 1; --i) { int am = sp[pz] - sp[i-1] + (pz - i); if(am <= m) vals[pz][++sz[pz]] = am, poz[pz][sz[pz]] = i; } for(int i = 1; i <= sz[pz]; ++i) { if(i == 1) mini[pz][i] = ans[pz][poz[pz][i]] + m - vals[pz][i]; else mini[pz][i] = min(mini[pz][i-1], ans[pz][poz[pz][i]] + m - vals[pz][i]); } for(int i = sz[pz]; i >= 1; --i) { if(i == sz[pz]) minidr[pz][i] = ans[pz][poz[pz][i]] + vals[pz][i]; else minidr[pz][i] = min(minidr[pz][i+1], ans[pz][poz[pz][i]] + vals[pz][i]); } } int binsearch(int wh, int val) { int st = 1; int dr = sz[wh]; int ans = 0; while(st <= dr) { int mid = (st + dr) / 2; if(vals[wh][mid] <= val) ans = mid, st = mid + 1; else dr = mid - 1; } return ans; } int main() { #ifdef fisier ifstream f("input.in"); ofstream g("output.out"); #endif ios_base::sync_with_stdio(false); cin.tie(NULL); cin >> m >> n; for(int i = 1; i <= n; ++i) cin >> v[i]; for(int i = 1; i <= n; ++i) sp[i] = sp[i-1] + v[i]; int anss = 210000000; int lps = 1; for(int i = 1; i <= n; ++i) { for(int j = i; j >= 1; --j) { int am = sp[i] - sp[j-1] + (i - j); if(am > m) break; if(j == 1) { if(i == n) anss = 0; continue; } int pz = binsearch(j - 1, am); int vaa = 210000000; int vbb = 210000000; if(pz != 0) vaa = mini[j-1][pz] - (m - am); if(pz != sz[j-1]) vbb = minidr[j-1][pz+1] - am; if(i == n) anss = min(anss, min(vaa, vbb)); if(j != 1) ans[i][j] = min(vaa, vbb); } build(i); } cout << anss; return 0; }
[ "noreply@github.com" ]
stefdasca.noreply@github.com
07e7e61f07adb768094af369d2d2a592d590435d
325e5f3797205c290cb24a63430897cf278b25f0
/sequencer/MmlCompiler.h
9cdef5bfee5f122945f999ee26870711943ca011
[ "CC0-1.0" ]
permissive
tr-takatsuka/rlib-MML
37952bdfe909de2481bc688df87c3b29aaefc564
f03b391bb3470ad18f4bac65e9c57b0fc78ae02b
refs/heads/master
2023-08-05T22:41:50.042264
2021-07-15T12:07:45
2021-07-15T12:07:45
384,032,101
3
0
CC0-1.0
2021-07-15T12:07:46
2021-07-08T07:02:07
C++
UTF-8
C++
false
false
4,208
h
#pragma once namespace rlib::sequencer { class MmlCompiler { static constexpr int timeBase = 480; // 分解能(4分音符あたりのカウント) class Inner; public: struct Event { size_t position = 0; virtual ~Event() {} }; struct EventTempo : public Event { double tempo = 0.0; }; struct EventProgramChange : public Event { uint8_t programNo = 0; }; struct EventVolume : public Event { uint8_t volume = 0; // 音量値 0~127 }; struct EventPan : public Event { uint8_t pan = 0; // パン値 0~127 }; struct EventNote : public Event { uint8_t note = 0; // ノート番号 0~127 size_t length = 0; // 音長(ステップ数) uint8_t velocity = 0; // ベロシティ(0~127) }; struct LessEvent { typedef void is_transparent; bool operator()(const std::shared_ptr<const Event>& a, const std::shared_ptr<const Event>& b)const { return a->position < b->position; } bool operator()(const size_t a, const std::shared_ptr<const Event>& b)const { return a < b->position; } bool operator()(const std::shared_ptr<const Event>& a, const size_t b)const { return a->position < b; } }; struct Port { uint8_t channel = 0; // チャンネル std::multiset<std::shared_ptr<const Event>, LessEvent> eventList; }; using Result = std::vector<Port>; public: // parse error struct Exception : public std::runtime_error { enum class Code { lengthError = 1, // 音長の指定に誤りがあります lengthMinusError, // 音長を負値にはできません commentError, // コメント指定に誤りがあります argumentError, // 関数の引数指定に誤りがあります functionCallError, // 関数呼び出しに誤りがあります unknownNumberError, // 数値の指定に誤りがあります vCommandError, // ベロシティ指定(v コマンド)に誤りがあります vCommandRangeError, // ベロシティ指定(v コマンド)の値が範囲外です lCommandError, // デフォルト音長指定(l コマンド)に誤りがあります oCommandError, // オクターブ指定(o コマンド)に誤りがあります oCommandRangeError, // オクターブ指定(o コマンド)の値が範囲外です tCommandRangeError, // テンポ指定(t コマンド)に誤りがあります programchangeCommandError, // 音色指定(@ コマンド)に誤りがあります rCommandRangeError, // 休符指定(r コマンド)に誤りがあります noteCommandRangeError, // 音符指定(a~g コマンド)に誤りがあります octaveUpDownCommandError, // オクターブアップダウン( < , > コマンド)に誤りがあります octaveUpDownRangeCommandError, // オクターブ値が範囲外です tieCommandError, // タイ(^ コマンド)に誤りがあります createPortPortNameError, // createPort コマンドのポート名指定に誤りがあります createPortDuplicateError, // createPort コマンドでポート名が重複しています createPortChannelError, // createPort コマンドのチャンネル指定に誤りがあります portNameError, // port コマンドのポート名指定に誤りがあります volumeError, // volume コマンドの指定に誤りがあります volumeRangeError, // volume コマンドの値が範囲外です panError , // pan コマンドの指定に誤りがあります panRangeError, // pan コマンドの値が範囲外です unknownError, // 解析出来ない書式です stdEexceptionError, // std::excption エラーです }; const Code code; const std::string::const_iterator it; const std::string errorWord; // MML内のエラーとなった箇所の文字列 const std::string annotate; Exception(Code code_,const std::string::const_iterator& itBegin, const std::string::const_iterator& itEnd, const std::string& annotate_ = ""); static std::string getMessage(Code code); }; static Result compile(const std::string& mml); }; }
[ "takatsuka@thinkridge.com" ]
takatsuka@thinkridge.com
2c42856022c8cd06734a79ad9b0293d7d6abb3fa
7721c6a2f7da3eca9a56525318f61b42c1be29da
/3 minggu/Unit3.cpp
d2f6a23d7e7cba07fd5050a985ded7de8ee1a5d9
[]
no_license
DyoRizqal/Apotik
5e7960703815b887b0f961e05263f5663a1a8f68
6e501f7d61a20a305599298e89f827e75d2a9456
refs/heads/master
2021-01-22T15:43:38.130549
2015-05-27T15:08:33
2015-05-27T15:08:33
null
0
0
null
null
null
null
UTF-8
C++
false
false
32,320
cpp
//--------------------------------------------------------------------------- #include <vcl.h> #pragma hdrstop #include "Unit1.h" #include "Unit3.h" #include "Unit4.h" //--------------------------------------------------------------------------- #pragma package(smart_init) #pragma resource "*.dfm" TForm3 *Form3; const int AppBarHeight = 75; //--------------------------------------------------------------------------- __fastcall TForm3::TForm3(TComponent* Owner) : TForm(Owner) { } //--------------------------------------------------------------------------- void __fastcall TForm3::AppBarResize() { AppBar->SetBounds(0, AppBar->Parent->Height - AppBarHeight, AppBar->Parent->Width, AppBarHeight); } //--------------------------------------------------------------------------- void __fastcall TForm3::AppBarShow(int mode) { if (mode == -1) mode = AppBar->Visible ? 0 : 1; if (mode == 0) AppBar->Visible = False; else { AppBar->Visible = True; AppBar->BringToFront(); } } //--------------------------------------------------------------------------- void __fastcall TForm3::CloseButtonClick(TObject *Sender) { Application->Terminate(); } //--------------------------------------------------------------------------- void __fastcall TForm3::Action1Execute(TObject *Sender) { AppBarShow(-1); } //--------------------------------------------------------------------------- void __fastcall TForm3::FormResize(TObject *Sender) { AppBarResize(); } //--------------------------------------------------------------------------- void __fastcall TForm3::FormKeyDown(TObject *Sender, WORD &Key, TShiftState Shift) { AppBarShow( (Key == VK_ESCAPE) ? -1 : 0 ); } //--------------------------------------------------------------------------- void __fastcall TForm3::FormGesture(TObject *Sender, const TGestureEventInfo &EventInfo, bool &Handled) { AppBarShow( 0 ); } //--------------------------------------------------------------------------- void __fastcall TForm3::Button1Click(TObject *Sender) { if(nama->Text=="" && pass->Text==""){ MessageBoxA(0,"Kamu Belum Memasukan Nama Ataupun Password","APOTIK SEJATI",MB_ICONWARNING|MB_OK); } DM1->admin->Close(); DM1->admin->SQL->Clear(); DM1->admin->SQL->Add("select *from admin where username='"+nama->Text+"'"); DM1->admin->Open(); if(!DM1->admin->IsEmpty()){ if(DM1->admin->FieldByName("password")->AsString == pass->Text){ MessageBoxA(0,"Selamat Datang Admin","Info Admin", MB_ICONINFORMATION | MB_OK); nama->Clear(); pass->Clear(); pass->TextHint="Password"; Edit1->Text="form1"; } else{ MessageBoxA(0,"Password Salah","Info Admin", MB_ICONWARNING | MB_OK); pass->Text=""; } } else{ MessageBoxA(0,"Nama Salah","Info Admin", MB_ICONWARNING | MB_OK); nama->Text=""; pass->Text=""; } } //--------------------------------------------------------------------------- void __fastcall TForm3::Timer1Timer(TObject *Sender) { if(Edit1->Text=="form1") { int a = (1550-Panel2->Left)/25; if(Panel2->Left<1550) { Panel2->Left++; Panel2->Left+=a; } } else if(Edit1->Text=="ts") { int a = (Panel2->Left-(-2))/10; if(Panel2->Left>(-2)) { Panel2->Left--; Panel2->Left-=a; Panel3->Height=0; Panel7->Height=0; } } } //--------------------------------------------------------------------------- void __fastcall TForm3::namaKeyDown(TObject *Sender, WORD &Key, TShiftState Shift) { if(Key == 13) { Button1->Click(); } } //--------------------------------------------------------------------------- void __fastcall TForm3::Panel3MouseMove(TObject *Sender, TShiftState Shift, int X, int Y) { Edit1->Text="tampil"; } //--------------------------------------------------------------------------- void __fastcall TForm3::Label1Click(TObject *Sender) { Edit1->Text="menu"; } //--------------------------------------------------------------------------- void __fastcall TForm3::Label2Click(TObject *Sender) { Edit1->Text="ts"; } //--------------------------------------------------------------------------- void __fastcall TForm3::Image5MouseMove(TObject *Sender, TShiftState Shift, int X, int Y) { Shape1->Visible=true; Panel37->Color=clWhite; Label8->Font->Color=clBlack; Image4->Visible=true; Image5->Visible=false; } //--------------------------------------------------------------------------- void __fastcall TForm3::Image5MouseLeave(TObject *Sender) { Shape1->Visible=false; Panel37->Color=clBlack; Label8->Font->Color=clWhite; } //--------------------------------------------------------------------------- void __fastcall TForm3::Image4Click(TObject *Sender) { Edit1->Text="asd"; } //--------------------------------------------------------------------------- void __fastcall TForm3::Label1MouseMove(TObject *Sender, TShiftState Shift, int X, int Y) { Label1->Font->Color=clBlack; Shape2->Visible=true; Label57->Visible=true; } //--------------------------------------------------------------------------- void __fastcall TForm3::Label1MouseLeave(TObject *Sender) { Label1->Font->Color=clWhite; Shape2->Visible=false; Label57->Visible=false; } //--------------------------------------------------------------------------- void __fastcall TForm3::Panel4MouseMove(TObject *Sender, TShiftState Shift, int X, int Y) { Panel4->Color=clGradientActiveCaption;; } //--------------------------------------------------------------------------- void __fastcall TForm3::Panel4MouseLeave(TObject *Sender) { Panel4->Color=clBlack; } //--------------------------------------------------------------------------- void __fastcall TForm3::Label3Click(TObject *Sender) { Panel10->Visible=false; ubah->Visible=false; Panel15->Visible=false; Edit1->Text="asd"; } //--------------------------------------------------------------------------- void __fastcall TForm3::Panel4Click(TObject *Sender) { Edit1->Text="ts"; } //--------------------------------------------------------------------------- void __fastcall TForm3::Timer2Timer(TObject *Sender) { if(Edit1->Text=="menu") { int a = (95-Panel3->Height)/3; if(Panel3->Height<95) { Panel3->Height++; Panel3->Height+=a; } } else if(Edit1->Text=="asd") { int a = (Panel3->Height-(0))/3; if(Panel3->Height>(0)) { Panel3->Height--; Panel3->Height-=a; } } if(Edit1->Text=="user") { int a = (105-Panel7->Height)/4; if(Panel7->Height<105) { Panel7->Height++; Panel7->Height+=a; } } else if(Edit1->Text=="asd") { int a = (Panel7->Height-(0))/3; if(Panel7->Height>(0)) { Panel7->Height--; Panel7->Height-=a; } } } //--------------------------------------------------------------------------- void __fastcall TForm3::FormClick(TObject *Sender) { Edit1->Text="asd"; } //--------------------------------------------------------------------------- void __fastcall TForm3::Image5Click(TObject *Sender) { Edit1->Text="user"; } //--------------------------------------------------------------------------- void __fastcall TForm3::Panel8MouseMove(TObject *Sender, TShiftState Shift, int X, int Y) { Panel8->Color=clGradientActiveCaption; } //--------------------------------------------------------------------------- void __fastcall TForm3::Panel8MouseLeave(TObject *Sender) { Panel8->Color=clBlack; } //--------------------------------------------------------------------------- void __fastcall TForm3::Panel5MouseMove(TObject *Sender, TShiftState Shift, int X, int Y) { Panel5->Color=clGradientActiveCaption; } //--------------------------------------------------------------------------- void __fastcall TForm3::Panel5MouseLeave(TObject *Sender) { Panel5->Color=clBlack; } //--------------------------------------------------------------------------- void __fastcall TForm3::Panel9Click(TObject *Sender) { hapus->Visible=false; Panel15->Visible=false; Panel10->Visible=false; nama1->Clear(); Label19->Caption=""; Edit4->Clear(); Edit3->Clear(); Label17->Caption=""; Label14->Caption=""; } //--------------------------------------------------------------------------- void __fastcall TForm3::Label5Click(TObject *Sender) { Panel25->Visible=false; hapus->Visible=true; Edit1->Text="asd"; } //--------------------------------------------------------------------------- void __fastcall TForm3::Panel9MouseMove(TObject *Sender, TShiftState Shift, int X, int Y) { Panel9->Color=clRed; } //--------------------------------------------------------------------------- void __fastcall TForm3::Panel9MouseLeave(TObject *Sender) { Panel9->Color=clBlack; } //--------------------------------------------------------------------------- void __fastcall TForm3::nama1KeyDown(TObject *Sender, WORD &Key, TShiftState Shift) { if(Key == 13) { Button2->Click(); } } //--------------------------------------------------------------------------- void __fastcall TForm3::Button2Click(TObject *Sender) { if (nama1->Text == "") { MessageBoxA (0,"Anda Harus Mencari Nama Pendaftar","Info Penting",MB_ICONWARNING | MB_OK); } else { DM1->pasien->Close(); DM1->pasien->SQL->Clear(); DM1->pasien->SQL->Add("select *from pasien where nama like'%"+nama1->Text+"%'"); DM1->pasien->Open(); if (!DM1->pasien->IsEmpty()) { Panel10->Visible=true; nama1->Text= DM1->pasien->FieldByName("nama")->AsString; Edit4->Text= DM1->pasien->FieldByName("nama obat")->AsString; Edit3->Text= DM1->pasien->FieldByName("jb")->AsString; Label14->Caption= DM1->pasien->FieldByName("jumlah")->AsString; Label17->Caption= DM1->pasien->FieldByName("ha")->AsString; Label19->Caption= DM1->pasien->FieldByName("alamat")->AsString; Label21->Caption= "Apakah anda yakin ingin membatalkan pesanan "+DM1->pasien->FieldByName("nama obat")->AsString+" ?"; } else if (DM1->pasien->IsEmpty()) { MessageBoxA (0,"Maaf Nama Yang Anda Cari Tidak Tersedia","Info !!!",MB_ICONWARNING | MB_OK); nama1->Clear(); } } } //--------------------------------------------------------------------------- void __fastcall TForm3::Panel13Click(TObject *Sender) { if(Edit3->Text==""||Edit4->Text==""){ MessageBoxA(0,"Maaf,Kamu belum memesan obat","Info!!",MB_ICONERROR|MB_OK); } else{ Panel15->Visible=true; } } //--------------------------------------------------------------------------- void __fastcall TForm3::Edit4Click(TObject *Sender) { MessageBoxA(0,"Maaf,Kamu Tidak Bisa Mengubah Pesanan Obat.","Info!!",MB_ICONERROR|MB_OK); } //--------------------------------------------------------------------------- void __fastcall TForm3::Panel17MouseMove(TObject *Sender, TShiftState Shift, int X, int Y) { Panel17->Color=clRed; } //--------------------------------------------------------------------------- void __fastcall TForm3::Panel17MouseLeave(TObject *Sender) { Panel17->Color=clBlack; } //--------------------------------------------------------------------------- void __fastcall TForm3::Panel17Click(TObject *Sender) { Panel15->Visible=false; } //--------------------------------------------------------------------------- void __fastcall TForm3::Button4Click(TObject *Sender) { MessageBoxA(0,"Pesanan Tidak Dibatalkan!","Info",MB_ICONINFORMATION|MB_OK); Panel15->Visible=false; } //--------------------------------------------------------------------------- void __fastcall TForm3::Button3Click(TObject *Sender) { DM1->promo->Close(); DM1->promo->SQL->Clear(); DM1->promo->SQL->Add("select * from promo where nama='"+Edit4->Text+"'"); DM1->promo->Open(); DM1->promo->Edit(); int a,b; a = StrToInt(Edit3->Text); b=StrToInt(DM1->promo->FieldByName("stock")->AsString); Edit20->Text=a+b; DM1->promo->FieldByName("stock")->AsString = Edit20->Text; DM1->promo->Post(); Edit20->Text="Batal"; DM1->beli->Close(); DM1->beli->SQL->Clear(); DM1->beli->SQL->Add("select * from beli where nama='"+nama1->Text+"'"); DM1->beli->Open(); DM1->beli->Edit(); DM1->beli->FieldByName("ket")->AsString = Edit20->Text; DM1->beli->Post(); DM1->pasien->Close(); DM1->pasien->SQL->Clear(); DM1->pasien->SQL->Add("delete from pasien where nama = '"+nama1->Text+"'"); DM1->pasien->ExecSQL(); MessageBoxA(0,"Pesanan Berhasil Dibatalkan!","Info",MB_ICONINFORMATION|MB_OK); Panel10->Visible=false; Panel15->Visible=false; nama1->Clear(); Label19->Caption=""; Edit4->Clear(); Edit3->Clear(); Label17->Caption=""; Label14->Caption=""; } //--------------------------------------------------------------------------- void __fastcall TForm3::Edit3Click(TObject *Sender) { MessageBoxA(0,"Silahkan masukan digit untuk mengubah","Info",MB_ICONINFORMATION|MB_OK); } //--------------------------------------------------------------------------- void __fastcall TForm3::Panel14Click(TObject *Sender) { DM1->promo->Close(); DM1->promo->SQL->Clear(); DM1->promo->SQL->Add("select * from promo where nama='"+Edit4->Text+"'"); DM1->promo->Open(); DM1->pasien->Close(); DM1->pasien->SQL->Clear(); DM1->pasien->SQL->Add("select * from pasien where nama='"+nama1->Text+"'"); DM1->pasien->Open(); Edit5->Text=Edit3->Text; if (Edit3->Text==0) { MessageBoxA(0,"Kamu belum memesan obat 1 pun.","Info",MB_ICONINFORMATION|MB_OK); } else{ ubah->Visible=true; Label20->Caption= "Apakah anda yakin ingin mengubah pesanan"; Label65->Caption="'"+DM1->pasien->FieldByName("nama obat")->AsString+" menjadi "+Edit3->Text+" ?"; } } //--------------------------------------------------------------------------- void __fastcall TForm3::Button6Click(TObject *Sender) { MessageBoxA(0,"Pesanan Tidak Diubah!","Info",MB_ICONINFORMATION|MB_OK); ubah->Visible=false; } //--------------------------------------------------------------------------- void __fastcall TForm3::Button5Click(TObject *Sender) { /* int a,b,c; a=StrToInt(Edit3->Text); b=StrToInt(Label17->Caption); c=StrToInt(DM1->promo->FieldByName("stock")->AsString); Label14->Caption=a*b; Edit5->Text=c-a;*/ int a,b,c; a=StrToInt(Edit3->Text); b=StrToInt(Label17->Caption); c=StrToInt(DM1->promo->FieldByName("stock")->AsString); Label14->Caption=a*b; Edit20->Text=c-a; DM1->pasien->Close(); DM1->pasien->SQL->Clear(); DM1->pasien->SQL->Add("select * from pasien where nama='"+nama1->Text+"'"); DM1->pasien->Open(); DM1->pasien->Edit(); DM1->promo->Close(); DM1->promo->SQL->Clear(); DM1->promo->SQL->Add("select * from promo where nama='"+Edit4->Text+"'"); DM1->promo->Open(); DM1->promo->Edit(); if(Edit3->Text== DM1->pasien->FieldByName("jb")->AsString){ MessageBoxA(0,"Jumlah tidak diubah!","Info",MB_ICONINFORMATION|MB_OK); ubah->Visible=false; } else{ DM1->pasien->FieldByName("jb")->AsString = Edit3->Text; DM1->pasien->FieldByName("jumlah")->AsString = Label14->Caption; DM1->promo->FieldByName("stock")->AsString = Edit20->Text; MessageBoxA(0,"Jumlah pesanan diubah! ","Info",MB_ICONINFORMATION|MB_OK); DM1->pasien->Post(); DM1->promo->Post(); ubah->Visible=false; nama1->Clear(); Label19->Caption=""; Edit4->Clear(); Edit3->Clear(); Label17->Caption=""; Label14->Caption=""; } } //--------------------------------------------------------------------------- void __fastcall TForm3::Panel24Click(TObject *Sender) { if(Edit4->Text==""){ MessageBoxA(0,"Kamu belum memesan obat di Apotik ini","info",MB_ICONWARNING|MB_OK); } else { DM1->promo->Close(); DM1->promo->SQL->Clear(); DM1->promo->SQL->Add("select * from promo where nama='"+Edit4->Text+"'"); DM1->promo->Open(); Label22->Caption= "Stock barang "+DM1->promo->FieldByName("nama")->AsString+""; Label58->Caption= "masih tersisa "+DM1->promo->FieldByName("stock")->AsString+""; stock->Visible=true; } } //--------------------------------------------------------------------------- void __fastcall TForm3::Panel23Click(TObject *Sender) { stock->Visible=false; } //--------------------------------------------------------------------------- void __fastcall TForm3::Panel23MouseMove(TObject *Sender, TShiftState Shift, int X, int Y) { Panel23->Color=clRed; } //--------------------------------------------------------------------------- void __fastcall TForm3::Panel23MouseLeave(TObject *Sender) { Panel23->Color=clBlack; } //--------------------------------------------------------------------------- void __fastcall TForm3::Button8Click(TObject *Sender) { stock->Visible=false; } //--------------------------------------------------------------------------- void __fastcall TForm3::Panel21MouseLeave(TObject *Sender) { Panel21->Color=clBlack; } //--------------------------------------------------------------------------- void __fastcall TForm3::Panel21MouseMove(TObject *Sender, TShiftState Shift, int X, int Y) { Panel21->Color=clRed; } //--------------------------------------------------------------------------- void __fastcall TForm3::Label23Click(TObject *Sender) { MessageBoxA(0,"Aplikasi akan ditutup! ","Info",MB_ICONWARNING|MB_OK); Application->Terminate(); } //--------------------------------------------------------------------------- void __fastcall TForm3::Panel19MouseMove(TObject *Sender, TShiftState Shift, int X, int Y) { Panel19->Color=clGradientActiveCaption;; } //--------------------------------------------------------------------------- void __fastcall TForm3::Panel19MouseLeave(TObject *Sender) { Panel19->Color=clBlack; } //--------------------------------------------------------------------------- void __fastcall TForm3::Image2Click(TObject *Sender) { stock->Visible=false; ubah->Visible=false; Panel15->Visible=false; hapus->Visible=false; Panel10->Visible=false; daftar->Visible=true; Edit1->Text="asd"; Panel25->Visible=true; } //--------------------------------------------------------------------------- void __fastcall TForm3::Panel26Click(TObject *Sender) { daftar->Visible=false; Panel25->Visible=false; Edit6->Clear(); Edit7->Clear(); Edit8->Clear(); } //--------------------------------------------------------------------------- void __fastcall TForm3::Panel26MouseMove(TObject *Sender, TShiftState Shift, int X, int Y) { Panel26->Color=clRed; } //--------------------------------------------------------------------------- void __fastcall TForm3::Panel26MouseLeave(TObject *Sender) { Panel26->Color=clBlack; } //--------------------------------------------------------------------------- void __fastcall TForm3::Panel27Click(TObject *Sender) { if(Edit6->Text==""){ MessageBoxA(0,"Nama tidak boleh kosong","Error",MB_ICONWARNING|MB_OK); } else if(Edit7->Text==""){ MessageBoxA(0,"Email harus diisi","Error",MB_ICONWARNING|MB_OK); } else if(Edit8->Text==""){ MessageBoxA(0,"Nomor telpon masih kosong","Error",MB_ICONWARNING|MB_OK); } else if(Memo1->Lines->Text==""){ MessageBoxA(0,"Alamat tidak boleh kosong","Error",MB_ICONWARNING|MB_OK); } else if(Edit9->Text==""){ MessageBoxA(0,"Rt/rw belum terisi","Error",MB_ICONWARNING|MB_OK); } else if(Edit10->Text==""){ MessageBoxA(0,"Kelurahan harus diisi","Error",MB_ICONWARNING|MB_OK); } else if(Edit11->Text==""){ MessageBoxA(0,"Kecamatan masih kosong","Error",MB_ICONWARNING|MB_OK); } else if(Edit12->Text==""){ MessageBoxA(0,"Kabupaten belum terisi","Error",MB_ICONWARNING|MB_OK); } else{ DM1->pasien->Close(); DM1->pasien->SQL->Clear(); DM1->pasien->SQL->Add("select * from pasien"); DM1->pasien->Open(); DM1->pasien->Append(); DM1->pasien->FieldByName("nama")->AsString = Edit6->Text; DM1->pasien->FieldByName("email")->AsString = Edit7->Text; DM1->pasien->FieldByName("no")->AsString = Edit8->Text; DM1->pasien->FieldByName("alamat")->AsString = Memo1->Lines->Text; DM1->pasien->FieldByName("rt")->AsString = Edit9->Text; DM1->pasien->FieldByName("kelurahan")->AsString = Edit10->Text; DM1->pasien->FieldByName("kecamatan")->AsString = Edit11->Text; DM1->pasien->FieldByName("kabupaten")->AsString = Edit12->Text; DM1->pasien->FieldByName("provinsi")->AsString = Edit13->Text; DM1->pasien->FieldByName("kodepos")->AsString = Edit14->Text; DM1->pasien->FieldByName("pekerjaan")->AsString = Edit15->Text; DM1->pasien->FieldByName("tgllahir")->AsString = Edit16->Text; DM1->pasien->FieldByName("jk")->AsString = jk->Text; DM1->pasien->FieldByName("tmplahir")->AsString = tempat->Text; DM1->pasien->Post(); pesan->Visible=true; Label40->Caption="Terima kasih saudara "+Edit6->Text+" sudah ingin mendaftar."; Label41->Caption="Apakah saudara ingin memesan obat ?"; Edit17->Text=Edit6->Text; Edit6->Clear(); Edit7->Clear(); Edit8->Clear(); Memo1->Lines->Clear(); Edit9->Clear(); Edit10->Clear(); Edit11->Clear(); Edit12->Clear(); Edit13->Clear(); Edit14->Clear(); Edit15->Clear(); Edit16->Clear(); jk->Text=""; tempat->Clear(); } } //--------------------------------------------------------------------------- void __fastcall TForm3::Panel21Click(TObject *Sender) { ubah->Visible=false; } //--------------------------------------------------------------------------- void __fastcall TForm3::Panel30MouseLeave(TObject *Sender) { Panel30->Color=clBlack; } //--------------------------------------------------------------------------- void __fastcall TForm3::Panel30MouseMove(TObject *Sender, TShiftState Shift, int X, int Y) { Panel30->Color=clRed; } //--------------------------------------------------------------------------- void __fastcall TForm3::Panel30Click(TObject *Sender) { pesan->Visible=false; } //--------------------------------------------------------------------------- void __fastcall TForm3::Button9Click(TObject *Sender) { pesan->Visible=false; } //--------------------------------------------------------------------------- void __fastcall TForm3::Button7Click(TObject *Sender) { ubah->Visible=false; daftar->Visible=false; Panel10->Visible=false; pesan->Visible=false; mesan->Visible=true; Panel25->Visible=false; } //--------------------------------------------------------------------------- void __fastcall TForm3::Panel33MouseLeave(TObject *Sender) { Panel33->Color=clBlack; } //--------------------------------------------------------------------------- void __fastcall TForm3::Panel33MouseMove(TObject *Sender, TShiftState Shift, int X, int Y) { Panel33->Color=clRed; } //--------------------------------------------------------------------------- void __fastcall TForm3::Panel33Click(TObject *Sender) { mesan->Visible=false; } //--------------------------------------------------------------------------- void __fastcall TForm3::keluhanChange(TObject *Sender) { DM1->promo->Close(); DM1->promo->SQL->Clear(); DM1->promo->SQL->Add("select *from promo where guna like'%"+keluhan->Text+"%'"); DM1->promo->Open(); int obat1 = 1; int jumlahobat = DM1->promo->RecordCount; obat->Clear(); while(obat1 <= jumlahobat ){ obat->Items->Add(DM1->promo->FieldByName("nama")->AsString); DM1->promo->Next(); obat1++; } } //--------------------------------------------------------------------------- void __fastcall TForm3::obatChange(TObject *Sender) { DM1->promo->Close(); DM1->promo->SQL->Clear(); DM1->promo->SQL->Add("select *from promo where nama='"+obat->Text+"'"); DM1->promo->Open(); int jumlah = 1; int jumlahobat = DM1->promo->RecordCount; Memo2->Clear(); while(jumlah <= jumlahobat ){ Memo2->Lines->Add(DM1->promo->FieldByName("guna")->AsString); Memo3->Lines->Add(DM1->promo->FieldByName("dosis")->AsString); Memo4->Lines->Add(DM1->promo->FieldByName("efek")->AsString); Label48->Caption=DM1->promo->FieldByName("harga")->AsString; Label52->Visible=true; //Image7->Picture->LoadFromFile("C:\\xampp\\htdocs\\apotik1\\'"+DM1->promo->FieldByName("gambar")->AsString+"'"); DM1->promo->Next(); jumlah++; } } //--------------------------------------------------------------------------- void __fastcall TForm3::Panel31Click(TObject *Sender) { mesan->Visible=true; daftar->Visible=false; ubah->Visible=false; hapus->Visible=false; } //--------------------------------------------------------------------------- void __fastcall TForm3::Panel34Click(TObject *Sender) { if(obat->Text==""){ MessageBoxA(0,"Kamu belum memesan obat!!","Info!!",MB_ICONERROR|MB_OK); } else{ jumlah->Visible=true; Label49->Visible=true; Panel38->Visible=true; } } //--------------------------------------------------------------------------- void __fastcall TForm3::jumlahChange(TObject *Sender) { int a,b; a=StrToInt(Label48->Caption); b=StrToInt(jumlah->Value); Label50->Caption=a*b; Panel35->Visible=true; } //--------------------------------------------------------------------------- void __fastcall TForm3::Panel38Click(TObject *Sender) { DM1->beli->Close(); DM1->beli->SQL->Clear(); DM1->beli->SQL->Add("select * from beli"); DM1->beli->Open(); DM1->beli->Append(); DM1->beli->FieldByName("nama")->AsString = Edit17->Text; DM1->beli->FieldByName("obat")->AsString = obat->Text; DM1->beli->FieldByName("keluhan")->AsString = keluhan->Text; DM1->beli->FieldByName("guna")->AsString = Memo2->Lines->Text; DM1->beli->FieldByName("dosis")->AsString = Memo3->Lines->Text; DM1->beli->FieldByName("efek")->AsString = Memo4->Lines->Text; DM1->beli->FieldByName("harga")->AsString = Label48->Caption; DM1->beli->FieldByName("jumlahobat")->AsString = jumlah->Value; DM1->beli->FieldByName("bayar")->AsString = Label50->Caption; DM1->beli->Post(); DM1->pasien->Close(); DM1->pasien->SQL->Clear(); DM1->pasien->SQL->Add("select * from pasien where nama='"+Edit17->Text+"'"); DM1->pasien->Open(); DM1->pasien->Edit(); DM1->pasien->FieldByName("nama obat")->AsString = obat->Text; DM1->pasien->FieldByName("jb")->AsString = jumlah->Text; DM1->pasien->FieldByName("ha")->AsString = Label48->Caption; DM1->pasien->FieldByName("jumlah")->AsString = Label50->Caption; DM1->pasien->Post(); int a,b,c; a=StrToInt(jumlah->Value); c=StrToInt(DM1->promo->FieldByName("stock")->AsString); Edit19->Text=c-a; DM1->promo->Close(); DM1->promo->SQL->Clear(); DM1->promo->SQL->Add("select * from promo where nama='"+obat->Text+"'"); DM1->promo->Open(); DM1->promo->Edit(); DM1->promo->FieldByName("stock")->AsString = Edit19->Text; DM1->promo->Post(); obat->Text=""; keluhan->Text=""; Memo2->Lines->Text=""; Memo3->Lines->Text=""; Memo4->Lines->Text=""; Label48->Caption=""; jumlah->Clear(); Label50->Caption=""; Panel38->Visible=false; mesan->Visible=false; } //--------------------------------------------------------------------------- void __fastcall TForm3::Panel39MouseMove(TObject *Sender, TShiftState Shift, int X, int Y) { Panel39->Color=clRed; } //--------------------------------------------------------------------------- void __fastcall TForm3::Panel39MouseLeave(TObject *Sender) { Panel39->Color=clBlack; } //--------------------------------------------------------------------------- void __fastcall TForm3::Panel39Click(TObject *Sender) { mesan->Visible=false; } //--------------------------------------------------------------------------- void __fastcall TForm3::Panel42MouseMove(TObject *Sender, TShiftState Shift, int X, int Y) { Panel42->Color=clRed; } //--------------------------------------------------------------------------- void __fastcall TForm3::Panel42MouseLeave(TObject *Sender) { Panel42->Color=clBlack; } //--------------------------------------------------------------------------- void __fastcall TForm3::Panel42Click(TObject *Sender) { Edit1->Text="ts"; } //--------------------------------------------------------------------------- void __fastcall TForm3::Timer3Timer(TObject *Sender) { if(Edit2->Text=="report") { int a = (165-Shape3->Height)/5; int b = (Panel43->Top-(115))/5; if(Shape3->Height<165) { Shape3->Height++; Shape3->Height+=a; } if(Panel43->Top>(115)) { Panel43->Top--; Panel43->Top-=a; } } if(Edit2->Text=="report1") { int a = (Shape3->Height-(133))/5; int b = (171-Panel43->Top)/5; if(Shape3->Height>(133)) { Shape3->Height--; Shape3->Height-=a; } else if(Panel43->Top<171) { Panel43->Top++; Panel43->Top+=b; } } if(Edit2->Text=="pasien") { int a = (165-Panel44->Height)/5; int b = (Panel45->Top-(115))/5; if(Panel44->Height<165) { Panel44->Height++; Panel44->Height+=a; } if(Panel45->Top>(115)) { Panel45->Top--; Panel45->Top-=a; } } if(Edit2->Text=="pasien1") { int a = (Panel44->Height-(133))/5; int b = (171-Panel45->Top)/5; if(Panel44->Height>(133)) { Panel44->Height--; Panel44->Height-=a; } else if(Panel45->Top<171) { Panel45->Top++; Panel45->Top+=b; } } if(Edit18->Text=="tambah") { int a = (1550-Panel40->Left)/25; if(Panel40->Left<1550) { Panel40->Left++; Panel40->Left+=a; } } if(Edit18->Text=="dd") { int a = (Panel40->Left-(-8))/10; if(Panel40->Left>(-8)) { Panel40->Left--; Panel40->Left-=a; } } if(Edit2->Text=="tentang") { int a = (165-Panel50->Height)/5; int b = (Panel51->Top-(115))/5; if(Panel50->Height<165) { Panel50->Height++; Panel50->Height+=a; } if(Panel51->Top>(115)) { Panel51->Top--; Panel51->Top-=a; } } if(Edit2->Text=="tentang1") { int a = (Panel50->Height-(133))/5; int b = (171-Panel51->Top)/5; if(Panel50->Height>(133)) { Panel50->Height--; Panel50->Height-=a; } else if(Panel51->Top<171) { Panel51->Top++; Panel51->Top+=b; } } } //--------------------------------------------------------------------------- void __fastcall TForm3::Label53Click(TObject *Sender) { Form1->ShowModal(); } //--------------------------------------------------------------------------- void __fastcall TForm3::Label54Click(TObject *Sender) { Edit18->Text="tambah"; } //--------------------------------------------------------------------------- void __fastcall TForm3::Label55MouseMove(TObject *Sender, TShiftState Shift, int X, int Y) { Shape4->Visible=true; Label55->Font->Color=clBlack; Label56->Visible=true; } //--------------------------------------------------------------------------- void __fastcall TForm3::Label55MouseLeave(TObject *Sender) { Shape4->Visible=false; Label55->Font->Color=clWhite; Label56->Visible=false; } //--------------------------------------------------------------------------- void __fastcall TForm3::Label55Click(TObject *Sender) { Edit18->Text="dd"; } //--------------------------------------------------------------------------- void __fastcall TForm3::Image4MouseMove(TObject *Sender, TShiftState Shift, int X, int Y) { Shape1->Visible=true; Panel37->Color=clWhite; Label8->Font->Color=clBlack; } //--------------------------------------------------------------------------- void __fastcall TForm3::Image4MouseLeave(TObject *Sender) { Shape1->Visible=false; Panel37->Color=clBlack; Label8->Font->Color=clWhite; Image4->Visible=false; Image5->Visible=true; } //--------------------------------------------------------------------------- void __fastcall TForm3::passChange(TObject *Sender) { Label52->Visible=true; } //--------------------------------------------------------------------------- void __fastcall TForm3::Panel50Click(TObject *Sender) { tentang->Visible=true; Label60->Font->Color=0x00DE642D; Label61->Font->Color=0x00DE642D; Label62->Font->Color=0x00DE642D; Label63->Font->Color=0x00DE642D; } //--------------------------------------------------------------------------- void __fastcall TForm3::Panel54Click(TObject *Sender) { tentang->Visible=false; } //--------------------------------------------------------------------------- void __fastcall TForm3::Panel54MouseMove(TObject *Sender, TShiftState Shift, int X, int Y) { Panel54->Color=clRed; } //--------------------------------------------------------------------------- void __fastcall TForm3::Panel54MouseLeave(TObject *Sender) { Panel54->Color=clBlack; } //--------------------------------------------------------------------------- void __fastcall TForm3::tentangClick(TObject *Sender) { //425 } //--------------------------------------------------------------------------- void __fastcall TForm3::Label62Click(TObject *Sender) { ShellExecuteA(NULL,"OPEN","https://www.facebook.com/sawalludin268?fref=ts",NULL,NULL,SW_SHOWNORMAL); } //--------------------------------------------------------------------------- void __fastcall TForm3::Label63Click(TObject *Sender) { ShellExecuteA(NULL,"OPEN","https://www.facebook.com/dyo.ibnucahya?pnref=story",NULL,NULL,SW_SHOWNORMAL); } //--------------------------------------------------------------------------- void __fastcall TForm3::Label64Click(TObject *Sender) { system("start Project2.exe"); } //---------------------------------------------------------------------------
[ "ichsanfirdaus99@gmail.com" ]
ichsanfirdaus99@gmail.com
12e5dbb2c70ced73a41090d656e5044e19350a91
c761965f01a64e42e1e1c6f2e30580c2a49e044c
/Examples/SoftSerialIntExample/SoftSerialIntExample.ino
93d912287a6244484174c0582558f4dbf25757d2
[ "MIT" ]
permissive
wingspinner/SoftSerialIntAP
b05f0c009bafb4cb635ec6e5de6d64010368e27a
c6f26126925b5ed850aa71e22becc30ba5cc31c3
refs/heads/master
2021-01-10T02:18:41.186483
2016-01-19T02:48:43
2016-01-19T02:48:43
49,921,378
13
6
null
null
null
null
UTF-8
C++
false
false
430
ino
#include <SoftSerialInt.h> SoftSerialInt mySerial(15, 16, 3); void setup() { Serial.begin(57600); Serial.println("Goodnight moon!"); // set the data rate for the SoftwareSerial port mySerial.begin(4800); mySerial.println("Hello, world?"); } void loop() // run over and over { if (mySerial.available()) Serial.print((char)mySerial.read()); if (Serial.available()) mySerial.print((char)Serial.read()); }
[ "wingspinner@gmail.com" ]
wingspinner@gmail.com
2d26f1f676bc8eacb74ae9efe8180e752a31ecfc
3d49295eb75a57d7334fdcedbdf5083262a7bdc7
/os/win32_main.cpp
9e46e1d3532b3fc958b9ba88768b1353f993a2ae
[]
no_license
smgal/win32-cairo
6ab2094c4e1aeceb1c27809bd5c620a3b601ea0c
139a22515230153d94dbf85ff7e8bdbc7b961611
refs/heads/master
2021-01-01T19:50:57.828677
2013-12-17T14:02:10
2013-12-17T14:02:10
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,557
cpp
#pragma comment(lib, "libcairo.lib") #include <cairo.h> #include <windows.h> namespace win32 { void prepareWindow(int width, int height); void flush(cairo_t* p_cairo); void wait(void); } extern "C" void cairo_main(void); #define WINDOW_CLASS "CairoWindowClass" namespace { HWND g_h_wnd = 0; HDC g_h_dc = 0; bool g_not_terminated = true; LRESULT CALLBACK WndProc(HWND g_h_wnd, UINT message, WPARAM w_param, LPARAM l_param) { switch (message) { //case WM_ERASEBKGND: case WM_PAINT: { PAINTSTRUCT ps; g_h_dc = BeginPaint(g_h_wnd, &ps); cairo_main(); EndPaint(g_h_wnd, &ps); g_h_dc = 0; break; } case WM_CLOSE: g_not_terminated = false; break; default: break; } return DefWindowProc(g_h_wnd, message, w_param, l_param); } HWND CreateNativeWindow(int screen, unsigned int width, unsigned int height, unsigned int depth) { HINSTANCE h_instance = GetModuleHandle(NULL); // Register windows class { WNDCLASS window_class; window_class.style = CS_HREDRAW | CS_VREDRAW; window_class.lpfnWndProc = WndProc; window_class.cbClsExtra = 0; window_class.cbWndExtra = 0; window_class.hInstance = h_instance; window_class.hIcon = 0; window_class.hCursor = 0; window_class.lpszMenuName = 0; window_class.hbrBackground = (HBRUSH)GetStockObject(WHITE_BRUSH); window_class.lpszClassName = WINDOW_CLASS; ATOM registerClass = RegisterClass(&window_class); if (!registerClass) { MessageBox(0, "Failed to register the window class", "Error", MB_OK | MB_ICONEXCLAMATION); } } // Create window { ::RECT window_rect; SetRect(&window_rect, 0, 0, width, height); AdjustWindowRectEx(&window_rect, WS_CAPTION | WS_SYSMENU, false, 0); int x = 0; int y = 0; g_h_wnd = CreateWindow ( WINDOW_CLASS , "Cairo graphics" , WS_THICKFRAME | WS_VISIBLE | WS_SYSMENU , x, y, window_rect.right-window_rect.left, window_rect.bottom-window_rect.top , NULL, NULL , (HINSTANCE)h_instance, NULL ); } return g_h_wnd; } void DestroyNativeWindow(void) { DestroyWindow(g_h_wnd); g_h_wnd = 0; } bool ProcessMessage(unsigned long delay_time) { MSG msg; while (::PeekMessage(&msg, g_h_wnd, NULL, NULL, PM_REMOVE)) { ::TranslateMessage(&msg); ::DispatchMessage(&msg); } ::Sleep(delay_time); return true; } } void win32::prepareWindow(int width, int height) { CreateNativeWindow(0, width, height, 32); } void win32::flush(cairo_t* p_cairo) { cairo_surface_t* p_cairo_surface = cairo_get_target(p_cairo); unsigned long* p_buffer = (unsigned long*)cairo_image_surface_get_data(p_cairo_surface); int width = cairo_image_surface_get_width(p_cairo_surface); int height = cairo_image_surface_get_height(p_cairo_surface); int stride = cairo_image_surface_get_stride(p_cairo_surface); cairo_format_t format = cairo_image_surface_get_format(p_cairo_surface); int pixel_bytes = 0; switch (format) { case CAIRO_FORMAT_ARGB32: case CAIRO_FORMAT_RGB24: pixel_bytes = 4; break; case CAIRO_FORMAT_A8: pixel_bytes = 1; break; case CAIRO_FORMAT_A1: pixel_bytes = 1; break; } unsigned char bitmap_info_buffer[sizeof(BITMAPINFOHEADER) + sizeof(RGBQUAD) * 256]; memset(bitmap_info_buffer, 0, sizeof(bitmap_info_buffer)); BITMAPINFO& bitmap_info = *(BITMAPINFO*)(&bitmap_info_buffer); { memset(&bitmap_info, 0, sizeof(bitmap_info)); bitmap_info.bmiHeader.biSize = sizeof(bitmap_info); bitmap_info.bmiHeader.biWidth = width; bitmap_info.bmiHeader.biHeight = -height; bitmap_info.bmiHeader.biPlanes = 1; bitmap_info.bmiHeader.biBitCount = pixel_bytes * 8; bitmap_info.bmiHeader.biCompression = BI_RGB; bitmap_info.bmiHeader.biSizeImage = stride * height; bitmap_info.bmiHeader.biClrUsed = 0; if (pixel_bytes == 1) { RGBQUAD* p_rgb = &bitmap_info.bmiColors[0]; RGBQUAD* p_end = p_rgb + 256; unsigned char alpha = 0; for ( ; p_rgb < p_end; ++p_rgb, ++alpha) { p_rgb->rgbRed = p_rgb->rgbGreen = p_rgb->rgbBlue = alpha; p_rgb->rgbReserved = 0xFF; } } } ::SetDIBitsToDevice ( g_h_dc , 0, 0, width, height , 0, 0, 0, height , p_buffer, (BITMAPINFO*)&bitmap_info, DIB_RGB_COLORS ); } void win32::wait(void) { while (g_not_terminated && ProcessMessage(10)) ; DestroyNativeWindow(); } int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow) { win32::prepareWindow(500, 500); win32::wait(); return 0; }
[ "avej.com@gmail.com" ]
avej.com@gmail.com
5bf814d66c816556203399b51716a26c5bf6c609
6c77cf237697f252d48b287ae60ccf61b3220044
/aws-cpp-sdk-comprehend/include/aws/comprehend/model/StopEntitiesDetectionJobRequest.h
348faaf6ebb53ecd83f69d1a834acce9fd0b6288
[ "MIT", "Apache-2.0", "JSON" ]
permissive
Gohan/aws-sdk-cpp
9a9672de05a96b89d82180a217ccb280537b9e8e
51aa785289d9a76ac27f026d169ddf71ec2d0686
refs/heads/master
2020-03-26T18:48:43.043121
2018-11-09T08:44:41
2018-11-09T08:44:41
145,232,234
1
0
Apache-2.0
2018-08-30T13:42:27
2018-08-18T15:42:39
C++
UTF-8
C++
false
false
2,995
h
/* * Copyright 2010-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ #pragma once #include <aws/comprehend/Comprehend_EXPORTS.h> #include <aws/comprehend/ComprehendRequest.h> #include <aws/core/utils/memory/stl/AWSString.h> #include <utility> namespace Aws { namespace Comprehend { namespace Model { /** */ class AWS_COMPREHEND_API StopEntitiesDetectionJobRequest : public ComprehendRequest { public: StopEntitiesDetectionJobRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "StopEntitiesDetectionJob"; } Aws::String SerializePayload() const override; Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** * <p>The identifier of the entities detection job to stop.</p> */ inline const Aws::String& GetJobId() const{ return m_jobId; } /** * <p>The identifier of the entities detection job to stop.</p> */ inline void SetJobId(const Aws::String& value) { m_jobIdHasBeenSet = true; m_jobId = value; } /** * <p>The identifier of the entities detection job to stop.</p> */ inline void SetJobId(Aws::String&& value) { m_jobIdHasBeenSet = true; m_jobId = std::move(value); } /** * <p>The identifier of the entities detection job to stop.</p> */ inline void SetJobId(const char* value) { m_jobIdHasBeenSet = true; m_jobId.assign(value); } /** * <p>The identifier of the entities detection job to stop.</p> */ inline StopEntitiesDetectionJobRequest& WithJobId(const Aws::String& value) { SetJobId(value); return *this;} /** * <p>The identifier of the entities detection job to stop.</p> */ inline StopEntitiesDetectionJobRequest& WithJobId(Aws::String&& value) { SetJobId(std::move(value)); return *this;} /** * <p>The identifier of the entities detection job to stop.</p> */ inline StopEntitiesDetectionJobRequest& WithJobId(const char* value) { SetJobId(value); return *this;} private: Aws::String m_jobId; bool m_jobIdHasBeenSet; }; } // namespace Model } // namespace Comprehend } // namespace Aws
[ "magmarco@amazon.com" ]
magmarco@amazon.com
c2b9729716224104430ab0b600f314baabb9b24b
625538d22d2658fb7db3de588b3c4a9cbcfdaaf2
/include/version.hpp
e873146b0c2da315d38fc400b528125fa41f6e75
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
ferorborja/polybar
65b77da1d9527d4f31a668948c872588d1d3f549
e9db3fab3a84a4ef8f360de15c60f052ef3dd56e
refs/heads/master
2023-06-22T17:36:06.725634
2016-12-01T13:30:46
2016-12-01T13:30:47
null
0
0
null
null
null
null
UTF-8
C++
false
false
38
hpp
#pragma once #define GIT_TAG "2.3.7"
[ "c@rlberg.se" ]
c@rlberg.se
7b193ecc4f6c0b87a31e8018e8d4b919fcfb1a5b
72a0db529ff12e566ddcf007c4f896f57f3e51b8
/02_STRING/Assignment31.cpp
60a6e89f4c3050431f1dba7fec1007a5f39c60de
[]
no_license
amoljore7/02-Logic-Building-Program-All
d6897b6c8d46040b7877e7c8d3c0d1a1fc9398bf
6457b1fd20bc70b81a3d71e19f7cdd3faefb70c8
refs/heads/master
2020-04-16T13:49:42.613073
2019-01-14T10:58:03
2019-01-14T10:58:03
165,644,263
0
0
null
null
null
null
UTF-8
C++
false
false
1,847
cpp
/////////////////////////////////////////////////////////////////////////////////////////////// // // 31.Write a program which sets last N characters in string to a specific character. // (Implement strnset()). // /////////////////////////////////////////////////////////////////////////////////////////////// #include<stdio.h> int StringLen(char*); ////////////////////////////////////////////////////////////////////////////////////////////// // // Function Name : MyStrNSet // // Parameters : Address of string ,integer, character // // returns : Address of string // // Description : This function sets first N characters in the string to a specific character. // //////////////////////////////////////////////////////////////////////////////////////////////// char* MyStrNSet(char *ptr1,int iNo,char ch) { char *ptr2; ptr2=ptr1; if(ptr1 == NULL || iNo > StringLen(ptr1)) { printf("\n Wrong input."); return NULL; } ptr1=ptr1+(StringLen(ptr1)-iNo); while(*ptr1 != '\0' && iNo > 0) { *ptr1=ch; ptr1++; iNo--; } return ptr2; } int StringLen(char *ptr) { char *ptr1=ptr; while(*ptr != '\0') { ptr++; } return ptr-ptr1; } int main() { char string[30]={'\0'}; char ch; int iNum=0; //accept string from user printf("\n Enter string => "); gets(string); printf("\n Enter character => "); scanf("%c",&ch); printf("\n Enter value of N => "); scanf("%d",&iNum); printf("%s",MyStrNSet(string,iNum,ch)); return 0; } /////////////////////////////////////////////////////////////////////////////// // // Input : Enter string => level // Enter character => a // Enter value of N => 4 // // Output : laaaa // ///////////////////////////////////////////////////////////////////////////////
[ "noreply@github.com" ]
amoljore7.noreply@github.com
a7f088386772532fe1c9eb1c23287978a8527452
f6244209f8ecff355822843f64d6368281266143
/941.ValidMountainArray.cc
6394cf552693eb48a3c74cf834bd22c0adf7b1ba
[]
no_license
seesealonely/old-leetcode
5711fc0d583ca15c14cb8fb3a241e860e6d6fcd4
28e4bc6e28ba8c36e90a05a6214c7c716fe03431
refs/heads/master
2022-04-26T10:18:43.770677
2020-04-28T21:20:35
2020-04-28T21:20:35
null
0
0
null
null
null
null
UTF-8
C++
false
false
869
cc
/* Given an array A of integers, return true if and only if it is a valid mountain array. Recall that A is a mountain array if and only if: A.length >= 3 There exists some i with 0 < i < A.length - 1 such that: A[0] < A[1] < ... A[i-1] < A[i] A[i] > A[i+1] > ... > A[B.length - 1] Example 1: Input: [2,1] Output: false Example 2: Input: [3,5,5] Output: false Example 3: Input: [0,3,2,1] Output: true Note: 0 <= A.length <= 10000 0 <= A[i] <= 10000 */ #include"941.ValidMountainArray.h" int main() { vector<int> v; Solution s; v.push_back(2);v.push_back(1); cout<<s.validMountainArray(v)<<endl; v.clear();v.push_back(3);v.push_back(5);v.push_back(5); cout<<s.validMountainArray(v)<<endl; v.clear();v.push_back(0);v.push_back(3);v.push_back(2);v.push_back(1); cout<<s.validMountainArray(v)<<endl; return 0; }
[ "seesealonely@gmail.com" ]
seesealonely@gmail.com
8fbf44a4d3a7e66388f68ea135035aea38213f76
20612b6a21886c10fe2051e67fabe66640c531ba
/Two_DArray/10.cpp
62b3fb5a832ab901d8f8bb78a561695426a5373d
[]
no_license
KalashRastogi/P3
5cbc8da8dc94c4661b13921113082a0cbc674c90
99e4cd80b32b2439f9346a4bc3f6a345beae466a
refs/heads/master
2020-05-30T17:31:09.701288
2019-06-28T16:51:44
2019-06-28T16:51:44
189,873,411
0
0
null
null
null
null
UTF-8
C++
false
false
712
cpp
#include<bits/stdc++.h> using namespace std; int main(){ int m,n,sum=0; cin>>m>>n; int a[m][n]; for(int i=0;i<m;i++){ for(int j=0;j<n;j++){ cin>>a[i][j]; } } int o,p; cin>>o>>p; int b[o][p]; for(int i=0;i<o;i++){ for(int j=0;j<p;j++){ cin>>b[i][j]; } } if(n==o){ int c[m][p]={{0}}; for(int i=0;i<m;i++){ for(int j=0;j<p;j++){ sum=0; for(int k=0;k<o;k++){ sum+=a[i][k]*b[k][j]; } c[i][j]=sum; cout<<c[i][j]<<" "; } cout<<endl; } } return 0; }
[ "kalashrastogi4@gmail.com" ]
kalashrastogi4@gmail.com
afbd4fcfb28fe775921078ef20b1fd17711d4028
0bc109763839e0fe8df4022abb96c110216b6444
/BT.cpp
028e730b045caa4572d59d3018fe78476a9e8099
[]
no_license
dar8900/PhaseAnalyzer
d9e28d3f50b53cd9ec55005c57c89dd5c62c4d60
b5108e700d325a9939832ae4d1336231a8bc556c
refs/heads/master
2022-11-02T06:18:31.448421
2020-06-14T16:48:11
2020-06-14T16:48:11
256,242,881
1
0
null
null
null
null
UTF-8
C++
false
false
5,759
cpp
#include "PhaseAnalyzer.h" #include "BT.h" #include "Rele.h" #include "Measures.h" #include "Display.h" #define BT_STATE_PIN 4 #define SERIAL_HW Serial1 typedef struct { String stringKey; uint16_t intKey; bool doAction; }BT_RESPONSES_DEF; typedef enum { // SEND_WELCOME SWICH_ON_RELE = 0, SWICH_OFF_RELE, SEND_CURRENT, SEND_VOLTAGE, SEND_PF, SEND_PATT, SEND_PREA, SEND_PAPP, SEND_EN_ATT, SEND_EN_REA, SEND_EN_APP, RECEIVE_SIM_I, RECEIVE_SIM_V, RECEIVE_SIM_DELAY_I, RECEIVE_SIM_DELAY_V, MAX_STATES }BT_STATES; const BT_RESPONSES_DEF BtResponseTab[MAX_STATES] = { // {"*B" , SEND_WELCOME , false }, {"ON" , SWICH_ON_RELE , true }, {"OFF" , SWICH_OFF_RELE , true }, {"*a" , SEND_CURRENT , false }, {"*b" , SEND_VOLTAGE , false }, {"*c" , SEND_PF , false }, {"*d" , SEND_PATT , false }, {"*e" , SEND_PREA , false }, {"*f" , SEND_PAPP , false }, {"*g" , SEND_EN_ATT , false }, {"*h" , SEND_EN_REA , false }, {"*i" , SEND_EN_APP , false }, {"SIM_I" , RECEIVE_SIM_I , true }, {"SIM_V" , RECEIVE_SIM_V , true }, {"SIM_DELAY_I" , RECEIVE_SIM_DELAY_I , true }, {"SIM_DELAY_V" , RECEIVE_SIM_DELAY_V , true }, }; bool BtDeviceConnected; static void SendTextSM(uint16_t TabIndex) { bool IsAMeasure = false, IsToFormat = true; String Text2Send = BtResponseTab[TabIndex].stringKey, Udm = ""; double Measure2Send = 0.0; uint8_t Range = 9; switch(BtResponseTab[TabIndex].intKey) { // case SEND_WELCOME: // Text2Send += "Phase Analyzer"; // break; case SEND_CURRENT: Measure2Send = Current.actual; Udm = "A"; IsAMeasure = true; break; case SEND_VOLTAGE: Measure2Send = Voltage.actual; Udm = "V"; IsAMeasure = true; break; case SEND_PF: Measure2Send = Pf.actual; Udm = ""; IsAMeasure = true; IsToFormat = false; break; case SEND_PATT: Measure2Send = PAtt.actual; Udm = "W"; IsAMeasure = true; break; case SEND_PREA: Measure2Send = PRea.actual; Udm = "VAr"; IsAMeasure = true; break; case SEND_PAPP: Measure2Send = PApp.actual; Udm = "VA"; IsAMeasure = true; break; case SEND_EN_ATT: Measure2Send = EnAtt.actual; Udm = "Wh"; IsAMeasure = true; break; case SEND_EN_REA: Measure2Send = EnRea.actual; Udm = "VArh"; IsAMeasure = true; break; case SEND_EN_APP: Measure2Send = EnApp.actual; Udm = "VAh"; IsAMeasure = true; break; default: break; } if(IsAMeasure) { if(IsToFormat) { Range = SearchRange(Measure2Send); Measure2Send *= RangeTab[Range].rescale; } Text2Send += String(Measure2Send, 3) + " " + String(RangeTab[Range].odg) + Udm; } Text2Send += "*"; SERIAL_HW.println(Text2Send); } static void ActionSM(String Req) { int TabIndex = 0; for(TabIndex = 0; TabIndex < MAX_STATES; TabIndex++) { if(!BtResponseTab[TabIndex].doAction) continue; else { if(BtResponseTab[TabIndex].stringKey.equals(Req)) { break; } else if(Req.length() > 3) { char ReqChar[Req.length()]; Req.toCharArray(ReqChar, Req.length()); if(ReqChar[4] == 'I') { TabIndex = RECEIVE_SIM_I; Req = String(ReqChar[5]) + (ReqChar[6] <= '9' ? String(ReqChar[6]) : ""); } else if(ReqChar[4] == 'V') { TabIndex = RECEIVE_SIM_V; Req = String(ReqChar[5]) + (ReqChar[6] <= '9' ? String(ReqChar[6]) : "") + (ReqChar[7] <= '9' ? String(ReqChar[7]) : ""); } else { if(ReqChar[10] == 'I') { TabIndex = RECEIVE_SIM_DELAY_I; Req = String(ReqChar[11]) + (ReqChar[12] <= '9' ? String(ReqChar[12]) : "") + (ReqChar[13] <= '9' ? String(ReqChar[13]) : ""); } else { TabIndex = RECEIVE_SIM_DELAY_V; Req = String(ReqChar[11]) + (ReqChar[12] <= '9' ? String(ReqChar[12]) : "") + (ReqChar[13] <= '9' ? String(ReqChar[13]) : ""); } } break; } } } if(TabIndex != MAX_STATES) { switch(BtResponseTab[TabIndex].intKey) { case SWICH_ON_RELE: if(!Switch.haveTimer && !Switch.alarmShutDown) Switch.isActive = true; break; case SWICH_OFF_RELE: if(!Switch.haveTimer) Switch.isActive = false; else { Switch.haveTimer = false; Switch.timerDuration = 0; Switch.isActive = false; } break; case RECEIVE_SIM_I: SimCurrent = (double)(Req.toInt()); break; case RECEIVE_SIM_V: SimVoltage = (double)(Req.toInt()); break; case RECEIVE_SIM_DELAY_I: SimDelayI = (double)(Req.toInt()); break; case RECEIVE_SIM_DELAY_V: SimDelayV = (double)(Req.toInt()); break; default: break; } } } void BtTransaction() { int ReqTabIndex = 0; String Req = ""; for(ReqTabIndex = 0; ReqTabIndex < MAX_STATES; ReqTabIndex++) { Req = ""; if(BtResponseTab[ReqTabIndex].doAction) { if(SERIAL_HW.available()) { while(SERIAL_HW.available() > 0) { Req += String(char(SERIAL_HW.read())); } } if(Req != "") { ActionSM(Req); } } else { SendTextSM(ReqTabIndex); } } } void BtInit() { bool isRisp = false; int baudindex = 0; SERIAL_HW.begin(9600); pinMode(BT_STATE_PIN, INPUT); CheckBtDevConn(); } void CheckBtDevConn() { // DBG("Controllo BT"); if(digitalRead(BT_STATE_PIN)) BtDeviceConnected = true; else BtDeviceConnected = false; }
[ "dar8900@gmail.com" ]
dar8900@gmail.com
8e7679efb4f8aba4c9ee5af2ed8259625640af95
0494d3e8c680874d08520ea23c87e50b30ddee77
/Sudoku/BoardSolver.cpp
bf16a0c54427cdd8a94c9379f5984ab240c4b440
[]
no_license
AidanBlant/Sudoku
02d3992b5c11d43b87db2ca02fe44f4ca2f4970c
abd2edfad491548d9a20a2ad56f7b37ad1a32474
refs/heads/master
2022-12-10T01:34:46.677959
2020-09-13T07:22:28
2020-09-13T07:22:28
294,212,234
0
0
null
null
null
null
UTF-8
C++
false
false
3,731
cpp
// // BoardSolver.cpp // Sudoku // // Created by Aidan Blant on 9/12/20. // Copyright © 2020 Aidan Blant. All rights reserved. // #include <stdio.h> #include <iostream> #include <string> using namespace std; class BoardSolver{ public: int grid[9][9] = {0}; BoardSolver(string puzzle) { // Create BoardSolver by converting string to grid for(int i = 0; i < 9; i++){ for( int j = 0; j < 9; j++){ if( puzzle[i*9 + j] != '.' ){ grid[i][j] = (int)(puzzle[ i*9 + j ] - '0'); } } } } // Sudoku Backtracking Algorithm expanded on from // a Stanford lecture: https://see.stanford.edu/materials/icspacs106b/Lecture11.pdf bool solveSudoku(){ // printGrid(); For debugging int row, col; if (!FindUnassignedLocation(row,col)) return true; // all locations successfully assigned! for (int num = 1; num <= 9; num++) { // options are 1-9 if (NoConflicts(row,col,num)) { // if # looks ok grid[row][col] = num; // try assign # if (solveSudoku()) return true; // recur if succeed stop grid[row][col] = 0; // undo & try again } } return false; // this triggers backtracking from early decisions } bool FindUnassignedLocation(int &row, int &col){ for (row = 0; row < 9; row++) for (col = 0; col < 9; col++) if (grid[row][col] == 0) return true; return false; } // TODO: Experiment I can make this faster by keeping my list of box/row/col conflicts // similar to 'noRepeats' box/row/col keeping bool NoConflicts(int row, int col, int num){ for( int i = 0; i < 9; i++){ if(grid[i][col] == num){ // cout << "conflict with " << num << " at pos(" << i << "," << col << endl; return false; } if(grid[row][i] == num){ // cout << "conflict with " << num << " at pos(" << row << "," << i << endl; return false; } } //Get Box for( int i = 0; i < 3; i++){ for( int j = 0; j < 3; j++){ if( grid[row/3*3+i][col/3*3+j] == num ){ // cout << "conflict with " << num << " at box(" << row/3*3 << "," << col/3*3 << endl; return false; } } } return true; } // Given incomplete sudoku board as string // return solution as string // if no solution return "NOSOLUTION" static string returnSolution(string puzzle){ BoardSolver bs = BoardSolver(puzzle); // cout << "_PUZZLE ENTERED_" << endl; bs.printGrid(); cout << endl; bs.solveSudoku(); // cout << "AFTER SOLVER_" << endl; bs.printGrid(); cout << endl; return bs.returnGrid(); } // If Grid is a solution, return it as string // otherwise return no solution string returnGrid(){ string toReturn = ""; for( int i = 0; i < 9; i++){ for(int j = 0; j < 9; j++){ if( grid[i][j] != '.' ){ toReturn += to_string(grid[i][j]); }else{ return "NOSOLUTION"; } } } return toReturn; } // Print grid to console void printGrid(){ for(int i = 0; i < 9; i++){ for(int j = 0; j < 9; j++){ cout << grid[i][j]; } cout << endl; } cout << endl; } };
[ "aidanblant@gmail.com" ]
aidanblant@gmail.com
9abe61978c04fec2c6feea577c5d805bdf1c2000
70fa611bdb7625a72c228818f6cde62ca81974bb
/thread/con_pro.cpp
fd92669ec859f14a73555546500064d0889dcf62
[]
no_license
jingyu0/Linux_project
5da8f013cdc608d70fe9bdcc3005e1bae8bce83b
3a18e35c93a4329aba83d214f0f7a534e871f370
refs/heads/master
2021-08-15T21:20:18.308870
2020-07-29T15:52:29
2020-07-29T15:52:29
206,919,467
1
0
null
null
null
null
UTF-8
C++
false
false
3,200
cpp
/*=============================================================== * Copyright (C) . All rights reserved.") * 文件名称: * 创 建 者:zhang * 创建日期: * 描 述:手撕生产者与消费者模型 ================================================================*/ #include <iostream> #include <queue> #include <stdio.h> #include <unistd.h> #include <pthread.h> #define MAX_QUE 10 class BlockQueue { private: std::queue<int> _queue;//动态增长的队列 int _capacity;//确定队列的最大容量 pthread_cond_t _cond_productor;//生产者等待队列 pthread_cond_t _cond_consumer;//消费者等待队列 pthread_mutex_t _mutex;//用于实现互斥 public: BlockQueue(int que_num = MAX_QUE):_capacity(que_num) { pthread_mutex_init(&_mutex, NULL); pthread_cond_init(&_cond_consumer, NULL); pthread_cond_init(&_cond_productor, NULL); } ~BlockQueue() { pthread_mutex_destroy(&_mutex); pthread_cond_destroy(&_cond_consumer); pthread_cond_destroy(&_cond_productor); } //提供给生产者的接口---数据入队 bool QueuePush(int &data) { pthread_mutex_lock(&_mutex);//_queue是临界资源需要加锁保护 while (_queue.size() == _capacity) {//判断队列节点是否添加满了 pthread_cond_wait(&_cond_productor, &_mutex); } _queue.push(data); pthread_mutex_unlock(&_mutex); pthread_cond_signal(&_cond_consumer); return true; } //提供给消费者的接口---数据出队 bool QueuePop(int &data) { pthread_mutex_lock(&_mutex); while (_queue.empty()) { pthread_cond_wait(&_cond_consumer, &_mutex); } data = _queue.front(); _queue.pop(); pthread_mutex_unlock(&_mutex); pthread_cond_signal(&_cond_productor); return true; } }; void *thr_consumer(void *arg) { BlockQueue *queue = (BlockQueue*)arg; while(1){ int data; queue->QueuePop(data); printf("**get a data:%d\n", data); } return NULL; } void *thr_productor(void *arg) { int i = 0; BlockQueue *queue = (BlockQueue*)arg; while(1){ queue->QueuePush(i); printf("--put a data:%d\n", i++); } return NULL; } #define MAX_THREAD 4 int main() { int i, ret; pthread_t ctid[MAX_THREAD], ptid[MAX_THREAD]; BlockQueue queue; for(i = 0; i < MAX_THREAD; i++) { ret = pthread_create(&ctid[i], NULL, thr_consumer, (void*)&queue); if (ret != 0) { std::cerr << "thread create error\n"; return -1; } } for(i = 0; i < MAX_THREAD; i++) { ret = pthread_create(&ptid[i], NULL, thr_productor, (void*)&queue); if (ret != 0) { std::cerr << "thread create error\n"; return -1; } } for(i = 0; i < MAX_THREAD; i++) { pthread_join(ctid[i], NULL); pthread_join(ptid[i], NULL); } return 0; }
[ "1404637683@qq.com" ]
1404637683@qq.com
d8e223d9872ef1a8bc13c38c667cad0265f8cfa8
9953aaeed410e1fd26f738466e585bcfa187c527
/IDE/QScriptEditor/dialogfont.cpp
bfe2072b3cea69316a8db6f3e8a70eab943a248c
[]
no_license
zhaoliangcn/LScript
5ab470aa1f2b674a067802c4fd306c79a7ac9e8c
97205f823cc3aaaf56308a74fa1b3f28d302b89b
refs/heads/master
2022-09-23T06:34:40.999691
2022-07-26T08:10:39
2022-07-26T08:10:39
33,216,059
6
2
null
null
null
null
UTF-8
C++
false
false
1,252
cpp
#include "dialogfont.h" #include "ui_dialogfont.h" #include <QPushButton> #include <QFontDatabase> #include <QMessageBox> DialogFont::DialogFont(QWidget *parent) : QDialog(parent), ui(new Ui::DialogFont) { ui->setupUi(this); } DialogFont::~DialogFont() { delete ui; } void DialogFont::showEvent(QShowEvent *event) { if(event) { ui->listWidget->clear(); QFontDatabase dbfont; foreach(const QString &family,dbfont.families(QFontDatabase::SimplifiedChinese)) { ui->listWidget->insertItem(0,family); } ui->listWidget->setFocus(); QDialog::showEvent(event); } } void DialogFont::on_buttonBox_clicked(QAbstractButton *button) { if( ui->buttonBox->button(QDialogButtonBox::Ok) == button) { QList<QListWidgetItem*>itmes= ui->listWidget->selectedItems(); if(itmes.size()==1) { //QMessageBox msg; //msg.information(this,"tofind",itmes.at(0)->text()); QString fontname=itmes.at(0)->text(); QFont font(fontname,10,QFont::Normal); editor->setFont(font); editor->setMarginsFont(font); QFontMetrics fontmetrics=QFontMetrics(font); } } }
[ "zhaoliangcn@126.com" ]
zhaoliangcn@126.com
33ddc1c26f04aedb55d1d5557ff4d74409f305a5
a68443b8338f1be2d66ec23779aa0208bc98be1f
/Executor/IteratorExecutorMaster.cpp
16779fc673251d632236ba54e155c09c50bd6316
[]
no_license
teddybear01/Claims
df43b7f7b0365dc4811a13213e42f88a5b96bc5d
8c8779e26683a620e84aae0047094b6a6a2597db
refs/heads/master
2020-07-11T16:44:44.153112
2013-12-10T06:54:10
2013-12-10T06:54:10
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,748
cpp
/* * IteratorExecutorMaster.cpp * * Created on: Jun 21, 2013 * Author: wangli */ #include "IteratorExecutorMaster.h" #include "../Environment.h" #include "../TimeOutReceiver.h" #include "../rdtsc.h" IteratorExecutorMaster* IteratorExecutorMaster::_instance=0; IteratorExecutorMaster::IteratorExecutorMaster(){ _instance=this; endpoint=Environment::getInstance()->getEndPoint(); framework=new Theron::Framework(*endpoint); framework->SetMaxThreads(1); // framework->SetMinThreads(5); logging_=new IteratorExecutorMasterLogging(); } IteratorExecutorMaster::~IteratorExecutorMaster() { } IteratorExecutorMaster* IteratorExecutorMaster::getInstance() { if(_instance==0) { return new IteratorExecutorMaster(); } else return _instance; } bool IteratorExecutorMaster::ExecuteIteratorsOnSites(Iterator* it, std::vector<std::string> ip_list){ IteratorMessage im(it); Message4K str= IteratorMessage::serialize4K(im); TimeOutReceiver receiver(endpoint); Theron::Catcher<int> resultCatcher; receiver.RegisterHandler(&resultCatcher, &Theron::Catcher<int>::Push); for(int slave_filter_id=0;slave_filter_id<ip_list.size();slave_filter_id++){ ostringstream ip_port; ip_port<<"IteratorExecutorActor://"<<ip_list[slave_filter_id]; cout<<"actname: "<<ip_port.str()<<endl; framework->Send(str,receiver.GetAddress(),Theron::Address(ip_port.str().c_str())); } if(receiver.TimeOutWait(ip_list.size(),5000)<ip_list.size()){ logging_->elog("Time out!\n"); return true; } return true; } bool IteratorExecutorMaster::ExecuteBlockStreamIteratorsOnSites(BlockStreamIteratorBase* it, std::vector<std::string> ip_list){ IteratorMessage im(it); Message4K str= IteratorMessage::serialize4K(im); TimeOutReceiver receiver(endpoint); Theron::Catcher<int> resultCatcher; receiver.RegisterHandler(&resultCatcher, &Theron::Catcher<int>::Push); for(unsigned slave_filter_id=0;slave_filter_id<ip_list.size();slave_filter_id++){ ostringstream ip_port; ip_port<<"IteratorExecutorActor://"<<ip_list[slave_filter_id]; cout<<"actname: "<<ip_port.str()<<endl; // framework->Send(int(1),receiver.GetAddress(),Theron::Address(ip_port.str().c_str())); framework->Send(str,receiver.GetAddress(),Theron::Address(ip_port.str().c_str())); logging_->log("send!\n********** please rebounce!\n"); } unsigned feedback_count=0; feedback_count=receiver.TimeOutWait(ip_list.size(),5000); if(feedback_count<ip_list.size()){ logging_->elog("Time out! only received %d feedbacks \n",feedback_count); return true; } return true; } bool IteratorExecutorMaster::ExecuteBlockStreamIteratorsOnSite(BlockStreamIteratorBase* it,std::string target_ip){ IteratorMessage im(it); Message4K str= IteratorMessage::serialize4K(im); TimeOutReceiver receiver(endpoint); Theron::Catcher<Message256> resultCatcher; receiver.RegisterHandler(&resultCatcher, &Theron::Catcher<Message256>::Push); ostringstream ip_port; ip_port<<"IteratorExecutorActor://"<<target_ip; cout<<"actname: "<<ip_port.str()<<endl; framework->Send(str,receiver.GetAddress(),Theron::Address(ip_port.str().c_str())); logging_->log("The serialized iterator tree has been sent to %s.\n",ip_port.str().c_str()); unsigned feedback_count=0; feedback_count=receiver.TimeOutWait(1,5000); if(feedback_count!=1){ logging_->elog("Time out! no feedback received! \n"); return true; } logging_->log("Received the confirm feedback from %s",ip_port.str().c_str()); return true; } bool IteratorExecutorMaster::Propogation(const int count,std::string target){ printf("Master:%d\n",count); ostringstream ip_port; ip_port<<"IteratorExecutorActor://"<<target; framework->Send(count,Theron::Address(),Theron::Address(ip_port.str().c_str())); sleep(100); }
[ "wangli1426@gmail.com" ]
wangli1426@gmail.com
7db358838d8ce7d07a95d594a2f28f05549c42ba
7066257ff26b31103a29a1915663e049ac1713da
/code/c++ files for modules/ExtractTokensFromHandle.h
1318370cf321c2041755794abce0852f397a85ed
[]
no_license
Kulunchakov/MVR-Python3
a1d812241e05a14c98eec07cb991f544b9c03320
743e5f3dcd6741c52f3f613e942c9164fb873ee8
refs/heads/master
2021-06-08T01:18:43.321634
2016-09-23T21:09:41
2016-09-23T21:09:41
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,732
h
/* Returns the list of tokens presented in a superposition and the positions of their first symbols. The order of tokens in list corresponds to their order in the string 'handle' Example: sqrt_(ln_(frac2_(x1,x2))) -> ['sqrt_', 'ln_', 'frac2_', 'x1', 'x2'] If the 'handle' corresponds to an invalid function, it raises an error Input: handle - string name of the superposition Output: tokens - the list of tokens presented in the superposition (vector<PrimitiveFunction>) first_positions - the list of first positions of tokens Author: Kulunchakov Andrei */ #include <utility> #include <stack> #include <map> #include <stdio.h> #include <vector> #include <string> #include "RetrievePrimitives.h" #include <boost/regex.hpp> using namespace std; pair<vector<PrimitiveFunction>, vector<int> > extract_tokens_from_handle(const string& handle) { // create a map from primitives names to corresponding objects map<string, PrimitiveFunction> mapNamePrimitive; // If handle is a simple variable, return answer immediately boost::smatch matching_results; if (boost::regex_match(handle, matching_results, boost::regex("X\\[(\\d+)\\]"))) { vector<PrimitiveFunction> tokens_from_handle; PrimitiveFunction variable; variable.name = handle; variable.numberArguments = 0; variable.numberParameters = 0; tokens_from_handle.push_back(variable); return make_pair(tokens_from_handle, vector<int>(1,0)); } // retrieve valid primitives from 'Primitives.py' file vector<PrimitiveFunction> primitives; primitives = retriever(); // load them into the map for (int i = 0; i < primitives.size(); ++i) { mapNamePrimitive.insert(make_pair(primitives[i].name, primitives[i])); } // now traverse the 'handle'; extract tokens and their positions vector<PrimitiveFunction> tokens_from_handle; vector<int> first_positions; // position of the first character of a processed token int fetched_position; bool is_smth_being_processed = false; for (size_t i = 0; i < handle.size(); ++i) { if (handle[i] == '(') { // the case of a primitive function appearance is_smth_being_processed = false; string name_of_token(handle.begin() + fetched_position, handle.begin() + i); // check if a token with the 'name_of_token' is presented in the map if (mapNamePrimitive.find(name_of_token) != mapNamePrimitive.end()) { tokens_from_handle.push_back(mapNamePrimitive[name_of_token]); } else { string error_message = "Token '" + name_of_token + "' is not presented in Primitives.py. \nOr presented in a wrong format\n"; perror(error_message.c_str()); throw error_message; } continue; } if (is_smth_being_processed && (handle[i] == ',' || handle[i] == ')')) { is_smth_being_processed = false; // the case of a variable appearance PrimitiveFunction variable; variable.name = string(handle.begin() + fetched_position, handle.begin() + i); // check if it is a valid variable if (boost::regex_match(variable.name, matching_results, boost::regex("X\\[(\\d+)\\]"))) { variable.numberArguments = 0; variable.numberParameters = 0; tokens_from_handle.push_back(variable); } else { string error_message = "Token '" + variable.name + "' is not presented in Primitives.py. \nOr presented in a wrong format\n"; perror(error_message.c_str()); throw error_message; } continue; } if (!is_smth_being_processed) { // if we currently do not process any token, we are ready to process a new one if (isalpha(handle[i])) { is_smth_being_processed = true; fetched_position = i; first_positions.push_back(i); } } } return make_pair(tokens_from_handle, first_positions); }
[ "kulu-andrej@yandex.ru" ]
kulu-andrej@yandex.ru
dcc395f517bc47f69137c7befce84ff59fb4f270
f6ebdef1c74b4673eb7899be790797f4bb245cf8
/bm/list/push_back/split_fwd_list__raw__NumBytes_64___uint64_t.cpp
489b08ed553adee95b93cdda576badd6728e524e
[ "MIT" ]
permissive
TomashuTTTT7/c4stl
a1ff0f77d5727ae333656a645532cabacd2e92aa
9b98f20bfc933ace7106945f8273df015915dddb
refs/heads/master
2023-07-04T10:59:43.636867
2017-07-20T19:50:06
2017-07-20T19:50:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
858
cpp
#include "benchmark/benchmark.h" #include "c4/log.hpp" #include "c4/allocator.hpp" #include "../list_types.hpp" namespace bm = benchmark; namespace c4 { template< class List > void BM_ListPushBack(bm::State& st) { List li; using T = typename List::value_type; T v{}; size_t count = 0; while(st.KeepRunning()) { for(int i = 0, e = st.range(0); i < e; ++i) { if(li.size() == li.max_size()) li.clear(); li.push_back(v); ++count; } li.clear(); } st.SetComplexityN(st.range(0)); st.SetItemsProcessed(count); st.SetBytesProcessed(count * sizeof(T)); } BENCHMARK_TEMPLATE(BM_ListPushBack, split_fwd_list__raw< NumBytes<64> C4_COMMA uint64_t >) ->RangeMultiplier(2) ->Range(4, 1<<19) ->Complexity(); } // end namespace c4 BENCHMARK_MAIN()
[ "dev@jpmag.me" ]
dev@jpmag.me
a72a88c5243245596b3d5a2234c4b3f97f3cb741
6cb1f70f9b1733d0c07d13da9e9e2fbca7fb86e4
/tensorflow/lite/delegates/gpu/cl/selectors/operation_selector.cc
6fe9372e9c4bc7bfd30a8d935b06246a9d609fa4
[ "Apache-2.0" ]
permissive
yaohao777/tensorflow
ddf726929973308034edaac5586e8086b7c44a7e
c58c88b23122576fc99ecde988aab6041593809b
refs/heads/master
2023-01-13T10:27:20.867319
2020-11-19T01:28:28
2020-11-19T02:20:01
null
0
0
null
null
null
null
UTF-8
C++
false
false
23,150
cc
/* Copyright 2020 The TensorFlow Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ==============================================================================*/ #include "tensorflow/lite/delegates/gpu/cl/selectors/operation_selector.h" #include "absl/strings/str_cat.h" #include "absl/types/any.h" #include "tensorflow/lite/delegates/gpu/cl/cl_device.h" #include "tensorflow/lite/delegates/gpu/cl/kernels/elementwise.h" #include "tensorflow/lite/delegates/gpu/cl/kernels/mean_stddev_normalization.h" #include "tensorflow/lite/delegates/gpu/cl/kernels/transpose.h" #include "tensorflow/lite/delegates/gpu/cl/selectors/convolution_selector.h" #include "tensorflow/lite/delegates/gpu/cl/selectors/convolution_transposed_selector.h" #include "tensorflow/lite/delegates/gpu/cl/selectors/default_selector.h" #include "tensorflow/lite/delegates/gpu/cl/selectors/dw_convolution_selector.h" #include "tensorflow/lite/delegates/gpu/cl/selectors/fully_connected_selector.h" #include "tensorflow/lite/delegates/gpu/cl/selectors/simple_selectors.h" #include "tensorflow/lite/delegates/gpu/cl/storage_type_util.h" #include "tensorflow/lite/delegates/gpu/common/data_type.h" #include "tensorflow/lite/delegates/gpu/common/operations.h" #include "tensorflow/lite/delegates/gpu/common/shape.h" #include "tensorflow/lite/delegates/gpu/common/status.h" #include "tensorflow/lite/delegates/gpu/common/task/tensor_desc.h" #include "tensorflow/lite/delegates/gpu/common/tensor.h" namespace tflite { namespace gpu { namespace cl { namespace { bool IsSuitableForWinograd4x4To6x6(const Convolution2DAttributes& attr, const GpuInfo& gpu_info, const BHWC& dst_shape) { const int tiles_x = DivideRoundUp(dst_shape.w, 4); const int tiles_y = DivideRoundUp(dst_shape.h, 4); const int src_depth = DivideRoundUp(attr.weights.shape.i, 4); const int dst_depth = DivideRoundUp(attr.weights.shape.o, 4); const bool suitable_attributes = attr.weights.shape.w == 3 && attr.weights.shape.h == 3 && attr.dilations == HW(1, 1) && attr.strides == HW(1, 1); // Mali among other devices has smaller SIMD line size const int min_depth = gpu_info.IsMali() ? 16 : 32; const int min_hw = gpu_info.IsMali() ? 32 : 128; const bool recommended_channels = dst_depth % 4 == 0 && src_depth >= min_depth && dst_depth >= min_depth; const bool recommended_hw = tiles_x * tiles_y >= min_hw; return suitable_attributes && recommended_channels && recommended_hw; } absl::Status WinogradFromNode(const GpuInfo& gpu_info, const std::vector<Value*>& inputs, const std::vector<Value*>& outputs, const OperationDef& op_def, ModelHints hints, const BHWC& input_shape, const BHWC& output_shape, const Convolution2DAttributes& attr, GPUOperationsSubgraph* gpu_subgraph) { if (!IsSuitableForWinograd4x4To6x6(attr, gpu_info, output_shape)) { return absl::UnimplementedError("No implementation for this case."); } const int tiles_x = DivideRoundUp(output_shape.w, 4); const int tiles_y = DivideRoundUp(output_shape.h, 4); const BHWC shape_0{input_shape.b, 36, tiles_x * tiles_y, input_shape.c}; const BHWC shape_1{input_shape.b, 36, tiles_x * tiles_y, output_shape.c}; TensorDescriptor td_0; td_0.storage_type = SelectBestStorageType( gpu_info, shape_0, op_def.src_tensors[0].storage_type, op_def.src_tensors[0].data_type, op_def.src_tensors[0].layout); td_0.data_type = op_def.src_tensors[0].data_type; td_0.layout = op_def.src_tensors[0].layout; TensorDescriptor td_1; td_1.storage_type = SelectBestStorageType( gpu_info, shape_1, op_def.src_tensors[0].storage_type, op_def.src_tensors[0].data_type, op_def.src_tensors[0].layout); td_1.data_type = op_def.src_tensors[0].data_type; td_1.layout = op_def.src_tensors[0].layout; gpu_subgraph->new_tensors = {{shape_0, td_0}, {shape_1, td_1}}; gpu_subgraph->operations.clear(); gpu_subgraph->operations.resize(3); OperationDef winograd_up_def; winograd_up_def.precision = op_def.precision; winograd_up_def.src_tensors.push_back(op_def.src_tensors[0]); winograd_up_def.dst_tensors.push_back(td_0); auto& winograd_up = gpu_subgraph->operations[0]; winograd_up.operation = SelectWinograd4x4To36(gpu_info, attr.padding, winograd_up_def); winograd_up.input_ids = {static_cast<int>(inputs[0]->id)}; winograd_up.output_ids = {-1}; OperationDef conv_def; conv_def.precision = op_def.precision; conv_def.src_tensors.push_back(td_0); conv_def.dst_tensors.push_back(td_1); auto& conv = gpu_subgraph->operations[1]; conv.input_ids = {-1}; conv.output_ids = {-2}; conv.operation = SelectConvolutionForWinograd(attr, input_shape, gpu_info, conv_def, hints); OperationDef winograd_down_def; winograd_down_def.precision = op_def.precision; winograd_down_def.src_tensors.push_back(td_1); winograd_down_def.dst_tensors.push_back(op_def.dst_tensors[0]); auto& winograd_down = gpu_subgraph->operations[2]; winograd_down.input_ids = {-2}; winograd_down.output_ids = {static_cast<int>(outputs[0]->id)}; auto bias_copy = attr.bias; if (bias_copy.shape.v < attr.weights.shape.o) { bias_copy.shape = Linear(attr.weights.shape.o); bias_copy.data.resize(attr.weights.shape.o); } winograd_down.operation = SelectWinograd36To4x4(gpu_info, winograd_down_def, bias_copy); return absl::OkStatus(); } } // namespace absl::Status GPUOperationFromNode(const GpuInfo& gpu_info, const OperationDef& op_def, ModelHints hints, const std::vector<Value*>& inputs, const std::vector<Value*>& outputs, const Node& node, GPUOperationsSubgraph* gpu_subgraph) { std::unique_ptr<GPUOperation>* gpu_op = InitSingleOpSubgraph(inputs, outputs, gpu_subgraph); auto op_type = OperationTypeFromString(node.operation.type); switch (op_type) { case OperationType::ADD: { if (inputs.size() == 2 && (inputs[0]->tensor.shape.c == inputs[1]->tensor.shape.c || inputs[1]->tensor.shape.c == 1)) { GPUOperation operation = CreateElementwiseTwoInput(op_def, op_type, inputs[1]->tensor.shape); *gpu_op = absl::make_unique<GPUOperation>(std::move(operation)); return absl::OkStatus(); } else if (inputs.size() >= 2) { auto output = outputs[0]; std::vector<int> channels(inputs.size()); for (int i = 0; i < inputs.size(); ++i) { channels[i] = inputs[i]->tensor.shape.c; } SelectAdd(op_def, channels, output->tensor.shape.c, gpu_op); return absl::OkStatus(); } else if (inputs.size() == 1 && node.operation.attributes.has_value()) { auto attr = absl::any_cast<ElementwiseAttributes>(node.operation.attributes); GPUOperation operation = CreateElementwise(gpu_info, op_def, op_type, attr); *gpu_op = absl::make_unique<GPUOperation>(std::move(operation)); return absl::OkStatus(); } return absl::UnimplementedError(absl::StrCat( "No support of ", node.operation.type, " with this parameters")); } case OperationType::BATCHED_MATMUL: { // Currently only batch = 1 is supported. // Matmul replaced with this sequence: // 1) Transpose second tensor(weights). (1x1xHxW)->(Wx1x1xH) // 2) Convert second tensor(weights) from 1) to Convolution weights // 3) Run usual convolution auto second_shape = inputs[1]->tensor.shape; auto dst_shape = outputs[0]->tensor.shape; if (dst_shape.b != 1) { return absl::UnimplementedError( "Currently only batch = 1 supported for BATCHED_MATMUL."); } BHWC weights_shape(second_shape.c, 1, 1, second_shape.w); Convolution2DAttributes attr; attr.strides = HW(1, 1); attr.dilations = HW(1, 1); attr.padding.appended = HW(0, 0); attr.padding.prepended = HW(0, 0); attr.bias.shape = Linear(weights_shape.b); attr.bias.data.resize(weights_shape.b, 0.0f); TensorDescriptor transposed_desc = {op_def.src_tensors[1].data_type, op_def.src_tensors[1].storage_type, Layout::BHWC}; transposed_desc.storage_type = SelectBestStorageType( gpu_info, weights_shape, transposed_desc.storage_type, transposed_desc.data_type, transposed_desc.layout); TensorDescriptor weights_desc = {op_def.src_tensors[1].data_type, TensorStorageType::BUFFER, Layout::BHWC}; gpu_subgraph->operations.clear(); gpu_subgraph->operations.resize(3); auto& transpose_op = gpu_subgraph->operations[0]; auto& converter_op = gpu_subgraph->operations[1]; auto& conv_op = gpu_subgraph->operations[2]; conv_op.input_ids = {static_cast<int>(inputs[0]->id), -1}; conv_op.output_ids = {static_cast<int>(outputs[0]->id)}; OperationDef conv_def = op_def; conv_def.src_tensors[1] = weights_desc; ConvWeightsDescription conv_weights_desc; conv_op.operation = SelectConvolutionWithDynamicWeights( attr, weights_shape, dst_shape, gpu_info, conv_def, hints, &conv_weights_desc); int aligned_output = AlignByN(weights_shape.b, conv_weights_desc.output_group_size * 4); int aligned_input = AlignByN(weights_shape.c, 4); gpu_subgraph->new_tensors = {{BHWC(1, 1, 1, aligned_output * aligned_input * weights_shape.h * weights_shape.w), weights_desc}, {weights_shape, transposed_desc}}; OperationDef converter_def; converter_def.precision = op_def.precision; converter_def.src_tensors.push_back(transposed_desc); converter_def.dst_tensors.push_back(weights_desc); converter_op.input_ids = {-2}; converter_op.output_ids = {-1}; converter_op.operation = SelectConverterToConvWeights(conv_weights_desc, converter_def, hints); OperationDef transpose_def; transpose_def.precision = op_def.precision; transpose_def.src_tensors.push_back(op_def.src_tensors[1]); transpose_def.dst_tensors.push_back(transposed_desc); transpose_op.input_ids = {static_cast<int>(inputs[1]->id)}; transpose_op.output_ids = {-2}; TransposeAttributes transpose_attr; transpose_attr.perm = BHWC(3, 0, 1, 2); transpose_op.operation = absl::make_unique<GPUOperation>( CreateTranspose(transpose_def, transpose_attr)); return absl::OkStatus(); } case OperationType::CONCAT: { auto attr = absl::any_cast<ConcatAttributes>(node.operation.attributes); std::vector<int> channels(inputs.size()); for (int i = 0; i < inputs.size(); ++i) { channels[i] = inputs[i]->tensor.shape.c; } return SelectConcat(attr, channels, op_def, gpu_info, gpu_op); } case OperationType::CONVOLUTION_2D: { auto attr = absl::any_cast<Convolution2DAttributes>(node.operation.attributes); auto input_shape = inputs[0]->tensor.shape; auto output_shape = outputs[0]->tensor.shape; if (inputs.size() == 1) { if (WinogradFromNode(gpu_info, inputs, outputs, op_def, hints, input_shape, output_shape, attr, gpu_subgraph) .ok()) { return absl::OkStatus(); } else { gpu_op = InitSingleOpSubgraph(inputs, outputs, gpu_subgraph); *gpu_op = SelectConvolution(attr, output_shape, gpu_info, op_def, hints); return absl::OkStatus(); } } else { auto weights_shape = inputs[1]->tensor.shape; if (attr.bias.data.empty()) { attr.bias.shape = Linear(weights_shape.b); attr.bias.data.resize(weights_shape.b, 0.0f); } TensorDescriptor weights_desc = {op_def.src_tensors[1].data_type, TensorStorageType::BUFFER, Layout::BHWC}; gpu_subgraph->operations.clear(); gpu_subgraph->operations.resize(2); auto& converter_op = gpu_subgraph->operations[0]; auto& conv_op = gpu_subgraph->operations[1]; conv_op.input_ids = {static_cast<int>(inputs[0]->id), -1}; conv_op.output_ids = {static_cast<int>(outputs[0]->id)}; OperationDef conv_def = op_def; conv_def.src_tensors[1] = weights_desc; ConvWeightsDescription conv_weights_desc; conv_op.operation = SelectConvolutionWithDynamicWeights( attr, weights_shape, output_shape, gpu_info, conv_def, hints, &conv_weights_desc); int aligned_output = AlignByN(weights_shape.b, conv_weights_desc.output_group_size * 4); int aligned_input = AlignByN(weights_shape.c, 4); gpu_subgraph->new_tensors = { {BHWC(1, 1, 1, aligned_output * aligned_input * weights_shape.h * weights_shape.w), weights_desc}}; OperationDef converter_def; converter_def.precision = op_def.precision; converter_def.src_tensors.push_back(op_def.src_tensors[1]); converter_def.dst_tensors.push_back(weights_desc); converter_op.input_ids = {static_cast<int>(inputs[1]->id)}; converter_op.output_ids = {-1}; converter_op.operation = SelectConverterToConvWeights( conv_weights_desc, converter_def, hints); return absl::OkStatus(); } } case OperationType::CONVOLUTION_TRANSPOSED: { auto attr = absl::any_cast<ConvolutionTransposedAttributes>( node.operation.attributes); if (inputs.size() == 1) { *gpu_op = SelectConvolutionTransposed(attr, gpu_info, op_def); return absl::OkStatus(); } else { // CONVOLUTION_TRANSPOSED with runtime weights auto weights_shape = inputs[1]->tensor.shape; if (attr.bias.data.empty()) { attr.bias.shape = Linear(weights_shape.b); attr.bias.data.resize(weights_shape.b, 0.0f); } TensorDescriptor weights_desc = {op_def.src_tensors[1].data_type, TensorStorageType::BUFFER, Layout::BHWC}; gpu_subgraph->operations.clear(); gpu_subgraph->operations.resize(2); auto& converter_op = gpu_subgraph->operations[0]; auto& conv_op = gpu_subgraph->operations[1]; conv_op.input_ids = {static_cast<int>(inputs[0]->id), -1}; conv_op.output_ids = {static_cast<int>(outputs[0]->id)}; OperationDef conv_def = op_def; conv_def.src_tensors[1] = weights_desc; ConvWeightsDescription conv_weights_desc; conv_op.operation = SelectConvolutionTransposedWithDynamicWeights( attr, gpu_info, conv_def, &conv_weights_desc); int aligned_output = AlignByN(weights_shape.b, conv_weights_desc.output_group_size * 4); int aligned_input = AlignByN(weights_shape.c, 4); gpu_subgraph->new_tensors = { {BHWC(1, 1, 1, aligned_output * aligned_input * weights_shape.h * weights_shape.w), weights_desc}}; OperationDef converter_def; converter_def.precision = op_def.precision; converter_def.src_tensors.push_back(op_def.src_tensors[1]); converter_def.dst_tensors.push_back(weights_desc); converter_op.input_ids = {static_cast<int>(inputs[1]->id)}; converter_op.output_ids = {-1}; converter_op.operation = SelectConverterToConvWeights( conv_weights_desc, converter_def, hints); return absl::OkStatus(); } } case OperationType::DEPTHWISE_CONVOLUTION: { auto attr = absl::any_cast<DepthwiseConvolution2DAttributes>( node.operation.attributes); if (inputs.size() == 1) { *gpu_op = SelectDWConvolution(attr, gpu_info, op_def); } else { if (inputs[1]->tensor.shape.b != 1) { return absl::UnimplementedError( "No support of depthwise runtime weights with channel multiplier " "!= 1"); } *gpu_op = SelectDWConvolutionDynamicWeights(attr, gpu_info, op_def); } return absl::OkStatus(); } case OperationType::FULLY_CONNECTED: { auto attr = absl::any_cast<FullyConnectedAttributes>(node.operation.attributes); *gpu_op = SelectFullyConnected(attr, gpu_info, op_def, inputs[0]->tensor.shape.b); return absl::OkStatus(); } case OperationType::LSTM: { *gpu_op = SelectLSTM(op_def, gpu_info); return absl::OkStatus(); } case OperationType::MAX_UNPOOLING_2D: { auto attr = absl::any_cast<MaxUnpooling2DAttributes>(node.operation.attributes); *gpu_op = SelectMaxUnpooling(attr, op_def); return absl::OkStatus(); } case OperationType::MEAN: { auto attr = absl::any_cast<MeanAttributes>(node.operation.attributes); *gpu_op = SelectReduce(attr.dims, op_type, op_def, gpu_info); return absl::OkStatus(); } case OperationType::MEAN_STDDEV_NORMALIZATION: { MeanStdDevNormalization operation = CreateMeanStdDevNormalization( op_def, gpu_info, (inputs[0]->tensor.shape.c + 3) / 4); *gpu_op = absl::make_unique<MeanStdDevNormalization>(std::move(operation)); return absl::OkStatus(); } case OperationType::PAD: { auto attr = absl::any_cast<PadAttributes>(node.operation.attributes); SelectPadding(attr, op_def, gpu_op); return absl::OkStatus(); } case OperationType::POOLING_2D: { auto attr = absl::any_cast<Pooling2DAttributes>(node.operation.attributes); *gpu_op = SelectPooling(attr, op_def); return absl::OkStatus(); } case OperationType::PRELU: { auto attr = absl::any_cast<PReLUAttributes>(node.operation.attributes); *gpu_op = SelectPReLU(attr, gpu_info, op_def); return absl::OkStatus(); } case OperationType::QUANTIZE_AND_DEQUANTIZE: { auto attr = absl::any_cast<QuantizeAndDequantizeAttributes>( node.operation.attributes); *gpu_op = SelectQuantizeAndDequantize(attr, op_def); return absl::OkStatus(); } case OperationType::RELU: { auto attr = absl::any_cast<ReLUAttributes>(node.operation.attributes); *gpu_op = SelectReLU(attr, op_def); return absl::OkStatus(); } case OperationType::RESHAPE: { const int src_channels = inputs[0]->tensor.shape.c; auto attr = absl::any_cast<ReshapeAttributes>(node.operation.attributes); SelectReshape(src_channels, attr.new_shape.c, op_def, gpu_op); return absl::OkStatus(); } case OperationType::RESIZE: { auto attr = absl::any_cast<Resize2DAttributes>(node.operation.attributes); return SelectResize(attr, op_def, gpu_op); } case OperationType::SLICE: { auto attr = absl::any_cast<SliceAttributes>(node.operation.attributes); SelectStridedSlice(attr, op_def, gpu_op); return absl::OkStatus(); } case OperationType::SOFTMAX: { SelectSoftmax(inputs[0]->tensor.shape, op_def, gpu_op); return absl::OkStatus(); } case OperationType::SPACE_TO_DEPTH: { auto attr = absl::any_cast<SpaceToDepthAttributes>(node.operation.attributes); SelectSpaceToDepth(attr, op_def, gpu_op); return absl::OkStatus(); } case OperationType::TRANSPOSE: { auto attr = absl::any_cast<TransposeAttributes>(node.operation.attributes); SelectTranspose(attr, op_def, gpu_op); return absl::OkStatus(); } case OperationType::ABS: case OperationType::COPY: case OperationType::COS: case OperationType::ELU: case OperationType::EXP: case OperationType::HARD_SWISH: case OperationType::LOG: case OperationType::NEG: case OperationType::RSQRT: case OperationType::SIGMOID: case OperationType::SIN: case OperationType::SQRT: case OperationType::SQUARE: case OperationType::TANH: { GPUOperation operation = CreateElementwiseOneInput(op_def, op_type); *gpu_op = absl::make_unique<GPUOperation>(std::move(operation)); return absl::OkStatus(); } case OperationType::DIV: case OperationType::EQUAL: case OperationType::GREATER: case OperationType::GREATER_EQUAL: case OperationType::LESS: case OperationType::LESS_EQUAL: case OperationType::MAXIMUM: case OperationType::MINIMUM: case OperationType::MUL: case OperationType::NOT_EQUAL: case OperationType::POW: case OperationType::SQUARED_DIFF: case OperationType::SUB: { if (inputs.size() == 2) { GPUOperation operation = CreateElementwiseTwoInput(op_def, op_type, inputs[1]->tensor.shape); *gpu_op = absl::make_unique<GPUOperation>(std::move(operation)); return absl::OkStatus(); } else if (inputs.size() == 1 && node.operation.attributes.has_value()) { auto attr = absl::any_cast<ElementwiseAttributes>(node.operation.attributes); GPUOperation operation = CreateElementwise(gpu_info, op_def, op_type, attr); *gpu_op = absl::make_unique<GPUOperation>(std::move(operation)); return absl::OkStatus(); } return absl::UnimplementedError(absl::StrCat( "No support of ", node.operation.type, " with this parameters")); } case OperationType::REDUCE_MAXIMUM: case OperationType::REDUCE_MINIMUM: case OperationType::REDUCE_PRODUCT: case OperationType::REDUCE_SUM: { auto attr = absl::any_cast<ReduceAttributes>(node.operation.attributes); *gpu_op = SelectReduce(attr.dims, op_type, op_def, gpu_info); return absl::OkStatus(); } default: return SelectDefault(gpu_info, op_def, hints, inputs, outputs, node, gpu_subgraph); } } } // namespace cl } // namespace gpu } // namespace tflite
[ "gardener@tensorflow.org" ]
gardener@tensorflow.org
55bdb6227449717e5ebd942f5d107d634aa155a7
c4fea6f4c353c91df780354936a17fae4c5501c2
/CH2_BinaryTree/Heap/HuffmanCodes.cpp
4c679bcf2ac53ddd01494da3f66ef3813246fcfe
[]
no_license
selfsongs/Data-Structures-And-Algorithm
fb561bc21812739217cef7fa7934dd8cd69865cc
6fd36b32de04714f44f03f455cca9651791e53d4
refs/heads/master
2020-04-28T22:08:49.821463
2019-05-10T13:08:56
2019-05-10T13:08:56
null
0
0
null
null
null
null
GB18030
C++
false
false
633
cpp
//Huffman Codes哈夫曼编码的特点: //1:最优编码:总长度(WPL)最小 //2:无歧义解码:前缀码--数据仅存于叶子结点 //3:没有度为1的结点--满足1,2则必满足3 //核心最优编码长度 MinHeap H=CreateHeap(N);//创建一个空的、容量为N的最小堆 H=ReadData(N);//将f[]读入H->Data[]中 HuffmanTree T=Huffman(H);//建立Huffman树 int CodeLen=WPL(T,0);//计算最优编码总长度WPL int WPL(HuffmanTree T,int Depth) { if(!T->Left&&!T->Right) return (Depth*T->Weight); else//否则T一定有2个孩子 return (WPL(T->Left,Depth+1) +WPL(T->Right,Depth+1)); }
[ "835267528@qq.com" ]
835267528@qq.com
a1522da911f6b801104139023b3401d34332bc7c
ad1e25f475133225b12b20e34ca8f68e3c29f29c
/Algorihm Category/LIS/13711.cpp
b381379af1fa6c98d074ac185f0d7165fc6de787
[]
no_license
ioqoo/PS
7097b167145a84d60b0e0e05d5e859c5db64b300
316619ab6862de8a0e46afcd359c8281f32051a9
refs/heads/master
2020-11-30T12:24:51.210667
2020-11-22T02:14:12
2020-11-22T02:14:12
230,393,259
0
0
null
null
null
null
UTF-8
C++
false
false
778
cpp
#include <iostream> #include <algorithm> #include <vector> #include <map> #define MAX 100005 using namespace std; int N; int A[MAX], B[MAX]; vector<int> LIS; map<int, int> mp; int main() { #ifndef ONLINE_JUDGE freopen("input.txt", "r", stdin); #endif scanf("%d", &N); int temp; for (int i=0;i<N;i++){ scanf("%d", &temp); A[i] = temp; mp[temp] = i; } for (int i=0;i<N;i++){ scanf("%d", &temp); B[i] = mp[temp]; } LIS.push_back(B[0]); for (int i=1;i<N;i++){ int curr = B[i]; auto it = lower_bound(LIS.begin(), LIS.end(), curr); if (it == LIS.end()) LIS.push_back(curr); else *it = curr; } printf("%d\n", LIS.size()); return 0; }
[ "59276856+ioqoo@users.noreply.github.com" ]
59276856+ioqoo@users.noreply.github.com
2ae43c0749829b48d81fea0a30b31a16092ced4f
81bf939f16459905497c09bd26d63b1166e098b8
/uv.ino
fdf581e5230139213655c1e59edd572d9905273b
[]
no_license
karukade/liff-UV
533eed0d486d527e9395f77acafbd90e6f51cae3
afca68524277d848b0669cad6d69c72d0d0163a9
refs/heads/master
2020-07-06T08:24:31.062448
2019-08-19T15:16:17
2019-08-19T15:16:17
202,954,388
0
0
null
null
null
null
UTF-8
C++
false
false
6,195
ino
#include <BLEServer.h> #include <BLEDevice.h> #include <BLEUtils.h> #include <BLE2902.h> #include <M5Stack.h> #include <Wire.h> #include "Adafruit_VEML6070.h" // Device Name: Maximum 30 bytes #define DEVICE_NAME "LINE Things UV Sencer" // User service UUID: Change this to your generated service UUID #define USER_SERVICE_UUID "36a08824-8aaa-418a-b157-928d895361cd" // User service characteristics #define WRITE_CHARACTERISTIC_UUID "E9062E71-9E62-4BC6-B0D3-35CDCD9B027B" #define NOTIFY_CHARACTERISTIC_UUID "62FBD229-6EDD-4D1A-B554-5C4E1BB29169" // PSDI Service UUID: Fixed value for Developer Trial #define PSDI_SERVICE_UUID "E625601E-9E55-4597-A598-76018A0D293D" #define PSDI_CHARACTERISTIC_UUID "26E2B12B-85F0-4F3F-9FDD-91D114270E6E" BLEServer* thingsServer; BLESecurity *thingsSecurity; BLEService* userService; BLEService* psdiService; BLECharacteristic* psdiCharacteristic; BLECharacteristic* writeCharacteristic; BLECharacteristic* notifyCharacteristic; bool deviceConnected = false; bool oldDeviceConnected = false; bool scanUV = false; Adafruit_VEML6070 uv = Adafruit_VEML6070(); class serverCallbacks: public BLEServerCallbacks { void onConnect(BLEServer* pServer) { deviceConnected = true; }; void onDisconnect(BLEServer* pServer) { deviceConnected = false; } }; class writeCallback: public BLECharacteristicCallbacks { void onWrite(BLECharacteristic *bleWriteCharacteristic) { std::string value = bleWriteCharacteristic->getValue(); if ((char)value[0] == 1) { M5.Lcd.clear(WHITE); M5.Lcd.setTextColor(BLACK); M5.Lcd.setTextSize(4); M5.Lcd.setCursor(120, 100); M5.Lcd.println("START"); scanUV = true; } else if((char)value[0] == 0) { M5.Lcd.clear(BLACK); M5.Lcd.setTextColor(WHITE); M5.Lcd.setTextSize(4); M5.Lcd.setCursor(120, 100); M5.Lcd.println("STOP"); scanUV = false; } } }; void setup(){ BLEDevice::init(""); BLEDevice::setEncryptionLevel(ESP_BLE_SEC_ENCRYPT_NO_MITM); // Security Settings BLESecurity *thingsSecurity = new BLESecurity(); thingsSecurity->setAuthenticationMode(ESP_LE_AUTH_REQ_SC_ONLY); thingsSecurity->setCapability(ESP_IO_CAP_NONE); thingsSecurity->setInitEncryptionKey(ESP_BLE_ENC_KEY_MASK | ESP_BLE_ID_KEY_MASK); setupServices(); startAdvertising(); // M5Stack LCD Setup M5.begin(true, false, false); M5.Lcd.clear(BLACK); M5.Lcd.setTextColor(YELLOW); M5.Lcd.setTextSize(2); M5.Lcd.setCursor(65, 10); M5.Lcd.println("Ready to Connect"); // UV センサー初期化 uv.begin(VEML6070_1_T); } int getIndex(int uv_data){ int UVindex; if (uv_data <= 560) {UVindex = 1; //Low }else if (uv_data >= 561 && uv_data <= 1120) {UVindex = 2; //Moderate }else if (uv_data >= 1121 && uv_data <= 1494) {UVindex = 3; //High }else if (uv_data >= 1495 && uv_data <= 2054) {UVindex = 4; //Very High }else if (uv_data >= 2055 ) {UVindex = 5; //Extreme } return UVindex; } void loop() { // Disconnection if (!deviceConnected && oldDeviceConnected) { delay(500); // Wait for BLE Stack to be ready thingsServer->startAdvertising(); // Restart advertising oldDeviceConnected = deviceConnected; M5.Lcd.clear(BLACK); M5.Lcd.setTextColor(YELLOW); M5.Lcd.setTextSize(2); M5.Lcd.setCursor(65, 10); M5.Lcd.println("Ready to Connect"); } // Connection if (deviceConnected && !oldDeviceConnected) { oldDeviceConnected = deviceConnected; M5.Lcd.clear(BLACK); M5.Lcd.setTextColor(GREEN); M5.Lcd.setTextSize(2); M5.Lcd.setCursor(100, 10); M5.Lcd.println("Connected"); } if (deviceConnected && scanUV) { scanUVStart(); } delay(500); } void scanUVStart() { int uv_data = uv.readUV(); char index[24]; char s_uv[24]; char result[100]; snprintf(s_uv, 24, "%d", uv_data); snprintf(index, 24, "%d", getIndex(uv_data)); strcat(result, s_uv); strcat(result, ","); strcat(result, index); notifyCharacteristic->setValue(result); notifyCharacteristic->notify(); M5.Lcd.clear(WHITE); M5.Lcd.setTextColor(BLACK); M5.Lcd.setTextSize(4); M5.Lcd.setCursor(120, 100); M5.Lcd.println(result); } void setupServices(void) { // Create BLE Server thingsServer = BLEDevice::createServer(); thingsServer->setCallbacks(new serverCallbacks()); // Setup User Service userService = thingsServer->createService(USER_SERVICE_UUID); // Create Characteristics for User Service writeCharacteristic = userService->createCharacteristic(WRITE_CHARACTERISTIC_UUID, BLECharacteristic::PROPERTY_WRITE); writeCharacteristic->setAccessPermissions(ESP_GATT_PERM_READ_ENCRYPTED | ESP_GATT_PERM_WRITE_ENCRYPTED); writeCharacteristic->setCallbacks(new writeCallback()); notifyCharacteristic = userService->createCharacteristic(NOTIFY_CHARACTERISTIC_UUID, BLECharacteristic::PROPERTY_NOTIFY); notifyCharacteristic->setAccessPermissions(ESP_GATT_PERM_READ_ENCRYPTED | ESP_GATT_PERM_WRITE_ENCRYPTED); BLE2902* ble9202 = new BLE2902(); ble9202->setNotifications(true); ble9202->setAccessPermissions(ESP_GATT_PERM_READ_ENCRYPTED | ESP_GATT_PERM_WRITE_ENCRYPTED); notifyCharacteristic->addDescriptor(ble9202); // Setup PSDI Service psdiService = thingsServer->createService(PSDI_SERVICE_UUID); psdiCharacteristic = psdiService->createCharacteristic(PSDI_CHARACTERISTIC_UUID, BLECharacteristic::PROPERTY_READ); psdiCharacteristic->setAccessPermissions(ESP_GATT_PERM_READ_ENCRYPTED | ESP_GATT_PERM_WRITE_ENCRYPTED); // Set PSDI (Product Specific Device ID) value uint64_t macAddress = ESP.getEfuseMac(); psdiCharacteristic->setValue((uint8_t*) &macAddress, sizeof(macAddress)); // Start BLE Services userService->start(); psdiService->start(); } void startAdvertising(void) { // Start Advertising BLEAdvertisementData scanResponseData = BLEAdvertisementData(); scanResponseData.setFlags(0x06); // GENERAL_DISC_MODE 0x02 | BR_EDR_NOT_SUPPORTED 0x04 scanResponseData.setName(DEVICE_NAME); thingsServer->getAdvertising()->addServiceUUID(userService->getUUID()); thingsServer->getAdvertising()->setScanResponseData(scanResponseData); thingsServer->getAdvertising()->start(); }
[ "gaaadaaa16@gmail.com" ]
gaaadaaa16@gmail.com
bc7d0d3a5d3fad644a6b731b9e06f604fa467014
44c8a8afdb2d471f0db940ced8da0f53456a0d6c
/aoc6.cpp
4425f2f1d96a06bd84cc035c5e49b8bb33efb0a4
[]
no_license
peterall/aoc19
b5bf7025408764aa4fb17d099b7a9e94be6480ac
ace77f99cae9b7f0184326f09e1e7a73e3239caf
refs/heads/master
2020-09-28T09:24:51.562396
2019-12-13T23:55:13
2019-12-13T23:55:13
226,746,860
0
0
null
null
null
null
UTF-8
C++
false
false
1,569
cpp
#include <iostream> #include <fstream> #include <vector> #include <map> #include <functional> using namespace std; class Object { public: Object(string name, string parent): name(name), parent(parent) { } string name; string parent; }; int depth(shared_ptr<Object> obj, map<string,shared_ptr<Object>> &objects) { if(obj->parent == "COM") { return 1; } return 1 + depth(objects[obj->parent], objects); } int find_in_path(shared_ptr<Object> source, map<string,shared_ptr<Object>> &objects, string name) { if(source->parent == name) { return 0; } if(source->parent == "COM") { return -1; } int depth = find_in_path(objects[source->parent], objects, name); return depth == -1 ? -1 : depth + 1; } int main(int argc, char *argv[]) { auto objectmap = map<string,shared_ptr<Object>>(); auto orbitmap = ifstream("aoc6.txt"); string orbit; while(getline(orbitmap, orbit)) { auto object = make_shared<Object>(orbit.substr(4), orbit.substr(0, 3)); objectmap[object->name] = object; } auto you = objectmap["YOU"]; auto san = objectmap["SAN"]; auto obj = you; int mydepth = 0; while(obj->parent != "COM") { auto depth = find_in_path(san, objectmap, obj->parent); if(depth != -1) { cout << "Found common parent " << obj->parent << " @ total depth " << depth + mydepth << endl; break; } obj = objectmap[obj->parent]; mydepth++; } cout << "Done!" << endl; return 0; };
[ "peter@allwin.se" ]
peter@allwin.se
01c08acd1836ceffbf59cab3e689296574221259
31b19df2350a4589b14f3e740196ade36fd22c22
/CyAPIWrapper.cpp
c30ef730d6d037de40a8236bcb8b0da3fd99e695
[]
no_license
QQMr/CypressFX3DLL
961849e1559b97a60d542bd4a6c49052b73dc0cc
f009887501e23b9f8274d7689452cff17f69e6d1
refs/heads/master
2022-12-26T15:20:47.649060
2020-10-04T08:09:09
2020-10-04T08:09:09
298,616,409
0
0
null
null
null
null
UTF-8
C++
false
false
10,850
cpp
#include "stdafx.h" #include "CyAPIWrapper.h" #include <stdio.h> #define VENDOR_CMD_START_TRANSFER 0xB5 CyAPIWrapper::~CyAPIWrapper() { } CyAPIWrapper::CyAPIWrapper(int vendorID, int proID) { VENDOR_ID = vendorID; PRODUCT_ID = proID; } CyAPIWrapper::CyAPIWrapper() { } bool CyAPIWrapper::ConnectDevice() { USBDevice = new CCyUSBDevice(NULL, CYUSBDRV_GUID, true); if (USBDevice == NULL) return false; int n = USBDevice->DeviceCount(); ///////////////////////////////////////////////////////////////// // Walk through all devices looking for VENDOR_ID/PRODUCT_ID // We No longer got restricted with vendor ID and Product ID. // Check for vendor ID and product ID is discontinued. /////////////////////////////////////////////////////////////////// for (int i = 0; i < n; i++) { stringstream stringStream; USBDevice->Open(i); strDeviceData = ""; string strTemp = string(USBDevice->FriendlyName); strDeviceData = strDeviceData + "(0x";// string::Concat(strDeviceData, "(0x"); stringStream << setfill('0') << setw(4) << right << hex << USBDevice->VendorID; strDeviceData = strDeviceData + stringStream.str();// String::Concat(strDeviceData, USBDevice->VendorID.ToString("X4")); strDeviceData = strDeviceData + " - 0x";// String::Concat(strDeviceData, " - 0x"); stringStream.str(""); stringStream.clear(); stringStream << setfill('0') << setw(4) << right << hex << USBDevice->ProductID; strDeviceData = strDeviceData + stringStream.str();// String::Concat(strDeviceData, USBDevice->ProductID.ToString("X4")); strDeviceData = strDeviceData + ") ";// String::Concat(strDeviceData, ") "); strDeviceData = strDeviceData + strTemp;// String::Concat(strDeviceData, strTemp); cout << strDeviceData; if ((USBDevice->VendorID == VENDOR_ID) && (USBDevice->ProductID == PRODUCT_ID)) { EndPt = USBDevice->EndPoints[1]; break; } USBDevice->Close(); } return USBDevice->IsOpen(); } bool CyAPIWrapper::StartSampleData() { long BytesXferred = 0; unsigned long Successes = 0; unsigned long Failures = 0; int i = 0; ReceiveDataIndex = 0; StartThreadReceive(); return Successes; } bool CyAPIWrapper::EndSampleData() { long BytesXferred = 0; unsigned long Successes = 0; unsigned long Failures = 0; int i = 0; CCyControlEndPoint* ControlEndPt = (CCyControlEndPoint*)(USBDevice->EndPointOf(0)); LONG dataLength = 0; ControlEndPt->Target = TGT_DEVICE; ControlEndPt->ReqType = REQ_VENDOR; // Vendor Command that is transmitted for starting the read. ControlEndPt->ReqCode = VENDOR_CMD_START_TRANSFER; ControlEndPt->Direction = DIR_TO_DEVICE; //// Send Value = 0 and Index = 0, to stop the transaction. ControlEndPt->Value = 0x0000; ControlEndPt->Index = 0; // Send vendor command now...... Successes = ControlEndPt->XferData(NULL, dataLength, NULL); bStreaming = false; receiveThread->join(); return Successes; } const char* CyAPIWrapper::DeviceName() { return strDeviceData.c_str(); } void CyAPIWrapper::AbortXferLoop(int pending, PUCHAR* buffers, CCyIsoPktInfo** isoPktInfos, PUCHAR* contexts, OVERLAPPED inOvLap[]) { //EndPt->Abort(); - This is disabled to make sure that while application is doing IO and user unplug the device, this function hang the app. long len = EndPt->MaxPktSize * PPX; EndPt->Abort(); for (int j = 0; j < QueueSize; j++) { if (j < pending) { EndPt->WaitForXfer(&inOvLap[j], TimeOut); /*{ EndPt->Abort(); if (EndPt->La stError == ERROR_IO_PENDING) WaitForSingleObject(inOvLap[j].hEvent,2000); }*/ EndPt->FinishDataXfer(buffers[j], len, &inOvLap[j], contexts[j]); } CloseHandle(inOvLap[j].hEvent); delete[] buffers[j]; delete[] isoPktInfos[j]; } delete[] buffers; delete[] isoPktInfos; delete[] contexts; bStreaming = false; } void CyAPIWrapper::Display16Bytes(UCHAR*) { } void CyAPIWrapper::Display(string) { } void CyAPIWrapper::ShowStats(clock_t t, long bytesXferred, unsigned long successes, unsigned long failures) { clock_t elapsed = clock();; long totMS = elapsed-t; if (totMS <= 0) return; unsigned long XferRate = bytesXferred / totMS; // Convert to KBps XferRate = XferRate * 1000 / 1024; // Truncate last 1 or 2 digits int rounder = (XferRate > 2000) ? 100 : 10; XferRate = XferRate / rounder * rounder; if (XferRate > 625000) XferRate = 625000; // cout << "bytesXferred" << bytesXferred << std::endl; // cout << "successes" << successes << std::endl; // cout << "failures" << failures << std::endl; cout << "XferRate" << XferRate << std::endl; } void CyAPIWrapper::XferLoop() { long BytesXferred = 0; unsigned long Successes = 0; unsigned long Failures = 0; int i = 0; // Allocate the arrays needed for queueing PUCHAR* buffers = new PUCHAR[QueueSize]; CCyIsoPktInfo** isoPktInfos = new CCyIsoPktInfo * [QueueSize]; PUCHAR* contexts = new PUCHAR[QueueSize]; OVERLAPPED inOvLap[MAX_QUEUE_SZ]; //Allocate memory for Vector queueReceiveData.clear(); for(int i=0;i< MAX_RECEIVE_LENGTH;i++) queueReceiveData.push_back(vector<UINT8>(EndPt->MaxPktSize * PPX)); ReceiveDataIndex = 0; long len = EndPt->MaxPktSize * PPX; // Each xfer request will get PPX isoc packets EndPt->SetXferSize(len); // Allocate all the buffers for the queues for (i = 0; i < QueueSize; i++) { buffers[i] = new UCHAR[len]; isoPktInfos[i] = new CCyIsoPktInfo[PPX]; inOvLap[i].hEvent = CreateEvent(NULL, false, false, NULL); memset(buffers[i], 0xEF, len); } //-----------------------Use usb control to send vendor command------------------------// CCyControlEndPoint* ControlEndPt = (CCyControlEndPoint*)(USBDevice->EndPointOf(0)); LONG dataLength = 0; ControlEndPt->Target = TGT_DEVICE; ControlEndPt->ReqType = REQ_VENDOR; // Vendor Command that is transmitted for starting the read. ControlEndPt->ReqCode = VENDOR_CMD_START_TRANSFER; ControlEndPt->Direction = DIR_TO_DEVICE; //// Send Value = 1 and Index = 0, to kick start the transaction. ControlEndPt->Value = 0x0001; ControlEndPt->Index = 0; // Send vendor command now...... Successes = ControlEndPt->XferData(NULL, dataLength, NULL); //-----------------------Use usb control to send vendor command------------------------// clock_t t1 = clock(); // For calculating xfer rate // Queue-up the first batch of transfer requests for (i = 0; i < QueueSize; i++) { contexts[i] = EndPt->BeginDataXfer(buffers[i], len, &inOvLap[i]); if (EndPt->NtStatus || EndPt->UsbdStatus) // BeginDataXfer failed { //Display(String::Concat("Xfer request rejected. NTSTATUS = ", EndPt->NtStatus.ToString("x"))); AbortXferLoop(i + 1, buffers, isoPktInfos, contexts, inOvLap); return; } } i = 0; // The infinite xfer loop. for (; bStreaming;) { long rLen = len; // Reset this each time through because // FinishDataXfer may modify it if (!EndPt->WaitForXfer(&inOvLap[i], TimeOut)) { EndPt->Abort(); if (EndPt->LastError == ERROR_IO_PENDING) WaitForSingleObject(inOvLap[i].hEvent, 2000); } if (EndPt->Attributes == 1) // ISOC Endpoint { if (EndPt->FinishDataXfer(buffers[i], rLen, &inOvLap[i], contexts[i], isoPktInfos[i])) { CCyIsoPktInfo* pkts = isoPktInfos[i]; for (int j = 0; j < PPX; j++) { if ((pkts[j].Status == 0) && (pkts[j].Length <= EndPt->MaxPktSize)) { BytesXferred += pkts[j].Length; if (bShowData) Display16Bytes(buffers[i]); Successes++; } else Failures++; pkts[j].Length = 0; // Reset to zero for re-use. pkts[j].Status = 0; } } else Failures++; } else // BULK Endpoint { if (EndPt->FinishDataXfer(buffers[i], rLen, &inOvLap[i], contexts[i])) { Successes++; BytesXferred += rLen; if (bShowData) Display16Bytes(buffers[i]); AddReceiveData(buffers[i], len); } else Failures++; } if (BytesXferred < 0) // Rollover - reset counters { BytesXferred = 0; t1 = clock(); } // Re-submit this queue element to keep the queue full contexts[i] = EndPt->BeginDataXfer(buffers[i], len, &inOvLap[i]); if (EndPt->NtStatus || EndPt->UsbdStatus) // BeginDataXfer failed { string strDeviceData = ""; string strTemp = "Xfer request rejected. NTSTATUS = "; strTemp = strTemp + std::to_string(EndPt->NtStatus); Display(strTemp); AbortXferLoop(QueueSize, buffers, isoPktInfos, contexts, inOvLap); return; } i++; if (i == QueueSize) //Only update the display once each time through the Queue { i = 0; ShowStats(t1, BytesXferred, Successes, Failures); } } // End of the infinite loop // Memory clean-up AbortXferLoop(QueueSize, buffers, isoPktInfos, contexts, inOvLap); } long CyAPIWrapper::XferSize() { return EndPt->MaxPktSize * PPX; } void CyAPIWrapper::AddReceiveData(UINT8* dataArray, unsigned size) { vector<UINT8> dataVec; unsigned dataArraySize = size;// sizeof(dataArray) / sizeof(UINT8); memcpy(queueReceiveData[ReceiveDataIndex].data(), dataArray, dataArraySize); ReceiveDataIndex++; if (ReceiveDataIndex > MAX_RECEIVE_LENGTH) { ReceiveDataIndex = ReceiveDataIndex - 1; printf("ERROR"); } // dataVec.reserve(dataVec.size() + dataArraySize); // copy(&dataArray[0], &dataArray[dataArraySize], back_inserter(dataVec)); // queueReceiveData.push_back(dataVec); } void ThreadWork(CyAPIWrapper * m) { m->XferLoop(); } void CyAPIWrapper::StartThreadReceive() { bStreaming = true; receiveThread = new thread(ThreadWork, this); }
[ "cchangwo@yahoo.com.tw" ]
cchangwo@yahoo.com.tw
f74dbd51fc9fe549859a3745f5e91a9eb68a22a5
d8cd2456f100ae33d7b80f15e1d9c53c73feb1e4
/large_benchmarks/jetEngine/jetEngine.cpp
181f32acd63057b6c75163d9d039ed18e534ae7f
[]
no_license
arnabd88/Satire
eec6cb5af4d16f0aa6752f6c0814211ea76ee08f
8a4816aac6fad4fb86c2af8dc8e634bf02912b90
refs/heads/master
2023-04-13T21:06:46.850188
2021-04-27T16:24:12
2021-04-27T16:24:12
253,411,923
8
3
null
2021-02-04T18:33:23
2020-04-06T06:19:50
C++
UTF-8
C++
false
false
15,037
cpp
#include <cstdio> #include <iostream> #include <unistd.h> #include <cstdlib> #include<cmath> #include <cassert> #include <quadmath.h> #include <time.h> #define _low_x1 -5.0 #define _high_x1 5.0 #define _low_x2 -20.0 #define _high_x2 5.0 using namespace std; double _x1 ; double _x2 ; template<class T> void init() { _x1 = _low_x1 + static_cast<T> (rand())/(static_cast<T>(RAND_MAX/(_high_x1 - _low_x1))) ; _x2 = _low_x2 + static_cast<T> (rand())/(static_cast<T>(RAND_MAX/(_high_x2 - _low_x2))) ; } template<class T> T execute_spec_precision() { T x1 = (T) _x1 ; T x2 = (T) _x2 ; T t = ((((3 * x1) * x1) + (2 * x2)) - x1); T t_42_ = ((((3 * x1) * x1) - (2 * x2)) - x1); T d = ((x1 * x1) + 1); T s = (t / d); T s_42_ = (t_42_ / d); T jetEngine = (x1 + (((((((((2 * x1) * s) * (s - 3)) + ((x1 * x1) * ((4 * s) - 6))) * d) + (((3 * x1) * x1) * s)) + ((x1 * x1) * x1)) + x1) + (3 * s_42_))); return jetEngine ; } // t = (((3 * x1) * x1) + (2 * x2) - x1); // t' = ((((3 * x1) * x1) - (2 * x2)) - x1); // d = ((x1 * x1) + 1); // s = (t / d); // s' = (t' / d); // r1 = ((2 * x1) * s) * (s-3); // r2 = (x1 * x1) * ((4 * s) - 6); // r3 = ((3 * x1) * x1) * s ; // r4 = ((x1 * x1) * x1) ; // // return (x1 + ((((((r1 + r2) * d) + r3) + r4) + x1) + (3 * s'))) template<class T> T execute_error_expression() { T x1 = (T) _x1 ; T x2 = (T) _x2 ; T err = 2*fabs(0.5*pow(x1,3)) + fabs(0.5*(-3.0*pow(x1,3)/(1.0 + pow(x1,2)) + 9.0*pow(x1,4)/(1.0 + pow(x1,2)) + 6.0*x2*pow(x1,2)/(1.0 + pow(x1,2)))) + fabs(0.5*(0.0 - 3.0*x1/(1.0 + pow(x1,2)) + 9.0*pow(x1,2)/(1.0 + pow(x1,2)) - 6.0*x2/(1.0 + pow(x1,2)))) + fabs(0.5*(0.0 + 6.0*pow(x1,2)/(1.0 + pow(x1,2)) - 25.0*pow(x1,3)/(1.0 + pow(x1,2)) + 2.0*pow(x1,3)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) + 27.0*pow(x1,4)/(1.0 + pow(x1,2)) - 12.0*pow(x1,4)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) - 22.0*pow(x1,5)/(1.0 + pow(x1,2)) + 20.0*pow(x1,5)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) + 12.0*pow(x1,6)/(1.0 + pow(x1,2)) - 12.0*pow(x1,6)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) + 18.0*pow(x1,7)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) - 12.0*x2*x1/(1.0 + pow(x1,2)) + 14.0*x2*pow(x1,2)/(1.0 + pow(x1,2)) - 8.0*x2*pow(x1,2)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) - 12.0*x2*pow(x1,3)/(1.0 + pow(x1,2)) + 24.0*x2*pow(x1,3)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) + 8.0*x2*pow(x1,4)/(1.0 + pow(x1,2)) - 8.0*x2*pow(x1,4)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) + 24.0*x2*pow(x1,5)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) + 8.0*pow(x2,2)*x1/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) + 8.0*pow(x2,2)*pow(x1,3)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) - 6.0*pow(x1,2) - 6.0*pow(x1,4))) + fabs(0.5*(0.0 + 6.0*pow(x1,2)/(1.0 + pow(x1,2)) - 22.0*pow(x1,3)/(1.0 + pow(x1,2)) + 2.0*pow(x1,3)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) + 18.0*pow(x1,4)/(1.0 + pow(x1,2)) - 12.0*pow(x1,4)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) - 22.0*pow(x1,5)/(1.0 + pow(x1,2)) + 20.0*pow(x1,5)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) + 12.0*pow(x1,6)/(1.0 + pow(x1,2)) - 12.0*pow(x1,6)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) + 18.0*pow(x1,7)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) - 12.0*x2*x1/(1.0 + pow(x1,2)) + 8.0*x2*pow(x1,2)/(1.0 + pow(x1,2)) - 8.0*x2*pow(x1,2)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) - 12.0*x2*pow(x1,3)/(1.0 + pow(x1,2)) + 24.0*x2*pow(x1,3)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) + 8.0*x2*pow(x1,4)/(1.0 + pow(x1,2)) - 8.0*x2*pow(x1,4)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) + 24.0*x2*pow(x1,5)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) + 8.0*pow(x2,2)*x1/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) + 8.0*pow(x2,2)*pow(x1,3)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) - 6.0*pow(x1,2) - 6.0*pow(x1,4))) + fabs(0.5*(0.0 + 6.0*pow(x1,2)/(1.0 + pow(x1,2)) - 25.0*pow(x1,3)/(1.0 + pow(x1,2)) + 2.0*pow(x1,3)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) + 27.0*pow(x1,4)/(1.0 + pow(x1,2)) - 12.0*pow(x1,4)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) - 22.0*pow(x1,5)/(1.0 + pow(x1,2)) + 20.0*pow(x1,5)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) + 12.0*pow(x1,6)/(1.0 + pow(x1,2)) - 12.0*pow(x1,6)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) + 18.0*pow(x1,7)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) - 12.0*x2*x1/(1.0 + pow(x1,2)) + 14.0*x2*pow(x1,2)/(1.0 + pow(x1,2)) - 8.0*x2*pow(x1,2)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) - 12.0*x2*pow(x1,3)/(1.0 + pow(x1,2)) + 24.0*x2*pow(x1,3)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) + 8.0*x2*pow(x1,4)/(1.0 + pow(x1,2)) - 8.0*x2*pow(x1,4)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) + 24.0*x2*pow(x1,5)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) + 8.0*pow(x2,2)*x1/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) + 8.0*pow(x2,2)*pow(x1,3)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) - 6.0*pow(x1,2) + pow(x1,3) - 6.0*pow(x1,4))) + fabs(0.5*(0.0 + x1 + 6.0*pow(x1,2)/(1.0 + pow(x1,2)) - 25.0*pow(x1,3)/(1.0 + pow(x1,2)) + 2.0*pow(x1,3)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) + 27.0*pow(x1,4)/(1.0 + pow(x1,2)) - 12.0*pow(x1,4)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) - 22.0*pow(x1,5)/(1.0 + pow(x1,2)) + 20.0*pow(x1,5)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) + 12.0*pow(x1,6)/(1.0 + pow(x1,2)) - 12.0*pow(x1,6)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) + 18.0*pow(x1,7)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) - 12.0*x2*x1/(1.0 + pow(x1,2)) + 14.0*x2*pow(x1,2)/(1.0 + pow(x1,2)) - 8.0*x2*pow(x1,2)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) - 12.0*x2*pow(x1,3)/(1.0 + pow(x1,2)) + 24.0*x2*pow(x1,3)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) + 8.0*x2*pow(x1,4)/(1.0 + pow(x1,2)) - 8.0*x2*pow(x1,4)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) + 24.0*x2*pow(x1,5)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) + 8.0*pow(x2,2)*x1/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) + 8.0*pow(x2,2)*pow(x1,3)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) - 6.0*pow(x1,2) + pow(x1,3) - 6.0*pow(x1,4))) + fabs(0.5*(0.0 + x1 - 3.0*x1/(1.0 + pow(x1,2)) + 15.0*pow(x1,2)/(1.0 + pow(x1,2)) - 25.0*pow(x1,3)/(1.0 + pow(x1,2)) + 2.0*pow(x1,3)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) + 27.0*pow(x1,4)/(1.0 + pow(x1,2)) - 12.0*pow(x1,4)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) - 22.0*pow(x1,5)/(1.0 + pow(x1,2)) + 20.0*pow(x1,5)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) + 12.0*pow(x1,6)/(1.0 + pow(x1,2)) - 12.0*pow(x1,6)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) + 18.0*pow(x1,7)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) - 6.0*x2/(1.0 + pow(x1,2)) - 12.0*x2*x1/(1.0 + pow(x1,2)) + 14.0*x2*pow(x1,2)/(1.0 + pow(x1,2)) - 8.0*x2*pow(x1,2)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) - 12.0*x2*pow(x1,3)/(1.0 + pow(x1,2)) + 24.0*x2*pow(x1,3)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) + 8.0*x2*pow(x1,4)/(1.0 + pow(x1,2)) - 8.0*x2*pow(x1,4)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) + 24.0*x2*pow(x1,5)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) + 8.0*pow(x2,2)*x1/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) + 8.0*pow(x2,2)*pow(x1,3)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) - 6.0*pow(x1,2) + pow(x1,3) - 6.0*pow(x1,4))) + fabs(0.5*(0.0 + 2*x1 - 3.0*x1/(1.0 + pow(x1,2)) + 15.0*pow(x1,2)/(1.0 + pow(x1,2)) - 25.0*pow(x1,3)/(1.0 + pow(x1,2)) + 2.0*pow(x1,3)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) + 27.0*pow(x1,4)/(1.0 + pow(x1,2)) - 12.0*pow(x1,4)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) - 22.0*pow(x1,5)/(1.0 + pow(x1,2)) + 20.0*pow(x1,5)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) + 12.0*pow(x1,6)/(1.0 + pow(x1,2)) - 12.0*pow(x1,6)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) + 18.0*pow(x1,7)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) - 6.0*x2/(1.0 + pow(x1,2)) - 12.0*x2*x1/(1.0 + pow(x1,2)) + 14.0*x2*pow(x1,2)/(1.0 + pow(x1,2)) - 8.0*x2*pow(x1,2)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) - 12.0*x2*pow(x1,3)/(1.0 + pow(x1,2)) + 24.0*x2*pow(x1,3)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) + 8.0*x2*pow(x1,4)/(1.0 + pow(x1,2)) - 8.0*x2*pow(x1,4)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) + 24.0*x2*pow(x1,5)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) + 8.0*pow(x2,2)*x1/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) + 8.0*pow(x2,2)*pow(x1,3)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) - 6.0*pow(x1,2) + pow(x1,3) - 6.0*pow(x1,4))) + fabs(1.5*(-x1/(1.0 + pow(x1,2)) + 3.0*pow(x1,2)/(1.0 + pow(x1,2)) - 2.0*x2/(1.0 + pow(x1,2)))) + fabs(0.5*pow(x1,2)*(0.0 + 6.0*pow(x1,2)/(1.0 + pow(x1,2)) - 22.0*pow(x1,3)/(1.0 + pow(x1,2)) + 2.0*pow(x1,3)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) + 12.0*pow(x1,4)/(1.0 + pow(x1,2)) - 12.0*pow(x1,4)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) + 18.0*pow(x1,5)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) - 3.0*(-x1 - 2.0*x2 + 3.0*pow(x1,2))/pow((1.0 + pow(x1,2)),2) + (1.0 + pow(x1,2))*(-6.0 - 4.0*x1/(1.0 + pow(x1,2)) + 12.0*pow(x1,2)/(1.0 + pow(x1,2)) + 8.0*x2/(1.0 + pow(x1,2))) - 12.0*x2*x1/(1.0 + pow(x1,2)) + 8.0*x2*pow(x1,2)/(1.0 + pow(x1,2)) - 8.0*x2*pow(x1,2)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) + 24.0*x2*pow(x1,3)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) + 8.0*pow(x2,2)*x1/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) - (-x1 + 2.0*x2 + 3.0*pow(x1,2))*(4.0*pow(x1,2)*(1.0 + pow(x1,2)) + (1.0 + pow(x1,2))*(-2.0*pow(x1,2)/(1.0 + pow(x1,2)) + 6.0*pow(x1,3)/(1.0 + pow(x1,2)) + 4.0*x2*x1/(1.0 + pow(x1,2))) + 2.0*x1*(1.0 + pow(x1,2))*(-3.0 - x1/(1.0 + pow(x1,2)) + 3.0*pow(x1,2)/(1.0 + pow(x1,2)) + 2.0*x2/(1.0 + pow(x1,2))) + 3.0*pow(x1,2))/pow((1.0 + pow(x1,2)),2) - 6.0*pow(x1,2))) + fabs(0.5*(1.0 + pow(x1,2))*(-4.0*pow(x1,3)/(1.0 + pow(x1,2)) + 12.0*pow(x1,4)/(1.0 + pow(x1,2)) + 8.0*x2*pow(x1,2)/(1.0 + pow(x1,2)) - 6.0*pow(x1,2))) + fabs(0.5*(1.0 + pow(x1,2))*(0.0 + 6.0*pow(x1,2)/(1.0 + pow(x1,2)) - 22.0*pow(x1,3)/(1.0 + pow(x1,2)) + 2.0*pow(x1,3)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) + 12.0*pow(x1,4)/(1.0 + pow(x1,2)) - 12.0*pow(x1,4)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) + 18.0*pow(x1,5)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) - 12.0*x2*x1/(1.0 + pow(x1,2)) + 8.0*x2*pow(x1,2)/(1.0 + pow(x1,2)) - 8.0*x2*pow(x1,2)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) + 24.0*x2*pow(x1,3)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) + 8.0*pow(x2,2)*x1/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) - 6.0*pow(x1,2))) + fabs(0.5*(4.0*pow(x1,2)*(1.0 + pow(x1,2)) + (1.0 + pow(x1,2))*(-2.0*pow(x1,2)/(1.0 + pow(x1,2)) + 6.0*pow(x1,3)/(1.0 + pow(x1,2)) + 4.0*x2*x1/(1.0 + pow(x1,2))) + 2.0*x1*(1.0 + pow(x1,2))*(-3.0 - x1/(1.0 + pow(x1,2)) + 3.0*pow(x1,2)/(1.0 + pow(x1,2)) + 2.0*x2/(1.0 + pow(x1,2))) + 3.0*pow(x1,2))*(-x1/(1.0 + pow(x1,2)) + 3.0*pow(x1,2)/(1.0 + pow(x1,2)) + 2.0*x2/(1.0 + pow(x1,2)))) + fabs(0.5*(0.0 + 6.0*pow(x1,2)/(1.0 + pow(x1,2)) - 18.0*pow(x1,3)/(1.0 + pow(x1,2)) + 2.0*pow(x1,3)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) - 12.0*pow(x1,4)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) + 18.0*pow(x1,5)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) - 12.0*x2*x1/(1.0 + pow(x1,2)) - 8.0*x2*pow(x1,2)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) + 24.0*x2*pow(x1,3)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) + 8.0*pow(x2,2)*x1/(1.0 + 2.0*pow(x1,2) + pow(x1,4)))*(1.0 + pow(x1,2))) + fabs(0.5*(0.0 + 6.0*pow(x1,2)/(1.0 + pow(x1,2)) - 22.0*pow(x1,3)/(1.0 + pow(x1,2)) + 2.0*pow(x1,3)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) + 12.0*pow(x1,4)/(1.0 + pow(x1,2)) - 12.0*pow(x1,4)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) + 18.0*pow(x1,5)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) - 3.0*(-x1 - 2.0*x2 + 3.0*pow(x1,2))/pow((1.0 + pow(x1,2)),2) - 12.0*x2*x1/(1.0 + pow(x1,2)) + 8.0*x2*pow(x1,2)/(1.0 + pow(x1,2)) - 8.0*x2*pow(x1,2)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) + 24.0*x2*pow(x1,3)/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) + 8.0*pow(x2,2)*x1/(1.0 + 2.0*pow(x1,2) + pow(x1,4)) - (-x1 + 2.0*x2 + 3.0*pow(x1,2))*(4.0*pow(x1,2)*(1.0 + pow(x1,2)) + (1.0 + pow(x1,2))*(-2.0*pow(x1,2)/(1.0 + pow(x1,2)) + 6.0*pow(x1,3)/(1.0 + pow(x1,2)) + 4.0*x2*x1/(1.0 + pow(x1,2))) + 2.0*x1*(1.0 + pow(x1,2))*(-3.0 - x1/(1.0 + pow(x1,2)) + 3.0*pow(x1,2)/(1.0 + pow(x1,2)) + 2.0*x2/(1.0 + pow(x1,2))) + 3.0*pow(x1,2))/pow((1.0 + pow(x1,2)),2) - 6.0*pow(x1,2))*(1.0 + pow(x1,2))) + 2*fabs(1.5*pow(x1,2)*(-x1/(1.0 + pow(x1,2)) + 3.0*pow(x1,2)/(1.0 + pow(x1,2)) + 2.0*x2/(1.0 + pow(x1,2)))) + fabs(1.5*(-2.0*x2 + 3.0*pow(x1,2))/(1.0 + pow(x1,2))) + fabs(1.5*(-x1 - 2.0*x2 + 3.0*pow(x1,2))/(1.0 + pow(x1,2))) + fabs(3.0*x2/(1.0 + pow(x1,2))) + 2*fabs(4.5*pow(x1,2)/(1.0 + pow(x1,2))) + fabs(0.5*pow(x1,2)*(1.0 + pow(x1,2))*(-6.0 - 4.0*x1/(1.0 + pow(x1,2)) + 12.0*pow(x1,2)/(1.0 + pow(x1,2)) + 8.0*x2/(1.0 + pow(x1,2)))) + fabs(0.5*pow(x1,2)*(1.0 + pow(x1,2))*(0.0 - 4.0*x1/(1.0 + pow(x1,2)) + 12.0*pow(x1,2)/(1.0 + pow(x1,2)) + 8.0*x2/(1.0 + pow(x1,2)))) + 2*fabs(0.5*(1.0 + pow(x1,2))*(-2.0*pow(x1,2)/(1.0 + pow(x1,2)) + 6.0*pow(x1,3)/(1.0 + pow(x1,2)) + 4.0*x2*x1/(1.0 + pow(x1,2)))*(-3.0 - x1/(1.0 + pow(x1,2)) + 3.0*pow(x1,2)/(1.0 + pow(x1,2)) + 2.0*x2/(1.0 + pow(x1,2)))) + fabs(0.5*(2.0*x2 + 3.0*pow(x1,2))*(4.0*pow(x1,2)*(1.0 + pow(x1,2)) + (1.0 + pow(x1,2))*(-2.0*pow(x1,2)/(1.0 + pow(x1,2)) + 6.0*pow(x1,3)/(1.0 + pow(x1,2)) + 4.0*x2*x1/(1.0 + pow(x1,2))) + 2.0*x1*(1.0 + pow(x1,2))*(-3.0 - x1/(1.0 + pow(x1,2)) + 3.0*pow(x1,2)/(1.0 + pow(x1,2)) + 2.0*x2/(1.0 + pow(x1,2))) + 3.0*pow(x1,2))/(1.0 + pow(x1,2))) + fabs(0.5*(-x1 + 2.0*x2 + 3.0*pow(x1,2))*(4.0*pow(x1,2)*(1.0 + pow(x1,2)) + (1.0 + pow(x1,2))*(-2.0*pow(x1,2)/(1.0 + pow(x1,2)) + 6.0*pow(x1,3)/(1.0 + pow(x1,2)) + 4.0*x2*x1/(1.0 + pow(x1,2))) + 2.0*x1*(1.0 + pow(x1,2))*(-3.0 - x1/(1.0 + pow(x1,2)) + 3.0*pow(x1,2)/(1.0 + pow(x1,2)) + 2.0*x2/(1.0 + pow(x1,2))) + 3.0*pow(x1,2))/(1.0 + pow(x1,2))) + fabs(1.0*x2*(4.0*pow(x1,2)*(1.0 + pow(x1,2)) + (1.0 + pow(x1,2))*(-2.0*pow(x1,2)/(1.0 + pow(x1,2)) + 6.0*pow(x1,3)/(1.0 + pow(x1,2)) + 4.0*x2*x1/(1.0 + pow(x1,2))) + 2.0*x1*(1.0 + pow(x1,2))*(-3.0 - x1/(1.0 + pow(x1,2)) + 3.0*pow(x1,2)/(1.0 + pow(x1,2)) + 2.0*x2/(1.0 + pow(x1,2))) + 3.0*pow(x1,2))/(1.0 + pow(x1,2))) + 2*fabs(1.5*pow(x1,2)*(4.0*pow(x1,2)*(1.0 + pow(x1,2)) + (1.0 + pow(x1,2))*(-2.0*pow(x1,2)/(1.0 + pow(x1,2)) + 6.0*pow(x1,3)/(1.0 + pow(x1,2)) + 4.0*x2*x1/(1.0 + pow(x1,2))) + 2.0*x1*(1.0 + pow(x1,2))*(-3.0 - x1/(1.0 + pow(x1,2)) + 3.0*pow(x1,2)/(1.0 + pow(x1,2)) + 2.0*x2/(1.0 + pow(x1,2))) + 3.0*pow(x1,2))/(1.0 + pow(x1,2))) + fabs(1.0*x1*(1.0 + pow(x1,2))*(-3.0 - x1/(1.0 + pow(x1,2)) + 3.0*pow(x1,2)/(1.0 + pow(x1,2)) + 2.0*x2/(1.0 + pow(x1,2)))*(-x1/(1.0 + pow(x1,2)) + 3.0*pow(x1,2)/(1.0 + pow(x1,2)) + 2.0*x2/(1.0 + pow(x1,2)))); return err ; } int main(int argc, char** argv) { srand(time(0)); FILE *fp; int N; sscanf(argv[1], "%d", &N); fp = fopen("jetEngine_error_profile.csv", "w+"); __float80 val_dp = 0; __float80 val_sp = 0; __float80 val_qp = 0; __float80 err_dp_sp = 0; __float80 err_qp_dp = 0; __float80 maxerrdp = 0.0; __float80 maxerrsp = 0.0; __float80 maxerrstat = 0.0; for (int i=0; i<N; i++) { init<double>(); __float80 val_sp = (__float80) execute_spec_precision<float>(); __float80 val_dp = (__float80) execute_spec_precision<double>(); __float80 val_qp = (__float80) execute_spec_precision<__float128>(); __float80 errstat = ((__float80) execute_error_expression<double>())*pow(2,-53); __float80 local_err_sp = fabs(val_dp - val_sp); __float80 local_err_dp = fabs(val_qp - val_dp); err_dp_sp += local_err_sp; err_qp_dp += local_err_dp; if(maxerrsp < local_err_sp) maxerrsp = local_err_sp ; if(maxerrdp < local_err_dp) maxerrdp = local_err_dp ; if(maxerrstat < errstat) maxerrstat = errstat ; //fprintf(fp, "%0.50f, %0.50f, %0.50llf, %0.50llf\n", _x1, _x2, local_err_sp, local_err_dp); fprintf(fp, "%0.50f, %0.50f, %0.50llf, %0.50llf\n", _x1, _x2, local_err_dp, errstat); assert(maxerrstat >= maxerrdp); } fclose(fp); cout << "Avg Error in DP -> " << err_qp_dp/N << endl ; cout << "Avg Error in SP -> " << err_dp_sp/N << endl ; cout << "Max Error in DP -> " << maxerrdp << endl ; cout << "Max Error in SP -> " << maxerrsp << endl ; cout << "Max Error STAT -> " << maxerrstat << endl ; return 1; }
[ "arnab.d.88@gmail.com" ]
arnab.d.88@gmail.com
a90a5c70ec9f259c4841e8a8ec432d885c47aad6
5ac113c326bef59d8e127b60d5122045bb564241
/src/qt/transactionrecord.h
82535e9893d0b12b4577d80ea4ec51305b7ddbef
[ "MIT" ]
permissive
warrenween/ticoin
ce09cc4ee85475c82cb8329db143ba71207ffa72
e767f0d80fc8b1788dd259168545bf1d942e472b
refs/heads/master
2021-01-18T15:31:52.622297
2017-06-12T03:55:33
2017-06-12T03:55:33
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,266
h
/**-5-10Copyright (c) 2011-2013 The ticoin developers /**-5-10Distributed under the MIT/X11 software license, see the accompanying /**-5-10file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef TRANSACTIONRECORD_H #define TRANSACTIONRECORD_H #include "uint256.h" #include <QList> #include <QString> class CWallet; class CWalletTx; /** UI model for transaction status. The transaction status is the part of a transaction that will change over time. */ class TransactionStatus { public: TransactionStatus(): countsForBalance(false), sortKey(""), matures_in(0), status(Offline), depth(0), open_for(0), cur_num_blocks(-1) { } enum Status { Confirmed, /**< Have 6 or more confirmations (normal tx) or fully mature (mined tx) **/ //**-5-10Normal (sent/received) transactions OpenUntilDate, /**< Transaction not yet final, waiting for date */ OpenUntilBlock, /**< Transaction not yet final, waiting for block */ Offline, /**< Not sent to any other nodes **/ Unconfirmed, /**< Not yet mined into a block **/ Confirming, /**< Confirmed, but waiting for the recommended number of confirmations **/ Conflicted, /**< Conflicts with other transaction or mempool **/ //**-5-10Generated (mined) transactions Immature, /**< Mined but waiting for maturity */ MaturesWarning, /**< Transaction will likely not mature because no nodes have confirmed */ NotAccepted /**< Mined but not accepted */ }; //**-5-10Transaction counts towards available balance bool countsForBalance; //**-5-10Sorting key based on status std::string sortKey; /** @name Generated (mined) transactions @{*/ int matures_in; /**@}*/ /** @name Reported status @{*/ Status status; qint64 depth; qint64 open_for; /**< Timestamp if status==OpenUntilDate, otherwise number of additional blocks that need to be mined before finalization */ /**@}*/ /** Current number of blocks (to know whether cached status is still valid) */ int cur_num_blocks; }; /** UI model for a transaction. A core transaction can be represented by multiple UI transactions if it has multiple outputs. */ class TransactionRecord { public: enum Type { Other, Generated, SendToAddress, SendToOther, RecvWithAddress, RecvFromOther, SendToSelf }; /** Number of confirmation recommended for accepting a transaction */ static const int RecommendedNumConfirmations = 6; TransactionRecord(): hash(), time(0), type(Other), address(""), debit(0), credit(0), idx(0) { } TransactionRecord(uint256 hash, qint64 time): hash(hash), time(time), type(Other), address(""), debit(0), credit(0), idx(0) { } TransactionRecord(uint256 hash, qint64 time, Type type, const std::string &address, qint64 debit, qint64 credit): hash(hash), time(time), type(type), address(address), debit(debit), credit(credit), idx(0) { } /** Decompose CWallet transaction to model transaction records. */ static bool showTransaction(const CWalletTx &wtx); static QList<TransactionRecord> decomposeTransaction(const CWallet *wallet, const CWalletTx &wtx); /** @name Immutable transaction attributes @{*/ uint256 hash; qint64 time; Type type; std::string address; qint64 debit; qint64 credit; /**@}*/ /** Subtransaction index, for sort key */ int idx; /** Status: can change with block chain update */ TransactionStatus status; /** Return the unique identifier for this transaction (part) */ QString getTxID() const; /** Format subtransaction id */ static QString formatSubTxId(const uint256 &hash, int vout); /** Update status from core wallet tx. */ void updateStatus(const CWalletTx &wtx); /** Return whether a status update is needed. */ bool statusUpdateNeeded(); }; #endif /**-5-10TRANSACTIONRECORD_H
[ "evvalue@gmail.com" ]
evvalue@gmail.com
5c63879086a5b0b7c577cdd5496b44b18327573d
0a1cb7a257d79609690a8408371a91fc92226ca4
/src/qt/addressbookpage.cpp
03599867e11e9b0f1b6f3f9082994b1b1065d9e1
[ "MIT" ]
permissive
AMFeed-blockchain/source
48248d6c1de548ef824465462114046ccb31059a
6d6d1452bc20f058b4e16bc9b0e7dd752f50974a
refs/heads/master
2020-09-12T09:36:02.477368
2019-11-18T08:37:35
2019-11-18T08:37:35
222,383,367
0
0
null
null
null
null
UTF-8
C++
false
false
11,152
cpp
// Copyright (c) 2011-2015 The Bitcoin Core developers // Copyright (c) 2014-2017 The Dash Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #if defined(HAVE_CONFIG_H) #include "config/amfeed-config.h" #endif #include "addressbookpage.h" #include "ui_addressbookpage.h" #include "addresstablemodel.h" #include "bitcoingui.h" #include "csvmodelwriter.h" #include "editaddressdialog.h" #include "guiutil.h" #include "optionsmodel.h" #include "platformstyle.h" #include "qrdialog.h" #include <QIcon> #include <QMenu> #include <QMessageBox> #include <QSortFilterProxyModel> AddressBookPage::AddressBookPage(const PlatformStyle *platformStyle, Mode _mode, Tabs _tab, QWidget *parent) : QDialog(parent), ui(new Ui::AddressBookPage), model(0), mode(_mode), tab(_tab) { QString theme = GUIUtil::getThemeName(); ui->setupUi(this); if (!platformStyle->getImagesOnButtons()) { ui->newAddress->setIcon(QIcon()); ui->copyAddress->setIcon(QIcon()); ui->deleteAddress->setIcon(QIcon()); ui->exportButton->setIcon(QIcon()); } else { ui->newAddress->setIcon(QIcon(":/icons/" + theme + "/add")); ui->copyAddress->setIcon(QIcon(":/icons/" + theme + "/editcopy")); ui->deleteAddress->setIcon(QIcon(":/icons/" + theme + "/remove")); ui->exportButton->setIcon(QIcon(":/icons/" + theme + "/export")); } ui->showAddressQRCode->setIcon(QIcon()); switch(mode) { case ForSelection: switch(tab) { case SendingTab: setWindowTitle(tr("Choose the address to send coins to")); break; case ReceivingTab: setWindowTitle(tr("Choose the address to receive coins with")); break; } connect(ui->tableView, SIGNAL(doubleClicked(QModelIndex)), this, SLOT(accept())); ui->tableView->setEditTriggers(QAbstractItemView::NoEditTriggers); ui->tableView->setFocus(); ui->closeButton->setText(tr("C&hoose")); ui->exportButton->hide(); break; case ForEditing: switch(tab) { case SendingTab: setWindowTitle(tr("Sending addresses")); break; case ReceivingTab: setWindowTitle(tr("Receiving addresses")); break; } break; } switch(tab) { case SendingTab: ui->labelExplanation->setText(tr("These are your AMFeed addresses for sending payments. Always check the amount and the receiving address before sending coins.")); ui->deleteAddress->setVisible(true); break; case ReceivingTab: ui->labelExplanation->setText(tr("These are your AMFeed addresses for receiving payments. It is recommended to use a new receiving address for each transaction.")); ui->deleteAddress->setVisible(false); break; } // Context menu actions QAction *copyAddressAction = new QAction(tr("&Copy Address"), this); QAction *copyLabelAction = new QAction(tr("Copy &Label"), this); QAction *editAction = new QAction(tr("&Edit"), this); QAction *showAddressQRCodeAction = new QAction(tr("&Show address QR code"), this); deleteAction = new QAction(ui->deleteAddress->text(), this); // Build context menu contextMenu = new QMenu(this); contextMenu->addAction(copyAddressAction); contextMenu->addAction(copyLabelAction); contextMenu->addAction(editAction); if(tab == SendingTab) contextMenu->addAction(deleteAction); contextMenu->addSeparator(); contextMenu->addAction(showAddressQRCodeAction); // Connect signals for context menu actions connect(copyAddressAction, SIGNAL(triggered()), this, SLOT(on_copyAddress_clicked())); connect(copyLabelAction, SIGNAL(triggered()), this, SLOT(onCopyLabelAction())); connect(editAction, SIGNAL(triggered()), this, SLOT(onEditAction())); connect(deleteAction, SIGNAL(triggered()), this, SLOT(on_deleteAddress_clicked())); connect(showAddressQRCodeAction, SIGNAL(triggered()), this, SLOT(on_showAddressQRCode_clicked())); connect(ui->tableView, SIGNAL(customContextMenuRequested(QPoint)), this, SLOT(contextualMenu(QPoint))); connect(ui->closeButton, SIGNAL(clicked()), this, SLOT(accept())); } AddressBookPage::~AddressBookPage() { delete ui; } void AddressBookPage::setModel(AddressTableModel *_model) { this->model = _model; if(!_model) return; proxyModel = new QSortFilterProxyModel(this); proxyModel->setSourceModel(_model); proxyModel->setDynamicSortFilter(true); proxyModel->setSortCaseSensitivity(Qt::CaseInsensitive); proxyModel->setFilterCaseSensitivity(Qt::CaseInsensitive); switch(tab) { case ReceivingTab: // Receive filter proxyModel->setFilterRole(AddressTableModel::TypeRole); proxyModel->setFilterFixedString(AddressTableModel::Receive); break; case SendingTab: // Send filter proxyModel->setFilterRole(AddressTableModel::TypeRole); proxyModel->setFilterFixedString(AddressTableModel::Send); break; } ui->tableView->setModel(proxyModel); ui->tableView->sortByColumn(0, Qt::AscendingOrder); // Set column widths #if QT_VERSION < 0x050000 ui->tableView->horizontalHeader()->setResizeMode(AddressTableModel::Label, QHeaderView::Stretch); ui->tableView->horizontalHeader()->setResizeMode(AddressTableModel::Address, QHeaderView::ResizeToContents); #else ui->tableView->horizontalHeader()->setSectionResizeMode(AddressTableModel::Label, QHeaderView::Stretch); ui->tableView->horizontalHeader()->setSectionResizeMode(AddressTableModel::Address, QHeaderView::ResizeToContents); #endif connect(ui->tableView->selectionModel(), SIGNAL(selectionChanged(QItemSelection,QItemSelection)), this, SLOT(selectionChanged())); // Select row for newly created address connect(_model, SIGNAL(rowsInserted(QModelIndex,int,int)), this, SLOT(selectNewAddress(QModelIndex,int,int))); selectionChanged(); } void AddressBookPage::on_copyAddress_clicked() { GUIUtil::copyEntryData(ui->tableView, AddressTableModel::Address); } void AddressBookPage::onCopyLabelAction() { GUIUtil::copyEntryData(ui->tableView, AddressTableModel::Label); } void AddressBookPage::onEditAction() { if(!model) return; if(!ui->tableView->selectionModel()) return; QModelIndexList indexes = ui->tableView->selectionModel()->selectedRows(); if(indexes.isEmpty()) return; EditAddressDialog dlg( tab == SendingTab ? EditAddressDialog::EditSendingAddress : EditAddressDialog::EditReceivingAddress, this); dlg.setModel(model); QModelIndex origIndex = proxyModel->mapToSource(indexes.at(0)); dlg.loadRow(origIndex.row()); dlg.exec(); } void AddressBookPage::on_newAddress_clicked() { if(!model) return; EditAddressDialog dlg( tab == SendingTab ? EditAddressDialog::NewSendingAddress : EditAddressDialog::NewReceivingAddress, this); dlg.setModel(model); if(dlg.exec()) { newAddressToSelect = dlg.getAddress(); } } void AddressBookPage::on_deleteAddress_clicked() { QTableView *table = ui->tableView; if(!table->selectionModel()) return; QModelIndexList indexes = table->selectionModel()->selectedRows(); if(!indexes.isEmpty()) { table->model()->removeRow(indexes.at(0).row()); } } void AddressBookPage::on_showAddressQRCode_clicked() { QList<QModelIndex> entries = GUIUtil::getEntryData(ui->tableView, AddressTableModel::Address); if (entries.empty()) { return; } QString strAddress = entries.at(0).data(Qt::EditRole).toString(); QRDialog* dialog = new QRDialog(this); OptionsModel *model = new OptionsModel(NULL, false); dialog->setModel(model); dialog->setAttribute(Qt::WA_DeleteOnClose); dialog->setInfo(tr("QR code"), "amfeed:"+strAddress, "", strAddress); dialog->show(); } void AddressBookPage::selectionChanged() { // Set button states based on selected tab and selection QTableView *table = ui->tableView; if(!table->selectionModel()) return; if(table->selectionModel()->hasSelection()) { switch(tab) { case SendingTab: // In sending tab, allow deletion of selection ui->deleteAddress->setEnabled(true); ui->deleteAddress->setVisible(true); deleteAction->setEnabled(true); break; case ReceivingTab: // Deleting receiving addresses, however, is not allowed ui->deleteAddress->setEnabled(false); ui->deleteAddress->setVisible(false); deleteAction->setEnabled(false); break; } ui->copyAddress->setEnabled(true); ui->showAddressQRCode->setEnabled(true); } else { ui->deleteAddress->setEnabled(false); ui->copyAddress->setEnabled(false); ui->showAddressQRCode->setEnabled(false); } } void AddressBookPage::done(int retval) { QTableView *table = ui->tableView; if(!table->selectionModel() || !table->model()) return; // Figure out which address was selected, and return it QModelIndexList indexes = table->selectionModel()->selectedRows(AddressTableModel::Address); Q_FOREACH (const QModelIndex& index, indexes) { QVariant address = table->model()->data(index); returnValue = address.toString(); } if(returnValue.isEmpty()) { // If no address entry selected, return rejected retval = Rejected; } QDialog::done(retval); } void AddressBookPage::on_exportButton_clicked() { // CSV is currently the only supported format QString filename = GUIUtil::getSaveFileName(this, tr("Export Address List"), QString(), tr("Comma separated file (*.csv)"), NULL); if (filename.isNull()) return; CSVModelWriter writer(filename); // name, column, role writer.setModel(proxyModel); writer.addColumn("Label", AddressTableModel::Label, Qt::EditRole); writer.addColumn("Address", AddressTableModel::Address, Qt::EditRole); if(!writer.write()) { QMessageBox::critical(this, tr("Exporting Failed"), tr("There was an error trying to save the address list to %1. Please try again.").arg(filename)); } } void AddressBookPage::contextualMenu(const QPoint &point) { QModelIndex index = ui->tableView->indexAt(point); if(index.isValid()) { contextMenu->exec(QCursor::pos()); } } void AddressBookPage::selectNewAddress(const QModelIndex &parent, int begin, int /*end*/) { QModelIndex idx = proxyModel->mapFromSource(model->index(begin, AddressTableModel::Address, parent)); if(idx.isValid() && (idx.data(Qt::EditRole).toString() == newAddressToSelect)) { // Select row of newly created address, once ui->tableView->setFocus(); ui->tableView->selectRow(idx.row()); newAddressToSelect.clear(); } }
[ "info@amfeed.com" ]
info@amfeed.com
dc98199bf19d873d836d055052bb061fd7793fed
6581dacb25182f7f5d7afb39975dc622914defc7
/ZTable/TableColumn.h
1c7e29ff9e29fac2b2a789cc7c2ab5d2b7e21eed
[]
no_license
dice2019/alexlabonline
caeccad28bf803afb9f30b9e3cc663bb2909cc4f
4c433839965ed0cff99dad82f0ba1757366be671
refs/heads/master
2021-01-16T19:37:24.002905
2011-09-21T15:20:16
2011-09-21T15:20:16
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,539
h
// TableColumn.h : Declaration of the CTableColumn #ifndef __TABLECOLUMN_H_ #define __TABLECOLUMN_H_ #include "resource.h" // main symbols #include "PersistVarXml/IPersistVarXMLImpl.h" ///////////////////////////////////////////////////////////////////////////// // CTableColumn class ATL_NO_VTABLE CTableColumn : public CComObjectRootEx<CComSingleThreadModel>, public CComCoClass<CTableColumn, &CLSID_TableColumn>, public ISupportErrorInfo, public IDispatchImpl<ITableColumn, &IID_ITableColumn, &LIBID_ZTableLib>, public IPersistVarXMLImpl<CTableColumn> { public: CTableColumn() { m_lngIndex=-1; m_lngType=DATA_INT; m_ID=-1; } DECLARE_XML_ELEMENT_NAME(TableColumn) DECLARE_REGISTRY_RESOURCEID(IDR_TABLECOLUMN) DECLARE_PROTECT_FINAL_CONSTRUCT() BEGIN_COM_MAP(CTableColumn) COM_INTERFACE_ENTRY(ITableColumn) COM_INTERFACE_ENTRY(IDispatch) COM_INTERFACE_ENTRY(ISupportErrorInfo) COM_INTERFACE_ENTRY(ISAXContentHandler) COM_INTERFACE_ENTRY(IPersistVarXML) END_COM_MAP() BEGIN_PROP_MAP(CTableColumn) PROP_DATA_ENTRY("ID",m_ID,VT_I4) PROP_DATA_ENTRY("Index",m_lngIndex,VT_I4) PROP_DATA_ENTRY("Name",m_bstrName,VT_BSTR) PROP_DATA_ENTRY("Type",m_lngType,VT_I4) END_PROP_MAP() BEGIN_XML_CONTENT_MAP(CTableColumn) END_XML_CONTENT_MAP() // ISupportsErrorInfo STDMETHOD(InterfaceSupportsErrorInfo)(REFIID riid); // ITableColumn public: STDMETHOD(get_ID)(/*[out, retval]*/ long *pVal); STDMETHOD(put_ID)(/*[in]*/ long newVal); STDMETHOD(get_Index)(/*[out, retval]*/ long *pVal); STDMETHOD(put_Index)(/*[in]*/ long newVal); STDMETHOD(get_Type)(/*[out, retval]*/ DATA_TYPE *pVal); STDMETHOD(put_Type)(/*[in]*/ DATA_TYPE newVal); STDMETHOD(get_Name)(/*[out, retval]*/ BSTR *pVal); STDMETHOD(put_Name)(/*[in]*/ BSTR newVal); //database STDMETHOD(Update)(/*[in, defaultvalue(0)]*/ long TransactionLevel); STDMETHOD(Add)(/*[in]*/ BSTR tableName, /*[out, retval]*/ long *NewId); STDMETHOD(Delete)(/*[in, defaultvalue(0)]*/ long TransactionLevel); // STDMETHOD(BuildFromRecordSet)(Fields * fields); //XML STDMETHOD(LoadXML)(/*[in]*/ BSTR xml); STDMETHOD(SaveXML)(/*[out,retval]*/ BSTR * xml); HRESULT IPersistVarXML_SaveContent (ISAXContentHandler* pISAXContentHandler); unsigned m_bRequiresSave:1; protected: long m_ID; long m_lngIndex; DATA_TYPE m_lngType; CComBSTR m_bstrName; private: // void persistTableColumn(PERSIST_TYPE pt, CDatabase& db); void registerFields(); }; #endif //__TABLECOLUMN_H_
[ "damoguyan8844@3a4e9f68-f5c2-36dc-e45a-441593085838" ]
damoguyan8844@3a4e9f68-f5c2-36dc-e45a-441593085838
3257f5744b8c7b31e1fbc313d7e3263d9a89456f
d34dc5af1fdbb694f5ce0c56b9cc6108f4d355ee
/c++/demo/test.cc
66d230ba2992d093774f91e40d5241f9aec51295
[]
no_license
masinfund/code
09faa655b4a37501683588a0f05a849ece1eed5f
08a012902cce40b841490db6ec21b372def1bfec
refs/heads/master
2020-04-27T20:55:53.829998
2019-03-09T10:45:15
2019-03-09T10:45:15
174,676,493
0
0
null
null
null
null
UTF-8
C++
false
false
43,301
cc
// Life is limited while learning is limitless, //limiting life chasing endless learning until die . #include "stdafx.h" // io mainpulator const int MAXLINE = 1000 ; // maximum input line szie const double PI = 3.14159265358979 ; const int N(100) ; const int row(92) ; int cnt ; //Clock class class Clock{ public: Clock() ; Clock(int newH,int newM, int newS) ; // constructor function public : void setTime(int newH = 0, int newM = 0 , int newS = 0); void showTime() const ; Clock& operator ++() ; // 前置重载 Clock operator ++(int ) ; // 后置重载 private: int hour , minute , second ; }; Clock::Clock(int newH, int newM , int newS) : hour(newH) , minute(newM), second(newS){} Clock::Clock() : hour(0), minute(0) , second(0) {} void Clock::setTime(int newH, int newM , int newS ) { hour = newH ; minute = newM ; second = newS ; } inline void Clock::showTime() const { cout << hour << ":" << minute << ":" << second <<endl ; } Clock& Clock::operator ++() { second++ ; if(second >= 60){ second -= 60 ; minute++ ; if(minute >= 60) { minute -= 60 ; hour = (hour + 1) % 24 ; } } return *this ; } Clock Clock::operator ++(int ) { Clock old = *this ; ++(*this) ; // 调用前置运算符重载 return old ; } //Sales_data class Sales_data{ public : friend Sales_data add(const Sales_data & , const Sales_data&) ; friend std::istream &read(std::istream&, Sales_data&) ; friend std::ostream &print(std::ostream&, const Sales_data&) ; friend std::istream& operator>>(std::istream& in , Sales_data& s); friend std::ostream& operator<<(std::ostream& out , const Sales_data& s) ; friend bool operator <(const Sales_data& lhs , const Sales_data& rhs) ; friend bool operator >(const Sales_data& lhs , const Sales_data& rhs); friend bool operator ==(const Sales_data& lhs , const Sales_data& rhs) ; //constructors Sales_data() = default ; explicit Sales_data(const std::string &s) : bookNo(s) { } Sales_data(const std::string &s , unsigned n , double p) : bookNo(s) , units_sold(n) , revenue( p * n ) { } Sales_data(std::istream &is ) ; // = std::cin ; //Sales_data() : Sales_data("",0,0) { } 委托构造函数 //Sales_data(std::istream &is ) : Sales_data() {read(is,*this) ;} //接受istream&的构造函数委托给 std::string isbn() const { return bookNo ;} Sales_data& combine(const Sales_data &) ; double avg_price() const ; //operations on Sales_data objects Sales_data& operator +=(const Sales_data& s) ; Sales_data& operator =(const Sales_data& s); private : std::string bookNo ; // implicitly initialized to the empty string unsigned units_sold = 0 ; // explicitly initialized double revenue = 0.0 ; }; Sales_data::Sales_data(std::istream &is ) { read(is,*this) ; } Sales_data& Sales_data::combine(const Sales_data &rhs) { units_sold += rhs.units_sold ; revenue += rhs.revenue ; return *this ; } double Sales_data::avg_price() const { if(units_sold){ return revenue / units_sold ; } else return 0 ; } Sales_data& Sales_data::operator =(const Sales_data& s) { return *this ; } // 接口函数必须重声明 Sales_data add(const Sales_data & , const Sales_data&) ; std::istream &read(std::istream&, Sales_data&) ; std::ostream &print(std::ostream&, const Sales_data&) ; std::istream& operator>>(std::istream& in , Sales_data& s); std::ostream& operator<<(std::ostream& out , const Sales_data& s) ; bool operator <(const Sales_data& lhs , const Sales_data& rhs) ; bool operator >(const Sales_data& lhs , const Sales_data& rhs); bool operator ==(const Sales_data& lhs , const Sales_data& rhs) ; Sales_data add(const Sales_data& lhs, const Sales_data& rhs) { Sales_data sum = lhs ; sum.combine(rhs) ; return sum ; } Sales_data& Sales_data::operator+=(const Sales_data& s) { units_sold += s.units_sold ; revenue += s.revenue ; return *this ; } Sales_data operator +(const Sales_data& lhs , const Sales_data& rhs){ Sales_data ret(lhs); // copy lhs into a local object ret += rhs ; return ret ; } std::istream &read(std::istream& is , Sales_data& rhs) { double price ; is >> rhs.bookNo >> rhs.units_sold >> price ; if(is) rhs.revenue = rhs.units_sold * price ; else rhs = Sales_data() ; // 输入失败;对象被赋予默认的状态 return is ; } std::istream& operator >>(std::istream& in , Sales_data& s) { return read(in,s) ; } std::ostream& print(std::ostream& os , const Sales_data& rhs) { os << rhs.isbn() << " " << rhs.units_sold << " " << rhs.revenue << " " << rhs.avg_price() ; return os ; } std::ostream& operator <<(std::ostream& out , const Sales_data& s) { return print(out , s) ; } //Person class struct person{ private: // data member std::string name ; std::string address ; public : //constructor member person() = default ; person(const std::string &lhs ,const std::string &rhs) : name(lhs) , address(rhs) {} person(std::istream &is) { is >> this->name >> this->address ; } // func member std::vector<string> per_message() const { return {name,address} ; } std::string per_name() const { return name ;} std::string per_ddress() const { return this->address ;} } ; class Screen ; //应该要提供Screen 类的前向引用说明 class Window_test{ public : using Screentest = std::vector<Screen>::size_type ; void clear(Screentest i ) ; Screentest add(const Screen &s) ; void show(Screentest i) ; private : std::vector<Screen> screens ; //不能调用Screen 类自定义的构造函数, //因为此时还未定义Screen constructor } ; //Screen class typedef std::string::size_type pos ; class Screen{ friend char show_screen(const Screen &lhs ,pos ht, pos wd); friend class Window_mgr; //forward referencing is needless friend void Window_test::clear(Screentest) ; friend Window_test::Screentest Window_test::add(const Screen &s) ; friend void Window_test::show(Screentest i) ; public : // using pos = std::string::size_type ; Screen() = default ; Screen(pos ht , pos wd ) : height(ht) , width(wd),contents(ht * wd , ' ') { } Screen(pos ht , pos wd ,char c) : height(ht),width(wd), contents(ht * wd , c){ } // opteration members char get() const { return contents[cursor] ; } char get(pos ht, pos wd) const ; Screen &move(pos ht, pos wd) ; size_t some_member() const ; Screen &setc(char ) ; Screen &setc(pos , pos , char ) ; string getstr() const { return contents ;} Screen &display(std::ostream &os) {do_display(os) ; return *this ;} //const成员函数可以访问非const对象的非const数据成员、const数据成员也可以访问const对象内的所有数据成员; //非const成员函数可以访问非const对象的非const数据成员、const数据成员,但不可以访问const对象的任意数据成员. const // for return const class member . Screen &display(std::ostream &os) const { do_display(os) ; return *this ;} // this pointer is passed implicitly when one //member calls another . //returning a Screen reference can as a lvalue // so we concatenate a sequence of these actions //into a single expression .like this //myScreen.move(4,0).setc('4').display(cout) ; private : //to do the actual work of printing the Screen void do_display(std::ostream &os) const { os << contents ; } // pos cursor = 0 ; pos height = 0 , width = 0 ; std::string contents ; mutable size_t access_ctr = 0 ; } ; inline Screen &Screen::move(pos ht , pos wd) { pos row = ht * width ; cursor = row + wd ; return *this ; //update the class } inline char Screen::get( pos ht , pos wd ) const { pos row = ht * width ; return contents[row + wd] ; } inline size_t Screen::some_member() const { return ++access_ctr ; std::cout << access_ctr ; } inline Screen &Screen::setc(char c) { contents[cursor] = c ; return *this ; } inline Screen &Screen::setc(pos r , pos col , char ch ) { contents[r * width + col ] = ch ; return *this ; } /* move and setc also return a reference to the object on which they are called .Functions that return a reference are lvalues, which means that they return the object itself, not a copy of the object. so if we concatenate sequence of these actions into a single expression : myScreen.move(4,2).set('@') ; these operations will execute on the same object . */ //function declaration char show_screen(const Screen &lhs, pos ht , pos wd) ; static int PlaceQueen[row][N] ; static int board[N][N] ; void putqueen(int Queen) ; void queen(void) ; bool check(int row , int column) ; // mathTest class member double fact(int n , int num = 1) ; double NaturalNumber(int x ) ; int maxSubSum(const vector<int> & a) ; // window manager class , need under class Screen class Window_mgr{ public : using ScreenIndex = std::vector<Screen>::size_type ; void clear(ScreenIndex) ; Window_mgr& add(Screen &s) { screens.push_back(s) ; return *this ;} Window_mgr& show(ScreenIndex i) { do_show(i) ; return *this ;} const Window_mgr& show(ScreenIndex i) const { do_show(i) ; return *this ;} private : //std::vector<Screen> screens{Screen(24,80,' ') } ; std::vector<Screen> screens { Screen(24, 80,' ') } ; void do_show(ScreenIndex i) const { screens[i].display(cout) ;} } ; class ExamInfo{ public : ExamInfo() : name("test") , mode(PASS),pass(pass) {} ExamInfo(string name , char grade) : name(name) ,mode(GRADE),grade(grade){ } ExamInfo(string name , bool pass) : name(name) ,mode(PASS),pass(pass) { } ExamInfo(string name , int percent) : name(name),mode(PERCENTAGE) , percent(percent) { } public : void show() ; private : string name ; enum { GRADE , PASS , PERCENTAGE } mode ; union { int percent ; char grade ; bool pass ; } ; } ; void ExamInfo::show() { cout << name << ": " ; switch(mode) { case GRADE : cout << grade ; break ; case PASS : cout << (pass ? "PASS" : "FAIL") ; break ; case PERCENTAGE : cout << percent ; break ; } cout << endl ; } class ArrayOfExamInfos { public : ArrayOfExamInfos(int size ) : size(size) { ExamInfos = new ExamInfo[size] ; } ~ArrayOfExamInfos() { cout << "Deleting..." << endl ; delete []ExamInfos ; } ExamInfo &element(int index) { assert(index >= 0 && index < size) ; return ExamInfos[index] ; } private : ExamInfo *ExamInfos ; int size ; }; //派生类 class CreditAccount : public Account { private : double acc ; // 利息累加器 double credit ; // 信用额度 double rate ; // 日利率 double fee ; // 年费 double getDebt() const ; public : CreditAccount(const Date &date , const std::string &id , double credit , double rate , double fee) ; double getCredit() const ; double getRate() const ; double getFee() const ; double getAvailableCredit() ; void deposit(const Date &date , double amount , const std::string &desc) ; void withdraw(const Date &date , double amount , const std::string &desc) ; void settle(const Date &date) ; void show() const ; } ; class Employee { public : Employee(const string &name , const string &ssn) ; const string& get_name() const ; void print(std::ostream& out ) const ; void print(std::ostream& out , const string &msg) const ; protected : string m_name ; string m_ssn ; } ; Employee::Employee(const string &name , const string &ssn) : m_name(name) , m_ssn(ssn) { // initializer list sets up the values ! } inline const string& Employee::get_name() const { return m_name ; } inline void Employee::print(std::ostream& out ) const { out << m_name << '\n' << m_ssn << endl ; } inline void Employee::print(std::ostream& out , const string &msg) const { out << msg << endl ; print(out) ; // avoid code duplication } class Manager : public Employee { public : Manager(const string &name , const string &ssn , const string &title) ; const string title_name() const ; const string& get_title() const ; void print(std::ostream& out) const ; private : string m_title ; } ; Manager::Manager(const string &name , const string &ssn , const string &title): Employee(name,ssn) , m_title(title) {} inline void Manager::print(std::ostream& out) const { Employee::print(out) ; // call the base class func member out << m_title << endl ; } inline const string& Manager::get_title() const { return m_title ; } inline const string Manager::title_name() const { return string(m_title + ": " + m_name) ; } class A { public : A() : i(0) { p = 0 ; cout << "A::A() " << endl; } ~A() { if(p) delete p ; cout << "A::~A() " << i << endl ;} void new_p() { p = new int ;} void print() { cout << "A::" << i << endl ;} void print(int i ){ cout << i ; print() ; } void fun(A *q) { cout << "A::fun() , q->i = " << q->i << endl ;} //protected : void set(int i) { this->i = i ;} private : int i ; int *p ; } ; class B : public A{ public : int c ; void f() { set(20) ; print() ;} print() {cout << "B::print()" << endl ;} void print(int i ) { A::print(i) ;} } ; class Complex { public : friend ostream& operator <<(ostream &out , const Complex &c) ; friend istream& operator >>(istream &in , Complex &c) ; friend Complex operator *(const Complex &c1 , const Complex &c2) ; Complex(const Complex &) ; Complex(double r = 0.0 , double i = 0.0) : real(r) , imag(i) { } //运算符重载 Complex operator +(const Complex &c2) const ; Complex operator -(const Complex &c2) const ; Complex& operator =(const Complex &c2) ; void display() const ; private : double real ; double imag ; } ; inline Complex::Complex(const Complex &c) : real(c.real) , imag(c.imag) {} ostream& operator <<(ostream &out , const Complex &c) ; istream& operator >>(istream &in , Complex &c) ; Complex operator *(const Complex &c1 , const Complex &c2) ; ostream & operator <<(ostream &out , const Complex &c) { out << "(" << c.real << " , " << c.imag << ")" ; return out ; } istream& operator >>(istream &in , Complex &c) { in >> c.real >> c.imag ; return in ; } Complex operator *(const Complex &c1 , const Complex &c2) { return Complex(c1.real * c2.real - c1.imag * c2.imag , c1.real * c2.imag + c1.imag * c2.real) ; } Complex& Complex::operator=(const Complex &c2){ real = c2.real ; imag = c2.imag ; return *this; } Complex Complex::operator +(const Complex &c2) const { return (Complex(real + c2.real , imag + c2.imag)) ; } // const Complex * const this ; Complex Complex::operator -(const Complex &c2) const { return Complex(real - c2.real , imag - c2.imag) ; } void Complex::display() const { cout << "(" << real << " , " << imag << ")" << endl ; } class Base1 { public : virtual void display() const = 0 ; // 纯虚函数 } ; //具体实现不应该写入类体中,写入类体中会被作为内联函数在编译阶段嵌入 //具体的代码中去。 class Base2 : public Base1 { public : virtual void display() const ; } ; void Base2::display() const { cout << "Base2::display() " << endl ; } class Derived : public Base2 { public : virtual void display() const ; } ; void Derived :: display() const { cout << "Derived ::display() " << endl ; } void fun(Base1 &p) { p.display() ; } template <typename T> T abs(T x) { return x < 0 ? -x : x ; } template <class T > void putArr(const T *arr , int cnt) { for(int i = 0 ; i < cnt ; ++i) cout << arr[i] << " " ; cout << endl ; } struct Stu{ int id ; double gpa ; } ; template <class T> class Store{ private : T item ; bool flag ; public : Store() ; T& getElem() ; void putElem(const T &x) ; }; template <class T> Store<T>::Store() : flag(false) { } template <class T> T &Store<T> :: getElem() { if(!flag){ cout << "No item present !" << endl ; exit(EXIT_FAILURE) ; } return item ; } template <class T> void Store<T>::putElem(const T &x) { flag = true ; item = x ; } template <class T> class Array{ private : T *list ; int size ; public : Array(int sz = 100) ; Array(const Array<T> &a) ; ~Array() ; Array<T> & operator = (const Array<T> &rhs) ; T & operator [](int i) ; const T &operator [](int i ) const ; operator T* () ; operator const T*() const ; int getSize() const ; void resize(int sz) ; }; template <class T> Array<T>::Array(int sz) { assert(sz >= 0) ; size = sz ; list = new T [size] ; } template <class T> Array<T>::~Array() { delete []list ; } template <class T> Array<T>::Array(const Array<T> &a) { size = a.size ; list = new T[size] ; for(int i = 0 ; i != a.size ; ++i) list[i] = (a.list)[i] ; } template <class T> Array<T>& Array<T>::operator=(const Array<T> &rhs) { /*重载 = , 将对象rhs赋值给本对象, 实现对象之间的整体赋值*/ if(&rhs != this ) { if(size != rhs.size) { delete []list ; size = rhs.size ; list = new T[size] ; } for(int i = 0 ;i != size ; ++i) list[i] = rhs.list[i] ; } // 返回当前对象的引用 return *this ; } template <class T> T & Array<T>::operator [](int i ) { assert( i >= 0 && i < size ) ; return list[i] ; } template <class T> const T& Array<T>::operator [](int i) const { assert(i >= 0 && i < size ) ; return list[i] ; } // 重载指针转换运算符 , 将Array类的对象名转换为T类型的指针 template <class T> Array<T>::operator T*() { return list ; } template <class T> Array<T>::operator const T*() const { return list ; } template <class T> int Array<T>::getSize() const { return size ; } template <class T> void Array<T>::resize(int sz) { assert(sz >= 0) ; if(sz == size ) return ; T *tmp = new T[sz] ; for(int i = 0 ; i != size ; ++i) tmp[i] = list[i] ; delete []list ; list = tmp ; size = sz ; tmp = nullptr ; } //node template template <class T> class Node { private: Node<T> *next ; public: T data ; Node(const T& item , Node<T> * next = 0) ; void insert(Node<T> *p) ; Node<T> *deleteAfter() ; Node<T> *nextNode() ; const Node<T> *nextNode() const ; } ; template <class T> Node<T>::Node(const T& item , Node<T> *next ) : data(item){this->next = next ; } template <class T> Node<T>* Node<T>::deleteAfter() { Node<T> *tmp = next ; if(!next) return nullptr ; next = tmp->next ; return tmp ; } template <class T> void Node<T>::insert(Node<T> *p) { p->next = next ; next = p ; } template <class T> Node<T> *Node<T>::nextNode() { return next ; } template <class T> const Node<T> *Node<T>::nextNode() const { return next ; } template <class T> class LinkList{ private : Node<T> *front , *rear ; Node<T> *pre, *cur ; int size ; int position ; // 记录当前元素在表中的位置序号 Node<T> *newNode(const T& item , Node<T> *ptrnext = nullptr) ; void freeNode(Node<T> *p) ; void copy(const LinkList<T> &L) ; public : LinkList() ; LinkList(const LinkList<T> &L) ; ~LinkList() ; LinkList<T> &operator = (const LinkList<T> &L) ; int getSize() const ; bool isEmpty() const ; void reset(int pos = 0) ; void next() ; bool endOfList() const ; int curPos() const ; void insertFront(const T &item) ; void insertRear(const T &item) ; void insertAt(const T& item) ; void insertAfter(const T &item) ; T deleteFront() ; void deleteCur() ; T& data() ; const T& data() const ; void clear() ; } ; template <class T , int SIZE = 50> class Stack{ private : T list[SIZE] ; int top ; public: Stack() ; void push(const T &item) ; T pop() ; void clear() ; const T &peek() const ; bool isEmpty() const ; } ; template <class T , int SIZE> Stack<T,SIZE>::Stack() : top(-1) { } template <class T , int SIZE> void Stack<T,SIZE>::push(const T& item) { assert(isEmpty()) ; list[++top] = item ; } template <class T , int SIZE> T Stack<T,SIZE>::pop(){ assert(!isEmpty()) ; return list[top--] ; } template <class T , int SIZE> const T& Stack<T,SIZE>::peek() const { assert(!isEmpty()) ; return list[top] ; } template <class T , int SIZE> bool Stack<T,SIZE>::isEmpty() const { return top == -1 ; } template <class T , int SIZE> void Stack<T,SIZE>::clear() { top = -1 ; } class Calculator{ private : Stack<double> s ; void Enter(double num) ; bool getOperands(double &opnd1 , double &opnd2) ; void compute(char op) ; public : void run() ; void clear() ; } ; inline double stringTodouble(const string &str) { istringstream stream(str) ; double result ; stream >> result ; return result ; } void Calculator::Enter(double num) { s.push(num) ; } bool Calculator::getOperands(double &opnd1, double &opnd2){ if(s.isEmpty()){ cerr << "Missing operand!" << endl ; return false ; } opnd1 = s.pop() ; if(s.isEmpty()){ cerr << "Missing operand !" << endl ; return false ; } opnd2 = s.pop() ; return true ; } void Calculator::compute(char op) { double opnd1 , opnd2 ; if(getOperands(opnd1,opnd2)){ switch(op) { case '+' : s.push(opnd2 + opnd1) ; break ; case '-' : s.push(opnd2 - opnd1) ; break ; case '*' : s.push(opnd2 * opnd1) ; break ; case '/' : if(!opnd1){ cerr << "Divided by 0 !" << endl ; s.clear() ; } else s.push(opnd2 / opnd1) ; break ; case '^' : s.push(pow(opnd2,opnd1)) ; break ; default : cerr << "unrecognized operator !" << endl ; break ; } cout << " = " << s.peek() << " " ; } else s.clear() ; } void Calculator::run() { string str ; while(cin >> str , str != "q"){ switch(str[0]){ case'c' : s.clear() ; break ; case '-' : if(str.size() > 1) Enter(stringTodouble(str)) ; else compute(str[0]) ; break ; case '+' : case '*' : case '/' : case '^' : compute(str[0]) ; default : Enter(stringTodouble(str)) ; break ; } } } void Calculator::clear() { s.clear() ; } double square(double x) { return x * x ; } template <class T , class InputIterator , class OutputIterator > void mySort(InputIterator first , InputIterator last , OutputIterator result) { vector<int> s ; while(first != last){ s.push_back(*first++) ; } sort(s.begin() , s.end() ); copy(s.begin() , s.end() , result) ; } template <class T> void printContainer(const char *msg , const T& s) { cout << msg << ": " ; copy(s.begin(),s.end() ,ostream_iterator<int>(cout," ")) ; cout << endl ; } int sum (const vector<int> &v , int low , int high) { if(low == high) return v[low] ; else { int mid = (low + high) >> 1 ; return sum(v,low,mid) + sum(v,mid + 1,high) ; } } void elimDups(vector<string> &words) { sort(words.begin(),words.end()) ; // unique 重排输入范围使得每个单词只出现一次排列在范围的前部, //返回指向不重复区域之后一个位置的迭代器 auto end_unique = unique(words.begin(),words.end()) ; words.erase(end_unique,words.end()) ; } bool isShorter(const string &s1, const string &s2) { return s1.size() < s2.size() ; } string make_plural(size_t cstr, const string &word , const string &ending) { return (cstr == 1) ? word : word + ending ; } void biggies(vector<string> &words, vector<string>::size_type sz , ostream &os = cout , char c = ' ') { elimDups(words) ; stable_sort(words.begin(),words.end(),isShorter) ; // wc 指向第一个长度不小于给定参数sz的元素 auto wc = find_if(words.begin(),words.end(), [sz](const string &a){return a.size() >= sz ;}); auto count = words.end() - wc ; os << count << " " << make_plural(count,"word","s") << " of length " << sz << " or longer" << endl ; // make_plural 输出word or words // for_each 接受一个可调用对象,并对输入序列中每个元素调用此对象 for_each(wc,words.end(),[&os,c] (const string &s) {os << s << c ;}) ; cout << endl ; } //Strblob class StrBlobPtr ; class StrBlob { friend class StrBlobPtr ; public : typedef std::vector<std::string>::size_type size_type ; StrBlob() ; StrBlob(std::initializer_list<std::string> i1) ; size_type size() const {return data->size() ;} StrBlobPtr begin() ; StrBlobPtr end() ; bool empty() const {return data->empty() ;} void push_back(const std::string &t) {data->push_back(t) ;} void pop_back() ; std::string &front() ; std::string &front() const ; std::string &back() ; std::string &back() const ; private : std::shared_ptr<std::vector<std::string>> data ; void check(size_type i , const std::string &msg) const ; } ; StrBlob::StrBlob() :data(make_shared<vector<string>>()){} StrBlob::StrBlob(initializer_list<string> i1) : data(make_shared<vector<string>>(i1)){ } void StrBlob::check(size_type i , const std::string &msg) const { if(i >= data->size()) throw out_of_range(msg) ; } string &StrBlob::front() { check(0,"front on empty StrBlob") ; return data->front() ; } std::string &StrBlob::front() const { check(0,"front on empty StrBlob") ; return data->front() ; } std::string &StrBlob::back() const { check(0,"back on empty StrBlob") ; return data->back() ; } string &StrBlob::back() { check(0,"back on empty StrBlob") ; return data->back() ; } void StrBlob::pop_back() { check(0,"pop_back on empty StrBlob") ; cout << data->back() << " " ; data->pop_back() ; } class StrBlobPtr { private : std::shared_ptr<std::vector<std::string>> check(std::size_t , const std::string &) const ; std::weak_ptr<std::vector<std::string>> wptr ; std::size_t curr ; public: StrBlobPtr() : curr(0) {}; StrBlobPtr(StrBlob &a , size_t sz = 0) : wptr(a.data),curr(sz) {} std::string & deref() const ; StrBlobPtr& incr() ; }; std::string& StrBlobPtr::deref() const { auto p = check(curr,"dereferecne past end") ; return (*p)[curr] ; } StrBlobPtr& StrBlobPtr::incr() { check(curr,"increment past end") ; ++curr ; return *this ; } std::shared_ptr<std::vector<std::string>> StrBlobPtr::check(std::size_t i , const std::string &msg) const { auto ret = wptr.lock() ; if(!ret) throw runtime_error("unbound StrBlobPtr") ; if(i >= ret->size()) throw std::out_of_range(msg) ; return ret ; } // Strblob 在声明之后再调用StrBlobPtr的函数时,一定要将此函数声明写在 //StrBlobPtr 函数体定义之后,即写在StrBlobPtr之后 StrBlobPtr StrBlob::begin() {return StrBlobPtr(*this) ;} StrBlobPtr StrBlob::end() {auto ret = StrBlobPtr(*this ,data->size()) ; return ret ;} class Word_transform { public : void word_transform(ifstream &map_file , ifstream &input) ; map<string, string> buildMap(ifstream &map_file) ; const string &transform(const string &s , const map<string,string> &m) ; } ; const string &Word_transform::transform(const string &s , const map<string,string> &m) { auto map_itor = m.find(s) ; if(map_itor != m.cend()) return map_itor->second ; else return s ; } map<string, string> Word_transform::buildMap(ifstream &map_file) { map<string , string>trans_map ; string key ; string value ; //读取第一个单词存入key , getline读取行中剩余内容存入value while(map_file >> key && getline(map_file,value)) if(value.size() > 1) trans_map[key] = value.substr(1) ; else throw runtime_error("no rule for " + key) ; return trans_map ; } void Word_transform::word_transform(ifstream &map_file , ifstream &input) { auto trans_map = buildMap(map_file) ; string text ; while(getline(input,text)) { istringstream stream(text) ; string word ; bool firstword = true; while(stream >> word) { if(firstword) firstword = false ; else cout << " " ; cout << transform(word,trans_map) ; } cout << endl ; } } class test { void do_print() const ; vector<int> *p ; public : test() ; ~test() ; test &print() ; const test &print() const ; test &read() ; } ; void test::do_print() const { for(auto x : *p) cout << x << " " ; cout << endl ; } test &test::print() { do_print() ; return *this ; } const test &test::print() const { do_print() ; return *this ; } test::~test(){ delete p ; cout << "destructor" << endl ; } test &test::read(){ int tmp ; while(cin >> tmp) p->push_back(tmp) ; return *this ; } test::test() { p = new vector<int> ; cout << "constructor" << endl ; } class IntCell { public : explicit IntCell(int initialValue = 0) ; IntCell(const IntCell &rhs) ; ~IntCell() ; const IntCell &operator=(const IntCell &rhs) ; int read() const ; void write(int x) ; private : int *storedValue ; } ; IntCell::IntCell(int initialValue){ storedValue = new int(initialValue) ; } IntCell::IntCell(const IntCell &rhs) { storedValue = new int(*rhs.storedValue) ; } IntCell::~IntCell() { delete storedValue ; } const IntCell &IntCell::operator=(const IntCell &rhs){ if(this != &rhs){ *storedValue = *rhs.storedValue ; } return *this ; } void IntCell::write(int x){ *storedValue = x ; } void visit(int &v , int a) { v *= a ; cout << v << " " ; } /* template <typename T , typename VST> void vector<T>::traverse(VST &visit){ visit() ; } */ void foo5(int (*c)[5],int n) ; void foo4() ; void foo(int n) ; void foo1() ; void foo2() ; void foo3(int n) ; void inplace_swap(int &x , int &y) ; void heart() ; float heart_h(float x , float z); float heart_f(float x , float y , float z); template <unsigned n , unsigned m> int compare(const char (&p)[n], const char (&q)[m]) { //使用字面量的大小来代替n and m . return strcmp(p,q) ; } int strcm(const char *p1 , const char *p2){ assert(p1 && p2) ; while(*p1++ == *p2++ ) ; return *p1 - *p2 ; } void convert(Stack<char> &s , int n , int base = 2) { //十进制n到base进制的转换 static char digit[] = {'0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F'} ; if( n > 0){ convert(s , n / base , base) ; s.push(digit[n % base]) ; } //新进制由高到底各位,自顶而下保存于栈中 /*迭代版 while( n > 0){ int rem = n % base ; s.push(digit[rem]) ; n /= base ; } */ } void num_reverse(int number) { /* int res = 0 ; while(number){ res = res * 10 + number % 10 ; number /= 10 ; } cout << ((res < INT_MIN || res > INT_MAX) ? 0 : res ) << endl ; */ int flag = 1 ; while(number){ if(number < 0){ cout << '-' ; number *= -1 ; } if(number % 10 == 0 && flag ){ flag = 0 ; number /= 10 ; } else{ cout << number % 10 ; number /= 10 ; } } cout << endl ; } int main(int argc , const char **argv) { clock_t start ,end; // 毫秒级 start = clock() ; LARGE_INTEGER cpuFreq ; LARGE_INTEGER startTime ; LARGE_INTEGER endTime ; double runTime = 0.0 ; QueryPerformanceFrequency(&cpuFreq) ; QueryPerformanceCounter(&startTime) ; char csx ; cin >> csx ; cout << csx ; int col_a[7][7] ; for(int j = 0 ; j != 7 ; ++j){ for(int (*p)[7] = col_a ; p != &*(col_a + 7) ; ++p){ (*p)[j] = rand() % 2 ; cout << setiosflags(ios::left) << setw(3) << (*p)[j] ; } cout << '\n' ; } cout << endl ; for(int i = 0 ; i != 7 ; ++i){ for(int j = 0 ; j != 7 ; ++j){ /*code*/ cout << setiosflags(ios::left) << setw(3) << col_a[i][j] ; } cout << '\n' ; } cout << endl ; typedef int (*funptr)(double) ; vector<vector<int> > v {{1,2,3},{2,3,4}} ; for(auto a = v.begin() ; a != v.end() ;a++) for(auto x : *a) cout << x << " " ; cout << endl ; int arr[2][2]; // const int (*arr)[2] int (*p)[2] = begin(arr) ; int (*q)[2] = std::end(arr) ; int i = 0 ; int *tmp = *p ; while(tmp != *q) { *tmp = 4 ; cout << *tmp++ << " " ; } fill_n(*begin(arr),1,9) ; cout << '\n' ; cout << typeid(arr).name() << endl ; for(auto &c : arr){ for(auto x : c){ cout << x << " " ; cout << typeid(x).name() << " " ; } cout << typeid(c).name() << endl ; } cout << endl ; fill(*begin(arr),*std::end(arr),7) ; for(auto &a : arr) for(auto v : a) cout << v << " " ; cout << endl ; allocator<string> alc ; const auto p1 = alc.allocate(4) ; cout << typeid(p1).name() << endl ; Complex r(2,4) ,r1 ; r1 = 5 * r ; cout << r1 << endl ; r1 = r ; cout << r1 << endl ; Clock C(16,24,56) ; cout << "First time output : " ; C.showTime() ; cout << "Show Clock++ : " ; (C++).showTime() ; cout << "Show ++Clock : " ; (++C).showTime() ; Sleep(1000) ; // windows.h ,以毫秒为单位 end = clock() ; QueryPerformanceCounter(&endTime) ; runTime = (((endTime.QuadPart - startTime.QuadPart) * 1000.0f) / cpuFreq.QuadPart) ; cout << "Use time is " << end - start << "(ms)" << endl ; cout << "Use time is " << runTime << "(ms)" << endl ; return 0 ; } void foo5(int (*c)[5] , int n ) { //二维数组翻转90度 for(int i = 0 ; i != n / 2 ; ++i){ for(int j = i ; j != 4 - i ; ++j){ int tmp = c[j][4 - i] ; c[j][4 - i] = c[i][j] ; c[i][j] = tmp ; tmp = c[4 -i ][4 - j] ; c[4 - i][4 - j] = c[i][j] ; c[i][j] = tmp ; tmp = c[4 - j][i] ; c[4 - j][ i] = c[i][j] ; c[i][j] = tmp ; } } } void foo4() { map<string , size_t> word_count ; // string 到size_t上的空map set<string> exclude = {"The","But","And","or"} ; string word ; while(cin >> word){ if(exclude.find(word) == exclude.end()) ++word_count[word] ; } for(const auto &w : word_count) cout << w.first << "occurs" << w.second << ((w.second > 1) ? " times" : " time") << endl ; } float heart_f(float x , float y , float z) { float a = x * x + 9.0f / 4.0f * y * y + z * z - 1; return a * a * a - x * x * z * z * z - 9.0f / 80.0f * y * y * z * z * z ; } float heart_h(float x , float z) { for(float y = 1.0f ; y >= 0.0f ; y -= 0.001f) if(heart_f(x,y,z) <= 0.0f) return y ; return 0.0f ; } void heart() { for(float z = 1.5f ; z > -1.5f ; z -= 0.1f) { for(float x = -1.5f ; x < 1.5f ; x += 0.025f) { float v = heart_f(x , 0.0f , z) ; if(v <= 0.0f){ float y0 = heart_h(x , z) ; float ny = 0.01f ; float nx = heart_h(x + ny , z) - y0 ; float nz = heart_h(x , z + ny) - y0 ; float nd = 1.0f / sqrtf(nx * nx + ny * ny + nz * nz ) ; float d = (nx + ny - nz) * nd * 0.5f + 0.5f ; putchar(".:-=+*#%@"[(int)(d * 5.0f)]) ; } else putchar(' ') ; } putchar('\n') ; } } void inplace_swap(int &x , int &y) { y = x ^ y ; // 0011 ^ 0101 = 0110 x = x ^ y ; y = x ^ y ; } void foo3(const int v) { int a[N][N] = {0} , tot , x = 0 , y = v - 1 ; tot = a[x][y] = 1 ; while(tot < v * v){ while(x < v - 1 && !a[x + 1][y]) a[++x][y] = ++tot ; while(y > 0 && !a[x][y - 1]) a[x][--y] = ++tot ; while(x > 0 && !a[x - 1][y]) a[--x][y] = ++tot ; while(y < v - 1 && !a[x][y + 1]) a[x][++y] = ++tot ; } for(int i = 0 ; i != v ; ++i){ for(int j = 0 ; j != v ; ++j){ cout << setw(4) << a[i][j] << " " ; } cout << endl ; } } void foo2() { /* 1,2,3,4,5,6,7,8,9 only use the 9 numbers , no-repeat output all abc def ghi = 1 : 2 : 3 ex : 192 384 576 ... */ stringstream s ; string str ; string ch = "123456789" ; int cnt ; for(int i = 100 ; i != 333; ++i){ if(i % 10 == 0) continue ; s << i << 2 * i << 3 * i ; s >> str ; for(auto c : ch){ cnt = 0 ; for(auto x : str){ if(x == c) cnt++ ; } if(cnt > 1) break ; } if(cnt == 1) cout << i << " " << 2 * i << " " << 3 * i << endl ; s.clear() ; } } void foo(int n) { // 打印菱形 for(int i = n ; i > 1 ; --i){ for(int j = 1 ; j <= i - 1 ; ++j) cout << " " ; for(int j = 1 ; j <= (n - i + 1) * 2 - 1 ; ++j) cout << "*" ; cout << endl ; } for(int i = n ; i >= 1 ; --i){ for(int j = 1 ; j <= (n - i) ; j++ ) cout << " " ; for(int j = 1 ; j <= 2 * i - 1 ; ++j){ cout << "*" ; } cout << endl ; } } void foo1() { // 计算 a / b , 保留c 位小数。 int a ,b , c ; cin >> a >> b >> c ; if( !a && !b && !c) return ; if(!b){ cerr << "wrong!!! " << endl ; return ; } int dec[c + 1] = {0} ; cout << a / b ; for(int i = 0 ; i != c + 1 ; ++i){ if(!a) break ; while(a / b == 0){ a *= 10 ; } dec[i] = a / b ; a %= b ; } if(dec[c] >= 5) dec[c - 1] += 1 ; if(c) cout << "." ; for(int i = 0 ; i != c ; ++i) cout << dec[i] ; cout << endl ; foo1() ; } // test func int maxSubSumDC(const vector<int> &a , int ls , int rs) { // ls and rs is subs if(ls == rs){ if(a[ls] > 0) return a[ls] ; else return 0 ; } int piv = (ls + rs) / 2 ; int maxSuml = 0 , maxSumr = 0 ; for(int i = ls ; i <= piv ; ++i){ int thisSum = 0 ; for(int j = i ; j <= piv ; ++j){ thisSum += a[j] ; if(thisSum > maxSuml){ maxSuml = thisSum ; } } } for(int i = piv + 1 ; i <= rs ; ++i){ int thisSum = 0 ; for(int j = i ; j <= rs ; ++j){ thisSum += a[j] ; if(thisSum > maxSumr) { maxSumr = thisSum ; } } } return 1 ; } int maxSubSum(const vector<int> &a) { int maxSum = 0 ; for( int i = 0 ; i < a.size() ; i++){ int thisSum = 0 ; for(int j = i ; j < a.size() ;j++){ thisSum += a[j] ; if(thisSum > maxSum ){ maxSum = thisSum ; } } } return maxSum ; } int maxSubSumOn_line(const vector<int> &a) { int maxSum = 0 , thisSum = 0 ; for(int i = 0 ; i != a.size() ; ++i){ thisSum += a[i] ; if(thisSum > maxSum){ maxSum = thisSum ; } else if(thisSum < 0){ thisSum = 0 ; } } return maxSum ; } char show_screen(const Screen &lhs , pos ht , pos wd) { unsigned count = 0 ; for(auto ch : lhs.contents){ cout << ch ; count++ ; if(count % ht == 0) cout << '\n' ; } size_t idx = lhs.cursor ; return (lhs.contents)[idx] ; } void Window_test::clear(Screentest i) { Screen &s = screens[i] ; s.contents = string(s.height * s.width , '0') ; //显示修改操作效果 } Window_test::Screentest Window_test::add(const Screen &s) { screens.push_back(s) ; return screens.size() - 1; } void Window_test::show(Screentest i) { std::cout << screens[i].getstr() ; } void Window_mgr::clear(ScreenIndex i) { Screen &s = screens[i] ; s.contents = string(s.height * s.width , ' ') ; } // return e^x double NaturalNumber(int x) { double sum = 0.0 ; int i = 0; double subNum = 1 / fact(i) ; while(subNum >= 1e-10){ sum += subNum * pow(x , i) ; ++i ; subNum = 1 / fact(i) ; } return sum ; } /*trail-recursion If all the recursive calls in a function appear at the end of the function, we call this function is trail-recursion. */ double fact(int n , int num ) { if(n <= 1) return num ; else return fact(n - 1, n * num) ; } int split(vector<int> &v , int low , int high) { int pivot = v[low] ; while(low < high){ while(low < high && v[high] >= pivot){ high-- ; } if(low < high){ v[low++] = v[high] ; } while(low < high && v[low] <= pivot){ low++ ; } if(low < high ){ v[high--] = v[low] ; } } v[low] = pivot ; return low ; } int quickSort(vector<int> &v , int low , int high) { int idx ; if(low >= high ) return 0; idx = split(v,low , high) ; quickSort(v,low , idx - 1) ; quickSort(v,idx + 1, high) ; } void bubble_sort(int *a , int n) { for(int i = 0 ; i != n - 1 ; ++i){ int flag = 1 , j; for( j = 0 ; j != n - i ; ++j){ if(a[j + 1] < a[j]){ a[j + 1 ] = a[j + 1 ] + a[j] ; a[j] = a[j + 1 ] - a[j] ; a[j + 1 ] = a[j + 1 ] - a[j] ; flag = 0 ; } } if(flag){ break ; } } } void select_sort( int *a , int n ) { for( int i = 0 ; i != n - 1 ; ++i){ for(int j = i + 1 ; j != n ; ++j){ if(a[j] < a[i]){ int tmp = a[i] ; a[i] = a[j] ; a[j] = tmp ; } } } } int search(int *a , int idx , int num ) { int left = 0 , right = idx ; // needing orderly sort idx = (idx + 1) / 2 ; while(left < right ){ if(a[idx] > num){ right = idx - 1; idx = (idx + left ) / 2 ; } else if( a[idx] < num){ left = idx + 1; idx = (idx + right) / 2 ; } else return a[idx] ; } return INT_MAX ; } int sum_recursion(int *a , int n , int sum = 0) { if(n == 0 ) return sum ; else return sum_recursion(a + 1 , n - 1 ,sum + a[1]) ; } int Add (int x, int y) { // add to numbers but can't use '+' and '-' return 1 ; } double arctan(double x) { //arctanx = x - x ^ 3 / 3 + x ^ 5 / 5 - x ^ 7 / 7 + ... double sqr = x * x ; double sum = 0 ; double e = x ; int i = 1 ; int flag = 1 ; while(e / i > 1e-10){ double sub = e / i ; sum += flag * sub ; flag *= -1 ; e *= sqr ; i += 2 ; } return sum ; } // queen code void queen(void) { int i , j , n ,ith ; putqueen(0) ; cin >> n ; for(i = 0 ; i != n ;++i){ cin >> ith ; for(j = 0 ; j != N ;++j) cout << PlaceQueen[ith - 1][j] ; cout << endl ; } } void putqueen(int ithQueen) { int j ; if(ithQueen == N ){ cnt++ ; } for(j = 0 ;j != N ; ++j){ if(!board[j][ithQueen]){ board[j][ithQueen] = ithQueen + 1 ; for(int i = cnt ; i != row ; ++i){ PlaceQueen[i][ithQueen] = j + 1 ; } if(check(j,ithQueen)) putqueen(ithQueen + 1) ; for(int i = 0 ; i != N ; ++i){ for(int j = 0 ; j != N ; ++j){ if(board[i][j] == ithQueen + 1) board[i][j] = 0 ; } } } } } bool check(int row , int column) { int i ; for(i = 0 ; i < row ; ++i) for(int j = 0 ; j != N ; ++j){ if(j == column || abs(i - row) != abs(j - column)){ board[i][j] = column + 1 ; return false ; } } return true ; }
[ "tql3384@163.com" ]
tql3384@163.com
163bee627eeeab187f4e3067a2a8e97d1f0f2dd7
2e3858ffb6e537dd4d7442fbb6670971b300158e
/Raytracer/Jittered.h
7b7776d96b646e561d1338b5ec6bd3082c0e55ec
[]
no_license
stchristian/Raytracer
845b2a97865cd15ba0b5c964ddc23462a28f975b
5bd1ffa40a4616168291c3e09c5c9cc890e88e19
refs/heads/master
2020-03-18T19:18:39.781381
2018-05-28T10:37:02
2018-05-28T10:37:02
135,146,842
0
0
null
null
null
null
UTF-8
C++
false
false
288
h
#pragma once #include "Sampler.h" class Jittered : public Sampler { public: Jittered(void); Jittered(const int num_samples); Jittered(const int _num_samples, const int _num_sets); private: int sqrt_num_samples; //Number of samples per axis. void generate_samples() override; };
[ "hubner.krisztian97@gmail.com" ]
hubner.krisztian97@gmail.com
5b69d8c2dce907d52dfda1bd76d16a4ce4de1f93
6c1cc3cff12fd7c1264e34cda9dee002a23f20b9
/DSAlgo/IntroToAlgoCormen_3rdEdition/chapter2/ex2_2_2.cpp
1e85e00ebb7f91c963c2b7d8b9e6dde9cffbe696
[ "MIT" ]
permissive
persefonades/cs_grad_ultra
e1ea6c59f0d68029133870ff6e950c764bee7de9
8ff780ac9da7ef92b095d93222affd6440f96ecf
refs/heads/master
2023-02-07T08:36:16.976078
2020-12-10T11:35:25
2020-12-10T11:35:25
296,109,886
0
1
null
null
null
null
UTF-8
C++
false
false
390
cpp
#include <iostream> using namespace std; int main(int argc, char const *argv[]) { int a[10] = {5, 9, 6, 3, 7, 1, 6, 0, 8, 10}; for (int i = 0; i < 10 - 1; ++i) { int min = i; for (int j = i + 1; j < 10; ++j) if (a[j] < a[min]) min = j; int tem = a[min]; a[min] = a[i]; a[i] = tem; } for (int i = 0; i < 10; ++i) cout << a[i] << ", "; cout << endl; return 0; }
[ "pur.cho.99@gmail.com" ]
pur.cho.99@gmail.com
11b1349b0ef358fa04f59588829d625413355550
a94b4a06085e13490e7a50e79ce423261d45df97
/diploid/clean_version/recursion_bis.cpp
e1fa93105014366a32e3cc79d095266886b5d027
[]
no_license
hildeschneemann/HZ_simulation
755198e533dfa2e67302edc875973bbe5c8e6c6d
7884e7378c9f9e971a2f7a183422fbf0ad92d904
refs/heads/master
2021-10-18T14:56:43.457105
2019-01-10T13:58:28
2019-01-10T13:58:28
153,796,876
0
0
null
null
null
null
UTF-8
C++
false
false
8,209
cpp
#include "fisher.h" #include <iostream> #include <fstream> #include <sstream> #include <ctime> #include <boost/dynamic_bitset.hpp> #include <cmath> #include <vector> #include <algorithm> using namespace std; #define MAXGEN 100000 extern FILE * fichierE; extern FILE * fichierS; extern MTRand rnd; double getfitness(double HI, double p12, double kd2, double a, double f, double p, double r) { double sz2; sz2 = p2 + (4.0 - 2.0*p2)*4.0*HI*(1.0-HI)+(f-1.0)*p12+(f-1.0+r)*p12*(1.0-p12) return(exp(-a * pow(sz2,kd2))); } /*---------------------------------------------------------- * Demographic Parameters: Dv: number of demes Nv: size of the population in each deme mv: migration rate between adjacent demes * Genomic parameters lv: total number of selected loci per genome Lv: genome map length (mean nb of cross-overs per meiosis) set to -1 for free recombination * FGM parameters kv: curvature of fitness function (cf Gros et al 2009 Genetics) av: strength of selection (steepness of fitness function) fv: fitness breakdown in F1 hybrids pv: fitness breakdown in parents rv: contribution of heterozygosity to curvature * Simulation parameters tv: number of generations that are saved and after which the equilibrium state is checked ----------------------------------------------------------*/ void recursion( int Dv, int Nv, double mv, int lv, double Lv, double kv, double av, double fv, double pv, double rv, int tv) { // variables: int i, j, k, loc, gen, par1, par2, ind, nb, nb2, nb3, nb4, nbMig; double w, wbar, varw, d, HI, p12, p2, delta_p, p_old; bool withrec; vector<int> store; // various fixed quantities: int ND = Nv * Dv; int twoN = 2*Nv; int twoND = 2*Nv*Dv; int N_1 = Nv - 1; double kd2 = kv / 2.0; int tv_1 = tv - 1; int ND1 = twoN * bv; bool sign = true; bool equi = false; bool last = 0; int nbSign = 0; withrec = Lv == -1 ? false : true; int round = 0; int nbW = lv * (lv + 1) / 2.0; int indexW = 0; boost::dynamic_bitset<> tmp1; boost::dynamic_bitset<> tmp2; boost::dynamic_bitset<> tmp3; boost::dynamic_bitset<> tmp4; // HDF5 constants and variables string fileName; stringstream nameF; nameF << "res_D" << Dv << "_N" << Nv << "_m" << mv << "_l" << lv << "_L" << Lv << "_k" << kv << "_a" << av << "_f" << fv << "_p" << pv << "_r" << rv << "_t" << tv << ".txt"; nameF >> fileName; int accGen = 0; //which generations are recorded chr * pop = new chr [twoND]; chr * temp = new chr [twoND]; // used to generate next generation chr * cp; // "Wtot" will hold the fitness of each individual: double * Wtot = new double [ND]; // maximal fitness in each deme: double * Wmax = new double [Dv]; // "HIend" will hold the hybrid index of each individual at the last generation double * HIend = new double [ND]; // "Wtable" will be the lookup table for the fitness corresponding to a genotype double * Wtable = new double [nbW]; // "Wsave" will save the number of individuals with a certain fitness value to output double * Wsave = new double [nbW][Dv]; // create HDF5 file and open it time_t debut, fin; struct tm *ptr; debut = time(0); // initialization: allele 0 is fixed at all selected loci: for (i = 0; i < twoND; i++) { pop[i].sel.resize(lv); temp[i].sel.resize(lv); if(i <= ND1) //complete divergence pop[i].sel.flip(); temp[i].sel.flip(); } // create fitness lookup table for (i =0; i < nbW; i++) { p2 = nbW - i; for (j=0; j < (nbW - i); j++) { p12 = j; Wtable[indexW] = getfitness( p2, p12, kd2, a, f, p, r); indexW += 1; } } // generations: while(equi == false & accGen < MAXGEN) { for (gen=0; gen < tv; gen++) { for (i = 0; i < Dv; i++) // for each deme { nb = i * Nv; Wmax[i] = 0; for (j = 0; j < Nv; j++) // for each individual { nb2 = 2 * (nb + j); // determine hybrid index and heterozygosity tmp1 = (pop[nb2].sel ^ pop[nb2+1].sel); p12 = tmp1.count(); //p12 /= lv; //creates a vector with a 0 for homozygote and 1 for heterozygote sites tmp2 = (pop[nb2].sel & pop[nb2+1].sel); p2 = tmp2.count(); //p2 /= lv; //HI = p2 + p12/2.0; // fitness w = W[ ((p2^2 - p2) / 2) + p12 ]; Wtot[nb2/2] = w; if (gen == tv_1) HIend[nb2/2] = HI; if (Wmax[i] < w) Wmax[i] = w; } } // sampling the next generation: for (i = 0; i < Dv; i++) // for each deme i { nb3 = Nv*i; // number of immigrants in deme i: nbMig = int(binldev(migv, Nv)); // migrant individuals: for (ind = 0; ind < nbMig; ind++) { nb4 = nb3 + ind; // selection of a deme of origin (j): if ((i > 0) && (i < Dv-1)) { if (rnd.rand() < 0.5) j = i - 1; else j = i + 1; } else { if (i == 0) j = 1; else if (i == Dv - 1) j = Dv - 2; } nb2 = Nv*j; // sampling first parent: do { par1 = nb2 + int(rnd.randInt(N_1)); } while (rnd.rand()> (Wtot[par1]/Wmax[j])); // recombination if (withrec) rec(temp[2*nb4], pop[2*par1], pop[2*par1+1], Lv, lv); else freerec(temp[2*nb4], pop[2*par1], pop[2*par1+1], lv); // sampling second parent: do { par2 = nb2 + int(rnd.randInt(N_1)); } while (rnd.rand()> (Wtot[par2] / Wmax[j])); // recombination if (withrec) rec(temp[2*nb4+1], pop[2*par2], pop[2*par2+1], Lv, lv); else freerec(temp[2*nb4+1], pop[2*par2], pop[2*par2+1], lv); } // philopatric individuals: for (ind = nbMig; ind < Nv; ind++) { nb4 = nb3 + ind; // sampling first parent: do { par1 = nb3 + int(rnd.randInt(N_1)) ; } while (rnd.rand()> (Wtot[par1] / Wmax[i])); // recombination if (withrec) rec(temp[2*nb4], pop[2*par1], pop[2*par1+1], Lv, lv); else freerec(temp[2*nb4], pop[2*par1], pop[2*par1+1], lv); do { par2 = nb3 + int(rnd.randInt(N_1)); } while (rnd.rand()> (Wtot[par2] / Wmax[i])); // recombination if (withrec) rec(temp[2*nb4+1], pop[2*par2], pop[2*par2+1], Lv, lv); else freerec(temp[2*nb4+1], pop[2*par2], pop[2*par2+1], lv); } } // update population: cp = pop; pop = temp; temp = cp; if (gen % pasv == 0) { indexGen = gen / pasv; Wtot = sort(Wtot.begin(), Wtot.end()), for (i = 0; i < Dv; i++) { sumk =0; for ( j =0; j < nbW; j++) { k = 0; do { k += 1; }while (Wtot[sumk+1] == Wtot[sumk]) Wsave[j][i] = k; } } // Allele frequency data for (loc = 0; loc < lv; loc++) { for (i = 0; i < Dv; i++) { nb = twoN * i; d = 0; for (j = 0; j < twoN; j++) { if (pop[nb + j].sel[loc] == 1) { d += 1; sdata_freq[loc * Dv + i] = d / twoN; } } } } //count how often the sign of the change in allele frequency changes delta_p = sdata_freq[bv] - p_old; p_old = sdata_freq[bv]; if (accGen > 200) //burnin period { if (delta_p ==0) nbSign += 1; else if (delta_p < 0 && sign ==true) { nbSign +=1; sign = false; } else if (delta_p > 0 && sign==false) last = 1; else { nbSign+=1; sign=true; } } // which generation was saved accGen; } accGen += 1; } // end gen loop if (nbSign > 100) { if (last ==0) last = 1; else equi=true; } round +=1; } fin = time(0); int temps = int(difftime(fin, debut)); cout << tv << " generations ont pris" << temps << "secondes\n"; delete [] pop; delete [] temp; delete [] Wtot; delete [] Wmax; }
[ "hfhschneemann@gmail.com" ]
hfhschneemann@gmail.com
a5a54c22260c98a2aed5dc5b8fef1b1242361382
db6903560e8c816b85b9adec3187f688f8e40289
/VisualUltimate/WindowsSDKs/vc7/atlmfc/src/mfc/filex.cpp
7a8b2daa61157f5c36c4dbeaeb9afffb65ecabf6
[]
no_license
QianNangong/VC6Ultimate
846a4e610859fab5c9d8fb73fa5c9321e7a2a65e
0c74cf644fbdd38018c8d94c9ea9f8b72782ef7c
refs/heads/master
2022-05-05T17:49:52.120385
2019-03-07T14:46:51
2019-03-07T14:46:51
147,986,727
4
1
null
null
null
null
UTF-8
C++
false
false
8,892
cpp
// This is a part of the Microsoft Foundation Classes C++ library. // Copyright (C) Microsoft Corporation // All rights reserved. // // This source code is only intended as a supplement to the // Microsoft Foundation Classes Reference and related // electronic documentation provided with the library. // See these sources for detailed information regarding the // Microsoft Foundation Classes product. #include "stdafx.h" #include <errno.h> #ifdef AFX_CORE1_SEG #pragma code_seg(AFX_CORE1_SEG) #endif #ifdef _DEBUG static const LPCSTR rgszCFileExceptionCause[] = { "none", "generic", "fileNotFound", "badPath", "tooManyOpenFiles", "accessDenied", "invalidFile", "removeCurrentDir", "directoryFull", "badSeek", "hardIO", "sharingViolation", "lockViolation", "diskFull", "endOfFile", }; static const char szUnknown[] = "unknown"; #endif ///////////////////////////////////////////////////////////////////////////// // CFileException void PASCAL CFileException::ThrowOsError(LONG lOsError, LPCTSTR lpszFileName /* = NULL */) { if (lOsError != 0) AfxThrowFileException(CFileException::OsErrorToException(lOsError), lOsError, lpszFileName); } void PASCAL CFileException::ThrowErrno(int nErrno, LPCTSTR lpszFileName /* = NULL */) { if (nErrno != 0) AfxThrowFileException(CFileException::ErrnoToException(nErrno), _doserrno, lpszFileName); } BOOL CFileException::GetErrorMessage(LPTSTR lpszError, UINT nMaxError, PUINT pnHelpContext) { ASSERT(lpszError != NULL && AfxIsValidString(lpszError, nMaxError)); if (lpszError == NULL || nMaxError == 0) { return FALSE; } if (pnHelpContext != NULL) *pnHelpContext = m_cause + AFX_IDP_FILE_NONE; CString strMessage; CString strFileName = m_strFileName; if (strFileName.IsEmpty()) strFileName.LoadString(AFX_IDS_UNNAMED_FILE); AfxFormatString1(strMessage, m_cause + AFX_IDP_FILE_NONE, strFileName); lstrcpyn(lpszError, strMessage, nMaxError); return TRUE; } ///////////////////////////////////////////////////////////////////////////// // CFileException diagnostics #ifdef _DEBUG void CFileException::Dump(CDumpContext& dc) const { CObject::Dump(dc); dc << "m_cause = "; if (m_cause >= 0 && m_cause < _countof(rgszCFileExceptionCause)) dc << rgszCFileExceptionCause[m_cause]; else dc << szUnknown; dc << "\nm_lOsError = " << m_lOsError; dc << "\n"; } #endif ///////////////////////////////////////////////////////////////////////////// // CFileException helpers void __declspec(noreturn) AFXAPI AfxThrowFileException(int cause, LONG lOsError, LPCTSTR lpszFileName /* == NULL */) { #ifdef _DEBUG LPCSTR lpsz; if (cause >= 0 && cause < _countof(rgszCFileExceptionCause)) lpsz = rgszCFileExceptionCause[cause]; else lpsz = szUnknown; TRACE(traceAppMsg, 0, _T("CFile exception: %hs, File %s, OS error information = %ld.\n"), lpsz, (lpszFileName == NULL) ? _T("Unknown") : lpszFileName, lOsError); #endif THROW(new CFileException(cause, lOsError, lpszFileName)); } int PASCAL CFileException::ErrnoToException(int nErrno) { switch(nErrno) { case EPERM: case EACCES: return CFileException::accessDenied; case EBADF: return CFileException::invalidFile; case EDEADLOCK: return CFileException::sharingViolation; case EMFILE: return CFileException::tooManyOpenFiles; case ENOENT: case ENFILE: return CFileException::fileNotFound; case ENOSPC: return CFileException::diskFull; case EINVAL: case EIO: return CFileException::hardIO; default: return CFileException::generic; } } int PASCAL CFileException::OsErrorToException(LONG lOsErr) { // NT Error codes switch ((UINT)lOsErr) { case NO_ERROR: return CFileException::none; case ERROR_FILE_NOT_FOUND: return CFileException::fileNotFound; case ERROR_PATH_NOT_FOUND: return CFileException::badPath; case ERROR_TOO_MANY_OPEN_FILES: return CFileException::tooManyOpenFiles; case ERROR_ACCESS_DENIED: return CFileException::accessDenied; case ERROR_INVALID_HANDLE: return CFileException::fileNotFound; case ERROR_BAD_FORMAT: return CFileException::invalidFile; case ERROR_INVALID_ACCESS: return CFileException::accessDenied; case ERROR_INVALID_DRIVE: return CFileException::badPath; case ERROR_CURRENT_DIRECTORY: return CFileException::removeCurrentDir; case ERROR_NOT_SAME_DEVICE: return CFileException::badPath; case ERROR_NO_MORE_FILES: return CFileException::fileNotFound; case ERROR_WRITE_PROTECT: return CFileException::accessDenied; case ERROR_BAD_UNIT: return CFileException::hardIO; case ERROR_NOT_READY: return CFileException::hardIO; case ERROR_BAD_COMMAND: return CFileException::hardIO; case ERROR_CRC: return CFileException::hardIO; case ERROR_BAD_LENGTH: return CFileException::badSeek; case ERROR_SEEK: return CFileException::badSeek; case ERROR_NOT_DOS_DISK: return CFileException::invalidFile; case ERROR_SECTOR_NOT_FOUND: return CFileException::badSeek; case ERROR_WRITE_FAULT: return CFileException::accessDenied; case ERROR_READ_FAULT: return CFileException::badSeek; case ERROR_SHARING_VIOLATION: return CFileException::sharingViolation; case ERROR_LOCK_VIOLATION: return CFileException::lockViolation; case ERROR_WRONG_DISK: return CFileException::badPath; case ERROR_SHARING_BUFFER_EXCEEDED: return CFileException::tooManyOpenFiles; case ERROR_HANDLE_EOF: return CFileException::endOfFile; case ERROR_HANDLE_DISK_FULL: return CFileException::diskFull; case ERROR_DUP_NAME: return CFileException::badPath; case ERROR_BAD_NETPATH: return CFileException::badPath; case ERROR_NETWORK_BUSY: return CFileException::accessDenied; case ERROR_DEV_NOT_EXIST: return CFileException::badPath; case ERROR_ADAP_HDW_ERR: return CFileException::hardIO; case ERROR_BAD_NET_RESP: return CFileException::accessDenied; case ERROR_UNEXP_NET_ERR: return CFileException::hardIO; case ERROR_BAD_REM_ADAP: return CFileException::invalidFile; case ERROR_NO_SPOOL_SPACE: return CFileException::directoryFull; case ERROR_NETNAME_DELETED: return CFileException::accessDenied; case ERROR_NETWORK_ACCESS_DENIED: return CFileException::accessDenied; case ERROR_BAD_DEV_TYPE: return CFileException::invalidFile; case ERROR_BAD_NET_NAME: return CFileException::badPath; case ERROR_TOO_MANY_NAMES: return CFileException::tooManyOpenFiles; case ERROR_SHARING_PAUSED: return CFileException::badPath; case ERROR_REQ_NOT_ACCEP: return CFileException::accessDenied; case ERROR_FILE_EXISTS: return CFileException::accessDenied; case ERROR_CANNOT_MAKE: return CFileException::accessDenied; case ERROR_ALREADY_ASSIGNED: return CFileException::badPath; case ERROR_INVALID_PASSWORD: return CFileException::accessDenied; case ERROR_NET_WRITE_FAULT: return CFileException::hardIO; case ERROR_DISK_CHANGE: return CFileException::fileNotFound; case ERROR_DRIVE_LOCKED: return CFileException::lockViolation; case ERROR_BUFFER_OVERFLOW: return CFileException::badPath; case ERROR_DISK_FULL: return CFileException::diskFull; case ERROR_NO_MORE_SEARCH_HANDLES: return CFileException::tooManyOpenFiles; case ERROR_INVALID_TARGET_HANDLE: return CFileException::invalidFile; case ERROR_INVALID_CATEGORY: return CFileException::hardIO; case ERROR_INVALID_NAME: return CFileException::badPath; case ERROR_INVALID_LEVEL: return CFileException::badPath; case ERROR_NO_VOLUME_LABEL: return CFileException::badPath; case ERROR_NEGATIVE_SEEK: return CFileException::badSeek; case ERROR_SEEK_ON_DEVICE: return CFileException::badSeek; case ERROR_DIR_NOT_ROOT: return CFileException::badPath; case ERROR_DIR_NOT_EMPTY: return CFileException::removeCurrentDir; case ERROR_LABEL_TOO_LONG: return CFileException::badPath; case ERROR_BAD_PATHNAME: return CFileException::badPath; case ERROR_LOCK_FAILED: return CFileException::lockViolation; case ERROR_BUSY: return CFileException::accessDenied; case ERROR_INVALID_ORDINAL: return CFileException::invalidFile; case ERROR_ALREADY_EXISTS: return CFileException::accessDenied; case ERROR_INVALID_EXE_SIGNATURE: return CFileException::invalidFile; case ERROR_BAD_EXE_FORMAT: return CFileException::invalidFile; case ERROR_FILENAME_EXCED_RANGE: return CFileException::badPath; case ERROR_META_EXPANSION_TOO_LONG: return CFileException::badPath; case ERROR_DIRECTORY: return CFileException::badPath; case ERROR_OPERATION_ABORTED: return CFileException::hardIO; case ERROR_IO_INCOMPLETE: return CFileException::hardIO; case ERROR_IO_PENDING: return CFileException::hardIO; case ERROR_SWAPERROR: return CFileException::accessDenied; default: return CFileException::generic; } } #ifdef AFX_INIT_SEG #pragma code_seg(AFX_INIT_SEG) #endif IMPLEMENT_DYNAMIC(CFileException, CException) /////////////////////////////////////////////////////////////////////////////
[ "vc6@ultim.pw" ]
vc6@ultim.pw
7daaa59eb300f8c60ade50871a1dbce778b54cd6
091b8c1e8aef45b48de85d5476c51cbc4a826c52
/tests/libcxx/default.cpp
07f2a12c4a62e8596c6789f4e245d7e1d60cfc0d
[ "MIT" ]
permissive
Morwenn/tight_pair
2d23760064f0209098fe8a6005d583b584453b2e
1ba432f8130ee24698486569bb66f31b04d448e5
refs/heads/master
2023-04-11T19:18:34.001773
2021-09-16T08:06:08
2021-09-16T08:06:08
104,942,480
22
4
MIT
2019-03-18T08:32:26
2017-09-26T22:05:41
C++
UTF-8
C++
false
false
1,560
cpp
/* * Copyright (c) 2018-2021 Morwenn * SPDX-License-Identifier: MIT */ //===----------------------------------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #include <type_traits> #include <catch2/catch.hpp> #include <tight_pair.h> #include "archetypes.h" TEST_CASE( "default noexcept" ) { using NonThrowingDefault = NonThrowingTypes::DefaultOnly; #if !defined(__GNUC__) || (defined(__GNUC__) && __GNUC__ >= 9) using ThrowingDefault = NonTrivialTypes::DefaultOnly; // NOTE: the behaviour for these test cases depends on whether the compiler implements // the resolution of P0003R5 which removes a noexcept special case with regard to // constant expressions, which apparently was a serendipitous change so compilers // took some time to adapt. static_assert(not std::is_nothrow_default_constructible_v<cruft::tight_pair<ThrowingDefault, ThrowingDefault>>); static_assert(not std::is_nothrow_default_constructible_v<cruft::tight_pair<NonThrowingDefault, ThrowingDefault>>); static_assert(not std::is_nothrow_default_constructible_v<cruft::tight_pair<ThrowingDefault, NonThrowingDefault>>); #endif static_assert(std::is_nothrow_default_constructible_v<cruft::tight_pair<NonThrowingDefault, NonThrowingDefault>>); }
[ "morwenn29@hotmail.fr" ]
morwenn29@hotmail.fr
4c3c88576a1ff372459ba0d85d54fd03f6567bfe
cdb63f9159564bde2c439b15287e0492414f7f1a
/visio/Basic.h
77acce82f5f58266e4153c4b90fcb69ac2bf18a9
[]
no_license
Luning644182206/visio
558f1a8a3c0638e7ee13c9f6a082baff0763016d
f5f68b0c332034dcb4f8523a74d6bd84cd7fe99b
refs/heads/master
2021-08-07T14:35:24.158213
2017-11-08T09:26:32
2017-11-08T09:26:32
109,916,106
0
0
null
null
null
null
GB18030
C++
false
false
1,294
h
#pragma once #include <vector> using namespace std; class Basic { protected: int Lx; int Rx; int Uy; int Dy; int State; int kind; CString Name; vector<CString> property; vector<CString> method; CString startpoint; CString finalpoint; public: Basic(); Basic(int lx, int rx, int uy, int dy); ~Basic(); void setLx(int x); void setRx(int x); void setUy(int y); void setDy(int y); void setKind(int k); void setState(int s); virtual int getLx(); virtual int getRx(); virtual int getUy(); virtual int getDy(); int getState(); int getKind(); virtual void setStart(Basic*TuYuan); virtual void setEnd(Basic*TuYuan); virtual void DeleteStart(); virtual void DeleteEnd(); virtual Basic* getStart(); virtual Basic* getEnd(); virtual int getBasic1(); virtual int getBasic2(); virtual void Offset(int cx, int cy); //位移 virtual void onSize(int cx, int cy); //改变大小 virtual void onPress(int x, int y); //鼠标按下 virtual void onPress2(int x, int y); //鼠标按下双击 virtual void onRelease(int x, int y); //鼠标释放 virtual void onMove(int cx, int cy); //鼠标移动 virtual void onDraw(CDC *pDC); //绘制 virtual CString onSave(); //保存 virtual void onDelete(); //删除 virtual void editDia(); //文字编辑 };
[ "luning644182206@live.com" ]
luning644182206@live.com
508ac297e528a958bf52ad6ace9b7c805fe7bea9
0115be14e248f6a11ddcfc016605500f168c5ef7
/services/distributeddataservice/adapter/autils/src/thread_pool/kv_store_task.cpp
b6de8ace9dcdaf6bc335b69aefe338607bc6f059
[ "Apache-2.0" ]
permissive
RobertIndie/distributeddatamgr_datamgr
78900eb56fbadc9eea7252310bd81c31632658e4
cc0a4040f70b3f84d41e18f8ec42197a1f960188
refs/heads/master
2023-09-01T00:44:45.620308
2021-10-20T13:07:35
2021-10-20T13:07:35
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,091
cpp
/* * Copyright (c) 2021 Huawei Device Co., Ltd. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #define LOG_TAG "KvStoreTask" #include "kv_store_task.h" #include "log_print.h" namespace OHOS { namespace DistributedKv { KvStoreTask::KvStoreTask(std::function<void()> lambda) { task_ = std::move(lambda); name_ = std::string(); } KvStoreTask::KvStoreTask(std::function<void()> lambda, const std::string &taskName) { task_ = std::move(lambda); name_ = taskName; } void KvStoreTask::operator()() { task_(); } } // namespace DistributedKv } // namespace OHOS
[ "mamingshuai1@huawei.com" ]
mamingshuai1@huawei.com
f56e41b506cc70b8b81553d599af9512a3f06df9
2f125b11c98441c20ad654bf8256414afb9f15a0
/kernel_selector/core/actual_kernels/convolution_grad_weights/convolution_grad_weights_kernel_selector.h
fddc6bf99626ab5775e16ad56dadec6e8b13ac85
[ "BSL-1.0", "Apache-2.0" ]
permissive
Beerwalker/clDNN
371da06ee853339431691edae330a148d4903a33
1cdde54e7424ace7fef0eaaf458b5d20c66b5d2f
refs/heads/master
2020-03-25T21:33:00.594898
2018-08-09T10:57:06
2018-08-09T10:57:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,170
h
/* // Copyright (c) 2018 Intel Corporation // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. */ #pragma once #include "kernel_selector.h" namespace KernelSelector { class ConvolutionGradWeightsKernelSelctor : public KernelSelctorBase { public: static ConvolutionGradWeightsKernelSelctor &Instance() { static ConvolutionGradWeightsKernelSelctor instance_; return instance_; } ConvolutionGradWeightsKernelSelctor(); virtual ~ConvolutionGradWeightsKernelSelctor() {} virtual KernelsData GetBestKernels(const Params& params, const OptionalParams& options) const override; }; }
[ "marcin.walkowiak@intel.com" ]
marcin.walkowiak@intel.com
2873fffed43719f1e4e8cde73b74c09ac2d08c9b
bb238259d18b29d9b875dc4c8cce10dbf7768799
/unitydemodemo/Classes/Native/AssemblyU2DCSharp_MonoPInvokeCallbackAttribute1970456718.h
dcd5bae0aec3286a190c072b78535e885bed9b47
[]
no_license
showdpro/Bushi
3055bb6a3ec290cb4cd782650e9382f02d853f82
81ceeaf0b10467986598ebb710820be9ef98a65f
refs/heads/master
2021-09-17T11:19:31.591730
2018-07-01T12:53:39
2018-07-01T12:53:39
null
0
0
null
null
null
null
UTF-8
C++
false
false
539
h
#pragma once #include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <stdint.h> #include "mscorlib_System_Attribute542643598.h" #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // MonoPInvokeCallbackAttribute struct MonoPInvokeCallbackAttribute_t1970456718 : public Attribute_t542643598 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif
[ "" ]
7554a8e1a4ac7d45d90d5b4f56986181329698a7
29eb66c7d378e212c78278b3e622a77436db1f58
/Tool/BeyondEngineEditor/ComponentInfoWnd.h
fca841d4524f3f609cd1aec7822ed1713934a3c0
[]
no_license
yf885188/BeyondEngine
b71dc0db844e5e9769e30a341e1ca55fc784d9de
9950c12e6c34450c234905731454b40a6f55609c
refs/heads/master
2021-06-16T16:02:09.778944
2017-03-06T07:01:33
2017-03-06T07:01:33
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,495
h
#ifndef BEYOND_ENGINE_EDITOR_EXTRAWINDOW_COMPONENTINFOWND_H__INCLUDE #define BEYOND_ENGINE_EDITOR_EXTRAWINDOW_COMPONENTINFOWND_H__INCLUDE #include "wx/generic/grid.h" class wxSearchCtrl; class CComponentInfoWnd : public wxFrame { typedef wxFrame super; public: CComponentInfoWnd(wxWindow *parent, wxWindowID id, const wxString &title, const wxPoint &pos, const wxSize &size, long style, const wxString &name = wxDialogNameStr); virtual ~CComponentInfoWnd(); virtual bool Show(bool bShow = true) override; void ShowInstanceComponent(wxString szText = wxT("")); void ShowAllComponent(wxString szText = wxT("")); void ClearGrid(); private: void OnClose(wxCloseEvent& event); void OnViewChoiceChanged( wxCommandEvent& event ); void OnRefreshBtnClicked(wxCommandEvent& event); void OnShowUnInvokedCheckBox(wxCommandEvent& event); void OnCellLeftClick(wxGridEvent& event); void OnCellLeftDclick(wxGridEvent& event); void OnGridColSort(wxGridEvent& event); void OnSrchIdle(wxIdleEvent& event); void OnSrchUpdate(wxCommandEvent& event); private: wxGrid* m_pGrid; wxChoice* m_pViewChoice; wxButton* m_pRefreshBtn; wxCheckBox* m_pShowUnInvokedCheckBox; wxSearchCtrl* m_pSrchCtrl; int m_nCurrentChoice; unsigned long m_uLastEnumSearchTextUpdateTime; bool m_bEnumSearchTextUpdate; bool m_bShowUnInvoked; DECLARE_EVENT_TABLE() }; #endif
[ "loveybeyond@163.com" ]
loveybeyond@163.com
2ca13a8186f4eebaf7cd86352b0b8385c8b4d6a5
329ce6d54f208aa1aa23036eaef1c84beb1b516c
/src/Q5.ino
80516a2fd4ae6db0a6705b4e3aa0754ef98c1f1c
[]
no_license
0xEillo/Lab2
222d5348196d32d975471a3b6687fac5a6287a16
ea201860e730883b0df6e218ca8e318653734928
refs/heads/main
2023-03-28T12:06:03.655903
2021-03-30T08:00:27
2021-03-30T08:00:27
null
0
0
null
null
null
null
UTF-8
C++
false
false
869
ino
#include "LetESP32.h" const char* ssid = "NETGEAR35"; const char* password = "magicalfinch482"; const char* ws = "ws://192.168.1.2:1234"; LetESP32 tracer(ssid, password, ws, "7sgC703x"); #define SIZE 6000 // Volatile keyword stops the compiler optimising // the arrays away volatile float a[SIZE]; volatile float b[SIZE]; volatile float c; //Q5 interrupts hw_timer_t *timer; timer = timerBegin(1, 80, true); void IRAM_ATTR timerISR() { // ISR body } void dotProduct() { for(int i=0; i<SIZE; i++) { c += a[i] * b[i]; } } void randomise(){ for(int i=0; i<SIZE; i++) { a[i] = esp_random(); b[i] = esp_random(); } } void setup() { randomise(); } void loop() { timerAttachInterrupt(timer, &timerISR, true); timerAlarmWrite(timer, 1000000, true); timerAlarmEnable(timer); dotProduct(); delayMicroseconds(750); }
[ "oliryall0404@gmail.com" ]
oliryall0404@gmail.com
1423aa9e1f53759a1d5c24e6d876702135d777a3
0f35faad9616119366fd97c91ca0a1e5ecfdb3e4
/cpp/boost/date_time.cpp
b5fc47bc700131d6f81c8da8169306959b0e844f
[]
no_license
nonstop/sandbox
374d8dca8809aee1da74f48fc427eb0adf1649bc
43008f6123dfd88c35f9ff42abcd99d21f5119ce
refs/heads/master
2022-05-27T22:40:55.322107
2022-05-01T04:16:33
2022-05-01T04:16:33
123,214
2
0
null
null
null
null
UTF-8
C++
false
false
792
cpp
#include <time.h> #include <iostream> #include <string> #include <sstream> #include <boost/date_time/posix_time/posix_time.hpp> using namespace std; using namespace boost::posix_time; string getDateTimeStr(const char* format) { boost::date_time::time_facet<ptime, char>* output_facet = new boost::date_time::time_facet<ptime, char>(); stringstream ss; ptime t(microsec_clock::local_time()); ss.imbue(locale(locale::classic(), output_facet)); output_facet->format(format); ss << t; return ss.str(); } int main(int ac, char * av[]) { cout << "ctime is: " << time(0) << endl; const char* format = (ac > 1 ? av[1] : "%y%m%d_%H_%M_%S%.2F"); cout << "format=[" << format << "] boost::date_time is: " << getDateTimeStr(format) << endl; return 0; }
[ "ratnikov.ev@gmail.com" ]
ratnikov.ev@gmail.com
fe5fe016957310d9d391b1c60d24d448071f0bd9
9caf72f30a59afba4b615160e4dcff8c038a360a
/CodePublisher/Display/Display.h
f7ebaa97f4bf78964fa601f6a866b77331c29ba3
[]
no_license
asraman/RemoteCodePageManagement
9b9749395ccc8951e468b945e64b1cd2d7d28f32
397ef5fb4dcc59ea82a475182091481e9af300aa
refs/heads/master
2020-07-09T08:19:41.454214
2019-08-23T18:18:38
2019-08-23T18:18:38
203,924,605
0
1
null
null
null
null
UTF-8
C++
false
false
1,484
h
#pragma once /////////////////////////////////////////////////////////////////////////// // Display.h : defines webpage display using browser functions // // ver 1.0 // // // // Platform : Visual Studio Enterprise 2017, Windows 10 Pro x64 // // Author : Anirudh Raman, Syracuse University // // asraman@syr.edu // /////////////////////////////////////////////////////////////////////////// /* * Package Operations: * ======================= * This package defines Display class which accepts a list of files as a * vector<string> and uses the default internet browser to display them * one by one. Please note that the functionality has limiations: * 1) Opera/MS Edge: will pop-up all tabs instantly. * 2) Chrome/Firefox: will pop-up windows separately only if no * already existing Chrome/Firefox window is opened (all must be * closed before running this). * * Required Files: * =============== * Process.h, Process.cpp * * Maintainence History: * ======================= * ver 1.0 - 7 Jan 2019 * - first release */ #include<vector> class display { public: display(); ~display(); //a function to display valid HTMl files using process class in the web browser void showWebPage(std::vector<std::string> convertedFiles); };
[ "asraman@syr.edu" ]
asraman@syr.edu
92f608ea3ffaee3305a5f49a6fede484381209a3
138214e41c97a3ccd28d13f030e5077837248b6e
/FenetreConversion.cpp
fc41e90659b2fd5ab9a6aad453464419ee208189
[]
no_license
MarcelPirate/dlc-fiches-chrono
b60cc1075fbd7a8a45b7734194f3fb39b6546305
e09ebbde3d559cb484fdb56983bcfdb2460fc761
refs/heads/master
2021-01-01T17:00:06.685257
2014-02-20T15:56:01
2014-02-20T15:56:01
null
0
0
null
null
null
null
UTF-8
C++
false
false
542
cpp
//--------------------------------------------------------------------------- #include <vcl.h> #pragma hdrstop #include "FenetreConversion.h" //--------------------------------------------------------------------------- #pragma package(smart_init) #pragma resource "*.dfm" TFConversion *FConversion; //--------------------------------------------------------------------------- __fastcall TFConversion::TFConversion(TComponent* Owner) : TForm(Owner) { } //---------------------------------------------------------------------------
[ "binaire@gmail.com" ]
binaire@gmail.com
67f073670db4823bb41a42ecc4a7c955dd615b4a
b1161c77f914ae6435d1eaee831ce77927550e73
/Project-1/neuralNetwork.cpp
b0a1e104d30ae66fa870cd8a610315873a316306
[]
no_license
blackcat-vin/my-uni-projects
3b0d3946de09d254c434cee9317b40d7208121ee
429ed405ce0492c949498ac6b45311a216c40476
refs/heads/master
2016-09-06T13:23:34.032088
2012-07-24T12:22:32
2012-07-24T12:22:32
null
0
0
null
null
null
null
UTF-8
C++
false
false
10,397
cpp
//standard includes #include <iostream> #include <vector> #include <fstream> #include <math.h> //include definition file #include "neuralNetwork.h" using namespace std; /******************************************************************* * Constructor ********************************************************************/ neuralNetwork::neuralNetwork(int nI, int nH, int nO) : nInput(nI), nHidden(nH), nOutput(nO) { //create neuron lists //-------------------------------------------------------------------------------------------------------- inputNeurons = new( double[nInput + 1] ); for ( int i=0; i < nInput; i++ ) inputNeurons[i] = 0; //create input bias neuron inputNeurons[nInput] = -1; hiddenNeurons = new( double[nHidden + 1] ); for ( int i=0; i < nHidden; i++ ) hiddenNeurons[i] = 0; //create hidden bias neuron hiddenNeurons[nHidden] = -1; outputNeurons = new( double[nOutput] ); for ( int i=0; i < nOutput; i++ ) outputNeurons[i] = 0; //create weight lists (include bias neuron weights) //-------------------------------------------------------------------------------------------------------- wInputHidden = new( double*[nInput + 1] ); for ( int i=0; i <= nInput; i++ ) { wInputHidden[i] = new (double[nHidden]); for ( int j=0; j < nHidden; j++ ) wInputHidden[i][j] = 0; } wHiddenOutput = new( double*[nHidden + 1] ); for ( int i=0; i <= nHidden; i++ ) { wHiddenOutput[i] = new (double[nOutput]); for ( int j=0; j < nOutput; j++ ) wHiddenOutput[i][j] = 0; } } /******************************************************************* * Destructor ********************************************************************/ neuralNetwork::~neuralNetwork() { //delete neurons delete[] inputNeurons; delete[] hiddenNeurons; delete[] outputNeurons; //delete weight storage for (int i=0; i <= nInput; i++) delete[] wInputHidden[i]; delete[] wInputHidden; for (int j=0; j <= nHidden; j++) delete[] wHiddenOutput[j]; delete[] wHiddenOutput; } /******************************************************************* * Load Neuron Weights ********************************************************************/ bool neuralNetwork::loadWeights(char* filename) { //open file for reading fstream inputFile; inputFile.open(filename, ios::in); if ( inputFile.is_open() ) { vector<double> weights; string line = ""; //read data while ( !inputFile.eof() ) { getline(inputFile, line); //process line if (line.length() > 2 ) { //store inputs char* cstr = new char[line.size()+1]; char* t; strcpy(cstr, line.c_str()); //tokenise int i = 0; t=strtok (cstr,","); while ( t!=NULL ) { weights.push_back( atof(t) ); //move token onwards t = strtok(NULL,","); i++; } } } //check if sufficient weights were loaded if ( weights.size() != ( (nInput + 1) * nHidden + (nHidden + 1) * nOutput ) ) { cout << endl << "Error - Incorrect number of weights in input file: " << filename << endl; //close file inputFile.close(); return false; } else { //set weights int pos = 0; for ( int i=0; i <= nInput; i++ ) { for ( int j=0; j < nHidden; j++ ) { wInputHidden[i][j] = weights[pos++]; } } for ( int i=0; i <= nHidden; i++ ) { for ( int j=0; j < nOutput; j++ ) { wHiddenOutput[i][j] = weights[pos++]; } } //print success cout << endl << "Neuron weights loaded successfuly from " << filename << endl; //close file inputFile.close(); return true; } } else { cout << endl << "Error - Weight input file '" << filename << "' could not be opened: " << endl; return false; } } /******************************************************************* * Save Neuron Weights ********************************************************************/ bool neuralNetwork::saveWeights(char* filename) { //open file for reading fstream outputFile; outputFile.open(filename, ios::out); if ( outputFile.is_open() ) { outputFile.precision(50); //output weights for ( int i=0; i <= nInput; i++ ) { for ( int j=0; j < nHidden; j++ ) { outputFile << wInputHidden[i][j] << ","; } } for ( int i=0; i <= nHidden; i++ ) { for ( int j=0; j < nOutput; j++ ) { outputFile << wHiddenOutput[i][j]; if ( i * nOutput + j + 1 != (nHidden + 1) * nOutput ) outputFile << ","; } } //print success cout << endl << "Neuron weights saved to '" << filename << "'" << endl; //close file outputFile.close(); return true; } else { cout << endl << "Error - Weight output file '" << filename << "' could not be created: " << endl; return false; } } /******************************************************************* * Initialize Neuron Weights ********************************************************************/ void neuralNetwork::initializeWeights() { //set range double rH = -1; // 1/sqrt( (double) nInput); double rO = 1; // 1/sqrt( (double) nHidden); //set weights between input and hidden //-------------------------------------------------------------------------------------------------------- for(int i = 0; i <= nInput; i++) { for(int j = 0; j < nHidden; j++) { //set weights to random values wInputHidden[i][j] = ( ( (double)(rand()%100)+1)/100 * 2 * rH ) - rH; } } //set weights between input and hidden //-------------------------------------------------------------------------------------------------------- for(int i = 0; i <= nHidden; i++) { for(int j = 0; j < nOutput; j++) { //set weights to random values wHiddenOutput[i][j] = ( ( (double)(rand()%100)+1)/100 * 2 * rO ) - rO; } } } /******************************************************************* * Feed pattern through network and return results ********************************************************************/ double* neuralNetwork::feedForwardPattern(double *pattern) { feedForward(pattern); //create copy of output results double* results = new double[nOutput]; for (int i=0; i < nOutput; i++ ) results[i] = clampOutput(outputNeurons[i]); return results; } /******************************************************************* * Return the NN accuracy on the set ********************************************************************/ double neuralNetwork::getSetAccuracy( std::vector<dataEntry*>& set ) { double incorrectResults = 0; //for every training input array for ( int tp = 0; tp < (int) set.size(); tp++) { //feed inputs through network and backpropagate errors feedForward( set[tp]->pattern ); //correct pattern flag bool correctResult = true; //check all outputs against desired output values for ( int k = 0; k < nOutput; k++ ) { //set flag to false if desired and output differ if ( clampOutput(outputNeurons[k]) != set[tp]->target[k] ) correctResult = false; } //inc training error for a incorrect result if ( !correctResult ) incorrectResults++; }//end for //calculate error and return as percentage return 100 - (incorrectResults/set.size() * 100); } /******************************************************************* * Return the NN sum of squared error on the set ********************************************************************/ double neuralNetwork::getSetSSE( std::vector<dataEntry*>& set ) { double sse = 0; ofstream out; out.open("compareOutputAndTargetForASet.csv"); //for every training input array for ( int tp = 0; tp < (int) set.size(); tp++) { //feed inputs through network and backpropagate errors feedForward( set[tp]->pattern ); //check all outputs against desired output values for ( int k = 0; k < nOutput; k++ ) { double temp = clampOutput( outputNeurons[k] ) ; out << temp << "," << set[tp]->target[k] << endl; //sum all the SSEs together sse += pow((outputNeurons[k] - set[tp]->target[k]), 2); } }//end for out.close(); //calculate error and return as percentage return (0.5 * sse)/(nOutput * set.size()); } /******************************************************************* * Activation Function ********************************************************************/ inline double neuralNetwork::activationFunction( double x ) { //sigmoid function return 1/(1+exp(-x)); } /******************************************************************* * Output Clamping ********************************************************************/ inline double neuralNetwork::clampOutput( double x ) { //return x; if ( x < 0.1 ) return 0; else if ( x > 0.9 ) return 1; else return -1; } /******************************************************************* * Feed Forward Operation ********************************************************************/ void neuralNetwork::feedForward(double* pattern) { //set input neurons to input values for(int i = 0; i < nInput; i++) inputNeurons[i] = pattern[i]; //Calculate Hidden Layer values - include bias neuron //-------------------------------------------------------------------------------------------------------- for(int j=0; j < nHidden; j++) { //clear value hiddenNeurons[j] = 0; //get weighted sum of pattern and bias neuron for( int i=0; i <= nInput; i++ ) hiddenNeurons[j] += inputNeurons[i] * wInputHidden[i][j]; //set to result of sigmoid hiddenNeurons[j] = activationFunction( hiddenNeurons[j] ); } //Calculating Output Layer values - include bias neuron //-------------------------------------------------------------------------------------------------------- for(int k=0; k < nOutput; k++) { //clear value outputNeurons[k] = 0; //get weighted sum of pattern and bias neuron for( int j=0; j <= nHidden; j++ ) outputNeurons[k] += hiddenNeurons[j] * wHiddenOutput[j][k]; //set to result of sigmoid outputNeurons[k] = activationFunction( outputNeurons[k] ); } }
[ "vineet@Vineets-iMac.local" ]
vineet@Vineets-iMac.local
c698fe7ad698d250da254e7ef606312ab7318763
901571e54db419ccd0aa4d7a3dbfcd8dd5b37207
/BOJ/2000/2585.cpp
0dbcfb916b57647b985fc2c027df21523375eaa0
[]
no_license
fbdp1202/AlgorithmParty
3b7ae486b4a27f49d2d40efd48ed9a45a98c77e8
9fe654aa49392cb261e1b53c995dbb33216c6a20
refs/heads/master
2021-08-03T22:52:30.182103
2021-07-22T06:15:45
2021-07-22T06:15:45
156,948,821
1
0
null
null
null
null
UTF-8
C++
false
false
1,578
cpp
#include <cstdio> #include <queue> #include <vector> #include <functional> #include <cmath> #include <utility> #include <algorithm> using namespace std; #define SQ(x) ((x)*(x)) typedef pair<double, double> P; typedef pair<int,int> Pii; const int MAX_INF = 1e9; const int MAX_N = 1003; const int MAX_L = 1500; int N, K; P pos[MAX_N]; int getDistance(P &a, P &b) { double ret = sqrt(SQ(a.first - b.first)+SQ(a.second - b.second)); return (ret-(int)ret > 0) ? ((int)ret/10) + 1 : ((int)ret/10); } int check(int L) { int dist[MAX_N]; bool visited[MAX_N]; fill(dist, dist+MAX_N, MAX_INF); fill(visited, visited+MAX_N, false); dist[0] = 0; priority_queue<Pii, vector<Pii>, greater<Pii> > PQ; PQ.push(Pii(0, 0)); while (!PQ.empty()) { int curr; do { curr = PQ.top().second; PQ.pop(); } while (!PQ.empty() && visited[curr]); if (visited[curr]) break; visited[curr] = true; for (int i=1; i<N; i++) { if (i == curr) continue; if (getDistance(pos[curr], pos[i]) > L) continue; if (dist[i] > dist[curr] + 1) { dist[i] = dist[curr] + 1; PQ.push(Pii(dist[i], i)); } } } return dist[N-1]-1; } int main() { scanf("%d%d", &N, &K); for (int i=1; i<=N; i++) scanf("%lf%lf", &pos[i].first, &pos[i].second); N+=2; pos[0].first = pos[0].second = 0.f; pos[N-1].first = pos[N-1].second = 10000.f; int ret = MAX_L; int left = 0, right = MAX_L; while (left <= right) { int mid = (left+right)/2; if (check(mid) > K) { left = mid + 1; } else { ret = min(ret, mid); right = mid-1; } } printf("%d\n", ret); return 0; }
[ "rbynddd@naver.com" ]
rbynddd@naver.com
07ef354d74c40450e9c16032c79eb8bcd874427d
cc5f149a4ce1ae32f3e373c9b35198b519b751d5
/include/subprocess.hpp
9ff649291bf55c45206c2b2395fecdfeac672d4b
[ "MIT" ]
permissive
BodneyC/sood-compiler
4dececc8837b2f091f5141dd806ba3d0507de850
e21d8c0fdb24213bbff63cb8e5a55647b32bdf69
refs/heads/master
2023-02-06T01:40:41.435476
2020-12-30T16:17:27
2020-12-30T16:17:27
303,824,291
1
0
null
null
null
null
UTF-8
C++
false
false
4,492
hpp
// // subprocess C++ library - https://github.com/tsaarni/cpp-subprocess // // The MIT License (MIT) // // Copyright (c) 2015 Tero Saarni // #pragma once #include <string> #include <vector> #include <iostream> #include <ext/stdio_filebuf.h> #include <cstdio> #include <system_error> #include <unistd.h> #include <sys/types.h> #include <sys/wait.h> namespace subprocess { class popen { public: popen(const std::string& cmd, std::vector<std::string> argv) : in_filebuf(nullptr), out_filebuf(nullptr), err_filebuf(nullptr), in_stream(nullptr), out_stream(nullptr), err_stream(nullptr) { if (pipe(in_pipe) == -1 || pipe(out_pipe) == -1 || pipe(err_pipe) == -1 ) { throw std::system_error(errno, std::system_category()); } run(cmd, argv); } popen(const std::string& cmd, std::vector<std::string> argv, std::ostream& pipe_stdout) : in_filebuf(nullptr), out_filebuf(nullptr), err_filebuf(nullptr), in_stream(nullptr), out_stream(nullptr), err_stream(nullptr) { auto filebuf = dynamic_cast<__gnu_cxx::stdio_filebuf<char>*>(pipe_stdout.rdbuf()); out_pipe[READ] = -1; out_pipe[WRITE] = filebuf->fd(); if (pipe(in_pipe) == -1 || pipe(err_pipe) == -1 ) { throw std::system_error(errno, std::system_category()); } run(cmd, argv); } ~popen() { delete in_filebuf; delete in_stream; if (out_filebuf != nullptr) delete out_filebuf; if (out_stream != nullptr) delete out_stream; delete err_filebuf; delete err_stream; } std::ostream& stdin() { return *in_stream; }; std::istream& stdout() { if (out_stream == nullptr) throw std::system_error(EBADF, std::system_category()); return *out_stream; }; std::istream& stderr() { return *err_stream; }; int wait() { int status = 0; waitpid(pid, &status, 0); return WEXITSTATUS(status); }; void close() { in_filebuf->close(); } private: enum ends_of_pipe { READ = 0, WRITE = 1 }; struct raii_char_str { raii_char_str(std::string s) : buf(s.c_str(), s.c_str() + s.size() + 1) { }; operator char*() const { return &buf[0]; }; mutable std::vector<char> buf; }; void run(const std::string& cmd, std::vector<std::string> argv) { argv.insert(argv.begin(), cmd); pid = ::fork(); if (pid == 0) child(argv); ::close(in_pipe[READ]); ::close(out_pipe[WRITE]); ::close(err_pipe[WRITE]); in_filebuf = new __gnu_cxx::stdio_filebuf<char>(in_pipe[WRITE], std::ios_base::out, 1); in_stream = new std::ostream(in_filebuf); if (out_pipe[READ] != -1) { out_filebuf = new __gnu_cxx::stdio_filebuf<char>(out_pipe[READ], std::ios_base::in, 1); out_stream = new std::istream(out_filebuf); } err_filebuf = new __gnu_cxx::stdio_filebuf<char>(err_pipe[READ], std::ios_base::in, 1); err_stream = new std::istream(err_filebuf); } void child(const std::vector<std::string>& argv) { if (dup2(in_pipe[READ], STDIN_FILENO) == -1 || dup2(out_pipe[WRITE], STDOUT_FILENO) == -1 || dup2(err_pipe[WRITE], STDERR_FILENO) == -1 ) { std::perror("subprocess: dup2() failed"); return; } ::close(in_pipe[READ]); ::close(in_pipe[WRITE]); if (out_pipe[READ] != -1) ::close(out_pipe[READ]); ::close(out_pipe[WRITE]); ::close(err_pipe[READ]); ::close(err_pipe[WRITE]); std::vector<raii_char_str> real_args(argv.begin(), argv.end()); std::vector<char*> cargs(real_args.begin(), real_args.end()); cargs.push_back(nullptr); if (execvp(cargs[0], &cargs[0]) == -1) { std::perror("subprocess: execvp() failed"); return; } } pid_t pid; int in_pipe[2]; int out_pipe[2]; int err_pipe[2]; __gnu_cxx::stdio_filebuf<char>* in_filebuf; __gnu_cxx::stdio_filebuf<char>* out_filebuf; __gnu_cxx::stdio_filebuf<char>* err_filebuf; std::ostream* in_stream; std::istream* out_stream; std::istream* err_stream; }; } // namespace: subprocess
[ "benjcarrington@gmail.com" ]
benjcarrington@gmail.com
cd66430e83d389cd4a40b4990bda3420c9a595d7
09de621cc46311833baef4e8990cdf70f816334e
/src/io/text_formats.h
3ee7c455c3cd5aaa499502ece09b08b8c08052f2
[]
no_license
lzswangjian/transition-notes
5f12a7c741579e6b78c8aa35367e777e44b3a5ee
387ddf2ed464c61092e7e28652c8112296c4e1c0
refs/heads/master
2020-06-19T11:32:57.776168
2016-09-23T02:19:11
2016-09-23T02:19:11
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,578
h
#ifndef SYNTAXNET_TEXT_READER_H_ #define SYNTAXNET_TEXT_READER_H_ #include <memory> #include <string> #include <vector> #include "../sentence.h" #include "../utils/utils.h" #include "document_format.h" /*! * \brief CoNLL document format reader for dependency annotated corpora. * * Fileds: * 1 ID: Token counter, starting at 1 for each new sentence and increasing * by 1 for every new token. * 2 FORM: Word form or punctuation symbol. * 3 LEMMA: Lemma or stem. * 4 CPOSTAG: Coarse-grained part-of-speech tag or category. * 5 POSTAG: Fine-grained part-of-speech tag. * 6 FEATS: Unordered set of syntactic and/or morphological features. * 7 HEAD: Head of the current token, which is either a value of ID or '0'. * 8 DEPREL: Dependency relation to the HEAD. * 9 PHEAD: Projective head of current token. * 10 PDEPREL: Dependency relation to the PHEAD. */ class CoNLLSyntaxFormat : public DocumentFormat { public: CoNLLSyntaxFormat() {} // Reads up to the first empty line and returns false end of file is reached. bool ReadRecord(ifstream *stream, string *record) override { string line; record->clear(); while (std::getline(*stream, line) && !line.empty()) { record->append(line); record->append("\n"); } return !record->empty(); } void ConvertFromString(const string &key, const string &value, vector<Sentence *> *sentences) override { // Create new sentence. Sentence *sentence = new Sentence(); // Each line corresponds to one token. string text; vector<string> lines = utils::Split(value, '\n'); // Add each token to the sentence. vector<string> fields; int expected_id = 1; for (size_t i = 0; i < lines.size(); ++i) { // Split line into tab-separated fields. fields.clear(); fields = utils::Split(lines[i], '\t'); if (fields.size() == 0) continue; // Skip comment lines. if (fields[0][0] == '#') continue; // Check that the line is valid. CHECK_GE(fields.size(), 8) << "Every line has to have at least 8 tab separated fields."; // Check that the ids follow the expected format. const int id = utils::ParseUsing<int>(fields[0], 0, utils::ParseInt32); CHECK_EQ(expected_id++, id) << "Token ids start at 1 for each new sentence and increase by 1 " << "on each new token. Sentences are separated by an empty line."; // Get relevant fields. const string &word = fields[1]; const string &cpostag = fields[3]; const string &tag = fields[4]; const int head = utils::ParseUsing<int>(fields[6], 0, utils::ParseInt32); const string &label = fields[7]; // Add token to sentence text. if (!text.empty()) text.append(" "); const int start = text.size(); const int end = start + word.size() - 1; text.append(word); // Add token to sentence. Token *token = sentence->add_token(); token->set_word(word); token->set_start(start); token->set_end(end); if (head > 0) token->set_head(head - 1); if (!tag.empty()) token->set_tag(tag); if (!cpostag.empty()) token->set_category(cpostag); if (!label.empty()) token->set_label(label); } if (sentence->token_size() > 0) { sentence->set_docid(key); sentence->set_text(text); sentences->push_back(sentence); } else { // If the sentence was empty (e.g., blank lines at the beginning of a // file), then don't save it. delete sentence; } } // Converts a sentence to a key/value pair. void ConvertToString(const Sentence &sentence, string *key, string *value) override { *key = sentence.docid(); vector<string> lines; for (int i = 0; i < sentence.token_size(); ++i) { vector<string> fields(10); fields[0] = utils::Printf(i + 1); fields[1] = sentence.token(i).word(); fields[2] = "_"; fields[3] = sentence.token(i).category(); fields[4] = sentence.token(i).tag(); fields[5] = "_"; fields[6] = utils::Printf(sentence.token(i).head() + 1); fields[7] = sentence.token(i).label(); fields[8] = "_"; fields[9] = "_"; lines.push_back(utils::Join(fields, "\t")); } *value = utils::Join(lines, "\n") + "\n\n"; } }; // REGISTER_DOCUMENT_FORMAT("conll-sentence", CoNLLSyntaxFormat); #endif
[ "qcl6355@gmail.com" ]
qcl6355@gmail.com
8cd54717b4a4ae4b18e6c72a02892571a8bc61e3
5b7e69802b8075da18dc14b94ea968a4a2a275ad
/DRG-SDK/SDK/DRG_ABP_GrenadeLauncher_A_classes.hpp
0540fae85a73ff10de19b1205f1c21f096010bc3
[]
no_license
ue4sdk/DRG-SDK
7effecf98a08282e07d5190467c71b1021732a00
15cc1f8507ccab588480528c65b9623390643abd
refs/heads/master
2022-07-13T15:34:38.499953
2019-03-16T19:29:44
2019-03-16T19:29:44
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,370
hpp
#pragma once // Deep Rock Galactic (0.22) SDK #ifdef _MSC_VER #pragma pack(push, 0x8) #endif #include "DRG_ABP_GrenadeLauncher_A_structs.hpp" namespace SDK { //--------------------------------------------------------------------------- //Classes //--------------------------------------------------------------------------- // AnimBlueprintGeneratedClass ABP_GrenadeLauncher_A.ABP_GrenadeLauncher_A_C // 0x0120 (0x0480 - 0x0360) class UABP_GrenadeLauncher_A_C : public UAnimInstance { public: struct FPointerToUberGraphFrame UberGraphFrame; // 0x0360(0x0008) (CPF_ZeroConstructor, CPF_Transient, CPF_DuplicateTransient) struct FAnimNode_Root AnimGraphNode_Root_1D813FE04EBF906D72749C8475AFA7B4; // 0x0368(0x0040) struct FAnimNode_Slot AnimGraphNode_Slot_1A0B6F78403E0FDA65FEEDA8726814DD; // 0x03A8(0x0068) struct FAnimNode_SequenceEvaluator AnimGraphNode_SequenceEvaluator_82701F594269FA858317FEB806DD55FD;// 0x0410(0x0070) static UClass* StaticClass() { static auto ptr = UObject::FindObject<UClass>("AnimBlueprintGeneratedClass ABP_GrenadeLauncher_A.ABP_GrenadeLauncher_A_C"); return ptr; } void ExecuteUbergraph_ABP_GrenadeLauncher_A(int EntryPoint); }; } #ifdef _MSC_VER #pragma pack(pop) #endif
[ "igromanru@yahoo.de" ]
igromanru@yahoo.de
1a1715db7544e02c6266ab639c80253ffd49825d
84e94a062767cd434ba1c63d47cf1802b6ac14b6
/src/Trace.cpp
92eea6486f64ef1a8cba5b3c1472edfb809898e1
[]
no_license
jiac5/SEGY_LOADER
7e0b2fb5bd5c66d2946a7577456173a81e95d19b
96682f0448009e3930508e7b33bdfcf18924cae4
refs/heads/master
2021-01-19T08:37:58.379235
2015-09-03T14:01:11
2015-09-03T14:01:11
37,612,077
5
1
null
2016-11-14T19:41:38
2015-06-17T18:09:28
C++
UTF-8
C++
false
false
60
cpp
// // Created by jia chen on 8/3/15. // #include "Trace.h"
[ "jiac5@uci.edu" ]
jiac5@uci.edu
31e4b239b81a3d4732569bc25beae7fd976a14ee
3966bdaa82deff3f5007ce8e5ca0c7b81fbc3e81
/hackerrank/yfkpo3-2/median-permutation.cpp
6ba9ac0388cc88f28537f7ff1c5d7530af59076e
[]
no_license
sogapalag/contest
be955b61af67f1c104862e10ed51da9cea596016
c1a2a8268d269c559d937148e7c7fa8c236a61ad
refs/heads/master
2023-03-18T04:51:39.882314
2021-03-08T00:16:04
2021-03-08T00:16:04
null
0
0
null
null
null
null
UTF-8
C++
false
false
821
cpp
#include <algorithm> #include <cassert> #include <cctype> #include <cmath> #include <cstdio> #include <cstdlib> #include <ctime> #include <deque> #include <functional> #include <iomanip> #include <iostream> #include <list> #include <map> #include <queue> #include <random> #include <set> #include <sstream> #include <string> #include <utility> #include <vector> #define REP(i,s,n) for(int i=(int)(s);i<(int)(n);i++) #define DEBUGP(val) cerr << #val << "=" << val << "\n" using namespace std; typedef long long int ll; typedef vector<int> VI; typedef vector<ll> VL; typedef pair<int, int> PI; const ll mod = 1e9 + 7; int main(void) { ios::sync_with_stdio(false); cin.tie(0); int n; cin >> n; ll a = 1; if (n % 2) n--; while (n > 0) { a = a * n % 1000000007LL; n -= 2; } cout << a << endl; }
[ "3303362+koba-e964@users.noreply.github.com" ]
3303362+koba-e964@users.noreply.github.com
4466badea5027f66986c5c2f64899b7d724141ee
208ac6bb8a2f9b78c6afa15d255814200733de59
/BOJ/boj14502_연구소_다시품.cpp
1a47355b405de00a6d346878b608d6766d13a75b
[]
no_license
yagee97/algorithm
2832e976b13df6a431c1a02aab400a943b099bd0
f40918e810fee1d5f78894461e9b5c4b9cf61fe2
refs/heads/master
2021-06-05T12:27:43.911932
2020-07-25T14:19:48
2020-07-25T14:19:48
140,398,432
0
1
null
null
null
null
UHC
C++
false
false
1,520
cpp
#include <iostream> #include <vector> #include <queue> using namespace std; int n, m; int map[8][8]; int dx[] = { 1,0,-1,0 }; int dy[] = { 0,1,0,-1 }; int MAX = 0; typedef struct { int x; int y; }pos; vector<pos> virus; void mapcopy(int map[8][8], int new_map[8][8]) { for (int i = 0; i < n; i++) { for (int j = 0; j < m; j++) { new_map[i][j] = map[i][j]; } } } void spread() { int virus[8][8]; queue<pos> q; mapcopy(map, virus); //virus 위치 queue에 for (int i = 0; i < n; i++) { for (int j = 0; j < m; j++) { if (virus[i][j] == 2) { q.push({ i,j }); } } } while (!q.empty()) { int x = q.front().x; int y = q.front().y; q.pop(); for (int i = 0; i < 4; i++) { int nx = x + dx[i]; int ny = y + dy[i]; if (nx >= n || ny >= m || nx < 0 || ny < 0) continue; if (virus[nx][ny] == 0) { virus[nx][ny] = 2; q.push({ nx,ny }); } } } int ans = 0; for (int i = 0; i < n; i++) { for (int j = 0; j < m; j++) { if (virus[i][j] == 0) { ans++; } } } //최대 안전영역 if (MAX < ans) { MAX = ans; } } void dfs(int cnt) { //벽 3개 세우면 spread() if (cnt == 3) { spread(); return; } for (int i = 0; i < n; i++) { for (int j = 0; j < m; j++) { if (map[i][j] == 0) { map[i][j] = 1;//벽세우기 dfs(cnt + 1); map[i][j] = 0; } } } } int main() { cin >> n >> m; //input for (int i = 0; i < n; i++) { for (int j = 0; j < m; j++) { cin >> map[i][j]; } } dfs(0); cout << MAX << "\n"; }
[ "yagee97@naver.com" ]
yagee97@naver.com
13c2fc4436afe2a6373b6d495fad761976710f05
afb18aff8c308ef76c735cd8d04cb700655a47a8
/src/lbl/tests/train_maxent_sgd_test.cc
639ddcfa91dbb2ee5a89ff27a1fd47a7a0fe6f85
[]
no_license
se4u/OxLM
73282e0957a2f734e65249bd30da65687ba26604
b952053cd956f69aed599c3aca776c8429fbf855
refs/heads/master
2021-01-15T18:45:20.532391
2015-03-21T21:50:06
2015-03-21T21:50:06
32,604,862
0
0
null
2015-03-20T20:17:27
2015-03-20T20:17:25
null
UTF-8
C++
false
false
2,504
cc
#include "gtest/gtest.h" #include "lbl/factored_maxent_metadata.h" #include "lbl/global_factored_maxent_weights.h" #include "lbl/minibatch_factored_maxent_weights.h" #include "lbl/model.h" #include "lbl/model_utils.h" #include "lbl/tests/sgd_test.h" #include "utils/constants.h" namespace oxlm { class MaxentSGDTest : public FactoredSGDTest { protected: void SetUp() { FactoredSGDTest::SetUp(); config->l2_maxent = 0.1; config->feature_context_size = 3; } }; TEST_F(MaxentSGDTest, TestTrainMaxentSGDSparseFeatures) { FactoredMaxentLM model(config); model.learn(); config->test_file = "test.en"; boost::shared_ptr<Vocabulary> vocab = model.getVocab(); boost::shared_ptr<Corpus> test_corpus = readTestCorpus(config, vocab); Real log_likelihood = 0; model.evaluate(test_corpus, log_likelihood); EXPECT_NEAR(56.5158233, perplexity(log_likelihood, test_corpus->size()), EPS); } TEST_F(MaxentSGDTest, TestTrainMaxentSGDCollisions) { config->hash_space = 1000000; FactoredMaxentLM model(config); model.learn(); config->test_file = "test.en"; boost::shared_ptr<Vocabulary> vocab = model.getVocab(); boost::shared_ptr<Corpus> test_corpus = readTestCorpus(config, vocab); Real log_likelihood = 0; model.evaluate(test_corpus, log_likelihood); EXPECT_NEAR(54.0808258, perplexity(log_likelihood, test_corpus->size()), EPS); } TEST_F(MaxentSGDTest, TestTrainMaxentSGDExactFiltering) { config->hash_space = 1000000; config->filter_contexts = true; FactoredMaxentLM model(config); model.learn(); config->test_file = "test.en"; boost::shared_ptr<Vocabulary> vocab = model.getVocab(); boost::shared_ptr<Corpus> test_corpus = readTestCorpus(config, vocab); Real log_likelihood = 0; model.evaluate(test_corpus, log_likelihood); EXPECT_NEAR(56.5224494, perplexity(log_likelihood, test_corpus->size()), EPS); } TEST_F(MaxentSGDTest, TestTrainMaxentSGDApproximateFiltering) { config->hash_space = 1000000; config->filter_contexts = true; config->filter_error_rate = 0.01; Model<GlobalFactoredMaxentWeights, MinibatchFactoredMaxentWeights, FactoredMaxentMetadata> model(config); model.learn(); config->test_file = "test.en"; boost::shared_ptr<Vocabulary> vocab = model.getVocab(); boost::shared_ptr<Corpus> test_corpus = readTestCorpus(config, vocab); Real log_likelihood = 0; model.evaluate(test_corpus, log_likelihood); EXPECT_NEAR(56.4237861, perplexity(log_likelihood, test_corpus->size()), EPS); } } // namespace oxlm
[ "pauldb89@gmail.com" ]
pauldb89@gmail.com
2a3412bd9f2457f76c5a2a0e95cb76dc74e5a92e
cc1b10f69255ccb74171ee9aad8ab56214a29d36
/src/Interface/KeySelectionBox.cpp
9adb690adf527904d23beb5cc608dea25ec5464b
[]
no_license
Gouet/BomberMan
3726d51f9548120e8e21fdac2ea146cd8a7d6e11
70d6e842a9731e13a315336f0c41b72111093f3f
refs/heads/master
2021-01-13T06:29:14.724725
2016-09-19T14:47:17
2016-09-19T14:47:17
68,612,066
1
0
null
null
null
null
UTF-8
C++
false
false
5,557
cpp
// // Created by veyrie_f on 5/27/16. // #include <algorithm> #include "KeySelectionBox.hpp" #include "EventGame.hpp" #include "GameManager.hpp" KeySelectionBox::KeySelectionBox(UIManager *uiManager, irr::core::rect<irr::s32> pos, UIElement::Menu elemID, int playerID) : m_manager(uiManager), m_playerID(playerID) { m_controller = new KeysController(*std::next(EventGame::_keycodes.begin(), (playerID - 1) % 2)); CreateListBox(pos, elemID); } KeySelectionBox::KeySelectionBox(UIManager *uiManager, irr::core::rect<irr::s32> pos, UIElement::Menu elemID, int playerID, irr::SJoystickInfo info) : m_manager(uiManager), m_playerID(playerID) { m_controller = new MotionController(info); CreateListBox(pos, elemID); } KeySelectionBox::KeySelectionBox(UIManager *uiManager, irr::core::rect<irr::s32> pos, UIElement::Menu elemID, int playerID, AController const*controller) : m_manager(uiManager), m_playerID(playerID), m_controller(const_cast<AController*>(controller)) { CreateListBox(pos, elemID); } KeySelectionBox::~KeySelectionBox() { //delete(m_controller); } void KeySelectionBox::SelectNext() { if (m_keys.size() > 0) { std::rotate(m_keys.begin(), std::next(m_keys.begin(), 1), m_keys.end()); } else if (m_motions.size() > 0) { std::rotate(m_motions.begin(), std::next(m_motions.begin(), 1), m_motions.end()); } Update(); } void KeySelectionBox::SelectPrev() { if (m_keys.size() > 0) { std::rotate(m_keys.begin(), std::prev(m_keys.end(), 1), m_keys.end()); } else if (m_motions.size() > 0) { std::rotate(m_motions.begin(), std::prev(m_motions.end(), 1), m_motions.end()); } Update(); } void KeySelectionBox::Update() { if (m_keys.size() > 0) m_listBox->setSelected(GameManager::ToWstring(m_keys.front().ToString()).c_str()); else if (m_motions.size() > 0) m_listBox->setSelected(GameManager::ToWstring(m_motions.front().ToString()).c_str()); } void KeySelectionBox::SetActive(bool bActive) const { m_listBox->setVisible(bActive); m_background->setVisible(bActive); } void KeySelectionBox::CreateListBox(irr::core::rect<irr::s32> pos, UIElement::Menu elemID) { m_background = m_manager->GetEnv()->addImage(pos); m_background->setImage(IrrlichtController::getDriver()->getTexture(BomberManTexture::getModel("KeyBindBg").texture.c_str())); m_background->setScaleImage(true); pos.UpperLeftCorner.Y += (pos.LowerRightCorner.Y - pos.UpperLeftCorner.Y) * 0.5f; pos.UpperLeftCorner.X += 50; pos.LowerRightCorner.X -= 50; pos.LowerRightCorner.Y -= 90; m_listBox = m_manager->GetEnv()->addListBox(pos, nullptr, elemID, true); m_listBox->setDrawBackground(false); UpdateElements(); } bool KeySelectionBox::IsActive() const { return m_listBox->isVisible(); } void KeySelectionBox::OnSelect() { if (!m_isSelecting) { m_isSelecting = true; m_listBox->setItemOverrideColor(m_listBox->getSelected(), irr::video::SColor(255, 255, 0, 0)); } } void KeySelectionBox::UpdateElements() { bool isFirst = true; m_listBox->clear(); KeysController *k = dynamic_cast<KeysController*>(m_controller); if (k != nullptr) { m_keys = k->ToString(); for (std::vector<KeyInfo<irr::EKEY_CODE> >::iterator it = m_keys.begin(); it != m_keys.end(); ++it) { if (isFirst) { isFirst = false; m_listBox->setSelected(m_listBox->addItem(GameManager::ToWstring((*it).ToString()).c_str())); } else { m_listBox->addItem(GameManager::ToWstring((*it).ToString()).c_str()); } } } MotionController *m = dynamic_cast<MotionController*>(m_controller); if (m != nullptr) { m_motions = m->ToString(); for (std::vector<KeyInfo<MotionController::ControllerKey> >::iterator it = m_motions.begin(); it != m_motions.end(); ++it) { if (isFirst) { isFirst = false; m_listBox->setSelected(m_listBox->addItem(GameManager::ToWstring((*it).ToString()).c_str())); } else { m_listBox->addItem(GameManager::ToWstring((*it).ToString()).c_str()); } } } } void KeySelectionBox::OnKeyPress(irr::EKEY_CODE key) { if (m_isSelecting) { m_isSelecting = false; m_listBox->setItemOverrideColor(m_listBox->getSelected(), irr::video::SColor(255, 0, 0, 0)); KeysController *k; if ((k = dynamic_cast<KeysController*>(m_controller)) != nullptr) { k->BindAction(m_keys.front().GetAction(), key); } UpdateElements(); } } void KeySelectionBox::OnKeyPress(irr::u32 key) { if (m_isSelecting && key != 0 && key != MotionController::ControllerKey::L2) { m_isSelecting = false; m_listBox->setItemOverrideColor(m_listBox->getSelected(), irr::video::SColor(255, 0, 0, 0)); MotionController *m; if ((m = dynamic_cast<MotionController*>(m_controller)) != nullptr) { m->BindAction(m_motions.front().GetAction(), static_cast<MotionController::ControllerKey>(key)); } UpdateElements(); } } bool KeySelectionBox::IsSelecting() const { return m_isSelecting; }
[ "Victor@MacBook-Pro-de-Victor-2.local" ]
Victor@MacBook-Pro-de-Victor-2.local
2239910164b6d2db82f0823e1bff4cab638999d5
67f988dedfd8ae049d982d1a8213bb83233d90de
/external/chromium/chrome/browser/ui/webui/options/options_ui.h
0b5e3d644e52680bbd2d3902f852ee10ba359664
[ "BSD-3-Clause" ]
permissive
opensourceyouthprogramming/h5vcc
94a668a9384cc3096a365396b5e4d1d3e02aacc4
d55d074539ba4555e69e9b9a41e5deb9b9d26c5b
refs/heads/master
2020-04-20T04:57:47.419922
2019-02-12T00:56:14
2019-02-12T00:56:14
168,643,719
1
1
null
2019-02-12T00:49:49
2019-02-01T04:47:32
C++
UTF-8
C++
false
false
5,272
h
// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_UI_WEBUI_OPTIONS_OPTIONS_UI_H_ #define CHROME_BROWSER_UI_WEBUI_OPTIONS_OPTIONS_UI_H_ #include <string> #include <vector> #include "base/compiler_specific.h" #include "base/memory/scoped_ptr.h" #include "chrome/browser/ui/webui/chrome_url_data_manager.h" #include "content/public/browser/notification_observer.h" #include "content/public/browser/notification_registrar.h" #include "content/public/browser/notification_types.h" #include "content/public/browser/web_ui_controller.h" #include "content/public/browser/web_ui_message_handler.h" #include "ui/base/layout.h" class AutocompleteResult; namespace base { class DictionaryValue; class ListValue; } #if defined(OS_CHROMEOS) namespace chromeos { namespace system { class PointerDeviceObserver; } // namespace system } // namespace chromeos #endif namespace options { // The base class handler of Javascript messages of options pages. class OptionsPageUIHandler : public content::WebUIMessageHandler, public content::NotificationObserver { public: // Key for identifying the Settings App localized_strings in loadTimeData. static const char kSettingsAppKey[]; OptionsPageUIHandler(); virtual ~OptionsPageUIHandler(); // Is this handler enabled? virtual bool IsEnabled(); // Collects localized strings for options page. virtual void GetLocalizedValues(base::DictionaryValue* localized_strings) = 0; virtual void PageLoadStarted() {} // Will be called only once in the life time of the handler. Generally used to // add observers, initializes preferences, or start asynchronous calls from // various services. virtual void InitializeHandler() {} // Initialize the page. Called once the DOM is available for manipulation. // This will be called when a RenderView is re-used (when navigated to with // back/forward or session restored in some cases) or when created. virtual void InitializePage() {} // Uninitializes the page. Called just before the object is destructed. virtual void Uninitialize() {} // WebUIMessageHandler implementation. virtual void RegisterMessages() OVERRIDE {} // content::NotificationObserver implementation. virtual void Observe(int type, const content::NotificationSource& source, const content::NotificationDetails& details) OVERRIDE {} protected: struct OptionsStringResource { // The name of the resource in templateData. const char* name; // The .grd ID for the resource (IDS_*). int id; // The .grd ID of the string to replace $1 in |id|'s string. If zero or // omitted (default initialized), no substitution is attempted. int substitution_id; }; // A helper to simplify string registration in WebUI for strings which do not // change at runtime and optionally contain a single substitution. static void RegisterStrings(base::DictionaryValue* localized_strings, const OptionsStringResource* resources, size_t length); // Registers string resources for a page's header and tab title. static void RegisterTitle(base::DictionaryValue* localized_strings, const std::string& variable_name, int title_id); content::NotificationRegistrar registrar_; private: DISALLOW_COPY_AND_ASSIGN(OptionsPageUIHandler); }; // An interface for common operations that a host of OptionsPageUIHandlers // should provide. class OptionsPageUIHandlerHost { public: virtual void InitializeHandlers() = 0; protected: virtual ~OptionsPageUIHandlerHost() {} }; // The WebUI for chrome:settings-frame. class OptionsUI : public content::WebUIController, public OptionsPageUIHandlerHost { public: explicit OptionsUI(content::WebUI* web_ui); virtual ~OptionsUI(); // Takes the suggestions from |result| and adds them to |suggestions| so that // they can be passed to a JavaScript function. static void ProcessAutocompleteSuggestions( const AutocompleteResult& result, base::ListValue* const suggestions); static base::RefCountedMemory* GetFaviconResourceBytes( ui::ScaleFactor scale_factor); // Overridden from OptionsPageUIHandlerHost: virtual void InitializeHandlers() OVERRIDE; // Overridden from content::WebUIController: virtual void RenderViewCreated(content::RenderViewHost* render_view_host) OVERRIDE; virtual void RenderViewReused(content::RenderViewHost* render_view_host) OVERRIDE; private: // Adds OptionsPageUiHandler to the handlers list if handler is enabled. void AddOptionsPageUIHandler(base::DictionaryValue* localized_strings, OptionsPageUIHandler* handler); bool initialized_handlers_; std::vector<OptionsPageUIHandler*> handlers_; #if defined(OS_CHROMEOS) scoped_ptr<chromeos::system::PointerDeviceObserver> pointer_device_observer_; #endif DISALLOW_COPY_AND_ASSIGN(OptionsUI); }; } // namespace options #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_OPTIONS_UI_H_
[ "rjogrady@google.com" ]
rjogrady@google.com
8589d465b06978ccdcb4622418dd62133f78dd6f
759f8211829010ea3ee6cb9b83626a839e2c0d6c
/project_2/code/BpTree.cpp
28e8e835c7eaa377ea9965210c8efb54d00be34b
[]
no_license
kwhyo/DS_assignment
660b84f6707cc91b973cedc22df44135809f0912
f64c9b2b708b84ed6f71914889389a941fa2ffe1
refs/heads/main
2023-02-06T05:49:43.793797
2020-12-16T14:53:05
2020-12-16T14:53:05
321,723,997
0
0
null
null
null
null
UHC
C++
false
false
11,113
cpp
#include "BpTree.h" BpTree::BpTree(ofstream* fout, int order){ root = NULL; this->order = order; //order는 가리킬 수 있는 자식 수 pointer개수! this->fout = fout; } BpTree::~BpTree(){ } void BpTree::Insert(StockData* pSto){ double key = pSto->getEarning(); // key = Earning vector<pair<int, StockData*> > value; // value = map< id, stock data* > value.push_back( make_pair(pSto->getStockID(), pSto) ); if(root == NULL){ // empty B+ tree BpTreeNode* pDataNode = new BpTreeDataNode; pDataNode->insertDataMap(key, value); //수익률, id, data 삽입 pDataNode->setParent(NULL); pDataNode->setMostLeftChild(NULL); pDataNode->setPrev(NULL); pDataNode->setNext(NULL); root = pDataNode; return; } else { BpTreeNode* p = root; map <double, BpTreeNode*> ::iterator it; /*같은 수익률 처리*/ if (searchDataNode(key)->getDataMap()->find(key) != searchDataNode(key)->getDataMap()->end()) { searchDataNode(key)->getDataMap()->find(key)->second.push_back(make_pair(pSto->getStockID(), pSto)); sort(searchDataNode(key)->getDataMap()->find(key)->second.begin(), searchDataNode(key)->getDataMap()->find(key)->second.end()); return; } while (p->getMostLeftChild() != NULL) //p : data node { for (it = p->getIndexMap()->begin(); it != p->getIndexMap()->end(); it++) { if (key < p->getIndexMap()->begin()->first) { p = p->getMostLeftChild(); break; } if (key < it->first) //key가 맵이가진 수익률보다 크면 p는 맵이 가리키는 포인터로 { it--; p = it->second; break; } if (key > it->first&&++it == p->getIndexMap()->end()) { it--; p = it->second; break; } else it--; } } p->insertDataMap(key, value); // 먼저 insert를 한다. if (exceedDataNode(p) == true) //넘친 경우->스플릿 { splitDataNode(p); } } BpTreeNode* pDataNode = searchDataNode(key); // seach data node with key map<double, vector<pair<int, StockData*> > > *m = pDataNode->getDataMap(); /* 코드 작성 (참고: if(m->find(key) == m->end())) */ } BpTreeNode* BpTree::searchDataNode(double n) //들어갈 위치 찾는 함수 { BpTreeNode* pCur = root; map<double, BpTreeNode*>::iterator itIndex; while(pCur->getMostLeftChild() != NULL) //데이터 노드까지 { itIndex = pCur->getIndexMap()->begin(); //index는 pCur의 처음 if(n < itIndex->first) //만약 찾는 수가 index보다 작으면 { pCur = pCur->getMostLeftChild(); //가장왼쪽자식으로 내려감 } else{ while(true) { itIndex++; //노드의 다음 수익률로 이동 if(itIndex == pCur->getIndexMap()->end() || n < itIndex->first) //끝 노드 이거나 index값보다 입력이 작다 { itIndex--; //이전 index의 pCur = itIndex->second; //자식으로 내려감 break; } } } } return pCur; } void BpTree::splitDataNode(BpTreeNode* pDataNode){ int splitPosition_data = ceil((order-1)/2.0) + 1; //map에서 split position 번째 데이터를 인덱스로 보낸다. BpTreeNode* newDataNode = new BpTreeDataNode; map <double, vector<pair<int, StockData*> > > ::iterator up_data; map <double, vector<pair<int, StockData*> > > ::iterator it; int i = 1; /*올릴 데이터 찾기*/ for (it = pDataNode->getDataMap()->begin(); it != pDataNode->getDataMap()->end(); it++) { if (i == splitPosition_data) { up_data = it; } if (i >= splitPosition_data) { newDataNode->insertDataMap(it->first, it->second); } i++; } map <double, vector<pair<int, StockData*> > > *m; m = pDataNode->getDataMap(); newDataNode->setNext(pDataNode->getNext()); if(pDataNode->getNext()!=NULL) pDataNode->getNext()->setPrev(newDataNode); newDataNode->setPrev(pDataNode); pDataNode->setNext(newDataNode); //자른 것(up_data) 기준으로 자른것포함 오른쪽에 있는 것 모두 다른 파티션으로 이동시켜야함 if (pDataNode->getParent() == NULL)//p data노드가 root일때 { BpTreeNode* newindexnode = new BpTreeIndexNode; newindexnode->insertIndexMap(up_data->first, newDataNode); m->erase(pDataNode->getDataMap()->find(up_data->first), pDataNode->getDataMap()->end()); pDataNode->setParent(newindexnode); newDataNode->setParent(newindexnode); newindexnode->setMostLeftChild(pDataNode); root = newindexnode; return; } else //root가 아닐때 { pDataNode->getParent()->insertIndexMap(up_data->first, newDataNode); BpTreeNode * indexNode = pDataNode->getParent(); m = pDataNode->getDataMap(); m->erase(pDataNode->getDataMap()->find(up_data->first), pDataNode->getDataMap()->end()); newDataNode->setParent(pDataNode->getParent()); //수정해야할수있다.! if (exceedIndexNode(indexNode) == true) // 만약 인덱스 노드도 넘쳤다면 { splitIndexNode(indexNode); //스플릿을 하자 } } } void BpTree::splitIndexNode(BpTreeNode* pIndexNode){ int splitPosition_index = ceil(order/2.0); //map에서 split position 번째 데이터를 부모노드로 이동한다. if (pIndexNode == root) { BpTreeNode* newroot = new BpTreeIndexNode; //새로 올라간 루트 BpTreeNode* newIndexNode = new BpTreeIndexNode; //새로 분리된 인덱스 노드 map <double, BpTreeNode*> ::iterator up_data; map <double, BpTreeNode*> ::iterator it; int i = 1; for (it = pIndexNode->getIndexMap()->begin(); it != pIndexNode->getIndexMap()->end(); it++) { if (i == splitPosition_index) { up_data = it; } if (i > splitPosition_index) { newIndexNode->insertIndexMap(it->first, it->second); it->second->setParent(newIndexNode); } i++; } newIndexNode->setMostLeftChild(up_data->second); up_data->second->setParent(newIndexNode); up_data->second = newIndexNode;//포인터설정 newroot->insertIndexMap(up_data->first, up_data->second); map <double, BpTreeNode*>* mm = pIndexNode->getIndexMap(); mm->erase(pIndexNode->getIndexMap()->find(up_data->first), pIndexNode->getIndexMap()->end()); root = newroot; root->setParent(NULL); newroot->setMostLeftChild(pIndexNode); pIndexNode->setParent(newroot); newIndexNode->setParent(newroot); return; } /*루트가 아닐 경우*/ BpTreeNode* newindexnode = new BpTreeIndexNode; map <double, BpTreeNode*> ::iterator up_data; map <double, BpTreeNode*> ::iterator it; int i = 1; for (it = pIndexNode->getIndexMap()->begin(); it != pIndexNode->getIndexMap()->end(); it++) { if (i == splitPosition_index) { up_data = it; } if (i > splitPosition_index) { newindexnode->insertIndexMap(it->first, it->second); pIndexNode->getIndexMap()->find(it->first)->second->setParent(newindexnode); } i++; } newindexnode->setMostLeftChild(up_data->second); pIndexNode->getIndexMap()->find(up_data->first)->second->setParent(newindexnode); up_data->second = newindexnode;//포인터설정 map <double, BpTreeNode*>* mm = pIndexNode->getIndexMap(); pIndexNode->getParent()->insertIndexMap(up_data->first, up_data->second); //올릴 데이터 삽입 mm->erase(pIndexNode->getIndexMap()->find(up_data->first), pIndexNode->getIndexMap()->end()); newindexnode->setParent(pIndexNode->getParent()); if (exceedIndexNode(pIndexNode->getParent()) == true) splitIndexNode(pIndexNode->getParent()); } bool BpTree::exceedDataNode(BpTreeNode* pDataNode){ map <double, vector<pair<int, StockData*> > > *m = pDataNode->getDataMap(); if(m->size() > order-1) return true; //미리 그냥 데이터 넣고 ->데이터가 넘쳤다 -> 스플릿해라. else return false; } bool BpTree::exceedIndexNode(BpTreeNode* pIndexNode){ map <double, BpTreeNode*>* m = pIndexNode->getIndexMap(); if(m->size() > order-1) return true; else return false; } bool BpTree::Print(){ if (root == NULL) return false; BpTreeNode * p = root; map <double, BpTreeNode*> ::iterator it; /*가장 오른쪽 말단 노드로 이동*/ while (p->getMostLeftChild() != NULL) //p : data node { for (it = p->getIndexMap()->begin(); it != p->getIndexMap()->end(); it++) { if (++it == p->getIndexMap()->end()) { it--; p = it->second; break; } else it--; } } p = it->second; *fout << "==================== PRINT ===================== " << endl; while(p != NULL) { moving_and_print(p); p = p->getPrev(); } *fout << "==============================================" << endl<<endl; return true; } bool BpTree::Search(double a, double b){ if (root == NULL) return false; BpTreeNode * p = root; map <double, BpTreeNode*> ::iterator it; /*가장 오른쪽 말단 노드로 이동*/ while (p->getMostLeftChild() != NULL) //p : data node { for (it = p->getIndexMap()->begin(); it != p->getIndexMap()->end(); it++) { if (++it == p->getIndexMap()->end()) { it--; p = it->second; break; } else it--; } } p = it->second; int check = 0; while (p != NULL) { moving_and_print2(p,a,b,check); p = p->getPrev(); } if (check > 0) { *fout << "=====================" << endl << endl; return true; } else return false; } void BpTree::moving_and_print2(BpTreeNode * p, double a, double b,int &check) { map <double, vector<pair<int, StockData*> > > ::iterator iter; /*말단 노드의 가장 오른쪽 : iter*/ for (iter = p->getDataMap()->begin(); iter != p->getDataMap()->end(); iter++) { if (++iter == p->getDataMap()->end()) { iter--; break; } else iter--; } for (int i = 0; i<p->getDataMap()->size(); i++) { if (iter->first >= a&&iter->first <= b) { vector<pair<int, StockData*> > ::iterator Vector = iter->second.begin(); while (Vector != iter->second.end()) { if (check == 0) { *fout << "======= SEARCH ======= " << endl; check++; } printStockInfo(Vector->second); Vector++; } } iter--; } } void BpTree::moving_and_print(BpTreeNode * p) { map <double, vector<pair<int, StockData*> > > ::iterator iter; /*말단 노드의 가장 오른쪽 : iter*/ for (iter = p->getDataMap()->begin(); iter != p->getDataMap()->end(); iter++) { if (++iter == p->getDataMap()->end()) { iter--; break; } else iter--; } for (int i = 0; i<p->getDataMap()->size(); i++) { vector<pair<int, StockData*> > ::iterator Vector = iter->second.begin(); while (Vector != iter->second.end()) { printStockInfo(Vector->second); Vector++; } iter--; } } void BpTree::printStockInfo(StockData* pStockData) { *fout << pStockData->getStockID() << " " << pStockData->getName() << " "; fout->setf(ios::fixed); fout->precision(2); *fout << pStockData->getEarning() << endl; fout->unsetf(ios::fixed); *fout << "시가: " << pStockData->getOpening_Price() << endl; *fout << "종가: " << pStockData->getClosing_Price() << endl; *fout << "거래량: " << pStockData->getVolume() << endl; *fout << "수익률: "; fout->setf(ios::fixed); fout->precision(2); *fout << pStockData->getEarning() << endl << endl << endl; fout->unsetf(ios::fixed); }
[ "rkgmlgygml@naver.com" ]
rkgmlgygml@naver.com
dad63682f5f513a4def1cd570047536c06d457cf
17198f70b67390e2b6fa30dfda47909e7d26a59b
/src/libzerocoin/CoinSpend.cpp
a054bc102573781ac6f4c520c1b077138955ed91
[ "MIT" ]
permissive
HighStakesCoin/HighStakes
9d3fd09ce623167d79e100568adea70106efc239
e842f55f7ce6f8df09aea157012a68958b366a90
refs/heads/master
2020-05-04T15:47:57.812490
2019-07-26T07:18:42
2019-07-26T07:18:42
179,256,859
3
3
null
null
null
null
UTF-8
C++
false
false
7,320
cpp
/** * @file CoinSpend.cpp * * @brief CoinSpend class for the Zerocoin library. * * @author Ian Miers, Christina Garman and Matthew Green * @date June 2013 * * @copyright Copyright 2013 Ian Miers, Christina Garman and Matthew Green * @license This project is released under the MIT license. **/ // Copyright (c) 2017-2018 The PIVX developers // Copyright (c) 2019 The HighStakes developers #include "CoinSpend.h" #include <iostream> #include <sstream> namespace libzerocoin { CoinSpend::CoinSpend(const ZerocoinParams* paramsCoin, const ZerocoinParams* paramsAcc, const PrivateCoin& coin, Accumulator& a, const uint32_t& checksum, const AccumulatorWitness& witness, const uint256& ptxHash, const SpendType& spendType) : accChecksum(checksum), ptxHash(ptxHash), coinSerialNumber((coin.getSerialNumber())), accumulatorPoK(&paramsAcc->accumulatorParams), serialNumberSoK(paramsCoin), commitmentPoK(&paramsCoin->serialNumberSoKCommitmentGroup, &paramsAcc->accumulatorParams.accumulatorPoKCommitmentGroup), spendType(spendType) { denomination = coin.getPublicCoin().getDenomination(); version = coin.getVersion(); if (!static_cast<int>(version)) //todo: figure out why version does not make it here version = 1; // Sanity check: let's verify that the Witness is valid with respect to // the coin and Accumulator provided. if (!(witness.VerifyWitness(a, coin.getPublicCoin()))) { //std::cout << "CoinSpend: Accumulator witness does not verify\n"; throw std::runtime_error("Accumulator witness does not verify"); } // 1: Generate two separate commitments to the public coin (C), each under // a different set of public parameters. We do this because the RSA accumulator // has specific requirements for the commitment parameters that are not // compatible with the group we use for the serial number proof. // Specifically, our serial number proof requires the order of the commitment group // to be the same as the modulus of the upper group. The Accumulator proof requires a // group with a significantly larger order. const Commitment fullCommitmentToCoinUnderSerialParams(&paramsCoin->serialNumberSoKCommitmentGroup, coin.getPublicCoin().getValue()); this->serialCommitmentToCoinValue = fullCommitmentToCoinUnderSerialParams.getCommitmentValue(); const Commitment fullCommitmentToCoinUnderAccParams(&paramsAcc->accumulatorParams.accumulatorPoKCommitmentGroup, coin.getPublicCoin().getValue()); this->accCommitmentToCoinValue = fullCommitmentToCoinUnderAccParams.getCommitmentValue(); // 2. Generate a ZK proof that the two commitments contain the same public coin. this->commitmentPoK = CommitmentProofOfKnowledge(&paramsCoin->serialNumberSoKCommitmentGroup, &paramsAcc->accumulatorParams.accumulatorPoKCommitmentGroup, fullCommitmentToCoinUnderSerialParams, fullCommitmentToCoinUnderAccParams); // Now generate the two core ZK proofs: // 3. Proves that the committed public coin is in the Accumulator (PoK of "witness") this->accumulatorPoK = AccumulatorProofOfKnowledge(&paramsAcc->accumulatorParams, fullCommitmentToCoinUnderAccParams, witness, a); // 4. Proves that the coin is correct w.r.t. serial number and hidden coin secret // (This proof is bound to the coin 'metadata', i.e., transaction hash) uint256 hashSig = signatureHash(); this->serialNumberSoK = SerialNumberSignatureOfKnowledge(paramsCoin, coin, fullCommitmentToCoinUnderSerialParams, hashSig); // 5. Sign the transaction using the private key associated with the serial number if (version >= PrivateCoin::PUBKEY_VERSION) { this->pubkey = coin.getPubKey(); if (!coin.sign(hashSig, this->vchSig)) throw std::runtime_error("Coinspend failed to sign signature hash"); } } bool CoinSpend::Verify(const Accumulator& a) const { // Double check that the version is the same as marked in the serial if (ExtractVersionFromSerial(coinSerialNumber) != version) { //cout << "CoinSpend::Verify: version does not match serial=" << (int)ExtractVersionFromSerial(coinSerialNumber) << " actual=" << (int)version << endl; return false; } if (a.getDenomination() != this->denomination) { //std::cout << "CoinsSpend::Verify: failed, denominations do not match\n"; return false; } // Verify both of the sub-proofs using the given meta-data if (!commitmentPoK.Verify(serialCommitmentToCoinValue, accCommitmentToCoinValue)) { //std::cout << "CoinsSpend::Verify: commitmentPoK failed\n"; return false; } if (!accumulatorPoK.Verify(a, accCommitmentToCoinValue)) { //std::cout << "CoinsSpend::Verify: accumulatorPoK failed\n"; return false; } if (!serialNumberSoK.Verify(coinSerialNumber, serialCommitmentToCoinValue, signatureHash())) { //std::cout << "CoinsSpend::Verify: serialNumberSoK failed. sighash:" << signatureHash().GetHex() << "\n"; return false; } return true; } const uint256 CoinSpend::signatureHash() const { CHashWriter h(0, 0); h << serialCommitmentToCoinValue << accCommitmentToCoinValue << commitmentPoK << accumulatorPoK << ptxHash << coinSerialNumber << accChecksum << denomination; if (version >= PrivateCoin::PUBKEY_VERSION) h << spendType; return h.GetHash(); } std::string CoinSpend::ToString() const { std::stringstream ss; ss << "CoinSpend:\n version=" << (int)version << " signatureHash=" << signatureHash().GetHex() << " spendtype=" << spendType << "\n"; return ss.str(); } bool CoinSpend::HasValidSerial(ZerocoinParams* params) const { return IsValidSerial(params, coinSerialNumber); } //Additional verification layer that requires the spend be signed by the private key associated with the serial bool CoinSpend::HasValidSignature() const { //No private key for V1 if (version < PrivateCoin::PUBKEY_VERSION) return true; //V2 serial requires that the signature hash be signed by the public key associated with the serial uint256 hashedPubkey = Hash(pubkey.begin(), pubkey.end()) >> PrivateCoin::V2_BITSHIFT; if (hashedPubkey != GetAdjustedSerial(coinSerialNumber).getuint256()) { //cout << "CoinSpend::HasValidSignature() hashedpubkey is not equal to the serial!\n"; return false; } return pubkey.Verify(signatureHash(), vchSig); } CBigNum CoinSpend::CalculateValidSerial(ZerocoinParams* params) { CBigNum bnSerial = coinSerialNumber; bnSerial = bnSerial.mul_mod(CBigNum(1),params->coinCommitmentGroup.groupOrder); return bnSerial; } } /* namespace libzerocoin */
[ "48958686+HighStakesCoin@users.noreply.github.com" ]
48958686+HighStakesCoin@users.noreply.github.com
dbcb8c16a4fdf6e1b2d7e811e92b1f9576b92cc3
51fdfc8027d391d36c9ac2b3f917ce0999f7bc08
/flycapture_input_process.cxx
36e29aae168e9ee970ec5a8a33732d8b50dffebf
[]
no_license
hdefazio/Flycapture-Image-Reader
0f5f552f68154f645ffb86a1a7311ab0ae34d065
9fbe25173b1c19637aec383fc81221ee73fe336a
refs/heads/master
2020-04-20T21:39:02.396555
2019-02-22T14:43:11
2019-02-22T14:43:11
169,115,217
0
0
null
null
null
null
UTF-8
C++
false
false
10,471
cxx
#include "flycapture_input_process.h" #include <curses.h> #include <stdio.h> #include <stdlib.h> //#include <conio.h> #include <vital/vital_types.h> #include <vital/types/timestamp.h> //#include <vital/types/image_container.h> #include <arrows/ocv/image_container.h> #include <vital/types/image.h> #include <vital/algo/image_io.h> #include <vital/exceptions.h> #include <vital/util/data_stream_reader.h> #include <vital/util/tokenize.h> #include <opencv2/core/core.hpp> #include <kwiver_type_traits.h> #include <sprokit/pipeline/process_exception.h> #include <sprokit/pipeline/datum.h> #include <kwiversys/SystemTools.hxx> #include <vector> #include <stdint.h> #include <fstream> #include <iostream> #include <opencv2/highgui/highgui.hpp> using namespace cv; // -- DEBUG #if defined DEBUG #endif //+ TODO this process is obsoleted by the image_list_reader // implementation of the video_input algorithm namespace algo = kwiver::vital::algo; namespace kwiver { // (config-key, value-type, default-value, description ) create_config_trait( camera_serial, int, "15444951", "serial number of the camera" ); create_config_trait( frame_time, double, "3.0", "inter frame time in seconds"); //---------------------------------------------------------------- // Private implementation class class flycapture_input_process::priv { public: priv(); ~priv(); // Configuration values int m_config_camera_serial; kwiver::vital::time_usec_t m_config_frame_time; // process local data kwiver::vital::frame_id_t m_frame_number; kwiver::vital::time_usec_t m_frame_time; }; // end priv class // ================================================================ flycapture_input_process ::flycapture_input_process( kwiver::vital::config_block_sptr const& config ) : process( config ), d( new flycapture_input_process::priv ) { make_ports(); make_config(); } flycapture_input_process ::~flycapture_input_process() {} // ---------------------------------------------------------------- void flycapture_input_process ::_configure() { scoped_configure_instrumentation(); // Examine the configuration d->m_config_frame_time = config_value_using_trait( frame_time ) * 1e6; // in usec kwiver::vital::config_block_sptr algo_config = get_config(); // config for process } // ---------------------------------------------------------------- // Post connection initialization void flycapture_input_process ::_init() { scoped_init_instrumentation(); d->m_frame_number = 1; } // ---------------------------------------------------------------- void flycapture_input_process ::_step() { scoped_step_instrumentation(); int serial = 0; double frame_rate = d->m_config_frame_time/1e6; //fps std::cout << "frame rate: " << frame_rate << std::endl; FlyCapture2::BusManager busMgr; FlyCapture2::Error error; unsigned int numCameras; error = busMgr.GetNumOfCameras(&numCameras); if(error != PGRERROR_OK){ error.PrintErrorTrace(); return; } PGRGuid guid; if ( serial == 0 ){ error = busMgr.GetCameraFromIndex(0, &guid); if(error != PGRERROR_OK){ error.PrintErrorTrace(); return; } } else{ serial = d->m_config_camera_serial; error = busMgr.GetCameraFromSerialNumber(serial, &guid); if (error != PGRERROR_OK){ std::stringstream serial_string; serial_string << serial; std::string msg = "PointGreyCamera::connect Could not find camera with serial number: " + serial_string.str() + ". Is that camera plugged in?"; std::cerr << msg << std::endl; error.PrintErrorTrace(); return; } //end if } //end else if Camera cam; error = cam.Connect(&guid); if(error != PGRERROR_OK){ error.PrintErrorTrace(); return; } CameraInfo camInfo; error = cam.GetCameraInfo(&camInfo); if(error != PGRERROR_OK){ error.PrintErrorTrace(); return; } //std::cout << "DEBUG -- printing camera info" << std::endl; CameraInfo* pCamInfo = &camInfo; std::cout << std::endl; std::cout << "*** CAMERA INFORMATION ***" << std::endl; std::cout << "Serial number -" << pCamInfo->serialNumber << std::endl; std::cout << "Camera model - " << pCamInfo->modelName << std::endl; std::cout << "Camera vendor - " << pCamInfo->vendorName << std::endl; std::cout << "Sensor - " << pCamInfo->sensorInfo << std::endl; std::cout << "Resolution - " << pCamInfo->sensorResolution << std::endl; std::cout << "Firmware version - " << pCamInfo->firmwareVersion << std::endl; std::cout << "Firmware build time - " << pCamInfo->firmwareBuildTime << std::endl << std::endl; Property frameRateProp(FRAME_RATE); error = cam.GetProperty(&frameRateProp); if(error != PGRERROR_OK){ error.PrintErrorTrace(); return; } std::cerr << "Initial framerate:" << frameRateProp.absValue << std::endl; frameRateProp.absControl = frame_rate; frameRateProp.absValue = frame_rate; frameRateProp.autoManualMode = false; frameRateProp.onOff = true; error = cam.SetProperty(&frameRateProp); if(error != PGRERROR_OK){ error.PrintErrorTrace(); return; } error = cam.GetProperty(&frameRateProp); if(error != PGRERROR_OK){ error.PrintErrorTrace(); return; } std::cerr << "Final framerate:" << frameRateProp.absValue << std::endl; std::cout << "DEBUG -- set RGB8" << std::endl; // Set RGB8 Format7ImageSettings fmt7ImageSettings; fmt7ImageSettings.mode = MODE_0; fmt7ImageSettings.offsetX = 0; fmt7ImageSettings.offsetY = 0; fmt7ImageSettings.width = 1920; fmt7ImageSettings.height = 1200; fmt7ImageSettings.pixelFormat = PIXEL_FORMAT_RGB; bool isValid; Format7PacketInfo fmt7PacketInfo; //std::cout << "DEBUG -- validate settings" << std::endl; // Validate the settings to make sure that they are valid error = cam.ValidateFormat7Settings( &fmt7ImageSettings, &isValid, &fmt7PacketInfo ); if(error != PGRERROR_OK){ error.PrintErrorTrace(); return; } if ( !isValid ){ // Settings are not valid std::cout << "Format7 settings are not valid" << std::endl; return; } std::cout << std::endl << std::endl << "DEBUG -- set settings" << std::endl; // Set the settings to the camera error = cam.SetFormat7Configuration( &fmt7ImageSettings, fmt7PacketInfo.recommendedBytesPerPacket ); if(error != PGRERROR_OK){ error.PrintErrorTrace(); return; } std::cout << "DEBUG -- capturing images" << std::endl; // Start capturing images error = cam.StartCapture(); if(error != PGRERROR_OK){ error.PrintErrorTrace(); return; } std::cout << "DEBUG -- setting variables" << std::endl << std::endl; Image raw_image; Image rgb_image; //while(key != 113){ int num_images = 3; //for(int image_count=0; image_count < num_images; ++image_count){ std::cout << "DEBUG -- loop" << std::endl; raw_image = Image(); //std::cout << "DEBUG -- retrieve buffer" << std::endl; error = cam.RetrieveBuffer(&raw_image); if(error != PGRERROR_OK){ error.PrintErrorTrace(); return; } //convert to rgb std::cout << "DEBUG -- convert to RGB" << std::endl; rgb_image = Image(); raw_image.Convert(FlyCapture2::PIXEL_FORMAT_RGB, &rgb_image); //convert to cv::Mat std::cout << "DEBUG -- convert to Mat" << std::endl; unsigned int rowBytes = (double)rgb_image.GetReceivedDataSize()/(double)rgb_image.GetRows(); cv::Mat mat_image = cv::Mat(rgb_image.GetRows(), rgb_image.GetCols(), CV_8UC3, rgb_image.GetData(), rowBytes); //cv::imshow("image", test_image); //convert to image vital::image k_image = arrows::ocv::image_container::ocv_to_vital(mat_image, arrows::ocv::image_container::BGR_COLOR); //put into image container std::cout << "DEBUG -- convert to image container" << std::endl; std::shared_ptr<kwiver::vital::image_container> image_c = std::make_shared<arrows::ocv::image_container>(k_image); //(mat_image, arrows::ocv::image_container::BGR_COLOR); if(image_c != NULL){ kwiver::vital::timestamp frame_ts( d->m_frame_time, d->m_frame_number ); // update timestampstd::cout << "DEBUG -- update timestamp" << std::endl; ++d->m_frame_number; d->m_frame_time += d->m_config_frame_time; std::cout << "DEBUG -- push to port" << std::endl; push_to_port_using_trait( timestamp, frame_ts ); push_to_port_using_trait( image, image_c ); //std::cout << "DEBUG -- 2" << std::endl << std::endl; std::cout << std::endl; }else std::cout << "Try again" << std::endl; // }//end loop std::cout << "DEBUG -- out of loop" << std::endl; error = cam.StopCapture(); if(error != PGRERROR_OK){ error.PrintErrorTrace(); return; } cam.Disconnect(); LOG_DEBUG( logger(), "End of input reached, process terminating" ); // indicate done mark_process_as_complete(); const sprokit::datum_t dat= sprokit::datum::complete_datum(); push_datum_to_port_using_trait( timestamp, dat ); push_datum_to_port_using_trait( image, dat ); std::cout << "DEBUG -- done" << std::endl; } // ---------------------------------------------------------------- void flycapture_input_process ::make_ports() { // Set up for required ports sprokit::process::port_flags_t optional; declare_output_port_using_trait( timestamp, optional ); declare_output_port_using_trait( image, optional ); } // ---------------------------------------------------------------- void flycapture_input_process ::make_config() { declare_config_using_trait( camera_serial ); declare_config_using_trait( frame_time ); } // ================================================================ flycapture_input_process::priv ::priv() : m_frame_number( 1 ) , m_frame_time( 0 ) {} flycapture_input_process::priv ::~priv() {} // ---------------------------------------------------------------- } // end namespace
[ "noreply@github.com" ]
hdefazio.noreply@github.com
1f5f8db47e88a8e93677c0ff25b1bde20a499bff
2ad0ab1e2f4571b6ea1ca0b487454345e0f0689f
/Stranger_Things_Lights.ino
902e91d8bfba9a75ba9ba1a1404b6c0b3ad9259c
[]
no_license
simcard0000/stranger-things-lights
029bed9b2731d165150deb9d2db28aa98adcbe46
00900223bd75eca9e634e07b4043659eb587f1cb
refs/heads/master
2020-04-05T12:19:50.634125
2019-07-21T02:39:38
2019-07-21T02:39:38
156,865,497
0
0
null
null
null
null
UTF-8
C++
false
false
6,662
ino
#include <FastLED.h> #define LED_PIN 5 #define NUM_LEDS 50 #define BRIGHTNESS 64 #define LED_TYPE WS2811 #define COLOR_ORDER RGB CRGB leds[NUM_LEDS]; //Defining what's what, such as the type of LEDs and the brightness the LEDs should be at (brightness goes up to 128). //Numbered LED 26 is where the blinking skips to the end, so 26 is the last one. #define UPDATES_PER_SECOND 100 CRGBPalette16 currentPalette; TBlendType currentBlending; void setup() { delay( 3000 ); // power-up safety delay FastLED.addLeds<LED_TYPE, LED_PIN, COLOR_ORDER>(leds, NUM_LEDS).setCorrection( TypicalLEDStrip ); FastLED.setBrightness( BRIGHTNESS ); currentPalette = RainbowStripeColors_p; currentBlending = LINEARBLEND; Serial.begin(9600); while (! Serial); Serial.println("Enter letters so that your message appears on the lights!"); Serial.println("Press SEND when you are finished typing."); Serial.println("Please don't input capitals, numbers, and punctuation. :)"); Serial.println("The lights that turn white are your letters."); } void loop() { static uint8_t startIndex = 0; startIndex = startIndex + 1; //motion speed FillLEDsFromPaletteColors( startIndex); FastLED.show(); FastLED.delay(3000 / UPDATES_PER_SECOND); //The rate of change in terms of colour if (Serial.available()){ char ch = Serial.read(); if (ch == 'a'){ delay (10); fill_solid( &(leds[0]), 1, CRGB( 255, 255, 255) ); fill_solid( &(leds[1]), 1, CRGB( 255, 255, 255) ); FastLED.show(); delay(1000); } if (ch == 'b'){ delay (10); fill_solid( &(leds[2]), 1, CRGB( 255, 255, 255) ); fill_solid( &(leds[3]), 1, CRGB( 255, 255, 255) ); FastLED.show(); delay(1000); } if (ch == 'c'){ fill_solid( &(leds[4]), 1, CRGB( 255, 255, 255) ); fill_solid( &(leds[5]), 1, CRGB( 255, 255, 255) ); FastLED.show(); delay(1000); } if (ch == 'd'){ fill_solid( &(leds[6]), 1, CRGB( 255, 255, 255) ); fill_solid( &(leds[7]), 1, CRGB( 255, 255, 255) ); FastLED.show(); delay(1000); } if (ch == 'e'){ fill_solid( &(leds[8]), 1, CRGB( 255, 255, 255) ); fill_solid( &(leds[9]), 1, CRGB( 255, 255, 255) ); FastLED.show(); delay(1000); } if (ch == 'f'){ fill_solid( &(leds[10]), 1, CRGB( 255, 255, 255) ); fill_solid( &(leds[11]), 1, CRGB( 255, 255, 255) ); FastLED.show(); delay(1000); } if (ch == 'g'){ fill_solid( &(leds[12]), 1, CRGB( 255, 255, 255) ); fill_solid( &(leds[13]), 1, CRGB( 255, 255, 255) ); FastLED.show(); delay(1000); } if (ch == 'h'){ fill_solid( &(leds[14]), 1, CRGB( 255, 255, 255) ); fill_solid( &(leds[15]), 1, CRGB( 255, 255, 255) ); FastLED.show(); delay(1000); } if (ch == 'i'){ fill_solid( &(leds[16]), 1, CRGB( 255, 255, 255) ); fill_solid( &(leds[17]), 1, CRGB( 255, 255, 255) ); FastLED.show(); delay(1000); } if (ch == 'j'){ fill_solid( &(leds[18]), 1, CRGB( 255, 255, 255) ); fill_solid( &(leds[19]), 1, CRGB( 255, 255, 255) ); FastLED.show(); delay(1000); } if (ch == 'k'){ fill_solid( &(leds[20]), 1, CRGB( 255, 255, 255) ); fill_solid( &(leds[21]), 1, CRGB( 255, 255, 255) ); FastLED.show(); delay(1000); } if (ch == 'l'){ fill_solid( &(leds[22]), 1, CRGB( 255, 255, 255) ); fill_solid( &(leds[23]), 1, CRGB( 255, 255, 255) ); FastLED.show(); delay(1000); } if (ch == 'm'){ fill_solid( &(leds[24]), 1, CRGB( 255, 255, 255) ); fill_solid( &(leds[25]), 1, CRGB( 255, 255, 255) ); // FastLED.show(); delay(1000); } if (ch == 'n'){ fill_solid( &(leds[49]), 1, CRGB( 255, 255, 255) ); fill_solid( &(leds[48]), 1, CRGB( 255, 255, 255) ); FastLED.show(); delay(1000); } if (ch == 'o'){ fill_solid( &(leds[47]), 1, CRGB( 255, 255, 255) ); fill_solid( &(leds[46]), 1, CRGB( 255, 255, 255) ); FastLED.show(); delay(1000); } if (ch == 'p'){ fill_solid( &(leds[45]), 1, CRGB( 255, 255, 255) ); fill_solid( &(leds[44]), 1, CRGB( 255, 255, 255) ); FastLED.show(); delay(1000); } if (ch == 'q'){ fill_solid( &(leds[43]), 1, CRGB( 255, 255, 255) ); fill_solid( &(leds[42]), 1, CRGB( 255, 255, 255) ); FastLED.show(); delay(1000); } if (ch == 'r'){ fill_solid( &(leds[41]), 1, CRGB( 255, 255, 255) ); fill_solid( &(leds[40]), 1, CRGB( 255, 255, 255) ); FastLED.show(); delay(1000); } if (ch == 's'){ fill_solid( &(leds[39]), 1, CRGB( 255, 255, 255) ); fill_solid( &(leds[38]), 1, CRGB( 255, 255, 255) ); FastLED.show(); delay(1000); } if (ch == 't'){ fill_solid( &(leds[37]), 1, CRGB( 255, 255, 255) ); fill_solid( &(leds[36]), 1, CRGB( 255, 255, 255) ); FastLED.show(); delay(1000); } if (ch == 'u'){ fill_solid( &(leds[35]), 1, CRGB( 255, 255, 255) ); fill_solid( &(leds[34]), 1, CRGB( 255, 255, 255) ); FastLED.show(); delay(1000); } if (ch == 'v'){ fill_solid( &(leds[33]), 1, CRGB( 255, 255, 255) ); fill_solid( &(leds[32]), 1, CRGB( 255, 255, 255) ); FastLED.show(); delay(1000); } if (ch == 'w'){ fill_solid( &(leds[31]), 1, CRGB( 255, 255, 255) ); fill_solid( &(leds[30]), 1, CRGB( 255, 255, 255) ); FastLED.show(); delay(1000); } if (ch == 'x'){ fill_solid( &(leds[29]), 1, CRGB( 255, 255, 255) ); fill_solid( &(leds[28]), 1, CRGB( 255, 255, 255) ); FastLED.show(); delay(1000); } if (ch == 'y'){ fill_solid( &(leds[27]), 1, CRGB( 255, 255, 255) ); FastLED.show(); delay(1000); } if (ch == 'z'){ fill_solid( &(leds[26]), 1, CRGB( 255, 255, 255) ); FastLED.show(); delay(1000); } } //These if statements are for the letters~ } void FillLEDsFromPaletteColors( uint8_t colorIndex){ uint8_t brightness = 255; for( int i = 0; i < NUM_LEDS; i++) { leds[i] = ColorFromPalette( currentPalette, colorIndex, brightness, currentBlending); colorIndex += 3; } //For showing the pre-made palette on the computer. }
[ "noreply@github.com" ]
simcard0000.noreply@github.com
a1c24f9e745265915e6c5fb131c5b5a9f9dd8855
0af5ad47da00e856ee9a6f46dc13913c8e62ae0a
/external/catch2/catchMain.cpp
590a2a238e95d7ac0a4dcab26c9818bb1987636e
[ "MIT" ]
permissive
joelbygger/cmake_proj
4685e55de28cb79017ce0553b7ac17b3725c6a3d
d534febf99eee2f95b11d8b67870957886c34e5c
refs/heads/master
2021-06-21T10:46:03.075859
2020-12-16T08:14:14
2020-12-16T08:14:14
144,476,643
4
0
MIT
2019-05-17T12:36:10
2018-08-12T15:06:08
CMake
UTF-8
C++
false
false
170
cpp
// // Created by joel on 2019-03-28. // // This define is required, but must only exist in one file. Provides a main(). #define CATCH_CONFIG_MAIN #include "catch2.hpp"
[ "joel.sael@gmail.com" ]
joel.sael@gmail.com
acb6736384a2f57a1648cb91c7621346ac79bde2
b7f3edb5b7c62174bed808079c3b21fb9ea51d52
/base/trace_event/cpufreq_monitor_android.cc
8ce94d1869fc9bc1d8787ab91976e8744ee0c87f
[ "BSD-3-Clause" ]
permissive
otcshare/chromium-src
26a7372773b53b236784c51677c566dc0ad839e4
64bee65c921db7e78e25d08f1e98da2668b57be5
refs/heads/webml
2023-03-21T03:20:15.377034
2020-11-16T01:40:14
2020-11-16T01:40:14
209,262,645
18
21
BSD-3-Clause
2023-03-23T06:20:07
2019-09-18T08:52:07
null
UTF-8
C++
false
false
7,421
cc
// Copyright 2018 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "base/trace_event/cpufreq_monitor_android.h" #include <fcntl.h> #include "base/atomicops.h" #include "base/bind.h" #include "base/files/file_util.h" #include "base/files/scoped_file.h" #include "base/memory/scoped_refptr.h" #include "base/no_destructor.h" #include "base/strings/string_number_conversions.h" #include "base/strings/string_split.h" #include "base/strings/stringprintf.h" #include "base/task/post_task.h" #include "base/task/task_traits.h" #include "base/task/thread_pool.h" #include "base/trace_event/trace_event.h" namespace base { namespace trace_event { namespace { const size_t kNumBytesToReadForSampling = 32; constexpr const char kTraceCategory[] = TRACE_DISABLED_BY_DEFAULT("power"); const char kEventTitle[] = "CPU Frequency"; } // namespace CPUFreqMonitorDelegate::CPUFreqMonitorDelegate() {} std::string CPUFreqMonitorDelegate::GetScalingCurFreqPathString( unsigned int cpu_id) const { return base::StringPrintf( "/sys/devices/system/cpu/cpu%d/cpufreq/scaling_cur_freq", cpu_id); } bool CPUFreqMonitorDelegate::IsTraceCategoryEnabled() const { bool enabled; TRACE_EVENT_CATEGORY_GROUP_ENABLED(kTraceCategory, &enabled); return enabled; } unsigned int CPUFreqMonitorDelegate::GetKernelMaxCPUs() const { std::string str; if (!base::ReadFileToString( base::FilePath("/sys/devices/system/cpu/kernel_max"), &str)) { // If we fail to read the kernel_max file, we just assume that CPU0 exists. return 0; } unsigned int kernel_max_cpu = 0; base::StringToUint(str, &kernel_max_cpu); return kernel_max_cpu; } std::string CPUFreqMonitorDelegate::GetRelatedCPUsPathString( unsigned int cpu_id) const { return base::StringPrintf( "/sys/devices/system/cpu/cpu%d/cpufreq/related_cpus", cpu_id); } void CPUFreqMonitorDelegate::GetCPUIds(std::vector<unsigned int>* ids) const { ids->clear(); unsigned int kernel_max_cpu = GetKernelMaxCPUs(); // CPUs related to one that's already marked for monitoring get set to "false" // so we don't needlessly monitor CPUs with redundant frequency information. char cpus_to_monitor[kernel_max_cpu + 1]; std::memset(cpus_to_monitor, 1, kernel_max_cpu + 1); // Rule out the related CPUs for each one so we only end up with the CPUs // that are representative of the cluster. for (unsigned int i = 0; i <= kernel_max_cpu; i++) { if (!cpus_to_monitor[i]) continue; std::string filename = GetRelatedCPUsPathString(i); std::string line; if (!base::ReadFileToString(base::FilePath(filename), &line)) continue; // When reading the related_cpus file, we expected the format to be // something like "0 1 2 3" for CPU0-3 if they're all in one cluster. for (auto& str_piece : base::SplitString(line, " ", base::WhitespaceHandling::TRIM_WHITESPACE, base::SplitResult::SPLIT_WANT_NONEMPTY)) { unsigned int cpu_id; if (base::StringToUint(str_piece, &cpu_id)) { if (cpu_id != i && cpu_id >= 0 && cpu_id <= kernel_max_cpu) cpus_to_monitor[cpu_id] = 0; } } ids->push_back(i); } // If none of the files were readable, we assume CPU0 exists and fall back to // using that. if (ids->size() == 0) ids->push_back(0); } void CPUFreqMonitorDelegate::RecordFrequency(unsigned int cpu_id, unsigned int freq) { TRACE_COUNTER_ID1(kTraceCategory, kEventTitle, cpu_id, freq); } scoped_refptr<SingleThreadTaskRunner> CPUFreqMonitorDelegate::CreateTaskRunner() { return base::ThreadPool::CreateSingleThreadTaskRunner( {base::MayBlock(), base::TaskShutdownBehavior::SKIP_ON_SHUTDOWN, base::TaskPriority::BEST_EFFORT}, base::SingleThreadTaskRunnerThreadMode::SHARED); } CPUFreqMonitor::CPUFreqMonitor() : CPUFreqMonitor(std::make_unique<CPUFreqMonitorDelegate>()) {} CPUFreqMonitor::CPUFreqMonitor(std::unique_ptr<CPUFreqMonitorDelegate> delegate) : delegate_(std::move(delegate)) {} CPUFreqMonitor::~CPUFreqMonitor() { Stop(); } // static CPUFreqMonitor* CPUFreqMonitor::GetInstance() { static base::NoDestructor<CPUFreqMonitor> instance; return instance.get(); } void CPUFreqMonitor::OnTraceLogEnabled() { GetOrCreateTaskRunner()->PostTask( FROM_HERE, base::BindOnce(&CPUFreqMonitor::Start, weak_ptr_factory_.GetWeakPtr())); } void CPUFreqMonitor::OnTraceLogDisabled() { Stop(); } void CPUFreqMonitor::Start() { // It's the responsibility of the caller to ensure that Start/Stop are // synchronized. If Start/Stop are called asynchronously where this value // may be incorrect, we have bigger problems. if (base::subtle::NoBarrier_Load(&is_enabled_) == 1 || !delegate_->IsTraceCategoryEnabled()) { return; } std::vector<unsigned int> cpu_ids; delegate_->GetCPUIds(&cpu_ids); std::vector<std::pair<unsigned int, base::ScopedFD>> fds; for (unsigned int id : cpu_ids) { std::string fstr = delegate_->GetScalingCurFreqPathString(id); int fd = open(fstr.c_str(), O_RDONLY); if (fd == -1) continue; fds.emplace_back(std::make_pair(id, base::ScopedFD(fd))); } // We failed to read any scaling_cur_freq files, no point sampling nothing. if (fds.size() == 0) return; base::subtle::Release_Store(&is_enabled_, 1); GetOrCreateTaskRunner()->PostTask( FROM_HERE, base::BindOnce(&CPUFreqMonitor::Sample, weak_ptr_factory_.GetWeakPtr(), std::move(fds))); } void CPUFreqMonitor::Stop() { base::subtle::Release_Store(&is_enabled_, 0); } void CPUFreqMonitor::Sample( std::vector<std::pair<unsigned int, base::ScopedFD>> fds) { // For the same reason as above we use NoBarrier_Load, because if this value // is in transition and we use Acquire_Load then we'll never shut down our // original Sample tasks until the next Stop, so it's still the responsibility // of callers to sync Start/Stop. if (base::subtle::NoBarrier_Load(&is_enabled_) == 0) return; for (auto& id_fd : fds) { int fd = id_fd.second.get(); unsigned int freq = 0; // If we have trouble reading data from the file for any reason we'll end up // reporting the frequency as nothing. lseek(fd, 0L, SEEK_SET); char data[kNumBytesToReadForSampling]; size_t bytes_read = read(fd, data, kNumBytesToReadForSampling); if (bytes_read > 0) { if (bytes_read < kNumBytesToReadForSampling) data[bytes_read] = '\0'; int ret = sscanf(data, "%d", &freq); if (ret == 0 || ret == std::char_traits<char>::eof()) freq = 0; } delegate_->RecordFrequency(id_fd.first, freq); } GetOrCreateTaskRunner()->PostDelayedTask( FROM_HERE, base::BindOnce(&CPUFreqMonitor::Sample, weak_ptr_factory_.GetWeakPtr(), std::move(fds)), base::TimeDelta::FromMilliseconds(kDefaultCPUFreqSampleIntervalMs)); } bool CPUFreqMonitor::IsEnabledForTesting() { return base::subtle::Acquire_Load(&is_enabled_) == 1; } const scoped_refptr<SingleThreadTaskRunner>& CPUFreqMonitor::GetOrCreateTaskRunner() { if (!task_runner_) task_runner_ = delegate_->CreateTaskRunner(); return task_runner_; } } // namespace trace_event } // namespace base
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
fcedd94fa3f38a1cd0474f8ca6d51a922443b438
004d6d2f92e83aec5b79365c0d0c046e94855710
/algorithms/CPlusPlus/Arrays/move-zeros-to-end-of-array.cpp
1ebe5186a557ff94089383a64e5209a03196a7a7
[ "MIT" ]
permissive
elqmausam/DSA
67bb8f8b51cb0d93ef2905d3274391ba4cf57f4b
4d9708c9aa273a16bb89b4566c9acd9a6f9e9bdd
refs/heads/main
2023-09-02T10:50:48.888697
2021-10-31T05:56:59
2021-10-31T05:56:59
423,065,269
0
0
MIT
2021-10-31T05:51:31
2021-10-31T05:51:31
null
UTF-8
C++
false
false
1,250
cpp
//Given an array of random numbers, Push all the zero’s of a given array to the end of the array. //For example, if the given arrays is {1, 9, 8, 4, 0, 0, 2, 7, 0, 6, 0}, it should be changed to {1, 9, 8, 4, 2, 7, 6, 0, 0, 0, 0}. //The order of all other elements should be same. #include <bits/stdc++.h> using namespace std; void movetoend(int arr[], int n) { int cnt = 0; // Traverse the array. If element encountered is non-zero, // then replace the element at index cnt // with this element for (int i = 0 ; i < n; i++) if (arr[i] != 0) arr[cnt++] = arr[i]; while (cnt < n) arr[cnt++] = 0; // Now all non-zero elements have been shifted to left // and all zero to the right to the right for (int i = 0; i < n; i++) cout << arr[i] << " "; } int main() { int n; cout << "Enter the size" << endl; cin >> n; int arr[n]; cout << "Enter the array" << endl; for (int i = 0; i < n; i++) { cin >> arr[i]; } int k; cout << "Array after moving all zeros to end is :" << endl; movetoend(arr, n); return 0; } /* Sample Input: Enter the size 4 Enter the array 1 0 9 0 Array after moving all zeros to end is : 1 9 0 0 **Time Complexity: O(n), n is the size of the array **Space Complexity: O(1) */
[ "noreply@github.com" ]
elqmausam.noreply@github.com
c6f43c369a4e34026d77226538ddc3104c5a60f8
eb29e630e4ecb0025ed7939124f872893d32560b
/source/ext/common/pegasus/src/Pegasus/Common/Platform_WIN32_IX86_MSVC.h
1de6a10e6fd4e6ac087e735fa41edee6f954a8ba
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
host1812/scx_plugin_public
563246c2ca97f6e2c44372a924b7c06f77e1b133
c9d44d370013ade2c3aa4b5dada51834f08a67d4
refs/heads/master
2020-05-17T23:54:16.123319
2012-07-27T12:28:57
2012-07-27T12:28:57
5,189,415
1
0
null
null
null
null
UTF-8
C++
false
false
4,957
h
//%LICENSE//////////////////////////////////////////////////////////////// // // Licensed to The Open Group (TOG) under one or more contributor license // agreements. Refer to the OpenPegasusNOTICE.txt file distributed with // this work for additional information regarding copyright ownership. // Each contributor licenses this file to you under the OpenPegasus Open // Source License; you may not use this file except in compliance with the // License. // // Permission is hereby granted, free of charge, to any person obtaining a // copy of this software and associated documentation files (the "Software"), // to deal in the Software without restriction, including without limitation // the rights to use, copy, modify, merge, publish, distribute, sublicense, // and/or sell copies of the Software, and to permit persons to whom the // Software is furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included // in all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY // CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE // SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // ////////////////////////////////////////////////////////////////////////// // //%///////////////////////////////////////////////////////////////////////////// #ifndef Pegasus_Platform_WIN32_IX86_MSVC_h #define Pegasus_Platform_WIN32_IX86_MSVC_h #define PEGASUS_OS_TYPE_WINDOWS #define PEGASUS_EXPORT __declspec(dllexport) #define PEGASUS_IMPORT __declspec(dllimport) #define PEGASUS_OS_WIN32 #define PEGASUS_ARCHITECTURE_IX86 #define PEGASUS_COMPILER_MSVC #define PEGASUS_UINT64 unsigned __int64 #define PEGASUS_SINT64 __int64 #define PEGASUS_SINT64_LITERAL(X) Sint64(X) #define PEGASUS_UINT64_LITERAL(X) Uint64(X) #define PEGASUS_64BIT_CONVERSION_WIDTH "I64" #define PEGASUS_HAVE_NAMESPACES // #define PEGASUS_HAVE_FOR_SCOPE #define PEGASUS_HAVE_TEMPLATE_SPECIALIZATION #define PEGASUS_HAVE_IOS_BINARY #define PEGASUS_MAXHOSTNAMELEN 64 #define PEGASUS_DISABLE_INTERNAL_INLINES // Exclude rarely-used stuff from Windows headers // Note: this is also an easy way to avoid the often introduced // winsock.h/winsock2.h mixing compiler error problems. #ifndef WIN32_LEAN_AND_MEAN #define WIN32_LEAN_AND_MEAN #endif // Suppress this warning: "identifier was truncated to '255' characters in the // debug information": #pragma warning( disable : 4786 ) // Suppress this warning: "class <XXX> needs to have dll-interface to be used // by clients of class <YYY>" #pragma warning ( disable : 4251 ) // Supress this warning : non dll-interface class <XXX> used as base // for dll-interface class <YYY> #pragma warning( disable : 4275 ) // Supresss this warning : C++ exception specification ignored except // to indicate a function is not __declspec(nothrow) #pragma warning( disable : 4290 ) // Suppress this warning : "'this' : used in base member initializer list" #pragma warning ( disable : 4355 ) // Suppress this warning: 'type' : forcing value to bool 'true' or 'false' // (performance warning) #ifdef PEGASUS_INTERNALONLY #pragma warning( disable : 4800 ) #endif // VC 8 specific pragmas #if _MSC_VER >= 1400 // Suppress this warning: '<function>' was declared deprecated // This warning is supported beginning with VC 8. #pragma warning ( disable : 4996 ) // Suppress this warning: behavior change: an object of POD type constructed // with an initializer of the form () will be default-initialized #pragma warning ( disable : 4345 ) #endif // // Prior to Microsoft Visual Studio 7.0, there were no stream inserters for // __int64 and unsigned __int64. We declare them if the _MSC_VER is less than // 1300 (subtract 600 to get the version of Visual Studio). Look in // SystemWindows.cpp for the definitions. // #if (_MSC_VER < 1300) && defined(PEGASUS_INTERNALONLY) && defined(__cplusplus) # include <iostream> namespace std { inline ostream& operator<<(ostream& os, const unsigned __int64& x) { char buffer[64]; sprintf(buffer, "%" PEGASUS_64BIT_CONVERSION_WIDTH "u", x); return os << buffer; } inline ostream& operator<<(ostream& os, const __int64& x) { char buffer[64]; sprintf(buffer, "%" PEGASUS_64BIT_CONVERSION_WIDTH "d", x); return os << buffer; } } #endif /* _MSC_VER < 1300 */ #define PEGASUS_HAVE_WINDOWS_THREADS /* use OpenPegasus semaphore based read/write locking mechanism */ #define PEGASUS_USE_SEMAPHORE_RWLOCK #define PEGASUS_INTEGERS_BOUNDARY_ALIGNED #endif /* Pegasus_Platform_WIN32_IX86_MSVC_h */
[ "host1812@yandex.ru" ]
host1812@yandex.ru
fe60a33b9a3195f9f14a47a843bdd6362fbfc8f6
33cc674f62343ae2a390a539fe85633317cd1619
/LAMMPS_STABLE/pppm.cpp
d6305d3a5209574e6b198cf991ac717986f45b12
[]
no_license
zhangshiyun/LAMMPS_STABLE
57ff9ffc132908f8bb6845e2afe348838e22ba23
2cd4494e600610b3174dea0955aacab2a3a42f23
refs/heads/master
2021-01-18T09:27:37.310317
2017-03-08T11:34:31
2017-03-08T11:34:31
84,313,280
1
0
null
null
null
null
UTF-8
C++
false
false
104,907
cpp
/* ---------------------------------------------------------------------- LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator http://lammps.sandia.gov, Sandia National Laboratories Steve Plimpton, sjplimp@sandia.gov Copyright (2003) Sandia Corporation. Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains certain rights in this software. This software is distributed under the GNU General Public License. See the README file in the top-level LAMMPS directory. ------------------------------------------------------------------------- */ /* ---------------------------------------------------------------------- Contributing authors: Roy Pollock (LLNL), Paul Crozier (SNL) per-atom energy/virial & group/group energy/force added by Stan Moore (BYU) analytic diff (2 FFT) option added by Rolf Isele-Holder (Aachen University) triclinic added by Stan Moore (SNL) ------------------------------------------------------------------------- */ #include "lmptype.h" #include "mpi.h" #include "string.h" #include "stdio.h" #include "stdlib.h" #include "math.h" #include "pppm.h" #include "atom.h" #include "comm.h" #include "gridcomm.h" #include "neighbor.h" #include "force.h" #include "pair.h" #include "bond.h" #include "angle.h" #include "domain.h" #include "fft3d_wrap.h" #include "remap_wrap.h" #include "memory.h" #include "error.h" #include "math_const.h" #include "math_special.h" using namespace LAMMPS_NS; using namespace MathConst; using namespace MathSpecial; #define MAXORDER 7 #define OFFSET 16384 #define LARGE 10000.0 #define SMALL 0.00001 #define EPS_HOC 1.0e-7 enum{REVERSE_RHO}; enum{FORWARD_IK,FORWARD_AD,FORWARD_IK_PERATOM,FORWARD_AD_PERATOM}; #ifdef FFT_SINGLE #define ZEROF 0.0f #define ONEF 1.0f #else #define ZEROF 0.0 #define ONEF 1.0 #endif /* ---------------------------------------------------------------------- */ PPPM::PPPM(LAMMPS *lmp, int narg, char **arg) : KSpace(lmp, narg, arg) { if (narg < 1) error->all(FLERR,"Illegal kspace_style pppm command"); pppmflag = 1; group_group_enable = 1; accuracy_relative = fabs(force->numeric(FLERR,arg[0])); nfactors = 3; factors = new int[nfactors]; factors[0] = 2; factors[1] = 3; factors[2] = 5; MPI_Comm_rank(world,&me); MPI_Comm_size(world,&nprocs); density_brick = vdx_brick = vdy_brick = vdz_brick = NULL; density_fft = NULL; u_brick = NULL; v0_brick = v1_brick = v2_brick = v3_brick = v4_brick = v5_brick = NULL; greensfn = NULL; work1 = work2 = NULL; vg = NULL; fkx = fky = fkz = NULL; sf_precoeff1 = sf_precoeff2 = sf_precoeff3 = sf_precoeff4 = sf_precoeff5 = sf_precoeff6 = NULL; density_A_brick = density_B_brick = NULL; density_A_fft = density_B_fft = NULL; gf_b = NULL; rho1d = rho_coeff = drho1d = drho_coeff = NULL; fft1 = fft2 = NULL; remap = NULL; cg = NULL; cg_peratom = NULL; nmax = 0; part2grid = NULL; peratom_allocate_flag = 0; group_allocate_flag = 0; // define acons coefficients for estimation of kspace errors // see JCP 109, pg 7698 for derivation of coefficients // higher order coefficients may be computed if needed memory->create(acons,8,7,"pppm:acons"); acons[1][0] = 2.0 / 3.0; acons[2][0] = 1.0 / 50.0; acons[2][1] = 5.0 / 294.0; acons[3][0] = 1.0 / 588.0; acons[3][1] = 7.0 / 1440.0; acons[3][2] = 21.0 / 3872.0; acons[4][0] = 1.0 / 4320.0; acons[4][1] = 3.0 / 1936.0; acons[4][2] = 7601.0 / 2271360.0; acons[4][3] = 143.0 / 28800.0; acons[5][0] = 1.0 / 23232.0; acons[5][1] = 7601.0 / 13628160.0; acons[5][2] = 143.0 / 69120.0; acons[5][3] = 517231.0 / 106536960.0; acons[5][4] = 106640677.0 / 11737571328.0; acons[6][0] = 691.0 / 68140800.0; acons[6][1] = 13.0 / 57600.0; acons[6][2] = 47021.0 / 35512320.0; acons[6][3] = 9694607.0 / 2095994880.0; acons[6][4] = 733191589.0 / 59609088000.0; acons[6][5] = 326190917.0 / 11700633600.0; acons[7][0] = 1.0 / 345600.0; acons[7][1] = 3617.0 / 35512320.0; acons[7][2] = 745739.0 / 838397952.0; acons[7][3] = 56399353.0 / 12773376000.0; acons[7][4] = 25091609.0 / 1560084480.0; acons[7][5] = 1755948832039.0 / 36229939200000.0; acons[7][6] = 4887769399.0 / 37838389248.0; } /* ---------------------------------------------------------------------- free all memory ------------------------------------------------------------------------- */ PPPM::~PPPM() { delete [] factors; deallocate(); if (peratom_allocate_flag) deallocate_peratom(); if (group_allocate_flag) deallocate_groups(); memory->destroy(part2grid); memory->destroy(acons); } /* ---------------------------------------------------------------------- called once before run ------------------------------------------------------------------------- */ void PPPM::init() { if (me == 0) { if (screen) fprintf(screen,"PPPM initialization ...\n"); if (logfile) fprintf(logfile,"PPPM initialization ...\n"); } // error check triclinic_check(); if (domain->triclinic && differentiation_flag == 1) error->all(FLERR,"Cannot (yet) use PPPM with triclinic box " "and kspace_modify diff ad"); if (domain->triclinic && slabflag) error->all(FLERR,"Cannot (yet) use PPPM with triclinic box and " "slab correction"); if (domain->dimension == 2) error->all(FLERR, "Cannot use PPPM with 2d simulation"); if (comm->style != 0) error->universe_all(FLERR,"PPPM can only currently be used with " "comm_style brick"); if (!atom->q_flag) error->all(FLERR,"Kspace style requires atom attribute q"); if (slabflag == 0 && domain->nonperiodic > 0) error->all(FLERR,"Cannot use nonperiodic boundaries with PPPM"); if (slabflag) { if (domain->xperiodic != 1 || domain->yperiodic != 1 || domain->boundary[2][0] != 1 || domain->boundary[2][1] != 1) error->all(FLERR,"Incorrect boundaries with slab PPPM"); } if (order < 2 || order > MAXORDER) { char str[128]; sprintf(str,"PPPM order cannot be < 2 or > than %d",MAXORDER); error->all(FLERR,str); } // extract short-range Coulombic cutoff from pair style triclinic = domain->triclinic; pair_check(); int itmp = 0; double *p_cutoff = (double *) force->pair->extract("cut_coul",itmp); if (p_cutoff == NULL) error->all(FLERR,"KSpace style is incompatible with Pair style"); cutoff = *p_cutoff; // if kspace is TIP4P, extract TIP4P params from pair style // bond/angle are not yet init(), so insure equilibrium request is valid qdist = 0.0; if (tip4pflag) { if (me == 0) { if (screen) fprintf(screen," extracting TIP4P info from pair style\n"); if (logfile) fprintf(logfile," extracting TIP4P info from pair style\n"); } double *p_qdist = (double *) force->pair->extract("qdist",itmp); int *p_typeO = (int *) force->pair->extract("typeO",itmp); int *p_typeH = (int *) force->pair->extract("typeH",itmp); int *p_typeA = (int *) force->pair->extract("typeA",itmp); int *p_typeB = (int *) force->pair->extract("typeB",itmp); if (!p_qdist || !p_typeO || !p_typeH || !p_typeA || !p_typeB) error->all(FLERR,"Pair style is incompatible with KSpace style"); qdist = *p_qdist; typeO = *p_typeO; typeH = *p_typeH; int typeA = *p_typeA; int typeB = *p_typeB; if (force->angle == NULL || force->bond == NULL || force->angle->setflag == NULL || force->bond->setflag == NULL) error->all(FLERR,"Bond and angle potentials must be defined for TIP4P"); if (typeA < 1 || typeA > atom->nangletypes || force->angle->setflag[typeA] == 0) error->all(FLERR,"Bad TIP4P angle type for PPPM/TIP4P"); if (typeB < 1 || typeB > atom->nbondtypes || force->bond->setflag[typeB] == 0) error->all(FLERR,"Bad TIP4P bond type for PPPM/TIP4P"); double theta = force->angle->equilibrium_angle(typeA); double blen = force->bond->equilibrium_distance(typeB); alpha = qdist / (cos(0.5*theta) * blen); if (domain->triclinic) error->all(FLERR,"Cannot (yet) use PPPM with triclinic box and TIP4P"); } // compute qsum & qsqsum and warn if not charge-neutral scale = 1.0; qqrd2e = force->qqrd2e; qsum_qsq(0); natoms_original = atom->natoms; // set accuracy (force units) from accuracy_relative or accuracy_absolute if (accuracy_absolute >= 0.0) accuracy = accuracy_absolute; else accuracy = accuracy_relative * two_charge_force; // free all arrays previously allocated deallocate(); if (peratom_allocate_flag) deallocate_peratom(); if (group_allocate_flag) deallocate_groups(); // setup FFT grid resolution and g_ewald // normally one iteration thru while loop is all that is required // if grid stencil does not extend beyond neighbor proc // or overlap is allowed, then done // else reduce order and try again int (*procneigh)[2] = comm->procneigh; GridComm *cgtmp = NULL; int iteration = 0; while (order >= minorder) { if (iteration && me == 0) error->warning(FLERR,"Reducing PPPM order b/c stencil extends " "beyond nearest neighbor processor"); if (stagger_flag && !differentiation_flag) compute_gf_denom(); set_grid_global(); set_grid_local(); if (overlap_allowed) break; cgtmp = new GridComm(lmp,world,1,1, nxlo_in,nxhi_in,nylo_in,nyhi_in,nzlo_in,nzhi_in, nxlo_out,nxhi_out,nylo_out,nyhi_out,nzlo_out,nzhi_out, procneigh[0][0],procneigh[0][1],procneigh[1][0], procneigh[1][1],procneigh[2][0],procneigh[2][1]); cgtmp->ghost_notify(); if (!cgtmp->ghost_overlap()) break; delete cgtmp; order--; iteration++; } if (order < minorder) error->all(FLERR,"PPPM order < minimum allowed order"); if (!overlap_allowed && cgtmp->ghost_overlap()) error->all(FLERR,"PPPM grid stencil extends " "beyond nearest neighbor processor"); if (cgtmp) delete cgtmp; // adjust g_ewald if (!gewaldflag) adjust_gewald(); // calculate the final accuracy double estimated_accuracy = final_accuracy(); // print stats int ngrid_max,nfft_both_max; MPI_Allreduce(&ngrid,&ngrid_max,1,MPI_INT,MPI_MAX,world); MPI_Allreduce(&nfft_both,&nfft_both_max,1,MPI_INT,MPI_MAX,world); if (me == 0) { #ifdef FFT_SINGLE const char fft_prec[] = "single"; #else const char fft_prec[] = "double"; #endif if (screen) { fprintf(screen," G vector (1/distance) = %g\n",g_ewald); fprintf(screen," grid = %d %d %d\n",nx_pppm,ny_pppm,nz_pppm); fprintf(screen," stencil order = %d\n",order); fprintf(screen," estimated absolute RMS force accuracy = %g\n", estimated_accuracy); fprintf(screen," estimated relative force accuracy = %g\n", estimated_accuracy/two_charge_force); fprintf(screen," using %s precision FFTs\n",fft_prec); fprintf(screen," 3d grid and FFT values/proc = %d %d\n", ngrid_max,nfft_both_max); } if (logfile) { fprintf(logfile," G vector (1/distance) = %g\n",g_ewald); fprintf(logfile," grid = %d %d %d\n",nx_pppm,ny_pppm,nz_pppm); fprintf(logfile," stencil order = %d\n",order); fprintf(logfile," estimated absolute RMS force accuracy = %g\n", estimated_accuracy); fprintf(logfile," estimated relative force accuracy = %g\n", estimated_accuracy/two_charge_force); fprintf(logfile," using %s precision FFTs\n",fft_prec); fprintf(logfile," 3d grid and FFT values/proc = %d %d\n", ngrid_max,nfft_both_max); } } // allocate K-space dependent memory // don't invoke allocate peratom() or group(), will be allocated when needed allocate(); cg->ghost_notify(); cg->setup(); // pre-compute Green's function denomiator expansion // pre-compute 1d charge distribution coefficients compute_gf_denom(); if (differentiation_flag == 1) compute_sf_precoeff(); compute_rho_coeff(); } /* ---------------------------------------------------------------------- adjust PPPM coeffs, called initially and whenever volume has changed ------------------------------------------------------------------------- */ void PPPM::setup() { if (triclinic) { setup_triclinic(); return; } int i,j,k,n; double *prd; // volume-dependent factors // adjust z dimension for 2d slab PPPM // z dimension for 3d PPPM is zprd since slab_volfactor = 1.0 if (triclinic == 0) prd = domain->prd; else prd = domain->prd_lamda; double xprd = prd[0]; double yprd = prd[1]; double zprd = prd[2]; double zprd_slab = zprd*slab_volfactor; volume = xprd * yprd * zprd_slab; delxinv = nx_pppm/xprd; delyinv = ny_pppm/yprd; delzinv = nz_pppm/zprd_slab; delvolinv = delxinv*delyinv*delzinv; double unitkx = (MY_2PI/xprd); double unitky = (MY_2PI/yprd); double unitkz = (MY_2PI/zprd_slab); // fkx,fky,fkz for my FFT grid pts double per; for (i = nxlo_fft; i <= nxhi_fft; i++) { per = i - nx_pppm*(2*i/nx_pppm); fkx[i] = unitkx*per; } for (i = nylo_fft; i <= nyhi_fft; i++) { per = i - ny_pppm*(2*i/ny_pppm); fky[i] = unitky*per; } for (i = nzlo_fft; i <= nzhi_fft; i++) { per = i - nz_pppm*(2*i/nz_pppm); fkz[i] = unitkz*per; } // virial coefficients double sqk,vterm; n = 0; for (k = nzlo_fft; k <= nzhi_fft; k++) { for (j = nylo_fft; j <= nyhi_fft; j++) { for (i = nxlo_fft; i <= nxhi_fft; i++) { sqk = fkx[i]*fkx[i] + fky[j]*fky[j] + fkz[k]*fkz[k]; if (sqk == 0.0) { vg[n][0] = 0.0; vg[n][1] = 0.0; vg[n][2] = 0.0; vg[n][3] = 0.0; vg[n][4] = 0.0; vg[n][5] = 0.0; } else { vterm = -2.0 * (1.0/sqk + 0.25/(g_ewald*g_ewald)); vg[n][0] = 1.0 + vterm*fkx[i]*fkx[i]; vg[n][1] = 1.0 + vterm*fky[j]*fky[j]; vg[n][2] = 1.0 + vterm*fkz[k]*fkz[k]; vg[n][3] = vterm*fkx[i]*fky[j]; vg[n][4] = vterm*fkx[i]*fkz[k]; vg[n][5] = vterm*fky[j]*fkz[k]; } n++; } } } if (differentiation_flag == 1) compute_gf_ad(); else compute_gf_ik(); } /* ---------------------------------------------------------------------- adjust PPPM coeffs, called initially and whenever volume has changed for a triclinic system ------------------------------------------------------------------------- */ void PPPM::setup_triclinic() { int i,j,k,n; double *prd; // volume-dependent factors // adjust z dimension for 2d slab PPPM // z dimension for 3d PPPM is zprd since slab_volfactor = 1.0 prd = domain->prd; double xprd = prd[0]; double yprd = prd[1]; double zprd = prd[2]; double zprd_slab = zprd*slab_volfactor; volume = xprd * yprd * zprd_slab; // use lamda (0-1) coordinates delxinv = nx_pppm; delyinv = ny_pppm; delzinv = nz_pppm; delvolinv = delxinv*delyinv*delzinv/volume; // fkx,fky,fkz for my FFT grid pts double per_i,per_j,per_k; n = 0; for (k = nzlo_fft; k <= nzhi_fft; k++) { per_k = k - nz_pppm*(2*k/nz_pppm); for (j = nylo_fft; j <= nyhi_fft; j++) { per_j = j - ny_pppm*(2*j/ny_pppm); for (i = nxlo_fft; i <= nxhi_fft; i++) { per_i = i - nx_pppm*(2*i/nx_pppm); double unitk_lamda[3]; unitk_lamda[0] = 2.0*MY_PI*per_i; unitk_lamda[1] = 2.0*MY_PI*per_j; unitk_lamda[2] = 2.0*MY_PI*per_k; x2lamdaT(&unitk_lamda[0],&unitk_lamda[0]); fkx[n] = unitk_lamda[0]; fky[n] = unitk_lamda[1]; fkz[n] = unitk_lamda[2]; n++; } } } // virial coefficients double sqk,vterm; for (n = 0; n < nfft; n++) { sqk = fkx[n]*fkx[n] + fky[n]*fky[n] + fkz[n]*fkz[n]; if (sqk == 0.0) { vg[n][0] = 0.0; vg[n][1] = 0.0; vg[n][2] = 0.0; vg[n][3] = 0.0; vg[n][4] = 0.0; vg[n][5] = 0.0; } else { vterm = -2.0 * (1.0/sqk + 0.25/(g_ewald*g_ewald)); vg[n][0] = 1.0 + vterm*fkx[n]*fkx[n]; vg[n][1] = 1.0 + vterm*fky[n]*fky[n]; vg[n][2] = 1.0 + vterm*fkz[n]*fkz[n]; vg[n][3] = vterm*fkx[n]*fky[n]; vg[n][4] = vterm*fkx[n]*fkz[n]; vg[n][5] = vterm*fky[n]*fkz[n]; } } compute_gf_ik_triclinic(); } /* ---------------------------------------------------------------------- reset local grid arrays and communication stencils called by fix balance b/c it changed sizes of processor sub-domains ------------------------------------------------------------------------- */ void PPPM::setup_grid() { // free all arrays previously allocated deallocate(); if (peratom_allocate_flag) deallocate_peratom(); if (group_allocate_flag) deallocate_groups(); // reset portion of global grid that each proc owns set_grid_local(); // reallocate K-space dependent memory // check if grid communication is now overlapping if not allowed // don't invoke allocate peratom() or group(), will be allocated when needed allocate(); cg->ghost_notify(); if (overlap_allowed == 0 && cg->ghost_overlap()) error->all(FLERR,"PPPM grid stencil extends " "beyond nearest neighbor processor"); cg->setup(); // pre-compute Green's function denomiator expansion // pre-compute 1d charge distribution coefficients compute_gf_denom(); if (differentiation_flag == 1) compute_sf_precoeff(); compute_rho_coeff(); // pre-compute volume-dependent coeffs setup(); } /* ---------------------------------------------------------------------- compute the PPPM long-range force, energy, virial ------------------------------------------------------------------------- */ void PPPM::compute(int eflag, int vflag) { int i,j; // set energy/virial flags // invoke allocate_peratom() if needed for first time if (eflag || vflag) ev_setup(eflag,vflag); else evflag = evflag_atom = eflag_global = vflag_global = eflag_atom = vflag_atom = 0; if (evflag_atom && !peratom_allocate_flag) { allocate_peratom(); cg_peratom->ghost_notify(); cg_peratom->setup(); } // convert atoms from box to lamda coords if (triclinic == 0) boxlo = domain->boxlo; else { boxlo = domain->boxlo_lamda; domain->x2lamda(atom->nlocal); } // extend size of per-atom arrays if necessary if (atom->nlocal > nmax) { memory->destroy(part2grid); nmax = atom->nmax; memory->create(part2grid,nmax,3,"pppm:part2grid"); } // find grid points for all my particles // map my particle charge onto my local 3d density grid particle_map(); make_rho(); // all procs communicate density values from their ghost cells // to fully sum contribution in their 3d bricks // remap from 3d decomposition to FFT decomposition cg->reverse_comm(this,REVERSE_RHO); brick2fft(); // compute potential gradient on my FFT grid and // portion of e_long on this proc's FFT grid // return gradients (electric fields) in 3d brick decomposition // also performs per-atom calculations via poisson_peratom() poisson(); // all procs communicate E-field values // to fill ghost cells surrounding their 3d bricks if (differentiation_flag == 1) cg->forward_comm(this,FORWARD_AD); else cg->forward_comm(this,FORWARD_IK); // extra per-atom energy/virial communication if (evflag_atom) { if (differentiation_flag == 1 && vflag_atom) cg_peratom->forward_comm(this,FORWARD_AD_PERATOM); else if (differentiation_flag == 0) cg_peratom->forward_comm(this,FORWARD_IK_PERATOM); } // calculate the force on my particles fieldforce(); // extra per-atom energy/virial communication if (evflag_atom) fieldforce_peratom(); // update qsum and qsqsum, if needed if (eflag_global || eflag_atom) { if (qsum_update_flag || (atom->natoms != natoms_original)) { qsum_qsq(0); natoms_original = atom->natoms; } } // sum global energy across procs and add in volume-dependent term const double qscale = qqrd2e * scale; if (eflag_global) { double energy_all; MPI_Allreduce(&energy,&energy_all,1,MPI_DOUBLE,MPI_SUM,world); energy = energy_all; energy *= 0.5*volume; energy -= g_ewald*qsqsum/MY_PIS + MY_PI2*qsum*qsum / (g_ewald*g_ewald*volume); energy *= qscale; } // sum global virial across procs if (vflag_global) { double virial_all[6]; MPI_Allreduce(virial,virial_all,6,MPI_DOUBLE,MPI_SUM,world); for (i = 0; i < 6; i++) virial[i] = 0.5*qscale*volume*virial_all[i]; } // per-atom energy/virial // energy includes self-energy correction // notal accounts for TIP4P tallying eatom/vatom for ghost atoms if (evflag_atom) { double *q = atom->q; int nlocal = atom->nlocal; int ntotal = nlocal; if (tip4pflag) ntotal += atom->nghost; if (eflag_atom) { for (i = 0; i < nlocal; i++) { eatom[i] *= 0.5; eatom[i] -= g_ewald*q[i]*q[i]/MY_PIS + MY_PI2*q[i]*qsum / (g_ewald*g_ewald*volume); eatom[i] *= qscale; } for (i = nlocal; i < ntotal; i++) eatom[i] *= 0.5*qscale; } if (vflag_atom) { for (i = 0; i < ntotal; i++) for (j = 0; j < 6; j++) vatom[i][j] *= 0.5*qscale; } } // 2d slab correction if (slabflag == 1) slabcorr(); // convert atoms back from lamda to box coords if (triclinic) domain->lamda2x(atom->nlocal); } /* ---------------------------------------------------------------------- allocate memory that depends on # of K-vectors and order ------------------------------------------------------------------------- */ void PPPM::allocate() { memory->create3d_offset(density_brick,nzlo_out,nzhi_out,nylo_out,nyhi_out, nxlo_out,nxhi_out,"pppm:density_brick"); memory->create(density_fft,nfft_both,"pppm:density_fft"); memory->create(greensfn,nfft_both,"pppm:greensfn"); memory->create(work1,2*nfft_both,"pppm:work1"); memory->create(work2,2*nfft_both,"pppm:work2"); memory->create(vg,nfft_both,6,"pppm:vg"); if (triclinic == 0) { memory->create1d_offset(fkx,nxlo_fft,nxhi_fft,"pppm:fkx"); memory->create1d_offset(fky,nylo_fft,nyhi_fft,"pppm:fky"); memory->create1d_offset(fkz,nzlo_fft,nzhi_fft,"pppm:fkz"); } else { memory->create(fkx,nfft_both,"pppm:fkx"); memory->create(fky,nfft_both,"pppm:fky"); memory->create(fkz,nfft_both,"pppm:fkz"); } if (differentiation_flag == 1) { memory->create3d_offset(u_brick,nzlo_out,nzhi_out,nylo_out,nyhi_out, nxlo_out,nxhi_out,"pppm:u_brick"); memory->create(sf_precoeff1,nfft_both,"pppm:sf_precoeff1"); memory->create(sf_precoeff2,nfft_both,"pppm:sf_precoeff2"); memory->create(sf_precoeff3,nfft_both,"pppm:sf_precoeff3"); memory->create(sf_precoeff4,nfft_both,"pppm:sf_precoeff4"); memory->create(sf_precoeff5,nfft_both,"pppm:sf_precoeff5"); memory->create(sf_precoeff6,nfft_both,"pppm:sf_precoeff6"); } else { memory->create3d_offset(vdx_brick,nzlo_out,nzhi_out,nylo_out,nyhi_out, nxlo_out,nxhi_out,"pppm:vdx_brick"); memory->create3d_offset(vdy_brick,nzlo_out,nzhi_out,nylo_out,nyhi_out, nxlo_out,nxhi_out,"pppm:vdy_brick"); memory->create3d_offset(vdz_brick,nzlo_out,nzhi_out,nylo_out,nyhi_out, nxlo_out,nxhi_out,"pppm:vdz_brick"); } // summation coeffs order_allocated = order; if (!stagger_flag) memory->create(gf_b,order,"pppm:gf_b"); memory->create2d_offset(rho1d,3,-order/2,order/2,"pppm:rho1d"); memory->create2d_offset(drho1d,3,-order/2,order/2,"pppm:drho1d"); memory->create2d_offset(rho_coeff,order,(1-order)/2,order/2,"pppm:rho_coeff"); memory->create2d_offset(drho_coeff,order,(1-order)/2,order/2, "pppm:drho_coeff"); // create 2 FFTs and a Remap // 1st FFT keeps data in FFT decompostion // 2nd FFT returns data in 3d brick decomposition // remap takes data from 3d brick to FFT decomposition int tmp; fft1 = new FFT3d(lmp,world,nx_pppm,ny_pppm,nz_pppm, nxlo_fft,nxhi_fft,nylo_fft,nyhi_fft,nzlo_fft,nzhi_fft, nxlo_fft,nxhi_fft,nylo_fft,nyhi_fft,nzlo_fft,nzhi_fft, 0,0,&tmp,collective_flag); fft2 = new FFT3d(lmp,world,nx_pppm,ny_pppm,nz_pppm, nxlo_fft,nxhi_fft,nylo_fft,nyhi_fft,nzlo_fft,nzhi_fft, nxlo_in,nxhi_in,nylo_in,nyhi_in,nzlo_in,nzhi_in, 0,0,&tmp,collective_flag); remap = new Remap(lmp,world, nxlo_in,nxhi_in,nylo_in,nyhi_in,nzlo_in,nzhi_in, nxlo_fft,nxhi_fft,nylo_fft,nyhi_fft,nzlo_fft,nzhi_fft, 1,0,0,FFT_PRECISION,collective_flag); // create ghost grid object for rho and electric field communication int (*procneigh)[2] = comm->procneigh; if (differentiation_flag == 1) cg = new GridComm(lmp,world,1,1, nxlo_in,nxhi_in,nylo_in,nyhi_in,nzlo_in,nzhi_in, nxlo_out,nxhi_out,nylo_out,nyhi_out,nzlo_out,nzhi_out, procneigh[0][0],procneigh[0][1],procneigh[1][0], procneigh[1][1],procneigh[2][0],procneigh[2][1]); else cg = new GridComm(lmp,world,3,1, nxlo_in,nxhi_in,nylo_in,nyhi_in,nzlo_in,nzhi_in, nxlo_out,nxhi_out,nylo_out,nyhi_out,nzlo_out,nzhi_out, procneigh[0][0],procneigh[0][1],procneigh[1][0], procneigh[1][1],procneigh[2][0],procneigh[2][1]); } /* ---------------------------------------------------------------------- deallocate memory that depends on # of K-vectors and order ------------------------------------------------------------------------- */ void PPPM::deallocate() { memory->destroy3d_offset(density_brick,nzlo_out,nylo_out,nxlo_out); if (differentiation_flag == 1) { memory->destroy3d_offset(u_brick,nzlo_out,nylo_out,nxlo_out); memory->destroy(sf_precoeff1); memory->destroy(sf_precoeff2); memory->destroy(sf_precoeff3); memory->destroy(sf_precoeff4); memory->destroy(sf_precoeff5); memory->destroy(sf_precoeff6); } else { memory->destroy3d_offset(vdx_brick,nzlo_out,nylo_out,nxlo_out); memory->destroy3d_offset(vdy_brick,nzlo_out,nylo_out,nxlo_out); memory->destroy3d_offset(vdz_brick,nzlo_out,nylo_out,nxlo_out); } memory->destroy(density_fft); memory->destroy(greensfn); memory->destroy(work1); memory->destroy(work2); memory->destroy(vg); if (triclinic == 0) { memory->destroy1d_offset(fkx,nxlo_fft); memory->destroy1d_offset(fky,nylo_fft); memory->destroy1d_offset(fkz,nzlo_fft); } else { memory->destroy(fkx); memory->destroy(fky); memory->destroy(fkz); } memory->destroy(gf_b); if (stagger_flag) gf_b = NULL; memory->destroy2d_offset(rho1d,-order_allocated/2); memory->destroy2d_offset(drho1d,-order_allocated/2); memory->destroy2d_offset(rho_coeff,(1-order_allocated)/2); memory->destroy2d_offset(drho_coeff,(1-order_allocated)/2); delete fft1; delete fft2; delete remap; delete cg; } /* ---------------------------------------------------------------------- allocate per-atom memory that depends on # of K-vectors and order ------------------------------------------------------------------------- */ void PPPM::allocate_peratom() { peratom_allocate_flag = 1; if (differentiation_flag != 1) memory->create3d_offset(u_brick,nzlo_out,nzhi_out,nylo_out,nyhi_out, nxlo_out,nxhi_out,"pppm:u_brick"); memory->create3d_offset(v0_brick,nzlo_out,nzhi_out,nylo_out,nyhi_out, nxlo_out,nxhi_out,"pppm:v0_brick"); memory->create3d_offset(v1_brick,nzlo_out,nzhi_out,nylo_out,nyhi_out, nxlo_out,nxhi_out,"pppm:v1_brick"); memory->create3d_offset(v2_brick,nzlo_out,nzhi_out,nylo_out,nyhi_out, nxlo_out,nxhi_out,"pppm:v2_brick"); memory->create3d_offset(v3_brick,nzlo_out,nzhi_out,nylo_out,nyhi_out, nxlo_out,nxhi_out,"pppm:v3_brick"); memory->create3d_offset(v4_brick,nzlo_out,nzhi_out,nylo_out,nyhi_out, nxlo_out,nxhi_out,"pppm:v4_brick"); memory->create3d_offset(v5_brick,nzlo_out,nzhi_out,nylo_out,nyhi_out, nxlo_out,nxhi_out,"pppm:v5_brick"); // create ghost grid object for rho and electric field communication int (*procneigh)[2] = comm->procneigh; if (differentiation_flag == 1) cg_peratom = new GridComm(lmp,world,6,1, nxlo_in,nxhi_in,nylo_in,nyhi_in,nzlo_in,nzhi_in, nxlo_out,nxhi_out,nylo_out,nyhi_out,nzlo_out,nzhi_out, procneigh[0][0],procneigh[0][1],procneigh[1][0], procneigh[1][1],procneigh[2][0],procneigh[2][1]); else cg_peratom = new GridComm(lmp,world,7,1, nxlo_in,nxhi_in,nylo_in,nyhi_in,nzlo_in,nzhi_in, nxlo_out,nxhi_out,nylo_out,nyhi_out,nzlo_out,nzhi_out, procneigh[0][0],procneigh[0][1],procneigh[1][0], procneigh[1][1],procneigh[2][0],procneigh[2][1]); } /* ---------------------------------------------------------------------- deallocate per-atom memory that depends on # of K-vectors and order ------------------------------------------------------------------------- */ void PPPM::deallocate_peratom() { peratom_allocate_flag = 0; memory->destroy3d_offset(v0_brick,nzlo_out,nylo_out,nxlo_out); memory->destroy3d_offset(v1_brick,nzlo_out,nylo_out,nxlo_out); memory->destroy3d_offset(v2_brick,nzlo_out,nylo_out,nxlo_out); memory->destroy3d_offset(v3_brick,nzlo_out,nylo_out,nxlo_out); memory->destroy3d_offset(v4_brick,nzlo_out,nylo_out,nxlo_out); memory->destroy3d_offset(v5_brick,nzlo_out,nylo_out,nxlo_out); if (differentiation_flag != 1) memory->destroy3d_offset(u_brick,nzlo_out,nylo_out,nxlo_out); delete cg_peratom; } /* ---------------------------------------------------------------------- set global size of PPPM grid = nx,ny,nz_pppm used for charge accumulation, FFTs, and electric field interpolation ------------------------------------------------------------------------- */ void PPPM::set_grid_global() { // use xprd,yprd,zprd (even if triclinic, and then scale later) // adjust z dimension for 2d slab PPPM // 3d PPPM just uses zprd since slab_volfactor = 1.0 double xprd = domain->xprd; double yprd = domain->yprd; double zprd = domain->zprd; double zprd_slab = zprd*slab_volfactor; // make initial g_ewald estimate // based on desired accuracy and real space cutoff // fluid-occupied volume used to estimate real-space error // zprd used rather than zprd_slab double h; bigint natoms = atom->natoms; if (!gewaldflag) { if (accuracy <= 0.0) error->all(FLERR,"KSpace accuracy must be > 0"); g_ewald = accuracy*sqrt(natoms*cutoff*xprd*yprd*zprd) / (2.0*q2); if (g_ewald >= 1.0) g_ewald = (1.35 - 0.15*log(accuracy))/cutoff; else g_ewald = sqrt(-log(g_ewald)) / cutoff; } // set optimal nx_pppm,ny_pppm,nz_pppm based on order and accuracy // nz_pppm uses extended zprd_slab instead of zprd // reduce it until accuracy target is met if (!gridflag) { if (differentiation_flag == 1 || stagger_flag) { h = h_x = h_y = h_z = 4.0/g_ewald; int count = 0; while (1) { // set grid dimension nx_pppm = static_cast<int> (xprd/h_x); ny_pppm = static_cast<int> (yprd/h_y); nz_pppm = static_cast<int> (zprd_slab/h_z); if (nx_pppm <= 1) nx_pppm = 2; if (ny_pppm <= 1) ny_pppm = 2; if (nz_pppm <= 1) nz_pppm = 2; //set local grid dimension int npey_fft,npez_fft; if (nz_pppm >= nprocs) { npey_fft = 1; npez_fft = nprocs; } else procs2grid2d(nprocs,ny_pppm,nz_pppm,&npey_fft,&npez_fft); int me_y = me % npey_fft; int me_z = me / npey_fft; nxlo_fft = 0; nxhi_fft = nx_pppm - 1; nylo_fft = me_y*ny_pppm/npey_fft; nyhi_fft = (me_y+1)*ny_pppm/npey_fft - 1; nzlo_fft = me_z*nz_pppm/npez_fft; nzhi_fft = (me_z+1)*nz_pppm/npez_fft - 1; double df_kspace = compute_df_kspace(); count++; // break loop if the accuracy has been reached or // too many loops have been performed if (df_kspace <= accuracy) break; if (count > 500) error->all(FLERR, "Could not compute grid size"); h *= 0.95; h_x = h_y = h_z = h; } } else { double err; h_x = h_y = h_z = 1.0/g_ewald; nx_pppm = static_cast<int> (xprd/h_x) + 1; ny_pppm = static_cast<int> (yprd/h_y) + 1; nz_pppm = static_cast<int> (zprd_slab/h_z) + 1; err = estimate_ik_error(h_x,xprd,natoms); while (err > accuracy) { err = estimate_ik_error(h_x,xprd,natoms); nx_pppm++; h_x = xprd/nx_pppm; } err = estimate_ik_error(h_y,yprd,natoms); while (err > accuracy) { err = estimate_ik_error(h_y,yprd,natoms); ny_pppm++; h_y = yprd/ny_pppm; } err = estimate_ik_error(h_z,zprd_slab,natoms); while (err > accuracy) { err = estimate_ik_error(h_z,zprd_slab,natoms); nz_pppm++; h_z = zprd_slab/nz_pppm; } } // scale grid for triclinic skew if (triclinic) { double tmp[3]; tmp[0] = nx_pppm/xprd; tmp[1] = ny_pppm/yprd; tmp[2] = nz_pppm/zprd; lamda2xT(&tmp[0],&tmp[0]); nx_pppm = static_cast<int>(tmp[0]) + 1; ny_pppm = static_cast<int>(tmp[1]) + 1; nz_pppm = static_cast<int>(tmp[2]) + 1; } } // boost grid size until it is factorable while (!factorable(nx_pppm)) nx_pppm++; while (!factorable(ny_pppm)) ny_pppm++; while (!factorable(nz_pppm)) nz_pppm++; if (triclinic == 0) { h_x = xprd/nx_pppm; h_y = yprd/ny_pppm; h_z = zprd_slab/nz_pppm; } else { double tmp[3]; tmp[0] = nx_pppm; tmp[1] = ny_pppm; tmp[2] = nz_pppm; x2lamdaT(&tmp[0],&tmp[0]); h_x = 1.0/tmp[0]; h_y = 1.0/tmp[1]; h_z = 1.0/tmp[2]; } if (nx_pppm >= OFFSET || ny_pppm >= OFFSET || nz_pppm >= OFFSET) error->all(FLERR,"PPPM grid is too large"); } /* ---------------------------------------------------------------------- check if all factors of n are in list of factors return 1 if yes, 0 if no ------------------------------------------------------------------------- */ int PPPM::factorable(int n) { int i; while (n > 1) { for (i = 0; i < nfactors; i++) { if (n % factors[i] == 0) { n /= factors[i]; break; } } if (i == nfactors) return 0; } return 1; } /* ---------------------------------------------------------------------- compute estimated kspace force error ------------------------------------------------------------------------- */ double PPPM::compute_df_kspace() { double xprd = domain->xprd; double yprd = domain->yprd; double zprd = domain->zprd; double zprd_slab = zprd*slab_volfactor; bigint natoms = atom->natoms; double df_kspace = 0.0; if (differentiation_flag == 1 || stagger_flag) { double qopt = compute_qopt(); df_kspace = sqrt(qopt/natoms)*q2/(xprd*yprd*zprd_slab); } else { double lprx = estimate_ik_error(h_x,xprd,natoms); double lpry = estimate_ik_error(h_y,yprd,natoms); double lprz = estimate_ik_error(h_z,zprd_slab,natoms); df_kspace = sqrt(lprx*lprx + lpry*lpry + lprz*lprz) / sqrt(3.0); } return df_kspace; } /* ---------------------------------------------------------------------- compute qopt ------------------------------------------------------------------------- */ double PPPM::compute_qopt() { double qopt = 0.0; double *prd = domain->prd; const double xprd = prd[0]; const double yprd = prd[1]; const double zprd = prd[2]; const double zprd_slab = zprd*slab_volfactor; volume = xprd * yprd * zprd_slab; const double unitkx = (MY_2PI/xprd); const double unitky = (MY_2PI/yprd); const double unitkz = (MY_2PI/zprd_slab); double argx,argy,argz,wx,wy,wz,sx,sy,sz,qx,qy,qz; double u1, u2, sqk; double sum1,sum2,sum3,sum4,dot2; int k,l,m,nx,ny,nz; const int twoorder = 2*order; for (m = nzlo_fft; m <= nzhi_fft; m++) { const int mper = m - nz_pppm*(2*m/nz_pppm); for (l = nylo_fft; l <= nyhi_fft; l++) { const int lper = l - ny_pppm*(2*l/ny_pppm); for (k = nxlo_fft; k <= nxhi_fft; k++) { const int kper = k - nx_pppm*(2*k/nx_pppm); sqk = square(unitkx*kper) + square(unitky*lper) + square(unitkz*mper); if (sqk != 0.0) { sum1 = 0.0; sum2 = 0.0; sum3 = 0.0; sum4 = 0.0; for (nx = -2; nx <= 2; nx++) { qx = unitkx*(kper+nx_pppm*nx); sx = exp(-0.25*square(qx/g_ewald)); argx = 0.5*qx*xprd/nx_pppm; wx = powsinxx(argx,twoorder); qx *= qx; for (ny = -2; ny <= 2; ny++) { qy = unitky*(lper+ny_pppm*ny); sy = exp(-0.25*square(qy/g_ewald)); argy = 0.5*qy*yprd/ny_pppm; wy = powsinxx(argy,twoorder); qy *= qy; for (nz = -2; nz <= 2; nz++) { qz = unitkz*(mper+nz_pppm*nz); sz = exp(-0.25*square(qz/g_ewald)); argz = 0.5*qz*zprd_slab/nz_pppm; wz = powsinxx(argz,twoorder); qz *= qz; dot2 = qx+qy+qz; u1 = sx*sy*sz; u2 = wx*wy*wz; sum1 += u1*u1/dot2*MY_4PI*MY_4PI; sum2 += u1 * u2 * MY_4PI; sum3 += u2; sum4 += dot2*u2; } } } sum2 *= sum2; qopt += sum1 - sum2/(sum3*sum4); } } } } double qopt_all; MPI_Allreduce(&qopt,&qopt_all,1,MPI_DOUBLE,MPI_SUM,world); return qopt_all; } /* ---------------------------------------------------------------------- estimate kspace force error for ik method ------------------------------------------------------------------------- */ double PPPM::estimate_ik_error(double h, double prd, bigint natoms) { double sum = 0.0; for (int m = 0; m < order; m++) sum += acons[order][m] * pow(h*g_ewald,2.0*m); double value = q2 * pow(h*g_ewald,(double)order) * sqrt(g_ewald*prd*sqrt(MY_2PI)*sum/natoms) / (prd*prd); return value; } /* ---------------------------------------------------------------------- adjust the g_ewald parameter to near its optimal value using a Newton-Raphson solver ------------------------------------------------------------------------- */ void PPPM::adjust_gewald() { double dx; for (int i = 0; i < LARGE; i++) { dx = newton_raphson_f() / derivf(); g_ewald -= dx; if (fabs(newton_raphson_f()) < SMALL) return; } char str[128]; sprintf(str, "Could not compute g_ewald"); error->all(FLERR, str); } /* ---------------------------------------------------------------------- calculate f(x) using Newton-Raphson solver ------------------------------------------------------------------------- */ double PPPM::newton_raphson_f() { double xprd = domain->xprd; double yprd = domain->yprd; double zprd = domain->zprd; bigint natoms = atom->natoms; double df_rspace = 2.0*q2*exp(-g_ewald*g_ewald*cutoff*cutoff) / sqrt(natoms*cutoff*xprd*yprd*zprd); double df_kspace = compute_df_kspace(); return df_rspace - df_kspace; } /* ---------------------------------------------------------------------- calculate numerical derivative f'(x) using forward difference [f(x + h) - f(x)] / h ------------------------------------------------------------------------- */ double PPPM::derivf() { double h = 0.000001; //Derivative step-size double df,f1,f2,g_ewald_old; f1 = newton_raphson_f(); g_ewald_old = g_ewald; g_ewald += h; f2 = newton_raphson_f(); g_ewald = g_ewald_old; df = (f2 - f1)/h; return df; } /* ---------------------------------------------------------------------- calculate the final estimate of the accuracy ------------------------------------------------------------------------- */ double PPPM::final_accuracy() { double xprd = domain->xprd; double yprd = domain->yprd; double zprd = domain->zprd; bigint natoms = atom->natoms; double df_kspace = compute_df_kspace(); double q2_over_sqrt = q2 / sqrt(natoms*cutoff*xprd*yprd*zprd); double df_rspace = 2.0 * q2_over_sqrt * exp(-g_ewald*g_ewald*cutoff*cutoff); double df_table = estimate_table_accuracy(q2_over_sqrt,df_rspace); double estimated_accuracy = sqrt(df_kspace*df_kspace + df_rspace*df_rspace + df_table*df_table); return estimated_accuracy; } /* ---------------------------------------------------------------------- set local subset of PPPM/FFT grid that I own n xyz lo/hi in = 3d brick that I own (inclusive) n xyz lo/hi out = 3d brick + ghost cells in 6 directions (inclusive) n xyz lo/hi fft = FFT columns that I own (all of x dim, 2d decomp in yz) ------------------------------------------------------------------------- */ void PPPM::set_grid_local() { // global indices of PPPM grid range from 0 to N-1 // nlo_in,nhi_in = lower/upper limits of the 3d sub-brick of // global PPPM grid that I own without ghost cells // for slab PPPM, assign z grid as if it were not extended nxlo_in = static_cast<int> (comm->xsplit[comm->myloc[0]] * nx_pppm); nxhi_in = static_cast<int> (comm->xsplit[comm->myloc[0]+1] * nx_pppm) - 1; nylo_in = static_cast<int> (comm->ysplit[comm->myloc[1]] * ny_pppm); nyhi_in = static_cast<int> (comm->ysplit[comm->myloc[1]+1] * ny_pppm) - 1; nzlo_in = static_cast<int> (comm->zsplit[comm->myloc[2]] * nz_pppm/slab_volfactor); nzhi_in = static_cast<int> (comm->zsplit[comm->myloc[2]+1] * nz_pppm/slab_volfactor) - 1; // nlower,nupper = stencil size for mapping particles to PPPM grid nlower = -(order-1)/2; nupper = order/2; // shift values for particle <-> grid mapping // add/subtract OFFSET to avoid int(-0.75) = 0 when want it to be -1 if (order % 2) shift = OFFSET + 0.5; else shift = OFFSET; if (order % 2) shiftone = 0.0; else shiftone = 0.5; // nlo_out,nhi_out = lower/upper limits of the 3d sub-brick of // global PPPM grid that my particles can contribute charge to // effectively nlo_in,nhi_in + ghost cells // nlo,nhi = global coords of grid pt to "lower left" of smallest/largest // position a particle in my box can be at // dist[3] = particle position bound = subbox + skin/2.0 + qdist // qdist = offset due to TIP4P fictitious charge // convert to triclinic if necessary // nlo_out,nhi_out = nlo,nhi + stencil size for particle mapping // for slab PPPM, assign z grid as if it were not extended double *prd,*sublo,*subhi; if (triclinic == 0) { prd = domain->prd; boxlo = domain->boxlo; sublo = domain->sublo; subhi = domain->subhi; } else { prd = domain->prd_lamda; boxlo = domain->boxlo_lamda; sublo = domain->sublo_lamda; subhi = domain->subhi_lamda; } double xprd = prd[0]; double yprd = prd[1]; double zprd = prd[2]; double zprd_slab = zprd*slab_volfactor; double dist[3]; double cuthalf = 0.5*neighbor->skin + qdist; if (triclinic == 0) dist[0] = dist[1] = dist[2] = cuthalf; else kspacebbox(cuthalf,&dist[0]); int nlo,nhi; nlo = static_cast<int> ((sublo[0]-dist[0]-boxlo[0]) * nx_pppm/xprd + shift) - OFFSET; nhi = static_cast<int> ((subhi[0]+dist[0]-boxlo[0]) * nx_pppm/xprd + shift) - OFFSET; nxlo_out = nlo + nlower; nxhi_out = nhi + nupper; nlo = static_cast<int> ((sublo[1]-dist[1]-boxlo[1]) * ny_pppm/yprd + shift) - OFFSET; nhi = static_cast<int> ((subhi[1]+dist[1]-boxlo[1]) * ny_pppm/yprd + shift) - OFFSET; nylo_out = nlo + nlower; nyhi_out = nhi + nupper; nlo = static_cast<int> ((sublo[2]-dist[2]-boxlo[2]) * nz_pppm/zprd_slab + shift) - OFFSET; nhi = static_cast<int> ((subhi[2]+dist[2]-boxlo[2]) * nz_pppm/zprd_slab + shift) - OFFSET; nzlo_out = nlo + nlower; nzhi_out = nhi + nupper; if (stagger_flag) { nxhi_out++; nyhi_out++; nzhi_out++; } // for slab PPPM, change the grid boundary for processors at +z end // to include the empty volume between periodically repeating slabs // for slab PPPM, want charge data communicated from -z proc to +z proc, // but not vice versa, also want field data communicated from +z proc to // -z proc, but not vice versa // this is accomplished by nzhi_in = nzhi_out on +z end (no ghost cells) // also insure no other procs use ghost cells beyond +z limit if (slabflag == 1) { if (comm->myloc[2] == comm->procgrid[2]-1) nzhi_in = nzhi_out = nz_pppm - 1; nzhi_out = MIN(nzhi_out,nz_pppm-1); } // decomposition of FFT mesh // global indices range from 0 to N-1 // proc owns entire x-dimension, clumps of columns in y,z dimensions // npey_fft,npez_fft = # of procs in y,z dims // if nprocs is small enough, proc can own 1 or more entire xy planes, // else proc owns 2d sub-blocks of yz plane // me_y,me_z = which proc (0-npe_fft-1) I am in y,z dimensions // nlo_fft,nhi_fft = lower/upper limit of the section // of the global FFT mesh that I own int npey_fft,npez_fft; if (nz_pppm >= nprocs) { npey_fft = 1; npez_fft = nprocs; } else procs2grid2d(nprocs,ny_pppm,nz_pppm,&npey_fft,&npez_fft); int me_y = me % npey_fft; int me_z = me / npey_fft; nxlo_fft = 0; nxhi_fft = nx_pppm - 1; nylo_fft = me_y*ny_pppm/npey_fft; nyhi_fft = (me_y+1)*ny_pppm/npey_fft - 1; nzlo_fft = me_z*nz_pppm/npez_fft; nzhi_fft = (me_z+1)*nz_pppm/npez_fft - 1; // PPPM grid pts owned by this proc, including ghosts ngrid = (nxhi_out-nxlo_out+1) * (nyhi_out-nylo_out+1) * (nzhi_out-nzlo_out+1); // FFT grids owned by this proc, without ghosts // nfft = FFT points in FFT decomposition on this proc // nfft_brick = FFT points in 3d brick-decomposition on this proc // nfft_both = greater of 2 values nfft = (nxhi_fft-nxlo_fft+1) * (nyhi_fft-nylo_fft+1) * (nzhi_fft-nzlo_fft+1); int nfft_brick = (nxhi_in-nxlo_in+1) * (nyhi_in-nylo_in+1) * (nzhi_in-nzlo_in+1); nfft_both = MAX(nfft,nfft_brick); } /* ---------------------------------------------------------------------- pre-compute Green's function denominator expansion coeffs, Gamma(2n) ------------------------------------------------------------------------- */ void PPPM::compute_gf_denom() { int k,l,m; for (l = 1; l < order; l++) gf_b[l] = 0.0; gf_b[0] = 1.0; for (m = 1; m < order; m++) { for (l = m; l > 0; l--) gf_b[l] = 4.0 * (gf_b[l]*(l-m)*(l-m-0.5)-gf_b[l-1]*(l-m-1)*(l-m-1)); gf_b[0] = 4.0 * (gf_b[0]*(l-m)*(l-m-0.5)); } bigint ifact = 1; for (k = 1; k < 2*order; k++) ifact *= k; double gaminv = 1.0/ifact; for (l = 0; l < order; l++) gf_b[l] *= gaminv; } /* ---------------------------------------------------------------------- pre-compute modified (Hockney-Eastwood) Coulomb Green's function ------------------------------------------------------------------------- */ void PPPM::compute_gf_ik() { const double * const prd = domain->prd; const double xprd = prd[0]; const double yprd = prd[1]; const double zprd = prd[2]; const double zprd_slab = zprd*slab_volfactor; const double unitkx = (MY_2PI/xprd); const double unitky = (MY_2PI/yprd); const double unitkz = (MY_2PI/zprd_slab); double snx,sny,snz; double argx,argy,argz,wx,wy,wz,sx,sy,sz,qx,qy,qz; double sum1,dot1,dot2; double numerator,denominator; double sqk; int k,l,m,n,nx,ny,nz,kper,lper,mper; const int nbx = static_cast<int> ((g_ewald*xprd/(MY_PI*nx_pppm)) * pow(-log(EPS_HOC),0.25)); const int nby = static_cast<int> ((g_ewald*yprd/(MY_PI*ny_pppm)) * pow(-log(EPS_HOC),0.25)); const int nbz = static_cast<int> ((g_ewald*zprd_slab/(MY_PI*nz_pppm)) * pow(-log(EPS_HOC),0.25)); const int twoorder = 2*order; n = 0; for (m = nzlo_fft; m <= nzhi_fft; m++) { mper = m - nz_pppm*(2*m/nz_pppm); snz = square(sin(0.5*unitkz*mper*zprd_slab/nz_pppm)); for (l = nylo_fft; l <= nyhi_fft; l++) { lper = l - ny_pppm*(2*l/ny_pppm); sny = square(sin(0.5*unitky*lper*yprd/ny_pppm)); for (k = nxlo_fft; k <= nxhi_fft; k++) { kper = k - nx_pppm*(2*k/nx_pppm); snx = square(sin(0.5*unitkx*kper*xprd/nx_pppm)); sqk = square(unitkx*kper) + square(unitky*lper) + square(unitkz*mper); if (sqk != 0.0) { numerator = 12.5663706/sqk; denominator = gf_denom(snx,sny,snz); sum1 = 0.0; for (nx = -nbx; nx <= nbx; nx++) { qx = unitkx*(kper+nx_pppm*nx); sx = exp(-0.25*square(qx/g_ewald)); argx = 0.5*qx*xprd/nx_pppm; wx = powsinxx(argx,twoorder); for (ny = -nby; ny <= nby; ny++) { qy = unitky*(lper+ny_pppm*ny); sy = exp(-0.25*square(qy/g_ewald)); argy = 0.5*qy*yprd/ny_pppm; wy = powsinxx(argy,twoorder); for (nz = -nbz; nz <= nbz; nz++) { qz = unitkz*(mper+nz_pppm*nz); sz = exp(-0.25*square(qz/g_ewald)); argz = 0.5*qz*zprd_slab/nz_pppm; wz = powsinxx(argz,twoorder); dot1 = unitkx*kper*qx + unitky*lper*qy + unitkz*mper*qz; dot2 = qx*qx+qy*qy+qz*qz; sum1 += (dot1/dot2) * sx*sy*sz * wx*wy*wz; } } } greensfn[n++] = numerator*sum1/denominator; } else greensfn[n++] = 0.0; } } } } /* ---------------------------------------------------------------------- pre-compute modified (Hockney-Eastwood) Coulomb Green's function for a triclinic system ------------------------------------------------------------------------- */ void PPPM::compute_gf_ik_triclinic() { double snx,sny,snz; double argx,argy,argz,wx,wy,wz,sx,sy,sz,qx,qy,qz; double sum1,dot1,dot2; double numerator,denominator; double sqk; int k,l,m,n,nx,ny,nz,kper,lper,mper; double tmp[3]; tmp[0] = (g_ewald/(MY_PI*nx_pppm)) * pow(-log(EPS_HOC),0.25); tmp[1] = (g_ewald/(MY_PI*ny_pppm)) * pow(-log(EPS_HOC),0.25); tmp[2] = (g_ewald/(MY_PI*nz_pppm)) * pow(-log(EPS_HOC),0.25); lamda2xT(&tmp[0],&tmp[0]); const int nbx = static_cast<int> (tmp[0]); const int nby = static_cast<int> (tmp[1]); const int nbz = static_cast<int> (tmp[2]); const int twoorder = 2*order; n = 0; for (m = nzlo_fft; m <= nzhi_fft; m++) { mper = m - nz_pppm*(2*m/nz_pppm); snz = square(sin(MY_PI*mper/nz_pppm)); for (l = nylo_fft; l <= nyhi_fft; l++) { lper = l - ny_pppm*(2*l/ny_pppm); sny = square(sin(MY_PI*lper/ny_pppm)); for (k = nxlo_fft; k <= nxhi_fft; k++) { kper = k - nx_pppm*(2*k/nx_pppm); snx = square(sin(MY_PI*kper/nx_pppm)); double unitk_lamda[3]; unitk_lamda[0] = 2.0*MY_PI*kper; unitk_lamda[1] = 2.0*MY_PI*lper; unitk_lamda[2] = 2.0*MY_PI*mper; x2lamdaT(&unitk_lamda[0],&unitk_lamda[0]); sqk = square(unitk_lamda[0]) + square(unitk_lamda[1]) + square(unitk_lamda[2]); if (sqk != 0.0) { numerator = 12.5663706/sqk; denominator = gf_denom(snx,sny,snz); sum1 = 0.0; for (nx = -nbx; nx <= nbx; nx++) { argx = MY_PI*kper/nx_pppm + MY_PI*nx; wx = powsinxx(argx,twoorder); for (ny = -nby; ny <= nby; ny++) { argy = MY_PI*lper/ny_pppm + MY_PI*ny; wy = powsinxx(argy,twoorder); for (nz = -nbz; nz <= nbz; nz++) { argz = MY_PI*mper/nz_pppm + MY_PI*nz; wz = powsinxx(argz,twoorder); double b[3]; b[0] = 2.0*MY_PI*nx_pppm*nx; b[1] = 2.0*MY_PI*ny_pppm*ny; b[2] = 2.0*MY_PI*nz_pppm*nz; x2lamdaT(&b[0],&b[0]); qx = unitk_lamda[0]+b[0]; sx = exp(-0.25*square(qx/g_ewald)); qy = unitk_lamda[1]+b[1]; sy = exp(-0.25*square(qy/g_ewald)); qz = unitk_lamda[2]+b[2]; sz = exp(-0.25*square(qz/g_ewald)); dot1 = unitk_lamda[0]*qx + unitk_lamda[1]*qy + unitk_lamda[2]*qz; dot2 = qx*qx+qy*qy+qz*qz; sum1 += (dot1/dot2) * sx*sy*sz * wx*wy*wz; } } } greensfn[n++] = numerator*sum1/denominator; } else greensfn[n++] = 0.0; } } } } /* ---------------------------------------------------------------------- compute optimized Green's function for energy calculation ------------------------------------------------------------------------- */ void PPPM::compute_gf_ad() { const double * const prd = domain->prd; const double xprd = prd[0]; const double yprd = prd[1]; const double zprd = prd[2]; const double zprd_slab = zprd*slab_volfactor; const double unitkx = (MY_2PI/xprd); const double unitky = (MY_2PI/yprd); const double unitkz = (MY_2PI/zprd_slab); double snx,sny,snz,sqk; double argx,argy,argz,wx,wy,wz,sx,sy,sz,qx,qy,qz; double numerator,denominator; int k,l,m,n,kper,lper,mper; const int twoorder = 2*order; for (int i = 0; i < 6; i++) sf_coeff[i] = 0.0; n = 0; for (m = nzlo_fft; m <= nzhi_fft; m++) { mper = m - nz_pppm*(2*m/nz_pppm); qz = unitkz*mper; snz = square(sin(0.5*qz*zprd_slab/nz_pppm)); sz = exp(-0.25*square(qz/g_ewald)); argz = 0.5*qz*zprd_slab/nz_pppm; wz = powsinxx(argz,twoorder); for (l = nylo_fft; l <= nyhi_fft; l++) { lper = l - ny_pppm*(2*l/ny_pppm); qy = unitky*lper; sny = square(sin(0.5*qy*yprd/ny_pppm)); sy = exp(-0.25*square(qy/g_ewald)); argy = 0.5*qy*yprd/ny_pppm; wy = powsinxx(argy,twoorder); for (k = nxlo_fft; k <= nxhi_fft; k++) { kper = k - nx_pppm*(2*k/nx_pppm); qx = unitkx*kper; snx = square(sin(0.5*qx*xprd/nx_pppm)); sx = exp(-0.25*square(qx/g_ewald)); argx = 0.5*qx*xprd/nx_pppm; wx = powsinxx(argx,twoorder); sqk = qx*qx + qy*qy + qz*qz; if (sqk != 0.0) { numerator = MY_4PI/sqk; denominator = gf_denom(snx,sny,snz); greensfn[n] = numerator*sx*sy*sz*wx*wy*wz/denominator; sf_coeff[0] += sf_precoeff1[n]*greensfn[n]; sf_coeff[1] += sf_precoeff2[n]*greensfn[n]; sf_coeff[2] += sf_precoeff3[n]*greensfn[n]; sf_coeff[3] += sf_precoeff4[n]*greensfn[n]; sf_coeff[4] += sf_precoeff5[n]*greensfn[n]; sf_coeff[5] += sf_precoeff6[n]*greensfn[n]; n++; } else { greensfn[n] = 0.0; sf_coeff[0] += sf_precoeff1[n]*greensfn[n]; sf_coeff[1] += sf_precoeff2[n]*greensfn[n]; sf_coeff[2] += sf_precoeff3[n]*greensfn[n]; sf_coeff[3] += sf_precoeff4[n]*greensfn[n]; sf_coeff[4] += sf_precoeff5[n]*greensfn[n]; sf_coeff[5] += sf_precoeff6[n]*greensfn[n]; n++; } } } } // compute the coefficients for the self-force correction double prex, prey, prez; prex = prey = prez = MY_PI/volume; prex *= nx_pppm/xprd; prey *= ny_pppm/yprd; prez *= nz_pppm/zprd_slab; sf_coeff[0] *= prex; sf_coeff[1] *= prex*2; sf_coeff[2] *= prey; sf_coeff[3] *= prey*2; sf_coeff[4] *= prez; sf_coeff[5] *= prez*2; // communicate values with other procs double tmp[6]; MPI_Allreduce(sf_coeff,tmp,6,MPI_DOUBLE,MPI_SUM,world); for (n = 0; n < 6; n++) sf_coeff[n] = tmp[n]; } /* ---------------------------------------------------------------------- compute self force coefficients for ad-differentiation scheme ------------------------------------------------------------------------- */ void PPPM::compute_sf_precoeff() { int i,k,l,m,n; int nx,ny,nz,kper,lper,mper; double wx0[5],wy0[5],wz0[5],wx1[5],wy1[5],wz1[5],wx2[5],wy2[5],wz2[5]; double qx0,qy0,qz0,qx1,qy1,qz1,qx2,qy2,qz2; double u0,u1,u2,u3,u4,u5,u6; double sum1,sum2,sum3,sum4,sum5,sum6; n = 0; for (m = nzlo_fft; m <= nzhi_fft; m++) { mper = m - nz_pppm*(2*m/nz_pppm); for (l = nylo_fft; l <= nyhi_fft; l++) { lper = l - ny_pppm*(2*l/ny_pppm); for (k = nxlo_fft; k <= nxhi_fft; k++) { kper = k - nx_pppm*(2*k/nx_pppm); sum1 = sum2 = sum3 = sum4 = sum5 = sum6 = 0.0; for (i = 0; i < 5; i++) { qx0 = MY_2PI*(kper+nx_pppm*(i-2)); qx1 = MY_2PI*(kper+nx_pppm*(i-1)); qx2 = MY_2PI*(kper+nx_pppm*(i )); wx0[i] = powsinxx(0.5*qx0/nx_pppm,order); wx1[i] = powsinxx(0.5*qx1/nx_pppm,order); wx2[i] = powsinxx(0.5*qx2/nx_pppm,order); qy0 = MY_2PI*(lper+ny_pppm*(i-2)); qy1 = MY_2PI*(lper+ny_pppm*(i-1)); qy2 = MY_2PI*(lper+ny_pppm*(i )); wy0[i] = powsinxx(0.5*qy0/ny_pppm,order); wy1[i] = powsinxx(0.5*qy1/ny_pppm,order); wy2[i] = powsinxx(0.5*qy2/ny_pppm,order); qz0 = MY_2PI*(mper+nz_pppm*(i-2)); qz1 = MY_2PI*(mper+nz_pppm*(i-1)); qz2 = MY_2PI*(mper+nz_pppm*(i )); wz0[i] = powsinxx(0.5*qz0/nz_pppm,order); wz1[i] = powsinxx(0.5*qz1/nz_pppm,order); wz2[i] = powsinxx(0.5*qz2/nz_pppm,order); } for (nx = 0; nx < 5; nx++) { for (ny = 0; ny < 5; ny++) { for (nz = 0; nz < 5; nz++) { u0 = wx0[nx]*wy0[ny]*wz0[nz]; u1 = wx1[nx]*wy0[ny]*wz0[nz]; u2 = wx2[nx]*wy0[ny]*wz0[nz]; u3 = wx0[nx]*wy1[ny]*wz0[nz]; u4 = wx0[nx]*wy2[ny]*wz0[nz]; u5 = wx0[nx]*wy0[ny]*wz1[nz]; u6 = wx0[nx]*wy0[ny]*wz2[nz]; sum1 += u0*u1; sum2 += u0*u2; sum3 += u0*u3; sum4 += u0*u4; sum5 += u0*u5; sum6 += u0*u6; } } } // store values sf_precoeff1[n] = sum1; sf_precoeff2[n] = sum2; sf_precoeff3[n] = sum3; sf_precoeff4[n] = sum4; sf_precoeff5[n] = sum5; sf_precoeff6[n++] = sum6; } } } } /* ---------------------------------------------------------------------- find center grid pt for each of my particles check that full stencil for the particle will fit in my 3d brick store central grid pt indices in part2grid array ------------------------------------------------------------------------- */ void PPPM::particle_map() { int nx,ny,nz; double **x = atom->x; int nlocal = atom->nlocal; int flag = 0; if (!isfinite(boxlo[0]) || !isfinite(boxlo[1]) || !isfinite(boxlo[2])) error->one(FLERR,"Non-numeric box dimensions - simulation unstable"); for (int i = 0; i < nlocal; i++) { // (nx,ny,nz) = global coords of grid pt to "lower left" of charge // current particle coord can be outside global and local box // add/subtract OFFSET to avoid int(-0.75) = 0 when want it to be -1 nx = static_cast<int> ((x[i][0]-boxlo[0])*delxinv+shift) - OFFSET; ny = static_cast<int> ((x[i][1]-boxlo[1])*delyinv+shift) - OFFSET; nz = static_cast<int> ((x[i][2]-boxlo[2])*delzinv+shift) - OFFSET; part2grid[i][0] = nx; part2grid[i][1] = ny; part2grid[i][2] = nz; // check that entire stencil around nx,ny,nz will fit in my 3d brick if (nx+nlower < nxlo_out || nx+nupper > nxhi_out || ny+nlower < nylo_out || ny+nupper > nyhi_out || nz+nlower < nzlo_out || nz+nupper > nzhi_out) flag = 1; } if (flag) error->one(FLERR,"Out of range atoms - cannot compute PPPM"); } /* ---------------------------------------------------------------------- create discretized "density" on section of global grid due to my particles density(x,y,z) = charge "density" at grid points of my 3d brick (nxlo:nxhi,nylo:nyhi,nzlo:nzhi) is extent of my brick (including ghosts) in global grid ------------------------------------------------------------------------- */ void PPPM::make_rho() { int l,m,n,nx,ny,nz,mx,my,mz; FFT_SCALAR dx,dy,dz,x0,y0,z0; // clear 3d density array memset(&(density_brick[nzlo_out][nylo_out][nxlo_out]),0, ngrid*sizeof(FFT_SCALAR)); // loop over my charges, add their contribution to nearby grid points // (nx,ny,nz) = global coords of grid pt to "lower left" of charge // (dx,dy,dz) = distance to "lower left" grid pt // (mx,my,mz) = global coords of moving stencil pt double *q = atom->q; double **x = atom->x; int nlocal = atom->nlocal; for (int i = 0; i < nlocal; i++) { nx = part2grid[i][0]; ny = part2grid[i][1]; nz = part2grid[i][2]; dx = nx+shiftone - (x[i][0]-boxlo[0])*delxinv; dy = ny+shiftone - (x[i][1]-boxlo[1])*delyinv; dz = nz+shiftone - (x[i][2]-boxlo[2])*delzinv; compute_rho1d(dx,dy,dz); z0 = delvolinv * q[i]; for (n = nlower; n <= nupper; n++) { mz = n+nz; y0 = z0*rho1d[2][n]; for (m = nlower; m <= nupper; m++) { my = m+ny; x0 = y0*rho1d[1][m]; for (l = nlower; l <= nupper; l++) { mx = l+nx; density_brick[mz][my][mx] += x0*rho1d[0][l]; } } } } } /* ---------------------------------------------------------------------- remap density from 3d brick decomposition to FFT decomposition ------------------------------------------------------------------------- */ void PPPM::brick2fft() { int n,ix,iy,iz; // copy grabs inner portion of density from 3d brick // remap could be done as pre-stage of FFT, // but this works optimally on only double values, not complex values n = 0; for (iz = nzlo_in; iz <= nzhi_in; iz++) for (iy = nylo_in; iy <= nyhi_in; iy++) for (ix = nxlo_in; ix <= nxhi_in; ix++) density_fft[n++] = density_brick[iz][iy][ix]; remap->perform(density_fft,density_fft,work1); } /* ---------------------------------------------------------------------- FFT-based Poisson solver ------------------------------------------------------------------------- */ void PPPM::poisson() { if (differentiation_flag == 1) poisson_ad(); else poisson_ik(); } /* ---------------------------------------------------------------------- FFT-based Poisson solver for ik ------------------------------------------------------------------------- */ void PPPM::poisson_ik() { int i,j,k,n; double eng; // transform charge density (r -> k) n = 0; for (i = 0; i < nfft; i++) { work1[n++] = density_fft[i]; work1[n++] = ZEROF; } fft1->compute(work1,work1,1); // global energy and virial contribution double scaleinv = 1.0/(nx_pppm*ny_pppm*nz_pppm); double s2 = scaleinv*scaleinv; if (eflag_global || vflag_global) { if (vflag_global) { n = 0; for (i = 0; i < nfft; i++) { eng = s2 * greensfn[i] * (work1[n]*work1[n] + work1[n+1]*work1[n+1]); for (j = 0; j < 6; j++) virial[j] += eng*vg[i][j]; if (eflag_global) energy += eng; n += 2; } } else { n = 0; for (i = 0; i < nfft; i++) { energy += s2 * greensfn[i] * (work1[n]*work1[n] + work1[n+1]*work1[n+1]); n += 2; } } } // scale by 1/total-grid-pts to get rho(k) // multiply by Green's function to get V(k) n = 0; for (i = 0; i < nfft; i++) { work1[n++] *= scaleinv * greensfn[i]; work1[n++] *= scaleinv * greensfn[i]; } // extra FFTs for per-atom energy/virial if (evflag_atom) poisson_peratom(); // triclinic system if (triclinic) { poisson_ik_triclinic(); return; } // compute gradients of V(r) in each of 3 dims by transformimg -ik*V(k) // FFT leaves data in 3d brick decomposition // copy it into inner portion of vdx,vdy,vdz arrays // x direction gradient n = 0; for (k = nzlo_fft; k <= nzhi_fft; k++) for (j = nylo_fft; j <= nyhi_fft; j++) for (i = nxlo_fft; i <= nxhi_fft; i++) { work2[n] = fkx[i]*work1[n+1]; work2[n+1] = -fkx[i]*work1[n]; n += 2; } fft2->compute(work2,work2,-1); n = 0; for (k = nzlo_in; k <= nzhi_in; k++) for (j = nylo_in; j <= nyhi_in; j++) for (i = nxlo_in; i <= nxhi_in; i++) { vdx_brick[k][j][i] = work2[n]; n += 2; } // y direction gradient n = 0; for (k = nzlo_fft; k <= nzhi_fft; k++) for (j = nylo_fft; j <= nyhi_fft; j++) for (i = nxlo_fft; i <= nxhi_fft; i++) { work2[n] = fky[j]*work1[n+1]; work2[n+1] = -fky[j]*work1[n]; n += 2; } fft2->compute(work2,work2,-1); n = 0; for (k = nzlo_in; k <= nzhi_in; k++) for (j = nylo_in; j <= nyhi_in; j++) for (i = nxlo_in; i <= nxhi_in; i++) { vdy_brick[k][j][i] = work2[n]; n += 2; } // z direction gradient n = 0; for (k = nzlo_fft; k <= nzhi_fft; k++) for (j = nylo_fft; j <= nyhi_fft; j++) for (i = nxlo_fft; i <= nxhi_fft; i++) { work2[n] = fkz[k]*work1[n+1]; work2[n+1] = -fkz[k]*work1[n]; n += 2; } fft2->compute(work2,work2,-1); n = 0; for (k = nzlo_in; k <= nzhi_in; k++) for (j = nylo_in; j <= nyhi_in; j++) for (i = nxlo_in; i <= nxhi_in; i++) { vdz_brick[k][j][i] = work2[n]; n += 2; } } /* ---------------------------------------------------------------------- FFT-based Poisson solver for ik for a triclinic system ------------------------------------------------------------------------- */ void PPPM::poisson_ik_triclinic() { int i,j,k,n; // compute gradients of V(r) in each of 3 dims by transformimg -ik*V(k) // FFT leaves data in 3d brick decomposition // copy it into inner portion of vdx,vdy,vdz arrays // x direction gradient n = 0; for (i = 0; i < nfft; i++) { work2[n] = fkx[i]*work1[n+1]; work2[n+1] = -fkx[i]*work1[n]; n += 2; } fft2->compute(work2,work2,-1); n = 0; for (k = nzlo_in; k <= nzhi_in; k++) for (j = nylo_in; j <= nyhi_in; j++) for (i = nxlo_in; i <= nxhi_in; i++) { vdx_brick[k][j][i] = work2[n]; n += 2; } // y direction gradient n = 0; for (i = 0; i < nfft; i++) { work2[n] = fky[i]*work1[n+1]; work2[n+1] = -fky[i]*work1[n]; n += 2; } fft2->compute(work2,work2,-1); n = 0; for (k = nzlo_in; k <= nzhi_in; k++) for (j = nylo_in; j <= nyhi_in; j++) for (i = nxlo_in; i <= nxhi_in; i++) { vdy_brick[k][j][i] = work2[n]; n += 2; } // z direction gradient n = 0; for (i = 0; i < nfft; i++) { work2[n] = fkz[i]*work1[n+1]; work2[n+1] = -fkz[i]*work1[n]; n += 2; } fft2->compute(work2,work2,-1); n = 0; for (k = nzlo_in; k <= nzhi_in; k++) for (j = nylo_in; j <= nyhi_in; j++) for (i = nxlo_in; i <= nxhi_in; i++) { vdz_brick[k][j][i] = work2[n]; n += 2; } } /* ---------------------------------------------------------------------- FFT-based Poisson solver for ad ------------------------------------------------------------------------- */ void PPPM::poisson_ad() { int i,j,k,n; double eng; // transform charge density (r -> k) n = 0; for (i = 0; i < nfft; i++) { work1[n++] = density_fft[i]; work1[n++] = ZEROF; } fft1->compute(work1,work1,1); // global energy and virial contribution double scaleinv = 1.0/(nx_pppm*ny_pppm*nz_pppm); double s2 = scaleinv*scaleinv; if (eflag_global || vflag_global) { if (vflag_global) { n = 0; for (i = 0; i < nfft; i++) { eng = s2 * greensfn[i] * (work1[n]*work1[n] + work1[n+1]*work1[n+1]); for (j = 0; j < 6; j++) virial[j] += eng*vg[i][j]; if (eflag_global) energy += eng; n += 2; } } else { n = 0; for (i = 0; i < nfft; i++) { energy += s2 * greensfn[i] * (work1[n]*work1[n] + work1[n+1]*work1[n+1]); n += 2; } } } // scale by 1/total-grid-pts to get rho(k) // multiply by Green's function to get V(k) n = 0; for (i = 0; i < nfft; i++) { work1[n++] *= scaleinv * greensfn[i]; work1[n++] *= scaleinv * greensfn[i]; } // extra FFTs for per-atom energy/virial if (vflag_atom) poisson_peratom(); n = 0; for (i = 0; i < nfft; i++) { work2[n] = work1[n]; work2[n+1] = work1[n+1]; n += 2; } fft2->compute(work2,work2,-1); n = 0; for (k = nzlo_in; k <= nzhi_in; k++) for (j = nylo_in; j <= nyhi_in; j++) for (i = nxlo_in; i <= nxhi_in; i++) { u_brick[k][j][i] = work2[n]; n += 2; } } /* ---------------------------------------------------------------------- FFT-based Poisson solver for per-atom energy/virial ------------------------------------------------------------------------- */ void PPPM::poisson_peratom() { int i,j,k,n; // energy if (eflag_atom && differentiation_flag != 1) { n = 0; for (i = 0; i < nfft; i++) { work2[n] = work1[n]; work2[n+1] = work1[n+1]; n += 2; } fft2->compute(work2,work2,-1); n = 0; for (k = nzlo_in; k <= nzhi_in; k++) for (j = nylo_in; j <= nyhi_in; j++) for (i = nxlo_in; i <= nxhi_in; i++) { u_brick[k][j][i] = work2[n]; n += 2; } } // 6 components of virial in v0 thru v5 if (!vflag_atom) return; n = 0; for (i = 0; i < nfft; i++) { work2[n] = work1[n]*vg[i][0]; work2[n+1] = work1[n+1]*vg[i][0]; n += 2; } fft2->compute(work2,work2,-1); n = 0; for (k = nzlo_in; k <= nzhi_in; k++) for (j = nylo_in; j <= nyhi_in; j++) for (i = nxlo_in; i <= nxhi_in; i++) { v0_brick[k][j][i] = work2[n]; n += 2; } n = 0; for (i = 0; i < nfft; i++) { work2[n] = work1[n]*vg[i][1]; work2[n+1] = work1[n+1]*vg[i][1]; n += 2; } fft2->compute(work2,work2,-1); n = 0; for (k = nzlo_in; k <= nzhi_in; k++) for (j = nylo_in; j <= nyhi_in; j++) for (i = nxlo_in; i <= nxhi_in; i++) { v1_brick[k][j][i] = work2[n]; n += 2; } n = 0; for (i = 0; i < nfft; i++) { work2[n] = work1[n]*vg[i][2]; work2[n+1] = work1[n+1]*vg[i][2]; n += 2; } fft2->compute(work2,work2,-1); n = 0; for (k = nzlo_in; k <= nzhi_in; k++) for (j = nylo_in; j <= nyhi_in; j++) for (i = nxlo_in; i <= nxhi_in; i++) { v2_brick[k][j][i] = work2[n]; n += 2; } n = 0; for (i = 0; i < nfft; i++) { work2[n] = work1[n]*vg[i][3]; work2[n+1] = work1[n+1]*vg[i][3]; n += 2; } fft2->compute(work2,work2,-1); n = 0; for (k = nzlo_in; k <= nzhi_in; k++) for (j = nylo_in; j <= nyhi_in; j++) for (i = nxlo_in; i <= nxhi_in; i++) { v3_brick[k][j][i] = work2[n]; n += 2; } n = 0; for (i = 0; i < nfft; i++) { work2[n] = work1[n]*vg[i][4]; work2[n+1] = work1[n+1]*vg[i][4]; n += 2; } fft2->compute(work2,work2,-1); n = 0; for (k = nzlo_in; k <= nzhi_in; k++) for (j = nylo_in; j <= nyhi_in; j++) for (i = nxlo_in; i <= nxhi_in; i++) { v4_brick[k][j][i] = work2[n]; n += 2; } n = 0; for (i = 0; i < nfft; i++) { work2[n] = work1[n]*vg[i][5]; work2[n+1] = work1[n+1]*vg[i][5]; n += 2; } fft2->compute(work2,work2,-1); n = 0; for (k = nzlo_in; k <= nzhi_in; k++) for (j = nylo_in; j <= nyhi_in; j++) for (i = nxlo_in; i <= nxhi_in; i++) { v5_brick[k][j][i] = work2[n]; n += 2; } } /* ---------------------------------------------------------------------- interpolate from grid to get electric field & force on my particles ------------------------------------------------------------------------- */ void PPPM::fieldforce() { if (differentiation_flag == 1) fieldforce_ad(); else fieldforce_ik(); } /* ---------------------------------------------------------------------- interpolate from grid to get electric field & force on my particles for ik ------------------------------------------------------------------------- */ void PPPM::fieldforce_ik() { int i,l,m,n,nx,ny,nz,mx,my,mz; FFT_SCALAR dx,dy,dz,x0,y0,z0; FFT_SCALAR ekx,eky,ekz; // loop over my charges, interpolate electric field from nearby grid points // (nx,ny,nz) = global coords of grid pt to "lower left" of charge // (dx,dy,dz) = distance to "lower left" grid pt // (mx,my,mz) = global coords of moving stencil pt // ek = 3 components of E-field on particle double *q = atom->q; double **x = atom->x; double **f = atom->f; int nlocal = atom->nlocal; for (i = 0; i < nlocal; i++) { nx = part2grid[i][0]; ny = part2grid[i][1]; nz = part2grid[i][2]; dx = nx+shiftone - (x[i][0]-boxlo[0])*delxinv; dy = ny+shiftone - (x[i][1]-boxlo[1])*delyinv; dz = nz+shiftone - (x[i][2]-boxlo[2])*delzinv; compute_rho1d(dx,dy,dz); ekx = eky = ekz = ZEROF; for (n = nlower; n <= nupper; n++) { mz = n+nz; z0 = rho1d[2][n]; for (m = nlower; m <= nupper; m++) { my = m+ny; y0 = z0*rho1d[1][m]; for (l = nlower; l <= nupper; l++) { mx = l+nx; x0 = y0*rho1d[0][l]; ekx -= x0*vdx_brick[mz][my][mx]; eky -= x0*vdy_brick[mz][my][mx]; ekz -= x0*vdz_brick[mz][my][mx]; } } } // convert E-field to force const double qfactor = qqrd2e * scale * q[i]; f[i][0] += qfactor*ekx; f[i][1] += qfactor*eky; if (slabflag != 2) f[i][2] += qfactor*ekz; } } /* ---------------------------------------------------------------------- interpolate from grid to get electric field & force on my particles for ad ------------------------------------------------------------------------- */ void PPPM::fieldforce_ad() { int i,l,m,n,nx,ny,nz,mx,my,mz; FFT_SCALAR dx,dy,dz; FFT_SCALAR ekx,eky,ekz; double s1,s2,s3; double sf = 0.0; double *prd; prd = domain->prd; double xprd = prd[0]; double yprd = prd[1]; double zprd = prd[2]; double hx_inv = nx_pppm/xprd; double hy_inv = ny_pppm/yprd; double hz_inv = nz_pppm/zprd; // loop over my charges, interpolate electric field from nearby grid points // (nx,ny,nz) = global coords of grid pt to "lower left" of charge // (dx,dy,dz) = distance to "lower left" grid pt // (mx,my,mz) = global coords of moving stencil pt // ek = 3 components of E-field on particle double *q = atom->q; double **x = atom->x; double **f = atom->f; int nlocal = atom->nlocal; for (i = 0; i < nlocal; i++) { nx = part2grid[i][0]; ny = part2grid[i][1]; nz = part2grid[i][2]; dx = nx+shiftone - (x[i][0]-boxlo[0])*delxinv; dy = ny+shiftone - (x[i][1]-boxlo[1])*delyinv; dz = nz+shiftone - (x[i][2]-boxlo[2])*delzinv; compute_rho1d(dx,dy,dz); compute_drho1d(dx,dy,dz); ekx = eky = ekz = ZEROF; for (n = nlower; n <= nupper; n++) { mz = n+nz; for (m = nlower; m <= nupper; m++) { my = m+ny; for (l = nlower; l <= nupper; l++) { mx = l+nx; ekx += drho1d[0][l]*rho1d[1][m]*rho1d[2][n]*u_brick[mz][my][mx]; eky += rho1d[0][l]*drho1d[1][m]*rho1d[2][n]*u_brick[mz][my][mx]; ekz += rho1d[0][l]*rho1d[1][m]*drho1d[2][n]*u_brick[mz][my][mx]; } } } ekx *= hx_inv; eky *= hy_inv; ekz *= hz_inv; // convert E-field to force and substract self forces const double qfactor = qqrd2e * scale; s1 = x[i][0]*hx_inv; s2 = x[i][1]*hy_inv; s3 = x[i][2]*hz_inv; sf = sf_coeff[0]*sin(2*MY_PI*s1); sf += sf_coeff[1]*sin(4*MY_PI*s1); sf *= 2*q[i]*q[i]; f[i][0] += qfactor*(ekx*q[i] - sf); sf = sf_coeff[2]*sin(2*MY_PI*s2); sf += sf_coeff[3]*sin(4*MY_PI*s2); sf *= 2*q[i]*q[i]; f[i][1] += qfactor*(eky*q[i] - sf); sf = sf_coeff[4]*sin(2*MY_PI*s3); sf += sf_coeff[5]*sin(4*MY_PI*s3); sf *= 2*q[i]*q[i]; if (slabflag != 2) f[i][2] += qfactor*(ekz*q[i] - sf); } } /* ---------------------------------------------------------------------- interpolate from grid to get per-atom energy/virial ------------------------------------------------------------------------- */ void PPPM::fieldforce_peratom() { int i,l,m,n,nx,ny,nz,mx,my,mz; FFT_SCALAR dx,dy,dz,x0,y0,z0; FFT_SCALAR u,v0,v1,v2,v3,v4,v5; // loop over my charges, interpolate from nearby grid points // (nx,ny,nz) = global coords of grid pt to "lower left" of charge // (dx,dy,dz) = distance to "lower left" grid pt // (mx,my,mz) = global coords of moving stencil pt double *q = atom->q; double **x = atom->x; int nlocal = atom->nlocal; for (i = 0; i < nlocal; i++) { nx = part2grid[i][0]; ny = part2grid[i][1]; nz = part2grid[i][2]; dx = nx+shiftone - (x[i][0]-boxlo[0])*delxinv; dy = ny+shiftone - (x[i][1]-boxlo[1])*delyinv; dz = nz+shiftone - (x[i][2]-boxlo[2])*delzinv; compute_rho1d(dx,dy,dz); u = v0 = v1 = v2 = v3 = v4 = v5 = ZEROF; for (n = nlower; n <= nupper; n++) { mz = n+nz; z0 = rho1d[2][n]; for (m = nlower; m <= nupper; m++) { my = m+ny; y0 = z0*rho1d[1][m]; for (l = nlower; l <= nupper; l++) { mx = l+nx; x0 = y0*rho1d[0][l]; if (eflag_atom) u += x0*u_brick[mz][my][mx]; if (vflag_atom) { v0 += x0*v0_brick[mz][my][mx]; v1 += x0*v1_brick[mz][my][mx]; v2 += x0*v2_brick[mz][my][mx]; v3 += x0*v3_brick[mz][my][mx]; v4 += x0*v4_brick[mz][my][mx]; v5 += x0*v5_brick[mz][my][mx]; } } } } if (eflag_atom) eatom[i] += q[i]*u; if (vflag_atom) { vatom[i][0] += q[i]*v0; vatom[i][1] += q[i]*v1; vatom[i][2] += q[i]*v2; vatom[i][3] += q[i]*v3; vatom[i][4] += q[i]*v4; vatom[i][5] += q[i]*v5; } } } /* ---------------------------------------------------------------------- pack own values to buf to send to another proc ------------------------------------------------------------------------- */ void PPPM::pack_forward(int flag, FFT_SCALAR *buf, int nlist, int *list) { int n = 0; if (flag == FORWARD_IK) { FFT_SCALAR *xsrc = &vdx_brick[nzlo_out][nylo_out][nxlo_out]; FFT_SCALAR *ysrc = &vdy_brick[nzlo_out][nylo_out][nxlo_out]; FFT_SCALAR *zsrc = &vdz_brick[nzlo_out][nylo_out][nxlo_out]; for (int i = 0; i < nlist; i++) { buf[n++] = xsrc[list[i]]; buf[n++] = ysrc[list[i]]; buf[n++] = zsrc[list[i]]; } } else if (flag == FORWARD_AD) { FFT_SCALAR *src = &u_brick[nzlo_out][nylo_out][nxlo_out]; for (int i = 0; i < nlist; i++) buf[i] = src[list[i]]; } else if (flag == FORWARD_IK_PERATOM) { FFT_SCALAR *esrc = &u_brick[nzlo_out][nylo_out][nxlo_out]; FFT_SCALAR *v0src = &v0_brick[nzlo_out][nylo_out][nxlo_out]; FFT_SCALAR *v1src = &v1_brick[nzlo_out][nylo_out][nxlo_out]; FFT_SCALAR *v2src = &v2_brick[nzlo_out][nylo_out][nxlo_out]; FFT_SCALAR *v3src = &v3_brick[nzlo_out][nylo_out][nxlo_out]; FFT_SCALAR *v4src = &v4_brick[nzlo_out][nylo_out][nxlo_out]; FFT_SCALAR *v5src = &v5_brick[nzlo_out][nylo_out][nxlo_out]; for (int i = 0; i < nlist; i++) { if (eflag_atom) buf[n++] = esrc[list[i]]; if (vflag_atom) { buf[n++] = v0src[list[i]]; buf[n++] = v1src[list[i]]; buf[n++] = v2src[list[i]]; buf[n++] = v3src[list[i]]; buf[n++] = v4src[list[i]]; buf[n++] = v5src[list[i]]; } } } else if (flag == FORWARD_AD_PERATOM) { FFT_SCALAR *v0src = &v0_brick[nzlo_out][nylo_out][nxlo_out]; FFT_SCALAR *v1src = &v1_brick[nzlo_out][nylo_out][nxlo_out]; FFT_SCALAR *v2src = &v2_brick[nzlo_out][nylo_out][nxlo_out]; FFT_SCALAR *v3src = &v3_brick[nzlo_out][nylo_out][nxlo_out]; FFT_SCALAR *v4src = &v4_brick[nzlo_out][nylo_out][nxlo_out]; FFT_SCALAR *v5src = &v5_brick[nzlo_out][nylo_out][nxlo_out]; for (int i = 0; i < nlist; i++) { buf[n++] = v0src[list[i]]; buf[n++] = v1src[list[i]]; buf[n++] = v2src[list[i]]; buf[n++] = v3src[list[i]]; buf[n++] = v4src[list[i]]; buf[n++] = v5src[list[i]]; } } } /* ---------------------------------------------------------------------- unpack another proc's own values from buf and set own ghost values ------------------------------------------------------------------------- */ void PPPM::unpack_forward(int flag, FFT_SCALAR *buf, int nlist, int *list) { int n = 0; if (flag == FORWARD_IK) { FFT_SCALAR *xdest = &vdx_brick[nzlo_out][nylo_out][nxlo_out]; FFT_SCALAR *ydest = &vdy_brick[nzlo_out][nylo_out][nxlo_out]; FFT_SCALAR *zdest = &vdz_brick[nzlo_out][nylo_out][nxlo_out]; for (int i = 0; i < nlist; i++) { xdest[list[i]] = buf[n++]; ydest[list[i]] = buf[n++]; zdest[list[i]] = buf[n++]; } } else if (flag == FORWARD_AD) { FFT_SCALAR *dest = &u_brick[nzlo_out][nylo_out][nxlo_out]; for (int i = 0; i < nlist; i++) dest[list[i]] = buf[i]; } else if (flag == FORWARD_IK_PERATOM) { FFT_SCALAR *esrc = &u_brick[nzlo_out][nylo_out][nxlo_out]; FFT_SCALAR *v0src = &v0_brick[nzlo_out][nylo_out][nxlo_out]; FFT_SCALAR *v1src = &v1_brick[nzlo_out][nylo_out][nxlo_out]; FFT_SCALAR *v2src = &v2_brick[nzlo_out][nylo_out][nxlo_out]; FFT_SCALAR *v3src = &v3_brick[nzlo_out][nylo_out][nxlo_out]; FFT_SCALAR *v4src = &v4_brick[nzlo_out][nylo_out][nxlo_out]; FFT_SCALAR *v5src = &v5_brick[nzlo_out][nylo_out][nxlo_out]; for (int i = 0; i < nlist; i++) { if (eflag_atom) esrc[list[i]] = buf[n++]; if (vflag_atom) { v0src[list[i]] = buf[n++]; v1src[list[i]] = buf[n++]; v2src[list[i]] = buf[n++]; v3src[list[i]] = buf[n++]; v4src[list[i]] = buf[n++]; v5src[list[i]] = buf[n++]; } } } else if (flag == FORWARD_AD_PERATOM) { FFT_SCALAR *v0src = &v0_brick[nzlo_out][nylo_out][nxlo_out]; FFT_SCALAR *v1src = &v1_brick[nzlo_out][nylo_out][nxlo_out]; FFT_SCALAR *v2src = &v2_brick[nzlo_out][nylo_out][nxlo_out]; FFT_SCALAR *v3src = &v3_brick[nzlo_out][nylo_out][nxlo_out]; FFT_SCALAR *v4src = &v4_brick[nzlo_out][nylo_out][nxlo_out]; FFT_SCALAR *v5src = &v5_brick[nzlo_out][nylo_out][nxlo_out]; for (int i = 0; i < nlist; i++) { v0src[list[i]] = buf[n++]; v1src[list[i]] = buf[n++]; v2src[list[i]] = buf[n++]; v3src[list[i]] = buf[n++]; v4src[list[i]] = buf[n++]; v5src[list[i]] = buf[n++]; } } } /* ---------------------------------------------------------------------- pack ghost values into buf to send to another proc ------------------------------------------------------------------------- */ void PPPM::pack_reverse(int flag, FFT_SCALAR *buf, int nlist, int *list) { if (flag == REVERSE_RHO) { FFT_SCALAR *src = &density_brick[nzlo_out][nylo_out][nxlo_out]; for (int i = 0; i < nlist; i++) buf[i] = src[list[i]]; } } /* ---------------------------------------------------------------------- unpack another proc's ghost values from buf and add to own values ------------------------------------------------------------------------- */ void PPPM::unpack_reverse(int flag, FFT_SCALAR *buf, int nlist, int *list) { if (flag == REVERSE_RHO) { FFT_SCALAR *dest = &density_brick[nzlo_out][nylo_out][nxlo_out]; for (int i = 0; i < nlist; i++) dest[list[i]] += buf[i]; } } /* ---------------------------------------------------------------------- map nprocs to NX by NY grid as PX by PY procs - return optimal px,py ------------------------------------------------------------------------- */ void PPPM::procs2grid2d(int nprocs, int nx, int ny, int *px, int *py) { // loop thru all possible factorizations of nprocs // surf = surface area of largest proc sub-domain // innermost if test minimizes surface area and surface/volume ratio int bestsurf = 2 * (nx + ny); int bestboxx = 0; int bestboxy = 0; int boxx,boxy,surf,ipx,ipy; ipx = 1; while (ipx <= nprocs) { if (nprocs % ipx == 0) { ipy = nprocs/ipx; boxx = nx/ipx; if (nx % ipx) boxx++; boxy = ny/ipy; if (ny % ipy) boxy++; surf = boxx + boxy; if (surf < bestsurf || (surf == bestsurf && boxx*boxy > bestboxx*bestboxy)) { bestsurf = surf; bestboxx = boxx; bestboxy = boxy; *px = ipx; *py = ipy; } } ipx++; } } /* ---------------------------------------------------------------------- charge assignment into rho1d dx,dy,dz = distance of particle from "lower left" grid point ------------------------------------------------------------------------- */ void PPPM::compute_rho1d(const FFT_SCALAR &dx, const FFT_SCALAR &dy, const FFT_SCALAR &dz) { int k,l; FFT_SCALAR r1,r2,r3; for (k = (1-order)/2; k <= order/2; k++) { r1 = r2 = r3 = ZEROF; for (l = order-1; l >= 0; l--) { r1 = rho_coeff[l][k] + r1*dx; r2 = rho_coeff[l][k] + r2*dy; r3 = rho_coeff[l][k] + r3*dz; } rho1d[0][k] = r1; rho1d[1][k] = r2; rho1d[2][k] = r3; } } /* ---------------------------------------------------------------------- charge assignment into drho1d dx,dy,dz = distance of particle from "lower left" grid point ------------------------------------------------------------------------- */ void PPPM::compute_drho1d(const FFT_SCALAR &dx, const FFT_SCALAR &dy, const FFT_SCALAR &dz) { int k,l; FFT_SCALAR r1,r2,r3; for (k = (1-order)/2; k <= order/2; k++) { r1 = r2 = r3 = ZEROF; for (l = order-2; l >= 0; l--) { r1 = drho_coeff[l][k] + r1*dx; r2 = drho_coeff[l][k] + r2*dy; r3 = drho_coeff[l][k] + r3*dz; } drho1d[0][k] = r1; drho1d[1][k] = r2; drho1d[2][k] = r3; } } /* ---------------------------------------------------------------------- generate coeffients for the weight function of order n (n-1) Wn(x) = Sum wn(k,x) , Sum is over every other integer k=-(n-1) For k=-(n-1),-(n-1)+2, ....., (n-1)-2,n-1 k is odd integers if n is even and even integers if n is odd --- | n-1 | Sum a(l,j)*(x-k/2)**l if abs(x-k/2) < 1/2 wn(k,x) = < l=0 | | 0 otherwise --- a coeffients are packed into the array rho_coeff to eliminate zeros rho_coeff(l,((k+mod(n+1,2))/2) = a(l,k) ------------------------------------------------------------------------- */ void PPPM::compute_rho_coeff() { int j,k,l,m; FFT_SCALAR s; FFT_SCALAR **a; memory->create2d_offset(a,order,-order,order,"pppm:a"); for (k = -order; k <= order; k++) for (l = 0; l < order; l++) a[l][k] = 0.0; a[0][0] = 1.0; for (j = 1; j < order; j++) { for (k = -j; k <= j; k += 2) { s = 0.0; for (l = 0; l < j; l++) { a[l+1][k] = (a[l][k+1]-a[l][k-1]) / (l+1); #ifdef FFT_SINGLE s += powf(0.5,(float) l+1) * (a[l][k-1] + powf(-1.0,(float) l) * a[l][k+1]) / (l+1); #else s += pow(0.5,(double) l+1) * (a[l][k-1] + pow(-1.0,(double) l) * a[l][k+1]) / (l+1); #endif } a[0][k] = s; } } m = (1-order)/2; for (k = -(order-1); k < order; k += 2) { for (l = 0; l < order; l++) rho_coeff[l][m] = a[l][k]; for (l = 1; l < order; l++) drho_coeff[l-1][m] = l*a[l][k]; m++; } memory->destroy2d_offset(a,-order); } /* ---------------------------------------------------------------------- Slab-geometry correction term to dampen inter-slab interactions between periodically repeating slabs. Yields good approximation to 2D Ewald if adequate empty space is left between repeating slabs (J. Chem. Phys. 111, 3155). Slabs defined here to be parallel to the xy plane. Also extended to non-neutral systems (J. Chem. Phys. 131, 094107). ------------------------------------------------------------------------- */ void PPPM::slabcorr() { // compute local contribution to global dipole moment double *q = atom->q; double **x = atom->x; double zprd = domain->zprd; int nlocal = atom->nlocal; double dipole = 0.0; for (int i = 0; i < nlocal; i++) dipole += q[i]*x[i][2]; // sum local contributions to get global dipole moment double dipole_all; MPI_Allreduce(&dipole,&dipole_all,1,MPI_DOUBLE,MPI_SUM,world); // need to make non-neutral systems and/or // per-atom energy translationally invariant double dipole_r2 = 0.0; if (eflag_atom || fabs(qsum) > SMALL) { for (int i = 0; i < nlocal; i++) dipole_r2 += q[i]*x[i][2]*x[i][2]; // sum local contributions double tmp; MPI_Allreduce(&dipole_r2,&tmp,1,MPI_DOUBLE,MPI_SUM,world); dipole_r2 = tmp; } // compute corrections const double e_slabcorr = MY_2PI*(dipole_all*dipole_all - qsum*dipole_r2 - qsum*qsum*zprd*zprd/12.0)/volume; const double qscale = qqrd2e * scale; if (eflag_global) energy += qscale * e_slabcorr; // per-atom energy if (eflag_atom) { double efact = qscale * MY_2PI/volume; for (int i = 0; i < nlocal; i++) eatom[i] += efact * q[i]*(x[i][2]*dipole_all - 0.5*(dipole_r2 + qsum*x[i][2]*x[i][2]) - qsum*zprd*zprd/12.0); } // add on force corrections double ffact = qscale * (-4.0*MY_PI/volume); double **f = atom->f; for (int i = 0; i < nlocal; i++) f[i][2] += ffact * q[i]*(dipole_all - qsum*x[i][2]); } /* ---------------------------------------------------------------------- perform and time the 1d FFTs required for N timesteps ------------------------------------------------------------------------- */ int PPPM::timing_1d(int n, double &time1d) { double time1,time2; for (int i = 0; i < 2*nfft_both; i++) work1[i] = ZEROF; MPI_Barrier(world); time1 = MPI_Wtime(); for (int i = 0; i < n; i++) { fft1->timing1d(work1,nfft_both,1); fft2->timing1d(work1,nfft_both,-1); if (differentiation_flag != 1) { fft2->timing1d(work1,nfft_both,-1); fft2->timing1d(work1,nfft_both,-1); } } MPI_Barrier(world); time2 = MPI_Wtime(); time1d = time2 - time1; if (differentiation_flag) return 2; return 4; } /* ---------------------------------------------------------------------- perform and time the 3d FFTs required for N timesteps ------------------------------------------------------------------------- */ int PPPM::timing_3d(int n, double &time3d) { double time1,time2; for (int i = 0; i < 2*nfft_both; i++) work1[i] = ZEROF; MPI_Barrier(world); time1 = MPI_Wtime(); for (int i = 0; i < n; i++) { fft1->compute(work1,work1,1); fft2->compute(work1,work1,-1); if (differentiation_flag != 1) { fft2->compute(work1,work1,-1); fft2->compute(work1,work1,-1); } } MPI_Barrier(world); time2 = MPI_Wtime(); time3d = time2 - time1; if (differentiation_flag) return 2; return 4; } /* ---------------------------------------------------------------------- memory usage of local arrays ------------------------------------------------------------------------- */ double PPPM::memory_usage() { double bytes = nmax*3 * sizeof(double); int nbrick = (nxhi_out-nxlo_out+1) * (nyhi_out-nylo_out+1) * (nzhi_out-nzlo_out+1); if (differentiation_flag == 1) { bytes += 2 * nbrick * sizeof(FFT_SCALAR); } else { bytes += 4 * nbrick * sizeof(FFT_SCALAR); } if (triclinic) bytes += 3 * nfft_both * sizeof(double); bytes += 6 * nfft_both * sizeof(double); bytes += nfft_both * sizeof(double); bytes += nfft_both*5 * sizeof(FFT_SCALAR); if (peratom_allocate_flag) bytes += 6 * nbrick * sizeof(FFT_SCALAR); if (group_allocate_flag) { bytes += 2 * nbrick * sizeof(FFT_SCALAR); bytes += 2 * nfft_both * sizeof(FFT_SCALAR);; } bytes += cg->memory_usage(); return bytes; } /* ---------------------------------------------------------------------- group-group interactions ------------------------------------------------------------------------- */ /* ---------------------------------------------------------------------- compute the PPPM total long-range force and energy for groups A and B ------------------------------------------------------------------------- */ void PPPM::compute_group_group(int groupbit_A, int groupbit_B, int AA_flag) { if (slabflag && triclinic) error->all(FLERR,"Cannot (yet) use K-space slab " "correction with compute group/group for triclinic systems"); if (differentiation_flag) error->all(FLERR,"Cannot (yet) use kspace_modify " "diff ad with compute group/group"); if (!group_allocate_flag) allocate_groups(); // convert atoms from box to lamda coords if (triclinic == 0) boxlo = domain->boxlo; else { boxlo = domain->boxlo_lamda; domain->x2lamda(atom->nlocal); } e2group = 0.0; //energy f2group[0] = 0.0; //force in x-direction f2group[1] = 0.0; //force in y-direction f2group[2] = 0.0; //force in z-direction // map my particle charge onto my local 3d density grid make_rho_groups(groupbit_A,groupbit_B,AA_flag); // all procs communicate density values from their ghost cells // to fully sum contribution in their 3d bricks // remap from 3d decomposition to FFT decomposition // temporarily store and switch pointers so we can // use brick2fft() for groups A and B (without // writing an additional function) FFT_SCALAR ***density_brick_real = density_brick; FFT_SCALAR *density_fft_real = density_fft; // group A density_brick = density_A_brick; density_fft = density_A_fft; cg->reverse_comm(this,REVERSE_RHO); brick2fft(); // group B density_brick = density_B_brick; density_fft = density_B_fft; cg->reverse_comm(this,REVERSE_RHO); brick2fft(); // switch back pointers density_brick = density_brick_real; density_fft = density_fft_real; // compute potential gradient on my FFT grid and // portion of group-group energy/force on this proc's FFT grid poisson_groups(AA_flag); const double qscale = qqrd2e * scale; // total group A <--> group B energy // self and boundary correction terms are in compute_group_group.cpp double e2group_all; MPI_Allreduce(&e2group,&e2group_all,1,MPI_DOUBLE,MPI_SUM,world); e2group = e2group_all; e2group *= qscale*0.5*volume; // total group A <--> group B force double f2group_all[3]; MPI_Allreduce(f2group,f2group_all,3,MPI_DOUBLE,MPI_SUM,world); f2group[0] = qscale*volume*f2group_all[0]; f2group[1] = qscale*volume*f2group_all[1]; if (slabflag != 2) f2group[2] = qscale*volume*f2group_all[2]; // convert atoms back from lamda to box coords if (triclinic) domain->lamda2x(atom->nlocal); if (slabflag == 1) slabcorr_groups(groupbit_A, groupbit_B, AA_flag); } /* ---------------------------------------------------------------------- allocate group-group memory that depends on # of K-vectors and order ------------------------------------------------------------------------- */ void PPPM::allocate_groups() { group_allocate_flag = 1; memory->create3d_offset(density_A_brick,nzlo_out,nzhi_out,nylo_out,nyhi_out, nxlo_out,nxhi_out,"pppm:density_A_brick"); memory->create3d_offset(density_B_brick,nzlo_out,nzhi_out,nylo_out,nyhi_out, nxlo_out,nxhi_out,"pppm:density_B_brick"); memory->create(density_A_fft,nfft_both,"pppm:density_A_fft"); memory->create(density_B_fft,nfft_both,"pppm:density_B_fft"); } /* ---------------------------------------------------------------------- deallocate group-group memory that depends on # of K-vectors and order ------------------------------------------------------------------------- */ void PPPM::deallocate_groups() { group_allocate_flag = 0; memory->destroy3d_offset(density_A_brick,nzlo_out,nylo_out,nxlo_out); memory->destroy3d_offset(density_B_brick,nzlo_out,nylo_out,nxlo_out); memory->destroy(density_A_fft); memory->destroy(density_B_fft); } /* ---------------------------------------------------------------------- create discretized "density" on section of global grid due to my particles density(x,y,z) = charge "density" at grid points of my 3d brick (nxlo:nxhi,nylo:nyhi,nzlo:nzhi) is extent of my brick (including ghosts) in global grid for group-group interactions ------------------------------------------------------------------------- */ void PPPM::make_rho_groups(int groupbit_A, int groupbit_B, int AA_flag) { int l,m,n,nx,ny,nz,mx,my,mz; FFT_SCALAR dx,dy,dz,x0,y0,z0; // clear 3d density arrays memset(&(density_A_brick[nzlo_out][nylo_out][nxlo_out]),0, ngrid*sizeof(FFT_SCALAR)); memset(&(density_B_brick[nzlo_out][nylo_out][nxlo_out]),0, ngrid*sizeof(FFT_SCALAR)); // loop over my charges, add their contribution to nearby grid points // (nx,ny,nz) = global coords of grid pt to "lower left" of charge // (dx,dy,dz) = distance to "lower left" grid pt // (mx,my,mz) = global coords of moving stencil pt double *q = atom->q; double **x = atom->x; int nlocal = atom->nlocal; int *mask = atom->mask; for (int i = 0; i < nlocal; i++) { if (!((mask[i] & groupbit_A) && (mask[i] & groupbit_B))) if (AA_flag) continue; if ((mask[i] & groupbit_A) || (mask[i] & groupbit_B)) { nx = part2grid[i][0]; ny = part2grid[i][1]; nz = part2grid[i][2]; dx = nx+shiftone - (x[i][0]-boxlo[0])*delxinv; dy = ny+shiftone - (x[i][1]-boxlo[1])*delyinv; dz = nz+shiftone - (x[i][2]-boxlo[2])*delzinv; compute_rho1d(dx,dy,dz); z0 = delvolinv * q[i]; for (n = nlower; n <= nupper; n++) { mz = n+nz; y0 = z0*rho1d[2][n]; for (m = nlower; m <= nupper; m++) { my = m+ny; x0 = y0*rho1d[1][m]; for (l = nlower; l <= nupper; l++) { mx = l+nx; // group A if (mask[i] & groupbit_A) density_A_brick[mz][my][mx] += x0*rho1d[0][l]; // group B if (mask[i] & groupbit_B) density_B_brick[mz][my][mx] += x0*rho1d[0][l]; } } } } } } /* ---------------------------------------------------------------------- FFT-based Poisson solver for group-group interactions ------------------------------------------------------------------------- */ void PPPM::poisson_groups(int AA_flag) { int i,j,k,n; // reuse memory (already declared) FFT_SCALAR *work_A = work1; FFT_SCALAR *work_B = work2; // transform charge density (r -> k) // group A n = 0; for (i = 0; i < nfft; i++) { work_A[n++] = density_A_fft[i]; work_A[n++] = ZEROF; } fft1->compute(work_A,work_A,1); // group B n = 0; for (i = 0; i < nfft; i++) { work_B[n++] = density_B_fft[i]; work_B[n++] = ZEROF; } fft1->compute(work_B,work_B,1); // group-group energy and force contribution, // keep everything in reciprocal space so // no inverse FFTs needed double scaleinv = 1.0/(nx_pppm*ny_pppm*nz_pppm); double s2 = scaleinv*scaleinv; // energy n = 0; for (i = 0; i < nfft; i++) { e2group += s2 * greensfn[i] * (work_A[n]*work_B[n] + work_A[n+1]*work_B[n+1]); n += 2; } if (AA_flag) return; // multiply by Green's function and s2 // (only for work_A so it is not squared below) n = 0; for (i = 0; i < nfft; i++) { work_A[n++] *= s2 * greensfn[i]; work_A[n++] *= s2 * greensfn[i]; } // triclinic system if (triclinic) { poisson_groups_triclinic(); return; } double partial_group; // force, x direction n = 0; for (k = nzlo_fft; k <= nzhi_fft; k++) for (j = nylo_fft; j <= nyhi_fft; j++) for (i = nxlo_fft; i <= nxhi_fft; i++) { partial_group = work_A[n+1]*work_B[n] - work_A[n]*work_B[n+1]; f2group[0] += fkx[i] * partial_group; n += 2; } // force, y direction n = 0; for (k = nzlo_fft; k <= nzhi_fft; k++) for (j = nylo_fft; j <= nyhi_fft; j++) for (i = nxlo_fft; i <= nxhi_fft; i++) { partial_group = work_A[n+1]*work_B[n] - work_A[n]*work_B[n+1]; f2group[1] += fky[j] * partial_group; n += 2; } // force, z direction n = 0; for (k = nzlo_fft; k <= nzhi_fft; k++) for (j = nylo_fft; j <= nyhi_fft; j++) for (i = nxlo_fft; i <= nxhi_fft; i++) { partial_group = work_A[n+1]*work_B[n] - work_A[n]*work_B[n+1]; f2group[2] += fkz[k] * partial_group; n += 2; } } /* ---------------------------------------------------------------------- FFT-based Poisson solver for group-group interactions for a triclinic system ------------------------------------------------------------------------- */ void PPPM::poisson_groups_triclinic() { int i,n; // reuse memory (already declared) FFT_SCALAR *work_A = work1; FFT_SCALAR *work_B = work2; double partial_group; // force, x direction n = 0; for (i = 0; i < nfft; i++) { partial_group = work_A[n+1]*work_B[n] - work_A[n]*work_B[n+1]; f2group[0] += fkx[i] * partial_group; n += 2; } // force, y direction n = 0; for (i = 0; i < nfft; i++) { partial_group = work_A[n+1]*work_B[n] - work_A[n]*work_B[n+1]; f2group[1] += fky[i] * partial_group; n += 2; } // force, z direction n = 0; for (i = 0; i < nfft; i++) { partial_group = work_A[n+1]*work_B[n] - work_A[n]*work_B[n+1]; f2group[2] += fkz[i] * partial_group; n += 2; } } /* ---------------------------------------------------------------------- Slab-geometry correction term to dampen inter-slab interactions between periodically repeating slabs. Yields good approximation to 2D Ewald if adequate empty space is left between repeating slabs (J. Chem. Phys. 111, 3155). Slabs defined here to be parallel to the xy plane. Also extended to non-neutral systems (J. Chem. Phys. 131, 094107). ------------------------------------------------------------------------- */ void PPPM::slabcorr_groups(int groupbit_A, int groupbit_B, int AA_flag) { // compute local contribution to global dipole moment double *q = atom->q; double **x = atom->x; double zprd = domain->zprd; int *mask = atom->mask; int nlocal = atom->nlocal; double qsum_A = 0.0; double qsum_B = 0.0; double dipole_A = 0.0; double dipole_B = 0.0; double dipole_r2_A = 0.0; double dipole_r2_B = 0.0; for (int i = 0; i < nlocal; i++) { if (!((mask[i] & groupbit_A) && (mask[i] & groupbit_B))) if (AA_flag) continue; if (mask[i] & groupbit_A) { qsum_A += q[i]; dipole_A += q[i]*x[i][2]; dipole_r2_A += q[i]*x[i][2]*x[i][2]; } if (mask[i] & groupbit_B) { qsum_B += q[i]; dipole_B += q[i]*x[i][2]; dipole_r2_B += q[i]*x[i][2]*x[i][2]; } } // sum local contributions to get total charge and global dipole moment // for each group double tmp; MPI_Allreduce(&qsum_A,&tmp,1,MPI_DOUBLE,MPI_SUM,world); qsum_A = tmp; MPI_Allreduce(&qsum_B,&tmp,1,MPI_DOUBLE,MPI_SUM,world); qsum_B = tmp; MPI_Allreduce(&dipole_A,&tmp,1,MPI_DOUBLE,MPI_SUM,world); dipole_A = tmp; MPI_Allreduce(&dipole_B,&tmp,1,MPI_DOUBLE,MPI_SUM,world); dipole_B = tmp; MPI_Allreduce(&dipole_r2_A,&tmp,1,MPI_DOUBLE,MPI_SUM,world); dipole_r2_A = tmp; MPI_Allreduce(&dipole_r2_B,&tmp,1,MPI_DOUBLE,MPI_SUM,world); dipole_r2_B = tmp; // compute corrections const double qscale = qqrd2e * scale; const double efact = qscale * MY_2PI/volume; e2group += efact * (dipole_A*dipole_B - 0.5*(qsum_A*dipole_r2_B + qsum_B*dipole_r2_A) - qsum_A*qsum_B*zprd*zprd/12.0); // add on force corrections const double ffact = qscale * (-4.0*MY_PI/volume); f2group[2] += ffact * (qsum_A*dipole_B - qsum_B*dipole_A); }
[ "zhangshiyun_93@outlook.com" ]
zhangshiyun_93@outlook.com
d673495b191a60a14fc76d1a7ee429d94e154b2f
b4a8513d146739c373d070e735a4ba5e150b3272
/pid.cpp
4a54e294b14e4f11c2bcdd461f31e72d44128fe3
[]
no_license
cheny777/BournePeripheralMillCompensationPlug-in
8e51294523fdf6772eec1d011a1f91d41bac871e
a78f57e0561490b2a11e3e3ade311b3eb01ee4b3
refs/heads/master
2023-03-24T07:32:50.840484
2020-08-20T01:39:52
2020-08-20T01:39:52
null
0
0
null
null
null
null
UTF-8
C++
false
false
810
cpp
#include "pid.h" CPID::CPID() { init(1,1,1); } CPID::~CPID() { } void CPID::init(double p,double i,double d) { frist_tag = false; i_base = 0; d_err = 0; old_err = 0; ts = 0.0025; kp = p; ki = i; kd = d; } double CPID::onErr(double e) { if(frist_tag) { frist_tag = true; old_err = e; } d_err = (e - old_err ) / ts; old_err = e; i_base += e; return kp*e + ki * i_base + kd * d_err; } CMoveObj::CMoveObj() { mass = 1; pos = 0; vel = 0; TS = 0.0001; TS2 = TS * TS * 0.5; } CMoveObj::~CMoveObj() { } void CMoveObj::SetInitState(double p,double v) { pos = p; vel = v; } double CMoveObj::OnStep(double f) { double a = f / mass; vel += TS * a; pos += a * TS + TS2 * a; return pos; }
[ "chenyu721" ]
chenyu721
94239cb8ac8500fb87c6d849b58fce42c9136268
10ebdf6e5c7ed164016743e54fd76c37719eb4fb
/lib/ocull/ocullContext.cpp
639ce40bc6c95291e6f6f2485e62f5541d2b74e3
[]
no_license
venceslas/ocull
0929876a2a40d2ec4187d42d8c264068ffa10c7c
182b7febc88bcc9c09928e16ac4720c615db5374
refs/heads/master
2020-04-09T16:41:57.985235
2012-07-06T16:46:20
2012-07-06T16:46:20
5,016,896
0
1
null
null
null
null
UTF-8
C++
false
false
5,593
cpp
/// /// \file ocullContext.cpp /// #include "ocullContext.hpp" #include <cassert> #include <cstdlib> #include <iostream> #include "rasterizer/framework/gpu/CudaModule.hpp" #include "rasterizer/shader/PassThrough.hpp" // kernel shader #include "ocullQuery.hpp" #include "ocullScene.hpp" #include <cudaGL.h> namespace ocull { // STATIC methods +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ Context* Context::Create(const std::string &pipeCubinFile) { Context *context = new Context(); /// Load the precompiled pipeline shaders FW::CudaModule *module = new FW::CudaModule(pipeCubinFile); if (NULL == module) { std::cerr << __FUNCTION__ << " : invalid argument \"" << pipeCubinFile << "\"." << std::endl; return NULL; } context->m_cudaModule = module; /// Initialized CudaRaster context->m_rasterizer.init(); // Vertex shader size_t paramSize = 1u * sizeof(FW::U32) + 2u * sizeof(CUdeviceptr); context->m_vsKernel = module->getKernel( "vertexShader_passthrough", paramSize); // Pipeline context->m_rasterizer.setPixelPipe( module, "PixelPipe_passthrough"); return context; } void Context::Release(Context* context) { assert( context != NULL ); OCULL_SAFEDELETE( context ); } // PUBLIC methods +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ void Context::begin(Query *pQuery) { assert( isQueryBounded() == false ); assert( pQuery != NULL ); /// Set rasterizer parameters // ----- // [TEMPORARY] Reset the color buffer (costly !) FW::Vec2i depthSize = pQuery->m_depthBuffer->getSize(); if ((m_colorBuffer != NULL) && (depthSize != m_colorBuffer->getSize())) { OCULL_SAFEDELETE(m_colorBuffer); } if (m_colorBuffer == NULL) { m_colorBuffer = new FW::CudaSurface( depthSize, FW::CudaSurface::FORMAT_RGBA8, 1u); } // Specify the color (TMP) and depth buffer. m_rasterizer.setSurfaces( m_colorBuffer, pQuery->m_depthBuffer); m_rasterizer.deferredClear(); // TODO : fill the depth buffer with the query default depthbuffer (if any) // ----- /// Reset query results pQuery->resetResults(); /// Bound the query m_pQuery = pQuery; } void Context::end() { assert( isQueryBounded() == true ); /// Unbound the query m_pQuery = NULL; } void Context::uploadScene(ocull::Scene *pScene) { /// It could be improve furthermore, sending buffer of MVPs and proceed /// everything in less Kernels. (Just an idea to explore) assert( isQueryBounded() == true ); assert( pScene != NULL ); std::cerr << __FUNCTION__ << " : unfinished." << std::endl; # if OCULLSCENE_CACHE_FRIENDLY # else # endif } void Context::uploadMesh(ocull::Mesh *pMesh, const ocull::Matrix4x4 &modelMatrix) { assert( isQueryBounded() == true ); assert( pMesh != NULL ); /// Update simple stats Query::Result &result = m_pQuery->m_result; // result.objectCount += 1u; result.trianglePassedCount += pMesh->getTriangleCount(); /// Resize the output vertices buffer size_t vertexSize = pMesh->vertex.count * sizeof(FW::ShadedVertex_passthrough); m_outVertices.resizeDiscard( vertexSize ); // // Vertex Shader runVertexShader( pMesh, modelMatrix); // Pipeline m_rasterizer.setVertexBuffer( &m_outVertices, 0); m_rasterizer.setIndexBuffer( &(pMesh->index.buffer), pMesh->index.offset, pMesh->getTriangleCount()); //m_rasterizer.setIndexBuffer_TEST( &pDevice, pMesh->getTriangleCount()); m_rasterizer.drawTriangles(); } // [DEBUG only] (to remove later) unsigned int Context::getColorTexture() { assert( m_colorBuffer != NULL ); return m_colorBuffer->getGLTexture(); } // PRIVATE methods +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ Context::Context() : m_cudaModule(NULL), m_pQuery(NULL), m_colorBuffer(NULL) { } Context::~Context() { OCULL_SAFEDELETE( m_cudaModule ) OCULL_SAFEDELETE( m_pQuery ) OCULL_SAFEDELETE( m_colorBuffer ) //tmp } void Context::runVertexShader( ocull::Mesh *pMesh, const ocull::Matrix4x4 &modelMatrix) { /// Map constants parameters (like GLSL's uniforms) FW::Constants& c = *(FW::Constants*) m_cudaModule->getGlobal("c_constants").getMutablePtrDiscard(); // Compute the ModelViewProjection matrix const Matrix4x4 &viewProj = m_pQuery->m_camera.getViewProjMatrix(); Matrix4x4 mvp = viewProj * modelMatrix; // Translate custom matrix as CudaRaster Framework matrix (yeah.. what ?) # define COPY_MAT(i,j) c.posToClip.m##i##j = mvp[j][i] COPY_MAT(0, 0); COPY_MAT(0, 1); COPY_MAT(0, 2); COPY_MAT(0, 3); COPY_MAT(1, 0); COPY_MAT(1, 1); COPY_MAT(1, 2); COPY_MAT(1, 3); COPY_MAT(2, 0); COPY_MAT(2, 1); COPY_MAT(2, 2); COPY_MAT(2, 3); COPY_MAT(3, 0); COPY_MAT(3, 1); COPY_MAT(3, 2); COPY_MAT(3, 3); # undef COPY_MAT //------- /// Set input parameters int ofs = 0; ofs += m_cudaModule->setParamPtr( m_vsKernel, ofs, pMesh->vertex.buffer.getCudaPtr()); ofs += m_cudaModule->setParamPtr( m_vsKernel, ofs, m_outVertices.getMutableCudaPtrDiscard()); ofs += m_cudaModule->setParami ( m_vsKernel, ofs, pMesh->vertex.count); // XXX TODO set vertex stride & offset XXX //------- /// Run the vertex shader kernel FW::Vec2i blockSize(32, 4); int numBlocks = (pMesh->vertex.count - 1u) / (blockSize.x * blockSize.y) + 1; m_cudaModule->launchKernel( m_vsKernel, blockSize, numBlocks); } } //namespace ocull
[ "tcoppex@esiee" ]
tcoppex@esiee
9b36da10bede6184b04af65412d2783b3d293896
0b2748e3d25c4daf628e8b728f581931f024a833
/source/sdk/include/Eigen/src/Eigenvalues/RealSchur.h
8f38863373e06d66542b7e0405c6ec9737314547
[]
no_license
Zoltan3057/N_Kunhou_Arm_sdk
b4c3653705e2bb76935f3ac07fae503f09172dd8
e50f60d3e7f19715bbedc9ccc55ca6280d13ad1b
refs/heads/master
2020-03-21T17:27:50.975966
2018-03-03T05:34:10
2018-03-03T05:34:10
138,833,358
2
1
null
null
null
null
UTF-8
C++
false
false
17,924
h
// This file is part of Eigen, a lightweight C++ template library // for linear algebra. // // Copyright (C) 2008 Gael Guennebaud <gael.guennebaud@inria.fr> // Copyright (C) 2010 Jitse Niesen <jitse@maths.leeds.ac.uk> // // This Source Code Form is subject to the terms of the Mozilla // Public License v. 2.0. If a copy of the MPL was not distributed // with this file, You can obtain one at http://mozilla.org/MPL/2.0/. #ifndef EIGEN_REAL_SCHUR_H #define EIGEN_REAL_SCHUR_H #include "./HessenbergDecomposition.h" namespace Eigen { /** \eigenvalues_module \ingroup Eigenvalues_Module * * * \class RealSchur * * \brief Performs a real Schur decomposition of a square matrix * * \tparam _MatrixType the type of the matrix of which we are computing the * real Schur decomposition; this is expected to be an instantiation of the * Matrix class template. * * Given a real square matrix A, this class computes the real Schur * decomposition: \f$ A = U T U^T \f$ where U is a real orthogonal matrix and * T is a real quasi-triangular matrix. An orthogonal matrix is a matrix whose * inverse is equal to its transpose, \f$ U^{-1} = U^T \f$. A quasi-triangular * matrix is a block-triangular matrix whose diagonal consists of 1-by-1 * blocks and 2-by-2 blocks with complex eigenvalues. The eigenvalues of the * blocks on the diagonal of T are the same as the eigenvalues of the matrix * A, and thus the real Schur decomposition is used in EigenSolver to compute * the eigendecomposition of a matrix. * * Call the function compute() to compute the real Schur decomposition of a * given matrix. Alternatively, you can use the RealSchur(const MatrixType&, bool) * constructor which computes the real Schur decomposition at construction * time. Once the decomposition is computed, you can use the matrixU() and * matrixT() functions to retrieve the matrices U and T in the decomposition. * * The documentation of RealSchur(const MatrixType&, bool) contains an example * of the typical use of this class. * * \note The implementation is adapted from * <a href="http://math.nist.gov/javanumerics/jama/">JAMA</a> (public domain). * Their code is based on EISPACK. * * \sa class ComplexSchur, class EigenSolver, class ComplexEigenSolver */ template<typename _MatrixType> class RealSchur { public: typedef _MatrixType MatrixType; enum { RowsAtCompileTime = MatrixType::RowsAtCompileTime, ColsAtCompileTime = MatrixType::ColsAtCompileTime, Options = MatrixType::Options, MaxRowsAtCompileTime = MatrixType::MaxRowsAtCompileTime, MaxColsAtCompileTime = MatrixType::MaxColsAtCompileTime }; typedef typename MatrixType::Scalar Scalar; typedef std::complex<typename NumTraits<Scalar>::Real> ComplexScalar; typedef typename MatrixType::Index Index; typedef Matrix<ComplexScalar, ColsAtCompileTime, 1, Options & ~RowMajor, MaxColsAtCompileTime, 1> EigenvalueType; typedef Matrix<Scalar, ColsAtCompileTime, 1, Options & ~RowMajor, MaxColsAtCompileTime, 1> ColumnVectorType; /** \brief Default constructor. * * \param [in] size Positive integer, size of the matrix whose Schur decomposition will be computed. * * The default constructor is useful in cases in which the user intends to * perform decompositions via compute(). The \p size parameter is only * used as a hint. It is not an error to give a wrong \p size, but it may * impair performance. * * \sa compute() for an example. */ RealSchur(Index size = RowsAtCompileTime==Dynamic ? 1 : RowsAtCompileTime) : m_matT(size, size), m_matU(size, size), m_workspaceVector(size), m_hess(size), m_isInitialized(false), m_matUisUptodate(false) { } /** \brief Constructor; computes real Schur decomposition of given matrix. * * \param[in] matrix Square matrix whose Schur decomposition is to be computed. * \param[in] computeU If true, both T and U are computed; if false, only T is computed. * * This constructor calls compute() to compute the Schur decomposition. * * Example: \include RealSchur_RealSchur_MatrixType.cpp * Output: \verbinclude RealSchur_RealSchur_MatrixType.out */ RealSchur(const MatrixType& matrix, bool computeU = true) : m_matT(matrix.rows(),matrix.cols()), m_matU(matrix.rows(),matrix.cols()), m_workspaceVector(matrix.rows()), m_hess(matrix.rows()), m_isInitialized(false), m_matUisUptodate(false) { compute(matrix, computeU); } /** \brief Returns the orthogonal matrix in the Schur decomposition. * * \returns A const reference to the matrix U. * * \pre Either the constructor RealSchur(const MatrixType&, bool) or the * member function compute(const MatrixType&, bool) has been called before * to compute the Schur decomposition of a matrix, and \p computeU was set * to true (the default value). * * \sa RealSchur(const MatrixType&, bool) for an example */ const MatrixType& matrixU() const { eigen_assert(m_isInitialized && "RealSchur is not initialized."); eigen_assert(m_matUisUptodate && "The matrix U has not been computed during the RealSchur decomposition."); return m_matU; } /** \brief Returns the quasi-triangular matrix in the Schur decomposition. * * \returns A const reference to the matrix T. * * \pre Either the constructor RealSchur(const MatrixType&, bool) or the * member function compute(const MatrixType&, bool) has been called before * to compute the Schur decomposition of a matrix. * * \sa RealSchur(const MatrixType&, bool) for an example */ const MatrixType& matrixT() const { eigen_assert(m_isInitialized && "RealSchur is not initialized."); return m_matT; } /** \brief Computes Schur decomposition of given matrix. * * \param[in] matrix Square matrix whose Schur decomposition is to be computed. * \param[in] computeU If true, both T and U are computed; if false, only T is computed. * \returns Reference to \c *this * * The Schur decomposition is computed by first reducing the matrix to * Hessenberg form using the class HessenbergDecomposition. The Hessenberg * matrix is then reduced to triangular form by performing Francis QR * iterations with implicit double shift. The cost of computing the Schur * decomposition depends on the number of iterations; as a rough guide, it * may be taken to be \f$25n^3\f$ flops if \a computeU is true and * \f$10n^3\f$ flops if \a computeU is false. * * Example: \include RealSchur_compute.cpp * Output: \verbinclude RealSchur_compute.out */ RealSchur& compute(const MatrixType& matrix, bool computeU = true); /** \brief Reports whether previous computation was successful. * * \returns \c Success if computation was succesful, \c NoConvergence otherwise. */ ComputationInfo info() const { eigen_assert(m_isInitialized && "RealSchur is not initialized."); return m_info; } /** \brief Maximum number of iterations. * * Maximum number of iterations allowed for an eigenvalue to converge. */ static const int m_maxIterations = 40; private: MatrixType m_matT; MatrixType m_matU; ColumnVectorType m_workspaceVector; HessenbergDecomposition<MatrixType> m_hess; ComputationInfo m_info; bool m_isInitialized; bool m_matUisUptodate; typedef Matrix<Scalar,3,1> Vector3s; Scalar computeNormOfT(); Index findSmallSubdiagEntry(Index iu, Scalar norm); void splitOffTwoRows(Index iu, bool computeU, Scalar exshift); void computeShift(Index iu, Index iter, Scalar& exshift, Vector3s& shiftInfo); void initFrancisQRStep(Index il, Index iu, const Vector3s& shiftInfo, Index& im, Vector3s& firstHouseholderVector); void performFrancisQRStep(Index il, Index im, Index iu, bool computeU, const Vector3s& firstHouseholderVector, Scalar* workspace); }; template<typename MatrixType> RealSchur<MatrixType>& RealSchur<MatrixType>::compute(const MatrixType& matrix, bool computeU) { assert(matrix.cols() == matrix.rows()); // Step 1. Reduce to Hessenberg form m_hess.compute(matrix); m_matT = m_hess.matrixH(); if (computeU) m_matU = m_hess.matrixQ(); // Step 2. Reduce to real Schur form m_workspaceVector.resize(m_matT.cols()); Scalar* workspace = &m_workspaceVector.coeffRef(0); // The matrix m_matT is divided in three parts. // Rows 0,...,il-1 are decoupled from the rest because m_matT(il,il-1) is zero. // Rows il,...,iu is the part we are working on (the active window). // Rows iu+1,...,end are already brought in triangular form. Index iu = m_matT.cols() - 1; Index iter = 0; // iteration count for current eigenvalue Index totalIter = 0; // iteration count for whole matrix Scalar exshift(0); // sum of exceptional shifts Scalar norm = computeNormOfT(); if(norm!=0) { while (iu >= 0) { Index il = findSmallSubdiagEntry(iu, norm); // Check for convergence if (il == iu) // One root found { m_matT.coeffRef(iu,iu) = m_matT.coeff(iu,iu) + exshift; if (iu > 0) m_matT.coeffRef(iu, iu-1) = Scalar(0); iu--; iter = 0; } else if (il == iu-1) // Two roots found { splitOffTwoRows(iu, computeU, exshift); iu -= 2; iter = 0; } else // No convergence yet { // The firstHouseholderVector vector has to be initialized to something to get rid of a silly GCC warning (-O1 -Wall -DNDEBUG ) Vector3s firstHouseholderVector(0,0,0), shiftInfo; computeShift(iu, iter, exshift, shiftInfo); iter = iter + 1; totalIter = totalIter + 1; if (totalIter > m_maxIterations * matrix.cols()) break; Index im; initFrancisQRStep(il, iu, shiftInfo, im, firstHouseholderVector); performFrancisQRStep(il, im, iu, computeU, firstHouseholderVector, workspace); } } } if(totalIter <= m_maxIterations * matrix.cols()) m_info = Success; else m_info = NoConvergence; m_isInitialized = true; m_matUisUptodate = computeU; return *this; } /** \internal Computes and returns vector L1 norm of T */ template<typename MatrixType> inline typename MatrixType::Scalar RealSchur<MatrixType>::computeNormOfT() { const Index size = m_matT.cols(); // FIXME to be efficient the following would requires a triangular reduxion code // Scalar norm = m_matT.upper().cwiseAbs().sum() // + m_matT.bottomLeftCorner(size-1,size-1).diagonal().cwiseAbs().sum(); Scalar norm(0); for (Index j = 0; j < size; ++j) norm += m_matT.row(j).segment((std::max)(j-1,Index(0)), size-(std::max)(j-1,Index(0))).cwiseAbs().sum(); return norm; } /** \internal Look for single small sub-diagonal element and returns its index */ template<typename MatrixType> inline typename MatrixType::Index RealSchur<MatrixType>::findSmallSubdiagEntry(Index iu, Scalar norm) { Index res = iu; while (res > 0) { Scalar s = internal::abs(m_matT.coeff(res-1,res-1)) + internal::abs(m_matT.coeff(res,res)); if (s == 0.0) s = norm; if (internal::abs(m_matT.coeff(res,res-1)) < NumTraits<Scalar>::epsilon() * s) break; res--; } return res; } /** \internal Update T given that rows iu-1 and iu decouple from the rest. */ template<typename MatrixType> inline void RealSchur<MatrixType>::splitOffTwoRows(Index iu, bool computeU, Scalar exshift) { const Index size = m_matT.cols(); // The eigenvalues of the 2x2 matrix [a b; c d] are // trace +/- sqrt(discr/4) where discr = tr^2 - 4*det, tr = a + d, det = ad - bc Scalar p = Scalar(0.5) * (m_matT.coeff(iu-1,iu-1) - m_matT.coeff(iu,iu)); Scalar q = p * p + m_matT.coeff(iu,iu-1) * m_matT.coeff(iu-1,iu); // q = tr^2 / 4 - det = discr/4 m_matT.coeffRef(iu,iu) += exshift; m_matT.coeffRef(iu-1,iu-1) += exshift; if (q >= Scalar(0)) // Two real eigenvalues { Scalar z = internal::sqrt(internal::abs(q)); JacobiRotation<Scalar> rot; if (p >= Scalar(0)) rot.makeGivens(p + z, m_matT.coeff(iu, iu-1)); else rot.makeGivens(p - z, m_matT.coeff(iu, iu-1)); m_matT.rightCols(size-iu+1).applyOnTheLeft(iu-1, iu, rot.adjoint()); m_matT.topRows(iu+1).applyOnTheRight(iu-1, iu, rot); m_matT.coeffRef(iu, iu-1) = Scalar(0); if (computeU) m_matU.applyOnTheRight(iu-1, iu, rot); } if (iu > 1) m_matT.coeffRef(iu-1, iu-2) = Scalar(0); } /** \internal Form shift in shiftInfo, and update exshift if an exceptional shift is performed. */ template<typename MatrixType> inline void RealSchur<MatrixType>::computeShift(Index iu, Index iter, Scalar& exshift, Vector3s& shiftInfo) { shiftInfo.coeffRef(0) = m_matT.coeff(iu,iu); shiftInfo.coeffRef(1) = m_matT.coeff(iu-1,iu-1); shiftInfo.coeffRef(2) = m_matT.coeff(iu,iu-1) * m_matT.coeff(iu-1,iu); // Wilkinson's original ad hoc shift if (iter == 10) { exshift += shiftInfo.coeff(0); for (Index i = 0; i <= iu; ++i) m_matT.coeffRef(i,i) -= shiftInfo.coeff(0); Scalar s = internal::abs(m_matT.coeff(iu,iu-1)) + internal::abs(m_matT.coeff(iu-1,iu-2)); shiftInfo.coeffRef(0) = Scalar(0.75) * s; shiftInfo.coeffRef(1) = Scalar(0.75) * s; shiftInfo.coeffRef(2) = Scalar(-0.4375) * s * s; } // MATLAB's new ad hoc shift if (iter == 30) { Scalar s = (shiftInfo.coeff(1) - shiftInfo.coeff(0)) / Scalar(2.0); s = s * s + shiftInfo.coeff(2); if (s > Scalar(0)) { s = internal::sqrt(s); if (shiftInfo.coeff(1) < shiftInfo.coeff(0)) s = -s; s = s + (shiftInfo.coeff(1) - shiftInfo.coeff(0)) / Scalar(2.0); s = shiftInfo.coeff(0) - shiftInfo.coeff(2) / s; exshift += s; for (Index i = 0; i <= iu; ++i) m_matT.coeffRef(i,i) -= s; shiftInfo.setConstant(Scalar(0.964)); } } } /** \internal Compute index im at which Francis QR step starts and the first Householder vector. */ template<typename MatrixType> inline void RealSchur<MatrixType>::initFrancisQRStep(Index il, Index iu, const Vector3s& shiftInfo, Index& im, Vector3s& firstHouseholderVector) { Vector3s& v = firstHouseholderVector; // alias to save typing for (im = iu-2; im >= il; --im) { const Scalar Tmm = m_matT.coeff(im,im); const Scalar r = shiftInfo.coeff(0) - Tmm; const Scalar s = shiftInfo.coeff(1) - Tmm; v.coeffRef(0) = (r * s - shiftInfo.coeff(2)) / m_matT.coeff(im+1,im) + m_matT.coeff(im,im+1); v.coeffRef(1) = m_matT.coeff(im+1,im+1) - Tmm - r - s; v.coeffRef(2) = m_matT.coeff(im+2,im+1); if (im == il) { break; } const Scalar lhs = m_matT.coeff(im,im-1) * (internal::abs(v.coeff(1)) + internal::abs(v.coeff(2))); const Scalar rhs = v.coeff(0) * (internal::abs(m_matT.coeff(im-1,im-1)) + internal::abs(Tmm) + internal::abs(m_matT.coeff(im+1,im+1))); if (internal::abs(lhs) < NumTraits<Scalar>::epsilon() * rhs) { break; } } } /** \internal Perform a Francis QR step involving rows il:iu and columns im:iu. */ template<typename MatrixType> inline void RealSchur<MatrixType>::performFrancisQRStep(Index il, Index im, Index iu, bool computeU, const Vector3s& firstHouseholderVector, Scalar* workspace) { assert(im >= il); assert(im <= iu-2); const Index size = m_matT.cols(); for (Index k = im; k <= iu-2; ++k) { bool firstIteration = (k == im); Vector3s v; if (firstIteration) v = firstHouseholderVector; else v = m_matT.template block<3,1>(k,k-1); Scalar tau, beta; Matrix<Scalar, 2, 1> ess; v.makeHouseholder(ess, tau, beta); if (beta != Scalar(0)) // if v is not zero { if (firstIteration && k > il) m_matT.coeffRef(k,k-1) = -m_matT.coeff(k,k-1); else if (!firstIteration) m_matT.coeffRef(k,k-1) = beta; // These Householder transformations form the O(n^3) part of the algorithm m_matT.block(k, k, 3, size-k).applyHouseholderOnTheLeft(ess, tau, workspace); m_matT.block(0, k, (std::min)(iu,k+3) + 1, 3).applyHouseholderOnTheRight(ess, tau, workspace); if (computeU) m_matU.block(0, k, size, 3).applyHouseholderOnTheRight(ess, tau, workspace); } } Matrix<Scalar, 2, 1> v = m_matT.template block<2,1>(iu-1, iu-2); Scalar tau, beta; Matrix<Scalar, 1, 1> ess; v.makeHouseholder(ess, tau, beta); if (beta != Scalar(0)) // if v is not zero { m_matT.coeffRef(iu-1, iu-2) = beta; m_matT.block(iu-1, iu-1, 2, size-iu+1).applyHouseholderOnTheLeft(ess, tau, workspace); m_matT.block(0, iu-1, iu+1, 2).applyHouseholderOnTheRight(ess, tau, workspace); if (computeU) m_matU.block(0, iu-1, size, 2).applyHouseholderOnTheRight(ess, tau, workspace); } // clean up pollution due to round-off errors for (Index i = im+2; i <= iu; ++i) { m_matT.coeffRef(i,i-2) = Scalar(0); if (i > im+2) m_matT.coeffRef(i,i-3) = Scalar(0); } } } // end namespace Eigen #endif // EIGEN_REAL_SCHUR_H
[ "769238687@qq.com" ]
769238687@qq.com
300a829db2ad68f7929a5899e4f6371a1c2ed7fb
f9b73300fa533c16813e072b50ae84643d9fbd5a
/src/analysis_3_habitat_correlates_of_snail_density/src/include/functions.hpp
29c95f130c932193edb4af5369fba3ed98c6f413
[]
no_license
dondealban/Wood_et_al_2019_PNAS
8f986b2dab25d557a8eba082495b30ad8b8ca569
a9dffb85306fb05ad14dea3bbafcecf825ca66ee
refs/heads/master
2020-09-16T18:52:15.085809
2019-11-23T19:21:03
2019-11-23T19:21:03
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,663
hpp
// Function for to extract a layer from an array template<class Type> matrix<Type> matrix_from_array(array<Type> a1, int sheet){ vector<int> a1_dim = a1.dim; matrix<Type> m1(a1_dim(0), a1_dim(1)); // If array is array if(a1_dim.size() == 3){ for(int row = 0; row < a1_dim(0); row++){ for(int col = 0; col < a1_dim(1); col++){ m1(row, col) = a1(row, col, sheet); } } } // If array is matrix if(a1_dim.size() == 2){ for(int row = 0; row < a1_dim(0); row++){ for(int col = 0; col < a1_dim(1); col++){ m1(row, col) = a1(row, col); } } } return m1; } // Function for detecting NAs template<class Type> bool isNA(Type x){ return R_IsNA(asDouble(x)); } // dlnorm template<class Type> Type dlognorm(Type x, Type meanlog, Type sdlog, int give_log=0){ //return 1/(sqrt(2*M_PI)*sd)*exp(-.5*pow((x-mean)/sd,2)); Type logres = dnorm( log(x), meanlog, sdlog, true) - log(x); if(give_log) return logres; else return exp(logres); } // Function to trim matrix template<class Type> matrix<Type> trim_matrix(matrix<Type> m1, int nrow, int ncol){ // dim is a DATA_IMATRIX with structure nrow, ncol, ID # of object we wish to interogate matrix<Type> m2(nrow, ncol); // If array is matrix for(int row = 0; row < nrow; row++){ for(int col = 0; col < ncol; col++){ m2(row, col) = m1(row, col); } } return m2; } // Function to trim vector template<class Type> matrix<Type> trim_vector(vector<Type> v1, int length){ // dim is a DATA_IMATRIX with structure nrow, ncol, ID # of object we wish to interogate vector<Type> v2(length); // If array is matrix for(int i = 0; i < length; i++){ v2(i) = v1(i); } return v2; } // function to get row vector from array template<class Type> vector<Type> col_from_3D_array(array<Type> a1, int col, int sheet){ vector<int> a1_dim = a1.dim; vector<Type> v1(a1_dim(0)); // If array is array if(a1_dim.size() == 3){ for(int row = 0; row < a1_dim(0); row++){ v1(row) = a1(row, col, sheet); } } // If array is matrix if(a1_dim.size() == 2){ for(int row = 0; row < a1_dim(0); row++){ v1(row) = a1(row, col); } } return v1; } template<class Type> vector<Type> col_from_4D_array(array<Type> a1, int col, int sheet1, int sheet2){ vector<int> a1_dim = a1.dim; vector<Type> v1(a1_dim(0)); // If array is 4D array if(a1_dim.size() == 4){ for(int row = 0; row < a1_dim(0); row++){ v1(row) = a1(row, col, sheet1, sheet2); } } // If array is 3D array if(a1_dim.size() == 3){ for(int row = 0; row < a1_dim(0); row++){ v1(row) = a1(row, col, sheet1); } } // If array is matrix if(a1_dim.size() == 2){ for(int row = 0; row < a1_dim(0); row++){ v1(row) = a1(row, col); } } return v1; } // Function to turn NAs to 0s in matrix in specific columns not specified // first_col is the first column of categorical variables, save_col are the columns to be left alone - NA otherwise template<class Type> vector<Type> matrix_cat_na_to_zero( matrix<Type> m1, int first_col, vector<Type> save_col){ matrix<Type> m2 = m1; for(int row = first_col; row < m1.rows(); row++){ // Start index at first col for(int col = 0; col < m1.cols(); col++){ if( isNA( save_col( col ) ) ){ // If column is not estimated if( isNA( m2(row, col) )){ // If value is NA m2(row, col) = 0; } } } } return m2; } // Function to count NAs template<class Type> int n_NA( vector<Type> v1){ int n_NA = 0; for(int i = 0; i < v1.size(); i++){ if(isNA( v1( i ) )){ n_NA += 1; } } return n_NA; }
[ "chelsealwood@gmail.com" ]
chelsealwood@gmail.com
a24da19d4466b6df11fa53298513ec9825a6132e
cfc64a6e9b78eb540310106e7e047009542243be
/zsIRC_Format.cpp
dbc968689f73015b7e925102c2389fac6d431726
[]
no_license
Gargaj/zsIRC
fd49bb8be81a90d1d7115168686259167419eaf9
b246c92c73a5676b2acd2e721d1b95e8e98c17ca
refs/heads/master
2016-08-04T04:09:23.761319
2015-03-13T12:11:23
2015-03-13T12:11:23
32,111,165
3
0
null
null
null
null
UTF-8
C++
false
false
3,539
cpp
// zsIRC_Format.cpp: implementation of the zsIRC_Format class. // ////////////////////////////////////////////////////////////////////// #include "stdafx.h" #include "zsIRC.h" #include "zsIRC_Format.h" #include "zsIRC_Settings.h" #ifdef _DEBUG #undef THIS_FILE static char THIS_FILE[]=__FILE__; #define new DEBUG_NEW #endif ////////////////////////////////////////////////////////////////////// // Construction/Destruction ////////////////////////////////////////////////////////////////////// zsIRC_Format::zsIRC_Format() { } zsIRC_Format::~zsIRC_Format() { } CString zsIRC_Format::Say(CString nick,CString message) { CString s; s += _T("<"); s += nick; s += _T("> "); s += message; return s; } CString zsIRC_Format::Kick(CString nick,CString victim,CString message) { CString str = _T("* "); str += victim; str += _T(" was kicked by "); str += nick; if (message.GetLength()) { str += _T(" ("); str += message; str += _T(")"); } return str; } CString zsIRC_Format::Nick(CString oldnick,CString newnick) { CString str = _T("* "); str += oldnick; str += _T(" is now known as "); str += newnick; return str; } CString zsIRC_Format::Act(CString nick,CString message) { CString str = _T("* "); str += nick; str += _T(" "); str += message; return str; } CString zsIRC_Format::Mode(CString nick,CString mode) { CString str = _T("* "); str += nick; str += " sets mode: "; str += mode; return str; } CString zsIRC_Format::Part(CString nick,CString host,CString channel,CString qstr) { CString str = _T("* "); str += nick; if (SETUP.nShowHosts) { str += _T(" ("); str += host; str += _T(")"); } str += _T(" has left "); str += channel; if (qstr.GetLength()) { str += _T(" ("); str += qstr; str += _T(")"); } return str; } CString zsIRC_Format::Quit(CString nick,CString host,CString qstr) { CString str = _T("* "); str += nick; if (SETUP.nShowHosts) { str += _T(" ("); str += host; str += _T(")"); } str += _T(" has quit IRC"); if (qstr.GetLength()) { str += _T(" ("); str += qstr; str += _T(")"); } return str; } CString zsIRC_Format::Join(CString nick,CString host,CString channel) { CString str = _T("* "); str += nick; if (SETUP.nShowHosts) { str += _T(" ("); str += host; str += _T(")"); } str += _T(" has joined "); str += channel; return str; } CString zsIRC_Format::Topic(CString topic) { CString str = _T("* Topic is '"); str += topic; str += _T("'"); return str; } CString zsIRC_Format::TopicSetBy(CString host,CString time) { CString str = _T("* Set by "); str += host; str += _T(" at "); str += time; return str; } CString zsIRC_Format::TopicChange(CString nick,CString topic) { CString str = _T("* "); str += nick; str += _T(" sets topic to '"); str += topic; str += _T("'"); return str; } CString zsIRC_Format::NotifyJoin(CString nick) { CString str = _T("* "); str += nick; str += _T(" has connected IRC"); return str; } CString zsIRC_Format::NotifyQuit(CString nick) { CString str = _T("* "); str += nick; str += _T(" has left IRC"); return str; } CString zsIRC_Format::Invite(CString nick,CString channel) { CString str = _T("* "); str += nick; str += _T(" has invited you to "); str += channel; return str; }
[ "gargajcns@059e7142-3fed-eb67-7d44-fb0549285e64" ]
gargajcns@059e7142-3fed-eb67-7d44-fb0549285e64
a2b23711b18eea8a99d271543a4c23edaaabe4ae
43a2fbc77f5cea2487c05c7679a30e15db9a3a50
/Cpp/External/SDK/BP_large_mast_fore_parameters.h
b5448df8109a5e4854389c38f79ab960952827a9
[]
no_license
zH4x/SoT-Insider-SDK
57e2e05ede34ca1fd90fc5904cf7a79f0259085c
6bff738a1b701c34656546e333b7e59c98c63ad7
refs/heads/main
2023-06-09T23:10:32.929216
2021-07-07T01:34:27
2021-07-07T01:34:27
383,638,719
0
0
null
null
null
null
UTF-8
C++
false
false
1,170
h
#pragma once // Name: SoT-Insider, Version: 1.102.2382.0 /*!!DEFINE!!*/ /*!!HELPER_DEF!!*/ /*!!HELPER_INC!!*/ #ifdef _MSC_VER #pragma pack(push, 0x01) #endif namespace CG { //--------------------------------------------------------------------------- // Parameters //--------------------------------------------------------------------------- // Function BP_large_mast_fore.BP_large_mast_fore_C.UserConstructionScript struct ABP_large_mast_fore_C_UserConstructionScript_Params { }; // Function BP_large_mast_fore.BP_large_mast_fore_C.OnMastDescLoaded struct ABP_large_mast_fore_C_OnMastDescLoaded_Params { class UMastDescAsset* MastDesc; // (Parm, ZeroConstructor, IsPlainOldData, NoDestructor) }; // Function BP_large_mast_fore.BP_large_mast_fore_C.ExecuteUbergraph_BP_large_mast_fore struct ABP_large_mast_fore_C_ExecuteUbergraph_BP_large_mast_fore_Params { int EntryPoint; // (Parm, ZeroConstructor, IsPlainOldData, NoDestructor) }; } #ifdef _MSC_VER #pragma pack(pop) #endif
[ "Massimo.linker@gmail.com" ]
Massimo.linker@gmail.com
7c5b44a9d38392b16f1f1dbeb0ef65b373b3d1fe
b5e2b699b398583a6284dd3730af5a224fa07da6
/Classes/Scene/ImageEditor/SMImageEditorRotateScene.h
a07919eea69d7c80ed888aeb6615250ed9d90ff3
[]
no_license
brokenpc00/SMFrameWork_CPP
21b435d588bdded3e59818127bba42524af3bcda
0038a631c1fc31a5366655ac84479c97bee528fa
refs/heads/main
2023-02-26T15:08:56.466222
2021-02-01T23:44:18
2021-02-01T23:44:18
335,111,231
0
0
null
null
null
null
UTF-8
C++
false
false
1,601
h
// // SMImageEditorRotateScene.h // iPet // // Created by KimSteve on 2017. 5. 8.. // Copyright © 2017년 KimSteve. All rights reserved. // #ifndef SMImageEditorRotateScene_h #define SMImageEditorRotateScene_h #include "../../SMFrameWork/Base/SMScene.h" #include "../ImagePicker/SMImagePickerScene.h" class SMView; class SMImageView; class SMButton; class SMTableView; typedef enum { kRotateMenuLeft = 0, kRotateMenuRight, kRotateMenuFlipY, kRotateMenuFlipX, kRotateMenuCount, } kRotateMenu; class SMImageEditorRotateScene : public SMScene, public OnClickListener { public: SMImageEditorRotateScene(); virtual ~SMImageEditorRotateScene(); CREATE_SCENE(SMImageEditorRotateScene); void setOnImageSelectedListener(OnImageSelectedListener * l) {_listener = l;} class MenuCell : public SMView { public: MenuCell(){}; ~MenuCell(){}; CREATE_VIEW(MenuCell); SMButton * menuButton; }; protected: virtual bool init() override; virtual void onClick(SMView * view) override; SMView * _contentView; SMView * _topMenuView; SMView * _bottomMenuView; SMTableView * _rotateMenuTableView; SMImageView * _mainImageView; cocos2d::Sprite * _currentImageSprite; cocos2d::Image * _mainccImage; void doRotate(float dt); kRotateMenu _currentRotateType; bool _isRotateAnimation; void applyRotateImage(); bool _fromPicker; OnImageSelectedListener * _listener; int _callIndex; }; #endif /* SMImageEditorRotateScene_h */
[ "" ]
4d594dc476516793b1b13710fa2b50b01b14b399
091afb7001e86146209397ea362da70ffd63a916
/inst/include/boost/simd/arithmetic/include/functions/minmod.hpp
1776e93ad67862dffd183d142de8670d10a98382
[]
no_license
RcppCore/RcppNT2
f156b58c08863243f259d1e609c9a7a8cf669990
cd7e548daa2d679b6ccebe19744b9a36f1e9139c
refs/heads/master
2021-01-10T16:15:16.861239
2016-02-02T22:18:25
2016-02-02T22:18:25
50,460,545
15
1
null
2019-11-15T22:08:50
2016-01-26T21:29:34
C++
UTF-8
C++
false
false
326
hpp
#ifndef BOOST_SIMD_ARITHMETIC_INCLUDE_FUNCTIONS_MINMOD_HPP_INCLUDED #define BOOST_SIMD_ARITHMETIC_INCLUDE_FUNCTIONS_MINMOD_HPP_INCLUDED #include <boost/simd/arithmetic/functions/minmod.hpp> #include <boost/simd/arithmetic/functions/scalar/minmod.hpp> #include <boost/simd/arithmetic/functions/simd/common/minmod.hpp> #endif
[ "kevinushey@gmail.com" ]
kevinushey@gmail.com
522f6e9c89b1e9e9f89fc15e4c4af8a2afb5f872
501d500647d367e6aa769df32dd1d6a002a9c38a
/Include/Cassius/SourceStream.hpp
3a00832e07e060d76ffe20982d33f95b81348a28
[ "ISC" ]
permissive
Spidey01/Cassius
85fe483fbc5e1f7ed64bb15871be674d298f098c
6c9f649a648d18d7c27ce6251740ba01de83a95a
refs/heads/master
2022-01-23T21:30:10.495881
2022-01-17T21:52:00
2022-01-17T21:52:00
2,144,137
0
0
null
null
null
null
UTF-8
C++
false
false
1,071
hpp
#ifndef CASSIUS_INCLUDE_SOURCESTREAM_HPP #define CASSIUS_INCLUDE_SOURCESTREAM_HPP // SPDX-License-Identifier: ISC // Copyright 2010, Terry M. Poulin. #include <iosfwd> #include <sstream> #include <string> #include "Source.hpp" namespace Cassius { /** Simple class representing an executable chunk of Source code as a istream */ class CASSIUS_API SourceStream : public Source { public: SourceStream(); SourceStream(std::istream& stream); virtual ~SourceStream(); virtual std::string get() const; /** * @brief Allows raw ostream access. * * Useful if you want to build a Source using operator<<. * * @returns reference to the internal stream. */ std::ostream& to_ostream(); /** * @brief Allows raw istream access. * * @returns reference to the internal stream. */ std::istream& to_istream(); private: std::stringstream mStream; }; } // namespace Cassius #endif
[ "BigBoss1964@gmail.com" ]
BigBoss1964@gmail.com
d6dac2a1571718a5640062ad560855e9923493d3
a6848e795c6e9349d0196f70f7f8aea747050602
/targets/XPlatCppSdk/source/LibUnitTest/PlayFabClientTest.cpp
612e9474083d813b9a7c57266b46828ba6163ace
[ "Apache-2.0" ]
permissive
Micha0/SDKGenerator
f4900b5ccc1cd442604b4f49e38cd60b81f37007
8e32f072b8b8de9a3c0bca6639f3741c0781dc16
refs/heads/master
2020-03-22T09:14:28.671043
2018-07-03T22:03:38
2018-07-03T22:03:38
139,824,635
0
0
Apache-2.0
2018-07-05T09:13:24
2018-07-05T09:13:24
null
UTF-8
C++
false
false
25,207
cpp
#include <stdafx.h> #ifndef DISABLE_PLAYFABCLIENT_API #include <fstream> #include <CppUnitTest.h> #include <cstdlib> // _dupenv_s #include <Windows.h> // Sleep() #include <json/reader.h> #include <playfab/PlayFabClientDataModels.h> #include <playfab/PlayFabClientApi.h> #include <playfab/PlayFabSettings.h> using namespace Microsoft::VisualStudio::CppUnitTestFramework; using namespace std; using namespace PlayFab; using namespace ClientModels; namespace UnittestRunner { TEST_CLASS(PlayFabClientTest) { // Functional static bool TITLE_INFO_SET; // Fixed values provided from testInputs static string USER_EMAIL; // Information fetched by appropriate API calls static string playFabId; static const int TEST_STAT_BASE; static const string TEST_STAT_NAME; static string TEST_TITLE_DATA_LOC; static const string TEST_DATA_KEY_1; static const string TEST_DATA_KEY_2; // Variables for specific tests static string testMessageReturn; static Int32 testMessageInt1; static Int32 testMessageInt2; static time_t testMessageTime; static bool testMessageBool; public: /// <summary> /// PlayFab Title cannot be created from SDK tests, so you must provide your titleId to run unit tests. /// (Also, we don't want lots of excess unused titles) /// </summary> static void SetTitleInfo(Json::Value titleData) { // Parse all the inputs PlayFab::PlayFabSettings::threadedCallbacks = false; PlayFabSettings::titleId = titleData["titleId"].asString(); USER_EMAIL = titleData["userEmail"].asString(); // Verify all the inputs won't cause crashes in the tests TITLE_INFO_SET = true; } TEST_CLASS_INITIALIZE(ClassInitialize) { if (TITLE_INFO_SET) return; // Prefer to load path from environment variable, if present char* envPath = nullptr; size_t envPathStrLen; const errno_t err = _dupenv_s(&envPath, &envPathStrLen, "PF_TEST_TITLE_DATA_JSON"); if (err == 0 && envPath != nullptr) TEST_TITLE_DATA_LOC = envPath; if (envPath != nullptr) free(envPath); ifstream titleInput; if (TEST_TITLE_DATA_LOC.length() > 0) titleInput.open(TEST_TITLE_DATA_LOC, ios::binary | ios::in); if (titleInput) { const auto begin = titleInput.tellg(); titleInput.seekg(0, ios::end); const auto end = titleInput.tellg(); const int size = static_cast<int>(end - begin); char* titleJson = new char[size + 1]; titleInput.seekg(0, ios::beg); titleInput.read(titleJson, size); titleJson[size] = '\0'; Json::CharReaderBuilder jsonReaderFactory; Json::CharReader* jsonReader(jsonReaderFactory.newCharReader()); JSONCPP_STRING jsonParseErrors; Json::Value titleData; const bool parsedSuccessfully = jsonReader->parse(titleJson, titleJson + size + 1, &titleData, &jsonParseErrors); if (parsedSuccessfully) SetTitleInfo(titleData); delete[] titleJson; } else { // TODO: POPULATE THIS SECTION WITH REAL INFORMATION (or set up a testTitleData file, and set your PF_TEST_TITLE_DATA_JSON to the path for that file) PlayFabSettings::titleId = ""; // The titleId for your title, found in the "Settings" section of PlayFab Game Manager USER_EMAIL = ""; // This is the email for a valid user (test tries to log into it with an invalid password, and verifies error result) } } TEST_CLASS_CLEANUP(ClassCleanup) { PlayFabClientAPI::ForgetAllCredentials(); } static void PlayFabApiWait() { testMessageReturn = "pending"; size_t count = 1, sleepCount = 0; while (count != 0) { count = PlayFabClientAPI::Update(); sleepCount++; Sleep(1); } // Assert::IsTrue(sleepCount < 20); // The API call shouldn't take too long } // A shared failure function for all calls (That don't expect failure) static void SharedFailedCallback(const PlayFabError& error, void* = nullptr) { testMessageReturn.clear(); testMessageReturn.reserve(1024); testMessageReturn = "API_Call_Failed for: "; testMessageReturn += error.UrlPath; testMessageReturn += "\n"; testMessageReturn += error.GenerateReport(); testMessageReturn += "\n"; testMessageReturn += error.Request.toStyledString(); } /// <summary> /// CLIENT API /// Try to deliberately log in with an inappropriate password, /// and verify that the error displays as expected. /// </summary> TEST_METHOD(InvalidLogin) { LoginWithEmailAddressRequest request; request.Email = USER_EMAIL; request.Password = "INVALID"; PlayFabClientAPI::LoginWithEmailAddress(request, LoginCallback, LoginFailedCallback); PlayFabApiWait(); Assert::IsTrue(testMessageReturn.compare("InvalidLogin - Password correctly reported") == 0, U(testMessageReturn).c_str()); // This call is supposed to return as an error } static void LoginCallback(const LoginResult& result, void*) { testMessageReturn = "Login_Success"; playFabId = result.PlayFabId; // Successful login tracks playFabId } static void LoginFailedCallback(const PlayFabError& error, void*) { if (error.ErrorMessage.find("password") != string::npos) testMessageReturn = "InvalidLogin - Password correctly reported"; else SharedFailedCallback(error); } /// <summary> /// CLIENT API /// Test that a lambda error callback can be successfully invoked /// </summary> TEST_METHOD(InvalidLoginLambda) { LoginWithEmailAddressRequest request; request.Email = USER_EMAIL; request.Password = "INVALID"; PlayFabClientAPI::LoginWithEmailAddress(request, LoginCallback, [](const PlayFabError&, void*) { testMessageReturn = "Lambda failure success"; }); PlayFabApiWait(); Assert::IsTrue(testMessageReturn.compare("Lambda failure success") == 0, U(testMessageReturn).c_str()); // This call is supposed to return as an error } /// <summary> /// CLIENT API /// Try to deliberately register a user with an invalid email and password /// Verify that errorDetails are populated correctly. /// </summary> TEST_METHOD(InvalidRegistration) { RegisterPlayFabUserRequest request; request.Username = "x"; request.Email = "x"; request.Password = "x"; PlayFabClientAPI::RegisterPlayFabUser(request, InvalidRegistrationSuccess, InvalidRegistrationFail); PlayFabApiWait(); Assert::IsTrue(testMessageReturn.compare("InvalidRegistration - errorDetails correctly reported") == 0, U(testMessageReturn).c_str()); // This call is supposed to return as an error } static void InvalidRegistrationSuccess(const RegisterPlayFabUserResult&, void*) { testMessageReturn = "InvalidRegistration was expected to fail"; } static void InvalidRegistrationFail(const PlayFabError& error, void*) { bool foundEmailMsg, foundPasswordMsg; string expectedEmailMsg = "Email address is not valid."; string expectedPasswordMsg = "Password must be between"; string errorConcat = error.GenerateReport(); foundEmailMsg = (errorConcat.find(expectedEmailMsg) != -1); foundPasswordMsg = (errorConcat.find(expectedPasswordMsg) != -1); if (foundEmailMsg && foundPasswordMsg) testMessageReturn = "InvalidRegistration - errorDetails correctly reported"; else SharedFailedCallback(error); } /// <summary> /// CLIENT API /// Log in or create a user, track their PlayFabId /// </summary> TEST_METHOD(LoginOrRegister) { if (PlayFabClientAPI::IsClientLoggedIn()) return; // This test has to have passed at least once for this case to happen LoginWithCustomIDRequest loginRequest; loginRequest.CustomId = PlayFabSettings::buildIdentifier; loginRequest.CreateAccount = true; PlayFabClientAPI::LoginWithCustomID(loginRequest, LoginCallback, LoginFailedCallback); PlayFabApiWait(); Assert::IsTrue(PlayFabClientAPI::IsClientLoggedIn(), U(testMessageReturn).c_str()); } /// <summary> /// CLIENT API /// Test that the login call sequence sends the AdvertisingId when set /// </summary> TEST_METHOD(LoginWithAdvertisingId) { PlayFabSettings::advertisingIdType = PlayFabSettings::AD_TYPE_ANDROID_ID; PlayFabSettings::advertisingIdValue = "PlayFabTestId"; LoginWithCustomIDRequest loginRequest; loginRequest.CustomId = PlayFabSettings::buildIdentifier; loginRequest.CreateAccount = true; PlayFabClientAPI::LoginWithCustomID(loginRequest, LoginCallback, LoginFailedCallback); PlayFabApiWait(); auto targetValue = PlayFabSettings::AD_TYPE_ANDROID_ID + "_Successful"; auto actualValue = PlayFabSettings::advertisingIdType; Assert::IsTrue(actualValue.compare(targetValue) == 0, L"Check that advertisingId was sent."); } /// <summary> /// CLIENT API /// Test a sequence of calls that modifies saved data, /// and verifies that the next sequential API call contains updated data. /// Verify that the data is correctly modified on the next call. /// Parameter types tested: string, map<string, UserDataRecord>, DateTime /// </summary> TEST_METHOD(UserDataApi) { LoginOrRegister(); // C++ Environment is nicely secluded, but also means that we have to manually handle sequential requirements // Define some of the containers we use in this test GetUserDataRequest getRequest; UpdateUserDataRequest updateRequest1, updateRequest2; int testCounterValueActual; PlayFabClientAPI::GetUserData(getRequest, GetDataCallback, SharedFailedCallback); PlayFabApiWait(); Assert::IsTrue(testMessageReturn.compare("GetData_Success") == 0, L"Check that GetUserData was successful"); int testCounterValueExpected = (testMessageInt1 + 1) % 100; // This test is about the expected value changing - but not testing more complicated issues like bounds updateRequest1.Data[TEST_DATA_KEY_1] = to_string(testCounterValueExpected); updateRequest1.Data[TEST_DATA_KEY_2] = string("This is trash"); PlayFabClientAPI::UpdateUserData(updateRequest1, UpdateDataCallback, SharedFailedCallback); PlayFabApiWait(); Assert::IsTrue(testMessageReturn.compare("UpdateData_Success") == 0, L"Check that UpdateUserData was successful"); PlayFabClientAPI::GetUserData(getRequest, GetDataCallback, SharedFailedCallback); PlayFabApiWait(); Assert::IsTrue(testMessageReturn.compare("GetData_Success") == 0, L"Check that GetUserData was successful"); testCounterValueActual = testMessageInt1; Assert::AreEqual(testCounterValueExpected, testCounterValueActual, L"Check that the userData counter was incremented as expected"); Assert::IsTrue(testMessageBool, L"Check if TEST_DATA_KEY_2 exists"); // Check for, and remove TEST_DATA_KEY_2 updateRequest2.KeysToRemove.emplace_back(TEST_DATA_KEY_2); PlayFabClientAPI::UpdateUserData(updateRequest2, UpdateDataCallback, SharedFailedCallback); PlayFabApiWait(); Assert::IsTrue(testMessageReturn.compare("UpdateData_Success") == 0, L"Check that UpdateUserData was successful"); PlayFabClientAPI::GetUserData(getRequest, GetDataCallback, SharedFailedCallback); PlayFabApiWait(); Assert::IsTrue(testMessageReturn.compare("GetData_Success") == 0, L"Check that GetUserData was successful"); Assert::IsFalse(testMessageBool, L"Check if TEST_DATA_KEY_2 is removed"); // TEST_DATA_KEY_2 is removed time_t now = time(nullptr); tm timeInfo; gmtime_s(&timeInfo, &now); now = mktime(&timeInfo); time_t minTime = now - (60 * 5); time_t maxTime = now + (60 * 5); Assert::IsTrue(minTime <= testMessageTime && testMessageTime <= maxTime, L"Timestamps don't match"); } static void GetDataCallback(const GetUserDataResult& result, void*) { testMessageReturn = "GetData_Success"; const auto it1 = result.Data.find(TEST_DATA_KEY_1); if (it1 != result.Data.end()) { testMessageInt1 = atoi(it1->second.Value.c_str()); testMessageTime = it1->second.LastUpdated; } const auto it2 = result.Data.find(TEST_DATA_KEY_2); testMessageBool = (it2 != result.Data.end()); } static void UpdateDataCallback(const UpdateUserDataResult&, void*) { // The update result doesn't contain anything interesting. It's better to just re-call GetUserData again to verify the update testMessageReturn = "UpdateData_Success"; } /// <summary> /// CLIENT API /// Test a sequence of calls that modifies saved data, /// and verifies that the next sequential API call contains updated data. /// Verify that the data is saved correctly, and that specific types are tested /// Parameter types tested: map<string, Int32> /// </summary> TEST_METHOD(PlayerStatisticsApi) { LoginOrRegister(); // C++ Environment is nicely secluded, but also means that we have to manually handle sequential requirements testMessageInt1 = 0; GetPlayerStatisticsRequest getRequest; PlayFabClientAPI::GetPlayerStatistics(getRequest, GetStatsCallback, SharedFailedCallback); PlayFabApiWait(); const Int32 testStatValueExpected = (testMessageInt1 + 5) % 100; UpdatePlayerStatisticsRequest updateRequest; StatisticUpdate statUpdate; statUpdate.StatisticName = TEST_STAT_NAME; statUpdate.Value = testStatValueExpected; updateRequest.Statistics.insert(updateRequest.Statistics.begin(), statUpdate); PlayFabClientAPI::UpdatePlayerStatistics(updateRequest, UpdateStatsCallback, SharedFailedCallback); PlayFabApiWait(); Assert::IsTrue(testMessageReturn.compare("UpdateStats_Success") == 0, U(testMessageReturn).c_str()); testMessageInt1 = -1000; PlayFabClientAPI::GetPlayerStatistics(getRequest, GetStatsCallback, SharedFailedCallback); PlayFabApiWait(); Assert::IsTrue(testMessageReturn.compare("GetStats_Success") == 0, U(testMessageReturn).c_str()); const Int32 testStatValueActual = testMessageInt1; Assert::AreEqual(testStatValueExpected, testStatValueActual); } static void GetStatsCallback(const GetPlayerStatisticsResult& result, void*) { bool success = false; for (auto it = result.Statistics.begin(); it != result.Statistics.end(); ++it) { if (it->StatisticName == TEST_STAT_NAME) { testMessageInt1 = it->Value; success = true; } } if (success) testMessageReturn = "GetStats_Success"; else testMessageReturn = "Target statistic not found"; } static void UpdateStatsCallback(const UpdatePlayerStatisticsResult&, void*) { // The update result doesn't contain anything interesting. It's better to just re-call GetUserData again to verify the update testMessageReturn = "UpdateStats_Success"; } /// <summary> /// CLIENT API /// Get characters is no longer very useful /// </summary> TEST_METHOD(UserCharacter) { LoginOrRegister(); // C++ Environment is nicely secluded, but also means that we have to manually handle sequential requirements ListUsersCharactersRequest request; PlayFabClientAPI::GetAllUsersCharacters(request, GetCharsCallback, SharedFailedCallback); PlayFabApiWait(); Assert::IsTrue(testMessageReturn.compare("GetChars_Success") == 0, U(testMessageReturn).c_str()); } static void GetCharsCallback(const ListUsersCharactersResult&, void*) { testMessageReturn = "GetChars_Success"; } /// <summary> /// CLIENT API /// Test that leaderboard results can be requested /// Parameter types tested: List of contained-classes /// </summary> TEST_METHOD(LeaderBoard) { // C++ Environment is nicely secluded, but also means that we have to manually handle sequential requirements LoginOrRegister(); PlayerStatisticsApi(); GetLeaderboardRequest clientRequest; clientRequest.MaxResultsCount = 3; clientRequest.StatisticName = TEST_STAT_NAME; PlayFabClientAPI::GetLeaderboard(clientRequest, ClientLeaderboardCallback, SharedFailedCallback); PlayFabApiWait(); Assert::IsTrue(testMessageReturn.compare("GetClientLB_Success") == 0, U(testMessageReturn).c_str()); Assert::IsTrue(testMessageInt1 != 0, L"There should be at least 1 leaderboard entry"); Assert::IsTrue(testMessageInt2 == clientRequest.MaxResultsCount, L"result.request.MaxResultsCount did not match expected value"); } static void ClientLeaderboardCallback(const GetLeaderboardResult& result, void*) { testMessageReturn = "GetClientLB_Success"; testMessageInt1 = static_cast<Int32>(result.Leaderboard.size()); // Verifies that the request comes through as expected testMessageInt2 = result.Request["MaxResultsCount"].asInt(); } /// <summary> /// CLIENT API /// Test that AccountInfo can be requested /// Parameter types tested: List of enum-as-strings converted to list of enums /// </summary> TEST_METHOD(AccountInfo) { LoginOrRegister(); GetAccountInfoRequest request; request.PlayFabId = playFabId; PlayFabClientAPI::GetAccountInfo(request, AcctInfoCallback, SharedFailedCallback); PlayFabApiWait(); Assert::IsTrue(testMessageReturn.compare("Enums tested") == 0, U(testMessageReturn).c_str()); } static void AcctInfoCallback(const GetAccountInfoResult& result, void*) { if (result.AccountInfo.isNull() || result.AccountInfo->TitleInfo.isNull() || result.AccountInfo->TitleInfo->Origination.isNull()) { testMessageReturn = "Enums not properly tested"; return; } auto output = result.AccountInfo->TitleInfo->Origination.mValue; // C++ can't really do anything with this once fetched testMessageReturn = "Enums tested"; } /// <summary> /// CLIENT API /// Test that CloudScript can be properly set up and invoked /// </summary> TEST_METHOD(CloudScript) { LoginOrRegister(); ExecuteCloudScriptRequest hwRequest; hwRequest.FunctionName = "helloWorld"; PlayFabClientAPI::ExecuteCloudScript(hwRequest, CloudHelloWorldCallback, SharedFailedCallback); PlayFabApiWait(); const bool success = testMessageReturn.find("Hello " + playFabId + "!") != -1; Assert::IsTrue(success, U(testMessageReturn).c_str()); } static void CloudHelloWorldCallback(const ExecuteCloudScriptResult& constResult, void* = nullptr) { ExecuteCloudScriptResult result = constResult; // Some Json::Value syntax is unavailable for const objects, and there's just no way around it if (result.FunctionResult.isNull()) testMessageReturn = "Cloud Decode Failure"; else if (!result.Error.isNull()) testMessageReturn = result.Error.mValue.Message; else testMessageReturn = result.FunctionResult["messageValue"].asString(); } /// <summary> /// CLIENT API /// Test that a lambda success callback can be successfully invoked /// </summary> TEST_METHOD(CloudScriptLambda) { LoginOrRegister(); ExecuteCloudScriptRequest hwRequest; hwRequest.FunctionName = "helloWorld"; PlayFabClientAPI::ExecuteCloudScript(hwRequest, [](const ExecuteCloudScriptResult& constResult, void*) { CloudHelloWorldCallback(constResult); }, SharedFailedCallback); PlayFabApiWait(); const bool success = testMessageReturn.find("Hello " + playFabId + "!") != -1; Assert::IsTrue(success, U(testMessageReturn).c_str()); } /// <summary> /// CLIENT API /// Test that CloudScript errors can be deciphered /// </summary> TEST_METHOD(CloudScriptError) { LoginOrRegister(); ExecuteCloudScriptRequest errRequest; errRequest.FunctionName = "throwError"; PlayFabClientAPI::ExecuteCloudScript(errRequest, CloudErrorCallback, SharedFailedCallback); PlayFabApiWait(); Assert::IsTrue(testMessageReturn.find("JavascriptException") == 0, U(testMessageReturn).c_str()); } static void CloudErrorCallback(const ExecuteCloudScriptResult& result, void*) { testMessageReturn = ""; if (!result.FunctionResult.isNull()) testMessageReturn = "FunctionResult was unexpectedly defined."; else if (result.Error.isNull()) testMessageReturn = "Cloud Script error not found."; else testMessageReturn = result.Error->Error; } /// <summary> /// CLIENT API /// Test that the client can publish custom PlayStream events /// </summary> TEST_METHOD(WriteEvent) { LoginOrRegister(); WriteClientPlayerEventRequest request; request.EventName = "ForumPostEvent"; request.Timestamp = time(nullptr); request.Body["Subject"] = "My First Post"; request.Body["Body"] = "My awesome post."; PlayFabClientAPI::WritePlayerEvent(request, OnWritePlayerEvent, SharedFailedCallback); PlayFabApiWait(); Assert::IsTrue(testMessageReturn.compare("WriteEvent tested") == 0, U(testMessageReturn).c_str()); } static void OnWritePlayerEvent(const WriteEventResponse&, void*) { testMessageReturn = "WriteEvent tested"; } }; bool PlayFabClientTest::TITLE_INFO_SET = false; // Fixed values provided from testInputs string PlayFabClientTest::USER_EMAIL; // Information fetched by appropriate API calls string PlayFabClientTest::playFabId; const int PlayFabClientTest::TEST_STAT_BASE = 10; const string PlayFabClientTest::TEST_STAT_NAME = "str"; string PlayFabClientTest::TEST_TITLE_DATA_LOC = "testTitleData.json"; // default to local file if PF_TEST_TITLE_DATA_JSON env-var does not exist const string PlayFabClientTest::TEST_DATA_KEY_1 = "testCounter"; const string PlayFabClientTest::TEST_DATA_KEY_2 = "deleteCounter"; // Variables for specific tests string PlayFabClientTest::testMessageReturn; Int32 PlayFabClientTest::testMessageInt1; Int32 PlayFabClientTest::testMessageInt2; time_t PlayFabClientTest::testMessageTime; bool PlayFabClientTest::testMessageBool; } #endif
[ "noreply@github.com" ]
Micha0.noreply@github.com
23a08c121c1147708db508c7ac971a14f466bbaa
306ba959838a2bc8f4d7776809d308bde778bc67
/Update.h
651fc4e242f58268caa3e65775a375142e4a7f35
[]
no_license
DimitrisGan/RecommendationCryptoSystem
b5b867ed9f0d1faf97b6a5bcfd69f03cf7d5c406
2a45b6293eb9bd0df165cc7da39695590fa8f819
refs/heads/master
2021-10-09T10:05:36.339624
2021-10-08T07:54:36
2021-10-08T07:54:36
163,315,267
1
0
null
null
null
null
UTF-8
C++
false
false
1,101
h
// // Created by dimitrisgan on 16/11/2018. // #ifndef PROJECT2_UPDATE_H #define PROJECT2_UPDATE_H #include <unordered_map> #include "MyVector.h" #include "Cluster.h" #include "Metrics.h" #include "Initialization.h" class Updater{ public: virtual void operator()(unordered_map<string, myVector> &in_umap ,kClusters &allClusters) = 0; virtual ~Updater() = default; }; class kMeans: public Updater{ private: unsigned int dim; public: explicit kMeans(unsigned int dim) : dim(dim) {}; ~kMeans() override = default; void operator()(unordered_map<string, myVector> &in_umap ,kClusters &allClusters) override ; }; class PAM: public Updater{ private: DistanceMetrics *dist; public: explicit PAM(DistanceMetrics *dist) : dist(dist) {}; void operator()(unordered_map<string, myVector> &in_umap ,kClusters &allClusters) override ; }; void k_means(unordered_map<string, myVector> &in_umap ,kClusters &allClusters , unsigned int dim ); void pam(unordered_map<string, myVector> &in_umap, kClusters &allClusters, DistanceMetrics *dist); #endif //PROJECT2_UPDATE_H
[ "jimgangas@gmail.com" ]
jimgangas@gmail.com
29dd81fdbd8f4378924738f2adf99954167d1df1
4a73953ff6ddd31923f4253e585e4d9e95eea49d
/examples/webenginewidgets/browser/webview.cpp
edbaadca99190c90767f7a2184fe0765cb779926
[]
no_license
morphis/qtwebengine-snapshots
22317457adfc1d371b6b77ea06b2a1136e8a7892
13887430d192ae5fbd9733eaa634e741eb8728aa
refs/heads/master
2021-01-13T01:40:02.841843
2014-06-22T12:08:24
2014-06-22T12:08:24
null
0
0
null
null
null
null
UTF-8
C++
false
false
15,766
cpp
/**************************************************************************** ** ** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the demonstration applications of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and Digia. For licensing terms and ** conditions see http://qt.digia.com/licensing. For further information ** use the contact form at http://qt.digia.com/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 2.1 requirements ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Digia gives you certain additional ** rights. These rights are described in the Digia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3.0 as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU General Public License version 3.0 requirements will be ** met: http://www.gnu.org/copyleft/gpl.html. ** ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #include "browserapplication.h" #include "browsermainwindow.h" #include "cookiejar.h" #include "downloadmanager.h" #include "featurepermissionbar.h" #include "networkaccessmanager.h" #include "ui_passworddialog.h" #include "ui_proxy.h" #include "tabwidget.h" #include "webview.h" #include <QtGui/QClipboard> #include <QtNetwork/QAuthenticator> #include <QtWidgets/QMenu> #include <QtWidgets/QMessageBox> #include <QtGui/QMouseEvent> #if defined(QWEBENGINEPAGE_HITTESTCONTENT) #include <QWebEngineHitTestResult> #endif #ifndef QT_NO_UITOOLS #include <QtUiTools/QUiLoader> #endif //QT_NO_UITOOLS #include <QtCore/QDebug> #include <QtCore/QBuffer> WebPage::WebPage(QObject *parent) : QWebEnginePage(parent) , m_keyboardModifiers(Qt::NoModifier) , m_pressedButtons(Qt::NoButton) , m_openInNewTab(false) { #if defined(QWEBENGINEPAGE_SETNETWORKACCESSMANAGER) setNetworkAccessManager(BrowserApplication::networkAccessManager()); #endif #if defined(QWEBENGINEPAGE_UNSUPPORTEDCONTENT) connect(this, SIGNAL(unsupportedContent(QNetworkReply*)), this, SLOT(handleUnsupportedContent(QNetworkReply*))); #endif connect(this, SIGNAL(authenticationRequired(const QUrl &, QAuthenticator*)), SLOT(authenticationRequired(const QUrl &, QAuthenticator*))); connect(this, SIGNAL(proxyAuthenticationRequired(const QUrl &, QAuthenticator *, const QString &)), SLOT(proxyAuthenticationRequired(const QUrl &, QAuthenticator *, const QString &))); } BrowserMainWindow *WebPage::mainWindow() { QObject *w = this->parent(); while (w) { if (BrowserMainWindow *mw = qobject_cast<BrowserMainWindow*>(w)) return mw; w = w->parent(); } return BrowserApplication::instance()->mainWindow(); } #if defined(QWEBENGINEPAGE_ACCEPTNAVIGATIONREQUEST) bool WebPage::acceptNavigationRequest(QWebEngineFrame *frame, const QNetworkRequest &request, NavigationType type) { // ctrl open in new tab // ctrl-shift open in new tab and select // ctrl-alt open in new window if (type == QWebEnginePage::NavigationTypeLinkClicked && (m_keyboardModifiers & Qt::ControlModifier || m_pressedButtons == Qt::MidButton)) { bool newWindow = (m_keyboardModifiers & Qt::AltModifier); WebView *webView; if (newWindow) { BrowserApplication::instance()->newMainWindow(); BrowserMainWindow *newMainWindow = BrowserApplication::instance()->mainWindow(); webView = newMainWindow->currentTab(); newMainWindow->raise(); newMainWindow->activateWindow(); webView->setFocus(); } else { bool selectNewTab = (m_keyboardModifiers & Qt::ShiftModifier); webView = mainWindow()->tabWidget()->newTab(selectNewTab); } webView->load(request); m_keyboardModifiers = Qt::NoModifier; m_pressedButtons = Qt::NoButton; return false; } m_loadingUrl = request.url(); emit loadingUrl(m_loadingUrl); } #endif class PopupWindow : public QWidget { Q_OBJECT public: PopupWindow() : m_addressBar(new QLineEdit(this)) , m_view(new WebView(this)) { QVBoxLayout *layout = new QVBoxLayout; layout->setMargin(0); setLayout(layout); layout->addWidget(m_addressBar); layout->addWidget(m_view); m_view->setFocus(); connect(m_view, &WebView::titleChanged, this, &QWidget::setWindowTitle); connect(m_view, &WebView::urlChanged, this, &PopupWindow::setUrl); connect(page(), &WebPage::geometryChangeRequested, this, &PopupWindow::adjustGeometry); connect(page(), &WebPage::windowCloseRequested, this, &QWidget::close); } QWebEnginePage* page() const { return m_view->page(); } private Q_SLOTS: void setUrl(const QUrl &url) { m_addressBar->setText(url.toString()); } void adjustGeometry(const QRect &newGeometry) { const int x1 = frameGeometry().left() - geometry().left(); const int y1 = frameGeometry().top() - geometry().top(); const int x2 = frameGeometry().right() - geometry().right(); const int y2 = frameGeometry().bottom() - geometry().bottom(); setGeometry(newGeometry.adjusted(x1, y1 - m_addressBar->height(), x2, y2)); } private: QLineEdit *m_addressBar; WebView *m_view; }; #include "webview.moc" QWebEnginePage *WebPage::createWindow(QWebEnginePage::WebWindowType type) { if (m_keyboardModifiers & Qt::ControlModifier || m_pressedButtons == Qt::MidButton) m_openInNewTab = true; if (m_openInNewTab || type == QWebEnginePage::WebBrowserTab) { m_openInNewTab = false; return mainWindow()->tabWidget()->newTab()->page(); } else if (type == QWebEnginePage::WebBrowserWindow) { BrowserApplication::instance()->newMainWindow(); BrowserMainWindow *mainWindow = BrowserApplication::instance()->mainWindow(); return mainWindow->currentTab()->page(); } else { PopupWindow *popup = new PopupWindow; popup->setAttribute(Qt::WA_DeleteOnClose); popup->show(); return popup->page(); } } #if !defined(QT_NO_UITOOLS) QObject *WebPage::createPlugin(const QString &classId, const QUrl &url, const QStringList &paramNames, const QStringList &paramValues) { Q_UNUSED(url); Q_UNUSED(paramNames); Q_UNUSED(paramValues); QUiLoader loader; return loader.createWidget(classId, view()); } #endif // !defined(QT_NO_UITOOLS) #if defined(QWEBENGINEPAGE_UNSUPPORTEDCONTENT) void WebPage::handleUnsupportedContent(QNetworkReply *reply) { QString errorString = reply->errorString(); if (m_loadingUrl != reply->url()) { // sub resource of this page qWarning() << "Resource" << reply->url().toEncoded() << "has unknown Content-Type, will be ignored."; reply->deleteLater(); return; } if (reply->error() == QNetworkReply::NoError && !reply->header(QNetworkRequest::ContentTypeHeader).isValid()) { errorString = "Unknown Content-Type"; } QFile file(QLatin1String(":/notfound.html")); bool isOpened = file.open(QIODevice::ReadOnly); Q_ASSERT(isOpened); Q_UNUSED(isOpened) QString title = tr("Error loading page: %1").arg(reply->url().toString()); QString html = QString(QLatin1String(file.readAll())) .arg(title) .arg(errorString) .arg(reply->url().toString()); QBuffer imageBuffer; imageBuffer.open(QBuffer::ReadWrite); QIcon icon = view()->style()->standardIcon(QStyle::SP_MessageBoxWarning, 0, view()); QPixmap pixmap = icon.pixmap(QSize(32,32)); if (pixmap.save(&imageBuffer, "PNG")) { html.replace(QLatin1String("IMAGE_BINARY_DATA_HERE"), QString(QLatin1String(imageBuffer.buffer().toBase64()))); } QList<QWebEngineFrame*> frames; frames.append(mainFrame()); while (!frames.isEmpty()) { QWebEngineFrame *frame = frames.takeFirst(); if (frame->url() == reply->url()) { frame->setHtml(html, reply->url()); return; } QList<QWebEngineFrame *> children = frame->childFrames(); foreach (QWebEngineFrame *frame, children) frames.append(frame); } if (m_loadingUrl == reply->url()) { mainFrame()->setHtml(html, reply->url()); } } #endif void WebPage::authenticationRequired(const QUrl &requestUrl, QAuthenticator *auth) { BrowserMainWindow *mainWindow = BrowserApplication::instance()->mainWindow(); QDialog dialog(mainWindow); dialog.setWindowFlags(Qt::Sheet); Ui::PasswordDialog passwordDialog; passwordDialog.setupUi(&dialog); passwordDialog.iconLabel->setText(QString()); passwordDialog.iconLabel->setPixmap(mainWindow->style()->standardIcon(QStyle::SP_MessageBoxQuestion, 0, mainWindow).pixmap(32, 32)); QString introMessage = tr("<qt>Enter username and password for \"%1\" at %2</qt>"); introMessage = introMessage.arg(auth->realm()).arg(requestUrl.toString().toHtmlEscaped()); passwordDialog.introLabel->setText(introMessage); passwordDialog.introLabel->setWordWrap(true); if (dialog.exec() == QDialog::Accepted) { auth->setUser(passwordDialog.userNameLineEdit->text()); auth->setPassword(passwordDialog.passwordLineEdit->text()); } } void WebPage::proxyAuthenticationRequired(const QUrl &requestUrl, QAuthenticator *auth, const QString &proxyHost) { BrowserMainWindow *mainWindow = BrowserApplication::instance()->mainWindow(); QDialog dialog(mainWindow); dialog.setWindowFlags(Qt::Sheet); Ui::ProxyDialog proxyDialog; proxyDialog.setupUi(&dialog); proxyDialog.iconLabel->setText(QString()); proxyDialog.iconLabel->setPixmap(mainWindow->style()->standardIcon(QStyle::SP_MessageBoxQuestion, 0, mainWindow).pixmap(32, 32)); QString introMessage = tr("<qt>Connect to proxy \"%1\" using:</qt>"); introMessage = introMessage.arg(proxyHost.toHtmlEscaped()); proxyDialog.introLabel->setText(introMessage); proxyDialog.introLabel->setWordWrap(true); if (dialog.exec() == QDialog::Accepted) { auth->setUser(proxyDialog.userNameLineEdit->text()); auth->setPassword(proxyDialog.passwordLineEdit->text()); } } WebView::WebView(QWidget* parent) : QWebEngineView(parent) , m_progress(0) , m_page(new WebPage(this)) { setPage(m_page); #if defined(QWEBENGINEPAGE_STATUSBARMESSAGE) connect(page(), SIGNAL(statusBarMessage(QString)), SLOT(setStatusBarText(QString))); #endif connect(this, SIGNAL(loadProgress(int)), this, SLOT(setProgress(int))); connect(this, SIGNAL(loadFinished(bool)), this, SLOT(loadFinished())); connect(page(), SIGNAL(loadingUrl(QUrl)), this, SIGNAL(urlChanged(QUrl))); #if defined(QWEBENGINEPAGE_DOWNLOADREQUESTED) connect(page(), SIGNAL(downloadRequested(QNetworkRequest)), this, SLOT(downloadRequested(QNetworkRequest))); #endif connect(page(), &WebPage::featurePermissionRequested, this, &WebView::onFeaturePermissionRequested); #if defined(QWEBENGINEPAGE_UNSUPPORTEDCONTENT) page()->setForwardUnsupportedContent(true); #endif } void WebView::contextMenuEvent(QContextMenuEvent *event) { #if defined(QWEBENGINEPAGE_HITTESTCONTENT) QWebEngineHitTestResult r = page()->hitTestContent(event->pos()); if (!r.linkUrl().isEmpty()) { QMenu menu(this); menu.addAction(pageAction(QWebEnginePage::OpenLinkInNewWindow)); menu.addAction(tr("Open in New Tab"), this, SLOT(openLinkInNewTab())); menu.addSeparator(); menu.addAction(pageAction(QWebEnginePage::DownloadLinkToDisk)); // Add link to bookmarks... menu.addSeparator(); menu.addAction(pageAction(QWebEnginePage::CopyLinkToClipboard)); if (page()->settings()->testAttribute(QWebEngineSettings::DeveloperExtrasEnabled)) menu.addAction(pageAction(QWebEnginePage::InspectElement)); menu.exec(mapToGlobal(event->pos())); return; } #endif QWebEngineView::contextMenuEvent(event); } void WebView::wheelEvent(QWheelEvent *event) { #if defined(QWEBENGINEPAGE_SETTEXTSIZEMULTIPLIER) if (QApplication::keyboardModifiers() & Qt::ControlModifier) { int numDegrees = event->delta() / 8; int numSteps = numDegrees / 15; setTextSizeMultiplier(textSizeMultiplier() + numSteps * 0.1); event->accept(); return; } #endif QWebEngineView::wheelEvent(event); } void WebView::openLinkInNewTab() { #if defined(QWEBENGINEPAGE_WEBACTION_OPENLINKINNEWWINDOW) m_page->m_openInNewTab = true; pageAction(QWebEnginePage::OpenLinkInNewWindow)->trigger(); #endif } void WebView::onFeaturePermissionRequested(const QUrl &securityOrigin, QWebEnginePage::Feature feature) { FeaturePermissionBar *permissionBar = new FeaturePermissionBar(this); connect(permissionBar, &FeaturePermissionBar::featurePermissionProvided, page(), &QWebEnginePage::setFeaturePermission); // Discard the bar on new loads (if we navigate away or reload). connect(page(), &QWebEnginePage::loadStarted, permissionBar, &QObject::deleteLater); permissionBar->requestPermission(securityOrigin, feature); } void WebView::setProgress(int progress) { m_progress = progress; } void WebView::loadFinished() { if (100 != m_progress) { qWarning() << "Received finished signal while progress is still:" << progress() << "Url:" << url(); } m_progress = 0; } void WebView::loadUrl(const QUrl &url) { m_initialUrl = url; load(url); } QString WebView::lastStatusBarText() const { return m_statusBarText; } QUrl WebView::url() const { QUrl url = QWebEngineView::url(); if (!url.isEmpty()) return url; return m_initialUrl; } void WebView::mousePressEvent(QMouseEvent *event) { m_page->m_pressedButtons = event->buttons(); m_page->m_keyboardModifiers = event->modifiers(); QWebEngineView::mousePressEvent(event); } void WebView::mouseReleaseEvent(QMouseEvent *event) { QWebEngineView::mouseReleaseEvent(event); if (!event->isAccepted() && (m_page->m_pressedButtons & Qt::MidButton)) { QUrl url(QApplication::clipboard()->text(QClipboard::Selection)); if (!url.isEmpty() && url.isValid() && !url.scheme().isEmpty()) { setUrl(url); } } } void WebView::setStatusBarText(const QString &string) { m_statusBarText = string; } void WebView::downloadRequested(const QNetworkRequest &request) { BrowserApplication::downloadManager()->download(request); }
[ "morphis@gravedo.de" ]
morphis@gravedo.de
0e45420153ef018513985e089332a4e305bce53e
559a00d4367374b367d4999167743ec6d7387640
/structures/FlowNetwork/Adjacency lists/FlowNetwork.h
07f46724a2575eccb3925afdc84cd368fac49cfc
[]
no_license
michal367/Algorithms-and-Data-Structures
0cd0787393ebefaef19d5d1056b6d9de321e05d7
4aee40daac9c3292f3e5ac36010cf789354c26c7
refs/heads/master
2023-01-02T18:46:24.144935
2020-10-28T10:42:06
2020-10-28T10:42:06
307,850,924
0
0
null
null
null
null
UTF-8
C++
false
false
17,485
h
#pragma once #include <vector> #include <list> #include <queue> #include <iostream> template<class T, class C = int> class FlowNetwork{ // node 0 is source // last node (size()-1) is sink // nodes in between are inner nodes (from 1 to size()-2) struct Edge{ std::size_t node; C capacity; C flow; Edge(std::size_t node, const C& capacity) : node(node), capacity(capacity), flow() {} bool operator==(const Edge& other) const{ return (node == other.node && capacity == other.capacity && flow == other.flow); } }; std::vector<std::list<Edge> > neighbours; std::vector<T> data; public: FlowNetwork(); FlowNetwork(std::size_t inner_nodes_size, const T& value = T()); FlowNetwork(const T& source_v, std::initializer_list<T> inner_nodes_v, const T& sink_v); FlowNetwork(const FlowNetwork<T,C>& other); FlowNetwork<T,C>& operator=(const FlowNetwork<T,C>& other); std::size_t size(); bool empty(); void clear(); std::size_t sourceNode(); std::size_t sinkNode(); T getData(std::size_t node); T& at(std::size_t node); void setData(std::size_t node, const T& value); bool existsDirectedEdge(std::size_t node1, std::size_t node2); std::vector<std::pair<std::size_t,C> > getNeighbours(std::size_t node); void addNode(const T& value); void addDirectedEdge(std::size_t node1, std::size_t node2, const C& capacity); void removeNode(std::size_t node); void removeDirectedEdge(std::size_t node1, std::size_t node2); C getCapacity(std::size_t node1, std::size_t node2); void setCapacity(std::size_t node1, std::size_t node2, const C& capacity); C getFlow(std::size_t node1, std::size_t node2); void clearFlow(); C EdmondsKarp(); C Dinic(); bool operator==(const FlowNetwork<T,C>& other); bool operator!=(const FlowNetwork<T,C>& other); void printNodes(); void printValues(); void printFlow(); private: void DinicLevelGraphBFS(const std::vector<std::list<Edge> >& residual, std::size_t* level); bool DinicDFS(const std::vector<std::list<Edge> >& residual, std::size_t node, std::size_t* level, std::size_t* parent); }; template<class T, class C> FlowNetwork<T,C>::FlowNetwork(){ // source data.push_back(T()); neighbours.push_back(std::list<Edge>()); // sink data.push_back(T()); neighbours.push_back(std::list<Edge>()); } template<class T, class C> FlowNetwork<T,C>::FlowNetwork(std::size_t inner_nodes_size, const T& value){ // source data.push_back(value); neighbours.push_back(std::list<Edge>()); // inner nodes for(std::size_t i=0; i<inner_nodes_size; i++){ data.push_back(value); neighbours.push_back(std::list<Edge>()); } // sink data.push_back(value); neighbours.push_back(std::list<Edge>()); } template<class T, class C> FlowNetwork<T,C>::FlowNetwork(const T& source_v, std::initializer_list<T> inner_nodes_v, const T& sink_v){ // source data.push_back(source_v); neighbours.push_back(std::list<Edge>()); // inner nodes for(auto it = inner_nodes_v.begin(); it != inner_nodes_v.end(); it++){ data.push_back(*it); neighbours.push_back(std::list<Edge>()); } // sink data.push_back(sink_v); neighbours.push_back(std::list<Edge>()); } template<class T, class C> FlowNetwork<T,C>::FlowNetwork(const FlowNetwork<T,C>& other){ data = other.data; neighbours = other.neighbours; } template<class T, class C> FlowNetwork<T,C>& FlowNetwork<T,C>::operator=(const FlowNetwork<T,C>& other){ if(this != &other){ data = other.data; neighbours = other.neighbours; } return *this; } template<class T, class C> std::size_t FlowNetwork<T,C>::size(){ // source, sink and inner nodes return data.size(); } template<class T, class C> bool FlowNetwork<T,C>::empty(){ // does graph contains only source and sink (no inner nodes) and has no edges return (size() == 2 && neighbours.at(0).size() == 0); } template<class T, class C> void FlowNetwork<T,C>::clear(){ // remove inner nodes data.erase(data.begin()+1, data.end()-1); neighbours.erase(neighbours.begin()+1, neighbours.end()-1); // remove source and sink neighbours neighbours.at(sourceNode()).clear(); neighbours.at(sinkNode()).clear(); } template<class T, class C> std::size_t FlowNetwork<T,C>::sourceNode(){ return 0; } template<class T, class C> std::size_t FlowNetwork<T,C>::sinkNode(){ return size()-1; } template<class T, class C> T FlowNetwork<T,C>::getData(std::size_t node){ return data.at(node); } template<class T, class C> T& FlowNetwork<T,C>::at(std::size_t node){ return data.at(node); } template<class T, class C> void FlowNetwork<T,C>::setData(std::size_t node, const T& value){ data.at(node) = value; } template<class T, class C> bool FlowNetwork<T,C>::existsDirectedEdge(std::size_t node1, std::size_t node2){ for(auto it = neighbours.at(node1).begin(); it != neighbours.at(node1).end(); it++) if(it->node == node2) return true; return false; } template<class T, class C> std::vector<std::pair<std::size_t,C> > FlowNetwork<T,C>::getNeighbours(std::size_t node){ std::vector<std::pair<std::size_t,C> > ns; for(auto it = neighbours.at(node).begin(); it != neighbours.at(node).end(); it++) ns.push_back(std::make_pair(it->node, it->capacity)); return ns; } template<class T, class C> void FlowNetwork<T,C>::addNode(const T& value){ data.insert(data.end()-1, value); neighbours.insert(neighbours.end()-1, std::list<Edge>()); std::size_t new_node = size()-2; for(std::size_t i=0; i<size(); i++) for(auto it = neighbours.at(i).begin(); it != neighbours.at(i).end(); it++) if(it->node == new_node) it->node++; } template<class T, class C> void FlowNetwork<T,C>::addDirectedEdge(std::size_t node1, std::size_t node2, const C& capacity){ if(node1 != node2 && node1 != sinkNode() && node2 != sourceNode()){ if(!existsDirectedEdge(node1, node2)) neighbours.at(node1).push_back(Edge(node2, capacity)); } } template<class T, class C> void FlowNetwork<T,C>::removeNode(std::size_t node){ if(node != sourceNode() && node != sinkNode()){ data.erase(data.begin() + node); neighbours.erase(neighbours.begin() + node); for(auto it = neighbours.begin(); it != neighbours.end(); it++) for(auto it2 = it->begin(); it2 != it->end();) if(it2->node == node){ auto temp = it2; it2++; it->erase(temp); } else{ if(it2->node > node) it2->node--; it2++; } } } template<class T, class C> void FlowNetwork<T,C>::removeDirectedEdge(std::size_t node1, std::size_t node2){ for(auto it = neighbours.at(node1).begin(); it != neighbours.at(node1).end(); it++) if(it->node == node2){ neighbours.at(node1).erase(it); return; } } template<class T, class C> C FlowNetwork<T,C>::getCapacity(std::size_t node1, std::size_t node2){ for(auto it = neighbours.at(node1).begin(); it != neighbours.at(node1).end(); it++) if(it->node == node2) return it->capacity; } template<class T, class C> void FlowNetwork<T,C>::setCapacity(std::size_t node1, std::size_t node2, const C& capacity){ for(auto it = neighbours.at(node1).begin(); it != neighbours.at(node1).end(); it++) if(it->node == node2){ it->capacity = capacity; return; } } template<class T, class C> C FlowNetwork<T,C>::getFlow(std::size_t node1, std::size_t node2){ for(auto it = neighbours.at(node1).begin(); it != neighbours.at(node1).end(); it++) if(it->node == node2) return it->flow; } template<class T, class C> void FlowNetwork<T,C>::clearFlow(){ for(std::size_t i=0; i<size(); i++) for(auto itn = neighbours.at(i).begin(); itn != neighbours.at(i).end(); itn++) itn->flow = C(); } template<class T, class C> C FlowNetwork<T,C>::EdmondsKarp(){ // max flow // capacities must be non-negative C max_flow = C(); clearFlow(); // create residual network std::vector<std::list<Edge> > residual = neighbours; for(std::size_t i=0; i<size(); i++) for(auto itr = residual.at(i).begin(); itr != residual.at(i).end(); itr++){ if(itr->capacity > C()){ bool found = false; for(auto itr2 = residual.at(itr->node).begin(); itr2 != residual.at(itr->node).end(); itr2++) if(itr2->node == i){ found = true; break; } if(found == false) residual.at(itr->node).push_back(Edge(i, C())); } } bool* visited = new bool[size()]; std::size_t* parent = new std::size_t[size()]; bool path_found = true; while(path_found){ path_found = false; for(std::size_t i=0; i<size(); i++){ visited[i] = false; parent[i] = -1; } // find augmenting path using BFS std::queue<std::size_t> q; q.push(sourceNode()); visited[sourceNode()] = true; while(!q.empty()){ std::size_t v = q.front(); q.pop(); if(v == sinkNode()){ path_found = true; break; } for(auto itr = residual.at(v).begin(); itr != residual.at(v).end(); itr++) if(itr->capacity > C() && visited[itr->node] == false){ visited[itr->node] = true; parent[itr->node] = v; q.push(itr->node); } } if(path_found){ // get min residual capacity C min_res_cap = C(); bool initialized = false; std::size_t u = sinkNode(); while(parent[u] != -1){ for(auto itr = residual.at(parent[u]).begin(); itr != residual.at(parent[u]).end(); itr++) if(itr->node == u) if(itr->capacity < min_res_cap || !initialized){ min_res_cap = itr->capacity; initialized = true; } u = parent[u]; } max_flow += min_res_cap; // change residual capacities and flow u = sinkNode(); while(parent[u] != -1){ for(auto itr = residual.at(parent[u]).begin(); itr != residual.at(parent[u]).end(); itr++) if(itr->node == u) itr->capacity -= min_res_cap; for(auto itr = residual.at(u).begin(); itr != residual.at(u).end(); itr++) if(itr->node == parent[u]) itr->capacity += min_res_cap; for(auto itn = neighbours.at(parent[u]).begin(); itn != neighbours.at(parent[u]).end(); itn++) if(itn->node == u) itn->flow += min_res_cap; u = parent[u]; } } } delete[] visited; delete[] parent; return max_flow; } template<class T, class C> C FlowNetwork<T,C>::Dinic(){ // max flow // capacities must be non-negative C max_flow = C(); clearFlow(); // create residual network std::vector<std::list<Edge> > residual = neighbours; for(std::size_t i=0; i<size(); i++) for(auto itr = residual.at(i).begin(); itr != residual.at(i).end(); itr++){ if(itr->capacity > C()){ bool found = false; for(auto itr2 = residual.at(itr->node).begin(); itr2 != residual.at(itr->node).end(); itr2++) if(itr2->node == i){ found = true; break; } if(found == false) residual.at(itr->node).push_back(Edge(i, C())); } } std::size_t* level = new std::size_t[size()]; std::size_t* parent = new std::size_t[size()]; while(true){ // create level graph for(std::size_t i=0; i<size(); i++) level[i] = -1; DinicLevelGraphBFS(residual, level); if(level[sinkNode()] == -1) break; bool path_found; do{ for(std::size_t i=0; i<size(); i++) parent[i] = -1; // run DFS path_found = DinicDFS(residual, sourceNode(), level, parent); if(path_found){ // get min residual capacity C min_res_cap = C(); bool initialized = false; std::size_t u = sinkNode(); while(parent[u] != -1){ for(auto itr = residual.at(parent[u]).begin(); itr != residual.at(parent[u]).end(); itr++) if(itr->node == u) if(itr->capacity < min_res_cap || !initialized){ min_res_cap = itr->capacity; initialized = true; } u = parent[u]; } max_flow += min_res_cap; // change residual capacities and flow u = sinkNode(); while(parent[u] != -1){ for(auto itr = residual.at(parent[u]).begin(); itr != residual.at(parent[u]).end(); itr++) if(itr->node == u) itr->capacity -= min_res_cap; for(auto itr = residual.at(u).begin(); itr != residual.at(u).end(); itr++) if(itr->node == parent[u]) itr->capacity += min_res_cap; for(auto itn = neighbours.at(parent[u]).begin(); itn != neighbours.at(parent[u]).end(); itn++) if(itn->node == u) itn->flow += min_res_cap; u = parent[u]; } } }while(path_found); } delete[] level; delete[] parent; return max_flow; } template<class T, class C> void FlowNetwork<T,C>::DinicLevelGraphBFS(const std::vector<std::list<Edge> >& residual, std::size_t* level){ std::queue<std::size_t> q; q.push(sourceNode()); level[sourceNode()] = 0; while(!q.empty()){ std::size_t v = q.front(); q.pop(); if(v == sinkNode()) break; for(auto itr = residual.at(v).begin(); itr != residual.at(v).end(); itr++) if(level[itr->node] == -1 && itr->capacity > C()){ level[itr->node] = level[v]+1; q.push(itr->node); } } } template<class T, class C> bool FlowNetwork<T,C>::DinicDFS(const std::vector<std::list<Edge> >& residual, std::size_t node, std::size_t* level, std::size_t* parent){ if(node != sinkNode()){ bool found = false; for(auto itr = residual.at(node).begin(); itr != residual.at(node).end(); itr++) if(level[itr->node] != -1 && level[itr->node] > level[node] && itr->capacity > C()){ parent[itr->node] = node; found = found || DinicDFS(residual, itr->node, level, parent); } if(found == false) // prune dead end level[node] = -1; return found; } return true; } template<class T, class C> bool FlowNetwork<T,C>::operator==(const FlowNetwork<T,C>& other){ return (data == other.data && neighbours == other.neighbours); } template<class T, class C> bool FlowNetwork<T,C>::operator!=(const FlowNetwork<T,C>& other){ return !(*this == other); } // ============================================ template<class T, class C> void FlowNetwork<T,C>::printNodes(){ std::size_t i = 0; for(auto it = neighbours.begin(); it != neighbours.end(); it++, i++){ std::cout << i << ": " << data.at(i); if(i == sourceNode()) std::cout << " source "; else if(i == sinkNode()) std::cout << " sink "; else std::cout << " "; std::cout << "neighbours: "; for(auto it2 = it->begin(); it2 != it->end(); it2++) std::cout << it2->node << "(c: " << it2->capacity << ") "; std::cout << std::endl; } } template<class T, class C> void FlowNetwork<T,C>::printValues(){ std::size_t i = 0; for(auto it = data.begin(); it != data.end(); it++, i++){ std::cout << i << ": " << *it << std::endl; } } template<class T, class C> void FlowNetwork<T,C>::printFlow(){ std::size_t i = 0; for(auto it = neighbours.begin(); it != neighbours.end(); it++, i++){ std::cout << i << ": "; if(i == sourceNode()) std::cout << " source "; else if(i == sinkNode()) std::cout << " sink "; else std::cout << " "; std::cout << "neighbours: "; for(auto it2 = it->begin(); it2 != it->end(); it2++) std::cout << it2->node << "(" << it2->flow << "/" << it2->capacity << ") "; std::cout << std::endl; } }
[ "michal.krawczyk7@gmail.com" ]
michal.krawczyk7@gmail.com
e158595eafa7873487bea99b2141a63665a11805
37be618d32f07d837000478fad6275d21c988f5c
/Include/ArggLib/for_loop.hh
3393570a50ea548ae9d4fc3659acccd56e719d1b
[]
no_license
arggscomputerecke/ArggLib
ce0adcfc036c0212ead9c51defc63abaf8f188c2
a1a1fb6ceec9028a81b9c3a7887f985e800d22a2
refs/heads/master
2021-04-29T15:11:32.490462
2019-02-20T03:10:10
2019-02-20T03:10:10
121,791,230
0
1
null
null
null
null
UTF-8
C++
false
false
6,969
hh
#ifndef for_loop_h__ #define for_loop_h__ #include "ArggLib/has_member_helper.hh" #include "ArggLib/proc_tools.hh" #include "ArggLib/string_helpers.hh" #include "ArggLib/smart_ptr_helpers.hh" #include "ArggLib/type_trates.hh" namespace ArggLib { class for_loop_imple_0 { public: template <typename NEXT_T, typename T> __ENABLE_IF_ARITHMETIC(T, procReturn) operator()(NEXT_T&& next, T t) { for (typename ArggLib::remove_cvref_t<T> i = 0; i < t; ++i) { if (next(i) == stop_) { return stop_; } } return success; } template <typename NEXT_T, typename T> __ENABLE_IF(has_begin<T>(), procReturn) operator()(NEXT_T&& next, T& vec) { for (auto& e : vec) { if (next(e) == stop_) { return stop_; } } return success; } template <typename NEXT_T, typename T1, typename T2> procReturn operator()(NEXT_T&& next, T1 start_, T2 end_) { for (_IS_BOTH_INT_OR_DEFAULT_DOUBLE(T1, T2) i = start_; i < end_; ++i) { if (next(i) == stop_) { return stop_; } } return success; } template <typename NEXT_T, typename T1, typename T2, typename T3> procReturn operator()(NEXT_T&& next, T1 start_, T2 end_, T3 step) { for (_IS_ALL_INT_OR_DEFAULT_DOUBLE(T1, T2, T3) i = start_; i < end_; i += step) { if (next(i) == stop_) { return stop_; } } return success; } }; inline auto for_loop() -> decltype(proc() >> for_loop_imple_0{}){ return proc() >> for_loop_imple_0{}; } template<typename END_T> class for_loop_imple_1 { using param_t = typename ArggLib::remove_cvref_t<END_T>; public: const param_t m_end; for_loop_imple_1<END_T>(const param_t& end__) : m_end(end__) {} for_loop_imple_1<END_T>(param_t&& end__) : m_end(std::move(end__)) {} template <typename NEXT_T, typename... ARGS> procReturn operator()(NEXT_T&& next, ARGS&&... args) { for (param_t i = 0; i < m_end; ++i) { if (next(std::forward<ARGS>(args)..., i) == stop_) { return stop_; } } return success; } }; template <typename T, __ENABLE_IF_ARITHMETIC(T, int) = 0> auto for_loop(T&& t) -> decltype(proc() >> for_loop_imple_1<T>(std::forward<T>(t))) { return proc() >> for_loop_imple_1<T>(std::forward<T>(t)); } template<typename VEC_T> class for_loop_imple_1_vec_lv { public: VEC_T m_vec; for_loop_imple_1_vec_lv<VEC_T>(const VEC_T& vec__) : m_vec(vec__) {} template <typename NEXT_T, typename... ARGS> procReturn operator()(NEXT_T&& next, ARGS&&... args) { for (auto &i : m_vec) { if (next(std::forward<ARGS>(args)..., i) == stop_) { return stop_; } } return success; } }; template <typename T, __ENABLE_IF(has_begin<T>(), int) = 0> auto for_loop(T&& t) -> decltype (proc() >> for_loop_imple_1_vec_lv<T>(std::move(t)) ){ return proc() >> for_loop_imple_1_vec_lv<T>(std::move(t)); } template<typename T> class for_loop_imple_2 { using param_t = typename std::remove_all_extents<T>::type; public: const param_t m_end; const param_t m_start; for_loop_imple_2<T>(const T& start__, const T& end__) : m_start(start__), m_end(end__) {} template <typename NEXT_T, typename... ARGS> procReturn operator()(NEXT_T&& next, ARGS&&... args) { for (param_t i = m_start; i < m_end; ++i) { if (next(std::forward<ARGS>(args)..., i) == stop_) { return stop_; } } return success; } }; template <typename T1, typename T2> auto for_loop(T1&& start_, T2&& end_) ->decltype(proc() >> for_loop_imple_2<typename ___IS_BOTH_INT<typename ArggLib::remove_cvref_t<T1>, typename ArggLib::remove_cvref_t<T2>, double>::type>(std::forward<T1>(start_), std::forward<T2>(end_))) { return proc()>> for_loop_imple_2<typename ___IS_BOTH_INT<typename ArggLib::remove_cvref_t<T1>, typename ArggLib::remove_cvref_t<T2>, double>::type>(std::forward<T1>(start_), std::forward<T2>(end_)); } template<typename T> class for_loop_imple_3 { using param_t = typename ArggLib::remove_cvref<T>::type; public: auto set_start(param_t start) ->ArggLib::procImple<for_loop_imple_3<T>> { return for_loop(start, m_end, m_step); } const param_t m_end; const param_t m_start; const param_t m_step; for_loop_imple_3<T>(const T& start__, const T& end__, const T& step_) : m_start(start__), m_end(end__), m_step(step_) {} template <typename NEXT_T, typename... ARGS> procReturn operator()(NEXT_T&& next, ARGS&&... args) { for (param_t i = m_start; i < m_end; i += m_step) { if (next(std::forward<ARGS>(args)..., i) == stop_) { return stop_; } } return success; } }; template <typename T1, typename T2, typename T3> auto for_loop(T1&& start_, T2&& end_, T3&& step_) -> decltype(proc() >> for_loop_imple_3<typename ___IS_ALL_INT<T1, T2, T3, double>::type>(std::forward<T1>(start_), std::forward<T2>(end_), std::forward<T3>(step_))) { return proc()>> for_loop_imple_3<typename ___IS_ALL_INT<T1, T2, T3, double>::type>(std::forward<T1>(start_), std::forward<T2>(end_), std::forward<T3>(step_)); } template<typename T> class for_loop_impl_vec { public: const std::vector<T>& m_vec; for_loop_impl_vec(const std::vector<T>& vec) :m_vec(vec) { } template <typename NEXT_T, typename... ARGS> procReturn operator()(NEXT_T&& next, ARGS&&... args) { for (auto& e : m_vec) { auto ret = next(args..., e); if (ret != success) { return ret; } } return success; } }; template<typename T> class for_loop_impl_vec_RV { public: const std::vector<T> m_vec; for_loop_impl_vec_RV(std::vector<T>&& vec) :m_vec(std::move(vec)) { } template <typename NEXT_T, typename... ARGS> procReturn operator()(NEXT_T&& next, ARGS&&... args) { for (auto& e : m_vec) { auto ret = next(args..., e); if (ret != success) { return ret; } } return success; } }; template <typename T> auto for_loop(const std::vector<T>& vec) -> decltype(proc() >> for_loop_impl_vec<T>(vec)) { return proc() >> for_loop_impl_vec<T>(vec); } template <typename T> auto for_loop(std::vector<T>& vec) -> decltype(proc() >> for_loop_impl_vec<T>(vec)) { return proc() >> for_loop_impl_vec<T>(vec); } template <typename T> auto for_loop(std::vector<T>&& vec) -> decltype(proc() >> for_loop_impl_vec_RV<T>(std::move(vec))) { return proc() >> for_loop_impl_vec_RV<T>(std::move(vec)); } template <typename T> auto for_loop(std::initializer_list<T> l) -> decltype(for_loop(std::vector<T>(std::move(l)))) { return for_loop(std::vector<T>(std::move(l))); } } #endif // for_loop_h__
[ "arggscomputerecke@gmail.com" ]
arggscomputerecke@gmail.com
42db9cbb0948cb17562c5ee2cd88319616638815
01dbe06e8ad0d7da2635604650edbbd8f1dd5cf8
/cpp/src/rz/rz-kauvir/rz-graph-code/prerun/rz-re-prerun-anticipate.h
583c14c2fd1858eef6c1298b62f5817ee41314b6
[ "BSL-1.0", "LicenseRef-scancode-proprietary-license" ]
permissive
scignscape/SubjectiveSpeechQualityMeasurement
ccfe93d4569d45d711eb6a92c842cac9ae4a5404
ab68b91108f3f1d7086ea1ac9a8801c063dc9bff
refs/heads/master
2020-04-04T11:24:26.062577
2018-12-02T04:44:44
2018-12-02T04:44:44
155,889,835
0
1
BSL-1.0
2018-11-13T17:09:00
2018-11-02T16:02:47
C++
UTF-8
C++
false
false
1,023
h
// Copyright Nathaniel Christen 2018. // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) #ifndef RZ_RE_PRERUN_ANTICIPATE__H #define RZ_RE_PRERUN_ANTICIPATE__H #include "accessors.h" #include "flags.h" #include "relae-graph/relae-node-ptr.h" #include "output/rz-re-lisp-output.h" #include "rz-graph-core/kernel/graph/rz-re-graph.h" #include <QString> #include <QTextStream> #include <QMap> #include <functional> #include "rzns.h" RZNS_(GBuild) class RZ_Lisp_Graph_Visitor; _RZNS(GBuild) USING_RZNS(GBuild) RZNS_(GVal) class RZ_Dynamo_Output; _RZNS(GVal) USING_RZNS(GVal) RZNS_(RECore) class RE_Document; class RE_Node; class RE_Graph; class RE_Prerun_Anticipate { RZ_Lisp_Graph_Visitor& visitor_; public: RE_Prerun_Anticipate(RZ_Lisp_Graph_Visitor& visitor); void scan(std::function<void(RZ_Dynamo_Output&)> fn); }; _RZNS(RECore) #endif //RZ_RE_PRERUN_ANTICIPATE__H
[ "osrworkshops@gmail.com" ]
osrworkshops@gmail.com
7815cc8ad475a9839210ed87a63e00000a2fa55f
1ce9bc19be229d12afde772fb4fb109f0dd77cf7
/src/nmode/Speciation.h
35388221064b7d9cbdd651c460a8687220a0aada
[]
no_license
kzahedi/NMODE
6af4e201d499c7ad036f26b69c6fc9e2de0a8caf
9c98d09bc87ea4f14ac017e4e5641df5055e31ec
refs/heads/master
2021-01-15T08:09:50.886140
2018-10-19T11:58:31
2018-10-19T11:58:31
38,491,432
4
1
null
null
null
null
UTF-8
C++
false
false
503
h
#ifndef __SPECIATION_H__ #define __SPECIATION_H__ #include <nmode/Population.h> #include <nmode/Individual.h> #include <vector> using namespace std; class Speciation { public: Speciation(double threshold); // ~Speciation(); //Speciation(const Speciation); //Speciation operator=(const Speciation); private: void __add(Individual*); Population* _population; vector<Individuals> _species; double _threshold; }; #endif // __SPECIATION_H__
[ "keyan.zahedi@gmail.com" ]
keyan.zahedi@gmail.com
f369655465c41dd4968071a990df97687d7642fc
99acb431893f7eac93183152fce8d19c9653b59b
/chrome/browser/ui/views/safe_browsing/deep_scanning_failure_modal_dialog.cc
f6edc9dadfe598af7bbf9ce842d16974939b7b10
[ "BSD-3-Clause" ]
permissive
PDi-Communication-Systems-Inc/chromium
0a4e7634056369fe32ef75beb6cdb47e0641a9dc
fd11f6f060bf073509855e13c215d64d3c3a1a15
refs/heads/master
2023-04-17T05:37:17.394483
2020-05-14T13:19:32
2020-05-14T13:19:32
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,964
cc
// Copyright 2020 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/browser/ui/views/safe_browsing/deep_scanning_failure_modal_dialog.h" #include <memory> #include "chrome/browser/ui/views/chrome_layout_provider.h" #include "chrome/grit/generated_resources.h" #include "components/constrained_window/constrained_window_views.h" #include "ui/base/l10n/l10n_util.h" #include "ui/base/ui_base_types.h" #include "ui/views/controls/button/md_text_button.h" #include "ui/views/layout/grid_layout.h" #include "ui/views/window/dialog_delegate.h" namespace safe_browsing { /*static*/ void DeepScanningFailureModalDialog::ShowForWebContents( content::WebContents* web_contents, base::OnceClosure accept_callback, base::OnceClosure cancel_callback, base::OnceClosure open_now_callback) { constrained_window::ShowWebModalDialogViews( new DeepScanningFailureModalDialog(std::move(accept_callback), std::move(cancel_callback), std::move(open_now_callback)), web_contents); } DeepScanningFailureModalDialog::DeepScanningFailureModalDialog( base::OnceClosure accept_callback, base::OnceClosure cancel_callback, base::OnceClosure open_now_callback) : open_now_callback_(std::move(open_now_callback)) { DialogDelegate::SetButtonLabel( ui::DIALOG_BUTTON_OK, l10n_util::GetStringUTF16( IDS_DEEP_SCANNING_TIMED_OUT_DIALOG_ACCEPT_BUTTON)); DialogDelegate::SetButtonLabel( ui::DIALOG_BUTTON_CANCEL, l10n_util::GetStringUTF16( IDS_DEEP_SCANNING_TIMED_OUT_DIALOG_CANCEL_BUTTON)); DialogDelegate::SetAcceptCallback(std::move(accept_callback)); DialogDelegate::SetCancelCallback(std::move(cancel_callback)); open_now_button_ = DialogDelegate::SetExtraView(views::MdTextButton::Create( this, l10n_util::GetStringUTF16( IDS_DEEP_SCANNING_INFO_DIALOG_OPEN_NOW_BUTTON))); set_margins(ChromeLayoutProvider::Get()->GetDialogInsetsForContentType( views::TEXT, views::TEXT)); views::GridLayout* layout = SetLayoutManager(std::make_unique<views::GridLayout>()); // Use a fixed maximum message width, so longer messages will wrap. const int kMaxMessageWidth = 400; views::ColumnSet* cs = layout->AddColumnSet(0); cs->AddColumn(views::GridLayout::LEADING, views::GridLayout::CENTER, views::GridLayout::kFixedSize, views::GridLayout::ColumnSize::kFixed, kMaxMessageWidth, false); // Add the message label. auto label = std::make_unique<views::Label>( l10n_util::GetStringUTF16(IDS_DEEP_SCANNING_TIMED_OUT_DIALOG_MESSAGE), views::style::CONTEXT_MESSAGE_BOX_BODY_TEXT, views::style::STYLE_SECONDARY); label->SetHorizontalAlignment(gfx::ALIGN_LEFT); label->SetMultiLine(true); label->SizeToFit(kMaxMessageWidth); layout->StartRow(views::GridLayout::kFixedSize, 0); layout->AddView(std::move(label)); } DeepScanningFailureModalDialog::~DeepScanningFailureModalDialog() = default; bool DeepScanningFailureModalDialog::IsDialogButtonEnabled( ui::DialogButton button) const { return (button == ui::DIALOG_BUTTON_OK || button == ui::DIALOG_BUTTON_CANCEL); } bool DeepScanningFailureModalDialog::ShouldShowCloseButton() const { return false; } base::string16 DeepScanningFailureModalDialog::GetWindowTitle() const { return l10n_util::GetStringUTF16(IDS_DEEP_SCANNING_TIMED_OUT_DIALOG_TITLE); } ui::ModalType DeepScanningFailureModalDialog::GetModalType() const { return ui::MODAL_TYPE_CHILD; } void DeepScanningFailureModalDialog::ButtonPressed(views::Button* sender, const ui::Event& event) { if (sender == open_now_button_) { std::move(open_now_callback_).Run(); CancelDialog(); } } } // namespace safe_browsing
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
3122829decac32a7cf9b0cc61d5b363999297411
ecdd8cd99be313d736a1aeb01555dae89a9249ce
/server/base/EventDispatch.cpp
3ceff7138de605a30f44474d9e8cc21550c5c821
[]
no_license
liuzhenpangzi/liuzhen
2c485215aefe5c134001078c4a680a5deb27293a
186c7d579a56f7c934713c7cc5ec76eae3759426
refs/heads/master
2021-01-12T08:02:10.961068
2016-12-22T02:48:24
2016-12-22T02:48:24
77,107,636
2
0
null
null
null
null
UTF-8
C++
false
false
4,291
cpp
#include "EventDispatch.h" #include "BaseSocket.h" #define MIN_TIMER_DURATION 100 // 100 miliseconds CEventDispatch* CEventDispatch::m_pEventDispatch = NULL; CEventDispatch::CEventDispatch() { running = false; #ifdef _WIN32 FD_ZERO(&m_read_set); FD_ZERO(&m_write_set); FD_ZERO(&m_excep_set); #elif __APPLE__ m_kqfd = kqueue(); if (m_kqfd == -1) { log("kqueue failed"); } #else m_epfd = epoll_create(1024); if (m_epfd == -1) { log("epoll_create failed"); } #endif } CEventDispatch::~CEventDispatch() { #ifdef _WIN32 #elif __APPLE__ close(m_kqfd); #else close(m_epfd); #endif } void CEventDispatch::AddTimer(callback_t callback, void* user_data, uint64_t interval) { list<TimerItem*>::iterator it; for (it = m_timer_list.begin(); it != m_timer_list.end(); it++) { TimerItem* pItem = *it; if (pItem->callback == callback && pItem->user_data == user_data) { pItem->interval = interval; pItem->next_tick = get_tick_count() + interval; return; } } TimerItem* pItem = new TimerItem; pItem->callback = callback; pItem->user_data = user_data; pItem->interval = interval; pItem->next_tick = get_tick_count() + interval; m_timer_list.push_back(pItem); } void CEventDispatch::RemoveTimer(callback_t callback, void* user_data) { list<TimerItem*>::iterator it; for (it = m_timer_list.begin(); it != m_timer_list.end(); it++) { TimerItem* pItem = *it; if (pItem->callback == callback && pItem->user_data == user_data) { m_timer_list.erase(it); delete pItem; return; } } } void CEventDispatch::_CheckTimer() { uint64_t curr_tick = get_tick_count(); list<TimerItem*>::iterator it; for (it = m_timer_list.begin(); it != m_timer_list.end(); ) { TimerItem* pItem = *it; it++; // iterator maybe deleted in the callback, so we should increment it before callback if (curr_tick >= pItem->next_tick) { pItem->next_tick += pItem->interval; pItem->callback(pItem->user_data, NETLIB_MSG_TIMER, 0, NULL); } } } void CEventDispatch::AddLoop(callback_t callback, void* user_data) { TimerItem* pItem = new TimerItem; pItem->callback = callback; pItem->user_data = user_data; m_loop_list.push_back(pItem); } void CEventDispatch::_CheckLoop() { for (list<TimerItem*>::iterator it = m_loop_list.begin(); it != m_loop_list.end(); it++) { TimerItem* pItem = *it; pItem->callback(pItem->user_data, NETLIB_MSG_LOOP, 0, NULL); } } CEventDispatch* CEventDispatch::Instance() { if (m_pEventDispatch == NULL) { m_pEventDispatch = new CEventDispatch(); } return m_pEventDispatch; } void CEventDispatch::AddEvent(SOCKET fd, uint8_t socket_event) { struct epoll_event ev; ev.events = EPOLLIN | EPOLLOUT | EPOLLET | EPOLLPRI | EPOLLERR | EPOLLHUP; ev.data.fd = fd; if (epoll_ctl(m_epfd, EPOLL_CTL_ADD, fd, &ev) != 0) { log("epoll_ctl() failed, errno=%d", errno); } } void CEventDispatch::RemoveEvent(SOCKET fd, uint8_t socket_event) { if (epoll_ctl(m_epfd, EPOLL_CTL_DEL, fd, NULL) != 0) { log("epoll_ctl failed, errno=%d", errno); } } void CEventDispatch::StartDispatch(uint32_t wait_timeout) { struct epoll_event events[1024]; int nfds = 0; if(running) return; running = true; while (running) { nfds = epoll_wait(m_epfd, events, 1024, wait_timeout); for (int i = 0; i < nfds; i++) { int ev_fd = events[i].data.fd; CBaseSocket* pSocket = FindBaseSocket(ev_fd); if (!pSocket) continue; //Commit by zhfu @2015-02-28 #ifdef EPOLLRDHUP if (events[i].events & EPOLLRDHUP) { //log("On Peer Close, socket=%d, ev_fd); pSocket->OnClose(); } #endif // Commit End if (events[i].events & EPOLLIN) { //log("OnRead, socket=%d\n", ev_fd); pSocket->OnRead(); } if (events[i].events & EPOLLOUT) { //log("OnWrite, socket=%d\n", ev_fd); pSocket->OnWrite(); } if (events[i].events & (EPOLLPRI | EPOLLERR | EPOLLHUP)) { //log("OnClose, socket=%d\n", ev_fd); pSocket->OnClose(); } pSocket->ReleaseRef(); } //100 milliseconds 检测一次定时器 _CheckTimer(); _CheckLoop(); } } void CEventDispatch::StopDispatch() { running = false; }
[ "3515676386@qq.com" ]
3515676386@qq.com
d65d94e78859e30548b5bac8be1797fee923ec0c
dfee20844786baabd9cc3d9162cc6df7eba78bbb
/testleds/testleds.ino
b19028cdbd3e2020b2061df16f0112123d6124e1
[]
no_license
rosterloh/ambilight
65aada72e671733b27cc3bf5afc5b48edaec150e
caee93fcc8c0b2e53edfac1c8f6da6e47bc49548
refs/heads/master
2021-01-22T07:28:19.578682
2013-10-10T14:29:29
2013-10-10T14:29:29
7,937,795
3
3
null
null
null
null
UTF-8
C++
false
false
2,364
ino
#include <FastSPI_LED.h> #define NUM_LEDS 60 // Sometimes chipsets wire in a backwards sort of way struct CRGB { unsigned char b; unsigned char r; unsigned char g; }; // struct CRGB { unsigned char r; unsigned char g; unsigned char b; }; struct CRGB *leds; #define PIN 4 void setup() { FastSPI_LED.setLeds(NUM_LEDS); //FastSPI_LED.setChipset(CFastSPI_LED::SPI_SM16716); FastSPI_LED.setChipset(CFastSPI_LED::SPI_TM1809); //FastSPI_LED.setChipset(CFastSPI_LED::SPI_LPD6803); //FastSPI_LED.setChipset(CFastSPI_LED::SPI_HL1606); //FastSPI_LED.setChipset(CFastSPI_LED::SPI_595); //FastSPI_LED.setChipset(CFastSPI_LED::SPI_WS2801); FastSPI_LED.setPin(PIN); FastSPI_LED.init(); FastSPI_LED.start(); leds = (struct CRGB*)FastSPI_LED.getRGBData(); } void loop() { // one at a time for(int j = 0; j < 3; j++) { for(int i = 0 ; i < NUM_LEDS; i++ ) { memset(leds, 0, NUM_LEDS * 3); switch(j) { case 0: leds[i].r = 255; break; case 1: leds[i].g = 255; break; case 2: leds[i].b = 255; break; } FastSPI_LED.show(); delay(10); } } // growing/receeding bars for(int j = 0; j < 3; j++) { memset(leds, 0, NUM_LEDS * 3); for(int i = 0 ; i < NUM_LEDS; i++ ) { switch(j) { case 0: leds[i].r = 255; break; case 1: leds[i].g = 255; break; case 2: leds[i].b = 255; break; } FastSPI_LED.show(); delay(10); } for(int i = NUM_LEDS-1 ; i >= 0; i-- ) { switch(j) { case 0: leds[i].r = 0; break; case 1: leds[i].g = 0; break; case 2: leds[i].b = 0; break; } FastSPI_LED.show(); delay(1); } } // Fade in/fade out for(int j = 0; j < 3; j++ ) { memset(leds, 0, NUM_LEDS * 3); for(int k = 0; k < 256; k++) { for(int i = 0; i < NUM_LEDS; i++ ) { switch(j) { case 0: leds[i].r = k; break; case 1: leds[i].g = k; break; case 2: leds[i].b = k; break; } } FastSPI_LED.show(); delay(3); } for(int k = 255; k >= 0; k--) { for(int i = 0; i < NUM_LEDS; i++ ) { switch(j) { case 0: leds[i].r = k; break; case 1: leds[i].g = k; break; case 2: leds[i].b = k; break; } } FastSPI_LED.show(); delay(3); } } }
[ "richard.osterloh@gmail.com" ]
richard.osterloh@gmail.com