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 905
values | visit_date timestamp[us]date 2015-08-09 11:21:18 2023-09-06 10:45:07 | revision_date timestamp[us]date 1997-09-14 05:04:47 2023-09-17 19:19:19 | committer_date timestamp[us]date 1997-09-14 05:04:47 2023-09-06 06:22:19 | github_id int64 3.89k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 22
values | gha_event_created_at timestamp[us]date 2012-06-07 00:51:45 2023-09-14 21:58:39 ⌀ | gha_created_at timestamp[us]date 2008-03-27 23:40:48 2023-08-21 23:17:38 ⌀ | gha_language stringclasses 141
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 115
values | content stringlengths 3 10.4M | authors listlengths 1 1 | author_id stringlengths 0 158 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
41bfcc4ad48785f866a71db7be2cb45641000fcf | 38e059184035caaa80a7ea2a73afb8464cf00f7c | /src/larmap-doctor.cc | 19fe43ffd15a139b4bb7432372c17c2e051bd63a | [] | no_license | gipert/gerda-larmap | 568984aec4ccf92bdfc3d3ccf587ac4b3dd78b8b | a4dd3e44cb2feaea82fb2529913135965c664e8c | refs/heads/master | 2022-03-19T17:40:59.529213 | 2022-02-22T17:44:18 | 2022-02-22T17:44:18 | 176,691,774 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,017 | cc | /* larmap-doctor.cc
*
* Health check of GERDA LAr probability maps.
*
* Author: Luigi Pertoldi - pertoldi@pd.infn.it
* Created: Sun 24 Mar 2019
*/
// STL
#include <iostream>
// ROOT
#include "TFile.h"
#include "TH3.h"
int main(int argc, char** argv) {
auto primaries_th = 100;
auto filename = argc > 1 ? argv[1] : "gerda-larmap-merged.root";
std::cout << "INFO: visiting " << filename << "...\n";
TFile f(filename, "read");
auto h = dynamic_cast<TH3*>(f.Get("LAr_prob_map"));
auto v = dynamic_cast<TH3*>(f.Get("LAr_vertex_map"));
int missing_v, missing, big_error, non_phys, p_equal_one, p_equal_zero;
missing_v = missing = big_error = non_phys = p_equal_one = p_equal_zero = 0;
int ncells = h->GetNcells();
for (int i = 0; i < ncells; ++i) {
auto _p = h->GetBinContent(i);
auto _sigma = h->GetBinError(i);
auto _v = v->GetBinContent(i);
if (_v <= 0) missing_v++;
if (_p < 0) missing++;
else if (_p > 1) non_phys++;
else if (_p == 0 and _v < primaries_th) p_equal_zero++;
else if (_p == 1 and _v < primaries_th) p_equal_one++;
else if (_sigma > 0.01*_p) big_error++;
}
auto ref_empty_perc = round(missing_v*1000./ncells)/10;
auto empty_perc = round(missing*1000./ncells)/10;
std::cout << "INFO: " << missing_v << "/" << ncells << " ("
<< ref_empty_perc
<< "%) empty voxels found in the primary vertex map\n";
if (empty_perc != ref_empty_perc) {
std::cerr << "WARNING: different number of invalid (<0) voxels found in probability map: "
<< empty_perc << ". Ignore this warning if you think you *did not* sample all "
<< "the LAr within the considered space\n";
}
if (non_phys) {
std::cerr << "ERROR: " << non_phys << "/" << ncells << " ("
<< round(non_phys*1000./ncells)/10
<< "%) non-physical (>1) voxels found\n";
}
if (p_equal_zero) {
std::cerr << "WARNING: " << p_equal_zero << "/" << ncells << " ("
<< round(p_equal_zero*1000./ncells)/10
<< "%) voxels with non reliable probability estimate "
<< "(p = 0 and primaries < " << primaries_th << ") found\n";
}
if (p_equal_one) {
std::cerr << "WARNING: " << p_equal_one << "/" << ncells << " ("
<< round(p_equal_one*1000./ncells)/10
<< "%) voxels with non reliable probability estimate "
<< "(p = 1 and primaries < " << primaries_th << ") found\n";
}
if (big_error) {
std::cerr << "WARNING: " << big_error << "/" << ncells << " ("
<< round(big_error*1000./ncells)/10
<< "%) voxels with non reliable probability estimate "
<< "(σ > 1%) found\n";
}
if (missing || non_phys || big_error) return 1;
else return 0;
}
| [
"luigi.pertoldi@hotmail.it"
] | luigi.pertoldi@hotmail.it |
fc3e91e42e9d662aaa151acda49d8c86dc06371a | ae3eb1193410d90f68d122746096145568beaa69 | /hw6/puzzle_solver.h | 3a695e22a12ecf91f8f64bf5a6facbc73e79621f | [] | no_license | jacksals/hw-jacksals | 35c87bb75b6b1ecdc362a7194c95893383614eb8 | 3a175f087d73943cfe8ab8a66677602d79ef6a23 | refs/heads/master | 2020-04-16T09:34:40.653487 | 2020-04-05T23:07:11 | 2020-04-05T23:07:11 | 165,469,149 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 840 | h | #ifndef PUZZLESOLVER_H
#define PUZZLESOLVER_H
#include <deque>
#include <set>
#include "board.h"
#include "puzzle_move.h"
#include "puzzle_heur.h"
#include "heap.h"
class PuzzleSolver
{
public:
typedef std::set<PuzzleMove*, PuzzleMoveBoardComp> PuzzleMoveSet;
// Constructor (makes a copy of the Board and stores it in b_)
// Also takes a PuzzleHeuristic which will score boards
PuzzleSolver(const Board &b, PuzzleHeuristic* ph);
// Destructor
~PuzzleSolver();
// Run the A* search and builds the solution and tracks
// the number of expansions
void run();
// Return the solution deque
std::deque<int> getSolution();
// Return how many expansions were performed in the search
int getNumExpansions();
private:
Board b_;
std::deque<int> solution_;
int expansions_;
PuzzleHeuristic *ph_;
};
#endif
| [
"jesalisb@usc.edu"
] | jesalisb@usc.edu |
612f4c0f0309391f361bddc24a10cb843531e1c1 | d2428ceb8e90649985e2fef3cc1c11ded53ae998 | /src/test/test_bitcoin.cpp | f52a0db6dcff4c0e59e3d9f6bc00752600e6b746 | [
"MIT"
] | permissive | craigcoin/craigcoin | e5d979f5d62bc0fee1642e2656e0ca6412cd5a39 | d41d33f5205dc51a9a0ae1523c6c64952caa8b84 | refs/heads/master | 2021-01-19T07:12:35.482401 | 2016-07-18T11:33:16 | 2016-07-18T11:33:16 | 63,596,805 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,755 | cpp | #define BOOST_TEST_MODULE Craigcoin Test Suite
#include <boost/test/unit_test.hpp>
#include <boost/filesystem.hpp>
#include "db.h"
#include "txdb.h"
#include "main.h"
#include "wallet.h"
#include "util.h"
CWallet* pwalletMain;
CClientUIInterface uiInterface;
extern bool fPrintToConsole;
extern void noui_connect();
struct TestingSetup {
CCoinsViewDB *pcoinsdbview;
boost::filesystem::path pathTemp;
boost::thread_group threadGroup;
TestingSetup() {
fPrintToDebugger = true; // don't want to write to debug.log file
noui_connect();
bitdb.MakeMock();
pathTemp = GetTempPath() / strprintf("test_craigcoin_%lu_%i", (unsigned long)GetTime(), (int)(GetRand(100000)));
boost::filesystem::create_directories(pathTemp);
mapArgs["-datadir"] = pathTemp.string();
pblocktree = new CBlockTreeDB(1 << 20, true);
pcoinsdbview = new CCoinsViewDB(1 << 23, true);
pcoinsTip = new CCoinsViewCache(*pcoinsdbview);
InitBlockIndex();
bool fFirstRun;
pwalletMain = new CWallet("wallet.dat");
pwalletMain->LoadWallet(fFirstRun);
RegisterWallet(pwalletMain);
nScriptCheckThreads = 3;
for (int i=0; i < nScriptCheckThreads-1; i++)
threadGroup.create_thread(&ThreadScriptCheck);
}
~TestingSetup()
{
threadGroup.interrupt_all();
threadGroup.join_all();
delete pwalletMain;
pwalletMain = NULL;
delete pcoinsTip;
delete pcoinsdbview;
delete pblocktree;
bitdb.Flush(true);
boost::filesystem::remove_all(pathTemp);
}
};
BOOST_GLOBAL_FIXTURE(TestingSetup);
void Shutdown(void* parg)
{
exit(0);
}
void StartShutdown()
{
exit(0);
}
| [
"contact@craigcoin.io"
] | contact@craigcoin.io |
0d89cc7866045f15c9a014253fc1295d08239198 | 4ad59b3ffe73f8594c3cc256ee89207092a260eb | /include/jcbasic_fastercount/jcbasic_fastercount.hpp | 025cf947e50f480be66715e25e6a94b0d25db089 | [
"MIT"
] | permissive | juliencombattelli/huffman | 91981645f71aab43a904e5198fd735feba0e1fa3 | 83188c7053caf452a4dadcd6aaf3c3cec2505dec | refs/heads/master | 2021-06-25T06:35:26.367876 | 2019-11-25T22:59:32 | 2019-11-25T22:59:32 | 223,723,715 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,371 | hpp | //=============================================================================
// Name : jcbasic.hpp
// Author : Julien Combattelli
// EMail : julien.combattelli@gmail.com
// Copyright : This file is part of huffman banchmark project, provided under
// MIT license. See LICENSE for more information.
// Description : Implementation of huffman encoding based on jcbasic but using
// unordered_map for counting.
//=============================================================================
#pragma once
#include <array>
#include <memory>
#include <optional>
#include <string>
#include <unordered_map>
#include <utility>
#include <vector>
namespace jcbfc {
struct minheap_node {
using ptr = std::unique_ptr<minheap_node>;
std::optional<char> data;
unsigned freq;
ptr left{nullptr};
ptr right{nullptr};
minheap_node(char data, unsigned freq) : data{data}, freq{freq} {}
explicit minheap_node(unsigned freq) : freq{freq} {}
};
void print_codes(minheap_node* root, std::string str);
using frequency_map = std::array<int, 256>;
frequency_map count_char(std::string_view text);
frequency_map merge_sum(const frequency_map& a, const frequency_map& b);
frequency_map count_char_multi(std::string_view text);
minheap_node::ptr get_huffman_tree(const frequency_map& freq);
} // namespace jcbfc | [
"julien.combattelli@gmail.com"
] | julien.combattelli@gmail.com |
ec36897652c15e86426fc66dbe12c0a324010b64 | 6b2a8dd202fdce77c971c412717e305e1caaac51 | /solutions_5765824346324992_0/C++/Zacky/main.cpp | d881ac02bb96aa46b5501a4ad901e81950b8687e | [] | no_license | alexandraback/datacollection | 0bc67a9ace00abbc843f4912562f3a064992e0e9 | 076a7bc7693f3abf07bfdbdac838cb4ef65ccfcf | refs/heads/master | 2021-01-24T18:27:24.417992 | 2017-05-23T09:23:38 | 2017-05-23T09:23:38 | 84,313,442 | 2 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 3,532 | cpp | #include <iostream>
#include <algorithm>
#include <cstdio>
#include <memory.h>
#include <cmath>
#include <string>
#include <map>
#include <set>
#include <queue>
#include <vector>
#define ABS(x) ((x) >= 0 ? (x) : (-(x)))
#define MAX(a,b) ((a) > (b) ? (a) : (b))
#define MIN(a,b) ((a) < (b) ? (a) : (b))
#define SQR(x) ((x) * (x))
using namespace std;
const int inf = 1 << 29;
const int maxn = 1002;
const int maxm = 102;
const int mod = 100007;
/*
struct Node {
int v,w;
int next;
}edge[maxn << 1];
int head[maxn << 1];
bool vis[maxn];
int m,n,idx;
void init() {
memset(head,-1,sizeof(head));
memset(vis, false, sizeof(vis));
idx = 0;
return;
}
void addedge(int u, int v, int w) {
edge[idx].v = v;
edge[idx].w = w;
edge[idx].next = head[u];
head[u] = idx++;
edge[idx].v = u;
edge[idx].w = w;
edge[idx].next = head[v];
head[v] = idx++;
return;
}
bool flag[maxn];
int phi[maxn];
vector<int> prime;
void get_prime_phi() {
memset(flag, false, false);
prime.clear();
phi[1] = 1;
for (int i=2;i<maxn;i++) {
if (!flag[i]) {
printf("%d ",i);
prime.push_back(i);
phi[i] = i-1;
}
for (int j=0;j<prime.size() && i*prime[j]<maxn; j++) {
flag[i * prime[j]] = true;
if (i % prime[j]) {
phi[i * prime[j]] = phi[i] * (prime[j] - 1);
} else {
phi[i * prime[j]] = phi[i] * prime[j];
break;
}
}
}
return;
}
long long extend_gcd(long long a,long long b,long long &x,long long &y) {
if(a == 0 && b == 0) return -1;
if(b == 0){x = 1; y = 0; return a;}
long long d = extend_gcd(b, a % b, y, x);
y -= a / b * x;
return d;
}
long long mod_reverse(long long a, long long n) {
long long x,y;
long long d = extend_gcd(a, n, x, y);
if(d == 1) return (x % n + n) % n;
else return -1;
}
int c[maxn << 1];
int lowbit(int x) {
return x & (-x);
}
void update(int x, int num) {
while(x < maxn) {
c[x] += num;
x += lowbit(x);
}
return;
}
int getSum(int x) {
int cnt = 0;
while(x > 0) {
cnt += c[x];
x -= lowbit(x);
}
return cnt;
}
long long multi(long long m, long long n, long long k) {
long long res = 0;
while(n) {
if (n & 1) {
res += m;
res %= k;
}
m = (m + m) % k;
n >>= 1;
}
return res;
}
// m^n % k
long long quickpow(long long m, long long n, long long k) {
long long res = 1LL;
while (n) {
if (n & 1) {
res = multi(res, m, k);
}
m = multi(m, m, k);
n >>= 1;
}
return res;
}
*/
struct D {
int id;
int val;
D (int ii, int vv) {
id = ii;
val = vv;
}
bool operator < (const D & other) const {
if (val != other.val) return val > other.val;
return id > other.id;
}
};
priority_queue<D> Q;
int m,n;
int bar[maxn];
void read() {
while(!Q.empty()) Q.pop();
scanf("%d%d",&m,&n);
int sum = 1;
int tmp;
for (int i=1;i<=m;i++) {
scanf("%d", &bar[i]);
Q.push(D(i, 0));
sum *= bar[i];
}
int xxx = 0;
for (int i=1;i<=m;i++) {
xxx += sum / bar[i];
}
n = (n-1) % xxx;
return;
}
void solve() {
for (int i=0;i<n;i++) {
D cur = Q.top();
Q.pop();
Q.push(D(cur.id, cur.val + bar[cur.id]));
}
printf("%d\n", Q.top().id);
return;
}
int main() {
//freopen("data.in", "r", stdin);
//freopen("B-small-attempt3.in", "r", stdin);
//freopen("C-large.in", "r", stdin);
//freopen("data.out", "w", stdout);
int cas;
scanf("%d", &cas);
for (int i=1;i<=cas;i++) {
printf("Case #%d: ",i);
read();
solve();
}
return 0;
}
| [
"eewestman@gmail.com"
] | eewestman@gmail.com |
af2921f10d79c616578e5f0dbcbfa033c1433931 | 4ff44e909c9adc8e757a2756642c6f4b3cfc5a9c | /6_pattern_loop.cpp | 9fd4b76f4807042e4107e016d01add1c677a0520 | [] | no_license | KhushiGoyal123/ShapeAI_DSA_Bootcamp_Assignment | a90b068fbc553c8808947704654a5c6bc965e6ca | 310de574dc39ba7d2492d797346f71562ab960a1 | refs/heads/master | 2023-07-04T22:59:37.555495 | 2021-09-04T15:35:37 | 2021-09-04T15:35:37 | 403,092,780 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 373 | cpp | /* Print this pattern using loops for n=5 */
#include <iostream>
using namespace std;
void triangle(int n)
{
int k = 2 * n - 2;
for (int i = 0; i < n; i++) {
for (int j = 0; j < k; j++)
cout << " ";
k = k - 1;
for (int j = 0; j <= i; j++) {
// Printing stars
cout << "* ";
}
cout << endl;
}
}
int main()
{
int n = 5;
triangle(n);
return 0;
}
| [
"khushi030201goyal@gmail.com"
] | khushi030201goyal@gmail.com |
ac19106fb4e916de446adf7fbdc995c5ea3d12e3 | 35647c47f00109c2e7b1c78c255be3e083eca7c0 | /sdh/simplevector.cpp | c67f2670df2dd5ffa95a604478e742d2b2b62b02 | [
"Apache-2.0"
] | permissive | ipab-slmc/SDHLibrary-CPP | 50e1faa0ea5eb33724f068c59ed6ef19f7d3a573 | 0217d4edf82f34292750240bd7a3d9c63feb7e33 | refs/heads/master | 2020-05-18T20:47:44.517755 | 2019-08-16T11:24:42 | 2019-08-16T11:24:42 | 184,643,160 | 2 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 5,192 | cpp | //======================================================================
/*!
\file
\section sdhlibrary_cpp_simplevector_cpp_general General file information
\author Dirk Osswald
\date 2007-02-19
\brief
Implementation of class #SDH::cSimpleVector.
\section sdhlibrary_cpp_simplevector_cpp_copyright Copyright
- Copyright (c) 2007 SCHUNK GmbH & Co. KG
<HR>
\internal
\subsection sdhlibrary_cpp_simplevector_cpp_details SVN related, detailed file specific information:
$LastChangedBy: Osswald2 $
$LastChangedDate: 2011-02-04 19:26:19 +0100 (Fr, 04 Feb 2011) $
\par SVN file revision:
$Id: simplevector.cpp 6420 2011-02-04 18:26:19Z Osswald2 $
\subsection sdhlibrary_cpp_simplevector_cpp_changelog Changelog of this file:
\include simplevector.cpp.log
*/
//======================================================================
//----------------------------------------------------------------------
// System Includes - include with <>
//----------------------------------------------------------------------
#include <assert.h>
//----------------------------------------------------------------------
// Project Includes - include with ""
//----------------------------------------------------------------------
#include "dbg.h"
#include "simplevector.h"
USING_NAMESPACE_SDH
//----------------------------------------------------------------------
// Defines, enums, unions, structs,
//----------------------------------------------------------------------
//----------------------------------------------------------------------
// Global variables
//----------------------------------------------------------------------
//----------------------------------------------------------------------
// Function implementation (function definitions)
//----------------------------------------------------------------------
//----------------------------------------------------------------------
// Class member function definitions
//----------------------------------------------------------------------
cSimpleVector::cSimpleVector()
{
for ( int i=0; i < eNUMBER_OF_ELEMENTS; i++ )
value[ i ] = 0.0;
valid = 0;
}
//-----------------------------------------------------------------
cSimpleVector::cSimpleVector( int nb_values, char const* str )
{
FromString( nb_values, 0, str );
}
//-----------------------------------------------------------------
cSimpleVector::cSimpleVector( int nb_values, int start_index, float* values )
{
valid = 0;
int mask = (1<<start_index);
for ( int i=0; i < nb_values; i++ )
{
value[ i+start_index ] = values[i];
valid |= mask;
mask <<= 1;
}
}
//-----------------------------------------------------------------
cSimpleVector::cSimpleVector( int nb_values, int start_index, char const* str )
{
FromString( nb_values, start_index, str );
}
//-----------------------------------------------------------------
void cSimpleVector::FromString( int nb_values, int start_index, char const* str )
{
assert( start_index + nb_values <= eNUMBER_OF_ELEMENTS );
for ( int i = 0; i < nb_values; i++ )
{
int n; // number of chars scanned
int nb_fields; // number of fields successfully scanned
int vi = start_index+i; // index in value to write
nb_fields = sscanf( str, " %lf%n", &(value[ vi ]), &n );
if ( nb_fields != 1 )
throw new cSimpleVectorException( cMsg( "cannot init simple vector from string <%s>", str ) );
valid |= (1<<vi);
str += n;
// skip "," separators
while ( *str == ',' )
str++;
}
}
//-----------------------------------------------------------------
double& cSimpleVector::operator[]( unsigned int index )
{
assert( index < eNUMBER_OF_ELEMENTS );
//assert( valid & (1 << index) );
valid |= (1<<index);
return value[ index ];
}
//-----------------------------------------------------------------
double& cSimpleVector::x(void)
{
//assert( valid & (1<<0) );
valid |= (1<<0);
return value[0];
}
//-----------------------------------------------------------------
double& cSimpleVector::y(void)
{
//assert( valid & (1<<1) );
valid |= (1<<1);
return value[1];
}
//-----------------------------------------------------------------
double& cSimpleVector::z(void)
{
//assert( valid & (1<<2) );
valid |= (1<<2);
return value[2];
}
//-----------------------------------------------------------------
bool cSimpleVector::Valid( unsigned int index ) const
{
assert( index < eNUMBER_OF_ELEMENTS );
////!!!return valid | (1<<index); // this seems wrong
return (valid & (1<<index)) != 0;
}
//-----------------------------------------------------------------
//======================================================================
/*
Here are some settings for the emacs/xemacs editor (and can be safely ignored):
(e.g. to explicitely set C++ mode for *.h header files)
Local Variables:
mode:C++
mode:ELSE
End:
*/
//======================================================================
| [
"Christian.Rauch@ed.ac.uk"
] | Christian.Rauch@ed.ac.uk |
7f8bb08dcb9b901a063f5031ea19f1bcb2f2cfe5 | caf904ce8f2766c13917e4e7c894af594d71f453 | /Event.cc | 98d7910a0e89489a6a4974e50629809eb9b99227 | [
"MIT"
] | permissive | ryuichiueda/IAS14_CODE | 6c2b6437b27cf708d7d10230ae9938564ca012bf | 4f4df0b6afe234fda60f3438ab5d28388f7186e2 | refs/heads/master | 2020-04-02T05:13:48.704513 | 2016-06-09T01:52:57 | 2016-06-09T01:52:57 | 60,743,074 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 170 | cc | #include "Event.h"
#include <iostream>
#include <string>
using namespace std;
Event::Event(int trial_no)
{
trial_number = trial_no;
reward = 0;
action = "notyet";
}
| [
"ryuichiueda@gmail.com"
] | ryuichiueda@gmail.com |
4d393bb7d3a9b2bc68fab607d3053abc46f7a1c1 | 3804e498daa83e10279f297bbac34c56b8a796cc | /UVa/11498.cpp | b4d4122a0fcd7f3ed351e163cd2c6ffa30f7ae81 | [] | no_license | mateuscv/competitive-programming-exercises | d45ca04030c1d3beebb68a5ec75291597deb815d | 35943e6ad5c058b4e239c074ea450aea081a4e53 | refs/heads/master | 2022-04-16T16:57:26.804632 | 2020-04-06T17:31:29 | 2020-04-06T17:31:29 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 821 | cpp | #include<stdio.h>
using namespace std;
int main(){
int K, N, M, X, Y, stop = 1;
scanf("%d", &K);
while(stop){
if (K == 0){
stop = 0;
}
scanf("%d %d", &N, &M);
for (size_t i = 0; i < K; i++){
scanf("%d %d", &X, &Y);
if (X == N || Y == M){
printf("divisa\n");
continue;
}
if (X > N){
if (Y > M){
printf("NE\n");
} else {
printf("SE\n");
}
} else {
if (Y > M){
printf("NO\n");
} else {
printf("SO\n");
}
}
}
scanf("%d", &K);
}
return 0;
} | [
"mateusv@email.com"
] | mateusv@email.com |
1245b6b0b4cc01929ee85559a26aa66ea53e844f | e5c0b38c9cc0c0e6155c9d626e299c7b03affd1e | /trunk/Code/Engine/PhysX/Trigger/Trigger.cpp | cc97a45afc33c3b42fd1337bf83e2bf5bba312b5 | [] | no_license | BGCX261/zombigame-svn-to-git | 4e5ec3ade52da3937e2b7d395424c40939657743 | aa9fb16789f1721557085deae123771f5aefc4dd | refs/heads/master | 2020-05-26T21:56:40.088036 | 2015-08-25T15:33:27 | 2015-08-25T15:33:27 | 41,597,035 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,845 | cpp | #include "Trigger.h"
#include "ScriptManager.h"
#include "Base.h"
#include "Math/Matrix44.h"
#include "Core.h"
#include "RenderManager.h"
#include "RenderablePhysX/RenderablePhysXManager.h"
#include "../Actor/PhysicActor.h"
#include "RenderableObjects/RenderableObject.h"
#if defined( _DEBUG )
#include "Memory/MemLeaks.h"
#endif // defined( _DEBUG )
/// <summary>
/// Inicializa los triggers.
/// </summary>
bool CTrigger::Init()
{
m_bIsOk = true;
m_Transformation.SetIdentity();
return m_bIsOk;
}
/// <summary>
/// Finalize data.
/// </summary>
void CTrigger::Done()
{
if (IsOk())
{
Release();
m_bIsOk = false;
}
}
/// <summary>
/// Libera memoria.
/// </summary>
void CTrigger::Release()
{
//CHECKED_DELETE(m_RenderObj);
//CHECKED_DELETE(m_PhysXObj);
}
void CTrigger::Render(Vect3f size, Vect3f position)
{
Mat44f l_t;
l_t.SetIdentity();
CRenderManager * l_rm = CORE->GetRenderManager();
l_t.Translate(position);
l_t.RotByAngleX(m_fRotationX);
l_t.RotByAngleY(m_fRotationY);
l_t.RotByAngleZ(m_fRotationZ);
l_rm->SetTransform(l_t);
l_rm->DrawCube(size,colRED);
}
void CTrigger::CalculateMatriz44f()
{
Mat44f l_t;
l_t.SetIdentity();
l_t.Translate(m_v3Position);
l_t.RotByAngleY(m_fRotationY);
CRenderManager * l_rm = CORE->GetRenderManager();
l_rm->SetTransform(l_t);
SetMatrizTrigger(l_t);
}
void CTrigger::MoveRenderableObject(std::string idObject)
{
m_RenderObj = CORE->GetRenderablePhysXManager()->GetRenderablePhysXObject(idObject)->GetRenderableObject();
m_RenderObj->SetPosition(Vect3f(0.0f,-20.0f,0.0f));
m_PhysXObj = CORE->GetRenderablePhysXManager()->GetRenderablePhysXObject(idObject);
Mat44f matriz2 = m_PhysXObj->GetRenderableObject()->GetMat44();
m_PhysXObj->GetPhysXActor()->SetMat44(matriz2);
}
| [
"you@example.com"
] | you@example.com |
aa952c04cf81dfd1bcfa1f348a5fd5c8d789a3a8 | 7ee965a7a30ab1f47453573357a29ac01881e722 | /VTSServer/VTSServerDlg.h | e6b857ad752f65d8ea04c6cb4e0dbde7dc2123da | [] | no_license | Mejung-Kim/Online-teaching-Solution | 266247d1b578e7c601fa7fe7d3bef5f032907282 | e43a95b48e48c3e8eb8b55a16d3887a1bdfecbc0 | refs/heads/master | 2021-01-10T21:28:26.462534 | 2014-10-29T07:32:01 | 2014-10-29T07:32:01 | null | 0 | 0 | null | null | null | null | UHC | C++ | false | false | 1,593 | h |
// VTSServerDlg.h : 헤더 파일
//
#pragma once
#include "resource.h"
#include "cvvimage.h"
#include "DataThread.h"
// CVTSServerDlg 대화 상자
class CVTSServerDlg : public CDialogEx
{
// 생성입니다.
public:
CVTSServerDlg(CWnd* pParent = NULL); // 표준 생성자입니다.
// 대화 상자 데이터입니다.
enum { IDD = IDD_VTSSERVER_DIALOG };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 지원입니다.
// 구현입니다.
protected:
HICON m_hIcon;
// 생성된 메시지 맵 함수
virtual BOOL OnInitDialog();
afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
afx_msg void OnPaint();
afx_msg HCURSOR OnQueryDragIcon();
DECLARE_MESSAGE_MAP()
public:
// 서버소켓을 만들고 클라이언트의 요청이 오면 클라이언트 소켓을 만든뒤 CamThread를 생성하는 함수
//UINT ServerSetUp(LPVOID arg);
// 클라이언트와 연결될 때 최초로 한번 클라이언트로부터 사용자 이름을 받아오는 함수
void ReceiveUsername(SOCKET * hClntSock);
afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
int m_x;
int m_y;
BOOL m_bDown;
afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
afx_msg void OnMouseMove(UINT nFlags, CPoint point);
afx_msg void OnStnClickedBoard();
CString FilePath;
afx_msg void OnEnChangeFilepath();
int ops_x;
int ops_y;
int ops_bDown;
CListBox m_chatlist;
SOCKET *CamSock;
SOCKET *DataSock;
CStatic Board;
afx_msg void OnEnChangeEdit1();
afx_msg void OnBnClickedButton1();
afx_msg void OnBnClickedMsgsend();
afx_msg void OnBnClickedErase();
};
| [
"sowells@naver.com"
] | sowells@naver.com |
ba70109f1b6c494c6a0fb04603c8c003b45d4ae6 | bdb1e24f0a0be7fd2d1c1a202fdb6f33b0b23dac | /Source/Utility/MythForest/Component/Tape/TapeComponent.cpp | 58e9188cd032ccb7a751c02f3767599f5b4bcf2f | [
"MIT"
] | permissive | paintdream/PaintsNow | 42f297b9596d6f825017945d6ba24321fab0946e | 71581a89585594c3b898959cea5ee9c52c9249ed | refs/heads/master | 2023-08-17T13:52:49.714004 | 2023-08-07T14:21:01 | 2023-08-07T14:21:01 | 162,007,217 | 11 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 2,532 | cpp | #include "TapeComponent.h"
#include "../../../../Core/System/StringStream.h"
#include "../../../BridgeSunset/BridgeSunset.h"
#include "../../../../Core/Driver/Profiler/Optick/optick.h"
#include <utility>
using namespace PaintsNow;
TapeComponent::TapeComponent(IStreamBase& stream, const TShared<SharedTiny>&holder, size_t cache) : tape(stream), streamHolder(std::move(holder)), cacheBytes(cache), bufferStream(cache) {}
std::pair<int64_t, String> TapeComponent::Read() {
assert(!(Flag().load(std::memory_order_acquire) & TINY_UPDATING));
if (Flag().load(std::memory_order_acquire) & TINY_UPDATING) return std::make_pair(0, String());
int64_t seq;
int64_t length;
bufferStream.Seek(IStreamBase::BEGIN, 0);
if (tape.ReadPacket(seq, bufferStream, length)) {
return std::make_pair(seq, String(reinterpret_cast<const char*>(bufferStream.GetBuffer()), (size_t)length));
} else {
return std::make_pair(0, String());
}
}
bool TapeComponent::Write(int64_t seq, const String& data) {
assert(!(Flag().load(std::memory_order_acquire) & TINY_UPDATING));
if (Flag().load(std::memory_order_acquire) & TINY_UPDATING) return false;
size_t len = data.length();
if (!bufferStream.Write(data.c_str(), len)) {
return false;
}
if (bufferStream.GetTotalLength() > cacheBytes) {
// force flush
return FlushInternal();
} else {
return true;
}
}
bool TapeComponent::FlushInternal() {
size_t i;
for (i = 0; i < cachedSegments.size(); i++) {
const std::pair<uint64_t, size_t>& p = cachedSegments[i];
if (!tape.WritePacket(p.first, bufferStream, p.second)) {
break;
}
}
bool success = i == cachedSegments.size();
bufferStream.Seek(IStreamBase::BEGIN, 0);
cachedSegments.clear();
return success;
}
bool TapeComponent::Seek(int64_t seq) {
return tape.Seek(seq);
}
void TapeComponent::OnAsyncFlush(Engine& engine, IScript::Request::Ref callback) {
OPTICK_EVENT();
bool result = FlushInternal();
IScript::Request& request = *engine.bridgeSunset.requestPool.AcquireSafe();
request.DoLock();
request.Call(callback, result);
request.UnLock();
engine.bridgeSunset.requestPool.ReleaseSafe(&request);
Flag().fetch_and(~TINY_UPDATING);
ReleaseObject();
}
bool TapeComponent::Flush(Engine& engine, IScript::Request::Ref callback) {
if (callback) {
Flag().fetch_or(TINY_UPDATING);
ReferenceObject();
engine.GetKernel().GetThreadPool().Dispatch(CreateTaskContextFree(Wrap(this, &TapeComponent::OnAsyncFlush), std::ref(engine), callback), 1);
return true;
} else {
return FlushInternal();
}
}
| [
"paintdream@paintdream.com"
] | paintdream@paintdream.com |
ccbbd3235134d7c3c878467e1596a26568ad1d34 | 447267020900e8767c9fa4701fedb929c26dfa15 | /supplementalVariablesFunctions.h | 7cbd8d4e4c24bdc06017c092859baed80084309a | [] | no_license | scottj64/PCA_VBM_ALL | f130f10c056622c369d72e12bcd59f22dcdfbe69 | 8250bf7939eed1813cbc2bb7ac987201bad4db77 | refs/heads/master | 2023-01-01T14:47:18.824086 | 2020-10-29T16:25:29 | 2020-10-29T16:25:29 | 308,374,442 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,359 | h | const float PI = 3.14159265359;
//pretty numbers <=100 for 1,000,000 / x = round number: x= 1, 2, 4, 5, 8, 10, 16, 20, 25, 32, 40, 50, 64, 80, 100
//all of them!!!!! 1, 2, 4, 5, 8, 10, 16, 20, 25, 32, 40, 50, 64, 80, 100, 125, 160, 200, 250, 320, 400, 500, 625, 800, 1000, 1250, 1600, 2000, 2500, 3125, 4000, 5000, 6250, 8000, 10000, 12500, 15625, 20000, 25000, 31250, 40000, 50000, 62500, 100000, 125000, 200000, 250000, 500000, 1000000
const int LOOP_FREQUENCY = 100; //cycles per second
//no point going faster than 100Hz as that is how fast the Jaco arm controller refreshes
volatile bool keepGoing = true; //the loops will check this value
const float StartX = 0.3;
const float StartY = 0.5;
const float StartZ = 0.4;
const float CenterX = 0.2;
const float CenterZ = 0.4;
const float StartRotX = PI/2;
const float StartRotY = 0.0;
const float StartRotZ = PI;
const float Y_ROBOT_MIN = -0.10;
const float Z_ROBOT_MIN = 0.02;
const float MAX_FINGER_CLOSE = 6000.0;
const float MIN_FINGER_OPEN = 0000.0;
const float fingerGain = 10.0;
struct dataPoint
{
float programTime = 0.0; //since start of streaming
float currentLoc[3] = {0.0,0.0,0.0};
float currentRot[3] = {0.0,0.0,0.0};
float fingerSVal = 0.0;
float fingersTold = 0.0;
float rawCartVel[3] = {0.0,0.0,0.0};
float rawRotVel[3] = {0.0,0.0,0.0};
float jointAngle[6] = {0.0,0.0,0.0,0.0,0.0,0.0};
};
void printDataPoint(const dataPoint *_DataPoint, std::ofstream &outputFile)
{
outputFile <<
_DataPoint->programTime << "\t";
outputFile <<
_DataPoint->currentLoc[0] << "\t" <<
_DataPoint->currentLoc[1] << "\t" <<
_DataPoint->currentLoc[2] << "\t" <<
_DataPoint->currentRot[0] << "\t" <<
_DataPoint->currentRot[1] << "\t" <<
_DataPoint->currentRot[2] << "\t" <<
_DataPoint->fingerSVal << "\t" <<
_DataPoint->fingersTold << "\t" <<
_DataPoint->rawCartVel[0] << "\t" <<
_DataPoint->rawCartVel[1] << "\t" <<
_DataPoint->rawCartVel[2] << "\t" <<
_DataPoint->rawRotVel[0] << "\t" <<
_DataPoint->rawRotVel[1] << "\t" <<
_DataPoint->rawRotVel[2] << "\t" <<
_DataPoint->jointAngle[0] << "\t" <<
_DataPoint->jointAngle[1] << "\t" <<
_DataPoint->jointAngle[2] << "\t" <<
_DataPoint->jointAngle[3] << "\t" <<
_DataPoint->jointAngle[4] << "\t" <<
_DataPoint->jointAngle[5] << "\t" <<
std::endl;
return;
}
| [
"scottj64@msu.edu"
] | scottj64@msu.edu |
ab2e9993f39e7aa1323b77c3cd4da0c36aefa394 | 1a77b5eac40055032b72e27e720ac5d43451bbd6 | /フォーム対応/VisualC++/CLR/Chap4/Dr30_1/Dr30_1/Form1.h | b6cf0d7b1351c46d7974c63f8018807c55d2830a | [] | no_license | motonobu-t/algorithm | 8c8d360ebb982a0262069bb968022fe79f2c84c2 | ca7b29d53860eb06a357eb268f44f47ec9cb63f7 | refs/heads/master | 2021-01-22T21:38:34.195001 | 2017-05-15T12:00:51 | 2017-05-15T12:01:00 | 85,451,237 | 0 | 0 | null | null | null | null | SHIFT_JIS | C++ | false | false | 5,012 | h | #pragma once
#include "clrformh.h"
int m[7][7]={{2,2,2,2,2,2,2},
{2,0,0,0,0,0,2},
{2,0,2,0,2,0,2},
{2,0,0,2,0,2,2},
{2,2,0,2,0,2,2},
{2,0,0,0,0,0,2},
{2,2,2,2,2,2,2}};
int Si,Sj,Ei,Ej,success,
sp,ri[100],rj[100]; /* 通過位置を入れるスタック */
namespace Dr30_1 {
using namespace System;
using namespace System::ComponentModel;
using namespace System::Collections;
using namespace System::Windows::Forms;
using namespace System::Data;
using namespace System::Drawing;
/// <summary>
/// Form1 の概要
///
/// 警告: このクラスの名前を変更する場合、このクラスが依存するすべての .resx ファイルに関連付けられた
/// マネージ リソース コンパイラ ツールに対して 'Resource File Name' プロパティを
/// 変更する必要があります。この変更を行わないと、
/// デザイナと、このフォームに関連付けられたローカライズ済みリソースとが、
/// 正しく相互に利用できなくなります。
/// </summary>
public ref class Form1 : public System::Windows::Forms::Form
{
public:
Form1(void)
{
InitializeComponent();
//
//TODO: ここにコンストラクタ コードを追加します
//
}
protected:
/// <summary>
/// 使用中のリソースをすべてクリーンアップします。
/// </summary>
~Form1()
{
if (components)
{
delete components;
}
}
private: System::Windows::Forms::Button^ button1;
protected:
private: System::Windows::Forms::PictureBox^ pictureBox1;
private:
/// <summary>
/// 必要なデザイナ変数です。
/// </summary>
System::ComponentModel::Container ^components;
#pragma region Windows Form Designer generated code
/// <summary>
/// デザイナ サポートに必要なメソッドです。このメソッドの内容を
/// コード エディタで変更しないでください。
/// </summary>
void InitializeComponent(void)
{
this->button1 = (gcnew System::Windows::Forms::Button());
this->pictureBox1 = (gcnew System::Windows::Forms::PictureBox());
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this->pictureBox1))->BeginInit();
this->SuspendLayout();
//
// button1
//
this->button1->Location = System::Drawing::Point(12, 13);
this->button1->Name = L"button1";
this->button1->Size = System::Drawing::Size(49, 25);
this->button1->TabIndex = 0;
this->button1->Text = L"実行";
this->button1->UseVisualStyleBackColor = true;
this->button1->Click += gcnew System::EventHandler(this, &Form1::button1_Click);
//
// pictureBox1
//
this->pictureBox1->BorderStyle = System::Windows::Forms::BorderStyle::FixedSingle;
this->pictureBox1->Location = System::Drawing::Point(12, 56);
this->pictureBox1->Name = L"pictureBox1";
this->pictureBox1->Size = System::Drawing::Size(383, 143);
this->pictureBox1->TabIndex = 1;
this->pictureBox1->TabStop = false;
//
// Form1
//
this->AutoScaleDimensions = System::Drawing::SizeF(6, 12);
this->AutoScaleMode = System::Windows::Forms::AutoScaleMode::Font;
this->ClientSize = System::Drawing::Size(439, 263);
this->Controls->Add(this->pictureBox1);
this->Controls->Add(this->button1);
this->Name = L"Form1";
this->Text = L"Form1";
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this->pictureBox1))->EndInit();
this->ResumeLayout(false);
}
#pragma endregion
/*
* ---------------------------------------------------
* 迷路をたどる(経路をスタックに記録する) *
* ---------------------------------------------------
*/
#include "clrform.h"
int visit(int i,int j)
{
int k;
m[i][j]=1;
ri[sp]=i; rj[sp]=j; sp++; /* 訪問位置をスタックに積む */
if (i==Ei && j==Ej){ /* 出口に到達したとき */
for (k=0;k<sp;k++) /* 通過点の表示 */
printf("(%d,%d) ",ri[k],rj[k]);
success=1;
}
/* 出口に到達しない間迷路をさまよう */
if (success!=1 && m[i][j+1]==0) visit(i,j+1);
if (success!=1 && m[i+1][j]==0) visit(i+1,j);
if (success!=1 && m[i][j-1]==0) visit(i,j-1);
if (success!=1 && m[i-1][j]==0) visit(i-1,j);
sp--; /* スタックから捨てる */
return success;
}
private: System::Void button1_Click(System::Object^ sender, System::EventArgs^ e) {
sp=0; /* スタック・ポインタの初期化 */
success=0; /* 脱出に成功したかを示すフラグ */
Si=1; Sj=1; Ei=5; Ej=5; /* 入口と出口の位置 */
tinit();cls();
printf("迷路の探索\n");
if (visit(Si,Sj)==0)
printf("出口は見つかりませんでした\n");
printf("\n");
}
};
}
| [
"rx_78_bd@yahoo.co.jp"
] | rx_78_bd@yahoo.co.jp |
3944dcfc360cb642c6cd22f912967204e0f9e6e1 | e4c432f43fb1711d7307a25d5bc07f64e26ae9de | /game_server/tinyxml2.h | 17e576a61a42c81282be79cc4b8e9670c9d9c3dd | [] | no_license | longshadian/zylib | c456dc75470f9c6512a7d63b1182cb9eebcca999 | 9fde01c76a1c644d5daa46a645c8e1300e72c5bf | refs/heads/master | 2021-01-22T23:49:11.912633 | 2020-06-16T09:13:50 | 2020-06-16T09:13:50 | 85,669,581 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 67,842 | h | /*
Original code by Lee Thomason (www.grinninglizard.com)
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any
damages arising from the use of this software.
Permission is granted to anyone to use this software for any
purpose, including commercial applications, and to alter it and
redistribute it freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must
not claim that you wrote the original software. If you use this
software in a product, an acknowledgment in the product documentation
would be appreciated but is not required.
2. Altered source versions must be plainly marked as such, and
must not be misrepresented as being the original software.
3. This notice may not be removed or altered from any source
distribution.
*/
#ifndef TINYXML2_INCLUDED
#define TINYXML2_INCLUDED
#if defined(ANDROID_NDK) || defined(__BORLANDC__) || defined(__QNXNTO__)
# include <ctype.h>
# include <limits.h>
# include <stdio.h>
# include <stdlib.h>
# include <string.h>
# if defined(__PS3__)
# include <stddef.h>
# endif
#else
# include <cctype>
# include <climits>
# include <cstdio>
# include <cstdlib>
# include <cstring>
#endif
#include <stdint.h>
/*
TODO: intern strings instead of allocation.
*/
/*
gcc:
g++ -Wall -DDEBUG tinyxml2.cpp xmltest.cpp -o gccxmltest.exe
Formatting, Artistic Style:
AStyle.exe --style=1tbs --indent-switches --break-closing-brackets --indent-preprocessor tinyxml2.cpp tinyxml2.h
*/
#if defined( _DEBUG ) || defined( DEBUG ) || defined (__DEBUG__)
# ifndef DEBUG
# define DEBUG
# endif
#endif
#ifdef _MSC_VER
# pragma warning(push)
# pragma warning(disable: 4251)
#endif
#ifdef _WIN32
# ifdef TINYXML2_EXPORT
# define TINYXML2_LIB __declspec(dllexport)
# elif defined(TINYXML2_IMPORT)
# define TINYXML2_LIB __declspec(dllimport)
# else
# define TINYXML2_LIB
# endif
#elif __GNUC__ >= 4
# define TINYXML2_LIB __attribute__((visibility("default")))
#else
# define TINYXML2_LIB
#endif
#if defined(DEBUG)
# if defined(_MSC_VER)
# // "(void)0," is for suppressing C4127 warning in "assert(false)", "assert(true)" and the like
# define TIXMLASSERT( x ) if ( !((void)0,(x))) { __debugbreak(); }
# elif defined (ANDROID_NDK)
# include <android/log.h>
# define TIXMLASSERT( x ) if ( !(x)) { __android_log_assert( "assert", "grinliz", "ASSERT in '%s' at %d.", __FILE__, __LINE__ ); }
# else
# include <assert.h>
# define TIXMLASSERT assert
# endif
#else
# define TIXMLASSERT( x ) {}
#endif
/* Versioning, past 1.0.14:
http://semver.org/
*/
static const int TIXML2_MAJOR_VERSION = 4;
static const int TIXML2_MINOR_VERSION = 0;
static const int TIXML2_PATCH_VERSION = 1;
namespace tinyxml2
{
class XMLDocument;
class XMLElement;
class XMLAttribute;
class XMLComment;
class XMLText;
class XMLDeclaration;
class XMLUnknown;
class XMLPrinter;
/*
A class that wraps strings. Normally stores the start and end
pointers into the XML file itself, and will apply normalization
and entity translation if actually read. Can also store (and memory
manage) a traditional char[]
*/
class StrPair
{
public:
enum {
NEEDS_ENTITY_PROCESSING = 0x01,
NEEDS_NEWLINE_NORMALIZATION = 0x02,
NEEDS_WHITESPACE_COLLAPSING = 0x04,
TEXT_ELEMENT = NEEDS_ENTITY_PROCESSING | NEEDS_NEWLINE_NORMALIZATION,
TEXT_ELEMENT_LEAVE_ENTITIES = NEEDS_NEWLINE_NORMALIZATION,
ATTRIBUTE_NAME = 0,
ATTRIBUTE_VALUE = NEEDS_ENTITY_PROCESSING | NEEDS_NEWLINE_NORMALIZATION,
ATTRIBUTE_VALUE_LEAVE_ENTITIES = NEEDS_NEWLINE_NORMALIZATION,
COMMENT = NEEDS_NEWLINE_NORMALIZATION
};
StrPair() : _flags( 0 ), _start( 0 ), _end( 0 ) {}
~StrPair();
void Set( char* start, char* end, int flags ) {
TIXMLASSERT( start );
TIXMLASSERT( end );
Reset();
_start = start;
_end = end;
_flags = flags | NEEDS_FLUSH;
}
const char* GetStr();
bool Empty() const {
return _start == _end;
}
void SetInternedStr( const char* str ) {
Reset();
_start = const_cast<char*>(str);
}
void SetStr( const char* str, int flags=0 );
char* ParseText( char* in, const char* endTag, int strFlags, int* curLineNumPtr );
char* ParseName( char* in );
void TransferTo( StrPair* other );
void Reset();
private:
void CollapseWhitespace();
enum {
NEEDS_FLUSH = 0x100,
NEEDS_DELETE = 0x200
};
int _flags;
char* _start;
char* _end;
StrPair( const StrPair& other ); // not supported
void operator=( StrPair& other ); // not supported, use TransferTo()
};
/*
A dynamic array of Plain Old Data. Doesn't support constructors, etc.
Has a small initial memory pool, so that low or no usage will not
cause a call to new/delete
*/
template <class T, int INITIAL_SIZE>
class DynArray
{
public:
DynArray() {
_mem = _pool;
_allocated = INITIAL_SIZE;
_size = 0;
}
~DynArray() {
if ( _mem != _pool ) {
delete [] _mem;
}
}
void Clear() {
_size = 0;
}
void Push( T t ) {
TIXMLASSERT( _size < INT_MAX );
EnsureCapacity( _size+1 );
_mem[_size] = t;
++_size;
}
T* PushArr( int count ) {
TIXMLASSERT( count >= 0 );
TIXMLASSERT( _size <= INT_MAX - count );
EnsureCapacity( _size+count );
T* ret = &_mem[_size];
_size += count;
return ret;
}
T Pop() {
TIXMLASSERT( _size > 0 );
--_size;
return _mem[_size];
}
void PopArr( int count ) {
TIXMLASSERT( _size >= count );
_size -= count;
}
bool Empty() const {
return _size == 0;
}
T& operator[](int i) {
TIXMLASSERT( i>= 0 && i < _size );
return _mem[i];
}
const T& operator[](int i) const {
TIXMLASSERT( i>= 0 && i < _size );
return _mem[i];
}
const T& PeekTop() const {
TIXMLASSERT( _size > 0 );
return _mem[ _size - 1];
}
int Size() const {
TIXMLASSERT( _size >= 0 );
return _size;
}
int Capacity() const {
TIXMLASSERT( _allocated >= INITIAL_SIZE );
return _allocated;
}
const T* Mem() const {
TIXMLASSERT( _mem );
return _mem;
}
T* Mem() {
TIXMLASSERT( _mem );
return _mem;
}
private:
DynArray( const DynArray& ); // not supported
void operator=( const DynArray& ); // not supported
void EnsureCapacity( int cap ) {
TIXMLASSERT( cap > 0 );
if ( cap > _allocated ) {
TIXMLASSERT( cap <= INT_MAX / 2 );
int newAllocated = cap * 2;
T* newMem = new T[newAllocated];
memcpy( newMem, _mem, sizeof(T)*_size ); // warning: not using constructors, only works for PODs
if ( _mem != _pool ) {
delete [] _mem;
}
_mem = newMem;
_allocated = newAllocated;
}
}
T* _mem;
T _pool[INITIAL_SIZE];
int _allocated; // objects allocated
int _size; // number objects in use
};
/*
Parent virtual class of a pool for fast allocation
and deallocation of objects.
*/
class MemPool
{
public:
MemPool() {}
virtual ~MemPool() {}
virtual int ItemSize() const = 0;
virtual void* Alloc() = 0;
virtual void Free( void* ) = 0;
virtual void SetTracked() = 0;
virtual void Clear() = 0;
};
/*
Template child class to create pools of the correct type.
*/
template< int ITEM_SIZE >
class MemPoolT : public MemPool
{
public:
MemPoolT() : _root(0), _currentAllocs(0), _nAllocs(0), _maxAllocs(0), _nUntracked(0) {}
~MemPoolT() {
Clear();
}
void Clear() {
// Delete the blocks.
while( !_blockPtrs.Empty()) {
Block* b = _blockPtrs.Pop();
delete b;
}
_root = 0;
_currentAllocs = 0;
_nAllocs = 0;
_maxAllocs = 0;
_nUntracked = 0;
}
virtual int ItemSize() const {
return ITEM_SIZE;
}
int CurrentAllocs() const {
return _currentAllocs;
}
virtual void* Alloc() {
if ( !_root ) {
// Need a new block.
Block* block = new Block();
_blockPtrs.Push( block );
Item* blockItems = block->items;
for( int i = 0; i < ITEMS_PER_BLOCK - 1; ++i ) {
blockItems[i].next = &(blockItems[i + 1]);
}
blockItems[ITEMS_PER_BLOCK - 1].next = 0;
_root = blockItems;
}
Item* const result = _root;
TIXMLASSERT( result != 0 );
_root = _root->next;
++_currentAllocs;
if ( _currentAllocs > _maxAllocs ) {
_maxAllocs = _currentAllocs;
}
++_nAllocs;
++_nUntracked;
return result;
}
virtual void Free( void* mem ) {
if ( !mem ) {
return;
}
--_currentAllocs;
Item* item = static_cast<Item*>( mem );
#ifdef DEBUG
memset( item, 0xfe, sizeof( *item ) );
#endif
item->next = _root;
_root = item;
}
void Trace( const char* name ) {
printf( "Mempool %s watermark=%d [%dk] current=%d size=%d nAlloc=%d blocks=%d\n",
name, _maxAllocs, _maxAllocs * ITEM_SIZE / 1024, _currentAllocs,
ITEM_SIZE, _nAllocs, _blockPtrs.Size() );
}
void SetTracked() {
--_nUntracked;
}
int Untracked() const {
return _nUntracked;
}
// This number is perf sensitive. 4k seems like a good tradeoff on my machine.
// The test file is large, 170k.
// Release: VS2010 gcc(no opt)
// 1k: 4000
// 2k: 4000
// 4k: 3900 21000
// 16k: 5200
// 32k: 4300
// 64k: 4000 21000
// Declared public because some compilers do not accept to use ITEMS_PER_BLOCK
// in private part if ITEMS_PER_BLOCK is private
enum { ITEMS_PER_BLOCK = (4 * 1024) / ITEM_SIZE };
private:
MemPoolT( const MemPoolT& ); // not supported
void operator=( const MemPoolT& ); // not supported
union Item {
Item* next;
char itemData[ITEM_SIZE];
};
struct Block {
Item items[ITEMS_PER_BLOCK];
};
DynArray< Block*, 10 > _blockPtrs;
Item* _root;
int _currentAllocs;
int _nAllocs;
int _maxAllocs;
int _nUntracked;
};
/**
Implements the interface to the "Visitor pattern" (see the Accept() method.)
If you call the Accept() method, it requires being passed a XMLVisitor
class to handle callbacks. For nodes that contain other nodes (Document, Element)
you will get called with a VisitEnter/VisitExit pair. Nodes that are always leafs
are simply called with Visit().
If you return 'true' from a Visit method, recursive parsing will continue. If you return
false, <b>no children of this node or its siblings</b> will be visited.
All flavors of Visit methods have a default implementation that returns 'true' (continue
visiting). You need to only override methods that are interesting to you.
Generally Accept() is called on the XMLDocument, although all nodes support visiting.
You should never change the document from a callback.
@sa XMLNode::Accept()
*/
class TINYXML2_LIB XMLVisitor
{
public:
virtual ~XMLVisitor() {}
/// Visit a document.
virtual bool VisitEnter( const XMLDocument& /*doc*/ ) {
return true;
}
/// Visit a document.
virtual bool VisitExit( const XMLDocument& /*doc*/ ) {
return true;
}
/// Visit an element.
virtual bool VisitEnter( const XMLElement& /*element*/, const XMLAttribute* /*firstAttribute*/ ) {
return true;
}
/// Visit an element.
virtual bool VisitExit( const XMLElement& /*element*/ ) {
return true;
}
/// Visit a declaration.
virtual bool Visit( const XMLDeclaration& /*declaration*/ ) {
return true;
}
/// Visit a text node.
virtual bool Visit( const XMLText& /*text*/ ) {
return true;
}
/// Visit a comment node.
virtual bool Visit( const XMLComment& /*comment*/ ) {
return true;
}
/// Visit an unknown node.
virtual bool Visit( const XMLUnknown& /*unknown*/ ) {
return true;
}
};
// WARNING: must match XMLDocument::_errorNames[]
enum XMLError {
XML_SUCCESS = 0,
XML_NO_ATTRIBUTE,
XML_WRONG_ATTRIBUTE_TYPE,
XML_ERROR_FILE_NOT_FOUND,
XML_ERROR_FILE_COULD_NOT_BE_OPENED,
XML_ERROR_FILE_READ_ERROR,
XML_ERROR_ELEMENT_MISMATCH,
XML_ERROR_PARSING_ELEMENT,
XML_ERROR_PARSING_ATTRIBUTE,
XML_ERROR_IDENTIFYING_TAG,
XML_ERROR_PARSING_TEXT,
XML_ERROR_PARSING_CDATA,
XML_ERROR_PARSING_COMMENT,
XML_ERROR_PARSING_DECLARATION,
XML_ERROR_PARSING_UNKNOWN,
XML_ERROR_EMPTY_DOCUMENT,
XML_ERROR_MISMATCHED_ELEMENT,
XML_ERROR_PARSING,
XML_CAN_NOT_CONVERT_TEXT,
XML_NO_TEXT_NODE,
XML_ERROR_COUNT
};
/*
Utility functionality.
*/
class TINYXML2_LIB XMLUtil
{
public:
static const char* SkipWhiteSpace( const char* p, int* curLineNumPtr ) {
TIXMLASSERT( p );
while( IsWhiteSpace(*p) ) {
if (curLineNumPtr && *p == '\n') {
++(*curLineNumPtr);
}
++p;
}
TIXMLASSERT( p );
return p;
}
static char* SkipWhiteSpace( char* p, int* curLineNumPtr ) {
return const_cast<char*>( SkipWhiteSpace( const_cast<const char*>(p), curLineNumPtr ) );
}
// Anything in the high order range of UTF-8 is assumed to not be whitespace. This isn't
// correct, but simple, and usually works.
static bool IsWhiteSpace( char p ) {
return !IsUTF8Continuation(p) && isspace( static_cast<unsigned char>(p) );
}
inline static bool IsNameStartChar( unsigned char ch ) {
if ( ch >= 128 ) {
// This is a heuristic guess in attempt to not implement Unicode-aware isalpha()
return true;
}
if ( isalpha( ch ) ) {
return true;
}
return ch == ':' || ch == '_';
}
inline static bool IsNameChar( unsigned char ch ) {
return IsNameStartChar( ch )
|| isdigit( ch )
|| ch == '.'
|| ch == '-';
}
inline static bool StringEqual( const char* p, const char* q, int nChar=INT_MAX ) {
if ( p == q ) {
return true;
}
TIXMLASSERT( p );
TIXMLASSERT( q );
TIXMLASSERT( nChar >= 0 );
return strncmp( p, q, nChar ) == 0;
}
inline static bool IsUTF8Continuation( char p ) {
return ( p & 0x80 ) != 0;
}
static const char* ReadBOM( const char* p, bool* hasBOM );
// p is the starting location,
// the UTF-8 value of the entity will be placed in value, and length filled in.
static const char* GetCharacterRef( const char* p, char* value, int* length );
static void ConvertUTF32ToUTF8( unsigned long input, char* output, int* length );
// converts primitive types to strings
static void ToStr( int v, char* buffer, int bufferSize );
static void ToStr( unsigned v, char* buffer, int bufferSize );
static void ToStr( bool v, char* buffer, int bufferSize );
static void ToStr( float v, char* buffer, int bufferSize );
static void ToStr( double v, char* buffer, int bufferSize );
static void ToStr(int64_t v, char* buffer, int bufferSize);
// converts strings to primitive types
static bool ToInt( const char* str, int* value );
static bool ToUnsigned( const char* str, unsigned* value );
static bool ToBool( const char* str, bool* value );
static bool ToFloat( const char* str, float* value );
static bool ToDouble( const char* str, double* value );
static bool ToInt64(const char* str, int64_t* value);
// Changes what is serialized for a boolean value.
// Default to "true" and "false". Shouldn't be changed
// unless you have a special testing or compatibility need.
// Be careful: static, global, & not thread safe.
// Be sure to set static const memory as parameters.
static void SetBoolSerialization(const char* writeTrue, const char* writeFalse);
private:
static const char* writeBoolTrue;
static const char* writeBoolFalse;
};
/** XMLNode is a base class for every object that is in the
XML Document Object Model (DOM), except XMLAttributes.
Nodes have siblings, a parent, and children which can
be navigated. A node is always in a XMLDocument.
The type of a XMLNode can be queried, and it can
be cast to its more defined type.
A XMLDocument allocates memory for all its Nodes.
When the XMLDocument gets deleted, all its Nodes
will also be deleted.
@verbatim
A Document can contain: Element (container or leaf)
Comment (leaf)
Unknown (leaf)
Declaration( leaf )
An Element can contain: Element (container or leaf)
Text (leaf)
Attributes (not on tree)
Comment (leaf)
Unknown (leaf)
@endverbatim
*/
class TINYXML2_LIB XMLNode
{
friend class XMLDocument;
friend class XMLElement;
public:
/// Get the XMLDocument that owns this XMLNode.
const XMLDocument* GetDocument() const {
TIXMLASSERT( _document );
return _document;
}
/// Get the XMLDocument that owns this XMLNode.
XMLDocument* GetDocument() {
TIXMLASSERT( _document );
return _document;
}
/// Safely cast to an Element, or null.
virtual XMLElement* ToElement() {
return 0;
}
/// Safely cast to Text, or null.
virtual XMLText* ToText() {
return 0;
}
/// Safely cast to a Comment, or null.
virtual XMLComment* ToComment() {
return 0;
}
/// Safely cast to a Document, or null.
virtual XMLDocument* ToDocument() {
return 0;
}
/// Safely cast to a Declaration, or null.
virtual XMLDeclaration* ToDeclaration() {
return 0;
}
/// Safely cast to an Unknown, or null.
virtual XMLUnknown* ToUnknown() {
return 0;
}
virtual const XMLElement* ToElement() const {
return 0;
}
virtual const XMLText* ToText() const {
return 0;
}
virtual const XMLComment* ToComment() const {
return 0;
}
virtual const XMLDocument* ToDocument() const {
return 0;
}
virtual const XMLDeclaration* ToDeclaration() const {
return 0;
}
virtual const XMLUnknown* ToUnknown() const {
return 0;
}
/** The meaning of 'value' changes for the specific type.
@verbatim
Document: empty (NULL is returned, not an empty string)
Element: name of the element
Comment: the comment text
Unknown: the tag contents
Text: the text string
@endverbatim
*/
const char* Value() const;
/** Set the Value of an XML node.
@sa Value()
*/
void SetValue( const char* val, bool staticMem=false );
/// Gets the line number the node is in, if the document was parsed from a file.
int GetLineNum() const { return _parseLineNum; }
/// Get the parent of this node on the DOM.
const XMLNode* Parent() const {
return _parent;
}
XMLNode* Parent() {
return _parent;
}
/// Returns true if this node has no children.
bool NoChildren() const {
return !_firstChild;
}
/// Get the first child node, or null if none exists.
const XMLNode* FirstChild() const {
return _firstChild;
}
XMLNode* FirstChild() {
return _firstChild;
}
/** Get the first child element, or optionally the first child
element with the specified name.
*/
const XMLElement* FirstChildElement( const char* name = 0 ) const;
XMLElement* FirstChildElement( const char* name = 0 ) {
return const_cast<XMLElement*>(const_cast<const XMLNode*>(this)->FirstChildElement( name ));
}
/// Get the last child node, or null if none exists.
const XMLNode* LastChild() const {
return _lastChild;
}
XMLNode* LastChild() {
return _lastChild;
}
/** Get the last child element or optionally the last child
element with the specified name.
*/
const XMLElement* LastChildElement( const char* name = 0 ) const;
XMLElement* LastChildElement( const char* name = 0 ) {
return const_cast<XMLElement*>(const_cast<const XMLNode*>(this)->LastChildElement(name) );
}
/// Get the previous (left) sibling node of this node.
const XMLNode* PreviousSibling() const {
return _prev;
}
XMLNode* PreviousSibling() {
return _prev;
}
/// Get the previous (left) sibling element of this node, with an optionally supplied name.
const XMLElement* PreviousSiblingElement( const char* name = 0 ) const ;
XMLElement* PreviousSiblingElement( const char* name = 0 ) {
return const_cast<XMLElement*>(const_cast<const XMLNode*>(this)->PreviousSiblingElement( name ) );
}
/// Get the next (right) sibling node of this node.
const XMLNode* NextSibling() const {
return _next;
}
XMLNode* NextSibling() {
return _next;
}
/// Get the next (right) sibling element of this node, with an optionally supplied name.
const XMLElement* NextSiblingElement( const char* name = 0 ) const;
XMLElement* NextSiblingElement( const char* name = 0 ) {
return const_cast<XMLElement*>(const_cast<const XMLNode*>(this)->NextSiblingElement( name ) );
}
/**
Add a child node as the last (right) child.
If the child node is already part of the document,
it is moved from its old location to the new location.
Returns the addThis argument or 0 if the node does not
belong to the same document.
*/
XMLNode* InsertEndChild( XMLNode* addThis );
XMLNode* LinkEndChild( XMLNode* addThis ) {
return InsertEndChild( addThis );
}
/**
Add a child node as the first (left) child.
If the child node is already part of the document,
it is moved from its old location to the new location.
Returns the addThis argument or 0 if the node does not
belong to the same document.
*/
XMLNode* InsertFirstChild( XMLNode* addThis );
/**
Add a node after the specified child node.
If the child node is already part of the document,
it is moved from its old location to the new location.
Returns the addThis argument or 0 if the afterThis node
is not a child of this node, or if the node does not
belong to the same document.
*/
XMLNode* InsertAfterChild( XMLNode* afterThis, XMLNode* addThis );
/**
Delete all the children of this node.
*/
void DeleteChildren();
/**
Delete a child of this node.
*/
void DeleteChild( XMLNode* node );
/**
Make a copy of this node, but not its children.
You may pass in a Document pointer that will be
the owner of the new Node. If the 'document' is
null, then the node returned will be allocated
from the current Document. (this->GetDocument())
Note: if called on a XMLDocument, this will return null.
*/
virtual XMLNode* ShallowClone( XMLDocument* document ) const = 0;
/**
Test if 2 nodes are the same, but don't test children.
The 2 nodes do not need to be in the same Document.
Note: if called on a XMLDocument, this will return false.
*/
virtual bool ShallowEqual( const XMLNode* compare ) const = 0;
/** Accept a hierarchical visit of the nodes in the TinyXML-2 DOM. Every node in the
XML tree will be conditionally visited and the host will be called back
via the XMLVisitor interface.
This is essentially a SAX interface for TinyXML-2. (Note however it doesn't re-parse
the XML for the callbacks, so the performance of TinyXML-2 is unchanged by using this
interface versus any other.)
The interface has been based on ideas from:
- http://www.saxproject.org/
- http://c2.com/cgi/wiki?HierarchicalVisitorPattern
Which are both good references for "visiting".
An example of using Accept():
@verbatim
XMLPrinter printer;
tinyxmlDoc.Accept( &printer );
const char* xmlcstr = printer.CStr();
@endverbatim
*/
virtual bool Accept( XMLVisitor* visitor ) const = 0;
/**
Set user data into the XMLNode. TinyXML-2 in
no way processes or interprets user data.
It is initially 0.
*/
void SetUserData(void* userData) { _userData = userData; }
/**
Get user data set into the XMLNode. TinyXML-2 in
no way processes or interprets user data.
It is initially 0.
*/
void* GetUserData() const { return _userData; }
protected:
XMLNode( XMLDocument* );
virtual ~XMLNode();
virtual char* ParseDeep( char*, StrPair*, int* );
XMLDocument* _document;
XMLNode* _parent;
mutable StrPair _value;
int _parseLineNum;
XMLNode* _firstChild;
XMLNode* _lastChild;
XMLNode* _prev;
XMLNode* _next;
void* _userData;
private:
MemPool* _memPool;
void Unlink( XMLNode* child );
static void DeleteNode( XMLNode* node );
void InsertChildPreamble( XMLNode* insertThis ) const;
const XMLElement* ToElementWithName( const char* name ) const;
XMLNode( const XMLNode& ); // not supported
XMLNode& operator=( const XMLNode& ); // not supported
};
/** XML text.
Note that a text node can have child element nodes, for example:
@verbatim
<root>This is <b>bold</b></root>
@endverbatim
A text node can have 2 ways to output the next. "normal" output
and CDATA. It will default to the mode it was parsed from the XML file and
you generally want to leave it alone, but you can change the output mode with
SetCData() and query it with CData().
*/
class TINYXML2_LIB XMLText : public XMLNode
{
friend class XMLDocument;
public:
virtual bool Accept( XMLVisitor* visitor ) const;
virtual XMLText* ToText() {
return this;
}
virtual const XMLText* ToText() const {
return this;
}
/// Declare whether this should be CDATA or standard text.
void SetCData( bool isCData ) {
_isCData = isCData;
}
/// Returns true if this is a CDATA text element.
bool CData() const {
return _isCData;
}
virtual XMLNode* ShallowClone( XMLDocument* document ) const;
virtual bool ShallowEqual( const XMLNode* compare ) const;
protected:
XMLText( XMLDocument* doc ) : XMLNode( doc ), _isCData( false ) {}
virtual ~XMLText() {}
char* ParseDeep( char*, StrPair* endTag, int* curLineNumPtr );
private:
bool _isCData;
XMLText( const XMLText& ); // not supported
XMLText& operator=( const XMLText& ); // not supported
};
/** An XML Comment. */
class TINYXML2_LIB XMLComment : public XMLNode
{
friend class XMLDocument;
public:
virtual XMLComment* ToComment() {
return this;
}
virtual const XMLComment* ToComment() const {
return this;
}
virtual bool Accept( XMLVisitor* visitor ) const;
virtual XMLNode* ShallowClone( XMLDocument* document ) const;
virtual bool ShallowEqual( const XMLNode* compare ) const;
protected:
XMLComment( XMLDocument* doc );
virtual ~XMLComment();
char* ParseDeep( char*, StrPair* endTag, int* curLineNumPtr);
private:
XMLComment( const XMLComment& ); // not supported
XMLComment& operator=( const XMLComment& ); // not supported
};
/** In correct XML the declaration is the first entry in the file.
@verbatim
<?xml version="1.0" standalone="yes"?>
@endverbatim
TinyXML-2 will happily read or write files without a declaration,
however.
The text of the declaration isn't interpreted. It is parsed
and written as a string.
*/
class TINYXML2_LIB XMLDeclaration : public XMLNode
{
friend class XMLDocument;
public:
virtual XMLDeclaration* ToDeclaration() {
return this;
}
virtual const XMLDeclaration* ToDeclaration() const {
return this;
}
virtual bool Accept( XMLVisitor* visitor ) const;
virtual XMLNode* ShallowClone( XMLDocument* document ) const;
virtual bool ShallowEqual( const XMLNode* compare ) const;
protected:
XMLDeclaration( XMLDocument* doc );
virtual ~XMLDeclaration();
char* ParseDeep( char*, StrPair* endTag, int* curLineNumPtr );
private:
XMLDeclaration( const XMLDeclaration& ); // not supported
XMLDeclaration& operator=( const XMLDeclaration& ); // not supported
};
/** Any tag that TinyXML-2 doesn't recognize is saved as an
unknown. It is a tag of text, but should not be modified.
It will be written back to the XML, unchanged, when the file
is saved.
DTD tags get thrown into XMLUnknowns.
*/
class TINYXML2_LIB XMLUnknown : public XMLNode
{
friend class XMLDocument;
public:
virtual XMLUnknown* ToUnknown() {
return this;
}
virtual const XMLUnknown* ToUnknown() const {
return this;
}
virtual bool Accept( XMLVisitor* visitor ) const;
virtual XMLNode* ShallowClone( XMLDocument* document ) const;
virtual bool ShallowEqual( const XMLNode* compare ) const;
protected:
XMLUnknown( XMLDocument* doc );
virtual ~XMLUnknown();
char* ParseDeep( char*, StrPair* endTag, int* curLineNumPtr );
private:
XMLUnknown( const XMLUnknown& ); // not supported
XMLUnknown& operator=( const XMLUnknown& ); // not supported
};
/** An attribute is a name-value pair. Elements have an arbitrary
number of attributes, each with a unique name.
@note The attributes are not XMLNodes. You may only query the
Next() attribute in a list.
*/
class TINYXML2_LIB XMLAttribute
{
friend class XMLElement;
public:
/// The name of the attribute.
const char* Name() const;
/// The value of the attribute.
const char* Value() const;
/// Gets the line number the attribute is in, if the document was parsed from a file.
int GetLineNum() const { return _parseLineNum; }
/// The next attribute in the list.
const XMLAttribute* Next() const {
return _next;
}
/** IntValue interprets the attribute as an integer, and returns the value.
If the value isn't an integer, 0 will be returned. There is no error checking;
use QueryIntValue() if you need error checking.
*/
int IntValue() const {
int i = 0;
QueryIntValue(&i);
return i;
}
int64_t Int64Value() const {
int64_t i = 0;
QueryInt64Value(&i);
return i;
}
/// Query as an unsigned integer. See IntValue()
unsigned UnsignedValue() const {
unsigned i=0;
QueryUnsignedValue( &i );
return i;
}
/// Query as a boolean. See IntValue()
bool BoolValue() const {
bool b=false;
QueryBoolValue( &b );
return b;
}
/// Query as a double. See IntValue()
double DoubleValue() const {
double d=0;
QueryDoubleValue( &d );
return d;
}
/// Query as a float. See IntValue()
float FloatValue() const {
float f=0;
QueryFloatValue( &f );
return f;
}
/** QueryIntValue interprets the attribute as an integer, and returns the value
in the provided parameter. The function will return XML_SUCCESS on success,
and XML_WRONG_ATTRIBUTE_TYPE if the conversion is not successful.
*/
XMLError QueryIntValue( int* value ) const;
/// See QueryIntValue
XMLError QueryUnsignedValue( unsigned int* value ) const;
/// See QueryIntValue
XMLError QueryInt64Value(int64_t* value) const;
/// See QueryIntValue
XMLError QueryBoolValue( bool* value ) const;
/// See QueryIntValue
XMLError QueryDoubleValue( double* value ) const;
/// See QueryIntValue
XMLError QueryFloatValue( float* value ) const;
/// Set the attribute to a string value.
void SetAttribute( const char* value );
/// Set the attribute to value.
void SetAttribute( int value );
/// Set the attribute to value.
void SetAttribute( unsigned value );
/// Set the attribute to value.
void SetAttribute(int64_t value);
/// Set the attribute to value.
void SetAttribute( bool value );
/// Set the attribute to value.
void SetAttribute( double value );
/// Set the attribute to value.
void SetAttribute( float value );
private:
enum { BUF_SIZE = 200 };
XMLAttribute() : _parseLineNum( 0 ), _next( 0 ), _memPool( 0 ) {}
virtual ~XMLAttribute() {}
XMLAttribute( const XMLAttribute& ); // not supported
void operator=( const XMLAttribute& ); // not supported
void SetName( const char* name );
char* ParseDeep( char* p, bool processEntities, int* curLineNumPtr );
mutable StrPair _name;
mutable StrPair _value;
int _parseLineNum;
XMLAttribute* _next;
MemPool* _memPool;
};
/** The element is a container class. It has a value, the element name,
and can contain other elements, text, comments, and unknowns.
Elements also contain an arbitrary number of attributes.
*/
class TINYXML2_LIB XMLElement : public XMLNode
{
friend class XMLDocument;
public:
/// Get the name of an element (which is the Value() of the node.)
const char* Name() const {
return Value();
}
/// Set the name of the element.
void SetName( const char* str, bool staticMem=false ) {
SetValue( str, staticMem );
}
virtual XMLElement* ToElement() {
return this;
}
virtual const XMLElement* ToElement() const {
return this;
}
virtual bool Accept( XMLVisitor* visitor ) const;
/** Given an attribute name, Attribute() returns the value
for the attribute of that name, or null if none
exists. For example:
@verbatim
const char* value = ele->Attribute( "foo" );
@endverbatim
The 'value' parameter is normally null. However, if specified,
the attribute will only be returned if the 'name' and 'value'
match. This allow you to write code:
@verbatim
if ( ele->Attribute( "foo", "bar" ) ) callFooIsBar();
@endverbatim
rather than:
@verbatim
if ( ele->Attribute( "foo" ) ) {
if ( strcmp( ele->Attribute( "foo" ), "bar" ) == 0 ) callFooIsBar();
}
@endverbatim
*/
const char* Attribute( const char* name, const char* value=0 ) const;
/** Given an attribute name, IntAttribute() returns the value
of the attribute interpreted as an integer. The default
value will be returned if the attribute isn't present,
or if there is an error. (For a method with error
checking, see QueryIntAttribute()).
*/
int IntAttribute(const char* name, int defaultValue = 0) const;
/// See IntAttribute()
unsigned UnsignedAttribute(const char* name, unsigned defaultValue = 0) const;
/// See IntAttribute()
int64_t Int64Attribute(const char* name, int64_t defaultValue = 0) const;
/// See IntAttribute()
bool BoolAttribute(const char* name, bool defaultValue = false) const;
/// See IntAttribute()
double DoubleAttribute(const char* name, double defaultValue = 0) const;
/// See IntAttribute()
float FloatAttribute(const char* name, float defaultValue = 0) const;
/** Given an attribute name, QueryIntAttribute() returns
XML_SUCCESS, XML_WRONG_ATTRIBUTE_TYPE if the conversion
can't be performed, or XML_NO_ATTRIBUTE if the attribute
doesn't exist. If successful, the result of the conversion
will be written to 'value'. If not successful, nothing will
be written to 'value'. This allows you to provide default
value:
@verbatim
int value = 10;
QueryIntAttribute( "foo", &value ); // if "foo" isn't found, value will still be 10
@endverbatim
*/
XMLError QueryIntAttribute( const char* name, int* value ) const {
const XMLAttribute* a = FindAttribute( name );
if ( !a ) {
return XML_NO_ATTRIBUTE;
}
return a->QueryIntValue( value );
}
/// See QueryIntAttribute()
XMLError QueryUnsignedAttribute( const char* name, unsigned int* value ) const {
const XMLAttribute* a = FindAttribute( name );
if ( !a ) {
return XML_NO_ATTRIBUTE;
}
return a->QueryUnsignedValue( value );
}
/// See QueryIntAttribute()
XMLError QueryInt64Attribute(const char* name, int64_t* value) const {
const XMLAttribute* a = FindAttribute(name);
if (!a) {
return XML_NO_ATTRIBUTE;
}
return a->QueryInt64Value(value);
}
/// See QueryIntAttribute()
XMLError QueryBoolAttribute( const char* name, bool* value ) const {
const XMLAttribute* a = FindAttribute( name );
if ( !a ) {
return XML_NO_ATTRIBUTE;
}
return a->QueryBoolValue( value );
}
/// See QueryIntAttribute()
XMLError QueryDoubleAttribute( const char* name, double* value ) const {
const XMLAttribute* a = FindAttribute( name );
if ( !a ) {
return XML_NO_ATTRIBUTE;
}
return a->QueryDoubleValue( value );
}
/// See QueryIntAttribute()
XMLError QueryFloatAttribute( const char* name, float* value ) const {
const XMLAttribute* a = FindAttribute( name );
if ( !a ) {
return XML_NO_ATTRIBUTE;
}
return a->QueryFloatValue( value );
}
/** Given an attribute name, QueryAttribute() returns
XML_SUCCESS, XML_WRONG_ATTRIBUTE_TYPE if the conversion
can't be performed, or XML_NO_ATTRIBUTE if the attribute
doesn't exist. It is overloaded for the primitive types,
and is a generally more convenient replacement of
QueryIntAttribute() and related functions.
If successful, the result of the conversion
will be written to 'value'. If not successful, nothing will
be written to 'value'. This allows you to provide default
value:
@verbatim
int value = 10;
QueryAttribute( "foo", &value ); // if "foo" isn't found, value will still be 10
@endverbatim
*/
int QueryAttribute( const char* name, int* value ) const {
return QueryIntAttribute( name, value );
}
int QueryAttribute( const char* name, unsigned int* value ) const {
return QueryUnsignedAttribute( name, value );
}
int QueryAttribute(const char* name, int64_t* value) const {
return QueryInt64Attribute(name, value);
}
int QueryAttribute( const char* name, bool* value ) const {
return QueryBoolAttribute( name, value );
}
int QueryAttribute( const char* name, double* value ) const {
return QueryDoubleAttribute( name, value );
}
int QueryAttribute( const char* name, float* value ) const {
return QueryFloatAttribute( name, value );
}
/// Sets the named attribute to value.
void SetAttribute( const char* name, const char* value ) {
XMLAttribute* a = FindOrCreateAttribute( name );
a->SetAttribute( value );
}
/// Sets the named attribute to value.
void SetAttribute( const char* name, int value ) {
XMLAttribute* a = FindOrCreateAttribute( name );
a->SetAttribute( value );
}
/// Sets the named attribute to value.
void SetAttribute( const char* name, unsigned value ) {
XMLAttribute* a = FindOrCreateAttribute( name );
a->SetAttribute( value );
}
/// Sets the named attribute to value.
void SetAttribute(const char* name, int64_t value) {
XMLAttribute* a = FindOrCreateAttribute(name);
a->SetAttribute(value);
}
/// Sets the named attribute to value.
void SetAttribute( const char* name, bool value ) {
XMLAttribute* a = FindOrCreateAttribute( name );
a->SetAttribute( value );
}
/// Sets the named attribute to value.
void SetAttribute( const char* name, double value ) {
XMLAttribute* a = FindOrCreateAttribute( name );
a->SetAttribute( value );
}
/// Sets the named attribute to value.
void SetAttribute( const char* name, float value ) {
XMLAttribute* a = FindOrCreateAttribute( name );
a->SetAttribute( value );
}
/**
Delete an attribute.
*/
void DeleteAttribute( const char* name );
/// Return the first attribute in the list.
const XMLAttribute* FirstAttribute() const {
return _rootAttribute;
}
/// Query a specific attribute in the list.
const XMLAttribute* FindAttribute( const char* name ) const;
/** Convenience function for easy access to the text inside an element. Although easy
and concise, GetText() is limited compared to getting the XMLText child
and accessing it directly.
If the first child of 'this' is a XMLText, the GetText()
returns the character string of the Text node, else null is returned.
This is a convenient method for getting the text of simple contained text:
@verbatim
<foo>This is text</foo>
const char* str = fooElement->GetText();
@endverbatim
'str' will be a pointer to "This is text".
Note that this function can be misleading. If the element foo was created from
this XML:
@verbatim
<foo><b>This is text</b></foo>
@endverbatim
then the value of str would be null. The first child node isn't a text node, it is
another element. From this XML:
@verbatim
<foo>This is <b>text</b></foo>
@endverbatim
GetText() will return "This is ".
*/
const char* GetText() const;
/** Convenience function for easy access to the text inside an element. Although easy
and concise, SetText() is limited compared to creating an XMLText child
and mutating it directly.
If the first child of 'this' is a XMLText, SetText() sets its value to
the given string, otherwise it will create a first child that is an XMLText.
This is a convenient method for setting the text of simple contained text:
@verbatim
<foo>This is text</foo>
fooElement->SetText( "Hullaballoo!" );
<foo>Hullaballoo!</foo>
@endverbatim
Note that this function can be misleading. If the element foo was created from
this XML:
@verbatim
<foo><b>This is text</b></foo>
@endverbatim
then it will not change "This is text", but rather prefix it with a text element:
@verbatim
<foo>Hullaballoo!<b>This is text</b></foo>
@endverbatim
For this XML:
@verbatim
<foo />
@endverbatim
SetText() will generate
@verbatim
<foo>Hullaballoo!</foo>
@endverbatim
*/
void SetText( const char* inText );
/// Convenience method for setting text inside an element. See SetText() for important limitations.
void SetText( int value );
/// Convenience method for setting text inside an element. See SetText() for important limitations.
void SetText( unsigned value );
/// Convenience method for setting text inside an element. See SetText() for important limitations.
void SetText(int64_t value);
/// Convenience method for setting text inside an element. See SetText() for important limitations.
void SetText( bool value );
/// Convenience method for setting text inside an element. See SetText() for important limitations.
void SetText( double value );
/// Convenience method for setting text inside an element. See SetText() for important limitations.
void SetText( float value );
/**
Convenience method to query the value of a child text node. This is probably best
shown by example. Given you have a document is this form:
@verbatim
<point>
<x>1</x>
<y>1.4</y>
</point>
@endverbatim
The QueryIntText() and similar functions provide a safe and easier way to get to the
"value" of x and y.
@verbatim
int x = 0;
float y = 0; // types of x and y are contrived for example
const XMLElement* xElement = pointElement->FirstChildElement( "x" );
const XMLElement* yElement = pointElement->FirstChildElement( "y" );
xElement->QueryIntText( &x );
yElement->QueryFloatText( &y );
@endverbatim
@returns XML_SUCCESS (0) on success, XML_CAN_NOT_CONVERT_TEXT if the text cannot be converted
to the requested type, and XML_NO_TEXT_NODE if there is no child text to query.
*/
XMLError QueryIntText( int* ival ) const;
/// See QueryIntText()
XMLError QueryUnsignedText( unsigned* uval ) const;
/// See QueryIntText()
XMLError QueryInt64Text(int64_t* uval) const;
/// See QueryIntText()
XMLError QueryBoolText( bool* bval ) const;
/// See QueryIntText()
XMLError QueryDoubleText( double* dval ) const;
/// See QueryIntText()
XMLError QueryFloatText( float* fval ) const;
int IntText(int defaultValue = 0) const;
/// See QueryIntText()
unsigned UnsignedText(unsigned defaultValue = 0) const;
/// See QueryIntText()
int64_t Int64Text(int64_t defaultValue = 0) const;
/// See QueryIntText()
bool BoolText(bool defaultValue = false) const;
/// See QueryIntText()
double DoubleText(double defaultValue = 0) const;
/// See QueryIntText()
float FloatText(float defaultValue = 0) const;
// internal:
enum ElementClosingType {
OPEN, // <foo>
CLOSED, // <foo/>
CLOSING // </foo>
};
ElementClosingType ClosingType() const {
return _closingType;
}
virtual XMLNode* ShallowClone( XMLDocument* document ) const;
virtual bool ShallowEqual( const XMLNode* compare ) const;
protected:
char* ParseDeep( char* p, StrPair* endTag, int* curLineNumPtr );
private:
XMLElement( XMLDocument* doc );
virtual ~XMLElement();
XMLElement( const XMLElement& ); // not supported
void operator=( const XMLElement& ); // not supported
XMLAttribute* FindAttribute( const char* name ) {
return const_cast<XMLAttribute*>(const_cast<const XMLElement*>(this)->FindAttribute( name ));
}
XMLAttribute* FindOrCreateAttribute( const char* name );
//void LinkAttribute( XMLAttribute* attrib );
char* ParseAttributes( char* p, int* curLineNumPtr );
static void DeleteAttribute( XMLAttribute* attribute );
XMLAttribute* CreateAttribute();
enum { BUF_SIZE = 200 };
ElementClosingType _closingType;
// The attribute list is ordered; there is no 'lastAttribute'
// because the list needs to be scanned for dupes before adding
// a new attribute.
XMLAttribute* _rootAttribute;
};
enum Whitespace {
PRESERVE_WHITESPACE,
COLLAPSE_WHITESPACE
};
/** A Document binds together all the functionality.
It can be saved, loaded, and printed to the screen.
All Nodes are connected and allocated to a Document.
If the Document is deleted, all its Nodes are also deleted.
*/
class TINYXML2_LIB XMLDocument : public XMLNode
{
friend class XMLElement;
public:
/// constructor
XMLDocument( bool processEntities = true, Whitespace whitespaceMode = PRESERVE_WHITESPACE );
~XMLDocument();
virtual XMLDocument* ToDocument() {
TIXMLASSERT( this == _document );
return this;
}
virtual const XMLDocument* ToDocument() const {
TIXMLASSERT( this == _document );
return this;
}
/**
Parse an XML file from a character string.
Returns XML_SUCCESS (0) on success, or
an errorID.
You may optionally pass in the 'nBytes', which is
the number of bytes which will be parsed. If not
specified, TinyXML-2 will assume 'xml' points to a
null terminated string.
*/
XMLError Parse( const char* xml, size_t nBytes=(size_t)(-1) );
/**
Load an XML file from disk.
Returns XML_SUCCESS (0) on success, or
an errorID.
*/
XMLError LoadFile( const char* filename );
/**
Load an XML file from disk. You are responsible
for providing and closing the FILE*.
NOTE: The file should be opened as binary ("rb")
not text in order for TinyXML-2 to correctly
do newline normalization.
Returns XML_SUCCESS (0) on success, or
an errorID.
*/
XMLError LoadFile( FILE* );
/**
Save the XML file to disk.
Returns XML_SUCCESS (0) on success, or
an errorID.
*/
XMLError SaveFile( const char* filename, bool compact = false );
/**
Save the XML file to disk. You are responsible
for providing and closing the FILE*.
Returns XML_SUCCESS (0) on success, or
an errorID.
*/
XMLError SaveFile( FILE* fp, bool compact = false );
bool ProcessEntities() const {
return _processEntities;
}
Whitespace WhitespaceMode() const {
return _whitespaceMode;
}
/**
Returns true if this document has a leading Byte Order Mark of UTF8.
*/
bool HasBOM() const {
return _writeBOM;
}
/** Sets whether to write the BOM when writing the file.
*/
void SetBOM( bool useBOM ) {
_writeBOM = useBOM;
}
/** Return the root element of DOM. Equivalent to FirstChildElement().
To get the first node, use FirstChild().
*/
XMLElement* RootElement() {
return FirstChildElement();
}
const XMLElement* RootElement() const {
return FirstChildElement();
}
/** Print the Document. If the Printer is not provided, it will
print to stdout. If you provide Printer, this can print to a file:
@verbatim
XMLPrinter printer( fp );
doc.Print( &printer );
@endverbatim
Or you can use a printer to print to memory:
@verbatim
XMLPrinter printer;
doc.Print( &printer );
// printer.CStr() has a const char* to the XML
@endverbatim
*/
void Print( XMLPrinter* streamer=0 ) const;
virtual bool Accept( XMLVisitor* visitor ) const;
/**
Create a new Element associated with
this Document. The memory for the Element
is managed by the Document.
*/
XMLElement* NewElement( const char* name );
/**
Create a new Comment associated with
this Document. The memory for the Comment
is managed by the Document.
*/
XMLComment* NewComment( const char* comment );
/**
Create a new Text associated with
this Document. The memory for the Text
is managed by the Document.
*/
XMLText* NewText( const char* text );
/**
Create a new Declaration associated with
this Document. The memory for the object
is managed by the Document.
If the 'text' param is null, the standard
declaration is used.:
@verbatim
<?xml version="1.0" encoding="UTF-8"?>
@endverbatim
*/
XMLDeclaration* NewDeclaration( const char* text=0 );
/**
Create a new Unknown associated with
this Document. The memory for the object
is managed by the Document.
*/
XMLUnknown* NewUnknown( const char* text );
/**
Delete a node associated with this document.
It will be unlinked from the DOM.
*/
void DeleteNode( XMLNode* node );
void SetError( XMLError error, const char* str1, const char* str2, int lineNum );
void ClearError() {
SetError(XML_SUCCESS, 0, 0, 0);
}
/// Return true if there was an error parsing the document.
bool Error() const {
return _errorID != XML_SUCCESS;
}
/// Return the errorID.
XMLError ErrorID() const {
return _errorID;
}
const char* ErrorName() const;
static const char* ErrorIDToName(XMLError errorID);
/// Return a possibly helpful diagnostic location or string.
const char* GetErrorStr1() const {
return _errorStr1.GetStr();
}
/// Return a possibly helpful secondary diagnostic location or string.
const char* GetErrorStr2() const {
return _errorStr2.GetStr();
}
/// Return the line where the error occured, or zero if unknown.
int GetErrorLineNum() const
{
return _errorLineNum;
}
/// If there is an error, print it to stdout.
void PrintError() const;
/// Clear the document, resetting it to the initial state.
void Clear();
// internal
char* Identify( char* p, XMLNode** node );
virtual XMLNode* ShallowClone( XMLDocument* /*document*/ ) const {
return 0;
}
virtual bool ShallowEqual( const XMLNode* /*compare*/ ) const {
return false;
}
private:
XMLDocument( const XMLDocument& ); // not supported
void operator=( const XMLDocument& ); // not supported
bool _writeBOM;
bool _processEntities;
XMLError _errorID;
Whitespace _whitespaceMode;
mutable StrPair _errorStr1;
mutable StrPair _errorStr2;
int _errorLineNum;
char* _charBuffer;
int _parseCurLineNum;
MemPoolT< sizeof(XMLElement) > _elementPool;
MemPoolT< sizeof(XMLAttribute) > _attributePool;
MemPoolT< sizeof(XMLText) > _textPool;
MemPoolT< sizeof(XMLComment) > _commentPool;
static const char* _errorNames[XML_ERROR_COUNT];
void Parse();
template<class NodeType, int PoolElementSize>
NodeType* CreateUnlinkedNode( MemPoolT<PoolElementSize>& pool );
};
template<class NodeType, int PoolElementSize>
inline NodeType* XMLDocument::CreateUnlinkedNode( MemPoolT<PoolElementSize>& pool )
{
TIXMLASSERT( sizeof( NodeType ) == PoolElementSize );
TIXMLASSERT( sizeof( NodeType ) == pool.ItemSize() );
NodeType* returnNode = new (pool.Alloc()) NodeType( this );
TIXMLASSERT( returnNode );
returnNode->_memPool = &pool;
return returnNode;
}
/**
A XMLHandle is a class that wraps a node pointer with null checks; this is
an incredibly useful thing. Note that XMLHandle is not part of the TinyXML-2
DOM structure. It is a separate utility class.
Take an example:
@verbatim
<Document>
<Element attributeA = "valueA">
<Child attributeB = "value1" />
<Child attributeB = "value2" />
</Element>
</Document>
@endverbatim
Assuming you want the value of "attributeB" in the 2nd "Child" element, it's very
easy to write a *lot* of code that looks like:
@verbatim
XMLElement* root = document.FirstChildElement( "Document" );
if ( root )
{
XMLElement* element = root->FirstChildElement( "Element" );
if ( element )
{
XMLElement* child = element->FirstChildElement( "Child" );
if ( child )
{
XMLElement* child2 = child->NextSiblingElement( "Child" );
if ( child2 )
{
// Finally do something useful.
@endverbatim
And that doesn't even cover "else" cases. XMLHandle addresses the verbosity
of such code. A XMLHandle checks for null pointers so it is perfectly safe
and correct to use:
@verbatim
XMLHandle docHandle( &document );
XMLElement* child2 = docHandle.FirstChildElement( "Document" ).FirstChildElement( "Element" ).FirstChildElement().NextSiblingElement();
if ( child2 )
{
// do something useful
@endverbatim
Which is MUCH more concise and useful.
It is also safe to copy handles - internally they are nothing more than node pointers.
@verbatim
XMLHandle handleCopy = handle;
@endverbatim
See also XMLConstHandle, which is the same as XMLHandle, but operates on const objects.
*/
class TINYXML2_LIB XMLHandle
{
public:
/// Create a handle from any node (at any depth of the tree.) This can be a null pointer.
XMLHandle( XMLNode* node ) {
_node = node;
}
/// Create a handle from a node.
XMLHandle( XMLNode& node ) {
_node = &node;
}
/// Copy constructor
XMLHandle( const XMLHandle& ref ) {
_node = ref._node;
}
/// Assignment
XMLHandle& operator=( const XMLHandle& ref ) {
_node = ref._node;
return *this;
}
/// Get the first child of this handle.
XMLHandle FirstChild() {
return XMLHandle( _node ? _node->FirstChild() : 0 );
}
/// Get the first child element of this handle.
XMLHandle FirstChildElement( const char* name = 0 ) {
return XMLHandle( _node ? _node->FirstChildElement( name ) : 0 );
}
/// Get the last child of this handle.
XMLHandle LastChild() {
return XMLHandle( _node ? _node->LastChild() : 0 );
}
/// Get the last child element of this handle.
XMLHandle LastChildElement( const char* name = 0 ) {
return XMLHandle( _node ? _node->LastChildElement( name ) : 0 );
}
/// Get the previous sibling of this handle.
XMLHandle PreviousSibling() {
return XMLHandle( _node ? _node->PreviousSibling() : 0 );
}
/// Get the previous sibling element of this handle.
XMLHandle PreviousSiblingElement( const char* name = 0 ) {
return XMLHandle( _node ? _node->PreviousSiblingElement( name ) : 0 );
}
/// Get the next sibling of this handle.
XMLHandle NextSibling() {
return XMLHandle( _node ? _node->NextSibling() : 0 );
}
/// Get the next sibling element of this handle.
XMLHandle NextSiblingElement( const char* name = 0 ) {
return XMLHandle( _node ? _node->NextSiblingElement( name ) : 0 );
}
/// Safe cast to XMLNode. This can return null.
XMLNode* ToNode() {
return _node;
}
/// Safe cast to XMLElement. This can return null.
XMLElement* ToElement() {
return ( _node ? _node->ToElement() : 0 );
}
/// Safe cast to XMLText. This can return null.
XMLText* ToText() {
return ( _node ? _node->ToText() : 0 );
}
/// Safe cast to XMLUnknown. This can return null.
XMLUnknown* ToUnknown() {
return ( _node ? _node->ToUnknown() : 0 );
}
/// Safe cast to XMLDeclaration. This can return null.
XMLDeclaration* ToDeclaration() {
return ( _node ? _node->ToDeclaration() : 0 );
}
private:
XMLNode* _node;
};
/**
A variant of the XMLHandle class for working with const XMLNodes and Documents. It is the
same in all regards, except for the 'const' qualifiers. See XMLHandle for API.
*/
class TINYXML2_LIB XMLConstHandle
{
public:
XMLConstHandle( const XMLNode* node ) {
_node = node;
}
XMLConstHandle( const XMLNode& node ) {
_node = &node;
}
XMLConstHandle( const XMLConstHandle& ref ) {
_node = ref._node;
}
XMLConstHandle& operator=( const XMLConstHandle& ref ) {
_node = ref._node;
return *this;
}
const XMLConstHandle FirstChild() const {
return XMLConstHandle( _node ? _node->FirstChild() : 0 );
}
const XMLConstHandle FirstChildElement( const char* name = 0 ) const {
return XMLConstHandle( _node ? _node->FirstChildElement( name ) : 0 );
}
const XMLConstHandle LastChild() const {
return XMLConstHandle( _node ? _node->LastChild() : 0 );
}
const XMLConstHandle LastChildElement( const char* name = 0 ) const {
return XMLConstHandle( _node ? _node->LastChildElement( name ) : 0 );
}
const XMLConstHandle PreviousSibling() const {
return XMLConstHandle( _node ? _node->PreviousSibling() : 0 );
}
const XMLConstHandle PreviousSiblingElement( const char* name = 0 ) const {
return XMLConstHandle( _node ? _node->PreviousSiblingElement( name ) : 0 );
}
const XMLConstHandle NextSibling() const {
return XMLConstHandle( _node ? _node->NextSibling() : 0 );
}
const XMLConstHandle NextSiblingElement( const char* name = 0 ) const {
return XMLConstHandle( _node ? _node->NextSiblingElement( name ) : 0 );
}
const XMLNode* ToNode() const {
return _node;
}
const XMLElement* ToElement() const {
return ( _node ? _node->ToElement() : 0 );
}
const XMLText* ToText() const {
return ( _node ? _node->ToText() : 0 );
}
const XMLUnknown* ToUnknown() const {
return ( _node ? _node->ToUnknown() : 0 );
}
const XMLDeclaration* ToDeclaration() const {
return ( _node ? _node->ToDeclaration() : 0 );
}
private:
const XMLNode* _node;
};
/**
Printing functionality. The XMLPrinter gives you more
options than the XMLDocument::Print() method.
It can:
-# Print to memory.
-# Print to a file you provide.
-# Print XML without a XMLDocument.
Print to Memory
@verbatim
XMLPrinter printer;
doc.Print( &printer );
SomeFunction( printer.CStr() );
@endverbatim
Print to a File
You provide the file pointer.
@verbatim
XMLPrinter printer( fp );
doc.Print( &printer );
@endverbatim
Print without a XMLDocument
When loading, an XML parser is very useful. However, sometimes
when saving, it just gets in the way. The code is often set up
for streaming, and constructing the DOM is just overhead.
The Printer supports the streaming case. The following code
prints out a trivially simple XML file without ever creating
an XML document.
@verbatim
XMLPrinter printer( fp );
printer.OpenElement( "foo" );
printer.PushAttribute( "foo", "bar" );
printer.CloseElement();
@endverbatim
*/
class TINYXML2_LIB XMLPrinter : public XMLVisitor
{
public:
/** Construct the printer. If the FILE* is specified,
this will print to the FILE. Else it will print
to memory, and the result is available in CStr().
If 'compact' is set to true, then output is created
with only required whitespace and newlines.
*/
XMLPrinter( FILE* file=0, bool compact = false, int depth = 0 );
virtual ~XMLPrinter() {}
/** If streaming, write the BOM and declaration. */
void PushHeader( bool writeBOM, bool writeDeclaration );
/** If streaming, start writing an element.
The element must be closed with CloseElement()
*/
void OpenElement( const char* name, bool compactMode=false );
/// If streaming, add an attribute to an open element.
void PushAttribute( const char* name, const char* value );
void PushAttribute( const char* name, int value );
void PushAttribute( const char* name, unsigned value );
void PushAttribute(const char* name, int64_t value);
void PushAttribute( const char* name, bool value );
void PushAttribute( const char* name, double value );
/// If streaming, close the Element.
virtual void CloseElement( bool compactMode=false );
/// Add a text node.
void PushText( const char* text, bool cdata=false );
/// Add a text node from an integer.
void PushText( int value );
/// Add a text node from an unsigned.
void PushText( unsigned value );
/// Add a text node from an unsigned.
void PushText(int64_t value);
/// Add a text node from a bool.
void PushText( bool value );
/// Add a text node from a float.
void PushText( float value );
/// Add a text node from a double.
void PushText( double value );
/// Add a comment
void PushComment( const char* comment );
void PushDeclaration( const char* value );
void PushUnknown( const char* value );
virtual bool VisitEnter( const XMLDocument& /*doc*/ );
virtual bool VisitExit( const XMLDocument& /*doc*/ ) {
return true;
}
virtual bool VisitEnter( const XMLElement& element, const XMLAttribute* attribute );
virtual bool VisitExit( const XMLElement& element );
virtual bool Visit( const XMLText& text );
virtual bool Visit( const XMLComment& comment );
virtual bool Visit( const XMLDeclaration& declaration );
virtual bool Visit( const XMLUnknown& unknown );
/**
If in print to memory mode, return a pointer to
the XML file in memory.
*/
const char* CStr() const {
return _buffer.Mem();
}
/**
If in print to memory mode, return the size
of the XML file in memory. (Note the size returned
includes the terminating null.)
*/
int CStrSize() const {
return _buffer.Size();
}
/**
If in print to memory mode, reset the buffer to the
beginning.
*/
void ClearBuffer() {
_buffer.Clear();
_buffer.Push(0);
}
protected:
virtual bool CompactMode( const XMLElement& ) { return _compactMode; }
/** Prints out the space before an element. You may override to change
the space and tabs used. A PrintSpace() override should call Print().
*/
virtual void PrintSpace( int depth );
void Print( const char* format, ... );
void SealElementIfJustOpened();
bool _elementJustOpened;
DynArray< const char*, 10 > _stack;
private:
void PrintString( const char*, bool restrictedEntitySet ); // prints out, after detecting entities.
bool _firstElement;
FILE* _fp;
int _depth;
int _textDepth;
bool _processEntities;
bool _compactMode;
enum {
ENTITY_RANGE = 64,
BUF_SIZE = 200
};
bool _entityFlag[ENTITY_RANGE];
bool _restrictedEntityFlag[ENTITY_RANGE];
DynArray< char, 20 > _buffer;
};
} // tinyxml2
#if defined(_MSC_VER)
# pragma warning(pop)
#endif
#endif // TINYXML2_INCLUDED
| [
"guangyuanchen@163.com"
] | guangyuanchen@163.com |
a2919b294e08280885e80594040cfdb9701f640d | 50b0eb7febe6429aafba33334d9eef6abc85c09e | /algorithm/数据结构/递归/p132 练习题/3-19.cpp | 06fab208845f32908f1927f0a39cb74d1ab7df2f | [] | no_license | newbee-D/code | ec521b2fe00c9c054b08715110550be98b04f0b0 | 9c13e2bb46ecf470d41fb786453f2a2ed4a67ecf | refs/heads/master | 2020-05-20T20:05:46.276396 | 2019-07-02T15:01:31 | 2019-07-02T15:01:31 | 185,736,888 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 193 | cpp | #include<iostream>
using namespace std;
int f(int n)
{
return n==0 || n==1 ? n : n*f(n-1);
}
int main()
{
int n;
while(cin>>n)
{
cout<<f(n)<<endl;
}
return 0;
}
| [
"179294162@qq.com"
] | 179294162@qq.com |
526afd86157af983d41fce2ef4be2a75e46af2da | 4f198fb23951aee7b409c9b0a89344e9190b5488 | /CurlWrapper.cpp | 53b3dc85decd52ea1b629fcb78a6e18c113aca91 | [] | no_license | harshilmathur/CodeRunner | 311017f737d74b19b04451913bf32811c50a3271 | 1221d78e86911cfab7c0239a218b952b215f6612 | refs/heads/master | 2021-01-16T19:53:20.884473 | 2011-11-20T06:43:08 | 2011-11-20T06:43:08 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,400 | cpp | #include "CurlWrapper.h"
size_t CurlWrapper::ContentInVar(void* ptr, size_t size, size_t nmemb, string *stream){
stream -> append((char *)ptr, size * nmemb);
return size*nmemb;
}
size_t CurlWrapper::ContentInFileHTTP(void *ptr, size_t size, size_t nmemb, FILE *stream) {
size_t written;
written = fwrite(ptr, size, nmemb, stream);
return written;
}
size_t CurlWrapper::ContentInFileFTP(void *buffer, size_t size, size_t nmemb, void *stream){
struct FtpFile *out=(struct FtpFile *)stream;
if(out && !out->stream) {
/* open file for writing */
out->stream=fopen(out->filename, "wb");
if(!out->stream)
return -1; /* failure, can't open file to write */
}
return fwrite(buffer, size, nmemb, out->stream);
}
int CurlWrapper::GetFileFromFTP(int FileId){
curl = curl_easy_init();
//string URL, FileName, SavedFileName;
//URL = strcpy( URL_c );
//FileName = strcpy (
char FTPFileURL[100], SavedFileName[100];
sprintf(FTPFileURL, "%s%d.txt", FTPADDRESS, FileId);
sprintf(SavedFileName, "%s%d.txt", FILEPATH, FileId);
struct FtpFile ftpfile={
SavedFileName, /* name to store the file as if succesful */
NULL
};
if(curl) {
curl_easy_setopt(curl, CURLOPT_URL, FTPFileURL);
/* Define our callback to get called when there's data to be written */
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, ContentInFileFTP);
/* Set a pointer to our struct to pass to the callback */
curl_easy_setopt(curl, CURLOPT_WRITEDATA, &ftpfile);
#ifdef FTPUSERNAME
curl_easy_setopt(curl, CURLOPT_USERNAME, FTPUSERNAME);
#endif
#ifdef FTPPASSWORD
curl_easy_setopt(curl, CURLOPT_PASSWORD, FTPPASSWORD);
#endif
/* Switch on full protocol/debug output */
curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L);
res = curl_easy_perform(curl);
curl_easy_cleanup(curl);
if(CURLE_OK != res) {
sprintf(logs, "Failure to fetch file using FTP request. Curl Error code: %d\n", res);
Logs::WriteLine(logs);
return -1;
}
}
sprintf(logs, "File fetched successfully through FTP request.");
Logs::WriteLine(logs);
return 0;
}
int CurlWrapper::GetFileFromHTTP(int FileId){
struct curl_httppost *formpost = NULL;
struct curl_httppost *lastptr = NULL;
struct curl_slist *headerlist = NULL;
static const char buf[] = "Expect: ";
char FILEID[10];
sprintf(FILEID,"%d", FileId);
/* Fill in the POST fields */
curl_formadd( &formpost, &lastptr, CURLFORM_COPYNAME, "username", CURLFORM_COPYCONTENTS, USERNAME, CURLFORM_END);
curl_formadd( &formpost, &lastptr, CURLFORM_COPYNAME, "password", CURLFORM_COPYCONTENTS, PASSWORD, CURLFORM_END);
curl_formadd( &formpost, &lastptr, CURLFORM_COPYNAME, "fileid", CURLFORM_COPYCONTENTS, FILEID, CURLFORM_END);
FILE *fp;
char SavedFileName[FILENAME_MAX];
sprintf(SavedFileName, "%s%d.txt", FILEPATH, FileId);
curl = curl_easy_init();
headerlist = curl_slist_append(headerlist, buf);
if (curl) {
fp = fopen(SavedFileName,"wb");
curl_easy_setopt(curl, CURLOPT_URL, HTTPADDRESS);
curl_easy_setopt(curl, CURLOPT_HTTPPOST, formpost);
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, ContentInFileHTTP);
curl_easy_setopt(curl, CURLOPT_WRITEDATA, fp);
res = curl_easy_perform(curl);
curl_easy_cleanup(curl);
curl_formfree(formpost);
/* free slist */
curl_slist_free_all (headerlist);
fclose(fp);
if(CURLE_OK!=res){
Logs::WriteLine("Failure to fetch file through HTTP request...");
return -1;
}
else{
Logs::WriteLine("File fetched successfully through HTTP request...");
return 0;
}
}
return -1;
}
int CurlWrapper::FetchContentFromWebPage(FileInfoFetchOptionsStruct* FileInfoFetchOptions, string *content){
struct curl_httppost *formpost = NULL;
struct curl_httppost *lastptr = NULL;
struct curl_slist *headerlist = NULL;
static const char buf[] = "Expect: ";
/* Fill in the POST fields */
curl_formadd( &formpost, &lastptr, CURLFORM_COPYNAME, "username", CURLFORM_COPYCONTENTS, USERNAME, CURLFORM_END);
curl_formadd( &formpost, &lastptr, CURLFORM_COPYNAME, "password", CURLFORM_COPYCONTENTS, PASSWORD, CURLFORM_END);
char optstr[11];
if(FileInfoFetchOptions->f){
sprintf(optstr, "%d", FileInfoFetchOptions->FileInfo.FileId);
curl_formadd( &formpost, &lastptr, CURLFORM_COPYNAME, "fileid", CURLFORM_COPYCONTENTS, optstr, CURLFORM_END);
}
if(FileInfoFetchOptions->p){
sprintf(optstr, "%s", FileInfoFetchOptions->FileInfo.ProblemId);
curl_formadd( &formpost, &lastptr, CURLFORM_COPYNAME, "problemid", CURLFORM_COPYCONTENTS, optstr, CURLFORM_END);
}
if(FileInfoFetchOptions->l){
sprintf(optstr, "%s", FileInfoFetchOptions->FileInfo.lang);
curl_formadd( &formpost, &lastptr, CURLFORM_COPYNAME, "lang", CURLFORM_COPYCONTENTS, optstr, CURLFORM_END);
}
curl = curl_easy_init();
/* initalize custom header list (stating that Expect: 100-continue is not wanted */
headerlist = curl_slist_append(headerlist, buf);
if(curl) {
/* what URL that receives this POST */
curl_easy_setopt(curl, CURLOPT_URL, URLToGetFileIds);
curl_easy_setopt(curl, CURLOPT_HTTPPOST, formpost);
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, ContentInVar);
string buffer;
curl_easy_setopt(curl, CURLOPT_WRITEDATA, &buffer);
res = curl_easy_perform(curl);
(*content) = buffer;
/* always cleanup */
curl_easy_cleanup(curl);
/* then cleanup the formpost chain */
curl_formfree(formpost);
/* free slist */
curl_slist_free_all (headerlist);
if(CURLE_OK!=res){
sprintf(logs, "Failure to fetch File Ids. Curl Error code: %d", res);
Logs::WriteLine(logs, true);
return -1;
}
else{
sprintf(logs, "File Ids fetched succesfully.");
Logs::WriteLine(logs, true);
Logs::WriteLine(buffer.c_str());
return 0;
}
}
return -1; // Control should not reach here in normal circumstances
}
void CurlWrapper::SendResultsToWebpage(const char* fileid, const char* status, const char* detailstatus, const char* time, const char* memory){
struct curl_httppost *formpost = NULL;
struct curl_httppost *lastptr = NULL;
struct curl_slist *headerlist = NULL;
static const char buf[] = "Expect: ";
curl_global_init(CURL_GLOBAL_ALL);
/* Fill in the POST fields */
curl_formadd( &formpost, &lastptr, CURLFORM_COPYNAME, "username", CURLFORM_COPYCONTENTS, USERNAME, CURLFORM_END);
curl_formadd( &formpost, &lastptr, CURLFORM_COPYNAME, "password", CURLFORM_COPYCONTENTS, PASSWORD, CURLFORM_END);
curl_formadd( &formpost, &lastptr, CURLFORM_COPYNAME, "fileid", CURLFORM_COPYCONTENTS, fileid, CURLFORM_END);
curl_formadd( &formpost, &lastptr, CURLFORM_COPYNAME, "status", CURLFORM_COPYCONTENTS, status, CURLFORM_END);
//printf("%s\n", detailstatus);
curl_formadd( &formpost, &lastptr, CURLFORM_COPYNAME, "detailstatus", CURLFORM_COPYCONTENTS, detailstatus, CURLFORM_END);
curl_formadd( &formpost, &lastptr, CURLFORM_COPYNAME, "time", CURLFORM_COPYCONTENTS, time, CURLFORM_END);
curl_formadd( &formpost, &lastptr, CURLFORM_COPYNAME, "memory", CURLFORM_COPYCONTENTS, memory, CURLFORM_END);
if(ForcePushResult)
curl_formadd( &formpost, &lastptr, CURLFORM_COPYNAME, "force", CURLFORM_COPYCONTENTS, "true", CURLFORM_END);
curl = curl_easy_init();
/* initalize custom header list (stating that Expect: 100-continue is not wanted */
headerlist = curl_slist_append(headerlist, buf);
if(curl) {
/* what URL that receives this POST */
curl_easy_setopt(curl, CURLOPT_URL, URLToSendResults);
curl_easy_setopt(curl, CURLOPT_HTTPPOST, formpost);
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, ContentInVar);
string buffer;
curl_easy_setopt(curl, CURLOPT_WRITEDATA, &buffer);
res = curl_easy_perform(curl);
/* always cleanup */
curl_easy_cleanup(curl);
/* then cleanup the formpost chain */
curl_formfree(formpost);
/* free slist */
curl_slist_free_all (headerlist);
if(CURLE_OK!=res){
sprintf(logs, "Could not send results. Curl Error code: %d\n", res);
Logs::WriteLine(logs);
}
else{
sprintf(logs, "Results sent succesfully.\n");
Logs::WriteLine(logs);
}
}
}
bool CurlWrapper::ForcePushResult=true;
| [
"shashankkumar.me@gmail.com"
] | shashankkumar.me@gmail.com |
4c8a8319aa1c2953419083378c802cd68f097ec8 | 8ff8fb3068ccb38c0cc0e3b63fb18bba2053119e | /Blockchain/TimerClass.h | 8f6fce0f8c5ef7fc64b948285bb6ebffd2091c55 | [] | no_license | abelzis/Local-Blockchain | 186d3e6ab0c77167bd44298333f5103875614734 | 2a14bc8a1b0d783b69b1efcff61d454b62ee2554 | refs/heads/master | 2020-08-15T16:54:00.722176 | 2019-11-22T10:11:00 | 2019-11-22T10:11:00 | 215,375,196 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 730 | h | #pragma once
#include <chrono>
class Timer {
private:
// panaudojame using
using hrClock = std::chrono::high_resolution_clock;
using durationDouble = std::chrono::duration<double>;
using tmPt = std::chrono::time_point<hrClock>;
//variables
tmPt start_;
durationDouble duration_{ 0 }, null_duration_{ 0 };
inline void addDuration_() { duration_ += hrClock::now() - start_; }
public:
//default constructor
Timer() : start_{ hrClock::now() } {}
//functions
inline void reset() {
start_ = hrClock::now();
duration_ = null_duration_;
}
inline double elapsed() {
addDuration_();
return duration_.count();
}
inline void pause() {
addDuration_();
}
inline void resume() {
start_ = hrClock::now();
}
}; | [
"abelzis@hotmail.com"
] | abelzis@hotmail.com |
de046c5d49a9a61404cc33e50bdc58a4c194fb27 | cb7db165f6982e9e2f90ebdf5f482bfb82009cdb | /src/main/include/frc/logging/CSVLogFile.h | 878b4e41f4bea2c89aa2a76b041d2c6e4893854a | [
"BSD-3-Clause"
] | permissive | frc3512/Robot-2020 | f3f7393634f0d41f8c42594a9110fa6f63a281c9 | b416c202794fb7deea0081beff2f986de7001ed9 | refs/heads/main | 2022-05-17T21:21:08.031191 | 2022-03-29T04:58:37 | 2022-03-29T04:58:37 | 232,224,269 | 11 | 5 | NOASSERTION | 2022-02-18T02:14:39 | 2020-01-07T02:16:46 | C++ | UTF-8 | C++ | false | false | 4,515 | h | // Copyright (c) FIRST and other WPILib contributors.
// Open Source Software; you can modify and/or share it under the terms of
// the WPILib BSD license file in the root directory of this project.
#pragma once
#include <algorithm>
#include <string>
#include <string_view>
#include <tuple>
#include <type_traits>
#include <units/time.h>
#include "frc/Timer.h"
#include "frc/logging/LogFile.h"
namespace frc {
/**
* A CSVLogFile writes values to a csv file
*
* For the CSVLogFile to write log informations, you must call Log()
* periodically.
*/
class CSVLogFile {
public:
/**
* Instantiate a LogFile passing in its prefix and its column headings.
*
* If you want the file to be saved in a existing directory, you can add
* its path before the file prefix. Exemple : to save the file in a usb stick
* on the roborio ("/media/sda1/") : LogFile("/media/sda1/log").
*
* @param filePrefix The prefix of the LogFile.
* @param columnHeading Title of 1st CSVLogFile column.
* @param columnHeadings Titles of other CSVLogFile columns.
*/
template <typename Value, typename... Values>
CSVLogFile(std::string_view filePrefix, Value columnHeading,
Values... columnHeadings)
: m_logFile(filePrefix, "csv") {
m_logFile << "\"Time (s)\",";
LogValues(columnHeading, columnHeadings...);
}
/**
* Instantiate a LogFile passing in its prefix and its column headings.
*
* If you want the file to be saved in a existing directory, you can add
* its path before the file prefix. Exemple : to save the file in a usb stick
* on the roborio ("/media/sda1/") : LogFile("/media/sda1/log").
*
* @param filePrefix The prefix of the LogFile.
* @param columnHeadings Titles of CSVLogFile columns.
*/
template <typename... Values>
CSVLogFile(std::string_view filePrefix,
const std::tuple<Values...>& columnHeadings)
: m_logFile(filePrefix, "csv") {
static_assert(sizeof...(Values) > 0,
"At least one column heading is required");
m_logFile << "\"Time (s)\",";
std::apply(&CSVLogFile::LogValues<Values...>,
std::tuple_cat(std::tuple{this}, columnHeadings));
}
/**
* Move constructor.
*/
CSVLogFile(CSVLogFile&&) = default;
/**
* Move assignment operator.
*/
CSVLogFile& operator=(CSVLogFile&&) = default;
/**
* Print a new line of values in the CSVLogFile.
*
* @param time The timestamp for this line of values.
* @param value First value to log in the file.
* @param values Other values to log in the file in order.
*/
template <typename Value, typename... Values>
void Log(units::second_t time, Value value, Values... values) {
m_logFile << time.value() << ',';
LogValues(value, values...);
}
/**
* Print a new line of values in the CSVLogFile.
*
* @param value First value to log in the file.
* @param values Other values to log in the file in order.
*/
template <typename Value, typename... Values>
void Log(Value value, Values... values) {
Log(frc::Timer::GetFPGATimestamp() - GetStartTime(), value, values...);
}
/**
* Returns the timestamp when the robot program started.
*/
static units::second_t GetStartTime() {
static units::second_t startTime = frc::Timer::GetFPGATimestamp();
return startTime;
}
private:
/**
* Print a new line of values in the CSVLogFile without timestamp.
*
* @param value First value to log in the file.
* @param values Other values to log in the file in order.
*/
template <typename Value, typename... Values>
void LogValues(Value value, Values... values) {
if constexpr (std::is_convertible_v<Value, std::string_view>) {
m_logFile << '\"' << EscapeDoubleQuotes(value) << '\"';
} else {
m_logFile << value;
}
if constexpr (sizeof...(values) > 0) {
m_logFile << ',';
LogValues(values...);
} else {
m_logFile << '\n';
m_logFile.Flush();
}
}
/**
* Escape double quotes in a text by duplicating them.
*
* @param text Text to escape.
* @return The text with all its double quotes escaped.
*/
std::string EscapeDoubleQuotes(std::string_view text) const {
std::string textString{text};
for (std::string::size_type i = 0; i < text.size(); i++) {
if (text[i] == '\"') {
i++;
textString.insert(i, "\"");
}
}
return textString;
}
LogFile m_logFile;
};
} // namespace frc
| [
"calcmogul@gmail.com"
] | calcmogul@gmail.com |
0d34040c9c99028520c4a3ab6afaaca0629258fa | c94e8b5d962964a083e3c0d3847690d14c61fc57 | /codeforces/4/B.cpp | e81f749011dbfc14f881614256b3078d8fc51015 | [] | no_license | Intruderp/Codeforces | 01f045bec9ac991427a7bbbc356cb30d2e622af1 | 7b902d4fc34c1f2316e0bf780c64b42f6086d45e | refs/heads/master | 2023-07-01T12:41:19.869053 | 2021-01-02T12:14:00 | 2021-08-06T12:12:08 | 393,272,416 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 602 | cpp | #include<bits/stdc++.h>
using namespace std;
int main()
{
int d,sum,sum1=0,sum2=0;
cin>>d>>sum;
int a[d][2],b[d];
for(int i=0;i<d;i++)
{
cin>>a[i][0]>>a[i][1];
sum1+=a[i][0];
sum2+=a[i][1];
}
if(sum>=sum1 && sum<=sum2)
{
int e=sum-sum1,e1;
for(int i=d-1;i>=0;i--)
{
e1=a[i][1]-a[i][0];
b[i]=a[i][0]+min(e,e1);
e=e-min(e,e1);
}
cout<<"YES"<<endl;
for(int i=0;i<d;i++)
cout<<b[i]<<' ';
}
else
{
cout<<"NO";
}
return 0;
} | [
"satyamkt512@gmail.com"
] | satyamkt512@gmail.com |
f9ce622c76c0c691c74cdc10d40c090b7b6ec531 | eee4e1d7e3bd56bd0c24da12f727017d509f919d | /Case/case7/1700/epsilon | 4e65a607cc8f71fcb16a6dcbc81fdf9ca64d97de | [] | no_license | mamitsu2/aircond5_play5 | 35ea72345d23c5217564bf191921fbbe412b90f2 | f1974714161f5f6dad9ae6d9a77d74b6a19d5579 | refs/heads/master | 2021-10-30T08:59:18.692891 | 2019-04-26T01:48:44 | 2019-04-26T01:48:44 | 183,529,942 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,887 | /*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 6
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "1700";
object epsilon;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 2 -3 0 0 0 0];
internalField nonuniform List<scalar>
458
(
0.000116027
0.000125835
9.92179e-05
0.000110541
0.000123376
0.000136189
0.000148907
0.000161767
0.00017525
0.000190224
0.000203862
0.000215311
0.000224557
0.000232749
0.000239336
1.1106e-05
1.44094e-05
1.37679e-05
8.10846e-06
5.3567e-06
3.69925e-06
2.79105e-06
2.90208e-06
3.96114e-06
5.7017e-06
7.57539e-06
8.49102e-06
9.42143e-06
1.13666e-05
1.60956e-05
2.40009e-05
2.64802e-05
1.48337e-05
0.000567884
0.00129592
0.000127063
8.52674e-05
8.72884e-05
9.18388e-05
9.70912e-05
0.000103627
0.000112253
0.000123886
0.000137376
0.000152377
0.000168899
0.000188197
0.00021987
0.000302719
0.00026195
8.97677e-05
2.30953e-05
5.33749e-05
3.55174e-05
1.70546e-05
8.97267e-06
4.82713e-06
4.25408e-06
5.91775e-06
9.28782e-06
1.37069e-05
1.82924e-05
2.32947e-05
2.92065e-05
3.66069e-05
4.25084e-05
4.71277e-05
6.51914e-05
2.25567e-05
0.00144931
0.00436206
0.000307995
9.70363e-05
8.84667e-05
9.31221e-05
0.000100137
0.000109085
0.000120137
0.000133284
0.000147441
0.000160954
0.000173088
0.000184199
0.000196567
0.000215954
0.000246908
0.000323512
0.000128673
0.000100571
5.69022e-05
4.40056e-05
3.56927e-05
8.4536e-06
7.9492e-06
1.09773e-05
1.49649e-05
2.01292e-05
2.70455e-05
3.72147e-05
5.4134e-05
8.85074e-05
7.48282e-05
7.4899e-05
8.74853e-05
7.94504e-05
0.00287847
0.0097057
0.000754039
0.000128535
9.6268e-05
0.000101598
0.000112016
0.000125091
0.000140603
0.000158259
0.000176132
0.000191046
0.000202586
0.000211923
0.00021987
0.000228022
0.000242505
0.000275665
0.000345669
0.000128153
7.82971e-05
6.41064e-05
6.44791e-05
7.40511e-05
9.88642e-05
9.79524e-05
9.88113e-05
0.000101342
0.000106358
0.000115096
0.000129355
0.000151969
0.000196971
0.000142381
0.000164404
0.00019184
0.000253721
0.00486932
0.0167975
0.00166862
0.000195498
0.000108825
0.00011275
0.000128057
0.000148403
0.000173212
0.000201786
0.00022768
0.000245305
0.000256356
0.000264553
0.00027061
0.000272212
0.000265771
0.000243981
0.000195767
0.000126283
9.03166e-05
7.44692e-05
6.89428e-05
6.81829e-05
6.95652e-05
7.11994e-05
7.49178e-05
8.14917e-05
9.19298e-05
0.000107661
0.000130531
0.000162538
0.000204923
0.000245555
0.000307515
0.000374549
0.00042535
0.000666166
0.000487423
0.000344095
0.00743271
0.0233005
0.00336485
0.000393125
0.000153159
0.00014153
0.000160433
0.000190776
0.000231232
0.000281157
0.000314204
0.000327004
0.000328769
0.000329169
0.000332298
0.000336083
0.000332309
0.000306947
0.000254188
0.00019231
0.000145287
0.000116981
0.000102369
9.55266e-05
9.2786e-05
9.29013e-05
9.64188e-05
0.000104251
0.000117902
0.000139566
0.000171974
0.000217887
0.000279117
0.000355208
0.000448845
0.000559921
0.000653779
0.000642651
0.000408888
0.000387171
0.0105238
0.0262567
0.00684604
0.00146804
0.000499003
0.000316662
0.000299856
0.000327817
0.000384916
0.000454873
0.000469
0.000452165
0.000424544
0.000400151
0.000386088
0.000382567
0.000380669
0.000363094
0.000320319
0.000263626
0.000212354
0.000175725
0.000153026
0.000140099
0.000133383
0.000131355
0.000134132
0.00014274
0.000159093
0.000185833
0.000225737
0.000280813
0.000351837
0.000437179
0.000531458
0.000620484
0.000669034
0.000634191
0.000487256
0.000357459
0.0113513
0.0334984
0.0153548
0.00790405
0.00359877
0.00173042
0.00111847
0.000924286
0.000883936
0.000812831
0.000722593
0.000631723
0.000551146
0.000486258
0.000439614
0.000411834
0.000398737
0.00038684
0.000360798
0.000319167
0.000275689
0.000240076
0.000214773
0.000198524
0.000189176
0.000185581
0.000187981
0.000197957
0.000218697
0.000254599
0.000308644
0.00037836
0.000456098
0.000533306
0.000607834
0.000684309
0.000766441
0.000865806
0.000949282
0.000676941
0.0103668
0.0176211
0.0167829
0.0120231
0.00790541
0.00506218
0.00333966
0.0023401
0.00171747
0.0013033
0.00102003
0.000819642
0.000674539
0.000568688
0.000492634
0.000440702
0.000408393
0.000388826
0.000372283
0.000352197
0.000328963
0.00030631
0.000287283
0.000273146
0.000263857
0.000259138
0.000259204
0.000265266
0.00028043
0.000310177
0.000357005
0.000428298
0.000529991
0.000667348
0.00082965
0.000971337
0.0010943
0.00136744
0.00208707
0.00120059
0.0154885
0.022221
0.0104348
0.00619002
0.00401946
0.00276386
0.00198897
0.00148077
0.00113721
0.000901487
0.000738059
0.000624232
0.00054542
0.000492286
0.000458752
0.000440203
0.000431929
0.00042885
0.000425631
0.000420435
0.000413915
0.00040742
0.000401954
0.000397939
0.00039545
0.00039469
0.000397433
0.000404817
0.000418586
0.000443082
0.000480784
0.000529977
0.000583201
0.000625919
0.00064653
0.000657154
0.00117299
0.00124707
0.0132961
0.0173713
0.00859705
0.00528887
0.00357166
0.00255383
0.00191856
0.00151135
0.00124259
0.00106319
0.000944437
0.000869146
0.000826794
0.000810314
0.000813667
0.00083024
0.000852595
0.00087338
0.000883004
0.000880733
0.000870385
0.000856278
0.000841106
0.000825417
0.000807838
0.000785967
0.000756276
0.000716026
0.000668553
0.000622378
0.000586635
0.000564986
0.000556843
0.000555288
0.00055284
0.000567036
0.00143107
0.00102486
0.00272846
0.00446097
0.00756516
0.00810675
0.00537734
0.00390018
0.00293078
0.00225008
0.00175504
0.00138745
0.00112675
0.000933838
0.000788224
0.000678396
0.000597491
0.000541108
0.000506013
0.000489235
0.000487407
0.000496453
0.000514729
0.000534163
0.000549757
0.000559906
0.00056509
0.000566694
0.00056628
0.000565322
0.000565513
0.000568112
0.000572649
0.000577265
0.00057835
0.00057027
0.000545512
0.000512616
0.000475098
0.000428423
0.000455037
0.000375657
)
;
boundaryField
{
floor
{
Cmu 0.09;
kappa 0.41;
E 9.8;
type epsilonWallFunction;
value nonuniform List<scalar>
36
(
0.000239336
1.1106e-05
1.44094e-05
1.37679e-05
8.10846e-06
5.3567e-06
3.69925e-06
2.79105e-06
2.90208e-06
3.96114e-06
5.7017e-06
7.57539e-06
8.49102e-06
9.42143e-06
1.13666e-05
1.60956e-05
2.40009e-05
2.64802e-05
1.48337e-05
1.48337e-05
2.25567e-05
7.94504e-05
0.000253721
0.000666166
0.000487423
0.000344095
0.000239336
0.000302719
0.00026195
8.97677e-05
1.1106e-05
8.97677e-05
2.30953e-05
0.000323512
0.000128673
0.000345669
)
;
}
ceiling
{
Cmu 0.09;
kappa 0.41;
E 9.8;
type epsilonWallFunction;
value nonuniform List<scalar>
43
(
0.00272846
0.00446097
0.00756516
0.00810675
0.00537734
0.00390018
0.00293078
0.00225008
0.00175504
0.00138745
0.00112675
0.000933838
0.000788224
0.000678396
0.000597491
0.000541108
0.000506013
0.000489235
0.000487407
0.000496453
0.000514729
0.000534163
0.000549757
0.000559906
0.00056509
0.000566694
0.00056628
0.000565322
0.000565513
0.000568112
0.000572649
0.000577265
0.00057835
0.00057027
0.000545512
0.000512616
0.000475098
0.000428423
0.000455037
0.000375657
0.0103668
0.0176211
0.0132961
)
;
}
sWall
{
Cmu 0.09;
kappa 0.41;
E 9.8;
type epsilonWallFunction;
value uniform 0.00272846;
}
nWall
{
Cmu 0.09;
kappa 0.41;
E 9.8;
type epsilonWallFunction;
value nonuniform List<scalar> 6(0.000344095 0.000387171 0.000357459 0.00124707 0.00102486 0.000375657);
}
sideWalls
{
type empty;
}
glass1
{
Cmu 0.09;
kappa 0.41;
E 9.8;
type epsilonWallFunction;
value nonuniform List<scalar> 9(0.000116027 0.000567884 0.00144931 0.00287847 0.00486932 0.00743271 0.0105238 0.0113513 0.0103668);
}
glass2
{
Cmu 0.09;
kappa 0.41;
E 9.8;
type epsilonWallFunction;
value nonuniform List<scalar> 2(0.000676941 0.00120059);
}
sun
{
Cmu 0.09;
kappa 0.41;
E 9.8;
type epsilonWallFunction;
value nonuniform List<scalar>
14
(
0.000116027
0.000125835
9.92179e-05
0.000110541
0.000123376
0.000136189
0.000148907
0.000161767
0.00017525
0.000190224
0.000203862
0.000215311
0.000224557
0.000232749
)
;
}
Table_master
{
Cmu 0.09;
kappa 0.41;
E 9.8;
type epsilonWallFunction;
value nonuniform List<scalar> 9(8.4536e-06 7.9492e-06 1.09773e-05 1.49649e-05 2.01292e-05 2.70455e-05 3.72147e-05 5.4134e-05 8.85074e-05);
}
Table_slave
{
Cmu 0.09;
kappa 0.41;
E 9.8;
type epsilonWallFunction;
value nonuniform List<scalar> 9(9.88642e-05 9.79524e-05 9.88113e-05 0.000101342 0.000106358 0.000115096 0.000129355 0.000151969 0.000196971);
}
inlet
{
type turbulentMixingLengthDissipationRateInlet;
mixingLength 0.01;
phi phi;
k k;
value uniform 3.77337e-06;
}
outlet
{
type zeroGradient;
}
}
// ************************************************************************* //
| [
"mitsuaki.makino@tryeting.jp"
] | mitsuaki.makino@tryeting.jp | |
c7854da30944433c920cda8cc6b191e7532025d4 | 11cadaf1bd3a67935998e1a72b355dd809e17407 | /lib/gpgpu/math/cuda_affine_transform.h | 5f441b56ef0f8d487b5cc66ef14a84db50372b97 | [
"MIT"
] | permissive | b3h47pte/cuda-path-tracing | 85b0dcd3c2d3cd2efbca2eb47c8adf33c8e277c5 | b874b86f15b4aca18ecd40e9eb962996298f5fa8 | refs/heads/master | 2020-04-11T16:57:39.106063 | 2019-01-18T02:12:50 | 2019-01-18T02:12:50 | 161,943,019 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 527 | h | #pragma once
#include "gpgpu/math/cuda_matrix.h"
#include "gpgpu/math/cuda_vector.h"
#include "math/transform.h"
namespace cpt {
class CudaAffineTransform
{
public:
CudaAffineTransform();
CudaAffineTransform(const CudaMatrix<float,3,3>& linear, const CudaVector<float,3>& trans);
CudaAffineTransform(const Transform& xform);
CUDA_DEVHOST CudaVector<float,3> transform(const CudaVector<float,3>& input, bool as_point) const;
private:
CudaMatrix<float,3,3> _linear;
CudaVector<float,3> _trans;
};
}
| [
"mikebao@stanford.edu"
] | mikebao@stanford.edu |
76c76e4904c88675e69013dd4fedbecb7ab1ad41 | e161653351d30f444540c305ddfe8e5334518471 | /src/qt/test/uritests.cpp | 3ab02c3306d41862eb80e5a2399054247ca4b652 | [
"MIT"
] | permissive | Incoin/incoin | 5c726c1732472fe9b002b3a0308baad52cbc289c | 3eeebaafb49fe29bb0e35584af08676d5b39e1f2 | refs/heads/master | 2021-01-01T05:30:41.318433 | 2014-01-15T11:45:24 | 2014-01-15T11:45:24 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,831 | cpp | #include "uritests.h"
#include "../guiutil.h"
#include "../walletmodel.h"
#include <QUrl>
void URITests::uriTests()
{
SendCoinsRecipient rv;
QUrl uri;
uri.setUrl(QString("incoin:LQDPC5rbjDB72fGFVHu4enYhxGAZuRiFh9?req-dontexist="));
QVERIFY(!GUIUtil::parseBitcoinURI(uri, &rv));
uri.setUrl(QString("incoin:LQDPC5rbjDB72fGFVHu4enYhxGAZuRiFh9?dontexist="));
QVERIFY(GUIUtil::parseBitcoinURI(uri, &rv));
QVERIFY(rv.address == QString("LQDPC5rbjDB72fGFVHu4enYhxGAZuRiFh9"));
QVERIFY(rv.label == QString());
QVERIFY(rv.amount == 0);
uri.setUrl(QString("incoin:LQDPC5rbjDB72fGFVHu4enYhxGAZuRiFh9?label=Wikipedia Example Address"));
QVERIFY(GUIUtil::parseBitcoinURI(uri, &rv));
QVERIFY(rv.address == QString("LQDPC5rbjDB72fGFVHu4enYhxGAZuRiFh9"));
QVERIFY(rv.label == QString("Wikipedia Example Address"));
QVERIFY(rv.amount == 0);
uri.setUrl(QString("incoin:LQDPC5rbjDB72fGFVHu4enYhxGAZuRiFh9?amount=0.001"));
QVERIFY(GUIUtil::parseBitcoinURI(uri, &rv));
QVERIFY(rv.address == QString("LQDPC5rbjDB72fGFVHu4enYhxGAZuRiFh9"));
QVERIFY(rv.label == QString());
QVERIFY(rv.amount == 100000);
uri.setUrl(QString("incoin:LQDPC5rbjDB72fGFVHu4enYhxGAZuRiFh9?amount=1.001"));
QVERIFY(GUIUtil::parseBitcoinURI(uri, &rv));
QVERIFY(rv.address == QString("LQDPC5rbjDB72fGFVHu4enYhxGAZuRiFh9"));
QVERIFY(rv.label == QString());
QVERIFY(rv.amount == 100100000);
uri.setUrl(QString("incoin:LQDPC5rbjDB72fGFVHu4enYhxGAZuRiFh9?amount=100&label=Wikipedia Example"));
QVERIFY(GUIUtil::parseBitcoinURI(uri, &rv));
QVERIFY(rv.address == QString("LQDPC5rbjDB72fGFVHu4enYhxGAZuRiFh9"));
QVERIFY(rv.amount == 10000000000LL);
QVERIFY(rv.label == QString("Wikipedia Example"));
uri.setUrl(QString("incoin:LQDPC5rbjDB72fGFVHu4enYhxGAZuRiFh9?message=Wikipedia Example Address"));
QVERIFY(GUIUtil::parseBitcoinURI(uri, &rv));
QVERIFY(rv.address == QString("LQDPC5rbjDB72fGFVHu4enYhxGAZuRiFh9"));
QVERIFY(rv.label == QString());
QVERIFY(GUIUtil::parseBitcoinURI("incoin://LQDPC5rbjDB72fGFVHu4enYhxGAZuRiFh9?message=Wikipedia Example Address", &rv));
QVERIFY(rv.address == QString("LQDPC5rbjDB72fGFVHu4enYhxGAZuRiFh9"));
QVERIFY(rv.label == QString());
// We currently don't implement the message parameter (ok, yea, we break spec...)
uri.setUrl(QString("incoin:LQDPC5rbjDB72fGFVHu4enYhxGAZuRiFh9?req-message=Wikipedia Example Address"));
QVERIFY(!GUIUtil::parseBitcoinURI(uri, &rv));
uri.setUrl(QString("incoin:LQDPC5rbjDB72fGFVHu4enYhxGAZuRiFh9?amount=1,000&label=Wikipedia Example"));
QVERIFY(!GUIUtil::parseBitcoinURI(uri, &rv));
uri.setUrl(QString("incoin:LQDPC5rbjDB72fGFVHu4enYhxGAZuRiFh9?amount=1,000.0&label=Wikipedia Example"));
QVERIFY(!GUIUtil::parseBitcoinURI(uri, &rv));
}
| [
"benson@ideabase.(none)"
] | benson@ideabase.(none) |
40a6ea6c3c358e8d5de6fb3a259446b83084f10a | cfc51a83659fb5b49c0d519584f0e526d15342d4 | /src/Graphics/Direct3D11/HlslSpriteEffect.h | be52217e183dca45028e36178118d5a907a769d4 | [] | no_license | bellatter/Nxna | cfe477ab2a24a96053012d6c9b902bde5e9b0536 | bee337b17e22dd43134ec294b2352ec52b5fc971 | refs/heads/master | 2021-07-10T11:05:26.445683 | 2017-02-26T23:39:32 | 2017-02-26T23:39:32 | 87,603,114 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 771 | h | #ifndef NXNA_GRAPHICS_DIRECT3D11_HLSLSPRITEEFFECT_H
#define NXNA_GRAPHICS_DIRECT3D11_HLSLSPRITEEFFECT_H
#include "../SpriteEffect.h"
#include "../SpriteEffectPimpl.h"
#include "HlslEffect.h"
// VC++ gives a stupid warning that doesn't
// apply since we're using pure virtual methods
#ifdef _MSC_VER
#pragma warning(push)
#pragma warning(disable: 4250)
#endif
namespace Nxna
{
namespace Graphics
{
namespace Direct3D11
{
class HlslSpriteEffect : public Pvt::SpriteEffectPimpl
{
HlslEffect* m_hlslEffect;
public:
HlslSpriteEffect(Direct3D11Device* device, HlslEffect* hlslEffect);
virtual ~HlslSpriteEffect() { }
};
}
}
}
#ifdef _MSC_VER
#pragma warning(pop)
#endif
#endif // NXNA_GRAPHICS_DIRECT3D11_HLSLSPRITEEFFECT_H
| [
"bellatter@users.noreply.github.com"
] | bellatter@users.noreply.github.com |
22276f6fcb1e777e370e857053a84fbabf47553c | d347554c4bc24b7e159551007f5683cac8fa97d0 | /rtor/build-rtor-Desktop_Qt_5_9_5_GCC_64bit-Release/moc_simpletimelayout.cpp | d45f90fef10080cfaeb5f6c8cd21b67f5bd52c16 | [] | no_license | ansartnl/ALPHA | 892065b1476ec9c35e834a3158592332cda4c5f5 | 138ddd981ed5bac882c29f28a065171e51d680cf | refs/heads/main | 2022-12-27T16:15:28.721053 | 2020-10-16T08:58:41 | 2020-10-16T08:58:41 | 304,633,537 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,852 | cpp | /****************************************************************************
** Meta object code from reading C++ file 'simpletimelayout.h'
**
** Created by: The Qt Meta Object Compiler version 67 (Qt 5.9.5)
**
** WARNING! All changes made in this file will be lost!
*****************************************************************************/
#include "../../common/log4qt/src/simpletimelayout.h"
#include <QtCore/qbytearray.h>
#include <QtCore/qmetatype.h>
#if !defined(Q_MOC_OUTPUT_REVISION)
#error "The header file 'simpletimelayout.h' doesn't include <QObject>."
#elif Q_MOC_OUTPUT_REVISION != 67
#error "This file was generated using the moc from 5.9.5. It"
#error "cannot be used with the include files from this version of Qt."
#error "(The moc has changed too much.)"
#endif
QT_BEGIN_MOC_NAMESPACE
QT_WARNING_PUSH
QT_WARNING_DISABLE_DEPRECATED
struct qt_meta_stringdata_Log4Qt__SimpleTimeLayout_t {
QByteArrayData data[1];
char stringdata0[25];
};
#define QT_MOC_LITERAL(idx, ofs, len) \
Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \
qptrdiff(offsetof(qt_meta_stringdata_Log4Qt__SimpleTimeLayout_t, stringdata0) + ofs \
- idx * sizeof(QByteArrayData)) \
)
static const qt_meta_stringdata_Log4Qt__SimpleTimeLayout_t qt_meta_stringdata_Log4Qt__SimpleTimeLayout = {
{
QT_MOC_LITERAL(0, 0, 24) // "Log4Qt::SimpleTimeLayout"
},
"Log4Qt::SimpleTimeLayout"
};
#undef QT_MOC_LITERAL
static const uint qt_meta_data_Log4Qt__SimpleTimeLayout[] = {
// content:
7, // revision
0, // classname
0, 0, // classinfo
0, 0, // methods
0, 0, // properties
0, 0, // enums/sets
0, 0, // constructors
0, // flags
0, // signalCount
0 // eod
};
void Log4Qt::SimpleTimeLayout::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
{
Q_UNUSED(_o);
Q_UNUSED(_id);
Q_UNUSED(_c);
Q_UNUSED(_a);
}
const QMetaObject Log4Qt::SimpleTimeLayout::staticMetaObject = {
{ &Layout::staticMetaObject, qt_meta_stringdata_Log4Qt__SimpleTimeLayout.data,
qt_meta_data_Log4Qt__SimpleTimeLayout, qt_static_metacall, nullptr, nullptr}
};
const QMetaObject *Log4Qt::SimpleTimeLayout::metaObject() const
{
return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
}
void *Log4Qt::SimpleTimeLayout::qt_metacast(const char *_clname)
{
if (!_clname) return nullptr;
if (!strcmp(_clname, qt_meta_stringdata_Log4Qt__SimpleTimeLayout.stringdata0))
return static_cast<void*>(this);
return Layout::qt_metacast(_clname);
}
int Log4Qt::SimpleTimeLayout::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
{
_id = Layout::qt_metacall(_c, _id, _a);
return _id;
}
QT_WARNING_POP
QT_END_MOC_NAMESPACE
| [
"50514882+dg-atmsys@users.noreply.github.com"
] | 50514882+dg-atmsys@users.noreply.github.com |
efeca6deb0f70387056b31533faddf7fd4079c2c | 75452de12ec9eea346e3b9c7789ac0abf3eb1d73 | /src/devices/board/drivers/x86/i2c.cc | 6b6117787809c205fcfa071269f7dd8f7bc1108f | [
"BSD-3-Clause"
] | permissive | oshunter/fuchsia | c9285cc8c14be067b80246e701434bbef4d606d1 | 2196fc8c176d01969466b97bba3f31ec55f7767b | refs/heads/master | 2022-12-22T11:30:15.486382 | 2020-08-16T03:41:23 | 2020-08-16T03:41:23 | 287,920,017 | 2 | 2 | BSD-3-Clause | 2022-12-16T03:30:27 | 2020-08-16T10:18:30 | C++ | UTF-8 | C++ | false | false | 6,642 | cc | // Copyright 2020 The Fuchsia 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 "i2c.h"
#include <stdio.h>
#include <zircon/hw/i2c.h>
#include <algorithm>
#include <vector>
#include <acpica/acpi.h>
#include <ddk/debug.h>
#include <ddk/metadata.h>
#include <ddk/metadata/i2c.h>
#include "acpi-private.h"
#include "dev.h"
#include "util.h"
zx_status_t I2cBusPublishMetadata(zx_device_t* dev, uint8_t pci_bus_num, uint64_t adr,
const ACPI_DEVICE_INFO& i2c_bus_info,
ACPI_HANDLE i2c_bus_object) {
std::vector<acpi_i2c_device_t> found_devices;
// Enumerate the device children who are direct descendants of the bus object.
acpi::WalkNamespace(
ACPI_TYPE_DEVICE, i2c_bus_object, 1,
[&found_devices, &i2c_bus_info](ACPI_HANDLE object, uint32_t level,
acpi::WalkDirection dir) -> ACPI_STATUS {
// We only have work to do when descending into a node. Skip the node when
// we are ascending back through it.
if (dir == acpi::WalkDirection::Ascending) {
return AE_OK;
}
// Attempt to fetch the info for this device. Don't stop enumerating if
// we fail for this device, simply log a warning and keep going.
acpi::UniquePtr<ACPI_DEVICE_INFO> info;
if (auto res = acpi::GetObjectInfo(object); res.is_error()) {
zxlogf(WARNING, "Failed to fetch object info for device on I2C bus \"%s\"",
fourcc_to_string(i2c_bus_info.Name).str);
return AE_OK;
} else {
info = std::move(res.value());
}
acpi_i2c_device_t new_dev;
new_dev.protocol_id = ZX_PROTOCOL_I2C;
// Extract the vendor specific HW ID into our devprops if it is present.
zx_status_t status = acpi::ExtractHidToDevProps(*info, new_dev.props, new_dev.propcount);
if (status != ZX_OK) {
zxlogf(WARNING,
"Failed to extract HID info ACPI I2C device \"%s\" on bus \"%s\" (status %d)\n",
fourcc_to_string(info->Name).str, fourcc_to_string(i2c_bus_info.Name).str, status);
return AE_OK;
}
// If we have a CID, and it matches the I2C HID CID, then add the
// I2C HID class to our devprops if we can.
//
// TODO(fxbug.dev/56832): This is a very focused hack to support binding to I2C
// HID Touch controllers on some older hardware. Once the bug has been
// resolved, driver clients will be able to access their relevant ACPI info
// on their own and all of this can go away.
if ((info->Valid & ACPI_VALID_CID) && (info->CompatibleIdList.Count > 0) &&
(info->CompatibleIdList.Ids[0].Length > 0)) {
if (!strcmp(info->CompatibleIdList.Ids[0].String, I2C_HID_CID_STRING)) {
if (new_dev.propcount >= std::size(new_dev.props)) {
zxlogf(
WARNING,
"Insufficient space to store I2C class in devprops for ACPI I2C device \"%s\" on "
"bus \"%s\"\n",
fourcc_to_string(info->Name).str, fourcc_to_string(i2c_bus_info.Name).str);
return AE_OK;
}
new_dev.props[new_dev.propcount].id = BIND_I2C_CLASS;
new_dev.props[new_dev.propcount++].value = I2C_CLASS_HID;
}
// Extract the first compatible ID into our devprops if it is present.
status = acpi::ExtractCidToDevProps(*info, new_dev.props, new_dev.propcount);
if (status != ZX_OK) {
zxlogf(WARNING,
"Failed to extract CID info ACPI I2C device \"%s\" on bus \"%s\" (status %d)\n",
fourcc_to_string(info->Name).str, fourcc_to_string(i2c_bus_info.Name).str,
status);
return AE_OK;
}
}
// Invoke the "Current Resource Settings" method (_CRS) on our device object
// and go looking for the resource which describes the I2C specific details
// of this device (its address, expected speed, and so on).
ACPI_STATUS acpi_status;
acpi_status =
acpi::WalkResources(object, "_CRS", [&new_dev](ACPI_RESOURCE* resource) -> ACPI_STATUS {
if (resource->Type != ACPI_RESOURCE_TYPE_SERIAL_BUS) {
return AE_NOT_FOUND;
}
if (resource->Data.I2cSerialBus.Type != ACPI_RESOURCE_SERIAL_TYPE_I2C) {
return AE_NOT_FOUND;
}
ACPI_RESOURCE_I2C_SERIALBUS* i2c = &resource->Data.I2cSerialBus;
new_dev.is_bus_controller = i2c->SlaveMode;
new_dev.ten_bit = i2c->AccessMode;
new_dev.address = i2c->SlaveAddress;
new_dev.bus_speed = i2c->ConnectionSpeed;
return AE_CTRL_TERMINATE;
});
if (acpi_status != AE_OK) {
zxlogf(
WARNING,
"Failed to find ACPI CRS for I2C device \"%s\" on bus \"%s\" (status %d). Skipping "
"device.\n",
fourcc_to_string(info->Name).str, fourcc_to_string(i2c_bus_info.Name).str, status);
return AE_OK;
}
// Looks like we got all of the info we were looking for. Go ahead and add
// this device to our list.
found_devices.emplace_back(new_dev);
return AE_OK;
});
// If we didn't find any devices, then we are done.
if (found_devices.empty()) {
return ZX_ERR_NOT_FOUND;
}
// Publish the I2C device details as metadata on the future PCI device node.
// The canonical path to the PCI device is /dev/sys/pci/<b:d.f>
char path[PATH_MAX];
snprintf(path, sizeof(path), "/dev/sys/pci/%02x:%02x.%01x", static_cast<uint32_t>(pci_bus_num),
static_cast<uint32_t>((adr >> 16) & 0xFFFF), static_cast<uint32_t>(adr & 0xFFFF));
zx_status_t status =
device_publish_metadata(dev, path, DEVICE_METADATA_ACPI_I2C_DEVICES, found_devices.data(),
found_devices.size() * sizeof(decltype(found_devices)::value_type));
if (status != ZX_OK) {
zxlogf(ERROR, "acpi: failed to publish \"%s\" metadata (res %d)",
fourcc_to_string(i2c_bus_info.Name).str, status);
} else {
zxlogf(INFO, "acpi: Published I2C metadata for %zu device%s on bus %s to \"%s\"",
found_devices.size(), found_devices.size() == 1 ? "" : "s",
fourcc_to_string(i2c_bus_info.Name).str, path);
}
return status;
}
| [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
89c95292b463bb1e75dd7835e22a32f57159d30d | 96ec31b93394e9d58087043a5dc88847371a778a | /DIHT/1st_contest/A_sparse_tables/main.cpp | 59134f4ad8e607ed4a7928f4408508d744cce6c8 | [] | no_license | fogside/algorithms | c79861e592ecaacfb9c51c1178f5c0c8e7fe3b12 | c1e57d1a4f96995931688f8d04c0386a16d0966c | refs/heads/master | 2021-09-01T00:44:22.759620 | 2017-12-23T22:36:57 | 2017-12-23T22:36:57 | 104,099,499 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,680 | cpp | #include <iostream>
#include <vector>
#include <math.h>
using namespace std;
class SparseTable {
public:
vector<vector<long> > table;
vector<int> K;
explicit SparseTable(int a1, long n);
};
SparseTable::SparseTable(int a1, long n) : table((ilogb(n + 1)) + 1, vector<long>(n + 1)), K(n + 1) {
table[0][1] = a1;
for (long i = 2; i <= n; ++i) {
table[0][i] = (23 * table[0][i - 1] + 21563) % 16714589;
K[i] = ilogb(i);
}
for (int k = 1; k < table.size(); ++k) {
unsigned long p = 1<<(k - 1);
for (unsigned long i = 1; i + p <= n + 1; ++i)
table[k][i] = min(table[k - 1][i], table[k - 1][i + p]);
}
}
int main() {
unsigned long n, m, v1, u1;
int a1;
bool FLAG = false;
cin >> n >> m >> a1;
cin >> u1 >> v1;
SparseTable sparseTable(a1, n);
// govnokod
if (u1 > v1) {
swap(u1, v1);
FLAG = true;
}
int k = sparseTable.K[v1 - u1 + 1];
int power = 1 << k;
long ans = min(sparseTable.table[k][u1], sparseTable.table[k][v1 - power + 1]);
if (FLAG) {
swap(u1, v1);
FLAG = false;
}
for (int i = 2; i <= m; ++i) {
u1 = (17 * u1 + 751 + ans + 2 * (i - 1)) % n + 1;
v1 = (13 * v1 + 593 + ans + 5 * (i - 1)) % n + 1;
if (u1 > v1) {
swap(u1, v1);
FLAG = true;
}
k = sparseTable.K[v1 - u1 + 1];
power = 1 << k;
ans = min(sparseTable.table[k][u1], sparseTable.table[k][v1 - power + 1]);
if (FLAG) {
swap(u1, v1);
FLAG = false;
}
}
cout << u1 << ' ' << v1 << ' ' << ans;
return 0;
} | [
"cheskidova@phystech.edu"
] | cheskidova@phystech.edu |
ecfb5be2705215ef317e780a9f14392227ba5519 | 1fcdb2bc2c7f75f6aed466119a4b1c53777f0b7a | /holly_inletwfine_LRR_RSM_turbulence3/10/phi | 8a4301782657218fc217f020d916391be57f2a37 | [] | no_license | bshambaugh/openfoam-experiments3 | b32549e80836eee9fc6062873fc737155168f919 | 4bd90a951845a4bc5dda7063e91f6cc0ba730e48 | refs/heads/master | 2020-04-15T08:17:15.156512 | 2019-01-15T04:31:23 | 2019-01-15T04:31:23 | 164,518,405 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 282,718 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 4.1 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class surfaceScalarField;
location "10";
object phi;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 3 -1 0 0 0 0];
internalField nonuniform List<scalar>
13220
(
-911.634
2211.54
-1418.31
1806.88
-1892.91
1774.5
-2256.89
1663.88
-2537.55
1580.86
-2738.41
1500.76
-2861.87
1423.36
-2909.06
1347.39
-2880.08
1270.92
-2773.1
1192.92
-2591.11
1118.21
-2333.35
1042.14
-1954.86
921.413
-1307.15
652.491
-7.24702
4.04102
2207.5
-29.2933
1840.21
-153.11
1898.32
-249.821
1760.59
-349.945
1680.99
-435.021
1585.84
-504.65
1492.99
-555.618
1398.36
-588.375
1303.68
-606.831
1211.38
-614.276
1125.65
-597.519
1025.38
-481.235
805.127
-166.271
337.524
-173.516
-112.933
2320.43
-303.792
2031.07
-483.05
2077.58
-586.601
1864.14
-681.724
1776.11
-742.479
1646.59
-779.255
1529.77
-792.892
1411.99
-783.844
1294.63
-753.592
1181.13
-701.251
1073.31
-608.069
932.244
-431.67
628.789
-175.659
81.6169
-349.178
53.5586
2266.85
2.89097
2081.71
-11.0569
2091.5
11.5769
1841.48
33.728
1753.94
74.566
1605.73
129.037
1475.27
197.038
1343.97
274.454
1217.2
358.547
1097.01
447.793
984.056
521.437
858.531
498.347
651.792
242.453
337.346
-106.728
107.674
2159.14
139.261
2050.09
192.269
2038.46
258.932
1774.78
316.196
1696.63
382.713
1539.17
447.42
1410.53
510.549
1280.8
564.62
1163.09
605.672
1055.92
635.306
954.385
638.482
855.318
554.874
735.337
323.598
568.488
216.869
47.4844
2111.61
82.6172
2014.91
115.065
2005.96
149.447
1740.34
174.917
1671.11
213.316
1500.72
249.537
1374.25
303.122
1227.16
383.871
1082.29
478.224
961.521
543.832
888.745
548.447
850.652
464.242
819.488
279.937
752.711
496.804
-21.5015
2133.08
-38.6419
2032.01
-46.563
2013.85
-73.2184
1766.96
-94.7929
1692.65
-112.841
1518.73
-123.691
1385.07
-81.9497
1185.4
43.5116
956.796
224.9
780.073
381.1
732.526
451.554
780.069
401.307
869.631
237.63
916.268
734.435
-33.7906
2166.85
-161.203
2159.41
-233.116
2085.74
-329.092
1862.92
-421.308
1784.86
-515.423
1612.84
-607.055
1476.7
-662.039
1240.37
-653.092
947.844
-569.498
696.489
-411.81
574.825
-204.767
573.113
-26.7308
691.672
36.7846
852.839
771.217
56.2695
2110.58
-124.568
2340.24
-232.28
2193.46
-340.044
1970.67
-449.456
1894.26
-564.167
1727.54
-690.679
1603.2
-838.833
1388.52
-1004.32
1113.32
-1140.06
832.198
-1167.89
602.661
-1018.2
423.283
-680.96
354.305
-265.973
437.679
505.247
176.246
1934.35
73.5818
2442.92
-10.439
2277.5
-73.1281
2033.38
-114.928
1936.08
-161.986
1774.61
-205.647
1646.88
-295.352
1478.23
-452.193
1270.19
-647.079
1027.13
-822.746
778.336
-913.121
513.832
-814.554
255.919
-461.451
84.8249
43.7958
232.519
1701.86
244.999
2430.47
239.368
2283.16
250.526
2022.25
278.45
1908.18
298.774
1754.31
325.73
1619.94
322.719
1481.27
264.731
1328.2
148.198
1143.68
-6.25415
932.845
-183.024
690.545
-317.399
390.278
-300.649
68.0678
-256.848
202.556
1499.34
223.661
2409.39
179.697
2327.15
166.709
2035.28
193.127
1881.81
229.675
1717.79
276.883
1572.77
320.332
1437.84
340.419
1308.15
330.32
1153.83
295.238
967.939
237.011
748.951
156.836
470.716
53.9166
171.364
-202.93
468.441
1030.93
543.305
2334.55
492
2378.48
377.03
2150.27
277.815
1981.04
198.844
1796.78
146.28
1625.34
116.424
1467.71
100.957
1323.63
82.2121
1172.59
47.0283
1003.14
0.782587
795.2
-13.7677
485.3
151.263
6.39615
-51.6659
-1526.31
2557.26
-2241.61
3049.85
-2440.06
2576.93
-2443
2153.22
-2294.78
1832.83
-2108.72
1610.73
-1905.46
1422.1
-1684.69
1246.95
-1449.52
1088.46
-1190.68
913.767
-902.122
714.582
-509.087
402.185
-85.2745
61.5213
205.146
-283.958
153.479
-3523.71
-4758.62
-5134.57
-5101.83
-4705.7
-4333.04
-3903.77
-3494.24
-3222.74
-2841.05
-2668.97
-2233.6
-1959.25
-1489.29
-0.000150892
-4478.09
4478.09
-4478.09
-4478.09
-4478.09
-9183.8
4705.71
-9183.8
-9183.8
-9183.8
-13683.7
4499.9
-13683.7
-13683.7
-17780.4
4096.75
-17780.4
-17780.4
-17780.4
-21282.3
3501.86
-21282.3
-21282.3
-24117.9
2835.56
-24117.9
-24117.9
-24117.9
-26287.1
2169.24
-26287.1
-26287.1
-26287.1
-27681.6
1394.52
-27681.6
-27681.6
-28273.8
592.157
-28273.8
-28273.8
-28273.8
-28058.2
-215.629
-28058.2
-28058.2
-26956.8
-1101.31
-26956.8
-26956.8
-26956.8
-24946.2
-2010.6
-24946.2
-24946.2
-24946.2
-22089.4
-2856.81
-22089.4
-22089.4
-18553.3
-3536.12
-18553.3
-18553.3
-18553.3
-14512.7
-4040.59
-14512.7
-14512.7
-14512.7
-10080.3
-4432.44
-10080.3
-10080.3
-5350.16
-4730.13
-5350.16
-5350.16
-5350.16
-488.078
-4862.08
-488.079
-488.08
4731.81
-5219.89
4731.81
4731.81
4731.81
10160.2
-5428.36
10160.2
10160.2
10160.2
15483.6
-5323.47
15483.6
15483.6
20639.2
-5155.53
20639.2
20639.2
20070.4
19592.2
19461.2
23988.9
-4633.98
23906.9
23787.6
23625.8
23467.6
23327.3
23194.7
23081
22998.4
26151.7
-3235.1
26199.3
26205.5
26134.7
26120.5
26135.2
26136.2
26120.9
26101.7
28104.4
-1981.89
28279.6
28418.1
28486.3
28563
28660.3
28771.8
28876.5
28982.2
29079.8
30480.7
-1321.18
30674.6
30854.4
30986.1
31114.2
31249.4
31388.6
31532
31667.3
32743.4
-955.631
32944.9
33155
33335.7
33513.2
33700.5
33887.2
34075.2
34275.9
34938.6
-474.532
35192.3
35467.3
35704.2
35953.7
36221.5
36487.7
36761.7
37043.3
37395
-72.6203
37774.3
38195.3
38585.9
38984.4
39408.1
39937.7
40481.8
41032.1
41602.7
41073.9
1062.26
41773.4
42594.8
43372
44155.6
44983.6
45908.5
47021
48161.6
47121.7
2037.8
48268.2
49607.9
49607.9
47480.5
2127.48
44775.8
2704.63
44775.8
42626.2
2149.64
42626.2
40822.9
1803.25
38626.6
2196.35
38626.6
36997.4
1629.19
35026.2
1971.15
35026.2
33436.7
1589.5
33436.7
32108.6
1328.11
30604.5
1504.17
30604.5
29472
1132.43
29472
28594.3
877.719
27693.8
900.556
27693.8
27162.9
530.899
26668
494.905
26668
26526
141.981
26526
26628.5
-102.562
26874.4
-245.901
26874.4
27418.5
-544.06
27418.5
28126.1
-707.556
28956.4
-830.378
28956.4
29923.3
-966.847
30943.4
-1020.15
30943.4
32087
-1143.57
32087
33249.5
-1162.5
34412.1
-1162.62
34412.1
35649.5
-1237.34
35649.5
36864.3
-1214.86
38012.7
-1148.37
38012.7
39187
-1174.35
40217.8
-1030.78
40217.8
41282.4
-1064.58
41282.4
42290.4
-1008.05
43115.3
-824.85
43115.3
43991.4
-876.141
43991.4
44829.8
-838.342
45474.2
-644.374
45474.2
46236
-761.828
46787.4
-551.381
46787.4
47483.1
-695.737
47483.1
48230.7
-747.639
48831.4
-600.69
48831.4
49643.4
-811.981
49643.4
50548.4
-904.996
51343.8
-795.383
51343.8
52392.3
-1048.55
53312.6
-920.303
53312.6
54484.5
-1171.82
54484.5
-1356.02
-1682.71
-5569.73
-1524.21
-3918.56
-1462.84
-2660.43
-1399.89
730.425
-1384.53
3388.43
-1380.56
5692.05
-1383.32
7377.06
-1388.95
8708.79
-1394.99
9810.87
-1393.89
10829.1
-1378.19
11733.5
-1345.7
12488.1
-1297.29
13128.9
-1232.73
13682.5
-1151.27
14029.5
-1056.03
13979.8
-953.893
13385.5
-851.197
12187.6
-754.1
10351.3
-665.678
7920.27
-563.725
4822.73
-356.808
-588.707
-235.031
-6431.75
-174.712
-8895.66
-182.324
-11095.9
-195.36
-12724.8
-97.6858
-13988.4
78.9266
-14026.4
68.4227
-14107.2
-300.527
-18087.1
-778.095
-22120.7
-1127.09
-24784.3
-1374.81
-26793.8
-1571.66
-28118.6
-1697.13
-28541
-1664.79
-27921.5
-1521.76
-27095.9
-1379.47
-25901.4
-1134.89
-23475.3
-664.165
-19866.4
-50.4973
-15034.5
556.679
-6659.41
942.578
6828.52
1536.5
14494.8
2415.85
21988
2850.15
25104.3
2431.36
24289.8
1919.66
27206.5
1893.03
39742.4
2080.99
50833.1
2337.88
59121.6
2553.05
64946.5
2695.91
68002.5
3085.44
74373.4
3761.06
83574
4381.64
88299.1
4626.55
82102.2
4419.4
61864.5
3838.56
31867.3
2816.16
7950.04
1942.22
8998.23
1705.47
20146.5
1668.37
21456.9
1659.26
18113.5
1679.09
15100.3
1660.27
12622.9
1702.32
14066.3
1356.23
12327.5
816.668
17750.7
521.492
19077.6
12.088
-27845
127.566
-69060.7
761.363
-68004.3
855.835
-64307
814.234
-62780.7
709.878
-63315.4
692.317
-63754.4
996.637
-65992.5
-64980.5
-1838.7
-5777.78
-1632.89
-4124.37
-1534.03
-2759.28
-1433.93
630.326
-1401.79
3356.28
-1390.33
5680.59
-1389.37
7376.1
-1393.03
8712.46
-1398.01
9815.85
-1395.71
10826.8
-1378.58
11716.4
-1344.79
12454.3
-1295.55
13079.7
-1230.61
13617.5
-1148.85
13947.7
-1053.32
13884.2
-950.723
13282.9
-846.966
12083.9
-747.521
10251.8
-652.46
7825.21
-518.431
4688.7
-262.801
-844.337
-232.138
-6462.41
-208.779
-8919.02
-245.662
-11059
-270.24
-12700.2
-173.398
-14085.3
37.7591
-14237.6
67.4301
-14136.9
-279.638
-17740
-768.196
-21632.1
-1183.43
-24369
-1505.14
-26472.1
-1748.63
-27875.2
-1863.26
-28426.4
-1792.53
-27992.2
-1623.28
-27265.1
-1424.58
-26100.1
-1071.48
-23828.4
-514.223
-20423.6
93.5253
-15642.2
756.257
-7322.14
1181.99
6402.79
1656.86
14020
2442.85
21202
2830.11
24717
2424.54
24695.4
1924.81
27706.2
1899.85
39767.3
2078.32
50654.6
2325.02
58874.9
2535.95
64735.6
2681.17
67857.2
3065.48
73989.1
3732.91
82906.5
4354.52
87677.5
4611.38
81845.3
4416.68
62059.2
3831.27
32452.7
2815.16
8966.15
1934.68
9878.71
1707.23
20374
1671.78
21492.4
1660.34
18124.9
1679.43
15081.2
1666.25
12636.1
1737.55
13995
1449.01
12616
1074.47
18125.3
958.704
19193.4
255.556
-27141.8
80.843
-68886
747.708
-68671.2
831.544
-64390.9
763.568
-62712.8
616.996
-63168.9
592.465
-63729.9
796.78
-66196.8
-65355.6
-1937.11
-6008.05
-1707.32
-4354.17
-1577.76
-2888.84
-1460.65
513.212
-1417.93
3313.57
-1400.36
5663.01
-1396.32
7372.07
-1398.37
8714.5
-1402.14
9819.62
-1398.38
10823.1
-1379.52
11697.5
-1344.13
12418.9
-1293.66
13029.2
-1227.83
13551.7
-1145.27
13865.2
-1048.98
13787.9
-945.478
13179.4
-840.34
11978.7
-738.583
10150.1
-638.059
7724.68
-497.278
4547.92
-270.482
-1071.13
-265.492
-6467.4
-247.789
-8936.72
-286.331
-11020.5
-314.305
-12672.2
-242.547
-14157
-23.6595
-14456.5
45.0036
-14205.5
-283.928
-17411.1
-763.303
-21152.7
-1199.78
-23932.5
-1564.39
-26107.5
-1838.84
-27600.7
-1952.94
-28312.3
-1872.89
-28072.3
-1688.47
-27449.5
-1444.4
-26344.1
-1045.07
-24227.7
-474.308
-20994.4
130.586
-16247.1
912.247
-8103.8
1492.72
5822.32
1858.42
13654.3
2498.27
20562.2
2824.03
24391.2
2436.57
25082.8
1945.62
28197.2
1908.95
39804
2075.73
50487.8
2310.16
58640.5
2515.86
64529.9
2656.06
67717
3028.29
73616.8
3687.6
82247.2
4313.17
87051.9
4584.88
81573.6
4415.34
62228.7
3864.88
33003.1
2861.14
9969.89
1951.31
10788.5
1707.38
20617.9
1674.71
21525
1663.68
18136
1686.77
15058.1
1686.96
12635.9
1805.59
13876.4
1611.49
12810.1
1466.54
18270.2
1568.31
19091.6
563.869
-26137.4
135.219
-68457.3
756.653
-69292.6
830.588
-64464.8
739.129
-62621.3
565.795
-62995.5
539.072
-63703.2
758.491
-66416.2
-65517.4
-2029.72
-6260
-1776.94
-4606.95
-1616.46
-3049.31
-1478.61
375.365
-1429.85
3264.81
-1408.71
5641.87
-1402.87
7366.23
-1403.9
8715.54
-1406.61
9822.33
-1401.35
10817.8
-1380.68
11676.9
-1343.55
12381.8
-1291.62
12977.3
-1224.58
13484.7
-1140.91
13781.5
-1043.66
13690.7
-939.181
13075
-832.956
11872.5
-729.96
10047.1
-628.003
7622.73
-493.854
4413.78
-283.262
-1281.73
-277.639
-6473.03
-272.193
-8942.17
-320.067
-10972.6
-358.537
-12633.7
-316.695
-14198.9
-94.8044
-14678.4
17.4663
-14317.8
-294.475
-17099.2
-772.254
-20675
-1229.93
-23474.9
-1637.95
-25699.4
-1948.85
-27289.8
-2070
-28191.1
-1981.45
-28160.8
-1777.29
-27653.7
-1489.48
-26631.9
-1044.88
-24672.3
-451.938
-21587.3
171.52
-16870.6
1051.55
-8983.84
1800.64
5073.23
2099.91
13355
2577
20085.1
2849.41
24118.8
2499.49
25432.7
2002.89
28693.8
1926.11
39880.8
2072.53
50341.4
2292.59
58420.4
2491.99
64330.5
2624.9
67584.1
2982.15
73259.6
3629.74
81599.6
4256.63
86425
4544.76
81285.5
4412.12
62361.3
3926.03
33489.2
2939.17
10956.7
1982.16
11745.6
1711.9
20888.1
1679.56
21557.4
1672.03
18143.5
1703.66
15026.5
1721.93
12617.7
1897.19
13701.1
1804.41
12902.9
1968.5
18106.1
2298.96
18761.1
947.505
-24785.9
234.652
-67744.5
781.073
-69839
835.925
-64519.6
714.372
-62499.7
511.096
-62792.3
482.387
-63674.4
696.494
-66630.3
-65869.4
-2109.07
-6527.43
-1839.23
-4876.79
-1652.89
-3235.65
-1495
217.474
-1440.59
3210.4
-1416.83
5618.1
-1409.86
7359.26
-1410.15
8715.84
-1411.83
9824
-1404.94
10810.9
-1382.32
11654.2
-1343.27
12342.7
-1289.64
12923.6
-1221.13
13416.2
-1136.08
13696.4
-1037.64
13592.2
-932.091
12969.4
-824.873
11765.3
-721.162
9943.35
-619.271
7520.84
-490.226
4284.73
-285.927
-1486.02
-291.474
-6467.48
-300.003
-8933.64
-353.025
-10919.6
-398.78
-12588
-388.89
-14208.8
-178.651
-14888.6
-25.9256
-14470.5
-316.334
-16808.8
-793.385
-20197.9
-1264.34
-23003.9
-1707.62
-25256.2
-2055.15
-26942.3
-2191.21
-28055.1
-2101.21
-28250.8
-1877.67
-27877.2
-1548.24
-26961.4
-1069.44
-25151.1
-466.85
-22189.9
176.799
-17514.2
1128.98
-9936.02
2065.12
4137.08
2358.37
13061.7
2712.69
19730.8
2957.43
23874.1
2652.52
25737.7
2117.21
29229.1
1960.06
40037.9
2071
50230.5
2272.13
58219.3
2463.38
64139.2
2586.81
67460.7
2926.73
72919.7
3559.4
80967
4184.47
85799.9
4488.68
80981.3
4399.3
62450.7
3997.05
33891.5
3037.25
11916.5
2021.7
12761.1
1718.99
21190.9
1687.5
21588.9
1686.79
18144.2
1730.76
14982.5
1770.87
12577.6
2008.61
13463.4
2026.77
12884.7
2503.98
17628.9
3040.38
18224.7
1393.99
-23139.6
386.628
-66737.1
822.864
-70275.3
851.485
-64548.3
696.472
-62344.7
465.982
-62561.8
436.997
-63645.5
618.881
-66812.2
-66045.9
-2174.25
-6806.22
-1890.49
-5160.55
-1682.05
-3444.09
-1508.95
44.3698
-1450.55
3152
-1425.13
5592.68
-1417.62
7351.75
-1417.42
8715.64
-1418.08
9824.65
-1409.46
10802.3
-1384.73
11629.5
-1343.57
12301.6
-1287.98
12868.1
-1217.72
13345.9
-1131.01
13609.7
-1031.12
13492.3
-924.305
12862.6
-816.026
11657
-711.787
9839.11
-610.421
7419.47
-486.031
4160.34
-295.263
-1676.79
-309.713
-6453.03
-325.304
-8918.05
-379.066
-10865.8
-430.668
-12536.4
-451.08
-14188.4
-270.805
-15068.9
-87.5004
-14653.8
-348.998
-16547.3
-829.111
-19717.8
-1310.72
-22522.3
-1781.55
-24785.3
-2165.29
-26558.5
-2324.79
-27895.6
-2238.89
-28336.7
-1995.46
-28120.7
-1628.78
-27328.1
-1124.63
-25655.3
-517.066
-22797.5
146.582
-18177.9
1131.8
-10921.2
2295.27
2973.62
2657.21
12699.8
2967.23
19420.7
3193.58
23647.8
2907.44
26023.8
2290.81
29845.7
2015.39
40313.3
2073.11
50172.8
2248.93
58043.5
2429.11
63959
2541.09
67348.7
2861.41
72599.3
3476.18
80352.2
4096.69
85179.4
4414.9
80663.1
4373.16
62492.5
4071.21
34193.4
3148.11
12839.6
2068.87
13840.3
1727.53
21532.2
1698.76
21617.6
1708.82
18134.1
1768.25
14923.1
1833.97
12511.8
2134.22
13163.1
2273.58
12745.4
3019.84
16882.7
3734.75
17509.8
1879.37
-21284.2
583.032
-65440.8
881.877
-70574.1
876.127
-64542.5
684.738
-62153.3
430.484
-62307.5
403.945
-63618.9
615.79
-67024.1
-66335.2
-2224.97
-7092.5
-1931.56
-5453.96
-1704.25
-3671.4
-1518.68
-141.198
-1458.98
3092.3
-1433.3
5567
-1426.05
7344.5
-1425.72
8715.32
-1425.43
9824.36
-1415.02
10791.9
-1388.05
11602.5
-1344.59
12258.1
-1286.82
12810.3
-1214.53
13273.6
-1125.87
13521.1
-1024.27
13390.7
-916.005
12754.3
-806.613
11547.6
-702.042
9734.54
-601.758
7319.19
-483.411
4041.99
-308.645
-1851.56
-325.292
-6436.38
-345.823
-8897.51
-399.458
-10812.2
-454.71
-12481.1
-500.105
-14143
-368.27
-15200.7
-169.124
-14853
-392.036
-16324.4
-876.566
-19233.3
-1369.19
-22029.7
-1862.11
-24292.4
-2281.29
-26139.3
-2471.36
-27705.5
-2394.75
-28413.3
-2132.52
-28382.9
-1733.22
-27727.4
-1210.72
-26177.8
-602.284
-23405.9
77.2931
-18857.5
1036.12
-11880.1
2509.63
1500.11
3011.92
12197.5
3369.01
19063.6
3565.09
23451.7
3241.96
26346.9
2508.81
30578.9
2093.78
40728.4
2080.78
50185.8
2223.3
57900.9
2388.29
63794.1
2487.48
67249.5
2786.65
72300.2
3380.12
79758.7
3993
84566.5
4321.66
80334.4
4333.44
62480.7
4137.55
34389.3
3251.95
13725.2
2114.44
14977.9
1736.29
21910.4
1713.49
21640.4
1738.46
18109.2
1815.88
14845.6
1910.49
12417.2
2267.94
12805.7
2534.62
12478.7
3496.92
15920.4
4362.84
16643.9
2385.64
-19307
817.697
-63872.8
957.915
-70714.3
909.81
-64494.4
680.297
-61923.8
407.635
-62034.9
382.777
-63594.1
503.51
-67144.8
-66643.6
-2261.44
-7383.67
-1962.34
-5753.07
-1720.1
-3913.64
-1524.21
-337.086
-1465.69
3033.77
-1441.28
5542.6
-1435.18
7338.39
-1435.16
8715.3
-1434.04
9823.24
-1421.78
10779.6
-1392.45
11573.2
-1346.53
12212.2
-1286.34
12750.1
-1211.75
13199
-1120.87
13430.2
-1017.32
13287.2
-907.432
12644.4
-796.898
11437.1
-692.175
9629.82
-593.404
7220.41
-481.163
3929.75
-320.512
-2012.21
-337.8
-6419.09
-363.24
-8872.07
-415.882
-10759.5
-471.596
-12425.4
-535.714
-14078.9
-466.294
-15270.1
-270.001
-15049.3
-447.265
-16147.1
-933.281
-18747.2
-1439.13
-21523.8
-1952.23
-23779.3
-2406.6
-25685
-2632.95
-27479.1
-2570.43
-28475.9
-2291.65
-28661.7
-1864.65
-28154.4
-1329.67
-26712.8
-723.367
-24012.2
-31.2356
-19549.6
900.388
-12811.7
2590.78
-190.28
3379.03
11409.3
3864.31
18578.4
4027.59
23288.4
3614.84
26759.7
2750.48
31443.2
2196.23
41282.6
2096.73
50285.3
2196.09
57801.6
2339.99
63650.2
2426.03
67163.5
2703.13
72023.1
3271.41
79190.4
3873.1
83964.8
4206.76
80000.7
4277.65
62409.8
4171.74
34495.2
3311.18
14585.8
2141.27
16147.8
1742.73
22308.9
1731.6
21651.6
1775.54
18065.2
1873.11
14748.1
1998.99
12291.4
2405.03
12399.7
2797.48
12086.3
3930.56
14787.3
4920.66
15653.8
2894.61
-17280.9
1083.21
-62061.4
1050.49
-70681.6
952.144
-64396.1
683.664
-61655.3
399.252
-61750.4
379.575
-63574.4
516.969
-67282.2
-66727.3
-2284.99
-7678.46
-1981.97
-6056.09
-1728.8
-4166.81
-1525.75
-540.129
-1470.67
2978.69
-1449.15
5521.07
-1445.13
7334.38
-1445.91
8716.08
-1444.11
9821.45
-1429.97
10765.5
-1398.17
11541.4
-1349.62
12163.7
-1286.79
12687.2
-1209.62
13121.9
-1116.24
13336.8
-1010.5
13181.4
-898.817
12532.8
-787.086
11325.4
-682.296
9525.02
-585.17
7123.29
-478.224
3822.81
-330.524
-2159.91
-348.755
-6400.86
-378.59
-8842.24
-429.562
-10708.6
-483.305
-12371.7
-560.256
-14001.9
-557.738
-15272.6
-385.764
-15221.2
-517.451
-16015.4
-996.805
-18267.9
-1518.35
-21002.3
-2053.08
-23244.6
-2543.54
-25194.5
-2810.41
-27212.3
-2766.47
-28519.8
-2474.81
-28953.3
-2025.27
-28603.9
-1482.59
-27255.4
-880.46
-24614.4
-177.702
-20252.4
773.542
-13762.9
2550.48
-1967.21
3695.52
10264.2
4353.42
17920.5
4503.54
23138.3
3981.72
27281.5
2998.18
32426.8
2323.87
41956.9
2124.5
50484.6
2168.42
57757.7
2283.67
63534.9
2357.5
67089.7
2611.88
71768.7
3150.41
78651.9
3736.96
83378.3
4068.37
79669.3
4196.24
62281.9
4139.85
34551.6
3284.66
15441
2131.32
17301.1
1743.97
22696.2
1752.81
21642.7
1819.66
17998.4
1939.34
14628.4
2097.85
12132.9
2542.13
11955.4
3049.69
11578.7
4316.13
13520.8
5406.81
14563.1
3390.63
-15264.8
1371.71
-60042.5
1158.68
-70468.6
1002.72
-64240.1
695.149
-61347.8
405.137
-61460.4
393.149
-63562.4
540.846
-67429.9
-66934.1
-2297.88
-7976.17
-1989.96
-6364.01
-1728.96
-4427.82
-1523.23
-745.851
-1473.74
2929.19
-1456.91
5504.24
-1456
7333.47
-1458.08
8718.16
-1455.79
9819.16
-1439.76
10749.5
-1405.4
11507.1
-1354.08
12112.3
-1288.37
12621.5
-1208.35
13041.8
-1112.21
13240.6
-1004.02
13073.3
-890.352
12419.1
-777.339
11212.4
-672.48
9420.17
-576.963
7027.77
-474.612
3720.45
-339.863
-2294.66
-358.893
-6381.83
-392.486
-8808.65
-441.991
-10659.1
-493.196
-12320.5
-577.673
-13917.4
-635.011
-15215.3
-509.311
-15346.9
-604.778
-15919.9
-1065.73
-17806.9
-1604.44
-20463.6
-2164.2
-22684.8
-2692.76
-24666
-3003.56
-26901.5
-2982.89
-28540.5
-2683.49
-29252.7
-2216.86
-29070.5
-1670.45
-27801.8
-1073.8
-25211
-361.86
-20964.3
620.93
-14745.7
2490.13
-3836.41
3934.06
8820.28
4764.89
17089.6
4927.08
22976.1
4310.55
27898
3243.04
33494.3
2480.27
42719.7
2169.41
50795.5
2140.84
57786.2
2219.1
63456.7
2280.4
67028.4
2510.76
71538.3
3017.25
78145.4
3584.81
82810.7
3906.58
79347.6
4074.94
62113.5
4014
34612.6
3151.86
16303.1
2075.46
18377.5
1737.86
23033.8
1776.68
21603.9
1870.19
17904.9
2014
14484.6
2205.48
11941.4
2677.48
11483.4
3281.08
10975.1
4646.05
12155.9
5817.59
13391.6
3859.7
-13306.9
1675.19
-57858
1281.18
-70074.6
1061.02
-64019.9
714.728
-61001.5
425.275
-61171
419.585
-63556.7
482.577
-67492.9
-67147.3
-2301.73
-8275.15
-1985.74
-6680.01
-1718.78
-4694.78
-1516.68
-947.944
-1474.69
2887.2
-1464.49
5494.04
-1467.83
7336.81
-1471.78
8722.11
-1469.21
9816.59
-1451.31
10731.6
-1414.31
11470
-1360.07
12058.1
-1291.29
12552.8
-1208.13
12958.7
-1108.95
13141.5
-998.071
12962.4
-882.208
12303.2
-767.798
11097.9
-662.811
9315.18
-568.786
6933.75
-470.45
3622.12
-349.31
-2415.8
-368.886
-6362.26
-405.948
-8771.58
-455.108
-10609.9
-504.966
-12270.6
-592.935
-13829.5
-695.054
-15113.2
-633.089
-15408.9
-708.825
-15844.2
-1139.81
-17376
-1695.18
-19908.2
-2283.82
-22096.2
-2852.92
-24096.9
-3210.86
-26543.5
-3219.02
-28532.3
-2918.71
-29553.1
-2440.79
-29548.4
-1893.82
-28348.8
-1303.36
-25801.5
-583.456
-21684.2
437.212
-15766.4
2390.99
-5790.18
4102.72
7108.54
5078.84
16113.5
5270.17
22784.8
4592.05
28576.2
3489.18
34597.2
2676.19
43532.7
2243.15
51228.5
2114.76
57914.6
2145.04
63426.4
2190.07
66983.3
2396.49
71331.9
2873.06
77668.8
3417.3
82266.5
3723.92
79040.9
3903.91
61933.6
3789.4
34727.1
2925.39
17167.1
1978.69
19324.2
1724.07
23288.5
1802.55
21525.4
1926.31
17781.1
2096.38
14314.5
2320.36
11717.4
2810.75
10993
3485.42
10300.4
4912.86
10728.4
6148.55
12155.9
4290.09
-11448.4
1985.86
-55553.8
1416.35
-69505.1
1126.44
-63730
742
-60617
458.212
-60887.2
460.275
-63558.8
530.807
-67563.4
-67167.9
-2294.76
-8571.92
-1967.31
-7007.45
-1695.82
-4966.28
-1506.26
-1137.49
-1473.38
2854.31
-1471.75
5492.41
-1480.58
7345.65
-1487.07
8728.59
-1484.45
9813.98
-1464.73
10711.8
-1425.02
11430.3
-1367.75
12000.8
-1295.71
12480.7
-1209.13
12872.1
-1106.64
13039
-992.813
12848.5
-874.535
12185
-758.589
10982
-653.364
9209.95
-560.638
6841.02
-465.718
3527.2
-359.409
-2522.11
-379.644
-6342.02
-420.622
-8730.61
-471.196
-10559.3
-522.085
-12219.7
-611.835
-13739.7
-743.088
-14981.9
-751.782
-15400.2
-826.678
-15769.3
-1220.7
-16981.9
-1788.96
-19339.9
-2409.34
-21475.8
-3020.99
-23485.2
-3429.43
-26135.1
-3473.47
-28488.3
-3181.01
-29845.5
-2698.14
-30031.3
-2152.97
-28894
-1568.88
-26385.6
-842.44
-22410.6
217.24
-16826.1
2241.3
-7814.24
4220.79
5129.05
5306.46
15027.8
5537.26
22553.9
4836.19
29277.2
3751.6
35681.7
2931.73
44352.6
2371.41
51788.8
2099.69
58186.4
2059.83
63466.2
2082.69
66960.5
2267.87
71146.7
2718.26
77218.5
3235.22
81749.5
3524.18
78752
3684.44
61773.3
3487.77
34923.7
2642.91
18012
1857.04
20110.1
1704.57
23440.9
1829.91
21400.1
1987.16
17623.9
2185.63
14116
2441.15
11461.9
2942.58
10491.6
3660.89
9582.1
5113.05
9276.27
6397.19
10871.7
4672.83
-9724.03
2296.54
-53177.5
1562.27
-68770.8
1198.25
-63366
776.15
-60194.9
500.655
-60611.7
510.361
-63568.5
573.917
-67627
-67355.8
-2270.63
-8861.87
-1931.01
-7347.07
-1659.02
-5238.26
-1491.52
-1305
-1469.83
2832.62
-1478.61
5501.19
-1494.2
7361.24
-1503.95
8738.34
-1501.61
9811.64
-1480.12
10690.4
-1437.67
11387.9
-1377.26
11940.4
-1301.76
12405.2
-1211.5
12781.8
-1105.43
12932.9
-988.405
12731.5
-867.477
12064
-749.825
10864.3
-644.198
9104.33
-552.535
6749.36
-460.541
3435.2
-370.725
-2611.92
-392.189
-6320.56
-438.259
-8684.54
-492.631
-10504.9
-547.709
-12164.6
-640.174
-13647.2
-790.264
-14831.8
-864.638
-15325.8
-955.944
-15678
-1312.56
-16625.3
-1885.22
-18767.3
-2537.96
-20823
-3192.96
-22830.2
-3655.36
-25672.7
-3743.99
-28399.6
-3470.28
-30119.2
-2989.57
-30512
-2447.98
-29435.6
-1870.21
-26963.3
-1139.27
-23141.6
-46.1486
-17919.2
2003.2
-9863.59
4301.35
2830.9
5461.12
13868.1
5747.27
22267.8
5061.7
29962.8
4045.71
36697.7
3266.48
45131.8
2592.44
52462.9
2123.05
58655.7
1965.72
63623.6
1955.21
66971
2124.15
70977.8
2552.28
76790.3
3039.21
81262.6
3310.58
78480.6
3427.65
61656.2
3145.19
35206.2
2347.66
18809.5
1729.69
20728
1683.06
23487.6
1858.7
21224.4
2052
17430.6
2280.78
13887.3
2566.68
11176
3073.88
9984.36
3809.71
8846.27
5248.89
7837.09
6564.73
9555.91
5002.08
-8161.38
2600.88
-50776.3
1716.86
-67886.8
1275.63
-62924.8
816.02
-59735.3
549.048
-60344.7
565.104
-63584.5
603.842
-67665.7
-67396.3
-2221.27
-9141.21
-1872.89
-7695.45
-1608.9
-5502.25
-1471.46
-1442.44
-1464.13
2825.29
-1485.06
5522.12
-1508.6
7384.78
-1522.38
8752.12
-1520.69
9809.94
-1497.55
10667.2
-1452.34
11342.7
-1388.71
11876.8
-1309.6
12326.1
-1215.39
12687.6
-1105.48
12823
-985
12611
-861.177
11940.2
-741.619
10744.8
-635.378
8998.08
-544.585
6658.57
-455.547
3346.17
-383.595
-2683.87
-407.618
-6296.53
-460.457
-8631.7
-521.714
-10443.7
-584.62
-12101.7
-682.531
-13549.3
-846.778
-14667.6
-975.436
-15197.2
-1096.2
-15557.2
-1420.07
-16301.4
-1985.25
-18202.1
-2667.39
-20140.9
-3364.64
-22133
-3884.09
-25153.2
-4027.52
-28256.2
-3785.59
-30361.2
-3315.23
-30982.4
-2778.91
-29971.9
-2207.48
-27534.8
-1474.93
-23874.1
-360.895
-19033.2
1617.11
-11841.6
4237.59
210.417
5547.71
12557.9
5921.51
21894
5289.08
30595.2
4376.2
37610.6
3677.54
45830.4
2933.83
53206.6
2229.31
59360.3
1878.2
63974.7
1805.16
67044
1962.69
70820.3
2373.89
76379.1
2829.64
80806.9
3084.79
78225.5
3148.72
61592.3
2796.91
35558
2072.91
19533.5
1612.26
21188.7
1663.65
23436.2
1889.38
20998.7
2120.31
17199.6
2380.81
13626.8
2695.82
10861
3205.4
9474.77
3936.87
8114.8
5328.48
6445.48
6657.1
8227.29
5275.3
-6779.57
2893.68
-48394.6
1877.97
-66871.1
1357.72
-62404.5
860.182
-59237.8
598.989
-60083.5
620.169
-63605.7
689.577
-67735.1
-67545.1
-2143.37
-9407.7
-1792.43
-8046.39
-1545.84
-5748.84
-1444.82
-1543.45
-1456.22
2836.69
-1491.13
5557.03
-1523.72
7417.38
-1542.28
8770.68
-1541.68
9809.34
-1517.08
10642.6
-1469.12
11294.7
-1402.21
11809.9
-1319.33
12243.2
-1220.93
12589.2
-1106.94
12709
-982.749
12486.9
-855.78
11813.2
-734.093
10623.1
-626.992
8890.98
-536.99
6568.56
-451.882
3261.06
-397.458
-2738.3
-427.018
-6266.97
-488.861
-8569.86
-560.417
-10372.1
-634.682
-12027.5
-741.257
-13442.8
-917.82
-14491
-1089.81
-15025.2
-1246.64
-15400.4
-1545.67
-16002.4
-2093.14
-17654.6
-2796.78
-19437.3
-3532.35
-21397.4
-4110.95
-24574.6
-4320.29
-28046.9
-4125.15
-30556.3
-3674.8
-31432.7
-3145.91
-30500.8
-2581.32
-28099.4
-1851.1
-24604.3
-730.735
-20153.6
1134.75
-13707.1
3904.79
-2559.62
5578.16
10884.6
6071.68
21400.5
5530.84
31136.1
4734.9
38406.6
4129.63
46435.7
3381.18
53955
2458.4
60283
1832.12
64601
1635.79
67240.3
1778.22
70677.8
2179.09
75978.3
2606.08
80379.9
2847.24
77984.3
2861.69
61577.9
2468.66
35951
1836.84
20165.3
1513.84
21511.7
1649.58
23300.4
1922.56
20725.7
2191.65
16930.5
2484.63
13333.8
2827.45
10518.1
3337.5
8964.71
4048.5
7403.81
5363.86
5130.11
6684.13
6907.02
5492.94
-5588.38
3170.91
-46072.6
2043.54
-65743.7
1443.59
-61804.6
907.091
-58701.3
646.545
-59823
667.419
-63626.6
679.672
-67747.4
-67741.6
-2041.84
-9658.77
-1694.94
-8393.29
-1470.95
-5972.82
-1409.82
-1604.59
-1445.76
2872.64
-1496.81
5608.07
-1539.57
7460.13
-1563.54
8794.65
-1564.5
9810.3
-1538.68
10616.8
-1488.07
11244.1
-1417.83
11739.6
-1331.06
12156.5
-1228.25
12486.4
-1109.93
12590.7
-981.791
12358.7
-851.427
11682.9
-727.37
10499
-619.153
8782.77
-529.964
6479.37
-450.258
3181.35
-412.574
-2775.98
-451.522
-6228.03
-524.992
-8496.39
-609.758
-10287.4
-697.906
-11939.3
-815.864
-13324.8
-1004.09
-14302.8
-1211.71
-14817.6
-1404.73
-15207.4
-1688.72
-15718.4
-2214.81
-17128.5
-2927.68
-18724.4
-3693.65
-20631.4
-4331.61
-23936.7
-4618.04
-27760.4
-4486.35
-30688
-4067.51
-31851.6
-3549.25
-31019.1
-2992.78
-28655.8
-2270.04
-25327.1
-1154.86
-21268.8
651.444
-15513.4
3549.81
-5457.99
5585.16
8849.21
6204.33
20781.3
5788.38
31552
5108.4
39086.5
4575.71
46968.4
3876.07
54654.7
2816.14
61343
1873.88
65543.2
1464.45
67649.8
1565.56
70576.7
1963.08
75580.8
2367.2
79975.8
2596.91
77754.6
2575.9
61598.9
2174.37
36352.6
1644.55
20695.2
1437.34
21718.9
1642.69
23095.1
1958.76
20409.7
2265.51
16623.8
2591
13008.3
2960.31
10148.8
3470.12
8454.91
4150.75
6723.17
5368.67
3912.19
6657.94
5617.76
5657.97
-4588.41
3429.85
-43844.5
2211.63
-64525.5
1532.33
-61125.3
955.193
-58124.2
688.298
-59556.1
705.959
-63644.2
752.246
-67793.7
-67814.2
-1924.73
-9889.58
-1589.7
-8728.32
-1386.88
-6175.65
-1364.31
-1627.16
-1431.84
2940.16
-1501.86
5678.09
-1556.12
7514.39
-1586.1
8824.63
-1589.04
9813.24
-1562.34
10590.1
-1509.21
11191
-1435.65
11666.1
-1344.89
12065.7
-1237.45
12379
-1114.58
12467.8
-982.247
12226.4
-848.242
11548.9
-721.565
10372.4
-611.986
8673.19
-523.686
6391.07
-450.633
3108.3
-430.169
-2796.45
-482.232
-6175.96
-569.635
-8408.98
-668.851
-10188.2
-771.551
-11836.6
-902.825
-13193.5
-1102.94
-14102.7
-1340.41
-14580.1
-1567
-14980.8
-1846.41
-15439
-2354.44
-16620.5
-3064.25
-18014.6
-3848.2
-19847.5
-4542.62
-23242.2
-4916.36
-27386.7
-4865.89
-30738.5
-4492.14
-32225.3
-3989.33
-31521.9
-3443.28
-29201.9
-2733.97
-26036.4
-1634.14
-22368.6
142.125
-17289.6
3162.61
-8478.47
5571.95
6439.87
6319.77
20033.5
6059.43
31812.4
5485.43
39660.5
4986.55
47467.3
4351.19
55290
3263.39
62430.8
2039.11
66767.5
1323.09
68365.8
1323.03
70576.8
1723.24
75180.5
2112.16
79586.8
2331.88
77534.9
2294.99
61635.8
1917.57
36730
1492.31
21120.4
1381.35
21829.8
1643.64
22832.8
1998.35
20054.9
2341.3
16280.8
2698.39
12651.2
3092.8
9754.42
3602.58
7945.13
4248.66
6077.09
5356.15
2804.7
6591.61
4382.3
5775.32
-3772.13
3668.96
-41738.1
2380.52
-63237.1
1623.09
-60367.8
1003
-57504.1
720.567
-59273.7
730.718
-63654.4
815.341
-67878.3
-68006.9
-1795.48
-10094.4
-1484.13
-9039.66
-1297.21
-6362.57
-1305.82
-1618.54
-1412.96
3047.3
-1505.64
5770.77
-1573.25
7582.01
-1609.92
8861.29
-1615.22
9818.54
-1587.96
10562.8
-1532.53
11135.5
-1455.69
11589.2
-1360.86
11970.9
-1248.61
12266.7
-1120.97
12340.2
-984.207
12089.6
-846.321
11411
-716.773
10242.8
-605.618
8562.03
-518.271
6303.73
-452.766
3042.8
-451.41
-2797.8
-519.543
-6107.83
-621.815
-8306.71
-734.051
-10075.9
-849.889
-11720.8
-996.005
-13047.4
-1209.24
-13889.5
-1470.36
-14319
-1728.27
-14722.9
-2014.59
-15152.7
-2512.24
-16122.9
-3211.24
-17315.6
-3998.4
-19060.3
-4742.17
-22498.5
-5211.1
-26917.8
-5259.95
-30689.6
-4947.08
-32538.2
-4466.7
-32002.2
-3934.58
-29734
-3245.12
-26725.8
-2169.67
-23444.1
-417.705
-19041.6
2657.3
-11553.5
5494.21
3602.96
6401.89
19125.8
6338.68
31875.6
5854.79
40144.4
5354.89
47967.2
4764.19
55880.7
3733.04
63461.9
2329.37
68171.2
1249.48
69445.7
1058.44
70767.8
1458.1
74780.9
1840.37
79204.6
2051.35
77323.9
2018.2
61668.9
1693.64
37054.5
1371.41
21442.7
1341.9
21859.4
1652.29
22522.4
2041.69
19665.5
2418.42
15904.1
2805.09
12264.5
3222.69
9336.82
3733.2
7434.62
4345.19
5465.1
5337.46
1812.42
6497.87
3221.89
5851.16
-3125.42
3887.82
-39774.8
2548.79
-61898
1715.12
-59534.2
1049.26
-56838.2
741.667
-58966.1
736.534
-63649.3
790.431
-67932.2
-68281
-1651.61
-10270.4
-1378
-9313.27
-1202.83
-6537.75
-1232.05
-1589.32
-1387.18
3202.43
-1507
5890.6
-1590.56
7665.57
-1634.88
8905.62
-1642.95
9826.61
-1615.46
10535.4
-1558
11078.1
-1477.96
11509.2
-1379
11871.9
-1261.75
12149.5
-1129.15
12207.6
-987.723
11948.2
-845.734
11269
-713.076
10110.2
-600.162
8449.12
-513.767
6217.33
-456.405
2985.43
-476.488
-2777.72
-562.21
-6022.11
-677.879
-8191.04
-799.097
-9954.7
-925.239
-11594.6
-1087.87
-12884.8
-1316.73
-13660.6
-1595.55
-14040.1
-1882.93
-14435.5
-2188.05
-14847.6
-2684.16
-15626.8
-3370.13
-16629.6
-4148.4
-18282.1
-4931.03
-21715.9
-5499.03
-26349.7
-5664.48
-30524.2
-5430.41
-32772.2
-4982.01
-32450.6
-4468.67
-30247.3
-3805.7
-27388.8
-2762.09
-24487.7
-1048.41
-20755.3
1878.92
-14480.8
5191.81
290.074
6432.06
17885.6
6613.97
31693.7
6201.4
40557
5677.2
48491.4
5099.78
56458.2
4158.96
64402.7
2706.09
69624
1276.01
70875.8
795.79
71248
1164.54
74412.1
1549.71
78819.4
1755.72
77117.9
1742.2
61682.4
1493.55
37303.2
1271.78
21664.4
1313.68
21817.5
1667.42
22168.7
2088.69
19244.3
2496.23
15496.6
2909.31
11851.4
3347.24
8898.89
3858.95
6922.9
4440.54
4883.52
5320.18
932.79
6387.68
2154.39
5892.22
-2629.95
4086.95
-37969.5
2715.3
-60526.4
1807.82
-58626.7
1093.04
-56123.4
750.739
-58623.8
724.397
-63622.9
822.401
-68030.2
-68489.4
-1489.84
-10418.7
-1264.43
-9538.68
-1099.81
-6702.37
-1141.63
-1547.5
-1352.4
3413.21
-1504.32
6042.52
-1607.25
7768.5
-1660.75
8959.12
-1672.14
9838
-1644.76
10508
-1585.55
11018.9
-1502.44
11426.1
-1399.27
11768.8
-1276.86
12027.1
-1139.1
12069.8
-992.802
11801.9
-846.517
11122.7
-710.545
9974.19
-595.717
8334.29
-510.172
6131.79
-461.269
2936.53
-504.319
-2734.67
-606.863
-5919.56
-731.982
-8065.92
-856.923
-9829.76
-990.513
-11461.1
-1171.62
-12703.7
-1419.63
-13412.6
-1712.82
-13746.9
-2027.02
-14121.3
-2361.31
-14513.3
-2864.65
-15123.4
-3539.22
-15955
-4302.59
-17518.7
-5112.85
-20905.6
-5778.83
-25683.8
-6075.54
-30227.5
-5939.86
-32907.9
-5535.82
-32854.7
-5047.63
-30735.5
-4418.02
-28018.4
-3414.73
-25491
-1758.63
-22411.4
897.457
-17136.9
4556.28
-3368.75
6424.43
16017.4
6872.97
31245.1
6511.87
40918.1
5944.91
49058.3
5354.41
57048.7
4495.98
65261.2
3105.93
71014.1
1418.3
72563.4
571.181
72095.2
839.696
74143.6
1236.61
78422.5
1444.07
76910.4
1463.73
61662.8
1309.18
37457.7
1184.82
21788.8
1291.06
21711.2
1686.1
21773.6
2138
18792.4
2573.66
15060.9
3009.28
11415.8
3463.67
8444.51
3976.16
6410.41
4532.47
4327.21
5307.8
157.459
6269.36
1192.83
5905.22
-2265.81
4267.63
-36331.9
2879.26
-59138
1900.8
-57648.2
1133.79
-55356.4
747.266
-58237.3
693.295
-63569
827.389
-68164.3
-68836.4
-1309.58
-10543.3
-1135.55
-9712.71
-981.839
-6856.08
-1034.22
-1495.12
-1306.63
3685.62
-1495.66
6231.56
-1622.1
7894.93
-1687.04
9024.06
-1702.66
9853.62
-1675.78
10481.1
-1615.12
10958.2
-1529.02
11340
-1421.55
11661.3
-1293.83
11899.4
-1150.74
11926.7
-999.408
11650.6
-848.686
10972
-709.252
9834.75
-592.381
8217.42
-507.491
6046.9
-466.924
2895.96
-532.805
-2668.79
-648.95
-5803.42
-778.517
-7936.35
-902.726
-9705.55
-1042.34
-11321.4
-1243.99
-12502
-1514.22
-13142.3
-1820.73
-13440.4
-2157.95
-13784.1
-2528.94
-14142.3
-3048.37
-14604
-3715.29
-15288.1
-4464.44
-16769.5
-5293.83
-20076.2
-6051.8
-24925.8
-6489.78
-29789.5
-6472.64
-32925.1
-6128.38
-33198.9
-5673.27
-31190.6
-5084.12
-28607.6
-4130.01
-26445.1
-2541.8
-23999.6
-47.226
-19631.5
3908.11
-7324.09
6410.42
13515.1
7103.79
30551.7
6779.64
41242.2
6153.04
49684.9
5529.1
57672.6
4725.55
66064.7
3465.16
72274.5
1665.07
74363.5
418.431
73341.8
489.138
74072.9
900.01
78011.6
1113.37
76697.1
1180.19
61595.9
1135.6
37502.3
1104.94
21819.4
1268.67
21547.5
1703.47
21338.8
2186.16
18309.7
2648.41
14598.7
3103.07
10961.1
3569.67
7977.92
4081.58
5898.49
4618.22
3790.58
5301.47
-525.797
6148.68
345.626
5896.56
-2013.69
4431.65
-34867
3040.16
-57746.5
1993.85
-56601.9
1171.41
-54534
732.081
-57797.9
643.981
-63480.9
796.388
-68316.7
-69188.3
-1111.94
-10647.7
-986.332
-9838.32
-844.608
-6997.81
-910.407
-1429.32
-1248.23
4023.44
-1479.03
6462.36
-1633.49
8049.39
-1712.92
9103.48
-1734.23
9874.94
-1708.44
10455.3
-1646.58
10896.4
-1557.56
11250.9
-1445.63
11549.4
-1312.46
11766.2
-1163.95
11778.2
-1007.49
11494.1
-852.262
10816.8
-709.302
9691.79
-590.284
8098.4
-505.815
5962.43
-472.953
2863.1
-559.928
-2581.81
-685.272
-5678.08
-815.16
-7806.47
-936.506
-9584.2
-1082.77
-11175.2
-1306.62
-12278.2
-1599.98
-12849
-1918.68
-13121.7
-2275.3
-13427.5
-2687.18
-13730.4
-3230.52
-14060.6
-3894.49
-14624.1
-4634.45
-16029.6
-5480.66
-19230
-6322.48
-24084
-6904.94
-29207
-7025.11
-32804.9
-6759.03
-33465
-6346.83
-31602.8
-5805.49
-29148.9
-4909.47
-27341.1
-3395.25
-25513.8
-983.262
-22043.5
3226.86
-11534.2
6358.77
10383.2
7278.63
29631.9
6999.86
41521
6305.35
50379.4
5630.57
58347.4
4851.51
66843.8
3738.36
73387.6
1976.44
76125.4
357.378
74960.9
132.474
74297.8
543.505
77600.6
761.445
76479.1
886.985
61470.4
967.45
37421.9
1026.85
21760
1240.51
21333.8
1713.11
20866.2
2227.44
17795.3
2716.12
14110
3188.03
10489.2
3663.64
7502.3
4173.36
5388.78
4696.78
3267.16
5302.62
-1131.64
6030.05
-381.805
5872.29
-1855.93
4581.2
-33575.9
3197.78
-56363.1
2087.01
-55491.1
1206.3
-53653.3
706.531
-57298.2
579.497
-63353.8
788.571
-68525.8
-69614.6
-898.323
-10734.7
-815.17
-9921.47
-686.145
-7126.83
-772.195
-1343.27
-1176.11
4427.35
-1452.69
6738.94
-1639.51
8236.21
-1737.2
9201.18
-1766.39
9904.12
-1742.57
10431.5
-1679.79
10833.6
-1587.82
11159
-1471.23
11432.8
-1332.53
11627.5
-1178.56
11624.2
-1017
11332.5
-857.302
10657.1
-710.836
9545.32
-589.6
7977.17
-505.362
5878.19
-479.306
2837.05
-585.324
-2475.8
-716.145
-5547.25
-844.324
-7678.29
-963.082
-9465.45
-1118.19
-11020.1
-1364.99
-12031.4
-1679.43
-12534.5
-2007.53
-12793.6
-2380.88
-13054.1
-2834.89
-13276.4
-3407.95
-13487.6
-4076.3
-13955.8
-4814.08
-15291.8
-5678.49
-18365.6
-6596.48
-23166
-7319.6
-28483.9
-7592.34
-32532.2
-7425.52
-33631.8
-7068.42
-31960
-6582.63
-29634.7
-5753.46
-28170.3
-4315.99
-26951.3
-1961.14
-24398.3
2342.78
-15838.1
6122.12
6603.86
7348.4
28405.6
7159.2
41710.2
6406.9
51131.7
5669.98
59084.3
4890.8
67623
3905.77
74372.6
2298.06
77733.1
395.612
76863.3
-199.001
74892.4
170.709
77230.9
391.254
76258.6
579.549
61282.1
794.549
37206.9
940.185
21614.4
1198.64
21075.4
1707.44
20357.4
2254.59
17248.2
2770.89
13593.7
3260.55
9999.59
3744.34
7018.51
4251.08
4882.04
4767.68
2750.55
5311.63
-1675.59
5917.28
-987.454
5837.98
-1776.62
4718.62
-32456.6
3352.12
-54996.6
2180.51
-54319.5
1239.37
-52712.1
673.059
-56731.8
501.518
-63182.3
698.327
-68722.6
-70153.6
-670.247
-10805.4
-622.563
-9969.16
-509.332
-7240.06
-622.008
-1230.6
-1089.68
4895.02
-1415.36
7064.62
-1638.2
8459.05
-1758.4
9321.39
-1798.35
9944.07
-1777.84
10411
-1714.47
10770.2
-1619.43
11063.9
-1497.99
11311.3
-1353.79
11483.3
-1194.49
11464.9
-1027.97
11166
-863.915
10493
-714.029
9395.44
-590.566
7853.71
-506.478
5794.1
-486.427
2816.99
-610.605
-2351.62
-744.986
-5412.87
-871.527
-7551.75
-989.542
-9347.43
-1156.16
-10853.5
-1425.48
-11762
-1756.72
-12203.3
-2089.99
-12460.4
-2477.09
-12667
-2972.31
-12781.2
-3578.7
-12881.2
-4260.58
-13273.9
-5006.49
-14545.9
-5891.81
-17480.3
-6878.37
-22179.4
-7732.54
-27629.7
-8167.59
-32097.1
-8123.19
-33676.2
-7836.38
-32246.8
-7414.57
-30056.5
-6661.36
-28923.5
-5305.8
-28306.8
-3024.05
-26680.1
1081.43
-19943.6
5547.48
2137.81
7270.49
26682.6
7230.61
41750.1
6454.42
51907.9
5658.35
59880.4
4864.93
68416.4
3971.93
75265.6
2582.32
79122.7
531.434
78914.2
-470.632
75894.5
-216.52
76976.8
7.14104
76034.9
256.523
61032.7
606.559
36856.8
832.049
21388.9
1132.85
20774.6
1678.91
19811.4
2261.19
16665.9
2807.33
13047.6
3317.08
9489.84
3810.49
6525.1
4314.89
4377.63
4830.45
2234.99
5327.74
-2172.88
5813.72
-1473.44
5798.4
-1761.3
4846.27
-31504.5
3503.42
-53653.8
2274.79
-53090.9
1272.05
-51709.4
635.008
-56094.8
416.524
-62963.8
655.212
-68961.3
-70661
-429.389
-10860.1
-410.47
-9988.08
-320.862
-7329.67
-463.04
-1088.42
-988.647
5420.63
-1366.32
7442.29
-1627.78
8720.5
-1774.78
9468.39
-1828.99
9998.28
-1813.63
10395.6
-1750.16
10706.7
-1651.91
10965.7
-1525.55
11185
-1376.09
11333.8
-1211.77
11300.6
-1040.51
10994.8
-872.271
10324.8
-719.123
9242.29
-593.504
7728.09
-509.586
5710.18
-495.11
2802.52
-638.219
-2208.51
-775.8
-5275.29
-902.02
-7425.53
-1021.97
-9227.49
-1202.75
-10672.7
-1492.86
-11471.9
-1835.47
-11860.7
-2169.84
-12126
-2566.85
-12270
-3100.13
-12247.9
-3742.25
-12239.1
-4445.67
-12570.5
-5211.34
-13780.2
-6122.77
-16568.8
-7170.46
-21131.7
-8141.6
-26658.6
-8742.29
-31496.4
-8844.11
-33574.4
-8646.49
-32444.4
-8298.28
-30404.7
-7630.84
-29590.9
-6368.82
-29568.9
-4189.93
-28859
-460.703
-23672.8
4609.94
-2932.83
7018.91
24273.6
7175.62
41593.4
6432.47
52651.1
5601.17
60711.7
4793.83
69223.7
3957.93
76101.5
2799.2
80281.5
751.185
80962.2
-656.236
77301.9
-616.024
76936.5
-387.812
75806.7
-79.4432
60724.3
397.916
36379.5
694.692
21092.1
1036.08
20433.2
1622.91
19224.5
2244.03
16044.8
2822.16
12469.4
3354.44
8957.56
3860.18
6019.36
4364.04
3873.77
4883.56
1715.47
5346.46
-2635.77
5718.57
-1845.55
5756.78
-1799.51
4966.42
-30714.1
3652.06
-52339.4
2370.47
-51809.3
1306.13
-50645
595.754
-55384.4
329.374
-62697.4
599.381
-69231.3
-71224.2
-177.342
-10898.7
-182.125
-9983.3
-125.321
-7386.48
-299.367
-914.374
-872.668
5993.93
-1305.24
7874.86
-1606.83
9022.1
-1784.55
9646.1
-1856.87
10070.6
-1849.03
10387.8
-1786.22
10643.9
-1684.77
10864.2
-1553.69
11053.9
-1399.39
11179.5
-1230.47
11131.7
-1054.82
10819.1
-882.656
10152.6
-726.454
9086.09
-598.816
7600.45
-515.172
5626.54
-506.131
2793.48
-669.949
-2044.69
-811.056
-5134.19
-938.659
-7297.92
-1063.63
-9102.52
-1261.41
-10474.9
-1569.68
-11163.7
-1917.35
-11513
-2249.77
-11793.6
-2652.88
-11866.9
-3217.67
-11683.1
-3897.3
-11559.4
-4630.35
-11837.4
-5426.77
-12983.8
-6368.78
-15626.8
-7468.06
-20032.5
-8541.68
-25585
-9306.64
-30731.5
-9576.62
-33304.4
-9491.13
-32529.9
-9228.01
-30667.8
-8656.91
-30162
-7504.01
-30721.8
-5460.36
-30902.6
-2002.58
-27130.6
3493.88
-8429.3
6555.83
21211.7
6947.23
41202
6313.26
53285.1
5494.59
61530.4
4691.65
70026.7
3890.25
76902.9
2936.31
81235.4
1022.42
82876.1
-748.627
79073
-1015.26
77203.2
-786.261
75577.7
-422.827
60360.9
167.068
35789.6
526.05
20733.2
907.028
20052.2
1538.89
18592.7
2203.52
15380.2
2815.93
11857
3372.37
8401.11
3892.24
5499.5
4396.8
3369.21
4923.53
1188.74
5360.68
-3072.92
5627.06
-2111.94
5714.74
-1887.19
5081.23
-30080.6
3798.56
-51056.7
2468.29
-50479
1343.71
-49520.5
560.054
-54600.8
243.732
-62381.1
485.496
-69473
-71882.2
84.0072
-10921.8
59.9191
-9959.21
75.5805
-7402.14
-134.177
-704.617
-741.604
6601.36
-1232.08
8365.34
-1574.48
9364.49
-1786.05
9857.67
-1880.35
10164.9
-1882.8
10390.2
-1821.82
10582.9
-1717.58
10760
-1582.27
10918.6
-1423.79
11021
-1250.82
10958.7
-1071.19
10639.5
-895.445
9976.87
-736.413
8927.06
-606.969
7471
-523.813
5543.38
-520.329
2789.99
-704.172
-1860.85
-851.031
-4987.33
-981.696
-7167.26
-1115.19
-8969.02
-1333.2
-10256.9
-1656.96
-10839.9
-2003.47
-11166.5
-2331.24
-11465.8
-2736.68
-11461.4
-3322.45
-11097.4
-4038.74
-10843.2
-4809.18
-11067
-5645.44
-12147.5
-6622.94
-14649.3
-7765.04
-18890.4
-8926.58
-24423.4
-9849.1
-29808.9
-10305.5
-32848
-10358.5
-32476.9
-10194.6
-30831.7
-9730.97
-30625.6
-8703.81
-31748.9
-6817.16
-32789.2
-3555.39
-30392.4
2157.6
-14142.3
5809.55
17559.7
6505.08
40506.5
6063.81
53726.3
5324.43
62269.7
4563.05
70788
3790.7
77675.3
2994.13
82032
1301.97
84568.3
-751.607
81126.5
-1392.18
77843.8
-1183.91
75369.4
-768.599
59945.6
-89.2221
35110.2
323.089
20320.9
748.262
19627
1429.77
17911.2
2142.32
14667.6
2792.16
11207.2
3374.47
7818.79
3908.22
4965.75
4412.57
2864.86
4947.4
653.908
5363.82
-3489.33
5533.61
-2281.73
5673.07
-2026.65
5192.88
-29600.4
3943.55
-49807.4
2569.01
-49104.5
1387.03
-48338.5
532.93
-53746.7
165.638
-62013.8
407.983
-69715.4
-72494.4
350.821
-10931.3
308.69
-9917.08
279.588
-7373.03
33.9233
-458.952
-597.354
7232.64
-1147.19
8915.17
-1530.45
9747.76
-1777.75
10105
-1897.58
10284.7
-1913.38
10406
-1855.97
10525.5
-1749.92
10654
-1611.36
10780
-1449.6
10859.3
-1273.2
10782.3
-1090.02
10456.3
-911.055
9797.9
-749.449
8765.45
-618.474
7340.03
-536.165
5461.07
-538.768
2792.6
-739.118
-1660.5
-894.32
-4832.13
-1029.58
-7032
-1175.59
-8823.01
-1417.24
-10015.2
-1754.17
-10503
-2095.21
-10825.5
-2416.61
-11144.4
-2819.6
-11058.4
-3412.09
-10504.9
-4158.28
-10097
-4970.97
-10254.3
-5852.72
-11265.8
-6867.85
-13634.2
-8045.17
-17713
-9282.78
-23185.8
-10355.6
-28736.1
-11013
-32190.7
-11232.4
-32257.5
-11184.9
-30879.2
-10840.4
-30970.2
-9956.1
-32633.2
-8247.09
-34498.3
-5180.92
-33458.6
471.646
-19794.9
4696.35
13335
5827.28
39375.5
5654.25
53899.4
5067.76
62856.2
4398.94
71456.8
3669
78405.2
2980.5
82720.5
1551.76
85997
-670.568
83348.9
-1731.54
78904.7
-1589.5
75227.4
-1112.31
59468.4
-376.86
34374.8
80.1685
19863.8
564.182
19143
1299.71
17175.6
2063.13
13904.2
2753.62
10516.7
3364.11
7208.3
3910.92
4418.94
4413.01
2362.77
4955.04
111.879
5350.96
-3885.25
5432.79
-2363.56
5632.61
-2226.47
5303.57
-29271.3
4087.7
-48591.5
2673.38
-47690.2
1438.25
-47103.3
518.937
-52827.4
98.8556
-61593.7
313.917
-69930.4
-73147.3
621.87
-10928.4
561.681
-9856.89
485.44
-7296.79
203.993
-177.504
-444.953
7881.58
-1051.43
9521.65
-1474.93
10171.3
-1758.43
10388.5
-1906.67
10433
-1939.04
10438.4
-1887.62
10474.1
-1781.58
10547.9
-1641.3
10639.7
-1477.31
10695.3
-1298.05
10603.1
-1111.74
10270
-929.916
9616.08
-766.035
8601.57
-633.852
7207.85
-552.855
5380.08
-562.059
2801.8
-774.804
-1447.75
-938.68
-4668.25
-1079.76
-6890.92
-1242.49
-8660.27
-1510.59
-9747.13
-1858.32
-10155.3
-2192.16
-10491.6
-2508.31
-10828.3
-2904.32
-10662.4
-3486.49
-9922.7
-4247.83
-9335.63
-5102.33
-9399.79
-6032.67
-10335.5
-7082.35
-12584.5
-8286.02
-16509.4
-9591.39
-21880.5
-10810.1
-27517.4
-11679.4
-31321.4
-12092.4
-31844.4
-12181.7
-30790
-11968.1
-31183.7
-11243.5
-33357.8
-9736.94
-36004.9
-6918.39
-36277.1
-1603.14
-25110.1
3202.79
8529.09
4911.87
37666.4
5065.69
53745.5
4700.91
63221
4178.99
71978.8
3521.18
79063.1
2905.13
83336.5
1741.47
87160.6
-517.986
85608.3
-2016.62
80403.4
-2005.62
75216.4
-1450.6
58913.4
-700.405
33624.6
-205.285
19368.7
357.856
18579.9
1151.4
16382.1
1968.03
13087.5
2702.27
9782.47
3343.38
6567.19
3902.8
3859.52
4402.08
1863.49
4950.22
-436.261
5320.39
-4255.42
5321.23
-2364.39
5595.07
-2500.32
5415.68
-29092
4231.62
-47407.5
2781.96
-46240.5
1499.26
-45820.6
522.353
-51850.5
45.6002
-61117
198.241
-70083.1
-73779.5
896.507
-10913.9
817.747
-9778.13
693.31
-7172.36
372.965
142.841
-289.56
8544.11
-946.637
10178.7
-1408.68
10633.3
-1727.33
10707.1
-1905.91
10611.6
-1958.08
10490.5
-1915.92
10432
-1812.7
10444.7
-1672.63
10499.7
-1507.4
10530.1
-1325.8
10421.5
-1136.74
10080.9
-952.415
9431.75
-786.616
8435.77
-653.617
7074.85
-574.41
5300.87
-590.202
2817.59
-810.457
-1227.5
-982.042
-4496.66
-1129.64
-6743.32
-1312.73
-8477.18
-1608.39
-9451.48
-1964.11
-9799.54
-2291.08
-10164.7
-2605.78
-10513.6
-2992.65
-10275.6
-3547.58
-9367.77
-4302.69
-8580.52
-5190.55
-8511.93
-6167.45
-9358.56
-7245.13
-11506.8
-8463.26
-15291.2
-9826.42
-20517.3
-11191
-26152.8
-12283.4
-30229
-12915.7
-31212.1
-13164.2
-30541.5
-13093.6
-31254.3
-12544.7
-33906.7
-11266.7
-37282.9
-8768.69
-38775.1
-3982.73
-29896.1
1408.29
3138.08
3774.2
35300.5
4298.21
53221.5
4203.54
63315.7
3875.37
72306.9
3331.45
79607
2772.8
83895.2
1849.67
88083.8
-313.36
87771.3
-2207.36
82297.4
-2402.69
75411.7
-1785.96
58296.7
-1064.04
32902.6
-531.976
18836.6
132.09
17915.8
986.808
15527.4
1858.17
12216.2
2638.37
9002.27
3312.27
5893.3
3884.51
3287.28
4384.26
1363.74
4938.76
-990.769
5272.3
-4588.95
5197.96
-2290.06
5563.5
-2865.86
5531.64
-29060.1
4375.8
-46251.6
2895.03
-44759.8
1571.52
-44497.1
546.152
-50825.1
7.66475
-60578.5
97.1972
-70172.6
-74389.8
1173.98
-10888
1076.07
-9680.21
903.55
-6999.84
537.798
508.593
-135.362
9217.27
-834.963
10878.3
-1333.1
11131.4
-1684.46
11058.5
-1894.04
10821.2
-1969.26
10565.8
-1940.48
10403.2
-1843.6
10347.8
-1705.76
10361.8
-1540.2
10364.5
-1356.76
10238
-1165.38
9889.55
-978.933
9245.31
-811.64
8268.48
-678.267
6941.47
-601.285
5223.89
-623.178
2839.49
-845.98
-1004.7
-1023.41
-4319.23
-1177.67
-6589.06
-1383.22
-8271.63
-1705.07
-9129.63
-2065.5
-9439.11
-2387.25
-9842.91
-2705.02
-10195.8
-3082.92
-9897.66
-3597.22
-8853.47
-4321.84
-7855.91
-5225.98
-7607.79
-6241.52
-8343.02
-7339.92
-10408.4
-8559.04
-14072.1
-9965.66
-19110.7
-11475.1
-24643.4
-12802
-28902.1
-13678.3
-30335.8
-14109.6
-30110.2
-14194.1
-31169.8
-13835.1
-34265.7
-12809.4
-38308.6
-10684.6
-40899.8
-6518.02
-34062.7
-643.116
-2736.82
2416.94
32240.5
3363.33
52275.1
3550.95
63128.1
3455.02
72402.9
3072.83
79989.2
2577.71
84390.3
1863.52
88798
-82.3308
89717.2
-2259.5
84474.5
-2737.26
75889.5
-2137.66
57697.1
-1486.19
32251.2
-899.027
18249.5
-105.775
17122.6
807.346
14614.3
1733.79
11289.7
2561.16
8174.9
3269.96
5184.5
3855.74
2701.5
4360.38
859.102
4921.61
-1552
5205.36
-4872.7
5063.47
-2148.16
5542.01
-3344.41
5653.81
-29171.9
4520.48
-45118.3
3012.51
-43251.8
1655.98
-43140.6
592.022
-49761.1
-15.5648
-59970.9
-50.1265
-70138
-74984
1453.38
-10850.5
1335.82
-9562.65
1115.7
-6779.72
695.781
928.516
14.0862
9898.96
-718.062
11610.5
-1249.76
11663.1
-1630.55
11439.3
-1870.72
11061.3
-1972.04
10667.1
-1961.33
10392.5
-1874.56
10261
-1740.86
10228.1
-1575.84
10199.5
-1391.15
10053.3
-1197.96
9696.36
-1009.86
9057.21
-841.525
8100.14
-708.277
6808.23
-633.924
5149.54
-661.124
2866.69
-881.967
-783.853
-1062.94
-4138.26
-1223.63
-6428.37
-1451.84
-8043.43
-1795.9
-8785.57
-2157.54
-9077.47
-2476.16
-9524.3
-2800.32
-9871.64
-3170.56
-9527.42
-3636.45
-8387.58
-4307.17
-7185.19
-5204.14
-6710.82
-6245.83
-7301.33
-7359.15
-9295.11
-8569.24
-12862
-9999.35
-17680.6
-11642.1
-23000.6
-13213
-27331.2
-14357.9
-29190.9
-14994.9
-29473.2
-15246.6
-30918
-15089.2
-34423.1
-14334.9
-39062.9
-12607.4
-42627.3
-9020.28
-37649.8
-2971.33
-8785.77
799.29
28469.9
2264.18
50810.3
2713.84
62678.4
2892.36
72224.4
2714.41
80167.1
2304
84800.7
1775.58
89326.4
143.007
91349.8
-2159.44
86777
-2987.57
76717.6
-2547.07
57256.6
-2001.61
31705.7
-1308.88
17556.7
-348.996
16162.7
614.772
13650.5
1594.73
10309.8
2468.82
7300.81
3214.21
4439.11
3814.71
2100.99
4328.13
345.689
4894.43
-2118.31
5115.41
-5093.68
4918.56
-1951.31
5535.24
-3961.09
5784.35
-29421
4665.62
-43999.6
3134.04
-41720.2
1753.07
-41759.6
660.281
-48668.3
-22.7078
-59287.9
-166.3
-69994.4
-75396.2
1733.66
-10800.9
1595.57
-9424.56
1328.33
-6512.49
845.248
1411.6
154.655
10589.6
-598.986
12364.1
-1160.39
12224.5
-1566.92
11845.8
-1836.5
11330.9
-1966.64
10797.2
-1978.56
10404.4
-1905.47
10188
-1777.77
10100.4
-1614.24
10036
-1429.05
9868.15
-1234.72
9502.03
-1045.54
8868.03
-876.608
7931.21
-744.036
6675.65
-672.707
5078.21
-704.367
2898.35
-919.471
-568.75
-1101.53
-3956.2
-1268.4
-6261.49
-1517.95
-7793.88
-1878.21
-8425.31
-2237.43
-8718.25
-2554.48
-9207.26
-2885.7
-9540.42
-3249.34
-9163.78
-3665.38
-7971.53
-4263.22
-6587.36
-5126.05
-5847.99
-6179.03
-6248.35
-7306.46
-8167.68
-8508.76
-11659.7
-9943.62
-16245.7
-11692.2
-21252
-13501
-25522.4
-14932.9
-27759
-15799.3
-28606.8
-16231
-30486.4
-16283.8
-34370.3
-15815.7
-39531
-14497.3
-43945.7
-11463.6
-40683.5
-5594.57
-14654.8
-1150.79
24026.1
940.552
48718.9
1682.49
61936.5
2182.8
71724
2233.03
80116.9
1932.64
85101.1
1580.85
89678.2
326.338
92604.3
-1927.68
89031
-3150.32
77940.2
-3046.3
57152.6
-2632.77
31292.2
-1777.85
16701.8
-610.064
14994.9
413.379
12627.1
1443.01
9280.14
2360.97
6382.85
3142.54
3657.54
3758.26
1485.27
4284.84
-180.898
4852.08
-2685.54
4996
-5237.6
4763.6
-1718.91
5548.03
-4745.51
5925.17
-29798.1
4810.84
-42885.2
3258.91
-40168.3
1862.6
-40363.3
749.418
-47555.2
-14.0679
-58524.4
-281.253
-69727.3
-75780
2013.63
-10738.3
1853.47
-9264.4
1539.25
-6198.27
985.492
1965.36
283.107
11291.9
-481.637
13128.9
-1067.12
12810
-1495.48
12274.2
-1792.71
11628.1
-1953.59
10958.1
-1991.98
10442.8
-1935.8
10131.8
-1815.99
9980.63
-1655.15
9875.11
-1470.41
9683.41
-1275.78
9307.4
-1086.17
8678.42
-917.102
7762.15
-785.782
6544.33
-717.862
5010.29
-753.242
2933.73
-959.668
-362.324
-1140.44
-3775.42
-1313.49
-6088.45
-1582.25
-7525.12
-1951.83
-8055.72
-2305
-8365.08
-2620.56
-8891.7
-2956.03
-9204.94
-3312.18
-8807.64
-3682.44
-7601.27
-4196.29
-6073.51
-4997.13
-5047.15
-6045.37
-5200.11
-7195.86
-7017.19
-8410.51
-10445.1
-9843.75
-14812.5
-11654.8
-19441
-13665.4
-23511.8
-15385.4
-26039
-16504.8
-27487.3
-17131.2
-29860
-17398.7
-34102.8
-17226.4
-39703.3
-16327
-44845.2
-13852.1
-43158.4
-8418.65
-20088.3
-3514.04
19121.5
-743.33
45948.2
467.278
60725.8
1324.83
70866.5
1615.99
79825.7
1448.59
85268.5
1275.64
89851.1
432.716
93447.2
-1599.98
91063.7
-3202.48
79542.7
-3587.69
57537.8
-3331.22
31035.7
-2311.6
15682.2
-914.857
13598.1
206.775
11505.4
1280.99
8205.93
2239.39
5424.45
3056.24
2840.7
3691.08
850.434
4236.01
-725.832
4792.36
-3241.89
4840.87
-5286.11
4600.16
-1478.2
5586.31
-5731.67
6078.21
-30290
4955.37
-41762.4
3386.09
-38599
1983.89
-38961.1
857.149
-46428.4
8.83511
-57676.1
-417.369
-69301.1
-76055.4
2291.83
-10661.7
2108.17
-9080.74
1746.46
-5836.56
1116.06
2595.76
397.675
12010.3
-369.583
13896.1
-972.462
13412.9
-1418.65
12720.3
-1741.04
11950.5
-1933.32
11150.4
-2000.92
10510.4
-1964.57
10095.4
-1854.78
9870.84
-1698.1
9718.43
-1514.96
9500.26
-1321
9113.44
-1131.72
8489.14
-963.059
7593.49
-833.571
6414.85
-769.41
4946.13
-807.906
2972.22
-1003.5
-166.728
-1181.08
-3597.85
-1360.72
-5908.81
-1646.12
-7239.71
-2018.39
-7683.45
-2362.43
-8021.04
-2675.03
-8579.1
-3008.69
-8871.28
-3352.77
-8463.56
-3683.51
-7270.53
-4112.47
-5644.56
-4826.18
-4333.43
-5850.92
-4175.37
-7041.79
-5826.32
-8310.74
-9176.13
-9762.97
-13360.2
-11593.4
-17610.6
-13735.3
-21369.9
-15710.3
-24064
-17096.7
-26100.9
-17936.2
-29020.5
-18419.2
-33619.9
-18544.1
-39578.3
-18069.9
-45319.4
-16179.4
-45048.9
-11368.5
-24899.1
-6259.44
14012.4
-2810.86
42499.6
-956.637
58871.6
274.183
69635.7
837.049
79262.8
837.122
85268.4
855.871
89832.4
433.084
93870
-1222.8
92719.6
-3093.27
81413.2
-4015.38
58459.9
-3943.99
30964.3
-2840.05
14578.3
-1260.08
12018.2
-9.45654
10254.8
1108.76
7087.72
2106.46
4426.75
2958.5
1988.65
3619.93
189.005
4185.97
-1291.87
4710.87
-3766.79
4644.26
-5219.5
4433.01
-1266.96
5658.33
-6956.99
6245.38
-30877.1
5097.9
-40614.9
3514.26
-37015.4
2115.88
-37562.7
980.56
-45293.1
48.0722
-56743.6
-510.409
-68742.6
-76070.9
2566.48
-10569.8
2358.08
-8872.34
1947.53
-5426.01
1236.2
3307.09
497.531
12749
-265.67
14659.3
-879.049
14026.3
-1338.95
13180.3
-1683.23
12294.8
-1906
11373.2
-2004.35
10608.7
-1990.45
10081.5
-1893.12
9773.51
-1742.4
9567.71
-1562.18
9320.04
-1369.94
8921.2
-1181.83
8301.03
-1014.29
7425.95
-887.227
6287.79
-827.147
4886.05
-868.199
3013.27
-1051.43
16.5028
-1224.67
-3424.61
-1411.94
-5721.54
-1711.09
-6940.57
-2080.09
-7314.44
-2413
-7688.14
-2720.76
-8271.34
-3045.08
-8546.96
-3368.65
-8139.98
-3663.27
-6975.91
-4014.16
-5293.67
-4622.33
-3725.26
-5600.4
-3197.3
-6846.86
-4579.86
-8225.26
-7797.72
-9751.95
-11833.5
-11586.6
-15776
-13768.6
-19187.9
-15918.3
-21914.3
-17561.5
-24457.6
-18636.1
-27945.9
-19336.1
-32919.9
-19749.7
-39164.7
-19698.9
-45370.2
-18425.2
-46322.6
-14374.3
-28950
-9246.37
8884.46
-5193.95
38447.2
-2671.78
56349.5
-1061.44
68025.3
-169.079
78370.5
66.9761
85032.4
309.193
89590.2
308.737
93870.4
-850.096
93878.4
-2787.44
83350.6
-4149.46
59821.9
-4275.36
31090.2
-3216.08
13519
-1589.09
10391.2
-235.617
8901.32
933.009
5919.09
1970.02
3389.73
2859.31
1099.36
3552.66
-504.345
4133.37
-1872.57
4600.61
-4234.04
4402.07
-5020.96
4271.62
-1136.5
5775.22
-8460.58
6427.99
-31529.9
5236.34
-39423.3
3642.04
-35421.1
2257.5
-36178.2
1116.88
-44152.5
104.171
-55730.9
-583.74
-68054.7
-76123.8
2835.69
-10460.9
2601.13
-8637.78
2139.42
-4964.3
1344.69
4101.82
582.306
13511.4
-171.975
15413.6
-789.263
14643.6
-1258.68
13649.7
-1620.88
12657
-1871.69
11624
-2001.05
10738.1
-2011.88
10092.4
-1929.68
9691.31
-1787.03
9425.06
-1611.23
9144.24
-1421.83
8731.8
-1235.86
8115.06
-1070.3
7260.38
-946.323
6163.81
-890.64
4830.36
-933.593
3056.23
-1103.35
186.264
-1272.16
-3255.8
-1468.66
-5525.05
-1778.34
-6630.89
-2139.04
-6953.75
-2459.92
-7367.26
-2761.45
-7969.81
-3070.02
-8238.39
-3363.41
-7846.59
-3619.54
-6719.78
-3900.63
-5012.58
-4393.65
-3232.24
-5295.39
-2295.57
-6592.76
-3282.49
-8127.31
-6263.18
-9807.77
-10153.1
-11687.7
-13896.1
-13846.1
-17029.5
-16053.8
-19706.6
-17895.2
-22616.2
-19217.2
-26623.9
-20142.8
-31994.3
-20828.4
-38479.1
-21185.4
-45013.2
-20546.1
-46961.8
-17369.5
-32126.6
-12354.1
3869.02
-7872.88
33966
-4784.06
53260.6
-2759.85
66001.1
-1471.62
77082.3
-904.356
84465.1
-372.956
89058.8
59.1444
93438.3
-524.248
94461.8
-2293.38
85119.7
-3893.79
61422.3
-4202.17
31398.6
-3313.59
12630.4
-1812.34
8889.95
-437.209
7526.18
778.335
4703.55
1849.4
2318.67
2777.02
171.74
3499.17
-1226.49
4072.9
-2446.29
4452.95
-4614.09
4110.17
-4678.18
4129.2
-1155.53
5950.53
-10281.9
6625.75
-32205.1
5367.7
-38165.2
3768.19
-33821.5
2407.94
-34818
1264.85
-43009.4
178.842
-54644.9
-636.782
-67239
-75860
3097.5
-10333.4
2835.59
-8375.87
2319.41
-4448.12
1440.23
4981
651.853
14299.8
-89.991
16155.5
-705.125
15258.7
-1179.83
14124.4
-1555.42
13032.6
-1830.47
11899
-1989.81
10897.4
-2027.09
10129.6
-1962.8
9627.01
-1830.6
9292.86
-1660.9
8974.54
-1475.58
8546.48
-1292.86
7932.33
-1130.32
7097.85
-1010.2
6043.7
-959.211
4779.37
-1003.19
3100.2
-1158.73
341.806
-1324.09
-3090.44
-1531.67
-5317.47
-1848.3
-6314.26
-2196.83
-6605.21
-2505.82
-7058.26
-2800.34
-7675.29
-3089.27
-7949.46
-3345.23
-7590.62
-3556.66
-6508.36
-3773.14
-4796.09
-4149.82
-2855.56
-4938.29
-1507.09
-6247.36
-1973.42
-7951.88
-4558.65
-9857.02
-8247.94
-11872.5
-11880.6
-14024.2
-14877.8
-16190.2
-17540.7
-18116.6
-20689.8
-19662.9
-25077.6
-20829.1
-30828.1
-21770.6
-37537.6
-22501.6
-44282.2
-22477.8
-46985.7
-20253.8
-34350.7
-15526.5
-858.273
-10838.1
29277.7
-7313.22
49735.7
-4839.66
63527.6
-3104.3
75346.9
-2091.63
83452.4
-1178.52
88145.7
-312.855
92572.7
-285.457
94434.4
-1662.11
86496.3
-3267.65
63027.8
-3732.54
31863.5
-3108.98
12006.8
-1857.74
7638.72
-548.527
6216.97
682.709
3472.31
1774.31
1227.07
2731.51
-785.464
3460.08
-1955.06
3994.93
-2981.14
4260.45
-4879.62
3766.21
-4183.94
4025.55
-1414.88
6198.92
-12455.3
6835.43
-32841.6
5488.1
-36817.9
3892.01
-32225.5
2566.99
-33492.9
1424.68
-41867.1
274.868
-53495.1
-634.673
-66329.5
-75616.9
3349.8
-10185.2
3059.12
-8085.19
2484.31
-3873.31
1521.3
5944.01
706.174
15114.9
-20.8217
16882.4
-628.268
15866.1
-1104.09
14600.2
-1488.22
13416.7
-1782.7
12193.5
-1969.61
11084.3
-2034.26
10194.3
-1990.52
9583.27
-1871.34
9173.68
-1709.65
8812.85
-1529.81
8366.64
-1351.6
7754.13
-1193.3
6939.54
-1077.95
5928.35
-1031.87
4733.3
-1075.75
3144.08
-1216.93
482.984
-1380.76
-2926.61
-1600.86
-5097.38
-1920.48
-5994.63
-2254.4
-6271.29
-2552.51
-6760.16
-2839.64
-7388.16
-3107.5
-7681.6
-3323.18
-7374.95
-3484.26
-6347.27
-3637.46
-4642.9
-3900.74
-2592.28
-4534.97
-872.857
-5781.84
-726.556
-7622.64
-2717.85
-9783.61
-6086.97
-12024.1
-9640.07
-14254.8
-12647.1
-16362.4
-15433.1
-18264.9
-18787.2
-19965.4
-23377.1
-21378.6
-29414.9
-22568.6
-36347.6
-23628.8
-43222
-24146.6
-46467.9
-22821.8
-35675.4
-18649.2
-5030.87
-14005.7
24634.2
-10168.9
45898.9
-7274.32
60633
-5051.49
73124.1
-3461.02
81862
-2086.47
86771.1
-805.58
91291.8
-174.737
93803.6
-987.311
87308.9
-2388.24
64428.8
-2979.43
32454.7
-2674.28
11701.7
-1719.38
6683.81
-530.765
5028.35
668.982
2272.56
1763.92
132.13
2727.49
-1749.03
3423.6
-2651.18
3896.62
-3454.16
4024.77
-5007.77
3391.54
-3550.71
4005.22
-2028.56
6532.79
-14982.8
7049.26
-33358.1
5593.2
-35361.8
4013.75
-30646
2735.33
-32214.5
1598.31
-40730
393.059
-52289.8
-631.97
-65304.5
-75116.5
3590.36
-10014.2
3270.16
-7764.99
2631.17
-3234.32
1586.17
6989.02
745.291
15955.8
34.7393
17593
-560.08
16461
-1032.88
15073
-1420.63
13804.5
-1728.97
12501.8
-1939.77
11295.1
-2031.59
10286.1
-2010.63
9562.31
-1907.13
9070.18
-1755.63
8661.36
-1582.92
8193.93
-1410.62
7581.83
-1257.86
6786.78
-1148.31
5818.8
-1107.25
4692.24
-1149.72
3186.55
-1277.21
610.466
-1442.27
-2761.54
-1675.24
-4864.41
-1993.7
-5676.17
-2311.99
-5953
-2600.65
-6471.49
-2880.18
-7108.63
-3127.33
-7434.45
-3304.31
-7197.97
-3413.61
-6237.98
-3504.07
-4552.44
-3659.3
-2437.05
-4099.84
-432.316
-5184.29
357.896
-7075.49
-826.648
-9471.21
-3691.26
-11980.4
-7130.93
-14376.5
-10250.9
-16502.2
-13307.3
-18368.6
-16920.9
-20143.4
-21602.4
-21777.7
-27780.6
-23214
-34911.4
-24560.9
-41875.1
-25515.4
-45513.4
-24941.9
-36249
-21520
-8452.78
-17183.1
20297.3
-13202.3
41918.2
-9953.52
57384.2
-7192.77
70363.3
-4937.16
79606.4
-3078.68
84912.6
-1403.85
89617
-212.741
92612.4
-376.068
87472.2
-1413.92
65466.6
-2094.54
33135.3
-2122.13
11729.3
-1456.84
6018.52
-405.154
3976.67
737.491
1129.92
1815.06
-945.436
2745.49
-2679.46
3374.66
-3280.36
3778.44
-3857.93
3742.29
-4971.61
3041.97
-2850.39
4145.23
-3131.81
6954.21
-17791.8
7254.15
-33658
5679.22
-33786.9
4135.1
-29101.9
2914.71
-30994.1
1789.01
-39604.3
541.566
-51042.4
-556.728
-64206.2
-74169
3816.71
-9818.13
3467.13
-7415.41
2757.06
-2524.25
1633.12
8112.97
769.138
16819.7
76.2962
18285.8
-501.67
17038.9
-967.388
15538.7
-1354.02
14191.1
-1670.31
12818.1
-1900.19
11525
-2017.66
10403.6
-2020.91
9565.55
-1935.65
8984.92
-1796.75
8522.45
-1633.08
8030.26
-1468.17
7416.92
-1322.32
6640.92
-1219.64
5716.12
-1183.52
4656.12
-1223.23
3226.27
-1338.64
725.874
-1508.16
-2592.02
-1753.12
-4619.45
-2066.43
-5362.86
-2369.28
-5650.15
-2649.88
-6190.89
-2921.37
-6837.15
-3149.14
-7206.68
-3292.25
-7054.86
-3353.8
-6176.43
-3385.75
-4520.49
-3451.58
-2371.22
-3704.94
-178.952
-4522.61
1175.56
-6289.52
940.267
-8831.21
-1149.56
-11608.4
-4353.78
-14229.3
-7630
-16472.9
-11063.7
-18386.1
-15007.7
-20217.9
-19770.5
-22025.9
-25972.6
-23699.6
-33237.6
-25301.9
-40272.8
-26591.9
-44223.4
-26585.5
-36255.4
-23940.7
-11097.6
-20112.5
16469.1
-16198.2
38003.9
-12653.4
53839.4
-9331.07
67041
-6441.95
76717.2
-4137.53
82608.2
-2091.38
87570.8
-405.239
90926.3
87.5023
86979.5
-489.208
66043.3
-1213.71
33859.8
-1553.44
12069
-1145.44
5610.52
-213.2
3044.42
866.647
50.0719
1892.45
-1971.24
2749.37
-3536.38
3296.04
-3827.03
3632.56
-4194.45
3382.82
-4721.87
2763.5
-2231.06
4513.12
-4881.44
7447.08
-20725.8
7432.6
-33643.5
5744.44
-32098.7
4259.58
-27617
3107.88
-29842.4
2000.14
-38496.6
723.177
-49765.4
-432.719
-63050.3
-73273.7
4026.21
-9594.33
3646.51
-7035.71
2858.45
-1736.19
1660.45
9310.97
777.565
17702.6
103.726
18959.7
-453.853
17596.5
-908.67
15993.5
-1289.76
14572.2
-1608.12
13136.5
-1851.42
11768.3
-1991.61
10543.8
-2019.41
9593.35
-1954.54
8920.05
-1830.7
8398.62
-1678.19
7877.74
-1522.29
7261.03
-1384.74
6503.36
-1289.91
5621.3
-1258.4
4624.61
-1294.29
3262.16
-1400.32
831.906
-1577.42
-2414.93
-1832.33
-4364.53
-2137.2
-5057.99
-2425.66
-5361.69
-2699.06
-5917.49
-2961.64
-6574.57
-3171.45
-6996.87
-3286.98
-6939.33
-3309.41
-6153.99
-3291.23
-4538.67
-3291.83
-2370.62
-3408.94
-61.8387
-3940.77
1707.39
-5364.99
2364.48
-7834.43
1319.88
-10841.7
-1346.52
-13753.6
-4718.12
-16207.6
-8609.72
-18255.2
-12960.2
-20184.1
-17841.6
-22137.1
-24019.6
-24026.1
-31348.7
-25859.2
-38439.6
-27407.3
-42675.3
-27788.5
-35874.2
-25796.4
-13089.6
-22536.7
13209.3
-18850.6
34317.8
-15084.1
50072.9
-11291.3
63248.1
-7923.03
73349
-5243.36
79928.5
-2858.39
85185.8
-751.446
88819.4
353.888
85874.2
271.961
66125.3
-443.243
34575
-1037.84
12663.6
-845.976
5418.65
-20.7143
2219.16
984.345
-954.988
1931.59
-2918.48
2700.72
-4305.51
3192.49
-4318.8
3473.26
-4475.22
2914.14
-4162.75
2602.79
-1919.72
5161.29
-7439.93
7976.9
-23541.4
7565.09
-33231.7
5791.01
-30324.6
4392.71
-26218.7
3318.55
-28768.3
2235.81
-37413.9
939.686
-48469.3
-314.71
-61795.9
-71998.9
4216.03
-9340.19
3805.66
-6625.33
2931.48
-862.016
1666.34
10576.1
770.325
18598.6
116.99
19613
-417.259
18130.7
-857.687
16434
-1229.19
14943.7
-1544.1
13451.4
-1794.69
12018.9
-1953.33
10702.4
-2004.67
9644.69
-1961.61
8876.99
-1855.18
8292.19
-1716.05
7738.62
-1570.91
7115.89
-1443.01
6375.46
-1356.76
5535.05
-1329.33
4597.18
-1360.95
3293.77
-1461.24
932.194
-1648.4
-2227.77
-1910.53
-4102.4
-2204.78
-4763.74
-2480.34
-5086.14
-2746.72
-5651.11
-2999.05
-6322.24
-3191.67
-6804.25
-3285.49
-6845.51
-3279.83
-6159.65
-3223.43
-4595.07
-3178.45
-2415.6
-3210.72
-29.5678
-3520.7
2017.38
-4521.5
3365.28
-6632.24
3430.62
-9698.63
1719.87
-12961.5
-1455.29
-15730.9
-5840.29
-17977.5
-10713.6
-20040
-15779.1
-22126.6
-21933
-24201.1
-29274.2
-26240.7
-36400
-27999.1
-40916.9
-28633.9
-35239.5
-27087.8
-14635.7
-24284.8
10406.3
-20872
30905
-17020.4
46221.3
-12989.2
59216.9
-9351.77
69711.6
-6377.37
76954.1
-3697.72
82506.2
-1244.27
86365.9
407.359
84222.5
803.369
65729.3
153.467
35224.9
-615.795
13432.9
-597.234
5400.09
139.652
1482.28
1081.66
-1897
1948.86
-3785.68
2649.94
-5006.59
3166.2
-4835.06
3367.61
-4676.63
2407.2
-3202.34
2686.48
-2199
6098.68
-10852.1
8488
-25930.7
7635.54
-32379.3
5826.72
-28515.8
4541.67
-24933.7
3551.1
-27777.7
2500.4
-36363.2
1199.48
-47168.4
-116.048
-60480.4
-70143.8
4383.02
-9053.18
3941.51
-6183.82
2971.27
108.218
1648.78
11898.6
747.032
19500.4
116.124
20243.9
-392.388
18639.3
-815.306
16856.9
-1173.56
15302
-1480.05
13757.9
-1731.74
12270.6
-1903.54
10874.2
-1976.02
9717.17
-1955.2
8856.17
-1868.07
8205.06
-1744.54
7615.08
-1611.96
6983.3
-1494.96
6258.46
-1417.66
5457.75
-1393.62
4573.14
-1421.3
3321.45
-1520
1030.89
-1718.86
-2028.91
-1985.35
-3835.91
-2268.11
-4480.98
-2532.34
-4821.9
-2791.37
-5392.08
-3031.9
-6081.71
-3207.15
-6629
-3283.14
-6769.52
-3260.06
-6182.73
-3180.16
-4674.97
-3105.96
-2489.8
-3088.04
-47.4901
-3250.14
2179.48
-3893.27
4008.41
-5504.18
5041.53
-8341.56
4557.25
-11864
2067.12
-15049.7
-2654.56
-17565.9
-8197.4
-19777.6
-13567.3
-21990.5
-19720.2
-24227
-27037.7
-26449
-34177.9
-28393.5
-38972.4
-29219.8
-34413.2
-27941.2
-15914.3
-25397.1
7862.17
-22221.9
27729.8
-18459.8
42459.1
-14448.6
55205.7
-10718.2
65981.2
-7525.63
73761.5
-4603.42
79584
-1870.18
83632.7
256.767
82095.6
1085.03
64901
553.732
35756.2
-299.009
14285.6
-376.647
5477.73
331.789
773.84
1222.76
-2787.97
2018.75
-4581.66
2719.29
-5707.14
3321.45
-5437.21
3287.16
-4642.35
2122.8
-2037.98
3308.28
-3384.48
7232.9
-14776.7
8909.65
-27607.5
7640.07
-31109.7
5865.5
-26741.3
4714.59
-23782.8
3810.36
-26873.5
2797.8
-35350.6
1505.5
-45876.1
120.073
-59094.9
-68394.5
4523.75
-8730.57
4045.53
-5705.6
2976.39
1177.36
1605.86
13269.1
707.22
20399
101.268
20849.9
-379.617
19120.1
-782.27
17259.5
-1123.99
15643.7
-1417.7
14051.6
-1664.62
12517.5
-1843.72
11053.3
-1933.69
9807.13
-1934.29
8856.77
-1867.6
8138.37
-1761.57
7509.05
-1643.35
6865.08
-1538.41
6153.52
-1470.03
5389.37
-1448.68
4551.79
-1473.53
3346.3
-1574.72
1132.09
-1786.01
-1817.63
-2054.51
-3567.4
-2326.09
-4209.4
-2580.51
-4567.48
-2831.71
-5140.88
-3059.13
-5854.29
-3216.1
-6472.02
-3275.4
-6710.23
-3242.47
-6215.65
-3154.23
-4763.22
-3067.16
-2576.87
-3020.61
-94.0353
-3087.98
2246.84
-3475.87
4396.31
-4620.92
6186.57
-6999.59
6935.93
-10524.6
5592.13
-14137.7
958.571
-17006.8
-5328.35
-19380.7
-11193.4
-21710.2
-17390.7
-24087.8
-24660.1
-26472.9
-31792.8
-28594.5
-36850.8
-29614.9
-33392.8
-28540.4
-16988.7
-26114.3
5436
-23121.9
24737.5
-19577.7
38915
-15749.9
51377.9
-12027.4
62258.7
-8681.73
70415.9
-5569.72
76472
-2608.88
80671.8
-75.6639
79562.4
1133.23
63692.1
774.365
36115.1
-59.3709
15119.4
-150.91
5569.27
504.555
118.374
1262.64
-3546.06
2005.83
-5324.86
2774.17
-6475.47
3396.2
-6059.24
2865.5
-4111.65
2132.82
-1305.3
4615.3
-5866.95
8391.59
-18553
9184.14
-28400
7593.3
-29518.8
5925.39
-25073.4
4919.55
-22776.9
4101.46
-26055.4
3132.47
-34381.6
1862.66
-44606.3
360.853
-57593.1
-65837.3
4635.26
-8369.63
4112.39
-5182.72
2945.34
2344.4
1535.92
14678.6
650.46
21284.5
72.6233
21427.7
-379.203
19572
-759.193
17639.5
-1081.38
15965.9
-1358.62
14328.8
-1595.5
12754.4
-1775.96
11233.8
-1878.77
9909.95
-1898.67
8876.67
-1852.45
8092.15
-1765.24
7421.84
-1663.06
6762.9
-1571.16
6061.62
-1511.4
5329.61
-1492.21
4532.6
-1515.79
3369.89
-1622.89
1239.18
-1846.72
-1593.8
-2115.81
-3298.31
-2377.52
-3947.68
-2623.57
-4321.43
-2866.72
-4897.74
-3080.4
-5640.61
-3218.21
-6334.21
-3259.74
-6668.7
-3219.73
-6255.67
-3134.72
-4848.22
-3050.84
-2660.75
-2991.3
-153.577
-2997.45
2252.99
-3215.76
4614.62
-3993.06
6963.87
-5833.92
8776.79
-9066.33
8824.54
-12954.2
4846.4
-16245.6
-2036.93
-18822.7
-8616.27
-21252.6
-14960.8
-23747.8
-22164.8
-26284
-29256.6
-28585.6
-34549.2
-29835.4
-32143
-29013.2
-17810.9
-26702.8
3125.56
-23870.5
21905.2
-20583
35627.5
-16975.9
47770.7
-13293.2
58576
-9844.17
66966.8
-6589
73216.8
-3436.2
77519
-562.797
76689
983.938
62145.4
854.453
36244.6
148.48
15825.3
21.6027
5696.15
422.539
-282.562
917.144
-4040.66
1594.65
-6002.36
2344.42
-7225.24
2733.01
-6447.83
1740.32
-3118.97
2367.44
-1932.42
6361.29
-9860.8
9389.61
-21581.4
9291.52
-28301.9
7526.58
-27753.9
6024.78
-23571.6
5164.04
-21916.2
4429.8
-25321.1
3508.74
-33460.5
2272.54
-43370.1
688.591
-56009.2
-63345.5
4715.68
-7967.78
4139.48
-4606.52
2873.44
3610.44
1437.29
16114.7
576.398
22145.4
30.3717
21973.7
-391.32
19993.7
-746.591
17994.8
-1046.55
16265.8
-1304.16
14586.5
-1526.52
12976.7
-1702.65
11409.9
-1813.07
10020.4
-1848.91
8912.51
-1821.92
8065.16
-1753.98
7353.9
-1669.07
6677.99
-1590.94
5983.49
-1539.56
5278.23
-1522.3
4515.34
-1546.23
3393.81
-1661.42
1354.37
-1897.55
-1357.67
-2167.01
-3028.84
-2421.04
-3693.66
-2660.22
-4082.25
-2895.58
-4662.38
-3095.87
-5440.32
-3214.49
-6215.59
-3236.58
-6646.61
-3187.89
-6304.35
-3111.02
-4925.1
-3043.25
-2728.52
-2985.39
-211.439
-2953.63
2221.23
-3061.32
4722.31
-3566.34
7468.9
-4886.91
10097.4
-7608.73
11546.4
-11491.2
8728.86
-15194.3
1666.2
-18053.7
-5756.88
-20565.2
-12449.3
-23153.8
-19576.3
-25839.4
-26571
-28338.3
-32050.4
-29859.7
-30621.6
-29379.3
-18291.3
-27294.6
1040.91
-24661.3
19271.9
-21612.1
32578.3
-18182.6
44341.2
-14532.5
54925.9
-11012.7
63447.1
-7649.53
69853.6
-4328.15
74197.6
-1174.86
73535.7
687.163
60283.3
843.784
36087.9
339.826
16329.3
101.945
5934.03
117.554
-298.172
352.094
-4275.2
891.252
-6541.52
1334.02
-7668.01
1156.93
-6270.74
1121.23
-3083.27
3941.63
-4752.82
8217.37
-14136.5
10074
-23438
9256.19
-27484.2
7479.65
-25977.4
6179.13
-22271
5455.14
-21192.2
4801.22
-24667.2
3931.15
-32590.5
2728.41
-42167.4
948.118
-54228.9
-60247.7
4764.26
-7522.7
4123.98
-3966.25
2755.91
4978.5
1308.18
17562.4
484.684
22968.9
-25.3817
22483.8
-416.122
20384.4
-744.919
18323.6
-1020.22
16541.1
-1255.5
14821.7
-1459.56
13180.8
-1626.27
11576.6
-1738.86
10133
-1786.33
8959.98
-1776.07
8054.9
-1726.68
7304.51
-1659.5
6610.81
-1595.69
5919.69
-1552.65
5235.19
-1537.44
4500.14
-1563.01
3419.38
-1686.94
1478.3
-1934.89
-1109.72
-2205.89
-2757.84
-2455.22
-3444.33
-2689.38
-3848.09
-2917.82
-4433.94
-3105.85
-5252.29
-3206.37
-6115.06
-3208.4
-6644.59
-3147.91
-6364.84
-3078.07
-4994.94
-3033.76
-2772.82
-2991.82
-253.378
-2941.65
2171.05
-2975.76
4756.43
-3278.47
7771.61
-4142.39
10961.3
-6232.88
13636.8
-9793.86
12289.8
-13767.3
5639.67
-16983.7
-2540.53
-19589.3
-9843.6
-22245.9
-16919.7
-25082.2
-23734.7
-27811.4
-29321.2
-29652.1
-28780.9
-29589.9
-18353.5
-27869.2
-679.796
-25519
16921.8
-22692.3
29751.5
-19389.8
41038.8
-15756.2
51292.2
-12180.2
59871.2
-8728.19
66401.6
-5254.22
70723.7
-1871.02
70152.5
302.642
58109.7
796.691
35593.9
512.39
16613.6
234.106
6212.31
133.238
-197.303
337.121
-4479.08
703.154
-6907.55
698.29
-7663.14
517.874
-6090.32
2367.72
-4933.12
6536.41
-8921.51
9771.25
-17371.4
10414.6
-24081.3
9149.58
-26219.2
7490.34
-24318.1
6399.94
-21180.7
5800.05
-20592.3
5221.86
-24089
4404.2
-31772.8
3241.1
-41004.2
1345.78
-52333.6
-56197.3
4781.28
-7032.07
4063.03
-3248
2588.81
6452.72
1147.27
19004
374.92
23741.2
-94.7367
22953.5
-453.791
20743.5
-754.583
18624.4
-1003.04
16789.6
-1213.6
15032.3
-1396.26
13363.5
-1549.13
11729.5
-1658.6
10242.4
-1712.78
9014.16
-1715.65
8057.77
-1682.89
7271.75
-1632.94
6560.87
-1583.63
5870.37
-1549.12
5200.67
-1536.39
4487.41
-1564.46
3447.45
-1696.58
1610.42
-1955.78
-850.52
-2230.5
-2483.12
-2478.7
-3196.12
-2710.14
-3616.66
-2932.92
-4211.15
-3110.14
-5075.07
-3194.38
-6030.83
-3177.48
-6661.49
-3103.62
-6438.69
-3037.76
-5060.8
-3018.54
-2792.05
-3003
-268.917
-2950.8
2118.85
-2933.65
4739.27
-3078.89
7916.85
-3564.92
11447.3
-4998.71
15070.6
-7996.86
15288
-11970
9612.83
-15525
1014.41
-18300.1
-7068.46
-21004.8
-14215
-23979.9
-20759.6
-26964.7
-26336.3
-29174.9
-26570.7
-29590.3
-17938.1
-28334.5
-1935.63
-26346.5
14933.8
-23759.5
27164.5
-20573.4
37852.7
-16950.1
47668.9
-13319.1
56240.2
-9783.8
62866.2
-6169.02
67108.9
-2590.1
66573.6
-98.6118
55618.2
763.697
34731.6
712.081
16665.2
670.733
6253.66
987.999
-514.569
1490.86
-4981.95
1846.14
-7262.83
1870.83
-7687.84
2749.7
-6969.2
5545.75
-7729.17
8942.41
-12318.2
10767.6
-19196.5
10499.1
-23812.8
9052.19
-24772.3
7586.04
-22852
6696.68
-20291.3
6206.5
-20102.1
5697.71
-23580.2
4930.75
-31005.9
3810.54
-39884
1789.44
-50312.5
-52280.4
4767.27
-6492.84
3953.24
-2433.96
2369.13
8036.82
954.159
20419
246.614
24448.7
-178.085
23378.2
-504.496
21069.9
-775.854
18895.7
-995.487
17009.2
-1179.17
15216
-1337.86
13522.1
-1473.23
11864.9
-1574.72
10343.9
-1630.51
9069.95
-1642.1
8069.36
-1622.85
7252.5
-1588.58
6526.6
-1553.4
5835.19
-1527.69
5174.97
-1518.12
4477.85
-1549.12
3478.44
-1688.1
1749.4
-1957.93
-580.693
-2238.88
-2202.17
-2489.74
-2945.27
-2721.02
-3385.37
-2939.44
-3992.73
-3107.08
-4907.43
-3177.13
-5960.78
-3144.07
-6694.55
-3058.04
-6524.73
-2994.64
-5124.19
-2998.76
-2787.94
-3013.91
-253.765
-2970.54
2075.48
-2915
4683.74
-2932.07
7933.91
-3120.68
11635.9
-3946.02
15896
-6225.69
17567.7
-9887.47
13274.6
-13665.1
4792.07
-16706.5
-4027.07
-19447.9
-11473.7
-22529
-17678.5
-25769.1
-23096.2
-28391.4
-23948.4
-29337.7
-16991.8
-28590.8
-2682.53
-26998.6
13341.5
-24691.6
24857.6
-21657.2
34818.3
-18058.7
44070.5
-14371
52552.5
-10748.9
59244.1
-7004.33
63364.4
-3251.84
62821.1
-443.279
52809.6
778.319
33510
1021.5
16422
1474.22
5800.94
2491.33
-1531.68
3514.53
-6005.14
4191.14
-7939.44
4785.55
-8282.24
6172.37
-8356.01
8533.94
-10090.7
10659.9
-14444.1
11284.9
-19821.5
10461.4
-22989.3
9025.78
-23336.7
7785.82
-21612
7078.85
-19584.3
6682.24
-19705.5
6234.05
-23132.1
5515.77
-30287.6
4431.86
-38800.1
2067.99
-47948.6
-48174.6
4721.03
-5899.85
3789.2
-1502.13
2093.83
9732.19
729.147
21783.6
99.2392
25078.7
-276.116
23753.5
-568.471
21362.2
-808.758
19136
-997.732
17198.2
-1152.62
15370.9
-1285.25
13654.8
-1400.14
11979.7
-1489.42
10433.2
-1541.84
9122.37
-1557.33
8084.85
-1547.56
7242.73
-1526.3
6505.34
-1504.14
5813.02
-1487.41
5158.24
-1481.83
4472.26
-1515.75
3512.37
-1659.19
1892.84
-1938.23
-301.653
-2228.48
-1911.93
-2485.84
-2687.9
-2719.43
-3151.78
-2934.46
-3777.71
-3093.37
-4748.52
-3151.57
-5902.58
-3106.41
-6739.71
-3011.74
-6619.4
-2951.92
-5184.01
-2977.76
-2762.09
-3023.53
-207.993
-2993.88
2045.82
-2906.09
4595.95
-2816.04
7843.87
-2780.89
11600.8
-3092.98
16208.1
-4598.18
19072.9
-7701.81
16378.2
-11469
8559.26
-14780
-716.021
-17596.5
-8657.29
-20740.2
-14534.7
-24208.4
-19628
-27268.1
-20888.7
-28802
-15458
-28577.8
-2906.65
-27361.5
12125.2
-25354.3
22850.3
-22524.6
31988.6
-18992.9
40538.8
-15252.9
48812.4
-11535.5
55526.7
-7673.99
59502.9
-3772.5
58919.6
-682.022
49719.1
868.392
31959.6
1493.41
15797
2472.85
4821.5
3992.38
-3051.21
5439.62
-7452.38
6597.85
-9097.67
7668.16
-9352.55
9035.99
-9723.84
10615.9
-11670.7
11629.1
-15457.3
11467.7
-19660.1
10413.3
-21934.9
9116.26
-22039.7
8106.28
-20602
7556.07
-19034.1
7234.01
-19383.4
6834.91
-22732.9
6164.22
-29616.9
5106
-37741.9
2525.09
-45367.7
-44587.2
4637.83
-5244.59
3561.07
-425.365
1759.97
11533.3
473.37
23070.2
-67.9161
25619.9
-390.001
24075.6
-645.96
21618.2
-853.022
19343.1
-1009.62
17354.8
-1134.11
15495.4
-1239.03
13759.7
-1331.06
12071.8
-1404.58
10506.7
-1449.1
9166.9
-1463.57
8099.32
-1458.62
7237.78
-1446.74
6493.46
-1435.61
5801.89
-1427.67
5150.31
-1426.88
4471.47
-1463.45
3548.94
-1608.34
2037.73
-1894.04
-15.9561
-2196.27
-1609.69
-2463.58
-2420.59
-2701.57
-2913.79
-2913.62
-3565.66
-3064.39
-4597.75
-3113.59
-5853.38
-3061.56
-6791.74
-2963.31
-6717.66
-2909.91
-5237.41
-2958.19
-2713.81
-3033.29
-132.895
-3018.04
2030.57
-2899.69
4477.61
-2718.41
7662.59
-2519.42
11401.8
-2432.87
16121.5
-3193.71
19833.7
-5577.29
18761.8
-9042.37
12024.3
-12499.7
2741.31
-15463.8
-5693.16
-18639.1
-11359.5
-22290.7
-15976.4
-25776.8
-17402.6
-27949.5
-13285.2
-28277.3
-2578.81
-27402.6
11250.5
-25662.1
21109.8
-23057.8
29384.3
-19650.9
37132
-15884.2
45045.7
-12069.7
51712.2
-8110.05
55543.2
-4098.49
54908
-794.825
46415.5
1070.56
30094.2
2100.98
14766.6
3434.05
3488.43
5127.75
-4744.91
6730.23
-9054.87
8122.01
-10489.4
9394.11
-10624.6
10634.2
-10963.9
11653.6
-12690
12012.8
-15816.6
11498.1
-19145.3
10453.4
-20890.2
9360.3
-20946.6
8561.86
-19803.6
8136.62
-18608.9
7866.56
-19113.4
7502.51
-22368.9
6875.68
-28990.1
5826.16
-36692.4
3253.47
-42795
-41406.4
4510.04
-4515.78
3252.26
832.414
1367.33
13418.2
189.322
24248.2
-255.679
26064.9
-521.083
24341
-737.07
21834.2
-908.142
19514.2
-1030.74
17477.4
-1123.55
15588.2
-1199.49
13835.6
-1266.87
12139.2
-1321.77
10561.6
-1354.48
9199.61
-1363.28
8108.12
-1358.24
7232.74
-1351.33
6486.55
-1348.32
5798.89
-1348.34
5150.32
-1352.87
4476
-1391.67
3587.75
-1535.02
2181.08
-1823.7
272.72
-2138.91
-1294.48
-2418.74
-2140.77
-2662.62
-2669.91
-2871.67
-3356.61
-3014.98
-4454.44
-3058.81
-5809.55
-3006.32
-6844.23
-2910.33
-6813.64
-2865.76
-5281.98
-2937.55
-2642.01
-3041.29
-29.1574
-3037.87
2027.15
-2890.12
4329.85
-2632.04
7404.51
-2312.03
11081.8
-1941.22
15750.7
-2052.61
19945.1
-3656.31
20365.5
-6607.92
14976
-9996.7
6130.09
-13075.7
-2614.18
-16256.4
-8178.8
-20045.6
-12187.2
-23911.9
-13536.3
-26733.7
-10463.5
-27660.2
-1652.35
-27144
10734.4
-25622.9
19588.7
-23200.6
26962
-19948.9
33880.2
-16203.8
41300.6
-12314.1
47822.4
-8282.3
51511.4
-4204.57
50830.3
-751.138
42962
1394.33
27948.7
2697.38
13463.5
4163.97
2021.85
5898.08
-6479.02
7530.63
-10687.4
8944.05
-11902.9
10192.7
-11873.3
11282.6
-12053.9
12015.2
-13422.6
12121.6
-15923
11558.5
-18582.2
10659.3
-19991
9784.74
-20072
9163.25
-19182.1
8825.82
-18271.5
8581.93
-18869.5
8236.69
-22023.6
7645.37
-28398.7
6585.36
-35632.4
4044.94
-40254.6
-37836
4325.81
-3697.17
2860.68
2297.54
920.942
15358
-119.582
25288.8
-464.757
26410.1
-670.092
24546.3
-841.667
22005.7
-973.564
19646.1
-1060.58
17564.4
-1120.74
15648.3
-1166.82
13881.7
-1208.22
12180.6
-1242.31
10595.7
-1260.03
9217.32
-1259.06
8107.16
-1249.1
7222.78
-1242.3
6479.75
-1243.67
5800.25
-1249.91
5156.56
-1259.76
4485.85
-1300.24
3628.23
-1438.97
2319.82
-1725.69
559.432
-2052.88
-967.285
-2346.55
-1847.1
-2597.24
-2419.21
-2803.35
-3150.51
-2940.67
-4317.12
-2983.99
-5766.23
-2938.48
-6889.74
-2850.95
-6901.17
-2815.47
-5317.47
-2907.73
-2549.75
-3038.43
101.544
-3046.13
2034.85
-2874.53
4158.26
-2552.17
7082.15
-2137.77
10667.4
-1583.08
15196
-1183.13
19545.1
-2021.86
21204.3
-4341.12
17295.2
-7415.48
9204.45
-10480.5
450.831
-13664.8
-4994.5
-17512.5
-8339.44
-21699.6
-9349.18
-25149.6
-7013.5
-26696
-105.912
-26594.7
10633.1
-25296.6
18290.6
-22991.3
24656.7
-19861.8
30750.7
-16174.4
37613.3
-12254.3
43902.3
-8180.42
47437.5
-4071.75
46721.6
-517.432
39407.7
1761.15
25670.1
3146.48
12078.2
4749.43
418.896
6602.16
-8331.75
8234.73
-12320
9575.61
-13243.8
10711.1
-13008.8
11649.9
-12992.6
12229.9
-14002.6
12273.5
-15966.6
11796.8
-18105.5
11085
-19279.2
10405.2
-19392.2
9914.47
-18691.4
9624.05
-17981
9378.52
-18624
9034.23
-21679.4
8464.81
-27829.3
7374.65
-34542.2
4891.77
-37771.7
-33899.8
4077.81
-2770.46
2393.36
3981.99
428.239
17323.1
-449.153
26166.2
-695.191
26656.2
-837.027
24688.2
-959.437
22128.2
-1048.89
19735.5
-1098.8
17614.3
-1125.54
15675.1
-1141.16
13897.3
-1155.64
12195
-1167.35
10607.4
-1167.65
9217.63
-1153.54
8093.04
-1134.29
7203.53
-1122.66
6468.11
-1123.98
5801.57
-1133.74
5166.33
-1148.06
4500.16
-1189.46
3669.63
-1320.59
2450.95
-1599.25
838.087
-1935.04
-631.49
-2242.28
-1539.86
-2500.37
-2161.13
-2704.34
-2946.53
-2838.72
-4182.74
-2888.09
-5716.86
-2858.11
-6919.72
-2785.38
-6973.9
-2757.18
-5345.67
-2860.12
-2446.81
-3009.21
250.631
-3033.71
2059.36
-2852.34
3976.89
-2474.59
6704.4
-1981.65
10174.4
-1319.68
14534.1
-565.815
18791.3
-701.187
21339.6
-2346.96
18941
-4955.98
11813.5
-7819.26
3314.11
-10923.1
-1890.71
-14704.9
-4557.63
-19140.7
-4913.39
-23173.9
-2980.23
-25344.1
2064.23
-25724.6
11013.6
-24717.6
17283.7
-22515.4
22454.4
-19445.5
27680.9
-15805.3
33973
-11895
39992
-7818.78
43361.3
-3733.89
42636.8
-223.341
35897.2
1971.17
23475.6
3554.63
10494.8
5613.38
-1639.86
7661.14
-10379.5
9244.56
-13903.4
10443.5
-14442.7
11409.2
-13974.6
12175.5
-13758.9
12632.2
-14459.2
12664
-15998.4
12298.2
-17739.7
11753.9
-18735
11220.1
-18858.3
10808.4
-18279.7
10524.4
-17697
10250.1
-18349.7
9887.68
-21317
9320.08
-27261.7
8181.42
-33403.6
5748.91
-35339.2
-29472.1
3759.65
-1712.49
1840.89
5900.75
-111.936
19275.9
-798.189
26852.4
-946.913
26804.9
-1021.48
24762.7
-1090.14
22196.8
-1134.07
19779.4
-1145.36
17625.6
-1138.01
15667.7
-1122.74
13882.1
-1109.65
12181.9
-1097.87
10595.6
-1079.08
9198.84
-1049.3
8063.26
-1017.14
7171.37
-996.002
6446.98
-992.497
5798.07
-1002.18
5176.01
-1019.12
4517.1
-1060.34
3710.85
-1181.2
2571.8
-1444.77
1101.66
-1783.1
-293.154
-2102.05
-1220.91
-2367.8
-1895.38
-2571.69
-2742.65
-2707.99
-4046.44
-2771.6
-5653.25
-2767.02
-6924.3
-2716.17
-7024.75
-2692.64
-5369.19
-2794.83
-2344.63
-2953.55
409.349
-2997.2
2103.01
-2817.66
3797.36
-2395.05
6281.78
-1835.62
9614.99
-1116.61
13815
-156.411
17831.1
312.142
20871.1
-647.323
19900.5
-2783.33
13949.5
-5289.71
5820.49
-8086.93
906.505
-11644.2
-1000.32
-16200.7
-356.967
-20753
1572.13
-23546.9
4858.08
-24473.8
11940.5
-23864.1
16673.9
-21828.8
20419.2
-18799.5
24651.5
-15172
30345.5
-11288.9
36108.9
-7269.82
39342.3
-3297.62
38664.6
18.7837
32580.8
2267.86
21226.5
4421.68
8340.94
6975.58
-4193.76
9091.12
-12495
10589.2
-15401.5
11646.2
-15499.7
12431.7
-14760.1
13012
-14339.2
13341.9
-14789.1
13356.9
-16013.5
13074.5
-17457.2
12646.5
-18307.1
12201.6
-18413.4
11821.4
-17899.5
11509.9
-17385.5
11183.8
-18023.6
10783.4
-20916.6
10191.4
-26669.7
8991.74
-32203.9
6594.49
-32941.9
-24859.5
3345.08
-475.432
1174.81
8071.01
-703.02
21153.7
-1168
27317.4
-1220.61
26857.5
-1223.51
24765.6
-1234.03
22207.3
-1229.54
19774.9
-1200.71
17596.8
-1158.53
15625.5
-1111.93
13835.5
-1070.77
12140.8
-1034.79
10559.7
-995.845
9159.9
-948.75
8016.16
-900.976
7123.6
-866.347
6412.35
-853.271
5784.99
-858.6
5181.34
-875.35
4533.85
-914.821
3750.32
-1023.23
2680.21
-1264.62
1343.04
-1596.54
38.7679
-1923.36
-894.092
-2196.75
-1621.99
-2403.65
-2535.74
-2547.67
-3902.43
-2634.11
-5566.81
-2665.82
-6892.58
-2646.57
-7044.01
-2626.36
-5389.39
-2714.01
-2256.99
-2871.66
567
-2928.35
2159.7
-2759.76
3628.76
-2310.64
5832.67
-1697.29
9001.64
-948.679
13066.4
107.118
16775.3
1027.33
19950.9
758.974
20168.8
-881.217
15589.7
-3044.3
7983.58
-5388.52
3250.72
-8505.48
2116.64
-12961.6
4099.13
-17949.1
6559.6
-21318.4
8227.38
-22784.8
13406.9
-22681.4
16570.6
-20931.1
18668.9
-17992.6
21713
-14375.1
26728
-10529.6
32263.4
-6626.94
35439.6
-2837.78
34875.4
314.838
29428.2
2855.1
18686.3
5619.2
5576.83
8419.08
-6993.63
10480.2
-14556.1
11902.3
-16823.6
12891.7
-16489.1
13582.7
-15451.1
14047.9
-14804.4
14291.1
-15032.4
14288.1
-16010.4
14051.7
-17220.8
13689.2
-17944.5
13289.3
-18013.5
12910.4
-17520.6
12551.5
-17026.6
12157.8
-17629.9
11699.5
-20458.3
11053.9
-26024.2
9784.59
-30934.5
7376.18
-30533.5
-20718.4
2766.03
1024.55
349.232
10487.8
-1331.62
22834.6
-1559.14
27544.9
-1517.19
26815.5
-1444.16
24692.6
-1392.24
22155.4
-1336.45
19719.2
-1265.77
17526.1
-1187.79
15547.5
-1109.32
13757
-1039.64
12071.1
-978.94
10499
-919.272
9100.23
-854.006
7950.89
-788.935
7058.53
-737.777
6361.2
-710.88
5758.1
-707.335
5177.8
-720.218
4546.74
-755.816
3785.92
-850.208
2774.6
-1064.01
1556.84
-1378.58
353.342
-1706.21
-566.459
-1986.16
-1342.05
-2199.34
-2322.56
-2356.3
-3745.47
-2472.56
-5450.54
-2551.14
-6814.01
-2577.09
-7018.05
-2564.52
-5401.96
-2619.15
-2202.36
-2753.17
701.023
-2817.76
2224.28
-2675.85
3486.85
-2222.25
5379.07
-1568.39
8347.78
-801.156
12299.2
280.593
15693.5
1484.3
18747.2
1834.24
19818.9
784.26
16639.7
-1050.98
9818.82
-3021.74
5221.48
-5580.79
4675.69
-9645.51
8163.85
-14891.4
11805.5
-18747.7
12083.7
-20653.2
15312.4
-21102.7
17020
-19778.8
17345
-17032.6
18966.8
-13461.8
23157.2
-9672.01
28473.6
-5909.96
31677.5
-2292.82
31258.2
883.166
26252.2
3880
15689.4
7104.96
2351.88
9891.36
-9780.04
11744.1
-16408.8
13007.6
-18087.1
13924.3
-17405.8
14590.8
-16117.6
15041.1
-15254.6
15272.6
-15263.9
15276.6
-16014.4
15075.6
-17019.9
14759.2
-17628.1
14393.3
-17647.6
14013.2
-17140.4
13605.9
-16619.3
13138.9
-17162.9
12604.6
-19924.1
11878.9
-25298.5
10529.8
-29585.4
8020.38
-28024.2
-17332
1934.57
2857.21
-649.29
13071.7
-1967.56
24152.9
-1972.47
27549.8
-1837.59
26680.7
-1685.32
24540.4
-1566.92
22037
-1456.71
19609
-1341.98
17411.4
-1226.84
15432.4
-1115.76
13645.9
-1017.03
11972.4
-931.17
10413.1
-850.45
9019.51
-766.749
7867.19
-683.67
6975.45
-614.097
6291.62
-570.029
5714.03
-553.307
5161.07
-558.171
4551.6
-587.21
3814.96
-666.5
2853.89
-849.61
1739.95
-1135.82
639.552
-1453.83
-248.455
-1737.13
-1058.74
-1958.73
-2100.96
-2132.16
-3572.04
-2282.31
-5300.39
-2416.21
-6680.11
-2503.6
-6930.66
-2513.6
-5391.97
-2529.79
-2186.17
-2621.28
792.508
-2685.69
2288.7
-2575.08
3376.24
-2133.24
4937.22
-1452.42
7666.96
-667.076
11513.9
402.491
14623.9
1745.21
17404.4
2575.05
18989
2138.89
17075.8
713.273
11244.4
-956.955
6891.71
-3017.26
6736
-6406.09
11552.7
-11660.4
17059.8
-15961.5
16384.8
-18180.5
17531.5
-19105.9
17945.4
-18297.8
16536.9
-15890.5
16559.6
-12427.6
19694.2
-8689.99
24736.1
-5048.1
28035.7
-1523.9
27734
1864.75
22863.5
5378.3
12175.9
8858.01
-1127.82
11428.9
-12350.9
12981.3
-17961.2
14001
-19106.8
14760
-18164.9
15358.2
-16715.8
15803.2
-15699.6
16059.5
-15520.2
16105.4
-16060.4
15965
-16879.4
15717.5
-17380.6
15411.2
-17341.3
15054.3
-16783.6
14617
-16182.1
14082.6
-16628.5
13460.1
-19301.5
12636.2
-24474.6
11200.4
-28149.5
8532.12
-25355.9
-13955.4
805.572
4964.85
-1742.25
15619.5
-2597.15
25007.8
-2410.4
27363.1
-2183.17
26453.4
-1949.31
24306.5
-1760.94
21848.6
-1592.96
19441
-1431.35
17249.7
-1277.1
15278.1
-1132.31
13501.1
-1003.88
11843.9
-892.344
10301.6
-790.272
8917.44
-688.193
7765.11
-587.175
6874.43
-498.455
6202.9
-435.027
5650.6
-401.516
5127.56
-394.247
4544.33
-413.65
3834.36
-477.038
2917.28
-628.415
1891.33
-877.353
888.491
-1173.51
47.707
-1453.93
-778.329
-1683.71
-1871.18
-1875.17
-3380.58
-2060.44
-5115.11
-2254.67
-6485.88
-2419
-6766.34
-2474.24
-5336.72
-2461.88
-2198.53
-2503.44
834.071
-2556.4
2341.65
-2466.86
3286.71
-2046.16
4516.52
-1350.71
6971.5
-541.883
10705
498.875
13583.2
1874.72
16028.6
3025.56
17838.2
3139.54
16961.8
2164.95
12219
803.511
8253.15
-840.625
8380.13
-3341.83
14053.9
-8275.91
21993.9
-13010.3
21119.2
-15518.1
20039.2
-16800.1
19227.4
-16445.1
16181.9
-14489.1
14603.6
-11268.3
16473.4
-7562.48
21030.3
-3979.42
24452.6
-433.82
24188.5
3299.66
19130
7240.79
8234.75
10710.3
-4597.35
12910
-14550.6
14125
-19176.2
14885.8
-19867.6
15448.7
-18727.8
15915.4
-17182.4
16297.6
-16081.8
16554
-15776.7
16650.9
-16157.2
16599.3
-16827.9
16458.1
-17239.4
16251.5
-17134.7
15956.4
-16488.4
15521.3
-15747
14937.4
-16044.6
14224.3
-18588.4
13297.6
-23547.9
11778.9
-26630.8
8968.82
-22545.8
-10310.1
-527.763
7152.07
-2818.07
17909.8
-3222.75
25412.4
-2877.57
27017.9
-2556.16
26132
-2238.71
23989
-1977.4
21587.3
-1748.22
19211.8
-1536.39
17037.9
-1340.48
15082.2
-1160.38
13321
-1001.3
11684.9
-863.362
10163.6
-739.468
8793.54
-619.095
7644.74
-500.675
6756.01
-393.053
6095.28
-309.289
5566.84
-256.448
5074.72
-233.525
4521.41
-240.168
3841
-286.971
2964.08
-407.439
2011.8
-614.569
1095.62
-877.324
310.462
-1145.28
-510.37
-1379.88
-1636.58
-1589.18
-3171.28
-1808.93
-4895.36
-2064.41
-6230.4
-2316.47
-6514.28
-2442.25
-5210.93
-2418.95
-2221.83
-2403.57
818.69
-2428.13
2366.21
-2346.01
3204.59
-1956.49
4127
-1260.83
6275.85
-422.197
9866.4
588.887
12572.1
1929.96
14687.5
3251.47
16516.7
3806.96
16406.3
3280.49
12745.5
2220.78
9312.86
935.905
9665.01
-569.925
15559.7
-4747.67
26171.7
-9772.17
26143.7
-12652.1
22919.1
-14270
20845.3
-14278.7
16190.6
-12723.2
13048.1
-9939.53
13689.8
-6345.87
17436.6
-2715.72
20822.4
1011.72
20461
5194.81
14947
9368.74
4060.81
12563.2
-7791.79
14292.8
-16280.2
15136.1
-20019.5
15623.2
-20354.7
15982.3
-19087
16297.7
-17497.7
16579.5
-16363.7
16797.4
-15994.5
16922.2
-16282
16956.1
-16861.7
16934.7
-17218
16854.1
-17054.1
16655.4
-16289.7
16259.2
-15350.8
15652
-15437.3
14857.4
-17793.9
13836.4
-22526.8
12249
-25043.5
9317.61
-19614.4
-6420.82
-1975.86
9179.28
-3828.33
19762.3
-3857.28
25441.4
-3380.24
26540.8
-2959.89
25711.7
-2556.31
23585.5
-2219.28
21250.3
-1925.51
18918
-1659.96
16772.4
-1419.35
14841.6
-1201.74
13103.4
-1010.57
11493.7
-845.159
9998.22
-698.648
8647.03
-559.834
7505.93
-424.668
6620.84
-299.058
5969.67
-195.101
5462.88
-121.611
5001.23
-80.4941
4480.29
-71.5463
3832.06
-101.05
2993.59
-192.607
2103.36
-358.059
1261.07
-579.511
531.914
-824.152
-265.729
-1057.25
-1403.48
-1282.5
-2946.03
-1535.3
-4642.57
-1849.2
-5916.5
-2191.69
-6171.79
-2411.4
-4991.22
-2405.22
-2228.01
-2328.26
741.728
-2297.43
2335.38
-2198.82
3105.98
-1847.57
3775.76
-1176.45
5604.73
-307.088
8997.04
683.478
11581.5
1950.81
13420.2
3326.68
15140.8
4199.34
15533.7
4095.38
12849.4
3336.83
10071.4
2337.73
10664.1
1714.23
16183.2
-1149.45
29035.3
-5964.97
30959.2
-9313.69
26267.9
-11241.2
22772.8
-11684
16633.4
-10492.9
11857
-8232.94
11429.8
-4965.3
14169
-1161.58
17018.7
2947.22
16352.2
7553.9
10340.3
11665.2
-50.4519
14334.3
-10460.9
15549.5
-17495.4
16012
-20482
16208.4
-20551.1
16348
-19226.5
16503.5
-17653.2
16675.9
-16536.1
16836.6
-16155.2
16962.6
-16408
17056.8
-16956
17142.1
-17303.3
17191.7
-17103.7
17111.4
-16209.4
16786.4
-15025.9
16184.2
-14835.1
15325.1
-16934.9
14226.9
-21428.6
12591.9
-23408.4
9530.3
-16552.8
-2110.41
-3434.23
10882.4
-4778.84
21106.9
-4514.97
25177.5
-3923.84
25949.7
-3398.47
25186.3
-2905.24
23092.2
-2489.36
20834.4
-2127.59
18556.3
-1804.87
16449.6
-1516.33
14553.1
-1258.53
12845.6
-1033.26
11268.4
-838.772
9803.74
-668.373
8476.63
-510.538
7348.09
-359.084
6469.39
-216.708
5827.29
-93.5934
5339.76
0.569197
4907.07
61.2722
4419.59
88.2602
3805.07
77.3794
3004.47
13.1548
2167.58
-113.099
1387.33
-290.561
709.376
-503.756
-52.534
-728.028
-1179.21
-965.718
-2708.34
-1250.35
-4357.94
-1617.5
-5549.36
-2043.48
-5745.8
-2372.96
-4661.74
-2424.85
-2176.12
-2302.1
618.975
-2195.05
2228.33
-2043.92
2954.85
-1709.04
3440.88
-1085.57
4981.26
-198.231
8109.7
787.496
10595.8
1962.68
12245
3313.33
13790.2
4385.91
14461.1
4649.55
12585.8
4205.07
10515.9
3439.71
11429.5
3416.37
16206.6
2282.66
30169
-1436.66
34678.5
-5073.14
29904.3
-7176.74
24876.4
-8059.18
17515.9
-7374.15
11172
-5586.55
9642.17
-2787.16
11369.6
1188.28
13043.3
5700.27
11840.2
10350.2
5690.4
13981.7
-3681.96
15951.4
-12430.7
16652
-18196
16747.2
-20577.3
16650.3
-20454.2
16552.3
-19128.6
16526.3
-17627.2
16573.1
-16583
16663.2
-16245.3
16773.1
-16517.9
16907.2
-17090.1
17083.2
-17479.2
17259.1
-17279.6
17309.8
-16260.2
17080
-14796
16505.6
-14260.7
15599.9
-16029.2
14443
-20271.7
12780.5
-21745.9
9601.67
-13374
2629.19
-4822.95
12248.6
-5693.58
21977.5
-5206.28
24690.2
-4511.04
25254.5
-3875.62
24550.9
-3288.79
22505.4
-2790.28
20335.9
-2356.91
18122.9
-1973.69
16066.4
-1634.06
14213.5
-1333.16
12544.7
-1071.21
11006.4
-845.448
9577.98
-649.3
8280.48
-471.271
7170.06
-303.542
6301.66
-145.573
5669.32
-4.95494
5199.15
108.717
4793.4
189.058
4339.25
235.089
3759.04
243.351
2996.21
205.167
2205.76
116.067
1476.43
-17.2126
842.656
-193.346
123.599
-402.005
-970.55
-648.665
-2461.68
-964.743
-4041.86
-1379.14
-5134.96
-1873.11
-5251.83
-2315.14
-4219.71
-2472.04
-2019.22
-2348.36
495.299
-2167.37
2047.34
-1927.2
2714.68
-1546.08
3059.76
-968.366
4403.54
-94.3768
7235.71
898.06
9603.37
1980.37
11162.7
3253.23
12517.3
4424.79
13289.6
4979.61
12031
4854.25
10641.3
4324.03
11959.7
4628.95
15901.6
5091.72
29706.3
3324.61
36445.6
333.502
32895.5
-1638.66
26848.6
-2661.27
18538.5
-2496.7
11007.4
-1044.94
8190.41
1390.53
8934.1
5031.91
9401.9
9340.06
7532.07
13377.7
1652.71
16129.1
-6433.32
17359.4
-13661
17582.4
-18418.9
17337
-20331.9
16958.5
-20075.7
16618.9
-18788.9
16393
-17401.3
16289.3
-16479.4
16284.1
-16240
16355.1
-16589
16509.5
-17244.5
16762.6
-17732.3
17061.4
-17578.4
17251.1
-16449.9
17130.7
-14675.6
16595.8
-13725.8
15657.1
-15090.5
14452.1
-19066.7
12771.2
-20065
9532.65
-10135.5
7431.71
-6135.08
13300.5
-6598.22
22440.7
-5937.45
24029.5
-5142.05
24459.1
-4393.79
23802.6
-3709.93
21821.5
-3124.59
19750.6
-2615.79
17614.1
-2168.74
15619.4
-1774.97
13819.7
-1428.03
12197.8
-1126.49
10704.9
-866.735
9318.23
-642.355
8056.1
-442.282
6969.99
-257.661
6117.04
-84.9395
5496.6
71.3284
5042.88
202.667
4662.06
301.691
4240.22
366.539
3694.19
393.386
2969.36
378.657
2220.49
322.724
1532.36
231.175
934.205
95.7645
259.009
-90.5031
-784.283
-341.832
-2210.35
-687.689
-3696
-1142.33
-4680.33
-1683.17
-4710.98
-2223.36
-3679.52
-2523.56
-1719.03
-2467.72
439.468
-2246.43
1826.04
-1895.85
2364.1
-1381.02
2544.93
-797.002
3819.52
22.5825
6416.12
1006.81
8619.14
2010.07
10159.4
3176.68
11350.7
4366.59
12099.6
5128.97
11268.6
5306.67
10463.6
5039.08
12227.3
5496.79
15443.9
7036.27
28166.8
7330.15
36151.7
5994.19
34231.4
4805.25
28037.5
4185.82
19157.9
4184.86
11008.3
5187.03
7188.25
7146.15
6974.98
9972.08
6575.97
13322.5
4181.67
16237.3
-1262.15
17962.4
-8158.35
18521.9
-14220.5
18328
-18225
17778.2
-19782.1
17140.2
-19437.7
16568.7
-18217.4
16138.6
-16971.2
15866.5
-16207.2
15737.4
-16110.9
15736.6
-16588.1
15880.3
-17388.2
16188.7
-18040.7
16601.3
-17991
16932.6
-16781.2
16926.5
-14669.5
16431.3
-13230.6
15469.3
-14128.5
14208.5
-17805.9
12492.2
-18348.7
9244.38
-6887.65
12243.7
-7396.46
14062.7
-7512.24
22556.4
-6710.92
23228.1
-5815.79
23563.9
-4954.07
22940.9
-4170.8
21038.3
-3494.61
19074.4
-2906.54
17026
-2392.21
15105
-1941.25
13368.7
-1545.35
11801.9
-1201.22
10360.8
-904.42
9021.43
-648.836
7800.52
-424.229
6745.38
-221.373
5914.18
-34.1665
5309.4
136.205
4872.51
283.342
4514.92
399.677
4123.89
482.406
3611.46
526.779
2924.99
532.727
2214.54
504.665
1560.42
448.434
990.437
351.536
355.907
191.655
-624.402
-58.2421
-1960.45
-427.265
-3326.98
-912.327
-4195.27
-1477.26
-4146.05
-2082.03
-3074.74
-2532.49
-1268.58
-2611.63
518.603
-2415.78
1630.2
-1979.68
1928
-1262.16
1827.41
-561.384
3118.75
184.008
5670.73
1110.92
7692.23
2052.38
9217.99
3107.75
10295.3
4257.09
10950.3
5143.63
10382.1
5584.65
10022.5
5605.02
12206.9
6146.27
14902.7
8228.09
26085
10068.4
34311.4
10537.6
33762.3
10492.4
28082.7
10421.3
19228.9
10481.6
10948.1
11108
6561.82
12510.2
5572.76
14495
4591.22
16742.9
1933.69
18532.4
-3051.66
19395.8
-9021.71
19417.8
-14242.5
18879.7
-17686.9
18068.3
-18970.7
17201.8
-18571.2
16420
-17435.5
15794.9
-16346.1
15346.5
-15758.8
15067.6
-15832.1
14954.2
-16474.7
15041.3
-17475.3
15366.1
-18365.4
15869.7
-18494.7
16335.3
-17246.7
16438.7
-14772.9
15978
-12769.9
15003.9
-13154.4
13645
-16447
11838.1
-16541.8
8650.72
-3700.3
16853.8
-8634.38
14554.8
-8448.43
22370.5
-7526.15
22305.9
-6530.39
22568.2
-5556.39
21966.9
-4672.44
20154.3
-3902.22
18304.1
-3231.37
16355.2
-2646.3
14520
-2134.98
12857.4
-1687.11
11354
-1297.33
9970.99
-960.35
8684.45
-670.349
7510.52
-418.278
6493.31
-195.154
5691.06
7.09295
5107.15
190.731
4688.87
352.166
4353.49
484.49
3991.56
583.98
3511.97
644.768
2864.2
669.039
2190.27
664.035
1565.42
636.046
1018.43
571.186
420.766
436.253
-489.469
193.44
-1717.64
-187.854
-2945.68
-691.387
-3691.74
-1260.05
-3577.39
-1880.15
-2454.65
-2436.89
-711.829
-2677.33
759.039
-2587.24
1540.11
-2155.5
1496.26
-1243.81
915.716
-302.227
2177.17
416.114
4952.39
1227.73
6880.62
2103.08
8342.64
3056.57
9341.83
4129.78
9877.09
5066.84
9445
5714.04
9375.35
6028.81
11892.1
6656.27
14275.2
8907.63
23833.6
11634.5
31584.6
13485
31911.7
14543.9
27023.8
15030.7
18742.2
15219.5
10759.3
15614.7
6166.55
16534
4653.47
17836.8
3288.4
19220.6
549.934
20170.2
-4001.3
20419
-9270.5
20042.8
-13866.4
19232.7
-16876.8
18204.5
-17942.5
17147.1
-17513.9
16187.5
-16475.9
15388.8
-15547.5
14766.6
-15136.6
14316.3
-15381.9
14044.7
-16203.1
14014.5
-17445.2
14296.7
-18647.6
14849.2
-19047.2
15427.8
-17825.2
15627
-14972.2
15199.2
-12342.1
14220.8
-12175.9
12665.7
-14892
10667.2
-14543.3
7651.84
-684.901
20969.5
-9870.35
14791
-9415.13
21915.3
-8381.3
21272
-7283.67
21470.6
-6199.71
20883
-5214.84
19169.4
-4348.56
17437.9
-3592.18
15598.8
-2933.09
13860.9
-2358.07
12282.4
-1855.04
10851
-1416.48
9532.42
-1036.19
8304.17
-708.606
7182.93
-426.02
6210.73
-180.091
5445.13
38.6446
4888.41
235.672
4491.84
410.581
4178.58
557.997
3844.15
673.395
3396.57
749.812
2787.78
790.761
2149.32
805.044
1551.14
799.13
1024.34
759.218
460.678
645.045
-375.296
412.132
-1484.72
29.9732
-2563.52
-479.137
-3182.62
-1036.66
-3019.87
-1618.66
-1872.64
-2183.42
-147.067
-2531.84
1107.45
-2574.29
1582.57
-2236.63
1158.6
-1290.77
-30.144
-105.063
991.462
713.913
4133.41
1393.13
6201.39
2168.31
7567.46
3026.1
8484.04
4007.64
8895.55
4939.37
8513.27
5728.83
8585.89
6317.7
11303.2
7062.03
13530.9
9289.14
21606.5
12371.3
28502.4
15045.6
29237.5
16934.8
25134.6
17939.7
17737.3
18317.1
10381.9
18623.8
5859.81
19223.1
4054.16
20044
2467.52
20834.6
-240.662
21227.4
-4394.08
21064
-9107.09
20404.9
-13207.3
19385.3
-15857.2
18184.6
-16741.8
16978.7
-16307.9
15881.5
-15378.7
14939
-14605
14152.4
-14349.9
13512.4
-14742
13034.4
-15725
12816.8
-17227.6
12981.8
-18812.6
13523.4
-19588.8
14179.6
-18481.4
14454.4
-15247
14064.9
-11952.6
13060
-11171
11150.1
-12982
8845.96
-12239.2
6164.33
1996.73
24277
-11118.4
14782.6
-10416.9
21213.8
-9274.44
20129.5
-8073.54
20269.7
-6882.14
19691.6
-5796.93
18084.2
-4833.86
16474.8
-3990.09
14755
-3254.15
13124.9
-2612.15
11640.4
-2050.51
10289.4
-1559.88
9041.79
-1133.21
7877.5
-765.139
6814.86
-449.195
5894.78
-177.721
5173.66
59.7418
4650.95
271.297
4280.29
459.717
3990.16
622.018
3681.85
753.064
3265.53
844.941
2695.91
901.801
2092.46
932.757
1520.18
944.058
1013.04
922.632
482.104
824.363
-277.027
602.006
-1262.37
227.531
-2189.05
-274.185
-2680.91
-810.382
-2483.67
-1316.12
-1366.9
-1771.07
307.878
-2095.27
1431.66
-2185.17
1672.46
-1954.2
927.628
-1264.19
-720.156
-42.1365
-230.588
1013.82
3077.46
1631.41
5583.81
2274.01
6924.86
3026.48
7731.56
3910.66
8011.38
4798.91
7625.02
5666.65
7718.16
6484.88
10485
7374.43
12641.4
9513.13
19467.8
12617.9
25397.7
15654.4
26200.9
18046.2
22742.8
19467.2
16316.2
20073.3
9775.87
20401
5532.06
20830.9
3624.34
21348
1950.38
21760.1
-652.749
21801.6
-4435.61
21373
-8678.51
20518.2
-12352.5
19340.6
-14679.6
18010
-15411.1
16700.2
-14998.1
15509
-14187.5
14455.7
-13551.7
13517
-13411.2
12672.4
-13897.4
11941.9
-14994.6
11465.5
-16751.1
11428.2
-18775.4
11878.3
-20038.9
12557.1
-19160.2
12881.3
-15571.1
12529.3
-11600.6
11410.6
-10052.3
8996.99
-10568.5
6351.29
-9593.49
4216.83
4131.19
26483.3
-12385.4
14538
-11454.5
20282.8
-10203.3
18878.4
-8897.94
18964.3
-7601.16
18394.8
-6416.71
16899.8
-5357.14
15415.2
-4425.06
13822.9
-3610.09
12310
-2898.01
10928.3
-2274.24
9665.6
-1728.11
8495.67
-1252.09
7401.47
-841.016
6403.79
-489.338
5543.11
-189.684
4874
69.2827
4391.99
297.39
4052.18
500.273
3787.27
678.031
3504.09
825.047
3118.51
932.94
2588.01
1006.06
2019.35
1052.36
1473.89
1077.38
988.016
1069.05
490.436
982.149
-190.127
770.055
-1050.27
409.37
-1828.36
-72.7461
-2198.79
-580.151
-1976.27
-1004.74
-942.315
-1287.36
590.505
-1486.17
1630.47
-1535.97
1722.26
-1366.34
757.997
-1058.7
-1027.8
-50.4945
-1238.79
1221.37
1805.59
1913.57
4891.61
2450.39
6388.04
3083.03
7098.93
3861.12
7233.28
4676.91
6809.22
5562.51
6832.57
6547.69
9499.83
7591.79
11597.3
9652.37
17407.2
12620.4
22429.7
15713.1
23108.2
18329.5
20126.4
20030.3
14615.5
20852.7
8953.43
21258.4
5126.43
21622.2
3260.51
21965.4
1607.15
22148.8
-836.102
21980.5
-4267.34
21389.9
-8087.94
20400.9
-11363.4
19106.5
-13385.2
17687.6
-13992.2
16318.7
-13629.2
15075.4
-12944.3
13942.2
-12418.6
12865.9
-12334.8
11810
-12841.5
10794.1
-13978.7
9996.85
-15953.9
9651.53
-18430.1
9875.18
-20262.5
10473.1
-19758.1
10802.9
-15900.9
10449.5
-11247.2
9079.98
-8682.77
6216.13
-7704.63
3418.76
-6796.12
1966.62
5583.33
27348.6
-13673.9
14063.6
-12526
19134.9
-11164.9
17517.3
-9754
17553.4
-8353.47
16994.2
-7071.02
15617.3
-5915.99
14260.2
-4895.49
12802.4
-3999.96
11414.4
-3215.06
10143.4
-2525.72
8976.26
-1920.75
7890.7
-1392.64
6873.36
-936.575
5947.72
-547.366
5153.9
-217.158
4543.8
66.327
4108.5
313.54
3804.97
532.377
3568.44
726.55
3309.92
890.35
2954.71
1015.64
2462.72
1106.63
1928.35
1168.47
1412.05
1205.22
951.267
1206.09
489.566
1126.97
-111.007
924.2
-847.506
581.391
-1485.55
129.291
-1746.69
-341.161
-1505.82
-705.944
-577.532
-825.401
709.962
-880.932
1686
-935.819
1777.15
-841.181
663.359
-683.304
-1185.68
34.852
-1956.95
1275.06
565.384
2159.93
4006.74
2697.37
5850.6
3233.44
6562.86
3897.54
6569.18
4612.52
6094.24
5458.22
5986.87
6530.54
8427.51
7709.21
10418.6
9730.92
15385.5
12527.2
19633.4
15510.7
20124.7
18149.5
17487.6
19989.8
12775.2
20971.8
7971.35
21465
4633.29
21817.9
2907.61
22069.8
1355.23
22126.1
-892.373
21844.9
-3986.16
21158.5
-7401.58
20073.6
-10278.4
18697.5
-12009.2
17232.7
-12527.4
15846.7
-12243.3
14585.3
-11682.9
13397.3
-11230.6
12202
-11139.5
10946.2
-11585.6
9641.02
-12673.5
8476.17
-14789
7653.95
-17607.8
7394.2
-20002.8
7718.51
-20082.4
7966.87
-16149.3
7504.96
-10785.3
5849.92
-7027.73
3026.78
-4881.49
371.169
-4140.5
-428.027
6382.52
26704.9
-14983.4
13364.8
-13628.5
17779.9
-12155
16043.8
-10637.5
16035.9
-9134.54
15491.3
-7755.28
14238.1
-6506.24
13011.2
-5397.76
11693.9
-4420.68
10437.3
-3560.65
9283.38
-2802.68
8218.3
-2135.94
7223.96
-1553.57
6290.99
-1051.21
5445.36
-623.438
4726.12
-260.8
4181.16
50.1589
3797.54
319.252
3535.87
555.901
3331.79
767.805
3098.01
949.976
2772.54
1094.9
2317.8
1205.76
1817.5
1284.35
1333.46
1332.47
903.14
1340.06
481.982
1265.99
-36.9444
1071.31
-652.817
749.145
-1163.39
336.057
-1333.6
-85.8348
-1083.92
-401.725
-261.642
-422.87
731.107
-315.222
1578.35
-343.58
1805.51
-432.974
752.753
-247.834
-1370.82
260.267
-2465.05
1220.7
-395.049
2295.29
2932.15
2956.54
5189.34
3480.24
6039.16
4057.7
5991.72
4661.6
5490.34
5420.25
5228.22
6484.18
7363.58
7736.3
9166.46
9746.36
13375.4
12406.8
16973
15226.1
17305.4
17761.4
14952.2
19615.8
10920.8
20678.7
6908.43
21237.1
4074.97
21599.1
2545.53
21810.3
1144.11
21807.6
-889.746
21470.9
-3649.44
20718.1
-6648.75
19558.8
-9119.16
18137.4
-10587.7
16670.4
-11060.5
15301.1
-10874
14041.6
-10423.3
12816
-10005
11528.4
-9851.87
10111.7
-10169
8554.72
-11116.5
6982.07
-13216.4
5401.32
-16027.1
4274.94
-18876.4
4087.91
-19895.4
4105.55
-16166.9
3394.58
-10074.3
1822.68
-5455.84
-27.6508
-3031.15
-1912.71
-2255.45
-2075.95
6545.76
25221.1
-16309.7
12446.2
-14756.2
16226.4
-13167.8
14455.3
-11542
14410.2
-9937.75
13887
-8462.84
12763.2
-7121.39
11669.7
-5925.6
10498.2
-4866.33
9378.08
-3929.32
8346.37
-3100.4
7389.38
-2369.81
6493.37
-1731.9
5653.08
-1182.78
4896.24
-716.111
4259.46
-318.904
3783.95
22.8152
3455.82
316.595
3242.09
573.556
3074.83
805.474
2866.1
1008.29
2569.72
1174.8
2151.28
1306.62
1685.68
1402.74
1237.34
1462.49
843.389
1475.28
469.198
1404.43
33.9082
1217.47
-465.859
919.516
-865.444
554.017
-968.105
191.601
-721.508
-54.9821
-15.0591
-46.9373
723.062
166.059
1365.35
290.807
1680.76
110.995
932.565
139.961
-1399.78
495.027
-2820.12
1219.01
-1119.03
2298.72
1852.44
3140.91
4347.15
3758.3
5421.77
4325.91
5424.12
4861.09
4955.16
5526.99
4562.31
6502.52
6388.05
7728.52
7940.46
9703.4
11400.5
12270.9
14405.6
14938.7
14637.5
17317.2
12573.7
19094
9144.03
20165.2
5837.25
20755.7
3484.45
21128.1
2173.15
21325.7
946.453
21296.6
-860.608
20915.7
-3268.53
20096.9
-5829.92
18885.9
-7908.21
17464.5
-9166.32
16035.2
-9631.07
14699.3
-9538.09
13444
-9168.05
12191.1
-8752.11
10847.8
-8508.52
9338.47
-8659.64
7607.7
-9385.76
5586.51
-11195.2
2930.08
-13370.7
694.753
-16641
-29.9929
-19170.7
-339.342
-15857.6
-1192.13
-9221.53
-1790.71
-4857.27
-2176.26
-2645.6
-3320.75
-1110.96
-3202.95
6427.97
23412.7
-17645.4
11311.6
-15899.8
14480.8
-14193.8
12749.3
-12458.1
12674.5
-10753.3
12182.2
-9183.84
11193.7
-7751.47
10237.4
-6468.97
9215.66
-5327.12
8236.22
-4312.1
7331.36
-3411.19
6488.47
-2616.02
5698.19
-1922.21
4959.27
-1325.85
4299.88
-818.185
3751.8
-382.55
3348.31
-7.06319
3080.34
313.883
2921.15
594.268
2794.44
848.695
2611.67
1074.87
2343.55
1264.45
1961.71
1416.66
1533.47
1529.1
1124.9
1599.29
773.195
1616.63
451.864
1550.58
99.9537
1376.62
-291.894
1108.2
-597.024
794.458
-654.366
498.777
-425.827
333.133
150.585
349.14
707.055
574.814
1139.68
814.837
1440.74
736.482
1010.92
496.314
-1159.62
679.85
-3003.65
1312.65
-1751.82
2200.43
964.648
3178.09
3369.49
3966.69
4633.17
4619.26
4771.55
5181.15
4393.27
5815.95
3927.51
6686.16
5517.84
7792.65
6833.98
9647.16
9546.04
12110.7
11942
14649.1
12099.1
16870.7
10352.1
18526.2
7488.51
19557.9
4805.53
20151.8
2890.61
20526.1
1798.79
20711.7
760.857
20645.8
-794.696
20200.9
-2823.62
19322.5
-4951.57
18105.5
-6691.2
16734.2
-7795
15362.5
-8259.33
14051.7
-8227.36
12788.3
-7904.57
11516.7
-7480.52
10162.7
-7154.59
8646.12
-7143.02
6846.34
-7585.98
4384.26
-8733.12
664.46
-9650.87
-2337.97
-13638.6
-3244.28
-18264.4
-3661.6
-15440.3
-4003.3
-8879.83
-3664.5
-5196.07
-3670.66
-2639.44
-4463.88
-317.735
-4161.91
6125.99
21420
-18977.6
9963.32
-17043.6
12546.9
-15217
10922.7
-13369.6
10827.1
-11564.7
10377.3
-9901.52
9530.57
-8379.32
8715.17
-7010.58
7846.91
-5786.25
7011.89
-4693.39
6238.5
-3720.86
5515.94
-2861.6
4838.93
-2112.45
4210.12
-1467.94
3655.37
-916.142
3200
-440.847
2873.02
-32.0769
2671.56
318.984
2570.08
629.055
2484.37
910.656
2330.07
1163.21
2091
1377.4
1747.51
1548.72
1362.15
1674.71
998.909
1753.37
694.532
1776.25
428.987
1722.3
153.902
1573.87
-143.462
1343.16
-366.313
1083.07
-394.28
854.932
-197.686
757.756
247.762
794.368
670.443
987.547
946.5
1250.4
1177.89
1318.98
942.333
971.071
-811.702
918.785
-2951.37
1399.13
-2232.16
2067.98
295.792
3040.33
2397.14
4002.66
3670.84
4811.34
3962.87
5494.57
3710.04
6204.29
3217.79
7056.52
4665.61
8030.92
5859.57
9665.63
7911.34
11938.4
9669.31
14320.8
9716.64
16394
8278.98
17923.1
5959.43
18890.9
3837.71
19462.2
2319.29
19818.9
1442.06
19971.3
608.471
19846.7
-670.072
19345.5
-2322.43
18460.4
-4066.51
17299.2
-5529.99
16002.8
-6498.62
14672.4
-6928.87
13357.9
-6912.85
12071.7
-6618.38
10794.5
-6203.3
9475.97
-5836.08
8031.06
-5698.12
6278.26
-5833.18
3564.02
-6018.88
-553.024
-5533.83
-3711.12
-10480.5
-4666.14
-17309.4
-4998.89
-15107.5
-5066.32
-8812.41
-4965.45
-5296.93
-5216.38
-2388.51
-5633.09
98.9689
-5182.8
5675.7
19072.8
-20282.4
8403.19
-18162.4
10426.9
-16212.5
8972.85
-14252.9
8867.39
-12348.6
8473.04
-10592.3
7774.21
-8980.75
7103.66
-7525.91
6392.08
-6219.61
5705.59
-5050.01
5068.9
-4007.57
4473.49
-3086.72
3918.09
-2284.96
3408.36
-1594.66
2965.07
-1002.12
2607.45
-492.742
2363.65
-52.7905
2231.61
334.029
2183.27
684.537
2133.86
1002.56
2012.04
1286.27
1807.3
1527.82
1505.96
1718.79
1171.17
1856.85
860.854
1943.46
607.918
1975.9
396.547
1942.78
187.029
1830.92
-31.607
1652.47
-187.861
1457.07
-198.878
1299.83
-40.4493
1255.91
291.678
1319.44
606.922
1481.8
784.13
1712.42
947.276
1871.76
782.985
1640.08
-580.013
1324.14
-2635.43
1481.35
-2389.38
1971.22
-194.078
2778.18
1590.19
3806
2643.01
4773.85
2995.03
5616.15
2867.74
6468.51
2365.43
7452.48
3681.64
8430.04
4882.01
9854.02
6487.36
11840.9
7682.45
13977.4
7580.13
15860.3
6396.02
17245.2
4574.62
18125
2957.88
18646
1798.28
18964.9
1123.15
19085.6
487.785
18938.4
-522.912
18454.2
-1838.2
17633.3
-3245.58
16548.4
-4445.11
15295
-5245.26
13960.1
-5593.92
12614.8
-5567.6
11304.6
-5308.19
10039.6
-4938.27
8788.23
-4584.7
7462.12
-4372.01
5869.01
-4240.07
3365.68
-3515.55
-174.054
-1994.09
-3213.61
-7440.95
-4669.74
-15853.2
-5362.85
-14414.4
-5933.22
-8242.04
-6447.01
-4783.14
-6777.17
-2058.35
-6915.75
237.551
-6287.61
5047.55
16287
-21507.5
6625.57
-19192.1
8111.52
-17112.2
6892.97
-15038.4
6793.56
-13033.2
6467.87
-11181.9
5922.94
-9479.81
5401.55
-7938.64
4850.91
-6552.32
4319.26
-5310.47
3827.05
-4205.48
3368.5
-3233.07
2945.68
-2389.67
2564.96
-1665.72
2241.12
-1046.36
1988.1
-513.92
1831.2
-46.1673
1763.86
378.829
1758.27
776.595
1736.1
1141.39
1647.25
1464.34
1484.35
1738.26
1232.04
1953.05
956.377
2106.64
707.268
2205.27
509.292
2254.14
347.671
2248.85
192.324
2181.13
36.1115
2066.03
-72.7639
1943.99
-76.835
1861.94
41.6018
1872.43
281.183
1970.01
509.34
2124.97
629.18
2324.5
747.742
2508.53
598.957
2406.42
-477.907
1913.54
-2142.55
1692.17
-2168
1955.86
-457.776
2517.67
1028.38
3424.37
1736.31
4442.98
1976.41
5396.67
1914.05
6339.32
1422.78
7499.14
2521.83
8673.78
3707.37
10101.8
5059.37
11889.8
5894.41
13764.3
5705.62
15414.4
4745.94
16620.1
3368.86
17385.8
2192.24
17839.3
1344.8
18123.6
838.788
18248.9
362.477
18135.4
-409.388
17704.8
-1407.57
16930.5
-2471.25
15858.9
-3373.55
14583.9
-3970.22
13212.1
-4222.18
11836.2
-4191.7
10515.2
-3987.14
9271.7
-3694.8
8086.2
-3399.21
6877.9
-3163.71
5517.13
-2879.3
3731.48
-1729.9
1583.59
153.797
-1237.89
-4619.47
-3950.75
-13140.4
-5796.29
-12568.9
-7084.89
-6953.44
-7939.89
-3928.14
-8298.63
-1699.61
-8324.03
262.944
-7414.26
4137.78
12969.5
-22627.4
4645.85
-20121.7
5605.8
-17896
4667.25
-15699.7
4597.3
-13586.3
4354.45
-11635.6
3972.2
-9842.58
3608.56
-8220.32
3228.65
-6765.49
2864.43
-5469.11
2530.67
-4324.95
2224.35
-3327.78
1948.51
-2470.47
1707.64
-1739.86
1510.51
-1116.93
1365.17
-575.612
1289.88
-84.4819
1272.73
381.872
1291.92
837.507
1280.46
1270.29
1214.47
1657.23
1097.4
1982.32
906.949
2236.51
702.191
2420.49
523.283
2545.47
384.315
2621.99
271.151
2650.02
164.296
2626.52
59.6149
2567.72
-13.9657
2509.92
-19.0339
2494.5
57.0199
2561.73
213.947
2706.22
364.85
2889.54
445.865
3103.87
533.407
3291.57
411.259
3203.5
-389.836
2629.01
-1568.06
2107.71
-1646.7
2086.22
-436.285
2405.48
709.119
3031.7
1110.09
3889.88
1118.24
4809.56
994.375
5685.74
546.591
6874.12
1333.45
8244.42
2337.07
9877.87
3425.91
11730.3
4042.03
13543.7
3892.21
15078.7
3210.92
16172.7
2274.84
16868.2
1496.76
17286.6
926.336
17555.2
570.242
17670.9
246.808
17535.4
-273.973
17072.7
-944.818
16257.7
-1656.25
15142.2
-2258.09
13830.6
-2658.65
12436.7
-2828.27
11049.7
-2804.65
9723.36
-2660.82
8484.08
-2455.52
7324.8
-2239.92
6193.6
-2032.51
5056.09
-1741.79
4067.62
-741.423
3470.34
751.079
1228.65
-2377.79
-2896.75
-9014.96
-6252.21
-9213.41
-8129.18
-5076.47
-9197.81
-2859.51
-9639.16
-1258.26
-9585.45
209.235
-8383.02
2935.36
9086.4
-22703.1
2407.02
-19999
2901.72
-17649.3
2317.6
-15333.8
2281.73
-13123.6
2144.3
-11096.2
1944.76
-9247.2
1759.59
-7591.34
1572.79
-6126.37
1399.46
-4841.49
1245.79
-3727.99
1110.84
-2775.51
996.039
-1970.86
902.988
-1295.11
834.766
-723.807
793.864
-221.961
788.034
245.257
805.513
707.477
829.695
1174.52
813.424
1630.49
758.491
2050.06
677.832
2405.53
551.472
2684.15
423.574
2886.45
320.981
3026
244.774
3114.7
182.447
3155
124.001
3147.53
67.0757
3109.24
24.3276
3076.29
13.9143
3088.71
44.6054
3185.36
117.293
3362.65
187.559
3581.29
227.232
3838.7
275.992
4055.52
194.441
3929.23
-263.55
3261.32
-900.145
2559.5
-944.886
2369.13
-245.907
2622.81
455.432
3063.5
669.399
3587.21
594.534
4154.66
426.921
4612.52
88.7313
5516.47
429.502
6844.01
1009.53
8611.02
1658.91
10625.2
2027.86
12555.4
1961.98
14149.6
1616.78
15269.4
1155.03
15983.7
782.403
16418
492.027
16696.1
292.17
16824.6
118.366
16705.1
-154.524
16254.4
-494.062
15448.6
-850.489
14339.4
-1148.91
13029.3
-1348.58
11630.5
-1429.42
10231.3
-1405.44
8886.68
-1316.21
7627.52
-1196.35
6462.02
-1074.43
5382.33
-952.812
4415.5
-774.965
3938.24
-264.156
4248.45
440.863
2831.38
-960.71
-1797.85
-4385.74
-6265.12
-4746.13
-8688.84
-2652.76
-10032.5
-1515.86
-10597.5
-693.208
-10487.3
98.9479
-9062.64
1510.75
4729.47
-25197.4
-22295.6
-19978
-17696.3
-15552
-13607.3
-11847.7
-10274.9
-8875.41
-7629.62
-6518.78
-5522.74
-4619.75
-3784.99
-2991.12
-2203.09
-1397.58
-567.88
245.544
1004.04
1681.87
2233.34
2656.91
2977.89
3222.67
3405.11
3529.11
3596.19
3620.52
3634.43
3679.04
3796.33
3983.89
4211.12
4487.11
4681.56
4418.01
3517.86
2572.97
2327.07
2782.5
3451.9
4046.43
4473.35
4562.09
4991.59
6001.11
7660.02
9687.88
11649.9
13266.6
14421.7
15204.1
15696.1
15988.3
16106.6
15952.1
15458.1
14607.6
13458.6
12110.1
10680.6
9275.21
7959
6762.64
5688.22
4735.4
3960.44
3696.28
4137.15
3176.44
-1209.3
-5955.43
-8608.19
-10124
-10817.3
-10718.3
-9207.56
)
;
boundaryField
{
inletFace
{
type calculated;
value nonuniform List<scalar>
450
(
-9.31606e-12
-6.76515e-12
2.26105e-12
-5.60972e-12
5.27869e-13
-5.98756e-13
-5.61127e-12
-6.31637e-14
-1.99515e-12
-5.93817e-12
1.40803e-12
-4.96258e-13
-4.24726e-12
9.32714e-12
8.75498e-12
-5.2224e-11
-3.24951e-11
7.34668e-12
-2.16892e-11
-2.42025e-12
-7.59604e-12
-3.11669e-11
-1.31192e-12
-1.55317e-11
-3.27673e-11
-7.73187e-13
-2.15734e-11
-3.37873e-11
1.32981e-11
-2.29556e-11
-3.71973e-11
-4.38077e-11
1.31108e-11
-7.29658e-12
-5.73196e-12
4.61821e-12
-1.09314e-11
-7.78163e-12
8.22139e-12
-4.14847e-12
-2.37653e-11
5.19573e-12
1.14214e-11
-2.30679e-11
-7.08332e-11
-2.77204e-11
-3.63498e-11
8.86785e-13
1.17995e-11
4.91048e-12
-7.97149e-12
1.61428e-11
3.5323e-12
-2.18836e-12
1.84671e-11
4.1911e-12
-9.6884e-12
1.06307e-12
3.80803e-11
1.39492e-11
-3.50098e-11
-4.57504e-12
4.0219e-12
1.72876e-11
5.20458e-11
7.43502e-13
2.09439e-11
7.01619e-11
7.02376e-12
3.33415e-12
7.74935e-11
6.67549e-11
2.8937e-11
1.0376e-10
1.65626e-10
-2.36722e-11
1.5699e-11
2.61243e-12
2.75187e-11
6.65194e-11
-5.62489e-12
3.66235e-11
9.45171e-11
-8.55778e-12
4.12802e-11
1.06568e-10
6.16499e-11
1.26864e-11
1.01279e-10
1.57172e-10
-6.07354e-11
5.97833e-12
-3.0163e-11
3.27011e-11
2.45063e-11
-2.47834e-11
4.44203e-11
2.75158e-11
-2.1633e-11
4.08001e-11
1.2769e-11
-5.06124e-11
-2.27082e-11
5.98466e-11
-1.43799e-12
-6.93783e-11
-5.69032e-12
-3.44335e-11
3.64566e-11
1.73858e-12
-1.90683e-11
3.1029e-11
2.64432e-13
7.74972e-12
6.38454e-11
1.37147e-10
1.77582e-10
1.00479e-10
-1.82335e-12
-1.32689e-10
-5.73133e-11
-1.21637e-11
-7.26362e-12
2.97053e-11
2.22759e-12
1.26097e-11
2.58339e-11
1.39094e-11
5.9777e-11
1.09775e-10
3.15505e-10
4.77426e-10
4.16655e-10
2.52625e-10
-2.46068e-11
-4.45028e-11
-1.72643e-11
8.22991e-13
3.79246e-11
1.14366e-11
2.66215e-11
4.56641e-11
1.8915e-11
6.56169e-11
9.04494e-11
2.57448e-10
5.14367e-10
6.96013e-10
7.69656e-10
3.94603e-10
3.96703e-13
-1.95857e-11
9.54741e-12
5.37198e-11
1.62733e-11
4.91276e-11
5.93203e-11
2.6641e-11
8.76715e-11
9.76592e-11
1.01702e-10
3.10264e-10
5.46603e-10
1.0441e-09
6.95266e-10
1.36879e-11
-3.41288e-11
6.3628e-11
5.0442e-11
1.47772e-12
1.07692e-10
5.32831e-11
-2.82853e-12
1.2993e-10
9.97483e-11
3.56058e-11
2.45452e-10
2.8038e-10
5.8802e-10
6.3703e-10
4.47426e-11
-1.89254e-11
5.2773e-11
7.02212e-11
-3.77752e-12
1.22525e-10
9.40119e-11
-7.88622e-11
1.32455e-10
1.04632e-10
-2.69078e-11
2.67777e-10
1.89116e-10
3.63009e-10
4.86581e-10
4.63144e-11
5.24089e-12
5.03098e-11
4.88495e-11
2.57006e-11
4.88881e-11
-8.00587e-15
-2.26909e-11
9.79744e-11
6.51999e-11
6.87604e-11
1.77371e-10
9.67024e-11
1.70195e-10
2.96264e-10
7.44545e-11
9.69602e-11
1.32431e-10
1.36778e-10
1.31909e-10
1.24357e-10
1.1968e-10
1.17441e-10
1.0835e-10
8.88245e-11
7.22856e-11
5.10984e-11
3.38027e-11
9.19081e-12
4.92707e-12
9.31606e-12
6.76515e-12
-2.26105e-12
5.60972e-12
-5.27869e-13
5.98756e-13
5.61127e-12
6.31637e-14
1.99515e-12
5.93817e-12
-1.40803e-12
4.96258e-13
4.24726e-12
-9.32714e-12
-8.75498e-12
5.2224e-11
3.24951e-11
-7.34668e-12
2.16892e-11
2.42025e-12
7.59604e-12
3.11669e-11
1.31192e-12
1.55317e-11
3.27673e-11
7.73187e-13
2.15734e-11
3.37873e-11
-1.32981e-11
2.29556e-11
3.71973e-11
4.38077e-11
-1.31108e-11
7.29658e-12
5.73196e-12
-4.61821e-12
1.09314e-11
7.78163e-12
-8.22139e-12
4.14847e-12
2.37653e-11
-5.19573e-12
-1.14214e-11
2.30679e-11
7.08332e-11
2.77204e-11
3.63498e-11
-8.86785e-13
-1.17995e-11
-4.91048e-12
7.97149e-12
-1.61428e-11
-3.5323e-12
2.18836e-12
-1.84671e-11
-4.1911e-12
9.6884e-12
-1.06307e-12
-3.80803e-11
-1.39492e-11
3.50098e-11
4.57504e-12
-4.0219e-12
-1.72876e-11
-5.20458e-11
-7.43502e-13
-2.09439e-11
-7.01619e-11
-7.02376e-12
-3.33415e-12
-7.74935e-11
-6.67549e-11
-2.8937e-11
-1.0376e-10
-1.65626e-10
2.36722e-11
-1.5699e-11
-2.61243e-12
-2.75187e-11
-6.65194e-11
5.62489e-12
-3.66235e-11
-9.45171e-11
8.55778e-12
-4.12802e-11
-1.06568e-10
-6.16499e-11
-1.26864e-11
-1.01279e-10
-1.57172e-10
6.07354e-11
-5.97833e-12
3.0163e-11
-3.27011e-11
-2.45063e-11
2.47834e-11
-4.44203e-11
-2.75158e-11
2.1633e-11
-4.08001e-11
-1.2769e-11
5.06124e-11
2.27082e-11
-5.98466e-11
1.43799e-12
6.93783e-11
5.69032e-12
3.44335e-11
-3.64566e-11
-1.73858e-12
1.90683e-11
-3.1029e-11
-2.64432e-13
-7.74972e-12
-6.38454e-11
-1.37147e-10
-1.77582e-10
-1.00479e-10
1.82335e-12
1.32689e-10
5.73133e-11
1.21637e-11
7.26362e-12
-2.97053e-11
-2.22759e-12
-1.26097e-11
-2.58339e-11
-1.39094e-11
-5.9777e-11
-1.09775e-10
-3.15505e-10
-4.77426e-10
-4.16655e-10
-2.52625e-10
2.46068e-11
4.45028e-11
1.72643e-11
-8.22991e-13
-3.79246e-11
-1.14366e-11
-2.66215e-11
-4.56641e-11
-1.8915e-11
-6.56169e-11
-9.04494e-11
-2.57448e-10
-5.14367e-10
-6.96013e-10
-7.69656e-10
-3.94603e-10
-3.96703e-13
1.95857e-11
-9.54741e-12
-5.37198e-11
-1.62733e-11
-4.91276e-11
-5.93203e-11
-2.6641e-11
-8.76715e-11
-9.76592e-11
-1.01702e-10
-3.10264e-10
-5.46603e-10
-1.0441e-09
-6.95266e-10
-1.36879e-11
3.41288e-11
-6.3628e-11
-5.0442e-11
-1.47772e-12
-1.07692e-10
-5.32831e-11
2.82853e-12
-1.2993e-10
-9.97483e-11
-3.56058e-11
-2.45452e-10
-2.8038e-10
-5.8802e-10
-6.3703e-10
-4.47426e-11
1.89254e-11
-5.2773e-11
-7.02212e-11
3.77752e-12
-1.22525e-10
-9.40119e-11
7.88622e-11
-1.32455e-10
-1.04632e-10
2.69078e-11
-2.67777e-10
-1.89116e-10
-3.63009e-10
-4.86581e-10
-4.63144e-11
-5.24089e-12
-5.03098e-11
-4.88495e-11
-2.57006e-11
-4.88881e-11
8.00587e-15
2.26909e-11
-9.79744e-11
-6.51999e-11
-6.87604e-11
-1.77371e-10
-9.67024e-11
-1.70195e-10
-2.96264e-10
-7.44545e-11
-9.69602e-11
-1.32431e-10
-1.36778e-10
-1.31909e-10
-1.24357e-10
-1.1968e-10
-1.17441e-10
-1.0835e-10
-8.88245e-11
-7.22856e-11
-5.10984e-11
-3.38027e-11
-9.19081e-12
-4.92707e-12
)
;
}
inlet
{
type calculated;
value nonuniform List<scalar>
15
(
-1299.9
-1300.2
-1299.9
-1299.9
-1300.2
-1299.9
-1299.9
-1300.2
-1299.9
-1299.9
-1300.2
-1299.9
-1299.9
-1300.2
-1299.9
)
;
}
inletWalls
{
type calculated;
value uniform 0;
}
outletInlet
{
type cyclicAMI;
value nonuniform List<scalar>
15
(
-1335.81
-753.951
-212.854
-33.2043
542.495
532.066
816.939
837.413
992.818
1238.06
1436.69
2120.48
2952.87
4284.76
6080.96
)
;
}
fineSymmetryWall
{
type symmetryPlane;
value uniform 0;
}
fineWalls
{
type calculated;
value uniform 0;
}
fineCyclicBoundary
{
type calculated;
value nonuniform List<scalar>
160
(
1840.24
2046.75
2167.39
2281.66
2376.5
2453.04
2511.26
2552.6
2579.78
2595.6
2600.71
2591.53
2560.58
2500.61
2409.85
2292.9
2155.55
2000.33
1827.56
1638.21
1434.09
1216.37
985.299
741.009
484.118
215.878
-60.9128
-341.337
-624.75
-911.021
-1199.88
-1490.85
-1783.28
-2076.21
-2368.41
-2658.41
-2944.55
-3225.05
-3498.01
-3761.32
-4012.79
-4250.01
-4470.16
-4670.04
-4846.35
-4996.21
-5117.53
-5209.34
-5271.91
-5306.5
-5314.03
-5293.09
-5238.86
-5144.41
-5004.52
-4817.62
-4582.13
-4266.01
-3767.23
-2913.21
-1659.45
-51.3554
1731.12
3456.71
5083.22
6634.19
8142.36
9634.12
11126.8
12630
14148.4
15682.2
17228.3
18780
20325.8
21842.5
23285.1
24607.1
24941.9
27604.4
55840.5
64621.2
65688.2
63772
63419.8
62822.3
64212.6
67370.5
68945.2
28354.4
-18782.4
-17211.2
-11981.4
-14108.4
-12604.1
-15120.1
-18104.4
-21419.8
-19909.8
-8124.29
-6927.63
-31286.4
-61657.3
-82347.1
-88919.7
-84249.6
-74762.9
-68145.3
-65161.7
-59378.5
-51021
-39715.7
-26694.8
-23871
-25538.6
-22867.4
-15088.7
-7214.42
6052.24
14420.8
19395.6
23230.7
25759.1
26952.8
27889.2
28666.5
28315.5
27041.5
25133.3
22598.2
18456.1
14117.7
13849.8
13890.8
12737.8
11103.5
8835.34
6309.97
381.79
-4924.69
-8008.69
-10448.4
-12290.3
-13487.7
-14075
-14110.9
-13747
-13177.3
-12520.6
-11749.2
-10830.2
-9804.83
-8703.16
-7374.3
-5696.02
-3403.79
-793.377
2599.06
3760.06
5412.2
)
;
}
fineplug
{
type cyclicAMI;
value nonuniform List<scalar>
80
(
568.767
478.211
130.987
106.331
81.9821
119.352
161.731
158.233
140.288
132.662
113.668
82.607
81.8163
-47.5919
-6.23611
70.8606
14.151
-14.6578
-1.00785
15.3632
19.1276
-20.7259
-175.251
-138.483
-68.2076
-76.6412
-97.3088
-111.513
-104.707
-105.705
-97.5942
-79.7714
-193.845
-179.793
-131.668
-128.123
-135.237
-139.127
-143.478
-135.298
-120.411
-201.479
-210.122
-180.69
-177.548
-187.234
-186.712
-188.015
-200.674
-188.205
-253.667
-274.968
-236.969
-249.512
-267.734
-266.217
-274.002
-281.569
-279.155
-379.257
-420.991
-390.652
-398.461
-423.662
-529.63
-544.055
-550.285
-570.608
-533.489
-699.512
-821.401
-777.174
-783.606
-828.036
-924.908
-1112.48
-1140.58
-997.861
-1146.5
-1339.77
)
;
}
faceFine
{
type calculated;
value nonuniform List<scalar>
13120
(
-9.80764e-14
-4.28229e-12
-9.60873e-13
-8.79991e-13
-8.2283e-13
-4.91636e-12
-7.3039e-13
-6.24669e-13
-5.40587e-13
-4.85758e-12
-8.13433e-13
-7.41003e-13
-4.1656e-12
-5.8968e-13
-5.58917e-13
-5.05133e-13
-2.7173e-12
-3.80884e-13
-3.68146e-13
-1.67426e-12
-2.02611e-13
-1.61649e-13
-1.43288e-13
-7.7271e-13
-7.18908e-14
-4.54351e-14
4.74956e-15
-1.85797e-13
-2.64581e-14
3.6584e-14
3.58671e-13
1.28274e-13
1.81919e-13
2.19255e-13
1.5327e-12
2.39576e-13
2.5304e-13
1.44177e-12
2.36793e-13
2.49283e-13
2.3285e-13
1.29314e-12
2.31253e-13
2.66816e-13
3.14729e-13
2.38714e-12
4.91354e-13
5.90973e-13
3.78909e-12
6.51383e-13
6.54234e-13
5.96665e-13
2.92585e-12
3.47974e-13
3.22873e-13
3.01811e-13
1.86469e-12
3.65363e-13
3.88845e-13
2.68889e-12
6.85752e-13
1.01243e-12
1.52233e-12
8.91609e-12
2.00384e-12
1.64103e-12
5.20017e-12
4.72665e-13
3.72923e-13
3.58236e-13
2.01778e-12
2.74346e-13
2.15251e-13
1.65395e-13
-4.97588e-14
-3.73213e-13
-4.5755e-13
-1.84357e-12
-5.55698e-13
-3.72322e-13
-1.96812e-13
-3.06755e-13
-5.43525e-13
-5.86985e-12
-2.16812e-13
-5.74043e-13
-9.75701e-13
-1.20251e-12
-1.33252e-12
-1.43007e-12
-1.54011e-12
-1.95435e-12
-1.0353e-11
-1.68115e-12
-1.84487e-12
-1.93425e-12
-2.1281e-12
-2.10533e-12
-2.12752e-12
-2.16832e-12
-2.2145e-12
-9.36553e-12
-2.14388e-12
-2.03841e-12
-1.94883e-12
-1.84192e-12
-1.74114e-12
-1.96219e-12
-2.13727e-12
-2.1112e-12
-2.16219e-12
1.1187e-12
-1.32963e-12
-1.25974e-12
-1.13097e-12
-9.73197e-13
-7.59231e-13
-8.39829e-13
-7.85871e-13
-8.84925e-13
2.12748e-11
1.65852e-13
1.31125e-14
-1.79251e-13
-2.94356e-13
-3.54916e-13
-4.01118e-13
-4.12719e-13
-5.89022e-13
2.37743e-11
-9.94626e-14
-2.28728e-13
-3.06088e-13
-4.67238e-13
-6.08321e-13
-7.77696e-13
-8.70774e-13
-1.36566e-12
1.51166e-11
-1.47868e-12
-1.88926e-12
-2.28991e-12
-2.62275e-12
-3.09702e-12
-3.28419e-12
-3.55611e-12
-3.7361e-12
-4.19799e-12
-2.08911e-11
-4.22433e-12
-4.40598e-12
-4.7096e-12
-5.02851e-12
-5.39874e-12
-5.68361e-12
-5.56959e-12
-5.79087e-12
-5.08003e-11
-6.22369e-12
-6.60018e-12
-2.83094e-11
-8.92353e-11
-1.06654e-10
-2.75418e-11
-1.00497e-10
-2.82627e-11
-9.15938e-11
-1.07952e-10
-2.82546e-11
-9.0171e-11
-1.03873e-10
-2.60919e-11
-9.13082e-11
-2.46996e-11
-7.78614e-11
-8.7354e-11
-2.14886e-11
-7.43207e-11
-1.99043e-11
-6.21934e-11
-6.90388e-11
-1.72659e-11
-5.34988e-11
-6.06793e-11
-1.49295e-11
-5.27389e-11
-1.41348e-11
-4.46285e-11
-5.18141e-11
-1.27915e-11
-4.6142e-11
-1.25233e-11
-4.02318e-11
-4.75618e-11
-1.22489e-11
-3.90934e-11
-4.61837e-11
-1.15366e-11
-4.14194e-11
-1.11864e-11
-3.57018e-11
-4.08923e-11
-9.99478e-12
-3.54505e-11
-9.56935e-12
-3.02951e-11
-3.49746e-11
-8.94072e-12
-2.82103e-11
-3.27842e-11
-8.15888e-12
-2.91776e-11
-7.92129e-12
-2.53427e-11
-2.97693e-11
-7.42984e-12
-2.64263e-11
-7.11104e-12
-2.25046e-11
-2.53656e-11
-6.30926e-12
-1.96793e-11
-2.14125e-11
-5.07555e-12
-1.73365e-11
-4.46578e-12
-1.3698e-11
-1.48788e-11
-3.50502e-12
-1.18069e-11
-3.02588e-12
-9.39046e-12
-9.89793e-12
-2.34735e-12
-7.3945e-12
-8.35722e-12
-1.99561e-12
-7.20429e-12
-1.90465e-12
-6.67296e-12
3.72174e-23
-1.46565e-23
2.60483e-24
-1.20422e-25
-4.90134e-27
-4.14088e-27
-2.20935e-27
-9.50703e-28
-3.53131e-28
-2.39876e-28
-4.13299e-28
-7.47863e-28
-1.05501e-27
-1.19169e-27
-1.14757e-27
-9.9322e-28
-7.79664e-28
-5.2379e-28
-2.71822e-28
-9.94144e-29
-2.40155e-29
-9.33299e-28
-1.69981e-26
-1.15781e-26
1.18769e-24
1.12474e-23
1.62758e-23
-3.07721e-22
-2.79643e-21
2.02654e-19
1.96904e-17
5.84334e-17
-2.81766e-16
-2.00627e-15
-6.03804e-15
-1.28283e-14
-2.32829e-14
-3.91038e-14
-6.10481e-14
-8.71477e-14
-1.14077e-13
-1.34129e-13
-2.44084e-14
2.63219e-15
7.6085e-16
-1.61282e-14
-3.42728e-14
-1.83969e-14
-3.26106e-15
-3.88149e-16
-3.10244e-16
-3.82104e-16
-4.29717e-16
-3.06079e-16
-1.41747e-16
-4.19324e-17
3.73929e-18
1.8441e-17
1.89651e-17
1.3331e-17
2.9591e-18
-2.813e-19
-1.34363e-19
-3.30201e-21
-1.96224e-20
8.35831e-19
-1.75243e-17
2.34078e-16
-2.17999e-15
2.50181e-14
3.72946e-14
-6.44354e-13
-2.20307e-12
-4.28888e-12
-8.33954e-12
-1.30794e-11
-1.3495e-11
-9.71931e-12
-1.04518e-11
8.64363e-23
-3.34063e-23
5.48804e-24
-2.78336e-25
-9.23316e-28
-3.97099e-27
-2.07937e-27
-8.87802e-28
-3.33927e-28
-2.44702e-28
-4.31284e-28
-7.67177e-28
-1.06607e-27
-1.19277e-27
-1.14253e-27
-9.85438e-28
-7.70088e-28
-5.13579e-28
-2.63564e-28
-9.21086e-29
-3.06339e-29
-2.14584e-27
-3.29103e-26
-4.40827e-26
2.33262e-24
2.34649e-23
3.61817e-23
-6.58477e-22
-6.23627e-21
1.35832e-19
2.80809e-17
9.51958e-17
-4.13405e-16
-3.08438e-15
-9.25263e-15
-1.93229e-14
-3.42364e-14
-5.58595e-14
-8.44279e-14
-1.16934e-13
-1.49554e-13
-1.74805e-13
-4.04658e-14
1.70023e-15
1.66047e-15
-1.46831e-14
-3.36944e-14
-1.94956e-14
-3.61962e-15
-3.75546e-16
-2.9559e-16
-3.79639e-16
-4.29746e-16
-3.09943e-16
-1.45371e-16
-4.37575e-17
3.00533e-18
1.83076e-17
1.91987e-17
1.33e-17
3.06622e-18
-2.7124e-19
-1.52697e-19
-5.86895e-21
-2.43003e-20
9.72106e-19
-1.94438e-17
2.47166e-16
-2.27736e-15
2.40634e-14
4.21652e-14
-6.74644e-13
-2.38851e-12
-4.81049e-12
-9.40957e-12
-1.36407e-11
-1.26949e-11
-8.41166e-12
-1.16248e-11
1.62292e-22
-6.63977e-23
1.14436e-23
-6.23382e-25
7.54435e-27
-3.84772e-27
-1.93436e-27
-8.18276e-28
-3.13488e-28
-2.51609e-28
-4.53043e-28
-7.89892e-28
-1.07875e-27
-1.19367e-27
-1.13629e-27
-9.75994e-28
-7.58579e-28
-5.01516e-28
-2.53959e-28
-8.18565e-29
-3.60064e-29
-4.64281e-27
-6.88057e-26
-1.29953e-25
4.47428e-24
4.79208e-23
7.80763e-23
-1.45795e-21
-1.39634e-20
8.0639e-20
3.61854e-17
1.33676e-16
-5.4124e-16
-4.17225e-15
-1.24491e-14
-2.55852e-14
-4.43347e-14
-7.04496e-14
-1.03708e-13
-1.40523e-13
-1.76672e-13
-2.03368e-13
-8.0748e-14
-7.99769e-15
2.60166e-15
-1.21846e-14
-3.25565e-14
-2.07397e-14
-4.12477e-15
-3.69107e-16
-2.74967e-16
-3.76093e-16
-4.29762e-16
-3.14653e-16
-1.49913e-16
-4.60811e-17
2.06873e-18
1.81255e-17
1.94813e-17
1.34219e-17
3.20647e-18
-2.63276e-19
-1.73244e-19
-9.17988e-21
-3.13759e-20
1.16294e-18
-2.20542e-17
2.6589e-16
-2.40152e-15
2.11683e-14
4.79379e-14
-6.7271e-13
-2.47751e-12
-5.13459e-12
-1.00212e-11
-1.37464e-11
-1.2095e-11
-7.86779e-12
-1.2878e-11
3.04463e-22
-1.29031e-22
2.30955e-23
-1.34887e-24
2.53819e-26
-3.88522e-27
-1.79726e-27
-7.54044e-28
-2.95651e-28
-2.59929e-28
-4.75335e-28
-8.12373e-28
-1.09087e-27
-1.19411e-27
-1.12975e-27
-9.66309e-28
-7.46907e-28
-4.89518e-28
-2.44444e-28
-6.62088e-29
-3.7833e-29
-9.69046e-27
-1.38281e-25
-3.42639e-25
8.28182e-24
9.6245e-23
1.70153e-22
-3.20836e-21
-3.12845e-20
1.58163e-20
4.69201e-17
1.86334e-16
-7.04252e-16
-5.62597e-15
-1.674e-14
-3.39205e-14
-5.75499e-14
-8.91861e-14
-1.28115e-13
-1.70085e-13
-2.10445e-13
-2.39428e-13
-1.4178e-13
-3.00806e-14
3.39569e-15
-8.13882e-15
-3.03783e-14
-2.20227e-14
-4.74464e-15
-3.71188e-16
-2.50179e-16
-3.71771e-16
-4.2975e-16
-3.19474e-16
-1.54722e-16
-4.85879e-17
1.05505e-18
1.79133e-17
1.97528e-17
1.36375e-17
3.35013e-18
-2.57663e-19
-1.93083e-19
-1.28008e-20
-4.12434e-20
1.40497e-18
-2.52008e-17
2.8833e-16
-2.48903e-15
1.64744e-14
5.41566e-14
-6.69322e-13
-2.57523e-12
-5.5045e-12
-1.06944e-11
-1.38282e-11
-1.14576e-11
-7.34238e-12
-1.43615e-11
5.63067e-22
-2.43223e-22
4.48313e-23
-2.82064e-24
6.25632e-26
-4.24682e-27
-1.6689e-27
-6.96703e-28
-2.80872e-28
-2.69388e-28
-4.97438e-28
-8.33873e-28
-1.10201e-27
-1.19405e-27
-1.12312e-27
-9.56708e-28
-7.3548e-28
-4.78011e-28
-2.35155e-28
-3.94212e-29
-1.28605e-29
-1.90637e-26
-2.69114e-25
-8.28493e-25
1.48063e-23
1.89637e-22
3.72846e-22
-7.01402e-21
-7.01184e-20
-6.06591e-20
6.07388e-17
2.54955e-16
-9.02763e-16
-7.476e-15
-2.22171e-14
-4.44405e-14
-7.38655e-14
-1.11701e-13
-1.56731e-13
-2.0403e-13
-2.48522e-13
-2.8019e-13
-2.11907e-13
-6.1764e-14
3.09438e-15
-3.02526e-15
-2.79965e-14
-2.36985e-14
-5.49915e-15
-3.67717e-16
-2.19715e-16
-3.6694e-16
-4.29759e-16
-3.24214e-16
-1.59619e-16
-5.11957e-17
-2.79265e-21
1.76777e-17
1.99894e-17
1.39014e-17
3.49822e-18
-2.5359e-19
-2.12379e-19
-1.66304e-20
-5.54239e-20
1.72727e-18
-2.91804e-17
3.15281e-16
-2.49786e-15
1.11247e-14
6.07882e-14
-6.56866e-13
-2.65518e-12
-5.86088e-12
-1.12938e-11
-1.37746e-11
-1.08611e-11
-7.02951e-12
-1.60217e-11
1.0266e-21
-4.43061e-22
8.32615e-23
-5.66063e-24
1.37289e-25
-5.23628e-27
-1.54387e-27
-6.4563e-28
-2.68882e-28
-2.79833e-28
-5.19237e-28
-8.54331e-28
-1.11218e-27
-1.19354e-27
-1.11644e-27
-9.47254e-28
-7.24374e-28
-4.67069e-28
-2.25864e-28
9.40915e-30
1.00246e-28
-3.58555e-26
-5.07828e-25
-1.86832e-24
2.53917e-23
3.65097e-22
8.17263e-22
-1.51351e-20
-1.57643e-19
-1.55217e-19
7.85817e-17
3.43008e-16
-1.14367e-15
-9.80282e-15
-2.91335e-14
-5.7607e-14
-9.39011e-14
-1.38713e-13
-1.90347e-13
-2.43179e-13
-2.91712e-13
-3.26338e-13
-2.88669e-13
-1.03016e-13
-4.85432e-15
-1.21567e-15
-2.73467e-14
-2.62704e-14
-6.43071e-15
-3.39202e-16
-1.78816e-16
-3.61685e-16
-4.29916e-16
-3.28823e-16
-1.64534e-16
-5.38747e-17
-1.09248e-18
1.74232e-17
2.02016e-17
1.41693e-17
3.63944e-18
-2.51299e-19
-2.31597e-19
-2.06311e-20
-7.64735e-20
2.18516e-18
-3.46777e-17
3.49992e-16
-2.42091e-15
5.98827e-15
6.74647e-14
-6.38676e-13
-2.72237e-12
-6.20753e-12
-1.18254e-11
-1.36258e-11
-1.03426e-11
-6.89123e-12
-1.77646e-11
1.84688e-21
-7.762e-22
1.46838e-22
-1.08246e-23
2.79822e-25
-7.3836e-27
-1.41353e-27
-5.99921e-28
-2.59313e-28
-2.91177e-28
-5.40778e-28
-8.73852e-28
-1.12146e-27
-1.1926e-27
-1.10973e-27
-9.3794e-28
-7.1358e-28
-4.56691e-28
-2.16221e-28
9.92552e-29
4.4528e-28
-6.42612e-26
-9.24041e-25
-3.95526e-24
4.15753e-23
6.82775e-22
1.77606e-21
-3.14746e-20
-3.45162e-19
-2.82089e-19
1.01213e-16
4.53936e-16
-1.43341e-15
-1.26835e-14
-3.7733e-14
-7.38615e-14
-1.1823e-13
-1.70826e-13
-2.29504e-13
-2.87919e-13
-3.40177e-13
-3.77813e-13
-3.7252e-13
-1.56018e-13
-3.01503e-14
-1.06026e-14
-3.17352e-14
-3.03099e-14
-7.59023e-15
-2.77324e-16
-1.21222e-16
-3.5543e-16
-4.30362e-16
-3.33299e-16
-1.69423e-16
-5.66051e-17
-2.20556e-18
1.7152e-17
2.04248e-17
1.43225e-17
3.71146e-18
-2.53467e-19
-2.49551e-19
-2.45415e-20
-1.08304e-19
2.85773e-18
-4.26304e-17
3.96315e-16
-2.26474e-15
1.30433e-15
7.39735e-14
-6.15471e-13
-2.77517e-12
-6.53397e-12
-1.22668e-11
-1.33947e-11
-9.93519e-12
-6.91844e-12
-1.94908e-11
3.28385e-21
-1.29817e-21
2.43062e-22
-1.95433e-23
5.34532e-25
-1.15148e-26
-1.26557e-27
-5.58851e-28
-2.51838e-28
-3.03384e-28
-5.62161e-28
-8.9258e-28
-1.12996e-27
-1.19128e-27
-1.10296e-27
-9.28731e-28
-7.0306e-28
-4.46881e-28
-2.05938e-28
2.60019e-28
1.33192e-27
-1.08894e-25
-1.61909e-24
-7.87813e-24
6.48634e-23
1.23082e-21
3.74427e-21
-6.14853e-20
-6.90754e-19
-5.0445e-19
1.29081e-16
5.90841e-16
-1.77788e-15
-1.61926e-14
-4.82549e-14
-9.36515e-14
-1.47454e-13
-2.08696e-13
-2.74792e-13
-3.38675e-13
-3.94098e-13
-4.34525e-13
-4.50232e-13
-2.20158e-13
-7.66614e-14
-3.64971e-14
-4.42063e-14
-3.63788e-14
-9.04675e-15
-1.94104e-16
-4.17585e-17
-3.46793e-16
-4.31169e-16
-3.37666e-16
-1.74246e-16
-5.9363e-17
-3.33318e-18
1.68636e-17
2.066e-17
1.41735e-17
3.61685e-18
-2.64196e-19
-2.62619e-19
-2.76185e-20
-1.56572e-19
3.84222e-18
-5.39254e-17
4.55141e-16
-2.02386e-15
-2.98925e-15
8.00872e-14
-5.88686e-13
-2.81405e-12
-6.83231e-12
-1.26043e-11
-1.31077e-11
-9.6617e-12
-7.07679e-12
-2.10858e-11
5.77961e-21
-2.0432e-21
3.70064e-22
-3.28357e-23
9.54224e-25
-1.87199e-26
-1.08526e-27
-5.21878e-28
-2.46204e-28
-3.16454e-28
-5.8351e-28
-9.1066e-28
-1.13778e-27
-1.1896e-27
-1.09611e-27
-9.19582e-28
-6.92764e-28
-4.37699e-28
-1.95078e-28
5.35376e-28
3.32004e-27
-1.75174e-25
-2.74107e-24
-1.47856e-23
9.68948e-23
2.1252e-21
7.37562e-21
-1.11416e-19
-1.26089e-18
-9.44715e-19
1.61966e-16
7.55703e-16
-2.18002e-15
-2.0389e-14
-6.09036e-14
-1.17388e-13
-1.82166e-13
-2.52981e-13
-3.26786e-13
-3.95838e-13
-4.53724e-13
-4.9657e-13
-5.12648e-13
-2.94435e-13
-1.40784e-13
-7.85214e-14
-6.56062e-14
-4.47489e-14
-1.08823e-14
-1.19323e-16
6.26379e-17
-3.33615e-16
-4.32288e-16
-3.4197e-16
-1.78964e-16
-6.21198e-17
-4.46496e-18
1.65623e-17
2.08338e-17
1.35765e-17
3.29109e-18
-2.85335e-19
-2.66158e-19
-2.86609e-20
-2.28781e-19
5.2439e-18
-6.90491e-17
5.21731e-16
-1.67805e-15
-6.95096e-15
8.56614e-14
-5.59611e-13
-2.83966e-12
-7.09421e-12
-1.28272e-11
-1.27915e-11
-9.53079e-12
-7.33117e-12
-2.2472e-11
1.00673e-20
-2.93869e-21
4.967e-22
-5.00111e-23
1.57538e-24
-3.00896e-26
-8.57186e-28
-4.88975e-28
-2.42236e-28
-3.30414e-28
-6.04955e-28
-9.28227e-28
-1.14499e-27
-1.18756e-27
-1.08914e-27
-9.10442e-28
-6.82641e-28
-4.29298e-28
-1.84424e-28
9.86136e-28
7.2596e-27
-2.71976e-25
-4.515e-24
-2.62298e-23
1.41156e-22
3.51296e-21
1.33935e-20
-1.87763e-19
-2.13151e-18
-1.76451e-18
1.98691e-16
9.48416e-16
-2.63718e-15
-2.52987e-14
-7.58105e-14
-1.45399e-13
-2.22912e-13
-3.04326e-13
-3.86037e-13
-4.59757e-13
-5.19334e-13
-5.64169e-13
-5.82824e-13
-3.81701e-13
-2.18661e-13
-1.32299e-13
-9.44179e-14
-5.53217e-14
-1.32041e-14
-9.61974e-17
1.93571e-16
-3.12722e-16
-4.33444e-16
-3.46273e-16
-1.83546e-16
-6.48414e-17
-5.58851e-18
1.62661e-17
2.08474e-17
1.25256e-17
2.75364e-18
-3.1349e-19
-2.57118e-19
-2.63699e-20
-3.33762e-19
7.16015e-18
-8.78542e-17
5.85929e-16
-1.2069e-15
-1.05705e-14
9.06326e-14
-5.29523e-13
-2.85317e-12
-7.3121e-12
-1.29295e-11
-1.24727e-11
-9.53826e-12
-7.64406e-12
-2.35878e-11
1.72987e-20
-3.62423e-21
5.23973e-22
-6.52595e-23
2.36188e-24
-4.62074e-26
-5.60816e-28
-4.60641e-28
-2.39998e-28
-3.45304e-28
-6.26621e-28
-9.45401e-28
-1.15165e-27
-1.18516e-27
-1.08201e-27
-9.01256e-28
-6.7264e-28
-4.21964e-28
-1.75682e-28
1.69938e-27
1.42891e-26
-4.1868e-25
-7.31562e-24
-4.43276e-23
2.06564e-22
5.59608e-21
2.24829e-20
-2.98542e-19
-3.38524e-18
-3.06385e-18
2.37462e-16
1.16571e-15
-3.13882e-15
-3.08938e-14
-9.29858e-14
-1.77867e-13
-2.7014e-13
-3.6333e-13
-4.53049e-13
-5.3074e-13
-5.91155e-13
-6.37398e-13
-6.5983e-13
-4.87189e-13
-3.09913e-13
-1.94723e-13
-1.28533e-13
-6.79245e-14
-1.62164e-14
-1.94371e-16
3.50528e-16
-2.79989e-16
-4.33916e-16
-3.50618e-16
-1.87971e-16
-6.74909e-17
-6.68896e-18
1.60027e-17
2.06567e-17
1.11554e-17
2.09635e-18
-3.4116e-19
-2.35759e-19
-1.9815e-20
-4.80541e-19
9.66044e-18
-1.09526e-16
6.35018e-16
-6.04697e-16
-1.38231e-14
9.50118e-14
-4.99615e-13
-2.85617e-12
-7.47947e-12
-1.29108e-11
-1.21738e-11
-9.67e-12
-7.9831e-12
-2.44041e-11
2.91334e-20
-3.17293e-21
2.31551e-22
-6.16202e-23
3.08116e-24
-6.57599e-26
-1.93816e-28
-4.34866e-28
-2.39796e-28
-3.61244e-28
-6.48612e-28
-9.62284e-28
-1.15781e-27
-1.18239e-27
-1.07467e-27
-8.91961e-28
-6.62709e-28
-4.16172e-28
-1.71351e-28
2.81564e-27
2.59447e-26
-6.57224e-25
-1.1806e-23
-7.22927e-23
3.12788e-22
8.6832e-21
3.50948e-20
-4.57022e-19
-5.09922e-18
-4.65047e-18
2.78281e-16
1.40047e-15
-3.66594e-15
-3.70726e-14
-1.12268e-13
-2.14765e-13
-3.24139e-13
-4.30494e-13
-5.2825e-13
-6.09034e-13
-6.69389e-13
-7.16264e-13
-7.43133e-13
-6.1568e-13
-4.15043e-13
-2.6488e-13
-1.66662e-13
-8.25646e-14
-2.02583e-14
-5.32279e-16
5.29597e-16
-2.31288e-16
-4.32485e-16
-3.54957e-16
-1.92223e-16
-7.00323e-17
-7.74874e-18
1.57937e-17
2.02915e-17
9.66042e-18
1.4328e-18
-3.60787e-19
-2.0551e-19
-8.70762e-21
-6.77189e-19
1.27688e-17
-1.32732e-16
6.57578e-16
1.13445e-16
-1.67107e-14
9.8871e-14
-4.70975e-13
-2.85056e-12
-7.59136e-12
-1.27761e-11
-1.1911e-11
-9.90695e-12
-8.33782e-12
-2.49595e-11
4.76938e-20
1.92358e-22
-7.47225e-22
-8.49127e-24
3.09784e-24
-8.247e-26
1.56335e-28
-4.06363e-28
-2.41337e-28
-3.78473e-28
-6.71019e-28
-9.78945e-28
-1.1635e-27
-1.17922e-27
-1.06707e-27
-8.82489e-28
-6.528e-28
-4.1271e-28
-1.74447e-28
4.59176e-27
4.46581e-26
-1.06749e-24
-1.91418e-23
-1.1525e-22
4.96741e-22
1.32593e-20
5.1202e-20
-6.86359e-19
-7.32712e-18
-5.7875e-18
3.26251e-16
1.64272e-15
-4.19391e-15
-4.36511e-14
-1.33287e-13
-2.55781e-13
-3.84964e-13
-5.06176e-13
-6.11964e-13
-6.94798e-13
-7.54182e-13
-8.00709e-13
-8.31958e-13
-7.66262e-13
-5.32575e-13
-3.43742e-13
-2.08756e-13
-9.95282e-14
-2.56847e-14
-1.25547e-15
7.25341e-16
-1.61521e-16
-4.27729e-16
-3.59235e-16
-1.96298e-16
-7.24308e-17
-8.74686e-18
1.56458e-17
1.98137e-17
8.20828e-18
8.53255e-19
-3.67674e-19
-1.71467e-19
6.66554e-21
-9.30993e-19
1.64602e-17
-1.55893e-16
6.46524e-16
9.13539e-16
-1.92598e-14
1.02332e-13
-4.44583e-13
-2.83842e-12
-7.64467e-12
-1.25356e-11
-1.16935e-11
-1.02305e-11
-8.70581e-12
-2.53232e-11
7.5323e-20
9.22707e-21
-2.82762e-21
1.33956e-22
1.26903e-24
-8.25637e-26
3.40396e-28
-3.78436e-28
-2.43289e-28
-3.97139e-28
-6.9398e-28
-9.95406e-28
-1.16872e-27
-1.17563e-27
-1.05913e-27
-8.72764e-28
-6.42876e-28
-4.12972e-28
-1.88247e-28
7.52082e-27
7.51617e-26
-1.77417e-24
-3.12374e-23
-1.81315e-22
8.19359e-22
2.00489e-20
7.00277e-20
-1.02191e-18
-1.0085e-17
-5.11605e-18
3.90767e-16
1.88435e-15
-4.70242e-15
-5.03744e-14
-1.55446e-13
-3.00271e-13
-4.52359e-13
-5.90512e-13
-7.04357e-13
-7.8807e-13
-8.45553e-13
-8.90769e-13
-9.25482e-13
-9.17449e-13
-6.58433e-13
-4.33832e-13
-2.56194e-13
-1.19469e-13
-3.26818e-14
-2.46737e-15
9.27331e-16
-6.06542e-17
-4.18256e-16
-3.63432e-16
-2.0018e-16
-7.46532e-17
-9.66182e-18
1.55519e-17
1.9274e-17
6.89883e-18
4.06464e-19
-3.60072e-19
-1.38512e-19
2.58056e-20
-1.25117e-18
2.06844e-17
-1.77492e-16
6.00007e-16
1.75356e-15
-2.15186e-14
1.05557e-13
-4.21308e-13
-2.82198e-12
-7.63839e-12
-1.22036e-11
-1.15236e-11
-1.06267e-11
-9.09718e-12
-2.55966e-11
1.14223e-19
2.7567e-20
-6.15416e-21
3.90786e-22
-3.69067e-24
-4.81821e-26
3.87175e-28
-3.69103e-28
-2.45789e-28
-4.16958e-28
-7.17708e-28
-1.0117e-27
-1.17344e-27
-1.17156e-27
-1.05081e-27
-8.62699e-28
-6.32932e-28
-4.19559e-28
-2.17514e-28
1.25216e-26
1.27056e-25
-2.94631e-24
-5.10777e-23
-2.82636e-22
1.37303e-21
3.00269e-20
8.94867e-20
-1.51021e-18
-1.3335e-17
-8.07479e-19
4.81288e-16
2.12596e-15
-5.19841e-15
-5.69603e-14
-1.77963e-13
-3.47234e-13
-5.25691e-13
-6.83356e-13
-8.054e-13
-8.88719e-13
-9.43324e-13
-9.86477e-13
-1.02245e-12
-1.02525e-12
-7.92773e-13
-5.36492e-13
-3.10575e-13
-1.43235e-13
-4.12958e-14
-4.21115e-15
1.09944e-15
8.48088e-17
-4.02039e-16
-3.66967e-16
-2.03786e-16
-7.66717e-17
-1.04775e-17
1.54991e-17
1.86983e-17
5.76888e-18
1.03149e-19
-3.37827e-19
-1.09896e-19
4.84738e-20
-1.65316e-18
2.54147e-17
-1.96421e-16
5.20969e-16
2.59337e-15
-2.35467e-14
1.08739e-13
-4.01916e-13
-2.80345e-12
-7.57367e-12
-1.17979e-11
-1.13985e-11
-1.10876e-11
-9.54041e-12
-2.59094e-11
1.66234e-19
5.95456e-20
-1.00421e-20
7.26024e-22
-1.2086e-23
2.92148e-26
5.58419e-28
-3.76423e-28
-2.52971e-28
-4.37574e-28
-7.42234e-28
-1.02796e-27
-1.17762e-27
-1.16695e-27
-1.04202e-27
-8.522e-28
-6.23023e-28
-4.37439e-28
-2.7414e-28
2.11582e-26
2.16215e-25
-4.87613e-24
-8.29625e-23
-4.35392e-22
2.28713e-21
4.43171e-20
1.0515e-19
-2.20609e-18
-1.6938e-17
9.48249e-18
6.03562e-16
2.3694e-15
-5.75578e-15
-6.31945e-14
-1.99954e-13
-3.95347e-13
-6.03896e-13
-7.84202e-13
-9.14811e-13
-9.96404e-13
-1.04704e-12
-1.08708e-12
-1.12126e-12
-1.12533e-12
-9.41134e-13
-6.51582e-13
-3.73225e-13
-1.71745e-13
-5.16538e-14
-6.56997e-15
1.14683e-15
2.77174e-16
-3.72797e-16
-3.69212e-16
-2.07157e-16
-7.84728e-17
-1.11745e-17
1.54791e-17
1.8094e-17
4.81343e-18
-7.13609e-20
-3.01226e-19
-8.67421e-20
7.49879e-20
-2.1604e-18
3.0691e-17
-2.12268e-16
4.16397e-16
3.39715e-15
-2.53998e-14
1.12102e-13
-3.87091e-13
-2.78495e-12
-7.45376e-12
-1.13377e-11
-1.13136e-11
-1.16108e-11
-1.00573e-11
-2.63805e-11
2.32973e-19
1.10143e-19
-1.22286e-20
9.94979e-22
-2.17586e-23
1.35108e-25
5.32775e-28
-3.36501e-28
-2.67973e-28
-4.59857e-28
-7.67074e-28
-1.04423e-27
-1.1813e-27
-1.16174e-27
-1.03268e-27
-8.41154e-28
-6.13318e-28
-4.75893e-28
-3.87616e-28
3.59776e-26
3.69467e-25
-7.945e-24
-1.32396e-22
-6.57192e-22
3.72194e-21
6.38788e-20
1.09145e-19
-3.16539e-18
-2.06147e-17
2.86605e-17
7.58374e-16
2.59277e-15
-6.54904e-15
-6.90906e-14
-2.20621e-13
-4.43056e-13
-6.85458e-13
-8.92114e-13
-1.032e-12
-1.11052e-12
-1.15592e-12
-1.19153e-12
-1.22049e-12
-1.22257e-12
-1.10227e-12
-7.7629e-13
-4.45911e-13
-2.06303e-13
-6.42526e-14
-9.82764e-15
8.83973e-16
4.84221e-16
-3.13193e-16
-3.72012e-16
-2.10404e-16
-8e-17
-1.17283e-17
1.54923e-17
1.74633e-17
4.00401e-18
-1.44228e-19
-2.50429e-19
-6.82679e-20
1.0637e-19
-2.80203e-18
3.66202e-17
-2.25373e-16
2.95596e-16
4.13675e-15
-2.71277e-14
1.15888e-13
-3.77452e-13
-2.76843e-12
-7.2838e-12
-1.08426e-11
-1.12646e-11
-1.21969e-11
-1.06724e-11
-2.71268e-11
3.1614e-19
1.85015e-19
-7.94614e-21
9.23818e-22
-2.81442e-23
2.61758e-25
-2.01286e-27
-1.61144e-28
-2.82066e-28
-4.86021e-28
-7.91894e-28
-1.06009e-27
-1.18446e-27
-1.15588e-27
-1.02269e-27
-8.29431e-28
-6.04154e-28
-5.51364e-28
-6.21839e-28
6.08134e-26
6.2735e-25
-1.25874e-23
-2.04895e-22
-9.59345e-22
5.83207e-21
8.88836e-20
9.0165e-20
-4.42669e-18
-2.39791e-17
5.92066e-17
9.42479e-16
2.74603e-15
-7.83039e-15
-7.50517e-14
-2.39544e-13
-4.88794e-13
-7.68435e-13
-1.00565e-12
-1.15599e-12
-1.23013e-12
-1.2688e-12
-1.29845e-12
-1.31853e-12
-1.31508e-12
-1.25594e-12
-9.02524e-13
-5.30441e-13
-2.48565e-13
-8.01082e-14
-1.45377e-14
2.58341e-17
6.15221e-16
-1.94891e-16
-3.7523e-16
-2.13197e-16
-8.1169e-17
-1.21199e-17
1.55492e-17
1.68034e-17
3.29889e-18
-1.46297e-19
-1.85276e-19
-5.22259e-20
1.44628e-19
-3.6095e-18
4.33308e-17
-2.36582e-16
1.68603e-16
4.79299e-15
-2.87778e-14
1.20348e-13
-3.73589e-13
-2.75562e-12
-7.07041e-12
-1.03307e-11
-1.12508e-11
-1.28465e-11
-1.14011e-11
-2.82145e-11
4.17638e-19
2.90244e-19
1.09222e-20
1.2242e-22
-2.63518e-23
4.349e-25
-9.54441e-27
9.78719e-29
-2.73564e-28
-5.15385e-28
-8.18138e-28
-1.07502e-27
-1.18686e-27
-1.1493e-27
-1.01194e-27
-8.16861e-28
-5.96073e-28
-6.90742e-28
-1.09871e-27
1.00686e-25
1.04251e-24
-1.90983e-23
-3.02913e-22
-1.33228e-21
8.6895e-21
1.17974e-19
3.54285e-20
-5.98257e-18
-2.66032e-17
1.01548e-16
1.14932e-15
2.76528e-15
-9.83395e-15
-8.17375e-14
-2.57071e-13
-5.31353e-13
-8.50563e-13
-1.12281e-12
-1.28534e-12
-1.3539e-12
-1.38406e-12
-1.40605e-12
-1.41518e-12
-1.40183e-12
-1.36597e-12
-1.02547e-12
-6.27611e-13
-3.00542e-13
-1.00824e-13
-2.14435e-14
-1.7623e-15
5.12615e-16
-2.79953e-18
-3.60175e-16
-2.16226e-16
-8.2203e-17
-1.23273e-17
1.56756e-17
1.60936e-17
2.65269e-18
-1.06831e-19
-1.05608e-19
-3.53662e-20
1.93432e-19
-4.61694e-18
5.09261e-17
-2.46874e-16
4.51872e-17
5.35323e-15
-3.03923e-14
1.2574e-13
-3.76092e-13
-2.74799e-12
-6.82104e-12
-9.81688e-12
-1.12761e-11
-1.35577e-11
-1.22488e-11
-2.96841e-11
5.39643e-19
4.31559e-19
5.56896e-20
-1.83689e-21
-1.33856e-23
6.24865e-25
-1.73957e-26
-3.09138e-29
-2.35409e-28
-5.39618e-28
-8.47816e-28
-1.08978e-27
-1.18819e-27
-1.14188e-27
-1.00034e-27
-8.03218e-28
-5.89782e-28
-9.32454e-28
-2.01279e-27
1.60521e-25
1.66202e-24
-2.73614e-23
-4.21178e-22
-1.72978e-21
1.2205e-20
1.47878e-19
-6.60369e-20
-7.75273e-18
-2.79854e-17
1.54082e-16
1.36685e-15
2.59429e-15
-1.2724e-14
-8.98677e-14
-2.7431e-13
-5.70534e-13
-9.29501e-13
-1.24103e-12
-1.41803e-12
-1.48001e-12
-1.49962e-12
-1.51205e-12
-1.508e-12
-1.47999e-12
-1.42574e-12
-1.15078e-12
-7.38093e-13
-3.65543e-13
-1.28995e-13
-3.14961e-14
-4.78182e-15
-1.2402e-17
2.20159e-16
-2.8545e-16
-2.22914e-16
-8.35558e-17
-1.23019e-17
1.59023e-17
1.53037e-17
2.0257e-18
-5.05715e-20
-1.20899e-20
-1.4006e-20
2.58945e-19
-5.86378e-18
5.94901e-17
-2.57283e-16
-6.57805e-17
5.81047e-15
-3.20104e-14
1.32316e-13
-3.85597e-13
-2.74671e-12
-6.54258e-12
-9.30773e-12
-1.1349e-11
-1.43251e-11
-1.32187e-11
-3.15161e-11
6.84923e-19
6.13524e-19
1.39141e-19
-5.20982e-21
1.242e-23
5.07313e-25
-3.83619e-27
-1.50954e-27
-2.21024e-28
-5.50531e-28
-8.77935e-28
-1.10596e-27
-1.18866e-27
-1.13349e-27
-9.8775e-28
-7.88196e-28
-5.85904e-28
-1.31947e-27
-3.59389e-27
2.41994e-25
2.48419e-24
-3.66513e-23
-5.44144e-22
-2.06855e-21
1.61347e-20
1.74034e-19
-2.21969e-19
-9.5894e-18
-2.74495e-17
2.14529e-16
1.57154e-15
2.18079e-15
-1.6588e-14
-1.00045e-13
-2.92937e-13
-6.07442e-13
-1.00335e-12
-1.35719e-12
-1.5514e-12
-1.60612e-12
-1.61293e-12
-1.61377e-12
-1.59455e-12
-1.54835e-12
-1.47517e-12
-1.27985e-12
-8.61336e-13
-4.48564e-13
-1.68888e-13
-4.62402e-14
-9.3095e-15
-1.10239e-15
3.4931e-16
-1.194e-16
-2.33303e-16
-8.47077e-17
-1.20696e-17
1.62408e-17
1.44058e-17
1.39798e-18
2.79939e-21
9.28942e-20
1.52067e-20
3.50314e-19
-7.39972e-18
6.91401e-17
-2.69033e-16
-1.55982e-16
6.15134e-15
-3.3667e-14
1.40313e-13
-4.02829e-13
-2.75248e-12
-6.23713e-12
-8.82259e-12
-1.14794e-11
-1.51403e-11
-1.42983e-11
-3.36277e-11
8.57282e-19
8.394e-19
2.73483e-19
-9.70222e-21
4.88473e-23
-5.64802e-25
6.475e-26
-4.42293e-27
-3.30171e-28
-5.57471e-28
-8.99522e-28
-1.12232e-27
-1.18874e-27
-1.12406e-27
-9.74082e-28
-7.7142e-28
-5.8456e-28
-1.88111e-27
-5.99248e-27
3.40172e-25
3.41941e-24
-4.5968e-23
-6.51762e-22
-2.2564e-21
2.02288e-20
1.92407e-19
-4.38673e-19
-1.1348e-17
-2.42432e-17
2.81448e-16
1.73642e-15
1.4664e-15
-2.14972e-14
-1.12427e-13
-3.14271e-13
-6.44413e-13
-1.0716e-12
-1.46783e-12
-1.68213e-12
-1.72932e-12
-1.72095e-12
-1.70811e-12
-1.67216e-12
-1.60567e-12
-1.51467e-12
-1.39348e-12
-9.91825e-13
-5.54705e-13
-2.2639e-13
-6.83693e-14
-1.57979e-14
-2.80716e-15
2.20887e-16
1.12183e-16
-2.30362e-16
-8.48598e-17
-1.17416e-17
1.66942e-17
1.33641e-17
7.7153e-19
3.94051e-20
2.04359e-19
5.43228e-20
4.80408e-19
-9.29472e-18
8.00572e-17
-2.83578e-16
-2.16822e-16
6.3383e-15
-3.53855e-14
1.49935e-13
-4.28647e-13
-2.76469e-12
-5.92195e-12
-8.36509e-12
-1.16719e-11
-1.59931e-11
-1.54674e-11
-3.59486e-11
1.06172e-18
1.1117e-18
4.69307e-19
-1.388e-20
8.83224e-23
-3.4117e-24
1.87525e-25
-5.59963e-27
-5.88144e-28
-5.91821e-28
-9.08364e-28
-1.13438e-27
-1.18801e-27
-1.1135e-27
-9.59217e-28
-7.52508e-28
-5.85196e-28
-2.6135e-27
-9.12726e-27
4.44193e-25
4.29658e-24
-5.49823e-23
-7.31733e-22
-2.23717e-21
2.44041e-20
2.01138e-19
-7.23099e-19
-1.29694e-17
-1.78397e-17
3.55404e-16
1.85342e-15
4.06219e-16
-2.75709e-14
-1.27354e-13
-3.38977e-13
-6.83365e-13
-1.13501e-12
-1.56946e-12
-1.80625e-12
-1.84614e-12
-1.82024e-12
-1.79169e-12
-1.73782e-12
-1.65014e-12
-1.53902e-12
-1.45573e-12
-1.11967e-12
-6.85236e-13
-3.07309e-13
-1.01856e-13
-2.52089e-14
-5.13732e-15
-2.83459e-16
3.15993e-16
-1.80462e-16
-8.67494e-17
-1.13138e-17
1.72809e-17
1.21354e-17
1.45483e-19
5.48058e-20
3.15837e-19
1.03314e-19
6.6617e-19
-1.16384e-17
9.24735e-17
-3.02576e-16
-2.392e-16
6.35198e-15
-3.71608e-14
1.61338e-13
-4.64087e-13
-2.77796e-12
-5.6016e-12
-7.9378e-12
-1.19425e-11
-1.68725e-11
-1.67011e-11
-3.83226e-11
1.30437e-18
1.43296e-18
7.34995e-19
-1.43069e-20
1.39679e-22
-7.87905e-24
2.25345e-25
1.22835e-27
-9.77423e-28
-6.92595e-28
-9.1883e-28
-1.14016e-27
-1.18574e-27
-1.10165e-27
-9.42945e-28
-7.31132e-28
-5.87053e-28
-3.47738e-27
-1.26286e-26
5.42811e-25
4.94245e-24
-6.43962e-23
-7.86119e-22
-2.01397e-21
2.87612e-20
2.00726e-19
-1.07916e-18
-1.44828e-17
-8.05755e-18
4.39129e-16
1.93734e-15
-9.94817e-16
-3.48685e-14
-1.45325e-13
-3.68004e-13
-7.25058e-13
-1.1951e-12
-1.65913e-12
-1.91933e-12
-1.95259e-12
-1.907e-12
-1.86088e-12
-1.7883e-12
-1.67905e-12
-1.54421e-12
-1.44819e-12
-1.23281e-12
-8.32129e-13
-4.13894e-13
-1.51063e-13
-3.93831e-14
-8.25457e-15
-1.18951e-15
3.72166e-16
-6.26017e-17
-9.40154e-17
-1.07923e-17
1.80199e-17
1.06756e-17
-4.89311e-19
5.60153e-20
4.23556e-19
1.60079e-19
9.27949e-19
-1.45317e-17
1.06701e-16
-3.28414e-16
-2.11462e-16
6.19298e-15
-3.89156e-14
1.74619e-13
-5.104e-13
-2.8028e-12
-5.28196e-12
-7.53958e-12
-1.22871e-11
-1.7766e-11
-1.79622e-11
-4.06749e-11
1.59236e-18
1.80668e-18
1.07574e-18
-2.5418e-21
2.49808e-22
-7.37207e-24
-1.80236e-25
2.33922e-26
-1.57024e-27
-8.73547e-28
-9.6364e-28
-1.14281e-27
-1.18218e-27
-1.08895e-27
-9.25104e-28
-7.07077e-28
-5.89977e-28
-4.41642e-27
-1.59578e-26
6.29895e-25
5.26478e-24
-7.51875e-23
-8.25243e-22
-1.62899e-21
3.34275e-20
1.93056e-19
-1.49977e-18
-1.5938e-17
4.84118e-18
5.36152e-16
2.01302e-15
-2.66169e-15
-4.32816e-14
-1.66309e-13
-4.01577e-13
-7.69922e-13
-1.25262e-12
-1.73525e-12
-2.01686e-12
-2.0443e-12
-1.97726e-12
-1.912e-12
-1.82035e-12
-1.68945e-12
-1.52802e-12
-1.38975e-12
-1.30884e-12
-9.74652e-13
-5.40993e-13
-2.18839e-13
-6.1034e-14
-1.27642e-14
-2.48814e-15
1.92013e-16
1.02216e-16
-1.03372e-16
-9.46445e-18
1.8826e-17
8.96796e-18
-1.13874e-18
5.94249e-20
5.28178e-19
2.21456e-19
1.28786e-18
-1.80876e-17
1.23275e-16
-3.65244e-16
-1.16008e-16
5.83211e-15
-4.05192e-14
1.89775e-13
-5.69517e-13
-2.84121e-12
-4.96476e-12
-7.16642e-12
-1.26932e-11
-1.86586e-11
-1.92204e-11
-4.29089e-11
1.93368e-18
2.23845e-18
1.49397e-18
4.28477e-20
1.64379e-22
2.07478e-23
-1.45728e-24
6.57223e-26
-1.80123e-27
-1.00913e-27
-1.06234e-27
-1.14656e-27
-1.17597e-27
-1.07619e-27
-9.05991e-28
-6.80343e-28
-5.94804e-28
-5.37441e-27
-1.86026e-26
7.05534e-25
5.27571e-24
-8.74647e-23
-8.57002e-22
-1.13113e-21
3.83894e-20
1.80264e-19
-1.96378e-18
-1.73647e-17
1.96799e-17
6.46282e-16
2.10394e-15
-4.4687e-15
-5.25484e-14
-1.89962e-13
-4.39401e-13
-8.16855e-13
-1.306e-12
-1.79799e-12
-2.09499e-12
-2.11684e-12
-2.02705e-12
-1.94148e-12
-1.83092e-12
-1.67889e-12
-1.4889e-12
-1.30479e-12
-1.31509e-12
-1.08315e-12
-6.74112e-13
-3.04133e-13
-9.2841e-14
-1.99288e-14
-4.29604e-15
-2.54812e-16
2.56931e-16
-1.00612e-16
-7.58285e-18
1.95751e-17
6.90139e-18
-1.79508e-18
8.69418e-20
6.31964e-19
2.84142e-19
1.7687e-18
-2.24461e-17
1.43151e-16
-4.19767e-16
7.2176e-17
5.20598e-15
-4.17859e-14
2.06521e-13
-6.43695e-13
-2.87086e-12
-4.64499e-12
-6.8106e-12
-1.31362e-11
-1.9531e-11
-2.04382e-11
-4.49519e-11
2.33763e-18
2.73645e-18
1.99068e-18
1.54917e-19
-1.8552e-21
9.84141e-23
-3.58708e-24
1.11614e-25
-2.94665e-28
-7.73929e-28
-1.17337e-27
-1.15699e-27
-1.16094e-27
-1.06185e-27
-8.86139e-28
-6.51298e-28
-6.03022e-28
-6.30798e-27
-2.01694e-26
7.73516e-25
5.09561e-24
-9.90007e-23
-8.81813e-22
-5.64313e-22
4.34111e-20
1.64401e-19
-2.43516e-18
-1.87725e-17
3.40019e-17
7.60217e-16
2.22099e-15
-6.26518e-15
-6.21526e-14
-2.15023e-13
-4.79969e-13
-8.64678e-13
-1.35448e-12
-1.84759e-12
-2.15138e-12
-2.16627e-12
-2.05274e-12
-1.94626e-12
-1.81754e-12
-1.64584e-12
-1.42848e-12
-1.19569e-12
-1.22773e-12
-1.13125e-12
-7.92293e-13
-4.00538e-13
-1.36446e-13
-3.1585e-14
-7.01454e-15
-9.71344e-16
3.48169e-16
-6.83914e-17
-1.01174e-17
2.02909e-17
4.30664e-18
-2.44783e-18
1.55973e-19
7.3452e-19
3.4445e-19
2.39479e-18
-2.77996e-17
1.67854e-16
-5.01455e-16
3.87888e-16
4.20553e-15
-4.23454e-14
2.23903e-13
-7.34323e-13
-2.91305e-12
-4.33402e-12
-6.45669e-12
-1.35808e-11
-2.03583e-11
-2.15804e-11
-4.68533e-11
2.82389e-18
3.32304e-18
2.58311e-18
3.37363e-19
-7.78386e-21
2.07041e-22
-5.92088e-24
9.53416e-26
2.98662e-27
-1.68648e-28
-1.21027e-27
-1.1917e-27
-1.13586e-27
-1.04091e-27
-8.64932e-28
-6.20494e-28
-6.16077e-28
-7.18518e-27
-2.05031e-26
8.35236e-25
4.85451e-24
-1.07227e-22
-8.93418e-22
1.98103e-23
4.80115e-20
1.47608e-19
-2.86645e-18
-2.01129e-17
4.51463e-17
8.61905e-16
2.3631e-15
-7.84627e-15
-7.12512e-14
-2.39055e-13
-5.1934e-13
-9.09156e-13
-1.39449e-12
-1.88303e-12
-2.18579e-12
-2.18993e-12
-2.05145e-12
-1.9241e-12
-1.77866e-12
-1.58965e-12
-1.34873e-12
-1.06969e-12
-1.04955e-12
-1.10676e-12
-8.74614e-13
-4.967e-13
-1.90664e-13
-4.945e-14
-1.13326e-14
-1.98471e-15
3.45571e-16
-2.3706e-20
-1.93403e-17
2.09702e-17
1.20372e-18
-3.02362e-18
2.59522e-19
8.30387e-19
3.98229e-19
3.19399e-18
-3.44086e-17
1.99355e-16
-6.21538e-16
8.74307e-16
2.68685e-15
-4.16271e-14
2.39667e-13
-8.3965e-13
-2.96288e-12
-4.02595e-12
-6.10486e-12
-1.39848e-11
-2.11102e-11
-2.26255e-11
-4.86338e-11
3.40998e-18
4.0129e-18
3.28524e-18
5.86919e-19
-1.45365e-20
3.37913e-22
-5.73484e-24
-1.07951e-25
8.258e-27
4.80158e-29
-1.10505e-27
-1.27951e-27
-1.12355e-27
-1.01224e-27
-8.40228e-28
-5.88062e-28
-6.33822e-28
-7.97402e-27
-1.98058e-26
8.84606e-25
4.58851e-24
-1.11061e-22
-8.81554e-22
5.54849e-22
5.14297e-20
1.31644e-19
-3.20123e-18
-2.1232e-17
5.14222e-17
9.36466e-16
2.5243e-15
-8.92474e-15
-7.864e-14
-2.59239e-13
-5.52948e-13
-9.44059e-13
-1.4213e-12
-1.90216e-12
-2.19906e-12
-2.18732e-12
-2.02161e-12
-1.87407e-12
-1.71419e-12
-1.51133e-12
-1.2522e-12
-9.34975e-13
-8.21252e-13
-1.01441e-12
-9.07878e-13
-5.78905e-13
-2.50352e-13
-7.3975e-14
-1.80167e-14
-3.38838e-15
2.36496e-16
9.53831e-17
-2.59039e-17
2.09734e-17
-2.10596e-18
-3.27362e-18
3.7661e-19
9.10577e-19
4.41231e-19
4.19029e-18
-4.25645e-17
2.39637e-16
-7.90805e-16
1.584e-15
4.81852e-16
-3.88464e-14
2.49644e-13
-9.38075e-13
-3.02098e-12
-3.71125e-12
-5.74069e-12
-1.43037e-11
-2.17539e-11
-2.35524e-11
-5.03406e-11
4.10908e-18
4.81616e-18
4.10755e-18
9.05547e-19
-1.87399e-20
4.00724e-22
5.67111e-24
-6.32569e-25
1.92407e-26
-6.17604e-28
-7.33891e-28
-1.39171e-27
-1.15787e-27
-9.86029e-28
-8.11286e-28
-5.53704e-28
-6.53207e-28
-8.62534e-27
-1.8503e-26
9.0952e-25
4.30218e-24
-1.08747e-22
-8.3647e-22
9.54681e-22
5.26778e-20
1.18175e-19
-3.36892e-18
-2.18604e-17
5.18352e-17
9.70564e-16
2.68338e-15
-9.22928e-15
-8.29349e-14
-2.72567e-13
-5.75491e-13
-9.63322e-13
-1.4287e-12
-1.90086e-12
-2.19206e-12
-2.16057e-12
-1.96351e-12
-1.79683e-12
-1.62567e-12
-1.41293e-12
-1.14233e-12
-7.99559e-13
-6.01373e-13
-8.66387e-13
-8.91616e-13
-6.34614e-13
-3.07455e-13
-1.03576e-13
-2.74518e-14
-5.32171e-15
1.43694e-17
1.97722e-16
-1.70368e-17
1.86641e-17
-5.24285e-18
-2.95004e-18
5.18449e-19
9.7289e-19
4.69748e-19
5.40085e-18
-5.2544e-17
2.9025e-16
-1.01844e-15
2.57672e-15
-2.59594e-15
-3.29995e-14
2.49272e-13
-1.06035e-12
-3.08547e-12
-3.39551e-12
-5.35263e-12
-1.45005e-11
-2.22571e-11
-2.4347e-11
-5.2102e-11
4.93174e-18
5.7391e-18
5.05491e-18
1.29697e-18
-1.70807e-20
-3.76161e-22
4.10736e-23
-1.47963e-24
3.29261e-26
-2.1423e-27
4.98383e-29
-1.34691e-27
-1.22087e-27
-9.7101e-28
-7.80593e-28
-5.18089e-28
-6.68458e-28
-9.05966e-27
-1.70978e-26
8.95903e-25
3.97759e-24
-9.93897e-23
-7.53999e-22
1.13532e-21
5.0814e-20
1.08522e-19
-3.29907e-18
-2.16509e-17
4.5986e-17
9.50959e-16
2.79423e-15
-8.63848e-15
-8.29772e-14
-2.76162e-13
-5.82304e-13
-9.62636e-13
-1.41251e-12
-1.87644e-12
-2.16477e-12
-2.11379e-12
-1.87982e-12
-1.69469e-12
-1.51653e-12
-1.29841e-12
-1.02405e-12
-6.71883e-13
-4.27696e-13
-6.79676e-13
-8.36311e-13
-6.56517e-13
-3.5344e-13
-1.34495e-13
-3.90601e-14
-7.84284e-15
-3.31362e-16
2.82887e-16
9.19783e-18
1.21235e-17
-8.12527e-18
-2.09447e-18
7.2068e-19
1.03052e-18
4.79742e-19
6.8715e-18
-6.46456e-17
3.51687e-16
-1.30511e-15
3.84731e-15
-6.67479e-15
-2.23764e-14
2.22929e-13
-1.20196e-12
-3.13897e-12
-3.06575e-12
-4.93007e-12
-1.45294e-11
-2.25925e-11
-2.49998e-11
-5.39103e-11
5.88341e-18
6.78142e-18
6.1242e-18
1.76329e-18
-5.39169e-21
-4.09675e-21
9.98918e-23
-2.38716e-24
3.38872e-26
-5.89195e-27
7.45108e-28
-9.56904e-28
-1.24406e-27
-9.62731e-28
-7.49181e-28
-4.8261e-28
-6.72571e-28
-9.19758e-27
-1.60517e-26
8.3462e-25
3.59702e-24
-8.36737e-23
-6.38309e-22
1.06238e-21
4.5428e-20
1.02536e-19
-2.95888e-18
-2.03056e-17
3.47739e-17
8.70737e-16
2.79926e-15
-7.23689e-15
-7.82743e-14
-2.68273e-13
-5.70789e-13
-9.40379e-13
-1.37291e-12
-1.8286e-12
-2.11827e-12
-2.05168e-12
-1.77579e-12
-1.57128e-12
-1.39153e-12
-1.17383e-12
-9.0266e-13
-5.55374e-13
-2.92416e-13
-4.93849e-13
-7.50668e-13
-6.44901e-13
-3.81976e-13
-1.61787e-13
-5.12078e-14
-1.07997e-14
-8.06075e-16
3.26245e-16
4.39399e-17
1.35804e-18
-1.08858e-17
-1.00035e-18
9.59636e-19
1.08363e-18
4.6326e-19
8.67481e-18
-7.88514e-17
4.21552e-16
-1.63414e-15
5.29643e-15
-1.15413e-14
-6.81731e-15
1.56944e-13
-1.3604e-12
-3.20107e-12
-2.73455e-12
-4.47399e-12
-1.43755e-11
-2.27444e-11
-2.54892e-11
-5.58203e-11
6.9608e-18
7.93239e-18
7.30519e-18
2.30253e-18
1.8454e-20
-1.13411e-20
1.65608e-22
-2.84354e-24
1.77573e-26
-1.25635e-26
-1.02719e-28
-3.23003e-28
-1.21279e-27
-9.63798e-28
-7.12089e-28
-4.45238e-28
-6.6028e-28
-9.00686e-27
-1.56956e-26
7.27857e-25
3.16255e-24
-6.38938e-23
-5.01413e-22
7.81911e-22
3.7011e-20
9.76339e-20
-2.38353e-18
-1.77325e-17
2.06508e-17
7.35649e-16
2.65319e-15
-5.29527e-15
-6.91994e-14
-2.48935e-13
-5.41248e-13
-8.9865e-13
-1.31582e-12
-1.76283e-12
-2.05629e-12
-1.97906e-12
-1.65889e-12
-1.43117e-12
-1.25524e-12
-1.04445e-12
-7.84068e-13
-4.52348e-13
-1.86751e-13
-3.37598e-13
-6.3327e-13
-6.0503e-13
-3.89643e-13
-1.80664e-13
-6.16476e-14
-1.38088e-14
-1.3961e-15
3.07336e-16
7.53637e-17
-9.29738e-18
-1.29424e-17
1.2302e-19
1.15193e-18
1.11348e-18
4.32756e-19
1.06164e-17
-9.32809e-17
4.91127e-16
-1.97384e-15
6.8127e-15
-1.67174e-14
4.86227e-15
1.62558e-13
-1.52815e-12
-3.26172e-12
-2.40675e-12
-3.98429e-12
-1.40244e-11
-2.26877e-11
-2.57668e-11
-5.77863e-11
8.14746e-18
9.16657e-18
8.57883e-18
2.90663e-18
5.5237e-20
-2.16803e-20
2.18155e-22
-2.15588e-24
-5.77614e-27
-1.7313e-26
-3.53483e-27
3.78856e-28
-1.11544e-27
-9.91125e-28
-6.69958e-28
-4.00524e-28
-6.3052e-28
-8.53127e-27
-1.60936e-26
5.90217e-25
2.70076e-24
-4.32536e-23
-3.59997e-22
4.10083e-22
2.6927e-20
8.94017e-20
-1.68217e-18
-1.41471e-17
6.90875e-18
5.64652e-16
2.34322e-15
-3.19718e-15
-5.69319e-14
-2.19918e-13
-4.96818e-13
-8.43591e-13
-1.25165e-12
-1.69009e-12
-1.9856e-12
-1.90209e-12
-1.53796e-12
-1.27988e-12
-1.11176e-12
-9.14615e-13
-6.73156e-13
-3.64604e-13
-1.05569e-13
-2.10576e-13
-4.89993e-13
-5.39098e-13
-3.74748e-13
-1.87635e-13
-6.82058e-14
-1.63449e-14
-2.06049e-15
2.15886e-16
9.19994e-17
-1.25638e-17
-1.25832e-17
1.24213e-18
1.482e-18
1.12366e-18
4.77917e-19
1.18001e-17
-1.02711e-16
5.43826e-16
-2.29033e-15
8.40977e-15
-2.30441e-14
2.09644e-14
1.47355e-13
-1.69521e-12
-3.3019e-12
-2.0818e-12
-3.45592e-12
-1.34864e-11
-2.24093e-11
-2.57596e-11
-5.9751e-11
9.40869e-18
1.04404e-17
9.90594e-18
3.56222e-18
1.05365e-19
-3.47854e-20
2.31978e-22
6.32755e-25
-3.41586e-26
-1.40531e-26
-9.99588e-27
1.01485e-27
-8.03708e-28
-1.06779e-27
-6.56477e-28
-3.50705e-28
-5.87921e-28
-7.87954e-27
-1.68977e-26
4.44308e-25
2.24915e-24
-2.4872e-23
-2.31236e-22
8.03413e-23
1.70296e-20
7.46493e-20
-1.00534e-18
-1.00852e-17
-3.4267e-18
3.85158e-16
1.89987e-15
-1.31708e-15
-4.31841e-14
-1.84154e-13
-4.41919e-13
-7.82476e-13
-1.19166e-12
-1.62479e-12
-1.91531e-12
-1.82516e-12
-1.42101e-12
-1.1242e-12
-9.64431e-13
-7.87342e-13
-5.70306e-13
-2.92841e-13
-4.57538e-14
-1.01995e-13
-3.38587e-13
-4.4343e-13
-3.35038e-13
-1.80704e-13
-6.9559e-14
-1.78988e-14
-2.72245e-15
5.72998e-17
8.35794e-17
-4.93657e-18
-8.61021e-18
2.06324e-18
2.39986e-18
1.18309e-18
7.10344e-19
1.12182e-17
-1.00585e-16
5.55807e-16
-2.50988e-15
9.96688e-15
-3.08753e-14
4.48912e-14
1.09552e-13
-1.88432e-12
-3.34489e-12
-1.76727e-12
-2.89317e-12
-1.27694e-11
-2.18806e-11
-2.54393e-11
-6.15232e-11
1.06867e-17
1.16884e-17
1.12252e-17
4.25077e-18
1.69046e-19
-5.02484e-20
1.60261e-22
6.84277e-24
-3.79445e-26
5.12488e-27
-2.12652e-26
6.32413e-28
-7.40942e-30
-1.1535e-27
-7.23643e-28
-3.17382e-28
-5.4965e-28
-7.16156e-27
-1.7349e-26
3.12697e-25
1.83357e-24
-1.09179e-23
-1.28472e-22
-1.21302e-22
8.98714e-21
5.4453e-20
-4.80432e-19
-6.26218e-18
-8.6978e-18
2.25567e-16
1.39068e-15
1.02948e-16
-2.96042e-14
-1.44925e-13
-3.80514e-13
-7.19575e-13
-1.14207e-12
-1.57791e-12
-1.85421e-12
-1.75167e-12
-1.31447e-12
-9.72669e-13
-8.16303e-13
-6.6469e-13
-4.76787e-13
-2.36228e-13
-6.40012e-15
-8.64371e-15
-1.94569e-13
-3.2173e-13
-2.70562e-13
-1.59236e-13
-6.54691e-14
-1.80885e-14
-3.2461e-15
-1.47107e-16
4.58922e-17
8.73492e-18
-2.45613e-18
1.59456e-18
3.94694e-18
1.35396e-18
1.0669e-18
9.00462e-18
-8.2728e-17
4.96875e-16
-2.50337e-15
1.11928e-14
-4.01096e-14
8.0602e-14
3.54278e-14
-2.06677e-12
-3.38572e-12
-1.48561e-12
-2.31288e-12
-1.19152e-11
-2.11042e-11
-2.47859e-11
-6.27792e-11
1.18972e-17
1.282e-17
1.24625e-17
4.94974e-18
2.46185e-19
-6.74454e-20
-1.01535e-22
1.74242e-23
5.04031e-26
7.04263e-26
-3.7284e-26
-2.89407e-27
1.73942e-27
-8.66469e-28
-8.34242e-28
-3.2943e-28
-5.49998e-28
-6.4201e-27
-1.65552e-26
2.09828e-25
1.458e-24
-2.11413e-24
-5.76712e-23
-1.86185e-22
3.63208e-21
3.35675e-20
-1.58748e-19
-3.27965e-18
-9.23458e-18
1.06874e-16
8.97674e-16
9.42178e-16
-1.75519e-14
-1.0538e-13
-3.14476e-13
-6.52741e-13
-1.09829e-12
-1.54832e-12
-1.80514e-12
-1.67847e-12
-1.2172e-12
-8.34697e-13
-6.72118e-13
-5.48097e-13
-3.9358e-13
-1.92626e-13
1.40782e-14
6.50244e-14
-6.86087e-14
-1.90773e-13
-1.90809e-13
-1.25965e-13
-5.64005e-14
-1.69065e-14
-3.50576e-15
-3.70443e-16
-1.8683e-17
1.8612e-17
1.83527e-18
-1.43603e-18
5.45949e-18
1.61028e-18
1.29862e-18
5.4124e-18
-4.62309e-17
3.33734e-16
-2.11279e-15
1.15665e-14
-4.97835e-14
1.31689e-13
-8.64916e-14
-2.27023e-12
-3.44439e-12
-1.22082e-12
-1.71196e-12
-1.09533e-11
-2.01121e-11
-2.37474e-11
-6.35174e-11
1.29288e-17
1.37219e-17
1.35231e-17
5.62791e-18
3.36588e-19
-8.54247e-20
-7.64329e-22
3.13029e-23
2.04997e-25
2.31491e-25
-4.94656e-26
-1.37428e-26
3.80168e-27
3.35049e-28
-8.00443e-28
-3.57913e-28
-5.96964e-28
-5.62397e-27
-1.4034e-26
1.38364e-25
1.11545e-24
2.20532e-24
-1.65331e-23
-1.62004e-22
7.86394e-22
1.68361e-20
-1.07896e-20
-1.36973e-18
-6.9341e-18
3.53509e-17
4.91938e-16
1.18398e-15
-8.19269e-15
-6.86571e-14
-2.44235e-13
-5.74795e-13
-1.04612e-12
-1.51995e-12
-1.75962e-12
-1.59346e-12
-1.11546e-12
-7.16193e-13
-5.39737e-13
-4.39334e-13
-3.19208e-13
-1.59649e-13
1.83625e-14
1.08934e-13
2.87394e-14
-7.47579e-14
-1.11484e-13
-8.71717e-14
-4.40278e-14
-1.47503e-14
-3.49612e-15
-5.78362e-16
-1.04122e-16
1.50694e-17
-5.38573e-19
-7.52131e-18
6.17553e-18
1.86183e-18
1.42716e-18
-2.50579e-18
1.89373e-17
4.12634e-17
-1.20452e-15
1.03303e-14
-5.69926e-14
1.94323e-13
-2.60579e-13
-2.48443e-12
-3.48992e-12
-9.61675e-13
-1.1014e-12
-9.93316e-12
-1.89421e-11
-2.23671e-11
-6.32187e-11
1.36481e-17
1.42638e-17
1.43091e-17
6.25689e-18
4.40588e-19
-1.02919e-19
-2.13942e-21
4.38024e-23
1.91931e-25
5.3895e-25
-3.24317e-26
-3.80089e-26
1.86592e-27
2.09033e-27
-4.85409e-28
-3.01728e-28
-5.95076e-28
-4.70611e-27
-1.01418e-26
9.17986e-26
8.06591e-25
3.49642e-24
2.78416e-24
-1.06357e-22
-3.38662e-22
6.21542e-21
3.1428e-20
-3.83565e-19
-3.95662e-18
2.62765e-18
2.12497e-16
9.70726e-16
-2.1872e-15
-3.74915e-14
-1.71098e-13
-4.78549e-13
-9.68849e-13
-1.47182e-12
-1.70326e-12
-1.48733e-12
-9.93024e-13
-6.12612e-13
-4.27819e-13
-3.4208e-13
-2.53724e-13
-1.34731e-13
1.07656e-14
1.18604e-13
8.86864e-14
8.31302e-15
-4.72329e-14
-5.11477e-14
-3.12914e-14
-1.21259e-14
-3.25539e-15
-7.35368e-16
-1.99678e-16
-7.42692e-18
-1.29431e-17
-1.57584e-17
5.8531e-18
2.00908e-18
2.02831e-18
-1.85892e-17
1.2365e-16
-3.89842e-16
2.98155e-16
6.73567e-15
-5.58914e-14
2.25498e-13
-4.3231e-13
-2.70536e-12
-3.52323e-12
-6.99372e-13
-5.04537e-13
-8.89525e-12
-1.76539e-11
-2.06348e-11
-6.22e-11
1.39106e-17
1.43112e-17
1.47144e-17
6.80937e-18
5.59491e-19
-1.18582e-19
-4.32903e-21
4.64007e-23
-6.08943e-25
1.05464e-24
7.61007e-26
-7.27747e-26
-9.27588e-27
3.32825e-27
-7.8403e-29
-2.73826e-28
-4.13496e-28
-3.57928e-27
-5.9229e-27
6.07906e-26
5.44173e-25
3.25253e-24
9.19767e-24
-5.62305e-23
-5.74043e-22
8.86918e-22
2.86775e-20
2.71469e-21
-1.67726e-18
-6.45247e-18
6.01384e-17
5.78697e-16
6.00685e-16
-1.45918e-14
-9.94574e-14
-3.61189e-13
-8.5256e-13
-1.38858e-12
-1.62951e-12
-1.37183e-12
-8.50722e-13
-5.07733e-13
-3.38976e-13
-2.59415e-13
-1.9766e-13
-1.15002e-13
-2.89672e-15
1.04605e-13
1.11515e-13
5.37745e-14
-5.75541e-15
-2.52821e-14
-2.0799e-14
-9.39004e-15
-2.8352e-15
-8.26217e-16
-2.91884e-16
-4.78429e-17
-3.58939e-17
-2.41337e-17
4.79484e-18
1.93814e-18
3.55165e-18
-3.96708e-17
2.53213e-16
-9.4978e-16
2.40873e-15
5.75718e-16
-4.23565e-14
1.3461e-13
-6.55486e-13
-2.9388e-12
-3.53496e-12
-4.34445e-13
7.16542e-14
-7.89222e-12
-1.63024e-11
-1.86882e-11
-5.97472e-11
1.35796e-17
1.37445e-17
1.46329e-17
7.25723e-18
6.95466e-19
-1.30828e-19
-7.21845e-21
2.69718e-23
-3.7582e-24
1.71335e-24
3.75086e-25
-9.4808e-26
-3.07867e-26
3.72126e-27
2.60885e-28
-8.53597e-28
-2.35653e-28
-2.21465e-27
-2.40988e-27
3.85822e-26
3.4172e-25
2.50154e-24
9.50962e-24
-2.37616e-23
-4.80977e-22
-1.11365e-21
1.59167e-20
9.41702e-20
-4.22197e-19
-5.57358e-18
9.67334e-19
2.55119e-16
1.14308e-15
-2.52329e-15
-4.47313e-14
-2.31311e-13
-6.88734e-13
-1.26058e-12
-1.54287e-12
-1.2792e-12
-7.30532e-13
-4.0272e-13
-2.6764e-13
-1.91663e-13
-1.5017e-13
-9.77764e-14
-1.76778e-14
7.88566e-14
1.0705e-13
6.82604e-14
1.40146e-14
-1.13918e-14
-1.35088e-14
-6.74515e-15
-2.30166e-15
-8.54877e-16
-3.69831e-16
-1.00373e-16
-6.72358e-17
-3.04219e-17
3.59394e-18
1.83287e-18
5.10376e-18
-5.48512e-17
3.58751e-16
-1.56156e-15
5.05286e-15
-7.9851e-15
-2.76214e-14
1.74911e-13
-9.01068e-13
-3.18098e-12
-3.51709e-12
-1.55891e-13
5.77171e-13
-6.97109e-12
-1.49295e-11
-1.66364e-11
-5.5916e-11
1.25485e-17
1.24746e-17
1.40327e-17
7.59446e-18
8.51325e-19
-1.37639e-19
-1.06338e-20
-2.95023e-23
-1.24976e-23
1.98488e-24
9.58269e-25
-5.80062e-26
-6.42934e-26
2.09047e-27
1.96658e-27
-2.28549e-27
-8.55633e-28
-9.45836e-28
-5.98686e-29
2.22002e-26
2.01244e-25
1.75071e-24
7.70697e-24
-6.76148e-24
-3.28216e-22
-1.4951e-21
6.17106e-21
8.31021e-20
8.46397e-20
-2.84303e-18
-1.23126e-17
7.342e-17
7.96189e-16
1.47721e-15
-1.40737e-14
-1.21423e-13
-4.84501e-13
-1.0789e-12
-1.44542e-12
-1.22738e-12
-6.6857e-13
-3.19979e-13
-2.04862e-13
-1.3646e-13
-1.0878e-13
-8.08929e-14
-3.00921e-14
5.03391e-14
8.74911e-14
6.25663e-14
1.79797e-14
-6.56267e-15
-9.0495e-15
-4.33514e-15
-1.72752e-15
-8.31148e-16
-4.2669e-16
-1.56615e-16
-1.02176e-16
-3.32149e-17
2.78222e-18
1.81284e-18
5.25668e-18
-5.72684e-17
3.84984e-16
-1.98456e-15
7.75022e-15
-2.03196e-14
1.42248e-14
1.28178e-13
-1.21669e-12
-3.42174e-12
-3.46386e-12
1.18093e-13
9.92285e-13
-6.16731e-12
-1.35847e-11
-1.45517e-11
-5.16046e-11
1.07636e-17
1.04673e-17
1.29406e-17
7.83311e-18
1.03059e-18
-1.36511e-19
-1.4258e-20
-1.37474e-22
-3.27907e-23
5.00804e-25
1.87963e-24
1.30422e-25
-1.11836e-25
-7.21877e-27
9.34645e-27
-2.52296e-27
-3.02848e-27
-6.8698e-28
1.10263e-27
1.08029e-26
1.12841e-25
1.1672e-24
5.64197e-24
7.31872e-25
-2.04062e-22
-1.2826e-21
1.07522e-21
5.32792e-20
2.08855e-19
-9.60079e-19
-1.05083e-17
-1.30771e-18
3.8016e-16
1.84025e-15
-1.13337e-15
-5.12582e-14
-2.92956e-13
-8.4727e-13
-1.33235e-12
-1.20773e-12
-6.52904e-13
-2.64342e-13
-1.48778e-13
-9.04811e-14
-7.12215e-14
-6.30243e-14
-3.8118e-14
2.48376e-14
6.34634e-14
4.71221e-14
1.26368e-14
-6.7207e-15
-6.5346e-15
-2.27609e-15
-1.1619e-15
-7.70761e-16
-4.5882e-16
-2.09756e-16
-1.34533e-16
-3.26079e-17
2.50185e-18
1.14142e-18
3.77577e-18
-5.24735e-17
3.06272e-16
-1.83466e-15
8.94922e-15
-3.36575e-14
8.75251e-14
-4.50178e-14
-1.58082e-12
-3.6446e-12
-3.33459e-12
3.98746e-13
1.27643e-12
-5.53334e-12
-1.22976e-11
-1.25668e-11
-4.57398e-11
8.24025e-18
7.76231e-18
1.14513e-17
7.99088e-18
1.2372e-18
-1.24317e-19
-1.75279e-20
-2.98972e-22
-7.37187e-23
-5.52577e-24
3.02029e-24
6.26853e-25
-1.60525e-25
-3.92578e-26
2.45898e-26
4.34574e-27
-5.22531e-27
-2.26672e-27
9.63705e-28
3.79939e-27
6.15516e-26
7.61189e-25
3.95125e-24
3.4416e-24
-1.20795e-22
-9.48173e-22
-9.89057e-22
2.94393e-20
1.89504e-19
-7.09685e-20
-6.32969e-18
-2.14874e-17
1.26124e-16
1.24671e-15
2.72168e-15
-1.51962e-14
-1.55229e-13
-6.07165e-13
-1.19177e-12
-1.20338e-12
-6.66505e-13
-2.33653e-13
-1.04258e-13
-5.23395e-14
-3.72004e-14
-4.37587e-14
-4.11071e-14
5.19254e-15
4.19382e-14
3.03013e-14
3.57215e-15
-8.82553e-15
-5.07912e-15
-6.26913e-16
-6.27154e-16
-6.90155e-16
-4.65701e-16
-2.59575e-16
-1.62708e-16
-3.01281e-17
2.69787e-18
1.15262e-18
3.47067e-18
-5.81222e-17
1.85892e-16
-1.05785e-15
6.90404e-15
-3.75803e-14
9.25258e-14
-3.23985e-13
-1.94578e-12
-3.82777e-12
-3.13381e-12
6.50631e-13
1.38187e-12
-5.08803e-12
-1.10923e-11
-1.06926e-11
-3.89439e-11
5.07019e-18
4.47588e-18
9.69223e-18
8.08557e-18
1.47466e-18
-9.72736e-20
-1.95024e-20
-4.72113e-22
-1.43346e-22
-2.06978e-23
3.782e-24
1.62406e-24
-1.64059e-25
-1.30706e-25
3.17694e-26
2.52113e-26
-1.43079e-27
-4.69743e-27
-6.47952e-28
2.37719e-29
3.35243e-26
4.93412e-25
2.7249e-24
4.01922e-24
-6.92819e-23
-6.56e-22
-1.5647e-21
1.45179e-20
1.37278e-19
2.42938e-19
-3.17807e-18
-2.10615e-17
1.10034e-17
6.7341e-16
2.99981e-15
-2.29846e-17
-7.21768e-14
-4.06533e-13
-1.02118e-12
-1.20684e-12
-7.07902e-13
-2.29201e-13
-7.402e-14
-2.29463e-14
-7.84717e-15
-2.38068e-14
-3.94868e-14
-8.2082e-15
2.60486e-14
1.71928e-14
-5.13812e-15
-1.08945e-14
-3.8381e-15
6.43847e-16
-1.94872e-16
-6.47727e-16
-4.65449e-16
-2.86991e-16
-1.86333e-16
-2.37283e-17
3.82844e-18
4.35021e-18
-1.64558e-19
-1.58269e-16
3.57049e-16
-8.22812e-16
2.48252e-15
-2.00283e-14
-8.26141e-14
-6.05879e-13
-2.33727e-12
-3.93143e-12
-2.8465e-12
8.56929e-13
1.28444e-12
-4.86173e-12
-1.00039e-11
-8.89556e-12
-3.29019e-11
1.41677e-18
7.8631e-19
7.73982e-18
8.13122e-18
1.74495e-18
-5.09552e-20
-1.87087e-20
-5.20373e-22
-2.40741e-22
-5.158e-23
2.72434e-24
3.38941e-24
3.90813e-26
-3.29595e-25
-1.87204e-26
5.42654e-26
1.57673e-26
-3.90254e-27
-3.08108e-27
-2.02472e-27
1.86639e-26
3.20951e-25
1.87278e-24
3.69472e-24
-3.87486e-23
-4.38307e-22
-1.51624e-21
6.19478e-21
9.00507e-20
3.01629e-19
-1.31295e-18
-1.54939e-17
-2.94595e-17
3.04731e-16
2.2622e-15
4.77352e-15
-2.7773e-14
-2.58243e-13
-8.39403e-13
-1.20547e-12
-7.87966e-13
-2.54994e-13
-6.09347e-14
-4.81043e-15
1.51861e-14
-4.05861e-15
-3.40837e-14
-1.69199e-14
1.5904e-14
1.02256e-14
-1.09053e-14
-1.19106e-14
-2.21164e-15
1.75861e-15
1.36001e-16
-6.34984e-16
-4.3255e-16
-2.41503e-16
-1.54539e-16
2.11505e-18
6.51661e-18
1.50812e-17
-2.70358e-17
-5.89567e-16
1.04901e-15
-1.77165e-15
3.65065e-16
-3.87182e-14
-1.88656e-13
-9.3499e-13
-2.74935e-12
-3.94378e-12
-2.47922e-12
9.70211e-13
9.55358e-13
-4.84122e-12
-9.04923e-12
-7.21427e-12
-2.54036e-11
-2.50561e-18
-3.08771e-18
5.70978e-18
8.14252e-18
2.04786e-18
1.96764e-20
-1.29891e-20
-1.5292e-22
-3.5145e-22
-1.09364e-22
-3.7411e-24
6.20979e-24
9.31909e-25
-5.90679e-25
-1.98353e-25
5.36179e-26
4.39074e-26
5.11372e-27
-4.20405e-27
-3.4009e-27
1.06837e-26
2.10841e-25
1.2829e-24
3.00602e-24
-2.12546e-23
-2.85428e-22
-1.24238e-21
1.97541e-21
5.56755e-20
2.64903e-19
-3.49966e-19
-1.01275e-17
-3.76821e-17
1.01568e-16
1.45908e-15
5.27631e-15
-6.17356e-15
-1.55773e-13
-6.6167e-13
-1.17914e-12
-9.15027e-13
-3.20002e-13
-7.17143e-14
-3.54085e-15
2.84275e-14
1.42186e-14
-2.53306e-14
-2.30182e-14
9.02431e-15
9.51282e-15
-1.2024e-14
-1.16152e-14
-4.53989e-16
2.66744e-15
2.94472e-16
-6.75191e-16
-5.18482e-16
-4.65724e-16
-8.41973e-17
-8.0934e-18
-2.41597e-18
4.23922e-17
-1.17611e-16
-1.5433e-15
1.56088e-15
1.4414e-15
-3.41263e-14
-3.35261e-13
-3.78663e-13
-1.34005e-12
-3.11505e-12
-3.80618e-12
-2.06448e-12
9.45041e-13
4.14703e-13
-5.01845e-12
-8.23057e-12
-5.71074e-12
-1.94284e-11
-6.46442e-18
-6.91478e-18
3.72906e-18
8.13274e-18
2.38029e-18
1.19899e-19
6.82944e-22
1.15189e-21
-4.41766e-22
-2.14991e-22
-2.47341e-23
9.49466e-24
3.41148e-24
-5.83599e-25
-5.41059e-25
-4.49709e-26
6.21081e-26
2.297e-26
-1.64935e-27
-4.25351e-27
6.26585e-27
1.40794e-25
8.7016e-25
2.22128e-24
-1.15929e-23
-1.81277e-22
-9.21142e-22
1.09593e-22
3.29114e-20
2.01419e-19
7.26096e-20
-6.18851e-18
-3.37848e-17
2.65279e-18
8.53918e-16
4.37443e-15
3.21656e-15
-8.76219e-14
-4.98391e-13
-1.10817e-12
-1.06742e-12
-4.43811e-13
-1.17899e-13
-2.6907e-14
2.59516e-14
2.85125e-14
-1.37806e-14
-2.74631e-14
2.18683e-15
1.23035e-14
-9.03963e-15
-1.01796e-14
1.18492e-15
3.28115e-15
1.48755e-16
-5.42305e-16
-2.33437e-17
-2.37592e-16
-2.0237e-16
-7.01532e-17
3.61477e-18
1.15345e-16
-5.40549e-16
-3.48091e-15
2.40262e-15
9.10463e-15
-3.70672e-13
-3.5473e-13
-5.41748e-13
-1.7836e-12
-3.3831e-12
-3.5239e-12
-1.64895e-12
7.61894e-13
-3.32074e-13
-5.33733e-12
-7.5294e-12
-4.42595e-12
-1.19146e-11
-1.02434e-17
-1.0482e-17
1.91172e-18
8.10893e-18
2.73577e-18
2.56132e-19
2.50585e-20
4.27309e-21
-4.28331e-22
-3.98433e-22
-7.83621e-23
9.74766e-24
8.31457e-24
4.12593e-25
-9.38045e-25
-3.00213e-25
3.74177e-26
4.50551e-26
5.54675e-27
-4.7569e-27
3.80029e-27
9.68393e-26
5.80971e-25
1.49849e-24
-6.40615e-24
-1.12203e-22
-6.34258e-22
-5.25399e-22
1.87749e-20
1.40055e-19
2.05099e-19
-3.61952e-18
-2.63281e-17
-3.64204e-17
4.62502e-16
3.22335e-15
6.39038e-15
-4.41524e-14
-3.54981e-13
-9.83308e-13
-1.2002e-12
-6.45172e-13
-2.12877e-13
-8.21868e-14
3.84664e-16
3.32044e-14
-9.2303e-16
-3.00455e-14
-6.53921e-15
1.69101e-14
-3.4812e-15
-9.38526e-15
1.77035e-15
3.92122e-15
-6.68443e-16
-1.33732e-15
-4.24501e-17
-2.30011e-16
-5.47287e-16
3.87682e-16
6.30151e-17
2.84463e-16
-2.73789e-15
-9.2417e-15
5.8231e-15
-3.4014e-14
-3.12383e-13
-3.08719e-13
-7.88323e-13
-2.2609e-12
-3.49026e-12
-3.12469e-12
-1.32418e-12
4.20245e-13
-1.22451e-12
-5.73931e-12
-6.9143e-12
-3.34002e-12
-4.01065e-12
-1.36705e-17
-1.36157e-17
3.39614e-19
8.06573e-18
3.10367e-18
4.32996e-19
6.45645e-20
1.06469e-20
-9.18147e-23
-6.81906e-22
-1.92436e-22
-1.70275e-24
1.53565e-23
3.34598e-24
-1.02625e-24
-7.05237e-25
-7.19898e-26
6.30651e-26
2.06931e-26
-4.78505e-27
1.25863e-27
6.92649e-26
3.77806e-25
9.18144e-25
-3.56091e-24
-6.73088e-23
-4.11389e-22
-6.04745e-22
1.04329e-20
9.14167e-20
2.05331e-19
-2.06012e-18
-1.88919e-17
-4.44e-17
2.32205e-16
2.20671e-15
6.51661e-15
-1.85154e-14
-2.3573e-13
-8.13518e-13
-1.2701e-12
-9.05445e-13
-3.68186e-13
-1.77285e-13
-5.70337e-14
1.96813e-14
1.02944e-14
-3.00168e-14
-2.06836e-14
1.95427e-14
6.23874e-15
-8.29102e-15
1.66456e-17
5.41503e-15
-2.27839e-16
-2.64768e-15
-1.58112e-15
-1.06207e-15
6.71142e-16
-1.09412e-15
-7.01307e-17
-6.56238e-16
-1.36262e-14
-2.69544e-14
-5.24123e-15
-1.8795e-13
-3.20075e-13
-3.77987e-13
-1.17616e-12
-2.67802e-12
-3.40843e-12
-2.69059e-12
-1.12323e-12
-9.33798e-14
-2.21157e-12
-6.14952e-12
-6.34424e-12
-2.39926e-12
5.88482e-13
-1.66318e-17
-1.61895e-17
-9.46809e-19
7.98364e-18
3.46824e-18
6.51699e-19
1.24493e-19
2.25337e-20
1.0921e-21
-1.0367e-21
-4.02315e-22
-4.11225e-23
2.19859e-23
9.09433e-24
-1.38581e-25
-1.14255e-24
-3.27738e-25
4.67054e-26
4.86661e-26
1.76722e-27
-2.3694e-27
4.90999e-26
2.27553e-25
4.9431e-25
-1.78058e-24
-3.80175e-23
-2.52137e-22
-4.89038e-22
5.69306e-21
5.70335e-20
1.61064e-19
-1.15752e-18
-1.28306e-17
-3.89925e-17
1.0643e-16
1.42404e-15
5.34587e-15
-5.01548e-15
-1.43795e-13
-6.22199e-13
-1.24174e-12
-1.16286e-12
-6.00412e-13
-3.21813e-13
-1.56322e-13
-2.24257e-14
1.45292e-14
-2.52137e-14
-3.94354e-14
1.1997e-14
1.78057e-14
-3.18377e-15
-5.12767e-15
3.94005e-15
3.71644e-15
7.34483e-16
2.3139e-15
4.37243e-15
2.82617e-15
-2.88566e-15
8.97532e-15
-1.61583e-14
-5.89678e-14
-8.12539e-14
-1.08849e-13
-2.34813e-13
-3.71143e-13
-6.12125e-13
-1.68863e-12
-2.98957e-12
-3.20323e-12
-2.34256e-12
-1.09432e-12
-7.41742e-13
-3.20631e-12
-6.48201e-12
-5.77556e-12
-1.59653e-12
2.41542e-12
-1.90701e-17
-1.81096e-17
-1.95703e-18
7.83192e-18
3.80934e-18
9.09643e-19
2.10241e-19
4.31601e-20
4.15504e-21
-1.30573e-21
-7.41471e-22
-1.35962e-22
2.1884e-23
1.83882e-23
2.7445e-24
-1.33643e-24
-7.79793e-25
-7.52178e-26
7.04657e-26
2.21146e-26
-3.81106e-28
3.3555e-26
1.08047e-25
1.81659e-25
-4.20175e-25
-1.77984e-23
-1.41337e-22
-3.38905e-22
3.04059e-21
3.43746e-20
1.12388e-19
-6.50486e-19
-8.40917e-18
-2.99173e-17
4.17794e-17
8.69069e-16
3.87028e-15
1.09011e-15
-7.93876e-14
-4.37046e-13
-1.10818e-12
-1.35436e-12
-9.04429e-13
-5.27427e-13
-3.09231e-13
-1.03783e-13
3.17478e-15
-1.57519e-14
-5.65727e-14
-9.71472e-15
2.34255e-14
1.10131e-14
-3.98987e-15
-5.42772e-15
1.6127e-15
7.99099e-16
-6.28229e-16
-4.51368e-15
-1.33462e-14
1.26731e-15
1.31835e-14
-1.08001e-13
-1.96251e-13
-2.46095e-13
-3.39658e-13
-4.55215e-13
-5.93374e-13
-1.02103e-12
-2.22836e-12
-3.1543e-12
-2.96843e-12
-2.13694e-12
-1.24839e-12
-1.49866e-12
-4.14072e-12
-6.66578e-12
-5.17098e-12
-9.30515e-13
2.22665e-12
-2.09741e-17
-1.93912e-17
-2.76775e-18
7.58075e-18
4.09233e-18
1.2008e-18
3.25924e-19
7.63965e-20
1.07093e-20
-1.11828e-21
-1.21612e-21
-3.27004e-22
1.54043e-24
3.13664e-23
9.26895e-24
-6.71553e-25
-1.36502e-24
-3.6987e-25
3.87034e-26
4.10078e-26
9.35849e-27
2.95786e-26
1.07783e-26
-1.17765e-25
6.44816e-25
-2.08778e-24
-5.91307e-23
-2.02329e-22
1.51869e-21
1.98122e-20
7.22135e-20
-3.69572e-19
-5.37269e-18
-2.12617e-17
1.11633e-17
5.00977e-16
2.57103e-15
3.10375e-15
-3.91224e-14
-2.80718e-13
-8.94414e-13
-1.42493e-12
-1.21408e-12
-7.95705e-13
-5.27126e-13
-2.36915e-13
-3.4281e-14
-5.47285e-15
-6.59234e-14
-4.16777e-14
9.84532e-15
2.00309e-14
1.08975e-14
-6.60494e-15
-6.76853e-15
-6.40108e-15
-1.0683e-14
-1.31738e-14
-4.60555e-15
7.19934e-14
-6.25946e-14
-3.55019e-13
-4.71031e-13
-5.82033e-13
-6.3004e-13
-7.64681e-13
-9.0577e-13
-1.60663e-12
-2.74748e-12
-3.20837e-12
-2.82299e-12
-2.12203e-12
-1.59156e-12
-2.31391e-12
-4.93207e-12
-6.64581e-12
-4.51301e-12
-4.02012e-13
2.74148e-12
-2.23684e-17
-2.02242e-17
-3.49855e-18
7.17309e-18
4.30146e-18
1.50926e-18
4.71826e-19
1.25731e-19
2.27446e-20
1.34124e-22
-1.77175e-21
-6.63657e-22
-6.54546e-23
4.45314e-23
2.17561e-23
2.31641e-24
-1.74788e-24
-8.41623e-25
-6.58919e-26
4.27613e-26
5.04935e-27
2.40768e-26
-7.75347e-26
-5.40824e-25
1.05553e-24
1.14072e-23
1.26477e-23
-7.07701e-23
5.90596e-22
1.02759e-20
4.20852e-20
-2.134e-19
-3.34434e-18
-1.42705e-17
-1.33729e-18
2.74325e-16
1.59802e-15
3.11727e-15
-1.69613e-14
-1.6518e-13
-6.48689e-13
-1.35539e-12
-1.45476e-12
-1.10806e-12
-8.05934e-13
-4.36576e-13
-1.12579e-13
-1.32943e-15
-6.78894e-14
-7.51e-14
-1.84914e-14
7.16921e-15
2.02991e-14
8.78085e-15
-8.71635e-15
-7.69874e-15
9.6196e-16
2.11377e-14
9.10331e-14
2.72168e-14
-4.05351e-13
-6.36597e-13
-7.5702e-13
-8.78662e-13
-9.75549e-13
-1.12597e-12
-1.4111e-12
-2.28354e-12
-3.13086e-12
-3.20511e-12
-2.78154e-12
-2.27046e-12
-2.04325e-12
-3.09068e-12
-5.47531e-12
-6.38302e-12
-3.79846e-12
1.92653e-14
3.57725e-12
-2.33036e-17
-2.0784e-17
-4.2403e-18
6.57493e-18
4.40835e-18
1.806e-18
6.40866e-19
1.92526e-19
4.20888e-20
3.21424e-21
-2.27861e-21
-1.19466e-21
-2.2352e-22
4.41329e-23
4.10934e-23
1.01925e-23
-9.88986e-25
-1.40688e-24
-2.61585e-25
6.52844e-26
3.0457e-27
-1.15493e-26
-1.8884e-25
-1.19169e-24
9.6963e-26
2.21472e-23
8.63527e-23
9.23946e-23
1.07889e-23
3.6175e-21
1.9887e-20
-1.2488e-19
-2.00057e-18
-8.98498e-18
-4.69228e-18
1.42993e-16
9.33914e-16
2.38128e-15
-6.26419e-15
-8.98909e-14
-4.22526e-13
-1.16357e-12
-1.56739e-12
-1.40284e-12
-1.12591e-12
-7.18272e-13
-2.5168e-13
-9.54224e-15
-6.16533e-14
-1.09932e-13
-5.24006e-14
-2.3005e-14
4.97199e-15
1.70329e-14
4.3212e-15
8.92e-15
2.67862e-14
4.38663e-14
-9.61728e-15
-3.83964e-13
-5.50946e-13
-5.17495e-13
-6.92874e-13
-9.11693e-13
-1.16754e-12
-1.44819e-12
-1.94578e-12
-2.80856e-12
-3.3173e-12
-3.15466e-12
-2.81028e-12
-2.48221e-12
-2.51233e-12
-3.72289e-12
-5.70636e-12
-5.87581e-12
-3.04277e-12
3.72022e-13
4.42364e-12
-2.38469e-17
-2.11685e-17
-4.95075e-18
5.74643e-18
4.35522e-18
2.04809e-18
8.15535e-19
2.73648e-19
6.94574e-20
8.81771e-21
-2.55499e-21
-1.96298e-21
-5.35434e-22
6.05122e-25
6.17151e-23
2.48008e-23
2.56328e-24
-1.68631e-24
-6.49338e-25
8.81302e-26
8.64113e-26
-3.15678e-27
-2.50753e-25
-1.89542e-24
-2.78105e-24
2.65292e-23
1.63424e-22
3.33627e-22
-2.53847e-22
-1.54239e-21
2.34668e-21
-7.5209e-20
-1.13057e-18
-5.26812e-18
-4.37666e-18
7.02927e-17
5.10763e-16
1.55788e-15
-1.76161e-15
-4.59392e-14
-2.49765e-13
-8.91108e-13
-1.5141e-12
-1.60673e-12
-1.44631e-12
-1.0799e-12
-4.81606e-13
-4.4815e-14
-4.4499e-14
-1.53144e-13
-9.84855e-14
-6.23401e-14
-2.7829e-14
-2.58697e-15
2.72741e-15
1.25266e-14
1.63159e-14
-1.62083e-14
-1.78504e-13
-2.4976e-13
-1.56494e-13
-1.39402e-13
-2.81514e-13
-5.51621e-13
-9.38534e-13
-1.45242e-12
-2.21731e-12
-3.01954e-12
-3.24559e-12
-2.99462e-12
-2.78608e-12
-2.62295e-12
-2.85798e-12
-4.08682e-12
-5.58575e-12
-5.16042e-12
-2.28346e-12
6.81774e-13
4.90061e-12
-2.40774e-17
-2.13837e-17
-5.52317e-18
4.64839e-18
4.08299e-18
2.18309e-18
9.67104e-19
3.59066e-19
1.02986e-19
1.70795e-20
-2.4629e-21
-3.01035e-21
-1.07551e-21
-1.28218e-22
6.90311e-23
4.37454e-23
9.79589e-24
-1.00565e-24
-1.16475e-24
-5.6796e-26
1.7742e-25
1.3579e-25
-6.24268e-26
-2.06568e-24
-7.10246e-24
1.93233e-23
2.28296e-22
6.80112e-22
-7.65247e-23
-5.94397e-21
-1.46026e-20
-5.45397e-20
-6.00797e-19
-2.88838e-18
-3.18049e-18
3.21445e-17
2.61299e-16
9.17348e-16
-1.71652e-16
-2.24279e-14
-1.35858e-13
-6.08622e-13
-1.28672e-12
-1.66778e-12
-1.67678e-12
-1.45986e-12
-8.21261e-13
-1.33708e-13
-1.21877e-14
-2.02785e-13
-1.7529e-13
-1.30811e-13
-7.59976e-14
-3.80183e-14
-3.24956e-14
-2.8301e-14
-5.27553e-14
-1.16975e-13
-1.78334e-13
-1.8918e-13
-2.39706e-13
-2.62982e-13
-2.42009e-13
-3.59554e-13
-7.00561e-13
-1.32964e-12
-2.22495e-12
-2.84643e-12
-2.82883e-12
-2.62559e-12
-2.55099e-12
-2.5325e-12
-2.92722e-12
-4.08115e-12
-5.11692e-12
-4.29602e-12
-1.56524e-12
9.6014e-13
4.75541e-12
-2.40749e-17
-2.12453e-17
-6.03428e-18
3.25951e-18
3.54127e-18
2.1564e-18
1.05785e-18
4.30554e-19
1.36459e-19
2.6616e-20
-2.20066e-21
-4.42284e-21
-1.9236e-21
-3.85273e-22
4.75183e-23
6.21258e-23
1.90208e-23
1.61829e-25
-1.68297e-24
-2.87457e-25
1.13364e-25
1.40324e-25
2.02877e-25
-1.42472e-24
-1.10359e-23
-2.06316e-24
2.48526e-22
1.09494e-21
7.41386e-22
-9.57876e-21
-3.45275e-20
-6.09415e-20
-3.06689e-19
-1.48712e-18
-2.02185e-18
1.36886e-17
1.26394e-16
5.01844e-16
2.41548e-16
-1.05064e-14
-6.87147e-14
-3.762e-13
-9.55931e-13
-1.53821e-12
-1.73606e-12
-1.73285e-12
-1.22068e-12
-3.03362e-13
4.17315e-14
-2.33721e-13
-2.74753e-13
-2.51887e-13
-1.73991e-13
-9.20628e-14
-7.61244e-14
-8.73421e-14
-1.18085e-13
-1.69834e-13
-2.46687e-13
-4.15511e-13
-5.10335e-13
-5.61898e-13
-5.93394e-13
-6.38275e-13
-8.38605e-13
-1.36916e-12
-2.01577e-12
-2.26712e-12
-2.1074e-12
-1.9881e-12
-2.01082e-12
-2.15161e-12
-2.65606e-12
-3.69065e-12
-4.35805e-12
-3.36298e-12
-9.34009e-13
1.18651e-12
4.17424e-12
-2.39074e-17
-2.06102e-17
-6.79489e-18
1.56039e-18
2.68983e-18
1.91641e-18
1.04482e-18
4.62155e-19
1.57926e-19
3.31731e-20
-2.96233e-21
-6.52789e-21
-3.20232e-21
-8.13138e-22
-4.94737e-24
8.63332e-23
3.14972e-23
-2.92796e-25
-3.7948e-24
-6.26765e-25
3.47737e-25
-2.88215e-26
3.10284e-26
-6.81084e-25
-1.23175e-23
-3.15972e-23
1.92919e-22
1.44481e-21
2.2975e-21
-1.15575e-20
-5.90022e-20
-9.5992e-20
-1.67934e-19
-7.30981e-19
-1.17611e-18
5.51056e-18
5.87074e-17
2.59962e-16
2.58142e-16
-4.73845e-15
-3.25563e-14
-2.13235e-13
-6.30633e-13
-1.23724e-12
-1.58837e-12
-1.79003e-12
-1.56784e-12
-5.76486e-13
1.14764e-13
-2.07654e-13
-3.43495e-13
-3.93495e-13
-3.40857e-13
-2.12925e-13
-1.23704e-13
-1.34911e-13
-1.7869e-13
-2.41634e-13
-3.78126e-13
-4.72504e-13
-4.93701e-13
-5.43719e-13
-7.35959e-13
-9.7044e-13
-1.24019e-12
-1.63534e-12
-1.84709e-12
-1.6545e-12
-1.31973e-12
-1.20665e-12
-1.29573e-12
-1.52589e-12
-2.08239e-12
-2.99739e-12
-3.43957e-12
-2.47119e-12
-4.2746e-13
1.35336e-12
3.55667e-12
-2.36362e-17
-1.9804e-17
-7.894e-18
-4.47153e-19
1.50032e-18
1.41654e-18
8.8269e-19
4.21804e-19
1.49302e-19
2.83545e-20
-7.95883e-21
-1.03873e-20
-5.24897e-21
-1.50617e-21
-8.38587e-23
1.48388e-22
6.83409e-23
2.24574e-24
-1.06239e-23
-3.70668e-24
8.38248e-25
8.3282e-25
2.31679e-25
-4.0277e-26
-9.66368e-24
-5.30401e-23
6.74948e-23
1.53454e-21
4.3294e-21
-1.04191e-20
-8.61642e-20
-1.63023e-19
-1.32256e-19
-3.4265e-19
-6.39185e-19
2.12905e-18
2.65267e-17
1.28402e-16
1.78948e-16
-2.06173e-15
-1.4647e-14
-1.11932e-13
-3.73925e-13
-8.80052e-13
-1.28143e-12
-1.60917e-12
-1.72495e-12
-9.45657e-13
1.7435e-13
-9.98121e-14
-3.1622e-13
-4.67481e-13
-5.17175e-13
-4.22171e-13
-2.63354e-13
-2.37499e-13
-2.9157e-13
-4.1613e-13
-6.00132e-13
-6.72078e-13
-6.04198e-13
-5.84414e-13
-7.29815e-13
-1.05799e-12
-1.49617e-12
-1.84008e-12
-1.73103e-12
-1.22705e-12
-7.71011e-13
-5.98991e-13
-6.37952e-13
-8.49384e-13
-1.39335e-12
-2.18579e-12
-2.52651e-12
-1.71832e-12
-4.90081e-14
1.49748e-12
2.91233e-12
-2.32567e-17
-1.91475e-17
-9.33379e-18
-2.72487e-18
-3.63094e-20
6.17834e-19
5.25632e-19
2.7304e-19
8.68793e-20
-1.0533e-21
-2.34914e-20
-1.8593e-20
-9.01212e-21
-2.77227e-21
-2.44115e-22
2.87103e-22
1.80071e-22
3.59215e-23
-1.65989e-23
-1.39778e-23
-2.58881e-24
2.17036e-24
2.08832e-24
1.59908e-24
-4.36229e-24
-5.1718e-23
-6.37612e-23
1.2472e-21
6.07865e-21
-5.17379e-21
-1.09964e-19
-2.62577e-19
-1.79647e-19
-1.48235e-19
-3.18979e-19
7.94935e-19
1.15842e-17
6.02472e-17
1.02417e-16
-8.64501e-16
-6.32854e-15
-5.48547e-14
-2.01442e-13
-5.6443e-13
-9.23446e-13
-1.27313e-12
-1.61819e-12
-1.32654e-12
1.28316e-13
7.1462e-14
-1.67311e-13
-3.91924e-13
-5.90992e-13
-6.20868e-13
-5.20891e-13
-4.51843e-13
-5.05052e-13
-6.85878e-13
-8.53904e-13
-8.53178e-13
-7.30704e-13
-6.88148e-13
-8.05343e-13
-1.15915e-12
-1.63818e-12
-1.93017e-12
-1.71062e-12
-1.14219e-12
-6.41798e-13
-3.83486e-13
-2.94721e-13
-4.07549e-13
-8.37438e-13
-1.48044e-12
-1.78109e-12
-1.15762e-12
2.4257e-13
1.65324e-12
2.04939e-12
-2.27686e-17
-1.88557e-17
-1.10485e-17
-5.19552e-18
-1.89872e-18
-5.04149e-19
-6.91691e-20
-2.3125e-20
-5.76866e-20
-7.30109e-20
-5.9641e-20
-3.6123e-20
-1.66547e-20
-5.44339e-21
-7.51684e-22
4.68093e-22
4.13945e-22
1.53885e-22
8.50929e-24
-2.48597e-23
-1.50829e-23
-3.01975e-24
8.84309e-25
1.19227e-24
-2.31859e-24
-3.40533e-23
-1.21372e-22
7.03552e-22
6.60847e-21
3.34721e-21
-1.21802e-19
-3.87088e-19
-3.1366e-19
-6.48209e-20
-1.33894e-19
2.96485e-19
4.84958e-18
2.6566e-17
5.09501e-17
-3.50602e-16
-2.62524e-15
-2.52315e-14
-9.94683e-14
-3.31909e-13
-6.00592e-13
-8.97046e-13
-1.31175e-12
-1.54725e-12
-1.50284e-13
2.07582e-13
5.379e-14
-1.6974e-13
-4.86685e-13
-6.72446e-13
-7.44181e-13
-7.09327e-13
-7.87111e-13
-9.96962e-13
-1.09583e-12
-9.58677e-13
-7.74688e-13
-7.66253e-13
-9.35469e-13
-1.28259e-12
-1.6619e-12
-1.79864e-12
-1.53774e-12
-1.07254e-12
-6.96161e-13
-4.56272e-13
-3.11836e-13
-3.1405e-13
-5.72494e-13
-1.04785e-12
-1.30487e-12
-7.66754e-13
5.24912e-13
1.82883e-12
1.26489e-12
-2.22768e-17
-1.89512e-17
-1.29196e-17
-7.75035e-18
-4.02738e-18
-1.94821e-18
-9.33727e-19
-5.04444e-19
-3.1562e-19
-2.09419e-19
-1.30257e-19
-7.08673e-20
-3.2174e-20
-1.13081e-20
-2.32118e-21
4.50689e-22
7.30963e-22
3.92644e-22
1.12534e-22
-4.67316e-24
-2.55695e-23
-1.80821e-23
-1.15039e-23
-9.41343e-24
-1.07586e-23
-2.2737e-23
-9.08083e-23
2.22343e-22
5.53062e-21
1.21138e-20
-1.14612e-19
-5.17614e-19
-5.47322e-19
-7.73707e-20
-2.35123e-20
1.20278e-19
1.93776e-18
1.09224e-17
2.25344e-17
-1.37905e-16
-1.04452e-15
-1.09389e-14
-4.46574e-14
-1.80029e-13
-3.55523e-13
-5.67424e-13
-9.30799e-13
-1.49914e-12
-6.34156e-13
1.21483e-13
2.07994e-13
6.44099e-14
-2.59406e-13
-5.5298e-13
-7.7811e-13
-8.54895e-13
-9.85038e-13
-1.16727e-12
-1.1829e-12
-1.01332e-12
-8.18864e-13
-8.11127e-13
-1.01152e-12
-1.32299e-12
-1.51912e-12
-1.44242e-12
-1.14352e-12
-8.30405e-13
-6.50776e-13
-5.5073e-13
-4.60329e-13
-4.30669e-13
-5.71242e-13
-8.79617e-13
-1.03966e-12
-4.36857e-13
8.79353e-13
2.0061e-12
6.63665e-13
-2.1859e-17
-1.93387e-17
-1.48006e-17
-1.02621e-17
-6.32476e-18
-3.67661e-18
-2.07739e-18
-1.19996e-18
-7.17137e-19
-4.34118e-19
-2.51981e-19
-1.33445e-19
-6.17151e-20
-2.35251e-20
-6.39825e-21
-3.6109e-22
9.15445e-22
7.02793e-22
3.11807e-22
8.31294e-23
5.85397e-25
-1.82673e-23
-1.97055e-23
-1.86435e-23
-1.69736e-23
-1.41227e-23
-2.08164e-23
3.53493e-23
3.42986e-21
1.73999e-20
-8.73051e-20
-6.24597e-19
-8.87332e-19
-2.31532e-19
3.31491e-20
7.20899e-20
7.33264e-19
4.14556e-18
8.98112e-18
-5.20805e-17
-3.96863e-16
-4.49412e-15
-1.78231e-14
-9.00501e-14
-1.93422e-13
-3.24195e-13
-5.80817e-13
-1.23815e-12
-1.04016e-12
-2.92912e-13
9.05944e-14
9.54424e-14
-1.21627e-13
-4.21377e-13
-6.62558e-13
-8.59771e-13
-1.05539e-12
-1.22283e-12
-1.21487e-12
-1.02143e-12
-8.30456e-13
-8.36262e-13
-1.02616e-12
-1.27149e-12
-1.32384e-12
-1.08356e-12
-7.04539e-13
-4.46545e-13
-3.65274e-13
-3.87263e-13
-4.33398e-13
-4.8559e-13
-6.12588e-13
-8.0457e-13
-8.31604e-13
-2.42317e-14
1.34082e-12
2.12629e-12
2.0825e-12
-2.15227e-17
-1.98769e-17
-1.65445e-17
-1.26004e-17
-8.66372e-18
-5.60924e-18
-3.47446e-18
-2.1188e-18
-1.28403e-18
-7.68637e-19
-4.41804e-19
-2.35937e-19
-1.13178e-19
-4.67301e-20
-1.53668e-20
-3.04278e-21
5.27784e-22
9.13214e-22
5.40235e-22
2.22135e-22
7.96919e-23
3.22695e-23
1.93116e-23
1.80179e-23
2.26725e-23
3.49627e-23
6.44073e-23
7.93877e-23
1.39356e-21
1.72145e-20
-4.67906e-20
-6.73395e-19
-1.31462e-18
-6.32522e-19
-5.65826e-20
3.44185e-20
2.73677e-19
1.43165e-18
3.24663e-18
-1.8444e-17
-1.45035e-16
-1.76105e-15
-6.14225e-15
-4.13775e-14
-9.72334e-14
-1.68136e-13
-3.18477e-13
-8.79454e-13
-1.17259e-12
-7.91585e-13
-3.57897e-13
-2.16943e-13
-3.01235e-13
-5.14796e-13
-7.18172e-13
-9.1176e-13
-1.11819e-12
-1.25262e-12
-1.18989e-12
-9.74084e-13
-8.12071e-13
-8.33646e-13
-9.93243e-13
-1.13239e-12
-1.03618e-12
-6.57826e-13
-2.09507e-13
8.17384e-14
1.595e-13
8.06287e-14
-7.2341e-14
-2.48951e-13
-4.36419e-13
-5.8013e-13
-4.76996e-13
6.01597e-13
1.85104e-12
2.21027e-12
2.67609e-12
-2.12367e-17
-2.04234e-17
-1.80255e-17
-1.46479e-17
-1.09015e-17
-7.62611e-18
-5.05606e-18
-3.23786e-18
-2.01896e-18
-1.22493e-18
-7.12529e-19
-3.8911e-19
-1.94682e-19
-8.6417e-20
-3.24427e-20
-9.18867e-21
-1.0999e-21
7.62611e-22
6.79862e-22
3.31779e-22
1.50628e-22
9.63732e-23
9.2879e-23
9.96612e-23
1.10472e-22
1.26805e-22
1.47075e-22
1.01637e-22
8.73849e-23
1.25612e-20
-6.12208e-21
-6.35742e-19
-1.75785e-18
-1.39743e-18
-5.66698e-19
-2.53868e-19
4.93404e-20
4.54615e-19
1.05696e-18
-5.77511e-18
-5.15364e-17
-6.65285e-16
-1.68146e-15
-1.7328e-14
-4.5376e-14
-7.95083e-14
-1.53215e-13
-5.3241e-13
-1.03977e-12
-1.07935e-12
-8.53335e-13
-7.13441e-13
-7.24642e-13
-8.36963e-13
-9.67965e-13
-1.09852e-12
-1.22327e-12
-1.26742e-12
-1.13176e-12
-9.06806e-13
-7.67246e-13
-7.84133e-13
-8.88236e-13
-8.82445e-13
-6.16542e-13
-1.21084e-13
3.89339e-13
7.26612e-13
8.46073e-13
7.81859e-13
6.01888e-13
3.52825e-13
1.10242e-13
-2.14741e-14
1.67625e-13
1.4726e-12
2.20989e-12
1.99769e-12
2.36881e-12
-2.09587e-17
-2.08591e-17
-1.91536e-17
-1.63119e-17
-1.28956e-17
-9.57858e-18
-6.7103e-18
-4.49298e-18
-2.89416e-18
-1.79596e-18
-1.06608e-18
-5.97868e-19
-3.11559e-19
-1.47194e-19
-6.09219e-20
-2.07179e-20
-4.83974e-21
-4.9527e-23
6.61643e-22
3.7071e-22
1.16499e-22
3.85379e-23
5.78276e-23
8.40256e-23
1.06798e-22
1.22177e-22
9.68498e-23
-9.92017e-23
-6.16861e-22
6.5353e-21
2.10886e-20
-5.07308e-19
-2.06853e-18
-2.47913e-18
-1.75036e-18
-1.23965e-18
-5.6538e-19
1.41845e-19
2.57089e-19
-1.25741e-18
-1.79576e-17
-2.48279e-16
-2.30278e-16
-6.58499e-15
-1.97478e-14
-3.43785e-14
-6.54975e-14
-2.66168e-13
-7.58791e-13
-1.07141e-12
-1.11659e-12
-1.09184e-12
-1.09873e-12
-1.14457e-12
-1.19701e-12
-1.24119e-12
-1.25686e-12
-1.18306e-12
-9.87137e-13
-7.84992e-13
-6.75605e-13
-6.86868e-13
-7.12129e-13
-5.51028e-13
-1.21984e-13
4.80749e-13
1.05023e-12
1.41995e-12
1.60025e-12
1.60938e-12
1.47666e-12
1.25317e-12
1.01309e-12
8.67115e-13
1.09047e-12
2.46848e-12
2.07366e-12
1.07918e-12
1.8198e-12
-2.06529e-17
-2.11006e-17
-1.98806e-17
-1.7531e-17
-1.45195e-17
-1.13081e-17
-8.29282e-18
-5.77866e-18
-3.84472e-18
-2.44717e-18
-1.48615e-18
-8.55588e-19
-4.62123e-19
-2.2987e-19
-1.02538e-19
-3.9215e-20
-1.16548e-20
-1.90618e-21
4.50416e-22
4.22957e-22
2.72425e-23
-1.6425e-22
-1.95683e-22
-1.86219e-22
-1.68371e-22
-1.77771e-22
-2.70012e-22
-5.82214e-22
-1.10836e-21
2.16413e-21
2.83249e-20
-3.2326e-19
-2.0382e-18
-3.41953e-18
-3.2988e-18
-2.98595e-18
-2.11217e-18
-1.45143e-19
-3.01481e-20
1.79489e-19
-6.1418e-18
-9.6839e-17
1.17457e-16
-2.26074e-15
-8.02001e-15
-1.34306e-14
-2.67993e-14
-1.01221e-13
-4.56278e-13
-8.49528e-13
-1.08003e-12
-1.18186e-12
-1.22528e-12
-1.24584e-12
-1.2454e-12
-1.22026e-12
-1.15035e-12
-1.00641e-12
-8.02039e-13
-6.31418e-13
-5.59509e-13
-5.49447e-13
-4.63106e-13
-1.69978e-13
3.98515e-13
1.07835e-12
1.67874e-12
2.09734e-12
2.35354e-12
2.45524e-12
2.41297e-12
2.25322e-12
2.06611e-12
1.8837e-12
2.16547e-12
3.2924e-12
1.06516e-12
-7.53152e-13
1.24168e-12
-2.02965e-17
-2.1105e-17
-2.01986e-17
-1.82758e-17
-1.56764e-17
-1.26691e-17
-9.64724e-18
-6.95978e-18
-4.7713e-18
-3.11384e-18
-1.93357e-18
-1.13943e-18
-6.33577e-19
-3.28143e-19
-1.55107e-19
-6.46448e-20
-2.22024e-20
-5.35688e-21
-1.78733e-22
6.07019e-22
2.28753e-22
-1.47629e-22
-4.11716e-22
-5.37515e-22
-6.19976e-22
-7.3076e-22
-8.94748e-22
-1.1688e-21
-1.28138e-21
7.53544e-22
2.11617e-20
-1.51845e-19
-1.53739e-18
-3.41724e-18
-4.03123e-18
-4.17571e-18
-3.71531e-18
-1.19746e-18
-1.8401e-19
4.94248e-19
-1.74786e-18
-4.29602e-17
1.36779e-16
-6.84069e-16
-3.07269e-15
-4.33656e-15
-1.28554e-14
-2.1597e-14
-2.15976e-13
-5.48053e-13
-8.36364e-13
-1.00903e-12
-1.0906e-12
-1.1121e-12
-1.09409e-12
-1.02743e-12
-9.14429e-13
-7.5721e-13
-5.90397e-13
-4.61755e-13
-4.14107e-13
-3.48156e-13
-1.56651e-13
2.46549e-13
8.95569e-13
1.60288e-12
2.21546e-12
2.67217e-12
2.98173e-12
3.15591e-12
3.16135e-12
3.04796e-12
2.92888e-12
2.71454e-12
3.194e-12
3.4504e-12
-8.98605e-13
-3.42216e-12
5.34767e-13
-1.98796e-17
-2.08671e-17
-2.01335e-17
-1.85477e-17
-1.63107e-17
-1.35519e-17
-1.06326e-17
-7.89517e-18
-5.55544e-18
-3.70821e-18
-2.3483e-18
-1.40991e-18
-8.00541e-19
-4.26541e-19
-2.10329e-19
-9.35956e-20
-3.58385e-20
-1.07943e-20
-1.72104e-21
7.37323e-22
8.86574e-22
4.10453e-22
-1.41116e-22
-5.02636e-22
-8.15602e-22
-1.08846e-21
-1.27055e-21
-1.28138e-21
-6.40312e-22
1.95545e-21
1.30052e-20
-4.81763e-20
-8.20545e-19
-2.33267e-18
-3.02039e-18
-3.06255e-18
-3.7178e-18
-3.39471e-18
-5.46442e-19
4.1613e-19
1.50576e-19
-2.30264e-17
9.1706e-17
-1.6579e-16
-1.20534e-15
-5.51826e-16
-8.25414e-15
3.73355e-15
-6.78711e-14
-2.77044e-13
-5.22904e-13
-7.02129e-13
-7.97758e-13
-8.27732e-13
-8.12656e-13
-7.48592e-13
-6.37305e-13
-5.06628e-13
-3.80931e-13
-2.99016e-13
-2.46815e-13
-1.21192e-13
1.54273e-13
6.5258e-13
1.3282e-12
2.03113e-12
2.61789e-12
3.07053e-12
3.38889e-12
3.55552e-12
3.45032e-12
3.24135e-12
3.16007e-12
3.02228e-12
3.87567e-12
2.3043e-12
-3.17806e-12
-6.31889e-12
-1.86455e-13
-1.94012e-17
-2.04084e-17
-1.97338e-17
-1.8378e-17
-1.64162e-17
-1.39028e-17
-1.11525e-17
-8.46907e-18
-6.08604e-18
-4.13827e-18
-2.66127e-18
-1.61784e-18
-9.28793e-19
-5.01765e-19
-2.53278e-19
-1.17738e-19
-4.89571e-20
-1.73844e-20
-4.61222e-21
-2.15953e-22
7.70157e-22
5.14937e-22
1.84583e-22
-1.71444e-22
-4.94935e-22
-6.61838e-22
-6.15312e-22
-1.19834e-22
1.40014e-21
4.97446e-21
1.10255e-20
-3.67084e-21
-3.31627e-19
-1.15045e-18
-1.44956e-18
-8.36052e-19
-2.16673e-18
-5.26659e-18
-1.63461e-18
1.26316e-19
1.07335e-18
-1.42043e-17
4.9652e-17
-3.29702e-18
-6.00751e-16
8.81297e-16
-5.66267e-15
3.99919e-15
-1.34704e-15
-9.35329e-14
-2.50209e-13
-3.9057e-13
-4.75698e-13
-5.08856e-13
-5.03805e-13
-4.59286e-13
-3.74436e-13
-2.78357e-13
-2.04149e-13
-1.46678e-13
-6.36818e-14
1.20328e-13
4.76248e-13
1.02294e-12
1.67534e-12
2.3036e-12
2.83376e-12
3.24465e-12
3.52278e-12
3.52825e-12
2.98916e-12
2.43532e-12
2.34575e-12
2.54244e-12
3.6143e-12
-6.70748e-13
-4.34218e-12
-8.48836e-12
-4.36207e-13
-1.88669e-17
-1.97665e-17
-1.90612e-17
-1.78252e-17
-1.60391e-17
-1.37357e-17
-1.11792e-17
-8.62291e-18
-6.29182e-18
-4.33557e-18
-2.81544e-18
-1.71933e-18
-9.85294e-19
-5.28515e-19
-2.64495e-19
-1.22948e-19
-5.26898e-20
-2.0747e-20
-7.48439e-21
-2.85546e-21
-1.61782e-21
-1.25955e-21
-6.17933e-22
-1.37205e-22
4.06728e-22
1.06101e-21
1.77625e-21
2.96277e-21
5.23488e-21
9.4137e-21
1.30256e-20
1.33757e-20
-9.7146e-20
-4.13381e-19
-5.4892e-19
-7.89917e-20
-9.66494e-19
-4.96588e-18
-3.78445e-18
-6.07541e-19
1.51383e-18
-8.75168e-18
2.0781e-17
5.24521e-17
-4.29169e-16
1.16805e-15
-3.0377e-15
-1.48892e-15
1.35654e-14
-3.62614e-15
-7.30395e-14
-1.56237e-13
-2.16322e-13
-2.44279e-13
-2.45677e-13
-2.25129e-13
-1.73594e-13
-1.13211e-13
-7.35574e-14
-1.43662e-14
1.1102e-13
3.53891e-13
7.70561e-13
1.31736e-12
1.91045e-12
2.43416e-12
2.8761e-12
3.21983e-12
3.39327e-12
3.02155e-12
1.54382e-12
3.49002e-13
1.69615e-13
8.46104e-13
1.18717e-12
-4.92946e-12
-3.10298e-12
-6.63222e-12
-4.45776e-13
-1.82836e-17
-1.8984e-17
-1.81802e-17
-1.69694e-17
-1.52728e-17
-1.31324e-17
-1.07652e-17
-8.37781e-18
-6.16951e-18
-4.28359e-18
-2.79047e-18
-1.69522e-18
-9.5282e-19
-4.90275e-19
-2.27515e-19
-9.36193e-20
-3.40962e-20
-1.12881e-20
-3.75182e-21
-2.41175e-21
-2.62822e-21
-1.90791e-21
-4.05064e-22
1.64327e-21
3.69791e-21
5.31027e-21
6.59999e-21
8.25043e-21
1.08079e-20
1.4717e-20
1.62132e-20
1.81556e-20
-1.05982e-20
-1.12854e-19
-1.11718e-19
9.1058e-20
-6.5408e-19
-3.25779e-18
-5.74565e-18
-2.17528e-18
1.31827e-18
-4.49904e-18
3.21345e-18
7.09738e-17
-3.39214e-16
8.74413e-16
-7.43047e-16
-4.2384e-15
7.23155e-15
1.96817e-14
7.28528e-15
-2.48523e-14
-5.69571e-14
-6.99149e-14
-9.4527e-14
-9.57061e-14
-6.23928e-14
-1.96546e-14
2.67903e-14
1.09596e-13
2.71184e-13
5.61492e-13
9.92855e-13
1.5102e-12
2.00613e-12
2.42818e-12
2.76969e-12
3.01773e-12
3.04307e-12
2.02805e-12
-9.20324e-13
-2.87245e-12
-3.43067e-12
-2.92242e-12
-4.24805e-12
-6.63341e-12
-2.59633e-13
-3.257e-12
-4.14789e-13
-1.76446e-17
-1.80902e-17
-1.71466e-17
-1.5901e-17
-1.42418e-17
-1.22277e-17
-1.00367e-17
-7.83761e-18
-5.79649e-18
-4.03665e-18
-2.62446e-18
-1.57321e-18
-8.51768e-19
-4.00791e-19
-1.49103e-19
-2.91712e-20
1.41605e-20
2.16468e-20
1.79692e-20
1.31648e-20
9.82248e-21
9.22366e-21
1.03055e-20
1.25185e-20
1.42707e-20
1.48773e-20
1.51746e-20
1.59607e-20
1.7376e-20
1.95765e-20
1.87213e-20
1.74581e-20
1.80248e-20
-3.36639e-20
2.02071e-20
2.80479e-19
-1.83874e-19
-2.22017e-18
-5.94908e-18
-4.40126e-18
-6.61432e-20
-1.62458e-18
-5.51781e-18
6.56201e-17
-2.22238e-16
4.09525e-16
5.1573e-16
-3.37947e-15
-6.61187e-16
1.27791e-14
2.27789e-14
2.11639e-14
1.15026e-14
9.10945e-15
-1.57621e-14
-2.4482e-14
-7.3391e-15
2.65778e-14
9.20946e-14
2.12454e-13
4.17977e-13
7.39397e-13
1.15367e-12
1.60315e-12
1.99775e-12
2.3074e-12
2.55862e-12
2.70026e-12
2.56118e-12
6.90094e-13
-3.82336e-12
-6.29069e-12
-7.76597e-12
-8.3722e-12
-8.6723e-12
-3.40745e-12
1.25283e-12
-7.60778e-13
-5.75941e-13
-1.692e-17
-1.70852e-17
-1.59978e-17
-1.47052e-17
-1.30767e-17
-1.11797e-17
-9.16294e-18
-7.1656e-18
-5.31877e-18
-3.72056e-18
-2.42529e-18
-1.44679e-18
-7.6279e-19
-3.26444e-19
-7.70715e-20
4.40378e-20
8.58858e-20
8.50493e-20
7.0917e-20
5.88429e-20
5.17287e-20
4.61737e-20
4.14721e-20
3.73884e-20
3.33815e-20
2.92812e-20
2.59018e-20
2.34692e-20
2.20499e-20
2.15782e-20
1.82967e-20
1.34637e-20
2.56523e-20
-8.38176e-21
-3.18668e-21
2.90664e-19
2.55654e-19
-1.88528e-18
-4.98358e-18
-6.26722e-18
-2.61796e-18
-8.55762e-19
-8.22438e-18
4.45428e-17
-1.00857e-16
7.0696e-17
7.01866e-16
-1.26713e-15
-3.2393e-15
2.13353e-15
1.22455e-14
2.00851e-14
2.14125e-14
2.56428e-14
2.6159e-15
-1.0314e-14
1.14926e-14
6.49703e-14
1.53936e-13
2.99516e-13
5.34022e-13
8.54843e-13
1.22741e-12
1.58872e-12
1.87499e-12
2.08806e-12
2.24342e-12
2.28746e-12
2.01852e-12
-6.31297e-13
-5.96239e-12
-8.98807e-12
-1.18462e-11
-1.25267e-11
-8.5095e-12
-9.85553e-13
1.37723e-12
3.84813e-14
-1.13717e-12
-1.60611e-17
-1.59482e-17
-1.47611e-17
-1.34613e-17
-1.19024e-17
-1.01498e-17
-8.33045e-18
-6.55708e-18
-4.92825e-18
-3.51645e-18
-2.35954e-18
-1.4659e-18
-8.17056e-19
-3.76245e-19
-9.44602e-20
7.07896e-20
1.52558e-19
1.75928e-19
1.68179e-19
1.5037e-19
1.32707e-19
1.13085e-19
9.21011e-20
7.23787e-20
5.56134e-20
4.2881e-20
3.35903e-20
2.60469e-20
1.92833e-20
1.30257e-20
4.79369e-21
1.97889e-22
1.60509e-20
8.97993e-21
-4.97175e-20
1.33291e-19
3.67031e-19
-1.48456e-18
-4.17107e-18
-6.91519e-18
-5.41065e-18
-2.21842e-18
-8.03364e-18
2.04489e-17
-2.23775e-17
-5.52138e-17
3.80345e-16
7.95545e-17
-2.01254e-15
-2.20902e-15
1.45175e-15
7.01339e-15
9.57357e-15
1.67995e-14
-7.88479e-15
-1.08545e-14
2.47095e-14
8.94611e-14
2.02133e-13
3.7635e-13
6.22746e-13
9.1874e-13
1.22343e-12
1.48939e-12
1.66919e-12
1.78975e-12
1.8493e-12
1.81015e-12
1.48677e-12
-1.33289e-12
-6.56216e-12
-1.03214e-11
-1.38547e-11
-1.34653e-11
-7.83973e-12
-1.66062e-12
4.34848e-13
-5.49898e-13
-2.1999e-12
-1.5017e-17
-1.46619e-17
-1.34744e-17
-1.22578e-17
-1.08524e-17
-9.31409e-18
-7.74877e-18
-6.24291e-18
-4.86569e-18
-3.66534e-18
-2.66253e-18
-1.85843e-18
-1.23647e-18
-7.68494e-19
-4.19827e-19
-1.6431e-19
1.43751e-20
1.23599e-19
1.69526e-19
1.70933e-19
1.4258e-19
1.05749e-19
6.91025e-20
3.53662e-20
5.65761e-21
-1.59647e-20
-3.10517e-20
-4.41812e-20
-5.90221e-20
-7.5423e-20
-9.19012e-20
-9.85378e-20
-8.48144e-20
-6.41624e-20
-1.41689e-19
-1.01642e-19
2.01371e-19
-1.18469e-18
-3.8283e-18
-6.57616e-18
-7.32885e-18
-4.81839e-18
-7.46114e-18
2.75144e-18
5.02853e-18
-5.0367e-17
8.35475e-17
3.35019e-16
-3.92358e-16
-1.6328e-15
-1.89707e-15
-4.14994e-16
-1.44246e-16
6.58315e-15
-1.69609e-14
-2.74163e-14
1.92347e-14
1.01788e-13
2.37356e-13
4.22841e-13
6.47868e-13
8.9279e-13
1.11945e-12
1.28981e-12
1.3757e-12
1.40789e-12
1.37958e-12
1.24287e-12
9.39277e-13
-1.12708e-12
-5.51959e-12
-9.53275e-12
-1.32684e-11
-1.33923e-11
-9.36728e-12
-4.37747e-12
-1.7973e-12
-2.38147e-12
-4.23893e-12
-1.3819e-17
-1.32799e-17
-1.22045e-17
-1.11659e-17
-1.00052e-17
-8.76435e-18
-7.5258e-18
-6.34838e-18
-5.27513e-18
-4.33263e-18
-3.52832e-18
-2.85771e-18
-2.30554e-18
-1.84893e-18
-1.46276e-18
-1.12719e-18
-8.34728e-19
-5.93904e-19
-4.31121e-19
-3.33877e-19
-2.9652e-19
-3.02074e-19
-3.23992e-19
-3.48232e-19
-3.69212e-19
-3.8205e-19
-3.88658e-19
-3.95329e-19
-4.06283e-19
-4.19518e-19
-4.28693e-19
-4.19744e-19
-3.87153e-19
-3.33733e-19
-3.68736e-19
-3.28544e-19
-1.78972e-19
-1.42865e-18
-3.80238e-18
-5.94845e-18
-7.8008e-18
-7.17778e-18
-7.64997e-18
-6.2968e-18
2.55815e-18
-1.80264e-17
-2.62018e-17
1.40891e-16
1.74135e-16
-2.71941e-16
-1.00183e-15
-1.07366e-15
-2.33216e-15
3.29473e-15
-1.96391e-14
-3.69109e-14
1.12317e-14
1.22766e-13
2.65947e-13
4.39124e-13
6.3216e-13
8.05193e-13
9.47165e-13
1.01045e-12
1.00873e-12
9.48633e-13
8.19114e-13
5.67132e-13
2.5652e-13
-7.6932e-13
-3.53669e-12
-7.54567e-12
-1.19935e-11
-1.36902e-11
-1.20198e-11
-8.55535e-12
-5.94657e-12
-5.45457e-12
-6.00671e-12
-1.2706e-17
-1.21934e-17
-1.13553e-17
-1.05908e-17
-9.76807e-18
-8.91225e-18
-8.08161e-18
-7.30813e-18
-6.6105e-18
-5.99626e-18
-5.46143e-18
-4.99463e-18
-4.57818e-18
-4.18943e-18
-3.80576e-18
-3.40997e-18
-2.99305e-18
-2.58254e-18
-2.2155e-18
-1.91823e-18
-1.68072e-18
-1.53891e-18
-1.47287e-18
-1.43746e-18
-1.40654e-18
-1.37046e-18
-1.33281e-18
-1.30337e-18
-1.28648e-18
-1.27887e-18
-1.26773e-18
-1.22997e-18
-1.16152e-18
-1.0953e-18
-1.05245e-18
-8.88836e-19
-1.24134e-18
-2.51772e-18
-4.32656e-18
-5.72661e-18
-7.25026e-18
-8.20178e-18
-8.6477e-18
-9.5857e-18
-6.83653e-18
-5.49588e-18
-2.56343e-17
-2.13656e-18
9.48652e-17
1.38534e-16
-7.22065e-17
1.16581e-17
-1.41272e-15
3.83623e-15
-1.91138e-14
-4.31477e-14
1.73825e-15
1.04505e-13
2.38442e-13
3.9323e-13
5.31253e-13
6.44159e-13
6.989e-13
6.82485e-13
5.86895e-13
4.14545e-13
1.41748e-13
-2.56112e-13
-6.75071e-13
-1.12555e-12
-2.4747e-12
-6.0207e-12
-1.0978e-11
-1.32709e-11
-1.34748e-11
-1.23327e-11
-1.08093e-11
-9.62527e-12
-8.88242e-12
-1.11991e-17
-1.10345e-17
-1.06979e-17
-1.0382e-17
-1.00813e-17
-9.77096e-18
-9.47493e-18
-9.20131e-18
-8.94662e-18
-8.70678e-18
-8.47326e-18
-8.23633e-18
-7.98582e-18
-7.71188e-18
-7.40686e-18
-7.06606e-18
-6.68554e-18
-6.27902e-18
-5.86618e-18
-5.49962e-18
-5.17583e-18
-4.94677e-18
-4.80995e-18
-4.71931e-18
-4.64385e-18
-4.57257e-18
-4.50938e-18
-4.46277e-18
-4.43615e-18
-4.42603e-18
-4.42053e-18
-4.39301e-18
-4.34887e-18
-4.31459e-18
-4.24819e-18
-4.24907e-18
-4.38348e-18
-4.49941e-18
-5.35543e-18
-6.79003e-18
-7.73388e-18
-8.48336e-18
-9.07594e-18
-9.78996e-18
-1.04227e-17
-8.88815e-18
-1.13985e-17
-1.85837e-17
-1.11108e-17
4.09533e-17
-4.95176e-18
2.93059e-16
-9.68612e-16
4.30102e-15
-1.85941e-14
-4.84239e-14
-1.32635e-14
7.55732e-14
1.90639e-13
3.21096e-13
4.29147e-13
5.01481e-13
5.12345e-13
4.35044e-13
2.51171e-13
-4.12049e-14
-4.54929e-13
-9.90742e-13
-1.60279e-12
-2.16855e-12
-2.89416e-12
-5.59121e-12
-1.01236e-11
-1.16178e-11
-1.21587e-11
-1.20346e-11
-1.1429e-11
-1.05825e-11
-9.25905e-12
9.80764e-14
4.28229e-12
9.60873e-13
8.79991e-13
8.2283e-13
4.91636e-12
7.3039e-13
6.24669e-13
5.40587e-13
4.85758e-12
8.13433e-13
7.41003e-13
4.1656e-12
5.8968e-13
5.58917e-13
5.05133e-13
2.7173e-12
3.80884e-13
3.68146e-13
1.67426e-12
2.02611e-13
1.61649e-13
1.43288e-13
7.7271e-13
7.18908e-14
4.54351e-14
-4.74956e-15
1.85797e-13
2.64581e-14
-3.6584e-14
-3.58671e-13
-1.28274e-13
-1.81919e-13
-2.19255e-13
-1.5327e-12
-2.39576e-13
-2.5304e-13
-1.44177e-12
-2.36793e-13
-2.49283e-13
-2.3285e-13
-1.29314e-12
-2.31253e-13
-2.66816e-13
-3.14729e-13
-2.38714e-12
-4.91354e-13
-5.90973e-13
-3.78909e-12
-6.51383e-13
-6.54234e-13
-5.96665e-13
-2.92585e-12
-3.47974e-13
-3.22873e-13
-3.01811e-13
-1.86469e-12
-3.65363e-13
-3.88845e-13
-2.68889e-12
-6.85752e-13
-1.01243e-12
-1.52233e-12
-8.91609e-12
-2.00384e-12
-1.64103e-12
-5.20017e-12
-4.72665e-13
-3.72923e-13
-3.58236e-13
-2.01778e-12
-2.74346e-13
-2.15251e-13
-1.65395e-13
4.97588e-14
3.73213e-13
4.5755e-13
1.84357e-12
5.55698e-13
3.72322e-13
1.96812e-13
3.06755e-13
5.43525e-13
5.86985e-12
2.16812e-13
5.74043e-13
9.75701e-13
1.20251e-12
1.33252e-12
1.43007e-12
1.54011e-12
1.95435e-12
1.0353e-11
1.68115e-12
1.84487e-12
1.93425e-12
2.1281e-12
2.10533e-12
2.12752e-12
2.16832e-12
2.2145e-12
9.36553e-12
2.14388e-12
2.03841e-12
1.94883e-12
1.84192e-12
1.74114e-12
1.96219e-12
2.13727e-12
2.1112e-12
2.16219e-12
-1.1187e-12
1.32963e-12
1.25974e-12
1.13097e-12
9.73197e-13
7.59231e-13
8.39829e-13
7.85871e-13
8.84925e-13
-2.12748e-11
-1.65852e-13
-1.31125e-14
1.79251e-13
2.94356e-13
3.54916e-13
4.01118e-13
4.12719e-13
5.89022e-13
-2.37743e-11
9.94626e-14
2.28728e-13
3.06088e-13
4.67238e-13
6.08321e-13
7.77696e-13
8.70774e-13
1.36566e-12
-1.51166e-11
1.47868e-12
1.88926e-12
2.28991e-12
2.62275e-12
3.09702e-12
3.28419e-12
3.55611e-12
3.7361e-12
4.19799e-12
2.08911e-11
4.22433e-12
4.40598e-12
4.7096e-12
5.02851e-12
5.39874e-12
5.68361e-12
5.56959e-12
5.79087e-12
5.08003e-11
6.22369e-12
6.60018e-12
2.83094e-11
8.92353e-11
1.06654e-10
2.75418e-11
1.00497e-10
2.82627e-11
9.15938e-11
1.07952e-10
2.82546e-11
9.0171e-11
1.03873e-10
2.60919e-11
9.13082e-11
2.46996e-11
7.78614e-11
8.7354e-11
2.14886e-11
7.43207e-11
1.99043e-11
6.21934e-11
6.90388e-11
1.72659e-11
5.34988e-11
6.06793e-11
1.49295e-11
5.27389e-11
1.41348e-11
4.46285e-11
5.18141e-11
1.27915e-11
4.6142e-11
1.25233e-11
4.02318e-11
4.75618e-11
1.22489e-11
3.90934e-11
4.61837e-11
1.15366e-11
4.14194e-11
1.11864e-11
3.57018e-11
4.08923e-11
9.99478e-12
3.54505e-11
9.56935e-12
3.02951e-11
3.49746e-11
8.94072e-12
2.82103e-11
3.27842e-11
8.15888e-12
2.91776e-11
7.92129e-12
2.53427e-11
2.97693e-11
7.42984e-12
2.64263e-11
7.11104e-12
2.25046e-11
2.53656e-11
6.30926e-12
1.96793e-11
2.14125e-11
5.07555e-12
1.73365e-11
4.46578e-12
1.3698e-11
1.48788e-11
3.50502e-12
1.18069e-11
3.02588e-12
9.39046e-12
9.89793e-12
2.34735e-12
7.3945e-12
8.35722e-12
1.99561e-12
7.20429e-12
1.90465e-12
6.67296e-12
-3.72174e-23
1.46565e-23
-2.60483e-24
1.20422e-25
4.90134e-27
4.14088e-27
2.20935e-27
9.50703e-28
3.53131e-28
2.39876e-28
4.13299e-28
7.47863e-28
1.05501e-27
1.19169e-27
1.14757e-27
9.9322e-28
7.79664e-28
5.2379e-28
2.71822e-28
9.94144e-29
2.40155e-29
9.33299e-28
1.69981e-26
1.15781e-26
-1.18769e-24
-1.12474e-23
-1.62758e-23
3.07721e-22
2.79643e-21
-2.02654e-19
-1.96904e-17
-5.84334e-17
2.81766e-16
2.00627e-15
6.03804e-15
1.28283e-14
2.32829e-14
3.91038e-14
6.10481e-14
8.71477e-14
1.14077e-13
1.34129e-13
2.44084e-14
-2.63219e-15
-7.6085e-16
1.61282e-14
3.42728e-14
1.83969e-14
3.26106e-15
3.88149e-16
3.10244e-16
3.82104e-16
4.29717e-16
3.06079e-16
1.41747e-16
4.19324e-17
-3.73929e-18
-1.8441e-17
-1.89651e-17
-1.3331e-17
-2.9591e-18
2.813e-19
1.34363e-19
3.30201e-21
1.96224e-20
-8.35831e-19
1.75243e-17
-2.34078e-16
2.17999e-15
-2.50181e-14
-3.72946e-14
6.44354e-13
2.20307e-12
4.28888e-12
8.33954e-12
1.30794e-11
1.3495e-11
9.71931e-12
1.04518e-11
-8.64363e-23
3.34063e-23
-5.48804e-24
2.78336e-25
9.23316e-28
3.97099e-27
2.07937e-27
8.87802e-28
3.33927e-28
2.44702e-28
4.31284e-28
7.67177e-28
1.06607e-27
1.19277e-27
1.14253e-27
9.85438e-28
7.70088e-28
5.13579e-28
2.63564e-28
9.21086e-29
3.06339e-29
2.14584e-27
3.29103e-26
4.40827e-26
-2.33262e-24
-2.34649e-23
-3.61817e-23
6.58477e-22
6.23627e-21
-1.35832e-19
-2.80809e-17
-9.51958e-17
4.13405e-16
3.08438e-15
9.25263e-15
1.93229e-14
3.42364e-14
5.58595e-14
8.44279e-14
1.16934e-13
1.49554e-13
1.74805e-13
4.04658e-14
-1.70023e-15
-1.66047e-15
1.46831e-14
3.36944e-14
1.94956e-14
3.61962e-15
3.75546e-16
2.9559e-16
3.79639e-16
4.29746e-16
3.09943e-16
1.45371e-16
4.37575e-17
-3.00533e-18
-1.83076e-17
-1.91987e-17
-1.33e-17
-3.06622e-18
2.7124e-19
1.52697e-19
5.86895e-21
2.43003e-20
-9.72106e-19
1.94438e-17
-2.47166e-16
2.27736e-15
-2.40634e-14
-4.21652e-14
6.74644e-13
2.38851e-12
4.81049e-12
9.40957e-12
1.36407e-11
1.26949e-11
8.41166e-12
1.16248e-11
-1.62292e-22
6.63977e-23
-1.14436e-23
6.23382e-25
-7.54435e-27
3.84772e-27
1.93436e-27
8.18276e-28
3.13488e-28
2.51609e-28
4.53043e-28
7.89892e-28
1.07875e-27
1.19367e-27
1.13629e-27
9.75994e-28
7.58579e-28
5.01516e-28
2.53959e-28
8.18565e-29
3.60064e-29
4.64281e-27
6.88057e-26
1.29953e-25
-4.47428e-24
-4.79208e-23
-7.80763e-23
1.45795e-21
1.39634e-20
-8.0639e-20
-3.61854e-17
-1.33676e-16
5.4124e-16
4.17225e-15
1.24491e-14
2.55852e-14
4.43347e-14
7.04496e-14
1.03708e-13
1.40523e-13
1.76672e-13
2.03368e-13
8.0748e-14
7.99769e-15
-2.60166e-15
1.21846e-14
3.25565e-14
2.07397e-14
4.12477e-15
3.69107e-16
2.74967e-16
3.76093e-16
4.29762e-16
3.14653e-16
1.49913e-16
4.60811e-17
-2.06873e-18
-1.81255e-17
-1.94813e-17
-1.34219e-17
-3.20647e-18
2.63276e-19
1.73244e-19
9.17988e-21
3.13759e-20
-1.16294e-18
2.20542e-17
-2.6589e-16
2.40152e-15
-2.11683e-14
-4.79379e-14
6.7271e-13
2.47751e-12
5.13459e-12
1.00212e-11
1.37464e-11
1.2095e-11
7.86779e-12
1.2878e-11
-3.04463e-22
1.29031e-22
-2.30955e-23
1.34887e-24
-2.53819e-26
3.88522e-27
1.79726e-27
7.54044e-28
2.95651e-28
2.59929e-28
4.75335e-28
8.12373e-28
1.09087e-27
1.19411e-27
1.12975e-27
9.66309e-28
7.46907e-28
4.89518e-28
2.44444e-28
6.62088e-29
3.7833e-29
9.69046e-27
1.38281e-25
3.42639e-25
-8.28182e-24
-9.6245e-23
-1.70153e-22
3.20836e-21
3.12845e-20
-1.58163e-20
-4.69201e-17
-1.86334e-16
7.04252e-16
5.62597e-15
1.674e-14
3.39205e-14
5.75499e-14
8.91861e-14
1.28115e-13
1.70085e-13
2.10445e-13
2.39428e-13
1.4178e-13
3.00806e-14
-3.39569e-15
8.13882e-15
3.03783e-14
2.20227e-14
4.74464e-15
3.71188e-16
2.50179e-16
3.71771e-16
4.2975e-16
3.19474e-16
1.54722e-16
4.85879e-17
-1.05505e-18
-1.79133e-17
-1.97528e-17
-1.36375e-17
-3.35013e-18
2.57663e-19
1.93083e-19
1.28008e-20
4.12434e-20
-1.40497e-18
2.52008e-17
-2.8833e-16
2.48903e-15
-1.64744e-14
-5.41566e-14
6.69322e-13
2.57523e-12
5.5045e-12
1.06944e-11
1.38282e-11
1.14576e-11
7.34238e-12
1.43615e-11
-5.63067e-22
2.43223e-22
-4.48313e-23
2.82064e-24
-6.25632e-26
4.24682e-27
1.6689e-27
6.96703e-28
2.80872e-28
2.69388e-28
4.97438e-28
8.33873e-28
1.10201e-27
1.19405e-27
1.12312e-27
9.56708e-28
7.3548e-28
4.78011e-28
2.35155e-28
3.94212e-29
1.28605e-29
1.90637e-26
2.69114e-25
8.28493e-25
-1.48063e-23
-1.89637e-22
-3.72846e-22
7.01402e-21
7.01184e-20
6.06591e-20
-6.07388e-17
-2.54955e-16
9.02763e-16
7.476e-15
2.22171e-14
4.44405e-14
7.38655e-14
1.11701e-13
1.56731e-13
2.0403e-13
2.48522e-13
2.8019e-13
2.11907e-13
6.1764e-14
-3.09438e-15
3.02526e-15
2.79965e-14
2.36985e-14
5.49915e-15
3.67717e-16
2.19715e-16
3.6694e-16
4.29759e-16
3.24214e-16
1.59619e-16
5.11957e-17
2.79265e-21
-1.76777e-17
-1.99894e-17
-1.39014e-17
-3.49822e-18
2.5359e-19
2.12379e-19
1.66304e-20
5.54239e-20
-1.72727e-18
2.91804e-17
-3.15281e-16
2.49786e-15
-1.11247e-14
-6.07882e-14
6.56866e-13
2.65518e-12
5.86088e-12
1.12938e-11
1.37746e-11
1.08611e-11
7.02951e-12
1.60217e-11
-1.0266e-21
4.43061e-22
-8.32615e-23
5.66063e-24
-1.37289e-25
5.23628e-27
1.54387e-27
6.4563e-28
2.68882e-28
2.79833e-28
5.19237e-28
8.54331e-28
1.11218e-27
1.19354e-27
1.11644e-27
9.47254e-28
7.24374e-28
4.67069e-28
2.25864e-28
-9.40915e-30
-1.00246e-28
3.58555e-26
5.07828e-25
1.86832e-24
-2.53917e-23
-3.65097e-22
-8.17263e-22
1.51351e-20
1.57643e-19
1.55217e-19
-7.85817e-17
-3.43008e-16
1.14367e-15
9.80282e-15
2.91335e-14
5.7607e-14
9.39011e-14
1.38713e-13
1.90347e-13
2.43179e-13
2.91712e-13
3.26338e-13
2.88669e-13
1.03016e-13
4.85432e-15
1.21567e-15
2.73467e-14
2.62704e-14
6.43071e-15
3.39202e-16
1.78816e-16
3.61685e-16
4.29916e-16
3.28823e-16
1.64534e-16
5.38747e-17
1.09248e-18
-1.74232e-17
-2.02016e-17
-1.41693e-17
-3.63944e-18
2.51299e-19
2.31597e-19
2.06311e-20
7.64735e-20
-2.18516e-18
3.46777e-17
-3.49992e-16
2.42091e-15
-5.98827e-15
-6.74647e-14
6.38676e-13
2.72237e-12
6.20753e-12
1.18254e-11
1.36258e-11
1.03426e-11
6.89123e-12
1.77646e-11
-1.84688e-21
7.762e-22
-1.46838e-22
1.08246e-23
-2.79822e-25
7.3836e-27
1.41353e-27
5.99921e-28
2.59313e-28
2.91177e-28
5.40778e-28
8.73852e-28
1.12146e-27
1.1926e-27
1.10973e-27
9.3794e-28
7.1358e-28
4.56691e-28
2.16221e-28
-9.92552e-29
-4.4528e-28
6.42612e-26
9.24041e-25
3.95526e-24
-4.15753e-23
-6.82775e-22
-1.77606e-21
3.14746e-20
3.45162e-19
2.82089e-19
-1.01213e-16
-4.53936e-16
1.43341e-15
1.26835e-14
3.7733e-14
7.38615e-14
1.1823e-13
1.70826e-13
2.29504e-13
2.87919e-13
3.40177e-13
3.77813e-13
3.7252e-13
1.56018e-13
3.01503e-14
1.06026e-14
3.17352e-14
3.03099e-14
7.59023e-15
2.77324e-16
1.21222e-16
3.5543e-16
4.30362e-16
3.33299e-16
1.69423e-16
5.66051e-17
2.20556e-18
-1.7152e-17
-2.04248e-17
-1.43225e-17
-3.71146e-18
2.53467e-19
2.49551e-19
2.45415e-20
1.08304e-19
-2.85773e-18
4.26304e-17
-3.96315e-16
2.26474e-15
-1.30433e-15
-7.39735e-14
6.15471e-13
2.77517e-12
6.53397e-12
1.22668e-11
1.33947e-11
9.93519e-12
6.91844e-12
1.94908e-11
-3.28385e-21
1.29817e-21
-2.43062e-22
1.95433e-23
-5.34532e-25
1.15148e-26
1.26557e-27
5.58851e-28
2.51838e-28
3.03384e-28
5.62161e-28
8.9258e-28
1.12996e-27
1.19128e-27
1.10296e-27
9.28731e-28
7.0306e-28
4.46881e-28
2.05938e-28
-2.60019e-28
-1.33192e-27
1.08894e-25
1.61909e-24
7.87813e-24
-6.48634e-23
-1.23082e-21
-3.74427e-21
6.14853e-20
6.90754e-19
5.0445e-19
-1.29081e-16
-5.90841e-16
1.77788e-15
1.61926e-14
4.82549e-14
9.36515e-14
1.47454e-13
2.08696e-13
2.74792e-13
3.38675e-13
3.94098e-13
4.34525e-13
4.50232e-13
2.20158e-13
7.66614e-14
3.64971e-14
4.42063e-14
3.63788e-14
9.04675e-15
1.94104e-16
4.17585e-17
3.46793e-16
4.31169e-16
3.37666e-16
1.74246e-16
5.9363e-17
3.33318e-18
-1.68636e-17
-2.066e-17
-1.41735e-17
-3.61685e-18
2.64196e-19
2.62619e-19
2.76185e-20
1.56572e-19
-3.84222e-18
5.39254e-17
-4.55141e-16
2.02386e-15
2.98925e-15
-8.00872e-14
5.88686e-13
2.81405e-12
6.83231e-12
1.26043e-11
1.31077e-11
9.6617e-12
7.07679e-12
2.10858e-11
-5.77961e-21
2.0432e-21
-3.70064e-22
3.28357e-23
-9.54224e-25
1.87199e-26
1.08526e-27
5.21878e-28
2.46204e-28
3.16454e-28
5.8351e-28
9.1066e-28
1.13778e-27
1.1896e-27
1.09611e-27
9.19582e-28
6.92764e-28
4.37699e-28
1.95078e-28
-5.35376e-28
-3.32004e-27
1.75174e-25
2.74107e-24
1.47856e-23
-9.68948e-23
-2.1252e-21
-7.37562e-21
1.11416e-19
1.26089e-18
9.44715e-19
-1.61966e-16
-7.55703e-16
2.18002e-15
2.0389e-14
6.09036e-14
1.17388e-13
1.82166e-13
2.52981e-13
3.26786e-13
3.95838e-13
4.53724e-13
4.9657e-13
5.12648e-13
2.94435e-13
1.40784e-13
7.85214e-14
6.56062e-14
4.47489e-14
1.08823e-14
1.19323e-16
-6.26379e-17
3.33615e-16
4.32288e-16
3.4197e-16
1.78964e-16
6.21198e-17
4.46496e-18
-1.65623e-17
-2.08338e-17
-1.35765e-17
-3.29109e-18
2.85335e-19
2.66158e-19
2.86609e-20
2.28781e-19
-5.2439e-18
6.90491e-17
-5.21731e-16
1.67805e-15
6.95096e-15
-8.56614e-14
5.59611e-13
2.83966e-12
7.09421e-12
1.28272e-11
1.27915e-11
9.53079e-12
7.33117e-12
2.2472e-11
-1.00673e-20
2.93869e-21
-4.967e-22
5.00111e-23
-1.57538e-24
3.00896e-26
8.57186e-28
4.88975e-28
2.42236e-28
3.30414e-28
6.04955e-28
9.28227e-28
1.14499e-27
1.18756e-27
1.08914e-27
9.10442e-28
6.82641e-28
4.29298e-28
1.84424e-28
-9.86136e-28
-7.2596e-27
2.71976e-25
4.515e-24
2.62298e-23
-1.41156e-22
-3.51296e-21
-1.33935e-20
1.87763e-19
2.13151e-18
1.76451e-18
-1.98691e-16
-9.48416e-16
2.63718e-15
2.52987e-14
7.58105e-14
1.45399e-13
2.22912e-13
3.04326e-13
3.86037e-13
4.59757e-13
5.19334e-13
5.64169e-13
5.82824e-13
3.81701e-13
2.18661e-13
1.32299e-13
9.44179e-14
5.53217e-14
1.32041e-14
9.61974e-17
-1.93571e-16
3.12722e-16
4.33444e-16
3.46273e-16
1.83546e-16
6.48414e-17
5.58851e-18
-1.62661e-17
-2.08474e-17
-1.25256e-17
-2.75364e-18
3.1349e-19
2.57118e-19
2.63699e-20
3.33762e-19
-7.16015e-18
8.78542e-17
-5.85929e-16
1.2069e-15
1.05705e-14
-9.06326e-14
5.29523e-13
2.85317e-12
7.3121e-12
1.29295e-11
1.24727e-11
9.53826e-12
7.64406e-12
2.35878e-11
-1.72987e-20
3.62423e-21
-5.23973e-22
6.52595e-23
-2.36188e-24
4.62074e-26
5.60816e-28
4.60641e-28
2.39998e-28
3.45304e-28
6.26621e-28
9.45401e-28
1.15165e-27
1.18516e-27
1.08201e-27
9.01256e-28
6.7264e-28
4.21964e-28
1.75682e-28
-1.69938e-27
-1.42891e-26
4.1868e-25
7.31562e-24
4.43276e-23
-2.06564e-22
-5.59608e-21
-2.24829e-20
2.98542e-19
3.38524e-18
3.06385e-18
-2.37462e-16
-1.16571e-15
3.13882e-15
3.08938e-14
9.29858e-14
1.77867e-13
2.7014e-13
3.6333e-13
4.53049e-13
5.3074e-13
5.91155e-13
6.37398e-13
6.5983e-13
4.87189e-13
3.09913e-13
1.94723e-13
1.28533e-13
6.79245e-14
1.62164e-14
1.94371e-16
-3.50528e-16
2.79989e-16
4.33916e-16
3.50618e-16
1.87971e-16
6.74909e-17
6.68896e-18
-1.60027e-17
-2.06567e-17
-1.11554e-17
-2.09635e-18
3.4116e-19
2.35759e-19
1.9815e-20
4.80541e-19
-9.66044e-18
1.09526e-16
-6.35018e-16
6.04697e-16
1.38231e-14
-9.50118e-14
4.99615e-13
2.85617e-12
7.47947e-12
1.29108e-11
1.21738e-11
9.67e-12
7.9831e-12
2.44041e-11
-2.91334e-20
3.17293e-21
-2.31551e-22
6.16202e-23
-3.08116e-24
6.57599e-26
1.93816e-28
4.34866e-28
2.39796e-28
3.61244e-28
6.48612e-28
9.62284e-28
1.15781e-27
1.18239e-27
1.07467e-27
8.91961e-28
6.62709e-28
4.16172e-28
1.71351e-28
-2.81564e-27
-2.59447e-26
6.57224e-25
1.1806e-23
7.22927e-23
-3.12788e-22
-8.6832e-21
-3.50948e-20
4.57022e-19
5.09922e-18
4.65047e-18
-2.78281e-16
-1.40047e-15
3.66594e-15
3.70726e-14
1.12268e-13
2.14765e-13
3.24139e-13
4.30494e-13
5.2825e-13
6.09034e-13
6.69389e-13
7.16264e-13
7.43133e-13
6.1568e-13
4.15043e-13
2.6488e-13
1.66662e-13
8.25646e-14
2.02583e-14
5.32279e-16
-5.29597e-16
2.31288e-16
4.32485e-16
3.54957e-16
1.92223e-16
7.00323e-17
7.74874e-18
-1.57937e-17
-2.02915e-17
-9.66042e-18
-1.4328e-18
3.60787e-19
2.0551e-19
8.70762e-21
6.77189e-19
-1.27688e-17
1.32732e-16
-6.57578e-16
-1.13445e-16
1.67107e-14
-9.8871e-14
4.70975e-13
2.85056e-12
7.59136e-12
1.27761e-11
1.1911e-11
9.90695e-12
8.33782e-12
2.49595e-11
-4.76938e-20
-1.92358e-22
7.47225e-22
8.49127e-24
-3.09784e-24
8.247e-26
-1.56335e-28
4.06363e-28
2.41337e-28
3.78473e-28
6.71019e-28
9.78945e-28
1.1635e-27
1.17922e-27
1.06707e-27
8.82489e-28
6.528e-28
4.1271e-28
1.74447e-28
-4.59176e-27
-4.46581e-26
1.06749e-24
1.91418e-23
1.1525e-22
-4.96741e-22
-1.32593e-20
-5.1202e-20
6.86359e-19
7.32712e-18
5.7875e-18
-3.26251e-16
-1.64272e-15
4.19391e-15
4.36511e-14
1.33287e-13
2.55781e-13
3.84964e-13
5.06176e-13
6.11964e-13
6.94798e-13
7.54182e-13
8.00709e-13
8.31958e-13
7.66262e-13
5.32575e-13
3.43742e-13
2.08756e-13
9.95282e-14
2.56847e-14
1.25547e-15
-7.25341e-16
1.61521e-16
4.27729e-16
3.59235e-16
1.96298e-16
7.24308e-17
8.74686e-18
-1.56458e-17
-1.98137e-17
-8.20828e-18
-8.53255e-19
3.67674e-19
1.71467e-19
-6.66554e-21
9.30993e-19
-1.64602e-17
1.55893e-16
-6.46524e-16
-9.13539e-16
1.92598e-14
-1.02332e-13
4.44583e-13
2.83842e-12
7.64467e-12
1.25356e-11
1.16935e-11
1.02305e-11
8.70581e-12
2.53232e-11
-7.5323e-20
-9.22707e-21
2.82762e-21
-1.33956e-22
-1.26903e-24
8.25637e-26
-3.40396e-28
3.78436e-28
2.43289e-28
3.97139e-28
6.9398e-28
9.95406e-28
1.16872e-27
1.17563e-27
1.05913e-27
8.72764e-28
6.42876e-28
4.12972e-28
1.88247e-28
-7.52082e-27
-7.51617e-26
1.77417e-24
3.12374e-23
1.81315e-22
-8.19359e-22
-2.00489e-20
-7.00277e-20
1.02191e-18
1.0085e-17
5.11605e-18
-3.90767e-16
-1.88435e-15
4.70242e-15
5.03744e-14
1.55446e-13
3.00271e-13
4.52359e-13
5.90512e-13
7.04357e-13
7.8807e-13
8.45553e-13
8.90769e-13
9.25482e-13
9.17449e-13
6.58433e-13
4.33832e-13
2.56194e-13
1.19469e-13
3.26818e-14
2.46737e-15
-9.27331e-16
6.06542e-17
4.18256e-16
3.63432e-16
2.0018e-16
7.46532e-17
9.66182e-18
-1.55519e-17
-1.9274e-17
-6.89883e-18
-4.06464e-19
3.60072e-19
1.38512e-19
-2.58056e-20
1.25117e-18
-2.06844e-17
1.77492e-16
-6.00007e-16
-1.75356e-15
2.15186e-14
-1.05557e-13
4.21308e-13
2.82198e-12
7.63839e-12
1.22036e-11
1.15236e-11
1.06267e-11
9.09718e-12
2.55966e-11
-1.14223e-19
-2.7567e-20
6.15416e-21
-3.90786e-22
3.69067e-24
4.81821e-26
-3.87175e-28
3.69103e-28
2.45789e-28
4.16958e-28
7.17708e-28
1.0117e-27
1.17344e-27
1.17156e-27
1.05081e-27
8.62699e-28
6.32932e-28
4.19559e-28
2.17514e-28
-1.25216e-26
-1.27056e-25
2.94631e-24
5.10777e-23
2.82636e-22
-1.37303e-21
-3.00269e-20
-8.94867e-20
1.51021e-18
1.3335e-17
8.07479e-19
-4.81288e-16
-2.12596e-15
5.19841e-15
5.69603e-14
1.77963e-13
3.47234e-13
5.25691e-13
6.83356e-13
8.054e-13
8.88719e-13
9.43324e-13
9.86477e-13
1.02245e-12
1.02525e-12
7.92773e-13
5.36492e-13
3.10575e-13
1.43235e-13
4.12958e-14
4.21115e-15
-1.09944e-15
-8.48088e-17
4.02039e-16
3.66967e-16
2.03786e-16
7.66717e-17
1.04775e-17
-1.54991e-17
-1.86983e-17
-5.76888e-18
-1.03149e-19
3.37827e-19
1.09896e-19
-4.84738e-20
1.65316e-18
-2.54147e-17
1.96421e-16
-5.20969e-16
-2.59337e-15
2.35467e-14
-1.08739e-13
4.01916e-13
2.80345e-12
7.57367e-12
1.17979e-11
1.13985e-11
1.10876e-11
9.54041e-12
2.59094e-11
-1.66234e-19
-5.95456e-20
1.00421e-20
-7.26024e-22
1.2086e-23
-2.92148e-26
-5.58419e-28
3.76423e-28
2.52971e-28
4.37574e-28
7.42234e-28
1.02796e-27
1.17762e-27
1.16695e-27
1.04202e-27
8.522e-28
6.23023e-28
4.37439e-28
2.7414e-28
-2.11582e-26
-2.16215e-25
4.87613e-24
8.29625e-23
4.35392e-22
-2.28713e-21
-4.43171e-20
-1.0515e-19
2.20609e-18
1.6938e-17
-9.48249e-18
-6.03562e-16
-2.3694e-15
5.75578e-15
6.31945e-14
1.99954e-13
3.95347e-13
6.03896e-13
7.84202e-13
9.14811e-13
9.96404e-13
1.04704e-12
1.08708e-12
1.12126e-12
1.12533e-12
9.41134e-13
6.51582e-13
3.73225e-13
1.71745e-13
5.16538e-14
6.56997e-15
-1.14683e-15
-2.77174e-16
3.72797e-16
3.69212e-16
2.07157e-16
7.84728e-17
1.11745e-17
-1.54791e-17
-1.8094e-17
-4.81343e-18
7.13609e-20
3.01226e-19
8.67421e-20
-7.49879e-20
2.1604e-18
-3.0691e-17
2.12268e-16
-4.16397e-16
-3.39715e-15
2.53998e-14
-1.12102e-13
3.87091e-13
2.78495e-12
7.45376e-12
1.13377e-11
1.13136e-11
1.16108e-11
1.00573e-11
2.63805e-11
-2.32973e-19
-1.10143e-19
1.22286e-20
-9.94979e-22
2.17586e-23
-1.35108e-25
-5.32775e-28
3.36501e-28
2.67973e-28
4.59857e-28
7.67074e-28
1.04423e-27
1.1813e-27
1.16174e-27
1.03268e-27
8.41154e-28
6.13318e-28
4.75893e-28
3.87616e-28
-3.59776e-26
-3.69467e-25
7.945e-24
1.32396e-22
6.57192e-22
-3.72194e-21
-6.38788e-20
-1.09145e-19
3.16539e-18
2.06147e-17
-2.86605e-17
-7.58374e-16
-2.59277e-15
6.54904e-15
6.90906e-14
2.20621e-13
4.43056e-13
6.85458e-13
8.92114e-13
1.032e-12
1.11052e-12
1.15592e-12
1.19153e-12
1.22049e-12
1.22257e-12
1.10227e-12
7.7629e-13
4.45911e-13
2.06303e-13
6.42526e-14
9.82764e-15
-8.83973e-16
-4.84221e-16
3.13193e-16
3.72012e-16
2.10404e-16
8e-17
1.17283e-17
-1.54923e-17
-1.74633e-17
-4.00401e-18
1.44228e-19
2.50429e-19
6.82679e-20
-1.0637e-19
2.80203e-18
-3.66202e-17
2.25373e-16
-2.95596e-16
-4.13675e-15
2.71277e-14
-1.15888e-13
3.77452e-13
2.76843e-12
7.2838e-12
1.08426e-11
1.12646e-11
1.21969e-11
1.06724e-11
2.71268e-11
-3.1614e-19
-1.85015e-19
7.94614e-21
-9.23818e-22
2.81442e-23
-2.61758e-25
2.01286e-27
1.61144e-28
2.82066e-28
4.86021e-28
7.91894e-28
1.06009e-27
1.18446e-27
1.15588e-27
1.02269e-27
8.29431e-28
6.04154e-28
5.51364e-28
6.21839e-28
-6.08134e-26
-6.2735e-25
1.25874e-23
2.04895e-22
9.59345e-22
-5.83207e-21
-8.88836e-20
-9.0165e-20
4.42669e-18
2.39791e-17
-5.92066e-17
-9.42479e-16
-2.74603e-15
7.83039e-15
7.50517e-14
2.39544e-13
4.88794e-13
7.68435e-13
1.00565e-12
1.15599e-12
1.23013e-12
1.2688e-12
1.29845e-12
1.31853e-12
1.31508e-12
1.25594e-12
9.02524e-13
5.30441e-13
2.48565e-13
8.01082e-14
1.45377e-14
-2.58341e-17
-6.15221e-16
1.94891e-16
3.7523e-16
2.13197e-16
8.1169e-17
1.21199e-17
-1.55492e-17
-1.68034e-17
-3.29889e-18
1.46297e-19
1.85276e-19
5.22259e-20
-1.44628e-19
3.6095e-18
-4.33308e-17
2.36582e-16
-1.68603e-16
-4.79299e-15
2.87778e-14
-1.20348e-13
3.73589e-13
2.75562e-12
7.07041e-12
1.03307e-11
1.12508e-11
1.28465e-11
1.14011e-11
2.82145e-11
-4.17638e-19
-2.90244e-19
-1.09222e-20
-1.2242e-22
2.63518e-23
-4.349e-25
9.54441e-27
-9.78719e-29
2.73564e-28
5.15385e-28
8.18138e-28
1.07502e-27
1.18686e-27
1.1493e-27
1.01194e-27
8.16861e-28
5.96073e-28
6.90742e-28
1.09871e-27
-1.00686e-25
-1.04251e-24
1.90983e-23
3.02913e-22
1.33228e-21
-8.6895e-21
-1.17974e-19
-3.54285e-20
5.98257e-18
2.66032e-17
-1.01548e-16
-1.14932e-15
-2.76528e-15
9.83395e-15
8.17375e-14
2.57071e-13
5.31353e-13
8.50563e-13
1.12281e-12
1.28534e-12
1.3539e-12
1.38406e-12
1.40605e-12
1.41518e-12
1.40183e-12
1.36597e-12
1.02547e-12
6.27611e-13
3.00542e-13
1.00824e-13
2.14435e-14
1.7623e-15
-5.12615e-16
2.79953e-18
3.60175e-16
2.16226e-16
8.2203e-17
1.23273e-17
-1.56756e-17
-1.60936e-17
-2.65269e-18
1.06831e-19
1.05608e-19
3.53662e-20
-1.93432e-19
4.61694e-18
-5.09261e-17
2.46874e-16
-4.51872e-17
-5.35323e-15
3.03923e-14
-1.2574e-13
3.76092e-13
2.74799e-12
6.82104e-12
9.81688e-12
1.12761e-11
1.35577e-11
1.22488e-11
2.96841e-11
-5.39643e-19
-4.31559e-19
-5.56896e-20
1.83689e-21
1.33856e-23
-6.24865e-25
1.73957e-26
3.09138e-29
2.35409e-28
5.39618e-28
8.47816e-28
1.08978e-27
1.18819e-27
1.14188e-27
1.00034e-27
8.03218e-28
5.89782e-28
9.32454e-28
2.01279e-27
-1.60521e-25
-1.66202e-24
2.73614e-23
4.21178e-22
1.72978e-21
-1.2205e-20
-1.47878e-19
6.60369e-20
7.75273e-18
2.79854e-17
-1.54082e-16
-1.36685e-15
-2.59429e-15
1.2724e-14
8.98677e-14
2.7431e-13
5.70534e-13
9.29501e-13
1.24103e-12
1.41803e-12
1.48001e-12
1.49962e-12
1.51205e-12
1.508e-12
1.47999e-12
1.42574e-12
1.15078e-12
7.38093e-13
3.65543e-13
1.28995e-13
3.14961e-14
4.78182e-15
1.2402e-17
-2.20159e-16
2.8545e-16
2.22914e-16
8.35558e-17
1.23019e-17
-1.59023e-17
-1.53037e-17
-2.0257e-18
5.05715e-20
1.20899e-20
1.4006e-20
-2.58945e-19
5.86378e-18
-5.94901e-17
2.57283e-16
6.57805e-17
-5.81047e-15
3.20104e-14
-1.32316e-13
3.85597e-13
2.74671e-12
6.54258e-12
9.30773e-12
1.1349e-11
1.43251e-11
1.32187e-11
3.15161e-11
-6.84923e-19
-6.13524e-19
-1.39141e-19
5.20982e-21
-1.242e-23
-5.07313e-25
3.83619e-27
1.50954e-27
2.21024e-28
5.50531e-28
8.77935e-28
1.10596e-27
1.18866e-27
1.13349e-27
9.8775e-28
7.88196e-28
5.85904e-28
1.31947e-27
3.59389e-27
-2.41994e-25
-2.48419e-24
3.66513e-23
5.44144e-22
2.06855e-21
-1.61347e-20
-1.74034e-19
2.21969e-19
9.5894e-18
2.74495e-17
-2.14529e-16
-1.57154e-15
-2.18079e-15
1.6588e-14
1.00045e-13
2.92937e-13
6.07442e-13
1.00335e-12
1.35719e-12
1.5514e-12
1.60612e-12
1.61293e-12
1.61377e-12
1.59455e-12
1.54835e-12
1.47517e-12
1.27985e-12
8.61336e-13
4.48564e-13
1.68888e-13
4.62402e-14
9.3095e-15
1.10239e-15
-3.4931e-16
1.194e-16
2.33303e-16
8.47077e-17
1.20696e-17
-1.62408e-17
-1.44058e-17
-1.39798e-18
-2.79939e-21
-9.28942e-20
-1.52067e-20
-3.50314e-19
7.39972e-18
-6.91401e-17
2.69033e-16
1.55982e-16
-6.15134e-15
3.3667e-14
-1.40313e-13
4.02829e-13
2.75248e-12
6.23713e-12
8.82259e-12
1.14794e-11
1.51403e-11
1.42983e-11
3.36277e-11
-8.57282e-19
-8.394e-19
-2.73483e-19
9.70222e-21
-4.88473e-23
5.64802e-25
-6.475e-26
4.42293e-27
3.30171e-28
5.57471e-28
8.99522e-28
1.12232e-27
1.18874e-27
1.12406e-27
9.74082e-28
7.7142e-28
5.8456e-28
1.88111e-27
5.99248e-27
-3.40172e-25
-3.41941e-24
4.5968e-23
6.51762e-22
2.2564e-21
-2.02288e-20
-1.92407e-19
4.38673e-19
1.1348e-17
2.42432e-17
-2.81448e-16
-1.73642e-15
-1.4664e-15
2.14972e-14
1.12427e-13
3.14271e-13
6.44413e-13
1.0716e-12
1.46783e-12
1.68213e-12
1.72932e-12
1.72095e-12
1.70811e-12
1.67216e-12
1.60567e-12
1.51467e-12
1.39348e-12
9.91825e-13
5.54705e-13
2.2639e-13
6.83693e-14
1.57979e-14
2.80716e-15
-2.20887e-16
-1.12183e-16
2.30362e-16
8.48598e-17
1.17416e-17
-1.66942e-17
-1.33641e-17
-7.7153e-19
-3.94051e-20
-2.04359e-19
-5.43228e-20
-4.80408e-19
9.29472e-18
-8.00572e-17
2.83578e-16
2.16822e-16
-6.3383e-15
3.53855e-14
-1.49935e-13
4.28647e-13
2.76469e-12
5.92195e-12
8.36509e-12
1.16719e-11
1.59931e-11
1.54674e-11
3.59486e-11
-1.06172e-18
-1.1117e-18
-4.69307e-19
1.388e-20
-8.83224e-23
3.4117e-24
-1.87525e-25
5.59963e-27
5.88144e-28
5.91821e-28
9.08364e-28
1.13438e-27
1.18801e-27
1.1135e-27
9.59217e-28
7.52508e-28
5.85196e-28
2.6135e-27
9.12726e-27
-4.44193e-25
-4.29658e-24
5.49823e-23
7.31733e-22
2.23717e-21
-2.44041e-20
-2.01138e-19
7.23099e-19
1.29694e-17
1.78397e-17
-3.55404e-16
-1.85342e-15
-4.06219e-16
2.75709e-14
1.27354e-13
3.38977e-13
6.83365e-13
1.13501e-12
1.56946e-12
1.80625e-12
1.84614e-12
1.82024e-12
1.79169e-12
1.73782e-12
1.65014e-12
1.53902e-12
1.45573e-12
1.11967e-12
6.85236e-13
3.07309e-13
1.01856e-13
2.52089e-14
5.13732e-15
2.83459e-16
-3.15993e-16
1.80462e-16
8.67494e-17
1.13138e-17
-1.72809e-17
-1.21354e-17
-1.45483e-19
-5.48058e-20
-3.15837e-19
-1.03314e-19
-6.6617e-19
1.16384e-17
-9.24735e-17
3.02576e-16
2.392e-16
-6.35198e-15
3.71608e-14
-1.61338e-13
4.64087e-13
2.77796e-12
5.6016e-12
7.9378e-12
1.19425e-11
1.68725e-11
1.67011e-11
3.83226e-11
-1.30437e-18
-1.43296e-18
-7.34995e-19
1.43069e-20
-1.39679e-22
7.87905e-24
-2.25345e-25
-1.22835e-27
9.77423e-28
6.92595e-28
9.1883e-28
1.14016e-27
1.18574e-27
1.10165e-27
9.42945e-28
7.31132e-28
5.87053e-28
3.47738e-27
1.26286e-26
-5.42811e-25
-4.94245e-24
6.43962e-23
7.86119e-22
2.01397e-21
-2.87612e-20
-2.00726e-19
1.07916e-18
1.44828e-17
8.05755e-18
-4.39129e-16
-1.93734e-15
9.94817e-16
3.48685e-14
1.45325e-13
3.68004e-13
7.25058e-13
1.1951e-12
1.65913e-12
1.91933e-12
1.95259e-12
1.907e-12
1.86088e-12
1.7883e-12
1.67905e-12
1.54421e-12
1.44819e-12
1.23281e-12
8.32129e-13
4.13894e-13
1.51063e-13
3.93831e-14
8.25457e-15
1.18951e-15
-3.72166e-16
6.26017e-17
9.40154e-17
1.07923e-17
-1.80199e-17
-1.06756e-17
4.89311e-19
-5.60153e-20
-4.23556e-19
-1.60079e-19
-9.27949e-19
1.45317e-17
-1.06701e-16
3.28414e-16
2.11462e-16
-6.19298e-15
3.89156e-14
-1.74619e-13
5.104e-13
2.8028e-12
5.28196e-12
7.53958e-12
1.22871e-11
1.7766e-11
1.79622e-11
4.06749e-11
-1.59236e-18
-1.80668e-18
-1.07574e-18
2.5418e-21
-2.49808e-22
7.37207e-24
1.80236e-25
-2.33922e-26
1.57024e-27
8.73547e-28
9.6364e-28
1.14281e-27
1.18218e-27
1.08895e-27
9.25104e-28
7.07077e-28
5.89977e-28
4.41642e-27
1.59578e-26
-6.29895e-25
-5.26478e-24
7.51875e-23
8.25243e-22
1.62899e-21
-3.34275e-20
-1.93056e-19
1.49977e-18
1.5938e-17
-4.84118e-18
-5.36152e-16
-2.01302e-15
2.66169e-15
4.32816e-14
1.66309e-13
4.01577e-13
7.69922e-13
1.25262e-12
1.73525e-12
2.01686e-12
2.0443e-12
1.97726e-12
1.912e-12
1.82035e-12
1.68945e-12
1.52802e-12
1.38975e-12
1.30884e-12
9.74652e-13
5.40993e-13
2.18839e-13
6.1034e-14
1.27642e-14
2.48814e-15
-1.92013e-16
-1.02216e-16
1.03372e-16
9.46445e-18
-1.8826e-17
-8.96796e-18
1.13874e-18
-5.94249e-20
-5.28178e-19
-2.21456e-19
-1.28786e-18
1.80876e-17
-1.23275e-16
3.65244e-16
1.16008e-16
-5.83211e-15
4.05192e-14
-1.89775e-13
5.69517e-13
2.84121e-12
4.96476e-12
7.16642e-12
1.26932e-11
1.86586e-11
1.92204e-11
4.29089e-11
-1.93368e-18
-2.23845e-18
-1.49397e-18
-4.28477e-20
-1.64379e-22
-2.07478e-23
1.45728e-24
-6.57223e-26
1.80123e-27
1.00913e-27
1.06234e-27
1.14656e-27
1.17597e-27
1.07619e-27
9.05991e-28
6.80343e-28
5.94804e-28
5.37441e-27
1.86026e-26
-7.05534e-25
-5.27571e-24
8.74647e-23
8.57002e-22
1.13113e-21
-3.83894e-20
-1.80264e-19
1.96378e-18
1.73647e-17
-1.96799e-17
-6.46282e-16
-2.10394e-15
4.4687e-15
5.25484e-14
1.89962e-13
4.39401e-13
8.16855e-13
1.306e-12
1.79799e-12
2.09499e-12
2.11684e-12
2.02705e-12
1.94148e-12
1.83092e-12
1.67889e-12
1.4889e-12
1.30479e-12
1.31509e-12
1.08315e-12
6.74112e-13
3.04133e-13
9.2841e-14
1.99288e-14
4.29604e-15
2.54812e-16
-2.56931e-16
1.00612e-16
7.58285e-18
-1.95751e-17
-6.90139e-18
1.79508e-18
-8.69418e-20
-6.31964e-19
-2.84142e-19
-1.7687e-18
2.24461e-17
-1.43151e-16
4.19767e-16
-7.2176e-17
-5.20598e-15
4.17859e-14
-2.06521e-13
6.43695e-13
2.87086e-12
4.64499e-12
6.8106e-12
1.31362e-11
1.9531e-11
2.04382e-11
4.49519e-11
-2.33763e-18
-2.73645e-18
-1.99068e-18
-1.54917e-19
1.8552e-21
-9.84141e-23
3.58708e-24
-1.11614e-25
2.94665e-28
7.73929e-28
1.17337e-27
1.15699e-27
1.16094e-27
1.06185e-27
8.86139e-28
6.51298e-28
6.03022e-28
6.30798e-27
2.01694e-26
-7.73516e-25
-5.09561e-24
9.90007e-23
8.81813e-22
5.64313e-22
-4.34111e-20
-1.64401e-19
2.43516e-18
1.87725e-17
-3.40019e-17
-7.60217e-16
-2.22099e-15
6.26518e-15
6.21526e-14
2.15023e-13
4.79969e-13
8.64678e-13
1.35448e-12
1.84759e-12
2.15138e-12
2.16627e-12
2.05274e-12
1.94626e-12
1.81754e-12
1.64584e-12
1.42848e-12
1.19569e-12
1.22773e-12
1.13125e-12
7.92293e-13
4.00538e-13
1.36446e-13
3.1585e-14
7.01454e-15
9.71344e-16
-3.48169e-16
6.83914e-17
1.01174e-17
-2.02909e-17
-4.30664e-18
2.44783e-18
-1.55973e-19
-7.3452e-19
-3.4445e-19
-2.39479e-18
2.77996e-17
-1.67854e-16
5.01455e-16
-3.87888e-16
-4.20553e-15
4.23454e-14
-2.23903e-13
7.34323e-13
2.91305e-12
4.33402e-12
6.45669e-12
1.35808e-11
2.03583e-11
2.15804e-11
4.68533e-11
-2.82389e-18
-3.32304e-18
-2.58311e-18
-3.37363e-19
7.78386e-21
-2.07041e-22
5.92088e-24
-9.53416e-26
-2.98662e-27
1.68648e-28
1.21027e-27
1.1917e-27
1.13586e-27
1.04091e-27
8.64932e-28
6.20494e-28
6.16077e-28
7.18518e-27
2.05031e-26
-8.35236e-25
-4.85451e-24
1.07227e-22
8.93418e-22
-1.98103e-23
-4.80115e-20
-1.47608e-19
2.86645e-18
2.01129e-17
-4.51463e-17
-8.61905e-16
-2.3631e-15
7.84627e-15
7.12512e-14
2.39055e-13
5.1934e-13
9.09156e-13
1.39449e-12
1.88303e-12
2.18579e-12
2.18993e-12
2.05145e-12
1.9241e-12
1.77866e-12
1.58965e-12
1.34873e-12
1.06969e-12
1.04955e-12
1.10676e-12
8.74614e-13
4.967e-13
1.90664e-13
4.945e-14
1.13326e-14
1.98471e-15
-3.45571e-16
2.3706e-20
1.93403e-17
-2.09702e-17
-1.20372e-18
3.02362e-18
-2.59522e-19
-8.30387e-19
-3.98229e-19
-3.19399e-18
3.44086e-17
-1.99355e-16
6.21538e-16
-8.74307e-16
-2.68685e-15
4.16271e-14
-2.39667e-13
8.3965e-13
2.96288e-12
4.02595e-12
6.10486e-12
1.39848e-11
2.11102e-11
2.26255e-11
4.86338e-11
-3.40998e-18
-4.0129e-18
-3.28524e-18
-5.86919e-19
1.45365e-20
-3.37913e-22
5.73484e-24
1.07951e-25
-8.258e-27
-4.80158e-29
1.10505e-27
1.27951e-27
1.12355e-27
1.01224e-27
8.40228e-28
5.88062e-28
6.33822e-28
7.97402e-27
1.98058e-26
-8.84606e-25
-4.58851e-24
1.11061e-22
8.81554e-22
-5.54849e-22
-5.14297e-20
-1.31644e-19
3.20123e-18
2.1232e-17
-5.14222e-17
-9.36466e-16
-2.5243e-15
8.92474e-15
7.864e-14
2.59239e-13
5.52948e-13
9.44059e-13
1.4213e-12
1.90216e-12
2.19906e-12
2.18732e-12
2.02161e-12
1.87407e-12
1.71419e-12
1.51133e-12
1.2522e-12
9.34975e-13
8.21252e-13
1.01441e-12
9.07878e-13
5.78905e-13
2.50352e-13
7.3975e-14
1.80167e-14
3.38838e-15
-2.36496e-16
-9.53831e-17
2.59039e-17
-2.09734e-17
2.10596e-18
3.27362e-18
-3.7661e-19
-9.10577e-19
-4.41231e-19
-4.19029e-18
4.25645e-17
-2.39637e-16
7.90805e-16
-1.584e-15
-4.81852e-16
3.88464e-14
-2.49644e-13
9.38075e-13
3.02098e-12
3.71125e-12
5.74069e-12
1.43037e-11
2.17539e-11
2.35524e-11
5.03406e-11
-4.10908e-18
-4.81616e-18
-4.10755e-18
-9.05547e-19
1.87399e-20
-4.00724e-22
-5.67111e-24
6.32569e-25
-1.92407e-26
6.17604e-28
7.33891e-28
1.39171e-27
1.15787e-27
9.86029e-28
8.11286e-28
5.53704e-28
6.53207e-28
8.62534e-27
1.8503e-26
-9.0952e-25
-4.30218e-24
1.08747e-22
8.3647e-22
-9.54681e-22
-5.26778e-20
-1.18175e-19
3.36892e-18
2.18604e-17
-5.18352e-17
-9.70564e-16
-2.68338e-15
9.22928e-15
8.29349e-14
2.72567e-13
5.75491e-13
9.63322e-13
1.4287e-12
1.90086e-12
2.19206e-12
2.16057e-12
1.96351e-12
1.79683e-12
1.62567e-12
1.41293e-12
1.14233e-12
7.99559e-13
6.01373e-13
8.66387e-13
8.91616e-13
6.34614e-13
3.07455e-13
1.03576e-13
2.74518e-14
5.32171e-15
-1.43694e-17
-1.97722e-16
1.70368e-17
-1.86641e-17
5.24285e-18
2.95004e-18
-5.18449e-19
-9.7289e-19
-4.69748e-19
-5.40085e-18
5.2544e-17
-2.9025e-16
1.01844e-15
-2.57672e-15
2.59594e-15
3.29995e-14
-2.49272e-13
1.06035e-12
3.08547e-12
3.39551e-12
5.35263e-12
1.45005e-11
2.22571e-11
2.4347e-11
5.2102e-11
-4.93174e-18
-5.7391e-18
-5.05491e-18
-1.29697e-18
1.70807e-20
3.76161e-22
-4.10736e-23
1.47963e-24
-3.29261e-26
2.1423e-27
-4.98383e-29
1.34691e-27
1.22087e-27
9.7101e-28
7.80593e-28
5.18089e-28
6.68458e-28
9.05966e-27
1.70978e-26
-8.95903e-25
-3.97759e-24
9.93897e-23
7.53999e-22
-1.13532e-21
-5.0814e-20
-1.08522e-19
3.29907e-18
2.16509e-17
-4.5986e-17
-9.50959e-16
-2.79423e-15
8.63848e-15
8.29772e-14
2.76162e-13
5.82304e-13
9.62636e-13
1.41251e-12
1.87644e-12
2.16477e-12
2.11379e-12
1.87982e-12
1.69469e-12
1.51653e-12
1.29841e-12
1.02405e-12
6.71883e-13
4.27696e-13
6.79676e-13
8.36311e-13
6.56517e-13
3.5344e-13
1.34495e-13
3.90601e-14
7.84284e-15
3.31362e-16
-2.82887e-16
-9.19783e-18
-1.21235e-17
8.12527e-18
2.09447e-18
-7.2068e-19
-1.03052e-18
-4.79742e-19
-6.8715e-18
6.46456e-17
-3.51687e-16
1.30511e-15
-3.84731e-15
6.67479e-15
2.23764e-14
-2.22929e-13
1.20196e-12
3.13897e-12
3.06575e-12
4.93007e-12
1.45294e-11
2.25925e-11
2.49998e-11
5.39103e-11
-5.88341e-18
-6.78142e-18
-6.1242e-18
-1.76329e-18
5.39169e-21
4.09675e-21
-9.98918e-23
2.38716e-24
-3.38872e-26
5.89195e-27
-7.45108e-28
9.56904e-28
1.24406e-27
9.62731e-28
7.49181e-28
4.8261e-28
6.72571e-28
9.19758e-27
1.60517e-26
-8.3462e-25
-3.59702e-24
8.36737e-23
6.38309e-22
-1.06238e-21
-4.5428e-20
-1.02536e-19
2.95888e-18
2.03056e-17
-3.47739e-17
-8.70737e-16
-2.79926e-15
7.23689e-15
7.82743e-14
2.68273e-13
5.70789e-13
9.40379e-13
1.37291e-12
1.8286e-12
2.11827e-12
2.05168e-12
1.77579e-12
1.57128e-12
1.39153e-12
1.17383e-12
9.0266e-13
5.55374e-13
2.92416e-13
4.93849e-13
7.50668e-13
6.44901e-13
3.81976e-13
1.61787e-13
5.12078e-14
1.07997e-14
8.06075e-16
-3.26245e-16
-4.39399e-17
-1.35804e-18
1.08858e-17
1.00035e-18
-9.59636e-19
-1.08363e-18
-4.6326e-19
-8.67481e-18
7.88514e-17
-4.21552e-16
1.63414e-15
-5.29643e-15
1.15413e-14
6.81731e-15
-1.56944e-13
1.3604e-12
3.20107e-12
2.73455e-12
4.47399e-12
1.43755e-11
2.27444e-11
2.54892e-11
5.58203e-11
-6.9608e-18
-7.93239e-18
-7.30519e-18
-2.30253e-18
-1.8454e-20
1.13411e-20
-1.65608e-22
2.84354e-24
-1.77573e-26
1.25635e-26
1.02719e-28
3.23003e-28
1.21279e-27
9.63798e-28
7.12089e-28
4.45238e-28
6.6028e-28
9.00686e-27
1.56956e-26
-7.27857e-25
-3.16255e-24
6.38938e-23
5.01413e-22
-7.81911e-22
-3.7011e-20
-9.76339e-20
2.38353e-18
1.77325e-17
-2.06508e-17
-7.35649e-16
-2.65319e-15
5.29527e-15
6.91994e-14
2.48935e-13
5.41248e-13
8.9865e-13
1.31582e-12
1.76283e-12
2.05629e-12
1.97906e-12
1.65889e-12
1.43117e-12
1.25524e-12
1.04445e-12
7.84068e-13
4.52348e-13
1.86751e-13
3.37598e-13
6.3327e-13
6.0503e-13
3.89643e-13
1.80664e-13
6.16476e-14
1.38088e-14
1.3961e-15
-3.07336e-16
-7.53637e-17
9.29738e-18
1.29424e-17
-1.2302e-19
-1.15193e-18
-1.11348e-18
-4.32756e-19
-1.06164e-17
9.32809e-17
-4.91127e-16
1.97384e-15
-6.8127e-15
1.67174e-14
-4.86227e-15
-1.62558e-13
1.52815e-12
3.26172e-12
2.40675e-12
3.98429e-12
1.40244e-11
2.26877e-11
2.57668e-11
5.77863e-11
-8.14746e-18
-9.16657e-18
-8.57883e-18
-2.90663e-18
-5.5237e-20
2.16803e-20
-2.18155e-22
2.15588e-24
5.77614e-27
1.7313e-26
3.53483e-27
-3.78856e-28
1.11544e-27
9.91125e-28
6.69958e-28
4.00524e-28
6.3052e-28
8.53127e-27
1.60936e-26
-5.90217e-25
-2.70076e-24
4.32536e-23
3.59997e-22
-4.10083e-22
-2.6927e-20
-8.94017e-20
1.68217e-18
1.41471e-17
-6.90875e-18
-5.64652e-16
-2.34322e-15
3.19718e-15
5.69319e-14
2.19918e-13
4.96818e-13
8.43591e-13
1.25165e-12
1.69009e-12
1.9856e-12
1.90209e-12
1.53796e-12
1.27988e-12
1.11176e-12
9.14615e-13
6.73156e-13
3.64604e-13
1.05569e-13
2.10576e-13
4.89993e-13
5.39098e-13
3.74748e-13
1.87635e-13
6.82058e-14
1.63449e-14
2.06049e-15
-2.15886e-16
-9.19994e-17
1.25638e-17
1.25832e-17
-1.24213e-18
-1.482e-18
-1.12366e-18
-4.77917e-19
-1.18001e-17
1.02711e-16
-5.43826e-16
2.29033e-15
-8.40977e-15
2.30441e-14
-2.09644e-14
-1.47355e-13
1.69521e-12
3.3019e-12
2.0818e-12
3.45592e-12
1.34864e-11
2.24093e-11
2.57596e-11
5.9751e-11
-9.40869e-18
-1.04404e-17
-9.90594e-18
-3.56222e-18
-1.05365e-19
3.47854e-20
-2.31978e-22
-6.32755e-25
3.41586e-26
1.40531e-26
9.99588e-27
-1.01485e-27
8.03708e-28
1.06779e-27
6.56477e-28
3.50705e-28
5.87921e-28
7.87954e-27
1.68977e-26
-4.44308e-25
-2.24915e-24
2.4872e-23
2.31236e-22
-8.03413e-23
-1.70296e-20
-7.46493e-20
1.00534e-18
1.00852e-17
3.4267e-18
-3.85158e-16
-1.89987e-15
1.31708e-15
4.31841e-14
1.84154e-13
4.41919e-13
7.82476e-13
1.19166e-12
1.62479e-12
1.91531e-12
1.82516e-12
1.42101e-12
1.1242e-12
9.64431e-13
7.87342e-13
5.70306e-13
2.92841e-13
4.57538e-14
1.01995e-13
3.38587e-13
4.4343e-13
3.35038e-13
1.80704e-13
6.9559e-14
1.78988e-14
2.72245e-15
-5.72998e-17
-8.35794e-17
4.93657e-18
8.61021e-18
-2.06324e-18
-2.39986e-18
-1.18309e-18
-7.10344e-19
-1.12182e-17
1.00585e-16
-5.55807e-16
2.50988e-15
-9.96688e-15
3.08753e-14
-4.48912e-14
-1.09552e-13
1.88432e-12
3.34489e-12
1.76727e-12
2.89317e-12
1.27694e-11
2.18806e-11
2.54393e-11
6.15232e-11
-1.06867e-17
-1.16884e-17
-1.12252e-17
-4.25077e-18
-1.69046e-19
5.02484e-20
-1.60261e-22
-6.84277e-24
3.79445e-26
-5.12488e-27
2.12652e-26
-6.32413e-28
7.40942e-30
1.1535e-27
7.23643e-28
3.17382e-28
5.4965e-28
7.16156e-27
1.7349e-26
-3.12697e-25
-1.83357e-24
1.09179e-23
1.28472e-22
1.21302e-22
-8.98714e-21
-5.4453e-20
4.80432e-19
6.26218e-18
8.6978e-18
-2.25567e-16
-1.39068e-15
-1.02948e-16
2.96042e-14
1.44925e-13
3.80514e-13
7.19575e-13
1.14207e-12
1.57791e-12
1.85421e-12
1.75167e-12
1.31447e-12
9.72669e-13
8.16303e-13
6.6469e-13
4.76787e-13
2.36228e-13
6.40012e-15
8.64371e-15
1.94569e-13
3.2173e-13
2.70562e-13
1.59236e-13
6.54691e-14
1.80885e-14
3.2461e-15
1.47107e-16
-4.58922e-17
-8.73492e-18
2.45613e-18
-1.59456e-18
-3.94694e-18
-1.35396e-18
-1.0669e-18
-9.00462e-18
8.2728e-17
-4.96875e-16
2.50337e-15
-1.11928e-14
4.01096e-14
-8.0602e-14
-3.54278e-14
2.06677e-12
3.38572e-12
1.48561e-12
2.31288e-12
1.19152e-11
2.11042e-11
2.47859e-11
6.27792e-11
-1.18972e-17
-1.282e-17
-1.24625e-17
-4.94974e-18
-2.46185e-19
6.74454e-20
1.01535e-22
-1.74242e-23
-5.04031e-26
-7.04263e-26
3.7284e-26
2.89407e-27
-1.73942e-27
8.66469e-28
8.34242e-28
3.2943e-28
5.49998e-28
6.4201e-27
1.65552e-26
-2.09828e-25
-1.458e-24
2.11413e-24
5.76712e-23
1.86185e-22
-3.63208e-21
-3.35675e-20
1.58748e-19
3.27965e-18
9.23458e-18
-1.06874e-16
-8.97674e-16
-9.42178e-16
1.75519e-14
1.0538e-13
3.14476e-13
6.52741e-13
1.09829e-12
1.54832e-12
1.80514e-12
1.67847e-12
1.2172e-12
8.34697e-13
6.72118e-13
5.48097e-13
3.9358e-13
1.92626e-13
-1.40782e-14
-6.50244e-14
6.86087e-14
1.90773e-13
1.90809e-13
1.25965e-13
5.64005e-14
1.69065e-14
3.50576e-15
3.70443e-16
1.8683e-17
-1.8612e-17
-1.83527e-18
1.43603e-18
-5.45949e-18
-1.61028e-18
-1.29862e-18
-5.4124e-18
4.62309e-17
-3.33734e-16
2.11279e-15
-1.15665e-14
4.97835e-14
-1.31689e-13
8.64916e-14
2.27023e-12
3.44439e-12
1.22082e-12
1.71196e-12
1.09533e-11
2.01121e-11
2.37474e-11
6.35174e-11
-1.29288e-17
-1.37219e-17
-1.35231e-17
-5.62791e-18
-3.36588e-19
8.54247e-20
7.64329e-22
-3.13029e-23
-2.04997e-25
-2.31491e-25
4.94656e-26
1.37428e-26
-3.80168e-27
-3.35049e-28
8.00443e-28
3.57913e-28
5.96964e-28
5.62397e-27
1.4034e-26
-1.38364e-25
-1.11545e-24
-2.20532e-24
1.65331e-23
1.62004e-22
-7.86394e-22
-1.68361e-20
1.07896e-20
1.36973e-18
6.9341e-18
-3.53509e-17
-4.91938e-16
-1.18398e-15
8.19269e-15
6.86571e-14
2.44235e-13
5.74795e-13
1.04612e-12
1.51995e-12
1.75962e-12
1.59346e-12
1.11546e-12
7.16193e-13
5.39737e-13
4.39334e-13
3.19208e-13
1.59649e-13
-1.83625e-14
-1.08934e-13
-2.87394e-14
7.47579e-14
1.11484e-13
8.71717e-14
4.40278e-14
1.47503e-14
3.49612e-15
5.78362e-16
1.04122e-16
-1.50694e-17
5.38573e-19
7.52131e-18
-6.17553e-18
-1.86183e-18
-1.42716e-18
2.50579e-18
-1.89373e-17
-4.12634e-17
1.20452e-15
-1.03303e-14
5.69926e-14
-1.94323e-13
2.60579e-13
2.48443e-12
3.48992e-12
9.61675e-13
1.1014e-12
9.93316e-12
1.89421e-11
2.23671e-11
6.32187e-11
-1.36481e-17
-1.42638e-17
-1.43091e-17
-6.25689e-18
-4.40588e-19
1.02919e-19
2.13942e-21
-4.38024e-23
-1.91931e-25
-5.3895e-25
3.24317e-26
3.80089e-26
-1.86592e-27
-2.09033e-27
4.85409e-28
3.01728e-28
5.95076e-28
4.70611e-27
1.01418e-26
-9.17986e-26
-8.06591e-25
-3.49642e-24
-2.78416e-24
1.06357e-22
3.38662e-22
-6.21542e-21
-3.1428e-20
3.83565e-19
3.95662e-18
-2.62765e-18
-2.12497e-16
-9.70726e-16
2.1872e-15
3.74915e-14
1.71098e-13
4.78549e-13
9.68849e-13
1.47182e-12
1.70326e-12
1.48733e-12
9.93024e-13
6.12612e-13
4.27819e-13
3.4208e-13
2.53724e-13
1.34731e-13
-1.07656e-14
-1.18604e-13
-8.86864e-14
-8.31302e-15
4.72329e-14
5.11477e-14
3.12914e-14
1.21259e-14
3.25539e-15
7.35368e-16
1.99678e-16
7.42692e-18
1.29431e-17
1.57584e-17
-5.8531e-18
-2.00908e-18
-2.02831e-18
1.85892e-17
-1.2365e-16
3.89842e-16
-2.98155e-16
-6.73567e-15
5.58914e-14
-2.25498e-13
4.3231e-13
2.70536e-12
3.52323e-12
6.99372e-13
5.04537e-13
8.89525e-12
1.76539e-11
2.06348e-11
6.22e-11
-1.39106e-17
-1.43112e-17
-1.47144e-17
-6.80937e-18
-5.59491e-19
1.18582e-19
4.32903e-21
-4.64007e-23
6.08943e-25
-1.05464e-24
-7.61007e-26
7.27747e-26
9.27588e-27
-3.32825e-27
7.8403e-29
2.73826e-28
4.13496e-28
3.57928e-27
5.9229e-27
-6.07906e-26
-5.44173e-25
-3.25253e-24
-9.19767e-24
5.62305e-23
5.74043e-22
-8.86918e-22
-2.86775e-20
-2.71469e-21
1.67726e-18
6.45247e-18
-6.01384e-17
-5.78697e-16
-6.00685e-16
1.45918e-14
9.94574e-14
3.61189e-13
8.5256e-13
1.38858e-12
1.62951e-12
1.37183e-12
8.50722e-13
5.07733e-13
3.38976e-13
2.59415e-13
1.9766e-13
1.15002e-13
2.89672e-15
-1.04605e-13
-1.11515e-13
-5.37745e-14
5.75541e-15
2.52821e-14
2.0799e-14
9.39004e-15
2.8352e-15
8.26217e-16
2.91884e-16
4.78429e-17
3.58939e-17
2.41337e-17
-4.79484e-18
-1.93814e-18
-3.55165e-18
3.96708e-17
-2.53213e-16
9.4978e-16
-2.40873e-15
-5.75718e-16
4.23565e-14
-1.3461e-13
6.55486e-13
2.9388e-12
3.53496e-12
4.34445e-13
-7.16542e-14
7.89222e-12
1.63024e-11
1.86882e-11
5.97472e-11
-1.35796e-17
-1.37445e-17
-1.46329e-17
-7.25723e-18
-6.95466e-19
1.30828e-19
7.21845e-21
-2.69718e-23
3.7582e-24
-1.71335e-24
-3.75086e-25
9.4808e-26
3.07867e-26
-3.72126e-27
-2.60885e-28
8.53597e-28
2.35653e-28
2.21465e-27
2.40988e-27
-3.85822e-26
-3.4172e-25
-2.50154e-24
-9.50962e-24
2.37616e-23
4.80977e-22
1.11365e-21
-1.59167e-20
-9.41702e-20
4.22197e-19
5.57358e-18
-9.67334e-19
-2.55119e-16
-1.14308e-15
2.52329e-15
4.47313e-14
2.31311e-13
6.88734e-13
1.26058e-12
1.54287e-12
1.2792e-12
7.30532e-13
4.0272e-13
2.6764e-13
1.91663e-13
1.5017e-13
9.77764e-14
1.76778e-14
-7.88566e-14
-1.0705e-13
-6.82604e-14
-1.40146e-14
1.13918e-14
1.35088e-14
6.74515e-15
2.30166e-15
8.54877e-16
3.69831e-16
1.00373e-16
6.72358e-17
3.04219e-17
-3.59394e-18
-1.83287e-18
-5.10376e-18
5.48512e-17
-3.58751e-16
1.56156e-15
-5.05286e-15
7.9851e-15
2.76214e-14
-1.74911e-13
9.01068e-13
3.18098e-12
3.51709e-12
1.55891e-13
-5.77171e-13
6.97109e-12
1.49295e-11
1.66364e-11
5.5916e-11
-1.25485e-17
-1.24746e-17
-1.40327e-17
-7.59446e-18
-8.51325e-19
1.37639e-19
1.06338e-20
2.95023e-23
1.24976e-23
-1.98488e-24
-9.58269e-25
5.80062e-26
6.42934e-26
-2.09047e-27
-1.96658e-27
2.28549e-27
8.55633e-28
9.45836e-28
5.98686e-29
-2.22002e-26
-2.01244e-25
-1.75071e-24
-7.70697e-24
6.76148e-24
3.28216e-22
1.4951e-21
-6.17106e-21
-8.31021e-20
-8.46397e-20
2.84303e-18
1.23126e-17
-7.342e-17
-7.96189e-16
-1.47721e-15
1.40737e-14
1.21423e-13
4.84501e-13
1.0789e-12
1.44542e-12
1.22738e-12
6.6857e-13
3.19979e-13
2.04862e-13
1.3646e-13
1.0878e-13
8.08929e-14
3.00921e-14
-5.03391e-14
-8.74911e-14
-6.25663e-14
-1.79797e-14
6.56267e-15
9.0495e-15
4.33514e-15
1.72752e-15
8.31148e-16
4.2669e-16
1.56615e-16
1.02176e-16
3.32149e-17
-2.78222e-18
-1.81284e-18
-5.25668e-18
5.72684e-17
-3.84984e-16
1.98456e-15
-7.75022e-15
2.03196e-14
-1.42248e-14
-1.28178e-13
1.21669e-12
3.42174e-12
3.46386e-12
-1.18093e-13
-9.92285e-13
6.16731e-12
1.35847e-11
1.45517e-11
5.16046e-11
-1.07636e-17
-1.04673e-17
-1.29406e-17
-7.83311e-18
-1.03059e-18
1.36511e-19
1.4258e-20
1.37474e-22
3.27907e-23
-5.00804e-25
-1.87963e-24
-1.30422e-25
1.11836e-25
7.21877e-27
-9.34645e-27
2.52296e-27
3.02848e-27
6.8698e-28
-1.10263e-27
-1.08029e-26
-1.12841e-25
-1.1672e-24
-5.64197e-24
-7.31872e-25
2.04062e-22
1.2826e-21
-1.07522e-21
-5.32792e-20
-2.08855e-19
9.60079e-19
1.05083e-17
1.30771e-18
-3.8016e-16
-1.84025e-15
1.13337e-15
5.12582e-14
2.92956e-13
8.4727e-13
1.33235e-12
1.20773e-12
6.52904e-13
2.64342e-13
1.48778e-13
9.04811e-14
7.12215e-14
6.30243e-14
3.8118e-14
-2.48376e-14
-6.34634e-14
-4.71221e-14
-1.26368e-14
6.7207e-15
6.5346e-15
2.27609e-15
1.1619e-15
7.70761e-16
4.5882e-16
2.09756e-16
1.34533e-16
3.26079e-17
-2.50185e-18
-1.14142e-18
-3.77577e-18
5.24735e-17
-3.06272e-16
1.83466e-15
-8.94922e-15
3.36575e-14
-8.75251e-14
4.50178e-14
1.58082e-12
3.6446e-12
3.33459e-12
-3.98746e-13
-1.27643e-12
5.53334e-12
1.22976e-11
1.25668e-11
4.57398e-11
-8.24025e-18
-7.76231e-18
-1.14513e-17
-7.99088e-18
-1.2372e-18
1.24317e-19
1.75279e-20
2.98972e-22
7.37187e-23
5.52577e-24
-3.02029e-24
-6.26853e-25
1.60525e-25
3.92578e-26
-2.45898e-26
-4.34574e-27
5.22531e-27
2.26672e-27
-9.63705e-28
-3.79939e-27
-6.15516e-26
-7.61189e-25
-3.95125e-24
-3.4416e-24
1.20795e-22
9.48173e-22
9.89057e-22
-2.94393e-20
-1.89504e-19
7.09685e-20
6.32969e-18
2.14874e-17
-1.26124e-16
-1.24671e-15
-2.72168e-15
1.51962e-14
1.55229e-13
6.07165e-13
1.19177e-12
1.20338e-12
6.66505e-13
2.33653e-13
1.04258e-13
5.23395e-14
3.72004e-14
4.37587e-14
4.11071e-14
-5.19254e-15
-4.19382e-14
-3.03013e-14
-3.57215e-15
8.82553e-15
5.07912e-15
6.26913e-16
6.27154e-16
6.90155e-16
4.65701e-16
2.59575e-16
1.62708e-16
3.01281e-17
-2.69787e-18
-1.15262e-18
-3.47067e-18
5.81222e-17
-1.85892e-16
1.05785e-15
-6.90404e-15
3.75803e-14
-9.25258e-14
3.23985e-13
1.94578e-12
3.82777e-12
3.13381e-12
-6.50631e-13
-1.38187e-12
5.08803e-12
1.10923e-11
1.06926e-11
3.89439e-11
-5.07019e-18
-4.47588e-18
-9.69223e-18
-8.08557e-18
-1.47466e-18
9.72736e-20
1.95024e-20
4.72113e-22
1.43346e-22
2.06978e-23
-3.782e-24
-1.62406e-24
1.64059e-25
1.30706e-25
-3.17694e-26
-2.52113e-26
1.43079e-27
4.69743e-27
6.47952e-28
-2.37719e-29
-3.35243e-26
-4.93412e-25
-2.7249e-24
-4.01922e-24
6.92819e-23
6.56e-22
1.5647e-21
-1.45179e-20
-1.37278e-19
-2.42938e-19
3.17807e-18
2.10615e-17
-1.10034e-17
-6.7341e-16
-2.99981e-15
2.29846e-17
7.21768e-14
4.06533e-13
1.02118e-12
1.20684e-12
7.07902e-13
2.29201e-13
7.402e-14
2.29463e-14
7.84717e-15
2.38068e-14
3.94868e-14
8.2082e-15
-2.60486e-14
-1.71928e-14
5.13812e-15
1.08945e-14
3.8381e-15
-6.43847e-16
1.94872e-16
6.47727e-16
4.65449e-16
2.86991e-16
1.86333e-16
2.37283e-17
-3.82844e-18
-4.35021e-18
1.64558e-19
1.58269e-16
-3.57049e-16
8.22812e-16
-2.48252e-15
2.00283e-14
8.26141e-14
6.05879e-13
2.33727e-12
3.93143e-12
2.8465e-12
-8.56929e-13
-1.28444e-12
4.86173e-12
1.00039e-11
8.89556e-12
3.29019e-11
-1.41677e-18
-7.8631e-19
-7.73982e-18
-8.13122e-18
-1.74495e-18
5.09552e-20
1.87087e-20
5.20373e-22
2.40741e-22
5.158e-23
-2.72434e-24
-3.38941e-24
-3.90813e-26
3.29595e-25
1.87204e-26
-5.42654e-26
-1.57673e-26
3.90254e-27
3.08108e-27
2.02472e-27
-1.86639e-26
-3.20951e-25
-1.87278e-24
-3.69472e-24
3.87486e-23
4.38307e-22
1.51624e-21
-6.19478e-21
-9.00507e-20
-3.01629e-19
1.31295e-18
1.54939e-17
2.94595e-17
-3.04731e-16
-2.2622e-15
-4.77352e-15
2.7773e-14
2.58243e-13
8.39403e-13
1.20547e-12
7.87966e-13
2.54994e-13
6.09347e-14
4.81043e-15
-1.51861e-14
4.05861e-15
3.40837e-14
1.69199e-14
-1.5904e-14
-1.02256e-14
1.09053e-14
1.19106e-14
2.21164e-15
-1.75861e-15
-1.36001e-16
6.34984e-16
4.3255e-16
2.41503e-16
1.54539e-16
-2.11505e-18
-6.51661e-18
-1.50812e-17
2.70358e-17
5.89567e-16
-1.04901e-15
1.77165e-15
-3.65065e-16
3.87182e-14
1.88656e-13
9.3499e-13
2.74935e-12
3.94378e-12
2.47922e-12
-9.70211e-13
-9.55358e-13
4.84122e-12
9.04923e-12
7.21427e-12
2.54036e-11
2.50561e-18
3.08771e-18
-5.70978e-18
-8.14252e-18
-2.04786e-18
-1.96764e-20
1.29891e-20
1.5292e-22
3.5145e-22
1.09364e-22
3.7411e-24
-6.20979e-24
-9.31909e-25
5.90679e-25
1.98353e-25
-5.36179e-26
-4.39074e-26
-5.11372e-27
4.20405e-27
3.4009e-27
-1.06837e-26
-2.10841e-25
-1.2829e-24
-3.00602e-24
2.12546e-23
2.85428e-22
1.24238e-21
-1.97541e-21
-5.56755e-20
-2.64903e-19
3.49966e-19
1.01275e-17
3.76821e-17
-1.01568e-16
-1.45908e-15
-5.27631e-15
6.17356e-15
1.55773e-13
6.6167e-13
1.17914e-12
9.15027e-13
3.20002e-13
7.17143e-14
3.54085e-15
-2.84275e-14
-1.42186e-14
2.53306e-14
2.30182e-14
-9.02431e-15
-9.51282e-15
1.2024e-14
1.16152e-14
4.53989e-16
-2.66744e-15
-2.94472e-16
6.75191e-16
5.18482e-16
4.65724e-16
8.41973e-17
8.0934e-18
2.41597e-18
-4.23922e-17
1.17611e-16
1.5433e-15
-1.56088e-15
-1.4414e-15
3.41263e-14
3.35261e-13
3.78663e-13
1.34005e-12
3.11505e-12
3.80618e-12
2.06448e-12
-9.45041e-13
-4.14703e-13
5.01845e-12
8.23057e-12
5.71074e-12
1.94284e-11
6.46442e-18
6.91478e-18
-3.72906e-18
-8.13274e-18
-2.38029e-18
-1.19899e-19
-6.82944e-22
-1.15189e-21
4.41766e-22
2.14991e-22
2.47341e-23
-9.49466e-24
-3.41148e-24
5.83599e-25
5.41059e-25
4.49709e-26
-6.21081e-26
-2.297e-26
1.64935e-27
4.25351e-27
-6.26585e-27
-1.40794e-25
-8.7016e-25
-2.22128e-24
1.15929e-23
1.81277e-22
9.21142e-22
-1.09593e-22
-3.29114e-20
-2.01419e-19
-7.26096e-20
6.18851e-18
3.37848e-17
-2.65279e-18
-8.53918e-16
-4.37443e-15
-3.21656e-15
8.76219e-14
4.98391e-13
1.10817e-12
1.06742e-12
4.43811e-13
1.17899e-13
2.6907e-14
-2.59516e-14
-2.85125e-14
1.37806e-14
2.74631e-14
-2.18683e-15
-1.23035e-14
9.03963e-15
1.01796e-14
-1.18492e-15
-3.28115e-15
-1.48755e-16
5.42305e-16
2.33437e-17
2.37592e-16
2.0237e-16
7.01532e-17
-3.61477e-18
-1.15345e-16
5.40549e-16
3.48091e-15
-2.40262e-15
-9.10463e-15
3.70672e-13
3.5473e-13
5.41748e-13
1.7836e-12
3.3831e-12
3.5239e-12
1.64895e-12
-7.61894e-13
3.32074e-13
5.33733e-12
7.5294e-12
4.42595e-12
1.19146e-11
1.02434e-17
1.0482e-17
-1.91172e-18
-8.10893e-18
-2.73577e-18
-2.56132e-19
-2.50585e-20
-4.27309e-21
4.28331e-22
3.98433e-22
7.83621e-23
-9.74766e-24
-8.31457e-24
-4.12593e-25
9.38045e-25
3.00213e-25
-3.74177e-26
-4.50551e-26
-5.54675e-27
4.7569e-27
-3.80029e-27
-9.68393e-26
-5.80971e-25
-1.49849e-24
6.40615e-24
1.12203e-22
6.34258e-22
5.25399e-22
-1.87749e-20
-1.40055e-19
-2.05099e-19
3.61952e-18
2.63281e-17
3.64204e-17
-4.62502e-16
-3.22335e-15
-6.39038e-15
4.41524e-14
3.54981e-13
9.83308e-13
1.2002e-12
6.45172e-13
2.12877e-13
8.21868e-14
-3.84664e-16
-3.32044e-14
9.2303e-16
3.00455e-14
6.53921e-15
-1.69101e-14
3.4812e-15
9.38526e-15
-1.77035e-15
-3.92122e-15
6.68443e-16
1.33732e-15
4.24501e-17
2.30011e-16
5.47287e-16
-3.87682e-16
-6.30151e-17
-2.84463e-16
2.73789e-15
9.2417e-15
-5.8231e-15
3.4014e-14
3.12383e-13
3.08719e-13
7.88323e-13
2.2609e-12
3.49026e-12
3.12469e-12
1.32418e-12
-4.20245e-13
1.22451e-12
5.73931e-12
6.9143e-12
3.34002e-12
4.01065e-12
1.36705e-17
1.36157e-17
-3.39614e-19
-8.06573e-18
-3.10367e-18
-4.32996e-19
-6.45645e-20
-1.06469e-20
9.18147e-23
6.81906e-22
1.92436e-22
1.70275e-24
-1.53565e-23
-3.34598e-24
1.02625e-24
7.05237e-25
7.19898e-26
-6.30651e-26
-2.06931e-26
4.78505e-27
-1.25863e-27
-6.92649e-26
-3.77806e-25
-9.18144e-25
3.56091e-24
6.73088e-23
4.11389e-22
6.04745e-22
-1.04329e-20
-9.14167e-20
-2.05331e-19
2.06012e-18
1.88919e-17
4.44e-17
-2.32205e-16
-2.20671e-15
-6.51661e-15
1.85154e-14
2.3573e-13
8.13518e-13
1.2701e-12
9.05445e-13
3.68186e-13
1.77285e-13
5.70337e-14
-1.96813e-14
-1.02944e-14
3.00168e-14
2.06836e-14
-1.95427e-14
-6.23874e-15
8.29102e-15
-1.66456e-17
-5.41503e-15
2.27839e-16
2.64768e-15
1.58112e-15
1.06207e-15
-6.71142e-16
1.09412e-15
7.01307e-17
6.56238e-16
1.36262e-14
2.69544e-14
5.24123e-15
1.8795e-13
3.20075e-13
3.77987e-13
1.17616e-12
2.67802e-12
3.40843e-12
2.69059e-12
1.12323e-12
9.33798e-14
2.21157e-12
6.14952e-12
6.34424e-12
2.39926e-12
-5.88482e-13
1.66318e-17
1.61895e-17
9.46809e-19
-7.98364e-18
-3.46824e-18
-6.51699e-19
-1.24493e-19
-2.25337e-20
-1.0921e-21
1.0367e-21
4.02315e-22
4.11225e-23
-2.19859e-23
-9.09433e-24
1.38581e-25
1.14255e-24
3.27738e-25
-4.67054e-26
-4.86661e-26
-1.76722e-27
2.3694e-27
-4.90999e-26
-2.27553e-25
-4.9431e-25
1.78058e-24
3.80175e-23
2.52137e-22
4.89038e-22
-5.69306e-21
-5.70335e-20
-1.61064e-19
1.15752e-18
1.28306e-17
3.89925e-17
-1.0643e-16
-1.42404e-15
-5.34587e-15
5.01548e-15
1.43795e-13
6.22199e-13
1.24174e-12
1.16286e-12
6.00412e-13
3.21813e-13
1.56322e-13
2.24257e-14
-1.45292e-14
2.52137e-14
3.94354e-14
-1.1997e-14
-1.78057e-14
3.18377e-15
5.12767e-15
-3.94005e-15
-3.71644e-15
-7.34483e-16
-2.3139e-15
-4.37243e-15
-2.82617e-15
2.88566e-15
-8.97532e-15
1.61583e-14
5.89678e-14
8.12539e-14
1.08849e-13
2.34813e-13
3.71143e-13
6.12125e-13
1.68863e-12
2.98957e-12
3.20323e-12
2.34256e-12
1.09432e-12
7.41742e-13
3.20631e-12
6.48201e-12
5.77556e-12
1.59653e-12
-2.41542e-12
1.90701e-17
1.81096e-17
1.95703e-18
-7.83192e-18
-3.80934e-18
-9.09643e-19
-2.10241e-19
-4.31601e-20
-4.15504e-21
1.30573e-21
7.41471e-22
1.35962e-22
-2.1884e-23
-1.83882e-23
-2.7445e-24
1.33643e-24
7.79793e-25
7.52178e-26
-7.04657e-26
-2.21146e-26
3.81106e-28
-3.3555e-26
-1.08047e-25
-1.81659e-25
4.20175e-25
1.77984e-23
1.41337e-22
3.38905e-22
-3.04059e-21
-3.43746e-20
-1.12388e-19
6.50486e-19
8.40917e-18
2.99173e-17
-4.17794e-17
-8.69069e-16
-3.87028e-15
-1.09011e-15
7.93876e-14
4.37046e-13
1.10818e-12
1.35436e-12
9.04429e-13
5.27427e-13
3.09231e-13
1.03783e-13
-3.17478e-15
1.57519e-14
5.65727e-14
9.71472e-15
-2.34255e-14
-1.10131e-14
3.98987e-15
5.42772e-15
-1.6127e-15
-7.99099e-16
6.28229e-16
4.51368e-15
1.33462e-14
-1.26731e-15
-1.31835e-14
1.08001e-13
1.96251e-13
2.46095e-13
3.39658e-13
4.55215e-13
5.93374e-13
1.02103e-12
2.22836e-12
3.1543e-12
2.96843e-12
2.13694e-12
1.24839e-12
1.49866e-12
4.14072e-12
6.66578e-12
5.17098e-12
9.30515e-13
-2.22665e-12
2.09741e-17
1.93912e-17
2.76775e-18
-7.58075e-18
-4.09233e-18
-1.2008e-18
-3.25924e-19
-7.63965e-20
-1.07093e-20
1.11828e-21
1.21612e-21
3.27004e-22
-1.54043e-24
-3.13664e-23
-9.26895e-24
6.71553e-25
1.36502e-24
3.6987e-25
-3.87034e-26
-4.10078e-26
-9.35849e-27
-2.95786e-26
-1.07783e-26
1.17765e-25
-6.44816e-25
2.08778e-24
5.91307e-23
2.02329e-22
-1.51869e-21
-1.98122e-20
-7.22135e-20
3.69572e-19
5.37269e-18
2.12617e-17
-1.11633e-17
-5.00977e-16
-2.57103e-15
-3.10375e-15
3.91224e-14
2.80718e-13
8.94414e-13
1.42493e-12
1.21408e-12
7.95705e-13
5.27126e-13
2.36915e-13
3.4281e-14
5.47285e-15
6.59234e-14
4.16777e-14
-9.84532e-15
-2.00309e-14
-1.08975e-14
6.60494e-15
6.76853e-15
6.40108e-15
1.0683e-14
1.31738e-14
4.60555e-15
-7.19934e-14
6.25946e-14
3.55019e-13
4.71031e-13
5.82033e-13
6.3004e-13
7.64681e-13
9.0577e-13
1.60663e-12
2.74748e-12
3.20837e-12
2.82299e-12
2.12203e-12
1.59156e-12
2.31391e-12
4.93207e-12
6.64581e-12
4.51301e-12
4.02012e-13
-2.74148e-12
2.23684e-17
2.02242e-17
3.49855e-18
-7.17309e-18
-4.30146e-18
-1.50926e-18
-4.71826e-19
-1.25731e-19
-2.27446e-20
-1.34124e-22
1.77175e-21
6.63657e-22
6.54546e-23
-4.45314e-23
-2.17561e-23
-2.31641e-24
1.74788e-24
8.41623e-25
6.58919e-26
-4.27613e-26
-5.04935e-27
-2.40768e-26
7.75347e-26
5.40824e-25
-1.05553e-24
-1.14072e-23
-1.26477e-23
7.07701e-23
-5.90596e-22
-1.02759e-20
-4.20852e-20
2.134e-19
3.34434e-18
1.42705e-17
1.33729e-18
-2.74325e-16
-1.59802e-15
-3.11727e-15
1.69613e-14
1.6518e-13
6.48689e-13
1.35539e-12
1.45476e-12
1.10806e-12
8.05934e-13
4.36576e-13
1.12579e-13
1.32943e-15
6.78894e-14
7.51e-14
1.84914e-14
-7.16921e-15
-2.02991e-14
-8.78085e-15
8.71635e-15
7.69874e-15
-9.6196e-16
-2.11377e-14
-9.10331e-14
-2.72168e-14
4.05351e-13
6.36597e-13
7.5702e-13
8.78662e-13
9.75549e-13
1.12597e-12
1.4111e-12
2.28354e-12
3.13086e-12
3.20511e-12
2.78154e-12
2.27046e-12
2.04325e-12
3.09068e-12
5.47531e-12
6.38302e-12
3.79846e-12
-1.92653e-14
-3.57725e-12
2.33036e-17
2.0784e-17
4.2403e-18
-6.57493e-18
-4.40835e-18
-1.806e-18
-6.40866e-19
-1.92526e-19
-4.20888e-20
-3.21424e-21
2.27861e-21
1.19466e-21
2.2352e-22
-4.41329e-23
-4.10934e-23
-1.01925e-23
9.88986e-25
1.40688e-24
2.61585e-25
-6.52844e-26
-3.0457e-27
1.15493e-26
1.8884e-25
1.19169e-24
-9.6963e-26
-2.21472e-23
-8.63527e-23
-9.23946e-23
-1.07889e-23
-3.6175e-21
-1.9887e-20
1.2488e-19
2.00057e-18
8.98498e-18
4.69228e-18
-1.42993e-16
-9.33914e-16
-2.38128e-15
6.26419e-15
8.98909e-14
4.22526e-13
1.16357e-12
1.56739e-12
1.40284e-12
1.12591e-12
7.18272e-13
2.5168e-13
9.54224e-15
6.16533e-14
1.09932e-13
5.24006e-14
2.3005e-14
-4.97199e-15
-1.70329e-14
-4.3212e-15
-8.92e-15
-2.67862e-14
-4.38663e-14
9.61728e-15
3.83964e-13
5.50946e-13
5.17495e-13
6.92874e-13
9.11693e-13
1.16754e-12
1.44819e-12
1.94578e-12
2.80856e-12
3.3173e-12
3.15466e-12
2.81028e-12
2.48221e-12
2.51233e-12
3.72289e-12
5.70636e-12
5.87581e-12
3.04277e-12
-3.72022e-13
-4.42364e-12
2.38469e-17
2.11685e-17
4.95075e-18
-5.74643e-18
-4.35522e-18
-2.04809e-18
-8.15535e-19
-2.73648e-19
-6.94574e-20
-8.81771e-21
2.55499e-21
1.96298e-21
5.35434e-22
-6.05122e-25
-6.17151e-23
-2.48008e-23
-2.56328e-24
1.68631e-24
6.49338e-25
-8.81302e-26
-8.64113e-26
3.15678e-27
2.50753e-25
1.89542e-24
2.78105e-24
-2.65292e-23
-1.63424e-22
-3.33627e-22
2.53847e-22
1.54239e-21
-2.34668e-21
7.5209e-20
1.13057e-18
5.26812e-18
4.37666e-18
-7.02927e-17
-5.10763e-16
-1.55788e-15
1.76161e-15
4.59392e-14
2.49765e-13
8.91108e-13
1.5141e-12
1.60673e-12
1.44631e-12
1.0799e-12
4.81606e-13
4.4815e-14
4.4499e-14
1.53144e-13
9.84855e-14
6.23401e-14
2.7829e-14
2.58697e-15
-2.72741e-15
-1.25266e-14
-1.63159e-14
1.62083e-14
1.78504e-13
2.4976e-13
1.56494e-13
1.39402e-13
2.81514e-13
5.51621e-13
9.38534e-13
1.45242e-12
2.21731e-12
3.01954e-12
3.24559e-12
2.99462e-12
2.78608e-12
2.62295e-12
2.85798e-12
4.08682e-12
5.58575e-12
5.16042e-12
2.28346e-12
-6.81774e-13
-4.90061e-12
2.40774e-17
2.13837e-17
5.52317e-18
-4.64839e-18
-4.08299e-18
-2.18309e-18
-9.67104e-19
-3.59066e-19
-1.02986e-19
-1.70795e-20
2.4629e-21
3.01035e-21
1.07551e-21
1.28218e-22
-6.90311e-23
-4.37454e-23
-9.79589e-24
1.00565e-24
1.16475e-24
5.6796e-26
-1.7742e-25
-1.3579e-25
6.24268e-26
2.06568e-24
7.10246e-24
-1.93233e-23
-2.28296e-22
-6.80112e-22
7.65247e-23
5.94397e-21
1.46026e-20
5.45397e-20
6.00797e-19
2.88838e-18
3.18049e-18
-3.21445e-17
-2.61299e-16
-9.17348e-16
1.71652e-16
2.24279e-14
1.35858e-13
6.08622e-13
1.28672e-12
1.66778e-12
1.67678e-12
1.45986e-12
8.21261e-13
1.33708e-13
1.21877e-14
2.02785e-13
1.7529e-13
1.30811e-13
7.59976e-14
3.80183e-14
3.24956e-14
2.8301e-14
5.27553e-14
1.16975e-13
1.78334e-13
1.8918e-13
2.39706e-13
2.62982e-13
2.42009e-13
3.59554e-13
7.00561e-13
1.32964e-12
2.22495e-12
2.84643e-12
2.82883e-12
2.62559e-12
2.55099e-12
2.5325e-12
2.92722e-12
4.08115e-12
5.11692e-12
4.29602e-12
1.56524e-12
-9.6014e-13
-4.75541e-12
2.40749e-17
2.12453e-17
6.03428e-18
-3.25951e-18
-3.54127e-18
-2.1564e-18
-1.05785e-18
-4.30554e-19
-1.36459e-19
-2.6616e-20
2.20066e-21
4.42284e-21
1.9236e-21
3.85273e-22
-4.75183e-23
-6.21258e-23
-1.90208e-23
-1.61829e-25
1.68297e-24
2.87457e-25
-1.13364e-25
-1.40324e-25
-2.02877e-25
1.42472e-24
1.10359e-23
2.06316e-24
-2.48526e-22
-1.09494e-21
-7.41386e-22
9.57876e-21
3.45275e-20
6.09415e-20
3.06689e-19
1.48712e-18
2.02185e-18
-1.36886e-17
-1.26394e-16
-5.01844e-16
-2.41548e-16
1.05064e-14
6.87147e-14
3.762e-13
9.55931e-13
1.53821e-12
1.73606e-12
1.73285e-12
1.22068e-12
3.03362e-13
-4.17315e-14
2.33721e-13
2.74753e-13
2.51887e-13
1.73991e-13
9.20628e-14
7.61244e-14
8.73421e-14
1.18085e-13
1.69834e-13
2.46687e-13
4.15511e-13
5.10335e-13
5.61898e-13
5.93394e-13
6.38275e-13
8.38605e-13
1.36916e-12
2.01577e-12
2.26712e-12
2.1074e-12
1.9881e-12
2.01082e-12
2.15161e-12
2.65606e-12
3.69065e-12
4.35805e-12
3.36298e-12
9.34009e-13
-1.18651e-12
-4.17424e-12
2.39074e-17
2.06102e-17
6.79489e-18
-1.56039e-18
-2.68983e-18
-1.91641e-18
-1.04482e-18
-4.62155e-19
-1.57926e-19
-3.31731e-20
2.96233e-21
6.52789e-21
3.20232e-21
8.13138e-22
4.94737e-24
-8.63332e-23
-3.14972e-23
2.92796e-25
3.7948e-24
6.26765e-25
-3.47737e-25
2.88215e-26
-3.10284e-26
6.81084e-25
1.23175e-23
3.15972e-23
-1.92919e-22
-1.44481e-21
-2.2975e-21
1.15575e-20
5.90022e-20
9.5992e-20
1.67934e-19
7.30981e-19
1.17611e-18
-5.51056e-18
-5.87074e-17
-2.59962e-16
-2.58142e-16
4.73845e-15
3.25563e-14
2.13235e-13
6.30633e-13
1.23724e-12
1.58837e-12
1.79003e-12
1.56784e-12
5.76486e-13
-1.14764e-13
2.07654e-13
3.43495e-13
3.93495e-13
3.40857e-13
2.12925e-13
1.23704e-13
1.34911e-13
1.7869e-13
2.41634e-13
3.78126e-13
4.72504e-13
4.93701e-13
5.43719e-13
7.35959e-13
9.7044e-13
1.24019e-12
1.63534e-12
1.84709e-12
1.6545e-12
1.31973e-12
1.20665e-12
1.29573e-12
1.52589e-12
2.08239e-12
2.99739e-12
3.43957e-12
2.47119e-12
4.2746e-13
-1.35336e-12
-3.55667e-12
2.36362e-17
1.9804e-17
7.894e-18
4.47153e-19
-1.50032e-18
-1.41654e-18
-8.8269e-19
-4.21804e-19
-1.49302e-19
-2.83545e-20
7.95883e-21
1.03873e-20
5.24897e-21
1.50617e-21
8.38587e-23
-1.48388e-22
-6.83409e-23
-2.24574e-24
1.06239e-23
3.70668e-24
-8.38248e-25
-8.3282e-25
-2.31679e-25
4.0277e-26
9.66368e-24
5.30401e-23
-6.74948e-23
-1.53454e-21
-4.3294e-21
1.04191e-20
8.61642e-20
1.63023e-19
1.32256e-19
3.4265e-19
6.39185e-19
-2.12905e-18
-2.65267e-17
-1.28402e-16
-1.78948e-16
2.06173e-15
1.4647e-14
1.11932e-13
3.73925e-13
8.80052e-13
1.28143e-12
1.60917e-12
1.72495e-12
9.45657e-13
-1.7435e-13
9.98121e-14
3.1622e-13
4.67481e-13
5.17175e-13
4.22171e-13
2.63354e-13
2.37499e-13
2.9157e-13
4.1613e-13
6.00132e-13
6.72078e-13
6.04198e-13
5.84414e-13
7.29815e-13
1.05799e-12
1.49617e-12
1.84008e-12
1.73103e-12
1.22705e-12
7.71011e-13
5.98991e-13
6.37952e-13
8.49384e-13
1.39335e-12
2.18579e-12
2.52651e-12
1.71832e-12
4.90081e-14
-1.49748e-12
-2.91233e-12
2.32567e-17
1.91475e-17
9.33379e-18
2.72487e-18
3.63094e-20
-6.17834e-19
-5.25632e-19
-2.7304e-19
-8.68793e-20
1.0533e-21
2.34914e-20
1.8593e-20
9.01212e-21
2.77227e-21
2.44115e-22
-2.87103e-22
-1.80071e-22
-3.59215e-23
1.65989e-23
1.39778e-23
2.58881e-24
-2.17036e-24
-2.08832e-24
-1.59908e-24
4.36229e-24
5.1718e-23
6.37612e-23
-1.2472e-21
-6.07865e-21
5.17379e-21
1.09964e-19
2.62577e-19
1.79647e-19
1.48235e-19
3.18979e-19
-7.94935e-19
-1.15842e-17
-6.02472e-17
-1.02417e-16
8.64501e-16
6.32854e-15
5.48547e-14
2.01442e-13
5.6443e-13
9.23446e-13
1.27313e-12
1.61819e-12
1.32654e-12
-1.28316e-13
-7.1462e-14
1.67311e-13
3.91924e-13
5.90992e-13
6.20868e-13
5.20891e-13
4.51843e-13
5.05052e-13
6.85878e-13
8.53904e-13
8.53178e-13
7.30704e-13
6.88148e-13
8.05343e-13
1.15915e-12
1.63818e-12
1.93017e-12
1.71062e-12
1.14219e-12
6.41798e-13
3.83486e-13
2.94721e-13
4.07549e-13
8.37438e-13
1.48044e-12
1.78109e-12
1.15762e-12
-2.4257e-13
-1.65324e-12
-2.04939e-12
2.27686e-17
1.88557e-17
1.10485e-17
5.19552e-18
1.89872e-18
5.04149e-19
6.91691e-20
2.3125e-20
5.76866e-20
7.30109e-20
5.9641e-20
3.6123e-20
1.66547e-20
5.44339e-21
7.51684e-22
-4.68093e-22
-4.13945e-22
-1.53885e-22
-8.50929e-24
2.48597e-23
1.50829e-23
3.01975e-24
-8.84309e-25
-1.19227e-24
2.31859e-24
3.40533e-23
1.21372e-22
-7.03552e-22
-6.60847e-21
-3.34721e-21
1.21802e-19
3.87088e-19
3.1366e-19
6.48209e-20
1.33894e-19
-2.96485e-19
-4.84958e-18
-2.6566e-17
-5.09501e-17
3.50602e-16
2.62524e-15
2.52315e-14
9.94683e-14
3.31909e-13
6.00592e-13
8.97046e-13
1.31175e-12
1.54725e-12
1.50284e-13
-2.07582e-13
-5.379e-14
1.6974e-13
4.86685e-13
6.72446e-13
7.44181e-13
7.09327e-13
7.87111e-13
9.96962e-13
1.09583e-12
9.58677e-13
7.74688e-13
7.66253e-13
9.35469e-13
1.28259e-12
1.6619e-12
1.79864e-12
1.53774e-12
1.07254e-12
6.96161e-13
4.56272e-13
3.11836e-13
3.1405e-13
5.72494e-13
1.04785e-12
1.30487e-12
7.66754e-13
-5.24912e-13
-1.82883e-12
-1.26489e-12
2.22768e-17
1.89512e-17
1.29196e-17
7.75035e-18
4.02738e-18
1.94821e-18
9.33727e-19
5.04444e-19
3.1562e-19
2.09419e-19
1.30257e-19
7.08673e-20
3.2174e-20
1.13081e-20
2.32118e-21
-4.50689e-22
-7.30963e-22
-3.92644e-22
-1.12534e-22
4.67316e-24
2.55695e-23
1.80821e-23
1.15039e-23
9.41343e-24
1.07586e-23
2.2737e-23
9.08083e-23
-2.22343e-22
-5.53062e-21
-1.21138e-20
1.14612e-19
5.17614e-19
5.47322e-19
7.73707e-20
2.35123e-20
-1.20278e-19
-1.93776e-18
-1.09224e-17
-2.25344e-17
1.37905e-16
1.04452e-15
1.09389e-14
4.46574e-14
1.80029e-13
3.55523e-13
5.67424e-13
9.30799e-13
1.49914e-12
6.34156e-13
-1.21483e-13
-2.07994e-13
-6.44099e-14
2.59406e-13
5.5298e-13
7.7811e-13
8.54895e-13
9.85038e-13
1.16727e-12
1.1829e-12
1.01332e-12
8.18864e-13
8.11127e-13
1.01152e-12
1.32299e-12
1.51912e-12
1.44242e-12
1.14352e-12
8.30405e-13
6.50776e-13
5.5073e-13
4.60329e-13
4.30669e-13
5.71242e-13
8.79617e-13
1.03966e-12
4.36857e-13
-8.79353e-13
-2.0061e-12
-6.63665e-13
2.1859e-17
1.93387e-17
1.48006e-17
1.02621e-17
6.32476e-18
3.67661e-18
2.07739e-18
1.19996e-18
7.17137e-19
4.34118e-19
2.51981e-19
1.33445e-19
6.17151e-20
2.35251e-20
6.39825e-21
3.6109e-22
-9.15445e-22
-7.02793e-22
-3.11807e-22
-8.31294e-23
-5.85397e-25
1.82673e-23
1.97055e-23
1.86435e-23
1.69736e-23
1.41227e-23
2.08164e-23
-3.53493e-23
-3.42986e-21
-1.73999e-20
8.73051e-20
6.24597e-19
8.87332e-19
2.31532e-19
-3.31491e-20
-7.20899e-20
-7.33264e-19
-4.14556e-18
-8.98112e-18
5.20805e-17
3.96863e-16
4.49412e-15
1.78231e-14
9.00501e-14
1.93422e-13
3.24195e-13
5.80817e-13
1.23815e-12
1.04016e-12
2.92912e-13
-9.05944e-14
-9.54424e-14
1.21627e-13
4.21377e-13
6.62558e-13
8.59771e-13
1.05539e-12
1.22283e-12
1.21487e-12
1.02143e-12
8.30456e-13
8.36262e-13
1.02616e-12
1.27149e-12
1.32384e-12
1.08356e-12
7.04539e-13
4.46545e-13
3.65274e-13
3.87263e-13
4.33398e-13
4.8559e-13
6.12588e-13
8.0457e-13
8.31604e-13
2.42317e-14
-1.34082e-12
-2.12629e-12
-2.0825e-12
2.15227e-17
1.98769e-17
1.65445e-17
1.26004e-17
8.66372e-18
5.60924e-18
3.47446e-18
2.1188e-18
1.28403e-18
7.68637e-19
4.41804e-19
2.35937e-19
1.13178e-19
4.67301e-20
1.53668e-20
3.04278e-21
-5.27784e-22
-9.13214e-22
-5.40235e-22
-2.22135e-22
-7.96919e-23
-3.22695e-23
-1.93116e-23
-1.80179e-23
-2.26725e-23
-3.49627e-23
-6.44073e-23
-7.93877e-23
-1.39356e-21
-1.72145e-20
4.67906e-20
6.73395e-19
1.31462e-18
6.32522e-19
5.65826e-20
-3.44185e-20
-2.73677e-19
-1.43165e-18
-3.24663e-18
1.8444e-17
1.45035e-16
1.76105e-15
6.14225e-15
4.13775e-14
9.72334e-14
1.68136e-13
3.18477e-13
8.79454e-13
1.17259e-12
7.91585e-13
3.57897e-13
2.16943e-13
3.01235e-13
5.14796e-13
7.18172e-13
9.1176e-13
1.11819e-12
1.25262e-12
1.18989e-12
9.74084e-13
8.12071e-13
8.33646e-13
9.93243e-13
1.13239e-12
1.03618e-12
6.57826e-13
2.09507e-13
-8.17384e-14
-1.595e-13
-8.06287e-14
7.2341e-14
2.48951e-13
4.36419e-13
5.8013e-13
4.76996e-13
-6.01597e-13
-1.85104e-12
-2.21027e-12
-2.67609e-12
2.12367e-17
2.04234e-17
1.80255e-17
1.46479e-17
1.09015e-17
7.62611e-18
5.05606e-18
3.23786e-18
2.01896e-18
1.22493e-18
7.12529e-19
3.8911e-19
1.94682e-19
8.6417e-20
3.24427e-20
9.18867e-21
1.0999e-21
-7.62611e-22
-6.79862e-22
-3.31779e-22
-1.50628e-22
-9.63732e-23
-9.2879e-23
-9.96612e-23
-1.10472e-22
-1.26805e-22
-1.47075e-22
-1.01637e-22
-8.73849e-23
-1.25612e-20
6.12208e-21
6.35742e-19
1.75785e-18
1.39743e-18
5.66698e-19
2.53868e-19
-4.93404e-20
-4.54615e-19
-1.05696e-18
5.77511e-18
5.15364e-17
6.65285e-16
1.68146e-15
1.7328e-14
4.5376e-14
7.95083e-14
1.53215e-13
5.3241e-13
1.03977e-12
1.07935e-12
8.53335e-13
7.13441e-13
7.24642e-13
8.36963e-13
9.67965e-13
1.09852e-12
1.22327e-12
1.26742e-12
1.13176e-12
9.06806e-13
7.67246e-13
7.84133e-13
8.88236e-13
8.82445e-13
6.16542e-13
1.21084e-13
-3.89339e-13
-7.26612e-13
-8.46073e-13
-7.81859e-13
-6.01888e-13
-3.52825e-13
-1.10242e-13
2.14741e-14
-1.67625e-13
-1.4726e-12
-2.20989e-12
-1.99769e-12
-2.36881e-12
2.09587e-17
2.08591e-17
1.91536e-17
1.63119e-17
1.28956e-17
9.57858e-18
6.7103e-18
4.49298e-18
2.89416e-18
1.79596e-18
1.06608e-18
5.97868e-19
3.11559e-19
1.47194e-19
6.09219e-20
2.07179e-20
4.83974e-21
4.9527e-23
-6.61643e-22
-3.7071e-22
-1.16499e-22
-3.85379e-23
-5.78276e-23
-8.40256e-23
-1.06798e-22
-1.22177e-22
-9.68498e-23
9.92017e-23
6.16861e-22
-6.5353e-21
-2.10886e-20
5.07308e-19
2.06853e-18
2.47913e-18
1.75036e-18
1.23965e-18
5.6538e-19
-1.41845e-19
-2.57089e-19
1.25741e-18
1.79576e-17
2.48279e-16
2.30278e-16
6.58499e-15
1.97478e-14
3.43785e-14
6.54975e-14
2.66168e-13
7.58791e-13
1.07141e-12
1.11659e-12
1.09184e-12
1.09873e-12
1.14457e-12
1.19701e-12
1.24119e-12
1.25686e-12
1.18306e-12
9.87137e-13
7.84992e-13
6.75605e-13
6.86868e-13
7.12129e-13
5.51028e-13
1.21984e-13
-4.80749e-13
-1.05023e-12
-1.41995e-12
-1.60025e-12
-1.60938e-12
-1.47666e-12
-1.25317e-12
-1.01309e-12
-8.67115e-13
-1.09047e-12
-2.46848e-12
-2.07366e-12
-1.07918e-12
-1.8198e-12
2.06529e-17
2.11006e-17
1.98806e-17
1.7531e-17
1.45195e-17
1.13081e-17
8.29282e-18
5.77866e-18
3.84472e-18
2.44717e-18
1.48615e-18
8.55588e-19
4.62123e-19
2.2987e-19
1.02538e-19
3.9215e-20
1.16548e-20
1.90618e-21
-4.50416e-22
-4.22957e-22
-2.72425e-23
1.6425e-22
1.95683e-22
1.86219e-22
1.68371e-22
1.77771e-22
2.70012e-22
5.82214e-22
1.10836e-21
-2.16413e-21
-2.83249e-20
3.2326e-19
2.0382e-18
3.41953e-18
3.2988e-18
2.98595e-18
2.11217e-18
1.45143e-19
3.01481e-20
-1.79489e-19
6.1418e-18
9.6839e-17
-1.17457e-16
2.26074e-15
8.02001e-15
1.34306e-14
2.67993e-14
1.01221e-13
4.56278e-13
8.49528e-13
1.08003e-12
1.18186e-12
1.22528e-12
1.24584e-12
1.2454e-12
1.22026e-12
1.15035e-12
1.00641e-12
8.02039e-13
6.31418e-13
5.59509e-13
5.49447e-13
4.63106e-13
1.69978e-13
-3.98515e-13
-1.07835e-12
-1.67874e-12
-2.09734e-12
-2.35354e-12
-2.45524e-12
-2.41297e-12
-2.25322e-12
-2.06611e-12
-1.8837e-12
-2.16547e-12
-3.2924e-12
-1.06516e-12
7.53152e-13
-1.24168e-12
2.02965e-17
2.1105e-17
2.01986e-17
1.82758e-17
1.56764e-17
1.26691e-17
9.64724e-18
6.95978e-18
4.7713e-18
3.11384e-18
1.93357e-18
1.13943e-18
6.33577e-19
3.28143e-19
1.55107e-19
6.46448e-20
2.22024e-20
5.35688e-21
1.78733e-22
-6.07019e-22
-2.28753e-22
1.47629e-22
4.11716e-22
5.37515e-22
6.19976e-22
7.3076e-22
8.94748e-22
1.1688e-21
1.28138e-21
-7.53544e-22
-2.11617e-20
1.51845e-19
1.53739e-18
3.41724e-18
4.03123e-18
4.17571e-18
3.71531e-18
1.19746e-18
1.8401e-19
-4.94248e-19
1.74786e-18
4.29602e-17
-1.36779e-16
6.84069e-16
3.07269e-15
4.33656e-15
1.28554e-14
2.1597e-14
2.15976e-13
5.48053e-13
8.36364e-13
1.00903e-12
1.0906e-12
1.1121e-12
1.09409e-12
1.02743e-12
9.14429e-13
7.5721e-13
5.90397e-13
4.61755e-13
4.14107e-13
3.48156e-13
1.56651e-13
-2.46549e-13
-8.95569e-13
-1.60288e-12
-2.21546e-12
-2.67217e-12
-2.98173e-12
-3.15591e-12
-3.16135e-12
-3.04796e-12
-2.92888e-12
-2.71454e-12
-3.194e-12
-3.4504e-12
8.98605e-13
3.42216e-12
-5.34767e-13
1.98796e-17
2.08671e-17
2.01335e-17
1.85477e-17
1.63107e-17
1.35519e-17
1.06326e-17
7.89517e-18
5.55544e-18
3.70821e-18
2.3483e-18
1.40991e-18
8.00541e-19
4.26541e-19
2.10329e-19
9.35956e-20
3.58385e-20
1.07943e-20
1.72104e-21
-7.37323e-22
-8.86574e-22
-4.10453e-22
1.41116e-22
5.02636e-22
8.15602e-22
1.08846e-21
1.27055e-21
1.28138e-21
6.40312e-22
-1.95545e-21
-1.30052e-20
4.81763e-20
8.20545e-19
2.33267e-18
3.02039e-18
3.06255e-18
3.7178e-18
3.39471e-18
5.46442e-19
-4.1613e-19
-1.50576e-19
2.30264e-17
-9.1706e-17
1.6579e-16
1.20534e-15
5.51826e-16
8.25414e-15
-3.73355e-15
6.78711e-14
2.77044e-13
5.22904e-13
7.02129e-13
7.97758e-13
8.27732e-13
8.12656e-13
7.48592e-13
6.37305e-13
5.06628e-13
3.80931e-13
2.99016e-13
2.46815e-13
1.21192e-13
-1.54273e-13
-6.5258e-13
-1.3282e-12
-2.03113e-12
-2.61789e-12
-3.07053e-12
-3.38889e-12
-3.55552e-12
-3.45032e-12
-3.24135e-12
-3.16007e-12
-3.02228e-12
-3.87567e-12
-2.3043e-12
3.17806e-12
6.31889e-12
1.86455e-13
1.94012e-17
2.04084e-17
1.97338e-17
1.8378e-17
1.64162e-17
1.39028e-17
1.11525e-17
8.46907e-18
6.08604e-18
4.13827e-18
2.66127e-18
1.61784e-18
9.28793e-19
5.01765e-19
2.53278e-19
1.17738e-19
4.89571e-20
1.73844e-20
4.61222e-21
2.15953e-22
-7.70157e-22
-5.14937e-22
-1.84583e-22
1.71444e-22
4.94935e-22
6.61838e-22
6.15312e-22
1.19834e-22
-1.40014e-21
-4.97446e-21
-1.10255e-20
3.67084e-21
3.31627e-19
1.15045e-18
1.44956e-18
8.36052e-19
2.16673e-18
5.26659e-18
1.63461e-18
-1.26316e-19
-1.07335e-18
1.42043e-17
-4.9652e-17
3.29702e-18
6.00751e-16
-8.81297e-16
5.66267e-15
-3.99919e-15
1.34704e-15
9.35329e-14
2.50209e-13
3.9057e-13
4.75698e-13
5.08856e-13
5.03805e-13
4.59286e-13
3.74436e-13
2.78357e-13
2.04149e-13
1.46678e-13
6.36818e-14
-1.20328e-13
-4.76248e-13
-1.02294e-12
-1.67534e-12
-2.3036e-12
-2.83376e-12
-3.24465e-12
-3.52278e-12
-3.52825e-12
-2.98916e-12
-2.43532e-12
-2.34575e-12
-2.54244e-12
-3.6143e-12
6.70748e-13
4.34218e-12
8.48836e-12
4.36207e-13
1.88669e-17
1.97665e-17
1.90612e-17
1.78252e-17
1.60391e-17
1.37357e-17
1.11792e-17
8.62291e-18
6.29182e-18
4.33557e-18
2.81544e-18
1.71933e-18
9.85294e-19
5.28515e-19
2.64495e-19
1.22948e-19
5.26898e-20
2.0747e-20
7.48439e-21
2.85546e-21
1.61782e-21
1.25955e-21
6.17933e-22
1.37205e-22
-4.06728e-22
-1.06101e-21
-1.77625e-21
-2.96277e-21
-5.23488e-21
-9.4137e-21
-1.30256e-20
-1.33757e-20
9.7146e-20
4.13381e-19
5.4892e-19
7.89917e-20
9.66494e-19
4.96588e-18
3.78445e-18
6.07541e-19
-1.51383e-18
8.75168e-18
-2.0781e-17
-5.24521e-17
4.29169e-16
-1.16805e-15
3.0377e-15
1.48892e-15
-1.35654e-14
3.62614e-15
7.30395e-14
1.56237e-13
2.16322e-13
2.44279e-13
2.45677e-13
2.25129e-13
1.73594e-13
1.13211e-13
7.35574e-14
1.43662e-14
-1.1102e-13
-3.53891e-13
-7.70561e-13
-1.31736e-12
-1.91045e-12
-2.43416e-12
-2.8761e-12
-3.21983e-12
-3.39327e-12
-3.02155e-12
-1.54382e-12
-3.49002e-13
-1.69615e-13
-8.46104e-13
-1.18717e-12
4.92946e-12
3.10298e-12
6.63222e-12
4.45776e-13
1.82836e-17
1.8984e-17
1.81802e-17
1.69694e-17
1.52728e-17
1.31324e-17
1.07652e-17
8.37781e-18
6.16951e-18
4.28359e-18
2.79047e-18
1.69522e-18
9.5282e-19
4.90275e-19
2.27515e-19
9.36193e-20
3.40962e-20
1.12881e-20
3.75182e-21
2.41175e-21
2.62822e-21
1.90791e-21
4.05064e-22
-1.64327e-21
-3.69791e-21
-5.31027e-21
-6.59999e-21
-8.25043e-21
-1.08079e-20
-1.4717e-20
-1.62132e-20
-1.81556e-20
1.05982e-20
1.12854e-19
1.11718e-19
-9.1058e-20
6.5408e-19
3.25779e-18
5.74565e-18
2.17528e-18
-1.31827e-18
4.49904e-18
-3.21345e-18
-7.09738e-17
3.39214e-16
-8.74413e-16
7.43047e-16
4.2384e-15
-7.23155e-15
-1.96817e-14
-7.28528e-15
2.48523e-14
5.69571e-14
6.99149e-14
9.4527e-14
9.57061e-14
6.23928e-14
1.96546e-14
-2.67903e-14
-1.09596e-13
-2.71184e-13
-5.61492e-13
-9.92855e-13
-1.5102e-12
-2.00613e-12
-2.42818e-12
-2.76969e-12
-3.01773e-12
-3.04307e-12
-2.02805e-12
9.20324e-13
2.87245e-12
3.43067e-12
2.92242e-12
4.24805e-12
6.63341e-12
2.59633e-13
3.257e-12
4.14789e-13
1.76446e-17
1.80902e-17
1.71466e-17
1.5901e-17
1.42418e-17
1.22277e-17
1.00367e-17
7.83761e-18
5.79649e-18
4.03665e-18
2.62446e-18
1.57321e-18
8.51768e-19
4.00791e-19
1.49103e-19
2.91712e-20
-1.41605e-20
-2.16468e-20
-1.79692e-20
-1.31648e-20
-9.82248e-21
-9.22366e-21
-1.03055e-20
-1.25185e-20
-1.42707e-20
-1.48773e-20
-1.51746e-20
-1.59607e-20
-1.7376e-20
-1.95765e-20
-1.87213e-20
-1.74581e-20
-1.80248e-20
3.36639e-20
-2.02071e-20
-2.80479e-19
1.83874e-19
2.22017e-18
5.94908e-18
4.40126e-18
6.61432e-20
1.62458e-18
5.51781e-18
-6.56201e-17
2.22238e-16
-4.09525e-16
-5.1573e-16
3.37947e-15
6.61187e-16
-1.27791e-14
-2.27789e-14
-2.11639e-14
-1.15026e-14
-9.10945e-15
1.57621e-14
2.4482e-14
7.3391e-15
-2.65778e-14
-9.20946e-14
-2.12454e-13
-4.17977e-13
-7.39397e-13
-1.15367e-12
-1.60315e-12
-1.99775e-12
-2.3074e-12
-2.55862e-12
-2.70026e-12
-2.56118e-12
-6.90094e-13
3.82336e-12
6.29069e-12
7.76597e-12
8.3722e-12
8.6723e-12
3.40745e-12
-1.25283e-12
7.60778e-13
5.75941e-13
1.692e-17
1.70852e-17
1.59978e-17
1.47052e-17
1.30767e-17
1.11797e-17
9.16294e-18
7.1656e-18
5.31877e-18
3.72056e-18
2.42529e-18
1.44679e-18
7.6279e-19
3.26444e-19
7.70715e-20
-4.40378e-20
-8.58858e-20
-8.50493e-20
-7.0917e-20
-5.88429e-20
-5.17287e-20
-4.61737e-20
-4.14721e-20
-3.73884e-20
-3.33815e-20
-2.92812e-20
-2.59018e-20
-2.34692e-20
-2.20499e-20
-2.15782e-20
-1.82967e-20
-1.34637e-20
-2.56523e-20
8.38176e-21
3.18668e-21
-2.90664e-19
-2.55654e-19
1.88528e-18
4.98358e-18
6.26722e-18
2.61796e-18
8.55762e-19
8.22438e-18
-4.45428e-17
1.00857e-16
-7.0696e-17
-7.01866e-16
1.26713e-15
3.2393e-15
-2.13353e-15
-1.22455e-14
-2.00851e-14
-2.14125e-14
-2.56428e-14
-2.6159e-15
1.0314e-14
-1.14926e-14
-6.49703e-14
-1.53936e-13
-2.99516e-13
-5.34022e-13
-8.54843e-13
-1.22741e-12
-1.58872e-12
-1.87499e-12
-2.08806e-12
-2.24342e-12
-2.28746e-12
-2.01852e-12
6.31297e-13
5.96239e-12
8.98807e-12
1.18462e-11
1.25267e-11
8.5095e-12
9.85553e-13
-1.37723e-12
-3.84813e-14
1.13717e-12
1.60611e-17
1.59482e-17
1.47611e-17
1.34613e-17
1.19024e-17
1.01498e-17
8.33045e-18
6.55708e-18
4.92825e-18
3.51645e-18
2.35954e-18
1.4659e-18
8.17056e-19
3.76245e-19
9.44602e-20
-7.07896e-20
-1.52558e-19
-1.75928e-19
-1.68179e-19
-1.5037e-19
-1.32707e-19
-1.13085e-19
-9.21011e-20
-7.23787e-20
-5.56134e-20
-4.2881e-20
-3.35903e-20
-2.60469e-20
-1.92833e-20
-1.30257e-20
-4.79369e-21
-1.97889e-22
-1.60509e-20
-8.97993e-21
4.97175e-20
-1.33291e-19
-3.67031e-19
1.48456e-18
4.17107e-18
6.91519e-18
5.41065e-18
2.21842e-18
8.03364e-18
-2.04489e-17
2.23775e-17
5.52138e-17
-3.80345e-16
-7.95545e-17
2.01254e-15
2.20902e-15
-1.45175e-15
-7.01339e-15
-9.57357e-15
-1.67995e-14
7.88479e-15
1.08545e-14
-2.47095e-14
-8.94611e-14
-2.02133e-13
-3.7635e-13
-6.22746e-13
-9.1874e-13
-1.22343e-12
-1.48939e-12
-1.66919e-12
-1.78975e-12
-1.8493e-12
-1.81015e-12
-1.48677e-12
1.33289e-12
6.56216e-12
1.03214e-11
1.38547e-11
1.34653e-11
7.83973e-12
1.66062e-12
-4.34848e-13
5.49898e-13
2.1999e-12
1.5017e-17
1.46619e-17
1.34744e-17
1.22578e-17
1.08524e-17
9.31409e-18
7.74877e-18
6.24291e-18
4.86569e-18
3.66534e-18
2.66253e-18
1.85843e-18
1.23647e-18
7.68494e-19
4.19827e-19
1.6431e-19
-1.43751e-20
-1.23599e-19
-1.69526e-19
-1.70933e-19
-1.4258e-19
-1.05749e-19
-6.91025e-20
-3.53662e-20
-5.65761e-21
1.59647e-20
3.10517e-20
4.41812e-20
5.90221e-20
7.5423e-20
9.19012e-20
9.85378e-20
8.48144e-20
6.41624e-20
1.41689e-19
1.01642e-19
-2.01371e-19
1.18469e-18
3.8283e-18
6.57616e-18
7.32885e-18
4.81839e-18
7.46114e-18
-2.75144e-18
-5.02853e-18
5.0367e-17
-8.35475e-17
-3.35019e-16
3.92358e-16
1.6328e-15
1.89707e-15
4.14994e-16
1.44246e-16
-6.58315e-15
1.69609e-14
2.74163e-14
-1.92347e-14
-1.01788e-13
-2.37356e-13
-4.22841e-13
-6.47868e-13
-8.9279e-13
-1.11945e-12
-1.28981e-12
-1.3757e-12
-1.40789e-12
-1.37958e-12
-1.24287e-12
-9.39277e-13
1.12708e-12
5.51959e-12
9.53275e-12
1.32684e-11
1.33923e-11
9.36728e-12
4.37747e-12
1.7973e-12
2.38147e-12
4.23893e-12
1.3819e-17
1.32799e-17
1.22045e-17
1.11659e-17
1.00052e-17
8.76435e-18
7.5258e-18
6.34838e-18
5.27513e-18
4.33263e-18
3.52832e-18
2.85771e-18
2.30554e-18
1.84893e-18
1.46276e-18
1.12719e-18
8.34728e-19
5.93904e-19
4.31121e-19
3.33877e-19
2.9652e-19
3.02074e-19
3.23992e-19
3.48232e-19
3.69212e-19
3.8205e-19
3.88658e-19
3.95329e-19
4.06283e-19
4.19518e-19
4.28693e-19
4.19744e-19
3.87153e-19
3.33733e-19
3.68736e-19
3.28544e-19
1.78972e-19
1.42865e-18
3.80238e-18
5.94845e-18
7.8008e-18
7.17778e-18
7.64997e-18
6.2968e-18
-2.55815e-18
1.80264e-17
2.62018e-17
-1.40891e-16
-1.74135e-16
2.71941e-16
1.00183e-15
1.07366e-15
2.33216e-15
-3.29473e-15
1.96391e-14
3.69109e-14
-1.12317e-14
-1.22766e-13
-2.65947e-13
-4.39124e-13
-6.3216e-13
-8.05193e-13
-9.47165e-13
-1.01045e-12
-1.00873e-12
-9.48633e-13
-8.19114e-13
-5.67132e-13
-2.5652e-13
7.6932e-13
3.53669e-12
7.54567e-12
1.19935e-11
1.36902e-11
1.20198e-11
8.55535e-12
5.94657e-12
5.45457e-12
6.00671e-12
1.2706e-17
1.21934e-17
1.13553e-17
1.05908e-17
9.76807e-18
8.91225e-18
8.08161e-18
7.30813e-18
6.6105e-18
5.99626e-18
5.46143e-18
4.99463e-18
4.57818e-18
4.18943e-18
3.80576e-18
3.40997e-18
2.99305e-18
2.58254e-18
2.2155e-18
1.91823e-18
1.68072e-18
1.53891e-18
1.47287e-18
1.43746e-18
1.40654e-18
1.37046e-18
1.33281e-18
1.30337e-18
1.28648e-18
1.27887e-18
1.26773e-18
1.22997e-18
1.16152e-18
1.0953e-18
1.05245e-18
8.88836e-19
1.24134e-18
2.51772e-18
4.32656e-18
5.72661e-18
7.25026e-18
8.20178e-18
8.6477e-18
9.5857e-18
6.83653e-18
5.49588e-18
2.56343e-17
2.13656e-18
-9.48652e-17
-1.38534e-16
7.22065e-17
-1.16581e-17
1.41272e-15
-3.83623e-15
1.91138e-14
4.31477e-14
-1.73825e-15
-1.04505e-13
-2.38442e-13
-3.9323e-13
-5.31253e-13
-6.44159e-13
-6.989e-13
-6.82485e-13
-5.86895e-13
-4.14545e-13
-1.41748e-13
2.56112e-13
6.75071e-13
1.12555e-12
2.4747e-12
6.0207e-12
1.0978e-11
1.32709e-11
1.34748e-11
1.23327e-11
1.08093e-11
9.62527e-12
8.88242e-12
1.11991e-17
1.10345e-17
1.06979e-17
1.0382e-17
1.00813e-17
9.77096e-18
9.47493e-18
9.20131e-18
8.94662e-18
8.70678e-18
8.47326e-18
8.23633e-18
7.98582e-18
7.71188e-18
7.40686e-18
7.06606e-18
6.68554e-18
6.27902e-18
5.86618e-18
5.49962e-18
5.17583e-18
4.94677e-18
4.80995e-18
4.71931e-18
4.64385e-18
4.57257e-18
4.50938e-18
4.46277e-18
4.43615e-18
4.42603e-18
4.42053e-18
4.39301e-18
4.34887e-18
4.31459e-18
4.24819e-18
4.24907e-18
4.38348e-18
4.49941e-18
5.35543e-18
6.79003e-18
7.73388e-18
8.48336e-18
9.07594e-18
9.78996e-18
1.04227e-17
8.88815e-18
1.13985e-17
1.85837e-17
1.11108e-17
-4.09533e-17
4.95176e-18
-2.93059e-16
9.68612e-16
-4.30102e-15
1.85941e-14
4.84239e-14
1.32635e-14
-7.55732e-14
-1.90639e-13
-3.21096e-13
-4.29147e-13
-5.01481e-13
-5.12345e-13
-4.35044e-13
-2.51171e-13
4.12049e-14
4.54929e-13
9.90742e-13
1.60279e-12
2.16855e-12
2.89416e-12
5.59121e-12
1.01236e-11
1.16178e-11
1.21587e-11
1.20346e-11
1.1429e-11
1.05825e-11
9.25905e-12
)
;
}
}
// ************************************************************************* //
| [
"brent.shambaugh@gmail.com"
] | brent.shambaugh@gmail.com | |
b33b6857b768bf23bc0d79279352e826e1b2e184 | 07fbf3ab32180d94afb1eadd1a8f8ddd657e8656 | /NWNXLib/API/Linux/API/CScriptSourceFile.cpp | 0bfbddeba3fbb1daf68674cfde490f084c1c53c5 | [
"MIT"
] | permissive | ELadner/nwnx-unified | 3b322e8722eab70c9c72a45e71013b89dbbf1e89 | 09f8e8a0c1474e8b16d4746f9cb57ca870a17ce5 | refs/heads/master | 2021-09-04T08:52:06.521478 | 2018-01-17T13:04:29 | 2018-01-17T13:04:29 | 117,771,934 | 0 | 0 | null | 2018-01-17T02:29:14 | 2018-01-17T02:29:14 | null | UTF-8 | C++ | false | false | 2,133 | cpp | #include "CScriptSourceFile.hpp"
#include "API/Functions.hpp"
#include "Platform/ASLR.hpp"
namespace NWNXLib {
namespace API {
CScriptSourceFile::CScriptSourceFile()
{
CScriptSourceFile__CScriptSourceFileCtor(this);
}
CScriptSourceFile::~CScriptSourceFile()
{
CScriptSourceFile__CScriptSourceFileDtor__0(this);
}
int32_t CScriptSourceFile::LoadScript(const CExoString& a0, char** a1, uint32_t* a2)
{
return CScriptSourceFile__LoadScript(this, a0, a1, a2);
}
void CScriptSourceFile::UnloadScript()
{
return CScriptSourceFile__UnloadScript(this);
}
void CScriptSourceFile__CScriptSourceFileCtor(CScriptSourceFile* thisPtr)
{
using FuncPtrType = void(__attribute__((cdecl)) *)(CScriptSourceFile*);
uintptr_t address = Platform::ASLR::GetRelocatedAddress(Functions::CScriptSourceFile__CScriptSourceFileCtor);
FuncPtrType func = reinterpret_cast<FuncPtrType>(address);
func(thisPtr);
}
void CScriptSourceFile__CScriptSourceFileDtor__0(CScriptSourceFile* thisPtr)
{
using FuncPtrType = void(__attribute__((cdecl)) *)(CScriptSourceFile*, int);
uintptr_t address = Platform::ASLR::GetRelocatedAddress(Functions::CScriptSourceFile__CScriptSourceFileDtor__0);
FuncPtrType func = reinterpret_cast<FuncPtrType>(address);
func(thisPtr, 2);
}
int32_t CScriptSourceFile__LoadScript(CScriptSourceFile* thisPtr, const CExoString& a0, char** a1, uint32_t* a2)
{
using FuncPtrType = int32_t(__attribute__((cdecl)) *)(CScriptSourceFile*, const CExoString&, char**, uint32_t*);
uintptr_t address = Platform::ASLR::GetRelocatedAddress(Functions::CScriptSourceFile__LoadScript);
FuncPtrType func = reinterpret_cast<FuncPtrType>(address);
return func(thisPtr, a0, a1, a2);
}
void CScriptSourceFile__UnloadScript(CScriptSourceFile* thisPtr)
{
using FuncPtrType = void(__attribute__((cdecl)) *)(CScriptSourceFile*);
uintptr_t address = Platform::ASLR::GetRelocatedAddress(Functions::CScriptSourceFile__UnloadScript);
FuncPtrType func = reinterpret_cast<FuncPtrType>(address);
return func(thisPtr);
}
}
}
| [
"liarethnwn@gmail.com"
] | liarethnwn@gmail.com |
75a677c16b659e00a93b6586106dc17fd2cef439 | 012138e3536091749b0a00729b7dfd3028680232 | /ChromaticAberrationKernel_v05.cpp | 1b40af6eae3fae33b001d69bbab3bcf77637051f | [] | no_license | luckyspacetraveller/ChromaticAberrationKernel | 9d967b1da537703d9cb6037fca3f6e3a85d4ab9d | 1a743ccf11ca5cd1e17925b3c602c2657c5a38a7 | refs/heads/master | 2023-03-27T10:46:33.413836 | 2021-03-23T12:07:30 | 2021-03-23T12:07:30 | 278,070,282 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 29,445 | cpp | // ChromaticAberrationKernel v1.0
// by Lukas Schwabe - Mackevision - 01-2019
// fbm_Noise_blink_kernel v1.0 by Johannes Saam - Nukepedia
kernel ChromaticAberrationKernel : ImageComputationKernel<ePixelWise> {
Image<eRead, eAccessRanged2D, eEdgeClamped> src;
Image<eWrite> dst;
param:
bool smear;
bool trueChroma;
bool calcAlpha;
// float kernelSize;
int2 res;
int2 effectCenter;
float centerSize;
float chromaMult;
float2 chromaRed;
float2 chromaGreen;
float2 chromaBlue;
float chromaRotateMult;
float chromaMix;
float4 redChannel;
float4 greenChannel;
float4 blueChannel;
// noise vals
float octaves;
float gain;
float lacunarity;
float gamma;
float zz;
float amplitude;
float3 offset;
float3 scale;
float noiseOverDistance;
local:
int2 _bokehOffset;
float2 center;
int res_max;
float chromaMixClamped;
float centerSizeClamped;
float sChromaMult;
float sChromaRotateMult;
float gammaClamped;
// noise vals
int m_width;
int m_height;
float noiseMult;
void define() {
defineParam(smear, "Smear Chroma", true);
defineParam(trueChroma, "True Chroma Blur", true);
defineParam(res, "Resolution", int2(1920, 1080));
defineParam(effectCenter, "Center", int2(960, 540));
defineParam(centerSize, "Center Size", 1.0f);
defineParam(chromaMult, "Chroma Mult", 10.0f);
defineParam(chromaRed, "Chroma Red Mult", float2(1.0f,1.0f));
defineParam(chromaGreen, "Chroma Green Mult", float2(1.0f,1.0f));
defineParam(chromaBlue, "Chroma Blue Mult", float2(1.0f,1.0f));
defineParam(chromaRotateMult, "Chroma Rotation", 0.0f);
defineParam(chromaMix, "Chroma Mix", 1.0f);
defineParam(redChannel, "Red Balance", float4(1.0f,0.0f,0.0f,0.0f));
defineParam(greenChannel, "Green Balance", float4(0.0f,1.0f,0.0f,0.0f));
defineParam(blueChannel, "Blue Balance", float4(0.0f,0.0f,1.0f,0.0f));
// noise vals
defineParam(octaves, "Octaves", 10.0f);
defineParam(gain, "Gain", 0.5f);
defineParam(lacunarity, "Lacunarity", 2.0f);
defineParam(gamma, "Gamma", 0.5f);
defineParam(amplitude, "amplitude", 0.5f);
defineParam(zz, "Z", 50.0f);
defineParam(offset, "Offset", float3(0.0f, 0.0f, 0.0f));
defineParam(scale, "Scale", float3(0.001f, 0.001f, 0.001f));
defineParam(noiseOverDistance, "noiseOverDistance", 1.0f);
}
void init() {
// avoid user values that will crash
chromaMixClamped = clamp(chromaMix,0.0f,1.0f);
centerSizeClamped = centerSize<0.0f?0.0f:centerSize;
noiseMult = max(noiseOverDistance,0.0f);
gammaClamped = clamp(gammaClamped, 0.2f,2.0f);
// max size
res_max = max(res.x,res.y);
// bring chroma Mults to reasonable values
sChromaMult = chromaMult / 300;
sChromaRotateMult = -chromaRotateMult / 200;
src.setRange(-res_max, res_max);
// set center point
center.x = effectCenter.x;
center.y = effectCenter.y;
m_width = dst.bounds.width();
m_height = dst.bounds.height();
}
// Chromatic Aberration Kernel
void process(int2 pos) {
SampleType(src) chromaDst(0);
SampleType(src) chromaDstEffected(0);
float2 offset;
float2 direction;
float distanceToCenter;
float nDistanceToCenter;
float sDistanceToCenter;
float2 posRed;
float2 posGreen;
float2 posBlue;
offset.x = (float)pos.x-center.x;
offset.y = (float)pos.y-center.y;
if (offset.x == 0.0f && offset.y == 0.0f) {
direction = 0.0f;
distanceToCenter = 0.0f;
}
else {
direction = normalize(offset);
distanceToCenter = length(offset);
}
if (distanceToCenter >= 1.0f) {
nDistanceToCenter = distanceToCenter/res_max;
sDistanceToCenter = pow(nDistanceToCenter,centerSizeClamped);
}
else {
nDistanceToCenter = 0.0f;
sDistanceToCenter = 0.0f;
}
//generate sin and cos for rotation
float cs = cos(3.1415926535f/180.0f);
float sn = sin(3.1415926535f/180.0f);
// calc aberrated positions with scale and rotation and noise
float getThatNoise = getNoise(pos,sDistanceToCenter);
float2 noise;
noise.x = getThatNoise*-direction.x;
noise.y = getThatNoise*-direction.y;
posRed.x =-distanceToCenter * sDistanceToCenter * direction.x * sChromaMult * chromaRed.x + ((sn*offset.x + cs*offset.y) * sDistanceToCenter * sChromaRotateMult * chromaRed.x )+noise.x;
posRed.y =-distanceToCenter * sDistanceToCenter * direction.y * sChromaMult * chromaRed.y + ((-cs*offset.x + sn*offset.y) * sDistanceToCenter * sChromaRotateMult * chromaRed.y)+noise.y;
posGreen.x = -distanceToCenter * sDistanceToCenter * direction.x * sChromaMult * chromaGreen.x + ((sn*offset.x + cs*offset.y) * sDistanceToCenter * sChromaRotateMult * chromaGreen.x )+noise.x;
posGreen.y = -distanceToCenter * sDistanceToCenter * direction.y * sChromaMult * chromaGreen.y + ((-cs*offset.x + sn*offset.y) * sDistanceToCenter * sChromaRotateMult * chromaGreen.y)+noise.y;
posBlue.x = -distanceToCenter * sDistanceToCenter * direction.x * sChromaMult * chromaBlue.x + ((sn*offset.x + cs*offset.y) * sDistanceToCenter * sChromaRotateMult * chromaBlue.x )+noise.x;
posBlue.y = -distanceToCenter * sDistanceToCenter * direction.y * sChromaMult * chromaBlue.y + ((-cs*offset.x + sn*offset.y) * sDistanceToCenter * sChromaRotateMult * chromaBlue.y)+noise.y;
float lengthRed = length(posRed);
float lengthGreen = length(posGreen);
float lengthBlue = length(posBlue);
float filterStart = 0.0f;
if (smear == true) { //smear
float stretchRed = 0;
float stretchGreen = 0;
float stretchBlue = 0;
float stretchAlpha = 0;
if (trueChroma == true) { //true chroma mode
int counterRed = (int)fabs(lengthRed)+1;
int counterGreen = (int)fabs(lengthGreen)+1;
int counterBlue = (int)fabs(lengthBlue)+1;
//red
if (lengthRed > filterStart) {
int loopRuns = 0;
stretchAlpha = 0;
for (int count=0 ; count <= counterRed; count++) {
float stepValue = (float)count/(float)counterRed;
stretchRed += bilinear(src, posRed.x*stepValue , posRed.y*stepValue, 0) * stepValue;
if (stepValue != 1) {
stretchRed += bilinear(src, posRed.x*2-posRed.x*stepValue , posRed.y*2-posRed.y*stepValue, 0) * stepValue;
}
if (calcAlpha == true) {
stretchAlpha += bilinear(src, posRed.x*stepValue , posRed.y*stepValue, 3) * stepValue;
if (stepValue != 1) {
stretchAlpha += bilinear(src, posRed.x*2-posRed.x*stepValue , posRed.y*2-posRed.y*stepValue, 3) * stepValue;
}
}
loopRuns +=1;
}
chromaDstEffected.x += stretchRed / (loopRuns-1);
if (calcAlpha == true) {
chromaDstEffected.w += (stretchAlpha / (loopRuns-1))*0.299f;
}
}
else {
chromaDst.x += bilinear(src, posRed.x, posRed.y, 0);
if (calcAlpha == true) {
chromaDst.w += bilinear(src, posRed.x, posRed.y, 3)*0.299f;
}
}
//green
if (lengthGreen > filterStart) {
int loopRuns = 0;
stretchAlpha = 0;
for (int count=0 ; count <= counterGreen; count++) {
float stepValue = (float)count/(float)counterGreen;
stretchGreen += bilinear(src, posGreen.x*stepValue+posRed.x, posGreen.y*stepValue+posRed.y, 1) * stepValue;
if (stepValue != 1) {
stretchGreen += bilinear(src, posGreen.x*2-posGreen.x*stepValue+posRed.x , posGreen.y*2-posGreen.y*stepValue+posRed.y, 1) * stepValue;
}
if (calcAlpha == true) {
stretchAlpha += bilinear(src, posGreen.x*stepValue+posRed.x, posGreen.y*stepValue+posRed.y, 3) * stepValue;
if (stepValue != 1) {
stretchAlpha += bilinear(src, posGreen.x*2-posGreen.x*stepValue+posRed.x , posGreen.y*2-posGreen.y*stepValue+posRed.y, 3) * stepValue;
}
}
loopRuns +=1;
}
chromaDstEffected.y += stretchGreen / (loopRuns-1);
if (calcAlpha == true) {
chromaDstEffected.w += (stretchAlpha / (loopRuns-1))*0.587f;
}
}
else {
chromaDst.y += bilinear(src, posGreen.x, posGreen.y, 1);
if (calcAlpha == true) {
chromaDst.w += bilinear(src, posGreen.x, posGreen.y, 3)*0.587f;
}
}
//blue
if (lengthBlue > filterStart) {
int loopRuns = 0;
stretchAlpha = 0;
for (int count=0 ; count <= counterBlue; count++) {
float stepValue = (float)count/(float)counterBlue;
stretchBlue += bilinear(src, posBlue.x*stepValue+posGreen.x+posRed.x , posBlue.y*stepValue+posGreen.y+posRed.y, 2) * stepValue ;
if (stepValue != 1) {
stretchBlue += bilinear(src, posBlue.x*2-posBlue.x*stepValue+posGreen.x+posRed.x , posBlue.y*2-posBlue.y*stepValue+posGreen.y+posRed.y, 2) * stepValue;
}
if (calcAlpha == true) {
stretchAlpha += bilinear(src, posBlue.x*stepValue+posGreen.x+posRed.x , posBlue.y*stepValue+posGreen.y+posRed.y, 3) * stepValue ;
if (stepValue != 1) {
stretchAlpha += bilinear(src, posBlue.x*2-posBlue.x*stepValue+posGreen.x+posRed.x , posBlue.y*2-posBlue.y*stepValue+posGreen.y+posRed.y, 3) * stepValue;
}
}
loopRuns +=1;
}
chromaDstEffected.z += stretchBlue / (loopRuns-1);
if (calcAlpha == true) {
chromaDstEffected.w += (stretchAlpha / (loopRuns-1))*0.114f;
}
}
else {
chromaDst.z += bilinear(src, posBlue.x, posBlue.y, 2);
if (calcAlpha == true) {
chromaDst.w += bilinear(src, posBlue.x, posBlue.y, 3)*0.114f;
}
}
} //true chroma mode end
else{ // non true chroma mode
int counterRed = (int)fabs(lengthRed)+1;
int counterGreen = (int)fabs(lengthGreen)+1;
int counterBlue = (int)fabs(lengthBlue)+1;
//red
if (lengthRed > filterStart) {
int loopRuns = 0;
stretchAlpha = 0;
for (int count=0 ; count <= counterRed; count++) {
float stepValue = (float)count/(float)counterRed;
stretchRed += bilinear(src, (posRed.x-noise.x*noiseMult)*stepValue+noise.x*noiseMult*stepValue*0.5f, (posRed.y-noise.y*noiseMult)*stepValue + noise.y*noiseMult*stepValue*0.5f, 0) * stepValue;
if (stepValue != 1) {
stretchRed += bilinear(src, posRed.x*2-posRed.x*stepValue-noise.x*noiseMult*stepValue*0.5f, posRed.y*2-posRed.y*stepValue-noise.y*noiseMult*stepValue*0.5f, 0) * stepValue;
}
if (calcAlpha == true) {
stretchAlpha += bilinear(src, (posRed.x-noise.x*noiseMult)*stepValue+noise.x*noiseMult*stepValue*0.5f, (posRed.y-noise.y*noiseMult)*stepValue + noise.y*noiseMult*stepValue*0.5f, 3) * stepValue;
if (stepValue != 1) {
stretchAlpha += bilinear(src, posRed.x*2-posRed.x*stepValue-noise.x*noiseMult*stepValue*0.5f, posRed.y*2-posRed.y*stepValue-noise.y*noiseMult*stepValue*0.5f, 3) * stepValue;
}
}
loopRuns +=1;
}
chromaDstEffected.x += stretchRed / (loopRuns-1);
if (calcAlpha == true) {
chromaDstEffected.w += (stretchAlpha / (loopRuns-1))*0.299f;
}
}
else {
chromaDst.x += bilinear(src, posRed.x, posRed.y, 0);
if (calcAlpha == true) {
chromaDst.w += bilinear(src, posRed.x, posRed.y, 3)*0.299f;
}
}
//green
if (lengthGreen > filterStart) {
int loopRuns = 0;
stretchAlpha = 0;
for (int count=0 ; count <= counterGreen; count++) {
float stepValue = (float)count/(float)counterGreen;
stretchGreen += bilinear(src, (posGreen.x-noise.x*noiseMult)*stepValue+noise.x*noiseMult*stepValue*0.5f, (posGreen.y-noise.y*noiseMult)*stepValue + noise.y*noiseMult*stepValue*0.5f, 1) * stepValue;
if (stepValue != 1) {
stretchGreen += bilinear(src, posGreen.x*2-posGreen.x*stepValue-noise.x*noiseMult*stepValue*0.5f, posGreen.y*2-posGreen.y*stepValue-noise.y*noiseMult*stepValue*0.5f, 1) * stepValue;
}
if (calcAlpha == true) {
stretchAlpha += bilinear(src, (posGreen.x-noise.x*noiseMult)*stepValue+noise.x*noiseMult*stepValue*0.5f, (posGreen.y-noise.y*noiseMult)*stepValue + noise.y*noiseMult*stepValue*0.5f, 3) * stepValue;
if (stepValue != 1) {
stretchAlpha += bilinear(src, posGreen.x*2-posGreen.x*stepValue-noise.x*noiseMult*stepValue*0.5f, posGreen.y*2-posGreen.y*stepValue-noise.y*noiseMult*stepValue*0.5f, 3) * stepValue;
}
}
loopRuns +=1;
}
chromaDstEffected.y += stretchGreen / (loopRuns-1);
if (calcAlpha == true) {
chromaDstEffected.w += (stretchAlpha / (loopRuns-1))*0.587f;
}
}
else {
chromaDst.y += bilinear(src, posGreen.x, posGreen.y, 1);
if (calcAlpha == true) {
chromaDst.w += bilinear(src, posGreen.x, posGreen.y, 3)*0.587f;
}
}
//blue
if (lengthBlue > filterStart) {
int loopRuns = 0;
stretchAlpha = 0;
for (int count=0 ; count <= counterBlue; count++) {
float stepValue = (float)count/(float)counterBlue;
stretchBlue += bilinear(src, (posBlue.x-noise.x*noiseMult)*stepValue+noise.x*noiseMult*stepValue*0.5f, (posBlue.y-noise.y*noiseMult)*stepValue + noise.y*noiseMult*stepValue*0.5f, 2) * stepValue;
if (stepValue != 1) {
stretchBlue += bilinear(src, posBlue.x*2-posBlue.x*stepValue-noise.x*noiseMult*stepValue*0.5f, posBlue.y*2-posBlue.y*stepValue-noise.y*noiseMult*stepValue*0.5f, 2) * stepValue;
}
if (calcAlpha == true) {
stretchAlpha += bilinear(src, (posBlue.x-noise.x*noiseMult)*stepValue+noise.x*noiseMult*stepValue*0.5f, (posBlue.y-noise.y*noiseMult)*stepValue + noise.y*noiseMult*stepValue*0.5f, 3) * stepValue;
if (stepValue != 1) {
stretchAlpha += bilinear(src, posBlue.x*2-posBlue.x*stepValue-noise.x*noiseMult*stepValue*0.5f, posBlue.y*2-posBlue.y*stepValue-noise.y*noiseMult*stepValue*0.5f, 3) * stepValue;
}
}
loopRuns +=1;
}
chromaDstEffected.z += stretchBlue / (loopRuns-1);
if (calcAlpha == true) {
chromaDstEffected.w += (stretchAlpha / (loopRuns-1))*0.114f;
}
}
else {
chromaDst.z += bilinear(src, posBlue.x, posBlue.y, 2);
if (calcAlpha == true) {
chromaDst.w += bilinear(src, posBlue.x, posBlue.y, 3)*0.114f;
}
}
} //non true chroma mode end
} // end smear
else { //no smear
if (trueChroma == true) {
posGreen += posRed;
posBlue += posGreen;
}
if (lengthRed>filterStart) {
chromaDstEffected.x += bilinear(src, posRed.x, posRed.y, 0);
}
else {
chromaDst.x = bilinear(src, posRed.x, posRed.y, 0);
}
if (lengthGreen>filterStart) {
chromaDstEffected.y += bilinear(src, posGreen.x, posGreen.y, 1);
}
else {
chromaDst.y = bilinear(src, posGreen.x, posGreen.y, 1);
}
if (lengthBlue>filterStart) {
chromaDstEffected.z += bilinear(src, posBlue.x, posBlue.y, 2);
}
else {
chromaDst.z= bilinear(src, posBlue.x, posBlue.y, 2);
}
if (calcAlpha == true) {
if (lengthRed>filterStart || lengthGreen>filterStart || lengthBlue>filterStart) {
chromaDstEffected.w = bilinear(src, posRed.x, posRed.y, 3)*0.299f + bilinear(src, posGreen.x, posGreen.y, 3)*0.587f + bilinear(src, posBlue.x, posBlue.y, 3)*0.114f;
}
}
} // no smear end
// add up and hue shift effected pixels
chromaDst.x = chromaDst.x + chromaDstEffected.x*redChannel.x + chromaDstEffected.y*greenChannel.x*lengthGreen + chromaDstEffected.z*blueChannel.x*lengthBlue;
chromaDst.y = chromaDst.y + chromaDstEffected.x*redChannel.y*lengthRed + chromaDstEffected.y*greenChannel.y + chromaDstEffected.z*blueChannel.y*lengthBlue;
chromaDst.z = chromaDst.z + chromaDstEffected.x*redChannel.z*lengthRed + chromaDstEffected.y*greenChannel.z*lengthGreen + chromaDstEffected.z*blueChannel.z;
// add up alpha
if (calcAlpha == true) {
chromaDst.w = chromaDst.w + chromaDstEffected.w;
}
else {
chromaDst.w = src(0,0,3);
}
//Mix Values with Original
chromaDst.x = chromaDst.x * chromaMixClamped + src(0,0,0) * (1.0f-chromaMixClamped);
chromaDst.y = chromaDst.y * chromaMixClamped + src(0,0,1) * (1.0f-chromaMixClamped);
chromaDst.z = chromaDst.z * chromaMixClamped + src(0,0,2) * (1.0f-chromaMixClamped);
if (calcAlpha == true) {
chromaDst.w = chromaDst.w * chromaMixClamped + src(0,0,3) * (1.0f-chromaMixClamped);
}
//DEBUG
// chromaDst.x = 1.0f;
dst() = chromaDst;
}
// Chromatic Aberration Kernel end
// simplified noise call for Chromatic Aberration
inline float getNoise(int2 pos, float amplitudeFromCenter) {
float noiseVal;
noiseVal = pow( fbm_noise_3d( octaves, gain, lacunarity, ( ((float)pos.x) * scale.x ) + offset.x, ( ((float)pos.y) * scale.y ) + offset.y, ( zz * scale.z ) + offset.z ) * amplitude * amplitudeFromCenter, 1.0f / gammaClamped );
return noiseVal;
}
// noise
// fbm_Noise_blink_kernel v1.0 by Johannes Saam - Nukepedia
// Permutation table. The same list is repeated twice.
inline int perm( int index )
{
int permData[512] = {
151,160,137,91,90,15,131,13,201,95,96,53,194,233,7,225,140,36,103,30,69,142,
8,99,37,240,21,10,23,190,6,148,247,120,234,75,0,26,197,62,94,252,219,203,117,
35,11,32,57,177,33,88,237,149,56,87,174,20,125,136,171,168,68,175,74,165,71,
134,139,48,27,166,77,146,158,231,83,111,229,122,60,211,133,230,220,105,92,41,
55,46,245,40,244,102,143,54,65,25,63,161,1,216,80,73,209,76,132,187,208, 89,
18,169,200,196,135,130,116,188,159,86,164,100,109,198,173,186,3,64,52,217,226,
250,124,123,5,202,38,147,118,126,255,82,85,212,207,206,59,227,47,16,58,17,182,
189,28,42,223,183,170,213,119,248,152,2,44,154,163,70,221,153,101,155,167,43,
172,9,129,22,39,253,19,98,108,110,79,113,224,232,178,185,112,104,218,246,97,
228,251,34,242,193,238,210,144,12,191,179,162,241,81,51,145,235,249,14,239,
107,49,192,214,31,181,199,106,157,184,84,204,176,115,121,50,45,127,4,150,254,
138,236,205,93,222,114,67,29,24,72,243,141,128,195,78,66,215,61,156,180,
151,160,137,91,90,15,131,13,201,95,96,53,194,233,7,225,140,36,103,30,69,142,
8,99,37,240,21,10,23,190,6,148,247,120,234,75,0,26,197,62,94,252,219,203,117,
35,11,32,57,177,33,88,237,149,56,87,174,20,125,136,171,168,68,175,74,165,71,
134,139,48,27,166,77,146,158,231,83,111,229,122,60,211,133,230,220,105,92,41,
55,46,245,40,244,102,143,54,65,25,63,161,1,216,80,73,209,76,132,187,208, 89,
18,169,200,196,135,130,116,188,159,86,164,100,109,198,173,186,3,64,52,217,226,
250,124,123,5,202,38,147,118,126,255,82,85,212,207,206,59,227,47,16,58,17,182,
189,28,42,223,183,170,213,119,248,152,2,44,154,163,70,221,153,101,155,167,43,
172,9,129,22,39,253,19,98,108,110,79,113,224,232,178,185,112,104,218,246,97,
228,251,34,242,193,238,210,144,12,191,179,162,241,81,51,145,235,249,14,239,
107,49,192,214,31,181,199,106,157,184,84,204,176,115,121,50,45,127,4,150,254,
138,236,205,93,222,114,67,29,24,72,243,141,128,195,78,66,215,61,156,180
};
return permData[index];
};
// The gradients are the midpoints of the vertices of a cube.
inline float3 grad3( int index )
{
float grad3Data[12*3] = { 1.0f,1.0f,0.0f,-1.0f,1.0f,0.0f,1.0f,-1.0f,0.0f,-1.0f,-1.0f,0.0f,1.0f,0.0f,1.0f,-1.0f,0.0f,1.0f,1.0f,0.0f,-1.0f,-1.0f,0.0f,-1.0f,0.0f,1.0f,1.0f,0.0f,-1.0f,1.0f,0.0f,1.0f,-1.0f,0.0f,-1.0f,-1.0f };
return (float3)(grad3Data[index*3], grad3Data[(index*3) + 1], grad3Data[(index*3) + 2]);
};
inline float dotNoise( float3 g, float x, float y, float z )
{
return g.x*x + g.y*y + g.z*z;
};
inline int fastfloor( float x )
{
if( x > 0.0f )
{
return (int)(x);
}
else
{
return (int)(x - 1);
}
};
// 3D raw Simplex noise
inline float raw_noise_3d( float x, float y, float z ) {
float n0, n1, n2, n3; // Noise contributions from the four corners
// Skew the input space to determine which simplex cell we're in
float F3 = 1.0f/3.0f;
float s = (x+y+z)*F3; // Very nice and simple skew factor for 3D
int i = fastfloor(x+s);
int j = fastfloor(y+s);
int k = fastfloor(z+s);
float G3 = 1.0f/6.0f; // Very nice and simple unskew factor, too
float t = (i+j+k)*G3;
float X0 = i-t; // Unskew the cell origin back to (x,y,z) space
float Y0 = j-t;
float Z0 = k-t;
float x0 = x-X0; // The x,y,z distances from the cell origin
float y0 = y-Y0;
float z0 = z-Z0;
// For the 3D case, the simplex shape is a slightly irregular tetrahedron.
// Determine which simplex we are in.
int i1, j1, k1; // Offsets for second corner of simplex in (i,j,k) coords
int i2, j2, k2; // Offsets for third corner of simplex in (i,j,k) coords
if( x0 >= y0 )
{
if( y0>=z0 )
{
i1=1; j1=0; k1=0; i2=1; j2=1; k2=0;
} // X Y Z order
else if( x0 >= z0 )
{
i1=1; j1=0; k1=0; i2=1; j2=0; k2=1;
} // X Z Y order
else
{
i1=0; j1=0; k1=1; i2=1; j2=0; k2=1;
} // Z X Y order
}
else
{ // x0<y0
if(y0<z0) {
i1=0; j1=0; k1=1; i2=0; j2=1; k2=1;
} // Z Y X order
else if(x0<z0) {
i1=0; j1=1; k1=0; i2=0; j2=1; k2=1;
} // Y Z X order
else {
i1=0; j1=1; k1=0; i2=1; j2=1; k2=0;
} // Y X Z order
}
// A step of (1,0,0) in (i,j,k) means a step of (1-c,-c,-c) in (x,y,z),
// a step of (0,1,0) in (i,j,k) means a step of (-c,1-c,-c) in (x,y,z), and
// a step of (0,0,1) in (i,j,k) means a step of (-c,-c,1-c) in (x,y,z), where
// c = 1/6.
float x1 = x0 - i1 + G3; // Offsets for second corner in (x,y,z) coords
float y1 = y0 - j1 + G3;
float z1 = z0 - k1 + G3;
float x2 = x0 - i2 + 2.0*G3; // Offsets for third corner in (x,y,z) coords
float y2 = y0 - j2 + 2.0*G3;
float z2 = z0 - k2 + 2.0*G3;
float x3 = x0 - 1.0 + 3.0*G3; // Offsets for last corner in (x,y,z) coords
float y3 = y0 - 1.0 + 3.0*G3;
float z3 = z0 - 1.0 + 3.0*G3;
// Work out the hashed gradient indices of the four simplex corners
int ii = i & 255;
int jj = j & 255;
int kk = k & 255;
int gi0 = perm(ii+perm(jj+perm(kk))) % 12;
int gi1 = perm(ii+i1+perm(jj+j1+perm(kk+k1))) % 12;
int gi2 = perm(ii+i2+perm(jj+j2+perm(kk+k2))) % 12;
int gi3 = perm(ii+1+perm(jj+1+perm(kk+1))) % 12;
// Calculate the contribution from the four corners
float t0 = 0.6 - x0*x0 - y0*y0 - z0*z0;
if( t0 < 0 )
{
n0 = 0.0;
}
else
{
t0 *= t0;
n0 = t0 * t0 * dotNoise(grad3(gi0), x0, y0, z0);
}
float t1 = 0.6 - x1*x1 - y1*y1 - z1*z1;
if( t1<0 )
{
n1 = 0.0;
}
else
{
t1 *= t1;
n1 = t1 * t1 * dotNoise(grad3(gi1), x1, y1, z1);
}
float t2 = 0.6 - x2*x2 - y2*y2 - z2*z2;
if( t2 < 0 )
{
n2 = 0.0;
}
else
{
t2 *= t2;
n2 = t2 * t2 * dotNoise(grad3(gi2), x2, y2, z2);
}
float t3 = 0.6 - x3*x3 - y3*y3 - z3*z3;
if( t3 < 0 )
{
n3 = 0.0;
}
else {
t3 *= t3;
n3 = t3 * t3 * dotNoise(grad3(gi3), x3, y3, z3);
}
// Add contributions from each corner to get the final noise value.
// The result is scaled to stay just inside [-1,1]
return 32.0*(n0 + n1 + n2 + n3);
};
// 3D Multi-octave Simplex noise.
//
// For each octave, a higher frequency/lower amplitude function will be added to the original.
// The higher the persistence [0-1], the more of each succeeding octave will be added.
inline float octave_noise_3d( float octaves, float persistence, float scale, float x, float y, float z ) {
float total = 0;
float frequency = scale;
float amplitude = 1;
// We have to keep track of the largest possible amplitude,
// because each octave adds more, and we need a value in [-1, 1].
float maxAmplitude = 0;
int i = 0;
for( i=0; i < octaves; i++ )
{
total += raw_noise_3d( x * frequency, y * frequency, z * frequency ) * amplitude;
frequency *= 2.0f;
maxAmplitude += amplitude;
amplitude *= persistence;
}
return total / maxAmplitude;
};
inline float fbm_noise_3d( float octaves, float gain, float lacunarity, float x, float y, float z ) {
float total = 0.0f;
float frequency = 1.0f;
float amplitude = gain;
int i = 0;
for ( i = 0; i < octaves; i++ )
{
total += raw_noise_3d( x * frequency, y * frequency, z * frequency ) * amplitude;
frequency *= lacunarity;
amplitude *= gain;
}
return total / 2.0f + 1.0f;
};
// fbm_Noise_blink_kernel v1.0 by Johannes Saam ends here
};
| [
"lucky.schwabe@gmail.com"
] | lucky.schwabe@gmail.com |
fb3fb93f993feb0d736de6ee4b53ed5b76bcc1ad | 8e957da4d0b5fd70ebfd82dcaa3b1c6cd43756a7 | /hamcrest-c++/hamcrest/unit-test/main.cpp | a1cfb49b598eb84593d6e3257323b93c4d198d6f | [] | no_license | bryannliu/hamcrest | 20ec14df00b41c229d8687866009e5e3e9fc8f2f | 4d7b7cd288b862433476dd4f7b45025bc5fcdd3e | refs/heads/master | 2021-01-10T14:23:55.065822 | 2016-02-11T14:56:05 | 2016-02-11T14:56:05 | 51,502,859 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 113 | cpp | #include "UnitTest++.h"
int main (int /*argc*/, const char* /*argv*/[])
{
return UnitTest::RunAllTests();
}
| [
"jon.m.reid@2aa0e9f1-8e24-0410-adc4-1b6a3a6e65e2"
] | jon.m.reid@2aa0e9f1-8e24-0410-adc4-1b6a3a6e65e2 |
13c4d9af187da330c9daf4fc16fa6a38e928bc82 | 92359e635b722f8c359b6a27133685c1c9b56565 | /sandbox/FastBlurs/CPUT/CPUT/CPUTTextureOGL.h | 07a118bb97c92c28859dcafa77b9d5780a1ec7cd | [
"MIT"
] | permissive | oamates/OpenGL | 547ccb560d76182c70eae3ea6512df81c794f322 | 78c6d1fbdcb0c041b3333ea71c43c8f531e04481 | refs/heads/master | 2021-05-11T17:23:36.445056 | 2018-01-16T02:32:04 | 2018-01-16T02:32:04 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,822 | h | //--------------------------------------------------------------------------------------
// Copyright 2013 Intel Corporation
// All Rights Reserved
//
// Permission is granted to use, copy, distribute and prepare derivative works of this
// software for any purpose and without fee, provided, that the above copyright notice
// and this statement appear in all copies. Intel makes no representations about the
// suitability of this software for any purpose. THIS SOFTWARE IS PROVIDED "AS IS."
// INTEL SPECIFICALLY DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, AND ALL LIABILITY,
// INCLUDING CONSEQUENTIAL AND OTHER INDIRECT DAMAGES, FOR THE USE OF THIS SOFTWARE,
// INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PROPRIETARY RIGHTS, AND INCLUDING THE
// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. Intel does not
// assume any responsibility for any errors which may appear in this software nor any
// responsibility to update it.
//--------------------------------------------------------------------------------------
#ifndef _CPUTTEXTUREOGL_H
#define _CPUTTEXTUREOGL_H
#include "CPUTTexture.h"
#include "CPUT_OGL.h"
class CPUTTextureOGL : public CPUTTexture
{
private:
// Destructor is not public. Must release instead of delete.
~CPUTTextureOGL() {
glDeleteTextures(1, &mTextureID);
}
void SetTextureInformation();
public:
GLuint mTextureID;
GLint mWidth, mHeight;
static CPUTTexture *CreateTexture( const cString &name );
static CPUTTexture *CreateTexture( const cString &name, const cString &absolutePathAndFilename, bool loadAsSRGB );
static CPUTResult CreateNativeTexture(
const cString &fileName,
GLint *textureID,
bool forceLoadAsSRGB,
int * pOutWidth = NULL,
int * pOutHeight = NULL
);
static CPUTTexture *CreateTexture(const cString &name, GLenum internalFormat, int width, int height,
GLenum format, GLenum type, void* pData);
CPUTTextureOGL()
{};
void ReleaseTexture()
{
}
void SetTexture(GLuint texture) { mTextureID = texture;};
GLuint GetTexture() { return mTextureID; };
void SetTextureAndShaderResourceView(GLint id/*, ID3D11ShaderResourceView *pShaderResourceView*/)
{
ASSERT(0, _L("Set Texture and Shader Resource View -- don't do it like this"));
}
void GetWidthAndHeight(int *width, int *height) { *width = (int)mWidth; *height = (int)mHeight; }
virtual void *MapTexture(CPUTRenderParameters ¶ms, eCPUTMapType type, bool wait = true );
void UnmapTexture( CPUTRenderParameters ¶ms );
};
#endif //_CPUTTEXTUREOGL_H
| [
"afoksha@luxoft.com"
] | afoksha@luxoft.com |
189573c7cbcb9a1d98558cc8ea0c7b37200fd195 | f28ae6d32d8378f704cbf3740c3e05f4bbaf8846 | /google/ejersisio1.cpp | b1cf10ce53db087bca6447157f053555cb1753ed | [] | no_license | danielggc/c | 78419bae81348f3ea0ba63ac6ba674494cd94721 | 2b5c5c1cbbd9634448dbe56bd678cad2e8fa003c | refs/heads/master | 2020-03-20T11:11:59.376591 | 2019-04-27T05:01:50 | 2019-04-27T05:01:50 | 137,395,829 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,313 | cpp | #include<stdio.h>
#include <stdlib.h>
#include <string.h>
#include<ctype.h>
#include<math.h>
int contar();
int main(){
int conteo=0;
int conteoA=0;
int conteoT=0;
int conteo2=0;
int verdadero=0;
char *trasmitir[]={};
FILE *token;
token=fopen("google.txt","r");
int cantidad =0;
cantidad=contar();
int arrayT[cantidad]={};
int array[cantidad]={};
int array2[cantidad]={};
char cadena[cantidad]={};
while(feof(token)==0){
fgets(cadena,cantidad,token);
}
printf(" el texto es : %s",cadena);
printf ("los numero sacados son :");
while(conteo<cantidad){
if (isdigit(cadena[conteo]) == 1){
trasmitir[0]=&cadena[conteo],
array[conteoA] =atoi(trasmitir[0]);
verdadero=1;
conteo++;
conteoA++;
while(isdigit(cadena[conteo])==1){
if (isdigit(cadena[conteo]) == 1){
trasmitir[0]=&cadena[conteo],
array2[conteo2] =atoi(trasmitir[0]);
conteo++;
conteo2++;
}
}
}
else{
conteo++;
}
}
for(int f=0;f<conteoA;f++){
printf("%d , ",array[f]);
}
}
int contar(){
char d;
int conteo=0;
FILE *puntero;
puntero=fopen("google.txt","r" );
while(feof(puntero)==0){
d=getc(puntero);
conteo++;
}
fclose(puntero);
return (conteo);
}
| [
"danielgrecia7@gmail.com"
] | danielgrecia7@gmail.com |
02e753280e85d1da08e74a6f60f77f10e677cccd | 10af32dead919e3de4d0dd2111a1bd67ced7d130 | /PB14209127-project3/input/random.cpp | 994529d49a7a672e7e31da0a11159f0f5f0dffac | [] | no_license | Fanzijian1996/algorithme | d80a77a88af5daa7c5e438e94cac2e996bf1b66d | cea428df1d92486ef3888ce4f723af0a9ffa662d | refs/heads/master | 2021-05-06T10:07:52.843318 | 2017-12-19T07:25:16 | 2017-12-19T07:25:16 | 114,094,132 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 841 | cpp | #include"random.h"
#define SIZE 120
#define MAX 150
#define MIN 1
using namespace std;
void creatfile(const string&path,int lenth=MAX+1)
{
ofstream filewriter(path,fstream::out|fstream::trunc);
if(!filewriter){
cerr<<"can't open the file ,maybe the file path doesn't exist!\n";
exit(-1);
}
srand((unsigned)time(nullptr));
int* iptr=new int[lenth];
for(int i=0;i<lenth;i++){
iptr[i]=i+1;
}
for(int i=0;i<SIZE;)
{
int buffer =rand()%(MAX-MIN+1)+MIN;
if(iptr[buffer]!=0){
filewriter<<iptr[buffer]<<endl;
i++;
iptr[buffer]=0;
}
}
filewriter.close();
delete iptr;
}
int main(int argc,char **argv)
{
string path;
if(argc==1){
cerr<<"no input files!use default file!"<<endl;
path="input.txt";
}
else{
path=argv[1];
}
creatfile(path);
return 0;
}
| [
"fan123@mail.ustc.edu.cn"
] | fan123@mail.ustc.edu.cn |
489848619361797dd5b6892c70225832673c4ac7 | 594571877f04f92307489a3344b4e9747a5bd8f4 | /Board.cpp | 1933529343b2279d6aaf7abfaf6e770b1fd80632 | [] | no_license | varunjanga/8puzzle_solver | f023d847b966d3a3c85b6052e25b8b27003bd012 | 96a6e0a9ff42b658dac71a6cf4ac5eb38aba9d01 | refs/heads/master | 2021-06-02T22:10:57.540912 | 2019-08-22T19:28:26 | 2019-08-22T19:28:26 | 8,114,283 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,911 | cpp | #include "Board.h"
//Members are defined below
//-----------DEFAULT CONSTRUCTOR------------------------------------------------
Board::Board(){}
//--------------BOARD CONSTRUCTOR-----------------------------------------------
Board::Board(char par){
parent = par;
}
//-------------BOARD CONSTRUCTOR------------------------------------------------
// HERE INPUTS ARE BOARD SIZE ,CONFIGURATION AND DIRECTION.
Board::Board(int** tiles,char dir,int n){
N = n;
parent = dir;
board = new int*[N];
for (int i = 0; i < N; i++){
board[i] = new int[N];
for (int j = 0; j < N; j++){
if(tiles[i][j] == 0) {
x_hole = i;
y_hole = j;
}
board[i][j] = tiles[i][j];
}
}
}
//-----------PRINT FUNCTION-----------------------------------------------------
//prints the board on the terminal
void Board::print()const{
for (int i = 0; i < N; i++){
for (int j = 0; j < N; j++)
cout << board[i][j]<< ' ';
cout << endl;
}
cout << endl;
}
//-------------HEURISTIC CHOOSING FUNCTION--------------------------------------
// returns desired heuristic.
int Board::heuristic_val(char choose){
if (choose == 'h')
return hamming();
else if (choose == 'm')
return manhattan();
else if (choose == 'e')
return euclidean();
else if (choose == 'n')
return nilsson_score();
else if (choose == 'b')
return blank();
else{
cout << "Board::heuristic(char choose)\nBug here!!!!!!!!!!\n";
return 1;
}
}
//-------------ABS (absolute)---------------------------------------------------
//gives the absolute of the given value
int abs_(int x){
if (x >= 0) return x;
else return -x;
}
/*
** • ADIMISSIBLE HEURISTICS
** An admissible heuristic never overestimates the cost of reaching the goal.
** Using an admissible heuristic will always result in an optimal solution.
• NON-ADIMISSIBLE HEURISTICS
** A non-admissible heuristic may overestimate the cost of reaching the
** goal. It may or may not result in an optimal solution. However, the
** advantage is that sometimes, a non-admissible heuristic expands much
** fewer nodes. Thus, the total cost (= search cost + path cost) may actually
** be lower than an optimal solution using an admissible heuristic.
*/
/*---------------BLANK (HEURISTIC)----------------------------------------------
** NON ADMISSIBLE HEURISTIC
** The sum of the Manhattan distances from a tile to the blank square plus
** nilsson's manhattan.
** for this heuristic the final board state is
**
** 1 2 3
** 8 0 4
** 7 6 5
*/
int Board::blank(){
int sum_blank = 0;
for (int i = 0; i < N; i++)
for (int j = 0; j < N; j++)
sum_blank += abs_(i-x_hole) + abs_(j-y_hole);
return sum_blank - 12 + nilsson_manhattan();
}
/*-----------------EUCLIDEAN (HEURISTIC)---------------------------------------
** ADMISSIBLE HEURISTIC
** Sum of Eucledian distances of the tiles from their goal positions.
** for this heuristic the final board state is
**
** 1 2 3
** 4 5 6
** 7 8 0
*/
int Board::euclidean(){
double sum_euclidean = 0;
for (int i = 0; i < N; i++)
for (int j = 0; j < N; j++)
sum_euclidean += euclidean_distance(i,j,board[i][j]);
return floor(sum_euclidean);
}
/*-----------------HELPER FUNTION-----------------------------------------------
** return the euclidean distance value for a particular tile.
** x1,y1 be goalstate positions and X1,Y1 be current state position.
** then the euclidean distance is given by square root of (x1-X1)^2 + (y1-Y1)^2
*/
double Board::euclidean_distance(int x,int y,int val){
if(val==0)
return 0;
double distance = 0;
distance = sqrt(pow(x - ((val-1)/N),2) + pow((y+1-val)%N,2) );
return distance;
}
/*-------------------NILSSON'S SEQUENCE SCORE-----------------------------------
** NON ADMISSIBLE HEURISTIC.
** Nilsson’s Sequence Score
** h(n) = P(n) + 3 S(n)
** P(n) : Sum of Manhattan distances of each tile from its proper position
** S(n) : A sequence score obtained by checking around the non-central
** squares in turn, allotting 2 for every tile not followed by its proper
** successor and 0 for every other tile, except that a piece in the center
** scores 1
** for this heuristic the final board state is
**
** 1 2 3
** 8 0 4
** 7 6 5
*/
int Board::nilsson_score(){
int sequence_score = 0;
if(board[1][1]!=0)
sequence_score += 1;
sequence_score += nilsson_check(0,0,0,1);
sequence_score += nilsson_check(0,1,0,2);
sequence_score += nilsson_check(0,2,1,2);
sequence_score += nilsson_check(1,2,2,2);
sequence_score += nilsson_check(2,2,2,1);
sequence_score += nilsson_check(2,1,2,0);
sequence_score += nilsson_check(2,0,1,0);
sequence_score += nilsson_check(1,0,0,0);
return 3 * sequence_score + nilsson_manhattan();
}
/*------------------HELPER FUNCTION---------------------------------------------
** NILSSONS_CHECK
** checks the sequence between the two inputs and returns 2 or 0 appropriately.
*/
int Board::nilsson_check(int x1,int y1,int x2,int y2){
if(board[x2][y2]-board[x1][y1]!=1 && board[x2][y2]-board[x1][y1]!=-7)
return 2;
return 0;
}
/*-------------------HELPER FUNCTION--------------------------------------------
** NILSSON_MANHATTAN
** gives the manhattan distance of a particular tile.
*/
int Board::nilsson_manhattan(){
int manhattan_score = 0;
for (int i = 0; i < N; i++)
for (int j = 0; j < N; j++){
if(board[i][j]==0){
manhattan_score += abs_(i-1) + abs_(j-1);
}
if(board[i][j]==1){
manhattan_score += abs_(i-0) + abs_(j-0);
}
if(board[i][j]==2){
manhattan_score += abs_(i-0) + abs_(j-1);
}
if(board[i][j]==3){
manhattan_score += abs_(i-0) + abs_(j-2);
}
if(board[i][j]==4){
manhattan_score += abs_(i-1) + abs_(j-2);
}
if(board[i][j]==5){
manhattan_score += abs_(i-2) + abs_(j-2);
}
if(board[i][j]==6){
manhattan_score += abs_(i-2) + abs_(j-1);
}
if(board[i][j]==7){
manhattan_score += abs_(i-2) + abs_(j-0);
}
if(board[i][j]==8){
manhattan_score += abs_(i-1) + abs_(j-0);
}
}
return manhattan_score;
}
/*--------------------------HAMMING (HEURISTIC)-------------------------------
** ADMISSIBLE HEURISTIC
** It is the no of miss placed tiles.
** 1 2 3
** 4 5 6
** 7 8 0
*/
int Board::hamming(){
int sum_mismatch = 0;
for (int i = 0; i < N; i++)
for (int j = 0; j < N; j++)
if (N*i + j+1 != board[i][j])
sum_mismatch ++;
if(board[N-1][N-1] == 0) sum_mismatch--;
return sum_mismatch;
}
/*---------------------MANHATTAN (HEURISTIC)-----------------------------------
** ADMISSIBLE HEURISTIC
** Sum of Manhattan distances of the tiles from their goal positions.
** 1 2 3
** 4 5 6
** 7 8 0
*/
int Board::manhattan(){
int sum_Distances = 0;
for (int i = 0; i < N; i++)
for (int j = 0; j < N; j++)
sum_Distances += distance(i,j,board[i][j]);
return sum_Distances;
}
/*--------------DISTANCE HELPER FUNCTION----------------------------------------
** gives the manhattan distance for the given input.
*/
int Board::distance(int x,int y,int val){
if(val == 0) return (N-1 - x) + (N-1 - y);
return abs_(x - ((val-1)/N)) + abs_(y+1-val)%N;
}
//-------------GETBOARDVAL-----------------------------------------------------
// returns the board value for a particula i,j values.
int Board::getBoardVal(int i,int j) const{
return board[i][j];
}
/*-----------------OPERATOR= OVERLOADING----------------------------------------
** overloading = operator for the board.
** wherever we equal two board data types this function copies all the data
** members into the left operand.
*/
void Board::operator=(Board b){
this->direction = b.direction;
this->N = b.N;
board = new int*[N];
for (int i = 0; i < N; i++){
board[i] = new int[N];
for (int j = 0; j < N; j++){
int temp = b.getBoardVal(i,j);
if (temp == 0){
x_hole = i;
y_hole = j;
}
board[i][j] = temp;
}
}
x_hole = b.x_hole;
y_hole = b.y_hole;
depth = b.depth ;
}
/*-----------------OPERATOR== OVERLOADING----------------------------------------
** overloading == operator for the board.
** wherever two board data types are compared this function returns a
** bool.
*/
bool Board::operator==(Board b)const{
for(int i = 0;i < N; i++){
for (int j = 0; j < N; j++){
if(this->getBoardVal(i,j) != b.getBoardVal(i,j))
return false;
}
}
return true;
}
/*-----------------OPERATOR< OVERLOADING----------------------------------------
** overloading < operator for the board.
** wherever two board data types are compared this function always true.
*/
bool Board::operator<(Board)const{
return true;
}
/*----------------------NEIGHBOURS----------------------------------------------
** This function returns the queue containing all the possible outcomes
** of the given board.
*/
queue<char> Board::neighbours(){
queue <char> neighbours_q;
map<char,bool> dir_map;
dir_map['u'] = true;//up
dir_map['d'] = true;//down
dir_map['l'] = true;//left
dir_map['r'] = true;//right
if(x_hole == 0) dir_map['u'] = false;
if(x_hole == N-1) dir_map['d'] = false;
if(y_hole == 0) dir_map['l'] = false;
if(y_hole == N-1) dir_map['r'] = false;
if(dir_map['u'] && parent != 'd') neighbours_q.push('u');
if(dir_map['d'] && parent != 'u') neighbours_q.push('d');
if(dir_map['r'] && parent != 'l') neighbours_q.push('r');
if(dir_map['l'] && parent != 'r') neighbours_q.push('l');
return neighbours_q;
}
/*--------------------MAKEMOVE--------------------------------------------------
** This function when given a char (either of 'u','d','l','r') , modifies the
** board such that the blank space is move according to the input.
** code is very simple to understand.
*/
void Board::makeMove(char path){
// printf("x %d,y %d parent %c\n",x_hole,y_hole,parent);
int temp;
parent = path;
switch (path){
case 'u':{
temp = board[x_hole - 1][y_hole];
board[x_hole - 1][y_hole] = 0;
board[x_hole][y_hole] = temp;
x_hole--;
break;
}
case 'd':{
temp = board[x_hole + 1][y_hole];
board[x_hole + 1][y_hole] = 0;
board[x_hole][y_hole] = temp;
x_hole++;
break;
}
case 'l':{
temp = board[x_hole][y_hole - 1];
board[x_hole][y_hole - 1] = 0;
board[x_hole][y_hole] = temp;
y_hole--;
break;
}
case 'r':{
int temp = board[x_hole][y_hole + 1];
board[x_hole][y_hole + 1] = 0;
board[x_hole][y_hole] = temp;
y_hole++;
break;
}
}
}
| [
"varunjanga@gmail.com"
] | varunjanga@gmail.com |
7920da7ef604ee4ab8f72480f0a42d077bca92b4 | cf2fc63b570c23eb26b7cc1742bbabcbe978721c | /cs165/check08b/smartphone.h | 6cf6d3fe8ecba82309be860743269c3dcc4710ba | [] | no_license | mahoryu/School_FIles | 77175203cf2b18d4eb8e7a168c760936e0a036b0 | afcc73957c24e73289cb960de6196eb1102786d8 | refs/heads/master | 2022-01-09T20:21:03.666621 | 2019-04-30T02:40:52 | 2019-04-30T02:40:52 | 183,820,851 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 344 | h | /****************
* smartphone.h
****************/
#ifndef SMARTPHONE_H
#define SMARTPHONE_H
#include "phone.h"
#include <iostream>
#include <string>
using namespace std;
// TODO: Put your SmartPhone definition here
class SmartPhone : public Phone
{
private:
string email;
public:
void prompt();
void display();
};
#endif
| [
"mahoryu@gmail.com"
] | mahoryu@gmail.com |
b6704cf8f428f98a0498d0e1fa37a8df172ce169 | 7946f24d39d4e3347a0ea0d733c7243119347aef | /kt_ng-to.cpp | 5ab94d75eb3521251b98f7913aa6aa9bec7f17b9 | [] | no_license | vanson9x/Code-C-Advance | 8dec2bf60eb1faded93ef69d3f52f2bb7eb39858 | 53afc8e6cf3c91b178b2d53673b68909769242a5 | refs/heads/master | 2021-01-01T03:55:14.243818 | 2016-04-18T23:03:03 | 2016-04-18T23:03:03 | 56,548,135 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 361 | cpp | #include<stdio.h>
#include<conio.h>
#include<math.h>
int main(){
int n,i;
printf("Nhap so nguyen n= ");
scanf("%d",&n);
if(n<2){
printf("%d Khong phai so nguyen to!",n);
return 0;
}
for(int i=2;i<=sqrt(n);i++)
if(n%2==0){
printf("%d khong phai so nguyen to",n);
return 0;
}
printf("%d la so nguyen to!",n);
getch();
}
| [
"vanson9x.it@gmail.com"
] | vanson9x.it@gmail.com |
5f5d9d2eb72514cef29627e380243c22fb36e539 | cfe21b6b29ed0421f2366bba66fb98ad0deb29a3 | /src/qt/rpcconsole.cpp | 0545471207b155f846f10fd381d711a68f9c10e6 | [
"MIT"
] | permissive | Sector48/Sector | 252da8e137b43e444c1e5ef383477d9dbbd79783 | bcf99bedba3a72b505c3a86d4317cc682a3d78bb | refs/heads/master | 2020-05-19T16:35:38.667095 | 2015-08-29T16:57:48 | 2015-08-29T16:57:48 | 41,575,040 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 14,505 | cpp | #include "rpcconsole.h"
#include "ui_rpcconsole.h"
#include "clientmodel.h"
#include "bitcoinrpc.h"
#include "guiutil.h"
#include <QTime>
#include <QTimer>
#include <QThread>
#include <QTextEdit>
#include <QKeyEvent>
#include <QUrl>
#include <QScrollBar>
#include <openssl/crypto.h>
// TODO: make it possible to filter out categories (esp debug messages when implemented)
// TODO: receive errors and debug messages through ClientModel
const int CONSOLE_SCROLLBACK = 50;
const int CONSOLE_HISTORY = 50;
const QSize ICON_SIZE(24, 24);
const struct {
const char *url;
const char *source;
} ICON_MAPPING[] = {
{"cmd-request", ":/icons/tx_input"},
{"cmd-reply", ":/icons/tx_output"},
{"cmd-error", ":/icons/tx_output"},
{"misc", ":/icons/tx_inout"},
{NULL, NULL}
};
/* Object for executing console RPC commands in a separate thread.
*/
class RPCExecutor: public QObject
{
Q_OBJECT
public slots:
void start();
void request(const QString &command);
signals:
void reply(int category, const QString &command);
};
#include "rpcconsole.moc"
void RPCExecutor::start()
{
// Nothing to do
}
/**
* Split shell command line into a list of arguments. Aims to emulate \c bash and friends.
*
* - Arguments are delimited with whitespace
* - Extra whitespace at the beginning and end and between arguments will be ignored
* - Text can be "double" or 'single' quoted
* - The backslash \c \ is used as escape character
* - Outside quotes, any character can be escaped
* - Within double quotes, only escape \c " and backslashes before a \c " or another backslash
* - Within single quotes, no escaping is possible and no special interpretation takes place
*
* @param[out] args Parsed arguments will be appended to this list
* @param[in] strCommand Command line to split
*/
bool parseCommandLine(std::vector<std::string> &args, const std::string &strCommand)
{
enum CmdParseState
{
STATE_EATING_SPACES,
STATE_ARGUMENT,
STATE_SINGLEQUOTED,
STATE_DOUBLEQUOTED,
STATE_ESCAPE_OUTER,
STATE_ESCAPE_DOUBLEQUOTED
} state = STATE_EATING_SPACES;
std::string curarg;
foreach(char ch, strCommand)
{
switch(state)
{
case STATE_ARGUMENT: // In or after argument
case STATE_EATING_SPACES: // Handle runs of whitespace
switch(ch)
{
case '"': state = STATE_DOUBLEQUOTED; break;
case '\'': state = STATE_SINGLEQUOTED; break;
case '\\': state = STATE_ESCAPE_OUTER; break;
case ' ': case '\n': case '\t':
if(state == STATE_ARGUMENT) // Space ends argument
{
args.push_back(curarg);
curarg.clear();
}
state = STATE_EATING_SPACES;
break;
default: curarg += ch; state = STATE_ARGUMENT;
}
break;
case STATE_SINGLEQUOTED: // Single-quoted string
switch(ch)
{
case '\'': state = STATE_ARGUMENT; break;
default: curarg += ch;
}
break;
case STATE_DOUBLEQUOTED: // Double-quoted string
switch(ch)
{
case '"': state = STATE_ARGUMENT; break;
case '\\': state = STATE_ESCAPE_DOUBLEQUOTED; break;
default: curarg += ch;
}
break;
case STATE_ESCAPE_OUTER: // '\' outside quotes
curarg += ch; state = STATE_ARGUMENT;
break;
case STATE_ESCAPE_DOUBLEQUOTED: // '\' in double-quoted text
if(ch != '"' && ch != '\\') curarg += '\\'; // keep '\' for everything but the quote and '\' itself
curarg += ch; state = STATE_DOUBLEQUOTED;
break;
}
}
switch(state) // final state
{
case STATE_EATING_SPACES:
return true;
case STATE_ARGUMENT:
args.push_back(curarg);
return true;
default: // ERROR to end in one of the other states
return false;
}
}
void RPCExecutor::request(const QString &command)
{
std::vector<std::string> args;
if(!parseCommandLine(args, command.toStdString()))
{
emit reply(RPCConsole::CMD_ERROR, QString("Parse error: unbalanced ' or \""));
return;
}
if(args.empty())
return; // Nothing to do
try
{
std::string strPrint;
// Convert argument list to JSON objects in method-dependent way,
// and pass it along with the method name to the dispatcher.
json_spirit::Value result = tableRPC.execute(
args[0],
RPCConvertValues(args[0], std::vector<std::string>(args.begin() + 1, args.end())));
// Format result reply
if (result.type() == json_spirit::null_type)
strPrint = "";
else if (result.type() == json_spirit::str_type)
strPrint = result.get_str();
else
strPrint = write_string(result, true);
emit reply(RPCConsole::CMD_REPLY, QString::fromStdString(strPrint));
}
catch (json_spirit::Object& objError)
{
try // Nice formatting for standard-format error
{
int code = find_value(objError, "code").get_int();
std::string message = find_value(objError, "message").get_str();
emit reply(RPCConsole::CMD_ERROR, QString::fromStdString(message) + " (code " + QString::number(code) + ")");
}
catch(std::runtime_error &) // raised when converting to invalid type, i.e. missing code or message
{ // Show raw JSON object
emit reply(RPCConsole::CMD_ERROR, QString::fromStdString(write_string(json_spirit::Value(objError), false)));
}
}
catch (std::exception& e)
{
emit reply(RPCConsole::CMD_ERROR, QString("Error: ") + QString::fromStdString(e.what()));
}
}
RPCConsole::RPCConsole(QWidget *parent) :
QDialog(parent),
ui(new Ui::RPCConsole),
historyPtr(0)
{
ui->setupUi(this);
#ifndef Q_OS_MAC
ui->openDebugLogfileButton->setIcon(QIcon(":/icons/export"));
ui->showCLOptionsButton->setIcon(QIcon(":/icons/options"));
#endif
// Install event filter for up and down arrow
ui->lineEdit->installEventFilter(this);
ui->messagesWidget->installEventFilter(this);
connect(ui->clearButton, SIGNAL(clicked()), this, SLOT(clear()));
// set OpenSSL version label
ui->openSSLVersion->setText(SSLeay_version(SSLEAY_VERSION));
startExecutor();
clear();
}
RPCConsole::~RPCConsole()
{
emit stopExecutor();
delete ui;
}
bool RPCConsole::eventFilter(QObject* obj, QEvent *event)
{
if(event->type() == QEvent::KeyPress) // Special key handling
{
QKeyEvent *keyevt = static_cast<QKeyEvent*>(event);
int key = keyevt->key();
Qt::KeyboardModifiers mod = keyevt->modifiers();
switch(key)
{
case Qt::Key_Up: if(obj == ui->lineEdit) { browseHistory(-1); return true; } break;
case Qt::Key_Down: if(obj == ui->lineEdit) { browseHistory(1); return true; } break;
case Qt::Key_PageUp: /* pass paging keys to messages widget */
case Qt::Key_PageDown:
if(obj == ui->lineEdit)
{
QApplication::postEvent(ui->messagesWidget, new QKeyEvent(*keyevt));
return true;
}
break;
default:
// Typing in messages widget brings focus to line edit, and redirects key there
// Exclude most combinations and keys that emit no text, except paste shortcuts
if(obj == ui->messagesWidget && (
(!mod && !keyevt->text().isEmpty() && key != Qt::Key_Tab) ||
((mod & Qt::ControlModifier) && key == Qt::Key_V) ||
((mod & Qt::ShiftModifier) && key == Qt::Key_Insert)))
{
ui->lineEdit->setFocus();
QApplication::postEvent(ui->lineEdit, new QKeyEvent(*keyevt));
return true;
}
}
}
return QDialog::eventFilter(obj, event);
}
void RPCConsole::setClientModel(ClientModel *model)
{
this->clientModel = model;
if(model)
{
// Subscribe to information, replies, messages, errors
connect(model, SIGNAL(numConnectionsChanged(int)), this, SLOT(setNumConnections(int)));
connect(model, SIGNAL(numBlocksChanged(int,int)), this, SLOT(setNumBlocks(int,int)));
// Provide initial values
ui->clientVersion->setText(model->formatFullVersion());
ui->clientName->setText(model->clientName());
ui->buildDate->setText(model->formatBuildDate());
ui->startupTime->setText(model->formatClientStartupTime());
setNumConnections(model->getNumConnections());
ui->isTestNet->setChecked(model->isTestNet());
setNumBlocks(model->getNumBlocks(), model->getNumBlocksOfPeers());
}
}
static QString categoryClass(int category)
{
switch(category)
{
case RPCConsole::CMD_REQUEST: return "cmd-request"; break;
case RPCConsole::CMD_REPLY: return "cmd-reply"; break;
case RPCConsole::CMD_ERROR: return "cmd-error"; break;
default: return "misc";
}
}
void RPCConsole::clear()
{
ui->messagesWidget->clear();
ui->lineEdit->clear();
ui->lineEdit->setFocus();
// Add smoothly scaled icon images.
// (when using width/height on an img, Qt uses nearest instead of linear interpolation)
for(int i=0; ICON_MAPPING[i].url; ++i)
{
ui->messagesWidget->document()->addResource(
QTextDocument::ImageResource,
QUrl(ICON_MAPPING[i].url),
QImage(ICON_MAPPING[i].source).scaled(ICON_SIZE, Qt::IgnoreAspectRatio, Qt::SmoothTransformation));
}
// Set default style sheet
ui->messagesWidget->document()->setDefaultStyleSheet(
"table { }"
"td.time { color: #808080; padding-top: 3px; } "
"td.message { font-family: Monospace; font-size: 12px; } "
"td.cmd-request { color: #006060; } "
"td.cmd-error { color: red; } "
"b { color: #006060; } "
);
message(CMD_REPLY, (tr("Welcome to the sector RPC console.") + "<br>" +
tr("Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen.") + "<br>" +
tr("Type <b>help</b> for an overview of available commands.")), true);
}
void RPCConsole::message(int category, const QString &message, bool html)
{
QTime time = QTime::currentTime();
QString timeString = time.toString();
QString out;
out += "<table><tr><td class=\"time\" width=\"65\">" + timeString + "</td>";
out += "<td class=\"icon\" width=\"32\"><img src=\"" + categoryClass(category) + "\"></td>";
out += "<td class=\"message " + categoryClass(category) + "\" valign=\"middle\">";
if(html)
out += message;
else
out += GUIUtil::HtmlEscape(message, true);
out += "</td></tr></table>";
ui->messagesWidget->append(out);
}
void RPCConsole::setNumConnections(int count)
{
ui->numberOfConnections->setText(QString::number(count));
}
void RPCConsole::setNumBlocks(int count, int countOfPeers)
{
ui->numberOfBlocks->setText(QString::number(count));
ui->totalBlocks->setText(QString::number(countOfPeers));
if(clientModel)
{
// If there is no current number available display N/A instead of 0, which can't ever be true
ui->totalBlocks->setText(clientModel->getNumBlocksOfPeers() == 0 ? tr("N/A") : QString::number(clientModel->getNumBlocksOfPeers()));
ui->lastBlockTime->setText(clientModel->getLastBlockDate().toString());
}
}
void RPCConsole::on_lineEdit_returnPressed()
{
QString cmd = ui->lineEdit->text();
ui->lineEdit->clear();
if(!cmd.isEmpty())
{
message(CMD_REQUEST, cmd);
emit cmdRequest(cmd);
// Truncate history from current position
history.erase(history.begin() + historyPtr, history.end());
// Append command to history
history.append(cmd);
// Enforce maximum history size
while(history.size() > CONSOLE_HISTORY)
history.removeFirst();
// Set pointer to end of history
historyPtr = history.size();
// Scroll console view to end
scrollToEnd();
}
}
void RPCConsole::browseHistory(int offset)
{
historyPtr += offset;
if(historyPtr < 0)
historyPtr = 0;
if(historyPtr > history.size())
historyPtr = history.size();
QString cmd;
if(historyPtr < history.size())
cmd = history.at(historyPtr);
ui->lineEdit->setText(cmd);
}
void RPCConsole::startExecutor()
{
QThread* thread = new QThread;
RPCExecutor *executor = new RPCExecutor();
executor->moveToThread(thread);
// Notify executor when thread started (in executor thread)
connect(thread, SIGNAL(started()), executor, SLOT(start()));
// Replies from executor object must go to this object
connect(executor, SIGNAL(reply(int,QString)), this, SLOT(message(int,QString)));
// Requests from this object must go to executor
connect(this, SIGNAL(cmdRequest(QString)), executor, SLOT(request(QString)));
// On stopExecutor signal
// - queue executor for deletion (in execution thread)
// - quit the Qt event loop in the execution thread
connect(this, SIGNAL(stopExecutor()), executor, SLOT(deleteLater()));
connect(this, SIGNAL(stopExecutor()), thread, SLOT(quit()));
// Queue the thread for deletion (in this thread) when it is finished
connect(thread, SIGNAL(finished()), thread, SLOT(deleteLater()));
// Default implementation of QThread::run() simply spins up an event loop in the thread,
// which is what we want.
thread->start();
}
void RPCConsole::on_tabWidget_currentChanged(int index)
{
if(ui->tabWidget->widget(index) == ui->tab_console)
{
ui->lineEdit->setFocus();
}
}
void RPCConsole::on_openDebugLogfileButton_clicked()
{
GUIUtil::openDebugLogfile();
}
void RPCConsole::scrollToEnd()
{
QScrollBar *scrollbar = ui->messagesWidget->verticalScrollBar();
scrollbar->setValue(scrollbar->maximum());
}
void RPCConsole::on_showCLOptionsButton_clicked()
{
GUIUtil::HelpMessageBox help;
help.exec();
}
| [
"Sect.48"
] | Sect.48 |
054dfb1300f21fc69cb85ab2d9a8df43b8237235 | 149489e12a2f209e33a82684518785540b3508b8 | /src/sim/serialize.hh | 024d29cbbd7d24150e37ddaf965fb5d6919abcc2 | [
"BSD-3-Clause",
"LicenseRef-scancode-proprietary-license",
"LGPL-2.0-or-later",
"MIT"
] | permissive | FPSG-UIUC/SPT | 8dac03b54e42df285d774bfc2c08be3123ea0dbb | 34ec7b2911078e36284fa0d35ae1b5551b48ba1b | refs/heads/master | 2023-04-15T07:11:36.092504 | 2022-05-28T21:34:30 | 2022-05-28T21:34:30 | 405,761,413 | 4 | 1 | BSD-3-Clause | 2023-04-11T11:44:49 | 2021-09-12T21:54:08 | C++ | UTF-8 | C++ | false | false | 13,762 | hh | /*
* Copyright (c) 2015 ARM Limited
* All rights reserved
*
* The license below extends only to copyright in the software and shall
* not be construed as granting a license to any other intellectual
* property including but not limited to intellectual property relating
* to a hardware implementation of the functionality of the software
* licensed hereunder. You may use the software subject to the license
* terms below provided that you ensure that this notice is replicated
* unmodified and in its entirety in all distributions of the software,
* modified or unmodified, in source code or in binary form.
*
* Copyright (c) 2002-2005 The Regents of The University of Michigan
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met: redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer;
* redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution;
* neither the name of the copyright holders nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* Authors: Nathan Binkert
* Erik Hallnor
* Steve Reinhardt
* Andreas Sandberg
*/
/* @file
* Serialization Interface Declarations
*/
#ifndef __SERIALIZE_HH__
#define __SERIALIZE_HH__
#include <iostream>
#include <list>
#include <map>
#include <stack>
#include <set>
#include <vector>
#include "base/bitunion.hh"
class CheckpointIn;
class IniFile;
class Serializable;
class SimObject;
class SimObjectResolver;
typedef std::ostream CheckpointOut;
template <class T>
void paramOut(CheckpointOut &cp, const std::string &name, const T ¶m);
template <typename T>
void
paramOut(CheckpointOut &cp, const std::string &name, const BitUnionType<T> &p)
{
paramOut(cp, name, static_cast<BitUnionBaseType<T> >(p));
}
template <class T>
void paramIn(CheckpointIn &cp, const std::string &name, T ¶m);
template <typename T>
void
paramIn(CheckpointIn &cp, const std::string &name, BitUnionType<T> &p)
{
BitUnionBaseType<T> b;
paramIn(cp, name, b);
p = b;
}
template <class T>
bool optParamIn(CheckpointIn &cp, const std::string &name, T ¶m,
bool warn = true);
template <typename T>
bool
optParamIn(CheckpointIn &cp, const std::string &name,
BitUnionType<T> &p, bool warn = true)
{
BitUnionBaseType<T> b;
if (optParamIn(cp, name, b, warn)) {
p = b;
return true;
} else {
return false;
}
}
template <class T>
void arrayParamOut(CheckpointOut &cp, const std::string &name,
const T *param, unsigned size);
template <class T>
void arrayParamOut(CheckpointOut &cp, const std::string &name,
const std::vector<T> ¶m);
template <class T>
void arrayParamOut(CheckpointOut &cp, const std::string &name,
const std::list<T> ¶m);
template <class T>
void arrayParamOut(CheckpointOut &cp, const std::string &name,
const std::set<T> ¶m);
template <class T>
void arrayParamIn(CheckpointIn &cp, const std::string &name,
T *param, unsigned size);
template <class T>
void arrayParamIn(CheckpointIn &cp, const std::string &name,
std::vector<T> ¶m);
template <class T>
void arrayParamIn(CheckpointIn &cp, const std::string &name,
std::list<T> ¶m);
template <class T>
void arrayParamIn(CheckpointIn &cp, const std::string &name,
std::set<T> ¶m);
void
objParamIn(CheckpointIn &cp, const std::string &name, SimObject * ¶m);
//
// These macros are streamlined to use in serialize/unserialize
// functions. It's assumed that serialize() has a parameter 'os' for
// the ostream, and unserialize() has parameters 'cp' and 'section'.
#define SERIALIZE_SCALAR(scalar) paramOut(cp, #scalar, scalar)
#define UNSERIALIZE_SCALAR(scalar) paramIn(cp, #scalar, scalar)
#define UNSERIALIZE_OPT_SCALAR(scalar) optParamIn(cp, #scalar, scalar)
// ENUMs are like SCALARs, but we cast them to ints on the way out
#define SERIALIZE_ENUM(scalar) paramOut(cp, #scalar, (int)scalar)
#define UNSERIALIZE_ENUM(scalar) \
do { \
int tmp; \
paramIn(cp, #scalar, tmp); \
scalar = static_cast<decltype(scalar)>(tmp); \
} while (0)
#define SERIALIZE_ARRAY(member, size) \
arrayParamOut(cp, #member, member, size)
#define UNSERIALIZE_ARRAY(member, size) \
arrayParamIn(cp, #member, member, size)
#define SERIALIZE_CONTAINER(member) \
arrayParamOut(cp, #member, member)
#define UNSERIALIZE_CONTAINER(member) \
arrayParamIn(cp, #member, member)
#define SERIALIZE_EVENT(event) event.serializeSection(cp, #event);
#define UNSERIALIZE_EVENT(event) \
do { \
event.unserializeSection(cp, #event); \
eventQueue()->checkpointReschedule(&event); \
} while (0)
#define SERIALIZE_OBJ(obj) obj.serializeSection(cp, #obj)
#define UNSERIALIZE_OBJ(obj) obj.unserializeSection(cp, #obj)
#define SERIALIZE_OBJPTR(objptr) paramOut(cp, #objptr, (objptr)->name())
#define UNSERIALIZE_OBJPTR(objptr) \
do { \
SimObject *sptr; \
objParamIn(cp, #objptr, sptr); \
objptr = dynamic_cast<decltype(objptr)>(sptr); \
} while (0)
/**
* Basic support for object serialization.
*
* Objects that support serialization should derive from this
* class. Such objects can largely be divided into two categories: 1)
* True SimObjects (deriving from SimObject), and 2) child objects
* (non-SimObjects).
*
* SimObjects are serialized automatically into their own sections
* automatically by the SimObject base class (see
* SimObject::serializeAll().
*
* SimObjects can contain other serializable objects that are not
* SimObjects. Much like normal serialized members are not serialized
* automatically, these objects will not be serialized automatically
* and it is expected that the objects owning such serializable
* objects call the required serialization/unserialization methods on
* child objects. The preferred method to serialize a child object is
* to call serializeSection() on the child, which serializes the
* object into a new subsection in the current section. Another option
* is to call serialize() directly, which serializes the object into
* the current section. The latter is not recommended as it can lead
* to naming clashes between objects.
*
* @note Many objects that support serialization need to be put in a
* consistent state when serialization takes place. We refer to the
* action of forcing an object into a consistent state as
* 'draining'. Objects that need draining inherit from Drainable. See
* Drainable for more information.
*/
class Serializable
{
protected:
/**
* Scoped checkpoint section helper class
*
* This helper class creates a section within a checkpoint without
* the need for a separate serializeable object. It is mainly used
* within the Serializable class when serializing or unserializing
* section (see serializeSection() and unserializeSection()). It
* can also be used to maintain backwards compatibility in
* existing code that serializes structs that are not inheriting
* from Serializable into subsections.
*
* When the class is instantiated, it appends a name to the active
* path in a checkpoint. The old path is later restored when the
* instance is destroyed. For example, serializeSection() could be
* implemented by instantiating a ScopedCheckpointSection and then
* calling serialize() on an object.
*/
class ScopedCheckpointSection {
public:
template<class CP>
ScopedCheckpointSection(CP &cp, const char *name) {
pushName(name);
nameOut(cp);
}
template<class CP>
ScopedCheckpointSection(CP &cp, const std::string &name) {
pushName(name.c_str());
nameOut(cp);
}
~ScopedCheckpointSection();
ScopedCheckpointSection() = delete;
ScopedCheckpointSection(const ScopedCheckpointSection &) = delete;
ScopedCheckpointSection &operator=(
const ScopedCheckpointSection &) = delete;
ScopedCheckpointSection &operator=(
ScopedCheckpointSection &&) = delete;
private:
void pushName(const char *name);
void nameOut(CheckpointOut &cp);
void nameOut(CheckpointIn &cp) {};
};
public:
Serializable();
virtual ~Serializable();
/**
* Serialize an object
*
* Output an object's state into the current checkpoint section.
*
* @param cp Checkpoint state
*/
virtual void serialize(CheckpointOut &cp) const = 0;
/**
* Unserialize an object
*
* Read an object's state from the current checkpoint section.
*
* @param cp Checkpoint state
*/
virtual void unserialize(CheckpointIn &cp) = 0;
/**
* Serialize an object into a new section
*
* This method creates a new section in a checkpoint and calls
* serialize() to serialize the current object into that
* section. The name of the section is appended to the current
* checkpoint path.
*
* @param cp Checkpoint state
* @param name Name to append to the active path
*/
void serializeSection(CheckpointOut &cp, const char *name) const;
void serializeSection(CheckpointOut &cp, const std::string &name) const {
serializeSection(cp, name.c_str());
}
/**
* Unserialize an a child object
*
* This method loads a child object from a checkpoint. The object
* name is appended to the active path to form a fully qualified
* section name and unserialize() is called.
*
* @param cp Checkpoint state
* @param name Name to append to the active path
*/
void unserializeSection(CheckpointIn &cp, const char *name);
void unserializeSection(CheckpointIn &cp, const std::string &name) {
unserializeSection(cp, name.c_str());
}
/** Get the fully-qualified name of the active section */
static const std::string ¤tSection();
static int ckptCount;
static int ckptMaxCount;
static int ckptPrevCount;
static void serializeAll(const std::string &cpt_dir);
static void unserializeGlobals(CheckpointIn &cp);
private:
static std::stack<std::string> path;
};
void debug_serialize(const std::string &cpt_dir);
class CheckpointIn
{
private:
IniFile *db;
SimObjectResolver &objNameResolver;
public:
CheckpointIn(const std::string &cpt_dir, SimObjectResolver &resolver);
~CheckpointIn();
const std::string cptDir;
bool find(const std::string §ion, const std::string &entry,
std::string &value);
bool findObj(const std::string §ion, const std::string &entry,
SimObject *&value);
bool entryExists(const std::string §ion, const std::string &entry);
bool sectionExists(const std::string §ion);
// The following static functions have to do with checkpoint
// creation rather than restoration. This class makes a handy
// namespace for them though. Currently no Checkpoint object is
// created on serialization (only unserialization) so we track the
// directory name as a global. It would be nice to change this
// someday
private:
// current directory we're serializing into.
static std::string currentDirectory;
public:
// Set the current directory. This function takes care of
// inserting curTick() if there's a '%d' in the argument, and
// appends a '/' if necessary. The final name is returned.
static std::string setDir(const std::string &base_name);
// Export current checkpoint directory name so other objects can
// derive filenames from it (e.g., memory). The return value is
// guaranteed to end in '/' so filenames can be directly appended.
// This function is only valid while a checkpoint is being created.
static std::string dir();
// Filename for base checkpoint file within directory.
static const char *baseFilename;
};
#endif // __SERIALIZE_HH__
| [
"rutvikc2@midgar.cs.illinois.edu"
] | rutvikc2@midgar.cs.illinois.edu |
665a817b9083381fa159de1151aa739809b411d1 | 0bba69508cdac483879ad0db0dec2fe5121b6c17 | /src/eversome/cloud/operationerror.cpp | ef491d92e6a4f86c3dc77501b0313e82d93f32f2 | [] | no_license | jpnurmi/eversome | e3bc89f06f3b509cf83b9c0b997a0f70c6a768b8 | 385a91288560ffb967f7d907e56c0fc22c1d4d31 | refs/heads/master | 2021-03-12T19:14:35.970207 | 2012-12-29T17:07:40 | 2012-12-29T17:07:40 | 5,862,113 | 6 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,419 | cpp | /*
* Copyright (C) 2012 J-P Nurmi <jpnurmi@gmail.com>
*
* This program 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 2 of the License, or
* (at your option) any later version.
*
* This program 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.
*/
#include "operationerror.h"
#include <QCoreApplication>
#include <Errors_constants.h>
using namespace evernote;
using namespace apache::thrift::protocol;
using namespace apache::thrift::transport;
static const char* other_errors[] =
{
QT_TRANSLATE_NOOP("OperationError", "An unknown error occurred"),
QT_TRANSLATE_NOOP("OperationError", "An unknown operation requested"),
QT_TRANSLATE_NOOP("OperationError", "The application uses too old protocol version: %1.%2")
};
QString OperationError::toString(OtherError error)
{
return QCoreApplication::translate("OperationError", other_errors[error]);
}
static const char* file_errors[] =
{
QT_TRANSLATE_NOOP("OperationError", "An error occurred while reading from a file"),
QT_TRANSLATE_NOOP("OperationError", "An error occurred while writing to a file"),
QT_TRANSLATE_NOOP("OperationError", "A fatal file error occurred"),
QT_TRANSLATE_NOOP("OperationError", "A file resource error"),
QT_TRANSLATE_NOOP("OperationError", "A file could not be opened"),
QT_TRANSLATE_NOOP("OperationError", "A file operation was aborted"),
QT_TRANSLATE_NOOP("OperationError", "A timeout occurred"),
QT_TRANSLATE_NOOP("OperationError", "An unspecified file error occurred"),
QT_TRANSLATE_NOOP("OperationError", "A file could not be removed"),
QT_TRANSLATE_NOOP("OperationError", "A file could not be renamed"),
QT_TRANSLATE_NOOP("OperationError", "The position in a file could not be changed"),
QT_TRANSLATE_NOOP("OperationError", "A file could not be resized"),
QT_TRANSLATE_NOOP("OperationError", "A file could not be accessed"),
QT_TRANSLATE_NOOP("OperationError", "A file could not be copied")
};
QString OperationError::toString(QFile::FileError error)
{
if (error <= QFile::NoError || error > QFile::CopyError)
return toString(UnknownError);
return QCoreApplication::translate("OperationError", file_errors[error-1]);
}
static const char* process_errors[] =
{
QT_TRANSLATE_NOOP("OperationError", "A process failed to start"),
QT_TRANSLATE_NOOP("OperationError", "A process crashed"),
QT_TRANSLATE_NOOP("OperationError", "A process timed out"),
QT_TRANSLATE_NOOP("OperationError", "An error occurred while writing to a process"),
QT_TRANSLATE_NOOP("OperationError", "An error occurred while reading from a process"),
};
QString OperationError::toString(QProcess::ProcessError error)
{
if (error < QProcess::FailedToStart || error >= QProcess::UnknownError)
return toString(UnknownError);
return QCoreApplication::translate("OperationError", process_errors[error]);
}
static const char* edam_errors[] =
{
QT_TRANSLATE_NOOP("OperationError", "The format of the request data was incorrect"),
QT_TRANSLATE_NOOP("OperationError", "Not permitted to perform action"),
QT_TRANSLATE_NOOP("OperationError", "Unexpected problem with the service"),
QT_TRANSLATE_NOOP("OperationError", "A required parameter/field was absent"),
QT_TRANSLATE_NOOP("OperationError", "Operation denied due to data model limit"),
QT_TRANSLATE_NOOP("OperationError", "Operation denied due to user storage limit"),
QT_TRANSLATE_NOOP("OperationError", "Incorrect username and/or password"),
QT_TRANSLATE_NOOP("OperationError", "Authentication token expired"),
QT_TRANSLATE_NOOP("OperationError", "Change denied due to data model conflict"),
QT_TRANSLATE_NOOP("OperationError", "Content of submitted note was malformed"),
QT_TRANSLATE_NOOP("OperationError", "Service shard with account data is temporarily down"),
QT_TRANSLATE_NOOP("OperationError", "Operation denied due to data model limit (too short)"),
QT_TRANSLATE_NOOP("OperationError", "Operation denied due to data model limit (too long)"),
QT_TRANSLATE_NOOP("OperationError", "Operation denied due to data model limit (too few)"),
QT_TRANSLATE_NOOP("OperationError", "Operation denied due to data model limit (too many)"),
QT_TRANSLATE_NOOP("OperationError", "Operation denied because it is currently unsupported")
};
QString OperationError::toString(edam::EDAMErrorCode error)
{
if (error <= edam::UNKNOWN || error > edam::UNSUPPORTED_OPERATION)
return toString(UnknownError);
return QCoreApplication::translate("OperationError", edam_errors[error-1]);
}
static const char* protocol_errors[] =
{
QT_TRANSLATE_NOOP("OperationError", "Invalid protocol data"),
QT_TRANSLATE_NOOP("OperationError", "Negative protocol data size"),
QT_TRANSLATE_NOOP("OperationError", "Protocol data exceeded the size limit"),
QT_TRANSLATE_NOOP("OperationError", "Invalid protocol version"),
QT_TRANSLATE_NOOP("OperationError", "Protocol not implemented")
};
QString OperationError::toString(TProtocolException::TProtocolExceptionType error)
{
if (error <= TProtocolException::UNKNOWN || error > TProtocolException::NOT_IMPLEMENTED)
return toString(UnknownError);
return QCoreApplication::translate("OperationError", protocol_errors[error-1]);
}
static const char* transport_errors[] =
{
QT_TRANSLATE_NOOP("OperationError", "Transport was not open"),
QT_TRANSLATE_NOOP("OperationError", "Transport timed out"),
QT_TRANSLATE_NOOP("OperationError", "End of file while transporting"),
QT_TRANSLATE_NOOP("OperationError", "Transport was interrupted"),
QT_TRANSLATE_NOOP("OperationError", "Invalid transport arguments"),
QT_TRANSLATE_NOOP("OperationError", "Corrupted transport data"),
QT_TRANSLATE_NOOP("OperationError", "Internal transport error")
};
QString OperationError::toString(TTransportException::TTransportExceptionType error)
{
if (error <= TTransportException::UNKNOWN || error > TTransportException::INTERNAL_ERROR)
return toString(UnknownError);
return QCoreApplication::translate("OperationError", transport_errors[error-1]);
}
| [
"jpnurmi@gmail.com"
] | jpnurmi@gmail.com |
c6dc274b024c2895ad96ef4df093d1eb4201b76e | 425db5a849281d333e68c26a26678e7c8ce11b66 | /程序员面试金典/No_02_01.cpp | 76b97e1aafd41e5690bd0d0004350b6082a159d1 | [
"MIT"
] | permissive | lih627/python-algorithm-templates | e8092b327a02506086414df41bbfb2af5d6b06dc | a61fd583e33a769b44ab758990625d3381793768 | refs/heads/master | 2021-07-23T17:10:43.814639 | 2021-01-21T17:14:55 | 2021-01-21T17:14:55 | 238,456,498 | 29 | 8 | null | null | null | null | UTF-8 | C++ | false | false | 613 | cpp | /**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
class Solution {
public:
ListNode* removeDuplicateNodes(ListNode* head) {
if (!head) return head;
unordered_set<int> visited;
ListNode dummy;
dummy.val = -1;
dummy.next = head;
while(head){
visited.insert(head->val);
while (head->next && visited.count(head->next->val)) head->next = head->next->next;
head = head->next;
}
return dummy.next;
}
}; | [
"lih627@outlook.com"
] | lih627@outlook.com |
19f8d712abea42b8f3b37e2d2bac8e582df88557 | 595a4e6adb7fe80cd3699d571919613b727fd5ef | /chrome/base/.svn/text-base/version.h.svn-base | 776ebe668fd3557347bb99e9c2876a9aaa6e6ac4 | [
"BSD-3-Clause"
] | permissive | smartdata-x/glopen | a965ce73591792522d48b4dc330f0dd5957f84e0 | 992f68d4804977fd2054f7844092534621c5d257 | refs/heads/master | 2021-01-01T04:40:44.090583 | 2016-04-26T07:18:30 | 2016-04-26T07:18:30 | 57,106,167 | 0 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 1,496 | // Copyright (c) 2009 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 BASE_VERSION_H_
#define BASE_VERSION_H_
#include <string>
#include <vector>
#include "base/basictypes.h"
#include "base/gtest_prod_util.h"
class Version {
public:
// The version string must be made up of 1 or more uint16's separated
// by '.'. Returns NULL if string is not in this format.
// Caller is responsible for freeing the Version object once done.
static Version* GetVersionFromString(const std::wstring& version_str);
static Version* GetVersionFromString(const std::string& version_str);
// Exposed only so that a Version can be stored in STL containers;
// any call to the methods below on a default-constructed Version
// will DCHECK.
Version();
~Version() {}
bool Equals(const Version& other) const;
// Returns -1, 0, 1 for <, ==, >.
int CompareTo(const Version& other) const;
// Return the string representation of this version.
const std::string GetString() const;
const std::vector<uint16>& components() const { return components_; }
private:
bool InitFromString(const std::string& version_str);
bool is_valid_;
std::vector<uint16> components_;
FRIEND_TEST_ALL_PREFIXES(VersionTest, DefaultConstructor);
FRIEND_TEST_ALL_PREFIXES(VersionTest, GetVersionFromString);
FRIEND_TEST_ALL_PREFIXES(VersionTest, Compare);
};
#endif // BASE_VERSION_H_
| [
"kerry@miglab.com"
] | kerry@miglab.com | |
723a48f6d5f132ff5fe4b4f6ce41b8266edd571c | 58febce6be896835382f03b21162f0090b3fcb0a | /leetcode/daily/2021_1_Jan/20.cpp | c1ec466130978b2fb7b7c155771aa75e65b97c51 | [
"Apache-2.0"
] | permissive | bvbasavaraju/competitive_programming | 5e63c0710b02476ecb499b2087ddec674fdb049f | bc17ec49b601aac62fa94449927fd64b620352d7 | refs/heads/master | 2022-10-31T15:17:00.151024 | 2022-10-23T09:14:52 | 2022-10-23T09:14:52 | 216,365,719 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,307 | cpp | /****************************************************
Date: Jan 20th
link: https://leetcode.com/explore/challenge/card/january-leetcoding-challenge-2021/581/week-3-january-15th-january-21st/3606/
****************************************************/
#include <iostream>
#include <vector>
#include <list>
#include <algorithm>
#include <string>
#include <stack>
#include <queue>
#include <map>
#include <unordered_map>
#include <unordered_set>
#include <cmath>
#include <limits.h>
using namespace std;
/*
Q: Valid Parentheses
Given a string s containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid.
An input string is valid if:
+ Open brackets must be closed by the same type of brackets.
+ Open brackets must be closed in the correct order.
Example 1:
Input: s = "()"
Output: true
Example 2:
Input: s = "()[]{}"
Output: true
Example 3:
Input: s = "(]"
Output: false
Example 4:
Input: s = "([)]"
Output: false
Example 5:
Input: s = "{[]}"
Output: true
Constraints:
1 <= s.length <= 104
s consists of parentheses only '()[]{}'.
Hide Hint #1
An interesting property about a valid parenthesis expression is that a sub-expression of a valid expression should also be a valid expression. (Not every sub-expression) e.g.
{ { } [ ] [ [ [ ] ] ] } is VALID expression
[ [ [ ] ] ] is VALID sub-expression
{ } [ ] is VALID sub-expression
Can we exploit this recursive structure somehow?
Hide Hint #2
What if whenever we encounter a matching pair of parenthesis in the expression, we simply remove it from the expression? This would keep on shortening the expression. e.g.
{ { ( { } ) } }
|_|
{ { ( ) } }
|______|
{ { } }
|__________|
{ }
|________________|
VALID EXPRESSION!
Hide Hint #3
The stack data structure can come in handy here in representing this recursive structure of the problem.
We can't really process this from the inside out because we don't have an idea about the overall structure.
But, the stack can help us process this recursively i.e. from outside to inwards.
*/
class Solution
{
public:
bool isValid(string s)
{
stack<char> container;
for(char ch : s)
{
bool does_match = false;
switch(ch)
{
case '(':
case '[':
case '{':
container.push(ch);
continue;
break;
case ')':
if(!container.empty() && container.top() == '(')
{
does_match = true;
}
break;
case ']':
if(!container.empty() && container.top() == '[')
{
does_match = true;
}
break;
case '}':
if(!container.empty() && container.top() == '{')
{
does_match = true;
}
break;
default:
continue;
}
if(does_match)
{
container.pop();
}
else
{
return false;
}
}
return container.empty();
}
}; | [
"bv.basavaraju@gmail.com"
] | bv.basavaraju@gmail.com |
b35cc2db1fbd93cf7355d41d775b13cf1c12498f | c442ff6fd073ac4ba567ed61bcb4f6de8e1c8dfd | /src/project.cc | 591e67658c9b499b71f6bc782edc2e78221de9fb | [
"CC0-1.0",
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | origamicomet/barebones | b85e1492a339f579336a38fcf763976bb2c2772e | 82dc9ed33711dc81f80bf6821ac70857fc7f6a44 | refs/heads/master | 2021-05-15T18:54:45.379827 | 2017-10-22T06:46:14 | 2017-10-22T06:46:14 | 107,737,314 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 179 | cc | #include "project.h"
#include <stdint.h>
#include <stdlib.h>
#include <stdio.h>
int main(int argc, const char *argv[]) {
::printf("Hello, World!\n");
return EXIT_SUCCESS;
}
| [
"m.t.williams@live.com"
] | m.t.williams@live.com |
38af9d6b113f4c4251847dd775db3046601a20be | 8b0ad323f016dae03b22f18f255066c60d4d91de | /Bebop2cpp-master/src/Drone.cpp | c63989592c0f0c8d35617c424c9b08b48024a047 | [
"MIT"
] | permissive | StalkerBrig/SNAP | 5e26cb793cae6273de2b33201e240465d8669afd | 861941f2a6277eb9884a0c1afbaca2ac60d40f30 | refs/heads/master | 2021-04-27T01:57:22.061422 | 2018-05-03T05:30:28 | 2018-05-03T05:30:28 | 122,685,379 | 0 | 0 | MIT | 2018-05-03T03:11:43 | 2018-02-24T00:00:36 | Shell | UTF-8 | C++ | false | false | 52,842 | cpp | /**
* Includes
*/
#include "Drone.h"
#include <errno.h>
#include <vector>
#include "Fullnavdata.h"
/**
* Some more define to clean out
*/
#define BD_CLIENT_STREAM_PORT 55004
#define BD_CLIENT_CONTROL_PORT 55005
/**
* Methods
*/
/// ************************************************************************************************************* PUBLIC
Drone::Drone(const std::string& ipAddress, unsigned int discoveryPort, unsigned int c2dPort, unsigned int d2cPort):
_deviceController(NULL),
_deviceState(ARCONTROLLER_DEVICE_STATE_MAX),
_ip(ipAddress),
_discoveryPort(discoveryPort),
_c2dPort(c2dPort),
_d2cPort(d2cPort),
_usingFullNavdata(false),
_navdata(new Fullnavdata()),
_spinlock_camera(ATOMIC_FLAG_INIT)
{
bool failed = false;
ARDISCOVERY_Device_t *device = NULL;
eARCONTROLLER_ERROR error = ARCONTROLLER_OK;
_lockGyro.clear();
_lockAccelero.clear();
if (mkdtemp(_file_dir_name) == NULL)
{
ARSAL_PRINT(ARSAL_PRINT_ERROR, "ERROR", "Mkdtemp failed.");
_isValid = false;
return;
}
printf("DIRNAME = %s\n", _file_dir_name);
snprintf(_file_name, sizeof(_file_name), "%s/%s", _file_dir_name, FIFO_NAME);
_videoOut = fopen(_file_name, "wb+");
if(_videoOut == NULL)
{
ARSAL_PRINT(ARSAL_PRINT_ERROR, "ERROR", "Mkfifo failed: %d, %s", errno, strerror(errno));
_isValid = false;
return;
}
ARSAL_Sem_Init (&(_stateSem), 0, 0);
/**
* Exchanging JSON information with the drone
*/
// TODO actually, there is no usage of it right now and, as is, it makes multidrone not working.
//this->ardiscoveryConnect();
/**
* Getting Network controller
*/
if (!failed)
{
/* start */
// No use right now and probably ever since libarcontroller takes care of networking stuffs
//failed = this->startNetwork();
}
/**
* Creating device controller
*/
eARDISCOVERY_ERROR errorDiscovery = ARDISCOVERY_OK;
ARSAL_PRINT(ARSAL_PRINT_INFO, TAG, "- init discovey device ... ");
device = ARDISCOVERY_Device_New (&errorDiscovery);
if (errorDiscovery == ARDISCOVERY_OK) {
ARSAL_PRINT(ARSAL_PRINT_INFO, TAG, " - ARDISCOVERY_Device_InitWifi ...");
errorDiscovery = ARDISCOVERY_Device_InitWifi (device,
ARDISCOVERY_PRODUCT_BEBOP_2,
"bebop2",
_ip.c_str(),
discoveryPort
);
if (errorDiscovery != ARDISCOVERY_OK)
{
failed = 1;
ARSAL_PRINT(ARSAL_PRINT_ERROR, TAG, "Discovery error :%s", ARDISCOVERY_Error_ToString(errorDiscovery));
}
}
// create a device controller
if (!failed)
{
_deviceController = ARCONTROLLER_Device_New (device, &error);
if (error != ARCONTROLLER_OK)
{
ARSAL_PRINT (ARSAL_PRINT_ERROR, TAG, "Creation of deviceController failed.");
failed = 1;
}
if (!failed)
{
ARSAL_PRINT(ARSAL_PRINT_INFO, TAG, "- delete discovey device ... ");
ARDISCOVERY_Device_Delete (&device);
}
}
// add the state change callback to be informed when the device controller starts, stops...
if (!failed)
{
error = ARCONTROLLER_Device_AddStateChangedCallback (_deviceController, stateChanged, this);
if (error != ARCONTROLLER_OK)
{
ARSAL_PRINT (ARSAL_PRINT_ERROR, TAG, "add State callback failed.");
failed = 1;
}
}
// add the command received callback to be informed when a command has been received from the device
if (!failed)
{
error = ARCONTROLLER_Device_AddCommandReceivedCallback (_deviceController, commandReceived, this);
if (error != ARCONTROLLER_OK)
{
ARSAL_PRINT (ARSAL_PRINT_ERROR, TAG, "add callback failed.");
failed = 1;
}
}
/* // NEEDED FOR OLDER SDK VERSIONS
if(!failed){
ARSAL_PRINT(ARSAL_PRINT_INFO, TAG, "- set arcommands decoder ... ");
eARCOMMANDS_DECODER_ERROR decError = ARCOMMANDS_DECODER_OK;
_commandsDecoder = ARCOMMANDS_Decoder_NewDecoder(&decError);
//ARCOMMANDS_Decoder_SetARDrone3PilotingStateSpeedChangedCb(_deviceController.)
}
*/
// add the frame received callback to be informed when a streaming frame has been received from the device
if (!failed)
{
ARSAL_PRINT(ARSAL_PRINT_INFO, TAG, "- set Video callback ... ");
error = ARCONTROLLER_Device_SetVideoStreamCallbacks (_deviceController,
decoderConfigCallback,
didReceiveFrameCallback,
NULL,
this
);
if (error != ARCONTROLLER_OK)
{
failed = 1;
ARSAL_PRINT(ARSAL_PRINT_ERROR, TAG, "- error: %s", ARCONTROLLER_Error_ToString(error));
}
}
_isValid = !failed;
_isConnected = false;
}
Drone::~Drone() {
if(_deviceController != NULL and _isConnected and !isStopped()) {
ARSAL_PRINT(ARSAL_PRINT_INFO, TAG, "Disconnecting ...");
eARCONTROLLER_ERROR error = ARCONTROLLER_Device_Stop(_deviceController);
if (error == ARCONTROLLER_OK) {
// wait state update update
ARSAL_Sem_Wait(&(_stateSem));
}
}
ARSAL_PRINT(ARSAL_PRINT_INFO, TAG, "ARCONTROLLER_Device_Delete ...");
ARCONTROLLER_Device_Delete (&_deviceController);
ARSAL_Sem_Destroy (&(_stateSem));
unlink(_file_name);
rmdir(_file_dir_name);
ARSAL_PRINT(ARSAL_PRINT_INFO, TAG, "Drone successfully destroyed");
if(_navdata != NULL){
delete _navdata;
}
}
bool Drone::connect()
{
eARCONTROLLER_ERROR error;
if (_isValid and !_isConnected)
{
ARSAL_PRINT(ARSAL_PRINT_INFO, TAG, "Connecting ...");
error = ARCONTROLLER_Device_Start (_deviceController);
if (error != ARCONTROLLER_OK)
{
_isConnected = false;
ARSAL_PRINT(ARSAL_PRINT_ERROR, TAG, "- error :%s", ARCONTROLLER_Error_ToString(error));
}else {
_isConnected = true;
}
}
if(_isConnected){
ARSAL_Sem_Wait (&(_stateSem));
_deviceState = ARCONTROLLER_Device_GetState (_deviceController, &error);
if ((error != ARCONTROLLER_OK) || (_deviceState != ARCONTROLLER_DEVICE_STATE_RUNNING))
{
_isConnected = false;
ARSAL_PRINT(ARSAL_PRINT_ERROR, TAG, "- deviceState :%d", _deviceState);
ARSAL_PRINT(ARSAL_PRINT_ERROR, TAG, "- error :%s", ARCONTROLLER_Error_ToString(error));
}
}
// desable autorecord
//_deviceController->aRDrone3->sendPictureSettingsVideoAutorecordSelection(_deviceController->aRDrone3, (uint8_t)0, (uint8_t)0);
// RESOLOUTION
ARSAL_PRINT(ARSAL_PRINT_INFO, TAG, "-Setting video resulution to 480p...");
error = _deviceController->aRDrone3->sendPictureSettingsVideoResolutions(
_deviceController->aRDrone3,
ARCOMMANDS_ARDRONE3_PICTURESETTINGS_VIDEORESOLUTIONS_TYPE_REC1080_STREAM480
);
if(error != ARCONTROLLER_OK){
ARSAL_PRINT(ARSAL_PRINT_ERROR, TAG, "-error setting video resulution to 480p");
}
bool res = _isValid and _isConnected and !isStopped();
return res;
}
/// *********************************************************************************************************** COMMANDS
bool Drone::takeOff() {
eARCONTROLLER_ERROR error = _deviceController->aRDrone3->sendPilotingTakeOff(_deviceController->aRDrone3);
if(error != ARCONTROLLER_OK){
ARSAL_PRINT(ARSAL_PRINT_ERROR, TAG, "-error sending takeoff command");
}
return error == ARCONTROLLER_OK;
}
bool Drone::blockingTakeOff(){
eARCONTROLLER_ERROR error = _deviceController->aRDrone3->sendPilotingTakeOff(_deviceController->aRDrone3);
if(error != ARCONTROLLER_OK){
ARSAL_PRINT(ARSAL_PRINT_ERROR, TAG, "-error sending takeoff command");
}
if(error == ARCONTROLLER_OK){
while(
(_flyingState != ARCOMMANDS_ARDRONE3_PILOTINGSTATE_FLYINGSTATECHANGED_STATE_FLYING) &&
(_flyingState != ARCOMMANDS_ARDRONE3_PILOTINGSTATE_FLYINGSTATECHANGED_STATE_HOVERING));
return true;
}
return false;
}
bool Drone::land(){
eARCONTROLLER_ERROR error = _deviceController->aRDrone3->sendPilotingLanding(_deviceController->aRDrone3);
if(error != ARCONTROLLER_OK){
ARSAL_PRINT(ARSAL_PRINT_ERROR, TAG, "-error sending land command");
}
return error == ARCONTROLLER_OK;
}
bool Drone::blockingLand(){
eARCONTROLLER_ERROR error = _deviceController->aRDrone3->sendPilotingLanding(_deviceController->aRDrone3);
if(error != ARCONTROLLER_OK){
ARSAL_PRINT(ARSAL_PRINT_ERROR, TAG, "-error sending land command");
}
if(error == ARCONTROLLER_OK){
while(
(_flyingState != ARCOMMANDS_ARDRONE3_PILOTINGSTATE_FLYINGSTATECHANGED_STATE_LANDED) &&
(_flyingState != ARCOMMANDS_ARDRONE3_PILOTINGSTATE_FLYINGSTATECHANGED_STATE_EMERGENCY_LANDING));
return true;
}
return false;
}
bool Drone::emergency(){
eARCONTROLLER_ERROR error = _deviceController->aRDrone3->sendPilotingEmergency(_deviceController->aRDrone3);
if(error != ARCONTROLLER_OK){
ARSAL_PRINT(ARSAL_PRINT_ERROR, TAG, "-error sending emergency command");
}
return error == ARCONTROLLER_OK;
}
bool Drone::modifyAltitude(int8_t value){
eARCONTROLLER_ERROR error = _deviceController->aRDrone3->setPilotingPCMDGaz(_deviceController->aRDrone3, value);
if(error != ARCONTROLLER_OK){
ARSAL_PRINT(ARSAL_PRINT_ERROR, TAG, "-error sending PCMDGaz command with %d", value);
}
return error == ARCONTROLLER_OK;
}
bool Drone::modifyYaw(int8_t value){
eARCONTROLLER_ERROR error = _deviceController->aRDrone3->setPilotingPCMDYaw(_deviceController->aRDrone3, value);
if(error != ARCONTROLLER_OK){
ARSAL_PRINT(ARSAL_PRINT_ERROR, TAG, "-error sending PCMDYaw command with %d", value);
}
return error == ARCONTROLLER_OK;
}
bool Drone::modifyPitch(int8_t value){
eARCONTROLLER_ERROR error1 = _deviceController->aRDrone3->setPilotingPCMDPitch(_deviceController->aRDrone3, value);
if(error1 != ARCONTROLLER_OK){
ARSAL_PRINT(ARSAL_PRINT_ERROR, TAG, "-error sending PCMDPitch command with %d", value);
}
eARCONTROLLER_ERROR error2 = _deviceController->aRDrone3->setPilotingPCMDFlag(_deviceController->aRDrone3, 1);
if(error2 != ARCONTROLLER_OK){
ARSAL_PRINT(ARSAL_PRINT_ERROR, TAG, "-error sending PCMDFlag command with 1");
}
return error1 == ARCONTROLLER_OK and error2 == ARCONTROLLER_OK;
}
bool Drone::modifyRoll(int8_t value){
eARCONTROLLER_ERROR error1 = _deviceController->aRDrone3->setPilotingPCMDRoll(_deviceController->aRDrone3, value);
if(error1 != ARCONTROLLER_OK){
ARSAL_PRINT(ARSAL_PRINT_ERROR, TAG, "-error sending PCMDRoll command with %d", value);
}
eARCONTROLLER_ERROR error2 = _deviceController->aRDrone3->setPilotingPCMDFlag(_deviceController->aRDrone3, 1);
if(error2 != ARCONTROLLER_OK){
ARSAL_PRINT(ARSAL_PRINT_ERROR, TAG, "-error sending PCMDFlag command with 1");
}
return error1 == ARCONTROLLER_OK and error2 == ARCONTROLLER_OK;
}
bool Drone::moveBy(float dX, float dY, float dZ, float dPsi){
eARCONTROLLER_ERROR error = _deviceController->aRDrone3->sendPilotingMoveBy(
_deviceController->aRDrone3,
dX,
dY,
dZ,
dPsi
);
if(error != ARCONTROLLER_OK){
ARSAL_PRINT(ARSAL_PRINT_ERROR, TAG, "-error sending sendPilotingMoveBy command with %f, %f, %f, %f",
dX,
dY,
dZ,
dPsi
);
}
return error == ARCONTROLLER_OK;
}
bool Drone::rotateCamera(float tilt, float pan){
eARCONTROLLER_ERROR error = _deviceController->aRDrone3->sendCameraOrientation(
_deviceController->aRDrone3, (uint8_t) tilt, (uint8_t) pan);
if(error != ARCONTROLLER_OK){
ARSAL_PRINT(ARSAL_PRINT_ERROR, TAG, "-error sending sendCameraOrientationV2 command with %f, %f",
tilt,
pan
);
}
return error == ARCONTROLLER_OK;
}
bool Drone::blockingStartStreaming() {
_deviceController->aRDrone3->sendMediaStreamingVideoEnable(_deviceController->aRDrone3, 1);
while(!isStreaming() && !errorStream());
return !errorStream();
}
bool Drone::stopStreaming() {
_deviceController->aRDrone3->sendMediaStreamingVideoEnable(_deviceController->aRDrone3, 0);
while(isStreaming() && !errorStream());
return !errorStream();
}
bool Drone::blockingFlatTrim() {
if(isLanded()) {
_trimLock.store(true);
_deviceController->aRDrone3->sendPilotingFlatTrim(_deviceController->aRDrone3);
while (_trimLock);
return true;
}
return false;
}
bool Drone:: setMaxAltitude(float value){
eARCONTROLLER_ERROR error = _deviceController->aRDrone3->sendPilotingSettingsMaxAltitude(
_deviceController->aRDrone3,
value);
return error == ARCONTROLLER_OK;
}
bool Drone::setMaxVerticalSpeed(float value) {
eARCONTROLLER_ERROR error = _deviceController->aRDrone3->sendPilotingSettingsSetAutonomousFlightMaxVerticalSpeed(
_deviceController->aRDrone3,
value
);
return error == ARCONTROLLER_OK;
}
bool Drone::setMaxHorizontalSpeed(float value) {
eARCONTROLLER_ERROR error = _deviceController->aRDrone3->sendPilotingSettingsSetAutonomousFlightMaxHorizontalSpeed(
_deviceController->aRDrone3,
value
);
return error == ARCONTROLLER_OK;
}
bool Drone::setMaxRotationSpeed(float value) {
eARCONTROLLER_ERROR error = _deviceController->aRDrone3->sendPilotingSettingsSetAutonomousFlightMaxRotationSpeed(
_deviceController->aRDrone3,
value
);
return error == ARCONTROLLER_OK;
}
bool Drone::setMaxTilt(float value) {
_deviceController->aRDrone3->sendPilotingSettingsMaxTilt(
_deviceController->aRDrone3,
value);
}
/*
bool Drone::startStreamingEXPL()
{
bool sentStatus = true;
uint8_t cmdBuffer[128];
int32_t cmdSize = 0;
eARCOMMANDS_GENERATOR_ERROR cmdError;
eARNETWORK_ERROR netError = ARNETWORK_ERROR;
ARSAL_PRINT(ARSAL_PRINT_INFO, TAG, "- Send Streaming Begin");
// Send Streaming begin command
cmdError = ARCOMMANDS_Generator_GenerateARDrone3MediaStreamingVideoEnable(cmdBuffer, sizeof(cmdBuffer), &cmdSize, 1);
if (cmdError == ARCOMMANDS_GENERATOR_OK)
{
netError = ARNETWORK_Manager_SendData(_netManager, BD_NET_CD_ACK_ID, cmdBuffer, cmdSize, this, arnetworkCmdCallback, 1);
}
if ((cmdError != ARCOMMANDS_GENERATOR_OK) || (netError != ARNETWORK_OK))
{
ARSAL_PRINT(ARSAL_PRINT_WARNING, TAG, "Failed to send Streaming command. cmdError:%d netError:%s", cmdError, ARNETWORK_Error_ToString(netError));
sentStatus = false;
}
return sentStatus;
}
*/
/// ************************************************************************************************************ GETTERS
bool Drone::isConnected() const {
return _isConnected;
}
bool Drone::isValid() const {
return _isValid;
}
bool Drone::isStopped() const {
return _deviceState == ARCONTROLLER_DEVICE_STATE_STOPPED;
}
bool Drone::isStarting() const {
return _deviceState == ARCONTROLLER_DEVICE_STATE_STARTING;
}
bool Drone::isRunning() const {
return _deviceState == ARCONTROLLER_DEVICE_STATE_RUNNING;
}
bool Drone::isPaused() const {
return _deviceState == ARCONTROLLER_DEVICE_STATE_PAUSED;
}
bool Drone::isStopping() const {
return _deviceState == ARCONTROLLER_DEVICE_STATE_STOPPING;
}
bool Drone::isFlying() const {
return _flyingState == ARCOMMANDS_ARDRONE3_PILOTINGSTATE_FLYINGSTATECHANGED_STATE_FLYING;
}
bool Drone::isHovering() const {
return _flyingState == ARCOMMANDS_ARDRONE3_PILOTINGSTATE_FLYINGSTATECHANGED_STATE_HOVERING;
}
bool Drone::isLanded() const {
return _flyingState == ARCOMMANDS_ARDRONE3_PILOTINGSTATE_FLYINGSTATECHANGED_STATE_LANDED;
}
bool Drone::errorStream() const {
return _streamingState == ARCOMMANDS_ARDRONE3_MEDIASTREAMINGSTATE_VIDEOENABLECHANGED_ENABLED_ERROR;
}
bool Drone::isStreaming() const {
return _streamingState == ARCOMMANDS_ARDRONE3_MEDIASTREAMINGSTATE_VIDEOENABLECHANGED_ENABLED_ENABLED;
}
int Drone::getBatteryLvl() const {
return _batteryLvl;
}
const std::string Drone::getVideoPath() const {
return _file_name;
}
float Drone::getRoll() const {
return _roll;
}
float Drone::getPitch() const {
return _pitch;
}
float Drone::getYaw() const {
return _yaw;
}
cv::Point3f Drone::getGyro() {
while(_lockGyro.test_and_set(std::memory_order_acquire)); // spinlock
cv::Point3f res(_roll, _pitch, _yaw);
_lockGyro.clear(std::memory_order_release);
return res;
}
float Drone::getSpeedX() const {
return _speedX;
}
float Drone::getSpeedY() const {
return _speedY;
}
float Drone::getSpeedZ() const {
return _speedZ;
}
cv::Point3f Drone::getAccelero() {
while(_lockAccelero.test_and_set(std::memory_order_acquire)); // spinlock
cv::Point3f res(_speedX, _speedY, _speedZ);
_lockAccelero.clear(std::memory_order_release);
return res;
}
float Drone::getMaxAltitude() const {
return _max_altitude;
}
float Drone::getMaxVerticalSpeed() const {
return _max_vertical_speed;
}
float Drone::getMaxHorizontalSpeed() const {
return _max_horizontal_speed;
}
float Drone::getMaxRotationSpeed() const {
return _max_rotation_speed;
}
float Drone::getMaxTilt() const {
return _max_tilt;
}
float Drone::getMinTilt() const {
return _min_tilt;
}
float Drone::getMaxPan() const {
return _max_pan;
}
float Drone::getMinPan() const {
return _min_pan;
}
float Drone::getDefaultPan() const{
return _default_pan;
}
float Drone::getDefaultTilt() const{
return _default_tilt;
}
/// ********************************************************************************************************** PROTECTED
/**
* STATIC
* @param commandKey
* @param elementDictionary
* @param drone (void*)(Drone d)
*/
void Drone::commandReceived (eARCONTROLLER_DICTIONARY_KEY commandKey,
ARCONTROLLER_DICTIONARY_ELEMENT_t *elementDictionary,
void *drone)
{
Drone* d = (Drone*)drone;
if (d->_deviceController == NULL)
return;
if(elementDictionary == NULL)
return;
/***************************** TODO SHOULD BE WRAPPED INSIDE PRIVATE METHODS IF NEEDED */
/*
// DEPRECATED BUT WORKS
if (commandKey == ARCONTROLLER_DICTIONARY_KEY_ARDRONE3_CAMERASTATE_ORIENTATION)
{
ARCONTROLLER_DICTIONARY_ARG_t *arg = NULL;
ARCONTROLLER_DICTIONARY_ELEMENT_t *element = NULL;
HASH_FIND_STR (elementDictionary, ARCONTROLLER_DICTIONARY_SINGLE_KEY, element);
if (element != NULL)
{
HASH_FIND_STR (element->arguments, ARCONTROLLER_DICTIONARY_KEY_ARDRONE3_CAMERASTATE_ORIENTATION_TILT, arg);
if (arg != NULL)
{
float tilt = arg->value.I8;
//std::cout << "(deprecated) TILT " << tilt << std::endl;
}
HASH_FIND_STR (element->arguments, ARCONTROLLER_DICTIONARY_KEY_ARDRONE3_CAMERASTATE_ORIENTATION_PAN, arg);
if (arg != NULL)
{
float pan = arg->value.I8;
//std::cout << "(deprecated) PAN " << pan << std::endl;
}
}
}
// THE WAY TO DO IT... BUT DOES NOT WORK
if ((commandKey == ARCONTROLLER_DICTIONARY_KEY_ARDRONE3_CAMERASTATE_ORIENTATIONV2) && (elementDictionary != NULL))
{
ARCONTROLLER_DICTIONARY_ARG_t *arg = NULL;
ARCONTROLLER_DICTIONARY_ELEMENT_t *element = NULL;
HASH_FIND_STR (elementDictionary, ARCONTROLLER_DICTIONARY_SINGLE_KEY, element);
if (element != NULL)
{
HASH_FIND_STR (element->arguments, ARCONTROLLER_DICTIONARY_KEY_ARDRONE3_CAMERASTATE_ORIENTATIONV2_TILT, arg);
if (arg != NULL)
{
float tilt = arg->value.Float;
std::cout << "TILT " << tilt << std::endl;
}
HASH_FIND_STR (element->arguments, ARCONTROLLER_DICTIONARY_KEY_ARDRONE3_CAMERASTATE_ORIENTATIONV2_PAN, arg);
if (arg != NULL)
{
float pan = arg->value.Float;
std::cout << "PAN " << pan << std::endl;
}
}
}
*/
/************************* SHOULD BE WRAPPED INSIDE PRIVATE METHODS IF NEEDED */
// if the command received is a battery state changed
switch(commandKey) {
case ARCONTROLLER_DICTIONARY_KEY_COMMON_COMMONSTATE_BATTERYSTATECHANGED:
d->cmdBatteryStateChangedRcv(elementDictionary);
break;
case ARCONTROLLER_DICTIONARY_KEY_COMMON_COMMONSTATE_SENSORSSTATESLISTCHANGED:
d->cmdSensorStateListChangedRcv(elementDictionary);
break;
case ARCONTROLLER_DICTIONARY_KEY_ARDRONE3_PILOTINGSTATE_FLYINGSTATECHANGED:
d->cmdFlyingStateChangedRcv(elementDictionary);
break;
case ARCONTROLLER_DICTIONARY_KEY_ARDRONE3_MEDIASTREAMINGSTATE_VIDEOENABLECHANGED:
d->cmdStreamingStateChangedRcv(elementDictionary);
break;
case ARCONTROLLER_DICTIONARY_KEY_ARDRONE3_PILOTINGSTATE_POSITIONCHANGED:
d->cmdPositionChangedRcv(elementDictionary);
break;
case ARCONTROLLER_DICTIONARY_KEY_ARDRONE3_PILOTINGSTATE_SPEEDCHANGED:
d->cmdSpeedChangedRcv(elementDictionary);
break;
case ARCONTROLLER_DICTIONARY_KEY_ARDRONE3_PILOTINGSTATE_ATTITUDECHANGED:
d->cmdAttitudeChangedRcv(elementDictionary);
break;
case ARCONTROLLER_DICTIONARY_KEY_COMMON_CALIBRATIONSTATE_MAGNETOCALIBRATIONREQUIREDSTATE:
d->cmdMagnetoCalibrationNeedChangedRcv(elementDictionary);
break;
case ARCONTROLLER_DICTIONARY_KEY_ARDRONE3_PILOTINGEVENT_MOVEBYEND:
d->cmdRelativeMovementChangedRcv(elementDictionary);
break;
case ARCONTROLLER_DICTIONARY_KEY_ARDRONE3_PICTURESETTINGSSTATE_VIDEORESOLUTIONSCHANGED:
d->cmdVideoResolutionChangedRcv(elementDictionary);
break;
case ARCONTROLLER_DICTIONARY_KEY_ARDRONE3_PILOTINGSTATE_FLATTRIMCHANGED:
d->cmdFlatTreamChangedRcv();
case ARCONTROLLER_DICTIONARY_KEY_ARDRONE3_SPEEDSETTINGSSTATE_HULLPROTECTIONCHANGED:
d->cmdHullProtectionPresenceChanged(elementDictionary);
case ARCONTROLLER_DICTIONARY_KEY_ARDRONE3_PICTURESETTINGSSTATE_VIDEOAUTORECORDCHANGED:
d->cmdAutorecordModeChanged(elementDictionary);
case ARCONTROLLER_DICTIONARY_KEY_COMMON_SETTINGSSTATE_PRODUCTVERSIONCHANGED:
d->cmdVersionChanged(elementDictionary);
case ARCONTROLLER_DICTIONARY_KEY_ARDRONE3_PILOTINGSETTINGSSTATE_MAXALTITUDECHANGED:
d->cmdMaxAltitudeChanged(elementDictionary);
case ARCONTROLLER_DICTIONARY_KEY_ARDRONE3_PILOTINGSETTINGSSTATE_AUTONOMOUSFLIGHTMAXVERTICALSPEED:
d->cmdMaxVerticalSpeedChanged(elementDictionary);
case ARCONTROLLER_DICTIONARY_KEY_ARDRONE3_PILOTINGSETTINGSSTATE_AUTONOMOUSFLIGHTMAXHORIZONTALSPEED:
d->cmdMaxHorizontalSpeedChanged(elementDictionary);
case ARCONTROLLER_DICTIONARY_KEY_ARDRONE3_PILOTINGSETTINGSSTATE_AUTONOMOUSFLIGHTMAXROTATIONSPEED:
d->cmdMaxRotationSpeedChanged(elementDictionary);
case ARCONTROLLER_DICTIONARY_KEY_COMMON_CAMERASETTINGSSTATE_CAMERASETTINGSCHANGED:
d->cmdCameraSettingsChanged(elementDictionary);
case
//TODO Deprecated, but V2 not working
ARCONTROLLER_DICTIONARY_KEY_ARDRONE3_CAMERASTATE_DEFAULTCAMERAORIENTATION:
d->cmdCameraDefaultOrientationChanged(elementDictionary);
default:
break;
}
}
void Drone::stateChanged (eARCONTROLLER_DEVICE_STATE newState,
eARCONTROLLER_ERROR error,
void *drone)
{
Drone* d = (Drone*) drone;
switch (newState)
{
case ARCONTROLLER_DEVICE_STATE_STOPPED:
ARSAL_Sem_Post (&(d->_stateSem));
ARSAL_PRINT(ARSAL_PRINT_INFO, TAG, " - stateChanged newState: %d : STOPPED", newState);
break;
case ARCONTROLLER_DEVICE_STATE_RUNNING:
ARSAL_Sem_Post (&(d->_stateSem));
ARSAL_PRINT(ARSAL_PRINT_INFO, TAG, " - stateChanged newState: %d : RUNNING", newState);
break;
default:
ARSAL_PRINT(ARSAL_PRINT_WARNING, TAG, " - stateChanged newState: %d : UNKNOWN", newState);
break;
}
d->_deviceState = newState;
}
void Drone::cmdSensorStateListChangedRcv(ARCONTROLLER_DICTIONARY_ELEMENT_t *elementDictionary)
{
ARCONTROLLER_DICTIONARY_ARG_t *arg = NULL;
ARCONTROLLER_DICTIONARY_ELEMENT_t *dictElement = NULL;
ARCONTROLLER_DICTIONARY_ELEMENT_t *dictTmp = NULL;
eARCOMMANDS_COMMON_COMMONSTATE_SENSORSSTATESLISTCHANGED_SENSORNAME sensorName = ARCOMMANDS_COMMON_COMMONSTATE_SENSORSSTATESLISTCHANGED_SENSORNAME_MAX;
int sensorState = 0;
// get the command received in the device controller
HASH_ITER(hh, elementDictionary, dictElement, dictTmp) {
// get the Name
HASH_FIND_STR (dictElement->arguments, ARCONTROLLER_DICTIONARY_KEY_COMMON_COMMONSTATE_SENSORSSTATESLISTCHANGED_SENSORNAME, arg);
if (arg == NULL) {
ARSAL_PRINT(ARSAL_PRINT_ERROR, TAG, "arg sensorName is NULL");
continue;
}
sensorName = (eARCOMMANDS_COMMON_COMMONSTATE_SENSORSSTATESLISTCHANGED_SENSORNAME) arg->value.I32;
// get the state
HASH_FIND_STR (dictElement->arguments, ARCONTROLLER_DICTIONARY_KEY_COMMON_COMMONSTATE_SENSORSSTATESLISTCHANGED_SENSORSTATE, arg);
if (arg == NULL) {
ARSAL_PRINT(ARSAL_PRINT_ERROR, TAG, "arg sensorState is NULL");
continue;
}
sensorState = arg->value.U8;
ARSAL_PRINT(ARSAL_PRINT_INFO, TAG, "sensorName %d ; sensorState: %d", sensorName, sensorState);
}
}
void Drone::cmdStreamingStateChangedRcv(ARCONTROLLER_DICTIONARY_ELEMENT_t *elementDictionary)
{
ARCONTROLLER_DICTIONARY_ARG_t *arg = NULL;
ARCONTROLLER_DICTIONARY_ELEMENT_t *element = NULL;
// get the command received in the device controller
HASH_FIND_STR (elementDictionary, ARCONTROLLER_DICTIONARY_SINGLE_KEY, element);
if (element != NULL)
{
// get the value
HASH_FIND_STR (element->arguments, ARCONTROLLER_DICTIONARY_KEY_ARDRONE3_MEDIASTREAMINGSTATE_VIDEOENABLECHANGED_ENABLED, arg);
if (arg != NULL)
{
_streamingState = (eARCOMMANDS_ARDRONE3_MEDIASTREAMINGSTATE_VIDEOENABLECHANGED_ENABLED) arg->value.I32;
}
}
}
void Drone::cmdBatteryStateChangedRcv(ARCONTROLLER_DICTIONARY_ELEMENT_t *elementDictionary)
{
ARCONTROLLER_DICTIONARY_ARG_t *arg = NULL;
ARCONTROLLER_DICTIONARY_ELEMENT_t *singleElement = NULL;
if (elementDictionary == NULL) {
ARSAL_PRINT(ARSAL_PRINT_ERROR, TAG, "elements is NULL");
return;
}
// get the command received in the device controller
HASH_FIND_STR (elementDictionary, ARCONTROLLER_DICTIONARY_SINGLE_KEY, singleElement);
if (singleElement == NULL) {
ARSAL_PRINT(ARSAL_PRINT_ERROR, TAG, "singleElement is NULL");
return;
}
// get the value
HASH_FIND_STR (singleElement->arguments, ARCONTROLLER_DICTIONARY_KEY_COMMON_COMMONSTATE_BATTERYSTATECHANGED_PERCENT, arg);
if (arg == NULL) {
ARSAL_PRINT(ARSAL_PRINT_ERROR, TAG, "arg is NULL");
return;
}
_batteryLvl.store((int)(arg->value.U8));
}
void Drone::cmdFlyingStateChangedRcv(ARCONTROLLER_DICTIONARY_ELEMENT_t * elementDictionary)
{
ARCONTROLLER_DICTIONARY_ARG_t *arg = NULL;
ARCONTROLLER_DICTIONARY_ELEMENT_t *element = NULL;
// get the command received in the device controller
HASH_FIND_STR (elementDictionary, ARCONTROLLER_DICTIONARY_SINGLE_KEY, element);
if (element != NULL)
{
// get the value
HASH_FIND_STR (element->arguments,
ARCONTROLLER_DICTIONARY_KEY_ARDRONE3_PILOTINGSTATE_FLYINGSTATECHANGED_STATE,
arg
);
if (arg != NULL)
{
_flyingState = (eARCOMMANDS_ARDRONE3_PILOTINGSTATE_FLYINGSTATECHANGED_STATE) arg->value.I32;
}
}
}
void Drone::cmdPositionChangedRcv(ARCONTROLLER_DICTIONARY_ELEMENT_t* elementDictionary){
ARCONTROLLER_DICTIONARY_ARG_t *arg = NULL;
ARCONTROLLER_DICTIONARY_ELEMENT_t *element = NULL;
HASH_FIND_STR (elementDictionary, ARCONTROLLER_DICTIONARY_SINGLE_KEY, element);
if (element != NULL)
{
HASH_FIND_STR (element->arguments, ARCONTROLLER_DICTIONARY_KEY_ARDRONE3_PILOTINGSTATE_POSITIONCHANGED_LATITUDE, arg);
if (arg != NULL)
{
_latitude.store(arg->value.Double);
}
HASH_FIND_STR (element->arguments, ARCONTROLLER_DICTIONARY_KEY_ARDRONE3_PILOTINGSTATE_POSITIONCHANGED_LONGITUDE, arg);
if (arg != NULL)
{
_longitude.store(arg->value.Double);
//std::cout << "LONGITUDE " << arg->value.Double << std::endl;
}
HASH_FIND_STR (element->arguments, ARCONTROLLER_DICTIONARY_KEY_ARDRONE3_PILOTINGSTATE_POSITIONCHANGED_ALTITUDE, arg);
if (arg != NULL)
{
_altitude.store(arg->value.Double);
//std::cout << "ALTITUDE " << arg->value.Double << std::endl;
}
}
}
void Drone::cmdSpeedChangedRcv(ARCONTROLLER_DICTIONARY_ELEMENT_t* elementDictionary){
ARCONTROLLER_DICTIONARY_ARG_t *arg = NULL;
ARCONTROLLER_DICTIONARY_ELEMENT_t *element = NULL;
HASH_FIND_STR (elementDictionary, ARCONTROLLER_DICTIONARY_SINGLE_KEY, element);
if (element != NULL)
{
while(_lockAccelero.test_and_set(std::memory_order_acquire));
HASH_FIND_STR (element->arguments, ARCONTROLLER_DICTIONARY_KEY_ARDRONE3_PILOTINGSTATE_SPEEDCHANGED_SPEEDX, arg);
if (arg != NULL)
{
_speedX.store(arg->value.Float);
//std::cout << "SPEED X " << arg->value.Double << std::endl;
}
HASH_FIND_STR (element->arguments, ARCONTROLLER_DICTIONARY_KEY_ARDRONE3_PILOTINGSTATE_SPEEDCHANGED_SPEEDY, arg);
if (arg != NULL)
{
_speedY.store(arg->value.Float);
}
HASH_FIND_STR (element->arguments, ARCONTROLLER_DICTIONARY_KEY_ARDRONE3_PILOTINGSTATE_SPEEDCHANGED_SPEEDZ, arg);
if (arg != NULL)
{
_speedZ.store(arg->value.Float);
}
_lockAccelero.clear(std::memory_order_release);
}
}
void Drone::cmdAttitudeChangedRcv(ARCONTROLLER_DICTIONARY_ELEMENT_t *elementDictionary){
ARCONTROLLER_DICTIONARY_ARG_t *arg = NULL;
ARCONTROLLER_DICTIONARY_ELEMENT_t *element = NULL;
HASH_FIND_STR (elementDictionary, ARCONTROLLER_DICTIONARY_SINGLE_KEY, element);
if (element != NULL)
{
while(_lockGyro.test_and_set(std::memory_order_acquire));
//std::cout << "LOCK >" << std::endl;
//NB: roll pitch yaw are all received at the same time
HASH_FIND_STR (element->arguments, ARCONTROLLER_DICTIONARY_KEY_ARDRONE3_PILOTINGSTATE_ATTITUDECHANGED_ROLL, arg);
if (arg != NULL)
{
_roll.store(arg->value.Float);
//std::cout << "roll " << arg->value.Float << std::endl;
}
HASH_FIND_STR (element->arguments, ARCONTROLLER_DICTIONARY_KEY_ARDRONE3_PILOTINGSTATE_ATTITUDECHANGED_PITCH, arg);
if (arg != NULL)
{
_pitch.store(arg->value.Float);
//std::cout << "pitch " << arg->value.Float << std::endl;
}
HASH_FIND_STR (element->arguments, ARCONTROLLER_DICTIONARY_KEY_ARDRONE3_PILOTINGSTATE_ATTITUDECHANGED_YAW, arg);
if (arg != NULL)
{
_yaw.store(arg->value.Float);
//std::cout << "yaw " << arg->value.Float << std::endl;
}
_lockGyro.clear(std::memory_order_release);
//std::cout << "< /LOCK" << std::endl;
}
}
void Drone::cmdMagnetoCalibrationNeedChangedRcv(ARCONTROLLER_DICTIONARY_ELEMENT_t *elementDictionary){
ARCONTROLLER_DICTIONARY_ARG_t *arg = NULL;
ARCONTROLLER_DICTIONARY_ELEMENT_t *element = NULL;
HASH_FIND_STR (elementDictionary, ARCONTROLLER_DICTIONARY_SINGLE_KEY, element);
if (element != NULL)
{
HASH_FIND_STR (element->arguments, ARCONTROLLER_DICTIONARY_KEY_COMMON_CALIBRATIONSTATE_MAGNETOCALIBRATIONREQUIREDSTATE_REQUIRED, arg);
if (arg != NULL)
{
uint8_t required = arg->value.U8;
if(required == 1){
ARSAL_PRINT(ARSAL_PRINT_ERROR, TAG, "Calibration IS REQUIRED !");
}else{
ARSAL_PRINT(ARSAL_PRINT_INFO, TAG, "Calibration is not required !");
}
}
}
}
void Drone::cmdRelativeMovementChangedRcv(ARCONTROLLER_DICTIONARY_ELEMENT_t *elementDictionary){
ARCONTROLLER_DICTIONARY_ARG_t *arg = NULL;
ARCONTROLLER_DICTIONARY_ELEMENT_t *element = NULL;
HASH_FIND_STR (elementDictionary, ARCONTROLLER_DICTIONARY_SINGLE_KEY, element);
if (element != NULL)
{
HASH_FIND_STR (element->arguments, ARCONTROLLER_DICTIONARY_KEY_ARDRONE3_PILOTINGEVENT_MOVEBYEND_DX, arg);
if (arg != NULL)
{
float dX = arg->value.Float;
//std::cout << "DRONE COMMAND MOVEBY dX: " << dX << std::endl;
}
HASH_FIND_STR (element->arguments, ARCONTROLLER_DICTIONARY_KEY_ARDRONE3_PILOTINGEVENT_MOVEBYEND_DY, arg);
if (arg != NULL)
{
float dY = arg->value.Float;
//std::cout << "DRONE COMMAND MOVEBY dY: " << dY << std::endl;
}
HASH_FIND_STR (element->arguments, ARCONTROLLER_DICTIONARY_KEY_ARDRONE3_PILOTINGEVENT_MOVEBYEND_DZ, arg);
if (arg != NULL)
{
float dZ = arg->value.Float;
//std::cout << "DRONE COMMAND MOVEBY dZ: " << dZ << std::endl;
}
HASH_FIND_STR (element->arguments, ARCONTROLLER_DICTIONARY_KEY_ARDRONE3_PILOTINGEVENT_MOVEBYEND_DPSI, arg);
if (arg != NULL)
{
float dPsi = arg->value.Float;
//std::cout << "DRONE COMMAND MOVEBY DPSI: " << dPsi << std::endl;
}
HASH_FIND_STR (element->arguments, ARCONTROLLER_DICTIONARY_KEY_ARDRONE3_PILOTINGEVENT_MOVEBYEND_ERROR, arg);
if (arg != NULL)
{
eARCOMMANDS_ARDRONE3_PILOTINGEVENT_MOVEBYEND_ERROR error = eARCOMMANDS_ARDRONE3_PILOTINGEVENT_MOVEBYEND_ERROR(arg->value.I32);
//std::cout << "DRONE COMMAND MOVEBY ERROR: " << error << std::endl;
}
}
}
void Drone::cmdVideoResolutionChangedRcv(ARCONTROLLER_DICTIONARY_ELEMENT_t *elementDictionary){
ARCONTROLLER_DICTIONARY_ARG_t *arg = NULL;
ARCONTROLLER_DICTIONARY_ELEMENT_t *element = NULL;
HASH_FIND_STR (elementDictionary, ARCONTROLLER_DICTIONARY_SINGLE_KEY, element);
if (element != NULL)
{
HASH_FIND_STR (element->arguments, ARCONTROLLER_DICTIONARY_KEY_ARDRONE3_PICTURESETTINGSSTATE_VIDEORESOLUTIONSCHANGED_TYPE, arg);
if (arg != NULL)
{
eARCOMMANDS_ARDRONE3_PICTURESETTINGSSTATE_VIDEORESOLUTIONSCHANGED_TYPE type = eARCOMMANDS_ARDRONE3_PICTURESETTINGSSTATE_VIDEORESOLUTIONSCHANGED_TYPE(arg->value.I32);
switch(type) {
case ARCOMMANDS_ARDRONE3_PICTURESETTINGSSTATE_VIDEORESOLUTIONSCHANGED_TYPE_REC1080_STREAM480:
std::cout << "STREAM 480" << std::endl;
break;
case ARCOMMANDS_ARDRONE3_PICTURESETTINGSSTATE_VIDEORESOLUTIONSCHANGED_TYPE_REC720_STREAM720:
std::cout << "STREAM 720" << std::endl;
break;
default:
std::cout << "SHOULD NOT HAPPEND" << std::endl;
}
}
}
}
void Drone::cmdHullProtectionPresenceChanged(ARCONTROLLER_DICTIONARY_ELEMENT_t * elementDictionary){
ARCONTROLLER_DICTIONARY_ARG_t *arg = NULL;
ARCONTROLLER_DICTIONARY_ELEMENT_t *element = NULL;
HASH_FIND_STR (elementDictionary, ARCONTROLLER_DICTIONARY_SINGLE_KEY, element);
if (element != NULL)
{
HASH_FIND_STR (element->arguments, ARCONTROLLER_DICTIONARY_KEY_ARDRONE3_SPEEDSETTINGSSTATE_HULLPROTECTIONCHANGED_PRESENT, arg);
if (arg != NULL)
{
_hullProtectionPresence = (bool)arg->value.U8;
}
}
}
void Drone::cmdAutorecordModeChanged(ARCONTROLLER_DICTIONARY_ELEMENT_t * elementDictionary){
ARCONTROLLER_DICTIONARY_ARG_t *arg = NULL;
ARCONTROLLER_DICTIONARY_ELEMENT_t *element = NULL;
HASH_FIND_STR (elementDictionary, ARCONTROLLER_DICTIONARY_SINGLE_KEY, element);
if (element != NULL)
{
HASH_FIND_STR (element->arguments, ARCONTROLLER_DICTIONARY_KEY_ARDRONE3_PICTURESETTINGSSTATE_VIDEOAUTORECORDCHANGED_ENABLED, arg);
if (arg != NULL)
{
_autorecordEnabled = (bool)arg->value.U8;
}
HASH_FIND_STR (element->arguments, ARCONTROLLER_DICTIONARY_KEY_ARDRONE3_PICTURESETTINGSSTATE_VIDEOAUTORECORDCHANGED_MASS_STORAGE_ID, arg);
if (arg != NULL)
{
_autorecordStorageId = arg->value.U8;
}
}
}
void Drone::cmdFlatTreamChangedRcv(){
_trimLock.store(false);
}
char* CODECBUFFER;
int CODEBUFFERLEN;
eARCONTROLLER_ERROR Drone::decoderConfigCallback (ARCONTROLLER_Stream_Codec_t codec, void *drone)
{
ARSAL_PRINT(ARSAL_PRINT_WARNING, TAG, "DECODE CONFIG");
Drone* d = (Drone*)drone;
if (d->_videoOut != NULL)
{
if (codec.type == ARCONTROLLER_STREAM_CODEC_TYPE_H264)
{
//TODO FIND OUT IF DECODING IS NEEDED
if (true)
{
CODEBUFFERLEN = codec.parameters.h264parameters.spsSize+codec.parameters.h264parameters.ppsSize;
CODECBUFFER = (char*) malloc(sizeof(char) * CODEBUFFERLEN);
memcpy(CODECBUFFER, codec.parameters.h264parameters.spsBuffer, codec.parameters.h264parameters.spsSize);
memcpy(CODECBUFFER + codec.parameters.h264parameters.spsSize, codec.parameters.h264parameters.ppsBuffer, codec.parameters.h264parameters.ppsSize);
fwrite(codec.parameters.h264parameters.spsBuffer, codec.parameters.h264parameters.spsSize, 1, d->_videoOut);
fwrite(codec.parameters.h264parameters.ppsBuffer, codec.parameters.h264parameters.ppsSize, 1, d->_videoOut);
fflush (d->_videoOut);
}
}
}
else
{
ARSAL_PRINT(ARSAL_PRINT_WARNING, TAG, "_videoOut is NULL !!!!!! 605.");
}
return ARCONTROLLER_OK;
}
void Drone::cmdVersionChanged(ARCONTROLLER_DICTIONARY_ELEMENT_t *elementDictionary) {
ARCONTROLLER_DICTIONARY_ARG_t *arg = NULL;
ARCONTROLLER_DICTIONARY_ELEMENT_t *element = NULL;
HASH_FIND_STR (elementDictionary, ARCONTROLLER_DICTIONARY_SINGLE_KEY, element);
if (element != NULL)
{
HASH_FIND_STR (element->arguments, ARCONTROLLER_DICTIONARY_KEY_COMMON_SETTINGSSTATE_PRODUCTVERSIONCHANGED_SOFTWARE, arg);
if (arg != NULL)
{
char * software = arg->value.String;
std::cout << "SOFTWARE " << software << std::endl;
}
HASH_FIND_STR (element->arguments, ARCONTROLLER_DICTIONARY_KEY_COMMON_SETTINGSSTATE_PRODUCTVERSIONCHANGED_HARDWARE, arg);
if (arg != NULL)
{
char * hardware = arg->value.String;
std::cout << "hardware " << hardware << std::endl;
}
}
}
void Drone::cmdMaxAltitudeChanged(ARCONTROLLER_DICTIONARY_ELEMENT_t *elementDictionary) {
ARCONTROLLER_DICTIONARY_ARG_t *arg = NULL;
ARCONTROLLER_DICTIONARY_ELEMENT_t *element = NULL;
HASH_FIND_STR (elementDictionary, ARCONTROLLER_DICTIONARY_SINGLE_KEY, element);
if (element != NULL)
{
/*
HASH_FIND_STR (element->arguments, ARCONTROLLER_DICTIONARY_KEY_ARDRONE3_PILOTINGSETTINGSSTATE_MAXALTITUDECHANGED_CURRENT, arg);
if (arg != NULL)
{
float current = arg->value.Float;
}
HASH_FIND_STR (element->arguments, ARCONTROLLER_DICTIONARY_KEY_ARDRONE3_PILOTINGSETTINGSSTATE_MAXALTITUDECHANGED_MIN, arg);
if (arg != NULL)
{
float min = arg->value.Float;
}
*/
HASH_FIND_STR (element->arguments, ARCONTROLLER_DICTIONARY_KEY_ARDRONE3_PILOTINGSETTINGSSTATE_MAXALTITUDECHANGED_MAX, arg);
if (arg != NULL)
{
_max_altitude = arg->value.Float;
}
}
}
void Drone::cmdMaxVerticalSpeedChanged(ARCONTROLLER_DICTIONARY_ELEMENT_t *elementDictionary) {
ARCONTROLLER_DICTIONARY_ARG_t *arg = NULL;
ARCONTROLLER_DICTIONARY_ELEMENT_t *element = NULL;
HASH_FIND_STR (elementDictionary, ARCONTROLLER_DICTIONARY_SINGLE_KEY, element);
if (element != NULL)
{
HASH_FIND_STR (element->arguments, ARCONTROLLER_DICTIONARY_KEY_ARDRONE3_PILOTINGSETTINGSSTATE_AUTONOMOUSFLIGHTMAXVERTICALSPEED_VALUE, arg);
if (arg != NULL)
{
_max_vertical_speed = arg->value.Float;
}
}
}
void Drone::cmdMaxHorizontalSpeedChanged(ARCONTROLLER_DICTIONARY_ELEMENT_t *elementDictionary) {
ARCONTROLLER_DICTIONARY_ARG_t *arg = NULL;
ARCONTROLLER_DICTIONARY_ELEMENT_t *element = NULL;
HASH_FIND_STR (elementDictionary, ARCONTROLLER_DICTIONARY_SINGLE_KEY, element);
if (element != NULL)
{
HASH_FIND_STR (element->arguments, ARCONTROLLER_DICTIONARY_KEY_ARDRONE3_PILOTINGSETTINGSSTATE_AUTONOMOUSFLIGHTMAXHORIZONTALSPEED_VALUE, arg);
if (arg != NULL)
{
_max_horizontal_speed = arg->value.Float;
}
}
}
void Drone::cmdMaxRotationSpeedChanged(ARCONTROLLER_DICTIONARY_ELEMENT_t *elementDictionary) {
ARCONTROLLER_DICTIONARY_ARG_t *arg = NULL;
ARCONTROLLER_DICTIONARY_ELEMENT_t *element = NULL;
HASH_FIND_STR (elementDictionary, ARCONTROLLER_DICTIONARY_SINGLE_KEY, element);
if (element != NULL)
{
HASH_FIND_STR (element->arguments, ARCONTROLLER_DICTIONARY_KEY_ARDRONE3_PILOTINGSETTINGSSTATE_AUTONOMOUSFLIGHTMAXROTATIONSPEED_VALUE, arg);
if (arg != NULL)
{
_max_rotation_speed = arg->value.Float;
}
}
}
void Drone::cmdCameraSettingsChanged(ARCONTROLLER_DICTIONARY_ELEMENT_t *elementDictionary) {
ARCONTROLLER_DICTIONARY_ARG_t *arg = NULL;
ARCONTROLLER_DICTIONARY_ELEMENT_t *element = NULL;
HASH_FIND_STR (elementDictionary, ARCONTROLLER_DICTIONARY_SINGLE_KEY, element);
if (element != NULL)
{
HASH_FIND_STR (element->arguments, ARCONTROLLER_DICTIONARY_KEY_COMMON_CAMERASETTINGSSTATE_CAMERASETTINGSCHANGED_FOV, arg);
if (arg != NULL)
{
float fov = arg->value.Float;
}
HASH_FIND_STR (element->arguments, ARCONTROLLER_DICTIONARY_KEY_COMMON_CAMERASETTINGSSTATE_CAMERASETTINGSCHANGED_PANMAX, arg);
if (arg != NULL)
{
_max_pan = arg->value.Float;
}
HASH_FIND_STR (element->arguments, ARCONTROLLER_DICTIONARY_KEY_COMMON_CAMERASETTINGSSTATE_CAMERASETTINGSCHANGED_PANMIN, arg);
if (arg != NULL)
{
_min_pan = arg->value.Float;
}
HASH_FIND_STR (element->arguments, ARCONTROLLER_DICTIONARY_KEY_COMMON_CAMERASETTINGSSTATE_CAMERASETTINGSCHANGED_TILTMAX, arg);
if (arg != NULL)
{
_max_tilt = arg->value.Float;
}
HASH_FIND_STR (element->arguments, ARCONTROLLER_DICTIONARY_KEY_COMMON_CAMERASETTINGSSTATE_CAMERASETTINGSCHANGED_TILTMIN, arg);
if (arg != NULL)
{
_min_tilt = arg->value.Float;
}
}
}
void Drone::cmdCameraDefaultOrientationChanged(ARCONTROLLER_DICTIONARY_ELEMENT_t *elementDictionary) {
ARCONTROLLER_DICTIONARY_ARG_t *arg = NULL;
ARCONTROLLER_DICTIONARY_ELEMENT_t *element = NULL;
HASH_FIND_STR (elementDictionary, ARCONTROLLER_DICTIONARY_SINGLE_KEY, element);
if (element != NULL)
{
HASH_FIND_STR (element->arguments, ARCONTROLLER_DICTIONARY_KEY_ARDRONE3_CAMERASTATE_DEFAULTCAMERAORIENTATION_TILT, arg);
if (arg != NULL)
{
_default_tilt = arg->value.Float;
}
HASH_FIND_STR (element->arguments, ARCONTROLLER_DICTIONARY_KEY_ARDRONE3_CAMERASTATE_DEFAULTCAMERAORIENTATION_PAN, arg);
if (arg != NULL)
{
_default_pan = arg->value.Float;
}
}
}
/// PRIVATE
/// *************************************************************************************** JSON CONFIG FILE. NOT USED v
bool Drone::ardiscoveryConnect ()
{
bool failed = false;
ARSAL_PRINT(ARSAL_PRINT_INFO, TAG, "- ARDiscovery Connection");
eARDISCOVERY_ERROR err = ARDISCOVERY_OK;
ARDISCOVERY_Connection_ConnectionData_t *discoveryData = ARDISCOVERY_Connection_New (ARDISCOVERY_Connection_SendJsonCallback, ARDISCOVERY_Connection_ReceiveJsonCallback, this, &err);
if (discoveryData == NULL || err != ARDISCOVERY_OK)
{
ARSAL_PRINT(ARSAL_PRINT_ERROR, TAG, "Error while creating discoveryData : %s", ARDISCOVERY_Error_ToString(err));
failed = true;
}
if (!failed)
{
eARDISCOVERY_ERROR err = ARDISCOVERY_Connection_ControllerConnection(discoveryData, _discoveryPort, _ip.c_str());
if (err != ARDISCOVERY_OK)
{
ARSAL_PRINT(ARSAL_PRINT_ERROR, TAG, "Error while opening discovery connection : %s", ARDISCOVERY_Error_ToString(err));
failed = true;
}
}
ARDISCOVERY_Connection_Delete(&discoveryData);
return failed;
}
eARDISCOVERY_ERROR Drone::ARDISCOVERY_Connection_SendJsonCallback (uint8_t *dataTx, uint32_t *dataTxSize, void *drone)
{
Drone* self = (Drone*) drone;
eARDISCOVERY_ERROR err = ARDISCOVERY_OK;
if ((dataTx != NULL) && (dataTxSize != NULL))
{
*dataTxSize = sprintf((char *)dataTx, "{ \"%s\": %d,\n \"%s\": \"%s\",\n \"%s\": \"%s\",\n \"%s\": %d,\n \"%s\": %d }",
ARDISCOVERY_CONNECTION_JSON_D2CPORT_KEY, self->_d2cPort,
ARDISCOVERY_CONNECTION_JSON_CONTROLLER_NAME_KEY, "BebopDroneStartStream",
ARDISCOVERY_CONNECTION_JSON_CONTROLLER_TYPE_KEY, "Unix",
ARDISCOVERY_CONNECTION_JSON_ARSTREAM2_CLIENT_STREAM_PORT_KEY, BD_CLIENT_STREAM_PORT,
ARDISCOVERY_CONNECTION_JSON_ARSTREAM2_CLIENT_CONTROL_PORT_KEY, BD_CLIENT_CONTROL_PORT) + 1;
}
else
{
err = ARDISCOVERY_ERROR;
}
return err;
}
eARDISCOVERY_ERROR Drone::ARDISCOVERY_Connection_ReceiveJsonCallback (uint8_t *dataRx,
uint32_t dataRxSize,
char *ip,
void *drone)
{
Drone* self = (Drone*) drone;
eARDISCOVERY_ERROR err = ARDISCOVERY_OK;
if ((dataRx != NULL) && (dataRxSize != 0))
{
char *json = (char*) malloc(dataRxSize + 1);
strncpy(json, (char *)dataRx, dataRxSize);
json[dataRxSize] = '\0';
//read c2dPort ...
ARSAL_PRINT(ARSAL_PRINT_INFO, TAG, " - ReceiveJson:%s ", json);
free(json);
}
else
{
err = ARDISCOVERY_ERROR;
}
return err;
}
/// *************************************************************************************** JSON CONFIG FILE. NOT USED ^
eARCONTROLLER_ERROR Drone::didReceiveFrameCallback (ARCONTROLLER_Frame_t *frame, void *drone)
{
Drone* self = (Drone*) drone;
if(frame->isIFrame){
//TODO use ffmpeg or something here to decode properly the next frames without the dirty file
std::cout << "FULL iFrame received" << std::endl;
}
//uint8_t data
//ARSAL_PRINT(ARSAL_PRINT_WARNING, TAG, "GOT A FRAME");
/*
uint8_t* pxls = (uint8_t*) malloc(sizeof(uint8_t) * (frame->used + CODEBUFFERLEN));
memcpy(pxls, CODECBUFFER, CODEBUFFERLEN);
memcpy(pxls + CODEBUFFERLEN, frame->data, frame->used);
cv::Mat picture = cv::imdecode(std::vector<uint8_t>(pxls, pxls + frame->used + CODEBUFFERLEN), CV_LOAD_IMAGE_COLOR);
//cv::Mat picture(856, 480, CV_8U, frame->data);
if(picture.data != NULL) {
ARSAL_PRINT(ARSAL_PRINT_WARNING, TAG, "YATA");
std::cout << "OK " << picture.rows << " " << picture.cols << ":" << picture.data << std::endl;
cv::imshow("MDR", picture);
}else{
std::cout << "KO " << picture.rows << " " << picture.cols << ":" << picture.data << std::endl;
}
*/
/**/
if (self->_videoOut != NULL)
{
if (frame != NULL)
{
//TODO detect if user requested camera ?
if (true)
{
fwrite(frame->data, frame->used, 1, self->_videoOut);
fflush (self->_videoOut);
}
}
else
{
ARSAL_PRINT(ARSAL_PRINT_WARNING, TAG, "frame is NULL.");
}
}
else
{
ARSAL_PRINT(ARSAL_PRINT_WARNING, TAG, "_videoOut is NULL.");
}
/**/
return ARCONTROLLER_OK;
}
void Drone::blockingInitCam() {
while(_spinlock_camera.test_and_set(std::memory_order_acquire));
//Not pretty
_camera = cv::VideoCapture(_file_name);
while(!_camera.isOpened()){
sleep(1);
_camera = cv::VideoCapture(_file_name);
}
_spinlock_camera.clear(std::memory_order_release);
}
cv::Mat Drone::retrieveLastFrame() {
//Not pretty
cv::Mat tmp, frame;
while(_spinlock_camera.test_and_set(std::memory_order_acquire));
_camera >> tmp;
_spinlock_camera.clear(std::memory_order_release);
if(tmp.data == NULL) {
return tmp;
}
// We only want the last image, so we drop the previous ones.
do {
tmp.copyTo(frame);
while(_spinlock_camera.test_and_set(std::memory_order_acquire));
_camera >> tmp;
_spinlock_camera.clear(std::memory_order_release);
}while(tmp.data != NULL);
return frame;
}
bool Drone::setHullPresence(bool isPresent) {
eARCONTROLLER_ERROR error = _deviceController->aRDrone3->sendSpeedSettingsHullProtection(
_deviceController->aRDrone3,
(uint8_t)isPresent
);
return error == ARCONTROLLER_OK;
}
bool Drone::isHullProtectionOn() const {
return _hullProtectionPresence;
}
bool Drone::setVideoAutorecord(bool autoRecord, uint8_t storageId) {
eARCONTROLLER_ERROR error = _deviceController->aRDrone3->sendPictureSettingsVideoAutorecordSelection(
_deviceController->aRDrone3,
(uint8_t)autoRecord,
(uint8_t)storageId
);
return error == ARCONTROLLER_OK;
}
bool Drone::isVideoAutorecordOn() const{
return _autorecordEnabled;
}
uint8_t Drone::getAutorecordStorageId() const {
return _autorecordStorageId;
}
std::string Drone::getIpAddress() const {
return _ip;
}
bool Drone::useFullNavdata() {
if(not _usingFullNavdata) {
Eigen::initParallel();
try{
_navdata->init(_ip, FULL_NAVDATA_DEFAULT_PORT);
}
catch(const boost::system::system_error &e)
{
ARSAL_PRINT(ARSAL_PRINT_WARNING, "TODO",
"Bind on port %d failed, trying random port",
FULL_NAVDATA_DEFAULT_PORT
);
try{
_navdata->init(_ip, 0);
}
catch(const boost::system::system_error &e)
{
std::cout<<e.what()<<std::endl;
ARSAL_PRINT(ARSAL_PRINT_WARNING, "TODO",
"Bind on random port failed. Full navdata is not available"
);
}
}
_navdata->startReceive();
return true;
}
}
bool Drone::isUsingFullNavdata() const{
return _navdata->receivedData();
}
Fullnavdata *Drone::getFullNavdata() const {
return _navdata;
}
| [
"sbarton7@vols.utk.edu"
] | sbarton7@vols.utk.edu |
c890d5020a303a1a91c8f3bcd1b35cf5a7daf52c | 2a7e77565c33e6b5d92ce6702b4a5fd96f80d7d0 | /fuzzedpackages/RcppTN/src/dtnRcpp.cpp | 4a2fe210159ba7d1d7a71212cd3fa627c5437020 | [] | no_license | akhikolla/testpackages | 62ccaeed866e2194652b65e7360987b3b20df7e7 | 01259c3543febc89955ea5b79f3a08d3afe57e95 | refs/heads/master | 2023-02-18T03:50:28.288006 | 2021-01-18T13:23:32 | 2021-01-18T13:23:32 | 329,981,898 | 7 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 789 | cpp | // -*- mode: C++; c-indent-level: 4; c-basic-offset: 4; tab-width: 4 -*-
/// R-accessible Vectorized Truncated Normal Density Function
# include <Rcpp.h>
# include "dtn.h"
RcppExport SEXP dtnRcpp(const SEXP x,
const SEXP mean,
const SEXP sd,
const SEXP low,
const SEXP high
) {
// Namespace
using namespace Rcpp ;
//
// Conversion of Inputs
NumericVector X(x) ;
NumericVector Mean(mean) ;
NumericVector Sd(sd) ;
NumericVector Low(low) ;
NumericVector High(high) ;
//
// Init, Populate, and Return
NumericVector Dens(X.size(), 0.0) ;
{
dtn(X, Mean, Sd, Low, High, Dens) ;
}
return(Dens) ;
//
}
| [
"akhilakollasrinu424jf@gmail.com"
] | akhilakollasrinu424jf@gmail.com |
d660f4d89e0f7915fefdaaf5ef73255ec6a95bed | 7c2b0a9f7cf5ad28e019c6ef75d7a564759cd79b | /ALL_SDK/myprojects/Feedback-yThing/Editor.h | 755d525ae8074c815b68ecada16760d1f792f2ff | [
"MS-PL"
] | permissive | g40/RackAFX-Dev | 78f0ddcdaadfa90dcc8bca6b8b32e583b566d95c | 0b16bd6e3a5d984813f62eb3cb3889caafc6aef9 | refs/heads/master | 2022-04-18T02:12:30.061582 | 2019-02-23T19:38:28 | 2019-02-23T19:38:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,385 | h | // Editor.h - Declaration of the editor class.
// --------------------------------------------------------------------------
// Copyright (c) 2006 Niall Moody
//
// 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 EDITOR_H_
#define EDITOR_H_
#include "aeffguieditor.h"
#include "vstgui.h"
/// Declaration of the editor class.
class Editor : public AEffGUIEditor,
public CControlListener
{
public:
/// Constructor.
Editor(AudioEffect *effect);
/// Destructor.
~Editor();
/// Called when the editor should be opened.
bool open(void *systemPointer);
/// Called when the editor should be closed.
void close();
/// Called from the plugin to set a parameter.
void setParameter(VstInt32 index, float value);
/// Called from controls when their value changes.
void valueChanged(CDrawContext *context, CControl *control);
private:
/// Enum keeping track of the image IDs.
enum
{
BackgroundImage = 127,
KnobTickImage,
BypassImage
};
/// The Pitch knob.
CKnob *pitchKnob;
/// The Boost knob.
CKnob *boostKnob;
/// The Bypass switch.
COnOffButton *bypassButton;
/// Bitmap for the background.
CBitmap *backgroundImage;
/// Bitmap for the knob tick.
CBitmap *knobTickImage;
/// Bitmap for the bypass button.
CBitmap *bypassImage;
};
#endif
| [
"jonathanmoore@computer.org"
] | jonathanmoore@computer.org |
6f80f2e05dc06c4265588f9599ce7a77b5daaf0b | 3c28597c09429f4779d98b43a6fac737d60ed32f | /WString/WString_main.cpp | 1072ad72be467c12e9a4ade153443bf5baa6117c | [] | no_license | marcoxu/c_learning | ec2a93334bc1e353d7825a7e1513102ad474477e | fbc9d3a0f7a2c3ea0396d6bf75bbe617a875a150 | refs/heads/master | 2021-01-23T20:13:25.418601 | 2014-11-11T09:37:17 | 2014-11-11T09:37:17 | null | 0 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 676 | cpp | /*
* WString Ó÷¨ÊµÀý
*/
#include <stdlib.h>
#include <stdio.h>
#include <memory.h>
#include "WString.h"
int main()
{
// WString constructor
WString test_str_0 = "Test 0";
WString* test_str_1 = new WString("Test 1");
WString test_str_2("Test 2");
// Copy contstructor
WString test_str_3 = test_str_0;
// Operator =
test_str_3 = *test_str_1;
printf("test_str_3: %s\n", test_str_3.get());
test_str_3 = "Test 3";
printf("test_str_3: %s\n", test_str_3.get());
// Operator +
test_str_3 = test_str_3 + test_str_0;
printf("test_str_3: %s\n", test_str_3.get());
// End
delete test_str_1;
} | [
"marco.xu.f@gmail.com"
] | marco.xu.f@gmail.com |
b23e8637ee36f5d5e3d42ff3a561434e781810ce | a5a1753e17c9afa40160ca54aa95332cfcd1dcac | /2019/progetti/sol/combinatoria.cpp | e04ad3f1b895b69ca46282ce8824e2d6e9e0f0f1 | [] | no_license | lucach/abc | f9efe58d371dc5037cfffdcc4b4d771881107ae2 | 3f08b4414181d60a7a037b6a05288ad07b970bd5 | refs/heads/master | 2020-04-16T15:42:52.229950 | 2019-10-31T17:28:32 | 2019-10-31T17:28:32 | 35,567,651 | 0 | 0 | null | 2019-10-31T17:28:33 | 2015-05-13T18:42:23 | C++ | UTF-8 | C++ | false | false | 2,829 | cpp | /*
Author: Fabio Marchesi.
Complexity: O(log(N)(log(N)+k^2)).
Description:
Possiamo immaginare gli N progetti come un tassello 1XN, e dobbiamo riempirla utilzzando dei tasselli più piccoli.
Quando svolgiamo 1 progetto in un giorno usiamo un 1x1,, quando ne svogliamo 2 usiamo un tassello 1x2 quando ne svogliamo K
usiamo un tassello 1xK.
Quello che viene richiesto è il numero di modi differenti con cui comporre la nostra righa 1xN usando i tasselli 1x1...1xK.
Nel caso di esempio N=4, K=2 i modi che abbiamo sono
1: 1x1 1x1 1x1 1x1
2: 1x2 1x1 1x1
3: 1x1 1x2 1x1
4: 1x1 1x1 1x2
5: 1x2 1x2
Definamo dunque f(n) il modo in cui puoi comporre una riga grande n con pezzi larghi al più K
Abbiamo che f(0)=1 ed f(1)=1, mentre f(x) con x<0 vale 0:non c'è nesuno modo.
Per calcolare f(n) possiamo innanzittutto contare i modi in cui puoi comporlo unendo pezzi larghi n/2
Possiamo quindi settare res=f(n/2)+f((n+1)/2), quindi quei pezzi larghi N che sono "rotti" al centro.
Nel caso di esempio abbiamo res=f(2)*f(2): f(2)=2 ->1x1 1x1 | 1x2 quindi res=4:
1: 1x1 1x1 | 1x1 1x1
2: 1x2 | 1x1 1x1
3: 1x1 1x1 | 1x2
3: 1x2 | 1x2
Al momento abbiamo contato questi casi, ma manca 1x1 1x2 1x1 in quanto non deriva dall'unione di 2 pezzi 1x2.
Quello che dobbiamo fare è prendere i pezzi 1x2, 1x3, .. 1xK e provarli a posizionarli al centro della nostra sequenza.
In questo caso K=2, e quindi proviamo ad aggiungere al centro un 1x2. C'è un unico modo per metterlo al centro della sequenza,
questo modo lascia uno spazio di 1 a sinistra ed uno spazio di 1 a destra: dei 4 spazi i 2 al centro sono occupati dall'1x2, quindi
aggiungiamo a res f(1)*f(1)=1 ed otteniamo res=5.
Esempio
N=4 K=3 f(N)=7
per comodità rivelo che f(2)=2 con K=3 1x1 1x1 oppure 1x2
Come prima calcoliamo inizalmente i pezzi rotti al centro, che sono gli stessi 4 di prima.
res=4:
1: 1x1 1x1 | 1x1 1x1
2: 1x2 | 1x1 1x1
3: 1x1 1x1 | 1x2
3: 1x2 | 1x2
Ora aggiungiamo i pezzi al centro:
Il primo modo è sempre quello di prima quindi aggiungere l'1x2 nelle celle 1 e 2 res+= f(1)*f(1)=1, res=5
Ora aggiungiamo i 2 modi per aggiungere un 1x3:
Quindi:
1x3 1x1 [rotto al centro] res+= f(0)*f(1)=1 res=6
1x1 1x3 [rotto al centro] res+= f(1)*f(0)=1 res=7
*/
#include<bits/stdc++.h>
using namespace std;
#define ll long long int
unordered_map<int,int> M;
int const MOD=1000000007;
int K;
int comb(int n){
if(n<0) return 0;
if(M[n]) return M[n];
int fhalf=n/2, shalf=(n+1)/2; //first half, second half
int res=((ll)comb(fhalf)*comb(shalf))%MOD;
for(int length=2;length<=K;length++)
for(int offset=1; offset<length; offset++){
res=(res+((ll)comb(fhalf-offset)*comb(shalf-length+offset))%MOD)%MOD;
}
return M[n]=res;
}
int progetti(int N, int K){
::K=K;
M[0]=1;
M[1]=1;
return comb(N);
}
| [
"luca@chiodini.org"
] | luca@chiodini.org |
e34f23c762f6043a5bf19c2f8195753c45f35458 | 4dbbdd2f37aa26c34ec46d961d57ae1e08f275ee | /Tetris-2.0/Src/Menus/PauseOptionsMenu.cpp | 32b09d0e4f7004d3cf18bf9678a84462b4c3483b | [] | no_license | ToufiPF/Tetris-2.0 | cc25923b7a88e7d3cc245237b25af52c70f3ac53 | e601971c72fa5271ded9add594a5177cd1e2f73f | refs/heads/master | 2020-04-03T19:33:05.519886 | 2018-11-09T14:02:25 | 2018-11-09T14:02:25 | 155,526,923 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,443 | cpp | #include "PauseOptionsMenu.hpp"
PauseOptionsMenu::PauseOptionsMenu()
: OptionsMenu()
{
}
PauseOptionsMenu::~PauseOptionsMenu() {
}
void PauseOptionsMenu::setSelection(int sel) {
mSel = sel;
if (mSel < 0)
mSel = 0;
else if (mSel >= PauseOptionSelection::PauseOptionCount)
mSel = PauseOptionSelection::PauseOptionCount - 1;
switch (mSel) {
case PauseOptionSelection::BGM_VOL:
mTriangleSel.setPosition(mBgmTxt.getGlobalBounds().left - 20,
mBgmTxt.getGlobalBounds().top + (mBgmTxt.getGlobalBounds().height - mTriangleSel.getGlobalBounds().height) / 2);
break;
case PauseOptionSelection::SFX_VOL:
mTriangleSel.setPosition(mSfxTxt.getGlobalBounds().left - 20,
mSfxTxt.getGlobalBounds().top + (mSfxTxt.getGlobalBounds().height - mTriangleSel.getGlobalBounds().height) / 2);
break;
case PauseOptionSelection::APPLY:
mTriangleSel.setPosition(mSaveOptTxt.getGlobalBounds().left - 20,
mSaveOptTxt.getGlobalBounds().top + (mSaveOptTxt.getGlobalBounds().height - mTriangleSel.getGlobalBounds().height) / 2);
break;
default:
break;
}
}
void PauseOptionsMenu::draw(sf::RenderTarget& target, sf::RenderStates states) const {
states.transform *= getTransform();
target.draw(mMenuFrame, states);
target.draw(mBgmTxt, states);
target.draw(mBgmVolumeBar, states);
target.draw(mSfxTxt, states);
target.draw(mSfxVolumeBar, states);
target.draw(mSaveOptTxt, states);
target.draw(mTriangleSel, states);
}
| [
"13187080+ToufiPF@users.noreply.github.com"
] | 13187080+ToufiPF@users.noreply.github.com |
85732f141b882a9e6042151bb5b7d8eee864f146 | 39320b80b4aa862c0d545e85bd2dd88f2585bdce | /src/server/scripts/EasternKingdoms/ScarletEnclave/chapter1.cpp | b2ff44b22f8b287db6aec8e8f4dd0d34f3d2a599 | [] | no_license | ProjectStarGate/StarGate-Plus-EMU | ec8c8bb4fab9f6d3432d76b2afac1e1e7ec3249f | 8e75d2976ae863557992e69353a23af759346eae | refs/heads/master | 2021-01-15T12:25:53.949001 | 2011-12-21T06:04:07 | 2011-12-21T06:04:07 | 3,004,543 | 3 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 30,216 | cpp | /*
* Copyright (C) 2005-2011 MaNGOS <http://www.getmangos.com/>
*
* Copyright (C) 2008-2011 Trinity <http://www.trinitycore.org/>
*
* Copyright (C) 2006-2011 ScriptDev2 <http://www.scriptdev2.com/>
*
* Copyright (C) 2010-2011 ProjectSkyfire <http://www.projectskyfire.org/>
*
* Copyright (C) 2010-2012 Project-StarGate-Emu
*
* This program 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 2 of the License, or
* (at your option) any later version.
*
* This program 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 this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "ScriptPCH.h"
#include "Vehicle.h"
#include "ObjectMgr.h"
#include "ScriptedEscortAI.h"
/*######
##Quest 12848
######*/
#define GCD_CAST 1
enum eDeathKnightSpells {
SPELL_SOUL_PRISON_CHAIN_SELF = 54612,
SPELL_SOUL_PRISON_CHAIN = 54613,
SPELL_DK_INITIATE_VISUAL = 51519,
SPELL_ICY_TOUCH = 52372,
SPELL_PLAGUE_STRIKE = 52373,
SPELL_BLOOD_STRIKE = 52374,
SPELL_DEATH_COIL = 52375
};
#define EVENT_ICY_TOUCH 1
#define EVENT_PLAGUE_STRIKE 2
#define EVENT_BLOOD_STRIKE 3
#define EVENT_DEATH_COIL 4
//used by 29519, 29520, 29565, 29566, 29567 but signed for 29519
int32 say_event_start[8] = { -1609000, -1609001, -1609002, -1609003, -1609004,
-1609005, -1609006, -1609007 };
int32 say_event_attack[9] = { -1609008, -1609009, -1609010, -1609011, -1609012,
-1609013, -1609014, -1609015, -1609016 };
uint32 acherus_soul_prison[12] = { 191577, 191580, 191581, 191582, 191583,
191584, 191585, 191586, 191587, 191588, 191589, 191590 };
uint32 acherus_unworthy_initiate[5] = { 29519, 29520, 29565, 29566, 29567 };
enum UnworthyInitiatePhase {
PHASE_CHAINED,
PHASE_TO_EQUIP,
PHASE_EQUIPING,
PHASE_TO_ATTACK,
PHASE_ATTACKING,
};
class npc_unworthy_initiate: public CreatureScript {
public:
npc_unworthy_initiate() :
CreatureScript("npc_unworthy_initiate") {
}
CreatureAI* GetAI(Creature* pCreature) const {
return new npc_unworthy_initiateAI(pCreature);
}
struct npc_unworthy_initiateAI: public ScriptedAI {
npc_unworthy_initiateAI(Creature *c) :
ScriptedAI(c) {
me->SetReactState(REACT_PASSIVE);
if (!me->GetEquipmentId())
if (const CreatureInfo *info = GetCreatureInfo(28406))
if (info->equipmentId)
const_cast<CreatureInfo*>(me->GetCreatureInfo())->equipmentId =
info->equipmentId;
}
uint64 playerGUID;
UnworthyInitiatePhase phase;
uint32 wait_timer;
float anchorX, anchorY;
uint64 anchorGUID;
EventMap events;
void Reset() {
anchorGUID = 0;
phase = PHASE_CHAINED;
events.Reset();
me->setFaction(7);
me->SetFlag(UNIT_FIELD_FLAGS, UNIT_FLAG_OOC_NOT_ATTACKABLE);
me->SetUInt32Value(UNIT_FIELD_BYTES_1, 8);
me->LoadEquipment(0, true);
}
void EnterCombat(Unit * /*who*/) {
events.ScheduleEvent(EVENT_ICY_TOUCH, 1000, GCD_CAST);
events.ScheduleEvent(EVENT_PLAGUE_STRIKE, 3000, GCD_CAST);
events.ScheduleEvent(EVENT_BLOOD_STRIKE, 2000, GCD_CAST);
events.ScheduleEvent(EVENT_DEATH_COIL, 5000, GCD_CAST);
}
void MovementInform(uint32 type, uint32 id) {
if (type != POINT_MOTION_TYPE)
return;
if (id == 1) {
wait_timer = 5000;
me->CastSpell(me, SPELL_DK_INITIATE_VISUAL, true);
if (Player* starter = Unit::GetPlayer(*me, playerGUID))
DoScriptText(say_event_attack[rand() % 9], me, starter);
phase = PHASE_TO_ATTACK;
}
}
void EventStart(Creature* anchor, Player *pTarget) {
wait_timer = 5000;
phase = PHASE_TO_EQUIP;
me->SetUInt32Value(UNIT_FIELD_BYTES_1, 0);
me->RemoveAurasDueToSpell(SPELL_SOUL_PRISON_CHAIN_SELF);
me->RemoveAurasDueToSpell(SPELL_SOUL_PRISON_CHAIN);
float z;
anchor->GetContactPoint(me, anchorX, anchorY, z, 1.0f);
playerGUID = pTarget->GetGUID();
DoScriptText(say_event_start[rand() % 8], me, pTarget);
}
void UpdateAI(const uint32 diff) {
switch (phase) {
case PHASE_CHAINED:
if (!anchorGUID) {
if (Creature *anchor = me->FindNearestCreature(29521, 30)) {
anchor->AI()->SetGUID(me->GetGUID());
anchor->CastSpell(me, SPELL_SOUL_PRISON_CHAIN, true);
anchorGUID = anchor->GetGUID();
} else
sLog->outError(
"npc_unworthy_initiateAI: unable to find anchor!");
float dist = 99.0f;
GameObject *prison = NULL;
for (uint8 i = 0; i < 12; ++i) {
if (GameObject* temp_prison = me->FindNearestGameObject(acherus_soul_prison[i], 30)) {
if (me->IsWithinDist(temp_prison, dist, false)) {
dist = me->GetDistance2d(temp_prison);
prison = temp_prison;
}
}
}
if (prison)
prison->ResetDoorOrButton();
else
sLog->outError(
"npc_unworthy_initiateAI: unable to find prison!");
}
break;
case PHASE_TO_EQUIP:
if (wait_timer) {
if (wait_timer > diff)
wait_timer -= diff;
else {
me->GetMotionMaster()->MovePoint(1, anchorX, anchorY,
me->GetPositionZ());
//sLog->outDebug("npc_unworthy_initiateAI: move to %f %f %f", anchorX, anchorY, me->GetPositionZ());
phase = PHASE_EQUIPING;
wait_timer = 0;
}
}
break;
case PHASE_TO_ATTACK:
if (wait_timer) {
if (wait_timer > diff)
wait_timer -= diff;
else {
me->setFaction(14);
me->RemoveFlag(UNIT_FIELD_FLAGS,
UNIT_FLAG_OOC_NOT_ATTACKABLE);
phase = PHASE_ATTACKING;
if (Player *pTarget = Unit::GetPlayer(*me, playerGUID))
me->AI()->AttackStart(pTarget);
wait_timer = 0;
}
}
break;
case PHASE_ATTACKING:
if (!UpdateVictim())
return;
events.Update(diff);
while (uint32 eventId = events.ExecuteEvent()) {
switch (eventId) {
case EVENT_ICY_TOUCH:
DoCast(me->getVictim(), SPELL_ICY_TOUCH);
events.DelayEvents(1000, GCD_CAST);
events.ScheduleEvent(EVENT_ICY_TOUCH, 5000, GCD_CAST);
break;
case EVENT_PLAGUE_STRIKE:
DoCast(me->getVictim(), SPELL_PLAGUE_STRIKE);
events.DelayEvents(1000, GCD_CAST);
events.ScheduleEvent(SPELL_PLAGUE_STRIKE, 5000,
GCD_CAST);
break;
case EVENT_BLOOD_STRIKE:
DoCast(me->getVictim(), SPELL_BLOOD_STRIKE);
events.DelayEvents(1000, GCD_CAST);
events.ScheduleEvent(EVENT_BLOOD_STRIKE, 5000,
GCD_CAST);
break;
case EVENT_DEATH_COIL:
DoCast(me->getVictim(), SPELL_DEATH_COIL);
events.DelayEvents(1000, GCD_CAST);
events.ScheduleEvent(EVENT_DEATH_COIL, 5000, GCD_CAST);
break;
}
}
DoMeleeAttackIfReady();
break;
default:
break;
}
}
};
};
class npc_unworthy_initiate_anchor: public CreatureScript {
public:
npc_unworthy_initiate_anchor() :
CreatureScript("npc_unworthy_initiate_anchor") {
}
CreatureAI* GetAI(Creature* pCreature) const {
return new npc_unworthy_initiate_anchorAI(pCreature);
}
struct npc_unworthy_initiate_anchorAI: public PassiveAI {
npc_unworthy_initiate_anchorAI(Creature *c) :
PassiveAI(c), prisonerGUID(0) {
}
uint64 prisonerGUID;
void SetGUID(const uint64 &guid, int32 /*id*/) {
if (!prisonerGUID)
prisonerGUID = guid;
}
uint64 GetGUID(int32 /*id*/) {
return prisonerGUID;
}
};
};
class go_acherus_soul_prison: public GameObjectScript {
public:
go_acherus_soul_prison() :
GameObjectScript("go_acherus_soul_prison") {
}
bool OnGossipHello(Player* pPlayer, GameObject* pGo) {
if (Creature *anchor = pGo->FindNearestCreature(29521, 15))
if (uint64 prisonerGUID = anchor->AI()->GetGUID())
if (Creature* prisoner = Creature::GetCreature(*pPlayer, prisonerGUID))
CAST_AI(npc_unworthy_initiate::npc_unworthy_initiateAI, prisoner->AI())->EventStart(
anchor, pPlayer);
return false;
}
};
/*######
## npc_eye_of_acherus
######*/
enum EyeOfAcherus {
DISPLAYID_EYE_HUGE = 26320,
DISPLAYID_EYE_SMALL = 25499,
SPELL_EYE_PHASEMASK = 70889,
SPELL_EYE_VISUAL = 51892,
SPELL_EYE_FL_BOOST_RUN = 51923,
SPELL_EYE_FL_BOOST_FLY = 51890,
SPELL_EYE_CONTROL = 51852,
};
//#define SAY_EYE_LAUNCHED "Eye of Acherus is launched towards its destination."
//#define SAY_EYE_UNDER_CONTROL "You are now in control of the eye."
// for some reason yells aren't working correctly yet.
enum YELLS {
SAY_EYE_LAUNCHED = -1666451, SAY_EYE_UNDER_CONTROL = -1666452
};
static Position Center[] =
{ { 2346.550049f, -5694.430176f, 426.029999f, 0.0f }, };
class npc_eye_of_acherus: public CreatureScript {
public:
npc_eye_of_acherus() :
CreatureScript("npc_eye_of_acherus") {
}
CreatureAI* GetAI(Creature* pCreature) const {
return new npc_eye_of_acherusAI(pCreature);
}
struct npc_eye_of_acherusAI: public ScriptedAI {
npc_eye_of_acherusAI(Creature *pCreature) :
ScriptedAI(pCreature) {
Reset();
}
uint32 m_uiStartTimer;
bool m_bIsActive;
void Reset() {
if (Unit* pController = me->GetCharmer())
me->SetLevel(pController->getLevel());
me->CastSpell(me, 51890, true);
me->SetDisplayId(26320);
DoScriptText(SAY_EYE_LAUNCHED, me);
me->SetHomePosition(2363.970589f, -5659.861328f, 504.316833f, 0);
me->GetMotionMaster()->MoveCharge(1752.858276f, -5878.270996f,
145.136444f, 0); //position center
me->SetReactState(REACT_AGGRESSIVE);
me->RemoveFlag(
UNIT_FIELD_FLAGS,
UNIT_FLAG_NON_ATTACKABLE | UNIT_FLAG_NOT_SELECTABLE
| UNIT_FLAG_STUNNED);
m_bIsActive = false;
m_uiStartTimer = 2000;
}
void AttackStart(Unit *) {
}
void MoveInLineOfSight(Unit *) {
}
void JustDied(Unit* /*pKiller*/) {
if (Unit* charmer = me->GetCharmer())
charmer->RemoveAurasDueToSpell(51852);
}
void UpdateAI(const uint32 uiDiff) {
if (me->isCharmed()) {
if (m_uiStartTimer <= uiDiff && !m_bIsActive) // fly to start point
{
me->CastSpell(me, 70889, true);
me->CastSpell(me, 51892, true);
me->CastSpell(me, 51890, true);
// workaround for faster flight speed
me->CastSpell(me, 51923, true);
me->SetSpeed(MOVE_FLIGHT, 3.4f, true);
me->GetMotionMaster()->MovePoint(0, 1711.0f, -5820.0f,
147.0f);
return; // was "me = true;" causing errors
} else
m_uiStartTimer -= uiDiff;
} else
me->ForcedDespawn();
}
void MovementInform(uint32 uiType, uint32 uiPointId) {
if (uiType != POINT_MOTION_TYPE || uiPointId != 0)
return;
// I think those morphs are not blizzlike...
me->SetDisplayId(25499);
// for some reason it does not work when this spell is casted before the waypoint movement
me->CastSpell(me, 51892, true);
me->CastSpell(me, 51890, true);
DoScriptText(SAY_EYE_UNDER_CONTROL, me);
((Player*) (me->GetCharmer()))->SetClientControl(me, 1);
}
};
};
/*######
## npc_death_knight_initiate
######*/
#define GOSSIP_ACCEPT_DUEL "I challenge you, death knight!"
enum eDuelEnums {
SAY_DUEL_A = -1609080,
SAY_DUEL_B = -1609081,
SAY_DUEL_C = -1609082,
SAY_DUEL_D = -1609083,
SAY_DUEL_E = -1609084,
SAY_DUEL_F = -1609085,
SAY_DUEL_G = -1609086,
SAY_DUEL_H = -1609087,
SAY_DUEL_I = -1609088,
SPELL_DUEL = 52996,
//SPELL_DUEL_TRIGGERED = 52990,
SPELL_DUEL_VICTORY = 52994,
SPELL_DUEL_FLAG = 52991,
QUEST_DEATH_CHALLENGE = 12733,
FACTION_HOSTILE = 2068
};
int32 m_auiRandomSay[] = { SAY_DUEL_A, SAY_DUEL_B, SAY_DUEL_C, SAY_DUEL_D,
SAY_DUEL_E, SAY_DUEL_F, SAY_DUEL_G, SAY_DUEL_H, SAY_DUEL_I };
class npc_death_knight_initiate: public CreatureScript {
public:
npc_death_knight_initiate() :
CreatureScript("npc_death_knight_initiate") {
}
bool OnGossipSelect(Player* pPlayer, Creature* pCreature,
uint32 /*uiSender*/, uint32 uiAction) {
pPlayer->PlayerTalkClass->ClearMenus();
if (uiAction == GOSSIP_ACTION_INFO_DEF) {
pPlayer->CLOSE_GOSSIP_MENU();
if (pPlayer->isInCombat() || pCreature->isInCombat())
return true;
if (npc_death_knight_initiateAI* pInitiateAI = CAST_AI(npc_death_knight_initiate::npc_death_knight_initiateAI, pCreature->AI())) {
if (pInitiateAI->m_bIsDuelInProgress)
return true;
}
pCreature->RemoveFlag(UNIT_FIELD_FLAGS,
UNIT_FLAG_OOC_NOT_ATTACKABLE);
pCreature->RemoveFlag(UNIT_FIELD_FLAGS, UNIT_FLAG_UNK_15);
int32 uiSayId = rand() % (sizeof(m_auiRandomSay) / sizeof(int32));
DoScriptText(m_auiRandomSay[uiSayId], pCreature, pPlayer);
pPlayer->CastSpell(pCreature, SPELL_DUEL, false);
pPlayer->CastSpell(pPlayer, SPELL_DUEL_FLAG, true);
}
return true;
}
bool OnGossipHello(Player* pPlayer, Creature* pCreature) {
if (pPlayer->GetQuestStatus(QUEST_DEATH_CHALLENGE)
== QUEST_STATUS_INCOMPLETE && pCreature->IsFullHealth()) {
if (pPlayer->HealthBelowPct(10))
return true;
if (pPlayer->isInCombat() || pCreature->isInCombat())
return true;
pPlayer->ADD_GOSSIP_ITEM(GOSSIP_ICON_CHAT, GOSSIP_ACCEPT_DUEL, GOSSIP_SENDER_MAIN, GOSSIP_ACTION_INFO_DEF);
pPlayer->SEND_GOSSIP_MENU(pPlayer->GetGossipTextId(pCreature), pCreature->GetGUID());
}
return true;
}
CreatureAI* GetAI(Creature* pCreature) const {
return new npc_death_knight_initiateAI(pCreature);
}
struct npc_death_knight_initiateAI: public CombatAI {
npc_death_knight_initiateAI(Creature* pCreature) :
CombatAI(pCreature) {
m_bIsDuelInProgress = false;
}
bool lose;
uint64 m_uiDuelerGUID;
uint32 m_uiDuelTimer;
bool m_bIsDuelInProgress;
void Reset() {
lose = false;
me->RestoreFaction();
CombatAI::Reset();
me->SetFlag(UNIT_FIELD_FLAGS, UNIT_FLAG_UNK_15);
m_uiDuelerGUID = 0;
m_uiDuelTimer = 5000;
m_bIsDuelInProgress = false;
}
void SpellHit(Unit* pCaster, const SpellEntry* pSpell) {
if (!m_bIsDuelInProgress && pSpell->Id == SPELL_DUEL) {
m_uiDuelerGUID = pCaster->GetGUID();
m_bIsDuelInProgress = true;
}
}
void DamageTaken(Unit* pDoneBy, uint32 &uiDamage) {
if (m_bIsDuelInProgress && pDoneBy->IsControlledByPlayer()) {
if (pDoneBy->GetGUID() != m_uiDuelerGUID
&& pDoneBy->GetOwnerGUID() != m_uiDuelerGUID) // other players cannot help
uiDamage = 0;
else if (uiDamage >= me->GetHealth()) {
uiDamage = 0;
if (!lose) {
pDoneBy->RemoveGameObject(SPELL_DUEL_FLAG, true);
pDoneBy->AttackStop();
me->CastSpell(pDoneBy, SPELL_DUEL_VICTORY, true);
lose = true;
me->CastSpell(me, 7267, true);
me->RestoreFaction();
}
}
}
}
void UpdateAI(const uint32 uiDiff) {
if (!UpdateVictim()) {
if (m_bIsDuelInProgress) {
if (m_uiDuelTimer <= uiDiff) {
me->setFaction(FACTION_HOSTILE);
if (Unit* pUnit = Unit::GetUnit(*me, m_uiDuelerGUID))
AttackStart(pUnit);
} else
m_uiDuelTimer -= uiDiff;
}
return;
}
if (m_bIsDuelInProgress) {
if (lose) {
if (!me->HasAura(7267))
EnterEvadeMode();
return;
} else if (me->getVictim()->GetTypeId() == TYPEID_PLAYER
&& me->getVictim()->HealthBelowPct(10)) {
me->getVictim()->CastSpell(me->getVictim(), 7267, true); // beg
me->getVictim()->RemoveGameObject(SPELL_DUEL_FLAG, true);
EnterEvadeMode();
return;
}
}
// TODO: spells
CombatAI::UpdateAI(uiDiff);
}
};
};
/*######
## npc_dark_rider_of_acherus
######*/
#define DESPAWN_HORSE 52267
#define SAY_DARK_RIDER "The realm of shadows awaits..."
class npc_dark_rider_of_acherus: public CreatureScript {
public:
npc_dark_rider_of_acherus() :
CreatureScript("npc_dark_rider_of_acherus") {
}
CreatureAI* GetAI(Creature* pCreature) const {
return new npc_dark_rider_of_acherusAI(pCreature);
}
struct npc_dark_rider_of_acherusAI: public ScriptedAI {
npc_dark_rider_of_acherusAI(Creature *c) :
ScriptedAI(c) {
}
uint32 PhaseTimer;
uint32 Phase;
bool Intro;
uint64 TargetGUID;
void Reset() {
PhaseTimer = 4000;
Phase = 0;
Intro = false;
TargetGUID = 0;
}
void UpdateAI(const uint32 diff) {
if (!Intro || !TargetGUID)
return;
if (PhaseTimer <= diff) {
switch (Phase) {
case 0:
me->MonsterSay(SAY_DARK_RIDER, LANG_UNIVERSAL, 0);
PhaseTimer = 5000;
Phase = 1;
break;
case 1:
if (Unit *pTarget = Unit::GetUnit(*me, TargetGUID))
DoCast(pTarget, DESPAWN_HORSE, true);
PhaseTimer = 3000;
Phase = 2;
break;
case 2:
me->SetVisible(false);
PhaseTimer = 2000;
Phase = 3;
break;
case 3:
me->ForcedDespawn();
break;
default:
break;
}
} else
PhaseTimer -= diff;
}
void InitDespawnHorse(Unit *who) {
if (!who)
return;
TargetGUID = who->GetGUID();
me->AddUnitMovementFlag(MOVEMENTFLAG_WALKING);
me->SetSpeed(MOVE_RUN, 0.4f);
me->GetMotionMaster()->MoveChase(who);
me->SetUInt64Value(UNIT_FIELD_TARGET, TargetGUID);
Intro = true;
}
};
};
/*######
## npc_salanar_the_horseman
######*/
enum eSalanar {
REALM_OF_SHADOWS = 52693,
EFFECT_STOLEN_HORSE = 52263,
DELIVER_STOLEN_HORSE = 52264,
CALL_DARK_RIDER = 52266,
SPELL_EFFECT_OVERTAKE = 52349
};
class npc_salanar_the_horseman: public CreatureScript {
public:
npc_salanar_the_horseman() :
CreatureScript("npc_salanar_the_horseman") {
}
CreatureAI* GetAI(Creature* pCreature) const {
return new npc_salanar_the_horsemanAI(pCreature);
}
struct npc_salanar_the_horsemanAI: public ScriptedAI {
npc_salanar_the_horsemanAI(Creature *c) :
ScriptedAI(c) {
}
void SpellHit(Unit *caster, const SpellEntry *spell) {
if (spell->Id == DELIVER_STOLEN_HORSE) {
if (caster->GetTypeId() == TYPEID_UNIT && caster->IsVehicle()) {
if (Unit *charmer = caster->GetCharmer()) {
charmer->RemoveAurasDueToSpell(EFFECT_STOLEN_HORSE);
caster->RemoveFlag(UNIT_NPC_FLAGS,
UNIT_NPC_FLAG_SPELLCLICK);
caster->setFaction(35);
DoCast(caster, CALL_DARK_RIDER, true);
if (Creature* Dark_Rider = me->FindNearestCreature(28654, 15))
CAST_AI(npc_dark_rider_of_acherus::npc_dark_rider_of_acherusAI, Dark_Rider->AI())->InitDespawnHorse(
caster);
}
}
}
}
void MoveInLineOfSight(Unit *who) {
ScriptedAI::MoveInLineOfSight(who);
if (who->GetTypeId() == TYPEID_UNIT && who->IsVehicle()
&& me->IsWithinDistInMap(who, 5.0f)) {
if (Unit *charmer = who->GetCharmer()) {
if (charmer->GetTypeId() == TYPEID_PLAYER) {
// for quest Into the Realm of Shadows(12687)
if (me->GetEntry() == 28788
&& CAST_PLR(charmer)->GetQuestStatus(12687)
== QUEST_STATUS_INCOMPLETE) {
CAST_PLR(charmer)->GroupEventHappens(12687, me);
charmer->RemoveAurasDueToSpell(
SPELL_EFFECT_OVERTAKE);
CAST_CRE(who)->ForcedDespawn();
//CAST_CRE(who)->Respawn(true);
}
if (CAST_PLR(charmer)->HasAura(REALM_OF_SHADOWS))
charmer->RemoveAurasDueToSpell(REALM_OF_SHADOWS);
}
}
}
}
};
};
/*######
## npc_ros_dark_rider
######*/
class npc_ros_dark_rider: public CreatureScript {
public:
npc_ros_dark_rider() :
CreatureScript("npc_ros_dark_rider") {
}
CreatureAI* GetAI(Creature* pCreature) const {
return new npc_ros_dark_riderAI(pCreature);
}
struct npc_ros_dark_riderAI: public ScriptedAI {
npc_ros_dark_riderAI(Creature *c) :
ScriptedAI(c) {
}
void EnterCombat(Unit * /*who*/) {
me->ExitVehicle();
}
void Reset() {
Creature* deathcharger = me->FindNearestCreature(28782, 30);
if (!deathcharger)
return;
deathcharger->RestoreFaction();
deathcharger->RemoveFlag(UNIT_NPC_FLAGS, UNIT_NPC_FLAG_SPELLCLICK);
deathcharger->SetFlag(UNIT_FIELD_FLAGS, UNIT_FLAG_NOT_SELECTABLE);
if (!me->GetVehicle() && deathcharger->IsVehicle()
&& deathcharger->GetVehicleKit()->HasEmptySeat(0))
me->EnterVehicle(deathcharger);
}
void JustDied(Unit *killer) {
Creature* deathcharger = me->FindNearestCreature(28782, 30);
if (!deathcharger)
return;
if (killer->GetTypeId() == TYPEID_PLAYER
&& deathcharger->GetTypeId() == TYPEID_UNIT
&& deathcharger->IsVehicle()) {
deathcharger->SetFlag(UNIT_NPC_FLAGS, UNIT_NPC_FLAG_SPELLCLICK);
deathcharger->RemoveFlag(UNIT_FIELD_FLAGS,
UNIT_FLAG_NOT_SELECTABLE);
deathcharger->setFaction(2096);
}
}
};
};
// correct way: 52312 52314 52555 ...
enum SG {
GHOULS = 28845, GHOSTS = 28846,
};
class npc_dkc1_gothik: public CreatureScript {
public:
npc_dkc1_gothik() :
CreatureScript("npc_dkc1_gothik") {
}
CreatureAI* GetAI(Creature* pCreature) const {
return new npc_dkc1_gothikAI(pCreature);
}
struct npc_dkc1_gothikAI: public ScriptedAI {
npc_dkc1_gothikAI(Creature *c) :
ScriptedAI(c) {
}
void MoveInLineOfSight(Unit *who) {
ScriptedAI::MoveInLineOfSight(who);
if (who->GetEntry() == GHOULS
&& me->IsWithinDistInMap(who, 10.0f)) {
if (Unit *owner = who->GetOwner()) {
if (owner->GetTypeId() == TYPEID_PLAYER) {
if (CAST_PLR(owner)->GetQuestStatus(12698)
== QUEST_STATUS_INCOMPLETE)
CAST_CRE(who)->CastSpell(owner, 52517, true);
//Todo: Creatures must not be removed, but, must instead
// stand next to Gothik and be commanded into the pit
// and dig into the ground.
CAST_CRE(who)->ForcedDespawn();
if (CAST_PLR(owner)->GetQuestStatus(12698)
== QUEST_STATUS_COMPLETE)
owner->RemoveAllMinionsByEntry(GHOULS);
}
}
}
}
};
};
class npc_scarlet_ghoul: public CreatureScript {
public:
npc_scarlet_ghoul() :
CreatureScript("npc_scarlet_ghoul") {
}
CreatureAI* GetAI(Creature* pCreature) const {
return new npc_scarlet_ghoulAI(pCreature);
}
struct npc_scarlet_ghoulAI: public ScriptedAI {
npc_scarlet_ghoulAI(Creature *c) :
ScriptedAI(c) {
// Ghouls should display their Birth Animation
// Crawling out of the ground
//DoCast(me, 35177, true);
//me->MonsterSay("Mommy?", LANG_UNIVERSAL, 0);
me->SetReactState(REACT_DEFENSIVE);
}
void FindMinions(Unit *owner) {
std::list<Unit*> MinionList;
owner->GetAllMinionsByEntry(MinionList, GHOULS);
if (!MinionList.empty()) {
for (std::list<Unit*>::const_iterator itr = MinionList.begin();
itr != MinionList.end(); ++itr) {
if (CAST_CRE(*itr)->GetOwner()->GetGUID()
== me->GetOwner()->GetGUID()) {
if (CAST_CRE(*itr)->isInCombat()
&& CAST_CRE(*itr)->getAttackerForHelper()) {
AttackStart(CAST_CRE(*itr)->getAttackerForHelper());
}
}
}
}
}
void UpdateAI(const uint32 /*diff*/) {
if (!me->isInCombat()) {
if (Unit *owner = me->GetOwner()) {
if (owner->GetTypeId() == TYPEID_PLAYER
&& CAST_PLR(owner)->isInCombat()) {
if (CAST_PLR(owner)->getAttackerForHelper()
&& CAST_PLR(owner)->getAttackerForHelper()->GetEntry()
== GHOSTS) {
AttackStart(
CAST_PLR(owner)->getAttackerForHelper());
} else {
FindMinions(owner);
}
}
}
}
if (!UpdateVictim())
return;
//ScriptedAI::UpdateAI(diff);
//Check if we have a current target
if (me->getVictim()->GetEntry() == GHOSTS) {
if (me->isAttackReady()) {
//If we are within range melee the target
if (me->IsWithinMeleeRange(me->getVictim())) {
me->AttackerStateUpdate(me->getVictim());
me->resetAttackTimer();
}
}
}
}
};
};
/*####
## npc_scarlet_miner_cart
####*/
#define SPELL_CART_CHECK 54173
#define SPELL_CART_DRAG 52465
class npc_scarlet_miner_cart: public CreatureScript {
public:
npc_scarlet_miner_cart() :
CreatureScript("npc_scarlet_miner_cart") {
}
CreatureAI* GetAI(Creature *_Creature) const {
return new npc_scarlet_miner_cartAI(_Creature);
}
struct npc_scarlet_miner_cartAI: public PassiveAI {
npc_scarlet_miner_cartAI(Creature *c) :
PassiveAI(c), minerGUID(0) {
me->SetFlag(UNIT_FIELD_FLAGS, UNIT_FLAG_OOC_NOT_ATTACKABLE);
me->SetDisplayId(me->GetCreatureInfo()->Modelid2); // Modelid1 is a horse.
}
uint64 minerGUID;
void SetGUID(const uint64 &guid, int32 /*id*/) {
minerGUID = guid;
}
void DoAction(const int32 /*param*/) {
if (Creature *miner = Unit::GetCreature(*me, minerGUID)) {
me->RemoveUnitMovementFlag(MOVEMENTFLAG_WALKING);
//Not 100% correct, but movement is smooth. Sometimes miner walks faster
//than normal, this speed is fast enough to keep up at those times.
me->SetSpeed(MOVE_RUN, 1.25f);
me->GetMotionMaster()->MoveFollow(miner, 1.0f, 0);
}
}
void PassengerBoarded(Unit * /*who*/, int8 /*seatId*/, bool apply) {
if (!apply)
if (Creature *miner = Unit::GetCreature(*me, minerGUID))
miner->DisappearAndDie();
}
};
};
/*####
## npc_scarlet_miner
####*/
#define SAY_SCARLET_MINER1 "Where'd this come from? I better get this down to the ships before the foreman sees it!"
#define SAY_SCARLET_MINER2 "Now I can have a rest!"
class npc_scarlet_miner: public CreatureScript {
public:
npc_scarlet_miner() :
CreatureScript("npc_scarlet_miner") {
}
CreatureAI* GetAI(Creature *_Creature) const {
return new npc_scarlet_minerAI(_Creature);
}
struct npc_scarlet_minerAI: public npc_escortAI {
npc_scarlet_minerAI(Creature *c) :
npc_escortAI(c) {
me->SetReactState(REACT_PASSIVE);
}
uint32 IntroTimer;
uint32 IntroPhase;
uint64 carGUID;
void Reset() {
carGUID = 0;
IntroTimer = 0;
IntroPhase = 0;
}
void InitWaypoint() {
AddWaypoint(1, 2389.03f, -5902.74f, 109.014f, 5000);
AddWaypoint(2, 2341.812012f, -5900.484863f, 102.619743f);
AddWaypoint(3, 2306.561279f, -5901.738281f, 91.792419f);
AddWaypoint(4, 2300.098389f, -5912.618652f, 86.014885f);
AddWaypoint(5, 2294.142090f, -5927.274414f, 75.316849f);
AddWaypoint(6, 2286.984375f, -5944.955566f, 63.714966f);
AddWaypoint(7, 2280.001709f, -5961.186035f, 54.228283f);
AddWaypoint(8, 2259.389648f, -5974.197754f, 42.359348f);
AddWaypoint(9, 2242.882812f, -5984.642578f, 32.827850f);
AddWaypoint(10, 2217.265625f, -6028.959473f, 7.675705f);
AddWaypoint(11, 2202.595947f, -6061.325684f, 5.882018f);
AddWaypoint(12, 2188.974609f, -6080.866699f, 3.370027f);
if (urand(0, 1)) {
AddWaypoint(13, 2176.483887f, -6110.407227f, 1.855181f);
AddWaypoint(14, 2172.516602f, -6146.752441f, 1.074235f);
AddWaypoint(15, 2138.918457f, -6158.920898f, 1.342926f);
AddWaypoint(16, 2129.866699f, -6174.107910f, 4.380779f);
AddWaypoint(17, 2117.709473f, -6193.830078f, 13.3542f, 10000);
} else {
AddWaypoint(13, 2184.190186f, -6166.447266f, 0.968877f);
AddWaypoint(14, 2234.265625f, -6163.741211f, 0.916021f);
AddWaypoint(15, 2268.071777f, -6158.750977f, 1.822252f);
AddWaypoint(16, 2270.028320f, -6176.505859f, 6.340538f);
AddWaypoint(17, 2271.739014f, -6195.401855f, 13.3542f, 10000);
}
}
void InitCartQuest(Player *who) {
carGUID = who->GetVehicleBase()->GetGUID();
InitWaypoint();
Start(false, false, who->GetGUID());
SetDespawnAtFar(false);
}
void WaypointReached(uint32 i) {
switch (i) {
case 1:
if (Unit *car = Unit::GetCreature(*me, carGUID)) {
me->SetInFront(car);
me->SendMovementFlagUpdate();
}
me->MonsterSay(SAY_SCARLET_MINER1, LANG_UNIVERSAL, NULL);
SetRun(true);
IntroTimer = 4000;
IntroPhase = 1;
break;
case 17:
if (Unit *car = Unit::GetCreature(*me, carGUID)) {
me->SetInFront(car);
me->SendMovementFlagUpdate();
car->Relocate(car->GetPositionX(), car->GetPositionY(),
me->GetPositionZ() + 1);
car->SendMonsterStop();
car->RemoveAura(SPELL_CART_DRAG);
}
me->MonsterSay(SAY_SCARLET_MINER2, LANG_UNIVERSAL, NULL);
break;
default:
break;
}
}
void UpdateAI(const uint32 diff) {
if (IntroPhase) {
if (IntroTimer <= diff) {
if (IntroPhase == 1) {
if (Creature *car = Unit::GetCreature(*me, carGUID))
DoCast(car, SPELL_CART_DRAG);
IntroTimer = 800;
IntroPhase = 2;
} else {
if (Creature *car = Unit::GetCreature(*me, carGUID))
car->AI()->DoAction();
IntroPhase = 0;
}
} else
IntroTimer -= diff;
}
npc_escortAI::UpdateAI(diff);
}
};
};
/*######
## go_inconspicuous_mine_car
######*/
#define SPELL_CART_SUMM 52463
class go_inconspicuous_mine_car: public GameObjectScript {
public:
go_inconspicuous_mine_car() :
GameObjectScript("go_inconspicuous_mine_car") {
}
bool OnGossipHello(Player* pPlayer, GameObject* /*pGO*/) {
if (pPlayer->GetQuestStatus(12701) == QUEST_STATUS_INCOMPLETE) {
// Hack Why Trinity Dont Support Custom Summon Location
if (Creature *miner = pPlayer->SummonCreature(28841, 2383.869629f, -5900.312500f, 107.996086f, pPlayer->GetOrientation(), TEMPSUMMON_DEAD_DESPAWN, 1)) {
pPlayer->CastSpell(pPlayer, SPELL_CART_SUMM, true);
if (Creature *car = pPlayer->GetVehicleCreatureBase()) {
if (car->GetEntry() == 28817) {
car->AI()->SetGUID(miner->GetGUID());
CAST_AI(npc_scarlet_miner::npc_scarlet_minerAI, miner->AI())->InitCartQuest(
pPlayer);
} else
sLog->outError(
"TSCR: OnGossipHello vehicle entry is not correct.");
} else
sLog->outError(
"TSCR: OnGossipHello player is not on the vehicle.");
} else
sLog->outError(
"TSCR: OnGossipHello Scarlet Miner cant be found by script.");
}
return true;
}
};
// npc 28912 quest 17217 boss 29001 mob 29007 go 191092
void AddSC_the_scarlet_enclave_c1() {
new npc_unworthy_initiate();
new npc_unworthy_initiate_anchor();
new go_acherus_soul_prison();
new npc_eye_of_acherus();
new npc_death_knight_initiate();
new npc_salanar_the_horseman();
new npc_dark_rider_of_acherus();
new npc_ros_dark_rider();
new npc_dkc1_gothik();
new npc_scarlet_ghoul();
new npc_scarlet_miner();
new npc_scarlet_miner_cart();
new go_inconspicuous_mine_car();
}
| [
"sharkipaust@web.de"
] | sharkipaust@web.de |
62f487a0439c02382476b4a28f6a8bc52d72d5ee | 310d566e838c6c2fbac9864cab092be17b1ca37e | /C++/ACME/acme9/Data.h | 9b020608692463ae1a0933300d48ff66cddcc0df | [] | no_license | MrRobertStark/C-plus-plus-codes | 1c6cad9af853964400d7b3b087e4f22ae9e351d7 | 4d968184eccd54cdd67ff3c5eec552fcc442177e | refs/heads/master | 2022-12-01T10:04:55.383249 | 2020-08-24T19:34:55 | 2020-08-24T19:34:55 | 290,140,151 | 0 | 0 | null | null | null | null | ISO-8859-2 | C++ | false | false | 1,194 | h | #ifndef DATA_H
#define DATA_H
#include <iostream>
using namespace std;
class Data
{
public:
//CONSTRUCTORS
Data();
//Pre:cert
//Post: s'inicialitzen les variables amb els valors per defecte
//CONSULTORS
void mostrar_data()const;
//Pre:cert
//Post:es mostra la data desada a l'objecte actual
//MODIFICADORS
void llegir_data();
//Pre:cert
//Post:es desa la primera data correcte llegida
protected:
private:
//CONSTANTS DE CLASSE
static const int MAX_MESOS=12;
static const int DIES_MES[];
//ATRIBUTS
int a_dia;
int a_mes;
int a_any;
//METODES PRIVATS
//METODES DE CLASSE
static bool es_data_valida(int dia,int mes,int any);
//Pre:cert
//Post:es verifica que la data introduida és correcte
static bool es_numero(char nombre);
//Pre:cert
//Post:retorna cert si nombre representa un dígit entre 0 i 9 inclosos.
static int conversio_a_num(char c);
//Pre:c ha de ser un char
//Post: es retorna el nombre que representa c
};
#endif // DATA_H
| [
"69302922+MrRobertStark@users.noreply.github.com"
] | 69302922+MrRobertStark@users.noreply.github.com |
fdfc2a463cd9191bb379ebcdcd75a48a58396bfb | 347b2ac00f08c3d252cfdb69f3576fcaa4c90f3d | /search-algorithm/search.cpp | 2937e78900f38d071b59d256866fcec73400b6c1 | [] | no_license | nefisik/search | f72bae08b21a7876250fb7269e4e0c77cbf9f3a7 | e01a405867ae7ffac339f9647583045740caedfc | refs/heads/master | 2023-04-08T18:24:56.395136 | 2021-04-18T10:56:51 | 2021-04-18T10:56:51 | 359,000,970 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 448 | cpp | #include <search.hpp>
std::multimap<int, UUID> CompanySearch(const std::unordered_map<CompanyOrOwnerName, UUID>& company_or_owner_to_uuid, const std::string& word)
{
std::multimap<int, UUID> output;
for(const auto& [name, company_uuid] : company_or_owner_to_uuid)
{
auto distance = minDistance(name, word);
if(distance < name.size()*0.5)
output.insert({distance, company_uuid});
}
return output;
}
| [
"nefisik@mail.ru"
] | nefisik@mail.ru |
53ae6836646259ead3a50fb176176c4ba9a7492a | 15cec5616a1c10924ebfd7d1db2134dbcc4e5598 | /atcoder.jp/abc011/abc011_1/Main.cpp | 4d87e70a8741514ef95429cf072295aad208d944 | [] | no_license | shuto1441/atcoder_archive | 2c474a379b6b3df8783504335cc678b3e45fc0e8 | 8c3cc31ebe39746e26f8fdef4f6ac289d34f91a0 | refs/heads/main | 2023-07-11T00:03:38.661106 | 2021-08-21T11:16:28 | 2021-08-21T11:16:28 | 397,816,573 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 153 | cpp | #include <bits/stdc++.h>
using namespace std;
int main() {
int a;
cin>>a;
if(a==12)
cout<<1<<endl;
else
cout<<a+1<<endl;
}
| [
"shuto1441@gmail.com"
] | shuto1441@gmail.com |
5e461016637aac352c7d57eb091163e0ab2b5f31 | 29a4c1e436bc90deaaf7711e468154597fc379b7 | /modules/boost_math/include/nt2/toolbox/boost_math/function/simd/sse/fma4/gamma_p_derivative.hpp | a52f4ef9b5b4231f017a6df2ca8dfc7137f61912 | [
"BSL-1.0"
] | permissive | brycelelbach/nt2 | 31bdde2338ebcaa24bb76f542bd0778a620f8e7c | 73d7e8dd390fa4c8d251c6451acdae65def70e0b | refs/heads/master | 2021-01-17T12:41:35.021457 | 2011-04-03T17:37:15 | 2011-04-03T17:37:15 | 1,263,345 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 764 | hpp | //////////////////////////////////////////////////////////////////////////////
/// Copyright 2003 and onward LASMEA UMR 6602 CNRS/U.B.P Clermont-Ferrand
/// Copyright 2009 and onward LRI UMR 8623 CNRS/Univ Paris Sud XI
///
/// Distributed under the Boost Software License, Version 1.0
/// See accompanying file LICENSE.txt or copy at
/// http://www.boost.org/LICENSE_1_0.txt
//////////////////////////////////////////////////////////////////////////////
#ifndef NT2_TOOLBOX_BOOST_MATH_FUNCTION_SIMD_SSE_FMA4_GAMMA_P_DERIVATIVE_HPP_INCLUDED
#define NT2_TOOLBOX_BOOST_MATH_FUNCTION_SIMD_SSE_FMA4_GAMMA_P_DERIVATIVE_HPP_INCLUDED
#include <nt2/toolbox/boost_math/function/simd/sse/xop/gamma_p_derivative.hpp>
#endif
| [
"jtlapreste@gmail.com"
] | jtlapreste@gmail.com |
a914fb2cb1435455ce837858853dcd6a4861925b | 8347a1cf67a922d7222e14736bc51f492f68f6bb | /birch/src/expression/Nil.cpp | 8ef168e5e6b7e2a56566fd3146b286140c03b451 | [
"Apache-2.0"
] | permissive | vishalbelsare/Birch | a00a272634128178888dd2dc59bc75a9e8e73507 | f8a469905414e75500b5a2d59719c791dfc13ce1 | refs/heads/master | 2023-06-09T02:10:29.882995 | 2023-06-05T22:33:43 | 2023-06-05T22:33:43 | 146,629,156 | 0 | 0 | Apache-2.0 | 2023-06-06T04:47:37 | 2018-08-29T16:37:40 | C++ | UTF-8 | C++ | false | false | 223 | cpp | /**
* @file
*/
#include "src/expression/Nil.hpp"
#include "src/visitor/all.hpp"
birch::Nil::Nil(Location* loc) :
Expression(loc) {
//
}
void birch::Nil::accept(Visitor* visitor) const {
visitor->visit(this);
}
| [
"lawrence@indii.org"
] | lawrence@indii.org |
d35ee586e0c4e614ab3db25e81709cf10145113c | 94a61fcf44a93ba39f0dff165814b423950f0229 | /Games/Tankwars2005/code/cWeaponSel.cpp | 285a3d27470813d92135ad5271c07f9839f5bf4a | [] | no_license | jstty/OlderProjects | e9c8438dc6fe066e3d1bc2f36e937e7c72625192 | 4e64babeef2384d3882484a50e1c788784b08a05 | refs/heads/master | 2021-01-23T22:53:21.630742 | 2013-07-08T01:58:27 | 2013-07-08T01:58:27 | 10,214,450 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,288 | cpp | // cWeaponSel.cpp : implementation file
//
#include "stdafx.h"
#include "..\pop\pop.h"
#include "cWeaponSel.h"
#include "tankwars2005.h"
#include "options_data.h"
extern cTankWars2005 *tws2005;
extern cOptionsData *options_data;
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// cWeaponSel dialog
cWeaponSel::cWeaponSel(CWnd* pParent /*=NULL*/)
: CDialog(cWeaponSel::IDD, pParent)
{
//{{AFX_DATA_INIT(cWeaponSel)
// NOTE: the ClassWizard will add member initialization here
//}}AFX_DATA_INIT
}
void cWeaponSel::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(cWeaponSel)
DDX_Control(pDX, IDC_AMMO_LIST, m_list);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(cWeaponSel, CDialog)
//{{AFX_MSG_MAP(cWeaponSel)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// cWeaponSel message handlers
void cWeaponSel::OnOK()
{
list_pos = m_list.GetSelectionMark();
list_data = m_list.GetItemData(list_pos);
CDialog::OnOK();
}
void cWeaponSel::OnCancel()
{
CDialog::OnCancel();
}
BOOL cWeaponSel::OnInitDialog()
{
CDialog::OnInitDialog();
player_data = options_data->GetPlayer();
options_data->FillWeapon(&m_list);
UpdateList();
m_list.SetSelectionMark(list_pos);
list_data = m_list.GetItemData(list_pos);
return TRUE; // return TRUE unless you set the focus to a control
// EXCEPTION: OCX Property Pages should return FALSE
}
void cWeaponSel::UpdateList()
{
WeaponData *wd;
for(int i = 0; i < player_data->GetAmmoNum(); i++)
{
wd = options_data->GetWeapon(i);
m_list.SetItem(i, 0, LVIF_TEXT, wd->name, 0, 0, 0, NULL);
sprintf(stemp, "$ %0.1f mil.", wd->cost);
m_list.SetItem(i, 1, LVIF_TEXT, stemp, 0, 0, 0, NULL);
sprintf(stemp, "%0.1f", wd->damage);
m_list.SetItem(i, 2, LVIF_TEXT, stemp, 0, 0, 0, NULL);
sprintf(stemp, "%d", player_data->GetAmmo(i));
m_list.SetItem(i, 3, LVIF_TEXT, stemp, 0, 0, 0, NULL);
m_list.SetItemData(i, (DWORD)wd);
}
}
| [
"joe@jstty.com"
] | joe@jstty.com |
d241318125f9b8d086fb99ac57723ad2cdefdbd0 | 5f2d119a5c2dd2ea36f43f762ff252326197dedd | /Projects/Projects/VnTraffic/Application.h | ff590257f8c4fa5ac83e81ee5ce78f5e28aca6b5 | [] | no_license | herearemypersonalprojects/mywriting | c1e83fe76b87c3ec16f597b58ff623f8bca5e5ea | f5d2b84c28b5fd1115ea244be1002414592c3ccf | refs/heads/master | 2022-12-08T20:21:57.380492 | 2015-07-09T16:13:10 | 2015-07-09T16:13:10 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,886 | h | // Application.h: interface for the CApplication class.
//Written by Le Quoc Anh - Vien Ten Lua
//Address: 6 Hoang Sam, Cau Giay, Ha Noi
//Vinaphone: 0912643289
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_APPLICATION_H__B8199318_63CF_4B65_ABEB_0D81607D0B40__INCLUDED_)
#define AFX_APPLICATION_H__B8199318_63CF_4B65_ABEB_0D81607D0B40__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include <windows.h>
#include <commctrl.h>
#include <stdio.h>
#include <dshow.h>
#include <qedit.h>
#include <vfw.h>
#include "resource.h"
#include "SampleGrabberCB.h"
#define SafeRelease(pInterface) if(pInterface != NULL) {pInterface->Release(); pInterface=NULL;}
#define SafeDelete(pObject) if(pObject != NULL) {delete pObject; pObject=NULL;}
#define MSG(msg) MessageBox( NULL, msg, "Application Message", MB_OK )
// these read the keyboard asynchronously
#define KEY_DOWN(vk_code) ((GetAsyncKeyState(vk_code) & 0x8000) ? 1 : 0)
#define KEY_UP(vk_code) ((GetAsyncKeyState(vk_code) & 0x8000) ? 0 : 1)
#define pi 3.141592653589793
#define WM_P_GRAPHNOTIFY WM_APP + 1
class CApplication
{
public:
void Show_Result(long time_total, long car_number, long motobike_number, double car_speed, double motobike_speed);
LRESULT msg_proc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
int Run();
HRESULT Create(HINSTANCE hinstance);
CApplication();
virtual ~CApplication();
private:
void ResizeVideoWindow(void);
HRESULT FindAudioDevice(IBaseFilter **ppAudioSource);
HRESULT FindCaptureDevice(IBaseFilter ** ppSrcFilter);
void connect_camera();
void connect_file(LPTSTR filename);
int HEIGHT;
int WIDTH;
void FreeMediaType(AM_MEDIA_TYPE& mt);
HRESULT ConnectFilters(IGraphBuilder *pGraph,IPin *pOut,IBaseFilter *pDest);
HRESULT GetUnconnectedPin(IBaseFilter *pFilter,PIN_DIRECTION PinDir,IPin **ppPin);
HRESULT ConnectFilters(IGraphBuilder *pGraph, IBaseFilter *pSrc, IBaseFilter *pDest);
HRESULT get_bitmap(LPTSTR pszFileName, BITMAPINFOHEADER** ppbmih);
HRESULT init_dshow();
void kill_dshow();
void menu_proc(WPARAM wParam);
void kill_window();
HRESULT init_window();
HWND g_hwnd;
HINSTANCE g_hinstance;
LPSTR g_class_name;
LPSTR g_window_title;
LPTSTR FileName;
IGraphBuilder *pGB;
ICaptureGraphBuilder2 *pCaptureG;
IMediaControl *pMC;
IVideoWindow *pVW;
IMediaEventEx *pME;
IMediaPosition *pMP;
IBaseFilter *pGrabberF;
ISampleGrabber *pGrabber;
CSampleGrabberCB callback;
IBaseFilter *pSrc;
IBaseFilter *NullRenderFilter;
IBaseFilter *pAudioDecoder;
IBaseFilter *pAudioRender;
IBaseFilter *pStreamSplitter;
IBaseFilter *pAviDecompressor;
IBaseFilter *pVideoRender;
IMediaFilter *pMediaFilter;//want the graph the run as quickly as possible, set the reference clock to NULL
};
#endif // !defined(AFX_APPLICATION_H__B8199318_63CF_4B65_ABEB_0D81607D0B40__INCLUDED_)
| [
"ingenieur.de.logiciel@gmail.com"
] | ingenieur.de.logiciel@gmail.com |
bceb554cfbe6302f6075b6ec0a7c688df055eb36 | cb52f4c50196d30dc2f10a5494b5decb240dfc89 | /base/quanju.cpp | bc2019ed03b233db264de15c5720b229edda1203 | [] | no_license | wuxuewulinux/datamysql | d73e7c84b28e1f656bf881b425928fd79bb49d7a | 8d72581a4aaf7b02616242ce5dba71ceb20ec23f | refs/heads/master | 2020-04-09T02:20:42.182221 | 2019-02-17T16:10:03 | 2019-02-17T16:10:03 | 159,937,291 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,638 | cpp | #include "quanju.hpp"
char BUFF[200];
pthread_cond_t readcode; //读数据条件变量的变量
pthread_mutex_t readsuo; //读数据的锁
pthread_t readpthread; //读数据线程变量
pthread_cond_t writecode; //写数据条件变量的变量
pthread_mutex_t writesuo; //写数据的锁
pthread_t writepthread; //写数据线程变量
pthread_cond_t chulicode; //解析处理数据包需要的条件变量的变量
pthread_mutex_t chulisuo; //解析处理数据包需要的锁
pthread_t chulipthread; //解析处理数据包需要的线程变量
pthread_cond_t timecode; //处理定时器需要的条件变量的变量
pthread_mutex_t timesuo; //处理定时器需要的锁
pthread_t timepthread; //处理定时器需要的线程变量
std::queue<int> readduilie; //使用一个队列进行对数据读的操作,队列的数据就是 IO。队列有IO就证明该IO来数据了,要进行处理
std::queue<shuji> messageduilie; //把读到客户端发过来的数据包字节存到队列中,让另外一个线程去解析该数据包
std::queue<sendshuji> sendduilie; //把要发送给客户端的数据保存到队列中
std::queue<struct timeduilie> timequeue; //处理定时时间的结构保存到一个定时队列中,让定时器线程去处理所有定时时间
//Epoll_Ku epoll_lei; //声明一个epoll全局类
txtlog MYLOG; //声明一个记录错误日志的全局类。
timeku timelei; //声明一个时间库类,专门管理所有的定时时间变化
| [
"2284490459@qq.com"
] | 2284490459@qq.com |
4be6346714eeaa8bde8a883c6373f44ccfbe6eeb | a4940d45e77efe16c1afbf9dc456c620048e63a6 | /FacePrep/TestYourSkill/Recursion/FiboSeries.cpp | 500ea31c1f16985377e7826d516b9c8291c35a5a | [] | no_license | gshanbhag525/CP_Practice | b0ca4d5e55c4a3c25df035d56b6a42032c970206 | bb5dd97edd6872ca1aae6fafa3e399c48d22c8e1 | refs/heads/master | 2023-06-29T03:56:09.888912 | 2021-08-05T13:04:26 | 2021-08-05T13:04:26 | 268,477,179 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 870 | cpp | #include <stdio.h>
int fib(int);
int main()
{
int n, result;
scanf("%d", &n);
result = fib(n - 1);
printf("The term %d in the fibonacci series is %d\n", n, result);
return 0;
}
/* function for recursive fibonocci call */
int fib(int n)
{
if (n == 0)
{
return 0;
}
else if (n == 1)
{
return 1;
}
else
{
return (fib(n - 1) + fib(n - 2));
}
}
/* Fibonacci Series
Write a program to find the nth term in the Fibonacci series using recursion. Note that the first 2 terms in the Fibonacci Series are 0 and 1.
INPUT & OUTPUT FORMAT:
Input consists of an integer.
Refer sample input and output for formatting specifications.
All text in bold corresponds to the input and the rest corresponds to output.
SAMPLE INPUT & OUTPUT:
5
The term 5 in the fibonacci series is 3s */ | [
"17478096+gshanbhag525@users.noreply.github.com"
] | 17478096+gshanbhag525@users.noreply.github.com |
d9fd9cb639f39f48fada3a1fbf1ef28398e95e73 | 7ae17d50c04aaae6a004e4f055f1bcea4df04d3b | /code/hzlib.9.8/src/hdbIndex.cpp | 3f8db8e70d50d0cd3f1008351fb99260b7c3eff9 | [] | no_license | HadronZoo-Project/HadronZoo | 54d8f18f3e742cda8917113af9ddbbceeb6c13c5 | 64129eb74f19f619206a63a75b25d2808578a356 | refs/heads/master | 2023-04-09T04:37:37.328343 | 2021-04-20T23:08:14 | 2021-04-20T23:08:14 | 352,199,461 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 32,138 | cpp | //
// File: hdbIndex.cpp
//
// Legal Notice: This file is part of the HadronZoo C++ Class Library.
//
// Copyright 1998, 2020 HadronZoo Project (http://www.hadronzoo.com)
//
// The HadronZoo C++ Class Library is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License
// as published by the Free Software Foundation, either version 3 of the License, or any later version.
//
// The HadronZoo C++ Class Library 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 Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License along with the HadronZoo C++ Class Library. If not, see
// http://www.gnu.org/licenses.
//
//
// This file impliments the following classes which are part of the HadronZoo Database Suite
//
// 1) _hz_sqle_expr For imlimentation of searches based on SQL-esce
// 2) hdbIndexEnum Set of bitmaps, one per enum value
// 3) hdbIndexUkey
// 4) hdbIndexText
//
#include <iostream>
#include <fstream>
#include <cstdio>
#include <unistd.h>
#include <stdlib.h>
#include <fcntl.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include "hzBasedefs.h"
#include "hzString.h"
#include "hzChars.h"
#include "hzChain.h"
#include "hzDate.h"
#include "hzTextproc.h"
#include "hzTokens.h"
#include "hzCodec.h"
#include "hzDocument.h"
#include "hzDirectory.h"
#include "hzDatabase.h"
#include "hzProcess.h"
using namespace std ;
/*
** SECTION 1: SQL-esce
**
** SQL-esce is implimented using four classes as follows:-
**
** 1) _hz_sqle_term - This is the base class for a SQL-esce term allowing a term to be of two types as follows:-
**
** a) _hz_sqle_unit - This is the SQL-esce term of the form member-condOp-value together with the hdbIdset needed to stored the evaluation result.
** b) _hz_sqle_form - (formula) This comprises a boolean operator and a pair of _hz_sqle_unit or _hz_sqle_form operands - i.e. the remainder of the expression.
**
** 2) _hz_sql_expr - The root of the expression.
*/
enum hzVconOp
{
// Category: Expression
//
// Binary ID-set operators
BIN_OP_SET_NULL, // No operation
BIN_OP_SET_ASSIGN, // =
BIN_OP_SET_EQUAL, // ==
BIN_OP_SET_PLUS, // +
BIN_OP_SET_MINUS, // -
BIN_OP_SET_AND, // &&
BIN_OP_SET_OR // ||
} ;
class _hz_sqle_term
{
// Category: Expression
//
// Base class for SQL-esce terms (see synopsis 'SQL-esce')
public:
virtual hzEcode SetUop (bool bNot) = 0 ;
virtual hzEcode Evaluate (hdbIdset& Result, hdbIndexText* pIndex) = 0 ;
} ;
class _hz_sqle_unit : public _hz_sqle_term
{
// Category: Expression
//
// A single SQL-esce term (see synopsis 'SQL-esce')
protected:
hzString m_Key ; // Word or value with which set is associated
bool m_bNot ; // Apply the ! unary operator when evaluating
public:
_hz_sqle_unit (void)
{
m_bNot = false ;
}
~_hz_sqle_unit (void)
{
}
// Set the key
void SetValue (const hzString& s) { m_Key = s ; }
void SetValue (const char* s) { m_Key = s ; }
// Get the key
hzString& Key (void) { return m_Key ; }
// Set unary op (if any)
hzEcode SetUop (bool bNot) { m_bNot = bNot ; return E_OK ; }
// Evaluate (search for key on index)
hzEcode Evaluate (hdbIdset& Result, hdbIndexText* pIndex) ;
//void Show (hzLogger& xlog) ;
} ;
/*
** The hzIdsetExp class provides the method of parenthesis
*/
class _hz_sqle_form : public _hz_sqle_term
{
// Category: Expression
//
// A single SQL-esce expression of the form term-boolean_op-remainder_of_expression (see synopsis 'SQL-esce')
protected:
_hz_sqle_term* m_pA ; // First term in SQL-esce expression
_hz_sqle_term* m_pB ; // Second term in SQL-esce expression
hzVconOp m_eBinary ; // Binary operator to apply to the two terms
bool m_bNot ; // Flag to direct negation of the result
public:
_hz_sqle_form (void)
{
m_pA = 0 ;
m_pB = 0 ;
m_eBinary = BIN_OP_SET_NULL ;
m_bNot = false ;
}
~_hz_sqle_form (void)
{
}
hzEcode SetUop (bool bNot) { m_bNot = bNot ; return E_OK ; }
hzEcode AddOperand (_hz_sqle_term* pOperand)
{
// Add operand to the SQL term
if (!m_pA)
{ m_pA = pOperand ; return E_OK ; }
if (!m_pB)
{ m_pB = pOperand ; return E_OK ; }
return E_DUPLICATE ;
}
hzEcode SetBop (hzVconOp eOperator)
{
// Set SQL term-pair operator
m_eBinary = eOperator ;
return E_OK ;
}
hzEcode Evaluate (hdbIdset& Result, hdbIndexText* pIndex) ;
} ;
class _hz_sqle_expr
{
// Category: Expression
//
// This is the class which holds and parses the expression part of the SQL-esce statement (see synopsis 'SQL-esce')
protected:
hzVect<hzToken> m_Tokens ; // Tokens of the SQL-esce expression
_hz_sqle_term* m_pRoot ; // Root term of the SQL-esce expression
uint32_t m_tokIter ; // Token iterator
uint32_t m_nParLevel ; // Current tree level
_hz_sqle_term* _proctoks (void) ;
public:
hdbIndexText* m_pIndex ; // Freetext index
_hz_sqle_expr (void)
{
m_pRoot = 0 ;
m_tokIter = 0 ;
m_nParLevel = 0 ;
}
~_hz_sqle_expr (void) {}
hzEcode Evaluate (hdbIdset& result) ;
hzEcode Parse (hdbIdset& result, const hzString& pExpression) ;
} ;
/*
** _hz_sqle_unit Functions
*/
hzEcode _hz_sqle_unit::Evaluate (hdbIdset& Result, hdbIndexText* pIndex)
{
// Evaluate (search for) this single SQL-Esce term within the supplied index and place the result in the supplied bitmap.
//
// Arguments: 1) Result The bitmap (of document ids) to be populated by the search operation.
// 2) pIndex The index to search for this term in.
//
// Returns: E_NODATA No search term available
// E_ARGUMENT No index pointer supplied
// E_CORRUPT An error occurred during searching
// E_OK The operation was successfule (even if nothing was found)
_hzfunc("_hz_sqle_unit::Evaluate\n`") ;
hzEcode rc = E_OK ; // Return code
if (!m_Key.Length())
return hzerr(_fn, HZ_ERROR, E_NODATA, "Empty _cant") ;
if (!pIndex)
hzexit(_fn, 0, E_ARGUMENT, "No index supplied") ;
rc = pIndex->Select(Result, m_Key) ;
if (rc != E_OK)
return hzerr(_fn, HZ_ERROR, E_CORRUPT, "Evaluating _cant [%s] failed in select\n", *m_Key) ;
threadLog("%s: eval of %s - finds %d records\n", *_fn, *m_Key, Result.Count()) ;
return rc ;
}
hzEcode _hz_sqle_form::Evaluate (hdbIdset& Result, hdbIndexText* pIndex)
{
// Evaluate (search for) this composite SQL-Esce term within the supplied index and place the result in the supplied bitmap.
//
// Arguments: 1) The bitmap (of document ids) to be populated by the search operation.
// 2) The index to search for this term in.
//
// Returns: E_NODATA No search term available
// E_ARGUMENT No index pointer supplied
// E_CORRUPT An error occurred during searching
// E_OK The operation was successfule (even if nothing was found)
_hzfunc("_hz_sqle_form::Evaluate") ;
hdbIdset B ; // Working intermeadiate bitmap
hzEcode rc ; // Return code
Result.Clear() ;
if (!pIndex)
hzexit(_fn, 0, E_CORRUPT, "No index supplied") ;
threadLog("Applying formula\n") ;
switch (m_eBinary)
{
case BIN_OP_SET_AND:
threadLog("Applying formula (AND) - ") ;
rc = m_pA->Evaluate(Result, pIndex) ;
if (rc != E_OK)
return hzerr(_fn, HZ_ERROR, rc, "Case 1 (AND) Corruption in index") ;
if (Result.Count() > 0)
{
threadLog("%d recs with ", Result.Count()) ;
rc = m_pB->Evaluate(B, pIndex) ;
if (rc != E_OK)
return hzerr(_fn, HZ_ERROR, rc, "Case 2 (AND) Corruption in index") ;
threadLog("%d recs ", B.Count()) ;
Result &= B ;
threadLog(" -> %d records total\n", Result.Count()) ;
}
break ;
case BIN_OP_SET_OR:
threadLog("Applying formula (OR) - ") ;
rc = m_pA->Evaluate(Result, pIndex) ;
if (rc != E_OK)
return hzerr(_fn, HZ_ERROR, rc, "Case 1 (OR) eveluation failed") ;
threadLog("%d recs with ", Result.Count()) ;
m_pB->Evaluate(B, pIndex) ;
if (rc != E_OK)
return hzerr(_fn, HZ_ERROR, rc, "Case 2 (OR) evaluation failed") ;
threadLog("%d recs ", B.Count()) ;
Result |= B ;
threadLog(" -> %d records total\n", Result.Count()) ;
break ;
}
threadLog("Found %d records in %d segments for formula\n", Result.Count(), Result.NoSegs()) ;
return E_OK ;
}
/*
** _hz_sqle_expr Functions
*/
hzEcode _hz_sqle_expr::Evaluate (hdbIdset& result)
{
// Evaluate this SQL-Esce expression within the supplied index and place the result in the supplied bitmap.
//
// Arguments: 1) The bitmap (of document ids) to be populated by the search operation.
//
// Returns: E_NODATA No search term available
// E_ARGUMENT No index pointer supplied
// E_CORRUPT An error occurred during searching
// E_OK The operation was successfule (even if nothing was found)
_hzfunc("_hz_sqle_expr::Evaluate") ;
// Result.Clear() ;
if (!m_pIndex)
hzexit(_fn, 0, E_CORRUPT, "No index supplied") ;
if (!m_pRoot)
{
threadLog("%s - no root!\n", *_fn) ;
return E_OK ;
}
threadLog("%s calling Eval\n", *_fn) ;
return m_pRoot->Evaluate(result, m_pIndex) ;
}
_hz_sqle_term* _hz_sqle_expr::_proctoks (void)
{
// Recursively convert text tokens into tree of _hz_sqle_term instances. This is a support function to Parse()
//
// Arguments: None
//
// Returns: Pointer to a valid SQL term if tokens remain in the expression
// NULL Otherwise
_hzfunc("_hz_sqle_expr::_proctoks") ;
_hz_sqle_form* pFormula = 0 ; // Pointer to rest of expression
_hz_sqle_unit* pConstant = 0 ; // Pointer to a constant (if applicaple)
_hz_sqle_term* pOperand1 = 0 ; // Pointer to 1st operand
_hz_sqle_term* pOperand2 = 0 ; // Pointer to 2nd operand
hzString tval ; // Temp string - token value
hzVconOp eOp = BIN_OP_SET_NULL ; // Applicable binary operator
//bool bNot = false ; // Negator
threadLog("%s - Now on level %d\n", *_fn, m_nParLevel) ;
if (m_tokIter >= m_Tokens.Count())
{
threadLog("%s - No more tokens - returning null\n", *_fn) ;
return 0 ;
}
tval = m_Tokens[m_tokIter].Value() ;
threadLog("%s - token is %s\n", *_fn, *tval) ;
/*
** Occupy first operand
*/
// Unary operators are permitted while expecting operand
if (tval == "!")
{
threadLog("%s - Setting unary for first operand\n", *_fn) ;
//bNot = true ;
m_tokIter++ ;
if (m_tokIter >= m_Tokens.Count())
{
hzerr(_fn, HZ_ERROR, E_SYNTAX, "Expected an operand or '(' to follow unary") ;
return 0 ;
}
tval = m_Tokens[m_tokIter].Value() ;
}
// Binary operators are not permitted here though
if (tval == "&&" || tval == "||")
{
hzerr(_fn, HZ_ERROR, E_SYNTAX, "Expected an operand or '('. Got an operator") ;
return 0 ;
}
if (tval == "(")
{
// The operand can be a formula, recurse if it is
m_nParLevel++ ;
m_tokIter++ ;
pOperand1 = _proctoks() ;
tval = m_Tokens[m_tokIter].Value() ;
}
else
{
// Token is not a unary or an open bracket. We assume token is a const
threadLog("%s. making a const of %s\n", *_fn, *tval) ;
pConstant = new _hz_sqle_unit() ;
pConstant->SetValue(tval) ;
pOperand1 = pConstant ;
m_tokIter++ ;
tval = m_Tokens[m_tokIter].Value() ;
}
/*
** Obtain the operator
*/
if (m_tokIter < m_Tokens.Count())
{
// we now expect an binary operator or a terminating )
if (tval == ")")
{
//tm.Advance() ;
m_tokIter++ ;
return pOperand1 ;
}
// Test for operator
if (tval == "&&" || tval == "&")
{
eOp = BIN_OP_SET_AND ;
m_tokIter++ ;
tval = m_Tokens[m_tokIter].Value() ;
}
else if (tval == "||" || tval == "|")
{
eOp = BIN_OP_SET_OR ;
m_tokIter++ ;
tval = m_Tokens[m_tokIter].Value() ;
}
else if (tval == "(")
{
hzerr(_fn, HZ_ERROR, E_SYNTAX, "Line %d: Expected an operator", m_Tokens[m_tokIter].LineNo()) ;
return 0 ;
}
else
{
// Token is not an operator and not an open or a close.
// We assume it is another _cant and thus there is
// an implied AND operator.
threadLog("%s - asserting operator as AND\n", *_fn) ;
eOp = BIN_OP_SET_AND ;
}
}
/*
** Recurse to get second operand
*/
if (tval)
{
m_nParLevel++ ;
pOperand2 = _proctoks() ;
m_nParLevel-- ;
}
/*
** Decide if we return a const or a formula
*/
if (!pOperand1)
{
threadLog("%s - returning null (no first operand)\n", *_fn) ;
return 0 ;
}
if (eOp == BIN_OP_SET_NULL)
{
threadLog("%s - returning single operand\n", *_fn) ;
return pOperand1 ;
}
if (!pOperand2)
{
// report syntax error
threadLog("%s - returning null (no second operand)\n", *_fn) ;
return 0 ;
}
// Allocate a formula node
threadLog("%s - returning double operand\n", *_fn) ;
pFormula = new _hz_sqle_form() ;
pFormula->AddOperand(pOperand1) ;
pFormula->AddOperand(pOperand2) ;
pFormula->SetBop(eOp) ;
return pFormula ;
}
hzEcode _hz_sqle_expr::Parse (hdbIdset& result, const hzString& srchExp)
{
// Parse the supplied expression. This is first a matter of tokenization, then a call to the root of the expression by the recursive _proctoks()
// (process tokens) function. After parsing the expression is ready for evaluation.
//
// Arguments: 1) result The result bitmap
// 2) srchExp The search expression
//
// Returns: E_ARGUMENT If no expression was supplied
// E_FORMAT If no tokens were identified in the supplied expression
// E_OK If no errors occured
_hzfunc("_hz_sqle_expr::Parse") ;
// tokenize the expression
if (!srchExp)
return E_ARGUMENT ;
TokenizeString(m_Tokens, *srchExp, TOK_MO_BOOL) ;
if (m_Tokens.Count() == 0)
{
threadLog("%s: - no tokens found in expression\n", *_fn) ;
return E_FORMAT ;
}
threadLog("%s: - parsing %d tokens\n", *_fn, m_Tokens.Count()) ;
m_pRoot = _proctoks() ;
if (!m_pRoot)
return E_FORMAT ;
//return Evaluate(result) ;
return m_pRoot ? E_OK : E_FORMAT ;
}
/*
** SECTION 2: hdbIndexEnum Functions
*/
void hdbIndexEnum::Halt (void)
{
// Close down the enumerated index. De-allocate the bitmaps and clear the bitmap array.
//
// Arguments: None
// Returns: None
hdbIdset* pS ; // Allocated bitmap
uint32_t n ; // Allowed value iterator
for (n = 0 ; n < m_Maps.Count() ; n++)
{
pS = m_Maps.GetObj(n) ;
delete pS ;
}
m_Maps.Clear() ;
}
hzEcode hdbIndexEnum::Insert (uint32_t objId, const hzAtom& Key)
{
// Purpose: Add an object/key combination
//
// Arguments: 1) objId The object id (row number)
// 2) Key The key
//
// Returns: E_RANGE If the supplied value is beyond the supported range of enum values.
// E_OK If the operation was successful.
_hzfunc("hdbIndexEnum::Insert") ;
hdbIdset* pS ; // Applicable bitmap to insert object id
uint32_t val ; // Enum value from supplied atom
hzEcode rc = E_OK ; // Return code
val = (uint32_t) Key ;
if (val <= 0 || val > m_Maps.Count())
return E_RANGE ;
pS = m_Maps[val] ;
if ((rc = pS->Insert(objId)) != E_OK)
return hzerr(_fn, HZ_ERROR, rc, "(case key exists) Bitmap could not insert object") ;
return rc ;
}
hzEcode hdbIndexEnum::Delete (uint32_t objId, const hzAtom& Key)
{
// Purpose: Delete an object/key combination
//
// Arguments: 1) objId The object id (row number)
// 2) Key The key
//
// Returns: E_RANGE If the supplied value is beyond the supported range of enum values.
// E_OK If the operation was successful.
hdbIdset* pS ; // Applicable bitmap to delete object id from
uint32_t val ; // Enum value from supplied atom
hzEcode rc = E_OK ; // Return code
val = (uint32_t) Key ;
if (val <= 0 || val > m_Maps.Count())
return E_RANGE ;
pS = m_Maps[val] ;
pS->Delete(objId) ;
// if (!pS->Count())
// m_Maps.Delete(K) ;
return rc ;
}
hzEcode hdbIndexEnum::Select (hdbIdset& Result, const hzAtom& Key)
{
// Purpose: Select into a set, all identifiers matching the key
//
// Arguments: 1) The object id (row number)
// 2) The key
//
// Returns: E_RANGE If the key was not located
// E_OK If the operation was successful.
_hzfunc("hdbIndexEnum::Select") ;
hdbIdset* pS ; // Applicable bitmap for value
uint32_t val ; // Enum value from supplied atom
hzEcode rc = E_OK ; // Return code
Result.Clear() ;
val = (uint32_t) Key ;
// Querry this?
if (val <= 0 || val > m_Maps.Count())
return E_RANGE ;
pS = m_Maps[val] ;
if (!pS)
return hzerr(_fn, HZ_ERROR, E_CORRUPT, "Bitmap stated as existing could not be retrieved from the map") ;
Result = *pS ;
if (Result.Count() != pS->Count())
return hzerr(_fn, HZ_ERROR, E_CORRUPT, "Index bound bitmap has %d records, copy has %d records", pS->Count(), Result.Count()) ;
return rc ;
}
hzEcode hdbIndexEnum::Dump (const hzString& Filename, bool bFull)
{
// Output list of keys and thier segment numbers together with the segment contents (Ids relative to the segment start)
//
// Arguments: 1) Full path of file to dump to
// 2) Do a full dump (true) or just segments (false)
//
// Returns: E_ARGUMENT If the filename is not supplied
// E_OPENFAIL If the supplied filename cannot be opened
// E_WRITEFAIL If there was a write error
// E_OK If the index was dumped to file
_hzfunc("hdbIndexEnum::Dump") ;
hzVect<uint32_t> Results ; // Results of fetch
ofstream os ; // Output stream
hzChain Z ; // Used to build list of ids
hdbIdset proc ; // Processing bitmap
hdbIdset* pI ; // The Id set assoc with key
uint32_t ev ; // Enum value
uint32_t nRecs ; // Total number of records fetched
uint32_t nFetched = 0 ; // Number of record fetched in call to Fetch()
uint32_t nStart ; // Starter for Fetch
char cvLine [120] ; // For output
if (!Filename)
return hzerr(_fn, HZ_ERROR, E_ARGUMENT, "No filename supplied") ;
os.open(*Filename) ;
if (os.fail())
return hzerr(_fn, HZ_ERROR, E_OPENFAIL, "Could not open index dump file (%s)", *Filename) ;
os << "Index Dump\n" ;
for (ev = 0 ; ev < m_Maps.Count() ; ev++)
{
pI = m_Maps.GetObj(ev) ;
if (!pI)
{
sprintf(cvLine, "Enum-Val %d (null list)\n", ev) ;
os << cvLine ;
continue ;
}
nRecs = pI->Count() ;
if (!nRecs)
{
sprintf(cvLine, "Enum-Val %d (empty list)\n", ev) ;
os << cvLine ;
continue ;
}
sprintf(cvLine, "Enum-Val %d (%d objects)\n", ev, nRecs) ;
os << cvLine ;
if (!bFull)
continue ;
// Extract ids from the binaries
proc = *pI ;
for (nStart = 0 ; nStart < nRecs ; nStart += 10)
{
// for (nIndex = 0 ; nIndex < 10 ; nIndex++)
// Results[nIndex] = -1 ;
nFetched = proc.Fetch(Results, nStart, 10) ;
if (!nFetched)
break ;
sprintf(cvLine, " %10d %10d %10d %10d %10d %10d %10d %10d %10d %10d\n",
Results[0], Results[1], Results[2], Results[3], Results[4],
Results[5], Results[6], Results[7], Results[8], Results[9]) ;
os << cvLine ;
}
if (os.fail())
{
os.close() ;
return hzerr(_fn, HZ_ERROR, E_WRITEFAIL, "Could not write to index dump file (%s)", *Filename) ;
}
}
os << "Index Dump End\n" ;
os.close() ;
return E_OK ;
}
/*
** SECTION 3: hdbIndexUkey Functions
*/
hzEcode hdbIndexUkey::Init (const hdbObjRepos* pRepos, const hzString& mbrName, hdbBasetype dtype)
{
// Initialize the hdbIndexUkey (unique key index) to a datatype. The underlying hzMapS will be of keys to object ids but the keys may be either 4
// or 8 bytes in size, depending on the datatype.
//
// Arguments: 1) dtype The data type of the member to which the index applies
//
// Returns: E_TYPE If the supplied HadronZoo data type is undefned or cannot be applied to a hdbIndexUkey
// E_OK If the operation was successful
_hzfunc("hdbIndexUkey::Init") ;
hzEcode rc = E_OK ; // Return code
if (m_bInit)
return hzerr(_fn, HZ_ERROR, E_SEQUENCE, "%s already initialized", *m_Name) ;
if (!pRepos)
hzexit(_fn, 0, E_ARGUMENT, "No repository supplied") ;
//m_pRepos = pRepos ;
m_Name = pRepos->Name() ;
m_Name += "::" ;
m_Name += mbrName ;
switch (dtype)
{
case BASETYPE_DOMAIN:
case BASETYPE_EMADDR:
case BASETYPE_STRING:
case BASETYPE_URL: // m_keys.pSt = new hzMapS<hzString,uint32_t> ;
// m_keys.pSt->SetDefaultObj(0) ;
m_keys.pSu = new hzMapS<uint32_t,uint32_t> ;
//m_keys.pSu->SetDefaultObj(0) ;
break ;
case BASETYPE_IPADDR:
case BASETYPE_TIME:
case BASETYPE_SDATE:
case BASETYPE_INT32:
case BASETYPE_UINT32: m_keys.pSu = new hzMapS<uint32_t,uint32_t> ;
//m_keys.pSu->SetDefaultObj(0) ;
break ;
case BASETYPE_DOUBLE:
//case BASETYPE_UUID:
case BASETYPE_XDATE:
case BASETYPE_INT64:
case BASETYPE_UINT64: m_keys.pLu = new hzMapS<uint64_t,uint32_t> ;
//m_keys.pLu->SetDefaultObj(0) ;
break ;
default:
rc = E_TYPE ;
break ;
}
m_eBasetype = dtype ;
m_bInit = true ;
return rc ;
}
void hdbIndexUkey::Halt (void)
{
// Save index to disk and close files
//
// Arguments: None
// Returns: None
// STUB
}
hzEcode hdbIndexUkey::Insert (const hzAtom& A, uint32_t objId)
{
// Insert an atomic-value/object-id pair into the unique key index.
//
// Arguments: 1) A The atomic value
// 2) objId The object identifier
//
// Returns: E_TYPE If the atomic value is not of the expected data type
// E_NODATA If the atomic value is not set (see note)
// E_OK If the operation was successful
//
// Note that as hdbIndexUkey can only be applied to data members with a minimun and maximum population of 1, the member cannot be NULL and therefore a NULL
// value to insert is an error.
_hzfunc("hdbIndexUkey::Insert") ;
uint64_t lval ; // 8 byte value
uint32_t sval ; // 4 byte value
hzEcode rc = E_OK ; // Return code
if (!m_bInit)
hzerr(_fn, HZ_ERROR, E_NOINIT) ;
if (A.IsNull())
return E_NODATA ;
if (A.Type() != m_eBasetype)
return hzerr(_fn, HZ_ERROR, E_TYPE, "Index type %s - supplied value type %s", Basetype2Txt(m_eBasetype), Basetype2Txt(A.Type())) ;
switch (m_eBasetype)
{
case BASETYPE_DOMAIN: sval = _hzGlobal_FST_Domain->Locate(*A.Str()) ;
rc = m_keys.pSu->Insert(sval, objId) ;
break ;
case BASETYPE_EMADDR: sval = _hzGlobal_FST_Emaddr->Locate(*A.Str()) ;
rc = m_keys.pSu->Insert(sval, objId) ;
break ;
case BASETYPE_STRING:
case BASETYPE_URL: sval = _hzGlobal_StringTable->Locate(*A.Str()) ;
rc = m_keys.pSu->Insert(sval, objId) ;
break ;
case BASETYPE_DOUBLE:
case BASETYPE_XDATE:
case BASETYPE_INT64:
case BASETYPE_UINT64: lval = A.Unt64() ;
rc = m_keys.pLu->Insert(lval, objId) ;
break ;
case BASETYPE_IPADDR:
case BASETYPE_TIME:
case BASETYPE_SDATE:
case BASETYPE_INT32:
case BASETYPE_UINT32: sval = A.Unt32() ;
rc = m_keys.pSu->Insert(sval, objId) ;
break ;
}
return rc ;
}
hzEcode hdbIndexUkey::Delete (const hzAtom& key)
{
// Remove the key/object pair named by the supplied key, from the index
//
// Arguments: 1) atom Reference to atom with the lookup value.
//
// Returns: E_NODATA If the supplied atom has no value
// E_TYPE If the atom data type does not match that of the member to which this index applies
// E_NOTFOUND If the value of the atom does not identify an object
// E_OK If the value of the atom does identify an object
_hzfunc("hdbIndexUkey::Delete") ;
uint64_t lval ; // 8 byte value
uint32_t sval ; // 4 byte value
hzEcode rc = E_OK ; // Return code
if (!m_bInit)
hzerr(_fn, HZ_ERROR, E_NOINIT) ;
if (key.IsNull())
return E_NODATA ;
if (key.Type() != m_eBasetype)
return hzerr(_fn, HZ_ERROR, E_TYPE, "Index type %s - supplied value type %s", Basetype2Txt(m_eBasetype), Basetype2Txt(key.Type())) ;
// Do lookup based on type
switch (m_eBasetype)
{
case BASETYPE_DOMAIN: sval = _hzGlobal_FST_Domain->Locate(*key.Str()) ;
rc = m_keys.pSu->Delete(sval) ;
break ;
case BASETYPE_EMADDR: sval = _hzGlobal_FST_Emaddr->Locate(*key.Str()) ;
rc = m_keys.pSu->Delete(sval) ;
break ;
case BASETYPE_STRING:
case BASETYPE_URL: sval = _hzGlobal_StringTable->Locate(*key.Str()) ;
rc = m_keys.pSu->Delete(sval) ;
break ;
case BASETYPE_DOUBLE:
case BASETYPE_XDATE:
case BASETYPE_INT64:
case BASETYPE_UINT64: memcpy(&lval, key.Binary(), 8) ;
rc = m_keys.pLu->Delete(lval) ;
break ;
case BASETYPE_IPADDR:
case BASETYPE_TIME:
case BASETYPE_SDATE:
case BASETYPE_INT32:
case BASETYPE_UINT32: memcpy(&sval, key.Binary(), 4) ;
rc = m_keys.pSu->Delete(sval) ;
break ;
} ;
return rc ;
}
hzEcode hdbIndexUkey::Select (uint32_t& Result, const hzAtom& key)
{
// Find the single object matching the supplied key - if it exists.
//
// Arguments: 1) objId Reference to object id, set by this function
// 2) pAtom Pointer to atom with the lookup value
//
// Returns: E_NOINIT If the index is not initialized
// E_NODATA If no key is supplied
// E_TYPE If the atom data type does not match that of the member to which this index applies
// E_OK If no errors occured
_hzfunc("hdbIndexUkey::Select") ;
hzString S ; // Temp string
uint64_t lval ; // 8 byte value
uint32_t sval ; // 4 byte value
hzEcode rc = E_OK ; // Return code
Result = 0 ;
if (!m_bInit)
return hzerr(_fn, HZ_ERROR, E_NOINIT) ;
if (key.IsNull())
return hzerr(_fn, HZ_ERROR, E_NODATA, "No key supplied") ;
if (key.Type() != m_eBasetype)
return hzerr(_fn, HZ_ERROR, E_TYPE, "Index type %s - supplied value type %s", Basetype2Txt(m_eBasetype), Basetype2Txt(key.Type())) ;
switch (m_eBasetype)
{
case BASETYPE_DOMAIN: S = key.Str() ;
sval = _hzGlobal_FST_Domain->Locate(*S) ;
if (sval)
{
if (m_keys.pSu->Exists(sval))
Result = m_keys.pSu->operator[](sval) ;
}
break ;
case BASETYPE_EMADDR: S = key.Str() ;
sval = _hzGlobal_FST_Emaddr->Locate(*S) ;
if (sval)
{
if (m_keys.pSu->Exists(sval))
Result = m_keys.pSu->operator[](sval) ;
}
break ;
case BASETYPE_STRING:
case BASETYPE_URL: S = key.Str() ;
sval = _hzGlobal_StringTable->Locate(*S) ;
if (sval)
{
if (m_keys.pSu->Exists(sval))
Result = m_keys.pSu->operator[](sval) ;
}
break ;
case BASETYPE_DOUBLE:
case BASETYPE_XDATE:
case BASETYPE_INT64:
case BASETYPE_UINT64: if (key.Type() != m_eBasetype)
{ rc = E_TYPE ; break ; }
memcpy(&lval, key.Binary(), 8) ;
if (m_keys.pLu->Exists(lval))
Result = m_keys.pLu->operator[](lval) ;
break ;
case BASETYPE_IPADDR:
case BASETYPE_TIME:
case BASETYPE_SDATE:
case BASETYPE_INT32:
case BASETYPE_UINT32: if (key.Type() != m_eBasetype)
{ rc = E_TYPE ; break ; }
sval = key.Unt32() ;
if (m_keys.pSu->Exists(sval))
Result = m_keys.pSu->operator[](sval) ;
break ;
} ;
return rc ;
}
/*
** SECTION 4: hdbIndexText Functions
*/
hzEcode hdbIndexText::Init (const hzString& name, const hzString& opdir, const hzString& backup, uint32_t cacheMode)
{
// Initialize the free text index with a name, an operational directory and an optional backup directory. These parameters initialize the
// underlying hzIsam.
//
_hzfunc("hdbIndexText::Init") ;
hzEcode rc = E_OK ; // Return code
//rc = m_Isam.Init(name, opdir, backup, cacheMode) ;
if (rc != E_OK)
return hzerr(_fn, HZ_ERROR, rc, "Failed on account of ISAM init") ;
return rc ;
}
hzEcode hdbIndexText::Halt (void)
{
// Halt the operation of the free text index. This will halt the underlying hzIsam.
//m_Isam.Halt() ;
return E_OK ;
}
hzEcode hdbIndexText::Insert (const hzString& word, uint32_t docId)
{
// Locate or insert the word and its associated bitmap, assign object id in the bitmap.
_hzfunc("hdbIndexText::Insert(int)") ;
hdbIdset bm ; // The bitmap associated with the word
hzString lcword ; // The word but all in lower case
hzEcode rc = E_OK ; // Error code
lcword = word ;
lcword.ToLower() ;
if (m_Keys.Exists(lcword))
m_Keys[lcword].Insert(docId) ;
else
{
bm.Insert(docId) ;
rc = m_Keys.Insert(lcword, bm) ;
if (rc != E_OK)
hzerr(_fn, HZ_ERROR, rc, "Failed to insert doc_id of %d into bitmap. Error=%s\n", docId, Err2Txt(rc)) ;
}
return rc ;
}
#if 0
hzEcode hdbIndexText::Insert (const hzString& word, const hzSet<uint32_t>& idset)
hzEcode hdbIndexText::InsSeg (const hzString& word, const hzBitseg& seg, uint32_t segNo)
#endif
hzEcode hdbIndexText::Delete (const hzString& word, uint32_t docId)
{
// Locate the bitmap for the word and delete the object id from it.
hdbIdset bm ; // The bitmap associated with the word
hzString lcword ; // The word but all in lower case
lcword = word ;
lcword.ToLower() ;
if (m_Keys.Exists(lcword))
{
bm = m_Keys[lcword] ;
bm.Delete(docId) ;
return E_OK ;
}
return E_NOTFOUND ;
}
#if 0
hzEcode hdbIndexText::Delete (const hzString& word, const hzSet<uint32_t>& idset)
hzEcode hdbIndexText::DelSeg (const hzString& word, uint32_t segNo)
#endif
hzEcode hdbIndexText::Clear (void)
{
// Clear all contents of the free text index by clearing the ISAM and the map of keys
//m_Isam.Clear() ;
m_Keys.Clear() ;
return E_OK ;
}
hzEcode hdbIndexText::Select (hdbIdset& Result, const hzString& word)
{
// Locate the bitmap for the word and assign it to the result
hzString lcword ; // The word but all in lower case
lcword = word ;
lcword.ToLower() ;
Result.Clear() ;
if (m_Keys.Exists(lcword))
Result = m_Keys[lcword] ;
return E_OK ;
}
hzEcode hdbIndexText::Eval (hdbIdset& result, const hzString& criteria)
{
// Perform a search on the freetext index and place the resulting set of document ids into the supplied bitmap (arg 1). The supplied criteria
// (arg 2) must comprise at least one whole word and may comprise a boolean expression.
_hz_sqle_expr exp ; // Working SQL expression
hzEcode rc ; // Return code
rc = exp.Parse(result, criteria) ;
if (rc != E_OK)
return rc ;
exp.m_pIndex = this ;
return exp.Evaluate(result) ;
}
hzEcode hdbIndexText::Export (const hzString& filepath, bool bFull)
{
// Output list of words and their associated bitmaps to the supplied filepath. The output is human radable for diagnostic purposes
//
// Arguments: 1) Full path of file to dump to
// 2) Do a full dump (true) or just segments (false)
//
// Returns: E_ARGUMENT If the filename is not supplied
// E_OPENFAIL If the supplied filename cannot be opened
// E_WRITEFAIL If there was a write error
// E_OK If the index was dumped to file
_hzfunc("hdbIndexText::Export") ;
hzVect<uint32_t> res ; // Results of bitmap Fetch
ofstream os ; // Output file
hzChain Z ; // For constructing bitmap export
hdbIdset bm ; // Current word bitmap
hdbIdset S ; // Current segment
hzString word ; // Current word
uint32_t nIndex ; // Word/bitmap iterator
uint32_t nStart ; // Starting position for bitmap Fetch
uint32_t nFetched ; // Number of ids fetched
uint32_t nPosn ; // Fetch result iterator
uint32_t nSegs = 0 ; // Segment counter
uint32_t nInst = 0 ; // Incidence counter
if (!filepath)
return hzerr(_fn, HZ_ERROR, E_ARGUMENT, "No pathname for Index Export") ;
os.open(filepath) ;
if (os.fail())
return hzerr(_fn, HZ_ERROR, E_OPENFAIL, "Cannot open %s", *filepath) ;
threadLog("Index has:-\n") ;
for (nIndex = 0 ; nIndex < m_Keys.Count() ; nIndex++)
{
word = m_Keys.GetKey(nIndex) ;
bm = m_Keys.GetObj(nIndex) ;
nSegs += bm.NoSegs() ;
nInst += bm.Count() ;
Z.Printf("%u %s: s=%u c=%u\n", nIndex, *word, bm.NoSegs(), bm.Count()) ;
if (bFull)
{
for (nStart = 0 ; nStart < bm.Count() ; nStart += 20)
{
nFetched = bm.Fetch(res, nPosn, 20) ;
for (nPosn = 0 ; nPosn < nFetched ; nPosn++)
Z.Printf("\t%u", res[nPosn]) ;
}
}
os << Z ;
Z.Clear() ;
if (os.fail())
{
os.close() ;
return hzerr(_fn, HZ_ERROR, E_WRITEFAIL, "Write fail to %s", *filepath) ;
}
}
Z.Printf("\tWords (maps): %d\n", m_Keys.Count()) ;
Z.Printf("\tSegments: %d\n", nSegs) ;
Z.Printf("\tInstances: %d\n", nInst) ;
os << Z ;
os.close() ;
Z.Clear() ;
return E_OK ;
}
| [
"russell.ballard@hadronzoo.com"
] | russell.ballard@hadronzoo.com |
5bf7172836426e4e22d8e5505eb3a12d0d30c398 | ee970e38542f12ce7effa6de50a2fce690bf4085 | /SPointBrush.cpp | c4d55f814354c8d6b086d28e08b9387003b85718 | [] | no_license | COMP4411-Team/Impressionist | 0906a5de0c84d6f25e876450df7e018898f6fc69 | 3d35a6778e5663ae70478814225b64ce0427c610 | refs/heads/main | 2023-05-06T22:08:47.774046 | 2021-02-16T16:43:02 | 2021-02-16T16:43:02 | 339,369,943 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,347 | cpp | //
// PointBrush.cpp
//
// The implementation of Point Brush. It is a kind of ImpBrush. All your brush implementations
// will look like the file with the different GL primitive calls.
//
#include "impressionistDoc.h"
#include "impressionistUI.h"
#include "SPointBrush.h"
extern float frand();
SPointBrush::SPointBrush(ImpressionistDoc* pDoc, char* name) :
ImpBrush(pDoc, name)
{
}
void SPointBrush::BrushBegin(const Point source, const Point target)
{
ImpressionistDoc* pDoc = GetDocument();
ImpressionistUI* dlg = pDoc->m_pUI;
int size = pDoc->getSize();
for (int i = 0; i < size*size*1000; i++) {
BrushMove(source, target);
}
BrushEnd(source, target);
}
void SPointBrush::BrushMove(const Point source, const Point target)
{
ImpressionistDoc* pDoc = GetDocument();
ImpressionistUI* dlg = pDoc->m_pUI;
int size = pDoc->getSize();
float temp1 = frand();
float temp2 = frand();
if (pDoc == NULL) {
printf("SPointBrush::BrushMove document is NULL\n");
return;
}
glBegin(GL_POINTS);
GLubyte color[3];
memcpy(color, pDoc->GetOriginalPixel(source.x+(temp1-0.5)*size, source.y + (temp2 - 0.5) * size), 3);
glColor3ubv(color);
glVertex2d(target.x + (temp1 - 0.5) * size, target.y + (temp2 - 0.5) * size);
glEnd();
}
void SPointBrush::BrushEnd(const Point source, const Point target)
{
// do nothing so far
}
| [
"hqinac@connect.ust.hk"
] | hqinac@connect.ust.hk |
13a34e747be8476ab957dbcbcdb1d2b03ffb7906 | f1182b9c4d222f6914505cac8450e5d96ce4e4d1 | /juce_1_44/juce/extras/the jucer/src/properties/jucer_ComponentChoiceProperty.h | 9f5b66a0b331c2ce46459f94610fa67b9836a611 | [] | no_license | GeorgeNs/mammut | b417ee2aee734f6fa6ac4d9425eb314e0e66559f | 5346951da7ceced59b4d766c809f4546b95d3412 | refs/heads/master | 2020-03-28T08:54:36.395454 | 2018-09-10T04:21:32 | 2018-09-10T04:21:32 | 147,935,202 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,377 | h | /*
==============================================================================
This file is part of the JUCE library - "Jules' Utility Class Extensions"
Copyright 2004-7 by Raw Material Software ltd.
------------------------------------------------------------------------------
JUCE can be redistributed and/or modified under the terms of the
GNU General Public License, as published by the Free Software Foundation;
either version 2 of the License, or (at your option) any later version.
JUCE 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 JUCE; if not, visit www.gnu.org/licenses or write to the
Free Software Foundation, Inc., 59 Temple Place, Suite 330,
Boston, MA 02111-1307 USA
------------------------------------------------------------------------------
If you'd like to release a closed-source product which uses JUCE, commercial
licenses are also available: visit www.rawmaterialsoftware.com/juce for
more information.
==============================================================================
*/
#ifndef __JUCER_COMPONENTCHOICEPROPERTY_JUCEHEADER__
#define __JUCER_COMPONENTCHOICEPROPERTY_JUCEHEADER__
//==============================================================================
/**
*/
template <class ComponentType>
class ComponentChoiceProperty : public ChoicePropertyComponent,
private ChangeListener
{
public:
ComponentChoiceProperty (const String& name,
ComponentType* component_,
JucerDocument& document_)
: ChoicePropertyComponent (name),
component (component_),
document (document_)
{
document.addChangeListener (this);
}
~ComponentChoiceProperty()
{
document.removeChangeListener (this);
}
void changeListenerCallback (void*)
{
refresh();
}
protected:
ComponentType* component;
JucerDocument& document;
};
#endif // __JUCER_COMPONENTCHOICEPROPERTY_JUCEHEADER__
| [
"k.s.matheussen@notam02.no"
] | k.s.matheussen@notam02.no |
ab0c4f2ccfee1204bd5f6c0d358b2eac823ae2b4 | b53575b4f1da8246e9abbb2bf4d297fd0af75ebb | /UVa/10400/10424.love-calculator.cpp | c037f39288f47b020190f8a37ebcda20e931d85d | [] | no_license | mauriciopoppe/competitive-programming | 217272aa3ee1c3158ca2412652f5ccd6596eb799 | 32b558582402e25c9ffcdd8840d78543bebd2245 | refs/heads/master | 2023-04-09T11:56:07.487804 | 2023-03-19T20:45:00 | 2023-03-19T20:45:00 | 120,259,279 | 8 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,059 | cpp | #include<cstdio>
#include<cstdlib>
#include<cmath>
#include<cctype>
#include<cstring>
#include<iostream>
#include<algorithm>
#include<string>
#include<bitset>
#include<vector>
#include<queue>
#include<map>
#include<set>
#include<list>
#include<stack>
#include<sstream>
#include<utility>
#include<numeric>
#include<functional>
using namespace std;
#define FOR(i,a,b) for(int i=(a);i<(b);++i)
#define F(i,a) FOR(i,0,a)
#define ALL(x) x.begin(),x.end()
#define PB push_back
#define MP make_pair
#define NL printf("\n")
#define SP system("pause")
#define TR(container, it) \
for(typeof(container.begin()) it=container.begin(); it!=container.end(); it++)
typedef long long LL;
int main()
{
string a, b;
while(getline(cin,a) && getline(cin,b))
{
int x=0,y=0;
int sa=a.size(),sb=b.size();
for(int i=0;i<sa;i++)
{
if(isalpha(a[i]))
{
if(islower(a[i]))x+=a[i]-'a'+1;
else x+=a[i]-'A'+1;
}
}
for(int i=0;i<sb;i++)
{
if(isalpha(b[i]))
{
if(islower(b[i]))y+=b[i]-'a'+1;
else y+=b[i]-'A'+1;
}
}
if(x+y==0){printf("\n");continue; }
//printf("%d %d\n",x,y);
int x1=0,y1=0;
while(1)
{
while(x)
{
x1+=x%10;
x/=10;
}
if(x1>9)x=x1,x1=0;
else break;
}
while(1)
{
while(y)
{
y1+=y%10;
y/=10;
}
if(y1>9)y=y1,y1=0;
else break;
}
if(x1>y1)printf("%.2lf %c\n",((double)y1*100.0)/(double)x1,'%');
else printf("%.2lf %c\n",((double)x1*100.0)/(double)y1,'%');
}
return 0;
}
| [
"mauricio.poppe@gmail.com"
] | mauricio.poppe@gmail.com |
adabd99ae73b9555455831677c8fc34e266b34e7 | 84d3804adff445fba579c7eaabd123d79af06759 | /TheLineCopy/Temp/il2cppOutput/il2cppOutput/UnityEngine.IMGUIModule.cpp | 8f5f606a720395e014553a614ca512666249e88a | [] | no_license | borchxx/TheLineCopyMechanics | a12bb93e28306544bc7bbd6e2e5df44f311c9978 | ab31e68b0cb5422dad3c7068b95088bca1403ba4 | refs/heads/main | 2023-04-11T14:54:39.698179 | 2021-04-18T23:56:03 | 2021-04-18T23:56:03 | 358,645,101 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 755,408 | 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 "codegen/il2cpp-codegen.h"
#include "il2cpp-object-internals.h"
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 T1>
struct VirtActionInvoker1
{
typedef void (*Action)(void*, T1, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
struct VirtActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename T1, typename T2>
struct VirtActionInvoker2
{
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, p2, 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 T1>
struct GenericVirtActionInvoker1
{
typedef void (*Action)(void*, T1, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
struct GenericVirtActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename T1>
struct InterfaceActionInvoker1
{
typedef void (*Action)(void*, T1, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
struct InterfaceActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename T1>
struct GenericInterfaceActionInvoker1
{
typedef void (*Action)(void*, T1, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
struct GenericInterfaceActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, invokeData.method);
}
};
// System.Action
struct Action_t591D2A86165F896B4B800BB5C25CE18672A55579;
// System.Action`1<UnityEngine.Font>
struct Action_1_t795662E553415ECF2DD0F8EEB9BA170C3670F37C;
// System.ArgumentException
struct ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1;
// System.AsyncCallback
struct AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4;
// System.Byte[]
struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821;
// System.Char[]
struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2;
// System.Collections.Generic.Dictionary`2/Entry<System.Int32,UnityEngine.GUILayoutUtility/LayoutCache>[]
struct EntryU5BU5D_tDB85180FDDB1D9328F27772D84DA1F4EBCF2FA33;
// System.Collections.Generic.Dictionary`2/Entry<System.String,UnityEngine.GUIStyle>[]
struct EntryU5BU5D_t8A12574AC691436B2D59765B81FBB918B3311350;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,UnityEngine.GUILayoutUtility/LayoutCache>
struct KeyCollection_t15CA10AEB86ED7FAC3832F2971163286DE710F7A;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.String,UnityEngine.GUIStyle>
struct KeyCollection_t7193E33E96305EFB890248510CE390A14EDC2F35;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,UnityEngine.GUILayoutUtility/LayoutCache>
struct ValueCollection_t476B74B16EC7028A54263E11CF73F86CF87FC929;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Object>
struct ValueCollection_tB118C56BE90A8B19D389651BC1B14D98E5384B14;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.String,UnityEngine.GUIStyle>
struct ValueCollection_t0C6A26D50A89F916DF2650A7C132FFB1992070B9;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Object>
struct Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884;
// System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.GUILayoutUtility/LayoutCache>
struct Dictionary_2_t0F1A21E14D53E05B0F1D474060AC4B36995FBCA1;
// System.Collections.Generic.Dictionary`2<System.Object,System.Object>
struct Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA;
// System.Collections.Generic.Dictionary`2<System.String,UnityEngine.GUIStyle>
struct Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A;
// 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.IEqualityComparer`1<System.String>
struct IEqualityComparer_1_t1F07EAC22CC1D4F279164B144240E4718BD7E7A9;
// System.Collections.Generic.List`1<System.Object>
struct List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D;
// System.Collections.Generic.List`1<UnityEngine.GUILayoutEntry>
struct List_1_t046427F3923444CF746C550FD96A3D0E4189D273;
// System.Collections.IDictionary
struct IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7;
// System.Collections.IEnumerator
struct IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A;
// System.Delegate
struct Delegate_t;
// System.DelegateData
struct DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE;
// System.Delegate[]
struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86;
// System.Diagnostics.StackTrace[]
struct StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196;
// System.Exception
struct Exception_t;
// System.Func`2<System.Exception,System.Boolean>
struct Func_2_tC816C5FDED4A7372C449E7660CAB9F94E2AC12F8;
// System.Func`2<System.Object,System.Boolean>
struct Func_2_t4B4B1E74248F38404B56001A709D81142DE730CC;
// System.Func`3<System.Int32,System.IntPtr,System.Boolean>
struct Func_3_tBD99633D8A18C43CC528ECE3F77E2F69900048A7;
// System.IAsyncResult
struct IAsyncResult_t8E194308510B375B42432981AE5E7488C458D598;
// System.Int32[]
struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83;
// System.IntPtr[]
struct IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD;
// System.Object[]
struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A;
// System.Reflection.Binder
struct Binder_t4D5CB06963501D32847C057B57157D6DC49CA759;
// System.Reflection.MemberFilter
struct MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381;
// System.Reflection.MethodInfo
struct MethodInfo_t;
// System.Runtime.Serialization.SafeSerializationManager
struct SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770;
// System.String
struct String_t;
// System.StringComparer
struct StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE;
// System.String[]
struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E;
// System.Type
struct Type_t;
// System.Type[]
struct TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F;
// System.Void
struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017;
// UnityEngine.Event
struct Event_t187FF6A6B357447B83EC2064823EE0AEC5263210;
// UnityEngine.Font
struct Font_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26;
// UnityEngine.Font/FontTextureRebuildCallback
struct FontTextureRebuildCallback_tD700C63BB1A449E3A0464C81701E981677D3021C;
// UnityEngine.GUI/WindowFunction
struct WindowFunction_t9AF05117863D95AA9F85D497A3B9B53216708100;
// UnityEngine.GUIContent
struct GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0;
// UnityEngine.GUILayoutEntry
struct GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845;
// UnityEngine.GUILayoutEntry[]
struct GUILayoutEntryU5BU5D_tABE834456D53BDC45598E951D6FBF94E97BDADFD;
// UnityEngine.GUILayoutGroup
struct GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601;
// UnityEngine.GUILayoutOption
struct GUILayoutOption_t27A0221AC2F6F53E7B89310FD19F51C565D835A6;
// UnityEngine.GUILayoutOption[]
struct GUILayoutOptionU5BU5D_tAB2AD0A365DBD2277A04E397AE8E1430A022AF1B;
// UnityEngine.GUILayoutUtility/LayoutCache
struct LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468;
// UnityEngine.GUIScrollGroup
struct GUIScrollGroup_tF7FE45226FB28968F68A8D2428FE9EA7DC5B18EE;
// UnityEngine.GUISettings
struct GUISettings_tA863524720A3C984BAE56598D922F2C04DC80EF4;
// UnityEngine.GUISkin
struct GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7;
// UnityEngine.GUISkin/SkinChangedDelegate
struct SkinChangedDelegate_tAB4CEEA8C8A0BDCFD51C9624AE173C46A40135D8;
// UnityEngine.GUIStyle
struct GUIStyle_t671F175A201A19166385EE3392292A5F50070572;
// UnityEngine.GUIStyleState
struct GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5;
// UnityEngine.GUIStyle[]
struct GUIStyleU5BU5D_t2F343713D6ADFF41BBCF1D17BAE79F51BD745DBB;
// UnityEngine.Object
struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0;
// UnityEngine.RectOffset
struct RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A;
// UnityEngine.ScriptableObject
struct ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734;
// UnityEngine.ScrollViewState
struct ScrollViewState_t738AAD89973B4E764B6F977945263C24A881428E;
// UnityEngine.SliderState
struct SliderState_t6081D6F2CF6D0F1A13B2A2D255671B4053EC52CB;
// UnityEngine.TextEditor
struct TextEditor_t72CB6095A5C38226E08CD8073D5B6AD98579D440;
// UnityEngine.Texture
struct Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4;
// UnityEngine.TouchScreenKeyboard
struct TouchScreenKeyboard_t2A69F85698E9780470181532D3F2BC903623FD90;
// UnityEngineInternal.GenericStack
struct GenericStack_tC59D21E8DBC50F3C608479C942200AC44CA2D5BC;
IL2CPP_EXTERN_C RuntimeClass* ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Debug_t7B5FCB117E2FD63B6838BC52821B252E2BFB61C4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t0F1A21E14D53E05B0F1D474060AC4B36995FBCA1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Enumerator_t7CFB6C06FEABB756D0C0A1BA202A13F5091958A6_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EventModifiers_tC34E3018F3697001F894187AF6E9E63D7E203061_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EventType_t3D3937E705A4506226002DAB22071B7B181DA57B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Event_t187FF6A6B357447B83EC2064823EE0AEC5263210_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ExitGUIException_t6AD1987AE1D23E0E774F9BEA41F30AE4CE378F07_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* GUILayoutOptionU5BU5D_tAB2AD0A365DBD2277A04E397AE8E1430A022AF1B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* GUILayoutOption_t27A0221AC2F6F53E7B89310FD19F51C565D835A6_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* GUISettings_tA863524720A3C984BAE56598D922F2C04DC80EF4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* GUIStyleU5BU5D_t2F343713D6ADFF41BBCF1D17BAE79F51BD745DBB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* GUIStyle_t671F175A201A19166385EE3392292A5F50070572_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* GUITargetAttribute_tA23DD43B1D91AF11499A0320EBAAC900A35FC4B8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* GUIUtility_t943494CC50E876A4A08ECD471C06E23D52E5E5BA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* GenericStack_tC59D21E8DBC50F3C608479C942200AC44CA2D5BC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IntPtr_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* KeyCode_tC93EA87C5A6901160B583ADFCD3EF6726570DC3C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t046427F3923444CF746C550FD96A3D0E4189D273_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Mathf_tFBDE6467D269BFE410605C7D806FD9991D4A89CB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* String_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TargetInvocationException_t0DD35F6083E1D1E0509BF181A79C76D3339D89B8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C String_t* _stringLiteral00CE3E1623671A834728138CD689D176F0000CEB;
IL2CPP_EXTERN_C String_t* _stringLiteral047A7EA97FB24BA0C74949892C1880E97AC0FB35;
IL2CPP_EXTERN_C String_t* _stringLiteral061CD5E48C5A194C95B561D18FCDC1A57D790069;
IL2CPP_EXTERN_C String_t* _stringLiteral09820128951D618D4CFE7DC0105A1B6B113C921F;
IL2CPP_EXTERN_C String_t* _stringLiteral0C258057D84276FDE292E99D213EB3AA75E8A463;
IL2CPP_EXTERN_C String_t* _stringLiteral0D421A870FA2CD6E6DCF150A4ACE67EC7405AF75;
IL2CPP_EXTERN_C String_t* _stringLiteral225F12AD8179D36194EBC648F0064B7E925473EC;
IL2CPP_EXTERN_C String_t* _stringLiteral239CA5767AFAC9641593464CE02BC454D6AC07A9;
IL2CPP_EXTERN_C String_t* _stringLiteral2BBC38111940698AFB713196AC3CDC77F8520F36;
IL2CPP_EXTERN_C String_t* _stringLiteral2C72A73D3153ECA8FBF9E58315C5EE073BE0D5AB;
IL2CPP_EXTERN_C String_t* _stringLiteral320AD267D8D969F285EDA5C184F5455BD29C8C95;
IL2CPP_EXTERN_C String_t* _stringLiteral32ECC4719669918929E577728ABBC5556B1258D9;
IL2CPP_EXTERN_C String_t* _stringLiteral3BC15C8AAE3E4124DD409035F32EA2FD6835EFC9;
IL2CPP_EXTERN_C String_t* _stringLiteral43038A7293A88F58900A924007043B16F5DF3840;
IL2CPP_EXTERN_C String_t* _stringLiteral43B731706EEE5F12E52ED519717DB9572EADF165;
IL2CPP_EXTERN_C String_t* _stringLiteral44749C3F0A84037EA50385BCA7D2CFEFD6C0BDB2;
IL2CPP_EXTERN_C String_t* _stringLiteral4609E730123B8AB7743493DE7E9F350E7DF58440;
IL2CPP_EXTERN_C String_t* _stringLiteral487A38C9550C3B08588319E52F112CE6A539A561;
IL2CPP_EXTERN_C String_t* _stringLiteral4C523C75AC8AB567667867138725AB01F5FA186A;
IL2CPP_EXTERN_C String_t* _stringLiteral4EBF4799F637E32D34B9DBF78887989DD6C458D1;
IL2CPP_EXTERN_C String_t* _stringLiteral52424150CE94D4AA9600469221595A075963D010;
IL2CPP_EXTERN_C String_t* _stringLiteral5370ABC43B604B9438E05FD111325616F5BA93EB;
IL2CPP_EXTERN_C String_t* _stringLiteral553F4091D1912B191C8392C610091F6B85B0B6E3;
IL2CPP_EXTERN_C String_t* _stringLiteral5C99F2EA0C681082AA59B6CD687CA19041028B63;
IL2CPP_EXTERN_C String_t* _stringLiteral5EB8003910C4D9CB2B9CAF1A8610A9FB39ACD4BD;
IL2CPP_EXTERN_C String_t* _stringLiteral645983D981B058C71B234B4EF85974E83DF46C36;
IL2CPP_EXTERN_C String_t* _stringLiteral64C65374DBAB6FE3762748196D9D3A9610E2E5A9;
IL2CPP_EXTERN_C String_t* _stringLiteral794145F030FF721599A0353A9B2E59E9A92B9BF1;
IL2CPP_EXTERN_C String_t* _stringLiteral7B7FCC78D6CD1507925B769B1386CED3683F99C7;
IL2CPP_EXTERN_C String_t* _stringLiteral884E998DCB0626A339721789EA125B983932D177;
IL2CPP_EXTERN_C String_t* _stringLiteral8CE379368AB8E774A4F51BE28DD637628F20DA93;
IL2CPP_EXTERN_C String_t* _stringLiteral8E436B06A17CFAF87BEB781E30D07B6FF58B2B71;
IL2CPP_EXTERN_C String_t* _stringLiteral99032D12CB8AAB77590E57E36974F8C1C56B7B95;
IL2CPP_EXTERN_C String_t* _stringLiteral9B611144024AB5EC850C1A1C7668509DA40C92DB;
IL2CPP_EXTERN_C String_t* _stringLiteral9B93271A1F5C73A7A67E544DD659306E5EE80C4B;
IL2CPP_EXTERN_C String_t* _stringLiteralA11608E0F772347D667D92CD05AFA60E273D90A8;
IL2CPP_EXTERN_C String_t* _stringLiteralA8D40E8C95571FFC4E4BA4C9CEF0289695BD8057;
IL2CPP_EXTERN_C String_t* _stringLiteralA93D2B140984CB1ED70E8B2F25565EF16927EE77;
IL2CPP_EXTERN_C String_t* _stringLiteralA979EF10CC6F6A36DF6B8A323307EE3BB2E2DB9C;
IL2CPP_EXTERN_C String_t* _stringLiteralAA5DB7D82232EE34651EB5ADEA59B01C839EB843;
IL2CPP_EXTERN_C String_t* _stringLiteralACAB6798BE3F8F69AA0198A7C9B83ADA0F075932;
IL2CPP_EXTERN_C String_t* _stringLiteralADC83B19E793491B1C6EA0FD8B46CD9F32E592FC;
IL2CPP_EXTERN_C String_t* _stringLiteralB71AA0202634484C09B931E01A9CF812565B054B;
IL2CPP_EXTERN_C String_t* _stringLiteralB72EF1950CD4E44A073B202D2C0D05D8A97FD42F;
IL2CPP_EXTERN_C String_t* _stringLiteralB858CB282617FB0956D960215C8E84D1CCF909C6;
IL2CPP_EXTERN_C String_t* _stringLiteralBFAF5DB045B9BE61FE1BC19E0486B8287028A876;
IL2CPP_EXTERN_C String_t* _stringLiteralC1736E388224676A122F6D36DB2BFE2D5B5815D1;
IL2CPP_EXTERN_C String_t* _stringLiteralC2B7DF6201FDD3362399091F0A29550DF3505B6A;
IL2CPP_EXTERN_C String_t* _stringLiteralC7D8A6D722A1EC9A16FAE165177C418D4FD63175;
IL2CPP_EXTERN_C String_t* _stringLiteralD3280C579ECC78E7C99A42607D1529992F9DD5F3;
IL2CPP_EXTERN_C String_t* _stringLiteralD5E14B063514CB6630E55F0AEB0AD3B37897EFCA;
IL2CPP_EXTERN_C String_t* _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
IL2CPP_EXTERN_C String_t* _stringLiteralE1D1873098D32108BBEF9FD4C21B888ED8659C49;
IL2CPP_EXTERN_C String_t* _stringLiteralE647442EAD89630DC43D2047D097508AD66D2618;
IL2CPP_EXTERN_C String_t* _stringLiteralE794E3C8A26A199BEB58080D834D082D83C3C1B2;
IL2CPP_EXTERN_C String_t* _stringLiteralE8603CA0394240FFC435FB8A9A44A0B8ADFDB19F;
IL2CPP_EXTERN_C String_t* _stringLiteralEEF19C54306DAA69EDA49C0272623BDB5E2B341F;
IL2CPP_EXTERN_C String_t* _stringLiteralF92769A88C9334E4CDB8DF06F40EC92B7B4086D0;
IL2CPP_EXTERN_C String_t* _stringLiteralF9C5942B1F55CB12B8F2B5FAE21A9F1706F9D367;
IL2CPP_EXTERN_C String_t* _stringLiteralFC8656334C97C18022AE87133F261DBA949A4CDD;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_m0E6D1EEC81E6A904B99EEC04DB95C1CC0E4A0B31_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_m72452D4223AA3313BF658BFBDFC1B417CA40EC18_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_mD9286F4A0EF1BEC0B6BC4BD72D8D6A246B994EBF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_mE7D4915AD1A64B140D2C412B197D4D43B016074E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Values_mBCCD4E4C93C5E4DF2E0A07934040870B3662866F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_m24E725BAB2853FE434C3D507858296BA81733DC5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_mB2CFA325B47C43C9E27C606844FE1AED4CD344A2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_mB540C90AE8EBE0EB3D63A6ACE5EC863FAD1419B2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m3A0A0A98E9378A32A74EC51C4CAB6C564001CAC7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m9422C22943D0E9900CDB7DF407D9EBE215B2A6B6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Func_2_Invoke_m9621506610C10C9E735B305E826ACEFF914422CD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Func_3_Invoke_mCD6DEEC09B4F1B42DD0FD4A8F58632B08EC66737_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* GUIUtility_CheckOnGUI_mBFC764B475683BC50E40BD249248CE43DA754873_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_mA457B3CB61E2B7BAFB0F7D0ADEFD25237B4429DF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m8334B758D374FE266FFF49329936203BCE3A3770_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m2995506A297520F84CBD9AD421D8672D5755E115_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m96FCB482CBADC5AD4AD5F01B7A0B822AF619D388_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_GetEnumerator_m56252F012AAECD0BFFC3729A87D60BF2945499C2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeType* GUITargetAttribute_tA23DD43B1D91AF11499A0320EBAAC900A35FC4B8_0_0_0_var;
IL2CPP_EXTERN_C const uint32_t Event_Equals_m1DEF4FB843B631FC437B1366F0F78CEF7A739070_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Event_Finalize_m71EE3F6BC6C0A99F849EC39C0E47B7305BB9EB3D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Event_Internal_MakeMasterEventCurrent_mAD78377C8BB08EFB5DF3D3E3A4F1089F2FC2BA48_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Event_ToString_m2843623B66F30AC141175B1D16F1B112D3835A65_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Event_get_current_m072CEE599D11B8A9A916697E57C0F561188CDB2B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUIContent_ClearStaticCache_m567DA736612F9E6E66262CC630952AB2E22BC933_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUIContent__cctor_m5AF68CD5FB2E47506F7FF1A6F46ADAD5C8BC927C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUIContent__ctor_m2805872C5E7E66C3ABF83607DC02BEB1BEFA82DA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUIContent__ctor_m8EE36BB9048C2A279E7EAD258D63F2A1BDEA8A81_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUIContent__ctor_m939CDEFF44061020E997A0F0640ADDF2740B0C38_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUILayoutEntry_ApplyOptions_m2002EBD9FE42B9787544D204A71C8BEF3F671F5B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUILayoutEntry_ToString_mCDA5CD14A39ADAD29F6B450B98FDB80E37AC95D5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUILayoutEntry__cctor_m7425E2D0EE5771858B9823BBD024333CE7CAD3F9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUILayoutEntry__ctor_mC640CA08AEBCC7E479DB6AF5B208436A98AB75B2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUILayoutGroup_ApplyOptions_mCBAF4F0DA13F941ABF47886054A3443247767A97_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUILayoutGroup_CalcHeight_m0511BD2172BC13D54ABC8DB5887A91C17E9F21BB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUILayoutGroup_CalcWidth_m0D2819C659392B14175C2B163DD889AD35794A9B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUILayoutGroup_SetHorizontal_m0AFB617E7BB6B32431BA65873B27660E6E5C9E51_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUILayoutGroup_SetVertical_m29D8744D2D1464EF4E6E4008CD21F5E44D6CB146_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUILayoutGroup_ToString_mF66B820B07A33FFA240FBBE20A6F39C492B52372_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUILayoutGroup__ctor_m14D8B35B4A89F6688D354A534ED871860905BA3B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUILayoutUtility_BeginWindow_mB3475D9BE89CF26AB0E6F0D46B1930F1874EB132_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUILayoutUtility_Begin_m6876A33199599688408A4AD364069090E833B237_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUILayoutUtility_Internal_GetWindowRect_mE35BED0433EE8BD928CD52681620519E647A1DA9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUILayoutUtility_Internal_MoveWindow_mFCB2DFE399B833D263138CF0A57626AFF52CB037_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUILayoutUtility_LayoutFreeGroup_m890E6BD9614C48B151D61F197251E3DBAC637967_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUILayoutUtility_LayoutFromEditorWindow_mBE82BE965B54F68E7090952684C86BFF0538AB52_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUILayoutUtility_LayoutSingleGroup_m0BE91E195E4E2FC8B5B491783AFACBD1310F15A1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUILayoutUtility_Layout_mB01F00635FD538214B47A545C53E4F8C682491B5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUILayoutUtility_SelectIDList_m230ED9206897C92C5B090B3BBFC9B408603E56FD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUILayoutUtility__cctor_m6C436C771D62B8982AE0E47DD5D41C607988395F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUILayout_Height_mA5A24D5490022AC6449BBAED9C5A1647184B4026_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUILayout_Width_mDA8F26D92E788474E09AECA1541E8C920C72DA10_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUISkin_Apply_mA93B0EEE3C2DE1F8D867A472130CDA98814C8A49_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUISkin_BuildStyleCache_m2C68BB5521EAF11FC98C86D7E60008901D61866A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUISkin_CleanupRoots_m00D215E556265ACF704EA1C31399298DB092BA02_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUISkin_FindStyle_m977BAAD9DE35AC43C9FA2DB52C6C0BDF83EE4706_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUISkin_GetEnumerator_m3F6D91C1C038E5DC24C38F6D23C95DEE03173987_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUISkin_GetStyle_mD292E6470E961CA986674875B78746A1859D5FEC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUISkin_MakeCurrent_m42FAF8090F6B57648678704D86A6451DB917CF2D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUISkin__ctor_mD75B370774F1DA0C871C8C642299E8DB4B0FABFF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUISkin_get_error_m40FBD0C57353CBFD8EE75B796E3EADBF9033C47F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUISkin_set_font_m2602A62DF6F035C7DA9BF4411C5F117022B5C07F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUIStyleState_Finalize_m68F554CD5B53E9BFC8B952E371D1E18D96D4C626_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUIStyleState_GetGUIStyleState_m207443170D2CA9E48BAB05FF74B30C76C6D63F68_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUIStyle_Finalize_m06DC9D0C766664ACF0D2C8D6BE214756E6361BA4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUIStyle_ToString_mE73FFC6A93F4F7BC2560EADEB074F0E81F77CB07_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUIStyle__cctor_mA7579A59C320A9202F6E83B39DADC06C10231D6F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUIStyle__ctor_m8AA3D5AA506A252687923D0DA80741862AA83805_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUIStyle_get_margin_mFC3EA0FA030A6334AC03BDDFA4AC80419C9E5BAA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUIStyle_get_none_m2B48FA4E2FA2B9BB7A458DF25B1391F9C7BB8B7B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUIStyle_get_padding_m5DF76AA03A313366D0DD8D577731DAC4FB83053A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUITargetAttribute_GetGUITargetAttrValue_mED49CA9A9696B0D52CD6C6D7BA7344EA1F019590_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUIUtility_BeginGUI_m9981BDF2828246EBE4EDA43447EF6DAA74B54C91_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUIUtility_CheckOnGUI_mBFC764B475683BC50E40BD249248CE43DA754873_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUIUtility_EndContainerGUIFromException_m66F073A94FF85A8B7C6D8A4614B43365F0A68042_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUIUtility_EndGUI_mE93B54A19231BCC9DFC68DF54CE7C29DE41A3414_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUIUtility_GetDefaultSkin_m2F1B580445522074FF41CF9906531DBEAB034365_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUIUtility_IsExitGUIException_mBCCE6118666769B8B767D74496E44D2ECC7AFDD2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUIUtility_MarkGUIChanged_m624187E89EC5D08B052B8F74B8BFD803EEE53956_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUIUtility_ProcessEvent_mA250CB35828235FE2F8BA5EA7B6592234DA2D312_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUIUtility_RemoveCapture_m37B735649012E93EBEA50DB8708FB6D39DFA4FE9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUIUtility_ResetGlobalState_m192C9FAE2A4B87F34CB051C4967B8A919A902A5C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUIUtility_TakeCapture_mE32A66FEEF1DFA8A3DDF3CE310D1C93397B31221_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUIUtility_set_guiIsExiting_m16D5DFFB64483BC588CA6BEA0FAA618E4A227960UnityEngine_IMGUIModule_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUIUtility_set_guiIsExiting_m16D5DFFB64483BC588CA6BEA0FAA618E4A227960_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUI_CallWindowDelegate_m49D5A2E2DAEF525772FAAAA9A840244137BB9175_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUI_DoSetSkin_mC72F1980793E86E8F33D641A207D2AAB409A71F7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUI__cctor_m9A902CA13649D04BFB54D86C051A09AC5301ED63_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUI_get_scrollViewStates_m2FAC333F84B90E4F1E1ED5FC8651DC8C4C30B7AFUnityEngine_IMGUIModule_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUI_get_scrollViewStates_m2FAC333F84B90E4F1E1ED5FC8651DC8C4C30B7AF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUI_get_skin_mF6804BE33CFD74FF0665C1185AC7B5C1687AE866_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUI_set_nextScrollStepTime_m0EBE9A3F5960CD23334E4678D9CF6F5E15CBDE23UnityEngine_IMGUIModule_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUI_set_nextScrollStepTime_m0EBE9A3F5960CD23334E4678D9CF6F5E15CBDE23_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GUI_set_skin_mFC9EC2E88A46A7F42664C6C41D8CCD9B9BA4DBA0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t LayoutCache__ctor_mF66D53540321BFD98CA89285D2E8FFDA5014A9CE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StringComparer_get_OrdinalIgnoreCase_m3F2527D9A11521E8B51F0AC8F70DB272DA8334C9UnityEngine_IMGUIModule_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TextEditor__ctor_m279158A237B393882E3CC2834C1F7CA7679F79CC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t WindowFunction_BeginInvoke_m522A6C91248FC9E44284AAB8909F83E5DB2960A2_MetadataUsageId;
struct Delegate_t_marshaled_com;
struct Delegate_t_marshaled_pinvoke;
struct Exception_t_marshaled_com;
struct Exception_t_marshaled_pinvoke;
struct GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5;;
struct GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_com;
struct GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_com;;
struct GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_pinvoke;
struct GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_pinvoke;;
struct GUIStyle_t671F175A201A19166385EE3392292A5F50070572;;
struct GUIStyle_t671F175A201A19166385EE3392292A5F50070572_marshaled_com;
struct GUIStyle_t671F175A201A19166385EE3392292A5F50070572_marshaled_com;;
struct GUIStyle_t671F175A201A19166385EE3392292A5F50070572_marshaled_pinvoke;
struct GUIStyle_t671F175A201A19166385EE3392292A5F50070572_marshaled_pinvoke;;
struct RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A;;
struct RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A_marshaled_com;
struct RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A_marshaled_com;;
struct RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A_marshaled_pinvoke;
struct RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A_marshaled_pinvoke;;
struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86;
struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A;
struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E;
struct GUILayoutOptionU5BU5D_tAB2AD0A365DBD2277A04E397AE8E1430A022AF1B;
struct GUIStyleU5BU5D_t2F343713D6ADFF41BBCF1D17BAE79F51BD745DBB;
IL2CPP_EXTERN_C_BEGIN
IL2CPP_EXTERN_C_END
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <Module>
struct U3CModuleU3E_tB6F5D3E9B5847F75DE623964BF4C6C552D94BB22
{
public:
public:
};
// System.Object
struct Il2CppArrayBounds;
// System.Array
// System.Attribute
struct Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 : public RuntimeObject
{
public:
public:
};
// System.Collections.Generic.Dictionary`2_ValueCollection<System.String,UnityEngine.GUIStyle>
struct ValueCollection_t0C6A26D50A89F916DF2650A7C132FFB1992070B9 : public RuntimeObject
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection::dictionary
Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A * ___dictionary_0;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_t0C6A26D50A89F916DF2650A7C132FFB1992070B9, ___dictionary_0)); }
inline Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.GUILayoutUtility_LayoutCache>
struct Dictionary_2_t0F1A21E14D53E05B0F1D474060AC4B36995FBCA1 : 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_tDB85180FDDB1D9328F27772D84DA1F4EBCF2FA33* ___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_t15CA10AEB86ED7FAC3832F2971163286DE710F7A * ___keys_7;
// System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
ValueCollection_t476B74B16EC7028A54263E11CF73F86CF87FC929 * ___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_t0F1A21E14D53E05B0F1D474060AC4B36995FBCA1, ___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((void**)(&___buckets_0), (void*)value);
}
inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t0F1A21E14D53E05B0F1D474060AC4B36995FBCA1, ___entries_1)); }
inline EntryU5BU5D_tDB85180FDDB1D9328F27772D84DA1F4EBCF2FA33* get_entries_1() const { return ___entries_1; }
inline EntryU5BU5D_tDB85180FDDB1D9328F27772D84DA1F4EBCF2FA33** get_address_of_entries_1() { return &___entries_1; }
inline void set_entries_1(EntryU5BU5D_tDB85180FDDB1D9328F27772D84DA1F4EBCF2FA33* value)
{
___entries_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value);
}
inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t0F1A21E14D53E05B0F1D474060AC4B36995FBCA1, ___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_t0F1A21E14D53E05B0F1D474060AC4B36995FBCA1, ___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_t0F1A21E14D53E05B0F1D474060AC4B36995FBCA1, ___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_t0F1A21E14D53E05B0F1D474060AC4B36995FBCA1, ___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_t0F1A21E14D53E05B0F1D474060AC4B36995FBCA1, ___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((void**)(&___comparer_6), (void*)value);
}
inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t0F1A21E14D53E05B0F1D474060AC4B36995FBCA1, ___keys_7)); }
inline KeyCollection_t15CA10AEB86ED7FAC3832F2971163286DE710F7A * get_keys_7() const { return ___keys_7; }
inline KeyCollection_t15CA10AEB86ED7FAC3832F2971163286DE710F7A ** get_address_of_keys_7() { return &___keys_7; }
inline void set_keys_7(KeyCollection_t15CA10AEB86ED7FAC3832F2971163286DE710F7A * value)
{
___keys_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value);
}
inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t0F1A21E14D53E05B0F1D474060AC4B36995FBCA1, ___values_8)); }
inline ValueCollection_t476B74B16EC7028A54263E11CF73F86CF87FC929 * get_values_8() const { return ___values_8; }
inline ValueCollection_t476B74B16EC7028A54263E11CF73F86CF87FC929 ** get_address_of_values_8() { return &___values_8; }
inline void set_values_8(ValueCollection_t476B74B16EC7028A54263E11CF73F86CF87FC929 * value)
{
___values_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t0F1A21E14D53E05B0F1D474060AC4B36995FBCA1, ____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((void**)(&____syncRoot_9), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2<System.String,UnityEngine.GUIStyle>
struct Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A : 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_t8A12574AC691436B2D59765B81FBB918B3311350* ___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_t7193E33E96305EFB890248510CE390A14EDC2F35 * ___keys_7;
// System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
ValueCollection_t0C6A26D50A89F916DF2650A7C132FFB1992070B9 * ___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_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A, ___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((void**)(&___buckets_0), (void*)value);
}
inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A, ___entries_1)); }
inline EntryU5BU5D_t8A12574AC691436B2D59765B81FBB918B3311350* get_entries_1() const { return ___entries_1; }
inline EntryU5BU5D_t8A12574AC691436B2D59765B81FBB918B3311350** get_address_of_entries_1() { return &___entries_1; }
inline void set_entries_1(EntryU5BU5D_t8A12574AC691436B2D59765B81FBB918B3311350* value)
{
___entries_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value);
}
inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A, ___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_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A, ___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_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A, ___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_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A, ___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_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A, ___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((void**)(&___comparer_6), (void*)value);
}
inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A, ___keys_7)); }
inline KeyCollection_t7193E33E96305EFB890248510CE390A14EDC2F35 * get_keys_7() const { return ___keys_7; }
inline KeyCollection_t7193E33E96305EFB890248510CE390A14EDC2F35 ** get_address_of_keys_7() { return &___keys_7; }
inline void set_keys_7(KeyCollection_t7193E33E96305EFB890248510CE390A14EDC2F35 * value)
{
___keys_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value);
}
inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A, ___values_8)); }
inline ValueCollection_t0C6A26D50A89F916DF2650A7C132FFB1992070B9 * get_values_8() const { return ___values_8; }
inline ValueCollection_t0C6A26D50A89F916DF2650A7C132FFB1992070B9 ** get_address_of_values_8() { return &___values_8; }
inline void set_values_8(ValueCollection_t0C6A26D50A89F916DF2650A7C132FFB1992070B9 * value)
{
___values_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A, ____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((void**)(&____syncRoot_9), (void*)value);
}
};
// System.Collections.Generic.List`1<System.Object>
struct List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D, ____items_1)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get__items_1() const { return ____items_1; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D, ____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;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D, ____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__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D_StaticFields, ____emptyArray_5)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get__emptyArray_5() const { return ____emptyArray_5; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.GUILayoutEntry>
struct List_1_t046427F3923444CF746C550FD96A3D0E4189D273 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
GUILayoutEntryU5BU5D_tABE834456D53BDC45598E951D6FBF94E97BDADFD* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t046427F3923444CF746C550FD96A3D0E4189D273, ____items_1)); }
inline GUILayoutEntryU5BU5D_tABE834456D53BDC45598E951D6FBF94E97BDADFD* get__items_1() const { return ____items_1; }
inline GUILayoutEntryU5BU5D_tABE834456D53BDC45598E951D6FBF94E97BDADFD** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(GUILayoutEntryU5BU5D_tABE834456D53BDC45598E951D6FBF94E97BDADFD* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t046427F3923444CF746C550FD96A3D0E4189D273, ____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;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t046427F3923444CF746C550FD96A3D0E4189D273, ____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__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t046427F3923444CF746C550FD96A3D0E4189D273, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t046427F3923444CF746C550FD96A3D0E4189D273_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
GUILayoutEntryU5BU5D_tABE834456D53BDC45598E951D6FBF94E97BDADFD* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t046427F3923444CF746C550FD96A3D0E4189D273_StaticFields, ____emptyArray_5)); }
inline GUILayoutEntryU5BU5D_tABE834456D53BDC45598E951D6FBF94E97BDADFD* get__emptyArray_5() const { return ____emptyArray_5; }
inline GUILayoutEntryU5BU5D_tABE834456D53BDC45598E951D6FBF94E97BDADFD** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(GUILayoutEntryU5BU5D_tABE834456D53BDC45598E951D6FBF94E97BDADFD* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Stack
struct Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 : public RuntimeObject
{
public:
// System.Object[] System.Collections.Stack::_array
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ____array_0;
// System.Int32 System.Collections.Stack::_size
int32_t ____size_1;
// System.Int32 System.Collections.Stack::_version
int32_t ____version_2;
public:
inline static int32_t get_offset_of__array_0() { return static_cast<int32_t>(offsetof(Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643, ____array_0)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get__array_0() const { return ____array_0; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of__array_0() { return &____array_0; }
inline void set__array_0(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
____array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____array_0), (void*)value);
}
inline static int32_t get_offset_of__size_1() { return static_cast<int32_t>(offsetof(Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643, ____size_1)); }
inline int32_t get__size_1() const { return ____size_1; }
inline int32_t* get_address_of__size_1() { return &____size_1; }
inline void set__size_1(int32_t value)
{
____size_1 = value;
}
inline static int32_t get_offset_of__version_2() { return static_cast<int32_t>(offsetof(Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643, ____version_2)); }
inline int32_t get__version_2() const { return ____version_2; }
inline int32_t* get_address_of__version_2() { return &____version_2; }
inline void set__version_2(int32_t value)
{
____version_2 = value;
}
};
// System.Reflection.MemberInfo
struct MemberInfo_t : public RuntimeObject
{
public:
public:
};
// 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((void**)(&___Empty_5), (void*)value);
}
};
// System.StringComparer
struct StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE : public RuntimeObject
{
public:
public:
};
struct StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_StaticFields
{
public:
// System.StringComparer System.StringComparer::_invariantCulture
StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * ____invariantCulture_0;
// System.StringComparer System.StringComparer::_invariantCultureIgnoreCase
StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * ____invariantCultureIgnoreCase_1;
// System.StringComparer System.StringComparer::_ordinal
StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * ____ordinal_2;
// System.StringComparer System.StringComparer::_ordinalIgnoreCase
StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * ____ordinalIgnoreCase_3;
public:
inline static int32_t get_offset_of__invariantCulture_0() { return static_cast<int32_t>(offsetof(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_StaticFields, ____invariantCulture_0)); }
inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * get__invariantCulture_0() const { return ____invariantCulture_0; }
inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE ** get_address_of__invariantCulture_0() { return &____invariantCulture_0; }
inline void set__invariantCulture_0(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * value)
{
____invariantCulture_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____invariantCulture_0), (void*)value);
}
inline static int32_t get_offset_of__invariantCultureIgnoreCase_1() { return static_cast<int32_t>(offsetof(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_StaticFields, ____invariantCultureIgnoreCase_1)); }
inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * get__invariantCultureIgnoreCase_1() const { return ____invariantCultureIgnoreCase_1; }
inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE ** get_address_of__invariantCultureIgnoreCase_1() { return &____invariantCultureIgnoreCase_1; }
inline void set__invariantCultureIgnoreCase_1(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * value)
{
____invariantCultureIgnoreCase_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____invariantCultureIgnoreCase_1), (void*)value);
}
inline static int32_t get_offset_of__ordinal_2() { return static_cast<int32_t>(offsetof(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_StaticFields, ____ordinal_2)); }
inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * get__ordinal_2() const { return ____ordinal_2; }
inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE ** get_address_of__ordinal_2() { return &____ordinal_2; }
inline void set__ordinal_2(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * value)
{
____ordinal_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____ordinal_2), (void*)value);
}
inline static int32_t get_offset_of__ordinalIgnoreCase_3() { return static_cast<int32_t>(offsetof(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_StaticFields, ____ordinalIgnoreCase_3)); }
inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * get__ordinalIgnoreCase_3() const { return ____ordinalIgnoreCase_3; }
inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE ** get_address_of__ordinalIgnoreCase_3() { return &____ordinalIgnoreCase_3; }
inline void set__ordinalIgnoreCase_3(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * value)
{
____ordinalIgnoreCase_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____ordinalIgnoreCase_3), (void*)value);
}
};
// System.ValueType
struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF : public RuntimeObject
{
public:
public:
};
// 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
{
};
// UnityEngine.GUIContent
struct GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 : public RuntimeObject
{
public:
// System.String UnityEngine.GUIContent::m_Text
String_t* ___m_Text_0;
// UnityEngine.Texture UnityEngine.GUIContent::m_Image
Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 * ___m_Image_1;
// System.String UnityEngine.GUIContent::m_Tooltip
String_t* ___m_Tooltip_2;
public:
inline static int32_t get_offset_of_m_Text_0() { return static_cast<int32_t>(offsetof(GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0, ___m_Text_0)); }
inline String_t* get_m_Text_0() const { return ___m_Text_0; }
inline String_t** get_address_of_m_Text_0() { return &___m_Text_0; }
inline void set_m_Text_0(String_t* value)
{
___m_Text_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Text_0), (void*)value);
}
inline static int32_t get_offset_of_m_Image_1() { return static_cast<int32_t>(offsetof(GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0, ___m_Image_1)); }
inline Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 * get_m_Image_1() const { return ___m_Image_1; }
inline Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 ** get_address_of_m_Image_1() { return &___m_Image_1; }
inline void set_m_Image_1(Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 * value)
{
___m_Image_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Image_1), (void*)value);
}
inline static int32_t get_offset_of_m_Tooltip_2() { return static_cast<int32_t>(offsetof(GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0, ___m_Tooltip_2)); }
inline String_t* get_m_Tooltip_2() const { return ___m_Tooltip_2; }
inline String_t** get_address_of_m_Tooltip_2() { return &___m_Tooltip_2; }
inline void set_m_Tooltip_2(String_t* value)
{
___m_Tooltip_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Tooltip_2), (void*)value);
}
};
struct GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_StaticFields
{
public:
// UnityEngine.GUIContent UnityEngine.GUIContent::s_Text
GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 * ___s_Text_3;
// UnityEngine.GUIContent UnityEngine.GUIContent::s_Image
GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 * ___s_Image_4;
// UnityEngine.GUIContent UnityEngine.GUIContent::s_TextImage
GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 * ___s_TextImage_5;
// UnityEngine.GUIContent UnityEngine.GUIContent::none
GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 * ___none_6;
public:
inline static int32_t get_offset_of_s_Text_3() { return static_cast<int32_t>(offsetof(GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_StaticFields, ___s_Text_3)); }
inline GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 * get_s_Text_3() const { return ___s_Text_3; }
inline GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 ** get_address_of_s_Text_3() { return &___s_Text_3; }
inline void set_s_Text_3(GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 * value)
{
___s_Text_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_Text_3), (void*)value);
}
inline static int32_t get_offset_of_s_Image_4() { return static_cast<int32_t>(offsetof(GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_StaticFields, ___s_Image_4)); }
inline GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 * get_s_Image_4() const { return ___s_Image_4; }
inline GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 ** get_address_of_s_Image_4() { return &___s_Image_4; }
inline void set_s_Image_4(GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 * value)
{
___s_Image_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_Image_4), (void*)value);
}
inline static int32_t get_offset_of_s_TextImage_5() { return static_cast<int32_t>(offsetof(GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_StaticFields, ___s_TextImage_5)); }
inline GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 * get_s_TextImage_5() const { return ___s_TextImage_5; }
inline GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 ** get_address_of_s_TextImage_5() { return &___s_TextImage_5; }
inline void set_s_TextImage_5(GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 * value)
{
___s_TextImage_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_TextImage_5), (void*)value);
}
inline static int32_t get_offset_of_none_6() { return static_cast<int32_t>(offsetof(GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_StaticFields, ___none_6)); }
inline GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 * get_none_6() const { return ___none_6; }
inline GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 ** get_address_of_none_6() { return &___none_6; }
inline void set_none_6(GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 * value)
{
___none_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___none_6), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.GUIContent
struct GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_marshaled_pinvoke
{
char* ___m_Text_0;
Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 * ___m_Image_1;
char* ___m_Tooltip_2;
};
// Native definition for COM marshalling of UnityEngine.GUIContent
struct GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_marshaled_com
{
Il2CppChar* ___m_Text_0;
Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 * ___m_Image_1;
Il2CppChar* ___m_Tooltip_2;
};
// UnityEngine.GUILayout
struct GUILayout_t5BDBA9AE696E27285227012F08642F97F2CCE2EC : public RuntimeObject
{
public:
public:
};
// UnityEngine.GUILayoutUtility_LayoutCache
struct LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 : public RuntimeObject
{
public:
// UnityEngine.GUILayoutGroup UnityEngine.GUILayoutUtility_LayoutCache::topLevel
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * ___topLevel_0;
// UnityEngineInternal.GenericStack UnityEngine.GUILayoutUtility_LayoutCache::layoutGroups
GenericStack_tC59D21E8DBC50F3C608479C942200AC44CA2D5BC * ___layoutGroups_1;
// UnityEngine.GUILayoutGroup UnityEngine.GUILayoutUtility_LayoutCache::windows
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * ___windows_2;
public:
inline static int32_t get_offset_of_topLevel_0() { return static_cast<int32_t>(offsetof(LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468, ___topLevel_0)); }
inline GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * get_topLevel_0() const { return ___topLevel_0; }
inline GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 ** get_address_of_topLevel_0() { return &___topLevel_0; }
inline void set_topLevel_0(GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * value)
{
___topLevel_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___topLevel_0), (void*)value);
}
inline static int32_t get_offset_of_layoutGroups_1() { return static_cast<int32_t>(offsetof(LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468, ___layoutGroups_1)); }
inline GenericStack_tC59D21E8DBC50F3C608479C942200AC44CA2D5BC * get_layoutGroups_1() const { return ___layoutGroups_1; }
inline GenericStack_tC59D21E8DBC50F3C608479C942200AC44CA2D5BC ** get_address_of_layoutGroups_1() { return &___layoutGroups_1; }
inline void set_layoutGroups_1(GenericStack_tC59D21E8DBC50F3C608479C942200AC44CA2D5BC * value)
{
___layoutGroups_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___layoutGroups_1), (void*)value);
}
inline static int32_t get_offset_of_windows_2() { return static_cast<int32_t>(offsetof(LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468, ___windows_2)); }
inline GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * get_windows_2() const { return ___windows_2; }
inline GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 ** get_address_of_windows_2() { return &___windows_2; }
inline void set_windows_2(GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * value)
{
___windows_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___windows_2), (void*)value);
}
};
// UnityEngine.GUIUtility
struct GUIUtility_t943494CC50E876A4A08ECD471C06E23D52E5E5BA : public RuntimeObject
{
public:
public:
};
struct GUIUtility_t943494CC50E876A4A08ECD471C06E23D52E5E5BA_StaticFields
{
public:
// System.Int32 UnityEngine.GUIUtility::s_SkinMode
int32_t ___s_SkinMode_0;
// System.Int32 UnityEngine.GUIUtility::s_OriginalID
int32_t ___s_OriginalID_1;
// System.Action UnityEngine.GUIUtility::takeCapture
Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___takeCapture_2;
// System.Action UnityEngine.GUIUtility::releaseCapture
Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___releaseCapture_3;
// System.Func`3<System.Int32,System.IntPtr,System.Boolean> UnityEngine.GUIUtility::processEvent
Func_3_tBD99633D8A18C43CC528ECE3F77E2F69900048A7 * ___processEvent_4;
// System.Func`2<System.Exception,System.Boolean> UnityEngine.GUIUtility::endContainerGUIFromException
Func_2_tC816C5FDED4A7372C449E7660CAB9F94E2AC12F8 * ___endContainerGUIFromException_5;
// System.Action UnityEngine.GUIUtility::guiChanged
Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___guiChanged_6;
// System.Boolean UnityEngine.GUIUtility::<guiIsExiting>k__BackingField
bool ___U3CguiIsExitingU3Ek__BackingField_7;
public:
inline static int32_t get_offset_of_s_SkinMode_0() { return static_cast<int32_t>(offsetof(GUIUtility_t943494CC50E876A4A08ECD471C06E23D52E5E5BA_StaticFields, ___s_SkinMode_0)); }
inline int32_t get_s_SkinMode_0() const { return ___s_SkinMode_0; }
inline int32_t* get_address_of_s_SkinMode_0() { return &___s_SkinMode_0; }
inline void set_s_SkinMode_0(int32_t value)
{
___s_SkinMode_0 = value;
}
inline static int32_t get_offset_of_s_OriginalID_1() { return static_cast<int32_t>(offsetof(GUIUtility_t943494CC50E876A4A08ECD471C06E23D52E5E5BA_StaticFields, ___s_OriginalID_1)); }
inline int32_t get_s_OriginalID_1() const { return ___s_OriginalID_1; }
inline int32_t* get_address_of_s_OriginalID_1() { return &___s_OriginalID_1; }
inline void set_s_OriginalID_1(int32_t value)
{
___s_OriginalID_1 = value;
}
inline static int32_t get_offset_of_takeCapture_2() { return static_cast<int32_t>(offsetof(GUIUtility_t943494CC50E876A4A08ECD471C06E23D52E5E5BA_StaticFields, ___takeCapture_2)); }
inline Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * get_takeCapture_2() const { return ___takeCapture_2; }
inline Action_t591D2A86165F896B4B800BB5C25CE18672A55579 ** get_address_of_takeCapture_2() { return &___takeCapture_2; }
inline void set_takeCapture_2(Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * value)
{
___takeCapture_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___takeCapture_2), (void*)value);
}
inline static int32_t get_offset_of_releaseCapture_3() { return static_cast<int32_t>(offsetof(GUIUtility_t943494CC50E876A4A08ECD471C06E23D52E5E5BA_StaticFields, ___releaseCapture_3)); }
inline Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * get_releaseCapture_3() const { return ___releaseCapture_3; }
inline Action_t591D2A86165F896B4B800BB5C25CE18672A55579 ** get_address_of_releaseCapture_3() { return &___releaseCapture_3; }
inline void set_releaseCapture_3(Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * value)
{
___releaseCapture_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___releaseCapture_3), (void*)value);
}
inline static int32_t get_offset_of_processEvent_4() { return static_cast<int32_t>(offsetof(GUIUtility_t943494CC50E876A4A08ECD471C06E23D52E5E5BA_StaticFields, ___processEvent_4)); }
inline Func_3_tBD99633D8A18C43CC528ECE3F77E2F69900048A7 * get_processEvent_4() const { return ___processEvent_4; }
inline Func_3_tBD99633D8A18C43CC528ECE3F77E2F69900048A7 ** get_address_of_processEvent_4() { return &___processEvent_4; }
inline void set_processEvent_4(Func_3_tBD99633D8A18C43CC528ECE3F77E2F69900048A7 * value)
{
___processEvent_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___processEvent_4), (void*)value);
}
inline static int32_t get_offset_of_endContainerGUIFromException_5() { return static_cast<int32_t>(offsetof(GUIUtility_t943494CC50E876A4A08ECD471C06E23D52E5E5BA_StaticFields, ___endContainerGUIFromException_5)); }
inline Func_2_tC816C5FDED4A7372C449E7660CAB9F94E2AC12F8 * get_endContainerGUIFromException_5() const { return ___endContainerGUIFromException_5; }
inline Func_2_tC816C5FDED4A7372C449E7660CAB9F94E2AC12F8 ** get_address_of_endContainerGUIFromException_5() { return &___endContainerGUIFromException_5; }
inline void set_endContainerGUIFromException_5(Func_2_tC816C5FDED4A7372C449E7660CAB9F94E2AC12F8 * value)
{
___endContainerGUIFromException_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___endContainerGUIFromException_5), (void*)value);
}
inline static int32_t get_offset_of_guiChanged_6() { return static_cast<int32_t>(offsetof(GUIUtility_t943494CC50E876A4A08ECD471C06E23D52E5E5BA_StaticFields, ___guiChanged_6)); }
inline Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * get_guiChanged_6() const { return ___guiChanged_6; }
inline Action_t591D2A86165F896B4B800BB5C25CE18672A55579 ** get_address_of_guiChanged_6() { return &___guiChanged_6; }
inline void set_guiChanged_6(Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * value)
{
___guiChanged_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___guiChanged_6), (void*)value);
}
inline static int32_t get_offset_of_U3CguiIsExitingU3Ek__BackingField_7() { return static_cast<int32_t>(offsetof(GUIUtility_t943494CC50E876A4A08ECD471C06E23D52E5E5BA_StaticFields, ___U3CguiIsExitingU3Ek__BackingField_7)); }
inline bool get_U3CguiIsExitingU3Ek__BackingField_7() const { return ___U3CguiIsExitingU3Ek__BackingField_7; }
inline bool* get_address_of_U3CguiIsExitingU3Ek__BackingField_7() { return &___U3CguiIsExitingU3Ek__BackingField_7; }
inline void set_U3CguiIsExitingU3Ek__BackingField_7(bool value)
{
___U3CguiIsExitingU3Ek__BackingField_7 = value;
}
};
// UnityEngine.ScrollViewState
struct ScrollViewState_t738AAD89973B4E764B6F977945263C24A881428E : public RuntimeObject
{
public:
public:
};
// UnityEngine.SliderState
struct SliderState_t6081D6F2CF6D0F1A13B2A2D255671B4053EC52CB : public RuntimeObject
{
public:
public:
};
// 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((void**)(&___TrueString_5), (void*)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((void**)(&___FalseString_6), (void*)value);
}
};
// 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((void**)(&___categoryForLatin1_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Object,System.Object>
struct Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::dictionary
Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * ___dictionary_0;
// System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::index
int32_t ___index_1;
// System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::version
int32_t ___version_2;
// TValue System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::currentValue
RuntimeObject * ___currentValue_3;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F, ___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((void**)(&___dictionary_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F, ___index_1)); }
inline int32_t get_index_1() const { return ___index_1; }
inline int32_t* get_address_of_index_1() { return &___index_1; }
inline void set_index_1(int32_t value)
{
___index_1 = value;
}
inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F, ___version_2)); }
inline int32_t get_version_2() const { return ___version_2; }
inline int32_t* get_address_of_version_2() { return &___version_2; }
inline void set_version_2(int32_t value)
{
___version_2 = value;
}
inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F, ___currentValue_3)); }
inline RuntimeObject * get_currentValue_3() const { return ___currentValue_3; }
inline RuntimeObject ** get_address_of_currentValue_3() { return &___currentValue_3; }
inline void set_currentValue_3(RuntimeObject * value)
{
___currentValue_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___currentValue_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.String,UnityEngine.GUIStyle>
struct Enumerator_t7CFB6C06FEABB756D0C0A1BA202A13F5091958A6
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::dictionary
Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A * ___dictionary_0;
// System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::index
int32_t ___index_1;
// System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::version
int32_t ___version_2;
// TValue System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::currentValue
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___currentValue_3;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t7CFB6C06FEABB756D0C0A1BA202A13F5091958A6, ___dictionary_0)); }
inline Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t7CFB6C06FEABB756D0C0A1BA202A13F5091958A6, ___index_1)); }
inline int32_t get_index_1() const { return ___index_1; }
inline int32_t* get_address_of_index_1() { return &___index_1; }
inline void set_index_1(int32_t value)
{
___index_1 = value;
}
inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t7CFB6C06FEABB756D0C0A1BA202A13F5091958A6, ___version_2)); }
inline int32_t get_version_2() const { return ___version_2; }
inline int32_t* get_address_of_version_2() { return &___version_2; }
inline void set_version_2(int32_t value)
{
___version_2 = value;
}
inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_t7CFB6C06FEABB756D0C0A1BA202A13F5091958A6, ___currentValue_3)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_currentValue_3() const { return ___currentValue_3; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_currentValue_3() { return &___currentValue_3; }
inline void set_currentValue_3(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___currentValue_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___currentValue_3), (void*)value);
}
};
// System.Collections.Generic.List`1_Enumerator<System.Object>
struct Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list
List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * ___list_0;
// System.Int32 System.Collections.Generic.List`1_Enumerator::index
int32_t ___index_1;
// System.Int32 System.Collections.Generic.List`1_Enumerator::version
int32_t ___version_2;
// T System.Collections.Generic.List`1_Enumerator::current
RuntimeObject * ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD, ___list_0)); }
inline List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * get_list_0() const { return ___list_0; }
inline List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD, ___index_1)); }
inline int32_t get_index_1() const { return ___index_1; }
inline int32_t* get_address_of_index_1() { return &___index_1; }
inline void set_index_1(int32_t value)
{
___index_1 = value;
}
inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD, ___version_2)); }
inline int32_t get_version_2() const { return ___version_2; }
inline int32_t* get_address_of_version_2() { return &___version_2; }
inline void set_version_2(int32_t value)
{
___version_2 = value;
}
inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD, ___current_3)); }
inline RuntimeObject * get_current_3() const { return ___current_3; }
inline RuntimeObject ** get_address_of_current_3() { return &___current_3; }
inline void set_current_3(RuntimeObject * value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value);
}
};
// System.Collections.Generic.List`1_Enumerator<UnityEngine.GUILayoutEntry>
struct Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list
List_1_t046427F3923444CF746C550FD96A3D0E4189D273 * ___list_0;
// System.Int32 System.Collections.Generic.List`1_Enumerator::index
int32_t ___index_1;
// System.Int32 System.Collections.Generic.List`1_Enumerator::version
int32_t ___version_2;
// T System.Collections.Generic.List`1_Enumerator::current
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587, ___list_0)); }
inline List_1_t046427F3923444CF746C550FD96A3D0E4189D273 * get_list_0() const { return ___list_0; }
inline List_1_t046427F3923444CF746C550FD96A3D0E4189D273 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_t046427F3923444CF746C550FD96A3D0E4189D273 * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587, ___index_1)); }
inline int32_t get_index_1() const { return ___index_1; }
inline int32_t* get_address_of_index_1() { return &___index_1; }
inline void set_index_1(int32_t value)
{
___index_1 = value;
}
inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587, ___version_2)); }
inline int32_t get_version_2() const { return ___version_2; }
inline int32_t* get_address_of_version_2() { return &___version_2; }
inline void set_version_2(int32_t value)
{
___version_2 = value;
}
inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587, ___current_3)); }
inline GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * get_current_3() const { return ___current_3; }
inline GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 ** get_address_of_current_3() { return &___current_3; }
inline void set_current_3(GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value);
}
};
// 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((void**)(&___DaysToMonth365_29), (void*)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((void**)(&___DaysToMonth366_30), (void*)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;
}
};
// 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((void**)(&___enumSeperatorCharArray_0), (void*)value);
}
};
// 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
{
};
// 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;
}
};
// 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;
}
};
// System.Reflection.MethodBase
struct MethodBase_t : public MemberInfo_t
{
public:
public:
};
// System.Single
struct Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1
{
public:
// System.Single System.Single::m_value
float ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, ___m_value_0)); }
inline float get_m_value_0() const { return ___m_value_0; }
inline float* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(float value)
{
___m_value_0 = value;
}
};
// System.Void
struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017
{
public:
union
{
struct
{
};
uint8_t Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017__padding[1];
};
public:
};
// UnityEngine.Color
struct Color_t119BCA590009762C7223FDD3AF9706653AC84ED2
{
public:
// System.Single UnityEngine.Color::r
float ___r_0;
// System.Single UnityEngine.Color::g
float ___g_1;
// System.Single UnityEngine.Color::b
float ___b_2;
// System.Single UnityEngine.Color::a
float ___a_3;
public:
inline static int32_t get_offset_of_r_0() { return static_cast<int32_t>(offsetof(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, ___r_0)); }
inline float get_r_0() const { return ___r_0; }
inline float* get_address_of_r_0() { return &___r_0; }
inline void set_r_0(float value)
{
___r_0 = value;
}
inline static int32_t get_offset_of_g_1() { return static_cast<int32_t>(offsetof(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, ___g_1)); }
inline float get_g_1() const { return ___g_1; }
inline float* get_address_of_g_1() { return &___g_1; }
inline void set_g_1(float value)
{
___g_1 = value;
}
inline static int32_t get_offset_of_b_2() { return static_cast<int32_t>(offsetof(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, ___b_2)); }
inline float get_b_2() const { return ___b_2; }
inline float* get_address_of_b_2() { return &___b_2; }
inline void set_b_2(float value)
{
___b_2 = value;
}
inline static int32_t get_offset_of_a_3() { return static_cast<int32_t>(offsetof(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, ___a_3)); }
inline float get_a_3() const { return ___a_3; }
inline float* get_address_of_a_3() { return &___a_3; }
inline void set_a_3(float value)
{
___a_3 = value;
}
};
// UnityEngine.GUITargetAttribute
struct GUITargetAttribute_tA23DD43B1D91AF11499A0320EBAAC900A35FC4B8 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
{
public:
// System.Int32 UnityEngine.GUITargetAttribute::displayMask
int32_t ___displayMask_0;
public:
inline static int32_t get_offset_of_displayMask_0() { return static_cast<int32_t>(offsetof(GUITargetAttribute_tA23DD43B1D91AF11499A0320EBAAC900A35FC4B8, ___displayMask_0)); }
inline int32_t get_displayMask_0() const { return ___displayMask_0; }
inline int32_t* get_address_of_displayMask_0() { return &___displayMask_0; }
inline void set_displayMask_0(int32_t value)
{
___displayMask_0 = value;
}
};
// UnityEngine.Rect
struct Rect_t35B976DE901B5423C11705E156938EA27AB402CE
{
public:
// System.Single UnityEngine.Rect::m_XMin
float ___m_XMin_0;
// System.Single UnityEngine.Rect::m_YMin
float ___m_YMin_1;
// System.Single UnityEngine.Rect::m_Width
float ___m_Width_2;
// System.Single UnityEngine.Rect::m_Height
float ___m_Height_3;
public:
inline static int32_t get_offset_of_m_XMin_0() { return static_cast<int32_t>(offsetof(Rect_t35B976DE901B5423C11705E156938EA27AB402CE, ___m_XMin_0)); }
inline float get_m_XMin_0() const { return ___m_XMin_0; }
inline float* get_address_of_m_XMin_0() { return &___m_XMin_0; }
inline void set_m_XMin_0(float value)
{
___m_XMin_0 = value;
}
inline static int32_t get_offset_of_m_YMin_1() { return static_cast<int32_t>(offsetof(Rect_t35B976DE901B5423C11705E156938EA27AB402CE, ___m_YMin_1)); }
inline float get_m_YMin_1() const { return ___m_YMin_1; }
inline float* get_address_of_m_YMin_1() { return &___m_YMin_1; }
inline void set_m_YMin_1(float value)
{
___m_YMin_1 = value;
}
inline static int32_t get_offset_of_m_Width_2() { return static_cast<int32_t>(offsetof(Rect_t35B976DE901B5423C11705E156938EA27AB402CE, ___m_Width_2)); }
inline float get_m_Width_2() const { return ___m_Width_2; }
inline float* get_address_of_m_Width_2() { return &___m_Width_2; }
inline void set_m_Width_2(float value)
{
___m_Width_2 = value;
}
inline static int32_t get_offset_of_m_Height_3() { return static_cast<int32_t>(offsetof(Rect_t35B976DE901B5423C11705E156938EA27AB402CE, ___m_Height_3)); }
inline float get_m_Height_3() const { return ___m_Height_3; }
inline float* get_address_of_m_Height_3() { return &___m_Height_3; }
inline void set_m_Height_3(float value)
{
___m_Height_3 = value;
}
};
// UnityEngine.Vector2
struct Vector2_tA85D2DD88578276CA8A8796756458277E72D073D
{
public:
// System.Single UnityEngine.Vector2::x
float ___x_0;
// System.Single UnityEngine.Vector2::y
float ___y_1;
public:
inline static int32_t get_offset_of_x_0() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D, ___x_0)); }
inline float get_x_0() const { return ___x_0; }
inline float* get_address_of_x_0() { return &___x_0; }
inline void set_x_0(float value)
{
___x_0 = value;
}
inline static int32_t get_offset_of_y_1() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D, ___y_1)); }
inline float get_y_1() const { return ___y_1; }
inline float* get_address_of_y_1() { return &___y_1; }
inline void set_y_1(float value)
{
___y_1 = value;
}
};
struct Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields
{
public:
// UnityEngine.Vector2 UnityEngine.Vector2::zeroVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___zeroVector_2;
// UnityEngine.Vector2 UnityEngine.Vector2::oneVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___oneVector_3;
// UnityEngine.Vector2 UnityEngine.Vector2::upVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___upVector_4;
// UnityEngine.Vector2 UnityEngine.Vector2::downVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___downVector_5;
// UnityEngine.Vector2 UnityEngine.Vector2::leftVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___leftVector_6;
// UnityEngine.Vector2 UnityEngine.Vector2::rightVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___rightVector_7;
// UnityEngine.Vector2 UnityEngine.Vector2::positiveInfinityVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___positiveInfinityVector_8;
// UnityEngine.Vector2 UnityEngine.Vector2::negativeInfinityVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___negativeInfinityVector_9;
public:
inline static int32_t get_offset_of_zeroVector_2() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___zeroVector_2)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_zeroVector_2() const { return ___zeroVector_2; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_zeroVector_2() { return &___zeroVector_2; }
inline void set_zeroVector_2(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___zeroVector_2 = value;
}
inline static int32_t get_offset_of_oneVector_3() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___oneVector_3)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_oneVector_3() const { return ___oneVector_3; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_oneVector_3() { return &___oneVector_3; }
inline void set_oneVector_3(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___oneVector_3 = value;
}
inline static int32_t get_offset_of_upVector_4() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___upVector_4)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_upVector_4() const { return ___upVector_4; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_upVector_4() { return &___upVector_4; }
inline void set_upVector_4(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___upVector_4 = value;
}
inline static int32_t get_offset_of_downVector_5() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___downVector_5)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_downVector_5() const { return ___downVector_5; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_downVector_5() { return &___downVector_5; }
inline void set_downVector_5(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___downVector_5 = value;
}
inline static int32_t get_offset_of_leftVector_6() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___leftVector_6)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_leftVector_6() const { return ___leftVector_6; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_leftVector_6() { return &___leftVector_6; }
inline void set_leftVector_6(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___leftVector_6 = value;
}
inline static int32_t get_offset_of_rightVector_7() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___rightVector_7)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_rightVector_7() const { return ___rightVector_7; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_rightVector_7() { return &___rightVector_7; }
inline void set_rightVector_7(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___rightVector_7 = value;
}
inline static int32_t get_offset_of_positiveInfinityVector_8() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___positiveInfinityVector_8)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_positiveInfinityVector_8() const { return ___positiveInfinityVector_8; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_positiveInfinityVector_8() { return &___positiveInfinityVector_8; }
inline void set_positiveInfinityVector_8(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___positiveInfinityVector_8 = value;
}
inline static int32_t get_offset_of_negativeInfinityVector_9() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___negativeInfinityVector_9)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_negativeInfinityVector_9() const { return ___negativeInfinityVector_9; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_negativeInfinityVector_9() { return &___negativeInfinityVector_9; }
inline void set_negativeInfinityVector_9(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___negativeInfinityVector_9 = value;
}
};
// UnityEngineInternal.GenericStack
struct GenericStack_tC59D21E8DBC50F3C608479C942200AC44CA2D5BC : public Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643
{
public:
public:
};
// System.Delegate
struct Delegate_t : public RuntimeObject
{
public:
// System.IntPtr System.Delegate::method_ptr
Il2CppMethodPointer ___method_ptr_0;
// System.IntPtr System.Delegate::invoke_impl
intptr_t ___invoke_impl_1;
// System.Object System.Delegate::m_target
RuntimeObject * ___m_target_2;
// System.IntPtr System.Delegate::method
intptr_t ___method_3;
// System.IntPtr System.Delegate::delegate_trampoline
intptr_t ___delegate_trampoline_4;
// System.IntPtr System.Delegate::extra_arg
intptr_t ___extra_arg_5;
// System.IntPtr System.Delegate::method_code
intptr_t ___method_code_6;
// System.Reflection.MethodInfo System.Delegate::method_info
MethodInfo_t * ___method_info_7;
// System.Reflection.MethodInfo System.Delegate::original_method_info
MethodInfo_t * ___original_method_info_8;
// System.DelegateData System.Delegate::data
DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9;
// System.Boolean System.Delegate::method_is_virtual
bool ___method_is_virtual_10;
public:
inline static int32_t get_offset_of_method_ptr_0() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_ptr_0)); }
inline Il2CppMethodPointer get_method_ptr_0() const { return ___method_ptr_0; }
inline Il2CppMethodPointer* get_address_of_method_ptr_0() { return &___method_ptr_0; }
inline void set_method_ptr_0(Il2CppMethodPointer value)
{
___method_ptr_0 = value;
}
inline static int32_t get_offset_of_invoke_impl_1() { return static_cast<int32_t>(offsetof(Delegate_t, ___invoke_impl_1)); }
inline intptr_t get_invoke_impl_1() const { return ___invoke_impl_1; }
inline intptr_t* get_address_of_invoke_impl_1() { return &___invoke_impl_1; }
inline void set_invoke_impl_1(intptr_t value)
{
___invoke_impl_1 = value;
}
inline static int32_t get_offset_of_m_target_2() { return static_cast<int32_t>(offsetof(Delegate_t, ___m_target_2)); }
inline RuntimeObject * get_m_target_2() const { return ___m_target_2; }
inline RuntimeObject ** get_address_of_m_target_2() { return &___m_target_2; }
inline void set_m_target_2(RuntimeObject * value)
{
___m_target_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_target_2), (void*)value);
}
inline static int32_t get_offset_of_method_3() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_3)); }
inline intptr_t get_method_3() const { return ___method_3; }
inline intptr_t* get_address_of_method_3() { return &___method_3; }
inline void set_method_3(intptr_t value)
{
___method_3 = value;
}
inline static int32_t get_offset_of_delegate_trampoline_4() { return static_cast<int32_t>(offsetof(Delegate_t, ___delegate_trampoline_4)); }
inline intptr_t get_delegate_trampoline_4() const { return ___delegate_trampoline_4; }
inline intptr_t* get_address_of_delegate_trampoline_4() { return &___delegate_trampoline_4; }
inline void set_delegate_trampoline_4(intptr_t value)
{
___delegate_trampoline_4 = value;
}
inline static int32_t get_offset_of_extra_arg_5() { return static_cast<int32_t>(offsetof(Delegate_t, ___extra_arg_5)); }
inline intptr_t get_extra_arg_5() const { return ___extra_arg_5; }
inline intptr_t* get_address_of_extra_arg_5() { return &___extra_arg_5; }
inline void set_extra_arg_5(intptr_t value)
{
___extra_arg_5 = value;
}
inline static int32_t get_offset_of_method_code_6() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_code_6)); }
inline intptr_t get_method_code_6() const { return ___method_code_6; }
inline intptr_t* get_address_of_method_code_6() { return &___method_code_6; }
inline void set_method_code_6(intptr_t value)
{
___method_code_6 = value;
}
inline static int32_t get_offset_of_method_info_7() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_info_7)); }
inline MethodInfo_t * get_method_info_7() const { return ___method_info_7; }
inline MethodInfo_t ** get_address_of_method_info_7() { return &___method_info_7; }
inline void set_method_info_7(MethodInfo_t * value)
{
___method_info_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___method_info_7), (void*)value);
}
inline static int32_t get_offset_of_original_method_info_8() { return static_cast<int32_t>(offsetof(Delegate_t, ___original_method_info_8)); }
inline MethodInfo_t * get_original_method_info_8() const { return ___original_method_info_8; }
inline MethodInfo_t ** get_address_of_original_method_info_8() { return &___original_method_info_8; }
inline void set_original_method_info_8(MethodInfo_t * value)
{
___original_method_info_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___original_method_info_8), (void*)value);
}
inline static int32_t get_offset_of_data_9() { return static_cast<int32_t>(offsetof(Delegate_t, ___data_9)); }
inline DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * get_data_9() const { return ___data_9; }
inline DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE ** get_address_of_data_9() { return &___data_9; }
inline void set_data_9(DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * value)
{
___data_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___data_9), (void*)value);
}
inline static int32_t get_offset_of_method_is_virtual_10() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_is_virtual_10)); }
inline bool get_method_is_virtual_10() const { return ___method_is_virtual_10; }
inline bool* get_address_of_method_is_virtual_10() { return &___method_is_virtual_10; }
inline void set_method_is_virtual_10(bool value)
{
___method_is_virtual_10 = value;
}
};
// Native definition for P/Invoke marshalling of System.Delegate
struct Delegate_t_marshaled_pinvoke
{
intptr_t ___method_ptr_0;
intptr_t ___invoke_impl_1;
Il2CppIUnknown* ___m_target_2;
intptr_t ___method_3;
intptr_t ___delegate_trampoline_4;
intptr_t ___extra_arg_5;
intptr_t ___method_code_6;
MethodInfo_t * ___method_info_7;
MethodInfo_t * ___original_method_info_8;
DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9;
int32_t ___method_is_virtual_10;
};
// Native definition for COM marshalling of System.Delegate
struct Delegate_t_marshaled_com
{
intptr_t ___method_ptr_0;
intptr_t ___invoke_impl_1;
Il2CppIUnknown* ___m_target_2;
intptr_t ___method_3;
intptr_t ___delegate_trampoline_4;
intptr_t ___extra_arg_5;
intptr_t ___method_code_6;
MethodInfo_t * ___method_info_7;
MethodInfo_t * ___original_method_info_8;
DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9;
int32_t ___method_is_virtual_10;
};
// 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((void**)(&____className_1), (void*)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((void**)(&____message_2), (void*)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((void**)(&____data_3), (void*)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((void**)(&____innerException_4), (void*)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((void**)(&____helpURL_5), (void*)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((void**)(&____stackTrace_6), (void*)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((void**)(&____stackTraceString_7), (void*)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((void**)(&____remoteStackTraceString_8), (void*)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((void**)(&____dynamicMethods_10), (void*)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((void**)(&____source_12), (void*)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((void**)(&____safeSerializationManager_13), (void*)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((void**)(&___captured_traces_14), (void*)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((void**)(&___native_trace_ips_15), (void*)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((void**)(&___s_EDILock_0), (void*)value);
}
};
// 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;
Il2CppSafeArray/*NONE*/* ___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;
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
};
// 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;
}
};
// System.Reflection.MethodInfo
struct MethodInfo_t : public MethodBase_t
{
public:
public:
};
// 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;
}
};
// UnityEngine.Event
struct Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.Event::m_Ptr
intptr_t ___m_Ptr_0;
public:
inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(Event_t187FF6A6B357447B83EC2064823EE0AEC5263210, ___m_Ptr_0)); }
inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; }
inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; }
inline void set_m_Ptr_0(intptr_t value)
{
___m_Ptr_0 = value;
}
};
struct Event_t187FF6A6B357447B83EC2064823EE0AEC5263210_StaticFields
{
public:
// UnityEngine.Event UnityEngine.Event::s_Current
Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * ___s_Current_1;
// UnityEngine.Event UnityEngine.Event::s_MasterEvent
Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * ___s_MasterEvent_2;
public:
inline static int32_t get_offset_of_s_Current_1() { return static_cast<int32_t>(offsetof(Event_t187FF6A6B357447B83EC2064823EE0AEC5263210_StaticFields, ___s_Current_1)); }
inline Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * get_s_Current_1() const { return ___s_Current_1; }
inline Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 ** get_address_of_s_Current_1() { return &___s_Current_1; }
inline void set_s_Current_1(Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * value)
{
___s_Current_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_Current_1), (void*)value);
}
inline static int32_t get_offset_of_s_MasterEvent_2() { return static_cast<int32_t>(offsetof(Event_t187FF6A6B357447B83EC2064823EE0AEC5263210_StaticFields, ___s_MasterEvent_2)); }
inline Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * get_s_MasterEvent_2() const { return ___s_MasterEvent_2; }
inline Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 ** get_address_of_s_MasterEvent_2() { return &___s_MasterEvent_2; }
inline void set_s_MasterEvent_2(Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * value)
{
___s_MasterEvent_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_MasterEvent_2), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Event
struct Event_t187FF6A6B357447B83EC2064823EE0AEC5263210_marshaled_pinvoke
{
intptr_t ___m_Ptr_0;
};
// Native definition for COM marshalling of UnityEngine.Event
struct Event_t187FF6A6B357447B83EC2064823EE0AEC5263210_marshaled_com
{
intptr_t ___m_Ptr_0;
};
// UnityEngine.EventModifiers
struct EventModifiers_tC34E3018F3697001F894187AF6E9E63D7E203061
{
public:
// System.Int32 UnityEngine.EventModifiers::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EventModifiers_tC34E3018F3697001F894187AF6E9E63D7E203061, ___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;
}
};
// UnityEngine.EventType
struct EventType_t3D3937E705A4506226002DAB22071B7B181DA57B
{
public:
// System.Int32 UnityEngine.EventType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EventType_t3D3937E705A4506226002DAB22071B7B181DA57B, ___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;
}
};
// UnityEngine.GUI
struct GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA : public RuntimeObject
{
public:
public:
};
struct GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_StaticFields
{
public:
// System.Int32 UnityEngine.GUI::s_HotTextField
int32_t ___s_HotTextField_0;
// System.Int32 UnityEngine.GUI::s_BoxHash
int32_t ___s_BoxHash_1;
// System.Int32 UnityEngine.GUI::s_ButonHash
int32_t ___s_ButonHash_2;
// System.Int32 UnityEngine.GUI::s_RepeatButtonHash
int32_t ___s_RepeatButtonHash_3;
// System.Int32 UnityEngine.GUI::s_ToggleHash
int32_t ___s_ToggleHash_4;
// System.Int32 UnityEngine.GUI::s_ButtonGridHash
int32_t ___s_ButtonGridHash_5;
// System.Int32 UnityEngine.GUI::s_SliderHash
int32_t ___s_SliderHash_6;
// System.Int32 UnityEngine.GUI::s_BeginGroupHash
int32_t ___s_BeginGroupHash_7;
// System.Int32 UnityEngine.GUI::s_ScrollviewHash
int32_t ___s_ScrollviewHash_8;
// System.DateTime UnityEngine.GUI::<nextScrollStepTime>k__BackingField
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___U3CnextScrollStepTimeU3Ek__BackingField_9;
// UnityEngine.GUISkin UnityEngine.GUI::s_Skin
GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * ___s_Skin_10;
// UnityEngineInternal.GenericStack UnityEngine.GUI::<scrollViewStates>k__BackingField
GenericStack_tC59D21E8DBC50F3C608479C942200AC44CA2D5BC * ___U3CscrollViewStatesU3Ek__BackingField_11;
public:
inline static int32_t get_offset_of_s_HotTextField_0() { return static_cast<int32_t>(offsetof(GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_StaticFields, ___s_HotTextField_0)); }
inline int32_t get_s_HotTextField_0() const { return ___s_HotTextField_0; }
inline int32_t* get_address_of_s_HotTextField_0() { return &___s_HotTextField_0; }
inline void set_s_HotTextField_0(int32_t value)
{
___s_HotTextField_0 = value;
}
inline static int32_t get_offset_of_s_BoxHash_1() { return static_cast<int32_t>(offsetof(GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_StaticFields, ___s_BoxHash_1)); }
inline int32_t get_s_BoxHash_1() const { return ___s_BoxHash_1; }
inline int32_t* get_address_of_s_BoxHash_1() { return &___s_BoxHash_1; }
inline void set_s_BoxHash_1(int32_t value)
{
___s_BoxHash_1 = value;
}
inline static int32_t get_offset_of_s_ButonHash_2() { return static_cast<int32_t>(offsetof(GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_StaticFields, ___s_ButonHash_2)); }
inline int32_t get_s_ButonHash_2() const { return ___s_ButonHash_2; }
inline int32_t* get_address_of_s_ButonHash_2() { return &___s_ButonHash_2; }
inline void set_s_ButonHash_2(int32_t value)
{
___s_ButonHash_2 = value;
}
inline static int32_t get_offset_of_s_RepeatButtonHash_3() { return static_cast<int32_t>(offsetof(GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_StaticFields, ___s_RepeatButtonHash_3)); }
inline int32_t get_s_RepeatButtonHash_3() const { return ___s_RepeatButtonHash_3; }
inline int32_t* get_address_of_s_RepeatButtonHash_3() { return &___s_RepeatButtonHash_3; }
inline void set_s_RepeatButtonHash_3(int32_t value)
{
___s_RepeatButtonHash_3 = value;
}
inline static int32_t get_offset_of_s_ToggleHash_4() { return static_cast<int32_t>(offsetof(GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_StaticFields, ___s_ToggleHash_4)); }
inline int32_t get_s_ToggleHash_4() const { return ___s_ToggleHash_4; }
inline int32_t* get_address_of_s_ToggleHash_4() { return &___s_ToggleHash_4; }
inline void set_s_ToggleHash_4(int32_t value)
{
___s_ToggleHash_4 = value;
}
inline static int32_t get_offset_of_s_ButtonGridHash_5() { return static_cast<int32_t>(offsetof(GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_StaticFields, ___s_ButtonGridHash_5)); }
inline int32_t get_s_ButtonGridHash_5() const { return ___s_ButtonGridHash_5; }
inline int32_t* get_address_of_s_ButtonGridHash_5() { return &___s_ButtonGridHash_5; }
inline void set_s_ButtonGridHash_5(int32_t value)
{
___s_ButtonGridHash_5 = value;
}
inline static int32_t get_offset_of_s_SliderHash_6() { return static_cast<int32_t>(offsetof(GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_StaticFields, ___s_SliderHash_6)); }
inline int32_t get_s_SliderHash_6() const { return ___s_SliderHash_6; }
inline int32_t* get_address_of_s_SliderHash_6() { return &___s_SliderHash_6; }
inline void set_s_SliderHash_6(int32_t value)
{
___s_SliderHash_6 = value;
}
inline static int32_t get_offset_of_s_BeginGroupHash_7() { return static_cast<int32_t>(offsetof(GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_StaticFields, ___s_BeginGroupHash_7)); }
inline int32_t get_s_BeginGroupHash_7() const { return ___s_BeginGroupHash_7; }
inline int32_t* get_address_of_s_BeginGroupHash_7() { return &___s_BeginGroupHash_7; }
inline void set_s_BeginGroupHash_7(int32_t value)
{
___s_BeginGroupHash_7 = value;
}
inline static int32_t get_offset_of_s_ScrollviewHash_8() { return static_cast<int32_t>(offsetof(GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_StaticFields, ___s_ScrollviewHash_8)); }
inline int32_t get_s_ScrollviewHash_8() const { return ___s_ScrollviewHash_8; }
inline int32_t* get_address_of_s_ScrollviewHash_8() { return &___s_ScrollviewHash_8; }
inline void set_s_ScrollviewHash_8(int32_t value)
{
___s_ScrollviewHash_8 = value;
}
inline static int32_t get_offset_of_U3CnextScrollStepTimeU3Ek__BackingField_9() { return static_cast<int32_t>(offsetof(GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_StaticFields, ___U3CnextScrollStepTimeU3Ek__BackingField_9)); }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_U3CnextScrollStepTimeU3Ek__BackingField_9() const { return ___U3CnextScrollStepTimeU3Ek__BackingField_9; }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_U3CnextScrollStepTimeU3Ek__BackingField_9() { return &___U3CnextScrollStepTimeU3Ek__BackingField_9; }
inline void set_U3CnextScrollStepTimeU3Ek__BackingField_9(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value)
{
___U3CnextScrollStepTimeU3Ek__BackingField_9 = value;
}
inline static int32_t get_offset_of_s_Skin_10() { return static_cast<int32_t>(offsetof(GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_StaticFields, ___s_Skin_10)); }
inline GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * get_s_Skin_10() const { return ___s_Skin_10; }
inline GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 ** get_address_of_s_Skin_10() { return &___s_Skin_10; }
inline void set_s_Skin_10(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * value)
{
___s_Skin_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_Skin_10), (void*)value);
}
inline static int32_t get_offset_of_U3CscrollViewStatesU3Ek__BackingField_11() { return static_cast<int32_t>(offsetof(GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_StaticFields, ___U3CscrollViewStatesU3Ek__BackingField_11)); }
inline GenericStack_tC59D21E8DBC50F3C608479C942200AC44CA2D5BC * get_U3CscrollViewStatesU3Ek__BackingField_11() const { return ___U3CscrollViewStatesU3Ek__BackingField_11; }
inline GenericStack_tC59D21E8DBC50F3C608479C942200AC44CA2D5BC ** get_address_of_U3CscrollViewStatesU3Ek__BackingField_11() { return &___U3CscrollViewStatesU3Ek__BackingField_11; }
inline void set_U3CscrollViewStatesU3Ek__BackingField_11(GenericStack_tC59D21E8DBC50F3C608479C942200AC44CA2D5BC * value)
{
___U3CscrollViewStatesU3Ek__BackingField_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CscrollViewStatesU3Ek__BackingField_11), (void*)value);
}
};
// UnityEngine.GUILayoutEntry
struct GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 : public RuntimeObject
{
public:
// System.Single UnityEngine.GUILayoutEntry::minWidth
float ___minWidth_0;
// System.Single UnityEngine.GUILayoutEntry::maxWidth
float ___maxWidth_1;
// System.Single UnityEngine.GUILayoutEntry::minHeight
float ___minHeight_2;
// System.Single UnityEngine.GUILayoutEntry::maxHeight
float ___maxHeight_3;
// UnityEngine.Rect UnityEngine.GUILayoutEntry::rect
Rect_t35B976DE901B5423C11705E156938EA27AB402CE ___rect_4;
// System.Int32 UnityEngine.GUILayoutEntry::stretchWidth
int32_t ___stretchWidth_5;
// System.Int32 UnityEngine.GUILayoutEntry::stretchHeight
int32_t ___stretchHeight_6;
// System.Boolean UnityEngine.GUILayoutEntry::consideredForMargin
bool ___consideredForMargin_7;
// UnityEngine.GUIStyle UnityEngine.GUILayoutEntry::m_Style
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___m_Style_8;
public:
inline static int32_t get_offset_of_minWidth_0() { return static_cast<int32_t>(offsetof(GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845, ___minWidth_0)); }
inline float get_minWidth_0() const { return ___minWidth_0; }
inline float* get_address_of_minWidth_0() { return &___minWidth_0; }
inline void set_minWidth_0(float value)
{
___minWidth_0 = value;
}
inline static int32_t get_offset_of_maxWidth_1() { return static_cast<int32_t>(offsetof(GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845, ___maxWidth_1)); }
inline float get_maxWidth_1() const { return ___maxWidth_1; }
inline float* get_address_of_maxWidth_1() { return &___maxWidth_1; }
inline void set_maxWidth_1(float value)
{
___maxWidth_1 = value;
}
inline static int32_t get_offset_of_minHeight_2() { return static_cast<int32_t>(offsetof(GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845, ___minHeight_2)); }
inline float get_minHeight_2() const { return ___minHeight_2; }
inline float* get_address_of_minHeight_2() { return &___minHeight_2; }
inline void set_minHeight_2(float value)
{
___minHeight_2 = value;
}
inline static int32_t get_offset_of_maxHeight_3() { return static_cast<int32_t>(offsetof(GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845, ___maxHeight_3)); }
inline float get_maxHeight_3() const { return ___maxHeight_3; }
inline float* get_address_of_maxHeight_3() { return &___maxHeight_3; }
inline void set_maxHeight_3(float value)
{
___maxHeight_3 = value;
}
inline static int32_t get_offset_of_rect_4() { return static_cast<int32_t>(offsetof(GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845, ___rect_4)); }
inline Rect_t35B976DE901B5423C11705E156938EA27AB402CE get_rect_4() const { return ___rect_4; }
inline Rect_t35B976DE901B5423C11705E156938EA27AB402CE * get_address_of_rect_4() { return &___rect_4; }
inline void set_rect_4(Rect_t35B976DE901B5423C11705E156938EA27AB402CE value)
{
___rect_4 = value;
}
inline static int32_t get_offset_of_stretchWidth_5() { return static_cast<int32_t>(offsetof(GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845, ___stretchWidth_5)); }
inline int32_t get_stretchWidth_5() const { return ___stretchWidth_5; }
inline int32_t* get_address_of_stretchWidth_5() { return &___stretchWidth_5; }
inline void set_stretchWidth_5(int32_t value)
{
___stretchWidth_5 = value;
}
inline static int32_t get_offset_of_stretchHeight_6() { return static_cast<int32_t>(offsetof(GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845, ___stretchHeight_6)); }
inline int32_t get_stretchHeight_6() const { return ___stretchHeight_6; }
inline int32_t* get_address_of_stretchHeight_6() { return &___stretchHeight_6; }
inline void set_stretchHeight_6(int32_t value)
{
___stretchHeight_6 = value;
}
inline static int32_t get_offset_of_consideredForMargin_7() { return static_cast<int32_t>(offsetof(GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845, ___consideredForMargin_7)); }
inline bool get_consideredForMargin_7() const { return ___consideredForMargin_7; }
inline bool* get_address_of_consideredForMargin_7() { return &___consideredForMargin_7; }
inline void set_consideredForMargin_7(bool value)
{
___consideredForMargin_7 = value;
}
inline static int32_t get_offset_of_m_Style_8() { return static_cast<int32_t>(offsetof(GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845, ___m_Style_8)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_m_Style_8() const { return ___m_Style_8; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_m_Style_8() { return &___m_Style_8; }
inline void set_m_Style_8(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___m_Style_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Style_8), (void*)value);
}
};
struct GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845_StaticFields
{
public:
// UnityEngine.Rect UnityEngine.GUILayoutEntry::kDummyRect
Rect_t35B976DE901B5423C11705E156938EA27AB402CE ___kDummyRect_9;
// System.Int32 UnityEngine.GUILayoutEntry::indent
int32_t ___indent_10;
public:
inline static int32_t get_offset_of_kDummyRect_9() { return static_cast<int32_t>(offsetof(GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845_StaticFields, ___kDummyRect_9)); }
inline Rect_t35B976DE901B5423C11705E156938EA27AB402CE get_kDummyRect_9() const { return ___kDummyRect_9; }
inline Rect_t35B976DE901B5423C11705E156938EA27AB402CE * get_address_of_kDummyRect_9() { return &___kDummyRect_9; }
inline void set_kDummyRect_9(Rect_t35B976DE901B5423C11705E156938EA27AB402CE value)
{
___kDummyRect_9 = value;
}
inline static int32_t get_offset_of_indent_10() { return static_cast<int32_t>(offsetof(GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845_StaticFields, ___indent_10)); }
inline int32_t get_indent_10() const { return ___indent_10; }
inline int32_t* get_address_of_indent_10() { return &___indent_10; }
inline void set_indent_10(int32_t value)
{
___indent_10 = value;
}
};
// UnityEngine.GUILayoutOption_Type
struct Type_t1060D19522CDA0F7C9A26733BE1E8C8E20AC1278
{
public:
// System.Int32 UnityEngine.GUILayoutOption_Type::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Type_t1060D19522CDA0F7C9A26733BE1E8C8E20AC1278, ___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;
}
};
// UnityEngine.GUILayoutUtility
struct GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E : public RuntimeObject
{
public:
public:
};
struct GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields
{
public:
// System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.GUILayoutUtility_LayoutCache> UnityEngine.GUILayoutUtility::s_StoredLayouts
Dictionary_2_t0F1A21E14D53E05B0F1D474060AC4B36995FBCA1 * ___s_StoredLayouts_0;
// System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.GUILayoutUtility_LayoutCache> UnityEngine.GUILayoutUtility::s_StoredWindows
Dictionary_2_t0F1A21E14D53E05B0F1D474060AC4B36995FBCA1 * ___s_StoredWindows_1;
// UnityEngine.GUILayoutUtility_LayoutCache UnityEngine.GUILayoutUtility::current
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * ___current_2;
// UnityEngine.Rect UnityEngine.GUILayoutUtility::kDummyRect
Rect_t35B976DE901B5423C11705E156938EA27AB402CE ___kDummyRect_3;
public:
inline static int32_t get_offset_of_s_StoredLayouts_0() { return static_cast<int32_t>(offsetof(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields, ___s_StoredLayouts_0)); }
inline Dictionary_2_t0F1A21E14D53E05B0F1D474060AC4B36995FBCA1 * get_s_StoredLayouts_0() const { return ___s_StoredLayouts_0; }
inline Dictionary_2_t0F1A21E14D53E05B0F1D474060AC4B36995FBCA1 ** get_address_of_s_StoredLayouts_0() { return &___s_StoredLayouts_0; }
inline void set_s_StoredLayouts_0(Dictionary_2_t0F1A21E14D53E05B0F1D474060AC4B36995FBCA1 * value)
{
___s_StoredLayouts_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_StoredLayouts_0), (void*)value);
}
inline static int32_t get_offset_of_s_StoredWindows_1() { return static_cast<int32_t>(offsetof(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields, ___s_StoredWindows_1)); }
inline Dictionary_2_t0F1A21E14D53E05B0F1D474060AC4B36995FBCA1 * get_s_StoredWindows_1() const { return ___s_StoredWindows_1; }
inline Dictionary_2_t0F1A21E14D53E05B0F1D474060AC4B36995FBCA1 ** get_address_of_s_StoredWindows_1() { return &___s_StoredWindows_1; }
inline void set_s_StoredWindows_1(Dictionary_2_t0F1A21E14D53E05B0F1D474060AC4B36995FBCA1 * value)
{
___s_StoredWindows_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_StoredWindows_1), (void*)value);
}
inline static int32_t get_offset_of_current_2() { return static_cast<int32_t>(offsetof(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields, ___current_2)); }
inline LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * get_current_2() const { return ___current_2; }
inline LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 ** get_address_of_current_2() { return &___current_2; }
inline void set_current_2(LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * value)
{
___current_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___current_2), (void*)value);
}
inline static int32_t get_offset_of_kDummyRect_3() { return static_cast<int32_t>(offsetof(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields, ___kDummyRect_3)); }
inline Rect_t35B976DE901B5423C11705E156938EA27AB402CE get_kDummyRect_3() const { return ___kDummyRect_3; }
inline Rect_t35B976DE901B5423C11705E156938EA27AB402CE * get_address_of_kDummyRect_3() { return &___kDummyRect_3; }
inline void set_kDummyRect_3(Rect_t35B976DE901B5423C11705E156938EA27AB402CE value)
{
___kDummyRect_3 = value;
}
};
// UnityEngine.GUISettings
struct GUISettings_tA863524720A3C984BAE56598D922F2C04DC80EF4 : public RuntimeObject
{
public:
// System.Boolean UnityEngine.GUISettings::m_DoubleClickSelectsWord
bool ___m_DoubleClickSelectsWord_0;
// System.Boolean UnityEngine.GUISettings::m_TripleClickSelectsLine
bool ___m_TripleClickSelectsLine_1;
// UnityEngine.Color UnityEngine.GUISettings::m_CursorColor
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_CursorColor_2;
// System.Single UnityEngine.GUISettings::m_CursorFlashSpeed
float ___m_CursorFlashSpeed_3;
// UnityEngine.Color UnityEngine.GUISettings::m_SelectionColor
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_SelectionColor_4;
public:
inline static int32_t get_offset_of_m_DoubleClickSelectsWord_0() { return static_cast<int32_t>(offsetof(GUISettings_tA863524720A3C984BAE56598D922F2C04DC80EF4, ___m_DoubleClickSelectsWord_0)); }
inline bool get_m_DoubleClickSelectsWord_0() const { return ___m_DoubleClickSelectsWord_0; }
inline bool* get_address_of_m_DoubleClickSelectsWord_0() { return &___m_DoubleClickSelectsWord_0; }
inline void set_m_DoubleClickSelectsWord_0(bool value)
{
___m_DoubleClickSelectsWord_0 = value;
}
inline static int32_t get_offset_of_m_TripleClickSelectsLine_1() { return static_cast<int32_t>(offsetof(GUISettings_tA863524720A3C984BAE56598D922F2C04DC80EF4, ___m_TripleClickSelectsLine_1)); }
inline bool get_m_TripleClickSelectsLine_1() const { return ___m_TripleClickSelectsLine_1; }
inline bool* get_address_of_m_TripleClickSelectsLine_1() { return &___m_TripleClickSelectsLine_1; }
inline void set_m_TripleClickSelectsLine_1(bool value)
{
___m_TripleClickSelectsLine_1 = value;
}
inline static int32_t get_offset_of_m_CursorColor_2() { return static_cast<int32_t>(offsetof(GUISettings_tA863524720A3C984BAE56598D922F2C04DC80EF4, ___m_CursorColor_2)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_m_CursorColor_2() const { return ___m_CursorColor_2; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_m_CursorColor_2() { return &___m_CursorColor_2; }
inline void set_m_CursorColor_2(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___m_CursorColor_2 = value;
}
inline static int32_t get_offset_of_m_CursorFlashSpeed_3() { return static_cast<int32_t>(offsetof(GUISettings_tA863524720A3C984BAE56598D922F2C04DC80EF4, ___m_CursorFlashSpeed_3)); }
inline float get_m_CursorFlashSpeed_3() const { return ___m_CursorFlashSpeed_3; }
inline float* get_address_of_m_CursorFlashSpeed_3() { return &___m_CursorFlashSpeed_3; }
inline void set_m_CursorFlashSpeed_3(float value)
{
___m_CursorFlashSpeed_3 = value;
}
inline static int32_t get_offset_of_m_SelectionColor_4() { return static_cast<int32_t>(offsetof(GUISettings_tA863524720A3C984BAE56598D922F2C04DC80EF4, ___m_SelectionColor_4)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_m_SelectionColor_4() const { return ___m_SelectionColor_4; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_m_SelectionColor_4() { return &___m_SelectionColor_4; }
inline void set_m_SelectionColor_4(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___m_SelectionColor_4 = value;
}
};
// UnityEngine.GUIStyleState
struct GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.GUIStyleState::m_Ptr
intptr_t ___m_Ptr_0;
// UnityEngine.GUIStyle UnityEngine.GUIStyleState::m_SourceStyle
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___m_SourceStyle_1;
public:
inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5, ___m_Ptr_0)); }
inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; }
inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; }
inline void set_m_Ptr_0(intptr_t value)
{
___m_Ptr_0 = value;
}
inline static int32_t get_offset_of_m_SourceStyle_1() { return static_cast<int32_t>(offsetof(GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5, ___m_SourceStyle_1)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_m_SourceStyle_1() const { return ___m_SourceStyle_1; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_m_SourceStyle_1() { return &___m_SourceStyle_1; }
inline void set_m_SourceStyle_1(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___m_SourceStyle_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SourceStyle_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.GUIStyleState
struct GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_pinvoke
{
intptr_t ___m_Ptr_0;
GUIStyle_t671F175A201A19166385EE3392292A5F50070572_marshaled_pinvoke* ___m_SourceStyle_1;
};
// Native definition for COM marshalling of UnityEngine.GUIStyleState
struct GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_com
{
intptr_t ___m_Ptr_0;
GUIStyle_t671F175A201A19166385EE3392292A5F50070572_marshaled_com* ___m_SourceStyle_1;
};
// UnityEngine.KeyCode
struct KeyCode_tC93EA87C5A6901160B583ADFCD3EF6726570DC3C
{
public:
// System.Int32 UnityEngine.KeyCode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(KeyCode_tC93EA87C5A6901160B583ADFCD3EF6726570DC3C, ___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;
}
};
// UnityEngine.Object
struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.Object::m_CachedPtr
intptr_t ___m_CachedPtr_0;
public:
inline static int32_t get_offset_of_m_CachedPtr_0() { return static_cast<int32_t>(offsetof(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0, ___m_CachedPtr_0)); }
inline intptr_t get_m_CachedPtr_0() const { return ___m_CachedPtr_0; }
inline intptr_t* get_address_of_m_CachedPtr_0() { return &___m_CachedPtr_0; }
inline void set_m_CachedPtr_0(intptr_t value)
{
___m_CachedPtr_0 = value;
}
};
struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_StaticFields
{
public:
// System.Int32 UnityEngine.Object::OffsetOfInstanceIDInCPlusPlusObject
int32_t ___OffsetOfInstanceIDInCPlusPlusObject_1;
public:
inline static int32_t get_offset_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return static_cast<int32_t>(offsetof(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_StaticFields, ___OffsetOfInstanceIDInCPlusPlusObject_1)); }
inline int32_t get_OffsetOfInstanceIDInCPlusPlusObject_1() const { return ___OffsetOfInstanceIDInCPlusPlusObject_1; }
inline int32_t* get_address_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return &___OffsetOfInstanceIDInCPlusPlusObject_1; }
inline void set_OffsetOfInstanceIDInCPlusPlusObject_1(int32_t value)
{
___OffsetOfInstanceIDInCPlusPlusObject_1 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Object
struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_pinvoke
{
intptr_t ___m_CachedPtr_0;
};
// Native definition for COM marshalling of UnityEngine.Object
struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_com
{
intptr_t ___m_CachedPtr_0;
};
// UnityEngine.RectOffset
struct RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.RectOffset::m_Ptr
intptr_t ___m_Ptr_0;
// System.Object UnityEngine.RectOffset::m_SourceStyle
RuntimeObject * ___m_SourceStyle_1;
public:
inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A, ___m_Ptr_0)); }
inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; }
inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; }
inline void set_m_Ptr_0(intptr_t value)
{
___m_Ptr_0 = value;
}
inline static int32_t get_offset_of_m_SourceStyle_1() { return static_cast<int32_t>(offsetof(RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A, ___m_SourceStyle_1)); }
inline RuntimeObject * get_m_SourceStyle_1() const { return ___m_SourceStyle_1; }
inline RuntimeObject ** get_address_of_m_SourceStyle_1() { return &___m_SourceStyle_1; }
inline void set_m_SourceStyle_1(RuntimeObject * value)
{
___m_SourceStyle_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SourceStyle_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.RectOffset
struct RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A_marshaled_pinvoke
{
intptr_t ___m_Ptr_0;
Il2CppIUnknown* ___m_SourceStyle_1;
};
// Native definition for COM marshalling of UnityEngine.RectOffset
struct RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A_marshaled_com
{
intptr_t ___m_Ptr_0;
Il2CppIUnknown* ___m_SourceStyle_1;
};
// UnityEngine.TextEditor_DblClickSnapping
struct DblClickSnapping_t82D31F14587749755F9CB1FF9E975DDBEF7630CE
{
public:
// System.Byte UnityEngine.TextEditor_DblClickSnapping::value__
uint8_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(DblClickSnapping_t82D31F14587749755F9CB1FF9E975DDBEF7630CE, ___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;
}
};
// UnityEngine.TouchScreenKeyboard
struct TouchScreenKeyboard_t2A69F85698E9780470181532D3F2BC903623FD90 : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.TouchScreenKeyboard::m_Ptr
intptr_t ___m_Ptr_0;
public:
inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(TouchScreenKeyboard_t2A69F85698E9780470181532D3F2BC903623FD90, ___m_Ptr_0)); }
inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; }
inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; }
inline void set_m_Ptr_0(intptr_t value)
{
___m_Ptr_0 = value;
}
};
// System.ApplicationException
struct ApplicationException_t664823C3E0D3E1E7C7FA1C0DB4E19E98E9811C74 : public Exception_t
{
public:
public:
};
// System.MulticastDelegate
struct MulticastDelegate_t : public Delegate_t
{
public:
// System.Delegate[] System.MulticastDelegate::delegates
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* ___delegates_11;
public:
inline static int32_t get_offset_of_delegates_11() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___delegates_11)); }
inline DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* get_delegates_11() const { return ___delegates_11; }
inline DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86** get_address_of_delegates_11() { return &___delegates_11; }
inline void set_delegates_11(DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* value)
{
___delegates_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___delegates_11), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
{
Delegate_t_marshaled_pinvoke** ___delegates_11;
};
// Native definition for COM marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
{
Delegate_t_marshaled_com** ___delegates_11;
};
// System.SystemException
struct SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 : public Exception_t
{
public:
public:
};
// 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((void**)(&___FilterAttribute_0), (void*)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((void**)(&___FilterName_1), (void*)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((void**)(&___FilterNameIgnoreCase_2), (void*)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((void**)(&___Missing_3), (void*)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((void**)(&___EmptyTypes_5), (void*)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((void**)(&___defaultBinder_6), (void*)value);
}
};
// UnityEngine.ExitGUIException
struct ExitGUIException_t6AD1987AE1D23E0E774F9BEA41F30AE4CE378F07 : public Exception_t
{
public:
public:
};
// UnityEngine.Font
struct Font_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26 : public Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0
{
public:
// UnityEngine.Font_FontTextureRebuildCallback UnityEngine.Font::m_FontTextureRebuildCallback
FontTextureRebuildCallback_tD700C63BB1A449E3A0464C81701E981677D3021C * ___m_FontTextureRebuildCallback_5;
public:
inline static int32_t get_offset_of_m_FontTextureRebuildCallback_5() { return static_cast<int32_t>(offsetof(Font_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26, ___m_FontTextureRebuildCallback_5)); }
inline FontTextureRebuildCallback_tD700C63BB1A449E3A0464C81701E981677D3021C * get_m_FontTextureRebuildCallback_5() const { return ___m_FontTextureRebuildCallback_5; }
inline FontTextureRebuildCallback_tD700C63BB1A449E3A0464C81701E981677D3021C ** get_address_of_m_FontTextureRebuildCallback_5() { return &___m_FontTextureRebuildCallback_5; }
inline void set_m_FontTextureRebuildCallback_5(FontTextureRebuildCallback_tD700C63BB1A449E3A0464C81701E981677D3021C * value)
{
___m_FontTextureRebuildCallback_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_FontTextureRebuildCallback_5), (void*)value);
}
};
struct Font_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26_StaticFields
{
public:
// System.Action`1<UnityEngine.Font> UnityEngine.Font::textureRebuilt
Action_1_t795662E553415ECF2DD0F8EEB9BA170C3670F37C * ___textureRebuilt_4;
public:
inline static int32_t get_offset_of_textureRebuilt_4() { return static_cast<int32_t>(offsetof(Font_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26_StaticFields, ___textureRebuilt_4)); }
inline Action_1_t795662E553415ECF2DD0F8EEB9BA170C3670F37C * get_textureRebuilt_4() const { return ___textureRebuilt_4; }
inline Action_1_t795662E553415ECF2DD0F8EEB9BA170C3670F37C ** get_address_of_textureRebuilt_4() { return &___textureRebuilt_4; }
inline void set_textureRebuilt_4(Action_1_t795662E553415ECF2DD0F8EEB9BA170C3670F37C * value)
{
___textureRebuilt_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___textureRebuilt_4), (void*)value);
}
};
// UnityEngine.GUILayoutGroup
struct GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 : public GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845
{
public:
// System.Collections.Generic.List`1<UnityEngine.GUILayoutEntry> UnityEngine.GUILayoutGroup::entries
List_1_t046427F3923444CF746C550FD96A3D0E4189D273 * ___entries_11;
// System.Boolean UnityEngine.GUILayoutGroup::isVertical
bool ___isVertical_12;
// System.Boolean UnityEngine.GUILayoutGroup::resetCoords
bool ___resetCoords_13;
// System.Single UnityEngine.GUILayoutGroup::spacing
float ___spacing_14;
// System.Boolean UnityEngine.GUILayoutGroup::sameSize
bool ___sameSize_15;
// System.Boolean UnityEngine.GUILayoutGroup::isWindow
bool ___isWindow_16;
// System.Int32 UnityEngine.GUILayoutGroup::windowID
int32_t ___windowID_17;
// System.Int32 UnityEngine.GUILayoutGroup::m_Cursor
int32_t ___m_Cursor_18;
// System.Int32 UnityEngine.GUILayoutGroup::m_StretchableCountX
int32_t ___m_StretchableCountX_19;
// System.Int32 UnityEngine.GUILayoutGroup::m_StretchableCountY
int32_t ___m_StretchableCountY_20;
// System.Boolean UnityEngine.GUILayoutGroup::m_UserSpecifiedWidth
bool ___m_UserSpecifiedWidth_21;
// System.Boolean UnityEngine.GUILayoutGroup::m_UserSpecifiedHeight
bool ___m_UserSpecifiedHeight_22;
// System.Single UnityEngine.GUILayoutGroup::m_ChildMinWidth
float ___m_ChildMinWidth_23;
// System.Single UnityEngine.GUILayoutGroup::m_ChildMaxWidth
float ___m_ChildMaxWidth_24;
// System.Single UnityEngine.GUILayoutGroup::m_ChildMinHeight
float ___m_ChildMinHeight_25;
// System.Single UnityEngine.GUILayoutGroup::m_ChildMaxHeight
float ___m_ChildMaxHeight_26;
// System.Int32 UnityEngine.GUILayoutGroup::m_MarginLeft
int32_t ___m_MarginLeft_27;
// System.Int32 UnityEngine.GUILayoutGroup::m_MarginRight
int32_t ___m_MarginRight_28;
// System.Int32 UnityEngine.GUILayoutGroup::m_MarginTop
int32_t ___m_MarginTop_29;
// System.Int32 UnityEngine.GUILayoutGroup::m_MarginBottom
int32_t ___m_MarginBottom_30;
public:
inline static int32_t get_offset_of_entries_11() { return static_cast<int32_t>(offsetof(GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601, ___entries_11)); }
inline List_1_t046427F3923444CF746C550FD96A3D0E4189D273 * get_entries_11() const { return ___entries_11; }
inline List_1_t046427F3923444CF746C550FD96A3D0E4189D273 ** get_address_of_entries_11() { return &___entries_11; }
inline void set_entries_11(List_1_t046427F3923444CF746C550FD96A3D0E4189D273 * value)
{
___entries_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___entries_11), (void*)value);
}
inline static int32_t get_offset_of_isVertical_12() { return static_cast<int32_t>(offsetof(GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601, ___isVertical_12)); }
inline bool get_isVertical_12() const { return ___isVertical_12; }
inline bool* get_address_of_isVertical_12() { return &___isVertical_12; }
inline void set_isVertical_12(bool value)
{
___isVertical_12 = value;
}
inline static int32_t get_offset_of_resetCoords_13() { return static_cast<int32_t>(offsetof(GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601, ___resetCoords_13)); }
inline bool get_resetCoords_13() const { return ___resetCoords_13; }
inline bool* get_address_of_resetCoords_13() { return &___resetCoords_13; }
inline void set_resetCoords_13(bool value)
{
___resetCoords_13 = value;
}
inline static int32_t get_offset_of_spacing_14() { return static_cast<int32_t>(offsetof(GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601, ___spacing_14)); }
inline float get_spacing_14() const { return ___spacing_14; }
inline float* get_address_of_spacing_14() { return &___spacing_14; }
inline void set_spacing_14(float value)
{
___spacing_14 = value;
}
inline static int32_t get_offset_of_sameSize_15() { return static_cast<int32_t>(offsetof(GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601, ___sameSize_15)); }
inline bool get_sameSize_15() const { return ___sameSize_15; }
inline bool* get_address_of_sameSize_15() { return &___sameSize_15; }
inline void set_sameSize_15(bool value)
{
___sameSize_15 = value;
}
inline static int32_t get_offset_of_isWindow_16() { return static_cast<int32_t>(offsetof(GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601, ___isWindow_16)); }
inline bool get_isWindow_16() const { return ___isWindow_16; }
inline bool* get_address_of_isWindow_16() { return &___isWindow_16; }
inline void set_isWindow_16(bool value)
{
___isWindow_16 = value;
}
inline static int32_t get_offset_of_windowID_17() { return static_cast<int32_t>(offsetof(GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601, ___windowID_17)); }
inline int32_t get_windowID_17() const { return ___windowID_17; }
inline int32_t* get_address_of_windowID_17() { return &___windowID_17; }
inline void set_windowID_17(int32_t value)
{
___windowID_17 = value;
}
inline static int32_t get_offset_of_m_Cursor_18() { return static_cast<int32_t>(offsetof(GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601, ___m_Cursor_18)); }
inline int32_t get_m_Cursor_18() const { return ___m_Cursor_18; }
inline int32_t* get_address_of_m_Cursor_18() { return &___m_Cursor_18; }
inline void set_m_Cursor_18(int32_t value)
{
___m_Cursor_18 = value;
}
inline static int32_t get_offset_of_m_StretchableCountX_19() { return static_cast<int32_t>(offsetof(GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601, ___m_StretchableCountX_19)); }
inline int32_t get_m_StretchableCountX_19() const { return ___m_StretchableCountX_19; }
inline int32_t* get_address_of_m_StretchableCountX_19() { return &___m_StretchableCountX_19; }
inline void set_m_StretchableCountX_19(int32_t value)
{
___m_StretchableCountX_19 = value;
}
inline static int32_t get_offset_of_m_StretchableCountY_20() { return static_cast<int32_t>(offsetof(GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601, ___m_StretchableCountY_20)); }
inline int32_t get_m_StretchableCountY_20() const { return ___m_StretchableCountY_20; }
inline int32_t* get_address_of_m_StretchableCountY_20() { return &___m_StretchableCountY_20; }
inline void set_m_StretchableCountY_20(int32_t value)
{
___m_StretchableCountY_20 = value;
}
inline static int32_t get_offset_of_m_UserSpecifiedWidth_21() { return static_cast<int32_t>(offsetof(GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601, ___m_UserSpecifiedWidth_21)); }
inline bool get_m_UserSpecifiedWidth_21() const { return ___m_UserSpecifiedWidth_21; }
inline bool* get_address_of_m_UserSpecifiedWidth_21() { return &___m_UserSpecifiedWidth_21; }
inline void set_m_UserSpecifiedWidth_21(bool value)
{
___m_UserSpecifiedWidth_21 = value;
}
inline static int32_t get_offset_of_m_UserSpecifiedHeight_22() { return static_cast<int32_t>(offsetof(GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601, ___m_UserSpecifiedHeight_22)); }
inline bool get_m_UserSpecifiedHeight_22() const { return ___m_UserSpecifiedHeight_22; }
inline bool* get_address_of_m_UserSpecifiedHeight_22() { return &___m_UserSpecifiedHeight_22; }
inline void set_m_UserSpecifiedHeight_22(bool value)
{
___m_UserSpecifiedHeight_22 = value;
}
inline static int32_t get_offset_of_m_ChildMinWidth_23() { return static_cast<int32_t>(offsetof(GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601, ___m_ChildMinWidth_23)); }
inline float get_m_ChildMinWidth_23() const { return ___m_ChildMinWidth_23; }
inline float* get_address_of_m_ChildMinWidth_23() { return &___m_ChildMinWidth_23; }
inline void set_m_ChildMinWidth_23(float value)
{
___m_ChildMinWidth_23 = value;
}
inline static int32_t get_offset_of_m_ChildMaxWidth_24() { return static_cast<int32_t>(offsetof(GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601, ___m_ChildMaxWidth_24)); }
inline float get_m_ChildMaxWidth_24() const { return ___m_ChildMaxWidth_24; }
inline float* get_address_of_m_ChildMaxWidth_24() { return &___m_ChildMaxWidth_24; }
inline void set_m_ChildMaxWidth_24(float value)
{
___m_ChildMaxWidth_24 = value;
}
inline static int32_t get_offset_of_m_ChildMinHeight_25() { return static_cast<int32_t>(offsetof(GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601, ___m_ChildMinHeight_25)); }
inline float get_m_ChildMinHeight_25() const { return ___m_ChildMinHeight_25; }
inline float* get_address_of_m_ChildMinHeight_25() { return &___m_ChildMinHeight_25; }
inline void set_m_ChildMinHeight_25(float value)
{
___m_ChildMinHeight_25 = value;
}
inline static int32_t get_offset_of_m_ChildMaxHeight_26() { return static_cast<int32_t>(offsetof(GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601, ___m_ChildMaxHeight_26)); }
inline float get_m_ChildMaxHeight_26() const { return ___m_ChildMaxHeight_26; }
inline float* get_address_of_m_ChildMaxHeight_26() { return &___m_ChildMaxHeight_26; }
inline void set_m_ChildMaxHeight_26(float value)
{
___m_ChildMaxHeight_26 = value;
}
inline static int32_t get_offset_of_m_MarginLeft_27() { return static_cast<int32_t>(offsetof(GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601, ___m_MarginLeft_27)); }
inline int32_t get_m_MarginLeft_27() const { return ___m_MarginLeft_27; }
inline int32_t* get_address_of_m_MarginLeft_27() { return &___m_MarginLeft_27; }
inline void set_m_MarginLeft_27(int32_t value)
{
___m_MarginLeft_27 = value;
}
inline static int32_t get_offset_of_m_MarginRight_28() { return static_cast<int32_t>(offsetof(GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601, ___m_MarginRight_28)); }
inline int32_t get_m_MarginRight_28() const { return ___m_MarginRight_28; }
inline int32_t* get_address_of_m_MarginRight_28() { return &___m_MarginRight_28; }
inline void set_m_MarginRight_28(int32_t value)
{
___m_MarginRight_28 = value;
}
inline static int32_t get_offset_of_m_MarginTop_29() { return static_cast<int32_t>(offsetof(GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601, ___m_MarginTop_29)); }
inline int32_t get_m_MarginTop_29() const { return ___m_MarginTop_29; }
inline int32_t* get_address_of_m_MarginTop_29() { return &___m_MarginTop_29; }
inline void set_m_MarginTop_29(int32_t value)
{
___m_MarginTop_29 = value;
}
inline static int32_t get_offset_of_m_MarginBottom_30() { return static_cast<int32_t>(offsetof(GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601, ___m_MarginBottom_30)); }
inline int32_t get_m_MarginBottom_30() const { return ___m_MarginBottom_30; }
inline int32_t* get_address_of_m_MarginBottom_30() { return &___m_MarginBottom_30; }
inline void set_m_MarginBottom_30(int32_t value)
{
___m_MarginBottom_30 = value;
}
};
// UnityEngine.GUILayoutOption
struct GUILayoutOption_t27A0221AC2F6F53E7B89310FD19F51C565D835A6 : public RuntimeObject
{
public:
// UnityEngine.GUILayoutOption_Type UnityEngine.GUILayoutOption::type
int32_t ___type_0;
// System.Object UnityEngine.GUILayoutOption::value
RuntimeObject * ___value_1;
public:
inline static int32_t get_offset_of_type_0() { return static_cast<int32_t>(offsetof(GUILayoutOption_t27A0221AC2F6F53E7B89310FD19F51C565D835A6, ___type_0)); }
inline int32_t get_type_0() const { return ___type_0; }
inline int32_t* get_address_of_type_0() { return &___type_0; }
inline void set_type_0(int32_t value)
{
___type_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(GUILayoutOption_t27A0221AC2F6F53E7B89310FD19F51C565D835A6, ___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((void**)(&___value_1), (void*)value);
}
};
// UnityEngine.GUIStyle
struct GUIStyle_t671F175A201A19166385EE3392292A5F50070572 : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.GUIStyle::m_Ptr
intptr_t ___m_Ptr_0;
// UnityEngine.GUIStyleState UnityEngine.GUIStyle::m_Normal
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * ___m_Normal_1;
// UnityEngine.GUIStyleState UnityEngine.GUIStyle::m_Hover
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * ___m_Hover_2;
// UnityEngine.GUIStyleState UnityEngine.GUIStyle::m_Active
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * ___m_Active_3;
// UnityEngine.GUIStyleState UnityEngine.GUIStyle::m_Focused
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * ___m_Focused_4;
// UnityEngine.GUIStyleState UnityEngine.GUIStyle::m_OnNormal
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * ___m_OnNormal_5;
// UnityEngine.GUIStyleState UnityEngine.GUIStyle::m_OnHover
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * ___m_OnHover_6;
// UnityEngine.GUIStyleState UnityEngine.GUIStyle::m_OnActive
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * ___m_OnActive_7;
// UnityEngine.GUIStyleState UnityEngine.GUIStyle::m_OnFocused
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * ___m_OnFocused_8;
// UnityEngine.RectOffset UnityEngine.GUIStyle::m_Border
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * ___m_Border_9;
// UnityEngine.RectOffset UnityEngine.GUIStyle::m_Padding
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * ___m_Padding_10;
// UnityEngine.RectOffset UnityEngine.GUIStyle::m_Margin
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * ___m_Margin_11;
// UnityEngine.RectOffset UnityEngine.GUIStyle::m_Overflow
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * ___m_Overflow_12;
// System.String UnityEngine.GUIStyle::m_Name
String_t* ___m_Name_13;
public:
inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(GUIStyle_t671F175A201A19166385EE3392292A5F50070572, ___m_Ptr_0)); }
inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; }
inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; }
inline void set_m_Ptr_0(intptr_t value)
{
___m_Ptr_0 = value;
}
inline static int32_t get_offset_of_m_Normal_1() { return static_cast<int32_t>(offsetof(GUIStyle_t671F175A201A19166385EE3392292A5F50070572, ___m_Normal_1)); }
inline GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * get_m_Normal_1() const { return ___m_Normal_1; }
inline GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 ** get_address_of_m_Normal_1() { return &___m_Normal_1; }
inline void set_m_Normal_1(GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * value)
{
___m_Normal_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Normal_1), (void*)value);
}
inline static int32_t get_offset_of_m_Hover_2() { return static_cast<int32_t>(offsetof(GUIStyle_t671F175A201A19166385EE3392292A5F50070572, ___m_Hover_2)); }
inline GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * get_m_Hover_2() const { return ___m_Hover_2; }
inline GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 ** get_address_of_m_Hover_2() { return &___m_Hover_2; }
inline void set_m_Hover_2(GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * value)
{
___m_Hover_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Hover_2), (void*)value);
}
inline static int32_t get_offset_of_m_Active_3() { return static_cast<int32_t>(offsetof(GUIStyle_t671F175A201A19166385EE3392292A5F50070572, ___m_Active_3)); }
inline GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * get_m_Active_3() const { return ___m_Active_3; }
inline GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 ** get_address_of_m_Active_3() { return &___m_Active_3; }
inline void set_m_Active_3(GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * value)
{
___m_Active_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Active_3), (void*)value);
}
inline static int32_t get_offset_of_m_Focused_4() { return static_cast<int32_t>(offsetof(GUIStyle_t671F175A201A19166385EE3392292A5F50070572, ___m_Focused_4)); }
inline GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * get_m_Focused_4() const { return ___m_Focused_4; }
inline GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 ** get_address_of_m_Focused_4() { return &___m_Focused_4; }
inline void set_m_Focused_4(GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * value)
{
___m_Focused_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Focused_4), (void*)value);
}
inline static int32_t get_offset_of_m_OnNormal_5() { return static_cast<int32_t>(offsetof(GUIStyle_t671F175A201A19166385EE3392292A5F50070572, ___m_OnNormal_5)); }
inline GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * get_m_OnNormal_5() const { return ___m_OnNormal_5; }
inline GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 ** get_address_of_m_OnNormal_5() { return &___m_OnNormal_5; }
inline void set_m_OnNormal_5(GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * value)
{
___m_OnNormal_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_OnNormal_5), (void*)value);
}
inline static int32_t get_offset_of_m_OnHover_6() { return static_cast<int32_t>(offsetof(GUIStyle_t671F175A201A19166385EE3392292A5F50070572, ___m_OnHover_6)); }
inline GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * get_m_OnHover_6() const { return ___m_OnHover_6; }
inline GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 ** get_address_of_m_OnHover_6() { return &___m_OnHover_6; }
inline void set_m_OnHover_6(GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * value)
{
___m_OnHover_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_OnHover_6), (void*)value);
}
inline static int32_t get_offset_of_m_OnActive_7() { return static_cast<int32_t>(offsetof(GUIStyle_t671F175A201A19166385EE3392292A5F50070572, ___m_OnActive_7)); }
inline GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * get_m_OnActive_7() const { return ___m_OnActive_7; }
inline GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 ** get_address_of_m_OnActive_7() { return &___m_OnActive_7; }
inline void set_m_OnActive_7(GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * value)
{
___m_OnActive_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_OnActive_7), (void*)value);
}
inline static int32_t get_offset_of_m_OnFocused_8() { return static_cast<int32_t>(offsetof(GUIStyle_t671F175A201A19166385EE3392292A5F50070572, ___m_OnFocused_8)); }
inline GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * get_m_OnFocused_8() const { return ___m_OnFocused_8; }
inline GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 ** get_address_of_m_OnFocused_8() { return &___m_OnFocused_8; }
inline void set_m_OnFocused_8(GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * value)
{
___m_OnFocused_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_OnFocused_8), (void*)value);
}
inline static int32_t get_offset_of_m_Border_9() { return static_cast<int32_t>(offsetof(GUIStyle_t671F175A201A19166385EE3392292A5F50070572, ___m_Border_9)); }
inline RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * get_m_Border_9() const { return ___m_Border_9; }
inline RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A ** get_address_of_m_Border_9() { return &___m_Border_9; }
inline void set_m_Border_9(RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * value)
{
___m_Border_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Border_9), (void*)value);
}
inline static int32_t get_offset_of_m_Padding_10() { return static_cast<int32_t>(offsetof(GUIStyle_t671F175A201A19166385EE3392292A5F50070572, ___m_Padding_10)); }
inline RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * get_m_Padding_10() const { return ___m_Padding_10; }
inline RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A ** get_address_of_m_Padding_10() { return &___m_Padding_10; }
inline void set_m_Padding_10(RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * value)
{
___m_Padding_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Padding_10), (void*)value);
}
inline static int32_t get_offset_of_m_Margin_11() { return static_cast<int32_t>(offsetof(GUIStyle_t671F175A201A19166385EE3392292A5F50070572, ___m_Margin_11)); }
inline RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * get_m_Margin_11() const { return ___m_Margin_11; }
inline RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A ** get_address_of_m_Margin_11() { return &___m_Margin_11; }
inline void set_m_Margin_11(RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * value)
{
___m_Margin_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Margin_11), (void*)value);
}
inline static int32_t get_offset_of_m_Overflow_12() { return static_cast<int32_t>(offsetof(GUIStyle_t671F175A201A19166385EE3392292A5F50070572, ___m_Overflow_12)); }
inline RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * get_m_Overflow_12() const { return ___m_Overflow_12; }
inline RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A ** get_address_of_m_Overflow_12() { return &___m_Overflow_12; }
inline void set_m_Overflow_12(RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * value)
{
___m_Overflow_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Overflow_12), (void*)value);
}
inline static int32_t get_offset_of_m_Name_13() { return static_cast<int32_t>(offsetof(GUIStyle_t671F175A201A19166385EE3392292A5F50070572, ___m_Name_13)); }
inline String_t* get_m_Name_13() const { return ___m_Name_13; }
inline String_t** get_address_of_m_Name_13() { return &___m_Name_13; }
inline void set_m_Name_13(String_t* value)
{
___m_Name_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Name_13), (void*)value);
}
};
struct GUIStyle_t671F175A201A19166385EE3392292A5F50070572_StaticFields
{
public:
// System.Boolean UnityEngine.GUIStyle::showKeyboardFocus
bool ___showKeyboardFocus_14;
// UnityEngine.GUIStyle UnityEngine.GUIStyle::s_None
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___s_None_15;
public:
inline static int32_t get_offset_of_showKeyboardFocus_14() { return static_cast<int32_t>(offsetof(GUIStyle_t671F175A201A19166385EE3392292A5F50070572_StaticFields, ___showKeyboardFocus_14)); }
inline bool get_showKeyboardFocus_14() const { return ___showKeyboardFocus_14; }
inline bool* get_address_of_showKeyboardFocus_14() { return &___showKeyboardFocus_14; }
inline void set_showKeyboardFocus_14(bool value)
{
___showKeyboardFocus_14 = value;
}
inline static int32_t get_offset_of_s_None_15() { return static_cast<int32_t>(offsetof(GUIStyle_t671F175A201A19166385EE3392292A5F50070572_StaticFields, ___s_None_15)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_s_None_15() const { return ___s_None_15; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_s_None_15() { return &___s_None_15; }
inline void set_s_None_15(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___s_None_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_None_15), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.GUIStyle
struct GUIStyle_t671F175A201A19166385EE3392292A5F50070572_marshaled_pinvoke
{
intptr_t ___m_Ptr_0;
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_pinvoke* ___m_Normal_1;
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_pinvoke* ___m_Hover_2;
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_pinvoke* ___m_Active_3;
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_pinvoke* ___m_Focused_4;
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_pinvoke* ___m_OnNormal_5;
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_pinvoke* ___m_OnHover_6;
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_pinvoke* ___m_OnActive_7;
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_pinvoke* ___m_OnFocused_8;
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A_marshaled_pinvoke ___m_Border_9;
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A_marshaled_pinvoke ___m_Padding_10;
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A_marshaled_pinvoke ___m_Margin_11;
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A_marshaled_pinvoke ___m_Overflow_12;
char* ___m_Name_13;
};
// Native definition for COM marshalling of UnityEngine.GUIStyle
struct GUIStyle_t671F175A201A19166385EE3392292A5F50070572_marshaled_com
{
intptr_t ___m_Ptr_0;
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_com* ___m_Normal_1;
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_com* ___m_Hover_2;
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_com* ___m_Active_3;
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_com* ___m_Focused_4;
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_com* ___m_OnNormal_5;
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_com* ___m_OnHover_6;
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_com* ___m_OnActive_7;
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_com* ___m_OnFocused_8;
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A_marshaled_com* ___m_Border_9;
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A_marshaled_com* ___m_Padding_10;
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A_marshaled_com* ___m_Margin_11;
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A_marshaled_com* ___m_Overflow_12;
Il2CppChar* ___m_Name_13;
};
// UnityEngine.ScriptableObject
struct ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734 : public Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0
{
public:
public:
};
// Native definition for P/Invoke marshalling of UnityEngine.ScriptableObject
struct ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734_marshaled_pinvoke : public Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_pinvoke
{
};
// Native definition for COM marshalling of UnityEngine.ScriptableObject
struct ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734_marshaled_com : public Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_com
{
};
// UnityEngine.TextEditor
struct TextEditor_t72CB6095A5C38226E08CD8073D5B6AD98579D440 : public RuntimeObject
{
public:
// UnityEngine.TouchScreenKeyboard UnityEngine.TextEditor::keyboardOnScreen
TouchScreenKeyboard_t2A69F85698E9780470181532D3F2BC903623FD90 * ___keyboardOnScreen_0;
// System.Int32 UnityEngine.TextEditor::controlID
int32_t ___controlID_1;
// UnityEngine.GUIStyle UnityEngine.TextEditor::style
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___style_2;
// System.Boolean UnityEngine.TextEditor::multiline
bool ___multiline_3;
// System.Boolean UnityEngine.TextEditor::hasHorizontalCursorPos
bool ___hasHorizontalCursorPos_4;
// System.Boolean UnityEngine.TextEditor::isPasswordField
bool ___isPasswordField_5;
// UnityEngine.Vector2 UnityEngine.TextEditor::scrollOffset
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___scrollOffset_6;
// UnityEngine.GUIContent UnityEngine.TextEditor::m_Content
GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 * ___m_Content_7;
// System.Int32 UnityEngine.TextEditor::m_CursorIndex
int32_t ___m_CursorIndex_8;
// System.Int32 UnityEngine.TextEditor::m_SelectIndex
int32_t ___m_SelectIndex_9;
// System.Boolean UnityEngine.TextEditor::m_RevealCursor
bool ___m_RevealCursor_10;
// System.Boolean UnityEngine.TextEditor::m_MouseDragSelectsWholeWords
bool ___m_MouseDragSelectsWholeWords_11;
// System.Int32 UnityEngine.TextEditor::m_DblClickInitPos
int32_t ___m_DblClickInitPos_12;
// UnityEngine.TextEditor_DblClickSnapping UnityEngine.TextEditor::m_DblClickSnap
uint8_t ___m_DblClickSnap_13;
// System.Boolean UnityEngine.TextEditor::m_bJustSelected
bool ___m_bJustSelected_14;
// System.Int32 UnityEngine.TextEditor::m_iAltCursorPos
int32_t ___m_iAltCursorPos_15;
public:
inline static int32_t get_offset_of_keyboardOnScreen_0() { return static_cast<int32_t>(offsetof(TextEditor_t72CB6095A5C38226E08CD8073D5B6AD98579D440, ___keyboardOnScreen_0)); }
inline TouchScreenKeyboard_t2A69F85698E9780470181532D3F2BC903623FD90 * get_keyboardOnScreen_0() const { return ___keyboardOnScreen_0; }
inline TouchScreenKeyboard_t2A69F85698E9780470181532D3F2BC903623FD90 ** get_address_of_keyboardOnScreen_0() { return &___keyboardOnScreen_0; }
inline void set_keyboardOnScreen_0(TouchScreenKeyboard_t2A69F85698E9780470181532D3F2BC903623FD90 * value)
{
___keyboardOnScreen_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keyboardOnScreen_0), (void*)value);
}
inline static int32_t get_offset_of_controlID_1() { return static_cast<int32_t>(offsetof(TextEditor_t72CB6095A5C38226E08CD8073D5B6AD98579D440, ___controlID_1)); }
inline int32_t get_controlID_1() const { return ___controlID_1; }
inline int32_t* get_address_of_controlID_1() { return &___controlID_1; }
inline void set_controlID_1(int32_t value)
{
___controlID_1 = value;
}
inline static int32_t get_offset_of_style_2() { return static_cast<int32_t>(offsetof(TextEditor_t72CB6095A5C38226E08CD8073D5B6AD98579D440, ___style_2)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_style_2() const { return ___style_2; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_style_2() { return &___style_2; }
inline void set_style_2(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___style_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___style_2), (void*)value);
}
inline static int32_t get_offset_of_multiline_3() { return static_cast<int32_t>(offsetof(TextEditor_t72CB6095A5C38226E08CD8073D5B6AD98579D440, ___multiline_3)); }
inline bool get_multiline_3() const { return ___multiline_3; }
inline bool* get_address_of_multiline_3() { return &___multiline_3; }
inline void set_multiline_3(bool value)
{
___multiline_3 = value;
}
inline static int32_t get_offset_of_hasHorizontalCursorPos_4() { return static_cast<int32_t>(offsetof(TextEditor_t72CB6095A5C38226E08CD8073D5B6AD98579D440, ___hasHorizontalCursorPos_4)); }
inline bool get_hasHorizontalCursorPos_4() const { return ___hasHorizontalCursorPos_4; }
inline bool* get_address_of_hasHorizontalCursorPos_4() { return &___hasHorizontalCursorPos_4; }
inline void set_hasHorizontalCursorPos_4(bool value)
{
___hasHorizontalCursorPos_4 = value;
}
inline static int32_t get_offset_of_isPasswordField_5() { return static_cast<int32_t>(offsetof(TextEditor_t72CB6095A5C38226E08CD8073D5B6AD98579D440, ___isPasswordField_5)); }
inline bool get_isPasswordField_5() const { return ___isPasswordField_5; }
inline bool* get_address_of_isPasswordField_5() { return &___isPasswordField_5; }
inline void set_isPasswordField_5(bool value)
{
___isPasswordField_5 = value;
}
inline static int32_t get_offset_of_scrollOffset_6() { return static_cast<int32_t>(offsetof(TextEditor_t72CB6095A5C38226E08CD8073D5B6AD98579D440, ___scrollOffset_6)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_scrollOffset_6() const { return ___scrollOffset_6; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_scrollOffset_6() { return &___scrollOffset_6; }
inline void set_scrollOffset_6(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___scrollOffset_6 = value;
}
inline static int32_t get_offset_of_m_Content_7() { return static_cast<int32_t>(offsetof(TextEditor_t72CB6095A5C38226E08CD8073D5B6AD98579D440, ___m_Content_7)); }
inline GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 * get_m_Content_7() const { return ___m_Content_7; }
inline GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 ** get_address_of_m_Content_7() { return &___m_Content_7; }
inline void set_m_Content_7(GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 * value)
{
___m_Content_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Content_7), (void*)value);
}
inline static int32_t get_offset_of_m_CursorIndex_8() { return static_cast<int32_t>(offsetof(TextEditor_t72CB6095A5C38226E08CD8073D5B6AD98579D440, ___m_CursorIndex_8)); }
inline int32_t get_m_CursorIndex_8() const { return ___m_CursorIndex_8; }
inline int32_t* get_address_of_m_CursorIndex_8() { return &___m_CursorIndex_8; }
inline void set_m_CursorIndex_8(int32_t value)
{
___m_CursorIndex_8 = value;
}
inline static int32_t get_offset_of_m_SelectIndex_9() { return static_cast<int32_t>(offsetof(TextEditor_t72CB6095A5C38226E08CD8073D5B6AD98579D440, ___m_SelectIndex_9)); }
inline int32_t get_m_SelectIndex_9() const { return ___m_SelectIndex_9; }
inline int32_t* get_address_of_m_SelectIndex_9() { return &___m_SelectIndex_9; }
inline void set_m_SelectIndex_9(int32_t value)
{
___m_SelectIndex_9 = value;
}
inline static int32_t get_offset_of_m_RevealCursor_10() { return static_cast<int32_t>(offsetof(TextEditor_t72CB6095A5C38226E08CD8073D5B6AD98579D440, ___m_RevealCursor_10)); }
inline bool get_m_RevealCursor_10() const { return ___m_RevealCursor_10; }
inline bool* get_address_of_m_RevealCursor_10() { return &___m_RevealCursor_10; }
inline void set_m_RevealCursor_10(bool value)
{
___m_RevealCursor_10 = value;
}
inline static int32_t get_offset_of_m_MouseDragSelectsWholeWords_11() { return static_cast<int32_t>(offsetof(TextEditor_t72CB6095A5C38226E08CD8073D5B6AD98579D440, ___m_MouseDragSelectsWholeWords_11)); }
inline bool get_m_MouseDragSelectsWholeWords_11() const { return ___m_MouseDragSelectsWholeWords_11; }
inline bool* get_address_of_m_MouseDragSelectsWholeWords_11() { return &___m_MouseDragSelectsWholeWords_11; }
inline void set_m_MouseDragSelectsWholeWords_11(bool value)
{
___m_MouseDragSelectsWholeWords_11 = value;
}
inline static int32_t get_offset_of_m_DblClickInitPos_12() { return static_cast<int32_t>(offsetof(TextEditor_t72CB6095A5C38226E08CD8073D5B6AD98579D440, ___m_DblClickInitPos_12)); }
inline int32_t get_m_DblClickInitPos_12() const { return ___m_DblClickInitPos_12; }
inline int32_t* get_address_of_m_DblClickInitPos_12() { return &___m_DblClickInitPos_12; }
inline void set_m_DblClickInitPos_12(int32_t value)
{
___m_DblClickInitPos_12 = value;
}
inline static int32_t get_offset_of_m_DblClickSnap_13() { return static_cast<int32_t>(offsetof(TextEditor_t72CB6095A5C38226E08CD8073D5B6AD98579D440, ___m_DblClickSnap_13)); }
inline uint8_t get_m_DblClickSnap_13() const { return ___m_DblClickSnap_13; }
inline uint8_t* get_address_of_m_DblClickSnap_13() { return &___m_DblClickSnap_13; }
inline void set_m_DblClickSnap_13(uint8_t value)
{
___m_DblClickSnap_13 = value;
}
inline static int32_t get_offset_of_m_bJustSelected_14() { return static_cast<int32_t>(offsetof(TextEditor_t72CB6095A5C38226E08CD8073D5B6AD98579D440, ___m_bJustSelected_14)); }
inline bool get_m_bJustSelected_14() const { return ___m_bJustSelected_14; }
inline bool* get_address_of_m_bJustSelected_14() { return &___m_bJustSelected_14; }
inline void set_m_bJustSelected_14(bool value)
{
___m_bJustSelected_14 = value;
}
inline static int32_t get_offset_of_m_iAltCursorPos_15() { return static_cast<int32_t>(offsetof(TextEditor_t72CB6095A5C38226E08CD8073D5B6AD98579D440, ___m_iAltCursorPos_15)); }
inline int32_t get_m_iAltCursorPos_15() const { return ___m_iAltCursorPos_15; }
inline int32_t* get_address_of_m_iAltCursorPos_15() { return &___m_iAltCursorPos_15; }
inline void set_m_iAltCursorPos_15(int32_t value)
{
___m_iAltCursorPos_15 = value;
}
};
// UnityEngine.Texture
struct Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 : public Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0
{
public:
public:
};
struct Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4_StaticFields
{
public:
// System.Int32 UnityEngine.Texture::GenerateAllMips
int32_t ___GenerateAllMips_4;
public:
inline static int32_t get_offset_of_GenerateAllMips_4() { return static_cast<int32_t>(offsetof(Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4_StaticFields, ___GenerateAllMips_4)); }
inline int32_t get_GenerateAllMips_4() const { return ___GenerateAllMips_4; }
inline int32_t* get_address_of_GenerateAllMips_4() { return &___GenerateAllMips_4; }
inline void set_GenerateAllMips_4(int32_t value)
{
___GenerateAllMips_4 = value;
}
};
// System.Action
struct Action_t591D2A86165F896B4B800BB5C25CE18672A55579 : public MulticastDelegate_t
{
public:
public:
};
// 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((void**)(&___m_paramName_17), (void*)value);
}
};
// System.AsyncCallback
struct AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 : public MulticastDelegate_t
{
public:
public:
};
// System.Func`2<System.Exception,System.Boolean>
struct Func_2_tC816C5FDED4A7372C449E7660CAB9F94E2AC12F8 : public MulticastDelegate_t
{
public:
public:
};
// System.Func`3<System.Int32,System.IntPtr,System.Boolean>
struct Func_3_tBD99633D8A18C43CC528ECE3F77E2F69900048A7 : public MulticastDelegate_t
{
public:
public:
};
// System.Reflection.TargetInvocationException
struct TargetInvocationException_t0DD35F6083E1D1E0509BF181A79C76D3339D89B8 : public ApplicationException_t664823C3E0D3E1E7C7FA1C0DB4E19E98E9811C74
{
public:
public:
};
// UnityEngine.GUI_WindowFunction
struct WindowFunction_t9AF05117863D95AA9F85D497A3B9B53216708100 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.GUIScrollGroup
struct GUIScrollGroup_tF7FE45226FB28968F68A8D2428FE9EA7DC5B18EE : public GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601
{
public:
// System.Single UnityEngine.GUIScrollGroup::calcMinWidth
float ___calcMinWidth_31;
// System.Single UnityEngine.GUIScrollGroup::calcMaxWidth
float ___calcMaxWidth_32;
// System.Single UnityEngine.GUIScrollGroup::calcMinHeight
float ___calcMinHeight_33;
// System.Single UnityEngine.GUIScrollGroup::calcMaxHeight
float ___calcMaxHeight_34;
// System.Single UnityEngine.GUIScrollGroup::clientWidth
float ___clientWidth_35;
// System.Single UnityEngine.GUIScrollGroup::clientHeight
float ___clientHeight_36;
// System.Boolean UnityEngine.GUIScrollGroup::allowHorizontalScroll
bool ___allowHorizontalScroll_37;
// System.Boolean UnityEngine.GUIScrollGroup::allowVerticalScroll
bool ___allowVerticalScroll_38;
// System.Boolean UnityEngine.GUIScrollGroup::needsHorizontalScrollbar
bool ___needsHorizontalScrollbar_39;
// System.Boolean UnityEngine.GUIScrollGroup::needsVerticalScrollbar
bool ___needsVerticalScrollbar_40;
// UnityEngine.GUIStyle UnityEngine.GUIScrollGroup::horizontalScrollbar
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___horizontalScrollbar_41;
// UnityEngine.GUIStyle UnityEngine.GUIScrollGroup::verticalScrollbar
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___verticalScrollbar_42;
public:
inline static int32_t get_offset_of_calcMinWidth_31() { return static_cast<int32_t>(offsetof(GUIScrollGroup_tF7FE45226FB28968F68A8D2428FE9EA7DC5B18EE, ___calcMinWidth_31)); }
inline float get_calcMinWidth_31() const { return ___calcMinWidth_31; }
inline float* get_address_of_calcMinWidth_31() { return &___calcMinWidth_31; }
inline void set_calcMinWidth_31(float value)
{
___calcMinWidth_31 = value;
}
inline static int32_t get_offset_of_calcMaxWidth_32() { return static_cast<int32_t>(offsetof(GUIScrollGroup_tF7FE45226FB28968F68A8D2428FE9EA7DC5B18EE, ___calcMaxWidth_32)); }
inline float get_calcMaxWidth_32() const { return ___calcMaxWidth_32; }
inline float* get_address_of_calcMaxWidth_32() { return &___calcMaxWidth_32; }
inline void set_calcMaxWidth_32(float value)
{
___calcMaxWidth_32 = value;
}
inline static int32_t get_offset_of_calcMinHeight_33() { return static_cast<int32_t>(offsetof(GUIScrollGroup_tF7FE45226FB28968F68A8D2428FE9EA7DC5B18EE, ___calcMinHeight_33)); }
inline float get_calcMinHeight_33() const { return ___calcMinHeight_33; }
inline float* get_address_of_calcMinHeight_33() { return &___calcMinHeight_33; }
inline void set_calcMinHeight_33(float value)
{
___calcMinHeight_33 = value;
}
inline static int32_t get_offset_of_calcMaxHeight_34() { return static_cast<int32_t>(offsetof(GUIScrollGroup_tF7FE45226FB28968F68A8D2428FE9EA7DC5B18EE, ___calcMaxHeight_34)); }
inline float get_calcMaxHeight_34() const { return ___calcMaxHeight_34; }
inline float* get_address_of_calcMaxHeight_34() { return &___calcMaxHeight_34; }
inline void set_calcMaxHeight_34(float value)
{
___calcMaxHeight_34 = value;
}
inline static int32_t get_offset_of_clientWidth_35() { return static_cast<int32_t>(offsetof(GUIScrollGroup_tF7FE45226FB28968F68A8D2428FE9EA7DC5B18EE, ___clientWidth_35)); }
inline float get_clientWidth_35() const { return ___clientWidth_35; }
inline float* get_address_of_clientWidth_35() { return &___clientWidth_35; }
inline void set_clientWidth_35(float value)
{
___clientWidth_35 = value;
}
inline static int32_t get_offset_of_clientHeight_36() { return static_cast<int32_t>(offsetof(GUIScrollGroup_tF7FE45226FB28968F68A8D2428FE9EA7DC5B18EE, ___clientHeight_36)); }
inline float get_clientHeight_36() const { return ___clientHeight_36; }
inline float* get_address_of_clientHeight_36() { return &___clientHeight_36; }
inline void set_clientHeight_36(float value)
{
___clientHeight_36 = value;
}
inline static int32_t get_offset_of_allowHorizontalScroll_37() { return static_cast<int32_t>(offsetof(GUIScrollGroup_tF7FE45226FB28968F68A8D2428FE9EA7DC5B18EE, ___allowHorizontalScroll_37)); }
inline bool get_allowHorizontalScroll_37() const { return ___allowHorizontalScroll_37; }
inline bool* get_address_of_allowHorizontalScroll_37() { return &___allowHorizontalScroll_37; }
inline void set_allowHorizontalScroll_37(bool value)
{
___allowHorizontalScroll_37 = value;
}
inline static int32_t get_offset_of_allowVerticalScroll_38() { return static_cast<int32_t>(offsetof(GUIScrollGroup_tF7FE45226FB28968F68A8D2428FE9EA7DC5B18EE, ___allowVerticalScroll_38)); }
inline bool get_allowVerticalScroll_38() const { return ___allowVerticalScroll_38; }
inline bool* get_address_of_allowVerticalScroll_38() { return &___allowVerticalScroll_38; }
inline void set_allowVerticalScroll_38(bool value)
{
___allowVerticalScroll_38 = value;
}
inline static int32_t get_offset_of_needsHorizontalScrollbar_39() { return static_cast<int32_t>(offsetof(GUIScrollGroup_tF7FE45226FB28968F68A8D2428FE9EA7DC5B18EE, ___needsHorizontalScrollbar_39)); }
inline bool get_needsHorizontalScrollbar_39() const { return ___needsHorizontalScrollbar_39; }
inline bool* get_address_of_needsHorizontalScrollbar_39() { return &___needsHorizontalScrollbar_39; }
inline void set_needsHorizontalScrollbar_39(bool value)
{
___needsHorizontalScrollbar_39 = value;
}
inline static int32_t get_offset_of_needsVerticalScrollbar_40() { return static_cast<int32_t>(offsetof(GUIScrollGroup_tF7FE45226FB28968F68A8D2428FE9EA7DC5B18EE, ___needsVerticalScrollbar_40)); }
inline bool get_needsVerticalScrollbar_40() const { return ___needsVerticalScrollbar_40; }
inline bool* get_address_of_needsVerticalScrollbar_40() { return &___needsVerticalScrollbar_40; }
inline void set_needsVerticalScrollbar_40(bool value)
{
___needsVerticalScrollbar_40 = value;
}
inline static int32_t get_offset_of_horizontalScrollbar_41() { return static_cast<int32_t>(offsetof(GUIScrollGroup_tF7FE45226FB28968F68A8D2428FE9EA7DC5B18EE, ___horizontalScrollbar_41)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_horizontalScrollbar_41() const { return ___horizontalScrollbar_41; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_horizontalScrollbar_41() { return &___horizontalScrollbar_41; }
inline void set_horizontalScrollbar_41(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___horizontalScrollbar_41 = value;
Il2CppCodeGenWriteBarrier((void**)(&___horizontalScrollbar_41), (void*)value);
}
inline static int32_t get_offset_of_verticalScrollbar_42() { return static_cast<int32_t>(offsetof(GUIScrollGroup_tF7FE45226FB28968F68A8D2428FE9EA7DC5B18EE, ___verticalScrollbar_42)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_verticalScrollbar_42() const { return ___verticalScrollbar_42; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_verticalScrollbar_42() { return &___verticalScrollbar_42; }
inline void set_verticalScrollbar_42(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___verticalScrollbar_42 = value;
Il2CppCodeGenWriteBarrier((void**)(&___verticalScrollbar_42), (void*)value);
}
};
// UnityEngine.GUISkin
struct GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 : public ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734
{
public:
// UnityEngine.Font UnityEngine.GUISkin::m_Font
Font_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26 * ___m_Font_4;
// UnityEngine.GUIStyle UnityEngine.GUISkin::m_box
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___m_box_5;
// UnityEngine.GUIStyle UnityEngine.GUISkin::m_button
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___m_button_6;
// UnityEngine.GUIStyle UnityEngine.GUISkin::m_toggle
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___m_toggle_7;
// UnityEngine.GUIStyle UnityEngine.GUISkin::m_label
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___m_label_8;
// UnityEngine.GUIStyle UnityEngine.GUISkin::m_textField
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___m_textField_9;
// UnityEngine.GUIStyle UnityEngine.GUISkin::m_textArea
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___m_textArea_10;
// UnityEngine.GUIStyle UnityEngine.GUISkin::m_window
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___m_window_11;
// UnityEngine.GUIStyle UnityEngine.GUISkin::m_horizontalSlider
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___m_horizontalSlider_12;
// UnityEngine.GUIStyle UnityEngine.GUISkin::m_horizontalSliderThumb
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___m_horizontalSliderThumb_13;
// UnityEngine.GUIStyle UnityEngine.GUISkin::m_horizontalSliderThumbExtent
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___m_horizontalSliderThumbExtent_14;
// UnityEngine.GUIStyle UnityEngine.GUISkin::m_verticalSlider
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___m_verticalSlider_15;
// UnityEngine.GUIStyle UnityEngine.GUISkin::m_verticalSliderThumb
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___m_verticalSliderThumb_16;
// UnityEngine.GUIStyle UnityEngine.GUISkin::m_verticalSliderThumbExtent
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___m_verticalSliderThumbExtent_17;
// UnityEngine.GUIStyle UnityEngine.GUISkin::m_horizontalScrollbar
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___m_horizontalScrollbar_18;
// UnityEngine.GUIStyle UnityEngine.GUISkin::m_horizontalScrollbarThumb
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___m_horizontalScrollbarThumb_19;
// UnityEngine.GUIStyle UnityEngine.GUISkin::m_horizontalScrollbarLeftButton
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___m_horizontalScrollbarLeftButton_20;
// UnityEngine.GUIStyle UnityEngine.GUISkin::m_horizontalScrollbarRightButton
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___m_horizontalScrollbarRightButton_21;
// UnityEngine.GUIStyle UnityEngine.GUISkin::m_verticalScrollbar
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___m_verticalScrollbar_22;
// UnityEngine.GUIStyle UnityEngine.GUISkin::m_verticalScrollbarThumb
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___m_verticalScrollbarThumb_23;
// UnityEngine.GUIStyle UnityEngine.GUISkin::m_verticalScrollbarUpButton
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___m_verticalScrollbarUpButton_24;
// UnityEngine.GUIStyle UnityEngine.GUISkin::m_verticalScrollbarDownButton
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___m_verticalScrollbarDownButton_25;
// UnityEngine.GUIStyle UnityEngine.GUISkin::m_ScrollView
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___m_ScrollView_26;
// UnityEngine.GUIStyle[] UnityEngine.GUISkin::m_CustomStyles
GUIStyleU5BU5D_t2F343713D6ADFF41BBCF1D17BAE79F51BD745DBB* ___m_CustomStyles_27;
// UnityEngine.GUISettings UnityEngine.GUISkin::m_Settings
GUISettings_tA863524720A3C984BAE56598D922F2C04DC80EF4 * ___m_Settings_28;
// System.Collections.Generic.Dictionary`2<System.String,UnityEngine.GUIStyle> UnityEngine.GUISkin::m_Styles
Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A * ___m_Styles_30;
public:
inline static int32_t get_offset_of_m_Font_4() { return static_cast<int32_t>(offsetof(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7, ___m_Font_4)); }
inline Font_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26 * get_m_Font_4() const { return ___m_Font_4; }
inline Font_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26 ** get_address_of_m_Font_4() { return &___m_Font_4; }
inline void set_m_Font_4(Font_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26 * value)
{
___m_Font_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Font_4), (void*)value);
}
inline static int32_t get_offset_of_m_box_5() { return static_cast<int32_t>(offsetof(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7, ___m_box_5)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_m_box_5() const { return ___m_box_5; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_m_box_5() { return &___m_box_5; }
inline void set_m_box_5(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___m_box_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_box_5), (void*)value);
}
inline static int32_t get_offset_of_m_button_6() { return static_cast<int32_t>(offsetof(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7, ___m_button_6)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_m_button_6() const { return ___m_button_6; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_m_button_6() { return &___m_button_6; }
inline void set_m_button_6(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___m_button_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_button_6), (void*)value);
}
inline static int32_t get_offset_of_m_toggle_7() { return static_cast<int32_t>(offsetof(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7, ___m_toggle_7)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_m_toggle_7() const { return ___m_toggle_7; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_m_toggle_7() { return &___m_toggle_7; }
inline void set_m_toggle_7(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___m_toggle_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_toggle_7), (void*)value);
}
inline static int32_t get_offset_of_m_label_8() { return static_cast<int32_t>(offsetof(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7, ___m_label_8)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_m_label_8() const { return ___m_label_8; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_m_label_8() { return &___m_label_8; }
inline void set_m_label_8(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___m_label_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_label_8), (void*)value);
}
inline static int32_t get_offset_of_m_textField_9() { return static_cast<int32_t>(offsetof(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7, ___m_textField_9)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_m_textField_9() const { return ___m_textField_9; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_m_textField_9() { return &___m_textField_9; }
inline void set_m_textField_9(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___m_textField_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_textField_9), (void*)value);
}
inline static int32_t get_offset_of_m_textArea_10() { return static_cast<int32_t>(offsetof(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7, ___m_textArea_10)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_m_textArea_10() const { return ___m_textArea_10; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_m_textArea_10() { return &___m_textArea_10; }
inline void set_m_textArea_10(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___m_textArea_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_textArea_10), (void*)value);
}
inline static int32_t get_offset_of_m_window_11() { return static_cast<int32_t>(offsetof(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7, ___m_window_11)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_m_window_11() const { return ___m_window_11; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_m_window_11() { return &___m_window_11; }
inline void set_m_window_11(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___m_window_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_window_11), (void*)value);
}
inline static int32_t get_offset_of_m_horizontalSlider_12() { return static_cast<int32_t>(offsetof(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7, ___m_horizontalSlider_12)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_m_horizontalSlider_12() const { return ___m_horizontalSlider_12; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_m_horizontalSlider_12() { return &___m_horizontalSlider_12; }
inline void set_m_horizontalSlider_12(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___m_horizontalSlider_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_horizontalSlider_12), (void*)value);
}
inline static int32_t get_offset_of_m_horizontalSliderThumb_13() { return static_cast<int32_t>(offsetof(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7, ___m_horizontalSliderThumb_13)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_m_horizontalSliderThumb_13() const { return ___m_horizontalSliderThumb_13; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_m_horizontalSliderThumb_13() { return &___m_horizontalSliderThumb_13; }
inline void set_m_horizontalSliderThumb_13(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___m_horizontalSliderThumb_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_horizontalSliderThumb_13), (void*)value);
}
inline static int32_t get_offset_of_m_horizontalSliderThumbExtent_14() { return static_cast<int32_t>(offsetof(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7, ___m_horizontalSliderThumbExtent_14)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_m_horizontalSliderThumbExtent_14() const { return ___m_horizontalSliderThumbExtent_14; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_m_horizontalSliderThumbExtent_14() { return &___m_horizontalSliderThumbExtent_14; }
inline void set_m_horizontalSliderThumbExtent_14(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___m_horizontalSliderThumbExtent_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_horizontalSliderThumbExtent_14), (void*)value);
}
inline static int32_t get_offset_of_m_verticalSlider_15() { return static_cast<int32_t>(offsetof(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7, ___m_verticalSlider_15)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_m_verticalSlider_15() const { return ___m_verticalSlider_15; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_m_verticalSlider_15() { return &___m_verticalSlider_15; }
inline void set_m_verticalSlider_15(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___m_verticalSlider_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_verticalSlider_15), (void*)value);
}
inline static int32_t get_offset_of_m_verticalSliderThumb_16() { return static_cast<int32_t>(offsetof(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7, ___m_verticalSliderThumb_16)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_m_verticalSliderThumb_16() const { return ___m_verticalSliderThumb_16; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_m_verticalSliderThumb_16() { return &___m_verticalSliderThumb_16; }
inline void set_m_verticalSliderThumb_16(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___m_verticalSliderThumb_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_verticalSliderThumb_16), (void*)value);
}
inline static int32_t get_offset_of_m_verticalSliderThumbExtent_17() { return static_cast<int32_t>(offsetof(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7, ___m_verticalSliderThumbExtent_17)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_m_verticalSliderThumbExtent_17() const { return ___m_verticalSliderThumbExtent_17; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_m_verticalSliderThumbExtent_17() { return &___m_verticalSliderThumbExtent_17; }
inline void set_m_verticalSliderThumbExtent_17(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___m_verticalSliderThumbExtent_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_verticalSliderThumbExtent_17), (void*)value);
}
inline static int32_t get_offset_of_m_horizontalScrollbar_18() { return static_cast<int32_t>(offsetof(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7, ___m_horizontalScrollbar_18)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_m_horizontalScrollbar_18() const { return ___m_horizontalScrollbar_18; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_m_horizontalScrollbar_18() { return &___m_horizontalScrollbar_18; }
inline void set_m_horizontalScrollbar_18(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___m_horizontalScrollbar_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_horizontalScrollbar_18), (void*)value);
}
inline static int32_t get_offset_of_m_horizontalScrollbarThumb_19() { return static_cast<int32_t>(offsetof(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7, ___m_horizontalScrollbarThumb_19)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_m_horizontalScrollbarThumb_19() const { return ___m_horizontalScrollbarThumb_19; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_m_horizontalScrollbarThumb_19() { return &___m_horizontalScrollbarThumb_19; }
inline void set_m_horizontalScrollbarThumb_19(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___m_horizontalScrollbarThumb_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_horizontalScrollbarThumb_19), (void*)value);
}
inline static int32_t get_offset_of_m_horizontalScrollbarLeftButton_20() { return static_cast<int32_t>(offsetof(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7, ___m_horizontalScrollbarLeftButton_20)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_m_horizontalScrollbarLeftButton_20() const { return ___m_horizontalScrollbarLeftButton_20; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_m_horizontalScrollbarLeftButton_20() { return &___m_horizontalScrollbarLeftButton_20; }
inline void set_m_horizontalScrollbarLeftButton_20(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___m_horizontalScrollbarLeftButton_20 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_horizontalScrollbarLeftButton_20), (void*)value);
}
inline static int32_t get_offset_of_m_horizontalScrollbarRightButton_21() { return static_cast<int32_t>(offsetof(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7, ___m_horizontalScrollbarRightButton_21)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_m_horizontalScrollbarRightButton_21() const { return ___m_horizontalScrollbarRightButton_21; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_m_horizontalScrollbarRightButton_21() { return &___m_horizontalScrollbarRightButton_21; }
inline void set_m_horizontalScrollbarRightButton_21(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___m_horizontalScrollbarRightButton_21 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_horizontalScrollbarRightButton_21), (void*)value);
}
inline static int32_t get_offset_of_m_verticalScrollbar_22() { return static_cast<int32_t>(offsetof(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7, ___m_verticalScrollbar_22)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_m_verticalScrollbar_22() const { return ___m_verticalScrollbar_22; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_m_verticalScrollbar_22() { return &___m_verticalScrollbar_22; }
inline void set_m_verticalScrollbar_22(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___m_verticalScrollbar_22 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_verticalScrollbar_22), (void*)value);
}
inline static int32_t get_offset_of_m_verticalScrollbarThumb_23() { return static_cast<int32_t>(offsetof(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7, ___m_verticalScrollbarThumb_23)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_m_verticalScrollbarThumb_23() const { return ___m_verticalScrollbarThumb_23; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_m_verticalScrollbarThumb_23() { return &___m_verticalScrollbarThumb_23; }
inline void set_m_verticalScrollbarThumb_23(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___m_verticalScrollbarThumb_23 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_verticalScrollbarThumb_23), (void*)value);
}
inline static int32_t get_offset_of_m_verticalScrollbarUpButton_24() { return static_cast<int32_t>(offsetof(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7, ___m_verticalScrollbarUpButton_24)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_m_verticalScrollbarUpButton_24() const { return ___m_verticalScrollbarUpButton_24; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_m_verticalScrollbarUpButton_24() { return &___m_verticalScrollbarUpButton_24; }
inline void set_m_verticalScrollbarUpButton_24(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___m_verticalScrollbarUpButton_24 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_verticalScrollbarUpButton_24), (void*)value);
}
inline static int32_t get_offset_of_m_verticalScrollbarDownButton_25() { return static_cast<int32_t>(offsetof(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7, ___m_verticalScrollbarDownButton_25)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_m_verticalScrollbarDownButton_25() const { return ___m_verticalScrollbarDownButton_25; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_m_verticalScrollbarDownButton_25() { return &___m_verticalScrollbarDownButton_25; }
inline void set_m_verticalScrollbarDownButton_25(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___m_verticalScrollbarDownButton_25 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_verticalScrollbarDownButton_25), (void*)value);
}
inline static int32_t get_offset_of_m_ScrollView_26() { return static_cast<int32_t>(offsetof(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7, ___m_ScrollView_26)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_m_ScrollView_26() const { return ___m_ScrollView_26; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_m_ScrollView_26() { return &___m_ScrollView_26; }
inline void set_m_ScrollView_26(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___m_ScrollView_26 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ScrollView_26), (void*)value);
}
inline static int32_t get_offset_of_m_CustomStyles_27() { return static_cast<int32_t>(offsetof(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7, ___m_CustomStyles_27)); }
inline GUIStyleU5BU5D_t2F343713D6ADFF41BBCF1D17BAE79F51BD745DBB* get_m_CustomStyles_27() const { return ___m_CustomStyles_27; }
inline GUIStyleU5BU5D_t2F343713D6ADFF41BBCF1D17BAE79F51BD745DBB** get_address_of_m_CustomStyles_27() { return &___m_CustomStyles_27; }
inline void set_m_CustomStyles_27(GUIStyleU5BU5D_t2F343713D6ADFF41BBCF1D17BAE79F51BD745DBB* value)
{
___m_CustomStyles_27 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_CustomStyles_27), (void*)value);
}
inline static int32_t get_offset_of_m_Settings_28() { return static_cast<int32_t>(offsetof(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7, ___m_Settings_28)); }
inline GUISettings_tA863524720A3C984BAE56598D922F2C04DC80EF4 * get_m_Settings_28() const { return ___m_Settings_28; }
inline GUISettings_tA863524720A3C984BAE56598D922F2C04DC80EF4 ** get_address_of_m_Settings_28() { return &___m_Settings_28; }
inline void set_m_Settings_28(GUISettings_tA863524720A3C984BAE56598D922F2C04DC80EF4 * value)
{
___m_Settings_28 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Settings_28), (void*)value);
}
inline static int32_t get_offset_of_m_Styles_30() { return static_cast<int32_t>(offsetof(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7, ___m_Styles_30)); }
inline Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A * get_m_Styles_30() const { return ___m_Styles_30; }
inline Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A ** get_address_of_m_Styles_30() { return &___m_Styles_30; }
inline void set_m_Styles_30(Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A * value)
{
___m_Styles_30 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Styles_30), (void*)value);
}
};
struct GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7_StaticFields
{
public:
// UnityEngine.GUIStyle UnityEngine.GUISkin::ms_Error
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___ms_Error_29;
// UnityEngine.GUISkin_SkinChangedDelegate UnityEngine.GUISkin::m_SkinChanged
SkinChangedDelegate_tAB4CEEA8C8A0BDCFD51C9624AE173C46A40135D8 * ___m_SkinChanged_31;
// UnityEngine.GUISkin UnityEngine.GUISkin::current
GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * ___current_32;
public:
inline static int32_t get_offset_of_ms_Error_29() { return static_cast<int32_t>(offsetof(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7_StaticFields, ___ms_Error_29)); }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * get_ms_Error_29() const { return ___ms_Error_29; }
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** get_address_of_ms_Error_29() { return &___ms_Error_29; }
inline void set_ms_Error_29(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
___ms_Error_29 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ms_Error_29), (void*)value);
}
inline static int32_t get_offset_of_m_SkinChanged_31() { return static_cast<int32_t>(offsetof(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7_StaticFields, ___m_SkinChanged_31)); }
inline SkinChangedDelegate_tAB4CEEA8C8A0BDCFD51C9624AE173C46A40135D8 * get_m_SkinChanged_31() const { return ___m_SkinChanged_31; }
inline SkinChangedDelegate_tAB4CEEA8C8A0BDCFD51C9624AE173C46A40135D8 ** get_address_of_m_SkinChanged_31() { return &___m_SkinChanged_31; }
inline void set_m_SkinChanged_31(SkinChangedDelegate_tAB4CEEA8C8A0BDCFD51C9624AE173C46A40135D8 * value)
{
___m_SkinChanged_31 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SkinChanged_31), (void*)value);
}
inline static int32_t get_offset_of_current_32() { return static_cast<int32_t>(offsetof(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7_StaticFields, ___current_32)); }
inline GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * get_current_32() const { return ___current_32; }
inline GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 ** get_address_of_current_32() { return &___current_32; }
inline void set_current_32(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * value)
{
___current_32 = value;
Il2CppCodeGenWriteBarrier((void**)(&___current_32), (void*)value);
}
};
// UnityEngine.GUISkin_SkinChangedDelegate
struct SkinChangedDelegate_tAB4CEEA8C8A0BDCFD51C9624AE173C46A40135D8 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// 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((void**)m_Items + index, (void*)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((void**)m_Items + index, (void*)value);
}
};
// UnityEngine.GUILayoutOption[]
struct GUILayoutOptionU5BU5D_tAB2AD0A365DBD2277A04E397AE8E1430A022AF1B : public RuntimeArray
{
public:
ALIGN_FIELD (8) GUILayoutOption_t27A0221AC2F6F53E7B89310FD19F51C565D835A6 * m_Items[1];
public:
inline GUILayoutOption_t27A0221AC2F6F53E7B89310FD19F51C565D835A6 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline GUILayoutOption_t27A0221AC2F6F53E7B89310FD19F51C565D835A6 ** 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, GUILayoutOption_t27A0221AC2F6F53E7B89310FD19F51C565D835A6 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline GUILayoutOption_t27A0221AC2F6F53E7B89310FD19F51C565D835A6 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline GUILayoutOption_t27A0221AC2F6F53E7B89310FD19F51C565D835A6 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, GUILayoutOption_t27A0221AC2F6F53E7B89310FD19F51C565D835A6 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Delegate[]
struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Delegate_t * m_Items[1];
public:
inline Delegate_t * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Delegate_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, Delegate_t * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Delegate_t * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Delegate_t ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Delegate_t * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// UnityEngine.GUIStyle[]
struct GUIStyleU5BU5D_t2F343713D6ADFF41BBCF1D17BAE79F51BD745DBB : public RuntimeArray
{
public:
ALIGN_FIELD (8) GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * m_Items[1];
public:
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** 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, GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.String[]
struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E : public RuntimeArray
{
public:
ALIGN_FIELD (8) String_t* m_Items[1];
public:
inline String_t* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline String_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, String_t* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline String_t* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline String_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, String_t* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
IL2CPP_EXTERN_C void GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshal_pinvoke(const GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5& unmarshaled, GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_pinvoke& marshaled);
IL2CPP_EXTERN_C void GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshal_pinvoke_back(const GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_pinvoke& marshaled, GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5& unmarshaled);
IL2CPP_EXTERN_C void GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshal_pinvoke_cleanup(GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_pinvoke& marshaled);
IL2CPP_EXTERN_C void RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A_marshal_pinvoke(const RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A& unmarshaled, RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A_marshaled_pinvoke& marshaled);
IL2CPP_EXTERN_C void RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A_marshal_pinvoke_back(const RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A_marshaled_pinvoke& marshaled, RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A& unmarshaled);
IL2CPP_EXTERN_C void RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A_marshal_pinvoke_cleanup(RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A_marshaled_pinvoke& marshaled);
IL2CPP_EXTERN_C void GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshal_com(const GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5& unmarshaled, GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_com& marshaled);
IL2CPP_EXTERN_C void GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshal_com_back(const GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_com& marshaled, GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5& unmarshaled);
IL2CPP_EXTERN_C void GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshal_com_cleanup(GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_com& marshaled);
IL2CPP_EXTERN_C void RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A_marshal_com(const RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A& unmarshaled, RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A_marshaled_com& marshaled);
IL2CPP_EXTERN_C void RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A_marshal_com_back(const RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A_marshaled_com& marshaled, RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A& unmarshaled);
IL2CPP_EXTERN_C void RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A_marshal_com_cleanup(RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A_marshaled_com& marshaled);
IL2CPP_EXTERN_C void GUIStyle_t671F175A201A19166385EE3392292A5F50070572_marshal_pinvoke(const GUIStyle_t671F175A201A19166385EE3392292A5F50070572& unmarshaled, GUIStyle_t671F175A201A19166385EE3392292A5F50070572_marshaled_pinvoke& marshaled);
IL2CPP_EXTERN_C void GUIStyle_t671F175A201A19166385EE3392292A5F50070572_marshal_pinvoke_back(const GUIStyle_t671F175A201A19166385EE3392292A5F50070572_marshaled_pinvoke& marshaled, GUIStyle_t671F175A201A19166385EE3392292A5F50070572& unmarshaled);
IL2CPP_EXTERN_C void GUIStyle_t671F175A201A19166385EE3392292A5F50070572_marshal_pinvoke_cleanup(GUIStyle_t671F175A201A19166385EE3392292A5F50070572_marshaled_pinvoke& marshaled);
IL2CPP_EXTERN_C void GUIStyle_t671F175A201A19166385EE3392292A5F50070572_marshal_com(const GUIStyle_t671F175A201A19166385EE3392292A5F50070572& unmarshaled, GUIStyle_t671F175A201A19166385EE3392292A5F50070572_marshaled_com& marshaled);
IL2CPP_EXTERN_C void GUIStyle_t671F175A201A19166385EE3392292A5F50070572_marshal_com_back(const GUIStyle_t671F175A201A19166385EE3392292A5F50070572_marshaled_com& marshaled, GUIStyle_t671F175A201A19166385EE3392292A5F50070572& unmarshaled);
IL2CPP_EXTERN_C void GUIStyle_t671F175A201A19166385EE3392292A5F50070572_marshal_com_cleanup(GUIStyle_t671F175A201A19166385EE3392292A5F50070572_marshaled_com& marshaled);
// System.Void System.Collections.Generic.List`1<System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mC832F1AC0F814BAEB19175F5D7972A7507508BC3_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, const RuntimeMethod* method);
// System.Int32 System.Collections.Generic.List`1<System.Object>::get_Count()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_gshared_inline (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, const RuntimeMethod* method);
// System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<System.Object>::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD List_1_GetEnumerator_m52CC760E475D226A2B75048D70C4E22692F9F68D_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, const RuntimeMethod* method);
// !0 System.Collections.Generic.List`1/Enumerator<System.Object>::get_Current()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_mD7829C7E8CFBEDD463B15A951CDE9B90A12CC55C_gshared_inline (Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Object>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m38B1099DDAD7EEDE2F4CDAB11C095AC784AC2E34_gshared (Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<System.Object>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m94D0DAE031619503CDA6E53C5C3CC78AF3139472_gshared (Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD * __this, const RuntimeMethod* method);
// !0 System.Collections.Generic.List`1<System.Object>::get_Item(System.Int32)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * List_1_get_Item_mFDB8AD680C600072736579BBF5F38F7416396588_gshared_inline (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, int32_t ___index0, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::TryGetValue(!0,!1&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_m867F6DA953678D0333A55270B7C6EF38EFC293FF_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, int32_t ___key0, RuntimeObject ** ___value1, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::set_Item(!0,!1)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_mF9A6FBE4006C89D15B8C88B2CB46E9B24D18B7FC_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, int32_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m7D745ADE56151C2895459668F4A4242985E526D8_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::.ctor(System.Collections.Generic.IEqualityComparer`1<!0>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m76CDCB0C7BECE95DBA94C7C98467F297E4451EE7_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::set_Item(!0,!1)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_m466D001F105E25DEB5C9BCB17837EE92A27FDE93_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::TryGetValue(!0,!1&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_m3455807C552312C60038DF52EF328C3687442DE3_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * ___key0, RuntimeObject ** ___value1, const RuntimeMethod* method);
// System.Collections.Generic.Dictionary`2/ValueCollection<!0,!1> System.Collections.Generic.Dictionary`2<System.Object,System.Object>::get_Values()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueCollection_tB118C56BE90A8B19D389651BC1B14D98E5384B14 * Dictionary_2_get_Values_mB70E6DB1BECFB212CD23C3E06E480CAE7EFA9EE9_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, const RuntimeMethod* method);
// System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<!0,!1> System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Object>::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F ValueCollection_GetEnumerator_m6AA58C894265BF1E8514350C4B51CB7811D24674_gshared (ValueCollection_tB118C56BE90A8B19D389651BC1B14D98E5384B14 * __this, const RuntimeMethod* method);
// !2 System.Func`3<System.Int32,System.IntPtr,System.Boolean>::Invoke(!0,!1)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Func_3_Invoke_mCD6DEEC09B4F1B42DD0FD4A8F58632B08EC66737_gshared (Func_3_tBD99633D8A18C43CC528ECE3F77E2F69900048A7 * __this, int32_t ___arg10, intptr_t ___arg21, const RuntimeMethod* method);
// !1 System.Func`2<System.Object,System.Boolean>::Invoke(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Func_2_Invoke_mAE8945859643E5D0DADDF6194083A0E5F9E4133B_gshared (Func_2_t4B4B1E74248F38404B56001A709D81142DE730CC * __this, RuntimeObject * ___arg0, const RuntimeMethod* method);
// System.Void UnityEngine.Event::get_mousePosition_Injected(UnityEngine.Vector2&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Event_get_mousePosition_Injected_mE71FE88F6E27190A534BD5862941E5887D6BE632 (Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * __this, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * ___ret0, const RuntimeMethod* method);
// System.Void UnityEngine.Event::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Event__ctor_mF8E4029007206A6CAAB28422355BA208C0728FB9 (Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * __this, int32_t ___displayIndex0, const RuntimeMethod* method);
// System.Void UnityEngine.Event::set_displayIndex(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Event_set_displayIndex_mF73CEED3B26A4BCADB099E5E6685FE6AC2CF7289 (Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * __this, int32_t ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.Event::Internal_SetNativeEvent(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Event_Internal_SetNativeEvent_mDD8C9E3F062FD112ED996FA4E45C1BFBB8C4E950 (intptr_t ___ptr0, const RuntimeMethod* method);
// System.Void System.Object::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0 (RuntimeObject * __this, const RuntimeMethod* method);
// System.IntPtr UnityEngine.Event::Internal_Create(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t Event_Internal_Create_m93F047D4FC3B4B76FD4F80439D0F7EE131EE1E6B (int32_t ___displayIndex0, const RuntimeMethod* method);
// System.Boolean System.IntPtr::op_Inequality(System.IntPtr,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IntPtr_op_Inequality_mB4886A806009EA825EFCC60CD2A7F6EB8E273A61 (intptr_t ___value10, intptr_t ___value21, const RuntimeMethod* method);
// System.Void UnityEngine.Event::Internal_Destroy(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Event_Internal_Destroy_m30C46F30A51ABAC5EC270FB75A9856676AA3515C (intptr_t ___ptr0, const RuntimeMethod* method);
// System.Void System.Object::Finalize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object_Finalize_m4015B7D3A44DE125C5FE34D7276CD4697C06F380 (RuntimeObject * __this, const RuntimeMethod* method);
// UnityEngine.EventType UnityEngine.Event::get_type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Event_get_type_mAABE4A35E5658E0079A1518D318AF2592F51D6FA (Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.Event::get_isKey()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Event_get_isKey_m17D185B6CD336242BC5FB9BAB025EE8FA7771E90 (Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * __this, const RuntimeMethod* method);
// UnityEngine.KeyCode UnityEngine.Event::get_keyCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Event_get_keyCode_m8B0AAD347861E322E91D2B7320A99E04D39575CF (Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.Event::get_isMouse()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Event_get_isMouse_m5923637C4A5E3BD642C3E88A428D5B39F0A85AB6 (Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * __this, const RuntimeMethod* method);
// UnityEngine.Vector2 UnityEngine.Event::get_mousePosition()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tA85D2DD88578276CA8A8796756458277E72D073D Event_get_mousePosition_m92AD98489A626864E9B179273270802EB1D2C085 (Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.Vector2::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Vector2_GetHashCode_m028AB6B14EBC6D668CFA45BF6EDEF17E2C44EA54 (Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * __this, const RuntimeMethod* method);
// UnityEngine.EventModifiers UnityEngine.Event::get_modifiers()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Event_get_modifiers_m4D1BDE843A9379F50C3F32CB78CCDAD84B779108 (Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * __this, const RuntimeMethod* method);
// System.Type System.Object::GetType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60 (RuntimeObject * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.Vector2::op_Equality(UnityEngine.Vector2,UnityEngine.Vector2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Vector2_op_Equality_m0E86E1B1038DDB8554A8A0D58729A7788D989588 (Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___lhs0, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___rhs1, const RuntimeMethod* method);
// System.Char UnityEngine.Event::get_character()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Event_get_character_m78B46D412357B71233F3D41842928A19B290915C (Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * __this, const RuntimeMethod* method);
// System.String UnityEngine.UnityString::Format(System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityString_Format_m415056ECF8DA7B3EC6A8456E299D0C2002177387 (String_t* ___fmt0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args1, const RuntimeMethod* method);
// System.String System.String::Concat(System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mB7BA84F13912303B2E5E40FBF0109E1A328ACA07 (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args0, const RuntimeMethod* method);
// System.String UnityEngine.Event::get_commandName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Event_get_commandName_m119D9F8B0A7BA18B849B958CFAF249C970C00BF1 (Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * __this, const RuntimeMethod* method);
// System.String System.String::Concat(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m798542DE19B3F02DC4F4B777BB2E73169F129DE1 (RuntimeObject * ___arg00, const RuntimeMethod* method);
// System.Void UnityEngineInternal.GenericStack::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GenericStack__ctor_m0659B84DB6B093AF1F01F566686C510DDEEAE848 (GenericStack_tC59D21E8DBC50F3C608479C942200AC44CA2D5BC * __this, const RuntimeMethod* method);
// System.DateTime System.DateTime::get_Now()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_get_Now_mB464D30F15C97069F92C1F910DCDDC3DFCC7F7D2 (const RuntimeMethod* method);
// System.Void UnityEngine.GUI::set_nextScrollStepTime(System.DateTime)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void GUI_set_nextScrollStepTime_m0EBE9A3F5960CD23334E4678D9CF6F5E15CBDE23_inline (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.GUIUtility::CheckOnGUI()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIUtility_CheckOnGUI_mBFC764B475683BC50E40BD249248CE43DA754873 (const RuntimeMethod* method);
// System.Void UnityEngine.GUI::DoSetSkin(UnityEngine.GUISkin)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUI_DoSetSkin_mC72F1980793E86E8F33D641A207D2AAB409A71F7 (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * ___newSkin0, const RuntimeMethod* method);
// System.Boolean UnityEngine.Object::op_Implicit(UnityEngine.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_op_Implicit_m8B2A44B4B1406ED346D1AE6D962294FD58D0D534 (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___exists0, const RuntimeMethod* method);
// UnityEngine.GUISkin UnityEngine.GUIUtility::GetDefaultSkin()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * GUIUtility_GetDefaultSkin_m2F1B580445522074FF41CF9906531DBEAB034365 (const RuntimeMethod* method);
// System.Void UnityEngine.GUISkin::MakeCurrent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUISkin_MakeCurrent_m42FAF8090F6B57648678704D86A6451DB917CF2D (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, const RuntimeMethod* method);
// UnityEngine.GUILayoutUtility/LayoutCache UnityEngine.GUILayoutUtility::SelectIDList(System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * GUILayoutUtility_SelectIDList_m230ED9206897C92C5B090B3BBFC9B408603E56FD (int32_t ___instanceID0, bool ___isWindow1, const RuntimeMethod* method);
// UnityEngine.GUISkin UnityEngine.GUI::get_skin()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * GUI_get_skin_mF6804BE33CFD74FF0665C1185AC7B5C1687AE866 (const RuntimeMethod* method);
// UnityEngine.Event UnityEngine.Event::get_current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * Event_get_current_m072CEE599D11B8A9A916697E57C0F561188CDB2B (const RuntimeMethod* method);
// UnityEngine.GUILayoutOption UnityEngine.GUILayout::Width(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GUILayoutOption_t27A0221AC2F6F53E7B89310FD19F51C565D835A6 * GUILayout_Width_mDA8F26D92E788474E09AECA1541E8C920C72DA10 (float ___width0, const RuntimeMethod* method);
// UnityEngine.GUILayoutOption UnityEngine.GUILayout::Height(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GUILayoutOption_t27A0221AC2F6F53E7B89310FD19F51C565D835A6 * GUILayout_Height_mA5A24D5490022AC6449BBAED9C5A1647184B4026 (float ___height0, const RuntimeMethod* method);
// System.Void UnityEngine.GUILayoutUtility::BeginWindow(System.Int32,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUILayoutUtility_BeginWindow_mB3475D9BE89CF26AB0E6F0D46B1930F1874EB132 (int32_t ___windowID0, GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___style1, GUILayoutOptionU5BU5D_tAB2AD0A365DBD2277A04E397AE8E1430A022AF1B* ___options2, const RuntimeMethod* method);
// UnityEngine.GUIStyle UnityEngine.GUIStyle::get_none()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * GUIStyle_get_none_m2B48FA4E2FA2B9BB7A458DF25B1391F9C7BB8B7B (const RuntimeMethod* method);
// System.Void UnityEngine.GUI::set_skin(UnityEngine.GUISkin)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUI_set_skin_mFC9EC2E88A46A7F42664C6C41D8CCD9B9BA4DBA0 (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.GUI/WindowFunction::Invoke(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WindowFunction_Invoke_m08350FBFB60BC55246725A4840931AED2CAFF9AD (WindowFunction_t9AF05117863D95AA9F85D497A3B9B53216708100 * __this, int32_t ___id0, const RuntimeMethod* method);
// System.Void UnityEngine.GUILayoutUtility::Layout()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUILayoutUtility_Layout_mB01F00635FD538214B47A545C53E4F8C682491B5 (const RuntimeMethod* method);
// System.Void UnityEngine.GUIContent::.ctor(System.String,UnityEngine.Texture,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIContent__ctor_m2805872C5E7E66C3ABF83607DC02BEB1BEFA82DA (GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 * __this, String_t* ___text0, Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 * ___image1, String_t* ___tooltip2, const RuntimeMethod* method);
// System.Void UnityEngine.GUIContent::set_text(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIContent_set_text_m866E0C5690119816D87D83124C81BDC0A0ED4316 (GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.GUIContent::set_image(UnityEngine.Texture)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIContent_set_image_m85ABAF5AE045BDD9C09EA75243094D16222DB38C (GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 * __this, Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 * ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.GUIContent::set_tooltip(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIContent_set_tooltip_mDFC634B0DF68DB6A02F294106BC261EFC0FD0A67 (GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.GUIContent::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIContent__ctor_m939CDEFF44061020E997A0F0640ADDF2740B0C38 (GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.GUIContent::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIContent__ctor_m8EE36BB9048C2A279E7EAD258D63F2A1BDEA8A81 (GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 * __this, String_t* ___text0, const RuntimeMethod* method);
// System.Void UnityEngine.GUILayoutOption::.ctor(UnityEngine.GUILayoutOption/Type,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUILayoutOption__ctor_m965FDA1345FD7146596EFA90F03D0C645FB3FD5D (GUILayoutOption_t27A0221AC2F6F53E7B89310FD19F51C565D835A6 * __this, int32_t ___type0, RuntimeObject * ___value1, const RuntimeMethod* method);
// UnityEngine.GUIStyle UnityEngine.GUILayoutEntry::get_style()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * GUILayoutEntry_get_style_m70E386A3289ACFEC515B1358827AB2FBF6314BA4 (GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * __this, const RuntimeMethod* method);
// UnityEngine.RectOffset UnityEngine.GUIStyle::get_margin()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * GUIStyle_get_margin_mFC3EA0FA030A6334AC03BDDFA4AC80419C9E5BAA (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.RectOffset::get_left()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RectOffset_get_left_mA86EC00866C1940134873E3A1565A1F700DE67AD (RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.RectOffset::get_right()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RectOffset_get_right_m9B05958C3C1B31F1FAB8675834A492C7208F6C96 (RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.RectOffset::get_top()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RectOffset_get_top_mBA813D4147BFBC079933054018437F411B6B41E1 (RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.RectOffset::get_bottom()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RectOffset_get_bottom_mE5162CADD266B59539E3EE1967EE9A74705E5632 (RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Rect::.ctor(System.Single,System.Single,System.Single,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Rect__ctor_m50B92C75005C9C5A0D05E6E0EBB43AFAF7C66280 (Rect_t35B976DE901B5423C11705E156938EA27AB402CE * __this, float ___x0, float ___y1, float ___width2, float ___height3, const RuntimeMethod* method);
// System.Void UnityEngine.GUILayoutEntry::set_style(UnityEngine.GUIStyle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUILayoutEntry_set_style_mEDD232A6CDB1B76ABC33EA06A05235316A180E2D (GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * __this, GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.Rect::set_x(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Rect_set_x_m49EFE25263C03A48D52499C3E9C097298E0EA3A6 (Rect_t35B976DE901B5423C11705E156938EA27AB402CE * __this, float ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.Rect::set_width(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Rect_set_width_mC81EF602AC91E0C615C12FCE060254A461A152B8 (Rect_t35B976DE901B5423C11705E156938EA27AB402CE * __this, float ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.Rect::set_y(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Rect_set_y_mCFDB9BD77334EF9CD896F64BE63C755777D7CCD5 (Rect_t35B976DE901B5423C11705E156938EA27AB402CE * __this, float ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.Rect::set_height(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Rect_set_height_mF4CB5A97D4706696F1C9EA31A5D8C466E48050D6 (Rect_t35B976DE901B5423C11705E156938EA27AB402CE * __this, float ___value0, const RuntimeMethod* method);
// System.Single UnityEngine.GUIStyle::get_fixedWidth()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float GUIStyle_get_fixedWidth_mEACB70758F83DCD64CE363143849CC40E49B8D8D (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.GUIStyle::get_stretchWidth()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GUIStyle_get_stretchWidth_m4513B313AABE48E1D10424844DC186405BC8A677 (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * __this, const RuntimeMethod* method);
// System.Single UnityEngine.GUIStyle::get_fixedHeight()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float GUIStyle_get_fixedHeight_m9B5589C95B27C5590219413E8D7E9E1E95EB7708 (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.GUIStyle::get_stretchHeight()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GUIStyle_get_stretchHeight_m264308B18FA5F0A8400CF49945BAE1B9EFDC934F (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * __this, const RuntimeMethod* method);
// System.String System.String::Concat(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE (String_t* ___str00, String_t* ___str11, const RuntimeMethod* method);
// System.String UnityEngine.GUIStyle::get_name()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* GUIStyle_get_name_m111D8AB0173E1EBA46A9664EBABBC82AFE3ED71E (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * __this, const RuntimeMethod* method);
// System.Single UnityEngine.Rect::get_x()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Rect_get_x_mC51A461F546D14832EB96B11A7198DADDE2597B7 (Rect_t35B976DE901B5423C11705E156938EA27AB402CE * __this, const RuntimeMethod* method);
// System.Single UnityEngine.Rect::get_xMax()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Rect_get_xMax_mA16D7C3C2F30F8608719073ED79028C11CE90983 (Rect_t35B976DE901B5423C11705E156938EA27AB402CE * __this, const RuntimeMethod* method);
// System.Single UnityEngine.Rect::get_y()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Rect_get_y_m53E3E4F62D9840FBEA751A66293038F1F5D1D45C (Rect_t35B976DE901B5423C11705E156938EA27AB402CE * __this, const RuntimeMethod* method);
// System.Single UnityEngine.Rect::get_yMax()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Rect_get_yMax_m8AA5E92C322AF3FF571330F00579DA864F33341B (Rect_t35B976DE901B5423C11705E156938EA27AB402CE * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<UnityEngine.GUILayoutEntry>::.ctor()
inline void List_1__ctor_m8334B758D374FE266FFF49329936203BCE3A3770 (List_1_t046427F3923444CF746C550FD96A3D0E4189D273 * __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t046427F3923444CF746C550FD96A3D0E4189D273 *, const RuntimeMethod*))List_1__ctor_mC832F1AC0F814BAEB19175F5D7972A7507508BC3_gshared)(__this, method);
}
// System.Void UnityEngine.GUILayoutEntry::.ctor(System.Single,System.Single,System.Single,System.Single,UnityEngine.GUIStyle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUILayoutEntry__ctor_mC640CA08AEBCC7E479DB6AF5B208436A98AB75B2 (GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * __this, float ____minWidth0, float ____maxWidth1, float ____minHeight2, float ____maxHeight3, GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ____style4, const RuntimeMethod* method);
// System.Void UnityEngine.GUILayoutEntry::ApplyOptions(UnityEngine.GUILayoutOption[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUILayoutEntry_ApplyOptions_m2002EBD9FE42B9787544D204A71C8BEF3F671F5B (GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * __this, GUILayoutOptionU5BU5D_tAB2AD0A365DBD2277A04E397AE8E1430A022AF1B* ___options0, const RuntimeMethod* method);
// System.Void UnityEngine.GUILayoutEntry::ApplyStyleSettings(UnityEngine.GUIStyle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUILayoutEntry_ApplyStyleSettings_m5516B497544317E3B720CE7867CA960076E2AF47 (GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * __this, GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___style0, const RuntimeMethod* method);
// System.Int32 System.Collections.Generic.List`1<UnityEngine.GUILayoutEntry>::get_Count()
inline int32_t List_1_get_Count_m2995506A297520F84CBD9AD421D8672D5755E115_inline (List_1_t046427F3923444CF746C550FD96A3D0E4189D273 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t046427F3923444CF746C550FD96A3D0E4189D273 *, const RuntimeMethod*))List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_gshared_inline)(__this, method);
}
// UnityEngine.RectOffset UnityEngine.GUIStyle::get_padding()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * GUIStyle_get_padding_m5DF76AA03A313366D0DD8D577731DAC4FB83053A (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.RectOffset::get_horizontal()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RectOffset_get_horizontal_m9274B965D5D388F6F750D127B3E57F70DF0D89C1 (RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * __this, const RuntimeMethod* method);
// System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<UnityEngine.GUILayoutEntry>::GetEnumerator()
inline Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 List_1_GetEnumerator_mA457B3CB61E2B7BAFB0F7D0ADEFD25237B4429DF (List_1_t046427F3923444CF746C550FD96A3D0E4189D273 * __this, const RuntimeMethod* method)
{
return (( Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 (*) (List_1_t046427F3923444CF746C550FD96A3D0E4189D273 *, const RuntimeMethod*))List_1_GetEnumerator_m52CC760E475D226A2B75048D70C4E22692F9F68D_gshared)(__this, method);
}
// !0 System.Collections.Generic.List`1/Enumerator<UnityEngine.GUILayoutEntry>::get_Current()
inline GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * Enumerator_get_Current_m9422C22943D0E9900CDB7DF407D9EBE215B2A6B6_inline (Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 * __this, const RuntimeMethod* method)
{
return (( GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * (*) (Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 *, const RuntimeMethod*))Enumerator_get_Current_mD7829C7E8CFBEDD463B15A951CDE9B90A12CC55C_gshared_inline)(__this, method);
}
// System.Int32 UnityEngine.Mathf::Min(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Mathf_Min_m1A2CC204E361AE13C329B6535165179798D3313A (int32_t ___a0, int32_t ___b1, const RuntimeMethod* method);
// System.Int32 UnityEngine.GUILayoutEntry::get_marginHorizontal()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GUILayoutEntry_get_marginHorizontal_m1FB1B936E7C702BAD92FE4CA1EEC529A2BECCEC4 (GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * __this, const RuntimeMethod* method);
// System.Single UnityEngine.Mathf::Max(System.Single,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Mathf_Max_m670AE0EC1B09ED1A56FF9606B0F954670319CB65 (float ___a0, float ___b1, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.GUILayoutEntry>::MoveNext()
inline bool Enumerator_MoveNext_m3A0A0A98E9378A32A74EC51C4CAB6C564001CAC7 (Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 *, const RuntimeMethod*))Enumerator_MoveNext_m38B1099DDAD7EEDE2F4CDAB11C095AC784AC2E34_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.GUILayoutEntry>::Dispose()
inline void Enumerator_Dispose_mB540C90AE8EBE0EB3D63A6ACE5EC863FAD1419B2 (Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 *, const RuntimeMethod*))Enumerator_Dispose_m94D0DAE031619503CDA6E53C5C3CC78AF3139472_gshared)(__this, method);
}
// !0 System.Collections.Generic.List`1<UnityEngine.GUILayoutEntry>::get_Item(System.Int32)
inline GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * List_1_get_Item_m96FCB482CBADC5AD4AD5F01B7A0B822AF619D388_inline (List_1_t046427F3923444CF746C550FD96A3D0E4189D273 * __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * (*) (List_1_t046427F3923444CF746C550FD96A3D0E4189D273 *, int32_t, const RuntimeMethod*))List_1_get_Item_mFDB8AD680C600072736579BBF5F38F7416396588_gshared_inline)(__this, ___index0, method);
}
// System.Int32 UnityEngine.Mathf::Max(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Mathf_Max_mBDE4C6F1883EE3215CD7AE62550B2AC90592BC3F (int32_t ___a0, int32_t ___b1, const RuntimeMethod* method);
// System.Void UnityEngine.GUILayoutEntry::SetHorizontal(System.Single,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUILayoutEntry_SetHorizontal_m46A5D9344EE72AF9AA7D07C77C30745F9FE97DE8 (GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * __this, float ___x0, float ___width1, const RuntimeMethod* method);
// System.Single UnityEngine.Mathf::Clamp(System.Single,System.Single,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Mathf_Clamp_m033DD894F89E6DCCDAFC580091053059C86A4507 (float ___value0, float ___min1, float ___max2, const RuntimeMethod* method);
// System.Single UnityEngine.Mathf::Lerp(System.Single,System.Single,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Mathf_Lerp_m9A74C5A0C37D0CDF45EE66E7774D12A9B93B1364 (float ___a0, float ___b1, float ___t2, const RuntimeMethod* method);
// System.Int32 UnityEngine.RectOffset::get_vertical()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RectOffset_get_vertical_m89ED337C8D303C8994B2B056C05368E4286CFC5E (RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * __this, const RuntimeMethod* method);
// System.Void UnityEngine.GUILayoutEntry::SetVertical(System.Single,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUILayoutEntry_SetVertical_mC0E71E5E431907DD1900C707BD3E2E1D0795DDD0 (GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * __this, float ___y0, float ___height1, const RuntimeMethod* method);
// System.Int32 UnityEngine.GUILayoutEntry::get_marginVertical()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GUILayoutEntry_get_marginVertical_mBFB3FD56025F4627378E5A339379CFF720196EB0 (GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * __this, const RuntimeMethod* method);
// System.String UnityEngine.GUILayoutEntry::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* GUILayoutEntry_ToString_mCDA5CD14A39ADAD29F6B450B98FDB80E37AC95D5 (GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * __this, const RuntimeMethod* method);
// System.String System.String::Concat(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mF4626905368D6558695A823466A1AF65EADB9923 (String_t* ___str00, String_t* ___str11, String_t* ___str22, const RuntimeMethod* method);
// System.Void UnityEngine.GUILayoutUtility::Internal_GetWindowRect_Injected(System.Int32,UnityEngine.Rect&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUILayoutUtility_Internal_GetWindowRect_Injected_mE78DA4F8B25471CEFFCB6F43E37C7966FE436EEE (int32_t ___windowID0, Rect_t35B976DE901B5423C11705E156938EA27AB402CE * ___ret1, const RuntimeMethod* method);
// System.Void UnityEngine.GUILayoutUtility::Internal_MoveWindow_Injected(System.Int32,UnityEngine.Rect&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUILayoutUtility_Internal_MoveWindow_Injected_mD80D56182A5684AC3BDA2B50AC8191974A064ABE (int32_t ___windowID0, Rect_t35B976DE901B5423C11705E156938EA27AB402CE * ___r1, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.GUILayoutUtility/LayoutCache>::TryGetValue(!0,!1&)
inline bool Dictionary_2_TryGetValue_m0E6D1EEC81E6A904B99EEC04DB95C1CC0E4A0B31 (Dictionary_2_t0F1A21E14D53E05B0F1D474060AC4B36995FBCA1 * __this, int32_t ___key0, LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 ** ___value1, const RuntimeMethod* method)
{
return (( bool (*) (Dictionary_2_t0F1A21E14D53E05B0F1D474060AC4B36995FBCA1 *, int32_t, LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 **, const RuntimeMethod*))Dictionary_2_TryGetValue_m867F6DA953678D0333A55270B7C6EF38EFC293FF_gshared)(__this, ___key0, ___value1, method);
}
// System.Void UnityEngine.GUILayoutUtility/LayoutCache::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LayoutCache__ctor_mF66D53540321BFD98CA89285D2E8FFDA5014A9CE (LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.GUILayoutUtility/LayoutCache>::set_Item(!0,!1)
inline void Dictionary_2_set_Item_mB2CFA325B47C43C9E27C606844FE1AED4CD344A2 (Dictionary_2_t0F1A21E14D53E05B0F1D474060AC4B36995FBCA1 * __this, int32_t ___key0, LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * ___value1, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t0F1A21E14D53E05B0F1D474060AC4B36995FBCA1 *, int32_t, LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 *, const RuntimeMethod*))Dictionary_2_set_Item_mF9A6FBE4006C89D15B8C88B2CB46E9B24D18B7FC_gshared)(__this, ___key0, ___value1, method);
}
// System.Void UnityEngine.GUILayoutGroup::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUILayoutGroup__ctor_m14D8B35B4A89F6688D354A534ED871860905BA3B (GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.Screen::get_width()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Screen_get_width_m8ECCEF7FF17395D1237BC0193D7A6640A3FEEAD3 (const RuntimeMethod* method);
// System.Single UnityEngine.GUIUtility::get_pixelsPerPoint()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float GUIUtility_get_pixelsPerPoint_m6B4AB38F60A0AC54034A62043F74E06A613E4D56 (const RuntimeMethod* method);
// System.Single UnityEngine.Mathf::Min(System.Single,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Mathf_Min_mCF9BE0E9CAC9F18D207692BB2DAC7F3E1D4E1CB7 (float ___a0, float ___b1, const RuntimeMethod* method);
// System.Int32 UnityEngine.Screen::get_height()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Screen_get_height_mF5B64EBC4CDE0EAAA5713C1452ED2CE475F25150 (const RuntimeMethod* method);
// System.Void UnityEngine.GUILayoutUtility::LayoutFreeGroup(UnityEngine.GUILayoutGroup)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUILayoutUtility_LayoutFreeGroup_m890E6BD9614C48B151D61F197251E3DBAC637967 (GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * ___toplevel0, const RuntimeMethod* method);
// System.Void UnityEngine.GUILayoutUtility::LayoutSingleGroup(UnityEngine.GUILayoutGroup)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUILayoutUtility_LayoutSingleGroup_m0BE91E195E4E2FC8B5B491783AFACBD1310F15A1 (GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * ___i0, const RuntimeMethod* method);
// System.Void UnityEngine.Debug::LogError(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogError_m3BCF9B78263152261565DCA9DB7D55F0C391ED29 (RuntimeObject * ___message0, const RuntimeMethod* method);
// System.Void UnityEngine.GUILayoutGroup::ResetCursor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUILayoutGroup_ResetCursor_mD159DD9E101F6F348249D27D95709E1DC5C0A13F (GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * __this, const RuntimeMethod* method);
// UnityEngine.Rect UnityEngine.GUILayoutUtility::Internal_GetWindowRect(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Rect_t35B976DE901B5423C11705E156938EA27AB402CE GUILayoutUtility_Internal_GetWindowRect_mE35BED0433EE8BD928CD52681620519E647A1DA9 (int32_t ___windowID0, const RuntimeMethod* method);
// System.Single UnityEngine.Rect::get_width()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Rect_get_width_m54FF69FC2C086E2DC349ED091FD0D6576BFB1484 (Rect_t35B976DE901B5423C11705E156938EA27AB402CE * __this, const RuntimeMethod* method);
// System.Single UnityEngine.Rect::get_height()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Rect_get_height_m088C36990E0A255C5D7DCE36575DCE23ABB364B5 (Rect_t35B976DE901B5423C11705E156938EA27AB402CE * __this, const RuntimeMethod* method);
// System.Void UnityEngine.GUILayoutUtility::Internal_MoveWindow(System.Int32,UnityEngine.Rect)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUILayoutUtility_Internal_MoveWindow_mFCB2DFE399B833D263138CF0A57626AFF52CB037 (int32_t ___windowID0, Rect_t35B976DE901B5423C11705E156938EA27AB402CE ___r1, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.GUILayoutUtility/LayoutCache>::.ctor()
inline void Dictionary_2__ctor_mD9286F4A0EF1BEC0B6BC4BD72D8D6A246B994EBF (Dictionary_2_t0F1A21E14D53E05B0F1D474060AC4B36995FBCA1 * __this, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t0F1A21E14D53E05B0F1D474060AC4B36995FBCA1 *, const RuntimeMethod*))Dictionary_2__ctor_m7D745ADE56151C2895459668F4A4242985E526D8_gshared)(__this, method);
}
// System.Void UnityEngine.GUILayoutGroup::CalcWidth()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUILayoutGroup_CalcWidth_m0D2819C659392B14175C2B163DD889AD35794A9B (GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.GUILayoutGroup::SetHorizontal(System.Single,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUILayoutGroup_SetHorizontal_m0AFB617E7BB6B32431BA65873B27660E6E5C9E51 (GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * __this, float ___x0, float ___width1, const RuntimeMethod* method);
// System.Void UnityEngine.GUILayoutGroup::CalcHeight()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUILayoutGroup_CalcHeight_m0511BD2172BC13D54ABC8DB5887A91C17E9F21BB (GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.GUILayoutGroup::SetVertical(System.Single,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUILayoutGroup_SetVertical_m29D8744D2D1464EF4E6E4008CD21F5E44D6CB146 (GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * __this, float ___y0, float ___height1, const RuntimeMethod* method);
// UnityEngine.Color UnityEngine.Color::get_white()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 Color_get_white_mE7F3AC4FF0D6F35E48049C73116A222CBE96D905 (const RuntimeMethod* method);
// System.Void UnityEngine.Color::.ctor(System.Single,System.Single,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Color__ctor_mC9AEEB3931D5B8C37483A884DD8EB40DC8946369 (Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * __this, float ___r0, float ___g1, float ___b2, const RuntimeMethod* method);
// System.Void UnityEngine.GUISettings::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUISettings__ctor_m6D2D6608CE04A741235BF0C8E134195B196F116D (GUISettings_tA863524720A3C984BAE56598D922F2C04DC80EF4 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.ScriptableObject::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableObject__ctor_m6E2B3821A4A361556FC12E9B1C71E1D5DC002C5B (ScriptableObject_tAB015486CEAB714DA0D5C1BA389B84FB90427734 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.GUISkin::Apply()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUISkin_Apply_mA93B0EEE3C2DE1F8D867A472130CDA98814C8A49 (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.Object::op_Equality(UnityEngine.Object,UnityEngine.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___x0, Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___y1, const RuntimeMethod* method);
// System.Void UnityEngine.GUIStyle::SetDefaultFont(UnityEngine.Font)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIStyle_SetDefaultFont_m09D149F682E885D7058E3C48EB42C9E62363E381 (Font_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26 * ___font0, const RuntimeMethod* method);
// System.Void UnityEngine.GUIStyle::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIStyle__ctor_m8AA3D5AA506A252687923D0DA80741862AA83805 (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.GUIStyle::set_name(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIStyle_set_name_m3D232D5A8EAD7B29F1F2DA3ADD01B99EFF83F1D7 (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.Debug::Log(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_Log_m4B7C70BAFD477C6BDB59C88A0934F0B018D03708 (RuntimeObject * ___message0, const RuntimeMethod* method);
// System.Void UnityEngine.GUISkin::BuildStyleCache()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUISkin_BuildStyleCache_m2C68BB5521EAF11FC98C86D7E60008901D61866A (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, const RuntimeMethod* method);
// System.StringComparer System.StringComparer::get_OrdinalIgnoreCase()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * StringComparer_get_OrdinalIgnoreCase_m3F2527D9A11521E8B51F0AC8F70DB272DA8334C9_inline (const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<System.String,UnityEngine.GUIStyle>::.ctor(System.Collections.Generic.IEqualityComparer`1<!0>)
inline void Dictionary_2__ctor_mE7D4915AD1A64B140D2C412B197D4D43B016074E (Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A *, RuntimeObject*, const RuntimeMethod*))Dictionary_2__ctor_m76CDCB0C7BECE95DBA94C7C98467F297E4451EE7_gshared)(__this, ___comparer0, method);
}
// System.Void System.Collections.Generic.Dictionary`2<System.String,UnityEngine.GUIStyle>::set_Item(!0,!1)
inline void Dictionary_2_set_Item_m24E725BAB2853FE434C3D507858296BA81733DC5 (Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A * __this, String_t* ___key0, GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___value1, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A *, String_t*, GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *, const RuntimeMethod*))Dictionary_2_set_Item_m466D001F105E25DEB5C9BCB17837EE92A27FDE93_gshared)(__this, ___key0, ___value1, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2<System.String,UnityEngine.GUIStyle>::TryGetValue(!0,!1&)
inline bool Dictionary_2_TryGetValue_m72452D4223AA3313BF658BFBDFC1B417CA40EC18 (Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A * __this, String_t* ___key0, GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** ___value1, const RuntimeMethod* method)
{
return (( bool (*) (Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A *, String_t*, GUIStyle_t671F175A201A19166385EE3392292A5F50070572 **, const RuntimeMethod*))Dictionary_2_TryGetValue_m3455807C552312C60038DF52EF328C3687442DE3_gshared)(__this, ___key0, ___value1, method);
}
// UnityEngine.GUIStyle UnityEngine.GUISkin::get_error()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * GUISkin_get_error_m40FBD0C57353CBFD8EE75B796E3EADBF9033C47F (const RuntimeMethod* method);
// System.Void UnityEngine.GUIStyle::set_stretchHeight(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIStyle_set_stretchHeight_mE11B46969A8498FB3B7443B4C54254F0C9A71A6E (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * __this, bool ___value0, const RuntimeMethod* method);
// UnityEngine.GUIStyleState UnityEngine.GUIStyle::get_normal()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * GUIStyle_get_normal_mC5CB22EED8113DEC86C54FB42F757B635D09DD2F (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * __this, const RuntimeMethod* method);
// UnityEngine.Color UnityEngine.Color::get_red()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 Color_get_red_m5562DD438931CF0D1FBBBB29BF7F8B752AF38957 (const RuntimeMethod* method);
// System.Void UnityEngine.GUIStyleState::set_textColor(UnityEngine.Color)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIStyleState_set_textColor_m2B235845A292C22ABEDEFBB2FD798DEB4E104983 (GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * __this, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___value0, const RuntimeMethod* method);
// UnityEngine.GUIStyle UnityEngine.GUISkin::FindStyle(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * GUISkin_FindStyle_m977BAAD9DE35AC43C9FA2DB52C6C0BDF83EE4706 (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, String_t* ___styleName0, const RuntimeMethod* method);
// System.String UnityEngine.Object::get_name()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Object_get_name_mA2D400141CB3C991C87A2556429781DE961A83CE (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * __this, const RuntimeMethod* method);
// System.String System.String::Concat(System.String[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m232E857CA5107EA6AC52E7DD7018716C021F237B (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___values0, const RuntimeMethod* method);
// System.Void UnityEngine.Debug::LogWarning(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogWarning_m37338644DC81F640CCDFEAE35A223F0E965F0568 (RuntimeObject * ___message0, const RuntimeMethod* method);
// UnityEngine.Font UnityEngine.GUISkin::get_font()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Font_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26 * GUISkin_get_font_m54200DFAF834B835CE6598E1BA5B41382BC33AD5 (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.GUISkin/SkinChangedDelegate::Invoke()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SkinChangedDelegate_Invoke_mE18CA4219F24151D8FC8A8A8B261F3FD860B007F (SkinChangedDelegate_tAB4CEEA8C8A0BDCFD51C9624AE173C46A40135D8 * __this, const RuntimeMethod* method);
// System.Collections.Generic.Dictionary`2/ValueCollection<!0,!1> System.Collections.Generic.Dictionary`2<System.String,UnityEngine.GUIStyle>::get_Values()
inline ValueCollection_t0C6A26D50A89F916DF2650A7C132FFB1992070B9 * Dictionary_2_get_Values_mBCCD4E4C93C5E4DF2E0A07934040870B3662866F (Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A * __this, const RuntimeMethod* method)
{
return (( ValueCollection_t0C6A26D50A89F916DF2650A7C132FFB1992070B9 * (*) (Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A *, const RuntimeMethod*))Dictionary_2_get_Values_mB70E6DB1BECFB212CD23C3E06E480CAE7EFA9EE9_gshared)(__this, method);
}
// System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<!0,!1> System.Collections.Generic.Dictionary`2/ValueCollection<System.String,UnityEngine.GUIStyle>::GetEnumerator()
inline Enumerator_t7CFB6C06FEABB756D0C0A1BA202A13F5091958A6 ValueCollection_GetEnumerator_m56252F012AAECD0BFFC3729A87D60BF2945499C2 (ValueCollection_t0C6A26D50A89F916DF2650A7C132FFB1992070B9 * __this, const RuntimeMethod* method)
{
return (( Enumerator_t7CFB6C06FEABB756D0C0A1BA202A13F5091958A6 (*) (ValueCollection_t0C6A26D50A89F916DF2650A7C132FFB1992070B9 *, const RuntimeMethod*))ValueCollection_GetEnumerator_m6AA58C894265BF1E8514350C4B51CB7811D24674_gshared)(__this, method);
}
// System.IntPtr UnityEngine.GUIStyle::Internal_Create(UnityEngine.GUIStyle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t GUIStyle_Internal_Create_m9641BC84B2A6E34A801EED919EF412E4A1C444C8 (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___self0, const RuntimeMethod* method);
// System.Void UnityEngine.GUIStyle::Internal_Destroy(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIStyle_Internal_Destroy_mFA13F1C8E929FB9429825F2F176D4E3DE9C131E2 (intptr_t ___self0, const RuntimeMethod* method);
// System.String UnityEngine.GUIStyle::get_rawName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* GUIStyle_get_rawName_mD7DD50D00F93CEE5DCDE8E13A0F6C28A18ABC837 (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.GUIStyle::set_rawName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIStyle_set_rawName_mD091741C119250A2BA0B90E15E6CE2313750DF95 (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * __this, String_t* ___value0, const RuntimeMethod* method);
// System.IntPtr UnityEngine.GUIStyle::GetStyleStatePtr(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t GUIStyle_GetStyleStatePtr_m9EB2842B5EDEC03D6F7A0050A4E9DBB7103EA5C5 (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * __this, int32_t ___idx0, const RuntimeMethod* method);
// UnityEngine.GUIStyleState UnityEngine.GUIStyleState::GetGUIStyleState(UnityEngine.GUIStyle,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * GUIStyleState_GetGUIStyleState_m207443170D2CA9E48BAB05FF74B30C76C6D63F68 (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___sourceStyle0, intptr_t ___source1, const RuntimeMethod* method);
// System.IntPtr UnityEngine.GUIStyle::GetRectOffsetPtr(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t GUIStyle_GetRectOffsetPtr_m780608811770308EFDE095993756D8AA0BD37BF8 (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * __this, int32_t ___idx0, const RuntimeMethod* method);
// System.Void UnityEngine.RectOffset::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RectOffset__ctor_m23620FE61AAF476219462230C6839B86736B80BA (RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * __this, RuntimeObject * ___sourceStyle0, intptr_t ___source1, const RuntimeMethod* method);
// System.Void UnityEngine.GUIStyleState::set_textColor_Injected(UnityEngine.Color&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIStyleState_set_textColor_Injected_m09DA402A33A2E28F9B8BB37AEF6EA05B58F7C475 (GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * __this, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * ___value0, const RuntimeMethod* method);
// System.IntPtr UnityEngine.GUIStyleState::Init()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t GUIStyleState_Init_m24D7A3BD60709BA6C36D21F86E8FBCA3AD7756D9 (const RuntimeMethod* method);
// System.Void UnityEngine.GUIStyleState::.ctor(UnityEngine.GUIStyle,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIStyleState__ctor_m88DEBFEA9F9D54F4E6732A6ACE729079A79833B8 (GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * __this, GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___sourceStyle0, intptr_t ___source1, const RuntimeMethod* method);
// System.Void UnityEngine.GUIStyleState::Cleanup()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIStyleState_Cleanup_mB92C1A0564E1D841A37DD43D6B6E1AD27BAD5A49 (GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * __this, const RuntimeMethod* method);
// System.Reflection.MethodInfo System.Type::GetMethod(System.String,System.Reflection.BindingFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * Type_GetMethod_m9EC42D4B1F765B882F516EE6D7970D51CF5D80DD (Type_t * __this, String_t* ___name0, int32_t ___bindingAttr1, const RuntimeMethod* method);
// System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6 (RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D ___handle0, const RuntimeMethod* method);
// System.Void System.Action::Invoke()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_Invoke_mC8D676E5DDF967EC5D23DD0E96FB52AA499817FD (Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * __this, const RuntimeMethod* method);
// System.Object UnityEngine.GUIUtility::Internal_GetDefaultSkin(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * GUIUtility_Internal_GetDefaultSkin_m1D4A53896309F1A4A54AF15D7E5F4DC61451276E (int32_t ___skinMode0, const RuntimeMethod* method);
// !2 System.Func`3<System.Int32,System.IntPtr,System.Boolean>::Invoke(!0,!1)
inline bool Func_3_Invoke_mCD6DEEC09B4F1B42DD0FD4A8F58632B08EC66737 (Func_3_tBD99633D8A18C43CC528ECE3F77E2F69900048A7 * __this, int32_t ___arg10, intptr_t ___arg21, const RuntimeMethod* method)
{
return (( bool (*) (Func_3_tBD99633D8A18C43CC528ECE3F77E2F69900048A7 *, int32_t, intptr_t, const RuntimeMethod*))Func_3_Invoke_mCD6DEEC09B4F1B42DD0FD4A8F58632B08EC66737_gshared)(__this, ___arg10, ___arg21, method);
}
// System.Void UnityEngine.GUIUtility::ResetGlobalState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIUtility_ResetGlobalState_m192C9FAE2A4B87F34CB051C4967B8A919A902A5C (const RuntimeMethod* method);
// System.Void UnityEngine.GUILayoutUtility::Begin(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUILayoutUtility_Begin_m6876A33199599688408A4AD364069090E833B237 (int32_t ___instanceID0, const RuntimeMethod* method);
// System.Void UnityEngine.GUILayoutUtility::LayoutFromEditorWindow()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUILayoutUtility_LayoutFromEditorWindow_mBE82BE965B54F68E7090952684C86BFF0538AB52 (const RuntimeMethod* method);
// System.Void UnityEngine.GUIContent::ClearStaticCache()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIContent_ClearStaticCache_m567DA736612F9E6E66262CC630952AB2E22BC933 (const RuntimeMethod* method);
// System.Void UnityEngine.GUIUtility::Internal_ExitGUI()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIUtility_Internal_ExitGUI_mC6B22D4CC318E08171B3565919458F337351ACCC (const RuntimeMethod* method);
// System.Boolean UnityEngine.GUIUtility::ShouldRethrowException(System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GUIUtility_ShouldRethrowException_mCF3B04493727D6A40ED50AC2414D5617455339B6 (Exception_t * ___exception0, const RuntimeMethod* method);
// !1 System.Func`2<System.Exception,System.Boolean>::Invoke(!0)
inline bool Func_2_Invoke_m9621506610C10C9E735B305E826ACEFF914422CD (Func_2_tC816C5FDED4A7372C449E7660CAB9F94E2AC12F8 * __this, Exception_t * ___arg0, const RuntimeMethod* method)
{
return (( bool (*) (Func_2_tC816C5FDED4A7372C449E7660CAB9F94E2AC12F8 *, Exception_t *, const RuntimeMethod*))Func_2_Invoke_mAE8945859643E5D0DADDF6194083A0E5F9E4133B_gshared)(__this, ___arg0, method);
}
// System.Void UnityEngine.GUIUtility::set_guiIsExiting(System.Boolean)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void GUIUtility_set_guiIsExiting_m16D5DFFB64483BC588CA6BEA0FAA618E4A227960_inline (bool ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.GUI::set_changed(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUI_set_changed_m8BDF5085BBFDF8E61C12926C8E51C67B22B629AE (bool ___value0, const RuntimeMethod* method);
// UnityEngineInternal.GenericStack UnityEngine.GUI::get_scrollViewStates()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR GenericStack_tC59D21E8DBC50F3C608479C942200AC44CA2D5BC * GUI_get_scrollViewStates_m2FAC333F84B90E4F1E1ED5FC8651DC8C4C30B7AF_inline (const RuntimeMethod* method);
// System.Exception System.Exception::get_InnerException()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Exception_t * Exception_get_InnerException_mCB68CC8CBF2540EF381CB17A4E4E3F6D0E33453F_inline (Exception_t * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.GUIUtility::IsExitGUIException(System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GUIUtility_IsExitGUIException_mBCCE6118666769B8B767D74496E44D2ECC7AFDD2 (Exception_t * ___exception0, const RuntimeMethod* method);
// System.Int32 UnityEngine.GUIUtility::get_guiDepth()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GUIUtility_get_guiDepth_m927893DDBCD8D8F88CA9F70A7D1A7BDB59B4F395 (const RuntimeMethod* method);
// System.Void System.ArgumentException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7 (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * __this, String_t* ___message0, const RuntimeMethod* method);
// UnityEngine.Vector2 UnityEngine.Vector2::get_zero()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tA85D2DD88578276CA8A8796756458277E72D073D Vector2_get_zero_mFE0C3213BB698130D6C5247AB4B887A59074D0A8 (const RuntimeMethod* method);
// System.Void System.ThrowHelper::ThrowArgumentOutOfRangeException()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentOutOfRangeException_mBA2AF20A35144E0C43CD721A22EAC9FCA15D6550 (const RuntimeMethod* method);
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#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
// Conversion methods for marshalling of: UnityEngine.Event
IL2CPP_EXTERN_C void Event_t187FF6A6B357447B83EC2064823EE0AEC5263210_marshal_pinvoke(const Event_t187FF6A6B357447B83EC2064823EE0AEC5263210& unmarshaled, Event_t187FF6A6B357447B83EC2064823EE0AEC5263210_marshaled_pinvoke& marshaled)
{
marshaled.___m_Ptr_0 = unmarshaled.get_m_Ptr_0();
}
IL2CPP_EXTERN_C void Event_t187FF6A6B357447B83EC2064823EE0AEC5263210_marshal_pinvoke_back(const Event_t187FF6A6B357447B83EC2064823EE0AEC5263210_marshaled_pinvoke& marshaled, Event_t187FF6A6B357447B83EC2064823EE0AEC5263210& unmarshaled)
{
intptr_t unmarshaled_m_Ptr_temp_0;
memset((&unmarshaled_m_Ptr_temp_0), 0, sizeof(unmarshaled_m_Ptr_temp_0));
unmarshaled_m_Ptr_temp_0 = marshaled.___m_Ptr_0;
unmarshaled.set_m_Ptr_0(unmarshaled_m_Ptr_temp_0);
}
// Conversion method for clean up from marshalling of: UnityEngine.Event
IL2CPP_EXTERN_C void Event_t187FF6A6B357447B83EC2064823EE0AEC5263210_marshal_pinvoke_cleanup(Event_t187FF6A6B357447B83EC2064823EE0AEC5263210_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.Event
IL2CPP_EXTERN_C void Event_t187FF6A6B357447B83EC2064823EE0AEC5263210_marshal_com(const Event_t187FF6A6B357447B83EC2064823EE0AEC5263210& unmarshaled, Event_t187FF6A6B357447B83EC2064823EE0AEC5263210_marshaled_com& marshaled)
{
marshaled.___m_Ptr_0 = unmarshaled.get_m_Ptr_0();
}
IL2CPP_EXTERN_C void Event_t187FF6A6B357447B83EC2064823EE0AEC5263210_marshal_com_back(const Event_t187FF6A6B357447B83EC2064823EE0AEC5263210_marshaled_com& marshaled, Event_t187FF6A6B357447B83EC2064823EE0AEC5263210& unmarshaled)
{
intptr_t unmarshaled_m_Ptr_temp_0;
memset((&unmarshaled_m_Ptr_temp_0), 0, sizeof(unmarshaled_m_Ptr_temp_0));
unmarshaled_m_Ptr_temp_0 = marshaled.___m_Ptr_0;
unmarshaled.set_m_Ptr_0(unmarshaled_m_Ptr_temp_0);
}
// Conversion method for clean up from marshalling of: UnityEngine.Event
IL2CPP_EXTERN_C void Event_t187FF6A6B357447B83EC2064823EE0AEC5263210_marshal_com_cleanup(Event_t187FF6A6B357447B83EC2064823EE0AEC5263210_marshaled_com& marshaled)
{
}
// UnityEngine.EventType UnityEngine.Event::get_rawType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Event_get_rawType_m4139BB74440F552F5FD31F56215938E227EF0CD9 (Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * __this, const RuntimeMethod* method)
{
typedef int32_t (*Event_get_rawType_m4139BB74440F552F5FD31F56215938E227EF0CD9_ftn) (Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 *);
static Event_get_rawType_m4139BB74440F552F5FD31F56215938E227EF0CD9_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (Event_get_rawType_m4139BB74440F552F5FD31F56215938E227EF0CD9_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Event::get_rawType()");
int32_t retVal = _il2cpp_icall_func(__this);
return retVal;
}
// UnityEngine.Vector2 UnityEngine.Event::get_mousePosition()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tA85D2DD88578276CA8A8796756458277E72D073D Event_get_mousePosition_m92AD98489A626864E9B179273270802EB1D2C085 (Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * __this, const RuntimeMethod* method)
{
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D V_0;
memset((&V_0), 0, sizeof(V_0));
{
Event_get_mousePosition_Injected_mE71FE88F6E27190A534BD5862941E5887D6BE632(__this, (Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)(&V_0), /*hidden argument*/NULL);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_0 = V_0;
return L_0;
}
}
// UnityEngine.EventModifiers UnityEngine.Event::get_modifiers()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Event_get_modifiers_m4D1BDE843A9379F50C3F32CB78CCDAD84B779108 (Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * __this, const RuntimeMethod* method)
{
typedef int32_t (*Event_get_modifiers_m4D1BDE843A9379F50C3F32CB78CCDAD84B779108_ftn) (Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 *);
static Event_get_modifiers_m4D1BDE843A9379F50C3F32CB78CCDAD84B779108_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (Event_get_modifiers_m4D1BDE843A9379F50C3F32CB78CCDAD84B779108_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Event::get_modifiers()");
int32_t retVal = _il2cpp_icall_func(__this);
return retVal;
}
// System.Char UnityEngine.Event::get_character()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Event_get_character_m78B46D412357B71233F3D41842928A19B290915C (Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * __this, const RuntimeMethod* method)
{
typedef Il2CppChar (*Event_get_character_m78B46D412357B71233F3D41842928A19B290915C_ftn) (Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 *);
static Event_get_character_m78B46D412357B71233F3D41842928A19B290915C_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (Event_get_character_m78B46D412357B71233F3D41842928A19B290915C_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Event::get_character()");
Il2CppChar retVal = _il2cpp_icall_func(__this);
return retVal;
}
// UnityEngine.KeyCode UnityEngine.Event::get_keyCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Event_get_keyCode_m8B0AAD347861E322E91D2B7320A99E04D39575CF (Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * __this, const RuntimeMethod* method)
{
typedef int32_t (*Event_get_keyCode_m8B0AAD347861E322E91D2B7320A99E04D39575CF_ftn) (Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 *);
static Event_get_keyCode_m8B0AAD347861E322E91D2B7320A99E04D39575CF_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (Event_get_keyCode_m8B0AAD347861E322E91D2B7320A99E04D39575CF_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Event::get_keyCode()");
int32_t retVal = _il2cpp_icall_func(__this);
return retVal;
}
// System.Void UnityEngine.Event::set_displayIndex(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Event_set_displayIndex_mF73CEED3B26A4BCADB099E5E6685FE6AC2CF7289 (Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * __this, int32_t ___value0, const RuntimeMethod* method)
{
typedef void (*Event_set_displayIndex_mF73CEED3B26A4BCADB099E5E6685FE6AC2CF7289_ftn) (Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 *, int32_t);
static Event_set_displayIndex_mF73CEED3B26A4BCADB099E5E6685FE6AC2CF7289_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (Event_set_displayIndex_mF73CEED3B26A4BCADB099E5E6685FE6AC2CF7289_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Event::set_displayIndex(System.Int32)");
_il2cpp_icall_func(__this, ___value0);
}
// UnityEngine.EventType UnityEngine.Event::get_type()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Event_get_type_mAABE4A35E5658E0079A1518D318AF2592F51D6FA (Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * __this, const RuntimeMethod* method)
{
typedef int32_t (*Event_get_type_mAABE4A35E5658E0079A1518D318AF2592F51D6FA_ftn) (Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 *);
static Event_get_type_mAABE4A35E5658E0079A1518D318AF2592F51D6FA_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (Event_get_type_mAABE4A35E5658E0079A1518D318AF2592F51D6FA_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Event::get_type()");
int32_t retVal = _il2cpp_icall_func(__this);
return retVal;
}
// System.String UnityEngine.Event::get_commandName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Event_get_commandName_m119D9F8B0A7BA18B849B958CFAF249C970C00BF1 (Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * __this, const RuntimeMethod* method)
{
typedef String_t* (*Event_get_commandName_m119D9F8B0A7BA18B849B958CFAF249C970C00BF1_ftn) (Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 *);
static Event_get_commandName_m119D9F8B0A7BA18B849B958CFAF249C970C00BF1_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (Event_get_commandName_m119D9F8B0A7BA18B849B958CFAF249C970C00BF1_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Event::get_commandName()");
String_t* retVal = _il2cpp_icall_func(__this);
return retVal;
}
// System.IntPtr UnityEngine.Event::Internal_Create(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t Event_Internal_Create_m93F047D4FC3B4B76FD4F80439D0F7EE131EE1E6B (int32_t ___displayIndex0, const RuntimeMethod* method)
{
typedef intptr_t (*Event_Internal_Create_m93F047D4FC3B4B76FD4F80439D0F7EE131EE1E6B_ftn) (int32_t);
static Event_Internal_Create_m93F047D4FC3B4B76FD4F80439D0F7EE131EE1E6B_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (Event_Internal_Create_m93F047D4FC3B4B76FD4F80439D0F7EE131EE1E6B_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Event::Internal_Create(System.Int32)");
intptr_t retVal = _il2cpp_icall_func(___displayIndex0);
return retVal;
}
// System.Void UnityEngine.Event::Internal_Destroy(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Event_Internal_Destroy_m30C46F30A51ABAC5EC270FB75A9856676AA3515C (intptr_t ___ptr0, const RuntimeMethod* method)
{
typedef void (*Event_Internal_Destroy_m30C46F30A51ABAC5EC270FB75A9856676AA3515C_ftn) (intptr_t);
static Event_Internal_Destroy_m30C46F30A51ABAC5EC270FB75A9856676AA3515C_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (Event_Internal_Destroy_m30C46F30A51ABAC5EC270FB75A9856676AA3515C_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Event::Internal_Destroy(System.IntPtr)");
_il2cpp_icall_func(___ptr0);
}
// System.Boolean UnityEngine.Event::PopEvent(UnityEngine.Event)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Event_PopEvent_m8D01FDDC4C7423FCCD7EF3F1B13340C857BE4E4F (Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * ___outEvent0, const RuntimeMethod* method)
{
typedef bool (*Event_PopEvent_m8D01FDDC4C7423FCCD7EF3F1B13340C857BE4E4F_ftn) (Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 *);
static Event_PopEvent_m8D01FDDC4C7423FCCD7EF3F1B13340C857BE4E4F_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (Event_PopEvent_m8D01FDDC4C7423FCCD7EF3F1B13340C857BE4E4F_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Event::PopEvent(UnityEngine.Event)");
bool retVal = _il2cpp_icall_func(___outEvent0);
return retVal;
}
// System.Void UnityEngine.Event::Internal_SetNativeEvent(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Event_Internal_SetNativeEvent_mDD8C9E3F062FD112ED996FA4E45C1BFBB8C4E950 (intptr_t ___ptr0, const RuntimeMethod* method)
{
typedef void (*Event_Internal_SetNativeEvent_mDD8C9E3F062FD112ED996FA4E45C1BFBB8C4E950_ftn) (intptr_t);
static Event_Internal_SetNativeEvent_mDD8C9E3F062FD112ED996FA4E45C1BFBB8C4E950_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (Event_Internal_SetNativeEvent_mDD8C9E3F062FD112ED996FA4E45C1BFBB8C4E950_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Event::Internal_SetNativeEvent(System.IntPtr)");
_il2cpp_icall_func(___ptr0);
}
// System.Void UnityEngine.Event::Internal_MakeMasterEventCurrent(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Event_Internal_MakeMasterEventCurrent_mAD78377C8BB08EFB5DF3D3E3A4F1089F2FC2BA48 (int32_t ___displayIndex0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Event_Internal_MakeMasterEventCurrent_mAD78377C8BB08EFB5DF3D3E3A4F1089F2FC2BA48_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * L_0 = ((Event_t187FF6A6B357447B83EC2064823EE0AEC5263210_StaticFields*)il2cpp_codegen_static_fields_for(Event_t187FF6A6B357447B83EC2064823EE0AEC5263210_il2cpp_TypeInfo_var))->get_s_MasterEvent_2();
V_0 = (bool)((((RuntimeObject*)(Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 *)L_0) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0018;
}
}
{
int32_t L_2 = ___displayIndex0;
Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * L_3 = (Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 *)il2cpp_codegen_object_new(Event_t187FF6A6B357447B83EC2064823EE0AEC5263210_il2cpp_TypeInfo_var);
Event__ctor_mF8E4029007206A6CAAB28422355BA208C0728FB9(L_3, L_2, /*hidden argument*/NULL);
((Event_t187FF6A6B357447B83EC2064823EE0AEC5263210_StaticFields*)il2cpp_codegen_static_fields_for(Event_t187FF6A6B357447B83EC2064823EE0AEC5263210_il2cpp_TypeInfo_var))->set_s_MasterEvent_2(L_3);
}
IL_0018:
{
Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * L_4 = ((Event_t187FF6A6B357447B83EC2064823EE0AEC5263210_StaticFields*)il2cpp_codegen_static_fields_for(Event_t187FF6A6B357447B83EC2064823EE0AEC5263210_il2cpp_TypeInfo_var))->get_s_MasterEvent_2();
int32_t L_5 = ___displayIndex0;
NullCheck(L_4);
Event_set_displayIndex_mF73CEED3B26A4BCADB099E5E6685FE6AC2CF7289(L_4, L_5, /*hidden argument*/NULL);
Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * L_6 = ((Event_t187FF6A6B357447B83EC2064823EE0AEC5263210_StaticFields*)il2cpp_codegen_static_fields_for(Event_t187FF6A6B357447B83EC2064823EE0AEC5263210_il2cpp_TypeInfo_var))->get_s_MasterEvent_2();
((Event_t187FF6A6B357447B83EC2064823EE0AEC5263210_StaticFields*)il2cpp_codegen_static_fields_for(Event_t187FF6A6B357447B83EC2064823EE0AEC5263210_il2cpp_TypeInfo_var))->set_s_Current_1(L_6);
Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * L_7 = ((Event_t187FF6A6B357447B83EC2064823EE0AEC5263210_StaticFields*)il2cpp_codegen_static_fields_for(Event_t187FF6A6B357447B83EC2064823EE0AEC5263210_il2cpp_TypeInfo_var))->get_s_MasterEvent_2();
NullCheck(L_7);
intptr_t L_8 = L_7->get_m_Ptr_0();
Event_Internal_SetNativeEvent_mDD8C9E3F062FD112ED996FA4E45C1BFBB8C4E950((intptr_t)L_8, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.Event::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Event__ctor_m7226316A4024A3C5EBAE7BB7975194CE2B766A3B (Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
intptr_t L_0 = Event_Internal_Create_m93F047D4FC3B4B76FD4F80439D0F7EE131EE1E6B(0, /*hidden argument*/NULL);
__this->set_m_Ptr_0((intptr_t)L_0);
return;
}
}
// System.Void UnityEngine.Event::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Event__ctor_mF8E4029007206A6CAAB28422355BA208C0728FB9 (Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * __this, int32_t ___displayIndex0, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
int32_t L_0 = ___displayIndex0;
intptr_t L_1 = Event_Internal_Create_m93F047D4FC3B4B76FD4F80439D0F7EE131EE1E6B(L_0, /*hidden argument*/NULL);
__this->set_m_Ptr_0((intptr_t)L_1);
return;
}
}
// System.Void UnityEngine.Event::Finalize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Event_Finalize_m71EE3F6BC6C0A99F849EC39C0E47B7305BB9EB3D (Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Event_Finalize_m71EE3F6BC6C0A99F849EC39C0E47B7305BB9EB3D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
}
IL_0001:
try
{ // begin try (depth: 1)
{
intptr_t L_0 = __this->get_m_Ptr_0();
bool L_1 = IntPtr_op_Inequality_mB4886A806009EA825EFCC60CD2A7F6EB8E273A61((intptr_t)L_0, (intptr_t)(0), /*hidden argument*/NULL);
V_0 = L_1;
bool L_2 = V_0;
if (!L_2)
{
goto IL_002f;
}
}
IL_0016:
{
intptr_t L_3 = __this->get_m_Ptr_0();
Event_Internal_Destroy_m30C46F30A51ABAC5EC270FB75A9856676AA3515C((intptr_t)L_3, /*hidden argument*/NULL);
__this->set_m_Ptr_0((intptr_t)(0));
}
IL_002f:
{
IL2CPP_LEAVE(0x39, FINALLY_0031);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0031;
}
FINALLY_0031:
{ // begin finally (depth: 1)
Object_Finalize_m4015B7D3A44DE125C5FE34D7276CD4697C06F380(__this, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(49)
} // end finally (depth: 1)
IL2CPP_CLEANUP(49)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x39, IL_0039)
}
IL_0039:
{
return;
}
}
// UnityEngine.Event UnityEngine.Event::get_current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * Event_get_current_m072CEE599D11B8A9A916697E57C0F561188CDB2B (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Event_get_current_m072CEE599D11B8A9A916697E57C0F561188CDB2B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * V_0 = NULL;
{
Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * L_0 = ((Event_t187FF6A6B357447B83EC2064823EE0AEC5263210_StaticFields*)il2cpp_codegen_static_fields_for(Event_t187FF6A6B357447B83EC2064823EE0AEC5263210_il2cpp_TypeInfo_var))->get_s_Current_1();
V_0 = L_0;
goto IL_0009;
}
IL_0009:
{
Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * L_1 = V_0;
return L_1;
}
}
// System.Boolean UnityEngine.Event::get_isKey()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Event_get_isKey_m17D185B6CD336242BC5FB9BAB025EE8FA7771E90 (Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
bool V_1 = false;
int32_t G_B3_0 = 0;
{
int32_t L_0 = Event_get_type_mAABE4A35E5658E0079A1518D318AF2592F51D6FA(__this, /*hidden argument*/NULL);
V_0 = L_0;
int32_t L_1 = V_0;
if ((((int32_t)L_1) == ((int32_t)4)))
{
goto IL_0012;
}
}
{
int32_t L_2 = V_0;
G_B3_0 = ((((int32_t)L_2) == ((int32_t)5))? 1 : 0);
goto IL_0013;
}
IL_0012:
{
G_B3_0 = 1;
}
IL_0013:
{
V_1 = (bool)G_B3_0;
goto IL_0016;
}
IL_0016:
{
bool L_3 = V_1;
return L_3;
}
}
// System.Boolean UnityEngine.Event::get_isMouse()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Event_get_isMouse_m5923637C4A5E3BD642C3E88A428D5B39F0A85AB6 (Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
bool V_1 = false;
int32_t G_B8_0 = 0;
{
int32_t L_0 = Event_get_type_mAABE4A35E5658E0079A1518D318AF2592F51D6FA(__this, /*hidden argument*/NULL);
V_0 = L_0;
int32_t L_1 = V_0;
if ((((int32_t)L_1) == ((int32_t)2)))
{
goto IL_0028;
}
}
{
int32_t L_2 = V_0;
if (!L_2)
{
goto IL_0028;
}
}
{
int32_t L_3 = V_0;
if ((((int32_t)L_3) == ((int32_t)1)))
{
goto IL_0028;
}
}
{
int32_t L_4 = V_0;
if ((((int32_t)L_4) == ((int32_t)3)))
{
goto IL_0028;
}
}
{
int32_t L_5 = V_0;
if ((((int32_t)L_5) == ((int32_t)((int32_t)16))))
{
goto IL_0028;
}
}
{
int32_t L_6 = V_0;
if ((((int32_t)L_6) == ((int32_t)((int32_t)20))))
{
goto IL_0028;
}
}
{
int32_t L_7 = V_0;
G_B8_0 = ((((int32_t)L_7) == ((int32_t)((int32_t)21)))? 1 : 0);
goto IL_0029;
}
IL_0028:
{
G_B8_0 = 1;
}
IL_0029:
{
V_1 = (bool)G_B8_0;
goto IL_002c;
}
IL_002c:
{
bool L_8 = V_1;
return L_8;
}
}
// System.Int32 UnityEngine.Event::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Event_GetHashCode_m043035C02793F794E13286466579F09F87D7AA9D (Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
bool V_1 = false;
bool V_2 = false;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D V_3;
memset((&V_3), 0, sizeof(V_3));
int32_t V_4 = 0;
{
V_0 = 1;
bool L_0 = Event_get_isKey_m17D185B6CD336242BC5FB9BAB025EE8FA7771E90(__this, /*hidden argument*/NULL);
V_1 = L_0;
bool L_1 = V_1;
if (!L_1)
{
goto IL_0015;
}
}
{
int32_t L_2 = Event_get_keyCode_m8B0AAD347861E322E91D2B7320A99E04D39575CF(__this, /*hidden argument*/NULL);
V_0 = (((int32_t)((uint16_t)L_2)));
}
IL_0015:
{
bool L_3 = Event_get_isMouse_m5923637C4A5E3BD642C3E88A428D5B39F0A85AB6(__this, /*hidden argument*/NULL);
V_2 = L_3;
bool L_4 = V_2;
if (!L_4)
{
goto IL_0034;
}
}
{
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_5 = Event_get_mousePosition_m92AD98489A626864E9B179273270802EB1D2C085(__this, /*hidden argument*/NULL);
V_3 = L_5;
int32_t L_6 = Vector2_GetHashCode_m028AB6B14EBC6D668CFA45BF6EDEF17E2C44EA54((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)(&V_3), /*hidden argument*/NULL);
V_0 = L_6;
}
IL_0034:
{
int32_t L_7 = V_0;
int32_t L_8 = Event_get_modifiers_m4D1BDE843A9379F50C3F32CB78CCDAD84B779108(__this, /*hidden argument*/NULL);
V_0 = ((int32_t)((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_7, (int32_t)((int32_t)37)))|(int32_t)L_8));
int32_t L_9 = V_0;
V_4 = L_9;
goto IL_0045;
}
IL_0045:
{
int32_t L_10 = V_4;
return L_10;
}
}
// System.Boolean UnityEngine.Event::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Event_Equals_m1DEF4FB843B631FC437B1366F0F78CEF7A739070 (Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Event_Equals_m1DEF4FB843B631FC437B1366F0F78CEF7A739070_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * V_0 = NULL;
bool V_1 = false;
bool V_2 = false;
bool V_3 = false;
bool V_4 = false;
bool V_5 = false;
bool V_6 = false;
bool V_7 = false;
int32_t G_B9_0 = 0;
{
RuntimeObject * L_0 = ___obj0;
V_1 = (bool)((((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_1 = V_1;
if (!L_1)
{
goto IL_0010;
}
}
{
V_2 = (bool)0;
goto IL_00b4;
}
IL_0010:
{
RuntimeObject * L_2 = ___obj0;
V_3 = (bool)((((RuntimeObject*)(Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 *)__this) == ((RuntimeObject*)(RuntimeObject *)L_2))? 1 : 0);
bool L_3 = V_3;
if (!L_3)
{
goto IL_001f;
}
}
{
V_2 = (bool)1;
goto IL_00b4;
}
IL_001f:
{
RuntimeObject * L_4 = ___obj0;
NullCheck(L_4);
Type_t * L_5 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_4, /*hidden argument*/NULL);
Type_t * L_6 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(__this, /*hidden argument*/NULL);
V_4 = (bool)((((int32_t)((((RuntimeObject*)(Type_t *)L_5) == ((RuntimeObject*)(Type_t *)L_6))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_7 = V_4;
if (!L_7)
{
goto IL_003a;
}
}
{
V_2 = (bool)0;
goto IL_00b4;
}
IL_003a:
{
RuntimeObject * L_8 = ___obj0;
V_0 = ((Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 *)CastclassSealed((RuntimeObject*)L_8, Event_t187FF6A6B357447B83EC2064823EE0AEC5263210_il2cpp_TypeInfo_var));
int32_t L_9 = Event_get_type_mAABE4A35E5658E0079A1518D318AF2592F51D6FA(__this, /*hidden argument*/NULL);
Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * L_10 = V_0;
NullCheck(L_10);
int32_t L_11 = Event_get_type_mAABE4A35E5658E0079A1518D318AF2592F51D6FA(L_10, /*hidden argument*/NULL);
if ((!(((uint32_t)L_9) == ((uint32_t)L_11))))
{
goto IL_0068;
}
}
{
int32_t L_12 = Event_get_modifiers_m4D1BDE843A9379F50C3F32CB78CCDAD84B779108(__this, /*hidden argument*/NULL);
Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * L_13 = V_0;
NullCheck(L_13);
int32_t L_14 = Event_get_modifiers_m4D1BDE843A9379F50C3F32CB78CCDAD84B779108(L_13, /*hidden argument*/NULL);
G_B9_0 = ((((int32_t)((((int32_t)((int32_t)((int32_t)L_12&(int32_t)((int32_t)-33)))) == ((int32_t)((int32_t)((int32_t)L_14&(int32_t)((int32_t)-33)))))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0069;
}
IL_0068:
{
G_B9_0 = 1;
}
IL_0069:
{
V_5 = (bool)G_B9_0;
bool L_15 = V_5;
if (!L_15)
{
goto IL_0073;
}
}
{
V_2 = (bool)0;
goto IL_00b4;
}
IL_0073:
{
bool L_16 = Event_get_isKey_m17D185B6CD336242BC5FB9BAB025EE8FA7771E90(__this, /*hidden argument*/NULL);
V_6 = L_16;
bool L_17 = V_6;
if (!L_17)
{
goto IL_0090;
}
}
{
int32_t L_18 = Event_get_keyCode_m8B0AAD347861E322E91D2B7320A99E04D39575CF(__this, /*hidden argument*/NULL);
Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * L_19 = V_0;
NullCheck(L_19);
int32_t L_20 = Event_get_keyCode_m8B0AAD347861E322E91D2B7320A99E04D39575CF(L_19, /*hidden argument*/NULL);
V_2 = (bool)((((int32_t)L_18) == ((int32_t)L_20))? 1 : 0);
goto IL_00b4;
}
IL_0090:
{
bool L_21 = Event_get_isMouse_m5923637C4A5E3BD642C3E88A428D5B39F0A85AB6(__this, /*hidden argument*/NULL);
V_7 = L_21;
bool L_22 = V_7;
if (!L_22)
{
goto IL_00b0;
}
}
{
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_23 = Event_get_mousePosition_m92AD98489A626864E9B179273270802EB1D2C085(__this, /*hidden argument*/NULL);
Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * L_24 = V_0;
NullCheck(L_24);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_25 = Event_get_mousePosition_m92AD98489A626864E9B179273270802EB1D2C085(L_24, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_il2cpp_TypeInfo_var);
bool L_26 = Vector2_op_Equality_m0E86E1B1038DDB8554A8A0D58729A7788D989588(L_23, L_25, /*hidden argument*/NULL);
V_2 = L_26;
goto IL_00b4;
}
IL_00b0:
{
V_2 = (bool)0;
goto IL_00b4;
}
IL_00b4:
{
bool L_27 = V_2;
return L_27;
}
}
// System.String UnityEngine.Event::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Event_ToString_m2843623B66F30AC141175B1D16F1B112D3835A65 (Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Event_ToString_m2843623B66F30AC141175B1D16F1B112D3835A65_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
String_t* V_2 = NULL;
bool V_3 = false;
bool V_4 = false;
int32_t G_B9_0 = 0;
{
bool L_0 = Event_get_isKey_m17D185B6CD336242BC5FB9BAB025EE8FA7771E90(__this, /*hidden argument*/NULL);
V_0 = L_0;
bool L_1 = V_0;
if (!L_1)
{
goto IL_00c5;
}
}
{
Il2CppChar L_2 = Event_get_character_m78B46D412357B71233F3D41842928A19B290915C(__this, /*hidden argument*/NULL);
V_1 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
bool L_3 = V_1;
if (!L_3)
{
goto IL_005c;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)3);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = L_4;
int32_t L_6 = Event_get_type_mAABE4A35E5658E0079A1518D318AF2592F51D6FA(__this, /*hidden argument*/NULL);
int32_t L_7 = L_6;
RuntimeObject * L_8 = Box(EventType_t3D3937E705A4506226002DAB22071B7B181DA57B_il2cpp_TypeInfo_var, &L_7);
NullCheck(L_5);
ArrayElementTypeCheck (L_5, L_8);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_8);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_9 = L_5;
int32_t L_10 = Event_get_modifiers_m4D1BDE843A9379F50C3F32CB78CCDAD84B779108(__this, /*hidden argument*/NULL);
int32_t L_11 = L_10;
RuntimeObject * L_12 = Box(EventModifiers_tC34E3018F3697001F894187AF6E9E63D7E203061_il2cpp_TypeInfo_var, &L_11);
NullCheck(L_9);
ArrayElementTypeCheck (L_9, L_12);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_12);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_13 = L_9;
int32_t L_14 = Event_get_keyCode_m8B0AAD347861E322E91D2B7320A99E04D39575CF(__this, /*hidden argument*/NULL);
int32_t L_15 = L_14;
RuntimeObject * L_16 = Box(KeyCode_tC93EA87C5A6901160B583ADFCD3EF6726570DC3C_il2cpp_TypeInfo_var, &L_15);
NullCheck(L_13);
ArrayElementTypeCheck (L_13, L_16);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)L_16);
String_t* L_17 = UnityString_Format_m415056ECF8DA7B3EC6A8456E299D0C2002177387(_stringLiteral645983D981B058C71B234B4EF85974E83DF46C36, L_13, /*hidden argument*/NULL);
V_2 = L_17;
goto IL_0166;
}
IL_005c:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_18 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)8);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_19 = L_18;
NullCheck(L_19);
ArrayElementTypeCheck (L_19, _stringLiteralE1D1873098D32108BBEF9FD4C21B888ED8659C49);
(L_19)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteralE1D1873098D32108BBEF9FD4C21B888ED8659C49);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_20 = L_19;
int32_t L_21 = Event_get_type_mAABE4A35E5658E0079A1518D318AF2592F51D6FA(__this, /*hidden argument*/NULL);
int32_t L_22 = L_21;
RuntimeObject * L_23 = Box(EventType_t3D3937E705A4506226002DAB22071B7B181DA57B_il2cpp_TypeInfo_var, &L_22);
NullCheck(L_20);
ArrayElementTypeCheck (L_20, L_23);
(L_20)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_23);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_24 = L_20;
NullCheck(L_24);
ArrayElementTypeCheck (L_24, _stringLiteral5C99F2EA0C681082AA59B6CD687CA19041028B63);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)_stringLiteral5C99F2EA0C681082AA59B6CD687CA19041028B63);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_25 = L_24;
Il2CppChar L_26 = Event_get_character_m78B46D412357B71233F3D41842928A19B290915C(__this, /*hidden argument*/NULL);
int32_t L_27 = ((int32_t)L_26);
RuntimeObject * L_28 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_27);
NullCheck(L_25);
ArrayElementTypeCheck (L_25, L_28);
(L_25)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)L_28);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_29 = L_25;
NullCheck(L_29);
ArrayElementTypeCheck (L_29, _stringLiteral00CE3E1623671A834728138CD689D176F0000CEB);
(L_29)->SetAt(static_cast<il2cpp_array_size_t>(4), (RuntimeObject *)_stringLiteral00CE3E1623671A834728138CD689D176F0000CEB);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_30 = L_29;
int32_t L_31 = Event_get_modifiers_m4D1BDE843A9379F50C3F32CB78CCDAD84B779108(__this, /*hidden argument*/NULL);
int32_t L_32 = L_31;
RuntimeObject * L_33 = Box(EventModifiers_tC34E3018F3697001F894187AF6E9E63D7E203061_il2cpp_TypeInfo_var, &L_32);
NullCheck(L_30);
ArrayElementTypeCheck (L_30, L_33);
(L_30)->SetAt(static_cast<il2cpp_array_size_t>(5), (RuntimeObject *)L_33);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_34 = L_30;
NullCheck(L_34);
ArrayElementTypeCheck (L_34, _stringLiteralD3280C579ECC78E7C99A42607D1529992F9DD5F3);
(L_34)->SetAt(static_cast<il2cpp_array_size_t>(6), (RuntimeObject *)_stringLiteralD3280C579ECC78E7C99A42607D1529992F9DD5F3);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_35 = L_34;
int32_t L_36 = Event_get_keyCode_m8B0AAD347861E322E91D2B7320A99E04D39575CF(__this, /*hidden argument*/NULL);
int32_t L_37 = L_36;
RuntimeObject * L_38 = Box(KeyCode_tC93EA87C5A6901160B583ADFCD3EF6726570DC3C_il2cpp_TypeInfo_var, &L_37);
NullCheck(L_35);
ArrayElementTypeCheck (L_35, L_38);
(L_35)->SetAt(static_cast<il2cpp_array_size_t>(7), (RuntimeObject *)L_38);
String_t* L_39 = String_Concat_mB7BA84F13912303B2E5E40FBF0109E1A328ACA07(L_35, /*hidden argument*/NULL);
V_2 = L_39;
goto IL_0166;
}
IL_00c5:
{
bool L_40 = Event_get_isMouse_m5923637C4A5E3BD642C3E88A428D5B39F0A85AB6(__this, /*hidden argument*/NULL);
V_3 = L_40;
bool L_41 = V_3;
if (!L_41)
{
goto IL_010c;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_42 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)3);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_43 = L_42;
int32_t L_44 = Event_get_type_mAABE4A35E5658E0079A1518D318AF2592F51D6FA(__this, /*hidden argument*/NULL);
int32_t L_45 = L_44;
RuntimeObject * L_46 = Box(EventType_t3D3937E705A4506226002DAB22071B7B181DA57B_il2cpp_TypeInfo_var, &L_45);
NullCheck(L_43);
ArrayElementTypeCheck (L_43, L_46);
(L_43)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_46);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_47 = L_43;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_48 = Event_get_mousePosition_m92AD98489A626864E9B179273270802EB1D2C085(__this, /*hidden argument*/NULL);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_49 = L_48;
RuntimeObject * L_50 = Box(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_il2cpp_TypeInfo_var, &L_49);
NullCheck(L_47);
ArrayElementTypeCheck (L_47, L_50);
(L_47)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_50);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_51 = L_47;
int32_t L_52 = Event_get_modifiers_m4D1BDE843A9379F50C3F32CB78CCDAD84B779108(__this, /*hidden argument*/NULL);
int32_t L_53 = L_52;
RuntimeObject * L_54 = Box(EventModifiers_tC34E3018F3697001F894187AF6E9E63D7E203061_il2cpp_TypeInfo_var, &L_53);
NullCheck(L_51);
ArrayElementTypeCheck (L_51, L_54);
(L_51)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)L_54);
String_t* L_55 = UnityString_Format_m415056ECF8DA7B3EC6A8456E299D0C2002177387(_stringLiteralBFAF5DB045B9BE61FE1BC19E0486B8287028A876, L_51, /*hidden argument*/NULL);
V_2 = L_55;
goto IL_0166;
}
IL_010c:
{
int32_t L_56 = Event_get_type_mAABE4A35E5658E0079A1518D318AF2592F51D6FA(__this, /*hidden argument*/NULL);
if ((((int32_t)L_56) == ((int32_t)((int32_t)14))))
{
goto IL_0122;
}
}
{
int32_t L_57 = Event_get_type_mAABE4A35E5658E0079A1518D318AF2592F51D6FA(__this, /*hidden argument*/NULL);
G_B9_0 = ((((int32_t)L_57) == ((int32_t)((int32_t)13)))? 1 : 0);
goto IL_0123;
}
IL_0122:
{
G_B9_0 = 1;
}
IL_0123:
{
V_4 = (bool)G_B9_0;
bool L_58 = V_4;
if (!L_58)
{
goto IL_0153;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_59 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_60 = L_59;
int32_t L_61 = Event_get_type_mAABE4A35E5658E0079A1518D318AF2592F51D6FA(__this, /*hidden argument*/NULL);
int32_t L_62 = L_61;
RuntimeObject * L_63 = Box(EventType_t3D3937E705A4506226002DAB22071B7B181DA57B_il2cpp_TypeInfo_var, &L_62);
NullCheck(L_60);
ArrayElementTypeCheck (L_60, L_63);
(L_60)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_63);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_64 = L_60;
String_t* L_65 = Event_get_commandName_m119D9F8B0A7BA18B849B958CFAF249C970C00BF1(__this, /*hidden argument*/NULL);
NullCheck(L_64);
ArrayElementTypeCheck (L_64, L_65);
(L_64)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_65);
String_t* L_66 = UnityString_Format_m415056ECF8DA7B3EC6A8456E299D0C2002177387(_stringLiteral43038A7293A88F58900A924007043B16F5DF3840, L_64, /*hidden argument*/NULL);
V_2 = L_66;
goto IL_0166;
}
IL_0153:
{
int32_t L_67 = Event_get_type_mAABE4A35E5658E0079A1518D318AF2592F51D6FA(__this, /*hidden argument*/NULL);
int32_t L_68 = L_67;
RuntimeObject * L_69 = Box(EventType_t3D3937E705A4506226002DAB22071B7B181DA57B_il2cpp_TypeInfo_var, &L_68);
String_t* L_70 = String_Concat_m798542DE19B3F02DC4F4B777BB2E73169F129DE1(L_69, /*hidden argument*/NULL);
V_2 = L_70;
goto IL_0166;
}
IL_0166:
{
String_t* L_71 = V_2;
return L_71;
}
}
// System.Void UnityEngine.Event::get_mousePosition_Injected(UnityEngine.Vector2&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Event_get_mousePosition_Injected_mE71FE88F6E27190A534BD5862941E5887D6BE632 (Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * __this, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * ___ret0, const RuntimeMethod* method)
{
typedef void (*Event_get_mousePosition_Injected_mE71FE88F6E27190A534BD5862941E5887D6BE632_ftn) (Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 *, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *);
static Event_get_mousePosition_Injected_mE71FE88F6E27190A534BD5862941E5887D6BE632_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (Event_get_mousePosition_Injected_mE71FE88F6E27190A534BD5862941E5887D6BE632_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Event::get_mousePosition_Injected(UnityEngine.Vector2&)");
_il2cpp_icall_func(__this, ___ret0);
}
#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
#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
#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
#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 UnityEngine.GUI::set_changed(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUI_set_changed_m8BDF5085BBFDF8E61C12926C8E51C67B22B629AE (bool ___value0, const RuntimeMethod* method)
{
typedef void (*GUI_set_changed_m8BDF5085BBFDF8E61C12926C8E51C67B22B629AE_ftn) (bool);
static GUI_set_changed_m8BDF5085BBFDF8E61C12926C8E51C67B22B629AE_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (GUI_set_changed_m8BDF5085BBFDF8E61C12926C8E51C67B22B629AE_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.GUI::set_changed(System.Boolean)");
_il2cpp_icall_func(___value0);
}
// System.Void UnityEngine.GUI::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUI__cctor_m9A902CA13649D04BFB54D86C051A09AC5301ED63 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUI__cctor_m9A902CA13649D04BFB54D86C051A09AC5301ED63_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
((GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_StaticFields*)il2cpp_codegen_static_fields_for(GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_il2cpp_TypeInfo_var))->set_s_HotTextField_0((-1));
NullCheck(_stringLiteral239CA5767AFAC9641593464CE02BC454D6AC07A9);
int32_t L_0 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, _stringLiteral239CA5767AFAC9641593464CE02BC454D6AC07A9);
((GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_StaticFields*)il2cpp_codegen_static_fields_for(GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_il2cpp_TypeInfo_var))->set_s_BoxHash_1(L_0);
NullCheck(_stringLiteral794145F030FF721599A0353A9B2E59E9A92B9BF1);
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, _stringLiteral794145F030FF721599A0353A9B2E59E9A92B9BF1);
((GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_StaticFields*)il2cpp_codegen_static_fields_for(GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_il2cpp_TypeInfo_var))->set_s_ButonHash_2(L_1);
NullCheck(_stringLiteralE647442EAD89630DC43D2047D097508AD66D2618);
int32_t L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, _stringLiteralE647442EAD89630DC43D2047D097508AD66D2618);
((GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_StaticFields*)il2cpp_codegen_static_fields_for(GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_il2cpp_TypeInfo_var))->set_s_RepeatButtonHash_3(L_2);
NullCheck(_stringLiteralD5E14B063514CB6630E55F0AEB0AD3B37897EFCA);
int32_t L_3 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, _stringLiteralD5E14B063514CB6630E55F0AEB0AD3B37897EFCA);
((GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_StaticFields*)il2cpp_codegen_static_fields_for(GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_il2cpp_TypeInfo_var))->set_s_ToggleHash_4(L_3);
NullCheck(_stringLiteralE8603CA0394240FFC435FB8A9A44A0B8ADFDB19F);
int32_t L_4 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, _stringLiteralE8603CA0394240FFC435FB8A9A44A0B8ADFDB19F);
((GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_StaticFields*)il2cpp_codegen_static_fields_for(GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_il2cpp_TypeInfo_var))->set_s_ButtonGridHash_5(L_4);
NullCheck(_stringLiteralAA5DB7D82232EE34651EB5ADEA59B01C839EB843);
int32_t L_5 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, _stringLiteralAA5DB7D82232EE34651EB5ADEA59B01C839EB843);
((GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_StaticFields*)il2cpp_codegen_static_fields_for(GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_il2cpp_TypeInfo_var))->set_s_SliderHash_6(L_5);
NullCheck(_stringLiteral43B731706EEE5F12E52ED519717DB9572EADF165);
int32_t L_6 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, _stringLiteral43B731706EEE5F12E52ED519717DB9572EADF165);
((GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_StaticFields*)il2cpp_codegen_static_fields_for(GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_il2cpp_TypeInfo_var))->set_s_BeginGroupHash_7(L_6);
NullCheck(_stringLiteral9B93271A1F5C73A7A67E544DD659306E5EE80C4B);
int32_t L_7 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, _stringLiteral9B93271A1F5C73A7A67E544DD659306E5EE80C4B);
((GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_StaticFields*)il2cpp_codegen_static_fields_for(GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_il2cpp_TypeInfo_var))->set_s_ScrollviewHash_8(L_7);
GenericStack_tC59D21E8DBC50F3C608479C942200AC44CA2D5BC * L_8 = (GenericStack_tC59D21E8DBC50F3C608479C942200AC44CA2D5BC *)il2cpp_codegen_object_new(GenericStack_tC59D21E8DBC50F3C608479C942200AC44CA2D5BC_il2cpp_TypeInfo_var);
GenericStack__ctor_m0659B84DB6B093AF1F01F566686C510DDEEAE848(L_8, /*hidden argument*/NULL);
((GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_StaticFields*)il2cpp_codegen_static_fields_for(GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_il2cpp_TypeInfo_var))->set_U3CscrollViewStatesU3Ek__BackingField_11(L_8);
IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var);
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_9 = DateTime_get_Now_mB464D30F15C97069F92C1F910DCDDC3DFCC7F7D2(/*hidden argument*/NULL);
GUI_set_nextScrollStepTime_m0EBE9A3F5960CD23334E4678D9CF6F5E15CBDE23_inline(L_9, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.GUI::set_nextScrollStepTime(System.DateTime)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUI_set_nextScrollStepTime_m0EBE9A3F5960CD23334E4678D9CF6F5E15CBDE23 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUI_set_nextScrollStepTime_m0EBE9A3F5960CD23334E4678D9CF6F5E15CBDE23_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_0 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_il2cpp_TypeInfo_var);
((GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_StaticFields*)il2cpp_codegen_static_fields_for(GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_il2cpp_TypeInfo_var))->set_U3CnextScrollStepTimeU3Ek__BackingField_9(L_0);
return;
}
}
// System.Void UnityEngine.GUI::set_skin(UnityEngine.GUISkin)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUI_set_skin_mFC9EC2E88A46A7F42664C6C41D8CCD9B9BA4DBA0 (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUI_set_skin_mFC9EC2E88A46A7F42664C6C41D8CCD9B9BA4DBA0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
GUIUtility_CheckOnGUI_mBFC764B475683BC50E40BD249248CE43DA754873(/*hidden argument*/NULL);
GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * L_0 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_il2cpp_TypeInfo_var);
GUI_DoSetSkin_mC72F1980793E86E8F33D641A207D2AAB409A71F7(L_0, /*hidden argument*/NULL);
return;
}
}
// UnityEngine.GUISkin UnityEngine.GUI::get_skin()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * GUI_get_skin_mF6804BE33CFD74FF0665C1185AC7B5C1687AE866 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUI_get_skin_mF6804BE33CFD74FF0665C1185AC7B5C1687AE866_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * V_0 = NULL;
{
GUIUtility_CheckOnGUI_mBFC764B475683BC50E40BD249248CE43DA754873(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_il2cpp_TypeInfo_var);
GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * L_0 = ((GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_StaticFields*)il2cpp_codegen_static_fields_for(GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_il2cpp_TypeInfo_var))->get_s_Skin_10();
V_0 = L_0;
goto IL_000f;
}
IL_000f:
{
GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * L_1 = V_0;
return L_1;
}
}
// System.Void UnityEngine.GUI::DoSetSkin(UnityEngine.GUISkin)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUI_DoSetSkin_mC72F1980793E86E8F33D641A207D2AAB409A71F7 (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * ___newSkin0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUI_DoSetSkin_mC72F1980793E86E8F33D641A207D2AAB409A71F7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * L_0 = ___newSkin0;
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_1 = Object_op_Implicit_m8B2A44B4B1406ED346D1AE6D962294FD58D0D534(L_0, /*hidden argument*/NULL);
V_0 = (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0);
bool L_2 = V_0;
if (!L_2)
{
goto IL_0015;
}
}
{
GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * L_3 = GUIUtility_GetDefaultSkin_m2F1B580445522074FF41CF9906531DBEAB034365(/*hidden argument*/NULL);
___newSkin0 = L_3;
}
IL_0015:
{
GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * L_4 = ___newSkin0;
IL2CPP_RUNTIME_CLASS_INIT(GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_il2cpp_TypeInfo_var);
((GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_StaticFields*)il2cpp_codegen_static_fields_for(GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_il2cpp_TypeInfo_var))->set_s_Skin_10(L_4);
GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * L_5 = ___newSkin0;
NullCheck(L_5);
GUISkin_MakeCurrent_m42FAF8090F6B57648678704D86A6451DB917CF2D(L_5, /*hidden argument*/NULL);
return;
}
}
// UnityEngineInternal.GenericStack UnityEngine.GUI::get_scrollViewStates()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GenericStack_tC59D21E8DBC50F3C608479C942200AC44CA2D5BC * GUI_get_scrollViewStates_m2FAC333F84B90E4F1E1ED5FC8651DC8C4C30B7AF (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUI_get_scrollViewStates_m2FAC333F84B90E4F1E1ED5FC8651DC8C4C30B7AF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_il2cpp_TypeInfo_var);
GenericStack_tC59D21E8DBC50F3C608479C942200AC44CA2D5BC * L_0 = ((GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_StaticFields*)il2cpp_codegen_static_fields_for(GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_il2cpp_TypeInfo_var))->get_U3CscrollViewStatesU3Ek__BackingField_11();
return L_0;
}
}
// System.Void UnityEngine.GUI::CallWindowDelegate(UnityEngine.GUI_WindowFunction,System.Int32,System.Int32,UnityEngine.GUISkin,System.Int32,System.Single,System.Single,UnityEngine.GUIStyle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUI_CallWindowDelegate_m49D5A2E2DAEF525772FAAAA9A840244137BB9175 (WindowFunction_t9AF05117863D95AA9F85D497A3B9B53216708100 * ___func0, int32_t ___id1, int32_t ___instanceID2, GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * ____skin3, int32_t ___forceRect4, float ___width5, float ___height6, GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___style7, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUI_CallWindowDelegate_m49D5A2E2DAEF525772FAAAA9A840244137BB9175_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * V_0 = NULL;
bool V_1 = false;
bool V_2 = false;
GUILayoutOptionU5BU5D_tAB2AD0A365DBD2277A04E397AE8E1430A022AF1B* V_3 = NULL;
bool V_4 = false;
{
int32_t L_0 = ___id1;
IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var);
GUILayoutUtility_SelectIDList_m230ED9206897C92C5B090B3BBFC9B408603E56FD(L_0, (bool)1, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_il2cpp_TypeInfo_var);
GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * L_1 = GUI_get_skin_mF6804BE33CFD74FF0665C1185AC7B5C1687AE866(/*hidden argument*/NULL);
V_0 = L_1;
Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * L_2 = Event_get_current_m072CEE599D11B8A9A916697E57C0F561188CDB2B(/*hidden argument*/NULL);
NullCheck(L_2);
int32_t L_3 = Event_get_type_mAABE4A35E5658E0079A1518D318AF2592F51D6FA(L_2, /*hidden argument*/NULL);
V_1 = (bool)((((int32_t)L_3) == ((int32_t)8))? 1 : 0);
bool L_4 = V_1;
if (!L_4)
{
goto IL_0062;
}
}
{
int32_t L_5 = ___forceRect4;
V_2 = (bool)((!(((uint32_t)L_5) <= ((uint32_t)0)))? 1 : 0);
bool L_6 = V_2;
if (!L_6)
{
goto IL_0053;
}
}
{
GUILayoutOptionU5BU5D_tAB2AD0A365DBD2277A04E397AE8E1430A022AF1B* L_7 = (GUILayoutOptionU5BU5D_tAB2AD0A365DBD2277A04E397AE8E1430A022AF1B*)(GUILayoutOptionU5BU5D_tAB2AD0A365DBD2277A04E397AE8E1430A022AF1B*)SZArrayNew(GUILayoutOptionU5BU5D_tAB2AD0A365DBD2277A04E397AE8E1430A022AF1B_il2cpp_TypeInfo_var, (uint32_t)2);
GUILayoutOptionU5BU5D_tAB2AD0A365DBD2277A04E397AE8E1430A022AF1B* L_8 = L_7;
float L_9 = ___width5;
GUILayoutOption_t27A0221AC2F6F53E7B89310FD19F51C565D835A6 * L_10 = GUILayout_Width_mDA8F26D92E788474E09AECA1541E8C920C72DA10(L_9, /*hidden argument*/NULL);
NullCheck(L_8);
ArrayElementTypeCheck (L_8, L_10);
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(0), (GUILayoutOption_t27A0221AC2F6F53E7B89310FD19F51C565D835A6 *)L_10);
GUILayoutOptionU5BU5D_tAB2AD0A365DBD2277A04E397AE8E1430A022AF1B* L_11 = L_8;
float L_12 = ___height6;
GUILayoutOption_t27A0221AC2F6F53E7B89310FD19F51C565D835A6 * L_13 = GUILayout_Height_mA5A24D5490022AC6449BBAED9C5A1647184B4026(L_12, /*hidden argument*/NULL);
NullCheck(L_11);
ArrayElementTypeCheck (L_11, L_13);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(1), (GUILayoutOption_t27A0221AC2F6F53E7B89310FD19F51C565D835A6 *)L_13);
V_3 = L_11;
int32_t L_14 = ___id1;
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_15 = ___style7;
GUILayoutOptionU5BU5D_tAB2AD0A365DBD2277A04E397AE8E1430A022AF1B* L_16 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var);
GUILayoutUtility_BeginWindow_mB3475D9BE89CF26AB0E6F0D46B1930F1874EB132(L_14, L_15, L_16, /*hidden argument*/NULL);
goto IL_005f;
}
IL_0053:
{
int32_t L_17 = ___id1;
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_18 = ___style7;
IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var);
GUILayoutUtility_BeginWindow_mB3475D9BE89CF26AB0E6F0D46B1930F1874EB132(L_17, L_18, (GUILayoutOptionU5BU5D_tAB2AD0A365DBD2277A04E397AE8E1430A022AF1B*)(GUILayoutOptionU5BU5D_tAB2AD0A365DBD2277A04E397AE8E1430A022AF1B*)NULL, /*hidden argument*/NULL);
}
IL_005f:
{
goto IL_0071;
}
IL_0062:
{
int32_t L_19 = ___id1;
IL2CPP_RUNTIME_CLASS_INIT(GUIStyle_t671F175A201A19166385EE3392292A5F50070572_il2cpp_TypeInfo_var);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_20 = GUIStyle_get_none_m2B48FA4E2FA2B9BB7A458DF25B1391F9C7BB8B7B(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var);
GUILayoutUtility_BeginWindow_mB3475D9BE89CF26AB0E6F0D46B1930F1874EB132(L_19, L_20, (GUILayoutOptionU5BU5D_tAB2AD0A365DBD2277A04E397AE8E1430A022AF1B*)(GUILayoutOptionU5BU5D_tAB2AD0A365DBD2277A04E397AE8E1430A022AF1B*)NULL, /*hidden argument*/NULL);
}
IL_0071:
{
GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * L_21 = ____skin3;
IL2CPP_RUNTIME_CLASS_INIT(GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_il2cpp_TypeInfo_var);
GUI_set_skin_mFC9EC2E88A46A7F42664C6C41D8CCD9B9BA4DBA0(L_21, /*hidden argument*/NULL);
WindowFunction_t9AF05117863D95AA9F85D497A3B9B53216708100 * L_22 = ___func0;
int32_t L_23 = ___id1;
NullCheck(L_22);
WindowFunction_Invoke_m08350FBFB60BC55246725A4840931AED2CAFF9AD(L_22, L_23, /*hidden argument*/NULL);
Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * L_24 = Event_get_current_m072CEE599D11B8A9A916697E57C0F561188CDB2B(/*hidden argument*/NULL);
NullCheck(L_24);
int32_t L_25 = Event_get_type_mAABE4A35E5658E0079A1518D318AF2592F51D6FA(L_24, /*hidden argument*/NULL);
V_4 = (bool)((((int32_t)L_25) == ((int32_t)8))? 1 : 0);
bool L_26 = V_4;
if (!L_26)
{
goto IL_009b;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var);
GUILayoutUtility_Layout_mB01F00635FD538214B47A545C53E4F8C682491B5(/*hidden argument*/NULL);
}
IL_009b:
{
GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * L_27 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_il2cpp_TypeInfo_var);
GUI_set_skin_mFC9EC2E88A46A7F42664C6C41D8CCD9B9BA4DBA0(L_27, /*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
IL2CPP_EXTERN_C void DelegatePInvokeWrapper_WindowFunction_t9AF05117863D95AA9F85D497A3B9B53216708100 (WindowFunction_t9AF05117863D95AA9F85D497A3B9B53216708100 * __this, int32_t ___id0, const RuntimeMethod* method)
{
typedef void (DEFAULT_CALL *PInvokeFunc)(int32_t);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_method_pointer(((RuntimeDelegate*)__this)->method));
// Native function invocation
il2cppPInvokeFunc(___id0);
}
// System.Void UnityEngine.GUI_WindowFunction::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WindowFunction__ctor_m216C357C45DF9A8ABE74056B8BDB1B7F94EE2D81 (WindowFunction_t9AF05117863D95AA9F85D497A3B9B53216708100 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void UnityEngine.GUI_WindowFunction::Invoke(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WindowFunction_Invoke_m08350FBFB60BC55246725A4840931AED2CAFF9AD (WindowFunction_t9AF05117863D95AA9F85D497A3B9B53216708100 * __this, int32_t ___id0, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 1)
{
// open
typedef void (*FunctionPointerType) (int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___id0, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___id0, targetMethod);
}
}
else
{
// closed
if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< int32_t >::Invoke(targetMethod, targetThis, ___id0);
else
GenericVirtActionInvoker1< int32_t >::Invoke(targetMethod, targetThis, ___id0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___id0);
else
VirtActionInvoker1< int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___id0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef void (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___id0) - 1), targetMethod);
}
typedef void (*FunctionPointerType) (void*, int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___id0, targetMethod);
}
}
}
}
// System.IAsyncResult UnityEngine.GUI_WindowFunction::BeginInvoke(System.Int32,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WindowFunction_BeginInvoke_m522A6C91248FC9E44284AAB8909F83E5DB2960A2 (WindowFunction_t9AF05117863D95AA9F85D497A3B9B53216708100 * __this, int32_t ___id0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (WindowFunction_BeginInvoke_m522A6C91248FC9E44284AAB8909F83E5DB2960A2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &___id0);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Void UnityEngine.GUI_WindowFunction::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WindowFunction_EndInvoke_m66738B73219CEB120C356497204151BCB432B2A2 (WindowFunction_t9AF05117863D95AA9F85D497A3B9B53216708100 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#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
// Conversion methods for marshalling of: UnityEngine.GUIContent
IL2CPP_EXTERN_C void GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_marshal_pinvoke(const GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0& unmarshaled, GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_marshaled_pinvoke& marshaled)
{
Exception_t* ___m_Image_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Image' of type 'GUIContent': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Image_1Exception, NULL);
}
IL2CPP_EXTERN_C void GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_marshal_pinvoke_back(const GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_marshaled_pinvoke& marshaled, GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0& unmarshaled)
{
Exception_t* ___m_Image_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Image' of type 'GUIContent': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Image_1Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.GUIContent
IL2CPP_EXTERN_C void GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_marshal_pinvoke_cleanup(GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.GUIContent
IL2CPP_EXTERN_C void GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_marshal_com(const GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0& unmarshaled, GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_marshaled_com& marshaled)
{
Exception_t* ___m_Image_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Image' of type 'GUIContent': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Image_1Exception, NULL);
}
IL2CPP_EXTERN_C void GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_marshal_com_back(const GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_marshaled_com& marshaled, GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0& unmarshaled)
{
Exception_t* ___m_Image_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Image' of type 'GUIContent': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Image_1Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.GUIContent
IL2CPP_EXTERN_C void GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_marshal_com_cleanup(GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_marshaled_com& marshaled)
{
}
// System.String UnityEngine.GUIContent::get_text()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* GUIContent_get_text_mAAFFFB0278FCB4F7A7661BE595BA42CD093E38C5 (GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 * __this, const RuntimeMethod* method)
{
String_t* V_0 = NULL;
{
String_t* L_0 = __this->get_m_Text_0();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
String_t* L_1 = V_0;
return L_1;
}
}
// System.Void UnityEngine.GUIContent::set_text(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIContent_set_text_m866E0C5690119816D87D83124C81BDC0A0ED4316 (GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_m_Text_0(L_0);
return;
}
}
// System.Void UnityEngine.GUIContent::set_image(UnityEngine.Texture)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIContent_set_image_m85ABAF5AE045BDD9C09EA75243094D16222DB38C (GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 * __this, Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 * ___value0, const RuntimeMethod* method)
{
{
Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 * L_0 = ___value0;
__this->set_m_Image_1(L_0);
return;
}
}
// System.Void UnityEngine.GUIContent::set_tooltip(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIContent_set_tooltip_mDFC634B0DF68DB6A02F294106BC261EFC0FD0A67 (GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_m_Tooltip_2(L_0);
return;
}
}
// System.Void UnityEngine.GUIContent::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIContent__ctor_m939CDEFF44061020E997A0F0640ADDF2740B0C38 (GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUIContent__ctor_m939CDEFF44061020E997A0F0640ADDF2740B0C38_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
__this->set_m_Text_0(L_0);
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
__this->set_m_Tooltip_2(L_1);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.GUIContent::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIContent__ctor_m8EE36BB9048C2A279E7EAD258D63F2A1BDEA8A81 (GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 * __this, String_t* ___text0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUIContent__ctor_m8EE36BB9048C2A279E7EAD258D63F2A1BDEA8A81_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___text0;
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
GUIContent__ctor_m2805872C5E7E66C3ABF83607DC02BEB1BEFA82DA(__this, L_0, (Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 *)NULL, L_1, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.GUIContent::.ctor(System.String,UnityEngine.Texture,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIContent__ctor_m2805872C5E7E66C3ABF83607DC02BEB1BEFA82DA (GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 * __this, String_t* ___text0, Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 * ___image1, String_t* ___tooltip2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUIContent__ctor_m2805872C5E7E66C3ABF83607DC02BEB1BEFA82DA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
__this->set_m_Text_0(L_0);
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
__this->set_m_Tooltip_2(L_1);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
String_t* L_2 = ___text0;
GUIContent_set_text_m866E0C5690119816D87D83124C81BDC0A0ED4316(__this, L_2, /*hidden argument*/NULL);
Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 * L_3 = ___image1;
GUIContent_set_image_m85ABAF5AE045BDD9C09EA75243094D16222DB38C(__this, L_3, /*hidden argument*/NULL);
String_t* L_4 = ___tooltip2;
GUIContent_set_tooltip_mDFC634B0DF68DB6A02F294106BC261EFC0FD0A67(__this, L_4, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.GUIContent::ClearStaticCache()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIContent_ClearStaticCache_m567DA736612F9E6E66262CC630952AB2E22BC933 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUIContent_ClearStaticCache_m567DA736612F9E6E66262CC630952AB2E22BC933_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_il2cpp_TypeInfo_var);
GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 * L_0 = ((GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_StaticFields*)il2cpp_codegen_static_fields_for(GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_il2cpp_TypeInfo_var))->get_s_Text_3();
NullCheck(L_0);
L_0->set_m_Text_0((String_t*)NULL);
GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 * L_1 = ((GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_StaticFields*)il2cpp_codegen_static_fields_for(GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_il2cpp_TypeInfo_var))->get_s_Text_3();
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
NullCheck(L_1);
L_1->set_m_Tooltip_2(L_2);
GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 * L_3 = ((GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_StaticFields*)il2cpp_codegen_static_fields_for(GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_il2cpp_TypeInfo_var))->get_s_Image_4();
NullCheck(L_3);
L_3->set_m_Image_1((Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 *)NULL);
GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 * L_4 = ((GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_StaticFields*)il2cpp_codegen_static_fields_for(GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_il2cpp_TypeInfo_var))->get_s_Image_4();
String_t* L_5 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
NullCheck(L_4);
L_4->set_m_Tooltip_2(L_5);
GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 * L_6 = ((GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_StaticFields*)il2cpp_codegen_static_fields_for(GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_il2cpp_TypeInfo_var))->get_s_TextImage_5();
NullCheck(L_6);
L_6->set_m_Text_0((String_t*)NULL);
GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 * L_7 = ((GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_StaticFields*)il2cpp_codegen_static_fields_for(GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_il2cpp_TypeInfo_var))->get_s_TextImage_5();
NullCheck(L_7);
L_7->set_m_Image_1((Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 *)NULL);
return;
}
}
// System.Void UnityEngine.GUIContent::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIContent__cctor_m5AF68CD5FB2E47506F7FF1A6F46ADAD5C8BC927C (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUIContent__cctor_m5AF68CD5FB2E47506F7FF1A6F46ADAD5C8BC927C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 * L_0 = (GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 *)il2cpp_codegen_object_new(GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_il2cpp_TypeInfo_var);
GUIContent__ctor_m939CDEFF44061020E997A0F0640ADDF2740B0C38(L_0, /*hidden argument*/NULL);
((GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_StaticFields*)il2cpp_codegen_static_fields_for(GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_il2cpp_TypeInfo_var))->set_s_Text_3(L_0);
GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 * L_1 = (GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 *)il2cpp_codegen_object_new(GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_il2cpp_TypeInfo_var);
GUIContent__ctor_m939CDEFF44061020E997A0F0640ADDF2740B0C38(L_1, /*hidden argument*/NULL);
((GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_StaticFields*)il2cpp_codegen_static_fields_for(GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_il2cpp_TypeInfo_var))->set_s_Image_4(L_1);
GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 * L_2 = (GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 *)il2cpp_codegen_object_new(GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_il2cpp_TypeInfo_var);
GUIContent__ctor_m939CDEFF44061020E997A0F0640ADDF2740B0C38(L_2, /*hidden argument*/NULL);
((GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_StaticFields*)il2cpp_codegen_static_fields_for(GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_il2cpp_TypeInfo_var))->set_s_TextImage_5(L_2);
GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 * L_3 = (GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 *)il2cpp_codegen_object_new(GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_il2cpp_TypeInfo_var);
GUIContent__ctor_m8EE36BB9048C2A279E7EAD258D63F2A1BDEA8A81(L_3, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, /*hidden argument*/NULL);
((GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_StaticFields*)il2cpp_codegen_static_fields_for(GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_il2cpp_TypeInfo_var))->set_none_6(L_3);
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
// UnityEngine.GUILayoutOption UnityEngine.GUILayout::Width(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GUILayoutOption_t27A0221AC2F6F53E7B89310FD19F51C565D835A6 * GUILayout_Width_mDA8F26D92E788474E09AECA1541E8C920C72DA10 (float ___width0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUILayout_Width_mDA8F26D92E788474E09AECA1541E8C920C72DA10_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
GUILayoutOption_t27A0221AC2F6F53E7B89310FD19F51C565D835A6 * V_0 = NULL;
{
float L_0 = ___width0;
float L_1 = L_0;
RuntimeObject * L_2 = Box(Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_il2cpp_TypeInfo_var, &L_1);
GUILayoutOption_t27A0221AC2F6F53E7B89310FD19F51C565D835A6 * L_3 = (GUILayoutOption_t27A0221AC2F6F53E7B89310FD19F51C565D835A6 *)il2cpp_codegen_object_new(GUILayoutOption_t27A0221AC2F6F53E7B89310FD19F51C565D835A6_il2cpp_TypeInfo_var);
GUILayoutOption__ctor_m965FDA1345FD7146596EFA90F03D0C645FB3FD5D(L_3, 0, L_2, /*hidden argument*/NULL);
V_0 = L_3;
goto IL_0010;
}
IL_0010:
{
GUILayoutOption_t27A0221AC2F6F53E7B89310FD19F51C565D835A6 * L_4 = V_0;
return L_4;
}
}
// UnityEngine.GUILayoutOption UnityEngine.GUILayout::Height(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GUILayoutOption_t27A0221AC2F6F53E7B89310FD19F51C565D835A6 * GUILayout_Height_mA5A24D5490022AC6449BBAED9C5A1647184B4026 (float ___height0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUILayout_Height_mA5A24D5490022AC6449BBAED9C5A1647184B4026_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
GUILayoutOption_t27A0221AC2F6F53E7B89310FD19F51C565D835A6 * V_0 = NULL;
{
float L_0 = ___height0;
float L_1 = L_0;
RuntimeObject * L_2 = Box(Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_il2cpp_TypeInfo_var, &L_1);
GUILayoutOption_t27A0221AC2F6F53E7B89310FD19F51C565D835A6 * L_3 = (GUILayoutOption_t27A0221AC2F6F53E7B89310FD19F51C565D835A6 *)il2cpp_codegen_object_new(GUILayoutOption_t27A0221AC2F6F53E7B89310FD19F51C565D835A6_il2cpp_TypeInfo_var);
GUILayoutOption__ctor_m965FDA1345FD7146596EFA90F03D0C645FB3FD5D(L_3, 1, L_2, /*hidden argument*/NULL);
V_0 = L_3;
goto IL_0010;
}
IL_0010:
{
GUILayoutOption_t27A0221AC2F6F53E7B89310FD19F51C565D835A6 * L_4 = V_0;
return L_4;
}
}
#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
// UnityEngine.GUIStyle UnityEngine.GUILayoutEntry::get_style()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * GUILayoutEntry_get_style_m70E386A3289ACFEC515B1358827AB2FBF6314BA4 (GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * __this, const RuntimeMethod* method)
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * V_0 = NULL;
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = __this->get_m_Style_8();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_1 = V_0;
return L_1;
}
}
// System.Void UnityEngine.GUILayoutEntry::set_style(UnityEngine.GUIStyle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUILayoutEntry_set_style_mEDD232A6CDB1B76ABC33EA06A05235316A180E2D (GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * __this, GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___value0, const RuntimeMethod* method)
{
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = ___value0;
__this->set_m_Style_8(L_0);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_1 = ___value0;
VirtActionInvoker1< GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * >::Invoke(12 /* System.Void UnityEngine.GUILayoutEntry::ApplyStyleSettings(UnityEngine.GUIStyle) */, __this, L_1);
return;
}
}
// System.Int32 UnityEngine.GUILayoutEntry::get_marginLeft()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GUILayoutEntry_get_marginLeft_mD09358867AB85C7555C5F36B21AA8701EBF7A47A (GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * __this, const RuntimeMethod* method)
{
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = GUILayoutEntry_get_style_m70E386A3289ACFEC515B1358827AB2FBF6314BA4(__this, /*hidden argument*/NULL);
NullCheck(L_0);
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * L_1 = GUIStyle_get_margin_mFC3EA0FA030A6334AC03BDDFA4AC80419C9E5BAA(L_0, /*hidden argument*/NULL);
NullCheck(L_1);
int32_t L_2 = RectOffset_get_left_mA86EC00866C1940134873E3A1565A1F700DE67AD(L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Int32 UnityEngine.GUILayoutEntry::get_marginRight()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GUILayoutEntry_get_marginRight_m2449285F6E78BB275246C7382A0F25584A057E83 (GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * __this, const RuntimeMethod* method)
{
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = GUILayoutEntry_get_style_m70E386A3289ACFEC515B1358827AB2FBF6314BA4(__this, /*hidden argument*/NULL);
NullCheck(L_0);
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * L_1 = GUIStyle_get_margin_mFC3EA0FA030A6334AC03BDDFA4AC80419C9E5BAA(L_0, /*hidden argument*/NULL);
NullCheck(L_1);
int32_t L_2 = RectOffset_get_right_m9B05958C3C1B31F1FAB8675834A492C7208F6C96(L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Int32 UnityEngine.GUILayoutEntry::get_marginTop()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GUILayoutEntry_get_marginTop_mA7DC694C92F152BEC3A8CCC470B24E9351338708 (GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * __this, const RuntimeMethod* method)
{
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = GUILayoutEntry_get_style_m70E386A3289ACFEC515B1358827AB2FBF6314BA4(__this, /*hidden argument*/NULL);
NullCheck(L_0);
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * L_1 = GUIStyle_get_margin_mFC3EA0FA030A6334AC03BDDFA4AC80419C9E5BAA(L_0, /*hidden argument*/NULL);
NullCheck(L_1);
int32_t L_2 = RectOffset_get_top_mBA813D4147BFBC079933054018437F411B6B41E1(L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Int32 UnityEngine.GUILayoutEntry::get_marginBottom()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GUILayoutEntry_get_marginBottom_mC821B992F1AA7AF24533D9DAC2E46632950AA1BD (GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * __this, const RuntimeMethod* method)
{
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = GUILayoutEntry_get_style_m70E386A3289ACFEC515B1358827AB2FBF6314BA4(__this, /*hidden argument*/NULL);
NullCheck(L_0);
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * L_1 = GUIStyle_get_margin_mFC3EA0FA030A6334AC03BDDFA4AC80419C9E5BAA(L_0, /*hidden argument*/NULL);
NullCheck(L_1);
int32_t L_2 = RectOffset_get_bottom_mE5162CADD266B59539E3EE1967EE9A74705E5632(L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Int32 UnityEngine.GUILayoutEntry::get_marginHorizontal()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GUILayoutEntry_get_marginHorizontal_m1FB1B936E7C702BAD92FE4CA1EEC529A2BECCEC4 (GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = VirtFuncInvoker0< int32_t >::Invoke(4 /* System.Int32 UnityEngine.GUILayoutEntry::get_marginLeft() */, __this);
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 UnityEngine.GUILayoutEntry::get_marginRight() */, __this);
return ((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1));
}
}
// System.Int32 UnityEngine.GUILayoutEntry::get_marginVertical()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GUILayoutEntry_get_marginVertical_mBFB3FD56025F4627378E5A339379CFF720196EB0 (GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = VirtFuncInvoker0< int32_t >::Invoke(7 /* System.Int32 UnityEngine.GUILayoutEntry::get_marginBottom() */, __this);
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(6 /* System.Int32 UnityEngine.GUILayoutEntry::get_marginTop() */, __this);
return ((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1));
}
}
// System.Void UnityEngine.GUILayoutEntry::.ctor(System.Single,System.Single,System.Single,System.Single,UnityEngine.GUIStyle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUILayoutEntry__ctor_mC640CA08AEBCC7E479DB6AF5B208436A98AB75B2 (GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * __this, float ____minWidth0, float ____maxWidth1, float ____minHeight2, float ____maxHeight3, GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ____style4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUILayoutEntry__ctor_mC640CA08AEBCC7E479DB6AF5B208436A98AB75B2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
Rect_t35B976DE901B5423C11705E156938EA27AB402CE L_0;
memset((&L_0), 0, sizeof(L_0));
Rect__ctor_m50B92C75005C9C5A0D05E6E0EBB43AFAF7C66280((&L_0), (0.0f), (0.0f), (0.0f), (0.0f), /*hidden argument*/NULL);
__this->set_rect_4(L_0);
__this->set_consideredForMargin_7((bool)1);
IL2CPP_RUNTIME_CLASS_INIT(GUIStyle_t671F175A201A19166385EE3392292A5F50070572_il2cpp_TypeInfo_var);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_1 = GUIStyle_get_none_m2B48FA4E2FA2B9BB7A458DF25B1391F9C7BB8B7B(/*hidden argument*/NULL);
__this->set_m_Style_8(L_1);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
float L_2 = ____minWidth0;
__this->set_minWidth_0(L_2);
float L_3 = ____maxWidth1;
__this->set_maxWidth_1(L_3);
float L_4 = ____minHeight2;
__this->set_minHeight_2(L_4);
float L_5 = ____maxHeight3;
__this->set_maxHeight_3(L_5);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_6 = ____style4;
V_0 = (bool)((((RuntimeObject*)(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)L_6) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_7 = V_0;
if (!L_7)
{
goto IL_0066;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(GUIStyle_t671F175A201A19166385EE3392292A5F50070572_il2cpp_TypeInfo_var);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_8 = GUIStyle_get_none_m2B48FA4E2FA2B9BB7A458DF25B1391F9C7BB8B7B(/*hidden argument*/NULL);
____style4 = L_8;
}
IL_0066:
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_9 = ____style4;
GUILayoutEntry_set_style_mEDD232A6CDB1B76ABC33EA06A05235316A180E2D(__this, L_9, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.GUILayoutEntry::CalcWidth()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUILayoutEntry_CalcWidth_mBBA8647ED6695100D8D41CE12CA4586DBD02D993 (GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void UnityEngine.GUILayoutEntry::CalcHeight()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUILayoutEntry_CalcHeight_m476C8ECE96A5ACC4AEA6427EA2432F0ED7E3CFF4 (GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void UnityEngine.GUILayoutEntry::SetHorizontal(System.Single,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUILayoutEntry_SetHorizontal_m46A5D9344EE72AF9AA7D07C77C30745F9FE97DE8 (GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * __this, float ___x0, float ___width1, const RuntimeMethod* method)
{
{
Rect_t35B976DE901B5423C11705E156938EA27AB402CE * L_0 = __this->get_address_of_rect_4();
float L_1 = ___x0;
Rect_set_x_m49EFE25263C03A48D52499C3E9C097298E0EA3A6((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)L_0, L_1, /*hidden argument*/NULL);
Rect_t35B976DE901B5423C11705E156938EA27AB402CE * L_2 = __this->get_address_of_rect_4();
float L_3 = ___width1;
Rect_set_width_mC81EF602AC91E0C615C12FCE060254A461A152B8((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)L_2, L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.GUILayoutEntry::SetVertical(System.Single,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUILayoutEntry_SetVertical_mC0E71E5E431907DD1900C707BD3E2E1D0795DDD0 (GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * __this, float ___y0, float ___height1, const RuntimeMethod* method)
{
{
Rect_t35B976DE901B5423C11705E156938EA27AB402CE * L_0 = __this->get_address_of_rect_4();
float L_1 = ___y0;
Rect_set_y_mCFDB9BD77334EF9CD896F64BE63C755777D7CCD5((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)L_0, L_1, /*hidden argument*/NULL);
Rect_t35B976DE901B5423C11705E156938EA27AB402CE * L_2 = __this->get_address_of_rect_4();
float L_3 = ___height1;
Rect_set_height_mF4CB5A97D4706696F1C9EA31A5D8C466E48050D6((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)L_2, L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.GUILayoutEntry::ApplyStyleSettings(UnityEngine.GUIStyle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUILayoutEntry_ApplyStyleSettings_m5516B497544317E3B720CE7867CA960076E2AF47 (GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * __this, GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___style0, const RuntimeMethod* method)
{
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * G_B2_0 = NULL;
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * G_B1_0 = NULL;
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * G_B3_0 = NULL;
int32_t G_B4_0 = 0;
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * G_B4_1 = NULL;
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * G_B6_0 = NULL;
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * G_B5_0 = NULL;
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * G_B7_0 = NULL;
int32_t G_B8_0 = 0;
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * G_B8_1 = NULL;
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = ___style0;
NullCheck(L_0);
float L_1 = GUIStyle_get_fixedWidth_mEACB70758F83DCD64CE363143849CC40E49B8D8D(L_0, /*hidden argument*/NULL);
G_B1_0 = __this;
if ((!(((float)L_1) == ((float)(0.0f)))))
{
G_B2_0 = __this;
goto IL_0017;
}
}
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_2 = ___style0;
NullCheck(L_2);
bool L_3 = GUIStyle_get_stretchWidth_m4513B313AABE48E1D10424844DC186405BC8A677(L_2, /*hidden argument*/NULL);
G_B2_0 = G_B1_0;
if (L_3)
{
G_B3_0 = G_B1_0;
goto IL_001a;
}
}
IL_0017:
{
G_B4_0 = 0;
G_B4_1 = G_B2_0;
goto IL_001b;
}
IL_001a:
{
G_B4_0 = 1;
G_B4_1 = G_B3_0;
}
IL_001b:
{
NullCheck(G_B4_1);
G_B4_1->set_stretchWidth_5(G_B4_0);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_4 = ___style0;
NullCheck(L_4);
float L_5 = GUIStyle_get_fixedHeight_m9B5589C95B27C5590219413E8D7E9E1E95EB7708(L_4, /*hidden argument*/NULL);
G_B5_0 = __this;
if ((!(((float)L_5) == ((float)(0.0f)))))
{
G_B6_0 = __this;
goto IL_0036;
}
}
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_6 = ___style0;
NullCheck(L_6);
bool L_7 = GUIStyle_get_stretchHeight_m264308B18FA5F0A8400CF49945BAE1B9EFDC934F(L_6, /*hidden argument*/NULL);
G_B6_0 = G_B5_0;
if (L_7)
{
G_B7_0 = G_B5_0;
goto IL_0039;
}
}
IL_0036:
{
G_B8_0 = 0;
G_B8_1 = G_B6_0;
goto IL_003a;
}
IL_0039:
{
G_B8_0 = 1;
G_B8_1 = G_B7_0;
}
IL_003a:
{
NullCheck(G_B8_1);
G_B8_1->set_stretchHeight_6(G_B8_0);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_8 = ___style0;
__this->set_m_Style_8(L_8);
return;
}
}
// System.Void UnityEngine.GUILayoutEntry::ApplyOptions(UnityEngine.GUILayoutOption[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUILayoutEntry_ApplyOptions_m2002EBD9FE42B9787544D204A71C8BEF3F671F5B (GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * __this, GUILayoutOptionU5BU5D_tAB2AD0A365DBD2277A04E397AE8E1430A022AF1B* ___options0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUILayoutEntry_ApplyOptions_m2002EBD9FE42B9787544D204A71C8BEF3F671F5B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
GUILayoutOptionU5BU5D_tAB2AD0A365DBD2277A04E397AE8E1430A022AF1B* V_1 = NULL;
int32_t V_2 = 0;
GUILayoutOption_t27A0221AC2F6F53E7B89310FD19F51C565D835A6 * V_3 = NULL;
int32_t V_4 = 0;
float V_5 = 0.0f;
bool V_6 = false;
bool V_7 = false;
bool V_8 = false;
bool V_9 = false;
bool V_10 = false;
bool V_11 = false;
int32_t G_B26_0 = 0;
int32_t G_B31_0 = 0;
{
GUILayoutOptionU5BU5D_tAB2AD0A365DBD2277A04E397AE8E1430A022AF1B* L_0 = ___options0;
V_0 = (bool)((((RuntimeObject*)(GUILayoutOptionU5BU5D_tAB2AD0A365DBD2277A04E397AE8E1430A022AF1B*)L_0) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_000e;
}
}
{
goto IL_0215;
}
IL_000e:
{
GUILayoutOptionU5BU5D_tAB2AD0A365DBD2277A04E397AE8E1430A022AF1B* L_2 = ___options0;
V_1 = L_2;
V_2 = 0;
goto IL_01ac;
}
IL_0018:
{
GUILayoutOptionU5BU5D_tAB2AD0A365DBD2277A04E397AE8E1430A022AF1B* L_3 = V_1;
int32_t L_4 = V_2;
NullCheck(L_3);
int32_t L_5 = L_4;
GUILayoutOption_t27A0221AC2F6F53E7B89310FD19F51C565D835A6 * L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
V_3 = L_6;
GUILayoutOption_t27A0221AC2F6F53E7B89310FD19F51C565D835A6 * L_7 = V_3;
NullCheck(L_7);
int32_t L_8 = L_7->get_type_0();
V_4 = L_8;
int32_t L_9 = V_4;
switch (L_9)
{
case 0:
{
goto IL_0051;
}
case 1:
{
goto IL_0079;
}
case 2:
{
goto IL_00a1;
}
case 3:
{
goto IL_00d7;
}
case 4:
{
goto IL_0114;
}
case 5:
{
goto IL_0147;
}
case 6:
{
goto IL_0181;
}
case 7:
{
goto IL_0194;
}
}
}
{
goto IL_01a7;
}
IL_0051:
{
GUILayoutOption_t27A0221AC2F6F53E7B89310FD19F51C565D835A6 * L_10 = V_3;
NullCheck(L_10);
RuntimeObject * L_11 = L_10->get_value_1();
float L_12 = ((*(float*)((float*)UnBox(L_11, Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_il2cpp_TypeInfo_var))));
V_5 = L_12;
__this->set_maxWidth_1(L_12);
float L_13 = V_5;
__this->set_minWidth_0(L_13);
__this->set_stretchWidth_5(0);
goto IL_01a7;
}
IL_0079:
{
GUILayoutOption_t27A0221AC2F6F53E7B89310FD19F51C565D835A6 * L_14 = V_3;
NullCheck(L_14);
RuntimeObject * L_15 = L_14->get_value_1();
float L_16 = ((*(float*)((float*)UnBox(L_15, Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_il2cpp_TypeInfo_var))));
V_5 = L_16;
__this->set_maxHeight_3(L_16);
float L_17 = V_5;
__this->set_minHeight_2(L_17);
__this->set_stretchHeight_6(0);
goto IL_01a7;
}
IL_00a1:
{
GUILayoutOption_t27A0221AC2F6F53E7B89310FD19F51C565D835A6 * L_18 = V_3;
NullCheck(L_18);
RuntimeObject * L_19 = L_18->get_value_1();
__this->set_minWidth_0(((*(float*)((float*)UnBox(L_19, Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_il2cpp_TypeInfo_var)))));
float L_20 = __this->get_maxWidth_1();
float L_21 = __this->get_minWidth_0();
V_6 = (bool)((((float)L_20) < ((float)L_21))? 1 : 0);
bool L_22 = V_6;
if (!L_22)
{
goto IL_00d2;
}
}
{
float L_23 = __this->get_minWidth_0();
__this->set_maxWidth_1(L_23);
}
IL_00d2:
{
goto IL_01a7;
}
IL_00d7:
{
GUILayoutOption_t27A0221AC2F6F53E7B89310FD19F51C565D835A6 * L_24 = V_3;
NullCheck(L_24);
RuntimeObject * L_25 = L_24->get_value_1();
__this->set_maxWidth_1(((*(float*)((float*)UnBox(L_25, Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_il2cpp_TypeInfo_var)))));
float L_26 = __this->get_minWidth_0();
float L_27 = __this->get_maxWidth_1();
V_7 = (bool)((((float)L_26) > ((float)L_27))? 1 : 0);
bool L_28 = V_7;
if (!L_28)
{
goto IL_0108;
}
}
{
float L_29 = __this->get_maxWidth_1();
__this->set_minWidth_0(L_29);
}
IL_0108:
{
__this->set_stretchWidth_5(0);
goto IL_01a7;
}
IL_0114:
{
GUILayoutOption_t27A0221AC2F6F53E7B89310FD19F51C565D835A6 * L_30 = V_3;
NullCheck(L_30);
RuntimeObject * L_31 = L_30->get_value_1();
__this->set_minHeight_2(((*(float*)((float*)UnBox(L_31, Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_il2cpp_TypeInfo_var)))));
float L_32 = __this->get_maxHeight_3();
float L_33 = __this->get_minHeight_2();
V_8 = (bool)((((float)L_32) < ((float)L_33))? 1 : 0);
bool L_34 = V_8;
if (!L_34)
{
goto IL_0145;
}
}
{
float L_35 = __this->get_minHeight_2();
__this->set_maxHeight_3(L_35);
}
IL_0145:
{
goto IL_01a7;
}
IL_0147:
{
GUILayoutOption_t27A0221AC2F6F53E7B89310FD19F51C565D835A6 * L_36 = V_3;
NullCheck(L_36);
RuntimeObject * L_37 = L_36->get_value_1();
__this->set_maxHeight_3(((*(float*)((float*)UnBox(L_37, Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_il2cpp_TypeInfo_var)))));
float L_38 = __this->get_minHeight_2();
float L_39 = __this->get_maxHeight_3();
V_9 = (bool)((((float)L_38) > ((float)L_39))? 1 : 0);
bool L_40 = V_9;
if (!L_40)
{
goto IL_0178;
}
}
{
float L_41 = __this->get_maxHeight_3();
__this->set_minHeight_2(L_41);
}
IL_0178:
{
__this->set_stretchHeight_6(0);
goto IL_01a7;
}
IL_0181:
{
GUILayoutOption_t27A0221AC2F6F53E7B89310FD19F51C565D835A6 * L_42 = V_3;
NullCheck(L_42);
RuntimeObject * L_43 = L_42->get_value_1();
__this->set_stretchWidth_5(((*(int32_t*)((int32_t*)UnBox(L_43, Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var)))));
goto IL_01a7;
}
IL_0194:
{
GUILayoutOption_t27A0221AC2F6F53E7B89310FD19F51C565D835A6 * L_44 = V_3;
NullCheck(L_44);
RuntimeObject * L_45 = L_44->get_value_1();
__this->set_stretchHeight_6(((*(int32_t*)((int32_t*)UnBox(L_45, Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var)))));
goto IL_01a7;
}
IL_01a7:
{
int32_t L_46 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_46, (int32_t)1));
}
IL_01ac:
{
int32_t L_47 = V_2;
GUILayoutOptionU5BU5D_tAB2AD0A365DBD2277A04E397AE8E1430A022AF1B* L_48 = V_1;
NullCheck(L_48);
if ((((int32_t)L_47) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_48)->max_length)))))))
{
goto IL_0018;
}
}
{
float L_49 = __this->get_maxWidth_1();
if ((((float)L_49) == ((float)(0.0f))))
{
goto IL_01d2;
}
}
{
float L_50 = __this->get_maxWidth_1();
float L_51 = __this->get_minWidth_0();
G_B26_0 = ((((float)L_50) < ((float)L_51))? 1 : 0);
goto IL_01d3;
}
IL_01d2:
{
G_B26_0 = 0;
}
IL_01d3:
{
V_10 = (bool)G_B26_0;
bool L_52 = V_10;
if (!L_52)
{
goto IL_01e5;
}
}
{
float L_53 = __this->get_minWidth_0();
__this->set_maxWidth_1(L_53);
}
IL_01e5:
{
float L_54 = __this->get_maxHeight_3();
if ((((float)L_54) == ((float)(0.0f))))
{
goto IL_0202;
}
}
{
float L_55 = __this->get_maxHeight_3();
float L_56 = __this->get_minHeight_2();
G_B31_0 = ((((float)L_55) < ((float)L_56))? 1 : 0);
goto IL_0203;
}
IL_0202:
{
G_B31_0 = 0;
}
IL_0203:
{
V_11 = (bool)G_B31_0;
bool L_57 = V_11;
if (!L_57)
{
goto IL_0215;
}
}
{
float L_58 = __this->get_minHeight_2();
__this->set_maxHeight_3(L_58);
}
IL_0215:
{
return;
}
}
// System.String UnityEngine.GUILayoutEntry::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* GUILayoutEntry_ToString_mCDA5CD14A39ADAD29F6B450B98FDB80E37AC95D5 (GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUILayoutEntry_ToString_mCDA5CD14A39ADAD29F6B450B98FDB80E37AC95D5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
int32_t V_1 = 0;
bool V_2 = false;
String_t* V_3 = NULL;
int32_t G_B5_0 = 0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B5_1 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B5_2 = NULL;
String_t* G_B5_3 = NULL;
int32_t G_B5_4 = 0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B5_5 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B5_6 = NULL;
int32_t G_B4_0 = 0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B4_1 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B4_2 = NULL;
String_t* G_B4_3 = NULL;
int32_t G_B4_4 = 0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B4_5 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B4_6 = NULL;
String_t* G_B6_0 = NULL;
int32_t G_B6_1 = 0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B6_2 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B6_3 = NULL;
String_t* G_B6_4 = NULL;
int32_t G_B6_5 = 0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B6_6 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B6_7 = NULL;
int32_t G_B8_0 = 0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B8_1 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B8_2 = NULL;
int32_t G_B7_0 = 0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B7_1 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B7_2 = NULL;
String_t* G_B9_0 = NULL;
int32_t G_B9_1 = 0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B9_2 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B9_3 = NULL;
int32_t G_B11_0 = 0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B11_1 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B11_2 = NULL;
int32_t G_B10_0 = 0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B10_1 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B10_2 = NULL;
String_t* G_B12_0 = NULL;
int32_t G_B12_1 = 0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B12_2 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B12_3 = NULL;
{
V_0 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
V_1 = 0;
goto IL_001b;
}
IL_000b:
{
String_t* L_0 = V_0;
String_t* L_1 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_0, _stringLiteralB858CB282617FB0956D960215C8E84D1CCF909C6, /*hidden argument*/NULL);
V_0 = L_1;
int32_t L_2 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)1));
}
IL_001b:
{
int32_t L_3 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845_il2cpp_TypeInfo_var);
int32_t L_4 = ((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845_il2cpp_TypeInfo_var))->get_indent_10();
V_2 = (bool)((((int32_t)L_3) < ((int32_t)L_4))? 1 : 0);
bool L_5 = V_2;
if (L_5)
{
goto IL_000b;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)((int32_t)12));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_7 = L_6;
String_t* L_8 = V_0;
NullCheck(L_7);
ArrayElementTypeCheck (L_7, L_8);
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_8);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_9 = L_7;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_10 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)6);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_11 = L_10;
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_12 = GUILayoutEntry_get_style_m70E386A3289ACFEC515B1358827AB2FBF6314BA4(__this, /*hidden argument*/NULL);
G_B4_0 = 0;
G_B4_1 = L_11;
G_B4_2 = L_11;
G_B4_3 = _stringLiteral0C258057D84276FDE292E99D213EB3AA75E8A463;
G_B4_4 = 1;
G_B4_5 = L_9;
G_B4_6 = L_9;
if (L_12)
{
G_B5_0 = 0;
G_B5_1 = L_11;
G_B5_2 = L_11;
G_B5_3 = _stringLiteral0C258057D84276FDE292E99D213EB3AA75E8A463;
G_B5_4 = 1;
G_B5_5 = L_9;
G_B5_6 = L_9;
goto IL_0050;
}
}
{
G_B6_0 = _stringLiteralEEF19C54306DAA69EDA49C0272623BDB5E2B341F;
G_B6_1 = G_B4_0;
G_B6_2 = G_B4_1;
G_B6_3 = G_B4_2;
G_B6_4 = G_B4_3;
G_B6_5 = G_B4_4;
G_B6_6 = G_B4_5;
G_B6_7 = G_B4_6;
goto IL_005b;
}
IL_0050:
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_13 = GUILayoutEntry_get_style_m70E386A3289ACFEC515B1358827AB2FBF6314BA4(__this, /*hidden argument*/NULL);
NullCheck(L_13);
String_t* L_14 = GUIStyle_get_name_m111D8AB0173E1EBA46A9664EBABBC82AFE3ED71E(L_13, /*hidden argument*/NULL);
G_B6_0 = L_14;
G_B6_1 = G_B5_0;
G_B6_2 = G_B5_1;
G_B6_3 = G_B5_2;
G_B6_4 = G_B5_3;
G_B6_5 = G_B5_4;
G_B6_6 = G_B5_5;
G_B6_7 = G_B5_6;
}
IL_005b:
{
NullCheck(G_B6_2);
ArrayElementTypeCheck (G_B6_2, G_B6_0);
(G_B6_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B6_1), (RuntimeObject *)G_B6_0);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_15 = G_B6_3;
Type_t * L_16 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(__this, /*hidden argument*/NULL);
NullCheck(L_15);
ArrayElementTypeCheck (L_15, L_16);
(L_15)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_16);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_17 = L_15;
Rect_t35B976DE901B5423C11705E156938EA27AB402CE * L_18 = __this->get_address_of_rect_4();
float L_19 = Rect_get_x_mC51A461F546D14832EB96B11A7198DADDE2597B7((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)L_18, /*hidden argument*/NULL);
float L_20 = L_19;
RuntimeObject * L_21 = Box(Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_il2cpp_TypeInfo_var, &L_20);
NullCheck(L_17);
ArrayElementTypeCheck (L_17, L_21);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)L_21);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_22 = L_17;
Rect_t35B976DE901B5423C11705E156938EA27AB402CE * L_23 = __this->get_address_of_rect_4();
float L_24 = Rect_get_xMax_mA16D7C3C2F30F8608719073ED79028C11CE90983((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)L_23, /*hidden argument*/NULL);
float L_25 = L_24;
RuntimeObject * L_26 = Box(Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_il2cpp_TypeInfo_var, &L_25);
NullCheck(L_22);
ArrayElementTypeCheck (L_22, L_26);
(L_22)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)L_26);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_27 = L_22;
Rect_t35B976DE901B5423C11705E156938EA27AB402CE * L_28 = __this->get_address_of_rect_4();
float L_29 = Rect_get_y_m53E3E4F62D9840FBEA751A66293038F1F5D1D45C((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)L_28, /*hidden argument*/NULL);
float L_30 = L_29;
RuntimeObject * L_31 = Box(Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_il2cpp_TypeInfo_var, &L_30);
NullCheck(L_27);
ArrayElementTypeCheck (L_27, L_31);
(L_27)->SetAt(static_cast<il2cpp_array_size_t>(4), (RuntimeObject *)L_31);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_32 = L_27;
Rect_t35B976DE901B5423C11705E156938EA27AB402CE * L_33 = __this->get_address_of_rect_4();
float L_34 = Rect_get_yMax_m8AA5E92C322AF3FF571330F00579DA864F33341B((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)L_33, /*hidden argument*/NULL);
float L_35 = L_34;
RuntimeObject * L_36 = Box(Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_il2cpp_TypeInfo_var, &L_35);
NullCheck(L_32);
ArrayElementTypeCheck (L_32, L_36);
(L_32)->SetAt(static_cast<il2cpp_array_size_t>(5), (RuntimeObject *)L_36);
String_t* L_37 = UnityString_Format_m415056ECF8DA7B3EC6A8456E299D0C2002177387(G_B6_4, L_32, /*hidden argument*/NULL);
NullCheck(G_B6_6);
ArrayElementTypeCheck (G_B6_6, L_37);
(G_B6_6)->SetAt(static_cast<il2cpp_array_size_t>(G_B6_5), (RuntimeObject *)L_37);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_38 = G_B6_7;
NullCheck(L_38);
ArrayElementTypeCheck (L_38, _stringLiteralA8D40E8C95571FFC4E4BA4C9CEF0289695BD8057);
(L_38)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)_stringLiteralA8D40E8C95571FFC4E4BA4C9CEF0289695BD8057);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_39 = L_38;
float L_40 = __this->get_minWidth_0();
float L_41 = L_40;
RuntimeObject * L_42 = Box(Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_il2cpp_TypeInfo_var, &L_41);
NullCheck(L_39);
ArrayElementTypeCheck (L_39, L_42);
(L_39)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)L_42);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_43 = L_39;
NullCheck(L_43);
ArrayElementTypeCheck (L_43, _stringLiteral3BC15C8AAE3E4124DD409035F32EA2FD6835EFC9);
(L_43)->SetAt(static_cast<il2cpp_array_size_t>(4), (RuntimeObject *)_stringLiteral3BC15C8AAE3E4124DD409035F32EA2FD6835EFC9);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_44 = L_43;
float L_45 = __this->get_maxWidth_1();
float L_46 = L_45;
RuntimeObject * L_47 = Box(Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_il2cpp_TypeInfo_var, &L_46);
NullCheck(L_44);
ArrayElementTypeCheck (L_44, L_47);
(L_44)->SetAt(static_cast<il2cpp_array_size_t>(5), (RuntimeObject *)L_47);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_48 = L_44;
int32_t L_49 = __this->get_stretchWidth_5();
G_B7_0 = 6;
G_B7_1 = L_48;
G_B7_2 = L_48;
if (L_49)
{
G_B8_0 = 6;
G_B8_1 = L_48;
G_B8_2 = L_48;
goto IL_00f4;
}
}
{
G_B9_0 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
G_B9_1 = G_B7_0;
G_B9_2 = G_B7_1;
G_B9_3 = G_B7_2;
goto IL_00f9;
}
IL_00f4:
{
G_B9_0 = _stringLiteralA979EF10CC6F6A36DF6B8A323307EE3BB2E2DB9C;
G_B9_1 = G_B8_0;
G_B9_2 = G_B8_1;
G_B9_3 = G_B8_2;
}
IL_00f9:
{
NullCheck(G_B9_2);
ArrayElementTypeCheck (G_B9_2, G_B9_0);
(G_B9_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B9_1), (RuntimeObject *)G_B9_0);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_50 = G_B9_3;
NullCheck(L_50);
ArrayElementTypeCheck (L_50, _stringLiteral553F4091D1912B191C8392C610091F6B85B0B6E3);
(L_50)->SetAt(static_cast<il2cpp_array_size_t>(7), (RuntimeObject *)_stringLiteral553F4091D1912B191C8392C610091F6B85B0B6E3);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_51 = L_50;
float L_52 = __this->get_minHeight_2();
float L_53 = L_52;
RuntimeObject * L_54 = Box(Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_il2cpp_TypeInfo_var, &L_53);
NullCheck(L_51);
ArrayElementTypeCheck (L_51, L_54);
(L_51)->SetAt(static_cast<il2cpp_array_size_t>(8), (RuntimeObject *)L_54);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_55 = L_51;
NullCheck(L_55);
ArrayElementTypeCheck (L_55, _stringLiteral3BC15C8AAE3E4124DD409035F32EA2FD6835EFC9);
(L_55)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)9)), (RuntimeObject *)_stringLiteral3BC15C8AAE3E4124DD409035F32EA2FD6835EFC9);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_56 = L_55;
float L_57 = __this->get_maxHeight_3();
float L_58 = L_57;
RuntimeObject * L_59 = Box(Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_il2cpp_TypeInfo_var, &L_58);
NullCheck(L_56);
ArrayElementTypeCheck (L_56, L_59);
(L_56)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)10)), (RuntimeObject *)L_59);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_60 = L_56;
int32_t L_61 = __this->get_stretchHeight_6();
G_B10_0 = ((int32_t)11);
G_B10_1 = L_60;
G_B10_2 = L_60;
if (L_61)
{
G_B11_0 = ((int32_t)11);
G_B11_1 = L_60;
G_B11_2 = L_60;
goto IL_013a;
}
}
{
G_B12_0 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
G_B12_1 = G_B10_0;
G_B12_2 = G_B10_1;
G_B12_3 = G_B10_2;
goto IL_013f;
}
IL_013a:
{
G_B12_0 = _stringLiteralA979EF10CC6F6A36DF6B8A323307EE3BB2E2DB9C;
G_B12_1 = G_B11_0;
G_B12_2 = G_B11_1;
G_B12_3 = G_B11_2;
}
IL_013f:
{
NullCheck(G_B12_2);
ArrayElementTypeCheck (G_B12_2, G_B12_0);
(G_B12_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B12_1), (RuntimeObject *)G_B12_0);
String_t* L_62 = String_Concat_mB7BA84F13912303B2E5E40FBF0109E1A328ACA07(G_B12_3, /*hidden argument*/NULL);
V_3 = L_62;
goto IL_0148;
}
IL_0148:
{
String_t* L_63 = V_3;
return L_63;
}
}
// System.Void UnityEngine.GUILayoutEntry::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUILayoutEntry__cctor_m7425E2D0EE5771858B9823BBD024333CE7CAD3F9 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUILayoutEntry__cctor_m7425E2D0EE5771858B9823BBD024333CE7CAD3F9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Rect_t35B976DE901B5423C11705E156938EA27AB402CE L_0;
memset((&L_0), 0, sizeof(L_0));
Rect__ctor_m50B92C75005C9C5A0D05E6E0EBB43AFAF7C66280((&L_0), (0.0f), (0.0f), (1.0f), (1.0f), /*hidden argument*/NULL);
((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845_il2cpp_TypeInfo_var))->set_kDummyRect_9(L_0);
((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845_il2cpp_TypeInfo_var))->set_indent_10(0);
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.Int32 UnityEngine.GUILayoutGroup::get_marginLeft()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GUILayoutGroup_get_marginLeft_m987BDD5E6CE4A143F56120E1953291A27F43AA4F (GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_m_MarginLeft_27();
return L_0;
}
}
// System.Int32 UnityEngine.GUILayoutGroup::get_marginRight()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GUILayoutGroup_get_marginRight_m12265D01788B2A60664CD21B887AFEC72C6A0855 (GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_m_MarginRight_28();
return L_0;
}
}
// System.Int32 UnityEngine.GUILayoutGroup::get_marginTop()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GUILayoutGroup_get_marginTop_m5A7ACD924C4728C19C2DE52E3155A1D098646023 (GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_m_MarginTop_29();
return L_0;
}
}
// System.Int32 UnityEngine.GUILayoutGroup::get_marginBottom()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GUILayoutGroup_get_marginBottom_m47E83C97B7052E8C3A15C11E23C05C7B4FF31460 (GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_m_MarginBottom_30();
return L_0;
}
}
// System.Void UnityEngine.GUILayoutGroup::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUILayoutGroup__ctor_m14D8B35B4A89F6688D354A534ED871860905BA3B (GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUILayoutGroup__ctor_m14D8B35B4A89F6688D354A534ED871860905BA3B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
List_1_t046427F3923444CF746C550FD96A3D0E4189D273 * L_0 = (List_1_t046427F3923444CF746C550FD96A3D0E4189D273 *)il2cpp_codegen_object_new(List_1_t046427F3923444CF746C550FD96A3D0E4189D273_il2cpp_TypeInfo_var);
List_1__ctor_m8334B758D374FE266FFF49329936203BCE3A3770(L_0, /*hidden argument*/List_1__ctor_m8334B758D374FE266FFF49329936203BCE3A3770_RuntimeMethod_var);
__this->set_entries_11(L_0);
__this->set_isVertical_12((bool)1);
__this->set_resetCoords_13((bool)0);
__this->set_spacing_14((0.0f));
__this->set_sameSize_15((bool)1);
__this->set_isWindow_16((bool)0);
__this->set_windowID_17((-1));
__this->set_m_Cursor_18(0);
__this->set_m_StretchableCountX_19(((int32_t)100));
__this->set_m_StretchableCountY_20(((int32_t)100));
__this->set_m_UserSpecifiedWidth_21((bool)0);
__this->set_m_UserSpecifiedHeight_22((bool)0);
__this->set_m_ChildMinWidth_23((100.0f));
__this->set_m_ChildMaxWidth_24((100.0f));
__this->set_m_ChildMinHeight_25((100.0f));
__this->set_m_ChildMaxHeight_26((100.0f));
IL2CPP_RUNTIME_CLASS_INIT(GUIStyle_t671F175A201A19166385EE3392292A5F50070572_il2cpp_TypeInfo_var);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_1 = GUIStyle_get_none_m2B48FA4E2FA2B9BB7A458DF25B1391F9C7BB8B7B(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845_il2cpp_TypeInfo_var);
GUILayoutEntry__ctor_mC640CA08AEBCC7E479DB6AF5B208436A98AB75B2(__this, (0.0f), (0.0f), (0.0f), (0.0f), L_1, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.GUILayoutGroup::ApplyOptions(UnityEngine.GUILayoutOption[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUILayoutGroup_ApplyOptions_mCBAF4F0DA13F941ABF47886054A3443247767A97 (GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * __this, GUILayoutOptionU5BU5D_tAB2AD0A365DBD2277A04E397AE8E1430A022AF1B* ___options0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUILayoutGroup_ApplyOptions_mCBAF4F0DA13F941ABF47886054A3443247767A97_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
GUILayoutOptionU5BU5D_tAB2AD0A365DBD2277A04E397AE8E1430A022AF1B* V_1 = NULL;
int32_t V_2 = 0;
GUILayoutOption_t27A0221AC2F6F53E7B89310FD19F51C565D835A6 * V_3 = NULL;
int32_t V_4 = 0;
{
GUILayoutOptionU5BU5D_tAB2AD0A365DBD2277A04E397AE8E1430A022AF1B* L_0 = ___options0;
V_0 = (bool)((((RuntimeObject*)(GUILayoutOptionU5BU5D_tAB2AD0A365DBD2277A04E397AE8E1430A022AF1B*)L_0) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_000b;
}
}
{
goto IL_0081;
}
IL_000b:
{
GUILayoutOptionU5BU5D_tAB2AD0A365DBD2277A04E397AE8E1430A022AF1B* L_2 = ___options0;
GUILayoutEntry_ApplyOptions_m2002EBD9FE42B9787544D204A71C8BEF3F671F5B(__this, L_2, /*hidden argument*/NULL);
GUILayoutOptionU5BU5D_tAB2AD0A365DBD2277A04E397AE8E1430A022AF1B* L_3 = ___options0;
V_1 = L_3;
V_2 = 0;
goto IL_007b;
}
IL_001a:
{
GUILayoutOptionU5BU5D_tAB2AD0A365DBD2277A04E397AE8E1430A022AF1B* L_4 = V_1;
int32_t L_5 = V_2;
NullCheck(L_4);
int32_t L_6 = L_5;
GUILayoutOption_t27A0221AC2F6F53E7B89310FD19F51C565D835A6 * L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
V_3 = L_7;
GUILayoutOption_t27A0221AC2F6F53E7B89310FD19F51C565D835A6 * L_8 = V_3;
NullCheck(L_8);
int32_t L_9 = L_8->get_type_0();
V_4 = L_9;
int32_t L_10 = V_4;
switch (L_10)
{
case 0:
{
goto IL_0050;
}
case 1:
{
goto IL_0059;
}
case 2:
{
goto IL_0050;
}
case 3:
{
goto IL_0050;
}
case 4:
{
goto IL_0059;
}
case 5:
{
goto IL_0059;
}
}
}
{
goto IL_0048;
}
IL_0048:
{
int32_t L_11 = V_4;
if ((((int32_t)L_11) == ((int32_t)((int32_t)13))))
{
goto IL_0062;
}
}
{
goto IL_0076;
}
IL_0050:
{
__this->set_m_UserSpecifiedHeight_22((bool)1);
goto IL_0076;
}
IL_0059:
{
__this->set_m_UserSpecifiedWidth_21((bool)1);
goto IL_0076;
}
IL_0062:
{
GUILayoutOption_t27A0221AC2F6F53E7B89310FD19F51C565D835A6 * L_12 = V_3;
NullCheck(L_12);
RuntimeObject * L_13 = L_12->get_value_1();
__this->set_spacing_14((((float)((float)((*(int32_t*)((int32_t*)UnBox(L_13, Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var))))))));
goto IL_0076;
}
IL_0076:
{
int32_t L_14 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1));
}
IL_007b:
{
int32_t L_15 = V_2;
GUILayoutOptionU5BU5D_tAB2AD0A365DBD2277A04E397AE8E1430A022AF1B* L_16 = V_1;
NullCheck(L_16);
if ((((int32_t)L_15) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_16)->max_length)))))))
{
goto IL_001a;
}
}
IL_0081:
{
return;
}
}
// System.Void UnityEngine.GUILayoutGroup::ApplyStyleSettings(UnityEngine.GUIStyle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUILayoutGroup_ApplyStyleSettings_mEC5D7325E4DC8993207671A95F6F0ED7D75B7F6C (GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * __this, GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___style0, const RuntimeMethod* method)
{
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * V_0 = NULL;
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = ___style0;
GUILayoutEntry_ApplyStyleSettings_m5516B497544317E3B720CE7867CA960076E2AF47(__this, L_0, /*hidden argument*/NULL);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_1 = ___style0;
NullCheck(L_1);
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * L_2 = GUIStyle_get_margin_mFC3EA0FA030A6334AC03BDDFA4AC80419C9E5BAA(L_1, /*hidden argument*/NULL);
V_0 = L_2;
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * L_3 = V_0;
NullCheck(L_3);
int32_t L_4 = RectOffset_get_left_mA86EC00866C1940134873E3A1565A1F700DE67AD(L_3, /*hidden argument*/NULL);
__this->set_m_MarginLeft_27(L_4);
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * L_5 = V_0;
NullCheck(L_5);
int32_t L_6 = RectOffset_get_right_m9B05958C3C1B31F1FAB8675834A492C7208F6C96(L_5, /*hidden argument*/NULL);
__this->set_m_MarginRight_28(L_6);
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * L_7 = V_0;
NullCheck(L_7);
int32_t L_8 = RectOffset_get_top_mBA813D4147BFBC079933054018437F411B6B41E1(L_7, /*hidden argument*/NULL);
__this->set_m_MarginTop_29(L_8);
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * L_9 = V_0;
NullCheck(L_9);
int32_t L_10 = RectOffset_get_bottom_mE5162CADD266B59539E3EE1967EE9A74705E5632(L_9, /*hidden argument*/NULL);
__this->set_m_MarginBottom_30(L_10);
return;
}
}
// System.Void UnityEngine.GUILayoutGroup::ResetCursor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUILayoutGroup_ResetCursor_mD159DD9E101F6F348249D27D95709E1DC5C0A13F (GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * __this, const RuntimeMethod* method)
{
{
__this->set_m_Cursor_18(0);
return;
}
}
// System.Void UnityEngine.GUILayoutGroup::CalcWidth()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUILayoutGroup_CalcWidth_m0D2819C659392B14175C2B163DD889AD35794A9B (GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUILayoutGroup_CalcWidth_m0D2819C659392B14175C2B163DD889AD35794A9B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
bool V_2 = false;
float V_3 = 0.0f;
float V_4 = 0.0f;
bool V_5 = false;
float V_6 = 0.0f;
bool V_7 = false;
Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 V_8;
memset((&V_8), 0, sizeof(V_8));
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * V_9 = NULL;
bool V_10 = false;
bool V_11 = false;
int32_t V_12 = 0;
Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 V_13;
memset((&V_13), 0, sizeof(V_13));
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * V_14 = NULL;
int32_t V_15 = 0;
bool V_16 = false;
bool V_17 = false;
bool V_18 = false;
bool V_19 = false;
bool V_20 = false;
bool V_21 = false;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
int32_t G_B22_0 = 0;
int32_t G_B37_0 = 0;
int32_t G_B43_0 = 0;
int32_t G_B43_1 = 0;
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * G_B43_2 = NULL;
int32_t G_B42_0 = 0;
int32_t G_B42_1 = 0;
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * G_B42_2 = NULL;
int32_t G_B44_0 = 0;
int32_t G_B44_1 = 0;
int32_t G_B44_2 = 0;
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * G_B44_3 = NULL;
{
List_1_t046427F3923444CF746C550FD96A3D0E4189D273 * L_0 = __this->get_entries_11();
NullCheck(L_0);
int32_t L_1 = List_1_get_Count_m2995506A297520F84CBD9AD421D8672D5755E115_inline(L_0, /*hidden argument*/List_1_get_Count_m2995506A297520F84CBD9AD421D8672D5755E115_RuntimeMethod_var);
V_5 = (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0);
bool L_2 = V_5;
if (!L_2)
{
goto IL_003d;
}
}
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_3 = GUILayoutEntry_get_style_m70E386A3289ACFEC515B1358827AB2FBF6314BA4(__this, /*hidden argument*/NULL);
NullCheck(L_3);
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * L_4 = GUIStyle_get_padding_m5DF76AA03A313366D0DD8D577731DAC4FB83053A(L_3, /*hidden argument*/NULL);
NullCheck(L_4);
int32_t L_5 = RectOffset_get_horizontal_m9274B965D5D388F6F750D127B3E57F70DF0D89C1(L_4, /*hidden argument*/NULL);
float L_6 = (((float)((float)L_5)));
V_6 = L_6;
((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->set_minWidth_0(L_6);
float L_7 = V_6;
((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->set_maxWidth_1(L_7);
goto IL_043a;
}
IL_003d:
{
V_0 = 0;
V_1 = 0;
__this->set_m_ChildMinWidth_23((0.0f));
__this->set_m_ChildMaxWidth_24((0.0f));
__this->set_m_StretchableCountX_19(0);
V_2 = (bool)1;
bool L_8 = __this->get_isVertical_12();
V_7 = L_8;
bool L_9 = V_7;
if (!L_9)
{
goto IL_0181;
}
}
{
List_1_t046427F3923444CF746C550FD96A3D0E4189D273 * L_10 = __this->get_entries_11();
NullCheck(L_10);
Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 L_11 = List_1_GetEnumerator_mA457B3CB61E2B7BAFB0F7D0ADEFD25237B4429DF(L_10, /*hidden argument*/List_1_GetEnumerator_mA457B3CB61E2B7BAFB0F7D0ADEFD25237B4429DF_RuntimeMethod_var);
V_8 = L_11;
}
IL_007e:
try
{ // begin try (depth: 1)
{
goto IL_013c;
}
IL_0083:
{
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_12 = Enumerator_get_Current_m9422C22943D0E9900CDB7DF407D9EBE215B2A6B6_inline((Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 *)(&V_8), /*hidden argument*/Enumerator_get_Current_m9422C22943D0E9900CDB7DF407D9EBE215B2A6B6_RuntimeMethod_var);
V_9 = L_12;
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_13 = V_9;
NullCheck(L_13);
VirtActionInvoker0::Invoke(8 /* System.Void UnityEngine.GUILayoutEntry::CalcWidth() */, L_13);
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_14 = V_9;
NullCheck(L_14);
bool L_15 = L_14->get_consideredForMargin_7();
V_10 = L_15;
bool L_16 = V_10;
if (!L_16)
{
goto IL_0127;
}
}
IL_00a5:
{
bool L_17 = V_2;
V_11 = (bool)((((int32_t)L_17) == ((int32_t)0))? 1 : 0);
bool L_18 = V_11;
if (!L_18)
{
goto IL_00d0;
}
}
IL_00b0:
{
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_19 = V_9;
NullCheck(L_19);
int32_t L_20 = VirtFuncInvoker0< int32_t >::Invoke(4 /* System.Int32 UnityEngine.GUILayoutEntry::get_marginLeft() */, L_19);
int32_t L_21 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Mathf_tFBDE6467D269BFE410605C7D806FD9991D4A89CB_il2cpp_TypeInfo_var);
int32_t L_22 = Mathf_Min_m1A2CC204E361AE13C329B6535165179798D3313A(L_20, L_21, /*hidden argument*/NULL);
V_0 = L_22;
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_23 = V_9;
NullCheck(L_23);
int32_t L_24 = VirtFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 UnityEngine.GUILayoutEntry::get_marginRight() */, L_23);
int32_t L_25 = V_1;
int32_t L_26 = Mathf_Min_m1A2CC204E361AE13C329B6535165179798D3313A(L_24, L_25, /*hidden argument*/NULL);
V_1 = L_26;
goto IL_00e4;
}
IL_00d0:
{
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_27 = V_9;
NullCheck(L_27);
int32_t L_28 = VirtFuncInvoker0< int32_t >::Invoke(4 /* System.Int32 UnityEngine.GUILayoutEntry::get_marginLeft() */, L_27);
V_0 = L_28;
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_29 = V_9;
NullCheck(L_29);
int32_t L_30 = VirtFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 UnityEngine.GUILayoutEntry::get_marginRight() */, L_29);
V_1 = L_30;
V_2 = (bool)0;
}
IL_00e4:
{
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_31 = V_9;
NullCheck(L_31);
float L_32 = L_31->get_minWidth_0();
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_33 = V_9;
NullCheck(L_33);
int32_t L_34 = GUILayoutEntry_get_marginHorizontal_m1FB1B936E7C702BAD92FE4CA1EEC529A2BECCEC4(L_33, /*hidden argument*/NULL);
float L_35 = __this->get_m_ChildMinWidth_23();
IL2CPP_RUNTIME_CLASS_INIT(Mathf_tFBDE6467D269BFE410605C7D806FD9991D4A89CB_il2cpp_TypeInfo_var);
float L_36 = Mathf_Max_m670AE0EC1B09ED1A56FF9606B0F954670319CB65(((float)il2cpp_codegen_add((float)L_32, (float)(((float)((float)L_34))))), L_35, /*hidden argument*/NULL);
__this->set_m_ChildMinWidth_23(L_36);
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_37 = V_9;
NullCheck(L_37);
float L_38 = L_37->get_maxWidth_1();
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_39 = V_9;
NullCheck(L_39);
int32_t L_40 = GUILayoutEntry_get_marginHorizontal_m1FB1B936E7C702BAD92FE4CA1EEC529A2BECCEC4(L_39, /*hidden argument*/NULL);
float L_41 = __this->get_m_ChildMaxWidth_24();
float L_42 = Mathf_Max_m670AE0EC1B09ED1A56FF9606B0F954670319CB65(((float)il2cpp_codegen_add((float)L_38, (float)(((float)((float)L_40))))), L_41, /*hidden argument*/NULL);
__this->set_m_ChildMaxWidth_24(L_42);
}
IL_0127:
{
int32_t L_43 = __this->get_m_StretchableCountX_19();
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_44 = V_9;
NullCheck(L_44);
int32_t L_45 = L_44->get_stretchWidth_5();
__this->set_m_StretchableCountX_19(((int32_t)il2cpp_codegen_add((int32_t)L_43, (int32_t)L_45)));
}
IL_013c:
{
bool L_46 = Enumerator_MoveNext_m3A0A0A98E9378A32A74EC51C4CAB6C564001CAC7((Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 *)(&V_8), /*hidden argument*/Enumerator_MoveNext_m3A0A0A98E9378A32A74EC51C4CAB6C564001CAC7_RuntimeMethod_var);
if (L_46)
{
goto IL_0083;
}
}
IL_0148:
{
IL2CPP_LEAVE(0x159, FINALLY_014a);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_014a;
}
FINALLY_014a:
{ // begin finally (depth: 1)
Enumerator_Dispose_mB540C90AE8EBE0EB3D63A6ACE5EC863FAD1419B2((Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 *)(&V_8), /*hidden argument*/Enumerator_Dispose_mB540C90AE8EBE0EB3D63A6ACE5EC863FAD1419B2_RuntimeMethod_var);
IL2CPP_END_FINALLY(330)
} // end finally (depth: 1)
IL2CPP_CLEANUP(330)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x159, IL_0159)
}
IL_0159:
{
float L_47 = __this->get_m_ChildMinWidth_23();
int32_t L_48 = V_0;
int32_t L_49 = V_1;
__this->set_m_ChildMinWidth_23(((float)il2cpp_codegen_subtract((float)L_47, (float)(((float)((float)((int32_t)il2cpp_codegen_add((int32_t)L_48, (int32_t)L_49))))))));
float L_50 = __this->get_m_ChildMaxWidth_24();
int32_t L_51 = V_0;
int32_t L_52 = V_1;
__this->set_m_ChildMaxWidth_24(((float)il2cpp_codegen_subtract((float)L_50, (float)(((float)((float)((int32_t)il2cpp_codegen_add((int32_t)L_51, (int32_t)L_52))))))));
goto IL_02fa;
}
IL_0181:
{
V_12 = 0;
List_1_t046427F3923444CF746C550FD96A3D0E4189D273 * L_53 = __this->get_entries_11();
NullCheck(L_53);
Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 L_54 = List_1_GetEnumerator_mA457B3CB61E2B7BAFB0F7D0ADEFD25237B4429DF(L_53, /*hidden argument*/List_1_GetEnumerator_mA457B3CB61E2B7BAFB0F7D0ADEFD25237B4429DF_RuntimeMethod_var);
V_13 = L_54;
}
IL_0193:
try
{ // begin try (depth: 1)
{
goto IL_0283;
}
IL_0198:
{
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_55 = Enumerator_get_Current_m9422C22943D0E9900CDB7DF407D9EBE215B2A6B6_inline((Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 *)(&V_13), /*hidden argument*/Enumerator_get_Current_m9422C22943D0E9900CDB7DF407D9EBE215B2A6B6_RuntimeMethod_var);
V_14 = L_55;
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_56 = V_14;
NullCheck(L_56);
VirtActionInvoker0::Invoke(8 /* System.Void UnityEngine.GUILayoutEntry::CalcWidth() */, L_56);
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_57 = V_14;
NullCheck(L_57);
bool L_58 = L_57->get_consideredForMargin_7();
V_16 = L_58;
bool L_59 = V_16;
if (!L_59)
{
goto IL_0244;
}
}
IL_01ba:
{
bool L_60 = V_2;
V_17 = (bool)((((int32_t)L_60) == ((int32_t)0))? 1 : 0);
bool L_61 = V_17;
if (!L_61)
{
goto IL_01df;
}
}
IL_01c5:
{
int32_t L_62 = V_12;
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_63 = V_14;
NullCheck(L_63);
int32_t L_64 = VirtFuncInvoker0< int32_t >::Invoke(4 /* System.Int32 UnityEngine.GUILayoutEntry::get_marginLeft() */, L_63);
if ((((int32_t)L_62) > ((int32_t)L_64)))
{
goto IL_01d9;
}
}
IL_01d0:
{
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_65 = V_14;
NullCheck(L_65);
int32_t L_66 = VirtFuncInvoker0< int32_t >::Invoke(4 /* System.Int32 UnityEngine.GUILayoutEntry::get_marginLeft() */, L_65);
G_B22_0 = L_66;
goto IL_01db;
}
IL_01d9:
{
int32_t L_67 = V_12;
G_B22_0 = L_67;
}
IL_01db:
{
V_15 = G_B22_0;
goto IL_01e6;
}
IL_01df:
{
V_15 = 0;
V_2 = (bool)0;
}
IL_01e6:
{
float L_68 = __this->get_m_ChildMinWidth_23();
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_69 = V_14;
NullCheck(L_69);
float L_70 = L_69->get_minWidth_0();
float L_71 = __this->get_spacing_14();
int32_t L_72 = V_15;
__this->set_m_ChildMinWidth_23(((float)il2cpp_codegen_add((float)L_68, (float)((float)il2cpp_codegen_add((float)((float)il2cpp_codegen_add((float)L_70, (float)L_71)), (float)(((float)((float)L_72))))))));
float L_73 = __this->get_m_ChildMaxWidth_24();
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_74 = V_14;
NullCheck(L_74);
float L_75 = L_74->get_maxWidth_1();
float L_76 = __this->get_spacing_14();
int32_t L_77 = V_15;
__this->set_m_ChildMaxWidth_24(((float)il2cpp_codegen_add((float)L_73, (float)((float)il2cpp_codegen_add((float)((float)il2cpp_codegen_add((float)L_75, (float)L_76)), (float)(((float)((float)L_77))))))));
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_78 = V_14;
NullCheck(L_78);
int32_t L_79 = VirtFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 UnityEngine.GUILayoutEntry::get_marginRight() */, L_78);
V_12 = L_79;
int32_t L_80 = __this->get_m_StretchableCountX_19();
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_81 = V_14;
NullCheck(L_81);
int32_t L_82 = L_81->get_stretchWidth_5();
__this->set_m_StretchableCountX_19(((int32_t)il2cpp_codegen_add((int32_t)L_80, (int32_t)L_82)));
goto IL_0282;
}
IL_0244:
{
float L_83 = __this->get_m_ChildMinWidth_23();
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_84 = V_14;
NullCheck(L_84);
float L_85 = L_84->get_minWidth_0();
__this->set_m_ChildMinWidth_23(((float)il2cpp_codegen_add((float)L_83, (float)L_85)));
float L_86 = __this->get_m_ChildMaxWidth_24();
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_87 = V_14;
NullCheck(L_87);
float L_88 = L_87->get_maxWidth_1();
__this->set_m_ChildMaxWidth_24(((float)il2cpp_codegen_add((float)L_86, (float)L_88)));
int32_t L_89 = __this->get_m_StretchableCountX_19();
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_90 = V_14;
NullCheck(L_90);
int32_t L_91 = L_90->get_stretchWidth_5();
__this->set_m_StretchableCountX_19(((int32_t)il2cpp_codegen_add((int32_t)L_89, (int32_t)L_91)));
}
IL_0282:
{
}
IL_0283:
{
bool L_92 = Enumerator_MoveNext_m3A0A0A98E9378A32A74EC51C4CAB6C564001CAC7((Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 *)(&V_13), /*hidden argument*/Enumerator_MoveNext_m3A0A0A98E9378A32A74EC51C4CAB6C564001CAC7_RuntimeMethod_var);
if (L_92)
{
goto IL_0198;
}
}
IL_028f:
{
IL2CPP_LEAVE(0x2A0, FINALLY_0291);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0291;
}
FINALLY_0291:
{ // begin finally (depth: 1)
Enumerator_Dispose_mB540C90AE8EBE0EB3D63A6ACE5EC863FAD1419B2((Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 *)(&V_13), /*hidden argument*/Enumerator_Dispose_mB540C90AE8EBE0EB3D63A6ACE5EC863FAD1419B2_RuntimeMethod_var);
IL2CPP_END_FINALLY(657)
} // end finally (depth: 1)
IL2CPP_CLEANUP(657)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x2A0, IL_02a0)
}
IL_02a0:
{
float L_93 = __this->get_m_ChildMinWidth_23();
float L_94 = __this->get_spacing_14();
__this->set_m_ChildMinWidth_23(((float)il2cpp_codegen_subtract((float)L_93, (float)L_94)));
float L_95 = __this->get_m_ChildMaxWidth_24();
float L_96 = __this->get_spacing_14();
__this->set_m_ChildMaxWidth_24(((float)il2cpp_codegen_subtract((float)L_95, (float)L_96)));
List_1_t046427F3923444CF746C550FD96A3D0E4189D273 * L_97 = __this->get_entries_11();
NullCheck(L_97);
int32_t L_98 = List_1_get_Count_m2995506A297520F84CBD9AD421D8672D5755E115_inline(L_97, /*hidden argument*/List_1_get_Count_m2995506A297520F84CBD9AD421D8672D5755E115_RuntimeMethod_var);
V_18 = (bool)((!(((uint32_t)L_98) <= ((uint32_t)0)))? 1 : 0);
bool L_99 = V_18;
if (!L_99)
{
goto IL_02f3;
}
}
{
List_1_t046427F3923444CF746C550FD96A3D0E4189D273 * L_100 = __this->get_entries_11();
NullCheck(L_100);
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_101 = List_1_get_Item_m96FCB482CBADC5AD4AD5F01B7A0B822AF619D388_inline(L_100, 0, /*hidden argument*/List_1_get_Item_m96FCB482CBADC5AD4AD5F01B7A0B822AF619D388_RuntimeMethod_var);
NullCheck(L_101);
int32_t L_102 = VirtFuncInvoker0< int32_t >::Invoke(4 /* System.Int32 UnityEngine.GUILayoutEntry::get_marginLeft() */, L_101);
V_0 = L_102;
int32_t L_103 = V_12;
V_1 = L_103;
goto IL_02f9;
}
IL_02f3:
{
int32_t L_104 = 0;
V_1 = L_104;
V_0 = L_104;
}
IL_02f9:
{
}
IL_02fa:
{
V_3 = (0.0f);
V_4 = (0.0f);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_105 = GUILayoutEntry_get_style_m70E386A3289ACFEC515B1358827AB2FBF6314BA4(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(GUIStyle_t671F175A201A19166385EE3392292A5F50070572_il2cpp_TypeInfo_var);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_106 = GUIStyle_get_none_m2B48FA4E2FA2B9BB7A458DF25B1391F9C7BB8B7B(/*hidden argument*/NULL);
if ((!(((RuntimeObject*)(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)L_105) == ((RuntimeObject*)(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)L_106))))
{
goto IL_031c;
}
}
{
bool L_107 = __this->get_m_UserSpecifiedWidth_21();
G_B37_0 = ((int32_t)(L_107));
goto IL_031d;
}
IL_031c:
{
G_B37_0 = 1;
}
IL_031d:
{
V_19 = (bool)G_B37_0;
bool L_108 = V_19;
if (!L_108)
{
goto IL_0358;
}
}
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_109 = GUILayoutEntry_get_style_m70E386A3289ACFEC515B1358827AB2FBF6314BA4(__this, /*hidden argument*/NULL);
NullCheck(L_109);
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * L_110 = GUIStyle_get_padding_m5DF76AA03A313366D0DD8D577731DAC4FB83053A(L_109, /*hidden argument*/NULL);
NullCheck(L_110);
int32_t L_111 = RectOffset_get_left_mA86EC00866C1940134873E3A1565A1F700DE67AD(L_110, /*hidden argument*/NULL);
int32_t L_112 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Mathf_tFBDE6467D269BFE410605C7D806FD9991D4A89CB_il2cpp_TypeInfo_var);
int32_t L_113 = Mathf_Max_mBDE4C6F1883EE3215CD7AE62550B2AC90592BC3F(L_111, L_112, /*hidden argument*/NULL);
V_3 = (((float)((float)L_113)));
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_114 = GUILayoutEntry_get_style_m70E386A3289ACFEC515B1358827AB2FBF6314BA4(__this, /*hidden argument*/NULL);
NullCheck(L_114);
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * L_115 = GUIStyle_get_padding_m5DF76AA03A313366D0DD8D577731DAC4FB83053A(L_114, /*hidden argument*/NULL);
NullCheck(L_115);
int32_t L_116 = RectOffset_get_right_m9B05958C3C1B31F1FAB8675834A492C7208F6C96(L_115, /*hidden argument*/NULL);
int32_t L_117 = V_1;
int32_t L_118 = Mathf_Max_mBDE4C6F1883EE3215CD7AE62550B2AC90592BC3F(L_116, L_117, /*hidden argument*/NULL);
V_4 = (((float)((float)L_118)));
goto IL_0371;
}
IL_0358:
{
int32_t L_119 = V_0;
__this->set_m_MarginLeft_27(L_119);
int32_t L_120 = V_1;
__this->set_m_MarginRight_28(L_120);
float L_121 = (0.0f);
V_4 = L_121;
V_3 = L_121;
}
IL_0371:
{
float L_122 = ((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->get_minWidth_0();
float L_123 = __this->get_m_ChildMinWidth_23();
float L_124 = V_3;
float L_125 = V_4;
IL2CPP_RUNTIME_CLASS_INIT(Mathf_tFBDE6467D269BFE410605C7D806FD9991D4A89CB_il2cpp_TypeInfo_var);
float L_126 = Mathf_Max_m670AE0EC1B09ED1A56FF9606B0F954670319CB65(L_122, ((float)il2cpp_codegen_add((float)((float)il2cpp_codegen_add((float)L_123, (float)L_124)), (float)L_125)), /*hidden argument*/NULL);
((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->set_minWidth_0(L_126);
float L_127 = ((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->get_maxWidth_1();
V_20 = (bool)((((float)L_127) == ((float)(0.0f)))? 1 : 0);
bool L_128 = V_20;
if (!L_128)
{
goto IL_03da;
}
}
{
int32_t L_129 = ((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->get_stretchWidth_5();
int32_t L_130 = __this->get_m_StretchableCountX_19();
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_131 = GUILayoutEntry_get_style_m70E386A3289ACFEC515B1358827AB2FBF6314BA4(__this, /*hidden argument*/NULL);
NullCheck(L_131);
bool L_132 = GUIStyle_get_stretchWidth_m4513B313AABE48E1D10424844DC186405BC8A677(L_131, /*hidden argument*/NULL);
G_B42_0 = L_130;
G_B42_1 = L_129;
G_B42_2 = __this;
if (L_132)
{
G_B43_0 = L_130;
G_B43_1 = L_129;
G_B43_2 = __this;
goto IL_03be;
}
}
{
G_B44_0 = 0;
G_B44_1 = G_B42_0;
G_B44_2 = G_B42_1;
G_B44_3 = G_B42_2;
goto IL_03bf;
}
IL_03be:
{
G_B44_0 = 1;
G_B44_1 = G_B43_0;
G_B44_2 = G_B43_1;
G_B44_3 = G_B43_2;
}
IL_03bf:
{
NullCheck(G_B44_3);
((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)G_B44_3)->set_stretchWidth_5(((int32_t)il2cpp_codegen_add((int32_t)G_B44_2, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)G_B44_1, (int32_t)G_B44_0)))));
float L_133 = __this->get_m_ChildMaxWidth_24();
float L_134 = V_3;
float L_135 = V_4;
((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->set_maxWidth_1(((float)il2cpp_codegen_add((float)((float)il2cpp_codegen_add((float)L_133, (float)L_134)), (float)L_135)));
goto IL_03e3;
}
IL_03da:
{
((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->set_stretchWidth_5(0);
}
IL_03e3:
{
float L_136 = ((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->get_maxWidth_1();
float L_137 = ((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->get_minWidth_0();
IL2CPP_RUNTIME_CLASS_INIT(Mathf_tFBDE6467D269BFE410605C7D806FD9991D4A89CB_il2cpp_TypeInfo_var);
float L_138 = Mathf_Max_m670AE0EC1B09ED1A56FF9606B0F954670319CB65(L_136, L_137, /*hidden argument*/NULL);
((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->set_maxWidth_1(L_138);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_139 = GUILayoutEntry_get_style_m70E386A3289ACFEC515B1358827AB2FBF6314BA4(__this, /*hidden argument*/NULL);
NullCheck(L_139);
float L_140 = GUIStyle_get_fixedWidth_mEACB70758F83DCD64CE363143849CC40E49B8D8D(L_139, /*hidden argument*/NULL);
V_21 = (bool)((((int32_t)((((float)L_140) == ((float)(0.0f)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_141 = V_21;
if (!L_141)
{
goto IL_043a;
}
}
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_142 = GUILayoutEntry_get_style_m70E386A3289ACFEC515B1358827AB2FBF6314BA4(__this, /*hidden argument*/NULL);
NullCheck(L_142);
float L_143 = GUIStyle_get_fixedWidth_mEACB70758F83DCD64CE363143849CC40E49B8D8D(L_142, /*hidden argument*/NULL);
float L_144 = L_143;
V_6 = L_144;
((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->set_minWidth_0(L_144);
float L_145 = V_6;
((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->set_maxWidth_1(L_145);
((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->set_stretchWidth_5(0);
}
IL_043a:
{
return;
}
}
// System.Void UnityEngine.GUILayoutGroup::SetHorizontal(System.Single,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUILayoutGroup_SetHorizontal_m0AFB617E7BB6B32431BA65873B27660E6E5C9E51 (GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * __this, float ___x0, float ___width1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUILayoutGroup_SetHorizontal_m0AFB617E7BB6B32431BA65873B27660E6E5C9E51_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * V_0 = NULL;
bool V_1 = false;
bool V_2 = false;
bool V_3 = false;
Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 V_4;
memset((&V_4), 0, sizeof(V_4));
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * V_5 = NULL;
float V_6 = 0.0f;
float V_7 = 0.0f;
float V_8 = 0.0f;
bool V_9 = false;
float V_10 = 0.0f;
float V_11 = 0.0f;
Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 V_12;
memset((&V_12), 0, sizeof(V_12));
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * V_13 = NULL;
bool V_14 = false;
float V_15 = 0.0f;
float V_16 = 0.0f;
float V_17 = 0.0f;
int32_t V_18 = 0;
bool V_19 = false;
bool V_20 = false;
float V_21 = 0.0f;
float V_22 = 0.0f;
bool V_23 = false;
bool V_24 = false;
bool V_25 = false;
bool V_26 = false;
Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 V_27;
memset((&V_27), 0, sizeof(V_27));
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * V_28 = NULL;
float V_29 = 0.0f;
bool V_30 = false;
int32_t V_31 = 0;
int32_t V_32 = 0;
bool V_33 = false;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 3);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
int32_t G_B43_0 = 0;
{
float L_0 = ___x0;
float L_1 = ___width1;
GUILayoutEntry_SetHorizontal_m46A5D9344EE72AF9AA7D07C77C30745F9FE97DE8(__this, L_0, L_1, /*hidden argument*/NULL);
bool L_2 = __this->get_resetCoords_13();
V_1 = L_2;
bool L_3 = V_1;
if (!L_3)
{
goto IL_001b;
}
}
{
___x0 = (0.0f);
}
IL_001b:
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_4 = GUILayoutEntry_get_style_m70E386A3289ACFEC515B1358827AB2FBF6314BA4(__this, /*hidden argument*/NULL);
NullCheck(L_4);
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * L_5 = GUIStyle_get_padding_m5DF76AA03A313366D0DD8D577731DAC4FB83053A(L_4, /*hidden argument*/NULL);
V_0 = L_5;
bool L_6 = __this->get_isVertical_12();
V_2 = L_6;
bool L_7 = V_2;
if (!L_7)
{
goto IL_01b3;
}
}
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_8 = GUILayoutEntry_get_style_m70E386A3289ACFEC515B1358827AB2FBF6314BA4(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(GUIStyle_t671F175A201A19166385EE3392292A5F50070572_il2cpp_TypeInfo_var);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_9 = GUIStyle_get_none_m2B48FA4E2FA2B9BB7A458DF25B1391F9C7BB8B7B(/*hidden argument*/NULL);
V_3 = (bool)((((int32_t)((((RuntimeObject*)(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)L_8) == ((RuntimeObject*)(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)L_9))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_10 = V_3;
if (!L_10)
{
goto IL_00fd;
}
}
{
List_1_t046427F3923444CF746C550FD96A3D0E4189D273 * L_11 = __this->get_entries_11();
NullCheck(L_11);
Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 L_12 = List_1_GetEnumerator_mA457B3CB61E2B7BAFB0F7D0ADEFD25237B4429DF(L_11, /*hidden argument*/List_1_GetEnumerator_mA457B3CB61E2B7BAFB0F7D0ADEFD25237B4429DF_RuntimeMethod_var);
V_4 = L_12;
}
IL_005b:
try
{ // begin try (depth: 1)
{
goto IL_00da;
}
IL_005d:
{
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_13 = Enumerator_get_Current_m9422C22943D0E9900CDB7DF407D9EBE215B2A6B6_inline((Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 *)(&V_4), /*hidden argument*/Enumerator_get_Current_m9422C22943D0E9900CDB7DF407D9EBE215B2A6B6_RuntimeMethod_var);
V_5 = L_13;
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_14 = V_5;
NullCheck(L_14);
int32_t L_15 = VirtFuncInvoker0< int32_t >::Invoke(4 /* System.Int32 UnityEngine.GUILayoutEntry::get_marginLeft() */, L_14);
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * L_16 = V_0;
NullCheck(L_16);
int32_t L_17 = RectOffset_get_left_mA86EC00866C1940134873E3A1565A1F700DE67AD(L_16, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Mathf_tFBDE6467D269BFE410605C7D806FD9991D4A89CB_il2cpp_TypeInfo_var);
int32_t L_18 = Mathf_Max_mBDE4C6F1883EE3215CD7AE62550B2AC90592BC3F(L_15, L_17, /*hidden argument*/NULL);
V_6 = (((float)((float)L_18)));
float L_19 = ___x0;
float L_20 = V_6;
V_7 = ((float)il2cpp_codegen_add((float)L_19, (float)L_20));
float L_21 = ___width1;
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_22 = V_5;
NullCheck(L_22);
int32_t L_23 = VirtFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 UnityEngine.GUILayoutEntry::get_marginRight() */, L_22);
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * L_24 = V_0;
NullCheck(L_24);
int32_t L_25 = RectOffset_get_right_m9B05958C3C1B31F1FAB8675834A492C7208F6C96(L_24, /*hidden argument*/NULL);
int32_t L_26 = Mathf_Max_mBDE4C6F1883EE3215CD7AE62550B2AC90592BC3F(L_23, L_25, /*hidden argument*/NULL);
float L_27 = V_6;
V_8 = ((float)il2cpp_codegen_subtract((float)((float)il2cpp_codegen_subtract((float)L_21, (float)(((float)((float)L_26))))), (float)L_27));
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_28 = V_5;
NullCheck(L_28);
int32_t L_29 = L_28->get_stretchWidth_5();
V_9 = (bool)((!(((uint32_t)L_29) <= ((uint32_t)0)))? 1 : 0);
bool L_30 = V_9;
if (!L_30)
{
goto IL_00ba;
}
}
IL_00ac:
{
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_31 = V_5;
float L_32 = V_7;
float L_33 = V_8;
NullCheck(L_31);
VirtActionInvoker2< float, float >::Invoke(10 /* System.Void UnityEngine.GUILayoutEntry::SetHorizontal(System.Single,System.Single) */, L_31, L_32, L_33);
goto IL_00d9;
}
IL_00ba:
{
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_34 = V_5;
float L_35 = V_7;
float L_36 = V_8;
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_37 = V_5;
NullCheck(L_37);
float L_38 = L_37->get_minWidth_0();
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_39 = V_5;
NullCheck(L_39);
float L_40 = L_39->get_maxWidth_1();
IL2CPP_RUNTIME_CLASS_INIT(Mathf_tFBDE6467D269BFE410605C7D806FD9991D4A89CB_il2cpp_TypeInfo_var);
float L_41 = Mathf_Clamp_m033DD894F89E6DCCDAFC580091053059C86A4507(L_36, L_38, L_40, /*hidden argument*/NULL);
NullCheck(L_34);
VirtActionInvoker2< float, float >::Invoke(10 /* System.Void UnityEngine.GUILayoutEntry::SetHorizontal(System.Single,System.Single) */, L_34, L_35, L_41);
}
IL_00d9:
{
}
IL_00da:
{
bool L_42 = Enumerator_MoveNext_m3A0A0A98E9378A32A74EC51C4CAB6C564001CAC7((Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 *)(&V_4), /*hidden argument*/Enumerator_MoveNext_m3A0A0A98E9378A32A74EC51C4CAB6C564001CAC7_RuntimeMethod_var);
if (L_42)
{
goto IL_005d;
}
}
IL_00e6:
{
IL2CPP_LEAVE(0xF7, FINALLY_00e8);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_00e8;
}
FINALLY_00e8:
{ // begin finally (depth: 1)
Enumerator_Dispose_mB540C90AE8EBE0EB3D63A6ACE5EC863FAD1419B2((Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 *)(&V_4), /*hidden argument*/Enumerator_Dispose_mB540C90AE8EBE0EB3D63A6ACE5EC863FAD1419B2_RuntimeMethod_var);
IL2CPP_END_FINALLY(232)
} // end finally (depth: 1)
IL2CPP_CLEANUP(232)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0xF7, IL_00f7)
}
IL_00f7:
{
goto IL_01ad;
}
IL_00fd:
{
float L_43 = ___x0;
int32_t L_44 = VirtFuncInvoker0< int32_t >::Invoke(4 /* System.Int32 UnityEngine.GUILayoutEntry::get_marginLeft() */, __this);
V_10 = ((float)il2cpp_codegen_subtract((float)L_43, (float)(((float)((float)L_44)))));
float L_45 = ___width1;
int32_t L_46 = GUILayoutEntry_get_marginHorizontal_m1FB1B936E7C702BAD92FE4CA1EEC529A2BECCEC4(__this, /*hidden argument*/NULL);
V_11 = ((float)il2cpp_codegen_add((float)L_45, (float)(((float)((float)L_46)))));
List_1_t046427F3923444CF746C550FD96A3D0E4189D273 * L_47 = __this->get_entries_11();
NullCheck(L_47);
Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 L_48 = List_1_GetEnumerator_mA457B3CB61E2B7BAFB0F7D0ADEFD25237B4429DF(L_47, /*hidden argument*/List_1_GetEnumerator_mA457B3CB61E2B7BAFB0F7D0ADEFD25237B4429DF_RuntimeMethod_var);
V_12 = L_48;
}
IL_0122:
try
{ // begin try (depth: 1)
{
goto IL_0192;
}
IL_0124:
{
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_49 = Enumerator_get_Current_m9422C22943D0E9900CDB7DF407D9EBE215B2A6B6_inline((Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 *)(&V_12), /*hidden argument*/Enumerator_get_Current_m9422C22943D0E9900CDB7DF407D9EBE215B2A6B6_RuntimeMethod_var);
V_13 = L_49;
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_50 = V_13;
NullCheck(L_50);
int32_t L_51 = L_50->get_stretchWidth_5();
V_14 = (bool)((!(((uint32_t)L_51) <= ((uint32_t)0)))? 1 : 0);
bool L_52 = V_14;
if (!L_52)
{
goto IL_0160;
}
}
IL_013e:
{
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_53 = V_13;
float L_54 = V_10;
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_55 = V_13;
NullCheck(L_55);
int32_t L_56 = VirtFuncInvoker0< int32_t >::Invoke(4 /* System.Int32 UnityEngine.GUILayoutEntry::get_marginLeft() */, L_55);
float L_57 = V_11;
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_58 = V_13;
NullCheck(L_58);
int32_t L_59 = GUILayoutEntry_get_marginHorizontal_m1FB1B936E7C702BAD92FE4CA1EEC529A2BECCEC4(L_58, /*hidden argument*/NULL);
NullCheck(L_53);
VirtActionInvoker2< float, float >::Invoke(10 /* System.Void UnityEngine.GUILayoutEntry::SetHorizontal(System.Single,System.Single) */, L_53, ((float)il2cpp_codegen_add((float)L_54, (float)(((float)((float)L_56))))), ((float)il2cpp_codegen_subtract((float)L_57, (float)(((float)((float)L_59))))));
goto IL_0191;
}
IL_0160:
{
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_60 = V_13;
float L_61 = V_10;
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_62 = V_13;
NullCheck(L_62);
int32_t L_63 = VirtFuncInvoker0< int32_t >::Invoke(4 /* System.Int32 UnityEngine.GUILayoutEntry::get_marginLeft() */, L_62);
float L_64 = V_11;
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_65 = V_13;
NullCheck(L_65);
int32_t L_66 = GUILayoutEntry_get_marginHorizontal_m1FB1B936E7C702BAD92FE4CA1EEC529A2BECCEC4(L_65, /*hidden argument*/NULL);
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_67 = V_13;
NullCheck(L_67);
float L_68 = L_67->get_minWidth_0();
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_69 = V_13;
NullCheck(L_69);
float L_70 = L_69->get_maxWidth_1();
IL2CPP_RUNTIME_CLASS_INIT(Mathf_tFBDE6467D269BFE410605C7D806FD9991D4A89CB_il2cpp_TypeInfo_var);
float L_71 = Mathf_Clamp_m033DD894F89E6DCCDAFC580091053059C86A4507(((float)il2cpp_codegen_subtract((float)L_64, (float)(((float)((float)L_66))))), L_68, L_70, /*hidden argument*/NULL);
NullCheck(L_60);
VirtActionInvoker2< float, float >::Invoke(10 /* System.Void UnityEngine.GUILayoutEntry::SetHorizontal(System.Single,System.Single) */, L_60, ((float)il2cpp_codegen_add((float)L_61, (float)(((float)((float)L_63))))), L_71);
}
IL_0191:
{
}
IL_0192:
{
bool L_72 = Enumerator_MoveNext_m3A0A0A98E9378A32A74EC51C4CAB6C564001CAC7((Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 *)(&V_12), /*hidden argument*/Enumerator_MoveNext_m3A0A0A98E9378A32A74EC51C4CAB6C564001CAC7_RuntimeMethod_var);
if (L_72)
{
goto IL_0124;
}
}
IL_019b:
{
IL2CPP_LEAVE(0x1AC, FINALLY_019d);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_019d;
}
FINALLY_019d:
{ // begin finally (depth: 1)
Enumerator_Dispose_mB540C90AE8EBE0EB3D63A6ACE5EC863FAD1419B2((Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 *)(&V_12), /*hidden argument*/Enumerator_Dispose_mB540C90AE8EBE0EB3D63A6ACE5EC863FAD1419B2_RuntimeMethod_var);
IL2CPP_END_FINALLY(413)
} // end finally (depth: 1)
IL2CPP_CLEANUP(413)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x1AC, IL_01ac)
}
IL_01ac:
{
}
IL_01ad:
{
goto IL_03b2;
}
IL_01b3:
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_73 = GUILayoutEntry_get_style_m70E386A3289ACFEC515B1358827AB2FBF6314BA4(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(GUIStyle_t671F175A201A19166385EE3392292A5F50070572_il2cpp_TypeInfo_var);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_74 = GUIStyle_get_none_m2B48FA4E2FA2B9BB7A458DF25B1391F9C7BB8B7B(/*hidden argument*/NULL);
V_20 = (bool)((((int32_t)((((RuntimeObject*)(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)L_73) == ((RuntimeObject*)(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)L_74))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_75 = V_20;
if (!L_75)
{
goto IL_0245;
}
}
{
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * L_76 = V_0;
NullCheck(L_76);
int32_t L_77 = RectOffset_get_left_mA86EC00866C1940134873E3A1565A1F700DE67AD(L_76, /*hidden argument*/NULL);
V_21 = (((float)((float)L_77)));
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * L_78 = V_0;
NullCheck(L_78);
int32_t L_79 = RectOffset_get_right_m9B05958C3C1B31F1FAB8675834A492C7208F6C96(L_78, /*hidden argument*/NULL);
V_22 = (((float)((float)L_79)));
List_1_t046427F3923444CF746C550FD96A3D0E4189D273 * L_80 = __this->get_entries_11();
NullCheck(L_80);
int32_t L_81 = List_1_get_Count_m2995506A297520F84CBD9AD421D8672D5755E115_inline(L_80, /*hidden argument*/List_1_get_Count_m2995506A297520F84CBD9AD421D8672D5755E115_RuntimeMethod_var);
V_23 = (bool)((!(((uint32_t)L_81) <= ((uint32_t)0)))? 1 : 0);
bool L_82 = V_23;
if (!L_82)
{
goto IL_0235;
}
}
{
float L_83 = V_21;
List_1_t046427F3923444CF746C550FD96A3D0E4189D273 * L_84 = __this->get_entries_11();
NullCheck(L_84);
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_85 = List_1_get_Item_m96FCB482CBADC5AD4AD5F01B7A0B822AF619D388_inline(L_84, 0, /*hidden argument*/List_1_get_Item_m96FCB482CBADC5AD4AD5F01B7A0B822AF619D388_RuntimeMethod_var);
NullCheck(L_85);
int32_t L_86 = VirtFuncInvoker0< int32_t >::Invoke(4 /* System.Int32 UnityEngine.GUILayoutEntry::get_marginLeft() */, L_85);
IL2CPP_RUNTIME_CLASS_INIT(Mathf_tFBDE6467D269BFE410605C7D806FD9991D4A89CB_il2cpp_TypeInfo_var);
float L_87 = Mathf_Max_m670AE0EC1B09ED1A56FF9606B0F954670319CB65(L_83, (((float)((float)L_86))), /*hidden argument*/NULL);
V_21 = L_87;
float L_88 = V_22;
List_1_t046427F3923444CF746C550FD96A3D0E4189D273 * L_89 = __this->get_entries_11();
List_1_t046427F3923444CF746C550FD96A3D0E4189D273 * L_90 = __this->get_entries_11();
NullCheck(L_90);
int32_t L_91 = List_1_get_Count_m2995506A297520F84CBD9AD421D8672D5755E115_inline(L_90, /*hidden argument*/List_1_get_Count_m2995506A297520F84CBD9AD421D8672D5755E115_RuntimeMethod_var);
NullCheck(L_89);
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_92 = List_1_get_Item_m96FCB482CBADC5AD4AD5F01B7A0B822AF619D388_inline(L_89, ((int32_t)il2cpp_codegen_subtract((int32_t)L_91, (int32_t)1)), /*hidden argument*/List_1_get_Item_m96FCB482CBADC5AD4AD5F01B7A0B822AF619D388_RuntimeMethod_var);
NullCheck(L_92);
int32_t L_93 = VirtFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 UnityEngine.GUILayoutEntry::get_marginRight() */, L_92);
float L_94 = Mathf_Max_m670AE0EC1B09ED1A56FF9606B0F954670319CB65(L_88, (((float)((float)L_93))), /*hidden argument*/NULL);
V_22 = L_94;
}
IL_0235:
{
float L_95 = ___x0;
float L_96 = V_21;
___x0 = ((float)il2cpp_codegen_add((float)L_95, (float)L_96));
float L_97 = ___width1;
float L_98 = V_22;
float L_99 = V_21;
___width1 = ((float)il2cpp_codegen_subtract((float)L_97, (float)((float)il2cpp_codegen_add((float)L_98, (float)L_99))));
}
IL_0245:
{
float L_100 = ___width1;
float L_101 = __this->get_spacing_14();
List_1_t046427F3923444CF746C550FD96A3D0E4189D273 * L_102 = __this->get_entries_11();
NullCheck(L_102);
int32_t L_103 = List_1_get_Count_m2995506A297520F84CBD9AD421D8672D5755E115_inline(L_102, /*hidden argument*/List_1_get_Count_m2995506A297520F84CBD9AD421D8672D5755E115_RuntimeMethod_var);
V_15 = ((float)il2cpp_codegen_subtract((float)L_100, (float)((float)il2cpp_codegen_multiply((float)L_101, (float)(((float)((float)((int32_t)il2cpp_codegen_subtract((int32_t)L_103, (int32_t)1)))))))));
V_16 = (0.0f);
float L_104 = __this->get_m_ChildMinWidth_23();
float L_105 = __this->get_m_ChildMaxWidth_24();
V_24 = (bool)((((int32_t)((((float)L_104) == ((float)L_105))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_106 = V_24;
if (!L_106)
{
goto IL_02a4;
}
}
{
float L_107 = V_15;
float L_108 = __this->get_m_ChildMinWidth_23();
float L_109 = __this->get_m_ChildMaxWidth_24();
float L_110 = __this->get_m_ChildMinWidth_23();
IL2CPP_RUNTIME_CLASS_INIT(Mathf_tFBDE6467D269BFE410605C7D806FD9991D4A89CB_il2cpp_TypeInfo_var);
float L_111 = Mathf_Clamp_m033DD894F89E6DCCDAFC580091053059C86A4507(((float)((float)((float)il2cpp_codegen_subtract((float)L_107, (float)L_108))/(float)((float)il2cpp_codegen_subtract((float)L_109, (float)L_110)))), (0.0f), (1.0f), /*hidden argument*/NULL);
V_16 = L_111;
}
IL_02a4:
{
V_17 = (0.0f);
float L_112 = V_15;
float L_113 = __this->get_m_ChildMaxWidth_24();
V_25 = (bool)((((float)L_112) > ((float)L_113))? 1 : 0);
bool L_114 = V_25;
if (!L_114)
{
goto IL_02e1;
}
}
{
int32_t L_115 = __this->get_m_StretchableCountX_19();
V_26 = (bool)((((int32_t)L_115) > ((int32_t)0))? 1 : 0);
bool L_116 = V_26;
if (!L_116)
{
goto IL_02e0;
}
}
{
float L_117 = V_15;
float L_118 = __this->get_m_ChildMaxWidth_24();
int32_t L_119 = __this->get_m_StretchableCountX_19();
V_17 = ((float)((float)((float)il2cpp_codegen_subtract((float)L_117, (float)L_118))/(float)(((float)((float)L_119)))));
}
IL_02e0:
{
}
IL_02e1:
{
V_18 = 0;
V_19 = (bool)1;
List_1_t046427F3923444CF746C550FD96A3D0E4189D273 * L_120 = __this->get_entries_11();
NullCheck(L_120);
Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 L_121 = List_1_GetEnumerator_mA457B3CB61E2B7BAFB0F7D0ADEFD25237B4429DF(L_120, /*hidden argument*/List_1_GetEnumerator_mA457B3CB61E2B7BAFB0F7D0ADEFD25237B4429DF_RuntimeMethod_var);
V_27 = L_121;
}
IL_02f5:
try
{ // begin try (depth: 1)
{
goto IL_0394;
}
IL_02fa:
{
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_122 = Enumerator_get_Current_m9422C22943D0E9900CDB7DF407D9EBE215B2A6B6_inline((Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 *)(&V_27), /*hidden argument*/Enumerator_get_Current_m9422C22943D0E9900CDB7DF407D9EBE215B2A6B6_RuntimeMethod_var);
V_28 = L_122;
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_123 = V_28;
NullCheck(L_123);
float L_124 = L_123->get_minWidth_0();
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_125 = V_28;
NullCheck(L_125);
float L_126 = L_125->get_maxWidth_1();
float L_127 = V_16;
IL2CPP_RUNTIME_CLASS_INIT(Mathf_tFBDE6467D269BFE410605C7D806FD9991D4A89CB_il2cpp_TypeInfo_var);
float L_128 = Mathf_Lerp_m9A74C5A0C37D0CDF45EE66E7774D12A9B93B1364(L_124, L_126, L_127, /*hidden argument*/NULL);
V_29 = L_128;
float L_129 = V_29;
float L_130 = V_17;
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_131 = V_28;
NullCheck(L_131);
int32_t L_132 = L_131->get_stretchWidth_5();
V_29 = ((float)il2cpp_codegen_add((float)L_129, (float)((float)il2cpp_codegen_multiply((float)L_130, (float)(((float)((float)L_132)))))));
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_133 = V_28;
NullCheck(L_133);
bool L_134 = L_133->get_consideredForMargin_7();
V_30 = L_134;
bool L_135 = V_30;
if (!L_135)
{
goto IL_0371;
}
}
IL_0338:
{
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_136 = V_28;
NullCheck(L_136);
int32_t L_137 = VirtFuncInvoker0< int32_t >::Invoke(4 /* System.Int32 UnityEngine.GUILayoutEntry::get_marginLeft() */, L_136);
V_31 = L_137;
bool L_138 = V_19;
V_33 = L_138;
bool L_139 = V_33;
if (!L_139)
{
goto IL_0352;
}
}
IL_034a:
{
V_31 = 0;
V_19 = (bool)0;
}
IL_0352:
{
int32_t L_140 = V_18;
int32_t L_141 = V_31;
if ((((int32_t)L_140) > ((int32_t)L_141)))
{
goto IL_035c;
}
}
IL_0358:
{
int32_t L_142 = V_31;
G_B43_0 = L_142;
goto IL_035e;
}
IL_035c:
{
int32_t L_143 = V_18;
G_B43_0 = L_143;
}
IL_035e:
{
V_32 = G_B43_0;
float L_144 = ___x0;
int32_t L_145 = V_32;
___x0 = ((float)il2cpp_codegen_add((float)L_144, (float)(((float)((float)L_145)))));
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_146 = V_28;
NullCheck(L_146);
int32_t L_147 = VirtFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 UnityEngine.GUILayoutEntry::get_marginRight() */, L_146);
V_18 = L_147;
}
IL_0371:
{
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_148 = V_28;
float L_149 = ___x0;
IL2CPP_RUNTIME_CLASS_INIT(Mathf_tFBDE6467D269BFE410605C7D806FD9991D4A89CB_il2cpp_TypeInfo_var);
float L_150 = bankers_roundf(L_149);
float L_151 = V_29;
float L_152 = bankers_roundf(L_151);
NullCheck(L_148);
VirtActionInvoker2< float, float >::Invoke(10 /* System.Void UnityEngine.GUILayoutEntry::SetHorizontal(System.Single,System.Single) */, L_148, L_150, L_152);
float L_153 = ___x0;
float L_154 = V_29;
float L_155 = __this->get_spacing_14();
___x0 = ((float)il2cpp_codegen_add((float)L_153, (float)((float)il2cpp_codegen_add((float)L_154, (float)L_155))));
}
IL_0394:
{
bool L_156 = Enumerator_MoveNext_m3A0A0A98E9378A32A74EC51C4CAB6C564001CAC7((Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 *)(&V_27), /*hidden argument*/Enumerator_MoveNext_m3A0A0A98E9378A32A74EC51C4CAB6C564001CAC7_RuntimeMethod_var);
if (L_156)
{
goto IL_02fa;
}
}
IL_03a0:
{
IL2CPP_LEAVE(0x3B1, FINALLY_03a2);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_03a2;
}
FINALLY_03a2:
{ // begin finally (depth: 1)
Enumerator_Dispose_mB540C90AE8EBE0EB3D63A6ACE5EC863FAD1419B2((Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 *)(&V_27), /*hidden argument*/Enumerator_Dispose_mB540C90AE8EBE0EB3D63A6ACE5EC863FAD1419B2_RuntimeMethod_var);
IL2CPP_END_FINALLY(930)
} // end finally (depth: 1)
IL2CPP_CLEANUP(930)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x3B1, IL_03b1)
}
IL_03b1:
{
}
IL_03b2:
{
return;
}
}
// System.Void UnityEngine.GUILayoutGroup::CalcHeight()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUILayoutGroup_CalcHeight_m0511BD2172BC13D54ABC8DB5887A91C17E9F21BB (GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUILayoutGroup_CalcHeight_m0511BD2172BC13D54ABC8DB5887A91C17E9F21BB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
float V_2 = 0.0f;
float V_3 = 0.0f;
bool V_4 = false;
float V_5 = 0.0f;
bool V_6 = false;
int32_t V_7 = 0;
bool V_8 = false;
Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 V_9;
memset((&V_9), 0, sizeof(V_9));
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * V_10 = NULL;
int32_t V_11 = 0;
bool V_12 = false;
bool V_13 = false;
bool V_14 = false;
bool V_15 = false;
Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 V_16;
memset((&V_16), 0, sizeof(V_16));
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * V_17 = NULL;
bool V_18 = false;
bool V_19 = false;
bool V_20 = false;
bool V_21 = false;
bool V_22 = false;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
int32_t G_B34_0 = 0;
int32_t G_B40_0 = 0;
int32_t G_B40_1 = 0;
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * G_B40_2 = NULL;
int32_t G_B39_0 = 0;
int32_t G_B39_1 = 0;
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * G_B39_2 = NULL;
int32_t G_B41_0 = 0;
int32_t G_B41_1 = 0;
int32_t G_B41_2 = 0;
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * G_B41_3 = NULL;
{
List_1_t046427F3923444CF746C550FD96A3D0E4189D273 * L_0 = __this->get_entries_11();
NullCheck(L_0);
int32_t L_1 = List_1_get_Count_m2995506A297520F84CBD9AD421D8672D5755E115_inline(L_0, /*hidden argument*/List_1_get_Count_m2995506A297520F84CBD9AD421D8672D5755E115_RuntimeMethod_var);
V_4 = (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0);
bool L_2 = V_4;
if (!L_2)
{
goto IL_003d;
}
}
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_3 = GUILayoutEntry_get_style_m70E386A3289ACFEC515B1358827AB2FBF6314BA4(__this, /*hidden argument*/NULL);
NullCheck(L_3);
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * L_4 = GUIStyle_get_padding_m5DF76AA03A313366D0DD8D577731DAC4FB83053A(L_3, /*hidden argument*/NULL);
NullCheck(L_4);
int32_t L_5 = RectOffset_get_vertical_m89ED337C8D303C8994B2B056C05368E4286CFC5E(L_4, /*hidden argument*/NULL);
float L_6 = (((float)((float)L_5)));
V_5 = L_6;
((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->set_minHeight_2(L_6);
float L_7 = V_5;
((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->set_maxHeight_3(L_7);
goto IL_03fe;
}
IL_003d:
{
V_0 = 0;
V_1 = 0;
__this->set_m_ChildMinHeight_25((0.0f));
__this->set_m_ChildMaxHeight_26((0.0f));
__this->set_m_StretchableCountY_20(0);
bool L_8 = __this->get_isVertical_12();
V_6 = L_8;
bool L_9 = V_6;
if (!L_9)
{
goto IL_01e8;
}
}
{
V_7 = 0;
V_8 = (bool)1;
List_1_t046427F3923444CF746C550FD96A3D0E4189D273 * L_10 = __this->get_entries_11();
NullCheck(L_10);
Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 L_11 = List_1_GetEnumerator_mA457B3CB61E2B7BAFB0F7D0ADEFD25237B4429DF(L_10, /*hidden argument*/List_1_GetEnumerator_mA457B3CB61E2B7BAFB0F7D0ADEFD25237B4429DF_RuntimeMethod_var);
V_9 = L_11;
}
IL_0082:
try
{ // begin try (depth: 1)
{
goto IL_016c;
}
IL_0087:
{
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_12 = Enumerator_get_Current_m9422C22943D0E9900CDB7DF407D9EBE215B2A6B6_inline((Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 *)(&V_9), /*hidden argument*/Enumerator_get_Current_m9422C22943D0E9900CDB7DF407D9EBE215B2A6B6_RuntimeMethod_var);
V_10 = L_12;
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_13 = V_10;
NullCheck(L_13);
VirtActionInvoker0::Invoke(9 /* System.Void UnityEngine.GUILayoutEntry::CalcHeight() */, L_13);
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_14 = V_10;
NullCheck(L_14);
bool L_15 = L_14->get_consideredForMargin_7();
V_12 = L_15;
bool L_16 = V_12;
if (!L_16)
{
goto IL_012d;
}
}
IL_00a9:
{
bool L_17 = V_8;
V_13 = (bool)((((int32_t)L_17) == ((int32_t)0))? 1 : 0);
bool L_18 = V_13;
if (!L_18)
{
goto IL_00c7;
}
}
IL_00b5:
{
int32_t L_19 = V_7;
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_20 = V_10;
NullCheck(L_20);
int32_t L_21 = VirtFuncInvoker0< int32_t >::Invoke(6 /* System.Int32 UnityEngine.GUILayoutEntry::get_marginTop() */, L_20);
IL2CPP_RUNTIME_CLASS_INIT(Mathf_tFBDE6467D269BFE410605C7D806FD9991D4A89CB_il2cpp_TypeInfo_var);
int32_t L_22 = Mathf_Max_mBDE4C6F1883EE3215CD7AE62550B2AC90592BC3F(L_19, L_21, /*hidden argument*/NULL);
V_11 = L_22;
goto IL_00cf;
}
IL_00c7:
{
V_11 = 0;
V_8 = (bool)0;
}
IL_00cf:
{
float L_23 = __this->get_m_ChildMinHeight_25();
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_24 = V_10;
NullCheck(L_24);
float L_25 = L_24->get_minHeight_2();
float L_26 = __this->get_spacing_14();
int32_t L_27 = V_11;
__this->set_m_ChildMinHeight_25(((float)il2cpp_codegen_add((float)L_23, (float)((float)il2cpp_codegen_add((float)((float)il2cpp_codegen_add((float)L_25, (float)L_26)), (float)(((float)((float)L_27))))))));
float L_28 = __this->get_m_ChildMaxHeight_26();
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_29 = V_10;
NullCheck(L_29);
float L_30 = L_29->get_maxHeight_3();
float L_31 = __this->get_spacing_14();
int32_t L_32 = V_11;
__this->set_m_ChildMaxHeight_26(((float)il2cpp_codegen_add((float)L_28, (float)((float)il2cpp_codegen_add((float)((float)il2cpp_codegen_add((float)L_30, (float)L_31)), (float)(((float)((float)L_32))))))));
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_33 = V_10;
NullCheck(L_33);
int32_t L_34 = VirtFuncInvoker0< int32_t >::Invoke(7 /* System.Int32 UnityEngine.GUILayoutEntry::get_marginBottom() */, L_33);
V_7 = L_34;
int32_t L_35 = __this->get_m_StretchableCountY_20();
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_36 = V_10;
NullCheck(L_36);
int32_t L_37 = L_36->get_stretchHeight_6();
__this->set_m_StretchableCountY_20(((int32_t)il2cpp_codegen_add((int32_t)L_35, (int32_t)L_37)));
goto IL_016b;
}
IL_012d:
{
float L_38 = __this->get_m_ChildMinHeight_25();
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_39 = V_10;
NullCheck(L_39);
float L_40 = L_39->get_minHeight_2();
__this->set_m_ChildMinHeight_25(((float)il2cpp_codegen_add((float)L_38, (float)L_40)));
float L_41 = __this->get_m_ChildMaxHeight_26();
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_42 = V_10;
NullCheck(L_42);
float L_43 = L_42->get_maxHeight_3();
__this->set_m_ChildMaxHeight_26(((float)il2cpp_codegen_add((float)L_41, (float)L_43)));
int32_t L_44 = __this->get_m_StretchableCountY_20();
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_45 = V_10;
NullCheck(L_45);
int32_t L_46 = L_45->get_stretchHeight_6();
__this->set_m_StretchableCountY_20(((int32_t)il2cpp_codegen_add((int32_t)L_44, (int32_t)L_46)));
}
IL_016b:
{
}
IL_016c:
{
bool L_47 = Enumerator_MoveNext_m3A0A0A98E9378A32A74EC51C4CAB6C564001CAC7((Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 *)(&V_9), /*hidden argument*/Enumerator_MoveNext_m3A0A0A98E9378A32A74EC51C4CAB6C564001CAC7_RuntimeMethod_var);
if (L_47)
{
goto IL_0087;
}
}
IL_0178:
{
IL2CPP_LEAVE(0x189, FINALLY_017a);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_017a;
}
FINALLY_017a:
{ // begin finally (depth: 1)
Enumerator_Dispose_mB540C90AE8EBE0EB3D63A6ACE5EC863FAD1419B2((Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 *)(&V_9), /*hidden argument*/Enumerator_Dispose_mB540C90AE8EBE0EB3D63A6ACE5EC863FAD1419B2_RuntimeMethod_var);
IL2CPP_END_FINALLY(378)
} // end finally (depth: 1)
IL2CPP_CLEANUP(378)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x189, IL_0189)
}
IL_0189:
{
float L_48 = __this->get_m_ChildMinHeight_25();
float L_49 = __this->get_spacing_14();
__this->set_m_ChildMinHeight_25(((float)il2cpp_codegen_subtract((float)L_48, (float)L_49)));
float L_50 = __this->get_m_ChildMaxHeight_26();
float L_51 = __this->get_spacing_14();
__this->set_m_ChildMaxHeight_26(((float)il2cpp_codegen_subtract((float)L_50, (float)L_51)));
List_1_t046427F3923444CF746C550FD96A3D0E4189D273 * L_52 = __this->get_entries_11();
NullCheck(L_52);
int32_t L_53 = List_1_get_Count_m2995506A297520F84CBD9AD421D8672D5755E115_inline(L_52, /*hidden argument*/List_1_get_Count_m2995506A297520F84CBD9AD421D8672D5755E115_RuntimeMethod_var);
V_14 = (bool)((!(((uint32_t)L_53) <= ((uint32_t)0)))? 1 : 0);
bool L_54 = V_14;
if (!L_54)
{
goto IL_01dc;
}
}
{
List_1_t046427F3923444CF746C550FD96A3D0E4189D273 * L_55 = __this->get_entries_11();
NullCheck(L_55);
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_56 = List_1_get_Item_m96FCB482CBADC5AD4AD5F01B7A0B822AF619D388_inline(L_55, 0, /*hidden argument*/List_1_get_Item_m96FCB482CBADC5AD4AD5F01B7A0B822AF619D388_RuntimeMethod_var);
NullCheck(L_56);
int32_t L_57 = VirtFuncInvoker0< int32_t >::Invoke(6 /* System.Int32 UnityEngine.GUILayoutEntry::get_marginTop() */, L_56);
V_0 = L_57;
int32_t L_58 = V_7;
V_1 = L_58;
goto IL_01e2;
}
IL_01dc:
{
int32_t L_59 = 0;
V_0 = L_59;
V_1 = L_59;
}
IL_01e2:
{
goto IL_02c3;
}
IL_01e8:
{
V_15 = (bool)1;
List_1_t046427F3923444CF746C550FD96A3D0E4189D273 * L_60 = __this->get_entries_11();
NullCheck(L_60);
Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 L_61 = List_1_GetEnumerator_mA457B3CB61E2B7BAFB0F7D0ADEFD25237B4429DF(L_60, /*hidden argument*/List_1_GetEnumerator_mA457B3CB61E2B7BAFB0F7D0ADEFD25237B4429DF_RuntimeMethod_var);
V_16 = L_61;
}
IL_01fa:
try
{ // begin try (depth: 1)
{
goto IL_02a5;
}
IL_01ff:
{
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_62 = Enumerator_get_Current_m9422C22943D0E9900CDB7DF407D9EBE215B2A6B6_inline((Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 *)(&V_16), /*hidden argument*/Enumerator_get_Current_m9422C22943D0E9900CDB7DF407D9EBE215B2A6B6_RuntimeMethod_var);
V_17 = L_62;
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_63 = V_17;
NullCheck(L_63);
VirtActionInvoker0::Invoke(9 /* System.Void UnityEngine.GUILayoutEntry::CalcHeight() */, L_63);
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_64 = V_17;
NullCheck(L_64);
bool L_65 = L_64->get_consideredForMargin_7();
V_18 = L_65;
bool L_66 = V_18;
if (!L_66)
{
goto IL_0290;
}
}
IL_021e:
{
bool L_67 = V_15;
V_19 = (bool)((((int32_t)L_67) == ((int32_t)0))? 1 : 0);
bool L_68 = V_19;
if (!L_68)
{
goto IL_024a;
}
}
IL_022a:
{
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_69 = V_17;
NullCheck(L_69);
int32_t L_70 = VirtFuncInvoker0< int32_t >::Invoke(6 /* System.Int32 UnityEngine.GUILayoutEntry::get_marginTop() */, L_69);
int32_t L_71 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Mathf_tFBDE6467D269BFE410605C7D806FD9991D4A89CB_il2cpp_TypeInfo_var);
int32_t L_72 = Mathf_Min_m1A2CC204E361AE13C329B6535165179798D3313A(L_70, L_71, /*hidden argument*/NULL);
V_0 = L_72;
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_73 = V_17;
NullCheck(L_73);
int32_t L_74 = VirtFuncInvoker0< int32_t >::Invoke(7 /* System.Int32 UnityEngine.GUILayoutEntry::get_marginBottom() */, L_73);
int32_t L_75 = V_1;
int32_t L_76 = Mathf_Min_m1A2CC204E361AE13C329B6535165179798D3313A(L_74, L_75, /*hidden argument*/NULL);
V_1 = L_76;
goto IL_025f;
}
IL_024a:
{
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_77 = V_17;
NullCheck(L_77);
int32_t L_78 = VirtFuncInvoker0< int32_t >::Invoke(6 /* System.Int32 UnityEngine.GUILayoutEntry::get_marginTop() */, L_77);
V_0 = L_78;
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_79 = V_17;
NullCheck(L_79);
int32_t L_80 = VirtFuncInvoker0< int32_t >::Invoke(7 /* System.Int32 UnityEngine.GUILayoutEntry::get_marginBottom() */, L_79);
V_1 = L_80;
V_15 = (bool)0;
}
IL_025f:
{
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_81 = V_17;
NullCheck(L_81);
float L_82 = L_81->get_minHeight_2();
float L_83 = __this->get_m_ChildMinHeight_25();
IL2CPP_RUNTIME_CLASS_INIT(Mathf_tFBDE6467D269BFE410605C7D806FD9991D4A89CB_il2cpp_TypeInfo_var);
float L_84 = Mathf_Max_m670AE0EC1B09ED1A56FF9606B0F954670319CB65(L_82, L_83, /*hidden argument*/NULL);
__this->set_m_ChildMinHeight_25(L_84);
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_85 = V_17;
NullCheck(L_85);
float L_86 = L_85->get_maxHeight_3();
float L_87 = __this->get_m_ChildMaxHeight_26();
float L_88 = Mathf_Max_m670AE0EC1B09ED1A56FF9606B0F954670319CB65(L_86, L_87, /*hidden argument*/NULL);
__this->set_m_ChildMaxHeight_26(L_88);
}
IL_0290:
{
int32_t L_89 = __this->get_m_StretchableCountY_20();
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_90 = V_17;
NullCheck(L_90);
int32_t L_91 = L_90->get_stretchHeight_6();
__this->set_m_StretchableCountY_20(((int32_t)il2cpp_codegen_add((int32_t)L_89, (int32_t)L_91)));
}
IL_02a5:
{
bool L_92 = Enumerator_MoveNext_m3A0A0A98E9378A32A74EC51C4CAB6C564001CAC7((Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 *)(&V_16), /*hidden argument*/Enumerator_MoveNext_m3A0A0A98E9378A32A74EC51C4CAB6C564001CAC7_RuntimeMethod_var);
if (L_92)
{
goto IL_01ff;
}
}
IL_02b1:
{
IL2CPP_LEAVE(0x2C2, FINALLY_02b3);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_02b3;
}
FINALLY_02b3:
{ // begin finally (depth: 1)
Enumerator_Dispose_mB540C90AE8EBE0EB3D63A6ACE5EC863FAD1419B2((Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 *)(&V_16), /*hidden argument*/Enumerator_Dispose_mB540C90AE8EBE0EB3D63A6ACE5EC863FAD1419B2_RuntimeMethod_var);
IL2CPP_END_FINALLY(691)
} // end finally (depth: 1)
IL2CPP_CLEANUP(691)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x2C2, IL_02c2)
}
IL_02c2:
{
}
IL_02c3:
{
V_2 = (0.0f);
V_3 = (0.0f);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_93 = GUILayoutEntry_get_style_m70E386A3289ACFEC515B1358827AB2FBF6314BA4(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(GUIStyle_t671F175A201A19166385EE3392292A5F50070572_il2cpp_TypeInfo_var);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_94 = GUIStyle_get_none_m2B48FA4E2FA2B9BB7A458DF25B1391F9C7BB8B7B(/*hidden argument*/NULL);
if ((!(((RuntimeObject*)(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)L_93) == ((RuntimeObject*)(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)L_94))))
{
goto IL_02e4;
}
}
{
bool L_95 = __this->get_m_UserSpecifiedHeight_22();
G_B34_0 = ((int32_t)(L_95));
goto IL_02e5;
}
IL_02e4:
{
G_B34_0 = 1;
}
IL_02e5:
{
V_20 = (bool)G_B34_0;
bool L_96 = V_20;
if (!L_96)
{
goto IL_031f;
}
}
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_97 = GUILayoutEntry_get_style_m70E386A3289ACFEC515B1358827AB2FBF6314BA4(__this, /*hidden argument*/NULL);
NullCheck(L_97);
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * L_98 = GUIStyle_get_padding_m5DF76AA03A313366D0DD8D577731DAC4FB83053A(L_97, /*hidden argument*/NULL);
NullCheck(L_98);
int32_t L_99 = RectOffset_get_top_mBA813D4147BFBC079933054018437F411B6B41E1(L_98, /*hidden argument*/NULL);
int32_t L_100 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Mathf_tFBDE6467D269BFE410605C7D806FD9991D4A89CB_il2cpp_TypeInfo_var);
int32_t L_101 = Mathf_Max_mBDE4C6F1883EE3215CD7AE62550B2AC90592BC3F(L_99, L_100, /*hidden argument*/NULL);
V_2 = (((float)((float)L_101)));
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_102 = GUILayoutEntry_get_style_m70E386A3289ACFEC515B1358827AB2FBF6314BA4(__this, /*hidden argument*/NULL);
NullCheck(L_102);
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * L_103 = GUIStyle_get_padding_m5DF76AA03A313366D0DD8D577731DAC4FB83053A(L_102, /*hidden argument*/NULL);
NullCheck(L_103);
int32_t L_104 = RectOffset_get_bottom_mE5162CADD266B59539E3EE1967EE9A74705E5632(L_103, /*hidden argument*/NULL);
int32_t L_105 = V_1;
int32_t L_106 = Mathf_Max_mBDE4C6F1883EE3215CD7AE62550B2AC90592BC3F(L_104, L_105, /*hidden argument*/NULL);
V_3 = (((float)((float)L_106)));
goto IL_0337;
}
IL_031f:
{
int32_t L_107 = V_0;
__this->set_m_MarginTop_29(L_107);
int32_t L_108 = V_1;
__this->set_m_MarginBottom_30(L_108);
float L_109 = (0.0f);
V_3 = L_109;
V_2 = L_109;
}
IL_0337:
{
float L_110 = ((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->get_minHeight_2();
float L_111 = __this->get_m_ChildMinHeight_25();
float L_112 = V_2;
float L_113 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(Mathf_tFBDE6467D269BFE410605C7D806FD9991D4A89CB_il2cpp_TypeInfo_var);
float L_114 = Mathf_Max_m670AE0EC1B09ED1A56FF9606B0F954670319CB65(L_110, ((float)il2cpp_codegen_add((float)((float)il2cpp_codegen_add((float)L_111, (float)L_112)), (float)L_113)), /*hidden argument*/NULL);
((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->set_minHeight_2(L_114);
float L_115 = ((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->get_maxHeight_3();
V_21 = (bool)((((float)L_115) == ((float)(0.0f)))? 1 : 0);
bool L_116 = V_21;
if (!L_116)
{
goto IL_039e;
}
}
{
int32_t L_117 = ((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->get_stretchHeight_6();
int32_t L_118 = __this->get_m_StretchableCountY_20();
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_119 = GUILayoutEntry_get_style_m70E386A3289ACFEC515B1358827AB2FBF6314BA4(__this, /*hidden argument*/NULL);
NullCheck(L_119);
bool L_120 = GUIStyle_get_stretchHeight_m264308B18FA5F0A8400CF49945BAE1B9EFDC934F(L_119, /*hidden argument*/NULL);
G_B39_0 = L_118;
G_B39_1 = L_117;
G_B39_2 = __this;
if (L_120)
{
G_B40_0 = L_118;
G_B40_1 = L_117;
G_B40_2 = __this;
goto IL_0383;
}
}
{
G_B41_0 = 0;
G_B41_1 = G_B39_0;
G_B41_2 = G_B39_1;
G_B41_3 = G_B39_2;
goto IL_0384;
}
IL_0383:
{
G_B41_0 = 1;
G_B41_1 = G_B40_0;
G_B41_2 = G_B40_1;
G_B41_3 = G_B40_2;
}
IL_0384:
{
NullCheck(G_B41_3);
((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)G_B41_3)->set_stretchHeight_6(((int32_t)il2cpp_codegen_add((int32_t)G_B41_2, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)G_B41_1, (int32_t)G_B41_0)))));
float L_121 = __this->get_m_ChildMaxHeight_26();
float L_122 = V_2;
float L_123 = V_3;
((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->set_maxHeight_3(((float)il2cpp_codegen_add((float)((float)il2cpp_codegen_add((float)L_121, (float)L_122)), (float)L_123)));
goto IL_03a7;
}
IL_039e:
{
((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->set_stretchHeight_6(0);
}
IL_03a7:
{
float L_124 = ((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->get_maxHeight_3();
float L_125 = ((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->get_minHeight_2();
IL2CPP_RUNTIME_CLASS_INIT(Mathf_tFBDE6467D269BFE410605C7D806FD9991D4A89CB_il2cpp_TypeInfo_var);
float L_126 = Mathf_Max_m670AE0EC1B09ED1A56FF9606B0F954670319CB65(L_124, L_125, /*hidden argument*/NULL);
((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->set_maxHeight_3(L_126);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_127 = GUILayoutEntry_get_style_m70E386A3289ACFEC515B1358827AB2FBF6314BA4(__this, /*hidden argument*/NULL);
NullCheck(L_127);
float L_128 = GUIStyle_get_fixedHeight_m9B5589C95B27C5590219413E8D7E9E1E95EB7708(L_127, /*hidden argument*/NULL);
V_22 = (bool)((((int32_t)((((float)L_128) == ((float)(0.0f)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_129 = V_22;
if (!L_129)
{
goto IL_03fe;
}
}
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_130 = GUILayoutEntry_get_style_m70E386A3289ACFEC515B1358827AB2FBF6314BA4(__this, /*hidden argument*/NULL);
NullCheck(L_130);
float L_131 = GUIStyle_get_fixedHeight_m9B5589C95B27C5590219413E8D7E9E1E95EB7708(L_130, /*hidden argument*/NULL);
float L_132 = L_131;
V_5 = L_132;
((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->set_minHeight_2(L_132);
float L_133 = V_5;
((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->set_maxHeight_3(L_133);
((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->set_stretchHeight_6(0);
}
IL_03fe:
{
return;
}
}
// System.Void UnityEngine.GUILayoutGroup::SetVertical(System.Single,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUILayoutGroup_SetVertical_m29D8744D2D1464EF4E6E4008CD21F5E44D6CB146 (GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * __this, float ___y0, float ___height1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUILayoutGroup_SetVertical_m29D8744D2D1464EF4E6E4008CD21F5E44D6CB146_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * V_0 = NULL;
bool V_1 = false;
bool V_2 = false;
bool V_3 = false;
float V_4 = 0.0f;
float V_5 = 0.0f;
float V_6 = 0.0f;
int32_t V_7 = 0;
bool V_8 = false;
bool V_9 = false;
float V_10 = 0.0f;
float V_11 = 0.0f;
bool V_12 = false;
bool V_13 = false;
bool V_14 = false;
bool V_15 = false;
Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 V_16;
memset((&V_16), 0, sizeof(V_16));
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * V_17 = NULL;
float V_18 = 0.0f;
bool V_19 = false;
int32_t V_20 = 0;
int32_t V_21 = 0;
bool V_22 = false;
bool V_23 = false;
Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 V_24;
memset((&V_24), 0, sizeof(V_24));
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * V_25 = NULL;
float V_26 = 0.0f;
float V_27 = 0.0f;
float V_28 = 0.0f;
bool V_29 = false;
float V_30 = 0.0f;
float V_31 = 0.0f;
Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 V_32;
memset((&V_32), 0, sizeof(V_32));
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * V_33 = NULL;
bool V_34 = false;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 3);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
int32_t G_B23_0 = 0;
{
float L_0 = ___y0;
float L_1 = ___height1;
GUILayoutEntry_SetVertical_mC0E71E5E431907DD1900C707BD3E2E1D0795DDD0(__this, L_0, L_1, /*hidden argument*/NULL);
List_1_t046427F3923444CF746C550FD96A3D0E4189D273 * L_2 = __this->get_entries_11();
NullCheck(L_2);
int32_t L_3 = List_1_get_Count_m2995506A297520F84CBD9AD421D8672D5755E115_inline(L_2, /*hidden argument*/List_1_get_Count_m2995506A297520F84CBD9AD421D8672D5755E115_RuntimeMethod_var);
V_1 = (bool)((((int32_t)L_3) == ((int32_t)0))? 1 : 0);
bool L_4 = V_1;
if (!L_4)
{
goto IL_0021;
}
}
{
goto IL_03c7;
}
IL_0021:
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_5 = GUILayoutEntry_get_style_m70E386A3289ACFEC515B1358827AB2FBF6314BA4(__this, /*hidden argument*/NULL);
NullCheck(L_5);
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * L_6 = GUIStyle_get_padding_m5DF76AA03A313366D0DD8D577731DAC4FB83053A(L_5, /*hidden argument*/NULL);
V_0 = L_6;
bool L_7 = __this->get_resetCoords_13();
V_2 = L_7;
bool L_8 = V_2;
if (!L_8)
{
goto IL_003e;
}
}
{
___y0 = (0.0f);
}
IL_003e:
{
bool L_9 = __this->get_isVertical_12();
V_3 = L_9;
bool L_10 = V_3;
if (!L_10)
{
goto IL_024d;
}
}
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_11 = GUILayoutEntry_get_style_m70E386A3289ACFEC515B1358827AB2FBF6314BA4(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(GUIStyle_t671F175A201A19166385EE3392292A5F50070572_il2cpp_TypeInfo_var);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_12 = GUIStyle_get_none_m2B48FA4E2FA2B9BB7A458DF25B1391F9C7BB8B7B(/*hidden argument*/NULL);
V_9 = (bool)((((int32_t)((((RuntimeObject*)(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)L_11) == ((RuntimeObject*)(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)L_12))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_13 = V_9;
if (!L_13)
{
goto IL_00dd;
}
}
{
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * L_14 = V_0;
NullCheck(L_14);
int32_t L_15 = RectOffset_get_top_mBA813D4147BFBC079933054018437F411B6B41E1(L_14, /*hidden argument*/NULL);
V_10 = (((float)((float)L_15)));
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * L_16 = V_0;
NullCheck(L_16);
int32_t L_17 = RectOffset_get_bottom_mE5162CADD266B59539E3EE1967EE9A74705E5632(L_16, /*hidden argument*/NULL);
V_11 = (((float)((float)L_17)));
List_1_t046427F3923444CF746C550FD96A3D0E4189D273 * L_18 = __this->get_entries_11();
NullCheck(L_18);
int32_t L_19 = List_1_get_Count_m2995506A297520F84CBD9AD421D8672D5755E115_inline(L_18, /*hidden argument*/List_1_get_Count_m2995506A297520F84CBD9AD421D8672D5755E115_RuntimeMethod_var);
V_12 = (bool)((!(((uint32_t)L_19) <= ((uint32_t)0)))? 1 : 0);
bool L_20 = V_12;
if (!L_20)
{
goto IL_00cd;
}
}
{
float L_21 = V_10;
List_1_t046427F3923444CF746C550FD96A3D0E4189D273 * L_22 = __this->get_entries_11();
NullCheck(L_22);
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_23 = List_1_get_Item_m96FCB482CBADC5AD4AD5F01B7A0B822AF619D388_inline(L_22, 0, /*hidden argument*/List_1_get_Item_m96FCB482CBADC5AD4AD5F01B7A0B822AF619D388_RuntimeMethod_var);
NullCheck(L_23);
int32_t L_24 = VirtFuncInvoker0< int32_t >::Invoke(6 /* System.Int32 UnityEngine.GUILayoutEntry::get_marginTop() */, L_23);
IL2CPP_RUNTIME_CLASS_INIT(Mathf_tFBDE6467D269BFE410605C7D806FD9991D4A89CB_il2cpp_TypeInfo_var);
float L_25 = Mathf_Max_m670AE0EC1B09ED1A56FF9606B0F954670319CB65(L_21, (((float)((float)L_24))), /*hidden argument*/NULL);
V_10 = L_25;
float L_26 = V_11;
List_1_t046427F3923444CF746C550FD96A3D0E4189D273 * L_27 = __this->get_entries_11();
List_1_t046427F3923444CF746C550FD96A3D0E4189D273 * L_28 = __this->get_entries_11();
NullCheck(L_28);
int32_t L_29 = List_1_get_Count_m2995506A297520F84CBD9AD421D8672D5755E115_inline(L_28, /*hidden argument*/List_1_get_Count_m2995506A297520F84CBD9AD421D8672D5755E115_RuntimeMethod_var);
NullCheck(L_27);
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_30 = List_1_get_Item_m96FCB482CBADC5AD4AD5F01B7A0B822AF619D388_inline(L_27, ((int32_t)il2cpp_codegen_subtract((int32_t)L_29, (int32_t)1)), /*hidden argument*/List_1_get_Item_m96FCB482CBADC5AD4AD5F01B7A0B822AF619D388_RuntimeMethod_var);
NullCheck(L_30);
int32_t L_31 = VirtFuncInvoker0< int32_t >::Invoke(7 /* System.Int32 UnityEngine.GUILayoutEntry::get_marginBottom() */, L_30);
float L_32 = Mathf_Max_m670AE0EC1B09ED1A56FF9606B0F954670319CB65(L_26, (((float)((float)L_31))), /*hidden argument*/NULL);
V_11 = L_32;
}
IL_00cd:
{
float L_33 = ___y0;
float L_34 = V_10;
___y0 = ((float)il2cpp_codegen_add((float)L_33, (float)L_34));
float L_35 = ___height1;
float L_36 = V_11;
float L_37 = V_10;
___height1 = ((float)il2cpp_codegen_subtract((float)L_35, (float)((float)il2cpp_codegen_add((float)L_36, (float)L_37))));
}
IL_00dd:
{
float L_38 = ___height1;
float L_39 = __this->get_spacing_14();
List_1_t046427F3923444CF746C550FD96A3D0E4189D273 * L_40 = __this->get_entries_11();
NullCheck(L_40);
int32_t L_41 = List_1_get_Count_m2995506A297520F84CBD9AD421D8672D5755E115_inline(L_40, /*hidden argument*/List_1_get_Count_m2995506A297520F84CBD9AD421D8672D5755E115_RuntimeMethod_var);
V_4 = ((float)il2cpp_codegen_subtract((float)L_38, (float)((float)il2cpp_codegen_multiply((float)L_39, (float)(((float)((float)((int32_t)il2cpp_codegen_subtract((int32_t)L_41, (int32_t)1)))))))));
V_5 = (0.0f);
float L_42 = __this->get_m_ChildMinHeight_25();
float L_43 = __this->get_m_ChildMaxHeight_26();
V_13 = (bool)((((int32_t)((((float)L_42) == ((float)L_43))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_44 = V_13;
if (!L_44)
{
goto IL_013c;
}
}
{
float L_45 = V_4;
float L_46 = __this->get_m_ChildMinHeight_25();
float L_47 = __this->get_m_ChildMaxHeight_26();
float L_48 = __this->get_m_ChildMinHeight_25();
IL2CPP_RUNTIME_CLASS_INIT(Mathf_tFBDE6467D269BFE410605C7D806FD9991D4A89CB_il2cpp_TypeInfo_var);
float L_49 = Mathf_Clamp_m033DD894F89E6DCCDAFC580091053059C86A4507(((float)((float)((float)il2cpp_codegen_subtract((float)L_45, (float)L_46))/(float)((float)il2cpp_codegen_subtract((float)L_47, (float)L_48)))), (0.0f), (1.0f), /*hidden argument*/NULL);
V_5 = L_49;
}
IL_013c:
{
V_6 = (0.0f);
float L_50 = V_4;
float L_51 = __this->get_m_ChildMaxHeight_26();
V_14 = (bool)((((float)L_50) > ((float)L_51))? 1 : 0);
bool L_52 = V_14;
if (!L_52)
{
goto IL_0177;
}
}
{
int32_t L_53 = __this->get_m_StretchableCountY_20();
V_15 = (bool)((((int32_t)L_53) > ((int32_t)0))? 1 : 0);
bool L_54 = V_15;
if (!L_54)
{
goto IL_0176;
}
}
{
float L_55 = V_4;
float L_56 = __this->get_m_ChildMaxHeight_26();
int32_t L_57 = __this->get_m_StretchableCountY_20();
V_6 = ((float)((float)((float)il2cpp_codegen_subtract((float)L_55, (float)L_56))/(float)(((float)((float)L_57)))));
}
IL_0176:
{
}
IL_0177:
{
V_7 = 0;
V_8 = (bool)1;
List_1_t046427F3923444CF746C550FD96A3D0E4189D273 * L_58 = __this->get_entries_11();
NullCheck(L_58);
Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 L_59 = List_1_GetEnumerator_mA457B3CB61E2B7BAFB0F7D0ADEFD25237B4429DF(L_58, /*hidden argument*/List_1_GetEnumerator_mA457B3CB61E2B7BAFB0F7D0ADEFD25237B4429DF_RuntimeMethod_var);
V_16 = L_59;
}
IL_018b:
try
{ // begin try (depth: 1)
{
goto IL_022a;
}
IL_0190:
{
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_60 = Enumerator_get_Current_m9422C22943D0E9900CDB7DF407D9EBE215B2A6B6_inline((Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 *)(&V_16), /*hidden argument*/Enumerator_get_Current_m9422C22943D0E9900CDB7DF407D9EBE215B2A6B6_RuntimeMethod_var);
V_17 = L_60;
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_61 = V_17;
NullCheck(L_61);
float L_62 = L_61->get_minHeight_2();
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_63 = V_17;
NullCheck(L_63);
float L_64 = L_63->get_maxHeight_3();
float L_65 = V_5;
IL2CPP_RUNTIME_CLASS_INIT(Mathf_tFBDE6467D269BFE410605C7D806FD9991D4A89CB_il2cpp_TypeInfo_var);
float L_66 = Mathf_Lerp_m9A74C5A0C37D0CDF45EE66E7774D12A9B93B1364(L_62, L_64, L_65, /*hidden argument*/NULL);
V_18 = L_66;
float L_67 = V_18;
float L_68 = V_6;
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_69 = V_17;
NullCheck(L_69);
int32_t L_70 = L_69->get_stretchHeight_6();
V_18 = ((float)il2cpp_codegen_add((float)L_67, (float)((float)il2cpp_codegen_multiply((float)L_68, (float)(((float)((float)L_70)))))));
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_71 = V_17;
NullCheck(L_71);
bool L_72 = L_71->get_consideredForMargin_7();
V_19 = L_72;
bool L_73 = V_19;
if (!L_73)
{
goto IL_0207;
}
}
IL_01ce:
{
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_74 = V_17;
NullCheck(L_74);
int32_t L_75 = VirtFuncInvoker0< int32_t >::Invoke(6 /* System.Int32 UnityEngine.GUILayoutEntry::get_marginTop() */, L_74);
V_20 = L_75;
bool L_76 = V_8;
V_22 = L_76;
bool L_77 = V_22;
if (!L_77)
{
goto IL_01e8;
}
}
IL_01e0:
{
V_20 = 0;
V_8 = (bool)0;
}
IL_01e8:
{
int32_t L_78 = V_7;
int32_t L_79 = V_20;
if ((((int32_t)L_78) > ((int32_t)L_79)))
{
goto IL_01f2;
}
}
IL_01ee:
{
int32_t L_80 = V_20;
G_B23_0 = L_80;
goto IL_01f4;
}
IL_01f2:
{
int32_t L_81 = V_7;
G_B23_0 = L_81;
}
IL_01f4:
{
V_21 = G_B23_0;
float L_82 = ___y0;
int32_t L_83 = V_21;
___y0 = ((float)il2cpp_codegen_add((float)L_82, (float)(((float)((float)L_83)))));
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_84 = V_17;
NullCheck(L_84);
int32_t L_85 = VirtFuncInvoker0< int32_t >::Invoke(7 /* System.Int32 UnityEngine.GUILayoutEntry::get_marginBottom() */, L_84);
V_7 = L_85;
}
IL_0207:
{
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_86 = V_17;
float L_87 = ___y0;
IL2CPP_RUNTIME_CLASS_INIT(Mathf_tFBDE6467D269BFE410605C7D806FD9991D4A89CB_il2cpp_TypeInfo_var);
float L_88 = bankers_roundf(L_87);
float L_89 = V_18;
float L_90 = bankers_roundf(L_89);
NullCheck(L_86);
VirtActionInvoker2< float, float >::Invoke(11 /* System.Void UnityEngine.GUILayoutEntry::SetVertical(System.Single,System.Single) */, L_86, L_88, L_90);
float L_91 = ___y0;
float L_92 = V_18;
float L_93 = __this->get_spacing_14();
___y0 = ((float)il2cpp_codegen_add((float)L_91, (float)((float)il2cpp_codegen_add((float)L_92, (float)L_93))));
}
IL_022a:
{
bool L_94 = Enumerator_MoveNext_m3A0A0A98E9378A32A74EC51C4CAB6C564001CAC7((Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 *)(&V_16), /*hidden argument*/Enumerator_MoveNext_m3A0A0A98E9378A32A74EC51C4CAB6C564001CAC7_RuntimeMethod_var);
if (L_94)
{
goto IL_0190;
}
}
IL_0236:
{
IL2CPP_LEAVE(0x247, FINALLY_0238);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0238;
}
FINALLY_0238:
{ // begin finally (depth: 1)
Enumerator_Dispose_mB540C90AE8EBE0EB3D63A6ACE5EC863FAD1419B2((Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 *)(&V_16), /*hidden argument*/Enumerator_Dispose_mB540C90AE8EBE0EB3D63A6ACE5EC863FAD1419B2_RuntimeMethod_var);
IL2CPP_END_FINALLY(568)
} // end finally (depth: 1)
IL2CPP_CLEANUP(568)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x247, IL_0247)
}
IL_0247:
{
goto IL_03c7;
}
IL_024d:
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_95 = GUILayoutEntry_get_style_m70E386A3289ACFEC515B1358827AB2FBF6314BA4(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(GUIStyle_t671F175A201A19166385EE3392292A5F50070572_il2cpp_TypeInfo_var);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_96 = GUIStyle_get_none_m2B48FA4E2FA2B9BB7A458DF25B1391F9C7BB8B7B(/*hidden argument*/NULL);
V_23 = (bool)((((int32_t)((((RuntimeObject*)(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)L_95) == ((RuntimeObject*)(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)L_96))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_97 = V_23;
if (!L_97)
{
goto IL_0318;
}
}
{
List_1_t046427F3923444CF746C550FD96A3D0E4189D273 * L_98 = __this->get_entries_11();
NullCheck(L_98);
Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 L_99 = List_1_GetEnumerator_mA457B3CB61E2B7BAFB0F7D0ADEFD25237B4429DF(L_98, /*hidden argument*/List_1_GetEnumerator_mA457B3CB61E2B7BAFB0F7D0ADEFD25237B4429DF_RuntimeMethod_var);
V_24 = L_99;
}
IL_0276:
try
{ // begin try (depth: 1)
{
goto IL_02f5;
}
IL_0278:
{
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_100 = Enumerator_get_Current_m9422C22943D0E9900CDB7DF407D9EBE215B2A6B6_inline((Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 *)(&V_24), /*hidden argument*/Enumerator_get_Current_m9422C22943D0E9900CDB7DF407D9EBE215B2A6B6_RuntimeMethod_var);
V_25 = L_100;
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_101 = V_25;
NullCheck(L_101);
int32_t L_102 = VirtFuncInvoker0< int32_t >::Invoke(6 /* System.Int32 UnityEngine.GUILayoutEntry::get_marginTop() */, L_101);
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * L_103 = V_0;
NullCheck(L_103);
int32_t L_104 = RectOffset_get_top_mBA813D4147BFBC079933054018437F411B6B41E1(L_103, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Mathf_tFBDE6467D269BFE410605C7D806FD9991D4A89CB_il2cpp_TypeInfo_var);
int32_t L_105 = Mathf_Max_mBDE4C6F1883EE3215CD7AE62550B2AC90592BC3F(L_102, L_104, /*hidden argument*/NULL);
V_26 = (((float)((float)L_105)));
float L_106 = ___y0;
float L_107 = V_26;
V_27 = ((float)il2cpp_codegen_add((float)L_106, (float)L_107));
float L_108 = ___height1;
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_109 = V_25;
NullCheck(L_109);
int32_t L_110 = VirtFuncInvoker0< int32_t >::Invoke(7 /* System.Int32 UnityEngine.GUILayoutEntry::get_marginBottom() */, L_109);
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * L_111 = V_0;
NullCheck(L_111);
int32_t L_112 = RectOffset_get_bottom_mE5162CADD266B59539E3EE1967EE9A74705E5632(L_111, /*hidden argument*/NULL);
int32_t L_113 = Mathf_Max_mBDE4C6F1883EE3215CD7AE62550B2AC90592BC3F(L_110, L_112, /*hidden argument*/NULL);
float L_114 = V_26;
V_28 = ((float)il2cpp_codegen_subtract((float)((float)il2cpp_codegen_subtract((float)L_108, (float)(((float)((float)L_113))))), (float)L_114));
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_115 = V_25;
NullCheck(L_115);
int32_t L_116 = L_115->get_stretchHeight_6();
V_29 = (bool)((!(((uint32_t)L_116) <= ((uint32_t)0)))? 1 : 0);
bool L_117 = V_29;
if (!L_117)
{
goto IL_02d5;
}
}
IL_02c7:
{
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_118 = V_25;
float L_119 = V_27;
float L_120 = V_28;
NullCheck(L_118);
VirtActionInvoker2< float, float >::Invoke(11 /* System.Void UnityEngine.GUILayoutEntry::SetVertical(System.Single,System.Single) */, L_118, L_119, L_120);
goto IL_02f4;
}
IL_02d5:
{
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_121 = V_25;
float L_122 = V_27;
float L_123 = V_28;
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_124 = V_25;
NullCheck(L_124);
float L_125 = L_124->get_minHeight_2();
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_126 = V_25;
NullCheck(L_126);
float L_127 = L_126->get_maxHeight_3();
IL2CPP_RUNTIME_CLASS_INIT(Mathf_tFBDE6467D269BFE410605C7D806FD9991D4A89CB_il2cpp_TypeInfo_var);
float L_128 = Mathf_Clamp_m033DD894F89E6DCCDAFC580091053059C86A4507(L_123, L_125, L_127, /*hidden argument*/NULL);
NullCheck(L_121);
VirtActionInvoker2< float, float >::Invoke(11 /* System.Void UnityEngine.GUILayoutEntry::SetVertical(System.Single,System.Single) */, L_121, L_122, L_128);
}
IL_02f4:
{
}
IL_02f5:
{
bool L_129 = Enumerator_MoveNext_m3A0A0A98E9378A32A74EC51C4CAB6C564001CAC7((Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 *)(&V_24), /*hidden argument*/Enumerator_MoveNext_m3A0A0A98E9378A32A74EC51C4CAB6C564001CAC7_RuntimeMethod_var);
if (L_129)
{
goto IL_0278;
}
}
IL_0301:
{
IL2CPP_LEAVE(0x312, FINALLY_0303);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0303;
}
FINALLY_0303:
{ // begin finally (depth: 1)
Enumerator_Dispose_mB540C90AE8EBE0EB3D63A6ACE5EC863FAD1419B2((Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 *)(&V_24), /*hidden argument*/Enumerator_Dispose_mB540C90AE8EBE0EB3D63A6ACE5EC863FAD1419B2_RuntimeMethod_var);
IL2CPP_END_FINALLY(771)
} // end finally (depth: 1)
IL2CPP_CLEANUP(771)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x312, IL_0312)
}
IL_0312:
{
goto IL_03c6;
}
IL_0318:
{
float L_130 = ___y0;
int32_t L_131 = VirtFuncInvoker0< int32_t >::Invoke(6 /* System.Int32 UnityEngine.GUILayoutEntry::get_marginTop() */, __this);
V_30 = ((float)il2cpp_codegen_subtract((float)L_130, (float)(((float)((float)L_131)))));
float L_132 = ___height1;
int32_t L_133 = GUILayoutEntry_get_marginVertical_mBFB3FD56025F4627378E5A339379CFF720196EB0(__this, /*hidden argument*/NULL);
V_31 = ((float)il2cpp_codegen_add((float)L_132, (float)(((float)((float)L_133)))));
List_1_t046427F3923444CF746C550FD96A3D0E4189D273 * L_134 = __this->get_entries_11();
NullCheck(L_134);
Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 L_135 = List_1_GetEnumerator_mA457B3CB61E2B7BAFB0F7D0ADEFD25237B4429DF(L_134, /*hidden argument*/List_1_GetEnumerator_mA457B3CB61E2B7BAFB0F7D0ADEFD25237B4429DF_RuntimeMethod_var);
V_32 = L_135;
}
IL_033d:
try
{ // begin try (depth: 1)
{
goto IL_03ab;
}
IL_033f:
{
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_136 = Enumerator_get_Current_m9422C22943D0E9900CDB7DF407D9EBE215B2A6B6_inline((Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 *)(&V_32), /*hidden argument*/Enumerator_get_Current_m9422C22943D0E9900CDB7DF407D9EBE215B2A6B6_RuntimeMethod_var);
V_33 = L_136;
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_137 = V_33;
NullCheck(L_137);
int32_t L_138 = L_137->get_stretchHeight_6();
V_34 = (bool)((!(((uint32_t)L_138) <= ((uint32_t)0)))? 1 : 0);
bool L_139 = V_34;
if (!L_139)
{
goto IL_0379;
}
}
IL_0359:
{
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_140 = V_33;
float L_141 = V_30;
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_142 = V_33;
NullCheck(L_142);
int32_t L_143 = VirtFuncInvoker0< int32_t >::Invoke(6 /* System.Int32 UnityEngine.GUILayoutEntry::get_marginTop() */, L_142);
float L_144 = V_31;
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_145 = V_33;
NullCheck(L_145);
int32_t L_146 = GUILayoutEntry_get_marginVertical_mBFB3FD56025F4627378E5A339379CFF720196EB0(L_145, /*hidden argument*/NULL);
NullCheck(L_140);
VirtActionInvoker2< float, float >::Invoke(11 /* System.Void UnityEngine.GUILayoutEntry::SetVertical(System.Single,System.Single) */, L_140, ((float)il2cpp_codegen_add((float)L_141, (float)(((float)((float)L_143))))), ((float)il2cpp_codegen_subtract((float)L_144, (float)(((float)((float)L_146))))));
goto IL_03aa;
}
IL_0379:
{
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_147 = V_33;
float L_148 = V_30;
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_149 = V_33;
NullCheck(L_149);
int32_t L_150 = VirtFuncInvoker0< int32_t >::Invoke(6 /* System.Int32 UnityEngine.GUILayoutEntry::get_marginTop() */, L_149);
float L_151 = V_31;
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_152 = V_33;
NullCheck(L_152);
int32_t L_153 = GUILayoutEntry_get_marginVertical_mBFB3FD56025F4627378E5A339379CFF720196EB0(L_152, /*hidden argument*/NULL);
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_154 = V_33;
NullCheck(L_154);
float L_155 = L_154->get_minHeight_2();
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_156 = V_33;
NullCheck(L_156);
float L_157 = L_156->get_maxHeight_3();
IL2CPP_RUNTIME_CLASS_INIT(Mathf_tFBDE6467D269BFE410605C7D806FD9991D4A89CB_il2cpp_TypeInfo_var);
float L_158 = Mathf_Clamp_m033DD894F89E6DCCDAFC580091053059C86A4507(((float)il2cpp_codegen_subtract((float)L_151, (float)(((float)((float)L_153))))), L_155, L_157, /*hidden argument*/NULL);
NullCheck(L_147);
VirtActionInvoker2< float, float >::Invoke(11 /* System.Void UnityEngine.GUILayoutEntry::SetVertical(System.Single,System.Single) */, L_147, ((float)il2cpp_codegen_add((float)L_148, (float)(((float)((float)L_150))))), L_158);
}
IL_03aa:
{
}
IL_03ab:
{
bool L_159 = Enumerator_MoveNext_m3A0A0A98E9378A32A74EC51C4CAB6C564001CAC7((Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 *)(&V_32), /*hidden argument*/Enumerator_MoveNext_m3A0A0A98E9378A32A74EC51C4CAB6C564001CAC7_RuntimeMethod_var);
if (L_159)
{
goto IL_033f;
}
}
IL_03b4:
{
IL2CPP_LEAVE(0x3C5, FINALLY_03b6);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_03b6;
}
FINALLY_03b6:
{ // begin finally (depth: 1)
Enumerator_Dispose_mB540C90AE8EBE0EB3D63A6ACE5EC863FAD1419B2((Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 *)(&V_32), /*hidden argument*/Enumerator_Dispose_mB540C90AE8EBE0EB3D63A6ACE5EC863FAD1419B2_RuntimeMethod_var);
IL2CPP_END_FINALLY(950)
} // end finally (depth: 1)
IL2CPP_CLEANUP(950)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x3C5, IL_03c5)
}
IL_03c5:
{
}
IL_03c6:
{
}
IL_03c7:
{
return;
}
}
// System.String UnityEngine.GUILayoutGroup::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* GUILayoutGroup_ToString_mF66B820B07A33FFA240FBBE20A6F39C492B52372 (GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUILayoutGroup_ToString_mF66B820B07A33FFA240FBBE20A6F39C492B52372_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
String_t* V_1 = NULL;
int32_t V_2 = 0;
bool V_3 = false;
Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 V_4;
memset((&V_4), 0, sizeof(V_4));
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * V_5 = NULL;
String_t* V_6 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
V_0 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
V_1 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
V_2 = 0;
goto IL_0021;
}
IL_0011:
{
String_t* L_0 = V_1;
String_t* L_1 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_0, _stringLiteralB858CB282617FB0956D960215C8E84D1CCF909C6, /*hidden argument*/NULL);
V_1 = L_1;
int32_t L_2 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)1));
}
IL_0021:
{
int32_t L_3 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845_il2cpp_TypeInfo_var);
int32_t L_4 = ((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845_il2cpp_TypeInfo_var))->get_indent_10();
V_3 = (bool)((((int32_t)L_3) < ((int32_t)L_4))? 1 : 0);
bool L_5 = V_3;
if (L_5)
{
goto IL_0011;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)5);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_7 = L_6;
String_t* L_8 = V_0;
NullCheck(L_7);
ArrayElementTypeCheck (L_7, L_8);
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_8);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_9 = L_7;
String_t* L_10 = GUILayoutEntry_ToString_mCDA5CD14A39ADAD29F6B450B98FDB80E37AC95D5(__this, /*hidden argument*/NULL);
NullCheck(L_9);
ArrayElementTypeCheck (L_9, L_10);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_10);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_11 = L_9;
NullCheck(L_11);
ArrayElementTypeCheck (L_11, _stringLiteral061CD5E48C5A194C95B561D18FCDC1A57D790069);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)_stringLiteral061CD5E48C5A194C95B561D18FCDC1A57D790069);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_12 = L_11;
float L_13 = __this->get_m_ChildMinHeight_25();
float L_14 = L_13;
RuntimeObject * L_15 = Box(Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_il2cpp_TypeInfo_var, &L_14);
NullCheck(L_12);
ArrayElementTypeCheck (L_12, L_15);
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)L_15);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_16 = L_12;
NullCheck(L_16);
ArrayElementTypeCheck (L_16, _stringLiteral4609E730123B8AB7743493DE7E9F350E7DF58440);
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(4), (RuntimeObject *)_stringLiteral4609E730123B8AB7743493DE7E9F350E7DF58440);
String_t* L_17 = String_Concat_mB7BA84F13912303B2E5E40FBF0109E1A328ACA07(L_16, /*hidden argument*/NULL);
V_0 = L_17;
IL2CPP_RUNTIME_CLASS_INIT(GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845_il2cpp_TypeInfo_var);
int32_t L_18 = ((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845_il2cpp_TypeInfo_var))->get_indent_10();
((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845_il2cpp_TypeInfo_var))->set_indent_10(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)4)));
List_1_t046427F3923444CF746C550FD96A3D0E4189D273 * L_19 = __this->get_entries_11();
NullCheck(L_19);
Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 L_20 = List_1_GetEnumerator_mA457B3CB61E2B7BAFB0F7D0ADEFD25237B4429DF(L_19, /*hidden argument*/List_1_GetEnumerator_mA457B3CB61E2B7BAFB0F7D0ADEFD25237B4429DF_RuntimeMethod_var);
V_4 = L_20;
}
IL_007e:
try
{ // begin try (depth: 1)
{
goto IL_009e;
}
IL_0080:
{
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_21 = Enumerator_get_Current_m9422C22943D0E9900CDB7DF407D9EBE215B2A6B6_inline((Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 *)(&V_4), /*hidden argument*/Enumerator_get_Current_m9422C22943D0E9900CDB7DF407D9EBE215B2A6B6_RuntimeMethod_var);
V_5 = L_21;
String_t* L_22 = V_0;
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_23 = V_5;
NullCheck(L_23);
String_t* L_24 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_23);
String_t* L_25 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(L_22, L_24, _stringLiteralADC83B19E793491B1C6EA0FD8B46CD9F32E592FC, /*hidden argument*/NULL);
V_0 = L_25;
}
IL_009e:
{
bool L_26 = Enumerator_MoveNext_m3A0A0A98E9378A32A74EC51C4CAB6C564001CAC7((Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 *)(&V_4), /*hidden argument*/Enumerator_MoveNext_m3A0A0A98E9378A32A74EC51C4CAB6C564001CAC7_RuntimeMethod_var);
if (L_26)
{
goto IL_0080;
}
}
IL_00a7:
{
IL2CPP_LEAVE(0xB8, FINALLY_00a9);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_00a9;
}
FINALLY_00a9:
{ // begin finally (depth: 1)
Enumerator_Dispose_mB540C90AE8EBE0EB3D63A6ACE5EC863FAD1419B2((Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 *)(&V_4), /*hidden argument*/Enumerator_Dispose_mB540C90AE8EBE0EB3D63A6ACE5EC863FAD1419B2_RuntimeMethod_var);
IL2CPP_END_FINALLY(169)
} // end finally (depth: 1)
IL2CPP_CLEANUP(169)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0xB8, IL_00b8)
}
IL_00b8:
{
String_t* L_27 = V_0;
String_t* L_28 = V_1;
String_t* L_29 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(L_27, L_28, _stringLiteralC2B7DF6201FDD3362399091F0A29550DF3505B6A, /*hidden argument*/NULL);
V_0 = L_29;
IL2CPP_RUNTIME_CLASS_INIT(GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845_il2cpp_TypeInfo_var);
int32_t L_30 = ((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845_il2cpp_TypeInfo_var))->get_indent_10();
((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845_il2cpp_TypeInfo_var))->set_indent_10(((int32_t)il2cpp_codegen_subtract((int32_t)L_30, (int32_t)4)));
String_t* L_31 = V_0;
V_6 = L_31;
goto IL_00d6;
}
IL_00d6:
{
String_t* L_32 = V_6;
return L_32;
}
}
#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 UnityEngine.GUILayoutOption::.ctor(UnityEngine.GUILayoutOption_Type,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUILayoutOption__ctor_m965FDA1345FD7146596EFA90F03D0C645FB3FD5D (GUILayoutOption_t27A0221AC2F6F53E7B89310FD19F51C565D835A6 * __this, int32_t ___type0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
int32_t L_0 = ___type0;
__this->set_type_0(L_0);
RuntimeObject * L_1 = ___value1;
__this->set_value_1(L_1);
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
#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
// UnityEngine.Rect UnityEngine.GUILayoutUtility::Internal_GetWindowRect(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Rect_t35B976DE901B5423C11705E156938EA27AB402CE GUILayoutUtility_Internal_GetWindowRect_mE35BED0433EE8BD928CD52681620519E647A1DA9 (int32_t ___windowID0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUILayoutUtility_Internal_GetWindowRect_mE35BED0433EE8BD928CD52681620519E647A1DA9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Rect_t35B976DE901B5423C11705E156938EA27AB402CE V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___windowID0;
IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var);
GUILayoutUtility_Internal_GetWindowRect_Injected_mE78DA4F8B25471CEFFCB6F43E37C7966FE436EEE(L_0, (Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)(&V_0), /*hidden argument*/NULL);
Rect_t35B976DE901B5423C11705E156938EA27AB402CE L_1 = V_0;
return L_1;
}
}
// System.Void UnityEngine.GUILayoutUtility::Internal_MoveWindow(System.Int32,UnityEngine.Rect)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUILayoutUtility_Internal_MoveWindow_mFCB2DFE399B833D263138CF0A57626AFF52CB037 (int32_t ___windowID0, Rect_t35B976DE901B5423C11705E156938EA27AB402CE ___r1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUILayoutUtility_Internal_MoveWindow_mFCB2DFE399B833D263138CF0A57626AFF52CB037_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___windowID0;
IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var);
GUILayoutUtility_Internal_MoveWindow_Injected_mD80D56182A5684AC3BDA2B50AC8191974A064ABE(L_0, (Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)(&___r1), /*hidden argument*/NULL);
return;
}
}
// UnityEngine.GUILayoutUtility_LayoutCache UnityEngine.GUILayoutUtility::SelectIDList(System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * GUILayoutUtility_SelectIDList_m230ED9206897C92C5B090B3BBFC9B408603E56FD (int32_t ___instanceID0, bool ___isWindow1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUILayoutUtility_SelectIDList_m230ED9206897C92C5B090B3BBFC9B408603E56FD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Dictionary_2_t0F1A21E14D53E05B0F1D474060AC4B36995FBCA1 * V_0 = NULL;
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * V_1 = NULL;
bool V_2 = false;
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * V_3 = NULL;
Dictionary_2_t0F1A21E14D53E05B0F1D474060AC4B36995FBCA1 * G_B3_0 = NULL;
{
bool L_0 = ___isWindow1;
if (L_0)
{
goto IL_000b;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var);
Dictionary_2_t0F1A21E14D53E05B0F1D474060AC4B36995FBCA1 * L_1 = ((GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var))->get_s_StoredLayouts_0();
G_B3_0 = L_1;
goto IL_0010;
}
IL_000b:
{
IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var);
Dictionary_2_t0F1A21E14D53E05B0F1D474060AC4B36995FBCA1 * L_2 = ((GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var))->get_s_StoredWindows_1();
G_B3_0 = L_2;
}
IL_0010:
{
V_0 = G_B3_0;
Dictionary_2_t0F1A21E14D53E05B0F1D474060AC4B36995FBCA1 * L_3 = V_0;
int32_t L_4 = ___instanceID0;
NullCheck(L_3);
bool L_5 = Dictionary_2_TryGetValue_m0E6D1EEC81E6A904B99EEC04DB95C1CC0E4A0B31(L_3, L_4, (LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 **)(&V_1), /*hidden argument*/Dictionary_2_TryGetValue_m0E6D1EEC81E6A904B99EEC04DB95C1CC0E4A0B31_RuntimeMethod_var);
V_2 = (bool)((((int32_t)L_5) == ((int32_t)0))? 1 : 0);
bool L_6 = V_2;
if (!L_6)
{
goto IL_0034;
}
}
{
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * L_7 = (LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 *)il2cpp_codegen_object_new(LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468_il2cpp_TypeInfo_var);
LayoutCache__ctor_mF66D53540321BFD98CA89285D2E8FFDA5014A9CE(L_7, /*hidden argument*/NULL);
V_1 = L_7;
Dictionary_2_t0F1A21E14D53E05B0F1D474060AC4B36995FBCA1 * L_8 = V_0;
int32_t L_9 = ___instanceID0;
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * L_10 = V_1;
NullCheck(L_8);
Dictionary_2_set_Item_mB2CFA325B47C43C9E27C606844FE1AED4CD344A2(L_8, L_9, L_10, /*hidden argument*/Dictionary_2_set_Item_mB2CFA325B47C43C9E27C606844FE1AED4CD344A2_RuntimeMethod_var);
goto IL_0036;
}
IL_0034:
{
}
IL_0036:
{
IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var);
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * L_11 = ((GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var))->get_current_2();
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * L_12 = V_1;
NullCheck(L_12);
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_13 = L_12->get_topLevel_0();
NullCheck(L_11);
L_11->set_topLevel_0(L_13);
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * L_14 = ((GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var))->get_current_2();
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * L_15 = V_1;
NullCheck(L_15);
GenericStack_tC59D21E8DBC50F3C608479C942200AC44CA2D5BC * L_16 = L_15->get_layoutGroups_1();
NullCheck(L_14);
L_14->set_layoutGroups_1(L_16);
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * L_17 = ((GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var))->get_current_2();
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * L_18 = V_1;
NullCheck(L_18);
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_19 = L_18->get_windows_2();
NullCheck(L_17);
L_17->set_windows_2(L_19);
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * L_20 = V_1;
V_3 = L_20;
goto IL_006a;
}
IL_006a:
{
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * L_21 = V_3;
return L_21;
}
}
// System.Void UnityEngine.GUILayoutUtility::Begin(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUILayoutUtility_Begin_m6876A33199599688408A4AD364069090E833B237 (int32_t ___instanceID0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUILayoutUtility_Begin_m6876A33199599688408A4AD364069090E833B237_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * V_0 = NULL;
bool V_1 = false;
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * V_2 = NULL;
{
int32_t L_0 = ___instanceID0;
IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var);
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * L_1 = GUILayoutUtility_SelectIDList_m230ED9206897C92C5B090B3BBFC9B408603E56FD(L_0, (bool)0, /*hidden argument*/NULL);
V_0 = L_1;
Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * L_2 = Event_get_current_m072CEE599D11B8A9A916697E57C0F561188CDB2B(/*hidden argument*/NULL);
NullCheck(L_2);
int32_t L_3 = Event_get_type_mAABE4A35E5658E0079A1518D318AF2592F51D6FA(L_2, /*hidden argument*/NULL);
V_1 = (bool)((((int32_t)L_3) == ((int32_t)8))? 1 : 0);
bool L_4 = V_1;
if (!L_4)
{
goto IL_0078;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var);
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * L_5 = ((GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var))->get_current_2();
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * L_6 = V_0;
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_7 = (GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 *)il2cpp_codegen_object_new(GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601_il2cpp_TypeInfo_var);
GUILayoutGroup__ctor_m14D8B35B4A89F6688D354A534ED871860905BA3B(L_7, /*hidden argument*/NULL);
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_8 = L_7;
V_2 = L_8;
NullCheck(L_6);
L_6->set_topLevel_0(L_8);
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_9 = V_2;
NullCheck(L_5);
L_5->set_topLevel_0(L_9);
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * L_10 = ((GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var))->get_current_2();
NullCheck(L_10);
GenericStack_tC59D21E8DBC50F3C608479C942200AC44CA2D5BC * L_11 = L_10->get_layoutGroups_1();
NullCheck(L_11);
VirtActionInvoker0::Invoke(9 /* System.Void System.Collections.Stack::Clear() */, L_11);
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * L_12 = ((GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var))->get_current_2();
NullCheck(L_12);
GenericStack_tC59D21E8DBC50F3C608479C942200AC44CA2D5BC * L_13 = L_12->get_layoutGroups_1();
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * L_14 = ((GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var))->get_current_2();
NullCheck(L_14);
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_15 = L_14->get_topLevel_0();
NullCheck(L_13);
VirtActionInvoker1< RuntimeObject * >::Invoke(15 /* System.Void System.Collections.Stack::Push(System.Object) */, L_13, L_15);
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * L_16 = ((GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var))->get_current_2();
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * L_17 = V_0;
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_18 = (GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 *)il2cpp_codegen_object_new(GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601_il2cpp_TypeInfo_var);
GUILayoutGroup__ctor_m14D8B35B4A89F6688D354A534ED871860905BA3B(L_18, /*hidden argument*/NULL);
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_19 = L_18;
V_2 = L_19;
NullCheck(L_17);
L_17->set_windows_2(L_19);
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_20 = V_2;
NullCheck(L_16);
L_16->set_windows_2(L_20);
goto IL_00aa;
}
IL_0078:
{
IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var);
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * L_21 = ((GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var))->get_current_2();
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * L_22 = V_0;
NullCheck(L_22);
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_23 = L_22->get_topLevel_0();
NullCheck(L_21);
L_21->set_topLevel_0(L_23);
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * L_24 = ((GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var))->get_current_2();
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * L_25 = V_0;
NullCheck(L_25);
GenericStack_tC59D21E8DBC50F3C608479C942200AC44CA2D5BC * L_26 = L_25->get_layoutGroups_1();
NullCheck(L_24);
L_24->set_layoutGroups_1(L_26);
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * L_27 = ((GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var))->get_current_2();
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * L_28 = V_0;
NullCheck(L_28);
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_29 = L_28->get_windows_2();
NullCheck(L_27);
L_27->set_windows_2(L_29);
}
IL_00aa:
{
return;
}
}
// System.Void UnityEngine.GUILayoutUtility::BeginWindow(System.Int32,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUILayoutUtility_BeginWindow_mB3475D9BE89CF26AB0E6F0D46B1930F1874EB132 (int32_t ___windowID0, GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___style1, GUILayoutOptionU5BU5D_tAB2AD0A365DBD2277A04E397AE8E1430A022AF1B* ___options2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUILayoutUtility_BeginWindow_mB3475D9BE89CF26AB0E6F0D46B1930F1874EB132_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * V_0 = NULL;
bool V_1 = false;
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * V_2 = NULL;
bool V_3 = false;
{
int32_t L_0 = ___windowID0;
IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var);
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * L_1 = GUILayoutUtility_SelectIDList_m230ED9206897C92C5B090B3BBFC9B408603E56FD(L_0, (bool)1, /*hidden argument*/NULL);
V_0 = L_1;
Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * L_2 = Event_get_current_m072CEE599D11B8A9A916697E57C0F561188CDB2B(/*hidden argument*/NULL);
NullCheck(L_2);
int32_t L_3 = Event_get_type_mAABE4A35E5658E0079A1518D318AF2592F51D6FA(L_2, /*hidden argument*/NULL);
V_1 = (bool)((((int32_t)L_3) == ((int32_t)8))? 1 : 0);
bool L_4 = V_1;
if (!L_4)
{
goto IL_00b5;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var);
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * L_5 = ((GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var))->get_current_2();
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * L_6 = V_0;
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_7 = (GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 *)il2cpp_codegen_object_new(GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601_il2cpp_TypeInfo_var);
GUILayoutGroup__ctor_m14D8B35B4A89F6688D354A534ED871860905BA3B(L_7, /*hidden argument*/NULL);
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_8 = L_7;
V_2 = L_8;
NullCheck(L_6);
L_6->set_topLevel_0(L_8);
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_9 = V_2;
NullCheck(L_5);
L_5->set_topLevel_0(L_9);
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * L_10 = ((GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var))->get_current_2();
NullCheck(L_10);
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_11 = L_10->get_topLevel_0();
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_12 = ___style1;
NullCheck(L_11);
GUILayoutEntry_set_style_mEDD232A6CDB1B76ABC33EA06A05235316A180E2D(L_11, L_12, /*hidden argument*/NULL);
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * L_13 = ((GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var))->get_current_2();
NullCheck(L_13);
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_14 = L_13->get_topLevel_0();
int32_t L_15 = ___windowID0;
NullCheck(L_14);
L_14->set_windowID_17(L_15);
GUILayoutOptionU5BU5D_tAB2AD0A365DBD2277A04E397AE8E1430A022AF1B* L_16 = ___options2;
V_3 = (bool)((!(((RuntimeObject*)(GUILayoutOptionU5BU5D_tAB2AD0A365DBD2277A04E397AE8E1430A022AF1B*)L_16) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
bool L_17 = V_3;
if (!L_17)
{
goto IL_0070;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var);
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * L_18 = ((GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var))->get_current_2();
NullCheck(L_18);
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_19 = L_18->get_topLevel_0();
GUILayoutOptionU5BU5D_tAB2AD0A365DBD2277A04E397AE8E1430A022AF1B* L_20 = ___options2;
NullCheck(L_19);
VirtActionInvoker1< GUILayoutOptionU5BU5D_tAB2AD0A365DBD2277A04E397AE8E1430A022AF1B* >::Invoke(13 /* System.Void UnityEngine.GUILayoutEntry::ApplyOptions(UnityEngine.GUILayoutOption[]) */, L_19, L_20);
}
IL_0070:
{
IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var);
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * L_21 = ((GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var))->get_current_2();
NullCheck(L_21);
GenericStack_tC59D21E8DBC50F3C608479C942200AC44CA2D5BC * L_22 = L_21->get_layoutGroups_1();
NullCheck(L_22);
VirtActionInvoker0::Invoke(9 /* System.Void System.Collections.Stack::Clear() */, L_22);
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * L_23 = ((GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var))->get_current_2();
NullCheck(L_23);
GenericStack_tC59D21E8DBC50F3C608479C942200AC44CA2D5BC * L_24 = L_23->get_layoutGroups_1();
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * L_25 = ((GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var))->get_current_2();
NullCheck(L_25);
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_26 = L_25->get_topLevel_0();
NullCheck(L_24);
VirtActionInvoker1< RuntimeObject * >::Invoke(15 /* System.Void System.Collections.Stack::Push(System.Object) */, L_24, L_26);
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * L_27 = ((GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var))->get_current_2();
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * L_28 = V_0;
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_29 = (GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 *)il2cpp_codegen_object_new(GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601_il2cpp_TypeInfo_var);
GUILayoutGroup__ctor_m14D8B35B4A89F6688D354A534ED871860905BA3B(L_29, /*hidden argument*/NULL);
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_30 = L_29;
V_2 = L_30;
NullCheck(L_28);
L_28->set_windows_2(L_30);
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_31 = V_2;
NullCheck(L_27);
L_27->set_windows_2(L_31);
goto IL_00e7;
}
IL_00b5:
{
IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var);
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * L_32 = ((GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var))->get_current_2();
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * L_33 = V_0;
NullCheck(L_33);
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_34 = L_33->get_topLevel_0();
NullCheck(L_32);
L_32->set_topLevel_0(L_34);
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * L_35 = ((GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var))->get_current_2();
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * L_36 = V_0;
NullCheck(L_36);
GenericStack_tC59D21E8DBC50F3C608479C942200AC44CA2D5BC * L_37 = L_36->get_layoutGroups_1();
NullCheck(L_35);
L_35->set_layoutGroups_1(L_37);
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * L_38 = ((GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var))->get_current_2();
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * L_39 = V_0;
NullCheck(L_39);
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_40 = L_39->get_windows_2();
NullCheck(L_38);
L_38->set_windows_2(L_40);
}
IL_00e7:
{
return;
}
}
// System.Void UnityEngine.GUILayoutUtility::Layout()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUILayoutUtility_Layout_mB01F00635FD538214B47A545C53E4F8C682491B5 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUILayoutUtility_Layout_mB01F00635FD538214B47A545C53E4F8C682491B5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var);
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * L_0 = ((GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var))->get_current_2();
NullCheck(L_0);
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_1 = L_0->get_topLevel_0();
NullCheck(L_1);
int32_t L_2 = L_1->get_windowID_17();
V_0 = (bool)((((int32_t)L_2) == ((int32_t)(-1)))? 1 : 0);
bool L_3 = V_0;
if (!L_3)
{
goto IL_00b8;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var);
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * L_4 = ((GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var))->get_current_2();
NullCheck(L_4);
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_5 = L_4->get_topLevel_0();
NullCheck(L_5);
VirtActionInvoker0::Invoke(8 /* System.Void UnityEngine.GUILayoutEntry::CalcWidth() */, L_5);
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * L_6 = ((GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var))->get_current_2();
NullCheck(L_6);
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_7 = L_6->get_topLevel_0();
int32_t L_8 = Screen_get_width_m8ECCEF7FF17395D1237BC0193D7A6640A3FEEAD3(/*hidden argument*/NULL);
float L_9 = GUIUtility_get_pixelsPerPoint_m6B4AB38F60A0AC54034A62043F74E06A613E4D56(/*hidden argument*/NULL);
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * L_10 = ((GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var))->get_current_2();
NullCheck(L_10);
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_11 = L_10->get_topLevel_0();
NullCheck(L_11);
float L_12 = ((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)L_11)->get_maxWidth_1();
IL2CPP_RUNTIME_CLASS_INIT(Mathf_tFBDE6467D269BFE410605C7D806FD9991D4A89CB_il2cpp_TypeInfo_var);
float L_13 = Mathf_Min_mCF9BE0E9CAC9F18D207692BB2DAC7F3E1D4E1CB7(((float)((float)(((float)((float)L_8)))/(float)L_9)), L_12, /*hidden argument*/NULL);
NullCheck(L_7);
VirtActionInvoker2< float, float >::Invoke(10 /* System.Void UnityEngine.GUILayoutEntry::SetHorizontal(System.Single,System.Single) */, L_7, (0.0f), L_13);
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * L_14 = ((GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var))->get_current_2();
NullCheck(L_14);
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_15 = L_14->get_topLevel_0();
NullCheck(L_15);
VirtActionInvoker0::Invoke(9 /* System.Void UnityEngine.GUILayoutEntry::CalcHeight() */, L_15);
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * L_16 = ((GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var))->get_current_2();
NullCheck(L_16);
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_17 = L_16->get_topLevel_0();
int32_t L_18 = Screen_get_height_mF5B64EBC4CDE0EAAA5713C1452ED2CE475F25150(/*hidden argument*/NULL);
float L_19 = GUIUtility_get_pixelsPerPoint_m6B4AB38F60A0AC54034A62043F74E06A613E4D56(/*hidden argument*/NULL);
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * L_20 = ((GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var))->get_current_2();
NullCheck(L_20);
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_21 = L_20->get_topLevel_0();
NullCheck(L_21);
float L_22 = ((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)L_21)->get_maxHeight_3();
float L_23 = Mathf_Min_mCF9BE0E9CAC9F18D207692BB2DAC7F3E1D4E1CB7(((float)((float)(((float)((float)L_18)))/(float)L_19)), L_22, /*hidden argument*/NULL);
NullCheck(L_17);
VirtActionInvoker2< float, float >::Invoke(11 /* System.Void UnityEngine.GUILayoutEntry::SetVertical(System.Single,System.Single) */, L_17, (0.0f), L_23);
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * L_24 = ((GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var))->get_current_2();
NullCheck(L_24);
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_25 = L_24->get_windows_2();
GUILayoutUtility_LayoutFreeGroup_m890E6BD9614C48B151D61F197251E3DBAC637967(L_25, /*hidden argument*/NULL);
goto IL_00da;
}
IL_00b8:
{
IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var);
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * L_26 = ((GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var))->get_current_2();
NullCheck(L_26);
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_27 = L_26->get_topLevel_0();
GUILayoutUtility_LayoutSingleGroup_m0BE91E195E4E2FC8B5B491783AFACBD1310F15A1(L_27, /*hidden argument*/NULL);
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * L_28 = ((GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var))->get_current_2();
NullCheck(L_28);
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_29 = L_28->get_windows_2();
GUILayoutUtility_LayoutFreeGroup_m890E6BD9614C48B151D61F197251E3DBAC637967(L_29, /*hidden argument*/NULL);
}
IL_00da:
{
return;
}
}
// System.Void UnityEngine.GUILayoutUtility::LayoutFromEditorWindow()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUILayoutUtility_LayoutFromEditorWindow_mBE82BE965B54F68E7090952684C86BFF0538AB52 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUILayoutUtility_LayoutFromEditorWindow_mBE82BE965B54F68E7090952684C86BFF0538AB52_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var);
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * L_0 = ((GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var))->get_current_2();
NullCheck(L_0);
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_1 = L_0->get_topLevel_0();
V_0 = (bool)((!(((RuntimeObject*)(GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 *)L_1) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
bool L_2 = V_0;
if (!L_2)
{
goto IL_0088;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var);
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * L_3 = ((GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var))->get_current_2();
NullCheck(L_3);
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_4 = L_3->get_topLevel_0();
NullCheck(L_4);
VirtActionInvoker0::Invoke(8 /* System.Void UnityEngine.GUILayoutEntry::CalcWidth() */, L_4);
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * L_5 = ((GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var))->get_current_2();
NullCheck(L_5);
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_6 = L_5->get_topLevel_0();
int32_t L_7 = Screen_get_width_m8ECCEF7FF17395D1237BC0193D7A6640A3FEEAD3(/*hidden argument*/NULL);
float L_8 = GUIUtility_get_pixelsPerPoint_m6B4AB38F60A0AC54034A62043F74E06A613E4D56(/*hidden argument*/NULL);
NullCheck(L_6);
VirtActionInvoker2< float, float >::Invoke(10 /* System.Void UnityEngine.GUILayoutEntry::SetHorizontal(System.Single,System.Single) */, L_6, (0.0f), ((float)((float)(((float)((float)L_7)))/(float)L_8)));
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * L_9 = ((GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var))->get_current_2();
NullCheck(L_9);
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_10 = L_9->get_topLevel_0();
NullCheck(L_10);
VirtActionInvoker0::Invoke(9 /* System.Void UnityEngine.GUILayoutEntry::CalcHeight() */, L_10);
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * L_11 = ((GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var))->get_current_2();
NullCheck(L_11);
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_12 = L_11->get_topLevel_0();
int32_t L_13 = Screen_get_height_mF5B64EBC4CDE0EAAA5713C1452ED2CE475F25150(/*hidden argument*/NULL);
float L_14 = GUIUtility_get_pixelsPerPoint_m6B4AB38F60A0AC54034A62043F74E06A613E4D56(/*hidden argument*/NULL);
NullCheck(L_12);
VirtActionInvoker2< float, float >::Invoke(11 /* System.Void UnityEngine.GUILayoutEntry::SetVertical(System.Single,System.Single) */, L_12, (0.0f), ((float)((float)(((float)((float)L_13)))/(float)L_14)));
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * L_15 = ((GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var))->get_current_2();
NullCheck(L_15);
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_16 = L_15->get_windows_2();
GUILayoutUtility_LayoutFreeGroup_m890E6BD9614C48B151D61F197251E3DBAC637967(L_16, /*hidden argument*/NULL);
goto IL_0095;
}
IL_0088:
{
IL2CPP_RUNTIME_CLASS_INIT(Debug_t7B5FCB117E2FD63B6838BC52821B252E2BFB61C4_il2cpp_TypeInfo_var);
Debug_LogError_m3BCF9B78263152261565DCA9DB7D55F0C391ED29(_stringLiteral8CE379368AB8E774A4F51BE28DD637628F20DA93, /*hidden argument*/NULL);
}
IL_0095:
{
return;
}
}
// System.Void UnityEngine.GUILayoutUtility::LayoutFreeGroup(UnityEngine.GUILayoutGroup)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUILayoutUtility_LayoutFreeGroup_m890E6BD9614C48B151D61F197251E3DBAC637967 (GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * ___toplevel0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUILayoutUtility_LayoutFreeGroup_m890E6BD9614C48B151D61F197251E3DBAC637967_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 V_0;
memset((&V_0), 0, sizeof(V_0));
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * 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);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_0 = ___toplevel0;
NullCheck(L_0);
List_1_t046427F3923444CF746C550FD96A3D0E4189D273 * L_1 = L_0->get_entries_11();
NullCheck(L_1);
Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 L_2 = List_1_GetEnumerator_mA457B3CB61E2B7BAFB0F7D0ADEFD25237B4429DF(L_1, /*hidden argument*/List_1_GetEnumerator_mA457B3CB61E2B7BAFB0F7D0ADEFD25237B4429DF_RuntimeMethod_var);
V_0 = L_2;
}
IL_000e:
try
{ // begin try (depth: 1)
{
goto IL_0026;
}
IL_0010:
{
GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 * L_3 = Enumerator_get_Current_m9422C22943D0E9900CDB7DF407D9EBE215B2A6B6_inline((Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 *)(&V_0), /*hidden argument*/Enumerator_get_Current_m9422C22943D0E9900CDB7DF407D9EBE215B2A6B6_RuntimeMethod_var);
V_1 = ((GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 *)CastclassClass((RuntimeObject*)L_3, GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601_il2cpp_TypeInfo_var));
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_4 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var);
GUILayoutUtility_LayoutSingleGroup_m0BE91E195E4E2FC8B5B491783AFACBD1310F15A1(L_4, /*hidden argument*/NULL);
}
IL_0026:
{
bool L_5 = Enumerator_MoveNext_m3A0A0A98E9378A32A74EC51C4CAB6C564001CAC7((Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 *)(&V_0), /*hidden argument*/Enumerator_MoveNext_m3A0A0A98E9378A32A74EC51C4CAB6C564001CAC7_RuntimeMethod_var);
if (L_5)
{
goto IL_0010;
}
}
IL_002f:
{
IL2CPP_LEAVE(0x40, FINALLY_0031);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0031;
}
FINALLY_0031:
{ // begin finally (depth: 1)
Enumerator_Dispose_mB540C90AE8EBE0EB3D63A6ACE5EC863FAD1419B2((Enumerator_t4D01DB2C4CF53D79BD58A10640F59CBCF1354587 *)(&V_0), /*hidden argument*/Enumerator_Dispose_mB540C90AE8EBE0EB3D63A6ACE5EC863FAD1419B2_RuntimeMethod_var);
IL2CPP_END_FINALLY(49)
} // end finally (depth: 1)
IL2CPP_CLEANUP(49)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x40, IL_0040)
}
IL_0040:
{
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_6 = ___toplevel0;
NullCheck(L_6);
GUILayoutGroup_ResetCursor_mD159DD9E101F6F348249D27D95709E1DC5C0A13F(L_6, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.GUILayoutUtility::LayoutSingleGroup(UnityEngine.GUILayoutGroup)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUILayoutUtility_LayoutSingleGroup_m0BE91E195E4E2FC8B5B491783AFACBD1310F15A1 (GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * ___i0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUILayoutUtility_LayoutSingleGroup_m0BE91E195E4E2FC8B5B491783AFACBD1310F15A1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
float V_1 = 0.0f;
float V_2 = 0.0f;
float V_3 = 0.0f;
float V_4 = 0.0f;
Rect_t35B976DE901B5423C11705E156938EA27AB402CE V_5;
memset((&V_5), 0, sizeof(V_5));
{
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_0 = ___i0;
NullCheck(L_0);
bool L_1 = L_0->get_isWindow_16();
V_0 = (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0);
bool L_2 = V_0;
if (!L_2)
{
goto IL_007c;
}
}
{
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_3 = ___i0;
NullCheck(L_3);
float L_4 = ((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)L_3)->get_minWidth_0();
V_1 = L_4;
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_5 = ___i0;
NullCheck(L_5);
float L_6 = ((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)L_5)->get_maxWidth_1();
V_2 = L_6;
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_7 = ___i0;
NullCheck(L_7);
VirtActionInvoker0::Invoke(8 /* System.Void UnityEngine.GUILayoutEntry::CalcWidth() */, L_7);
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_8 = ___i0;
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_9 = ___i0;
NullCheck(L_9);
Rect_t35B976DE901B5423C11705E156938EA27AB402CE * L_10 = ((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)L_9)->get_address_of_rect_4();
float L_11 = Rect_get_x_mC51A461F546D14832EB96B11A7198DADDE2597B7((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)L_10, /*hidden argument*/NULL);
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_12 = ___i0;
NullCheck(L_12);
float L_13 = ((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)L_12)->get_maxWidth_1();
float L_14 = V_1;
float L_15 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(Mathf_tFBDE6467D269BFE410605C7D806FD9991D4A89CB_il2cpp_TypeInfo_var);
float L_16 = Mathf_Clamp_m033DD894F89E6DCCDAFC580091053059C86A4507(L_13, L_14, L_15, /*hidden argument*/NULL);
NullCheck(L_8);
VirtActionInvoker2< float, float >::Invoke(10 /* System.Void UnityEngine.GUILayoutEntry::SetHorizontal(System.Single,System.Single) */, L_8, L_11, L_16);
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_17 = ___i0;
NullCheck(L_17);
float L_18 = ((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)L_17)->get_minHeight_2();
V_3 = L_18;
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_19 = ___i0;
NullCheck(L_19);
float L_20 = ((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)L_19)->get_maxHeight_3();
V_4 = L_20;
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_21 = ___i0;
NullCheck(L_21);
VirtActionInvoker0::Invoke(9 /* System.Void UnityEngine.GUILayoutEntry::CalcHeight() */, L_21);
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_22 = ___i0;
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_23 = ___i0;
NullCheck(L_23);
Rect_t35B976DE901B5423C11705E156938EA27AB402CE * L_24 = ((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)L_23)->get_address_of_rect_4();
float L_25 = Rect_get_y_m53E3E4F62D9840FBEA751A66293038F1F5D1D45C((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)L_24, /*hidden argument*/NULL);
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_26 = ___i0;
NullCheck(L_26);
float L_27 = ((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)L_26)->get_maxHeight_3();
float L_28 = V_3;
float L_29 = V_4;
float L_30 = Mathf_Clamp_m033DD894F89E6DCCDAFC580091053059C86A4507(L_27, L_28, L_29, /*hidden argument*/NULL);
NullCheck(L_22);
VirtActionInvoker2< float, float >::Invoke(11 /* System.Void UnityEngine.GUILayoutEntry::SetVertical(System.Single,System.Single) */, L_22, L_25, L_30);
goto IL_00f7;
}
IL_007c:
{
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_31 = ___i0;
NullCheck(L_31);
VirtActionInvoker0::Invoke(8 /* System.Void UnityEngine.GUILayoutEntry::CalcWidth() */, L_31);
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_32 = ___i0;
NullCheck(L_32);
int32_t L_33 = L_32->get_windowID_17();
IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var);
Rect_t35B976DE901B5423C11705E156938EA27AB402CE L_34 = GUILayoutUtility_Internal_GetWindowRect_mE35BED0433EE8BD928CD52681620519E647A1DA9(L_33, /*hidden argument*/NULL);
V_5 = L_34;
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_35 = ___i0;
float L_36 = Rect_get_x_mC51A461F546D14832EB96B11A7198DADDE2597B7((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)(&V_5), /*hidden argument*/NULL);
float L_37 = Rect_get_width_m54FF69FC2C086E2DC349ED091FD0D6576BFB1484((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)(&V_5), /*hidden argument*/NULL);
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_38 = ___i0;
NullCheck(L_38);
float L_39 = ((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)L_38)->get_minWidth_0();
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_40 = ___i0;
NullCheck(L_40);
float L_41 = ((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)L_40)->get_maxWidth_1();
IL2CPP_RUNTIME_CLASS_INIT(Mathf_tFBDE6467D269BFE410605C7D806FD9991D4A89CB_il2cpp_TypeInfo_var);
float L_42 = Mathf_Clamp_m033DD894F89E6DCCDAFC580091053059C86A4507(L_37, L_39, L_41, /*hidden argument*/NULL);
NullCheck(L_35);
VirtActionInvoker2< float, float >::Invoke(10 /* System.Void UnityEngine.GUILayoutEntry::SetHorizontal(System.Single,System.Single) */, L_35, L_36, L_42);
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_43 = ___i0;
NullCheck(L_43);
VirtActionInvoker0::Invoke(9 /* System.Void UnityEngine.GUILayoutEntry::CalcHeight() */, L_43);
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_44 = ___i0;
float L_45 = Rect_get_y_m53E3E4F62D9840FBEA751A66293038F1F5D1D45C((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)(&V_5), /*hidden argument*/NULL);
float L_46 = Rect_get_height_m088C36990E0A255C5D7DCE36575DCE23ABB364B5((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)(&V_5), /*hidden argument*/NULL);
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_47 = ___i0;
NullCheck(L_47);
float L_48 = ((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)L_47)->get_minHeight_2();
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_49 = ___i0;
NullCheck(L_49);
float L_50 = ((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)L_49)->get_maxHeight_3();
float L_51 = Mathf_Clamp_m033DD894F89E6DCCDAFC580091053059C86A4507(L_46, L_48, L_50, /*hidden argument*/NULL);
NullCheck(L_44);
VirtActionInvoker2< float, float >::Invoke(11 /* System.Void UnityEngine.GUILayoutEntry::SetVertical(System.Single,System.Single) */, L_44, L_45, L_51);
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_52 = ___i0;
NullCheck(L_52);
int32_t L_53 = L_52->get_windowID_17();
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_54 = ___i0;
NullCheck(L_54);
Rect_t35B976DE901B5423C11705E156938EA27AB402CE L_55 = ((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)L_54)->get_rect_4();
GUILayoutUtility_Internal_MoveWindow_mFCB2DFE399B833D263138CF0A57626AFF52CB037(L_53, L_55, /*hidden argument*/NULL);
}
IL_00f7:
{
return;
}
}
// System.Void UnityEngine.GUILayoutUtility::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUILayoutUtility__cctor_m6C436C771D62B8982AE0E47DD5D41C607988395F (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUILayoutUtility__cctor_m6C436C771D62B8982AE0E47DD5D41C607988395F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Dictionary_2_t0F1A21E14D53E05B0F1D474060AC4B36995FBCA1 * L_0 = (Dictionary_2_t0F1A21E14D53E05B0F1D474060AC4B36995FBCA1 *)il2cpp_codegen_object_new(Dictionary_2_t0F1A21E14D53E05B0F1D474060AC4B36995FBCA1_il2cpp_TypeInfo_var);
Dictionary_2__ctor_mD9286F4A0EF1BEC0B6BC4BD72D8D6A246B994EBF(L_0, /*hidden argument*/Dictionary_2__ctor_mD9286F4A0EF1BEC0B6BC4BD72D8D6A246B994EBF_RuntimeMethod_var);
((GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var))->set_s_StoredLayouts_0(L_0);
Dictionary_2_t0F1A21E14D53E05B0F1D474060AC4B36995FBCA1 * L_1 = (Dictionary_2_t0F1A21E14D53E05B0F1D474060AC4B36995FBCA1 *)il2cpp_codegen_object_new(Dictionary_2_t0F1A21E14D53E05B0F1D474060AC4B36995FBCA1_il2cpp_TypeInfo_var);
Dictionary_2__ctor_mD9286F4A0EF1BEC0B6BC4BD72D8D6A246B994EBF(L_1, /*hidden argument*/Dictionary_2__ctor_mD9286F4A0EF1BEC0B6BC4BD72D8D6A246B994EBF_RuntimeMethod_var);
((GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var))->set_s_StoredWindows_1(L_1);
LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * L_2 = (LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 *)il2cpp_codegen_object_new(LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468_il2cpp_TypeInfo_var);
LayoutCache__ctor_mF66D53540321BFD98CA89285D2E8FFDA5014A9CE(L_2, /*hidden argument*/NULL);
((GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var))->set_current_2(L_2);
Rect_t35B976DE901B5423C11705E156938EA27AB402CE L_3;
memset((&L_3), 0, sizeof(L_3));
Rect__ctor_m50B92C75005C9C5A0D05E6E0EBB43AFAF7C66280((&L_3), (0.0f), (0.0f), (1.0f), (1.0f), /*hidden argument*/NULL);
((GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_StaticFields*)il2cpp_codegen_static_fields_for(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var))->set_kDummyRect_3(L_3);
return;
}
}
// System.Void UnityEngine.GUILayoutUtility::Internal_GetWindowRect_Injected(System.Int32,UnityEngine.Rect&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUILayoutUtility_Internal_GetWindowRect_Injected_mE78DA4F8B25471CEFFCB6F43E37C7966FE436EEE (int32_t ___windowID0, Rect_t35B976DE901B5423C11705E156938EA27AB402CE * ___ret1, const RuntimeMethod* method)
{
typedef void (*GUILayoutUtility_Internal_GetWindowRect_Injected_mE78DA4F8B25471CEFFCB6F43E37C7966FE436EEE_ftn) (int32_t, Rect_t35B976DE901B5423C11705E156938EA27AB402CE *);
static GUILayoutUtility_Internal_GetWindowRect_Injected_mE78DA4F8B25471CEFFCB6F43E37C7966FE436EEE_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (GUILayoutUtility_Internal_GetWindowRect_Injected_mE78DA4F8B25471CEFFCB6F43E37C7966FE436EEE_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.GUILayoutUtility::Internal_GetWindowRect_Injected(System.Int32,UnityEngine.Rect&)");
_il2cpp_icall_func(___windowID0, ___ret1);
}
// System.Void UnityEngine.GUILayoutUtility::Internal_MoveWindow_Injected(System.Int32,UnityEngine.Rect&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUILayoutUtility_Internal_MoveWindow_Injected_mD80D56182A5684AC3BDA2B50AC8191974A064ABE (int32_t ___windowID0, Rect_t35B976DE901B5423C11705E156938EA27AB402CE * ___r1, const RuntimeMethod* method)
{
typedef void (*GUILayoutUtility_Internal_MoveWindow_Injected_mD80D56182A5684AC3BDA2B50AC8191974A064ABE_ftn) (int32_t, Rect_t35B976DE901B5423C11705E156938EA27AB402CE *);
static GUILayoutUtility_Internal_MoveWindow_Injected_mD80D56182A5684AC3BDA2B50AC8191974A064ABE_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (GUILayoutUtility_Internal_MoveWindow_Injected_mD80D56182A5684AC3BDA2B50AC8191974A064ABE_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.GUILayoutUtility::Internal_MoveWindow_Injected(System.Int32,UnityEngine.Rect&)");
_il2cpp_icall_func(___windowID0, ___r1);
}
#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 UnityEngine.GUILayoutUtility_LayoutCache::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LayoutCache__ctor_mF66D53540321BFD98CA89285D2E8FFDA5014A9CE (LayoutCache_t0D14FE6139444D164ECA5D31E39E625D80077468 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LayoutCache__ctor_mF66D53540321BFD98CA89285D2E8FFDA5014A9CE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_0 = (GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 *)il2cpp_codegen_object_new(GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601_il2cpp_TypeInfo_var);
GUILayoutGroup__ctor_m14D8B35B4A89F6688D354A534ED871860905BA3B(L_0, /*hidden argument*/NULL);
__this->set_topLevel_0(L_0);
GenericStack_tC59D21E8DBC50F3C608479C942200AC44CA2D5BC * L_1 = (GenericStack_tC59D21E8DBC50F3C608479C942200AC44CA2D5BC *)il2cpp_codegen_object_new(GenericStack_tC59D21E8DBC50F3C608479C942200AC44CA2D5BC_il2cpp_TypeInfo_var);
GenericStack__ctor_m0659B84DB6B093AF1F01F566686C510DDEEAE848(L_1, /*hidden argument*/NULL);
__this->set_layoutGroups_1(L_1);
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_2 = (GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 *)il2cpp_codegen_object_new(GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601_il2cpp_TypeInfo_var);
GUILayoutGroup__ctor_m14D8B35B4A89F6688D354A534ED871860905BA3B(L_2, /*hidden argument*/NULL);
__this->set_windows_2(L_2);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
GenericStack_tC59D21E8DBC50F3C608479C942200AC44CA2D5BC * L_3 = __this->get_layoutGroups_1();
GUILayoutGroup_tCC791055AD03074C1257B699304E4B45C97DE601 * L_4 = __this->get_topLevel_0();
NullCheck(L_3);
VirtActionInvoker1< RuntimeObject * >::Invoke(15 /* System.Void System.Collections.Stack::Push(System.Object) */, L_3, L_4);
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.Void UnityEngine.GUIScrollGroup::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIScrollGroup__ctor_m02640E287AFD4B19EA03F7867247ED9D0836F41D (GUIScrollGroup_tF7FE45226FB28968F68A8D2428FE9EA7DC5B18EE * __this, const RuntimeMethod* method)
{
{
__this->set_allowHorizontalScroll_37((bool)1);
__this->set_allowVerticalScroll_38((bool)1);
GUILayoutGroup__ctor_m14D8B35B4A89F6688D354A534ED871860905BA3B(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.GUIScrollGroup::CalcWidth()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIScrollGroup_CalcWidth_mA061AA4FA5BDE43DF862D57E7BF7C2A13147AA86 (GUIScrollGroup_tF7FE45226FB28968F68A8D2428FE9EA7DC5B18EE * __this, const RuntimeMethod* method)
{
float V_0 = 0.0f;
float V_1 = 0.0f;
bool V_2 = false;
bool V_3 = false;
bool V_4 = false;
bool V_5 = false;
bool V_6 = false;
{
float L_0 = ((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->get_minWidth_0();
V_0 = L_0;
float L_1 = ((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->get_maxWidth_1();
V_1 = L_1;
bool L_2 = __this->get_allowHorizontalScroll_37();
V_2 = L_2;
bool L_3 = V_2;
if (!L_3)
{
goto IL_0031;
}
}
{
((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->set_minWidth_0((0.0f));
((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->set_maxWidth_1((0.0f));
}
IL_0031:
{
GUILayoutGroup_CalcWidth_m0D2819C659392B14175C2B163DD889AD35794A9B(__this, /*hidden argument*/NULL);
float L_4 = ((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->get_minWidth_0();
__this->set_calcMinWidth_31(L_4);
float L_5 = ((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->get_maxWidth_1();
__this->set_calcMaxWidth_32(L_5);
bool L_6 = __this->get_allowHorizontalScroll_37();
V_3 = L_6;
bool L_7 = V_3;
if (!L_7)
{
goto IL_00b3;
}
}
{
float L_8 = ((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->get_minWidth_0();
V_4 = (bool)((((float)L_8) > ((float)(32.0f)))? 1 : 0);
bool L_9 = V_4;
if (!L_9)
{
goto IL_0079;
}
}
{
((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->set_minWidth_0((32.0f));
}
IL_0079:
{
float L_10 = V_0;
V_5 = (bool)((((int32_t)((((float)L_10) == ((float)(0.0f)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_11 = V_5;
if (!L_11)
{
goto IL_0091;
}
}
{
float L_12 = V_0;
((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->set_minWidth_0(L_12);
}
IL_0091:
{
float L_13 = V_1;
V_6 = (bool)((((int32_t)((((float)L_13) == ((float)(0.0f)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_14 = V_6;
if (!L_14)
{
goto IL_00b2;
}
}
{
float L_15 = V_1;
((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->set_maxWidth_1(L_15);
((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->set_stretchWidth_5(0);
}
IL_00b2:
{
}
IL_00b3:
{
return;
}
}
// System.Void UnityEngine.GUIScrollGroup::SetHorizontal(System.Single,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIScrollGroup_SetHorizontal_m89C0FEDC0F240656C2E692503321EFFF6E6107DA (GUIScrollGroup_tF7FE45226FB28968F68A8D2428FE9EA7DC5B18EE * __this, float ___x0, float ___width1, const RuntimeMethod* method)
{
float V_0 = 0.0f;
bool V_1 = false;
bool V_2 = false;
float G_B3_0 = 0.0f;
int32_t G_B6_0 = 0;
{
bool L_0 = __this->get_needsVerticalScrollbar_40();
if (L_0)
{
goto IL_000c;
}
}
{
float L_1 = ___width1;
G_B3_0 = L_1;
goto IL_002b;
}
IL_000c:
{
float L_2 = ___width1;
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_3 = __this->get_verticalScrollbar_42();
NullCheck(L_3);
float L_4 = GUIStyle_get_fixedWidth_mEACB70758F83DCD64CE363143849CC40E49B8D8D(L_3, /*hidden argument*/NULL);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_5 = __this->get_verticalScrollbar_42();
NullCheck(L_5);
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * L_6 = GUIStyle_get_margin_mFC3EA0FA030A6334AC03BDDFA4AC80419C9E5BAA(L_5, /*hidden argument*/NULL);
NullCheck(L_6);
int32_t L_7 = RectOffset_get_left_mA86EC00866C1940134873E3A1565A1F700DE67AD(L_6, /*hidden argument*/NULL);
G_B3_0 = ((float)il2cpp_codegen_subtract((float)((float)il2cpp_codegen_subtract((float)L_2, (float)L_4)), (float)(((float)((float)L_7)))));
}
IL_002b:
{
V_0 = G_B3_0;
bool L_8 = __this->get_allowHorizontalScroll_37();
if (!L_8)
{
goto IL_003f;
}
}
{
float L_9 = V_0;
float L_10 = __this->get_calcMinWidth_31();
G_B6_0 = ((((float)L_9) < ((float)L_10))? 1 : 0);
goto IL_0040;
}
IL_003f:
{
G_B6_0 = 0;
}
IL_0040:
{
V_1 = (bool)G_B6_0;
bool L_11 = V_1;
if (!L_11)
{
goto IL_008e;
}
}
{
__this->set_needsHorizontalScrollbar_39((bool)1);
float L_12 = __this->get_calcMinWidth_31();
((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->set_minWidth_0(L_12);
float L_13 = __this->get_calcMaxWidth_32();
((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->set_maxWidth_1(L_13);
float L_14 = ___x0;
float L_15 = __this->get_calcMinWidth_31();
GUILayoutGroup_SetHorizontal_m0AFB617E7BB6B32431BA65873B27660E6E5C9E51(__this, L_14, L_15, /*hidden argument*/NULL);
Rect_t35B976DE901B5423C11705E156938EA27AB402CE * L_16 = ((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->get_address_of_rect_4();
float L_17 = ___width1;
Rect_set_width_mC81EF602AC91E0C615C12FCE060254A461A152B8((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)L_16, L_17, /*hidden argument*/NULL);
float L_18 = __this->get_calcMinWidth_31();
__this->set_clientWidth_35(L_18);
goto IL_00d8;
}
IL_008e:
{
__this->set_needsHorizontalScrollbar_39((bool)0);
bool L_19 = __this->get_allowHorizontalScroll_37();
V_2 = L_19;
bool L_20 = V_2;
if (!L_20)
{
goto IL_00ba;
}
}
{
float L_21 = __this->get_calcMinWidth_31();
((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->set_minWidth_0(L_21);
float L_22 = __this->get_calcMaxWidth_32();
((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->set_maxWidth_1(L_22);
}
IL_00ba:
{
float L_23 = ___x0;
float L_24 = V_0;
GUILayoutGroup_SetHorizontal_m0AFB617E7BB6B32431BA65873B27660E6E5C9E51(__this, L_23, L_24, /*hidden argument*/NULL);
Rect_t35B976DE901B5423C11705E156938EA27AB402CE * L_25 = ((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->get_address_of_rect_4();
float L_26 = ___width1;
Rect_set_width_mC81EF602AC91E0C615C12FCE060254A461A152B8((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)L_25, L_26, /*hidden argument*/NULL);
float L_27 = V_0;
__this->set_clientWidth_35(L_27);
}
IL_00d8:
{
return;
}
}
// System.Void UnityEngine.GUIScrollGroup::CalcHeight()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIScrollGroup_CalcHeight_mD3A3C0B44A1E4DC567D1E8C20A68E1DD786EC196 (GUIScrollGroup_tF7FE45226FB28968F68A8D2428FE9EA7DC5B18EE * __this, const RuntimeMethod* method)
{
float V_0 = 0.0f;
float V_1 = 0.0f;
bool V_2 = false;
bool V_3 = false;
float V_4 = 0.0f;
bool V_5 = false;
bool V_6 = false;
bool V_7 = false;
bool V_8 = false;
{
float L_0 = ((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->get_minHeight_2();
V_0 = L_0;
float L_1 = ((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->get_maxHeight_3();
V_1 = L_1;
bool L_2 = __this->get_allowVerticalScroll_38();
V_2 = L_2;
bool L_3 = V_2;
if (!L_3)
{
goto IL_0031;
}
}
{
((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->set_minHeight_2((0.0f));
((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->set_maxHeight_3((0.0f));
}
IL_0031:
{
GUILayoutGroup_CalcHeight_m0511BD2172BC13D54ABC8DB5887A91C17E9F21BB(__this, /*hidden argument*/NULL);
float L_4 = ((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->get_minHeight_2();
__this->set_calcMinHeight_33(L_4);
float L_5 = ((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->get_maxHeight_3();
__this->set_calcMaxHeight_34(L_5);
bool L_6 = __this->get_needsHorizontalScrollbar_39();
V_3 = L_6;
bool L_7 = V_3;
if (!L_7)
{
goto IL_0099;
}
}
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_8 = __this->get_horizontalScrollbar_41();
NullCheck(L_8);
float L_9 = GUIStyle_get_fixedHeight_m9B5589C95B27C5590219413E8D7E9E1E95EB7708(L_8, /*hidden argument*/NULL);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_10 = __this->get_horizontalScrollbar_41();
NullCheck(L_10);
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * L_11 = GUIStyle_get_margin_mFC3EA0FA030A6334AC03BDDFA4AC80419C9E5BAA(L_10, /*hidden argument*/NULL);
NullCheck(L_11);
int32_t L_12 = RectOffset_get_top_mBA813D4147BFBC079933054018437F411B6B41E1(L_11, /*hidden argument*/NULL);
V_4 = ((float)il2cpp_codegen_add((float)L_9, (float)(((float)((float)L_12)))));
float L_13 = ((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->get_minHeight_2();
float L_14 = V_4;
((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->set_minHeight_2(((float)il2cpp_codegen_add((float)L_13, (float)L_14)));
float L_15 = ((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->get_maxHeight_3();
float L_16 = V_4;
((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->set_maxHeight_3(((float)il2cpp_codegen_add((float)L_15, (float)L_16)));
}
IL_0099:
{
bool L_17 = __this->get_allowVerticalScroll_38();
V_5 = L_17;
bool L_18 = V_5;
if (!L_18)
{
goto IL_00fe;
}
}
{
float L_19 = ((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->get_minHeight_2();
V_6 = (bool)((((float)L_19) > ((float)(32.0f)))? 1 : 0);
bool L_20 = V_6;
if (!L_20)
{
goto IL_00c4;
}
}
{
((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->set_minHeight_2((32.0f));
}
IL_00c4:
{
float L_21 = V_0;
V_7 = (bool)((((int32_t)((((float)L_21) == ((float)(0.0f)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_22 = V_7;
if (!L_22)
{
goto IL_00dc;
}
}
{
float L_23 = V_0;
((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->set_minHeight_2(L_23);
}
IL_00dc:
{
float L_24 = V_1;
V_8 = (bool)((((int32_t)((((float)L_24) == ((float)(0.0f)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_25 = V_8;
if (!L_25)
{
goto IL_00fd;
}
}
{
float L_26 = V_1;
((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->set_maxHeight_3(L_26);
((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->set_stretchHeight_6(0);
}
IL_00fd:
{
}
IL_00fe:
{
return;
}
}
// System.Void UnityEngine.GUIScrollGroup::SetVertical(System.Single,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIScrollGroup_SetVertical_m4EF0255426047DF9A3E4C63C1ACBF3FE0690A7AB (GUIScrollGroup_tF7FE45226FB28968F68A8D2428FE9EA7DC5B18EE * __this, float ___y0, float ___height1, const RuntimeMethod* method)
{
float V_0 = 0.0f;
bool V_1 = false;
bool V_2 = false;
float V_3 = 0.0f;
float V_4 = 0.0f;
bool V_5 = false;
float V_6 = 0.0f;
bool V_7 = false;
bool V_8 = false;
int32_t G_B5_0 = 0;
int32_t G_B9_0 = 0;
{
float L_0 = ___height1;
V_0 = L_0;
bool L_1 = __this->get_needsHorizontalScrollbar_39();
V_1 = L_1;
bool L_2 = V_1;
if (!L_2)
{
goto IL_002d;
}
}
{
float L_3 = V_0;
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_4 = __this->get_horizontalScrollbar_41();
NullCheck(L_4);
float L_5 = GUIStyle_get_fixedHeight_m9B5589C95B27C5590219413E8D7E9E1E95EB7708(L_4, /*hidden argument*/NULL);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_6 = __this->get_horizontalScrollbar_41();
NullCheck(L_6);
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * L_7 = GUIStyle_get_margin_mFC3EA0FA030A6334AC03BDDFA4AC80419C9E5BAA(L_6, /*hidden argument*/NULL);
NullCheck(L_7);
int32_t L_8 = RectOffset_get_top_mBA813D4147BFBC079933054018437F411B6B41E1(L_7, /*hidden argument*/NULL);
V_0 = ((float)il2cpp_codegen_subtract((float)L_3, (float)((float)il2cpp_codegen_add((float)L_5, (float)(((float)((float)L_8)))))));
}
IL_002d:
{
bool L_9 = __this->get_allowVerticalScroll_38();
if (!L_9)
{
goto IL_0040;
}
}
{
float L_10 = V_0;
float L_11 = __this->get_calcMinHeight_33();
G_B5_0 = ((((float)L_10) < ((float)L_11))? 1 : 0);
goto IL_0041;
}
IL_0040:
{
G_B5_0 = 0;
}
IL_0041:
{
V_2 = (bool)G_B5_0;
bool L_12 = V_2;
if (!L_12)
{
goto IL_0151;
}
}
{
bool L_13 = __this->get_needsHorizontalScrollbar_39();
if (L_13)
{
goto IL_005c;
}
}
{
bool L_14 = __this->get_needsVerticalScrollbar_40();
G_B9_0 = ((((int32_t)L_14) == ((int32_t)0))? 1 : 0);
goto IL_005d;
}
IL_005c:
{
G_B9_0 = 0;
}
IL_005d:
{
V_5 = (bool)G_B9_0;
bool L_15 = V_5;
if (!L_15)
{
goto IL_00f1;
}
}
{
Rect_t35B976DE901B5423C11705E156938EA27AB402CE * L_16 = ((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->get_address_of_rect_4();
float L_17 = Rect_get_width_m54FF69FC2C086E2DC349ED091FD0D6576BFB1484((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)L_16, /*hidden argument*/NULL);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_18 = __this->get_verticalScrollbar_42();
NullCheck(L_18);
float L_19 = GUIStyle_get_fixedWidth_mEACB70758F83DCD64CE363143849CC40E49B8D8D(L_18, /*hidden argument*/NULL);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_20 = __this->get_verticalScrollbar_42();
NullCheck(L_20);
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * L_21 = GUIStyle_get_margin_mFC3EA0FA030A6334AC03BDDFA4AC80419C9E5BAA(L_20, /*hidden argument*/NULL);
NullCheck(L_21);
int32_t L_22 = RectOffset_get_left_mA86EC00866C1940134873E3A1565A1F700DE67AD(L_21, /*hidden argument*/NULL);
__this->set_clientWidth_35(((float)il2cpp_codegen_subtract((float)((float)il2cpp_codegen_subtract((float)L_17, (float)L_19)), (float)(((float)((float)L_22))))));
float L_23 = __this->get_clientWidth_35();
float L_24 = __this->get_calcMinWidth_31();
V_7 = (bool)((((float)L_23) < ((float)L_24))? 1 : 0);
bool L_25 = V_7;
if (!L_25)
{
goto IL_00b6;
}
}
{
float L_26 = __this->get_calcMinWidth_31();
__this->set_clientWidth_35(L_26);
}
IL_00b6:
{
Rect_t35B976DE901B5423C11705E156938EA27AB402CE * L_27 = ((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->get_address_of_rect_4();
float L_28 = Rect_get_width_m54FF69FC2C086E2DC349ED091FD0D6576BFB1484((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)L_27, /*hidden argument*/NULL);
V_6 = L_28;
Rect_t35B976DE901B5423C11705E156938EA27AB402CE * L_29 = ((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->get_address_of_rect_4();
float L_30 = Rect_get_x_mC51A461F546D14832EB96B11A7198DADDE2597B7((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)L_29, /*hidden argument*/NULL);
float L_31 = __this->get_clientWidth_35();
VirtActionInvoker2< float, float >::Invoke(10 /* System.Void UnityEngine.GUILayoutEntry::SetHorizontal(System.Single,System.Single) */, __this, L_30, L_31);
VirtActionInvoker0::Invoke(9 /* System.Void UnityEngine.GUILayoutEntry::CalcHeight() */, __this);
Rect_t35B976DE901B5423C11705E156938EA27AB402CE * L_32 = ((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->get_address_of_rect_4();
float L_33 = V_6;
Rect_set_width_mC81EF602AC91E0C615C12FCE060254A461A152B8((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)L_32, L_33, /*hidden argument*/NULL);
}
IL_00f1:
{
float L_34 = ((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->get_minHeight_2();
V_3 = L_34;
float L_35 = ((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->get_maxHeight_3();
V_4 = L_35;
float L_36 = __this->get_calcMinHeight_33();
((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->set_minHeight_2(L_36);
float L_37 = __this->get_calcMaxHeight_34();
((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->set_maxHeight_3(L_37);
float L_38 = ___y0;
float L_39 = __this->get_calcMinHeight_33();
GUILayoutGroup_SetVertical_m29D8744D2D1464EF4E6E4008CD21F5E44D6CB146(__this, L_38, L_39, /*hidden argument*/NULL);
float L_40 = V_3;
((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->set_minHeight_2(L_40);
float L_41 = V_4;
((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->set_maxHeight_3(L_41);
Rect_t35B976DE901B5423C11705E156938EA27AB402CE * L_42 = ((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->get_address_of_rect_4();
float L_43 = ___height1;
Rect_set_height_mF4CB5A97D4706696F1C9EA31A5D8C466E48050D6((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)L_42, L_43, /*hidden argument*/NULL);
float L_44 = __this->get_calcMinHeight_33();
__this->set_clientHeight_36(L_44);
goto IL_0196;
}
IL_0151:
{
bool L_45 = __this->get_allowVerticalScroll_38();
V_8 = L_45;
bool L_46 = V_8;
if (!L_46)
{
goto IL_0178;
}
}
{
float L_47 = __this->get_calcMinHeight_33();
((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->set_minHeight_2(L_47);
float L_48 = __this->get_calcMaxHeight_34();
((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->set_maxHeight_3(L_48);
}
IL_0178:
{
float L_49 = ___y0;
float L_50 = V_0;
GUILayoutGroup_SetVertical_m29D8744D2D1464EF4E6E4008CD21F5E44D6CB146(__this, L_49, L_50, /*hidden argument*/NULL);
Rect_t35B976DE901B5423C11705E156938EA27AB402CE * L_51 = ((GUILayoutEntry_t84827D72E8F6B673B1DB9F9FD91C9991007C9845 *)__this)->get_address_of_rect_4();
float L_52 = ___height1;
Rect_set_height_mF4CB5A97D4706696F1C9EA31A5D8C466E48050D6((Rect_t35B976DE901B5423C11705E156938EA27AB402CE *)L_51, L_52, /*hidden argument*/NULL);
float L_53 = V_0;
__this->set_clientHeight_36(L_53);
}
IL_0196:
{
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.Void UnityEngine.GUISettings::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUISettings__ctor_m6D2D6608CE04A741235BF0C8E134195B196F116D (GUISettings_tA863524720A3C984BAE56598D922F2C04DC80EF4 * __this, const RuntimeMethod* method)
{
{
__this->set_m_DoubleClickSelectsWord_0((bool)1);
__this->set_m_TripleClickSelectsLine_1((bool)1);
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_0 = Color_get_white_mE7F3AC4FF0D6F35E48049C73116A222CBE96D905(/*hidden argument*/NULL);
__this->set_m_CursorColor_2(L_0);
__this->set_m_CursorFlashSpeed_3((-1.0f));
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_1;
memset((&L_1), 0, sizeof(L_1));
Color__ctor_mC9AEEB3931D5B8C37483A884DD8EB40DC8946369((&L_1), (0.5f), (0.5f), (1.0f), /*hidden argument*/NULL);
__this->set_m_SelectionColor_4(L_1);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__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.Void UnityEngine.GUISkin::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUISkin__ctor_mD75B370774F1DA0C871C8C642299E8DB4B0FABFF (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUISkin__ctor_mD75B370774F1DA0C871C8C642299E8DB4B0FABFF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
GUISettings_tA863524720A3C984BAE56598D922F2C04DC80EF4 * L_0 = (GUISettings_tA863524720A3C984BAE56598D922F2C04DC80EF4 *)il2cpp_codegen_object_new(GUISettings_tA863524720A3C984BAE56598D922F2C04DC80EF4_il2cpp_TypeInfo_var);
GUISettings__ctor_m6D2D6608CE04A741235BF0C8E134195B196F116D(L_0, /*hidden argument*/NULL);
__this->set_m_Settings_28(L_0);
__this->set_m_Styles_30((Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A *)NULL);
ScriptableObject__ctor_m6E2B3821A4A361556FC12E9B1C71E1D5DC002C5B(__this, /*hidden argument*/NULL);
GUIStyleU5BU5D_t2F343713D6ADFF41BBCF1D17BAE79F51BD745DBB* L_1 = (GUIStyleU5BU5D_t2F343713D6ADFF41BBCF1D17BAE79F51BD745DBB*)(GUIStyleU5BU5D_t2F343713D6ADFF41BBCF1D17BAE79F51BD745DBB*)SZArrayNew(GUIStyleU5BU5D_t2F343713D6ADFF41BBCF1D17BAE79F51BD745DBB_il2cpp_TypeInfo_var, (uint32_t)1);
__this->set_m_CustomStyles_27(L_1);
return;
}
}
// System.Void UnityEngine.GUISkin::OnEnable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUISkin_OnEnable_mD8DE1BF0D0D0DA01EF240CE80C8B890DC03D30D0 (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, const RuntimeMethod* method)
{
{
GUISkin_Apply_mA93B0EEE3C2DE1F8D867A472130CDA98814C8A49(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.GUISkin::CleanupRoots()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUISkin_CleanupRoots_m00D215E556265ACF704EA1C31399298DB092BA02 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUISkin_CleanupRoots_m00D215E556265ACF704EA1C31399298DB092BA02_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
((GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7_StaticFields*)il2cpp_codegen_static_fields_for(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7_il2cpp_TypeInfo_var))->set_current_32((GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 *)NULL);
((GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7_StaticFields*)il2cpp_codegen_static_fields_for(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7_il2cpp_TypeInfo_var))->set_ms_Error_29((GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)NULL);
return;
}
}
// UnityEngine.Font UnityEngine.GUISkin::get_font()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Font_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26 * GUISkin_get_font_m54200DFAF834B835CE6598E1BA5B41382BC33AD5 (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, const RuntimeMethod* method)
{
Font_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26 * V_0 = NULL;
{
Font_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26 * L_0 = __this->get_m_Font_4();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
Font_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26 * L_1 = V_0;
return L_1;
}
}
// System.Void UnityEngine.GUISkin::set_font(UnityEngine.Font)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUISkin_set_font_m2602A62DF6F035C7DA9BF4411C5F117022B5C07F (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, Font_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUISkin_set_font_m2602A62DF6F035C7DA9BF4411C5F117022B5C07F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
Font_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26 * L_0 = ___value0;
__this->set_m_Font_4(L_0);
GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * L_1 = ((GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7_StaticFields*)il2cpp_codegen_static_fields_for(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7_il2cpp_TypeInfo_var))->get_current_32();
IL2CPP_RUNTIME_CLASS_INIT(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var);
bool L_2 = Object_op_Equality_mBC2401774F3BE33E8CF6F0A8148E66C95D6CFF1C(L_1, __this, /*hidden argument*/NULL);
V_0 = L_2;
bool L_3 = V_0;
if (!L_3)
{
goto IL_0023;
}
}
{
Font_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26 * L_4 = __this->get_m_Font_4();
IL2CPP_RUNTIME_CLASS_INIT(GUIStyle_t671F175A201A19166385EE3392292A5F50070572_il2cpp_TypeInfo_var);
GUIStyle_SetDefaultFont_m09D149F682E885D7058E3C48EB42C9E62363E381(L_4, /*hidden argument*/NULL);
}
IL_0023:
{
GUISkin_Apply_mA93B0EEE3C2DE1F8D867A472130CDA98814C8A49(__this, /*hidden argument*/NULL);
return;
}
}
// UnityEngine.GUIStyle UnityEngine.GUISkin::get_box()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * GUISkin_get_box_m7305FA20CDC5A31518AE753AEF7B9075F6242B11 (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, const RuntimeMethod* method)
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * V_0 = NULL;
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = __this->get_m_box_5();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_1 = V_0;
return L_1;
}
}
// System.Void UnityEngine.GUISkin::set_box(UnityEngine.GUIStyle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUISkin_set_box_m6D6D19E122461C6B2945349AA6ECD53E355702B0 (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___value0, const RuntimeMethod* method)
{
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = ___value0;
__this->set_m_box_5(L_0);
GUISkin_Apply_mA93B0EEE3C2DE1F8D867A472130CDA98814C8A49(__this, /*hidden argument*/NULL);
return;
}
}
// UnityEngine.GUIStyle UnityEngine.GUISkin::get_label()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * GUISkin_get_label_mC5C9D4CD377D7F5BB970B01E665EE077565AFF72 (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, const RuntimeMethod* method)
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * V_0 = NULL;
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = __this->get_m_label_8();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_1 = V_0;
return L_1;
}
}
// System.Void UnityEngine.GUISkin::set_label(UnityEngine.GUIStyle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUISkin_set_label_m7EC231FDB8DEC9A5CD794578D70BB76A1978F508 (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___value0, const RuntimeMethod* method)
{
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = ___value0;
__this->set_m_label_8(L_0);
GUISkin_Apply_mA93B0EEE3C2DE1F8D867A472130CDA98814C8A49(__this, /*hidden argument*/NULL);
return;
}
}
// UnityEngine.GUIStyle UnityEngine.GUISkin::get_textField()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * GUISkin_get_textField_m7C206D0A044A8D5DD00E63BCD7958089E77419E9 (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, const RuntimeMethod* method)
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * V_0 = NULL;
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = __this->get_m_textField_9();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_1 = V_0;
return L_1;
}
}
// System.Void UnityEngine.GUISkin::set_textField(UnityEngine.GUIStyle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUISkin_set_textField_m641D44C99CFC17A18BC0F094D4C810742222D0D2 (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___value0, const RuntimeMethod* method)
{
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = ___value0;
__this->set_m_textField_9(L_0);
GUISkin_Apply_mA93B0EEE3C2DE1F8D867A472130CDA98814C8A49(__this, /*hidden argument*/NULL);
return;
}
}
// UnityEngine.GUIStyle UnityEngine.GUISkin::get_textArea()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * GUISkin_get_textArea_m865E5C1D39519731718B66C9C993DFDEE0299C92 (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, const RuntimeMethod* method)
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * V_0 = NULL;
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = __this->get_m_textArea_10();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_1 = V_0;
return L_1;
}
}
// System.Void UnityEngine.GUISkin::set_textArea(UnityEngine.GUIStyle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUISkin_set_textArea_m3C0C4795FC031AA0E8815FA9E0CAD304E1266157 (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___value0, const RuntimeMethod* method)
{
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = ___value0;
__this->set_m_textArea_10(L_0);
GUISkin_Apply_mA93B0EEE3C2DE1F8D867A472130CDA98814C8A49(__this, /*hidden argument*/NULL);
return;
}
}
// UnityEngine.GUIStyle UnityEngine.GUISkin::get_button()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * GUISkin_get_button_m015FA6A0418D94F03B5F12131DED65CCFDCA8F7A (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, const RuntimeMethod* method)
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * V_0 = NULL;
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = __this->get_m_button_6();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_1 = V_0;
return L_1;
}
}
// System.Void UnityEngine.GUISkin::set_button(UnityEngine.GUIStyle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUISkin_set_button_m6DE2099849A8911FA77BE275B2552E48A356A67E (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___value0, const RuntimeMethod* method)
{
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = ___value0;
__this->set_m_button_6(L_0);
GUISkin_Apply_mA93B0EEE3C2DE1F8D867A472130CDA98814C8A49(__this, /*hidden argument*/NULL);
return;
}
}
// UnityEngine.GUIStyle UnityEngine.GUISkin::get_toggle()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * GUISkin_get_toggle_mB5459058B1C84826D47FA9BFE9CC9D05BB074030 (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, const RuntimeMethod* method)
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * V_0 = NULL;
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = __this->get_m_toggle_7();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_1 = V_0;
return L_1;
}
}
// System.Void UnityEngine.GUISkin::set_toggle(UnityEngine.GUIStyle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUISkin_set_toggle_mD80DC18C72883EE616583CB75FA6C83F5C4C29F8 (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___value0, const RuntimeMethod* method)
{
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = ___value0;
__this->set_m_toggle_7(L_0);
GUISkin_Apply_mA93B0EEE3C2DE1F8D867A472130CDA98814C8A49(__this, /*hidden argument*/NULL);
return;
}
}
// UnityEngine.GUIStyle UnityEngine.GUISkin::get_window()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * GUISkin_get_window_mD0E9B84DBBDF7CA3FB566849E4507B5E4C6490B9 (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, const RuntimeMethod* method)
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * V_0 = NULL;
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = __this->get_m_window_11();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_1 = V_0;
return L_1;
}
}
// System.Void UnityEngine.GUISkin::set_window(UnityEngine.GUIStyle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUISkin_set_window_m2284011FEDEADF15D6AA2ACD636244B74C5A6F3A (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___value0, const RuntimeMethod* method)
{
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = ___value0;
__this->set_m_window_11(L_0);
GUISkin_Apply_mA93B0EEE3C2DE1F8D867A472130CDA98814C8A49(__this, /*hidden argument*/NULL);
return;
}
}
// UnityEngine.GUIStyle UnityEngine.GUISkin::get_horizontalSlider()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * GUISkin_get_horizontalSlider_mDC40C8921B044801488863EC52002C84C68E570B (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, const RuntimeMethod* method)
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * V_0 = NULL;
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = __this->get_m_horizontalSlider_12();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_1 = V_0;
return L_1;
}
}
// System.Void UnityEngine.GUISkin::set_horizontalSlider(UnityEngine.GUIStyle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUISkin_set_horizontalSlider_m761A767684EB3014E2D50D377C2B381B46FCF931 (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___value0, const RuntimeMethod* method)
{
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = ___value0;
__this->set_m_horizontalSlider_12(L_0);
GUISkin_Apply_mA93B0EEE3C2DE1F8D867A472130CDA98814C8A49(__this, /*hidden argument*/NULL);
return;
}
}
// UnityEngine.GUIStyle UnityEngine.GUISkin::get_horizontalSliderThumb()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * GUISkin_get_horizontalSliderThumb_m0906181E7D7A364A784031556658BC2AB14A49DD (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, const RuntimeMethod* method)
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * V_0 = NULL;
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = __this->get_m_horizontalSliderThumb_13();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_1 = V_0;
return L_1;
}
}
// System.Void UnityEngine.GUISkin::set_horizontalSliderThumb(UnityEngine.GUIStyle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUISkin_set_horizontalSliderThumb_mEA4D61F20729CCBC6E3CBCC7E0AD5A48E37DF056 (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___value0, const RuntimeMethod* method)
{
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = ___value0;
__this->set_m_horizontalSliderThumb_13(L_0);
GUISkin_Apply_mA93B0EEE3C2DE1F8D867A472130CDA98814C8A49(__this, /*hidden argument*/NULL);
return;
}
}
// UnityEngine.GUIStyle UnityEngine.GUISkin::get_horizontalSliderThumbExtent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * GUISkin_get_horizontalSliderThumbExtent_mC06DFB3D8BFFE3B610E6E78D846C5E97BAE689CF (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, const RuntimeMethod* method)
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * V_0 = NULL;
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = __this->get_m_horizontalSliderThumbExtent_14();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_1 = V_0;
return L_1;
}
}
// System.Void UnityEngine.GUISkin::set_horizontalSliderThumbExtent(UnityEngine.GUIStyle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUISkin_set_horizontalSliderThumbExtent_m6A9C37193CC2F691A4A635CA3C2B7FF86D4796D2 (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___value0, const RuntimeMethod* method)
{
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = ___value0;
__this->set_m_horizontalSliderThumbExtent_14(L_0);
GUISkin_Apply_mA93B0EEE3C2DE1F8D867A472130CDA98814C8A49(__this, /*hidden argument*/NULL);
return;
}
}
// UnityEngine.GUIStyle UnityEngine.GUISkin::get_verticalSlider()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * GUISkin_get_verticalSlider_m42A66BFEEF219C34908FA492CD9604252FC270D9 (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, const RuntimeMethod* method)
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * V_0 = NULL;
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = __this->get_m_verticalSlider_15();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_1 = V_0;
return L_1;
}
}
// System.Void UnityEngine.GUISkin::set_verticalSlider(UnityEngine.GUIStyle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUISkin_set_verticalSlider_m66ED35A0709DDE6CD08065C6951AD32582B0A784 (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___value0, const RuntimeMethod* method)
{
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = ___value0;
__this->set_m_verticalSlider_15(L_0);
GUISkin_Apply_mA93B0EEE3C2DE1F8D867A472130CDA98814C8A49(__this, /*hidden argument*/NULL);
return;
}
}
// UnityEngine.GUIStyle UnityEngine.GUISkin::get_verticalSliderThumb()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * GUISkin_get_verticalSliderThumb_m0E0CCACBEE8D9ECF5AF19D310A14F156B1F85D18 (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, const RuntimeMethod* method)
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * V_0 = NULL;
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = __this->get_m_verticalSliderThumb_16();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_1 = V_0;
return L_1;
}
}
// System.Void UnityEngine.GUISkin::set_verticalSliderThumb(UnityEngine.GUIStyle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUISkin_set_verticalSliderThumb_m0920AB66A75D6CE103EBA218BB8FEEEF9306DC1D (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___value0, const RuntimeMethod* method)
{
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = ___value0;
__this->set_m_verticalSliderThumb_16(L_0);
GUISkin_Apply_mA93B0EEE3C2DE1F8D867A472130CDA98814C8A49(__this, /*hidden argument*/NULL);
return;
}
}
// UnityEngine.GUIStyle UnityEngine.GUISkin::get_verticalSliderThumbExtent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * GUISkin_get_verticalSliderThumbExtent_mBFC25813D08E0E5007E222A84BB191391BDD3E90 (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, const RuntimeMethod* method)
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * V_0 = NULL;
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = __this->get_m_verticalSliderThumbExtent_17();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_1 = V_0;
return L_1;
}
}
// System.Void UnityEngine.GUISkin::set_verticalSliderThumbExtent(UnityEngine.GUIStyle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUISkin_set_verticalSliderThumbExtent_m2CA4BBB8D48C2D8386B8F989630860C5961AA6C9 (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___value0, const RuntimeMethod* method)
{
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = ___value0;
__this->set_m_verticalSliderThumbExtent_17(L_0);
GUISkin_Apply_mA93B0EEE3C2DE1F8D867A472130CDA98814C8A49(__this, /*hidden argument*/NULL);
return;
}
}
// UnityEngine.GUIStyle UnityEngine.GUISkin::get_horizontalScrollbar()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * GUISkin_get_horizontalScrollbar_m6C3C35BE443E12CA9AA4B7915C4FF704315D6D0F (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, const RuntimeMethod* method)
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * V_0 = NULL;
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = __this->get_m_horizontalScrollbar_18();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_1 = V_0;
return L_1;
}
}
// System.Void UnityEngine.GUISkin::set_horizontalScrollbar(UnityEngine.GUIStyle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUISkin_set_horizontalScrollbar_m4F2E03DEC3A2004F2912F53610D8F84EE62ACFF0 (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___value0, const RuntimeMethod* method)
{
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = ___value0;
__this->set_m_horizontalScrollbar_18(L_0);
GUISkin_Apply_mA93B0EEE3C2DE1F8D867A472130CDA98814C8A49(__this, /*hidden argument*/NULL);
return;
}
}
// UnityEngine.GUIStyle UnityEngine.GUISkin::get_horizontalScrollbarThumb()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * GUISkin_get_horizontalScrollbarThumb_mDBF72BAF3A76876F1913BC77DFD913198606415F (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, const RuntimeMethod* method)
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * V_0 = NULL;
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = __this->get_m_horizontalScrollbarThumb_19();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_1 = V_0;
return L_1;
}
}
// System.Void UnityEngine.GUISkin::set_horizontalScrollbarThumb(UnityEngine.GUIStyle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUISkin_set_horizontalScrollbarThumb_mEF470A49847D208F6B190FDBDF7704FFDFD23359 (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___value0, const RuntimeMethod* method)
{
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = ___value0;
__this->set_m_horizontalScrollbarThumb_19(L_0);
GUISkin_Apply_mA93B0EEE3C2DE1F8D867A472130CDA98814C8A49(__this, /*hidden argument*/NULL);
return;
}
}
// UnityEngine.GUIStyle UnityEngine.GUISkin::get_horizontalScrollbarLeftButton()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * GUISkin_get_horizontalScrollbarLeftButton_mFB71A2ABCB046937048320741EED4C0F0573A126 (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, const RuntimeMethod* method)
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * V_0 = NULL;
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = __this->get_m_horizontalScrollbarLeftButton_20();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_1 = V_0;
return L_1;
}
}
// System.Void UnityEngine.GUISkin::set_horizontalScrollbarLeftButton(UnityEngine.GUIStyle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUISkin_set_horizontalScrollbarLeftButton_mBB8EE6C404FD9BF0C9BD9B4B6FD036086C044BA3 (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___value0, const RuntimeMethod* method)
{
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = ___value0;
__this->set_m_horizontalScrollbarLeftButton_20(L_0);
GUISkin_Apply_mA93B0EEE3C2DE1F8D867A472130CDA98814C8A49(__this, /*hidden argument*/NULL);
return;
}
}
// UnityEngine.GUIStyle UnityEngine.GUISkin::get_horizontalScrollbarRightButton()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * GUISkin_get_horizontalScrollbarRightButton_m375017416DFEBFB9D964BC377990D8A71F04EB39 (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, const RuntimeMethod* method)
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * V_0 = NULL;
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = __this->get_m_horizontalScrollbarRightButton_21();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_1 = V_0;
return L_1;
}
}
// System.Void UnityEngine.GUISkin::set_horizontalScrollbarRightButton(UnityEngine.GUIStyle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUISkin_set_horizontalScrollbarRightButton_mA7B3670FAB6323B7E3F7F2A15640263BB0F3685A (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___value0, const RuntimeMethod* method)
{
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = ___value0;
__this->set_m_horizontalScrollbarRightButton_21(L_0);
GUISkin_Apply_mA93B0EEE3C2DE1F8D867A472130CDA98814C8A49(__this, /*hidden argument*/NULL);
return;
}
}
// UnityEngine.GUIStyle UnityEngine.GUISkin::get_verticalScrollbar()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * GUISkin_get_verticalScrollbar_mCA438980059FF28128B638E6BF442E104BACE20B (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, const RuntimeMethod* method)
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * V_0 = NULL;
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = __this->get_m_verticalScrollbar_22();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_1 = V_0;
return L_1;
}
}
// System.Void UnityEngine.GUISkin::set_verticalScrollbar(UnityEngine.GUIStyle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUISkin_set_verticalScrollbar_mE5B8C6F35870AA16403FB8202B36D56F2314F9B7 (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___value0, const RuntimeMethod* method)
{
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = ___value0;
__this->set_m_verticalScrollbar_22(L_0);
GUISkin_Apply_mA93B0EEE3C2DE1F8D867A472130CDA98814C8A49(__this, /*hidden argument*/NULL);
return;
}
}
// UnityEngine.GUIStyle UnityEngine.GUISkin::get_verticalScrollbarThumb()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * GUISkin_get_verticalScrollbarThumb_m4D613B4477826F86001B59CB3AD41466AF8C06EF (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, const RuntimeMethod* method)
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * V_0 = NULL;
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = __this->get_m_verticalScrollbarThumb_23();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_1 = V_0;
return L_1;
}
}
// System.Void UnityEngine.GUISkin::set_verticalScrollbarThumb(UnityEngine.GUIStyle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUISkin_set_verticalScrollbarThumb_mF1A3CE45DA1A0FE4022BF95B9F8FD6B9733B48AA (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___value0, const RuntimeMethod* method)
{
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = ___value0;
__this->set_m_verticalScrollbarThumb_23(L_0);
GUISkin_Apply_mA93B0EEE3C2DE1F8D867A472130CDA98814C8A49(__this, /*hidden argument*/NULL);
return;
}
}
// UnityEngine.GUIStyle UnityEngine.GUISkin::get_verticalScrollbarUpButton()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * GUISkin_get_verticalScrollbarUpButton_m46DD4FA65B21D3C9FFFD1A1B1A6852B020C94AB5 (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, const RuntimeMethod* method)
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * V_0 = NULL;
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = __this->get_m_verticalScrollbarUpButton_24();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_1 = V_0;
return L_1;
}
}
// System.Void UnityEngine.GUISkin::set_verticalScrollbarUpButton(UnityEngine.GUIStyle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUISkin_set_verticalScrollbarUpButton_m6407C9BFD7172E7E3A8583C34451EE331705AA6A (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___value0, const RuntimeMethod* method)
{
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = ___value0;
__this->set_m_verticalScrollbarUpButton_24(L_0);
GUISkin_Apply_mA93B0EEE3C2DE1F8D867A472130CDA98814C8A49(__this, /*hidden argument*/NULL);
return;
}
}
// UnityEngine.GUIStyle UnityEngine.GUISkin::get_verticalScrollbarDownButton()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * GUISkin_get_verticalScrollbarDownButton_m6204382C228748A2535AA0E6640407A062F14004 (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, const RuntimeMethod* method)
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * V_0 = NULL;
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = __this->get_m_verticalScrollbarDownButton_25();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_1 = V_0;
return L_1;
}
}
// System.Void UnityEngine.GUISkin::set_verticalScrollbarDownButton(UnityEngine.GUIStyle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUISkin_set_verticalScrollbarDownButton_m7B0275CBF0BCE8F95B8FF3436466A6490E0B7D62 (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___value0, const RuntimeMethod* method)
{
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = ___value0;
__this->set_m_verticalScrollbarDownButton_25(L_0);
GUISkin_Apply_mA93B0EEE3C2DE1F8D867A472130CDA98814C8A49(__this, /*hidden argument*/NULL);
return;
}
}
// UnityEngine.GUIStyle UnityEngine.GUISkin::get_scrollView()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * GUISkin_get_scrollView_m65256AD31599E1AEE8B9424EE9BA5385CEF9144F (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, const RuntimeMethod* method)
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * V_0 = NULL;
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = __this->get_m_ScrollView_26();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_1 = V_0;
return L_1;
}
}
// System.Void UnityEngine.GUISkin::set_scrollView(UnityEngine.GUIStyle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUISkin_set_scrollView_m6B28717B83555F80AB3EA1798FDE15C2A2645C72 (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___value0, const RuntimeMethod* method)
{
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = ___value0;
__this->set_m_ScrollView_26(L_0);
GUISkin_Apply_mA93B0EEE3C2DE1F8D867A472130CDA98814C8A49(__this, /*hidden argument*/NULL);
return;
}
}
// UnityEngine.GUIStyle[] UnityEngine.GUISkin::get_customStyles()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GUIStyleU5BU5D_t2F343713D6ADFF41BBCF1D17BAE79F51BD745DBB* GUISkin_get_customStyles_mC004E300635814033B6074ADCCCCCCC2B8F56D3C (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, const RuntimeMethod* method)
{
GUIStyleU5BU5D_t2F343713D6ADFF41BBCF1D17BAE79F51BD745DBB* V_0 = NULL;
{
GUIStyleU5BU5D_t2F343713D6ADFF41BBCF1D17BAE79F51BD745DBB* L_0 = __this->get_m_CustomStyles_27();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
GUIStyleU5BU5D_t2F343713D6ADFF41BBCF1D17BAE79F51BD745DBB* L_1 = V_0;
return L_1;
}
}
// System.Void UnityEngine.GUISkin::set_customStyles(UnityEngine.GUIStyle[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUISkin_set_customStyles_m4F3203A3237CDA3799A0A4C440EF8A54B059EEC5 (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, GUIStyleU5BU5D_t2F343713D6ADFF41BBCF1D17BAE79F51BD745DBB* ___value0, const RuntimeMethod* method)
{
{
GUIStyleU5BU5D_t2F343713D6ADFF41BBCF1D17BAE79F51BD745DBB* L_0 = ___value0;
__this->set_m_CustomStyles_27(L_0);
GUISkin_Apply_mA93B0EEE3C2DE1F8D867A472130CDA98814C8A49(__this, /*hidden argument*/NULL);
return;
}
}
// UnityEngine.GUISettings UnityEngine.GUISkin::get_settings()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GUISettings_tA863524720A3C984BAE56598D922F2C04DC80EF4 * GUISkin_get_settings_m32E805AA73BD4CD9EC4E731A68D0F72377C859DA (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, const RuntimeMethod* method)
{
GUISettings_tA863524720A3C984BAE56598D922F2C04DC80EF4 * V_0 = NULL;
{
GUISettings_tA863524720A3C984BAE56598D922F2C04DC80EF4 * L_0 = __this->get_m_Settings_28();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
GUISettings_tA863524720A3C984BAE56598D922F2C04DC80EF4 * L_1 = V_0;
return L_1;
}
}
// UnityEngine.GUIStyle UnityEngine.GUISkin::get_error()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * GUISkin_get_error_m40FBD0C57353CBFD8EE75B796E3EADBF9033C47F (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUISkin_get_error_m40FBD0C57353CBFD8EE75B796E3EADBF9033C47F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * V_1 = NULL;
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = ((GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7_StaticFields*)il2cpp_codegen_static_fields_for(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7_il2cpp_TypeInfo_var))->get_ms_Error_29();
V_0 = (bool)((((RuntimeObject*)(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)L_0) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0029;
}
}
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_2 = (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)il2cpp_codegen_object_new(GUIStyle_t671F175A201A19166385EE3392292A5F50070572_il2cpp_TypeInfo_var);
GUIStyle__ctor_m8AA3D5AA506A252687923D0DA80741862AA83805(L_2, /*hidden argument*/NULL);
((GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7_StaticFields*)il2cpp_codegen_static_fields_for(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7_il2cpp_TypeInfo_var))->set_ms_Error_29(L_2);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_3 = ((GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7_StaticFields*)il2cpp_codegen_static_fields_for(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7_il2cpp_TypeInfo_var))->get_ms_Error_29();
NullCheck(L_3);
GUIStyle_set_name_m3D232D5A8EAD7B29F1F2DA3ADD01B99EFF83F1D7(L_3, _stringLiteralA93D2B140984CB1ED70E8B2F25565EF16927EE77, /*hidden argument*/NULL);
}
IL_0029:
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_4 = ((GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7_StaticFields*)il2cpp_codegen_static_fields_for(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7_il2cpp_TypeInfo_var))->get_ms_Error_29();
V_1 = L_4;
goto IL_0031;
}
IL_0031:
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_5 = V_1;
return L_5;
}
}
// System.Void UnityEngine.GUISkin::Apply()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUISkin_Apply_mA93B0EEE3C2DE1F8D867A472130CDA98814C8A49 (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUISkin_Apply_mA93B0EEE3C2DE1F8D867A472130CDA98814C8A49_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
GUIStyleU5BU5D_t2F343713D6ADFF41BBCF1D17BAE79F51BD745DBB* L_0 = __this->get_m_CustomStyles_27();
V_0 = (bool)((((RuntimeObject*)(GUIStyleU5BU5D_t2F343713D6ADFF41BBCF1D17BAE79F51BD745DBB*)L_0) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0019;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(Debug_t7B5FCB117E2FD63B6838BC52821B252E2BFB61C4_il2cpp_TypeInfo_var);
Debug_Log_m4B7C70BAFD477C6BDB59C88A0934F0B018D03708(_stringLiteral0D421A870FA2CD6E6DCF150A4ACE67EC7405AF75, /*hidden argument*/NULL);
}
IL_0019:
{
GUISkin_BuildStyleCache_m2C68BB5521EAF11FC98C86D7E60008901D61866A(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.GUISkin::BuildStyleCache()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUISkin_BuildStyleCache_m2C68BB5521EAF11FC98C86D7E60008901D61866A (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUISkin_BuildStyleCache_m2C68BB5521EAF11FC98C86D7E60008901D61866A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
bool V_2 = false;
bool V_3 = false;
bool V_4 = false;
bool V_5 = false;
bool V_6 = false;
bool V_7 = false;
bool V_8 = false;
bool V_9 = false;
bool V_10 = false;
bool V_11 = false;
bool V_12 = false;
bool V_13 = false;
bool V_14 = false;
bool V_15 = false;
bool V_16 = false;
bool V_17 = false;
bool V_18 = false;
bool V_19 = false;
bool V_20 = false;
int32_t V_21 = 0;
bool V_22 = false;
bool V_23 = false;
bool V_24 = false;
bool V_25 = false;
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = __this->get_m_box_5();
V_0 = (bool)((((RuntimeObject*)(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)L_0) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0019;
}
}
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_2 = (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)il2cpp_codegen_object_new(GUIStyle_t671F175A201A19166385EE3392292A5F50070572_il2cpp_TypeInfo_var);
GUIStyle__ctor_m8AA3D5AA506A252687923D0DA80741862AA83805(L_2, /*hidden argument*/NULL);
__this->set_m_box_5(L_2);
}
IL_0019:
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_3 = __this->get_m_button_6();
V_1 = (bool)((((RuntimeObject*)(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)L_3) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_4 = V_1;
if (!L_4)
{
goto IL_0031;
}
}
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_5 = (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)il2cpp_codegen_object_new(GUIStyle_t671F175A201A19166385EE3392292A5F50070572_il2cpp_TypeInfo_var);
GUIStyle__ctor_m8AA3D5AA506A252687923D0DA80741862AA83805(L_5, /*hidden argument*/NULL);
__this->set_m_button_6(L_5);
}
IL_0031:
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_6 = __this->get_m_toggle_7();
V_2 = (bool)((((RuntimeObject*)(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)L_6) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_7 = V_2;
if (!L_7)
{
goto IL_0049;
}
}
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_8 = (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)il2cpp_codegen_object_new(GUIStyle_t671F175A201A19166385EE3392292A5F50070572_il2cpp_TypeInfo_var);
GUIStyle__ctor_m8AA3D5AA506A252687923D0DA80741862AA83805(L_8, /*hidden argument*/NULL);
__this->set_m_toggle_7(L_8);
}
IL_0049:
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_9 = __this->get_m_label_8();
V_3 = (bool)((((RuntimeObject*)(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)L_9) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_10 = V_3;
if (!L_10)
{
goto IL_0061;
}
}
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_11 = (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)il2cpp_codegen_object_new(GUIStyle_t671F175A201A19166385EE3392292A5F50070572_il2cpp_TypeInfo_var);
GUIStyle__ctor_m8AA3D5AA506A252687923D0DA80741862AA83805(L_11, /*hidden argument*/NULL);
__this->set_m_label_8(L_11);
}
IL_0061:
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_12 = __this->get_m_window_11();
V_4 = (bool)((((RuntimeObject*)(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)L_12) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_13 = V_4;
if (!L_13)
{
goto IL_007b;
}
}
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_14 = (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)il2cpp_codegen_object_new(GUIStyle_t671F175A201A19166385EE3392292A5F50070572_il2cpp_TypeInfo_var);
GUIStyle__ctor_m8AA3D5AA506A252687923D0DA80741862AA83805(L_14, /*hidden argument*/NULL);
__this->set_m_window_11(L_14);
}
IL_007b:
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_15 = __this->get_m_textField_9();
V_5 = (bool)((((RuntimeObject*)(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)L_15) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_16 = V_5;
if (!L_16)
{
goto IL_0095;
}
}
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_17 = (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)il2cpp_codegen_object_new(GUIStyle_t671F175A201A19166385EE3392292A5F50070572_il2cpp_TypeInfo_var);
GUIStyle__ctor_m8AA3D5AA506A252687923D0DA80741862AA83805(L_17, /*hidden argument*/NULL);
__this->set_m_textField_9(L_17);
}
IL_0095:
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_18 = __this->get_m_textArea_10();
V_6 = (bool)((((RuntimeObject*)(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)L_18) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_19 = V_6;
if (!L_19)
{
goto IL_00af;
}
}
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_20 = (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)il2cpp_codegen_object_new(GUIStyle_t671F175A201A19166385EE3392292A5F50070572_il2cpp_TypeInfo_var);
GUIStyle__ctor_m8AA3D5AA506A252687923D0DA80741862AA83805(L_20, /*hidden argument*/NULL);
__this->set_m_textArea_10(L_20);
}
IL_00af:
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_21 = __this->get_m_horizontalSlider_12();
V_7 = (bool)((((RuntimeObject*)(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)L_21) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_22 = V_7;
if (!L_22)
{
goto IL_00c9;
}
}
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_23 = (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)il2cpp_codegen_object_new(GUIStyle_t671F175A201A19166385EE3392292A5F50070572_il2cpp_TypeInfo_var);
GUIStyle__ctor_m8AA3D5AA506A252687923D0DA80741862AA83805(L_23, /*hidden argument*/NULL);
__this->set_m_horizontalSlider_12(L_23);
}
IL_00c9:
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_24 = __this->get_m_horizontalSliderThumb_13();
V_8 = (bool)((((RuntimeObject*)(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)L_24) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_25 = V_8;
if (!L_25)
{
goto IL_00e3;
}
}
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_26 = (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)il2cpp_codegen_object_new(GUIStyle_t671F175A201A19166385EE3392292A5F50070572_il2cpp_TypeInfo_var);
GUIStyle__ctor_m8AA3D5AA506A252687923D0DA80741862AA83805(L_26, /*hidden argument*/NULL);
__this->set_m_horizontalSliderThumb_13(L_26);
}
IL_00e3:
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_27 = __this->get_m_verticalSlider_15();
V_9 = (bool)((((RuntimeObject*)(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)L_27) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_28 = V_9;
if (!L_28)
{
goto IL_00fd;
}
}
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_29 = (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)il2cpp_codegen_object_new(GUIStyle_t671F175A201A19166385EE3392292A5F50070572_il2cpp_TypeInfo_var);
GUIStyle__ctor_m8AA3D5AA506A252687923D0DA80741862AA83805(L_29, /*hidden argument*/NULL);
__this->set_m_verticalSlider_15(L_29);
}
IL_00fd:
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_30 = __this->get_m_verticalSliderThumb_16();
V_10 = (bool)((((RuntimeObject*)(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)L_30) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_31 = V_10;
if (!L_31)
{
goto IL_0117;
}
}
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_32 = (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)il2cpp_codegen_object_new(GUIStyle_t671F175A201A19166385EE3392292A5F50070572_il2cpp_TypeInfo_var);
GUIStyle__ctor_m8AA3D5AA506A252687923D0DA80741862AA83805(L_32, /*hidden argument*/NULL);
__this->set_m_verticalSliderThumb_16(L_32);
}
IL_0117:
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_33 = __this->get_m_horizontalScrollbar_18();
V_11 = (bool)((((RuntimeObject*)(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)L_33) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_34 = V_11;
if (!L_34)
{
goto IL_0131;
}
}
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_35 = (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)il2cpp_codegen_object_new(GUIStyle_t671F175A201A19166385EE3392292A5F50070572_il2cpp_TypeInfo_var);
GUIStyle__ctor_m8AA3D5AA506A252687923D0DA80741862AA83805(L_35, /*hidden argument*/NULL);
__this->set_m_horizontalScrollbar_18(L_35);
}
IL_0131:
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_36 = __this->get_m_horizontalScrollbarThumb_19();
V_12 = (bool)((((RuntimeObject*)(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)L_36) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_37 = V_12;
if (!L_37)
{
goto IL_014b;
}
}
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_38 = (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)il2cpp_codegen_object_new(GUIStyle_t671F175A201A19166385EE3392292A5F50070572_il2cpp_TypeInfo_var);
GUIStyle__ctor_m8AA3D5AA506A252687923D0DA80741862AA83805(L_38, /*hidden argument*/NULL);
__this->set_m_horizontalScrollbarThumb_19(L_38);
}
IL_014b:
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_39 = __this->get_m_horizontalScrollbarLeftButton_20();
V_13 = (bool)((((RuntimeObject*)(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)L_39) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_40 = V_13;
if (!L_40)
{
goto IL_0165;
}
}
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_41 = (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)il2cpp_codegen_object_new(GUIStyle_t671F175A201A19166385EE3392292A5F50070572_il2cpp_TypeInfo_var);
GUIStyle__ctor_m8AA3D5AA506A252687923D0DA80741862AA83805(L_41, /*hidden argument*/NULL);
__this->set_m_horizontalScrollbarLeftButton_20(L_41);
}
IL_0165:
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_42 = __this->get_m_horizontalScrollbarRightButton_21();
V_14 = (bool)((((RuntimeObject*)(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)L_42) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_43 = V_14;
if (!L_43)
{
goto IL_017f;
}
}
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_44 = (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)il2cpp_codegen_object_new(GUIStyle_t671F175A201A19166385EE3392292A5F50070572_il2cpp_TypeInfo_var);
GUIStyle__ctor_m8AA3D5AA506A252687923D0DA80741862AA83805(L_44, /*hidden argument*/NULL);
__this->set_m_horizontalScrollbarRightButton_21(L_44);
}
IL_017f:
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_45 = __this->get_m_verticalScrollbar_22();
V_15 = (bool)((((RuntimeObject*)(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)L_45) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_46 = V_15;
if (!L_46)
{
goto IL_0199;
}
}
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_47 = (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)il2cpp_codegen_object_new(GUIStyle_t671F175A201A19166385EE3392292A5F50070572_il2cpp_TypeInfo_var);
GUIStyle__ctor_m8AA3D5AA506A252687923D0DA80741862AA83805(L_47, /*hidden argument*/NULL);
__this->set_m_verticalScrollbar_22(L_47);
}
IL_0199:
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_48 = __this->get_m_verticalScrollbarThumb_23();
V_16 = (bool)((((RuntimeObject*)(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)L_48) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_49 = V_16;
if (!L_49)
{
goto IL_01b3;
}
}
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_50 = (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)il2cpp_codegen_object_new(GUIStyle_t671F175A201A19166385EE3392292A5F50070572_il2cpp_TypeInfo_var);
GUIStyle__ctor_m8AA3D5AA506A252687923D0DA80741862AA83805(L_50, /*hidden argument*/NULL);
__this->set_m_verticalScrollbarThumb_23(L_50);
}
IL_01b3:
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_51 = __this->get_m_verticalScrollbarUpButton_24();
V_17 = (bool)((((RuntimeObject*)(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)L_51) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_52 = V_17;
if (!L_52)
{
goto IL_01cd;
}
}
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_53 = (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)il2cpp_codegen_object_new(GUIStyle_t671F175A201A19166385EE3392292A5F50070572_il2cpp_TypeInfo_var);
GUIStyle__ctor_m8AA3D5AA506A252687923D0DA80741862AA83805(L_53, /*hidden argument*/NULL);
__this->set_m_verticalScrollbarUpButton_24(L_53);
}
IL_01cd:
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_54 = __this->get_m_verticalScrollbarDownButton_25();
V_18 = (bool)((((RuntimeObject*)(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)L_54) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_55 = V_18;
if (!L_55)
{
goto IL_01e7;
}
}
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_56 = (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)il2cpp_codegen_object_new(GUIStyle_t671F175A201A19166385EE3392292A5F50070572_il2cpp_TypeInfo_var);
GUIStyle__ctor_m8AA3D5AA506A252687923D0DA80741862AA83805(L_56, /*hidden argument*/NULL);
__this->set_m_verticalScrollbarDownButton_25(L_56);
}
IL_01e7:
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_57 = __this->get_m_ScrollView_26();
V_19 = (bool)((((RuntimeObject*)(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)L_57) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_58 = V_19;
if (!L_58)
{
goto IL_0201;
}
}
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_59 = (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)il2cpp_codegen_object_new(GUIStyle_t671F175A201A19166385EE3392292A5F50070572_il2cpp_TypeInfo_var);
GUIStyle__ctor_m8AA3D5AA506A252687923D0DA80741862AA83805(L_59, /*hidden argument*/NULL);
__this->set_m_ScrollView_26(L_59);
}
IL_0201:
{
IL2CPP_RUNTIME_CLASS_INIT(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_il2cpp_TypeInfo_var);
StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * L_60 = StringComparer_get_OrdinalIgnoreCase_m3F2527D9A11521E8B51F0AC8F70DB272DA8334C9_inline(/*hidden argument*/NULL);
Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A * L_61 = (Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A *)il2cpp_codegen_object_new(Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A_il2cpp_TypeInfo_var);
Dictionary_2__ctor_mE7D4915AD1A64B140D2C412B197D4D43B016074E(L_61, L_60, /*hidden argument*/Dictionary_2__ctor_mE7D4915AD1A64B140D2C412B197D4D43B016074E_RuntimeMethod_var);
__this->set_m_Styles_30(L_61);
Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A * L_62 = __this->get_m_Styles_30();
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_63 = __this->get_m_box_5();
NullCheck(L_62);
Dictionary_2_set_Item_m24E725BAB2853FE434C3D507858296BA81733DC5(L_62, _stringLiteralC7D8A6D722A1EC9A16FAE165177C418D4FD63175, L_63, /*hidden argument*/Dictionary_2_set_Item_m24E725BAB2853FE434C3D507858296BA81733DC5_RuntimeMethod_var);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_64 = __this->get_m_box_5();
NullCheck(L_64);
GUIStyle_set_name_m3D232D5A8EAD7B29F1F2DA3ADD01B99EFF83F1D7(L_64, _stringLiteralC7D8A6D722A1EC9A16FAE165177C418D4FD63175, /*hidden argument*/NULL);
Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A * L_65 = __this->get_m_Styles_30();
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_66 = __this->get_m_button_6();
NullCheck(L_65);
Dictionary_2_set_Item_m24E725BAB2853FE434C3D507858296BA81733DC5(L_65, _stringLiteral7B7FCC78D6CD1507925B769B1386CED3683F99C7, L_66, /*hidden argument*/Dictionary_2_set_Item_m24E725BAB2853FE434C3D507858296BA81733DC5_RuntimeMethod_var);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_67 = __this->get_m_button_6();
NullCheck(L_67);
GUIStyle_set_name_m3D232D5A8EAD7B29F1F2DA3ADD01B99EFF83F1D7(L_67, _stringLiteral7B7FCC78D6CD1507925B769B1386CED3683F99C7, /*hidden argument*/NULL);
Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A * L_68 = __this->get_m_Styles_30();
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_69 = __this->get_m_toggle_7();
NullCheck(L_68);
Dictionary_2_set_Item_m24E725BAB2853FE434C3D507858296BA81733DC5(L_68, _stringLiteralF9C5942B1F55CB12B8F2B5FAE21A9F1706F9D367, L_69, /*hidden argument*/Dictionary_2_set_Item_m24E725BAB2853FE434C3D507858296BA81733DC5_RuntimeMethod_var);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_70 = __this->get_m_toggle_7();
NullCheck(L_70);
GUIStyle_set_name_m3D232D5A8EAD7B29F1F2DA3ADD01B99EFF83F1D7(L_70, _stringLiteralF9C5942B1F55CB12B8F2B5FAE21A9F1706F9D367, /*hidden argument*/NULL);
Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A * L_71 = __this->get_m_Styles_30();
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_72 = __this->get_m_label_8();
NullCheck(L_71);
Dictionary_2_set_Item_m24E725BAB2853FE434C3D507858296BA81733DC5(L_71, _stringLiteral64C65374DBAB6FE3762748196D9D3A9610E2E5A9, L_72, /*hidden argument*/Dictionary_2_set_Item_m24E725BAB2853FE434C3D507858296BA81733DC5_RuntimeMethod_var);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_73 = __this->get_m_label_8();
NullCheck(L_73);
GUIStyle_set_name_m3D232D5A8EAD7B29F1F2DA3ADD01B99EFF83F1D7(L_73, _stringLiteral64C65374DBAB6FE3762748196D9D3A9610E2E5A9, /*hidden argument*/NULL);
Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A * L_74 = __this->get_m_Styles_30();
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_75 = __this->get_m_window_11();
NullCheck(L_74);
Dictionary_2_set_Item_m24E725BAB2853FE434C3D507858296BA81733DC5(L_74, _stringLiteral320AD267D8D969F285EDA5C184F5455BD29C8C95, L_75, /*hidden argument*/Dictionary_2_set_Item_m24E725BAB2853FE434C3D507858296BA81733DC5_RuntimeMethod_var);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_76 = __this->get_m_window_11();
NullCheck(L_76);
GUIStyle_set_name_m3D232D5A8EAD7B29F1F2DA3ADD01B99EFF83F1D7(L_76, _stringLiteral320AD267D8D969F285EDA5C184F5455BD29C8C95, /*hidden argument*/NULL);
Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A * L_77 = __this->get_m_Styles_30();
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_78 = __this->get_m_textField_9();
NullCheck(L_77);
Dictionary_2_set_Item_m24E725BAB2853FE434C3D507858296BA81733DC5(L_77, _stringLiteral2C72A73D3153ECA8FBF9E58315C5EE073BE0D5AB, L_78, /*hidden argument*/Dictionary_2_set_Item_m24E725BAB2853FE434C3D507858296BA81733DC5_RuntimeMethod_var);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_79 = __this->get_m_textField_9();
NullCheck(L_79);
GUIStyle_set_name_m3D232D5A8EAD7B29F1F2DA3ADD01B99EFF83F1D7(L_79, _stringLiteral2C72A73D3153ECA8FBF9E58315C5EE073BE0D5AB, /*hidden argument*/NULL);
Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A * L_80 = __this->get_m_Styles_30();
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_81 = __this->get_m_textArea_10();
NullCheck(L_80);
Dictionary_2_set_Item_m24E725BAB2853FE434C3D507858296BA81733DC5(L_80, _stringLiteralFC8656334C97C18022AE87133F261DBA949A4CDD, L_81, /*hidden argument*/Dictionary_2_set_Item_m24E725BAB2853FE434C3D507858296BA81733DC5_RuntimeMethod_var);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_82 = __this->get_m_textArea_10();
NullCheck(L_82);
GUIStyle_set_name_m3D232D5A8EAD7B29F1F2DA3ADD01B99EFF83F1D7(L_82, _stringLiteralFC8656334C97C18022AE87133F261DBA949A4CDD, /*hidden argument*/NULL);
Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A * L_83 = __this->get_m_Styles_30();
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_84 = __this->get_m_horizontalSlider_12();
NullCheck(L_83);
Dictionary_2_set_Item_m24E725BAB2853FE434C3D507858296BA81733DC5(L_83, _stringLiteral5EB8003910C4D9CB2B9CAF1A8610A9FB39ACD4BD, L_84, /*hidden argument*/Dictionary_2_set_Item_m24E725BAB2853FE434C3D507858296BA81733DC5_RuntimeMethod_var);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_85 = __this->get_m_horizontalSlider_12();
NullCheck(L_85);
GUIStyle_set_name_m3D232D5A8EAD7B29F1F2DA3ADD01B99EFF83F1D7(L_85, _stringLiteral5EB8003910C4D9CB2B9CAF1A8610A9FB39ACD4BD, /*hidden argument*/NULL);
Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A * L_86 = __this->get_m_Styles_30();
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_87 = __this->get_m_horizontalSliderThumb_13();
NullCheck(L_86);
Dictionary_2_set_Item_m24E725BAB2853FE434C3D507858296BA81733DC5(L_86, _stringLiteral8E436B06A17CFAF87BEB781E30D07B6FF58B2B71, L_87, /*hidden argument*/Dictionary_2_set_Item_m24E725BAB2853FE434C3D507858296BA81733DC5_RuntimeMethod_var);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_88 = __this->get_m_horizontalSliderThumb_13();
NullCheck(L_88);
GUIStyle_set_name_m3D232D5A8EAD7B29F1F2DA3ADD01B99EFF83F1D7(L_88, _stringLiteral8E436B06A17CFAF87BEB781E30D07B6FF58B2B71, /*hidden argument*/NULL);
Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A * L_89 = __this->get_m_Styles_30();
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_90 = __this->get_m_verticalSlider_15();
NullCheck(L_89);
Dictionary_2_set_Item_m24E725BAB2853FE434C3D507858296BA81733DC5(L_89, _stringLiteral52424150CE94D4AA9600469221595A075963D010, L_90, /*hidden argument*/Dictionary_2_set_Item_m24E725BAB2853FE434C3D507858296BA81733DC5_RuntimeMethod_var);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_91 = __this->get_m_verticalSlider_15();
NullCheck(L_91);
GUIStyle_set_name_m3D232D5A8EAD7B29F1F2DA3ADD01B99EFF83F1D7(L_91, _stringLiteral52424150CE94D4AA9600469221595A075963D010, /*hidden argument*/NULL);
Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A * L_92 = __this->get_m_Styles_30();
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_93 = __this->get_m_verticalSliderThumb_16();
NullCheck(L_92);
Dictionary_2_set_Item_m24E725BAB2853FE434C3D507858296BA81733DC5(L_92, _stringLiteral5370ABC43B604B9438E05FD111325616F5BA93EB, L_93, /*hidden argument*/Dictionary_2_set_Item_m24E725BAB2853FE434C3D507858296BA81733DC5_RuntimeMethod_var);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_94 = __this->get_m_verticalSliderThumb_16();
NullCheck(L_94);
GUIStyle_set_name_m3D232D5A8EAD7B29F1F2DA3ADD01B99EFF83F1D7(L_94, _stringLiteral5370ABC43B604B9438E05FD111325616F5BA93EB, /*hidden argument*/NULL);
Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A * L_95 = __this->get_m_Styles_30();
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_96 = __this->get_m_horizontalScrollbar_18();
NullCheck(L_95);
Dictionary_2_set_Item_m24E725BAB2853FE434C3D507858296BA81733DC5(L_95, _stringLiteral225F12AD8179D36194EBC648F0064B7E925473EC, L_96, /*hidden argument*/Dictionary_2_set_Item_m24E725BAB2853FE434C3D507858296BA81733DC5_RuntimeMethod_var);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_97 = __this->get_m_horizontalScrollbar_18();
NullCheck(L_97);
GUIStyle_set_name_m3D232D5A8EAD7B29F1F2DA3ADD01B99EFF83F1D7(L_97, _stringLiteral225F12AD8179D36194EBC648F0064B7E925473EC, /*hidden argument*/NULL);
Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A * L_98 = __this->get_m_Styles_30();
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_99 = __this->get_m_horizontalScrollbarThumb_19();
NullCheck(L_98);
Dictionary_2_set_Item_m24E725BAB2853FE434C3D507858296BA81733DC5(L_98, _stringLiteralB72EF1950CD4E44A073B202D2C0D05D8A97FD42F, L_99, /*hidden argument*/Dictionary_2_set_Item_m24E725BAB2853FE434C3D507858296BA81733DC5_RuntimeMethod_var);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_100 = __this->get_m_horizontalScrollbarThumb_19();
NullCheck(L_100);
GUIStyle_set_name_m3D232D5A8EAD7B29F1F2DA3ADD01B99EFF83F1D7(L_100, _stringLiteralB72EF1950CD4E44A073B202D2C0D05D8A97FD42F, /*hidden argument*/NULL);
Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A * L_101 = __this->get_m_Styles_30();
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_102 = __this->get_m_horizontalScrollbarLeftButton_20();
NullCheck(L_101);
Dictionary_2_set_Item_m24E725BAB2853FE434C3D507858296BA81733DC5(L_101, _stringLiteral09820128951D618D4CFE7DC0105A1B6B113C921F, L_102, /*hidden argument*/Dictionary_2_set_Item_m24E725BAB2853FE434C3D507858296BA81733DC5_RuntimeMethod_var);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_103 = __this->get_m_horizontalScrollbarLeftButton_20();
NullCheck(L_103);
GUIStyle_set_name_m3D232D5A8EAD7B29F1F2DA3ADD01B99EFF83F1D7(L_103, _stringLiteral09820128951D618D4CFE7DC0105A1B6B113C921F, /*hidden argument*/NULL);
Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A * L_104 = __this->get_m_Styles_30();
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_105 = __this->get_m_horizontalScrollbarRightButton_21();
NullCheck(L_104);
Dictionary_2_set_Item_m24E725BAB2853FE434C3D507858296BA81733DC5(L_104, _stringLiteralC1736E388224676A122F6D36DB2BFE2D5B5815D1, L_105, /*hidden argument*/Dictionary_2_set_Item_m24E725BAB2853FE434C3D507858296BA81733DC5_RuntimeMethod_var);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_106 = __this->get_m_horizontalScrollbarRightButton_21();
NullCheck(L_106);
GUIStyle_set_name_m3D232D5A8EAD7B29F1F2DA3ADD01B99EFF83F1D7(L_106, _stringLiteralC1736E388224676A122F6D36DB2BFE2D5B5815D1, /*hidden argument*/NULL);
Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A * L_107 = __this->get_m_Styles_30();
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_108 = __this->get_m_verticalScrollbar_22();
NullCheck(L_107);
Dictionary_2_set_Item_m24E725BAB2853FE434C3D507858296BA81733DC5(L_107, _stringLiteralE794E3C8A26A199BEB58080D834D082D83C3C1B2, L_108, /*hidden argument*/Dictionary_2_set_Item_m24E725BAB2853FE434C3D507858296BA81733DC5_RuntimeMethod_var);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_109 = __this->get_m_verticalScrollbar_22();
NullCheck(L_109);
GUIStyle_set_name_m3D232D5A8EAD7B29F1F2DA3ADD01B99EFF83F1D7(L_109, _stringLiteralE794E3C8A26A199BEB58080D834D082D83C3C1B2, /*hidden argument*/NULL);
Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A * L_110 = __this->get_m_Styles_30();
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_111 = __this->get_m_verticalScrollbarThumb_23();
NullCheck(L_110);
Dictionary_2_set_Item_m24E725BAB2853FE434C3D507858296BA81733DC5(L_110, _stringLiteral487A38C9550C3B08588319E52F112CE6A539A561, L_111, /*hidden argument*/Dictionary_2_set_Item_m24E725BAB2853FE434C3D507858296BA81733DC5_RuntimeMethod_var);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_112 = __this->get_m_verticalScrollbarThumb_23();
NullCheck(L_112);
GUIStyle_set_name_m3D232D5A8EAD7B29F1F2DA3ADD01B99EFF83F1D7(L_112, _stringLiteral487A38C9550C3B08588319E52F112CE6A539A561, /*hidden argument*/NULL);
Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A * L_113 = __this->get_m_Styles_30();
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_114 = __this->get_m_verticalScrollbarUpButton_24();
NullCheck(L_113);
Dictionary_2_set_Item_m24E725BAB2853FE434C3D507858296BA81733DC5(L_113, _stringLiteral047A7EA97FB24BA0C74949892C1880E97AC0FB35, L_114, /*hidden argument*/Dictionary_2_set_Item_m24E725BAB2853FE434C3D507858296BA81733DC5_RuntimeMethod_var);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_115 = __this->get_m_verticalScrollbarUpButton_24();
NullCheck(L_115);
GUIStyle_set_name_m3D232D5A8EAD7B29F1F2DA3ADD01B99EFF83F1D7(L_115, _stringLiteral047A7EA97FB24BA0C74949892C1880E97AC0FB35, /*hidden argument*/NULL);
Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A * L_116 = __this->get_m_Styles_30();
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_117 = __this->get_m_verticalScrollbarDownButton_25();
NullCheck(L_116);
Dictionary_2_set_Item_m24E725BAB2853FE434C3D507858296BA81733DC5(L_116, _stringLiteralACAB6798BE3F8F69AA0198A7C9B83ADA0F075932, L_117, /*hidden argument*/Dictionary_2_set_Item_m24E725BAB2853FE434C3D507858296BA81733DC5_RuntimeMethod_var);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_118 = __this->get_m_verticalScrollbarDownButton_25();
NullCheck(L_118);
GUIStyle_set_name_m3D232D5A8EAD7B29F1F2DA3ADD01B99EFF83F1D7(L_118, _stringLiteralACAB6798BE3F8F69AA0198A7C9B83ADA0F075932, /*hidden argument*/NULL);
Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A * L_119 = __this->get_m_Styles_30();
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_120 = __this->get_m_ScrollView_26();
NullCheck(L_119);
Dictionary_2_set_Item_m24E725BAB2853FE434C3D507858296BA81733DC5(L_119, _stringLiteral9B611144024AB5EC850C1A1C7668509DA40C92DB, L_120, /*hidden argument*/Dictionary_2_set_Item_m24E725BAB2853FE434C3D507858296BA81733DC5_RuntimeMethod_var);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_121 = __this->get_m_ScrollView_26();
NullCheck(L_121);
GUIStyle_set_name_m3D232D5A8EAD7B29F1F2DA3ADD01B99EFF83F1D7(L_121, _stringLiteral9B611144024AB5EC850C1A1C7668509DA40C92DB, /*hidden argument*/NULL);
GUIStyleU5BU5D_t2F343713D6ADFF41BBCF1D17BAE79F51BD745DBB* L_122 = __this->get_m_CustomStyles_27();
V_20 = (bool)((!(((RuntimeObject*)(GUIStyleU5BU5D_t2F343713D6ADFF41BBCF1D17BAE79F51BD745DBB*)L_122) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
bool L_123 = V_20;
if (!L_123)
{
goto IL_0598;
}
}
{
V_21 = 0;
goto IL_0585;
}
IL_0546:
{
GUIStyleU5BU5D_t2F343713D6ADFF41BBCF1D17BAE79F51BD745DBB* L_124 = __this->get_m_CustomStyles_27();
int32_t L_125 = V_21;
NullCheck(L_124);
int32_t L_126 = L_125;
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_127 = (L_124)->GetAt(static_cast<il2cpp_array_size_t>(L_126));
V_22 = (bool)((((RuntimeObject*)(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)L_127) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_128 = V_22;
if (!L_128)
{
goto IL_055b;
}
}
{
goto IL_057f;
}
IL_055b:
{
Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A * L_129 = __this->get_m_Styles_30();
GUIStyleU5BU5D_t2F343713D6ADFF41BBCF1D17BAE79F51BD745DBB* L_130 = __this->get_m_CustomStyles_27();
int32_t L_131 = V_21;
NullCheck(L_130);
int32_t L_132 = L_131;
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_133 = (L_130)->GetAt(static_cast<il2cpp_array_size_t>(L_132));
NullCheck(L_133);
String_t* L_134 = GUIStyle_get_name_m111D8AB0173E1EBA46A9664EBABBC82AFE3ED71E(L_133, /*hidden argument*/NULL);
GUIStyleU5BU5D_t2F343713D6ADFF41BBCF1D17BAE79F51BD745DBB* L_135 = __this->get_m_CustomStyles_27();
int32_t L_136 = V_21;
NullCheck(L_135);
int32_t L_137 = L_136;
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_138 = (L_135)->GetAt(static_cast<il2cpp_array_size_t>(L_137));
NullCheck(L_129);
Dictionary_2_set_Item_m24E725BAB2853FE434C3D507858296BA81733DC5(L_129, L_134, L_138, /*hidden argument*/Dictionary_2_set_Item_m24E725BAB2853FE434C3D507858296BA81733DC5_RuntimeMethod_var);
}
IL_057f:
{
int32_t L_139 = V_21;
V_21 = ((int32_t)il2cpp_codegen_add((int32_t)L_139, (int32_t)1));
}
IL_0585:
{
int32_t L_140 = V_21;
GUIStyleU5BU5D_t2F343713D6ADFF41BBCF1D17BAE79F51BD745DBB* L_141 = __this->get_m_CustomStyles_27();
NullCheck(L_141);
V_23 = (bool)((((int32_t)L_140) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_141)->max_length))))))? 1 : 0);
bool L_142 = V_23;
if (L_142)
{
goto IL_0546;
}
}
{
}
IL_0598:
{
Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A * L_143 = __this->get_m_Styles_30();
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** L_144 = __this->get_address_of_m_horizontalSliderThumbExtent_14();
NullCheck(L_143);
bool L_145 = Dictionary_2_TryGetValue_m72452D4223AA3313BF658BFBDFC1B417CA40EC18(L_143, _stringLiteral99032D12CB8AAB77590E57E36974F8C1C56B7B95, (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 **)L_144, /*hidden argument*/Dictionary_2_TryGetValue_m72452D4223AA3313BF658BFBDFC1B417CA40EC18_RuntimeMethod_var);
V_24 = (bool)((((int32_t)L_145) == ((int32_t)0))? 1 : 0);
bool L_146 = V_24;
if (!L_146)
{
goto IL_05ec;
}
}
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_147 = (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)il2cpp_codegen_object_new(GUIStyle_t671F175A201A19166385EE3392292A5F50070572_il2cpp_TypeInfo_var);
GUIStyle__ctor_m8AA3D5AA506A252687923D0DA80741862AA83805(L_147, /*hidden argument*/NULL);
__this->set_m_horizontalSliderThumbExtent_14(L_147);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_148 = __this->get_m_horizontalSliderThumbExtent_14();
NullCheck(L_148);
GUIStyle_set_name_m3D232D5A8EAD7B29F1F2DA3ADD01B99EFF83F1D7(L_148, _stringLiteral884E998DCB0626A339721789EA125B983932D177, /*hidden argument*/NULL);
Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A * L_149 = __this->get_m_Styles_30();
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_150 = __this->get_m_horizontalSliderThumbExtent_14();
NullCheck(L_149);
Dictionary_2_set_Item_m24E725BAB2853FE434C3D507858296BA81733DC5(L_149, _stringLiteral99032D12CB8AAB77590E57E36974F8C1C56B7B95, L_150, /*hidden argument*/Dictionary_2_set_Item_m24E725BAB2853FE434C3D507858296BA81733DC5_RuntimeMethod_var);
}
IL_05ec:
{
Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A * L_151 = __this->get_m_Styles_30();
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 ** L_152 = __this->get_address_of_m_verticalSliderThumbExtent_17();
NullCheck(L_151);
bool L_153 = Dictionary_2_TryGetValue_m72452D4223AA3313BF658BFBDFC1B417CA40EC18(L_151, _stringLiteral4C523C75AC8AB567667867138725AB01F5FA186A, (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 **)L_152, /*hidden argument*/Dictionary_2_TryGetValue_m72452D4223AA3313BF658BFBDFC1B417CA40EC18_RuntimeMethod_var);
V_25 = (bool)((((int32_t)L_153) == ((int32_t)0))? 1 : 0);
bool L_154 = V_25;
if (!L_154)
{
goto IL_0640;
}
}
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_155 = (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)il2cpp_codegen_object_new(GUIStyle_t671F175A201A19166385EE3392292A5F50070572_il2cpp_TypeInfo_var);
GUIStyle__ctor_m8AA3D5AA506A252687923D0DA80741862AA83805(L_155, /*hidden argument*/NULL);
__this->set_m_verticalSliderThumbExtent_17(L_155);
Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A * L_156 = __this->get_m_Styles_30();
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_157 = __this->get_m_verticalSliderThumbExtent_17();
NullCheck(L_156);
Dictionary_2_set_Item_m24E725BAB2853FE434C3D507858296BA81733DC5(L_156, _stringLiteral4C523C75AC8AB567667867138725AB01F5FA186A, L_157, /*hidden argument*/Dictionary_2_set_Item_m24E725BAB2853FE434C3D507858296BA81733DC5_RuntimeMethod_var);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_158 = __this->get_m_verticalSliderThumbExtent_17();
NullCheck(L_158);
GUIStyle_set_name_m3D232D5A8EAD7B29F1F2DA3ADD01B99EFF83F1D7(L_158, _stringLiteralA11608E0F772347D667D92CD05AFA60E273D90A8, /*hidden argument*/NULL);
}
IL_0640:
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_159 = GUISkin_get_error_m40FBD0C57353CBFD8EE75B796E3EADBF9033C47F(/*hidden argument*/NULL);
NullCheck(L_159);
GUIStyle_set_stretchHeight_mE11B46969A8498FB3B7443B4C54254F0C9A71A6E(L_159, (bool)1, /*hidden argument*/NULL);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_160 = GUISkin_get_error_m40FBD0C57353CBFD8EE75B796E3EADBF9033C47F(/*hidden argument*/NULL);
NullCheck(L_160);
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * L_161 = GUIStyle_get_normal_mC5CB22EED8113DEC86C54FB42F757B635D09DD2F(L_160, /*hidden argument*/NULL);
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_162 = Color_get_red_m5562DD438931CF0D1FBBBB29BF7F8B752AF38957(/*hidden argument*/NULL);
NullCheck(L_161);
GUIStyleState_set_textColor_m2B235845A292C22ABEDEFBB2FD798DEB4E104983(L_161, L_162, /*hidden argument*/NULL);
return;
}
}
// UnityEngine.GUIStyle UnityEngine.GUISkin::GetStyle(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * GUISkin_GetStyle_mD292E6470E961CA986674875B78746A1859D5FEC (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, String_t* ___styleName0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUISkin_GetStyle_mD292E6470E961CA986674875B78746A1859D5FEC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * V_0 = NULL;
bool V_1 = false;
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * V_2 = NULL;
int32_t V_3 = 0;
int32_t G_B4_0 = 0;
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* G_B4_1 = NULL;
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* G_B4_2 = NULL;
int32_t G_B3_0 = 0;
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* G_B3_1 = NULL;
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* G_B3_2 = NULL;
String_t* G_B5_0 = NULL;
int32_t G_B5_1 = 0;
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* G_B5_2 = NULL;
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* G_B5_3 = NULL;
{
String_t* L_0 = ___styleName0;
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_1 = GUISkin_FindStyle_m977BAAD9DE35AC43C9FA2DB52C6C0BDF83EE4706(__this, L_0, /*hidden argument*/NULL);
V_0 = L_1;
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_2 = V_0;
V_1 = (bool)((!(((RuntimeObject*)(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)L_2) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
bool L_3 = V_1;
if (!L_3)
{
goto IL_0015;
}
}
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_4 = V_0;
V_2 = L_4;
goto IL_007c;
}
IL_0015:
{
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_5 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)6);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_6 = L_5;
NullCheck(L_6);
ArrayElementTypeCheck (L_6, _stringLiteral2BBC38111940698AFB713196AC3CDC77F8520F36);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral2BBC38111940698AFB713196AC3CDC77F8520F36);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_7 = L_6;
String_t* L_8 = ___styleName0;
NullCheck(L_7);
ArrayElementTypeCheck (L_7, L_8);
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)L_8);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_9 = L_7;
NullCheck(L_9);
ArrayElementTypeCheck (L_9, _stringLiteral32ECC4719669918929E577728ABBC5556B1258D9);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral32ECC4719669918929E577728ABBC5556B1258D9);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_10 = L_9;
String_t* L_11 = Object_get_name_mA2D400141CB3C991C87A2556429781DE961A83CE(__this, /*hidden argument*/NULL);
NullCheck(L_10);
ArrayElementTypeCheck (L_10, L_11);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)L_11);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_12 = L_10;
NullCheck(L_12);
ArrayElementTypeCheck (L_12, _stringLiteral4EBF4799F637E32D34B9DBF78887989DD6C458D1);
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteral4EBF4799F637E32D34B9DBF78887989DD6C458D1);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_13 = L_12;
Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * L_14 = Event_get_current_m072CEE599D11B8A9A916697E57C0F561188CDB2B(/*hidden argument*/NULL);
G_B3_0 = 5;
G_B3_1 = L_13;
G_B3_2 = L_13;
if (L_14)
{
G_B4_0 = 5;
G_B4_1 = L_13;
G_B4_2 = L_13;
goto IL_0050;
}
}
{
G_B5_0 = _stringLiteralB71AA0202634484C09B931E01A9CF812565B054B;
G_B5_1 = G_B3_0;
G_B5_2 = G_B3_1;
G_B5_3 = G_B3_2;
goto IL_0068;
}
IL_0050:
{
Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * L_15 = Event_get_current_m072CEE599D11B8A9A916697E57C0F561188CDB2B(/*hidden argument*/NULL);
NullCheck(L_15);
int32_t L_16 = Event_get_type_mAABE4A35E5658E0079A1518D318AF2592F51D6FA(L_15, /*hidden argument*/NULL);
V_3 = L_16;
RuntimeObject * L_17 = Box(EventType_t3D3937E705A4506226002DAB22071B7B181DA57B_il2cpp_TypeInfo_var, (&V_3));
NullCheck(L_17);
String_t* L_18 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_17);
V_3 = *(int32_t*)UnBox(L_17);
G_B5_0 = L_18;
G_B5_1 = G_B4_0;
G_B5_2 = G_B4_1;
G_B5_3 = G_B4_2;
}
IL_0068:
{
NullCheck(G_B5_2);
ArrayElementTypeCheck (G_B5_2, G_B5_0);
(G_B5_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B5_1), (String_t*)G_B5_0);
String_t* L_19 = String_Concat_m232E857CA5107EA6AC52E7DD7018716C021F237B(G_B5_3, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Debug_t7B5FCB117E2FD63B6838BC52821B252E2BFB61C4_il2cpp_TypeInfo_var);
Debug_LogWarning_m37338644DC81F640CCDFEAE35A223F0E965F0568(L_19, /*hidden argument*/NULL);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_20 = GUISkin_get_error_m40FBD0C57353CBFD8EE75B796E3EADBF9033C47F(/*hidden argument*/NULL);
V_2 = L_20;
goto IL_007c;
}
IL_007c:
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_21 = V_2;
return L_21;
}
}
// UnityEngine.GUIStyle UnityEngine.GUISkin::FindStyle(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * GUISkin_FindStyle_m977BAAD9DE35AC43C9FA2DB52C6C0BDF83EE4706 (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, String_t* ___styleName0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUISkin_FindStyle_m977BAAD9DE35AC43C9FA2DB52C6C0BDF83EE4706_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * V_0 = NULL;
bool V_1 = false;
bool V_2 = false;
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * V_3 = NULL;
{
Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A * L_0 = __this->get_m_Styles_30();
V_1 = (bool)((((RuntimeObject*)(Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A *)L_0) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_1 = V_1;
if (!L_1)
{
goto IL_0015;
}
}
{
GUISkin_BuildStyleCache_m2C68BB5521EAF11FC98C86D7E60008901D61866A(__this, /*hidden argument*/NULL);
}
IL_0015:
{
Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A * L_2 = __this->get_m_Styles_30();
String_t* L_3 = ___styleName0;
NullCheck(L_2);
bool L_4 = Dictionary_2_TryGetValue_m72452D4223AA3313BF658BFBDFC1B417CA40EC18(L_2, L_3, (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 **)(&V_0), /*hidden argument*/Dictionary_2_TryGetValue_m72452D4223AA3313BF658BFBDFC1B417CA40EC18_RuntimeMethod_var);
V_2 = L_4;
bool L_5 = V_2;
if (!L_5)
{
goto IL_002b;
}
}
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_6 = V_0;
V_3 = L_6;
goto IL_002f;
}
IL_002b:
{
V_3 = (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)NULL;
goto IL_002f;
}
IL_002f:
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_7 = V_3;
return L_7;
}
}
// System.Void UnityEngine.GUISkin::MakeCurrent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUISkin_MakeCurrent_m42FAF8090F6B57648678704D86A6451DB917CF2D (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUISkin_MakeCurrent_m42FAF8090F6B57648678704D86A6451DB917CF2D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
((GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7_StaticFields*)il2cpp_codegen_static_fields_for(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7_il2cpp_TypeInfo_var))->set_current_32(__this);
Font_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26 * L_0 = GUISkin_get_font_m54200DFAF834B835CE6598E1BA5B41382BC33AD5(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(GUIStyle_t671F175A201A19166385EE3392292A5F50070572_il2cpp_TypeInfo_var);
GUIStyle_SetDefaultFont_m09D149F682E885D7058E3C48EB42C9E62363E381(L_0, /*hidden argument*/NULL);
SkinChangedDelegate_tAB4CEEA8C8A0BDCFD51C9624AE173C46A40135D8 * L_1 = ((GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7_StaticFields*)il2cpp_codegen_static_fields_for(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7_il2cpp_TypeInfo_var))->get_m_SkinChanged_31();
V_0 = (bool)((!(((RuntimeObject*)(SkinChangedDelegate_tAB4CEEA8C8A0BDCFD51C9624AE173C46A40135D8 *)L_1) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
bool L_2 = V_0;
if (!L_2)
{
goto IL_002a;
}
}
{
SkinChangedDelegate_tAB4CEEA8C8A0BDCFD51C9624AE173C46A40135D8 * L_3 = ((GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7_StaticFields*)il2cpp_codegen_static_fields_for(GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7_il2cpp_TypeInfo_var))->get_m_SkinChanged_31();
NullCheck(L_3);
SkinChangedDelegate_Invoke_mE18CA4219F24151D8FC8A8A8B261F3FD860B007F(L_3, /*hidden argument*/NULL);
}
IL_002a:
{
return;
}
}
// System.Collections.IEnumerator UnityEngine.GUISkin::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* GUISkin_GetEnumerator_m3F6D91C1C038E5DC24C38F6D23C95DEE03173987 (GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUISkin_GetEnumerator_m3F6D91C1C038E5DC24C38F6D23C95DEE03173987_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
RuntimeObject* V_1 = NULL;
{
Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A * L_0 = __this->get_m_Styles_30();
V_0 = (bool)((((RuntimeObject*)(Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A *)L_0) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0015;
}
}
{
GUISkin_BuildStyleCache_m2C68BB5521EAF11FC98C86D7E60008901D61866A(__this, /*hidden argument*/NULL);
}
IL_0015:
{
Dictionary_2_tF2F04E1BE233EE6C4A6E90261E463B2A67A3FB6A * L_2 = __this->get_m_Styles_30();
NullCheck(L_2);
ValueCollection_t0C6A26D50A89F916DF2650A7C132FFB1992070B9 * L_3 = Dictionary_2_get_Values_mBCCD4E4C93C5E4DF2E0A07934040870B3662866F(L_2, /*hidden argument*/Dictionary_2_get_Values_mBCCD4E4C93C5E4DF2E0A07934040870B3662866F_RuntimeMethod_var);
NullCheck(L_3);
Enumerator_t7CFB6C06FEABB756D0C0A1BA202A13F5091958A6 L_4 = ValueCollection_GetEnumerator_m56252F012AAECD0BFFC3729A87D60BF2945499C2(L_3, /*hidden argument*/ValueCollection_GetEnumerator_m56252F012AAECD0BFFC3729A87D60BF2945499C2_RuntimeMethod_var);
Enumerator_t7CFB6C06FEABB756D0C0A1BA202A13F5091958A6 L_5 = L_4;
RuntimeObject * L_6 = Box(Enumerator_t7CFB6C06FEABB756D0C0A1BA202A13F5091958A6_il2cpp_TypeInfo_var, &L_5);
V_1 = (RuntimeObject*)L_6;
goto IL_002d;
}
IL_002d:
{
RuntimeObject* L_7 = V_1;
return L_7;
}
}
#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
IL2CPP_EXTERN_C void DelegatePInvokeWrapper_SkinChangedDelegate_tAB4CEEA8C8A0BDCFD51C9624AE173C46A40135D8 (SkinChangedDelegate_tAB4CEEA8C8A0BDCFD51C9624AE173C46A40135D8 * __this, const RuntimeMethod* method)
{
typedef void (DEFAULT_CALL *PInvokeFunc)();
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_method_pointer(((RuntimeDelegate*)__this)->method));
// Native function invocation
il2cppPInvokeFunc();
}
// System.Void UnityEngine.GUISkin_SkinChangedDelegate::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SkinChangedDelegate__ctor_m106EBB63DA6B078DD50D230BAC7535923307F2FA (SkinChangedDelegate_tAB4CEEA8C8A0BDCFD51C9624AE173C46A40135D8 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void UnityEngine.GUISkin_SkinChangedDelegate::Invoke()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SkinChangedDelegate_Invoke_mE18CA4219F24151D8FC8A8A8B261F3FD860B007F (SkinChangedDelegate_tAB4CEEA8C8A0BDCFD51C9624AE173C46A40135D8 * __this, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 0)
{
// open
typedef void (*FunctionPointerType) (const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, targetMethod);
}
}
else
{
// closed
if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker0::Invoke(targetMethod, targetThis);
else
GenericVirtActionInvoker0::Invoke(targetMethod, targetThis);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis);
else
VirtActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis);
}
}
else
{
typedef void (*FunctionPointerType) (void*, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, targetMethod);
}
}
}
}
// System.IAsyncResult UnityEngine.GUISkin_SkinChangedDelegate::BeginInvoke(System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SkinChangedDelegate_BeginInvoke_mB7F9F676B52F8A8108956D2DA04E8C0ECD5C3824 (SkinChangedDelegate_tAB4CEEA8C8A0BDCFD51C9624AE173C46A40135D8 * __this, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback0, RuntimeObject * ___object1, const RuntimeMethod* method)
{
void *__d_args[1] = {0};
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback0, (RuntimeObject*)___object1);
}
// System.Void UnityEngine.GUISkin_SkinChangedDelegate::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SkinChangedDelegate_EndInvoke_mFB33D8790DB1DAA2CC1B927ADAE992FF3C89B149 (SkinChangedDelegate_tAB4CEEA8C8A0BDCFD51C9624AE173C46A40135D8 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#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
// Conversion methods for marshalling of: UnityEngine.GUIStyle
IL2CPP_EXTERN_C void GUIStyle_t671F175A201A19166385EE3392292A5F50070572_marshal_pinvoke(const GUIStyle_t671F175A201A19166385EE3392292A5F50070572& unmarshaled, GUIStyle_t671F175A201A19166385EE3392292A5F50070572_marshaled_pinvoke& marshaled)
{
Exception_t* ___m_Normal_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Normal' of type 'GUIStyle': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Normal_1Exception, NULL);
}
IL2CPP_EXTERN_C void GUIStyle_t671F175A201A19166385EE3392292A5F50070572_marshal_pinvoke_back(const GUIStyle_t671F175A201A19166385EE3392292A5F50070572_marshaled_pinvoke& marshaled, GUIStyle_t671F175A201A19166385EE3392292A5F50070572& unmarshaled)
{
Exception_t* ___m_Normal_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Normal' of type 'GUIStyle': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Normal_1Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.GUIStyle
IL2CPP_EXTERN_C void GUIStyle_t671F175A201A19166385EE3392292A5F50070572_marshal_pinvoke_cleanup(GUIStyle_t671F175A201A19166385EE3392292A5F50070572_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.GUIStyle
IL2CPP_EXTERN_C void GUIStyle_t671F175A201A19166385EE3392292A5F50070572_marshal_com(const GUIStyle_t671F175A201A19166385EE3392292A5F50070572& unmarshaled, GUIStyle_t671F175A201A19166385EE3392292A5F50070572_marshaled_com& marshaled)
{
Exception_t* ___m_Normal_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Normal' of type 'GUIStyle': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Normal_1Exception, NULL);
}
IL2CPP_EXTERN_C void GUIStyle_t671F175A201A19166385EE3392292A5F50070572_marshal_com_back(const GUIStyle_t671F175A201A19166385EE3392292A5F50070572_marshaled_com& marshaled, GUIStyle_t671F175A201A19166385EE3392292A5F50070572& unmarshaled)
{
Exception_t* ___m_Normal_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Normal' of type 'GUIStyle': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Normal_1Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.GUIStyle
IL2CPP_EXTERN_C void GUIStyle_t671F175A201A19166385EE3392292A5F50070572_marshal_com_cleanup(GUIStyle_t671F175A201A19166385EE3392292A5F50070572_marshaled_com& marshaled)
{
}
// System.String UnityEngine.GUIStyle::get_rawName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* GUIStyle_get_rawName_mD7DD50D00F93CEE5DCDE8E13A0F6C28A18ABC837 (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * __this, const RuntimeMethod* method)
{
typedef String_t* (*GUIStyle_get_rawName_mD7DD50D00F93CEE5DCDE8E13A0F6C28A18ABC837_ftn) (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *);
static GUIStyle_get_rawName_mD7DD50D00F93CEE5DCDE8E13A0F6C28A18ABC837_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (GUIStyle_get_rawName_mD7DD50D00F93CEE5DCDE8E13A0F6C28A18ABC837_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.GUIStyle::get_rawName()");
String_t* retVal = _il2cpp_icall_func(__this);
return retVal;
}
// System.Void UnityEngine.GUIStyle::set_rawName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIStyle_set_rawName_mD091741C119250A2BA0B90E15E6CE2313750DF95 (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * __this, String_t* ___value0, const RuntimeMethod* method)
{
typedef void (*GUIStyle_set_rawName_mD091741C119250A2BA0B90E15E6CE2313750DF95_ftn) (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *, String_t*);
static GUIStyle_set_rawName_mD091741C119250A2BA0B90E15E6CE2313750DF95_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (GUIStyle_set_rawName_mD091741C119250A2BA0B90E15E6CE2313750DF95_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.GUIStyle::set_rawName(System.String)");
_il2cpp_icall_func(__this, ___value0);
}
// System.Single UnityEngine.GUIStyle::get_fixedWidth()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float GUIStyle_get_fixedWidth_mEACB70758F83DCD64CE363143849CC40E49B8D8D (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * __this, const RuntimeMethod* method)
{
typedef float (*GUIStyle_get_fixedWidth_mEACB70758F83DCD64CE363143849CC40E49B8D8D_ftn) (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *);
static GUIStyle_get_fixedWidth_mEACB70758F83DCD64CE363143849CC40E49B8D8D_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (GUIStyle_get_fixedWidth_mEACB70758F83DCD64CE363143849CC40E49B8D8D_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.GUIStyle::get_fixedWidth()");
float retVal = _il2cpp_icall_func(__this);
return retVal;
}
// System.Single UnityEngine.GUIStyle::get_fixedHeight()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float GUIStyle_get_fixedHeight_m9B5589C95B27C5590219413E8D7E9E1E95EB7708 (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * __this, const RuntimeMethod* method)
{
typedef float (*GUIStyle_get_fixedHeight_m9B5589C95B27C5590219413E8D7E9E1E95EB7708_ftn) (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *);
static GUIStyle_get_fixedHeight_m9B5589C95B27C5590219413E8D7E9E1E95EB7708_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (GUIStyle_get_fixedHeight_m9B5589C95B27C5590219413E8D7E9E1E95EB7708_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.GUIStyle::get_fixedHeight()");
float retVal = _il2cpp_icall_func(__this);
return retVal;
}
// System.Boolean UnityEngine.GUIStyle::get_stretchWidth()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GUIStyle_get_stretchWidth_m4513B313AABE48E1D10424844DC186405BC8A677 (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * __this, const RuntimeMethod* method)
{
typedef bool (*GUIStyle_get_stretchWidth_m4513B313AABE48E1D10424844DC186405BC8A677_ftn) (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *);
static GUIStyle_get_stretchWidth_m4513B313AABE48E1D10424844DC186405BC8A677_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (GUIStyle_get_stretchWidth_m4513B313AABE48E1D10424844DC186405BC8A677_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.GUIStyle::get_stretchWidth()");
bool retVal = _il2cpp_icall_func(__this);
return retVal;
}
// System.Boolean UnityEngine.GUIStyle::get_stretchHeight()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GUIStyle_get_stretchHeight_m264308B18FA5F0A8400CF49945BAE1B9EFDC934F (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * __this, const RuntimeMethod* method)
{
typedef bool (*GUIStyle_get_stretchHeight_m264308B18FA5F0A8400CF49945BAE1B9EFDC934F_ftn) (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *);
static GUIStyle_get_stretchHeight_m264308B18FA5F0A8400CF49945BAE1B9EFDC934F_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (GUIStyle_get_stretchHeight_m264308B18FA5F0A8400CF49945BAE1B9EFDC934F_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.GUIStyle::get_stretchHeight()");
bool retVal = _il2cpp_icall_func(__this);
return retVal;
}
// System.Void UnityEngine.GUIStyle::set_stretchHeight(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIStyle_set_stretchHeight_mE11B46969A8498FB3B7443B4C54254F0C9A71A6E (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * __this, bool ___value0, const RuntimeMethod* method)
{
typedef void (*GUIStyle_set_stretchHeight_mE11B46969A8498FB3B7443B4C54254F0C9A71A6E_ftn) (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *, bool);
static GUIStyle_set_stretchHeight_mE11B46969A8498FB3B7443B4C54254F0C9A71A6E_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (GUIStyle_set_stretchHeight_mE11B46969A8498FB3B7443B4C54254F0C9A71A6E_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.GUIStyle::set_stretchHeight(System.Boolean)");
_il2cpp_icall_func(__this, ___value0);
}
// System.IntPtr UnityEngine.GUIStyle::Internal_Create(UnityEngine.GUIStyle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t GUIStyle_Internal_Create_m9641BC84B2A6E34A801EED919EF412E4A1C444C8 (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___self0, const RuntimeMethod* method)
{
typedef intptr_t (*GUIStyle_Internal_Create_m9641BC84B2A6E34A801EED919EF412E4A1C444C8_ftn) (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *);
static GUIStyle_Internal_Create_m9641BC84B2A6E34A801EED919EF412E4A1C444C8_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (GUIStyle_Internal_Create_m9641BC84B2A6E34A801EED919EF412E4A1C444C8_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.GUIStyle::Internal_Create(UnityEngine.GUIStyle)");
intptr_t retVal = _il2cpp_icall_func(___self0);
return retVal;
}
// System.Void UnityEngine.GUIStyle::Internal_Destroy(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIStyle_Internal_Destroy_mFA13F1C8E929FB9429825F2F176D4E3DE9C131E2 (intptr_t ___self0, const RuntimeMethod* method)
{
typedef void (*GUIStyle_Internal_Destroy_mFA13F1C8E929FB9429825F2F176D4E3DE9C131E2_ftn) (intptr_t);
static GUIStyle_Internal_Destroy_mFA13F1C8E929FB9429825F2F176D4E3DE9C131E2_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (GUIStyle_Internal_Destroy_mFA13F1C8E929FB9429825F2F176D4E3DE9C131E2_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.GUIStyle::Internal_Destroy(System.IntPtr)");
_il2cpp_icall_func(___self0);
}
// System.IntPtr UnityEngine.GUIStyle::GetStyleStatePtr(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t GUIStyle_GetStyleStatePtr_m9EB2842B5EDEC03D6F7A0050A4E9DBB7103EA5C5 (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * __this, int32_t ___idx0, const RuntimeMethod* method)
{
typedef intptr_t (*GUIStyle_GetStyleStatePtr_m9EB2842B5EDEC03D6F7A0050A4E9DBB7103EA5C5_ftn) (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *, int32_t);
static GUIStyle_GetStyleStatePtr_m9EB2842B5EDEC03D6F7A0050A4E9DBB7103EA5C5_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (GUIStyle_GetStyleStatePtr_m9EB2842B5EDEC03D6F7A0050A4E9DBB7103EA5C5_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.GUIStyle::GetStyleStatePtr(System.Int32)");
intptr_t retVal = _il2cpp_icall_func(__this, ___idx0);
return retVal;
}
// System.IntPtr UnityEngine.GUIStyle::GetRectOffsetPtr(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t GUIStyle_GetRectOffsetPtr_m780608811770308EFDE095993756D8AA0BD37BF8 (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * __this, int32_t ___idx0, const RuntimeMethod* method)
{
typedef intptr_t (*GUIStyle_GetRectOffsetPtr_m780608811770308EFDE095993756D8AA0BD37BF8_ftn) (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *, int32_t);
static GUIStyle_GetRectOffsetPtr_m780608811770308EFDE095993756D8AA0BD37BF8_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (GUIStyle_GetRectOffsetPtr_m780608811770308EFDE095993756D8AA0BD37BF8_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.GUIStyle::GetRectOffsetPtr(System.Int32)");
intptr_t retVal = _il2cpp_icall_func(__this, ___idx0);
return retVal;
}
// System.Void UnityEngine.GUIStyle::SetDefaultFont(UnityEngine.Font)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIStyle_SetDefaultFont_m09D149F682E885D7058E3C48EB42C9E62363E381 (Font_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26 * ___font0, const RuntimeMethod* method)
{
typedef void (*GUIStyle_SetDefaultFont_m09D149F682E885D7058E3C48EB42C9E62363E381_ftn) (Font_t1EDE54AF557272BE314EB4B40EFA50CEB353CA26 *);
static GUIStyle_SetDefaultFont_m09D149F682E885D7058E3C48EB42C9E62363E381_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (GUIStyle_SetDefaultFont_m09D149F682E885D7058E3C48EB42C9E62363E381_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.GUIStyle::SetDefaultFont(UnityEngine.Font)");
_il2cpp_icall_func(___font0);
}
// System.Void UnityEngine.GUIStyle::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIStyle__ctor_m8AA3D5AA506A252687923D0DA80741862AA83805 (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUIStyle__ctor_m8AA3D5AA506A252687923D0DA80741862AA83805_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(GUIStyle_t671F175A201A19166385EE3392292A5F50070572_il2cpp_TypeInfo_var);
intptr_t L_0 = GUIStyle_Internal_Create_m9641BC84B2A6E34A801EED919EF412E4A1C444C8(__this, /*hidden argument*/NULL);
__this->set_m_Ptr_0((intptr_t)L_0);
return;
}
}
// System.Void UnityEngine.GUIStyle::Finalize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIStyle_Finalize_m06DC9D0C766664ACF0D2C8D6BE214756E6361BA4 (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUIStyle_Finalize_m06DC9D0C766664ACF0D2C8D6BE214756E6361BA4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
}
IL_0001:
try
{ // begin try (depth: 1)
{
intptr_t L_0 = __this->get_m_Ptr_0();
bool L_1 = IntPtr_op_Inequality_mB4886A806009EA825EFCC60CD2A7F6EB8E273A61((intptr_t)L_0, (intptr_t)(0), /*hidden argument*/NULL);
V_0 = L_1;
bool L_2 = V_0;
if (!L_2)
{
goto IL_002f;
}
}
IL_0016:
{
intptr_t L_3 = __this->get_m_Ptr_0();
IL2CPP_RUNTIME_CLASS_INIT(GUIStyle_t671F175A201A19166385EE3392292A5F50070572_il2cpp_TypeInfo_var);
GUIStyle_Internal_Destroy_mFA13F1C8E929FB9429825F2F176D4E3DE9C131E2((intptr_t)L_3, /*hidden argument*/NULL);
__this->set_m_Ptr_0((intptr_t)(0));
}
IL_002f:
{
IL2CPP_LEAVE(0x39, FINALLY_0031);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0031;
}
FINALLY_0031:
{ // begin finally (depth: 1)
Object_Finalize_m4015B7D3A44DE125C5FE34D7276CD4697C06F380(__this, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(49)
} // end finally (depth: 1)
IL2CPP_CLEANUP(49)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x39, IL_0039)
}
IL_0039:
{
return;
}
}
// System.String UnityEngine.GUIStyle::get_name()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* GUIStyle_get_name_m111D8AB0173E1EBA46A9664EBABBC82AFE3ED71E (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * __this, const RuntimeMethod* method)
{
String_t* V_0 = NULL;
String_t* V_1 = NULL;
String_t* G_B2_0 = NULL;
String_t* G_B1_0 = NULL;
{
String_t* L_0 = __this->get_m_Name_13();
String_t* L_1 = L_0;
G_B1_0 = L_1;
if (L_1)
{
G_B2_0 = L_1;
goto IL_001a;
}
}
{
String_t* L_2 = GUIStyle_get_rawName_mD7DD50D00F93CEE5DCDE8E13A0F6C28A18ABC837(__this, /*hidden argument*/NULL);
String_t* L_3 = L_2;
V_0 = L_3;
__this->set_m_Name_13(L_3);
String_t* L_4 = V_0;
G_B2_0 = L_4;
}
IL_001a:
{
V_1 = G_B2_0;
goto IL_001d;
}
IL_001d:
{
String_t* L_5 = V_1;
return L_5;
}
}
// System.Void UnityEngine.GUIStyle::set_name(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIStyle_set_name_m3D232D5A8EAD7B29F1F2DA3ADD01B99EFF83F1D7 (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_m_Name_13(L_0);
String_t* L_1 = ___value0;
GUIStyle_set_rawName_mD091741C119250A2BA0B90E15E6CE2313750DF95(__this, L_1, /*hidden argument*/NULL);
return;
}
}
// UnityEngine.GUIStyleState UnityEngine.GUIStyle::get_normal()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * GUIStyle_get_normal_mC5CB22EED8113DEC86C54FB42F757B635D09DD2F (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * __this, const RuntimeMethod* method)
{
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * V_0 = NULL;
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * V_1 = NULL;
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * G_B2_0 = NULL;
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * G_B1_0 = NULL;
{
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * L_0 = __this->get_m_Normal_1();
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * L_1 = L_0;
G_B1_0 = L_1;
if (L_1)
{
G_B2_0 = L_1;
goto IL_0021;
}
}
{
intptr_t L_2 = GUIStyle_GetStyleStatePtr_m9EB2842B5EDEC03D6F7A0050A4E9DBB7103EA5C5(__this, 0, /*hidden argument*/NULL);
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * L_3 = GUIStyleState_GetGUIStyleState_m207443170D2CA9E48BAB05FF74B30C76C6D63F68(__this, (intptr_t)L_2, /*hidden argument*/NULL);
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * L_4 = L_3;
V_0 = L_4;
__this->set_m_Normal_1(L_4);
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * L_5 = V_0;
G_B2_0 = L_5;
}
IL_0021:
{
V_1 = G_B2_0;
goto IL_0024;
}
IL_0024:
{
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * L_6 = V_1;
return L_6;
}
}
// UnityEngine.RectOffset UnityEngine.GUIStyle::get_margin()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * GUIStyle_get_margin_mFC3EA0FA030A6334AC03BDDFA4AC80419C9E5BAA (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUIStyle_get_margin_mFC3EA0FA030A6334AC03BDDFA4AC80419C9E5BAA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * V_0 = NULL;
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * V_1 = NULL;
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * G_B2_0 = NULL;
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * G_B1_0 = NULL;
{
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * L_0 = __this->get_m_Margin_11();
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * L_1 = L_0;
G_B1_0 = L_1;
if (L_1)
{
G_B2_0 = L_1;
goto IL_0021;
}
}
{
intptr_t L_2 = GUIStyle_GetRectOffsetPtr_m780608811770308EFDE095993756D8AA0BD37BF8(__this, 1, /*hidden argument*/NULL);
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * L_3 = (RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A *)il2cpp_codegen_object_new(RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A_il2cpp_TypeInfo_var);
RectOffset__ctor_m23620FE61AAF476219462230C6839B86736B80BA(L_3, __this, (intptr_t)L_2, /*hidden argument*/NULL);
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * L_4 = L_3;
V_0 = L_4;
__this->set_m_Margin_11(L_4);
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * L_5 = V_0;
G_B2_0 = L_5;
}
IL_0021:
{
V_1 = G_B2_0;
goto IL_0024;
}
IL_0024:
{
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * L_6 = V_1;
return L_6;
}
}
// UnityEngine.RectOffset UnityEngine.GUIStyle::get_padding()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * GUIStyle_get_padding_m5DF76AA03A313366D0DD8D577731DAC4FB83053A (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUIStyle_get_padding_m5DF76AA03A313366D0DD8D577731DAC4FB83053A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * V_0 = NULL;
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * V_1 = NULL;
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * G_B2_0 = NULL;
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * G_B1_0 = NULL;
{
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * L_0 = __this->get_m_Padding_10();
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * L_1 = L_0;
G_B1_0 = L_1;
if (L_1)
{
G_B2_0 = L_1;
goto IL_0021;
}
}
{
intptr_t L_2 = GUIStyle_GetRectOffsetPtr_m780608811770308EFDE095993756D8AA0BD37BF8(__this, 2, /*hidden argument*/NULL);
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * L_3 = (RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A *)il2cpp_codegen_object_new(RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A_il2cpp_TypeInfo_var);
RectOffset__ctor_m23620FE61AAF476219462230C6839B86736B80BA(L_3, __this, (intptr_t)L_2, /*hidden argument*/NULL);
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * L_4 = L_3;
V_0 = L_4;
__this->set_m_Padding_10(L_4);
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * L_5 = V_0;
G_B2_0 = L_5;
}
IL_0021:
{
V_1 = G_B2_0;
goto IL_0024;
}
IL_0024:
{
RectOffset_tED44B1176E93501050480416699D1F11BAE8C87A * L_6 = V_1;
return L_6;
}
}
// UnityEngine.GUIStyle UnityEngine.GUIStyle::get_none()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * GUIStyle_get_none_m2B48FA4E2FA2B9BB7A458DF25B1391F9C7BB8B7B (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUIStyle_get_none_m2B48FA4E2FA2B9BB7A458DF25B1391F9C7BB8B7B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * G_B2_0 = NULL;
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * G_B1_0 = NULL;
{
IL2CPP_RUNTIME_CLASS_INIT(GUIStyle_t671F175A201A19166385EE3392292A5F50070572_il2cpp_TypeInfo_var);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = ((GUIStyle_t671F175A201A19166385EE3392292A5F50070572_StaticFields*)il2cpp_codegen_static_fields_for(GUIStyle_t671F175A201A19166385EE3392292A5F50070572_il2cpp_TypeInfo_var))->get_s_None_15();
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_1 = L_0;
G_B1_0 = L_1;
if (L_1)
{
G_B2_0 = L_1;
goto IL_0014;
}
}
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_2 = (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)il2cpp_codegen_object_new(GUIStyle_t671F175A201A19166385EE3392292A5F50070572_il2cpp_TypeInfo_var);
GUIStyle__ctor_m8AA3D5AA506A252687923D0DA80741862AA83805(L_2, /*hidden argument*/NULL);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_3 = L_2;
IL2CPP_RUNTIME_CLASS_INIT(GUIStyle_t671F175A201A19166385EE3392292A5F50070572_il2cpp_TypeInfo_var);
((GUIStyle_t671F175A201A19166385EE3392292A5F50070572_StaticFields*)il2cpp_codegen_static_fields_for(GUIStyle_t671F175A201A19166385EE3392292A5F50070572_il2cpp_TypeInfo_var))->set_s_None_15(L_3);
G_B2_0 = L_3;
}
IL_0014:
{
return G_B2_0;
}
}
// System.String UnityEngine.GUIStyle::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* GUIStyle_ToString_mE73FFC6A93F4F7BC2560EADEB074F0E81F77CB07 (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUIStyle_ToString_mE73FFC6A93F4F7BC2560EADEB074F0E81F77CB07_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = L_0;
String_t* L_2 = GUIStyle_get_name_m111D8AB0173E1EBA46A9664EBABBC82AFE3ED71E(__this, /*hidden argument*/NULL);
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_2);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_2);
String_t* L_3 = UnityString_Format_m415056ECF8DA7B3EC6A8456E299D0C2002177387(_stringLiteralF92769A88C9334E4CDB8DF06F40EC92B7B4086D0, L_1, /*hidden argument*/NULL);
V_0 = L_3;
goto IL_001d;
}
IL_001d:
{
String_t* L_4 = V_0;
return L_4;
}
}
// System.Void UnityEngine.GUIStyle::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIStyle__cctor_mA7579A59C320A9202F6E83B39DADC06C10231D6F (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUIStyle__cctor_mA7579A59C320A9202F6E83B39DADC06C10231D6F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
((GUIStyle_t671F175A201A19166385EE3392292A5F50070572_StaticFields*)il2cpp_codegen_static_fields_for(GUIStyle_t671F175A201A19166385EE3392292A5F50070572_il2cpp_TypeInfo_var))->set_showKeyboardFocus_14((bool)1);
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
// Conversion methods for marshalling of: UnityEngine.GUIStyleState
IL2CPP_EXTERN_C void GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshal_pinvoke(const GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5& unmarshaled, GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_pinvoke& marshaled)
{
Exception_t* ___m_SourceStyle_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_SourceStyle' of type 'GUIStyleState': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_SourceStyle_1Exception, NULL);
}
IL2CPP_EXTERN_C void GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshal_pinvoke_back(const GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_pinvoke& marshaled, GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5& unmarshaled)
{
Exception_t* ___m_SourceStyle_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_SourceStyle' of type 'GUIStyleState': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_SourceStyle_1Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.GUIStyleState
IL2CPP_EXTERN_C void GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshal_pinvoke_cleanup(GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.GUIStyleState
IL2CPP_EXTERN_C void GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshal_com(const GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5& unmarshaled, GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_com& marshaled)
{
Exception_t* ___m_SourceStyle_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_SourceStyle' of type 'GUIStyleState': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_SourceStyle_1Exception, NULL);
}
IL2CPP_EXTERN_C void GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshal_com_back(const GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_com& marshaled, GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5& unmarshaled)
{
Exception_t* ___m_SourceStyle_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_SourceStyle' of type 'GUIStyleState': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_SourceStyle_1Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.GUIStyleState
IL2CPP_EXTERN_C void GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshal_com_cleanup(GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_marshaled_com& marshaled)
{
}
// System.Void UnityEngine.GUIStyleState::set_textColor(UnityEngine.Color)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIStyleState_set_textColor_m2B235845A292C22ABEDEFBB2FD798DEB4E104983 (GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * __this, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___value0, const RuntimeMethod* method)
{
{
GUIStyleState_set_textColor_Injected_m09DA402A33A2E28F9B8BB37AEF6EA05B58F7C475(__this, (Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)(&___value0), /*hidden argument*/NULL);
return;
}
}
// System.IntPtr UnityEngine.GUIStyleState::Init()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t GUIStyleState_Init_m24D7A3BD60709BA6C36D21F86E8FBCA3AD7756D9 (const RuntimeMethod* method)
{
typedef intptr_t (*GUIStyleState_Init_m24D7A3BD60709BA6C36D21F86E8FBCA3AD7756D9_ftn) ();
static GUIStyleState_Init_m24D7A3BD60709BA6C36D21F86E8FBCA3AD7756D9_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (GUIStyleState_Init_m24D7A3BD60709BA6C36D21F86E8FBCA3AD7756D9_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.GUIStyleState::Init()");
intptr_t retVal = _il2cpp_icall_func();
return retVal;
}
// System.Void UnityEngine.GUIStyleState::Cleanup()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIStyleState_Cleanup_mB92C1A0564E1D841A37DD43D6B6E1AD27BAD5A49 (GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * __this, const RuntimeMethod* method)
{
typedef void (*GUIStyleState_Cleanup_mB92C1A0564E1D841A37DD43D6B6E1AD27BAD5A49_ftn) (GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 *);
static GUIStyleState_Cleanup_mB92C1A0564E1D841A37DD43D6B6E1AD27BAD5A49_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (GUIStyleState_Cleanup_mB92C1A0564E1D841A37DD43D6B6E1AD27BAD5A49_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.GUIStyleState::Cleanup()");
_il2cpp_icall_func(__this);
}
// System.Void UnityEngine.GUIStyleState::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIStyleState__ctor_mD260F6A32800A135DB0AA6441D990A8FEC752AFD (GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
intptr_t L_0 = GUIStyleState_Init_m24D7A3BD60709BA6C36D21F86E8FBCA3AD7756D9(/*hidden argument*/NULL);
__this->set_m_Ptr_0((intptr_t)L_0);
return;
}
}
// System.Void UnityEngine.GUIStyleState::.ctor(UnityEngine.GUIStyle,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIStyleState__ctor_m88DEBFEA9F9D54F4E6732A6ACE729079A79833B8 (GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * __this, GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___sourceStyle0, intptr_t ___source1, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = ___sourceStyle0;
__this->set_m_SourceStyle_1(L_0);
intptr_t L_1 = ___source1;
__this->set_m_Ptr_0((intptr_t)L_1);
return;
}
}
// UnityEngine.GUIStyleState UnityEngine.GUIStyleState::GetGUIStyleState(UnityEngine.GUIStyle,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * GUIStyleState_GetGUIStyleState_m207443170D2CA9E48BAB05FF74B30C76C6D63F68 (GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * ___sourceStyle0, intptr_t ___source1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUIStyleState_GetGUIStyleState_m207443170D2CA9E48BAB05FF74B30C76C6D63F68_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * V_0 = NULL;
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * V_1 = NULL;
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = ___sourceStyle0;
intptr_t L_1 = ___source1;
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * L_2 = (GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 *)il2cpp_codegen_object_new(GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5_il2cpp_TypeInfo_var);
GUIStyleState__ctor_m88DEBFEA9F9D54F4E6732A6ACE729079A79833B8(L_2, L_0, (intptr_t)L_1, /*hidden argument*/NULL);
V_0 = L_2;
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * L_3 = V_0;
V_1 = L_3;
goto IL_000d;
}
IL_000d:
{
GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * L_4 = V_1;
return L_4;
}
}
// System.Void UnityEngine.GUIStyleState::Finalize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIStyleState_Finalize_m68F554CD5B53E9BFC8B952E371D1E18D96D4C626 (GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUIStyleState_Finalize_m68F554CD5B53E9BFC8B952E371D1E18D96D4C626_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
}
IL_0001:
try
{ // begin try (depth: 1)
{
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = __this->get_m_SourceStyle_1();
V_0 = (bool)((((RuntimeObject*)(GUIStyle_t671F175A201A19166385EE3392292A5F50070572 *)L_0) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0023;
}
}
IL_000f:
{
GUIStyleState_Cleanup_mB92C1A0564E1D841A37DD43D6B6E1AD27BAD5A49(__this, /*hidden argument*/NULL);
__this->set_m_Ptr_0((intptr_t)(0));
}
IL_0023:
{
IL2CPP_LEAVE(0x2D, FINALLY_0025);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0025;
}
FINALLY_0025:
{ // begin finally (depth: 1)
Object_Finalize_m4015B7D3A44DE125C5FE34D7276CD4697C06F380(__this, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(37)
} // end finally (depth: 1)
IL2CPP_CLEANUP(37)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x2D, IL_002d)
}
IL_002d:
{
return;
}
}
// System.Void UnityEngine.GUIStyleState::set_textColor_Injected(UnityEngine.Color&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIStyleState_set_textColor_Injected_m09DA402A33A2E28F9B8BB37AEF6EA05B58F7C475 (GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 * __this, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * ___value0, const RuntimeMethod* method)
{
typedef void (*GUIStyleState_set_textColor_Injected_m09DA402A33A2E28F9B8BB37AEF6EA05B58F7C475_ftn) (GUIStyleState_t2AA5CB82EB2571B0496D1F0B9D29D2B8D8B1E7E5 *, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *);
static GUIStyleState_set_textColor_Injected_m09DA402A33A2E28F9B8BB37AEF6EA05B58F7C475_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (GUIStyleState_set_textColor_Injected_m09DA402A33A2E28F9B8BB37AEF6EA05B58F7C475_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.GUIStyleState::set_textColor_Injected(UnityEngine.Color&)");
_il2cpp_icall_func(__this, ___value0);
}
#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.Int32 UnityEngine.GUITargetAttribute::GetGUITargetAttrValue(System.Type,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GUITargetAttribute_GetGUITargetAttrValue_mED49CA9A9696B0D52CD6C6D7BA7344EA1F019590 (Type_t * ___klass0, String_t* ___methodName1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUITargetAttribute_GetGUITargetAttrValue_mED49CA9A9696B0D52CD6C6D7BA7344EA1F019590_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MethodInfo_t * V_0 = NULL;
bool V_1 = false;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_2 = NULL;
bool V_3 = false;
int32_t V_4 = 0;
GUITargetAttribute_tA23DD43B1D91AF11499A0320EBAAC900A35FC4B8 * V_5 = NULL;
bool V_6 = false;
int32_t V_7 = 0;
bool V_8 = false;
{
Type_t * L_0 = ___klass0;
String_t* L_1 = ___methodName1;
NullCheck(L_0);
MethodInfo_t * L_2 = Type_GetMethod_m9EC42D4B1F765B882F516EE6D7970D51CF5D80DD(L_0, L_1, ((int32_t)52), /*hidden argument*/NULL);
V_0 = L_2;
MethodInfo_t * L_3 = V_0;
V_1 = (bool)((!(((RuntimeObject*)(MethodInfo_t *)L_3) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
bool L_4 = V_1;
if (!L_4)
{
goto IL_0076;
}
}
{
MethodInfo_t * L_5 = V_0;
NullCheck(L_5);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = VirtFuncInvoker1< ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, bool >::Invoke(10 /* System.Object[] System.Reflection.MemberInfo::GetCustomAttributes(System.Boolean) */, L_5, (bool)1);
V_2 = L_6;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_7 = V_2;
V_3 = (bool)((!(((RuntimeObject*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_7) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
bool L_8 = V_3;
if (!L_8)
{
goto IL_0075;
}
}
{
V_4 = 0;
goto IL_0067;
}
IL_002a:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_9 = V_2;
int32_t L_10 = V_4;
NullCheck(L_9);
int32_t L_11 = L_10;
RuntimeObject * L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
NullCheck(L_12);
Type_t * L_13 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_12, /*hidden argument*/NULL);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (GUITargetAttribute_tA23DD43B1D91AF11499A0320EBAAC900A35FC4B8_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_14, /*hidden argument*/NULL);
V_6 = (bool)((((int32_t)((((RuntimeObject*)(Type_t *)L_13) == ((RuntimeObject*)(Type_t *)L_15))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_16 = V_6;
if (!L_16)
{
goto IL_004b;
}
}
{
goto IL_0061;
}
IL_004b:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_17 = V_2;
int32_t L_18 = V_4;
NullCheck(L_17);
int32_t L_19 = L_18;
RuntimeObject * L_20 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
V_5 = ((GUITargetAttribute_tA23DD43B1D91AF11499A0320EBAAC900A35FC4B8 *)IsInstClass((RuntimeObject*)L_20, GUITargetAttribute_tA23DD43B1D91AF11499A0320EBAAC900A35FC4B8_il2cpp_TypeInfo_var));
GUITargetAttribute_tA23DD43B1D91AF11499A0320EBAAC900A35FC4B8 * L_21 = V_5;
NullCheck(L_21);
int32_t L_22 = L_21->get_displayMask_0();
V_7 = L_22;
goto IL_007b;
}
IL_0061:
{
int32_t L_23 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1));
}
IL_0067:
{
int32_t L_24 = V_4;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_25 = V_2;
NullCheck(L_25);
V_8 = (bool)((((int32_t)L_24) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_25)->max_length))))))? 1 : 0);
bool L_26 = V_8;
if (L_26)
{
goto IL_002a;
}
}
{
}
IL_0075:
{
}
IL_0076:
{
V_7 = (-1);
goto IL_007b;
}
IL_007b:
{
int32_t L_27 = V_7;
return L_27;
}
}
#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.Single UnityEngine.GUIUtility::get_pixelsPerPoint()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float GUIUtility_get_pixelsPerPoint_m6B4AB38F60A0AC54034A62043F74E06A613E4D56 (const RuntimeMethod* method)
{
typedef float (*GUIUtility_get_pixelsPerPoint_m6B4AB38F60A0AC54034A62043F74E06A613E4D56_ftn) ();
static GUIUtility_get_pixelsPerPoint_m6B4AB38F60A0AC54034A62043F74E06A613E4D56_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (GUIUtility_get_pixelsPerPoint_m6B4AB38F60A0AC54034A62043F74E06A613E4D56_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.GUIUtility::get_pixelsPerPoint()");
float retVal = _il2cpp_icall_func();
return retVal;
}
// System.Int32 UnityEngine.GUIUtility::get_guiDepth()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GUIUtility_get_guiDepth_m927893DDBCD8D8F88CA9F70A7D1A7BDB59B4F395 (const RuntimeMethod* method)
{
typedef int32_t (*GUIUtility_get_guiDepth_m927893DDBCD8D8F88CA9F70A7D1A7BDB59B4F395_ftn) ();
static GUIUtility_get_guiDepth_m927893DDBCD8D8F88CA9F70A7D1A7BDB59B4F395_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (GUIUtility_get_guiDepth_m927893DDBCD8D8F88CA9F70A7D1A7BDB59B4F395_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.GUIUtility::get_guiDepth()");
int32_t retVal = _il2cpp_icall_func();
return retVal;
}
// System.String UnityEngine.GUIUtility::get_systemCopyBuffer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* GUIUtility_get_systemCopyBuffer_m5C4EE0A0FDE696D4A1337480B20AF300E6A5624E (const RuntimeMethod* method)
{
typedef String_t* (*GUIUtility_get_systemCopyBuffer_m5C4EE0A0FDE696D4A1337480B20AF300E6A5624E_ftn) ();
static GUIUtility_get_systemCopyBuffer_m5C4EE0A0FDE696D4A1337480B20AF300E6A5624E_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (GUIUtility_get_systemCopyBuffer_m5C4EE0A0FDE696D4A1337480B20AF300E6A5624E_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.GUIUtility::get_systemCopyBuffer()");
String_t* retVal = _il2cpp_icall_func();
return retVal;
}
// System.Void UnityEngine.GUIUtility::set_systemCopyBuffer(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIUtility_set_systemCopyBuffer_m8C87AFD05D32AB0C30A2203005A64A86DFE18BE6 (String_t* ___value0, const RuntimeMethod* method)
{
typedef void (*GUIUtility_set_systemCopyBuffer_m8C87AFD05D32AB0C30A2203005A64A86DFE18BE6_ftn) (String_t*);
static GUIUtility_set_systemCopyBuffer_m8C87AFD05D32AB0C30A2203005A64A86DFE18BE6_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (GUIUtility_set_systemCopyBuffer_m8C87AFD05D32AB0C30A2203005A64A86DFE18BE6_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.GUIUtility::set_systemCopyBuffer(System.String)");
_il2cpp_icall_func(___value0);
}
// System.Object UnityEngine.GUIUtility::Internal_GetDefaultSkin(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * GUIUtility_Internal_GetDefaultSkin_m1D4A53896309F1A4A54AF15D7E5F4DC61451276E (int32_t ___skinMode0, const RuntimeMethod* method)
{
typedef RuntimeObject * (*GUIUtility_Internal_GetDefaultSkin_m1D4A53896309F1A4A54AF15D7E5F4DC61451276E_ftn) (int32_t);
static GUIUtility_Internal_GetDefaultSkin_m1D4A53896309F1A4A54AF15D7E5F4DC61451276E_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (GUIUtility_Internal_GetDefaultSkin_m1D4A53896309F1A4A54AF15D7E5F4DC61451276E_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.GUIUtility::Internal_GetDefaultSkin(System.Int32)");
RuntimeObject * retVal = _il2cpp_icall_func(___skinMode0);
return retVal;
}
// System.Void UnityEngine.GUIUtility::Internal_ExitGUI()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIUtility_Internal_ExitGUI_mC6B22D4CC318E08171B3565919458F337351ACCC (const RuntimeMethod* method)
{
typedef void (*GUIUtility_Internal_ExitGUI_mC6B22D4CC318E08171B3565919458F337351ACCC_ftn) ();
static GUIUtility_Internal_ExitGUI_mC6B22D4CC318E08171B3565919458F337351ACCC_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (GUIUtility_Internal_ExitGUI_mC6B22D4CC318E08171B3565919458F337351ACCC_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.GUIUtility::Internal_ExitGUI()");
_il2cpp_icall_func();
}
// System.Void UnityEngine.GUIUtility::MarkGUIChanged()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIUtility_MarkGUIChanged_m624187E89EC5D08B052B8F74B8BFD803EEE53956 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUIUtility_MarkGUIChanged_m624187E89EC5D08B052B8F74B8BFD803EEE53956_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * G_B2_0 = NULL;
Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * G_B1_0 = NULL;
{
Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * L_0 = ((GUIUtility_t943494CC50E876A4A08ECD471C06E23D52E5E5BA_StaticFields*)il2cpp_codegen_static_fields_for(GUIUtility_t943494CC50E876A4A08ECD471C06E23D52E5E5BA_il2cpp_TypeInfo_var))->get_guiChanged_6();
Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * L_1 = L_0;
G_B1_0 = L_1;
if (L_1)
{
G_B2_0 = L_1;
goto IL_000c;
}
}
{
goto IL_0012;
}
IL_000c:
{
NullCheck(G_B2_0);
Action_Invoke_mC8D676E5DDF967EC5D23DD0E96FB52AA499817FD(G_B2_0, /*hidden argument*/NULL);
}
IL_0012:
{
return;
}
}
// System.Void UnityEngine.GUIUtility::set_guiIsExiting(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIUtility_set_guiIsExiting_m16D5DFFB64483BC588CA6BEA0FAA618E4A227960 (bool ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUIUtility_set_guiIsExiting_m16D5DFFB64483BC588CA6BEA0FAA618E4A227960_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = ___value0;
((GUIUtility_t943494CC50E876A4A08ECD471C06E23D52E5E5BA_StaticFields*)il2cpp_codegen_static_fields_for(GUIUtility_t943494CC50E876A4A08ECD471C06E23D52E5E5BA_il2cpp_TypeInfo_var))->set_U3CguiIsExitingU3Ek__BackingField_7(L_0);
return;
}
}
// System.Void UnityEngine.GUIUtility::TakeCapture()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIUtility_TakeCapture_mE32A66FEEF1DFA8A3DDF3CE310D1C93397B31221 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUIUtility_TakeCapture_mE32A66FEEF1DFA8A3DDF3CE310D1C93397B31221_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * G_B2_0 = NULL;
Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * G_B1_0 = NULL;
{
Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * L_0 = ((GUIUtility_t943494CC50E876A4A08ECD471C06E23D52E5E5BA_StaticFields*)il2cpp_codegen_static_fields_for(GUIUtility_t943494CC50E876A4A08ECD471C06E23D52E5E5BA_il2cpp_TypeInfo_var))->get_takeCapture_2();
Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * L_1 = L_0;
G_B1_0 = L_1;
if (L_1)
{
G_B2_0 = L_1;
goto IL_000c;
}
}
{
goto IL_0012;
}
IL_000c:
{
NullCheck(G_B2_0);
Action_Invoke_mC8D676E5DDF967EC5D23DD0E96FB52AA499817FD(G_B2_0, /*hidden argument*/NULL);
}
IL_0012:
{
return;
}
}
// System.Void UnityEngine.GUIUtility::RemoveCapture()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIUtility_RemoveCapture_m37B735649012E93EBEA50DB8708FB6D39DFA4FE9 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUIUtility_RemoveCapture_m37B735649012E93EBEA50DB8708FB6D39DFA4FE9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * G_B2_0 = NULL;
Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * G_B1_0 = NULL;
{
Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * L_0 = ((GUIUtility_t943494CC50E876A4A08ECD471C06E23D52E5E5BA_StaticFields*)il2cpp_codegen_static_fields_for(GUIUtility_t943494CC50E876A4A08ECD471C06E23D52E5E5BA_il2cpp_TypeInfo_var))->get_releaseCapture_3();
Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * L_1 = L_0;
G_B1_0 = L_1;
if (L_1)
{
G_B2_0 = L_1;
goto IL_000c;
}
}
{
goto IL_0012;
}
IL_000c:
{
NullCheck(G_B2_0);
Action_Invoke_mC8D676E5DDF967EC5D23DD0E96FB52AA499817FD(G_B2_0, /*hidden argument*/NULL);
}
IL_0012:
{
return;
}
}
// UnityEngine.GUISkin UnityEngine.GUIUtility::GetDefaultSkin()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * GUIUtility_GetDefaultSkin_m2F1B580445522074FF41CF9906531DBEAB034365 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUIUtility_GetDefaultSkin_m2F1B580445522074FF41CF9906531DBEAB034365_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * V_0 = NULL;
{
int32_t L_0 = ((GUIUtility_t943494CC50E876A4A08ECD471C06E23D52E5E5BA_StaticFields*)il2cpp_codegen_static_fields_for(GUIUtility_t943494CC50E876A4A08ECD471C06E23D52E5E5BA_il2cpp_TypeInfo_var))->get_s_SkinMode_0();
RuntimeObject * L_1 = GUIUtility_Internal_GetDefaultSkin_m1D4A53896309F1A4A54AF15D7E5F4DC61451276E(L_0, /*hidden argument*/NULL);
V_0 = ((GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 *)IsInstSealed((RuntimeObject*)L_1, GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7_il2cpp_TypeInfo_var));
goto IL_0013;
}
IL_0013:
{
GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 * L_2 = V_0;
return L_2;
}
}
// System.Boolean UnityEngine.GUIUtility::ProcessEvent(System.Int32,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GUIUtility_ProcessEvent_mA250CB35828235FE2F8BA5EA7B6592234DA2D312 (int32_t ___instanceID0, intptr_t ___nativeEventPtr1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUIUtility_ProcessEvent_mA250CB35828235FE2F8BA5EA7B6592234DA2D312_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
{
Func_3_tBD99633D8A18C43CC528ECE3F77E2F69900048A7 * L_0 = ((GUIUtility_t943494CC50E876A4A08ECD471C06E23D52E5E5BA_StaticFields*)il2cpp_codegen_static_fields_for(GUIUtility_t943494CC50E876A4A08ECD471C06E23D52E5E5BA_il2cpp_TypeInfo_var))->get_processEvent_4();
V_0 = (bool)((!(((RuntimeObject*)(Func_3_tBD99633D8A18C43CC528ECE3F77E2F69900048A7 *)L_0) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_001c;
}
}
{
Func_3_tBD99633D8A18C43CC528ECE3F77E2F69900048A7 * L_2 = ((GUIUtility_t943494CC50E876A4A08ECD471C06E23D52E5E5BA_StaticFields*)il2cpp_codegen_static_fields_for(GUIUtility_t943494CC50E876A4A08ECD471C06E23D52E5E5BA_il2cpp_TypeInfo_var))->get_processEvent_4();
int32_t L_3 = ___instanceID0;
intptr_t L_4 = ___nativeEventPtr1;
NullCheck(L_2);
bool L_5 = Func_3_Invoke_mCD6DEEC09B4F1B42DD0FD4A8F58632B08EC66737(L_2, L_3, (intptr_t)L_4, /*hidden argument*/Func_3_Invoke_mCD6DEEC09B4F1B42DD0FD4A8F58632B08EC66737_RuntimeMethod_var);
V_1 = L_5;
goto IL_0020;
}
IL_001c:
{
V_1 = (bool)0;
goto IL_0020;
}
IL_0020:
{
bool L_6 = V_1;
return L_6;
}
}
// System.Void UnityEngine.GUIUtility::BeginGUI(System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIUtility_BeginGUI_m9981BDF2828246EBE4EDA43447EF6DAA74B54C91 (int32_t ___skinMode0, int32_t ___instanceID1, int32_t ___useGUILayout2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUIUtility_BeginGUI_m9981BDF2828246EBE4EDA43447EF6DAA74B54C91_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
int32_t L_0 = ___skinMode0;
((GUIUtility_t943494CC50E876A4A08ECD471C06E23D52E5E5BA_StaticFields*)il2cpp_codegen_static_fields_for(GUIUtility_t943494CC50E876A4A08ECD471C06E23D52E5E5BA_il2cpp_TypeInfo_var))->set_s_SkinMode_0(L_0);
int32_t L_1 = ___instanceID1;
((GUIUtility_t943494CC50E876A4A08ECD471C06E23D52E5E5BA_StaticFields*)il2cpp_codegen_static_fields_for(GUIUtility_t943494CC50E876A4A08ECD471C06E23D52E5E5BA_il2cpp_TypeInfo_var))->set_s_OriginalID_1(L_1);
GUIUtility_ResetGlobalState_m192C9FAE2A4B87F34CB051C4967B8A919A902A5C(/*hidden argument*/NULL);
int32_t L_2 = ___useGUILayout2;
V_0 = (bool)((!(((uint32_t)L_2) <= ((uint32_t)0)))? 1 : 0);
bool L_3 = V_0;
if (!L_3)
{
goto IL_0024;
}
}
{
int32_t L_4 = ___instanceID1;
IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var);
GUILayoutUtility_Begin_m6876A33199599688408A4AD364069090E833B237(L_4, /*hidden argument*/NULL);
}
IL_0024:
{
return;
}
}
// System.Void UnityEngine.GUIUtility::EndGUI(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIUtility_EndGUI_mE93B54A19231BCC9DFC68DF54CE7C29DE41A3414 (int32_t ___layoutType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUIUtility_EndGUI_mE93B54A19231BCC9DFC68DF54CE7C29DE41A3414_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
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);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
}
IL_0001:
try
{ // begin try (depth: 1)
{
Event_t187FF6A6B357447B83EC2064823EE0AEC5263210 * L_0 = Event_get_current_m072CEE599D11B8A9A916697E57C0F561188CDB2B(/*hidden argument*/NULL);
NullCheck(L_0);
int32_t L_1 = Event_get_type_mAABE4A35E5658E0079A1518D318AF2592F51D6FA(L_0, /*hidden argument*/NULL);
V_0 = (bool)((((int32_t)L_1) == ((int32_t)8))? 1 : 0);
bool L_2 = V_0;
if (!L_2)
{
goto IL_003d;
}
}
IL_0013:
{
int32_t L_3 = ___layoutType0;
V_1 = L_3;
int32_t L_4 = V_1;
switch (L_4)
{
case 0:
{
goto IL_002a;
}
case 1:
{
goto IL_002c;
}
case 2:
{
goto IL_0034;
}
}
}
IL_0028:
{
goto IL_003c;
}
IL_002a:
{
goto IL_003c;
}
IL_002c:
{
IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var);
GUILayoutUtility_Layout_mB01F00635FD538214B47A545C53E4F8C682491B5(/*hidden argument*/NULL);
goto IL_003c;
}
IL_0034:
{
IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var);
GUILayoutUtility_LayoutFromEditorWindow_mBE82BE965B54F68E7090952684C86BFF0538AB52(/*hidden argument*/NULL);
goto IL_003c;
}
IL_003c:
{
}
IL_003d:
{
int32_t L_5 = ((GUIUtility_t943494CC50E876A4A08ECD471C06E23D52E5E5BA_StaticFields*)il2cpp_codegen_static_fields_for(GUIUtility_t943494CC50E876A4A08ECD471C06E23D52E5E5BA_il2cpp_TypeInfo_var))->get_s_OriginalID_1();
IL2CPP_RUNTIME_CLASS_INIT(GUILayoutUtility_tFBB1F6AB7CF109D40F923B9AB1F5D7CDF8EEB62E_il2cpp_TypeInfo_var);
GUILayoutUtility_SelectIDList_m230ED9206897C92C5B090B3BBFC9B408603E56FD(L_5, (bool)0, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_il2cpp_TypeInfo_var);
GUIContent_ClearStaticCache_m567DA736612F9E6E66262CC630952AB2E22BC933(/*hidden argument*/NULL);
IL2CPP_LEAVE(0x5B, FINALLY_0052);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0052;
}
FINALLY_0052:
{ // begin finally (depth: 1)
GUIUtility_Internal_ExitGUI_mC6B22D4CC318E08171B3565919458F337351ACCC(/*hidden argument*/NULL);
IL2CPP_END_FINALLY(82)
} // end finally (depth: 1)
IL2CPP_CLEANUP(82)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x5B, IL_005b)
}
IL_005b:
{
return;
}
}
// System.Boolean UnityEngine.GUIUtility::EndGUIFromException(System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GUIUtility_EndGUIFromException_m40542B74697654BEDD0BAA656EC370D00097223E (Exception_t * ___exception0, const RuntimeMethod* method)
{
bool V_0 = false;
{
GUIUtility_Internal_ExitGUI_mC6B22D4CC318E08171B3565919458F337351ACCC(/*hidden argument*/NULL);
Exception_t * L_0 = ___exception0;
bool L_1 = GUIUtility_ShouldRethrowException_mCF3B04493727D6A40ED50AC2414D5617455339B6(L_0, /*hidden argument*/NULL);
V_0 = L_1;
goto IL_0010;
}
IL_0010:
{
bool L_2 = V_0;
return L_2;
}
}
// System.Boolean UnityEngine.GUIUtility::EndContainerGUIFromException(System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GUIUtility_EndContainerGUIFromException_m66F073A94FF85A8B7C6D8A4614B43365F0A68042 (Exception_t * ___exception0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUIUtility_EndContainerGUIFromException_m66F073A94FF85A8B7C6D8A4614B43365F0A68042_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
{
Func_2_tC816C5FDED4A7372C449E7660CAB9F94E2AC12F8 * L_0 = ((GUIUtility_t943494CC50E876A4A08ECD471C06E23D52E5E5BA_StaticFields*)il2cpp_codegen_static_fields_for(GUIUtility_t943494CC50E876A4A08ECD471C06E23D52E5E5BA_il2cpp_TypeInfo_var))->get_endContainerGUIFromException_5();
V_0 = (bool)((!(((RuntimeObject*)(Func_2_tC816C5FDED4A7372C449E7660CAB9F94E2AC12F8 *)L_0) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_001b;
}
}
{
Func_2_tC816C5FDED4A7372C449E7660CAB9F94E2AC12F8 * L_2 = ((GUIUtility_t943494CC50E876A4A08ECD471C06E23D52E5E5BA_StaticFields*)il2cpp_codegen_static_fields_for(GUIUtility_t943494CC50E876A4A08ECD471C06E23D52E5E5BA_il2cpp_TypeInfo_var))->get_endContainerGUIFromException_5();
Exception_t * L_3 = ___exception0;
NullCheck(L_2);
bool L_4 = Func_2_Invoke_m9621506610C10C9E735B305E826ACEFF914422CD(L_2, L_3, /*hidden argument*/Func_2_Invoke_m9621506610C10C9E735B305E826ACEFF914422CD_RuntimeMethod_var);
V_1 = L_4;
goto IL_001f;
}
IL_001b:
{
V_1 = (bool)0;
goto IL_001f;
}
IL_001f:
{
bool L_5 = V_1;
return L_5;
}
}
// System.Void UnityEngine.GUIUtility::ResetGlobalState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIUtility_ResetGlobalState_m192C9FAE2A4B87F34CB051C4967B8A919A902A5C (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUIUtility_ResetGlobalState_m192C9FAE2A4B87F34CB051C4967B8A919A902A5C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_il2cpp_TypeInfo_var);
GUI_set_skin_mFC9EC2E88A46A7F42664C6C41D8CCD9B9BA4DBA0((GUISkin_tE22941292F37A41BE0EDF70FC3A9CD9EB02ADDB7 *)NULL, /*hidden argument*/NULL);
GUIUtility_set_guiIsExiting_m16D5DFFB64483BC588CA6BEA0FAA618E4A227960_inline((bool)0, /*hidden argument*/NULL);
GUI_set_changed_m8BDF5085BBFDF8E61C12926C8E51C67B22B629AE((bool)0, /*hidden argument*/NULL);
GenericStack_tC59D21E8DBC50F3C608479C942200AC44CA2D5BC * L_0 = GUI_get_scrollViewStates_m2FAC333F84B90E4F1E1ED5FC8651DC8C4C30B7AF_inline(/*hidden argument*/NULL);
NullCheck(L_0);
VirtActionInvoker0::Invoke(9 /* System.Void System.Collections.Stack::Clear() */, L_0);
return;
}
}
// System.Boolean UnityEngine.GUIUtility::IsExitGUIException(System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GUIUtility_IsExitGUIException_mBCCE6118666769B8B767D74496E44D2ECC7AFDD2 (Exception_t * ___exception0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUIUtility_IsExitGUIException_mBCCE6118666769B8B767D74496E44D2ECC7AFDD2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
int32_t G_B5_0 = 0;
{
goto IL_000b;
}
IL_0003:
{
Exception_t * L_0 = ___exception0;
NullCheck(L_0);
Exception_t * L_1 = Exception_get_InnerException_mCB68CC8CBF2540EF381CB17A4E4E3F6D0E33453F_inline(L_0, /*hidden argument*/NULL);
___exception0 = L_1;
}
IL_000b:
{
Exception_t * L_2 = ___exception0;
if (!((TargetInvocationException_t0DD35F6083E1D1E0509BF181A79C76D3339D89B8 *)IsInstSealed((RuntimeObject*)L_2, TargetInvocationException_t0DD35F6083E1D1E0509BF181A79C76D3339D89B8_il2cpp_TypeInfo_var)))
{
goto IL_001e;
}
}
{
Exception_t * L_3 = ___exception0;
NullCheck(L_3);
Exception_t * L_4 = Exception_get_InnerException_mCB68CC8CBF2540EF381CB17A4E4E3F6D0E33453F_inline(L_3, /*hidden argument*/NULL);
G_B5_0 = ((!(((RuntimeObject*)(Exception_t *)L_4) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
goto IL_001f;
}
IL_001e:
{
G_B5_0 = 0;
}
IL_001f:
{
V_0 = (bool)G_B5_0;
bool L_5 = V_0;
if (L_5)
{
goto IL_0003;
}
}
{
Exception_t * L_6 = ___exception0;
V_1 = (bool)((!(((RuntimeObject*)(ExitGUIException_t6AD1987AE1D23E0E774F9BEA41F30AE4CE378F07 *)((ExitGUIException_t6AD1987AE1D23E0E774F9BEA41F30AE4CE378F07 *)IsInstSealed((RuntimeObject*)L_6, ExitGUIException_t6AD1987AE1D23E0E774F9BEA41F30AE4CE378F07_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
goto IL_002f;
}
IL_002f:
{
bool L_7 = V_1;
return L_7;
}
}
// System.Boolean UnityEngine.GUIUtility::ShouldRethrowException(System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GUIUtility_ShouldRethrowException_mCF3B04493727D6A40ED50AC2414D5617455339B6 (Exception_t * ___exception0, const RuntimeMethod* method)
{
bool V_0 = false;
{
Exception_t * L_0 = ___exception0;
bool L_1 = GUIUtility_IsExitGUIException_mBCCE6118666769B8B767D74496E44D2ECC7AFDD2(L_0, /*hidden argument*/NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
bool L_2 = V_0;
return L_2;
}
}
// System.Void UnityEngine.GUIUtility::CheckOnGUI()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIUtility_CheckOnGUI_mBFC764B475683BC50E40BD249248CE43DA754873 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUIUtility_CheckOnGUI_mBFC764B475683BC50E40BD249248CE43DA754873_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
int32_t L_0 = GUIUtility_get_guiDepth_m927893DDBCD8D8F88CA9F70A7D1A7BDB59B4F395(/*hidden argument*/NULL);
V_0 = (bool)((((int32_t)((((int32_t)L_0) > ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_001b;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_2 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_2, _stringLiteral44749C3F0A84037EA50385BCA7D2CFEFD6C0BDB2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, GUIUtility_CheckOnGUI_mBFC764B475683BC50E40BD249248CE43DA754873_RuntimeMethod_var);
}
IL_001b:
{
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.Void UnityEngine.ScrollViewState::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScrollViewState__ctor_mBD3229B13A482BEE165EE9CACA85F716122F3BD4 (ScrollViewState_t738AAD89973B4E764B6F977945263C24A881428E * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__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.Void UnityEngine.SliderState::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SliderState__ctor_m8CBFEE8D20C2D8EB0B68B1B171D9396DE84B605E (SliderState_t6081D6F2CF6D0F1A13B2A2D255671B4053EC52CB * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__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.Void UnityEngine.TextEditor::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextEditor__ctor_m279158A237B393882E3CC2834C1F7CA7679F79CC (TextEditor_t72CB6095A5C38226E08CD8073D5B6AD98579D440 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TextEditor__ctor_m279158A237B393882E3CC2834C1F7CA7679F79CC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
__this->set_keyboardOnScreen_0((TouchScreenKeyboard_t2A69F85698E9780470181532D3F2BC903623FD90 *)NULL);
__this->set_controlID_1(0);
IL2CPP_RUNTIME_CLASS_INIT(GUIStyle_t671F175A201A19166385EE3392292A5F50070572_il2cpp_TypeInfo_var);
GUIStyle_t671F175A201A19166385EE3392292A5F50070572 * L_0 = GUIStyle_get_none_m2B48FA4E2FA2B9BB7A458DF25B1391F9C7BB8B7B(/*hidden argument*/NULL);
__this->set_style_2(L_0);
__this->set_multiline_3((bool)0);
__this->set_hasHorizontalCursorPos_4((bool)0);
__this->set_isPasswordField_5((bool)0);
IL2CPP_RUNTIME_CLASS_INIT(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_il2cpp_TypeInfo_var);
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_1 = Vector2_get_zero_mFE0C3213BB698130D6C5247AB4B887A59074D0A8(/*hidden argument*/NULL);
__this->set_scrollOffset_6(L_1);
GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 * L_2 = (GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0 *)il2cpp_codegen_object_new(GUIContent_t2A00F8961C69C0A382168840CFB2111FB00B5EA0_il2cpp_TypeInfo_var);
GUIContent__ctor_m939CDEFF44061020E997A0F0640ADDF2740B0C38(L_2, /*hidden argument*/NULL);
__this->set_m_Content_7(L_2);
__this->set_m_CursorIndex_8(0);
__this->set_m_SelectIndex_9(0);
__this->set_m_RevealCursor_10((bool)0);
__this->set_m_MouseDragSelectsWholeWords_11((bool)0);
__this->set_m_DblClickInitPos_12(0);
__this->set_m_DblClickSnap_13(0);
__this->set_m_bJustSelected_14((bool)0);
__this->set_m_iAltCursorPos_15((-1));
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__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
#ifdef __clang__
#pragma clang diagnostic pop
#endif
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void GUI_set_nextScrollStepTime_m0EBE9A3F5960CD23334E4678D9CF6F5E15CBDE23_inline (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUI_set_nextScrollStepTime_m0EBE9A3F5960CD23334E4678D9CF6F5E15CBDE23UnityEngine_IMGUIModule_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_0 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_il2cpp_TypeInfo_var);
((GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_StaticFields*)il2cpp_codegen_static_fields_for(GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_il2cpp_TypeInfo_var))->set_U3CnextScrollStepTimeU3Ek__BackingField_9(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * StringComparer_get_OrdinalIgnoreCase_m3F2527D9A11521E8B51F0AC8F70DB272DA8334C9_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StringComparer_get_OrdinalIgnoreCase_m3F2527D9A11521E8B51F0AC8F70DB272DA8334C9UnityEngine_IMGUIModule_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_il2cpp_TypeInfo_var);
StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * L_0 = ((StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_StaticFields*)il2cpp_codegen_static_fields_for(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_il2cpp_TypeInfo_var))->get__ordinalIgnoreCase_3();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void GUIUtility_set_guiIsExiting_m16D5DFFB64483BC588CA6BEA0FAA618E4A227960_inline (bool ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUIUtility_set_guiIsExiting_m16D5DFFB64483BC588CA6BEA0FAA618E4A227960UnityEngine_IMGUIModule_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = ___value0;
((GUIUtility_t943494CC50E876A4A08ECD471C06E23D52E5E5BA_StaticFields*)il2cpp_codegen_static_fields_for(GUIUtility_t943494CC50E876A4A08ECD471C06E23D52E5E5BA_il2cpp_TypeInfo_var))->set_U3CguiIsExitingU3Ek__BackingField_7(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR GenericStack_tC59D21E8DBC50F3C608479C942200AC44CA2D5BC * GUI_get_scrollViewStates_m2FAC333F84B90E4F1E1ED5FC8651DC8C4C30B7AF_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GUI_get_scrollViewStates_m2FAC333F84B90E4F1E1ED5FC8651DC8C4C30B7AFUnityEngine_IMGUIModule_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_il2cpp_TypeInfo_var);
GenericStack_tC59D21E8DBC50F3C608479C942200AC44CA2D5BC * L_0 = ((GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_StaticFields*)il2cpp_codegen_static_fields_for(GUI_t3E5CBC6B113E392EBBE1453DEF2B7CD020F345AA_il2cpp_TypeInfo_var))->get_U3CscrollViewStatesU3Ek__BackingField_11();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Exception_t * Exception_get_InnerException_mCB68CC8CBF2540EF381CB17A4E4E3F6D0E33453F_inline (Exception_t * __this, const RuntimeMethod* method)
{
{
Exception_t * L_0 = __this->get__innerException_4();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_gshared_inline (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__size_2();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_mD7829C7E8CFBEDD463B15A951CDE9B90A12CC55C_gshared_inline (Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_current_3();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * List_1_get_Item_mFDB8AD680C600072736579BBF5F38F7416396588_gshared_inline (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, int32_t ___index0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
int32_t L_1 = (int32_t)__this->get__size_2();
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_000e;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_mBA2AF20A35144E0C43CD721A22EAC9FCA15D6550(/*hidden argument*/NULL);
}
IL_000e:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)__this->get__items_1();
int32_t L_3 = ___index0;
RuntimeObject * L_4 = IL2CPP_ARRAY_UNSAFE_LOAD((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_2, (int32_t)L_3);
return L_4;
}
}
| [
"45937646+borchxx@users.noreply.github.com"
] | 45937646+borchxx@users.noreply.github.com |
be248105097160f883588344378ec949c37037a6 | a96b2cdbb446b845fcb0c14a6c2a775468a3e078 | /rayon.cpp | a7de7ea9e8a1fa993e313e79afea1917cb286d95 | [] | no_license | prostain/newWorld_catalogue | c18c9b15d2d4d633e2cfc5317adffdbbf1c60481 | 3e0fe04c36a0d97bc936566183de2d44ac8b6ee6 | refs/heads/master | 2021-04-18T21:29:40.386735 | 2018-06-01T13:00:52 | 2018-06-01T13:00:52 | 126,461,391 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 380 | cpp | #include "rayon.h"
Rayon::Rayon(int unIdRayon, QString unLibelleRayon, CollProduit uneCollProduit)
{
idRayon = unIdRayon;
libelleRayon = unLibelleRayon;
sesProduits = uneCollProduit;
}
QString Rayon::versChaine()
{
qDebug("QString Rayon::versChaine()");
stringstream rslt;
rslt << libelleRayon.toStdString() ;
return QString(rslt.str().c_str());
}
| [
"bayeux.remy@gmail.com"
] | bayeux.remy@gmail.com |
c8de18869b5bacd8a233cc6fcc6fa6b934c8558e | 053c4c28abb14f5d177f020a2837a3dbd238c927 | /test-enabled/enabled-test/mainwindow.cpp | 89e0e83e2c1da61a27990ba758907df25ee50388 | [] | no_license | zhangzheng1205/Qt_Test | 03970d62707342e633e98ba3743e2131090b9b4c | 87ba25ecb038bafefcd7472255fd650838bcedba | refs/heads/master | 2020-07-29T10:08:01.471735 | 2018-05-04T11:36:13 | 2018-05-04T11:36:13 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 783 | cpp | #include "mainwindow.h"
#include "ui_mainwindow.h"
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
// this->setEnabled(false);
// ui->test->setEnabled(true);
}
MainWindow::~MainWindow()
{
delete ui;
}
void MainWindow::on_test_clicked()
{
qDebug()<<11;
}
void MainWindow::on_lock_clicked()
{
//on the lock button clicked ,the all wdiget except as "lock" will be locked.
auto x=ui->centralWidget->children();
QObjectList::iterator i;
for(i=x.begin();i!=x.end();++i)
{
QObject *wid=*i;
qDebug()<<wid->objectName();
if(wid->isWidgetType()&&wid->objectName()!="lock")
{
static_cast<QWidget*>(wid)->setEnabled(false);
}
}
}
| [
"415112622@qq.com"
] | 415112622@qq.com |
d8fe4d4fe717bd8f995ab1198b0fada46639a458 | 08fdd8c5857acd45aa9556e1bdb7fef208e39699 | /SPIFFS/SPIFFS.h | 0ea11f3383961e6866ec10197dbaa9596e269413 | [] | no_license | AhmadBan/Visual-studio-Mock-for-Arduino | d5e4d6b324be5e74ea3c79b66717d118bdf8568b | f42337edbc14693fba89c1894dd214ebca4ec00e | refs/heads/master | 2023-07-07T12:54:57.009458 | 2020-12-03T16:40:33 | 2020-12-03T16:40:33 | 318,246,646 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,060 | h | #pragma once
#include <cstdint>
#include <memory>
#include <string>
#include <fstream>
#include <iostream>
using namespace std;
//
//int main() {
// char data[100];
//
// // open a file in write mode.
//
//
//
//
// // write inputted data into the file.
// outfile << data << endl;
//
// cout << "Enter your age: ";
// cin >> data;
// cin.ignore();
//
// // again write inputted data into the file.
// outfile << data << endl;
//
// // close the opened file.
// outfile.close();
//
// // open a file in read mode.
// ifstream infile;
// infile.open("afile.dat");
//
// cout << "Reading from the file" << endl;
// infile >> data;
//
// // write the data at the screen.
// cout << data << endl;
//
// // again read the data from the file and display it.
// infile >> data;
// cout << data << endl;
//
// // close the opened file.
// infile.close();
//
// return 0;
//}
enum SeekMode {
SeekSet = 0,
SeekCur = 1,
SeekEnd = 2
};
#define FILE_READ "r"
#define FILE_WRITE "w"
#define FILE_APPEND "a"
class FileImpl;
typedef std::shared_ptr<FileImpl> FileImplPtr;
class FSImpl;
typedef std::shared_ptr<FSImpl> FSImplPtr;
class File
{
string read;
string write;
public:
fstream file;
size_t write(uint8_t buf) {
file << (char)buf;
return 1;
};
size_t write(const uint8_t* buf, size_t size) {
file << (char*)buf;
return size;
};
bool print(const char* buf) {
file << buf;
return true;
}
int available() {
return file.peek() != std::ifstream::traits_type::eof();
};
int read() {
char temp;
if (!available())
return -1;
file.read(&temp, 1);
return temp;
};
int peek() {
return file.peek();
};
void flush() {
file.flush();
};
size_t read(uint8_t* buf, size_t size) {
readBytes((char*)buf, size);
return size;
};
size_t readBytes(char* buffer, size_t size)
{
file.read(buffer, size);
return size;
}
bool seek(uint32_t pos, SeekMode mode) {
if (mode == SeekSet)
file.seekg(pos, ios_base::beg);
if(mode==SeekCur)
file.seekg(pos, ios_base::cur);
if (mode == SeekEnd)
file.seekg(pos, ios_base::end);
return true;
};
bool seek(uint32_t pos)
{
return seek(pos, SeekSet);
}
size_t position() const {
return 0;
};
size_t size() const {
return 0;
};
void close() {
file.close();
};
operator bool() const { return file.fail(); };
time_t getLastWrite() { return 2; };
const char* name() const { return "name"; };
bool isDirectory(void) {};
File openNextFile(const char* mode = FILE_READ) {};
void rewindDirectory(void) {};
protected:
FileImplPtr _p;
};
class FS
{
public:
//FS(FSImplPtr impl) : _impl(impl) { timeCallback = _defaultTimeCB; }
//bool setConfig(const FSConfig& cfg);
bool begin() {
};
void end() {};
bool begin(bool){}
bool format() {}
// bool info(FSInfo& info);
//bool info64(FSInfo64& info);
File open(const char* path, const char* mode) {
File temp;
if(mode=="r")
temp.file.open(path,ios::in);
if (mode == "w")
temp.file.open(path, ios::out);
if (mode == "a")
temp.file.open(path, ios::app);
return temp;
}
File open(const string& path, const char* mode) {
return open(path.c_str(),mode);
}
bool exists(const char* path) {
File temp;
temp.file.open(path);
return temp.file.fail();
}
bool exists(const string& path) {
return exists(path.c_str());
}
//Dir openDir(const char* path);
// Dir openDir(const string& path);
bool remove(const char* path) {}
bool remove(const string& path) {}
bool rename(const char* pathFrom, const char* pathTo) {}
bool rename(const string& pathFrom, const string& pathTo) {}
bool mkdir(const char* path) {}
bool mkdir(const string& path) {}
bool rmdir(const char* path){}
bool rmdir(const string& path){}
// Low-level FS routines, not needed by most applications
bool gc(){}
bool check(){}
void setTimeCallback(time_t(*cb)(void)){}
//friend class ::SDClass; // More of a frenemy, but SD needs internal implementation to get private FAT bits
protected:
FSImplPtr _impl;
FSImplPtr getImpl() { return _impl; }
time_t(*timeCallback)(void);
//static time_t _defaultTimeCB(void) { return time(NULL); }
};
class SPIFFS:public FS
{
public:
SPIFFS() {};
bool begin(bool formatOnFail = false, const char* basePath = "/spiffs", uint8_t maxOpenFiles = 10) {
};
bool format() {};
size_t totalBytes() {};
size_t usedBytes() {};
void end() {};
};
| [
"Ahmad.Baneshi@gmail.com"
] | Ahmad.Baneshi@gmail.com |
105a12bca2db5101d1e3368249a445105ed60b4e | bca8cb330f029b88bec8c7689377866842ee3457 | /server-xmtur/WzMemScript.h | ec29697407556a8e1749b1d9024b01a47affe28d | [] | no_license | sonnickoo/server-xmtur | 583df82ccee2b75dc2b1c93e72d3d5bb29ca9e1e | 2b9fad102d5b06913ee99f3d2955d22d1f28f158 | refs/heads/master | 2021-01-10T03:35:50.896641 | 2013-03-30T00:49:06 | 2013-03-30T00:49:06 | 45,017,040 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 856 | h | // ------------------------------
// Decompiled by Deathway
// Date : 2007-03-09
// ------------------------------
#ifndef WZMEMSCRIPT
#define WZMEMSCRIPT
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "Readscript.h"
class CWzMemScript
{
public:
CWzMemScript();
virtual ~CWzMemScript();
int SetBuffer( char* buffer, int buffersize);
void SetScriptParsingBuffer(char* buffer, int size);
enum SMDToken GetToken();
//enum SMDToken __thiscall TokenType();
int GetNumber();
char* GetString();
protected:
int GetC();
void UnGetC(int ch);
private:
char* m_pBuffer; // 4
int m_iBufferSize; // 8
int m_iBufferCount; // C
HANDLE m_hFile; // 10
char * m_Token; // 14
float TokenNumber; // 18
char TokenString[100]; // 1C
enum SMDToken CurrentToken; // 80
};
#endif | [
"007jodex@gmail.com"
] | 007jodex@gmail.com |
90516e13c24f7af7252ab33a6df1bac78171f5fb | 80c4daac24b67e5692496acf674f36a07c022797 | /examples/win32/testmega/main.cpp | 8cf94443d382a3f2c7a00e87ffb0a9b6df279f64 | [
"BSD-2-Clause"
] | permissive | tagyro/sdk | 1b45444b4c4a0cf900b4d0a6930d285d3bad849d | 652b141444d6cfa9bc94615254044b5234481895 | refs/heads/master | 2021-01-17T23:02:21.606488 | 2014-12-11T13:31:38 | 2014-12-11T13:31:38 | 28,039,710 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,630 | cpp | /**
* @file win32/testmega/main.cpp
* @brief Example app for Windows
*
* (c) 2013-2014 by Mega Limited, Auckland, New Zealand
*
* This file is part of the MEGA SDK - Client Access Engine.
*
* Applications using the MEGA API must present a valid application key
* and comply with the the rules set forth in the Terms of Service.
*
* The MEGA SDK 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.
*
* @copyright Simplified (2-clause) BSD License.
*
* You should have received a copy of the license along with this
* program.
*/
#include <megaapi.h>
#include <Windows.h>
#include <iostream>
//ENTER YOUR CREDENTIALS HERE
#define MEGA_EMAIL "EMAIL"
#define MEGA_PASSWORD "PASSWORD"
//Get yours for free at https://mega.co.nz/#sdk
#define APP_KEY "9gETCbhB"
#define USER_AGENT "Example Win32 App"
using namespace mega;
using namespace std;
class MyListener: public MegaListener
{
public:
bool finished;
MyListener()
{
finished = false;
}
virtual void onRequestFinish(MegaApi* api, MegaRequest *request, MegaError* e)
{
if(e->getErrorCode() != MegaError::API_OK)
{
finished = true;
return;
}
switch(request->getType())
{
case MegaRequest::TYPE_LOGIN:
{
api->fetchNodes();
break;
}
case MegaRequest::TYPE_FETCH_NODES:
{
cout << "***** Showing files/folders in the root folder:" << endl;
MegaNode *root = api->getRootNode();
MegaNodeList *list = api->getChildren(root);
for(int i=0; i < list->size(); i++)
{
MegaNode *node = list->get(i);
if(node->isFile())
cout << "***** File: ";
else
cout << "***** Folder: ";
cout << node->getName() << endl;
}
cout << "***** Done" << endl;
delete list;
cout << "***** Uploading the image MEGA.png" << endl;
api->startUpload("MEGA.png", root);
delete root;
break;
}
default:
break;
}
}
//Currently, this callback is only valid for the request fetchNodes()
virtual void onRequestUpdate(MegaApi*api, MegaRequest *request)
{
cout << "***** Loading filesystem " << request->getTransferredBytes() << " / " << request->getTotalBytes() << endl;
}
virtual void onRequestTemporaryError(MegaApi *api, MegaRequest *request, MegaError* error)
{
cout << "***** Temporary error in request: " << error->getErrorString() << endl;
}
virtual void onTransferFinish(MegaApi* api, MegaTransfer *transfer, MegaError* error)
{
if(error->getErrorCode())
{
cout << "***** Transfer finished with error: " << error->getErrorString() << endl;
}
else
{
cout << "***** Transfer finished OK" << endl;
}
finished = true;
}
virtual void onTransferUpdate(MegaApi *api, MegaTransfer *transfer)
{
cout << "***** Transfer progress: " << transfer->getTransferredBytes() << "/" << transfer->getTotalBytes() << endl;
}
virtual void onTransferTemporaryError(MegaApi *api, MegaTransfer *transfer, MegaError* error)
{
cout << "***** Temporary error in transfer: " << error->getErrorString() << endl;
}
virtual void onUsersUpdate(MegaApi* api, MegaUserList *users)
{
cout << "***** There are " << users->size() << " new or updated users in your account" << endl;
}
virtual void onNodesUpdate(MegaApi* api, MegaNodeList *nodes)
{
if(nodes == NULL)
{
//Full account reload
return;
}
cout << "***** There are " << nodes->size() << " new or updated node/s in your account" << endl;
}
};
int main()
{
//Check the documentation of MegaApi to know how to enable local caching
MegaApi *megaApi = new MegaApi(APP_KEY, (const char *)NULL, USER_AGENT);
//By default, logs are sent to stdout
//You can use MegaApi::setLoggerObject to receive SDK logs in your app
megaApi->setLogLevel(MegaApi::LOG_LEVEL_INFO);
MyListener listener;
//Listener to receive information about all request and transfers
//It is also possible to register a different listener per request/transfer
megaApi->addListener(&listener);
if(!strcmp(MEGA_EMAIL, "EMAIL"))
{
cout << "Please enter your email/password at the top of main.cpp" << endl;
cout << "Press any key to exit the app..." << endl;
getchar();
exit(0);
}
//Login. You can get the result in the onRequestFinish callback of your listener
megaApi->login(MEGA_EMAIL, MEGA_PASSWORD);
//You can use the main thread to show a GUI or anything else. MegaApi runs in a background thread.
while(!listener.finished)
{
Sleep(1000);
}
cout << "Press any key to exit the app..." << endl;
getchar();
return 0;
}
| [
"js@mega.co.nz"
] | js@mega.co.nz |
9af9dceb09e5652e12891dea18b0984f0f6f8153 | 5a90cbdba7170bdfb3f49f1094f90e8de1c9f430 | /java/basic/src/main/java/generics/DogsAndRobots.cpp | 7eca22f67bd067d848d703255d89b38642967655 | [] | no_license | dimu/fortnight | df717aecab02e1dcd70713e89bbefc92dc74aa43 | 42912977bd1940143ac030541730c827045ae696 | refs/heads/master | 2023-08-03T23:37:53.696563 | 2023-03-22T03:45:55 | 2023-03-22T03:45:55 | 191,578,687 | 0 | 0 | null | 2023-07-22T08:11:16 | 2019-06-12T13:40:50 | Java | UTF-8 | C++ | false | false | 366 | cpp | package generics;
//: generics/DogsAndRobots.cpp
class Dog {
public:
void speak() {}
void sit() {}
void reproduce() {}
};
class Robot {
public:
void speak() {}
void sit() {}
void oilChange() {
};
template<class T> void perform(T anything) {
anything.speak();
anything.sit();
}
int main() {
Dog d;
Robot r;
perform(d);
perform(r);
} ///:~
| [
"wenxiang0705@qq.com"
] | wenxiang0705@qq.com |
93048553de67162cbc8c59ea763ab9e742741225 | b112ff7af0f4cd97cdcbbcb50126745aa5248304 | /examples/0067.async_tcp/client.cc | 7a1cf6862ea6008e6b5bbdb74aa5f023f323746e | [
"MIT"
] | permissive | FrancoisSestier/fast_io | d5f42caf563e61d9ac0b9c4cb53123c9420bf7bf | 30ed67bfecdd9d05102c34bf121cff9d31773565 | refs/heads/master | 2022-12-15T11:27:58.623652 | 2020-09-08T01:54:17 | 2020-09-08T01:54:17 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 880 | cc | #include"../../include/fast_io.h"
#include"../../include/fast_io_device.h"
#include"../../include/fast_io_async.h"
#include"../../include/fast_io_network.h"
inline fast_io::task io_task(fast_io::io_async_observer ioa)
{
fast_io::async_tcp_client client(fast_io::ipv4{127,0,0,1},2000);
co_await async_connect(ioa,client);
::debug_print(__FILE__," ",__LINE__);
std::this_thread::sleep_for(std::chrono::seconds{1});
co_await async_println(ioa,client,"Hello World from async client\n",5," d",8);
::debug_print(__FILE__," ",__LINE__);
std::array<char,4096> buffer;
write(fast_io::out(),buffer.begin(),co_await async_read(ioa,client,buffer.begin(),buffer.end()));
::debug_print(__FILE__," ",__LINE__);
}
int main()
{
using namespace std::chrono_literals;
fast_io::io_async_scheduler ioa(fast_io::io_async);
io_task(ioa);
for(;;fast_io::io_async_wait_timeout(ioa,1ms));
}
| [
"euloanty@live.com"
] | euloanty@live.com |
72f5908df8f226ed97dbce8c1752ae9a06a1cd5a | f8d5aa0b91655713e23492f5c21139947f284845 | /ViewerWidget.cpp | c5a24ef8e614629a40a8ec2867a7101c027a15a2 | [] | no_license | Khral/ProjetRV | a903f28ae3e4992ba5a261fb4572b3ba2c8aa229 | 4e7f57d89a89b4eb6bd2873ea773fc5b2e062901 | refs/heads/master | 2021-01-13T01:27:06.438371 | 2015-01-22T05:29:19 | 2015-01-22T05:29:19 | 29,524,782 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,407 | cpp | #include "ViewerWidget.h"
ViewerWidget::ViewerWidget(osgViewer::ViewerBase::ThreadingModel threadingModel, Ui::MainWindow * ui) : QWidget()
{
setThreadingModel(threadingModel);
// disable the default setting of viewer.done() by pressing Escape.
setKeyEventSetsDone(0);
QWidget* widget1 = addViewWidget( createGraphicsWindow(0,0,100,100), creerScene(ui) );
QGridLayout* grid = new QGridLayout;
grid->addWidget( widget1, 0, 0 );
setLayout( grid );
connect( &_timer, SIGNAL(timeout()), this, SLOT(update()) );
_timer.start( 10 );
}
QWidget* ViewerWidget::addViewWidget( osgQt::GraphicsWindowQt* gw, osg::Node* scene )
{
osgViewer::View* view = new osgViewer::View;
addView( view );
osg::Camera* camera = view->getCamera();
camera->setGraphicsContext( gw );
const osg::GraphicsContext::Traits* traits = gw->getTraits();
camera->setClearColor( osg::Vec4(0.2, 0.2, 0.6, 1.0) );
camera->setViewport( new osg::Viewport(0, 0, traits->width, traits->height) );
camera->setProjectionMatrixAsPerspective(30.0f, static_cast<double>(traits->width)/static_cast<double>(traits->height), 1.0f, 10000.0f );
view->setSceneData( scene );
view->addEventHandler( new osgViewer::StatsHandler );
view->setCameraManipulator( new osgGA::MultiTouchTrackballManipulator );
//gw->setTouchEventsEnabled( true );
return gw->getGLWidget();
}
osgQt::GraphicsWindowQt* ViewerWidget::createGraphicsWindow( int x, int y, int w, int h, const std::string& name, bool windowDecoration )
{
osg::DisplaySettings* ds = osg::DisplaySettings::instance().get();
osg::ref_ptr<osg::GraphicsContext::Traits> traits = new osg::GraphicsContext::Traits;
traits->windowName = name;
traits->windowDecoration = windowDecoration;
traits->x = x;
traits->y = y;
traits->width = w;
traits->height = h;
traits->doubleBuffer = true;
traits->alpha = ds->getMinimumNumAlphaBits();
traits->stencil = ds->getMinimumNumStencilBits();
traits->sampleBuffers = ds->getMultiSamples();
traits->samples = ds->getNumMultiSamples();
return new osgQt::GraphicsWindowQt(traits.get());
}
void ViewerWidget::paintEvent( QPaintEvent* event )
{ frame(); }
| [
"etienne.peillard@laposte.net"
] | etienne.peillard@laposte.net |
33103c5cc458bf9d682deb5fad58fce6db2d1971 | 0adf9f49f1fbfc618d55c9bf6196917702749a1b | /leetcode/300_lengthOfLIS.cc | 5faa3c708841d5ef51e341e54f66675d737e73d3 | [] | no_license | philleer/coding | 0bb063d674482bfc5f0e856a249d4406c5782ef1 | 32a73a765219ff7a49bb8178a3d3cf789be08c5f | refs/heads/master | 2022-01-28T15:42:32.763007 | 2019-12-29T10:13:40 | 2019-12-29T10:13:40 | 181,186,217 | 1 | 0 | null | 2019-12-29T10:13:41 | 2019-04-13T14:52:30 | C++ | UTF-8 | C++ | false | false | 2,345 | cc | /******************************************************************************
* The source is part of my coding practice, a lightweight C++ solution for
* leetcode program practice.
*
* For all of my code, after check it online by submit, I also compile and run
* it by my offline machine
* ============================================================================
* ////////////// Microsoft Visual Studio 2010 when I use windows /////////////
* ////////////// G++5.4.0 when I am on Linux /////////////
* ============================================================================
*
* If any question, feel free to send me an email << phillee2016@163.com >>
* or just correct it via Pull Request or create an issue.
******************************************************************************
*/
#include <iostream>
#include <vector>
class Solution {
public:
// 300. Longest Increasing Subsequence
/*=====================================================================
* Description: Given an unsorted array of integers, find the length of
* longest increasing subsequence.
*
* Example:
* Input: [10,9,2,5,3,7,101,18] Output: 4
* Explanation: The longest increasing subsequence is [2,3,7,101],
* therefore the length is 4.
*
* Note:
* There may be more than one LIS combination, it's only necessary
* for you to return the length.
* Your algorithm should run in O(n2) complexity.
* Follow up: Could you improve it to O(n log n) time complexity?
*=====================================================================
*/
int lengthOfLIS(std::vector<int>& nums) {
if (nums.size() == 0) return 0;
int dp[nums.size()];
for (int i = 0; i < nums.size(); i++) {
dp[i] = 1;
for (int j = 0; j < i; j++) {
if (nums[i] > nums[j] && dp[i] <= dp[j])
dp[i] = dp[j] + 1;
}
}
int max = 0;
for (int i = 0; i < nums.size(); i++) {
if (dp[i] > max) max = dp[i];
}
return max;
}
};
int main(int argc, char const *argv[]) {
std::vector<int> nums{10, 9, 2, 5, 3, 7, 101, 18};
int len = Solution().lengthOfLIS(nums);
std::cout << "original array: " << std::endl;
for (auto &num : nums) std::cout << num << " ";
std::cout << std::endl;
std::cout << "the length of longest increasing subsequence is: "
<< len
<< std::endl;
return 0;
}
| [
"phillee2016@163.com"
] | phillee2016@163.com |
79b799c3fd121accb9546ec939cdb65a84df158a | a779f3af806db0300447189975e75e137acfc404 | /Source/LFO.h | e37d6067726d65c3f345f827a0e8721a9025fd3b | [] | no_license | adt40/VirtualSynthesizer | 8fd433463d69621a81599417557a03bc34f33139 | b433346c0de25fd4fc7fc9d2ecf42a8680f9628a | refs/heads/master | 2021-05-13T18:21:11.315763 | 2018-01-09T19:29:37 | 2018-01-09T19:29:37 | 116,858,598 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 427 | h | #pragma once
#include "../JuceLibraryCode/JuceHeader.h"
#include "Modulator.h"
class LFO : public Modulator
{
public:
LFO();
float frequency;
float phase;
float amplitude;
int currentFunction;
float oscillate(float time); //This calculates the output given the current time and the period of this LFO
private:
float sin(float time);
float saw(float time);
float square(float time);
float triangle(float time);
};
| [
"adt40@case.edu"
] | adt40@case.edu |
856d3276e2757fb4e4fa4717a53e9c6b68430119 | 8e2551f7bf62234219c94b1d0cc14916ff8bf698 | /ZeldaNSQ_US-src-linux/src/game/logo/Logo.cpp | 15a75e00f44997644c198fd0911a97ff569a17d1 | [] | no_license | tommybee/zelda-series | 762307ac4d30298935bdb2c3a7d7588206523551 | 2c00ea6f7ef0156118aeeec25214ab935af6e5ca | refs/heads/master | 2020-09-14T17:57:48.046854 | 2016-09-09T07:37:28 | 2016-09-09T07:37:28 | 67,777,315 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,101 | cpp | #include "Logo.h"
#include "../MainController.h"
#include "../../engine/window/WindowManager.h"
#include "../../engine/resources/ResourceManager.h"
#include "../../engine/audio/AudioManager.h"
#include "../../config/ConfigurationManager.h"
Logo::Logo() : anim(0), animMax(15), vanim(60), first(true) {
wasFrench = ConfigurationManager::getInstance()->isFrench();
if (wasFrench) {
image = ResourceManager::getInstance()->loadImage("data/images/logos/logo_fond.png");
} else {
image = ResourceManager::getInstance()->loadImage("data/images/logos/logo_fond_us.png");
}
imageLogo = ResourceManager::getInstance()->loadImage("data/images/logos/logo.png");
}
Logo::~Logo() {
ResourceManager::getInstance()->free(image);
ResourceManager::getInstance()->free(imageLogo);
}
void Logo::init() {
if (ConfigurationManager::getInstance()->isFrench() != wasFrench) {
wasFrench = !wasFrench;
ResourceManager::getInstance()->free(image);
if (wasFrench) {
image = ResourceManager::getInstance()->loadImage("data/images/logos/logo_fond.png");
} else {
image = ResourceManager::getInstance()->loadImage("data/images/logos/logo_fond_us.png");
}
}
anim = 0;
chrono.reset();
}
void Logo::handleEvents(Event* event) {
if (anim < animMax) return;
if (event->isPushed(kReturn)) {
AudioManager::getInstance()->playSound(TS_MENU1);
MainController::getInstance()->setStep(TITRE);
}
}
void Logo::loop() {
if (anim == animMax) return;
if (first) {
if (chrono.getElapsedTime() >= 2000) {
first = false;
chrono.reset();
}
return;
}
if (chrono.getElapsedTime() >= vanim) {
anim++;
chrono.reset();
}
}
void Logo::draw() {
if (first) return;
WindowManager::getInstance()->draw(image, 0, 0, 320, 240, 0, 0);
WindowManager::getInstance()->draw(imageLogo, 144 * (anim % 4), 144 * (anim / 4), 144, 144, 88, 60);
}
| [
"tommybee@naver.com"
] | tommybee@naver.com |
ef79f56c6333141a6068228478545f890985b680 | 1a96da6485b389371c99d06cce2733007c07f01e | /src_proc0/common/copyColorByIndices_BGRA_RGBA.cpp | 88d9953984e73b7d1ecb024715f2c10054862e10 | [] | no_license | RC-MODULE/nmOpenGL | b273ffc499d0491b0d8bb2755161ddfd200c3781 | cac9a7b5b09307f02f05e8670800945ee6b42b6e | refs/heads/master | 2022-10-13T21:04:38.329246 | 2020-11-26T09:29:15 | 2020-11-26T09:29:15 | 210,838,176 | 4 | 3 | null | 2022-03-04T11:08:12 | 2019-09-25T12:21:55 | C++ | UTF-8 | C++ | false | false | 442 | cpp | #include "demo3d_common.h"
#include "nmtype.h"
SECTION(".text_demo3d")
void copyColorByIndices_BGRA_RGBA(v4nm32s* srcColor, int* indices, v4nm32s* dstColor, int size) {
int* src = (int*)srcColor;
int* dst = (int*)dstColor;
for (int i = 0; i < size; i++) {
dst[4 * i + 0] = src[4 * indices[i] + 2];
dst[4 * i + 1] = src[4 * indices[i] + 1];
dst[4 * i + 2] = src[4 * indices[i] + 0];
dst[4 * i + 3] = src[4 * indices[i] + 3];
}
}
| [
"i.zhilenkov@module.ru"
] | i.zhilenkov@module.ru |
50f9d1d96c245b46d5219753fe62ff0de5ef3894 | 20cb93ef9b78fc356a3bda6e689cd827f22a9139 | /gdal/frmts/openjpeg/openjpegdataset.cpp | d6570b8d63f0623fb597ef1b257e87416fa2423e | [
"LicenseRef-scancode-info-zip-2005-02",
"LicenseRef-scancode-warranty-disclaimer",
"MIT",
"LicenseRef-scancode-public-domain"
] | permissive | houlian0/gdal | ab3edb37d526c622ba7ccc0cc54192c142eff1aa | 0839d95a48b8a9ca21d8d555d671560afa466df0 | refs/heads/trunk | 2021-01-25T06:30:48.347409 | 2013-08-20T19:01:45 | 2013-08-20T19:01:45 | 93,586,131 | 1 | 0 | null | 2017-06-07T02:58:09 | 2017-06-07T02:58:09 | null | UTF-8 | C++ | false | false | 75,063 | cpp | /******************************************************************************
* $Id$
*
* Project: JPEG2000 driver based on OpenJPEG library
* Purpose: JPEG2000 driver based on OpenJPEG library
* Author: Even Rouault, <even dot rouault at mines dash paris dot org>
*
******************************************************************************
* Copyright (c) 2010, Even Rouault, <even dot rouault at mines dash paris dot org>
*
* 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.
****************************************************************************/
/* This file is to be used with openjpeg 2.0 */
#include <stdio.h> /* openjpeg.h needs FILE* */
#include <openjpeg-2.0/openjpeg.h>
#include <vector>
#include "gdal_pam.h"
#include "cpl_string.h"
#include "gdaljp2metadata.h"
#include "cpl_multiproc.h"
#include "cpl_atomic_ops.h"
CPL_CVSID("$Id$");
/************************************************************************/
/* JP2OpenJPEGDataset_ErrorCallback() */
/************************************************************************/
static void JP2OpenJPEGDataset_ErrorCallback(const char *pszMsg, void *unused)
{
CPLError(CE_Failure, CPLE_AppDefined, "%s", pszMsg);
}
/************************************************************************/
/* JP2OpenJPEGDataset_WarningCallback() */
/************************************************************************/
static void JP2OpenJPEGDataset_WarningCallback(const char *pszMsg, void *unused)
{
if( strcmp(pszMsg, "JP2 box which are after the codestream will not be read by this function.\n") != 0 )
CPLError(CE_Warning, CPLE_AppDefined, "%s", pszMsg);
}
/************************************************************************/
/* JP2OpenJPEGDataset_InfoCallback() */
/************************************************************************/
static void JP2OpenJPEGDataset_InfoCallback(const char *pszMsg, void *unused)
{
char* pszMsgTmp = CPLStrdup(pszMsg);
int nLen = (int)strlen(pszMsgTmp);
while( nLen > 0 && pszMsgTmp[nLen-1] == '\n' )
{
pszMsgTmp[nLen-1] = '\0';
nLen --;
}
CPLDebug("OPENJPEG", "info: %s", pszMsgTmp);
CPLFree(pszMsgTmp);
}
/************************************************************************/
/* JP2OpenJPEGDataset_Read() */
/************************************************************************/
static OPJ_SIZE_T JP2OpenJPEGDataset_Read(void* pBuffer, OPJ_SIZE_T nBytes,
void *pUserData)
{
int nRet = VSIFReadL(pBuffer, 1, nBytes, (VSILFILE*)pUserData);
#ifdef DEBUG_IO
CPLDebug("OPENJPEG", "JP2OpenJPEGDataset_Read(%d) = %d", (int)nBytes, nRet);
#endif
if (nRet == 0)
nRet = -1;
return nRet;
}
/************************************************************************/
/* JP2OpenJPEGDataset_Write() */
/************************************************************************/
static OPJ_SIZE_T JP2OpenJPEGDataset_Write(void* pBuffer, OPJ_SIZE_T nBytes,
void *pUserData)
{
int nRet = VSIFWriteL(pBuffer, 1, nBytes, (VSILFILE*)pUserData);
#ifdef DEBUG_IO
CPLDebug("OPENJPEG", "JP2OpenJPEGDataset_Write(%d) = %d", (int)nBytes, nRet);
#endif
return nRet;
}
/************************************************************************/
/* JP2OpenJPEGDataset_Seek() */
/************************************************************************/
static OPJ_BOOL JP2OpenJPEGDataset_Seek(OPJ_OFF_T nBytes, void * pUserData)
{
#ifdef DEBUG_IO
CPLDebug("OPENJPEG", "JP2OpenJPEGDataset_Seek(%d)", (int)nBytes);
#endif
return VSIFSeekL((VSILFILE*)pUserData, nBytes, SEEK_SET) == 0;
}
/************************************************************************/
/* JP2OpenJPEGDataset_Skip() */
/************************************************************************/
static OPJ_OFF_T JP2OpenJPEGDataset_Skip(OPJ_OFF_T nBytes, void * pUserData)
{
vsi_l_offset nOffset = VSIFTellL((VSILFILE*)pUserData);
nOffset += nBytes;
#ifdef DEBUG_IO
CPLDebug("OPENJPEG", "JP2OpenJPEGDataset_Skip(%d -> " CPL_FRMT_GUIB ")",
(int)nBytes, (GUIntBig)nOffset);
#endif
VSIFSeekL((VSILFILE*)pUserData, nOffset, SEEK_SET);
return nBytes;
}
/************************************************************************/
/* ==================================================================== */
/* JP2OpenJPEGDataset */
/* ==================================================================== */
/************************************************************************/
class JP2OpenJPEGRasterBand;
class JP2OpenJPEGDataset : public GDALPamDataset
{
friend class JP2OpenJPEGRasterBand;
VSILFILE *fp; /* Large FILE API */
char *pszProjection;
int bGeoTransformValid;
double adfGeoTransform[6];
int nGCPCount;
GDAL_GCP *pasGCPList;
OPJ_CODEC_FORMAT eCodecFormat;
OPJ_COLOR_SPACE eColorSpace;
int bIs420;
int iLevel;
int nOverviewCount;
JP2OpenJPEGDataset** papoOverviewDS;
int bUseSetDecodeArea;
int nThreads;
int GetNumThreads();
int bEnoughMemoryToLoadOtherBands;
protected:
virtual int CloseDependentDatasets();
public:
JP2OpenJPEGDataset();
~JP2OpenJPEGDataset();
static int Identify( GDALOpenInfo * poOpenInfo );
static GDALDataset *Open( GDALOpenInfo * );
static GDALDataset *CreateCopy( const char * pszFilename,
GDALDataset *poSrcDS,
int bStrict, char ** papszOptions,
GDALProgressFunc pfnProgress,
void * pProgressData );
CPLErr GetGeoTransform( double* );
virtual const char *GetProjectionRef(void);
virtual int GetGCPCount();
virtual const char *GetGCPProjection();
virtual const GDAL_GCP *GetGCPs();
virtual CPLErr IRasterIO( GDALRWFlag eRWFlag,
int nXOff, int nYOff, int nXSize, int nYSize,
void * pData, int nBufXSize, int nBufYSize,
GDALDataType eBufType,
int nBandCount, int *panBandMap,
int nPixelSpace, int nLineSpace, int nBandSpace);
static void WriteBox(VSILFILE* fp, GDALJP2Box* poBox);
CPLErr ReadBlock( int nBand, VSILFILE* fp,
int nBlockXOff, int nBlockYOff, void * pImage,
int nBandCount, int *panBandMap );
int PreloadBlocks( JP2OpenJPEGRasterBand* poBand,
int nXOff, int nYOff, int nXSize, int nYSize,
int nBandCount, int *panBandMap );
};
/************************************************************************/
/* ==================================================================== */
/* JP2OpenJPEGRasterBand */
/* ==================================================================== */
/************************************************************************/
class JP2OpenJPEGRasterBand : public GDALPamRasterBand
{
friend class JP2OpenJPEGDataset;
int bPromoteTo8Bit;
public:
JP2OpenJPEGRasterBand( JP2OpenJPEGDataset * poDS, int nBand,
GDALDataType eDataType, int nBits,
int bPromoteTo8Bit,
int nBlockXSize, int nBlockYSize );
~JP2OpenJPEGRasterBand();
virtual CPLErr IReadBlock( int, int, void * );
virtual CPLErr IRasterIO( GDALRWFlag eRWFlag,
int nXOff, int nYOff, int nXSize, int nYSize,
void * pData, int nBufXSize, int nBufYSize,
GDALDataType eBufType,
int nPixelSpace, int nLineSpace );
virtual GDALColorInterp GetColorInterpretation();
virtual int GetOverviewCount();
virtual GDALRasterBand* GetOverview(int iOvrLevel);
virtual int HasArbitraryOverviews() { return TRUE; }
};
/************************************************************************/
/* JP2OpenJPEGRasterBand() */
/************************************************************************/
JP2OpenJPEGRasterBand::JP2OpenJPEGRasterBand( JP2OpenJPEGDataset *poDS, int nBand,
GDALDataType eDataType, int nBits,
int bPromoteTo8Bit,
int nBlockXSize, int nBlockYSize )
{
this->poDS = poDS;
this->nBand = nBand;
this->eDataType = eDataType;
this->nBlockXSize = nBlockXSize;
this->nBlockYSize = nBlockYSize;
this->bPromoteTo8Bit = bPromoteTo8Bit;
if( (nBits % 8) != 0 )
SetMetadataItem("NBITS",
CPLString().Printf("%d",nBits),
"IMAGE_STRUCTURE" );
}
/************************************************************************/
/* ~JP2OpenJPEGRasterBand() */
/************************************************************************/
JP2OpenJPEGRasterBand::~JP2OpenJPEGRasterBand()
{
}
/************************************************************************/
/* CLAMP_0_255() */
/************************************************************************/
static CPL_INLINE GByte CLAMP_0_255(int val)
{
if (val < 0)
return 0;
else if (val > 255)
return 255;
else
return (GByte)val;
}
/************************************************************************/
/* IReadBlock() */
/************************************************************************/
CPLErr JP2OpenJPEGRasterBand::IReadBlock( int nBlockXOff, int nBlockYOff,
void * pImage )
{
JP2OpenJPEGDataset *poGDS = (JP2OpenJPEGDataset *) poDS;
if ( poGDS->bEnoughMemoryToLoadOtherBands )
return poGDS->ReadBlock(nBand, poGDS->fp, nBlockXOff, nBlockYOff, pImage,
poGDS->nBands, NULL);
else
return poGDS->ReadBlock(nBand, poGDS->fp, nBlockXOff, nBlockYOff, pImage,
1, &nBand);
}
/************************************************************************/
/* IRasterIO() */
/************************************************************************/
CPLErr JP2OpenJPEGRasterBand::IRasterIO( GDALRWFlag eRWFlag,
int nXOff, int nYOff, int nXSize, int nYSize,
void * pData, int nBufXSize, int nBufYSize,
GDALDataType eBufType,
int nPixelSpace, int nLineSpace )
{
JP2OpenJPEGDataset *poGDS = (JP2OpenJPEGDataset *) poDS;
if( eRWFlag != GF_Read )
return CE_Failure;
/* ==================================================================== */
/* Do we have overviews that would be appropriate to satisfy */
/* this request? */
/* ==================================================================== */
if( (nBufXSize < nXSize || nBufYSize < nYSize)
&& GetOverviewCount() > 0 && eRWFlag == GF_Read )
{
int nOverview;
nOverview =
GDALBandGetBestOverviewLevel(this, nXOff, nYOff, nXSize, nYSize,
nBufXSize, nBufYSize);
if (nOverview >= 0)
{
GDALRasterBand* poOverviewBand = GetOverview(nOverview);
if (poOverviewBand == NULL)
return CE_Failure;
return poOverviewBand->RasterIO( eRWFlag, nXOff, nYOff, nXSize, nYSize,
pData, nBufXSize, nBufYSize, eBufType,
nPixelSpace, nLineSpace );
}
}
poGDS->bEnoughMemoryToLoadOtherBands = poGDS->PreloadBlocks(this, nXOff, nYOff, nXSize, nYSize, 0, NULL);
CPLErr eErr = GDALPamRasterBand::IRasterIO( eRWFlag, nXOff, nYOff, nXSize, nYSize,
pData, nBufXSize, nBufYSize, eBufType,
nPixelSpace, nLineSpace );
poGDS->bEnoughMemoryToLoadOtherBands = TRUE;
return eErr;
}
/************************************************************************/
/* GetNumThreads() */
/************************************************************************/
int JP2OpenJPEGDataset::GetNumThreads()
{
if( nThreads >= 1 )
return nThreads;
const char* pszThreads = CPLGetConfigOption("GDAL_NUM_THREADS", "ALL_CPUS");
if (EQUAL(pszThreads, "ALL_CPUS"))
nThreads = CPLGetNumCPUs();
else
nThreads = atoi(pszThreads);
if (nThreads > 128)
nThreads = 128;
if (nThreads <= 0)
nThreads = 1;
return nThreads;
}
/************************************************************************/
/* JP2OpenJPEGReadBlockInThread() */
/************************************************************************/
class JobStruct
{
public:
JP2OpenJPEGDataset* poGDS;
int nBand;
std::vector< std::pair<int, int> > oPairs;
volatile int nCurPair;
int nBandCount;
int *panBandMap;
};
static void JP2OpenJPEGReadBlockInThread(void* userdata)
{
int nPair;
JobStruct* poJob = (JobStruct*) userdata;
JP2OpenJPEGDataset* poGDS = poJob->poGDS;
int nBand = poJob->nBand;
int nPairs = (int)poJob->oPairs.size();
int nBandCount = poJob->nBandCount;
int* panBandMap = poJob->panBandMap;
VSILFILE* fp = VSIFOpenL(poGDS->GetDescription(), "rb");
if( fp == NULL )
{
CPLDebug("OPENJPEG", "Cannot open %s", poGDS->GetDescription());
return;
}
while( (nPair = CPLAtomicInc(&(poJob->nCurPair))) < nPairs )
{
int nBlockXOff = poJob->oPairs[nPair].first;
int nBlockYOff = poJob->oPairs[nPair].second;
GDALRasterBlock* poBlock = poGDS->GetRasterBand(nBand)->
GetLockedBlockRef(nBlockXOff,nBlockYOff, TRUE);
if (poBlock == NULL)
break;
void* pDstBuffer = poBlock->GetDataRef();
if (!pDstBuffer)
{
poBlock->DropLock();
break;
}
poGDS->ReadBlock(nBand, fp, nBlockXOff, nBlockYOff, pDstBuffer,
nBandCount, panBandMap);
poBlock->DropLock();
}
VSIFCloseL(fp);
}
/************************************************************************/
/* PreloadBlocks() */
/************************************************************************/
int JP2OpenJPEGDataset::PreloadBlocks(JP2OpenJPEGRasterBand* poBand,
int nXOff, int nYOff, int nXSize, int nYSize,
int nBandCount, int *panBandMap)
{
int bRet = TRUE;
int nXStart = nXOff / poBand->nBlockXSize;
int nXEnd = (nXOff + nXSize - 1) / poBand->nBlockXSize;
int nYStart = nYOff / poBand->nBlockYSize;
int nYEnd = (nYOff + nYSize - 1) / poBand->nBlockYSize;
GIntBig nReqMem = (GIntBig)(nXEnd - nXStart + 1) * (nYEnd - nYStart + 1) *
poBand->nBlockXSize * poBand->nBlockYSize * (GDALGetDataTypeSize(poBand->eDataType) / 8);
int nMaxThreads = GetNumThreads();
if( !bUseSetDecodeArea && nMaxThreads > 1 )
{
if( nReqMem > GDALGetCacheMax64() / (nBandCount == 0 ? 1 : nBandCount) )
return FALSE;
int nBlocksToLoad = 0;
std::vector< std::pair<int,int> > oPairs;
for(int nBlockXOff = nXStart; nBlockXOff <= nXEnd; ++nBlockXOff)
{
for(int nBlockYOff = nYStart; nBlockYOff <= nYEnd; ++nBlockYOff)
{
GDALRasterBlock* poBlock = poBand->TryGetLockedBlockRef(nBlockXOff,nBlockYOff);
if (poBlock != NULL)
{
poBlock->DropLock();
continue;
}
oPairs.push_back( std::pair<int,int>(nBlockXOff, nBlockYOff) );
nBlocksToLoad ++;
}
}
if( nBlocksToLoad > 1 )
{
int nThreads = MIN(nBlocksToLoad, nMaxThreads);
void** pahThreads = (void**) CPLMalloc( sizeof(void*) * nThreads );
int i;
CPLDebug("OPENJPEG", "%d blocks to load", nBlocksToLoad);
JobStruct oJob;
oJob.poGDS = this;
oJob.nBand = poBand->GetBand();
oJob.oPairs = oPairs;
oJob.nCurPair = -1;
if( nBandCount > 0 )
{
oJob.nBandCount = nBandCount;
oJob.panBandMap = panBandMap;
}
else
{
if( nReqMem <= GDALGetCacheMax64() / nBands )
{
oJob.nBandCount = nBands;
oJob.panBandMap = NULL;
}
else
{
bRet = FALSE;
oJob.nBandCount = 1;
oJob.panBandMap = &oJob.nBand;
}
}
for(i=0;i<nThreads;i++)
pahThreads[i] = CPLCreateJoinableThread(JP2OpenJPEGReadBlockInThread, &oJob);
for(i=0;i<nThreads;i++)
CPLJoinThread( pahThreads[i] );
CPLFree(pahThreads);
}
}
return bRet;
}
/************************************************************************/
/* IRasterIO() */
/************************************************************************/
CPLErr JP2OpenJPEGDataset::IRasterIO( GDALRWFlag eRWFlag,
int nXOff, int nYOff, int nXSize, int nYSize,
void * pData, int nBufXSize, int nBufYSize,
GDALDataType eBufType,
int nBandCount, int *panBandMap,
int nPixelSpace, int nLineSpace, int nBandSpace)
{
if( eRWFlag != GF_Read )
return CE_Failure;
if( nBandCount < 1 )
return CE_Failure;
JP2OpenJPEGRasterBand* poBand = (JP2OpenJPEGRasterBand*) GetRasterBand(panBandMap[0]);
/* ==================================================================== */
/* Do we have overviews that would be appropriate to satisfy */
/* this request? */
/* ==================================================================== */
if( (nBufXSize < nXSize || nBufYSize < nYSize)
&& poBand->GetOverviewCount() > 0 && eRWFlag == GF_Read )
{
int nOverview;
nOverview =
GDALBandGetBestOverviewLevel(poBand, nXOff, nYOff, nXSize, nYSize,
nBufXSize, nBufYSize);
if (nOverview >= 0)
{
return papoOverviewDS[nOverview]->RasterIO( eRWFlag, nXOff, nYOff, nXSize, nYSize,
pData, nBufXSize, nBufYSize, eBufType,
nBandCount, panBandMap,
nPixelSpace, nLineSpace, nBandSpace );
}
}
bEnoughMemoryToLoadOtherBands = PreloadBlocks(poBand, nXOff, nYOff, nXSize, nYSize, nBandCount, panBandMap);
CPLErr eErr = GDALPamDataset::IRasterIO( eRWFlag,
nXOff, nYOff, nXSize, nYSize,
pData, nBufXSize, nBufYSize,
eBufType,
nBandCount, panBandMap,
nPixelSpace, nLineSpace, nBandSpace );
bEnoughMemoryToLoadOtherBands = TRUE;
return eErr;
}
/************************************************************************/
/* ReadBlock() */
/************************************************************************/
CPLErr JP2OpenJPEGDataset::ReadBlock( int nBand, VSILFILE* fp,
int nBlockXOff, int nBlockYOff, void * pImage,
int nBandCount, int* panBandMap )
{
CPLErr eErr = CE_None;
opj_codec_t* pCodec;
opj_stream_t * pStream;
opj_image_t * psImage;
JP2OpenJPEGRasterBand* poBand = (JP2OpenJPEGRasterBand*) GetRasterBand(nBand);
int nBlockXSize = poBand->nBlockXSize;
int nBlockYSize = poBand->nBlockYSize;
GDALDataType eDataType = poBand->eDataType;
int nDataTypeSize = (GDALGetDataTypeSize(eDataType) / 8);
int nTileNumber = nBlockXOff + nBlockYOff * poBand->nBlocksPerRow;
int nWidthToRead = MIN(nBlockXSize, nRasterXSize - nBlockXOff * nBlockXSize);
int nHeightToRead = MIN(nBlockYSize, nRasterYSize - nBlockYOff * nBlockYSize);
pCodec = opj_create_decompress(eCodecFormat);
opj_set_info_handler(pCodec, JP2OpenJPEGDataset_InfoCallback,NULL);
opj_set_warning_handler(pCodec, JP2OpenJPEGDataset_WarningCallback, NULL);
opj_set_error_handler(pCodec, JP2OpenJPEGDataset_ErrorCallback,NULL);
opj_dparameters_t parameters;
opj_set_default_decoder_parameters(¶meters);
if (! opj_setup_decoder(pCodec,¶meters))
{
CPLError(CE_Failure, CPLE_AppDefined, "opj_setup_decoder() failed");
return CE_Failure;
}
pStream = opj_stream_create(1024, TRUE); // Default 1MB is way too big for some datasets
VSIFSeekL(fp, 0, SEEK_END);
opj_stream_set_user_data_length(pStream, VSIFTellL(fp));
/* Reseek to file beginning */
VSIFSeekL(fp, 0, SEEK_SET);
opj_stream_set_read_function(pStream, JP2OpenJPEGDataset_Read);
opj_stream_set_seek_function(pStream, JP2OpenJPEGDataset_Seek);
opj_stream_set_skip_function(pStream, JP2OpenJPEGDataset_Skip);
opj_stream_set_user_data(pStream, fp);
if(!opj_read_header(pStream,pCodec,&psImage))
{
CPLError(CE_Failure, CPLE_AppDefined, "opj_read_header() failed");
return CE_Failure;
}
if (!opj_set_decoded_resolution_factor( pCodec, iLevel ))
{
CPLError(CE_Failure, CPLE_AppDefined, "opj_set_decoded_resolution_factor() failed");
eErr = CE_Failure;
goto end;
}
if (bUseSetDecodeArea)
{
if (!opj_set_decode_area(pCodec,psImage,
nBlockXOff*nBlockXSize,nBlockYOff*nBlockYSize,
(nBlockXOff+1)*nBlockXSize,(nBlockYOff+1)*nBlockYSize))
{
CPLError(CE_Failure, CPLE_AppDefined, "opj_set_decode_area() failed");
eErr = CE_Failure;
goto end;
}
if (!opj_decode(pCodec,pStream, psImage))
{
CPLError(CE_Failure, CPLE_AppDefined, "opj_decode() failed");
eErr = CE_Failure;
goto end;
}
}
else
{
if (!opj_get_decoded_tile( pCodec, pStream, psImage, nTileNumber ))
{
CPLError(CE_Failure, CPLE_AppDefined, "opj_get_decoded_tile() failed");
eErr = CE_Failure;
goto end;
}
}
for(int xBand = 0; xBand < nBandCount; xBand ++)
{
void* pDstBuffer;
GDALRasterBlock *poBlock = NULL;
int iBand = (panBandMap) ? panBandMap[xBand] : xBand + 1;
int bPromoteTo8Bit = ((JP2OpenJPEGRasterBand*)GetRasterBand(iBand))->bPromoteTo8Bit;
if (iBand == nBand)
pDstBuffer = pImage;
else
{
poBlock = ((JP2OpenJPEGRasterBand*)GetRasterBand(iBand))->
TryGetLockedBlockRef(nBlockXOff,nBlockYOff);
if (poBlock != NULL)
{
poBlock->DropLock();
continue;
}
poBlock = GetRasterBand(iBand)->
GetLockedBlockRef(nBlockXOff,nBlockYOff, TRUE);
if (poBlock == NULL)
{
continue;
}
pDstBuffer = poBlock->GetDataRef();
if (!pDstBuffer)
{
poBlock->DropLock();
continue;
}
}
if (bIs420)
{
CPLAssert((int)psImage->comps[0].w >= nWidthToRead);
CPLAssert((int)psImage->comps[0].h >= nHeightToRead);
CPLAssert(psImage->comps[1].w == (psImage->comps[0].w + 1) / 2);
CPLAssert(psImage->comps[1].h == (psImage->comps[0].h + 1) / 2);
CPLAssert(psImage->comps[2].w == (psImage->comps[0].w + 1) / 2);
CPLAssert(psImage->comps[2].h == (psImage->comps[0].h + 1) / 2);
OPJ_INT32* pSrcY = psImage->comps[0].data;
OPJ_INT32* pSrcCb = psImage->comps[1].data;
OPJ_INT32* pSrcCr = psImage->comps[2].data;
GByte* pDst = (GByte*)pDstBuffer;
for(int j=0;j<nHeightToRead;j++)
{
for(int i=0;i<nWidthToRead;i++)
{
int Y = pSrcY[j * psImage->comps[0].w + i];
int Cb = pSrcCb[(j/2) * psImage->comps[1].w + (i/2)];
int Cr = pSrcCr[(j/2) * psImage->comps[2].w + (i/2)];
if (iBand == 1)
pDst[j * nBlockXSize + i] = CLAMP_0_255((int)(Y + 1.402 * (Cr - 128)));
else if (iBand == 2)
pDst[j * nBlockXSize + i] = CLAMP_0_255((int)(Y - 0.34414 * (Cb - 128) - 0.71414 * (Cr - 128)));
else
pDst[j * nBlockXSize + i] = CLAMP_0_255((int)(Y + 1.772 * (Cb - 128)));
}
}
}
else
{
CPLAssert((int)psImage->comps[iBand-1].w >= nWidthToRead);
CPLAssert((int)psImage->comps[iBand-1].h >= nHeightToRead);
if( bPromoteTo8Bit )
{
for(int j=0;j<nHeightToRead;j++)
{
for(int i=0;i<nWidthToRead;i++)
{
psImage->comps[iBand-1].data[j * psImage->comps[iBand-1].w + i] *= 255;
}
}
}
if ((int)psImage->comps[iBand-1].w == nBlockXSize &&
(int)psImage->comps[iBand-1].h == nBlockYSize)
{
GDALCopyWords(psImage->comps[iBand-1].data, GDT_Int32, 4,
pDstBuffer, eDataType, nDataTypeSize, nBlockXSize * nBlockYSize);
}
else
{
for(int j=0;j<nHeightToRead;j++)
{
GDALCopyWords(psImage->comps[iBand-1].data + j * psImage->comps[iBand-1].w, GDT_Int32, 4,
(GByte*)pDstBuffer + j * nBlockXSize * nDataTypeSize, eDataType, nDataTypeSize,
nWidthToRead);
}
}
}
if (poBlock != NULL)
poBlock->DropLock();
}
end:
opj_end_decompress(pCodec,pStream);
opj_stream_destroy(pStream);
opj_destroy_codec(pCodec);
opj_image_destroy(psImage);
return eErr;
}
/************************************************************************/
/* GetOverviewCount() */
/************************************************************************/
int JP2OpenJPEGRasterBand::GetOverviewCount()
{
JP2OpenJPEGDataset *poGDS = (JP2OpenJPEGDataset *) poDS;
return poGDS->nOverviewCount;
}
/************************************************************************/
/* GetOverview() */
/************************************************************************/
GDALRasterBand* JP2OpenJPEGRasterBand::GetOverview(int iOvrLevel)
{
JP2OpenJPEGDataset *poGDS = (JP2OpenJPEGDataset *) poDS;
if (iOvrLevel < 0 || iOvrLevel >= poGDS->nOverviewCount)
return NULL;
return poGDS->papoOverviewDS[iOvrLevel]->GetRasterBand(nBand);
}
/************************************************************************/
/* GetColorInterpretation() */
/************************************************************************/
GDALColorInterp JP2OpenJPEGRasterBand::GetColorInterpretation()
{
JP2OpenJPEGDataset *poGDS = (JP2OpenJPEGDataset *) poDS;
if (poGDS->eColorSpace == OPJ_CLRSPC_GRAY)
return GCI_GrayIndex;
else if (poGDS->nBands == 3 || poGDS->nBands == 4)
{
switch(nBand)
{
case 1:
return GCI_RedBand;
case 2:
return GCI_GreenBand;
case 3:
return GCI_BlueBand;
case 4:
return GCI_AlphaBand;
default:
return GCI_Undefined;
}
}
return GCI_Undefined;
}
/************************************************************************/
/* ==================================================================== */
/* JP2OpenJPEGDataset */
/* ==================================================================== */
/************************************************************************/
/************************************************************************/
/* JP2OpenJPEGDataset() */
/************************************************************************/
JP2OpenJPEGDataset::JP2OpenJPEGDataset()
{
fp = NULL;
nBands = 0;
pszProjection = CPLStrdup("");
nGCPCount = 0;
pasGCPList = NULL;
bGeoTransformValid = FALSE;
adfGeoTransform[0] = 0.0;
adfGeoTransform[1] = 1.0;
adfGeoTransform[2] = 0.0;
adfGeoTransform[3] = 0.0;
adfGeoTransform[4] = 0.0;
adfGeoTransform[5] = 1.0;
eCodecFormat = OPJ_CODEC_UNKNOWN;
eColorSpace = OPJ_CLRSPC_UNKNOWN;
bIs420 = FALSE;
iLevel = 0;
nOverviewCount = 0;
papoOverviewDS = NULL;
bUseSetDecodeArea = FALSE;
nThreads = -1;
bEnoughMemoryToLoadOtherBands = TRUE;
}
/************************************************************************/
/* ~JP2OpenJPEGDataset() */
/************************************************************************/
JP2OpenJPEGDataset::~JP2OpenJPEGDataset()
{
FlushCache();
if ( pszProjection )
CPLFree( pszProjection );
if( nGCPCount > 0 )
{
GDALDeinitGCPs( nGCPCount, pasGCPList );
CPLFree( pasGCPList );
}
if( fp != NULL )
VSIFCloseL( fp );
CloseDependentDatasets();
}
/************************************************************************/
/* CloseDependentDatasets() */
/************************************************************************/
int JP2OpenJPEGDataset::CloseDependentDatasets()
{
int bRet = GDALPamDataset::CloseDependentDatasets();
if ( papoOverviewDS )
{
for( int i = 0; i < nOverviewCount; i++ )
delete papoOverviewDS[i];
CPLFree( papoOverviewDS );
papoOverviewDS = NULL;
bRet = TRUE;
}
return bRet;
}
/************************************************************************/
/* GetProjectionRef() */
/************************************************************************/
const char *JP2OpenJPEGDataset::GetProjectionRef()
{
if ( pszProjection && pszProjection[0] != 0 )
return( pszProjection );
else
return GDALPamDataset::GetProjectionRef();
}
/************************************************************************/
/* GetGeoTransform() */
/************************************************************************/
CPLErr JP2OpenJPEGDataset::GetGeoTransform( double * padfTransform )
{
if( bGeoTransformValid )
{
memcpy( padfTransform, adfGeoTransform, sizeof(adfGeoTransform[0]) * 6 );
return CE_None;
}
else
return GDALPamDataset::GetGeoTransform(padfTransform);
}
/************************************************************************/
/* GetGCPCount() */
/************************************************************************/
int JP2OpenJPEGDataset::GetGCPCount()
{
if( nGCPCount > 0 )
return nGCPCount;
else
return GDALPamDataset::GetGCPCount();
}
/************************************************************************/
/* GetGCPProjection() */
/************************************************************************/
const char *JP2OpenJPEGDataset::GetGCPProjection()
{
if( nGCPCount > 0 )
return pszProjection;
else
return GDALPamDataset::GetGCPProjection();
}
/************************************************************************/
/* GetGCP() */
/************************************************************************/
const GDAL_GCP *JP2OpenJPEGDataset::GetGCPs()
{
if( nGCPCount > 0 )
return pasGCPList;
else
return GDALPamDataset::GetGCPs();
}
/************************************************************************/
/* Identify() */
/************************************************************************/
int JP2OpenJPEGDataset::Identify( GDALOpenInfo * poOpenInfo )
{
static const unsigned char jpc_header[] = {0xff,0x4f};
static const unsigned char jp2_box_jp[] = {0x6a,0x50,0x20,0x20}; /* 'jP ' */
if( poOpenInfo->nHeaderBytes >= 16
&& (memcmp( poOpenInfo->pabyHeader, jpc_header,
sizeof(jpc_header) ) == 0
|| memcmp( poOpenInfo->pabyHeader + 4, jp2_box_jp,
sizeof(jp2_box_jp) ) == 0
) )
return TRUE;
else
return FALSE;
}
/************************************************************************/
/* Open() */
/************************************************************************/
GDALDataset *JP2OpenJPEGDataset::Open( GDALOpenInfo * poOpenInfo )
{
if (!Identify(poOpenInfo))
return NULL;
VSILFILE* fp = VSIFOpenL(poOpenInfo->pszFilename, "rb");
if (!fp)
return NULL;
OPJ_CODEC_FORMAT eCodecFormat;
/* Detect which codec to use : J2K or JP2 ? */
static const unsigned char jpc_header[] = {0xff,0x4f};
if (memcmp( poOpenInfo->pabyHeader, jpc_header,
sizeof(jpc_header) ) == 0)
eCodecFormat = OPJ_CODEC_J2K;
else
eCodecFormat = OPJ_CODEC_JP2;
opj_codec_t* pCodec;
pCodec = opj_create_decompress(eCodecFormat);
opj_set_info_handler(pCodec, JP2OpenJPEGDataset_InfoCallback,NULL);
opj_set_warning_handler(pCodec, JP2OpenJPEGDataset_WarningCallback, NULL);
opj_set_error_handler(pCodec, JP2OpenJPEGDataset_ErrorCallback,NULL);
opj_dparameters_t parameters;
opj_set_default_decoder_parameters(¶meters);
if (! opj_setup_decoder(pCodec,¶meters))
{
VSIFCloseL(fp);
return NULL;
}
opj_stream_t * pStream;
pStream = opj_stream_create(1024, TRUE); // Default 1MB is way too big for some datasets
VSIFSeekL(fp, 0, SEEK_END);
opj_stream_set_user_data_length(pStream, VSIFTellL(fp));
/* Reseek to file beginning */
VSIFSeekL(fp, 0, SEEK_SET);
opj_stream_set_read_function(pStream, JP2OpenJPEGDataset_Read);
opj_stream_set_seek_function(pStream, JP2OpenJPEGDataset_Seek);
opj_stream_set_skip_function(pStream, JP2OpenJPEGDataset_Skip);
opj_stream_set_user_data(pStream, fp);
opj_image_t * psImage = NULL;
OPJ_INT32 nX0,nY0;
OPJ_UINT32 nTileW,nTileH,nTilesX,nTilesY;
if(!opj_read_header(pStream,pCodec,&psImage))
{
CPLError(CE_Failure, CPLE_AppDefined, "opj_read_header() failed");
opj_destroy_codec(pCodec);
opj_stream_destroy(pStream);
opj_image_destroy(psImage);
VSIFCloseL(fp);
return NULL;
}
opj_codestream_info_v2_t* pCodeStreamInfo = opj_get_cstr_info(pCodec);
nX0 = pCodeStreamInfo->tx0;
nY0 = pCodeStreamInfo->ty0;
nTileW = pCodeStreamInfo->tdx;
nTileH = pCodeStreamInfo->tdy;
nTilesX = pCodeStreamInfo->tw;
nTilesY = pCodeStreamInfo->th;
int numResolutions = pCodeStreamInfo->m_default_tile_info.tccp_info[0].numresolutions;
opj_destroy_cstr_info(&pCodeStreamInfo);
if (psImage == NULL)
{
opj_destroy_codec(pCodec);
opj_stream_destroy(pStream);
opj_image_destroy(psImage);
VSIFCloseL(fp);
return NULL;
}
#ifdef DEBUG
int i;
CPLDebug("OPENJPEG", "nX0 = %d", nX0);
CPLDebug("OPENJPEG", "nY0 = %d", nY0);
CPLDebug("OPENJPEG", "nTileW = %d", nTileW);
CPLDebug("OPENJPEG", "nTileH = %d", nTileH);
CPLDebug("OPENJPEG", "psImage->x0 = %d", psImage->x0);
CPLDebug("OPENJPEG", "psImage->y0 = %d", psImage->y0);
CPLDebug("OPENJPEG", "psImage->x1 = %d", psImage->x1);
CPLDebug("OPENJPEG", "psImage->y1 = %d", psImage->y1);
CPLDebug("OPENJPEG", "psImage->numcomps = %d", psImage->numcomps);
CPLDebug("OPENJPEG", "psImage->color_space = %d", psImage->color_space);
CPLDebug("OPENJPEG", "numResolutions = %d", numResolutions);
for(i=0;i<(int)psImage->numcomps;i++)
{
CPLDebug("OPENJPEG", "psImage->comps[%d].dx = %d", i, psImage->comps[i].dx);
CPLDebug("OPENJPEG", "psImage->comps[%d].dy = %d", i, psImage->comps[i].dy);
CPLDebug("OPENJPEG", "psImage->comps[%d].x0 = %d", i, psImage->comps[i].x0);
CPLDebug("OPENJPEG", "psImage->comps[%d].y0 = %d", i, psImage->comps[i].y0);
CPLDebug("OPENJPEG", "psImage->comps[%d].w = %d", i, psImage->comps[i].w);
CPLDebug("OPENJPEG", "psImage->comps[%d].h = %d", i, psImage->comps[i].h);
CPLDebug("OPENJPEG", "psImage->comps[%d].resno_decoded = %d", i, psImage->comps[i].resno_decoded);
CPLDebug("OPENJPEG", "psImage->comps[%d].factor = %d", i, psImage->comps[i].factor);
CPLDebug("OPENJPEG", "psImage->comps[%d].prec = %d", i, psImage->comps[i].prec);
CPLDebug("OPENJPEG", "psImage->comps[%d].sgnd = %d", i, psImage->comps[i].sgnd);
}
#endif
if (psImage->x1 <= psImage->x0 ||
psImage->y1 <= psImage->y0 ||
psImage->numcomps == 0 ||
psImage->comps[0].w != psImage->x1 - psImage->x0 ||
psImage->comps[0].h != psImage->y1 - psImage->y0)
{
CPLDebug("OPENJPEG", "Unable to handle that image (1)");
opj_destroy_codec(pCodec);
opj_stream_destroy(pStream);
opj_image_destroy(psImage);
VSIFCloseL(fp);
return NULL;
}
GDALDataType eDataType = GDT_Byte;
if (psImage->comps[0].prec > 16)
{
if (psImage->comps[0].sgnd)
eDataType = GDT_Int32;
else
eDataType = GDT_UInt32;
}
else if (psImage->comps[0].prec > 8)
{
if (psImage->comps[0].sgnd)
eDataType = GDT_Int16;
else
eDataType = GDT_UInt16;
}
int bIs420 = (psImage->color_space != OPJ_CLRSPC_SRGB &&
eDataType == GDT_Byte &&
psImage->numcomps == 3 &&
psImage->comps[1].w == psImage->comps[0].w / 2 &&
psImage->comps[1].h == psImage->comps[0].h / 2 &&
psImage->comps[2].w == psImage->comps[0].w / 2 &&
psImage->comps[2].h == psImage->comps[0].h / 2);
if (bIs420)
{
CPLDebug("OPENJPEG", "420 format");
}
else
{
int iBand;
for(iBand = 2; iBand <= (int)psImage->numcomps; iBand ++)
{
if( psImage->comps[iBand-1].w != psImage->comps[0].w ||
psImage->comps[iBand-1].h != psImage->comps[0].h )
{
CPLDebug("OPENJPEG", "Unable to handle that image (2)");
opj_destroy_codec(pCodec);
opj_stream_destroy(pStream);
opj_image_destroy(psImage);
VSIFCloseL(fp);
return NULL;
}
}
}
/* -------------------------------------------------------------------- */
/* Create a corresponding GDALDataset. */
/* -------------------------------------------------------------------- */
JP2OpenJPEGDataset *poDS;
int iBand;
poDS = new JP2OpenJPEGDataset();
poDS->eCodecFormat = eCodecFormat;
poDS->eColorSpace = psImage->color_space;
poDS->nRasterXSize = psImage->x1 - psImage->x0;
poDS->nRasterYSize = psImage->y1 - psImage->y0;
poDS->nBands = psImage->numcomps;
poDS->fp = fp;
poDS->bIs420 = bIs420;
poDS->bUseSetDecodeArea =
(poDS->nRasterXSize == (int)nTileW &&
poDS->nRasterYSize == (int)nTileH &&
(poDS->nRasterXSize > 1024 ||
poDS->nRasterYSize > 1024));
if (poDS->bUseSetDecodeArea)
{
if (nTileW > 1024) nTileW = 1024;
if (nTileH > 1024) nTileH = 1024;
}
/* -------------------------------------------------------------------- */
/* Create band information objects. */
/* -------------------------------------------------------------------- */
for( iBand = 1; iBand <= poDS->nBands; iBand++ )
{
int bPromoteTo8Bit = (
iBand == 4 && poDS->nBands == 4 &&
psImage->comps[0].prec == 8 &&
psImage->comps[1].prec == 8 &&
psImage->comps[2].prec == 8 &&
psImage->comps[3].prec == 1 &&
CSLTestBoolean(CPLGetConfigOption("JP2OPENJPEG_PROMOTE_1BIT_ALPHA_AS_8BIT", "YES")) );
poDS->SetBand( iBand, new JP2OpenJPEGRasterBand( poDS, iBand, eDataType,
bPromoteTo8Bit ? 8: psImage->comps[iBand-1].prec,
bPromoteTo8Bit,
nTileW, nTileH) );
}
/* -------------------------------------------------------------------- */
/* Create overview datasets. */
/* -------------------------------------------------------------------- */
int nW = poDS->nRasterXSize;
int nH = poDS->nRasterYSize;
while (poDS->nOverviewCount+1 < numResolutions &&
(nW > 256 || nH > 256) &&
(poDS->bUseSetDecodeArea || ((nTileW % 2) == 0 && (nTileH % 2) == 0)))
{
nW /= 2;
nH /= 2;
VSILFILE* fpOvr = VSIFOpenL(poOpenInfo->pszFilename, "rb");
if (!fpOvr)
break;
poDS->papoOverviewDS = (JP2OpenJPEGDataset**) CPLRealloc(
poDS->papoOverviewDS,
(poDS->nOverviewCount + 1) * sizeof(JP2OpenJPEGDataset*));
JP2OpenJPEGDataset* poODS = new JP2OpenJPEGDataset();
poODS->SetDescription( poOpenInfo->pszFilename );
poODS->iLevel = poDS->nOverviewCount + 1;
poODS->bUseSetDecodeArea = poDS->bUseSetDecodeArea;
if (!poDS->bUseSetDecodeArea)
{
nTileW /= 2;
nTileH /= 2;
}
else
{
if (nW < (int)nTileW || nH < (int)nTileH)
{
nTileW = nW;
nTileH = nH;
poODS->bUseSetDecodeArea = FALSE;
}
}
poODS->eCodecFormat = poDS->eCodecFormat;
poODS->eColorSpace = poDS->eColorSpace;
poODS->nRasterXSize = nW;
poODS->nRasterYSize = nH;
poODS->nBands = poDS->nBands;
poODS->fp = fpOvr;
poODS->bIs420 = bIs420;
for( iBand = 1; iBand <= poDS->nBands; iBand++ )
{
int bPromoteTo8Bit = (
iBand == 4 && poDS->nBands == 4 &&
psImage->comps[0].prec == 8 &&
psImage->comps[1].prec == 8 &&
psImage->comps[2].prec == 8 &&
psImage->comps[3].prec == 1 &&
CSLTestBoolean(CPLGetConfigOption("JP2OPENJPEG_PROMOTE_1BIT_ALPHA_AS_8BIT", "YES")) );
poODS->SetBand( iBand, new JP2OpenJPEGRasterBand( poODS, iBand, eDataType,
bPromoteTo8Bit ? 8: psImage->comps[iBand-1].prec,
bPromoteTo8Bit,
nTileW, nTileH ) );
}
poDS->papoOverviewDS[poDS->nOverviewCount ++] = poODS;
}
opj_destroy_codec(pCodec);
opj_stream_destroy(pStream);
opj_image_destroy(psImage);
pCodec = NULL;
pStream = NULL;
psImage = NULL;
/* -------------------------------------------------------------------- */
/* More metadata. */
/* -------------------------------------------------------------------- */
if( poDS->nBands > 1 )
{
poDS->SetMetadataItem( "INTERLEAVE", "PIXEL", "IMAGE_STRUCTURE" );
}
/* -------------------------------------------------------------------- */
/* Check for georeferencing information. */
/* -------------------------------------------------------------------- */
GDALJP2Metadata oJP2Geo;
if( oJP2Geo.ReadAndParse( poOpenInfo->pszFilename ) )
{
if ( poDS->pszProjection )
CPLFree( poDS->pszProjection );
poDS->pszProjection = CPLStrdup(oJP2Geo.pszProjection);
poDS->bGeoTransformValid = oJP2Geo.bHaveGeoTransform;
memcpy( poDS->adfGeoTransform, oJP2Geo.adfGeoTransform,
sizeof(double) * 6 );
poDS->nGCPCount = oJP2Geo.nGCPCount;
poDS->pasGCPList =
GDALDuplicateGCPs( oJP2Geo.nGCPCount, oJP2Geo.pasGCPList );
}
if (oJP2Geo.pszXMPMetadata)
{
char *apszMDList[2];
apszMDList[0] = (char *) oJP2Geo.pszXMPMetadata;
apszMDList[1] = NULL;
poDS->SetMetadata(apszMDList, "xml:XMP");
}
/* -------------------------------------------------------------------- */
/* Do we have other misc metadata? */
/* -------------------------------------------------------------------- */
if( oJP2Geo.papszMetadata != NULL )
{
char **papszMD = CSLDuplicate(poDS->GDALPamDataset::GetMetadata());
papszMD = CSLMerge( papszMD, oJP2Geo.papszMetadata );
poDS->GDALPamDataset::SetMetadata( papszMD );
CSLDestroy( papszMD );
}
/* -------------------------------------------------------------------- */
/* Check for world file. */
/* -------------------------------------------------------------------- */
if( !poDS->bGeoTransformValid )
{
poDS->bGeoTransformValid |=
GDALReadWorldFile2( poOpenInfo->pszFilename, NULL,
poDS->adfGeoTransform,
poOpenInfo->papszSiblingFiles, NULL )
|| GDALReadWorldFile2( poOpenInfo->pszFilename, ".wld",
poDS->adfGeoTransform,
poOpenInfo->papszSiblingFiles, NULL );
}
/* -------------------------------------------------------------------- */
/* Initialize any PAM information. */
/* -------------------------------------------------------------------- */
poDS->SetDescription( poOpenInfo->pszFilename );
poDS->TryLoadXML();
/* -------------------------------------------------------------------- */
/* Check for overviews. */
/* -------------------------------------------------------------------- */
//poDS->oOvManager.Initialize( poDS, poOpenInfo->pszFilename );
return( poDS );
}
/************************************************************************/
/* WriteBox() */
/************************************************************************/
void JP2OpenJPEGDataset::WriteBox(VSILFILE* fp, GDALJP2Box* poBox)
{
GUInt32 nLBox;
GUInt32 nTBox;
nLBox = (int) poBox->GetDataLength() + 8;
nLBox = CPL_MSBWORD32( nLBox );
memcpy(&nTBox, poBox->GetType(), 4);
VSIFWriteL( &nLBox, 4, 1, fp );
VSIFWriteL( &nTBox, 4, 1, fp );
VSIFWriteL(poBox->GetWritableData(), 1, (int) poBox->GetDataLength(), fp);
}
/************************************************************************/
/* CreateCopy() */
/************************************************************************/
GDALDataset * JP2OpenJPEGDataset::CreateCopy( const char * pszFilename,
GDALDataset *poSrcDS,
int bStrict, char ** papszOptions,
GDALProgressFunc pfnProgress,
void * pProgressData )
{
int nBands = poSrcDS->GetRasterCount();
int nXSize = poSrcDS->GetRasterXSize();
int nYSize = poSrcDS->GetRasterYSize();
if( nBands != 1 && nBands != 3 )
{
CPLError( CE_Failure, CPLE_NotSupported,
"Unable to export files with %d bands.", nBands );
return NULL;
}
if (poSrcDS->GetRasterBand(1)->GetColorTable() != NULL)
{
CPLError( (bStrict) ? CE_Failure : CE_Warning, CPLE_NotSupported,
"JP2OpenJPEG driver ignores color table. "
"The source raster band will be considered as grey level.\n"
"Consider using color table expansion (-expand option in gdal_translate)\n");
if (bStrict)
return NULL;
}
GDALDataType eDataType = poSrcDS->GetRasterBand(1)->GetRasterDataType();
int nDataTypeSize = (GDALGetDataTypeSize(eDataType) / 8);
if (eDataType != GDT_Byte && eDataType != GDT_Int16 && eDataType != GDT_UInt16
&& eDataType != GDT_Int32 && eDataType != GDT_UInt32)
{
CPLError( CE_Failure, CPLE_NotSupported,
"JP2OpenJPEG driver only supports creating Byte, GDT_Int16, GDT_UInt16, GDT_Int32, GDT_UInt32");
return NULL;
}
/* -------------------------------------------------------------------- */
/* Analyze creation options. */
/* -------------------------------------------------------------------- */
OPJ_CODEC_FORMAT eCodecFormat = OPJ_CODEC_J2K;
const char* pszCodec = CSLFetchNameValueDef(papszOptions, "CODEC", NULL);
if (pszCodec)
{
if (EQUAL(pszCodec, "JP2"))
eCodecFormat = OPJ_CODEC_JP2;
else if (EQUAL(pszCodec, "J2K"))
eCodecFormat = OPJ_CODEC_J2K;
else
{
CPLError(CE_Warning, CPLE_NotSupported,
"Unsupported value for CODEC : %s. Defaulting to J2K",
pszCodec);
}
}
else
{
if (strlen(pszFilename) > 4 &&
EQUAL(pszFilename + strlen(pszFilename) - 4, ".JP2"))
{
eCodecFormat = OPJ_CODEC_JP2;
}
}
int nBlockXSize =
atoi(CSLFetchNameValueDef(papszOptions, "BLOCKXSIZE", "1024"));
int nBlockYSize =
atoi(CSLFetchNameValueDef(papszOptions, "BLOCKYSIZE", "1024"));
if (nBlockXSize < 32 || nBlockYSize < 32)
{
CPLError(CE_Failure, CPLE_NotSupported, "Invalid block size");
return NULL;
}
if (nXSize < nBlockXSize)
nBlockXSize = nXSize;
if (nYSize < nBlockYSize)
nBlockYSize = nYSize;
OPJ_PROG_ORDER eProgOrder = OPJ_LRCP;
const char* pszPROGORDER =
CSLFetchNameValueDef(papszOptions, "PROGRESSION", "LRCP");
if (EQUAL(pszPROGORDER, "LRCP"))
eProgOrder = OPJ_LRCP;
else if (EQUAL(pszPROGORDER, "RLCP"))
eProgOrder = OPJ_RLCP;
else if (EQUAL(pszPROGORDER, "RPCL"))
eProgOrder = OPJ_RPCL;
else if (EQUAL(pszPROGORDER, "PCRL"))
eProgOrder = OPJ_PCRL;
else if (EQUAL(pszPROGORDER, "CPRL"))
eProgOrder = OPJ_CPRL;
else
{
CPLError(CE_Warning, CPLE_NotSupported,
"Unsupported value for PROGRESSION : %s. Defaulting to LRCP",
pszPROGORDER);
}
int bIsIrreversible =
! (CSLTestBoolean(CSLFetchNameValueDef(papszOptions, "REVERSIBLE", "NO")));
double dfRate = 100. / 25;
const char* pszQuality = CSLFetchNameValueDef(papszOptions, "QUALITY", NULL);
if (pszQuality)
{
double dfQuality = atof(pszQuality);
if (dfQuality > 0 && dfQuality <= 100)
{
dfRate = 100 / dfQuality;
}
else
{
CPLError(CE_Warning, CPLE_NotSupported,
"Unsupported value for QUALITY : %s. Defaulting to 25",
pszQuality);
}
}
int nNumResolutions = 6;
const char* pszResolutions = CSLFetchNameValueDef(papszOptions, "RESOLUTIONS", NULL);
if (pszResolutions)
{
nNumResolutions = atoi(pszResolutions);
if (nNumResolutions < 1 || nNumResolutions > 7)
{
nNumResolutions = 6;
CPLError(CE_Warning, CPLE_NotSupported,
"Unsupported value for RESOLUTIONS : %s. Defaulting to 6",
pszResolutions);
}
}
int bSOP = CSLTestBoolean(CSLFetchNameValueDef(papszOptions, "SOP", "FALSE"));
int bEPH = CSLTestBoolean(CSLFetchNameValueDef(papszOptions, "EPH", "FALSE"));
int bResample = nBands == 3 && eDataType == GDT_Byte &&
CSLTestBoolean(CSLFetchNameValueDef(papszOptions, "YCBCR420", "FALSE"));
if (bResample && !((nXSize % 2) == 0 && (nYSize % 2) == 0 && (nBlockXSize % 2) == 0 && (nBlockYSize % 2) == 0))
{
CPLError(CE_Warning, CPLE_NotSupported,
"YCBCR420 unsupported when image size and/or tile size are not multiple of 2");
bResample = FALSE;
}
/* -------------------------------------------------------------------- */
/* Setup encoder */
/* -------------------------------------------------------------------- */
opj_cparameters_t parameters;
opj_set_default_encoder_parameters(¶meters);
if (bSOP)
parameters.csty |= 0x02;
if (bEPH)
parameters.csty |= 0x04;
parameters.cp_disto_alloc = 1;
parameters.tcp_numlayers = 1;
parameters.tcp_rates[0] = (float) dfRate;
parameters.cp_tx0 = 0;
parameters.cp_ty0 = 0;
parameters.tile_size_on = TRUE;
parameters.cp_tdx = nBlockXSize;
parameters.cp_tdy = nBlockYSize;
parameters.irreversible = bIsIrreversible;
parameters.numresolution = nNumResolutions;
parameters.prog_order = eProgOrder;
opj_image_cmptparm_t* pasBandParams =
(opj_image_cmptparm_t*)CPLMalloc(nBands * sizeof(opj_image_cmptparm_t));
int iBand;
for(iBand=0;iBand<nBands;iBand++)
{
pasBandParams[iBand].x0 = 0;
pasBandParams[iBand].y0 = 0;
if (bResample && iBand > 0)
{
pasBandParams[iBand].dx = 2;
pasBandParams[iBand].dy = 2;
pasBandParams[iBand].w = nXSize / 2;
pasBandParams[iBand].h = nYSize / 2;
}
else
{
pasBandParams[iBand].dx = 1;
pasBandParams[iBand].dy = 1;
pasBandParams[iBand].w = nXSize;
pasBandParams[iBand].h = nYSize;
}
pasBandParams[iBand].sgnd = (eDataType == GDT_Int16 || eDataType == GDT_Int32);
pasBandParams[iBand].prec = 8 * nDataTypeSize;
}
opj_codec_t* pCodec = opj_create_compress(eCodecFormat);
if (pCodec == NULL)
{
CPLError(CE_Failure, CPLE_AppDefined,
"opj_create_compress() failed");
CPLFree(pasBandParams);
return NULL;
}
opj_set_info_handler(pCodec, JP2OpenJPEGDataset_InfoCallback,NULL);
opj_set_warning_handler(pCodec, JP2OpenJPEGDataset_WarningCallback,NULL);
opj_set_error_handler(pCodec, JP2OpenJPEGDataset_ErrorCallback,NULL);
OPJ_COLOR_SPACE eColorSpace = (bResample) ? OPJ_CLRSPC_SYCC : (nBands == 3) ? OPJ_CLRSPC_SRGB : OPJ_CLRSPC_GRAY;
opj_image_t* psImage = opj_image_tile_create(nBands,pasBandParams,
eColorSpace);
CPLFree(pasBandParams);
pasBandParams = NULL;
if (psImage == NULL)
{
CPLError(CE_Failure, CPLE_AppDefined,
"opj_image_tile_create() failed");
opj_destroy_codec(pCodec);
return NULL;
}
psImage->x0 = 0;
psImage->y0 = 0;
psImage->x1 = nXSize;
psImage->y1 = nYSize;
psImage->color_space = eColorSpace;
psImage->numcomps = nBands;
if (!opj_setup_encoder(pCodec,¶meters,psImage))
{
CPLError(CE_Failure, CPLE_AppDefined,
"opj_setup_encoder() failed");
opj_image_destroy(psImage);
opj_destroy_codec(pCodec);
return NULL;
}
/* -------------------------------------------------------------------- */
/* Create the dataset. */
/* -------------------------------------------------------------------- */
const char* pszAccess = EQUALN(pszFilename, "/vsisubfile/", 12) ? "r+b" : "w+b";
VSILFILE* fp = VSIFOpenL(pszFilename, pszAccess);
if (fp == NULL)
{
CPLError(CE_Failure, CPLE_AppDefined, "Cannot create file");
opj_image_destroy(psImage);
opj_destroy_codec(pCodec);
return NULL;
}
opj_stream_t * pStream;
pStream = opj_stream_create(1024*1024, FALSE);
opj_stream_set_write_function(pStream, JP2OpenJPEGDataset_Write);
opj_stream_set_seek_function(pStream, JP2OpenJPEGDataset_Seek);
opj_stream_set_skip_function(pStream, JP2OpenJPEGDataset_Skip);
opj_stream_set_user_data(pStream, fp);
if (!opj_start_compress(pCodec,psImage,pStream))
{
CPLError(CE_Failure, CPLE_AppDefined,
"opj_start_compress() failed");
opj_stream_destroy(pStream);
opj_image_destroy(psImage);
opj_destroy_codec(pCodec);
VSIFCloseL(fp);
return NULL;
}
int nTilesX = (nXSize + nBlockXSize - 1) / nBlockXSize;
int nTilesY = (nYSize + nBlockYSize - 1) / nBlockYSize;
GByte* pTempBuffer =(GByte*)VSIMalloc(nBlockXSize * nBlockYSize *
nBands * nDataTypeSize);
if (pTempBuffer == NULL)
{
opj_stream_destroy(pStream);
opj_image_destroy(psImage);
opj_destroy_codec(pCodec);
VSIFCloseL(fp);
return NULL;
}
GByte* pYUV420Buffer = NULL;
if (bResample)
{
pYUV420Buffer =(GByte*)VSIMalloc(3 * nBlockXSize * nBlockYSize / 2);
if (pYUV420Buffer == NULL)
{
opj_stream_destroy(pStream);
opj_image_destroy(psImage);
opj_destroy_codec(pCodec);
CPLFree(pTempBuffer);
VSIFCloseL(fp);
return NULL;
}
}
/* -------------------------------------------------------------------- */
/* Setup GML and GeoTIFF information. */
/* -------------------------------------------------------------------- */
GDALJP2Metadata oJP2MD;
int bWriteExtraBoxes = FALSE;
if( eCodecFormat == OPJ_CODEC_JP2 &&
(CSLFetchBoolean( papszOptions, "GMLJP2", TRUE ) ||
CSLFetchBoolean( papszOptions, "GeoJP2", TRUE )) )
{
const char* pszWKT = poSrcDS->GetProjectionRef();
if( pszWKT != NULL && pszWKT[0] != '\0' )
{
bWriteExtraBoxes = TRUE;
oJP2MD.SetProjection( pszWKT );
}
double adfGeoTransform[6];
if( poSrcDS->GetGeoTransform( adfGeoTransform ) == CE_None )
{
bWriteExtraBoxes = TRUE;
oJP2MD.SetGeoTransform( adfGeoTransform );
}
}
#define PIXELS_PER_INCH 2
#define PIXELS_PER_CM 3
// Resolution
double dfXRes = 0, dfYRes = 0;
int nResUnit = 0;
if( eCodecFormat == OPJ_CODEC_JP2
&& poSrcDS->GetMetadataItem("TIFFTAG_XRESOLUTION") != NULL
&& poSrcDS->GetMetadataItem("TIFFTAG_YRESOLUTION") != NULL
&& poSrcDS->GetMetadataItem("TIFFTAG_RESOLUTIONUNIT") != NULL )
{
dfXRes =
CPLAtof(poSrcDS->GetMetadataItem("TIFFTAG_XRESOLUTION"));
dfYRes =
CPLAtof(poSrcDS->GetMetadataItem("TIFFTAG_YRESOLUTION"));
nResUnit = atoi(poSrcDS->GetMetadataItem("TIFFTAG_RESOLUTIONUNIT"));
if( nResUnit == PIXELS_PER_INCH )
{
// convert pixels per inch to pixels per cm.
dfXRes = dfXRes * 39.37 / 100.0;
dfYRes = dfYRes * 39.37 / 100.0;
nResUnit = PIXELS_PER_CM;
}
if( nResUnit == PIXELS_PER_CM &&
dfXRes > 0 && dfYRes > 0 &&
dfXRes < 65535 && dfYRes < 65535 )
{
bWriteExtraBoxes = TRUE;
}
}
/* The file pointer should have been set 8 bytes after the */
/* last written bytes, because openjpeg has reserved it */
/* for the jp2c header, but still not written. */
vsi_l_offset nPosOriginalJP2C = 0;
vsi_l_offset nPosRealJP2C = 0;
GByte abyBackupWhatShouldHaveBeenTheJP2CBoxHeader[8];
if( bWriteExtraBoxes )
{
nPosOriginalJP2C = VSIFTellL(fp) - 8;
char szBoxName[4+1];
int nLBoxJP2H = 0;
/* If we must write a Res/Resd box, */
/* read the box header at offset 32 */
if ( nResUnit == PIXELS_PER_CM )
{
VSIFSeekL(fp, 32, SEEK_SET);
VSIFReadL(&nLBoxJP2H, 1, 4, fp);
nLBoxJP2H = CPL_MSBWORD32( nLBoxJP2H );
VSIFReadL(szBoxName, 1, 4, fp);
szBoxName[4] = '\0';
}
VSIFSeekL(fp, nPosOriginalJP2C, SEEK_SET);
/* And check that it is the jp2h box before */
/* writing the res box */
if ( nResUnit == PIXELS_PER_CM && EQUAL(szBoxName, "jp2h") )
{
/* Format a resd box and embed it inside a res box */
GDALJP2Box oResd;
oResd.SetType("resd");
GByte aby[10];
int nYDenom = 1;
while (nYDenom < 32767 && dfYRes < 32767)
{
dfYRes *= 2;
nYDenom *= 2;
}
int nXDenom = 1;
while (nXDenom < 32767 && dfXRes < 32767)
{
dfXRes *= 2;
nXDenom *= 2;
}
aby[0] = (GByte) (((int)dfYRes) / 256);
aby[1] = ((int)dfYRes) % 256;
aby[2] = (GByte) (nYDenom / 256);
aby[3] = nYDenom % 256;
aby[4] = (GByte) (((int)dfXRes) / 256);
aby[5] = ((int)dfXRes) % 256;
aby[6] = (GByte) (nXDenom / 256);
aby[7] = nXDenom % 256;
aby[8] = 2;
aby[9] = 2;
oResd.SetWritableData(10, aby);
GDALJP2Box* poResd = &oResd;
GDALJP2Box* poRes = GDALJP2Box::CreateAsocBox( 1, &poResd );
poRes->SetType("res ");
/* Now let's extend the jp2c box header so that the */
/* res box becomes a sub-box of it */
nLBoxJP2H += (int)poRes->GetDataLength() + 8;
nLBoxJP2H = CPL_MSBWORD32( nLBoxJP2H );
VSIFSeekL(fp, 32, SEEK_SET);
VSIFWriteL(&nLBoxJP2H, 1, 4, fp);
/* Write the box at the end of the file */
VSIFSeekL(fp, nPosOriginalJP2C, SEEK_SET);
WriteBox(fp, poRes);
delete poRes;
}
if( CSLFetchBoolean( papszOptions, "GMLJP2", TRUE ) )
{
GDALJP2Box* poBox = oJP2MD.CreateGMLJP2(nXSize,nYSize);
WriteBox(fp, poBox);
delete poBox;
}
if( CSLFetchBoolean( papszOptions, "GeoJP2", TRUE ) )
{
GDALJP2Box* poBox = oJP2MD.CreateJP2GeoTIFF();
WriteBox(fp, poBox);
delete poBox;
}
nPosRealJP2C = VSIFTellL(fp);
/* Backup the res, GMLJP2 or GeoJP2 box header */
/* that will be overwritten by opj_end_compress() */
VSIFSeekL(fp, nPosOriginalJP2C, SEEK_SET);
VSIFReadL(abyBackupWhatShouldHaveBeenTheJP2CBoxHeader, 1, 8, fp);
VSIFSeekL(fp, nPosRealJP2C + 8, SEEK_SET);
}
/* -------------------------------------------------------------------- */
/* Iterate over the tiles */
/* -------------------------------------------------------------------- */
pfnProgress( 0.0, NULL, pProgressData );
CPLErr eErr = CE_None;
int nBlockXOff, nBlockYOff;
int iTile = 0;
for(nBlockYOff=0;eErr == CE_None && nBlockYOff<nTilesY;nBlockYOff++)
{
for(nBlockXOff=0;eErr == CE_None && nBlockXOff<nTilesX;nBlockXOff++)
{
int nWidthToRead = MIN(nBlockXSize, nXSize - nBlockXOff * nBlockXSize);
int nHeightToRead = MIN(nBlockYSize, nYSize - nBlockYOff * nBlockYSize);
eErr = poSrcDS->RasterIO(GF_Read,
nBlockXOff * nBlockXSize,
nBlockYOff * nBlockYSize,
nWidthToRead, nHeightToRead,
pTempBuffer, nWidthToRead, nHeightToRead,
eDataType,
nBands, NULL,
0,0,0);
if (eErr == CE_None)
{
if (bResample)
{
int j, i;
for(j=0;j<nHeightToRead;j++)
{
for(i=0;i<nWidthToRead;i++)
{
int R = pTempBuffer[j*nWidthToRead+i];
int G = pTempBuffer[nHeightToRead*nWidthToRead + j*nWidthToRead+i];
int B = pTempBuffer[2*nHeightToRead*nWidthToRead + j*nWidthToRead+i];
int Y = (int) (0.299 * R + 0.587 * G + 0.114 * B);
int Cb = CLAMP_0_255((int) (-0.1687 * R - 0.3313 * G + 0.5 * B + 128));
int Cr = CLAMP_0_255((int) (0.5 * R - 0.4187 * G - 0.0813 * B + 128));
pYUV420Buffer[j*nWidthToRead+i] = (GByte) Y;
pYUV420Buffer[nHeightToRead * nWidthToRead + ((j/2) * ((nWidthToRead)/2) + i/2) ] = (GByte) Cb;
pYUV420Buffer[5 * nHeightToRead * nWidthToRead / 4 + ((j/2) * ((nWidthToRead)/2) + i/2) ] = (GByte) Cr;
}
}
if (!opj_write_tile(pCodec,
iTile,
pYUV420Buffer,
3 * nWidthToRead * nHeightToRead / 2,
pStream))
{
CPLError(CE_Failure, CPLE_AppDefined,
"opj_write_tile() failed");
eErr = CE_Failure;
}
}
else
{
if (!opj_write_tile(pCodec,
iTile,
pTempBuffer,
nWidthToRead * nHeightToRead * nBands * nDataTypeSize,
pStream))
{
CPLError(CE_Failure, CPLE_AppDefined,
"opj_write_tile() failed");
eErr = CE_Failure;
}
}
}
if( !pfnProgress( (iTile + 1) * 1.0 / (nTilesX * nTilesY), NULL, pProgressData ) )
eErr = CE_Failure;
iTile ++;
}
}
VSIFree(pTempBuffer);
VSIFree(pYUV420Buffer);
if (eErr != CE_None)
{
opj_stream_destroy(pStream);
opj_image_destroy(psImage);
opj_destroy_codec(pCodec);
VSIFCloseL(fp);
return NULL;
}
if (!opj_end_compress(pCodec,pStream))
{
CPLError(CE_Failure, CPLE_AppDefined,
"opj_end_compress() failed");
opj_stream_destroy(pStream);
opj_image_destroy(psImage);
opj_destroy_codec(pCodec);
VSIFCloseL(fp);
return NULL;
}
opj_stream_destroy(pStream);
opj_image_destroy(psImage);
opj_destroy_codec(pCodec);
/* Move the jp2c box header at its real position */
/* and restore the res, GMLJP2 or GeoJP2 box header that */
/* has been overwritten */
if( bWriteExtraBoxes )
{
GByte abyJP2CHeader[8];
VSIFSeekL(fp, nPosOriginalJP2C, SEEK_SET);
VSIFReadL(abyJP2CHeader, 1, 8, fp);
VSIFSeekL(fp, nPosOriginalJP2C, SEEK_SET);
VSIFWriteL(abyBackupWhatShouldHaveBeenTheJP2CBoxHeader, 1, 8, fp);
VSIFSeekL(fp, nPosRealJP2C, SEEK_SET);
VSIFWriteL(abyJP2CHeader, 1, 8, fp);
}
VSIFCloseL(fp);
/* -------------------------------------------------------------------- */
/* Re-open dataset, and copy any auxilary pam information. */
/* -------------------------------------------------------------------- */
GDALOpenInfo oOpenInfo(pszFilename, GA_ReadOnly);
JP2OpenJPEGDataset *poDS = (JP2OpenJPEGDataset*) JP2OpenJPEGDataset::Open(&oOpenInfo);
if( poDS )
poDS->CloneInfo( poSrcDS, GCIF_PAM_DEFAULT );
return poDS;
}
/************************************************************************/
/* GDALRegister_JP2OpenJPEG() */
/************************************************************************/
void GDALRegister_JP2OpenJPEG()
{
GDALDriver *poDriver;
if (! GDAL_CHECK_VERSION("JP2OpenJPEG driver"))
return;
if( GDALGetDriverByName( "JP2OpenJPEG" ) == NULL )
{
poDriver = new GDALDriver();
poDriver->SetDescription( "JP2OpenJPEG" );
poDriver->SetMetadataItem( GDAL_DMD_LONGNAME,
"JPEG-2000 driver based on OpenJPEG library" );
poDriver->SetMetadataItem( GDAL_DMD_HELPTOPIC,
"frmt_jp2openjpeg.html" );
poDriver->SetMetadataItem( GDAL_DMD_MIMETYPE, "image/jp2" );
poDriver->SetMetadataItem( GDAL_DMD_EXTENSION, "jp2" );
poDriver->SetMetadataItem( GDAL_DMD_CREATIONDATATYPES,
"Byte Int16 UInt16 Int32 UInt32" );
poDriver->SetMetadataItem( GDAL_DMD_CREATIONOPTIONLIST,
"<CreationOptionList>"
" <Option name='CODEC' type='string-select' default='according to file extension. If unknown, default to J2K'>"
" <Value>JP2</Value>"
" <Value>J2K</Value>"
" </Option>"
" <Option name='GeoJP2' type='boolean' description='defaults to ON'/>"
" <Option name='GMLJP2' type='boolean' description='defaults to ON'/>"
" <Option name='QUALITY' type='float' description='Quality. 0-100' default='25'/>"
" <Option name='REVERSIBLE' type='boolean' description='True if the compression is reversible' default='false'/>"
" <Option name='RESOLUTIONS' type='int' description='Number of resolutions. 1-7' default='6'/>"
" <Option name='BLOCKXSIZE' type='int' description='Tile Width' default='1024'/>"
" <Option name='BLOCKYSIZE' type='int' description='Tile Height' default='1024'/>"
" <Option name='PROGRESSION' type='string-select' default='LRCP'>"
" <Value>LRCP</Value>"
" <Value>RLCP</Value>"
" <Value>RPCL</Value>"
" <Value>PCRL</Value>"
" <Value>CPRL</Value>"
" </Option>"
" <Option name='SOP' type='boolean' description='True to insert SOP markers' default='false'/>"
" <Option name='EPH' type='boolean' description='True to insert EPH markers' default='false'/>"
" <Option name='YCBCR420' type='boolean' description='if RGB must be resampled to YCbCr 4:2:0' default='false'/>"
"</CreationOptionList>" );
poDriver->SetMetadataItem( GDAL_DCAP_VIRTUALIO, "YES" );
poDriver->pfnIdentify = JP2OpenJPEGDataset::Identify;
poDriver->pfnOpen = JP2OpenJPEGDataset::Open;
poDriver->pfnCreateCopy = JP2OpenJPEGDataset::CreateCopy;
GetGDALDriverManager()->RegisterDriver( poDriver );
}
}
| [
"even.rouault@mines-paris.org"
] | even.rouault@mines-paris.org |
62295bbebe698efe93284ceb1ff7cebfad155709 | e6e69e8d6794f409398af2cefed7092fed4691ca | /计算机与软件学院/面向对象程序设计(荣誉)/大作业1/素材1/2018192040_1119_2.cpp | c359255a456e687001b8706e5899992d99e44f74 | [] | no_license | LKHUUU/SZU_Learning_Resource | 1faca5fcaf0431adb64da031dde4fe47abcdc6ba | 88f121f275a57fc48f395bb73377e6f6e22d7529 | refs/heads/main | 2023-08-30T06:31:24.414351 | 2021-10-22T13:53:40 | 2021-10-22T13:53:40 | null | 0 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 1,535 | cpp | 2018192040:Problem1119:ÕýÈ·
#include<iostream>
#include<string>
#include<iomanip>
using namespace std;
class BaseAccount{
protected:
string name;
string account;
int balance;
public:
BaseAccount(){
};
BaseAccount(string n,string a,int b):name(n),account(a),balance(b){
};
virtual void display(){
cout<<name<<" "<<account<<" Balance:"<<balance<<endl;
}
void deposit(int num){
balance += num;
}
virtual void withdraw(int num){
if(balance < num)
cout<<"insufficient"<<endl;
else
balance -= num;
}
};
class BasePlus:public BaseAccount{
int limit;
int limit_sum;
public:
BasePlus():limit(5000),limit_sum(0){
};
BasePlus(string n,string a,int b):limit(5000),BaseAccount(n,a,b){
};
void display(){
cout<<name<<" "<<account<<" Balance:"<<balance<<" limit:"<<limit<<endl;
}
void withdraw(int num){
if(balance + limit < num)
cout<<"insufficient"<<endl;
else if(balance < num){
int N = num - balance;
balance = 0;
limit -= N;
}
else{
balance -= num;
}
}
};
int main(){
int n;
cin>>n;
while(n--){
string name,account;
int balance;
cin>>name>>account>>balance;
if(!account.find("BA")){
BaseAccount ba(name,account,balance);
int n1,n2,n3,n4;
cin>>n1>>n2>>n3>>n4;
ba.deposit(n1);
ba.withdraw(n2);
ba.deposit(n3);
ba.withdraw(n4);
ba.display();
}
else{
BasePlus bp(name,account,balance);
int n1,n2,n3,n4;
cin>>n1>>n2>>n3>>n4;
bp.deposit(n1);
bp.withdraw(n2);
bp.deposit(n3);
bp.withdraw(n4);
bp.display();
}
}
}
| [
"939826879@qq.com"
] | 939826879@qq.com |
5b1a1b6b779f34b74bec03c562371150ea1ad384 | 0aac35ce7305e7f286ccb8749b51a8a8c018ac9c | /src/glwidget277.h | fba8f7a33c36a15b9061e5a30443595aff9fc4aa | [] | no_license | tabathah/Half-Edge-Mesh-Application | e2ab1fcfe5b1fa65b6429b25bd9964d253f5f7ed | 493a4860dbbc964df3bd2e571756ef74142fb99b | refs/heads/master | 2021-05-11T07:54:37.687086 | 2018-01-18T23:59:54 | 2018-01-18T23:59:54 | 118,034,288 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 694 | h | #ifndef GLWIDGET277_H
#define GLWIDGET277_H
#include <QOpenGLWidget>
#include <QOpenGLFunctions_3_2_Core>
#include <QTimer>
class GLWidget277
: public QOpenGLWidget,
public QOpenGLFunctions_3_2_Core
{
Q_OBJECT
protected:
/*** AUTOMATIC TESTING: DO NOT MODIFY ***/
/*** If true, save a test image and exit */
/***/ bool autotesting;
public:
GLWidget277(QWidget *parent);
~GLWidget277();
void debugContextVersion();
void printGLErrorLog();
void printLinkInfoLog(int prog);
void printShaderInfoLog(int shader);
private slots:
/*** AUTOMATIC TESTING: DO NOT MODIFY ***/
/***/ void saveImageAndQuit();
};
#endif // GLWIDGET277_H
| [
"tabathah@seas.upenn.edu"
] | tabathah@seas.upenn.edu |
156c0498f18db10e0d0f77befa7f91aca58646cc | 0abbb72306f0bc8bd43fe5a4e5bddc9fea0d7f69 | /simplect3D/si3_Billboard.h | 8171c2c4a7de86bd6451b796e60de4a34147f7de | [] | no_license | yuni-net/simplect3D | 0295b230ce502cc14b43e644a1af301a9f5e0261 | 63c953b3732de770ddc8d16a85b29b8d17ca4006 | refs/heads/master | 2020-12-24T05:46:37.789611 | 2015-09-09T09:14:47 | 2015-09-09T09:14:47 | 38,192,492 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 422 | h | #pragma once
#include "si3_popular.h"
#include "si3_DisplayObject.h"
#include "si3_Leaf.h"
//#include <si3_AnimeData.h>
namespace si3
{
class Manager;
class AnimeData;
class Billboard :public Leaf
{
public:
Billboard();
Billboard(const TCHAR * path);
Billboard(const std::string & path);
Billboard(const ::si3::ImageData & imaged);
private:
// @Override
void compute_world_mat() const;
};
} | [
"yuni.net.liberty@gmail.com"
] | yuni.net.liberty@gmail.com |
d270ea4fb7f08b9fb922f0776e2a9e8add4f45fe | 4416d4c599f175b68f54e0ee2aca97b18639567f | /DXBase/DXBase/sources/Actor/BackGraundManager/BackGraundManager.h | e21883a8a57542a6dee56235ce3ec3c8f344c145 | [] | no_license | kentatakiguchi/GameCompetition2016_2 | 292fa9ab574e581406ff146cc98b15efc0d66446 | df1eb6bf29aba263f46b850d268f49ef417a134b | refs/heads/master | 2021-01-11T18:21:34.377644 | 2017-03-03T08:25:39 | 2017-03-03T08:25:39 | 69,625,978 | 0 | 0 | null | null | null | null | SHIFT_JIS | C++ | false | false | 3,593 | h | #pragma once
#include "../../ResourceLoader/ResourceLoader.h"
#include <list>
#include <vector>
#include "../../Math/Vector2.h"
#include "../../World/IWorld.h"
#include "../../Field/MovelessFloor.h"
#include "../../Scene/StageClear/SceneChangeBossAnm.h"
class TestPlayer;
class Player;
struct IndexPos
{
int index;
Vector2 position;
};
struct KonohaState {
Vector2 position = Vector2::Zero;
Vector2 lerpPosition = Vector2::Zero;
Vector2 velo = Vector2::Zero;
int index;
float lerpTimer = 0.0f;
};
struct BackGraundState
{
//テクスチャid
int id = 0;
//Actorの前に表示するか
bool frontGraundFlag=false;
//テクスチャサイズ
Vector2 size = Vector2::Zero;
//2つ画像を張るための座標
std::list<IndexPos> indexPos;
//画像のスケール
Vector2 scale = Vector2(1, 1);
//レイヤー
int layer;
//stage2か
bool stage2;
};
class BackGraundManager
{
public:
BackGraundManager(IWorld* world);
BackGraundManager();
~BackGraundManager();
//背景を設定する(ロードしたテクスチャ限定)
void SetBackGraund(TextureID id1, TextureID id2, float heightY = 0.0f, bool frontGraund = false, bool stage2 = false,const Vector2& scale=Vector2(1,1));
//縦の背景を設定する(ロードしたテクスチャ限定)
void SetTateBackGraund(TextureID id1, TextureID id2, const Vector2& scale=Vector2(1.0f,1.0f));
//縦の横の背景を設定する(ロードしたテクスチャ限定)
void SetTateYokoBackGraund(TextureID id1);
//背景(空)を設定する(ロードしたテクスチャ限定)
void SetUpBackGraund(TextureID id, int layer,bool flag=false);
//地面を設定する(ロードしたテクスチャ限定)
void SetDownBackGraund(TextureID id);
//背景を全部消す
void AllDeleteBackGraund();
//横用スクロールUpdate
void Update(float deltatime, bool title = false);
//縦用スクロールUpdate
void TateUpdate(float deltaTime);
void Draw(bool title=false) const;
void BackDraw()const;
//バネ
void Spring(Vector2& pos, Vector2& resPos, Vector2& velo, float stiffness = 0.05f, float friction = 0.5f, float mass = 2.0f);
public:
//この葉の初期設定
void AddKonoha(const TextureID& id);
//ボスを出現される場合はtrue
void BossFlag(bool flag=false);
private:
void konohaUpdate();
//ボスのUpdate
void BossUpdate();
private:
//ワールド
IWorld* mWorld;
//ブロック
Player* mFloor;
//地上が表示されているか?
bool stageFlag;
//地上の背景
std::list<BackGraundState> backStates;
//空の背景
std::list<BackGraundState> upBackStates;
//地面の背景
BackGraundState downBackStates;
//縦スクロールの横の背景
BackGraundState tateYokoState;
//このはのID
std::vector<TextureID> konohaIds;
//このはステート
std::list<KonohaState>konohaStates;
//このはタイマー
float konohaTimer;
//このはランダムタイム
float konohaRandTime;
//背景のボスのアニメーション
SceneChangeBossAnm anim;
//ボスの子分アニメーション
SceneChangeBossAnm childanim;
//ボス出現時間
float bossTimer;
//ボス出現周期カウント
float bossCount;
//ボスポジション
Vector2 bossPos;
//ボスが出現するかどうか
bool bossFlag;
//ボスの子分ポジション
std::vector<Vector2> mBossChilds;
//子分が出現するかフラグ
int mChildFlag;
//子分がいたときボスが振り向く時間
float bossTurn;
//子分がいたときにボスが振り向いている時間
float bossTurnTime;
float bossTurnCount;
bool bossTurnFlag;
}; | [
"ktok223@gmail.com"
] | ktok223@gmail.com |
b7f84cb45fbd46e08aab70315684b636d67b4ac0 | ae9ffe2cf2ed611de03a54df50efbb66efa0f3c5 | /cocos/editor-support/spine/AttachmentVertices.h | 40104ef545a0989987634b20b25cbd9f4cf82f85 | [
"MIT"
] | permissive | jinsuoliu/cocos2d-bgfx | 3d02cdf31493ee6c43ab5f0e1ccf16303138b816 | 8d4a5cfd525e94b941f333170f747222745713b9 | refs/heads/master | 2020-06-26T20:03:34.338951 | 2019-05-16T08:28:03 | 2019-05-16T08:28:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,249 | h | /******************************************************************************
* Spine Runtimes Software License v2.5
*
* Copyright (c) 2013-2016, Esoteric Software
* All rights reserved.
*
* You are granted a perpetual, non-exclusive, non-sublicensable, and
* non-transferable license to use, install, execute, and perform the Spine
* Runtimes software and derivative works solely for personal or internal
* use. Without the written permission of Esoteric Software (see Section 2 of
* the Spine Software License Agreement), you may not (a) modify, translate,
* adapt, or develop new applications using the Spine Runtimes or otherwise
* create derivative works or improvements of the Spine Runtimes or (b) remove,
* delete, alter, or obscure any trademarks or any copyright, trademark, patent,
* or other intellectual property or proprietary rights notices on or in the
* Software, including any copy thereof. Redistributions in binary or source
* form must include this license and terms.
*
* THIS SOFTWARE IS PROVIDED BY ESOTERIC SOFTWARE "AS IS" AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
* EVENT SHALL ESOTERIC SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, BUSINESS INTERRUPTION, OR LOSS OF
* USE, DATA, OR PROFITS) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
* IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*****************************************************************************/
#ifndef SPINE_ATTACHMENTVERTICES_H_
#define SPINE_ATTACHMENTVERTICES_H_
#include "cocos2d.h"
namespace spine {
class AttachmentVertices {
public:
AttachmentVertices (cocos2d::Texture2D* texture, int verticesCount, unsigned short* triangles, int trianglesCount);
virtual ~AttachmentVertices ();
cocos2d::Texture2D* _texture;
cocos2d::Triangles* _triangles;
};
}
#endif /* SPINE_ATTACHMENTVERTICES_H_ */
| [
"xuruoji@hotmail.com"
] | xuruoji@hotmail.com |
583f617b097ca2e387431991d3dce42642dd8d55 | a6cee0a2e956fcf63f19f359675f5cb0552cdb5a | /garminfitsdk/fit_accumulator.hpp | 586e54769659e3b2687709e038364127d29432e3 | [] | no_license | KatzSanya/MRC_creator | fc45d0a81d11fb5082b5ef8b84e6bb4c236052b9 | 42128c78fba177cd20b3a948918c0451b0154367 | refs/heads/master | 2023-05-31T23:00:03.848531 | 2021-06-22T01:45:30 | 2021-06-22T01:45:30 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,456 | hpp | ////////////////////////////////////////////////////////////////////////////////
// The following FIT Protocol software provided may be used with FIT protocol
// devices only and remains the copyrighted property of Garmin Canada Inc.
// The software is being provided on an "as-is" basis and as an accommodation,
// and therefore all warranties, representations, or guarantees of any kind
// (whether express, implied or statutory) including, without limitation,
// warranties of merchantability, non-infringement, or fitness for a particular
// purpose, are specifically disclaimed.
//
// Copyright 2021 Garmin Canada Inc.
////////////////////////////////////////////////////////////////////////////////
// ****WARNING**** This file is auto-generated! Do NOT edit this file.
// Profile Version = 21.54Release
// Tag = production/akw/21.54.01-0-g081c465c
////////////////////////////////////////////////////////////////////////////////
#if !defined(FIT_ACCUMULATOR_HPP)
#define FIT_ACCUMULATOR_HPP
#include <vector>
#include "fit_accumulated_field.hpp"
namespace fit
{
class Accumulator
{
public:
FIT_UINT32 Accumulate(const FIT_UINT16 mesgNum, const FIT_UINT8 destFieldNum, const FIT_UINT32 value, const FIT_UINT8 bits);
void Set(const FIT_UINT16 mesgNum, const FIT_UINT8 destFieldNum, const FIT_UINT32 value );
private:
std::vector<AccumulatedField> fields;
};
} // namespace fit
#endif // defined(FIT_ACCUMULATOR_HPP)
| [
"helder.giro.lopes@gmail.com"
] | helder.giro.lopes@gmail.com |
743506ec18398643c37ca1ad3485c4e7aeb9e53b | 4039f072fe334d0d532592986e0f5dd1bf49dc82 | /utils/misc.cc | 37015e1b7dbeeff92657ab7cef94297a3547eb8f | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | lpfvip/tube | ba853db5a19dc85101ab572879286d078eedf136 | 5bb1fd186b8de526ebc2979233df2b0363b0788d | refs/heads/master | 2021-01-17T22:02:40.828476 | 2011-06-19T05:13:15 | 2011-06-19T05:13:15 | 2,472,828 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,262 | cc | #include "pch.h"
#include <sys/time.h>
#include <sys/resource.h>
#include <sys/syscall.h>
#include <sys/types.h>
#include "utils/misc.h"
#include "utils/exception.h"
namespace tube {
namespace utils {
void
set_socket_blocking(int fd, bool block)
{
int flags = -1, origflags = -1;
origflags = flags = fcntl(fd, F_GETFL, 0);
if (flags < 0)
throw SyscallException();
if (block) {
flags &= ~O_NONBLOCK;
} else {
flags |= O_NONBLOCK;
}
if (origflags != flags && fcntl(fd, F_SETFL, flags) < 0)
throw SyscallException();
}
void
set_fdtable_size(size_t size)
{
struct rlimit lmt;
lmt.rlim_cur = size;
lmt.rlim_max = size;
setrlimit(RLIMIT_NOFILE, &lmt);
}
bool
ignore_compare(const std::string& p, const std::string& q)
{
if (p.length() != q.length())
return false;
for (size_t i = 0; i < p.length(); i++) {
if (p[i] != q[i] && abs(p[i] - q[i]) != 'a' - 'A')
return false;
}
return true;
}
bool
parse_bool(const std::string& str)
{
if (ignore_compare(str, "on") || ignore_compare(str, "true")) {
return true;
} else {
return false;
}
}
int
parse_int(const std::string& str)
{
return atoi(str.c_str());
}
}
}
| [
"mikeandmore@gmail.com"
] | mikeandmore@gmail.com |
6a24c09f1c9e26cb4d05cc83ff7deaa56bae15ee | 7f8b5850d5ff2c8cf3f47aec67eb67ae9ea4d553 | /src/modules/XBee/XBee.cpp | 87a93a8d0fa4e30da67611e6127e67c505702ae8 | [
"MIT"
] | permissive | BarryPSmith/RadioLib | 1eb51f4253ba41c1744cf5d7c023138c9280f605 | 4032aac9443a6b59437ab47cd5266f3971d1f991 | refs/heads/master | 2022-01-25T12:57:14.651572 | 2019-12-02T05:03:55 | 2019-12-02T05:03:55 | 220,471,305 | 0 | 0 | MIT | 2019-11-12T21:05:33 | 2019-11-08T13:21:27 | C++ | UTF-8 | C++ | false | false | 12,336 | cpp | #include "XBee.h"
XBee::XBee(Module* mod) {
_mod = mod;
_frameID = 0x01;
_frameLength = 0;
_frameHeaderProcessed = false;
}
int16_t XBee::begin(long speed) {
// set module properties
_mod->baudrate = speed;
_mod->init(RADIOLIB_USE_UART, RADIOLIB_INT_1);
// reset module
reset();
// empty UART buffer (garbage data)
_mod->ATemptyBuffer();
// try to find the XBee
bool flagFound = false;
uint8_t i = 0;
while((i < 10) && !flagFound) {
// hardware reset should return 2 modem status frames - 1st status 0x00, second status 0x06
int16_t state = readApiFrame(0x00, 1, 2000);
readApiFrame(0x00, 1, 2000);
if(state == ERR_NONE) {
flagFound = true;
} else {
RADIOLIB_DEBUG_PRINT(F("XBee not found! ("));
RADIOLIB_DEBUG_PRINT(i + 1);
RADIOLIB_DEBUG_PRINT(F(" of 10 tries) STATE == "));
RADIOLIB_DEBUG_PRINTLN(state);
RADIOLIB_DEBUG_PRINTLN(F("Resetting ..."));
reset();
delay(1000);
_mod->ATemptyBuffer();
i++;
}
}
if(!flagFound) {
RADIOLIB_DEBUG_PRINTLN(F("No XBee found!"));
return(ERR_CMD_MODE_FAILED);
} else {
RADIOLIB_DEBUG_PRINTLN(F("Found XBee!"));
}
return(ERR_NONE);
}
void XBee::reset() {
pinMode(_mod->getInt1(), OUTPUT);
digitalWrite(_mod->getInt1(), LOW);
delayMicroseconds(200);
digitalWrite(_mod->getInt1(), HIGH);
pinMode(_mod->getInt1(), INPUT);
}
int16_t XBee::transmit(uint8_t* dest, const char* payload, uint8_t radius) {
uint8_t destNetwork[] = {0xFF, 0xFE};
return(transmit(dest, destNetwork, payload, radius));
}
int16_t XBee::transmit(uint8_t* dest, uint8_t* destNetwork, const char* payload, uint8_t radius) {
// build the frame
size_t payloadLen = strlen(payload);
size_t dataLen = 8 + 2 + 1 + 1 + payloadLen;
#ifdef RADIOLIB_STATIC_ONLY
uint8_t cmd[RADIOLIB_STATIC_ARRAY_SIZE];
#else
uint8_t* cmd = new uint8_t[dataLen];
#endif
memcpy(cmd, dest, 8);
memcpy(cmd + 8, destNetwork, 2);
cmd[10] = radius;
cmd[11] = 0x01; // options: no retries
memcpy(cmd + 12, payload, payloadLen);
// send frame
uint8_t frameID = _frameID++;
sendApiFrame(XBEE_API_FRAME_ZIGBEE_TRANSMIT_REQUEST, frameID, cmd, dataLen);
#ifndef RADIOLIB_STATIC_ONLY
delete[] cmd;
#endif
// get response code
return(readApiFrame(frameID, 5));
}
size_t XBee::available() {
// check if there are data available in the buffer
size_t serialBytes = _mod->ModuleSerial->available();
if(serialBytes < 3) {
return(0);
}
uint8_t header[3];
if(!_frameHeaderProcessed) {
// read frame header
for(uint8_t i = 0; i < 3; i++) {
header[i] = _mod->ModuleSerial->read();
}
// check if we received API frame
if(header[0] != XBEE_API_START) {
return(0);
}
// get expected frame length
_frameLength = ((header[1] << 8) | header[2]) + 1;
_frameHeaderProcessed = true;
}
// check if the header is complete
if(serialBytes < _frameLength) {
return(0);
}
#ifdef RADIOLIB_STATIC_ONLY
char frame[RADIOLIB_STATIC_ARRAY_SIZE];
#else
uint8_t* frame = new uint8_t[_frameLength];
#endif
for(size_t i = 0; i < _frameLength; i++) {
frame[i] = _mod->ModuleSerial->read();
}
// save packet source and data
size_t payloadLength = _frameLength - 12;
#ifndef RADIOLIB_STATIC_ONLY
delete[] _packetData;
_packetData = new char[payloadLength];
#endif
memcpy(_packetData, frame + 12, payloadLength - 1);
_packetData[payloadLength - 1] = '\0';
memcpy(_packetSource, frame + 1, 8);
#ifndef RADIOLIB_STATIC_ONLY
delete[] frame;
#endif
_frameLength = 0;
_frameHeaderProcessed = false;
// return number of bytes in payload
return(payloadLength);
}
String XBee::getPacketSource() {
char buff[17];
sprintf(buff, "%02X%02X%02X%02X%02X%02X%02X%02X", _packetSource[0], _packetSource[1], _packetSource[2], _packetSource[3],
_packetSource[4], _packetSource[5], _packetSource[6], _packetSource[7]);
String str(buff);
return(str);
}
String XBee::getPacketData() {
String str(_packetData);
return(str);
}
int16_t XBee::setPanId(uint8_t* panId) {
// build AT command
uint8_t cmd[10];
memcpy(cmd, "ID", 2);
memcpy(cmd + 2, panId, 8);
// send frame
uint8_t frameID = _frameID++;
sendApiFrame(XBEE_API_FRAME_AT_COMMAND_QUEUE, frameID, cmd, 10);
// get response code
int16_t state = readApiFrame(frameID, 4);
if(state != ERR_NONE) {
return(state);
}
// confirm changes
return(confirmChanges());
}
XBeeSerial::XBeeSerial(Module* mod) : ISerial(mod) {
}
int16_t XBeeSerial::begin(long speed) {
// set module properties
_mod->AtLineFeed = "\r";
_mod->baudrate = speed;
_mod->init(RADIOLIB_USE_UART, RADIOLIB_INT_NONE);
// empty UART buffer (garbage data)
_mod->ATemptyBuffer();
// enter command mode
RADIOLIB_DEBUG_PRINTLN(F("Entering command mode ..."));
if(!enterCmdMode()) {
return(ERR_CMD_MODE_FAILED);
}
// test AT setup
RADIOLIB_DEBUG_PRINTLN(F("Sending test command ..."));
if(!_mod->ATsendCommand("AT")) {
return(ERR_AT_FAILED);
}
// exit command mode
RADIOLIB_DEBUG_PRINTLN(F("Exiting command mode ..."));
if(!_mod->ATsendCommand("ATCN")) {
return(ERR_AT_FAILED);
}
return(ERR_NONE);
}
void XBeeSerial::reset() {
pinMode(_mod->getInt1(), OUTPUT);
digitalWrite(_mod->getInt1(), LOW);
delayMicroseconds(200);
digitalWrite(_mod->getInt1(), HIGH);
pinMode(_mod->getInt1(), INPUT);
}
int16_t XBeeSerial::setDestinationAddress(const char* destinationAddressHigh, const char* destinationAddressLow) {
// enter command mode
RADIOLIB_DEBUG_PRINTLN(F("Entering command mode ..."));
if(!enterCmdMode()) {
return(ERR_CMD_MODE_FAILED);
}
// set higher address bytes
RADIOLIB_DEBUG_PRINTLN(F("Setting address (high) ..."));
#ifdef RADIOLIB_STATIC_ONLY
char addressHigh[13];
#else
char* addressHigh = new char[strlen(destinationAddressHigh) + 4];
#endif
strcpy(addressHigh, "ATDH");
strcat(addressHigh, destinationAddressHigh);
bool res = _mod->ATsendCommand(addressHigh);
#ifndef RADIOLIB_STATIC_ONLY
delete[] addressHigh;
#endif
if(!res) {
return(ERR_AT_FAILED);
}
// set lower address bytes
RADIOLIB_DEBUG_PRINTLN(F("Setting address (low) ..."));
#ifdef RADIOLIB_STATIC_ONLY
char addressLow[13];
#else
char* addressLow = new char[strlen(destinationAddressLow) + 4];
#endif
strcpy(addressLow, "ATDL");
strcat(addressLow, destinationAddressLow);
res = _mod->ATsendCommand(addressLow);
#ifndef RADIOLIB_STATIC_ONLY
delete[] addressLow;
#endif
if(!res) {
return(ERR_AT_FAILED);
}
// exit command mode
RADIOLIB_DEBUG_PRINTLN(F("Exiting command mode ..."));
if(!_mod->ATsendCommand("ATCN")) {
return(ERR_AT_FAILED);
}
return(ERR_NONE);
}
int16_t XBeeSerial::setPanId(const char* panId) {
// enter command mode
RADIOLIB_DEBUG_PRINTLN(F("Entering command mode ..."));
if(!enterCmdMode()) {
return(ERR_CMD_MODE_FAILED);
}
// set PAN ID
RADIOLIB_DEBUG_PRINTLN(F("Setting PAN ID ..."));
#ifdef RADIOLIB_STATIC_ONLY
char cmd[21];
#else
char* cmd = new char[strlen(panId) + 4];
#endif
strcpy(cmd, "ATID");
strcat(cmd, panId);
bool res = _mod->ATsendCommand(cmd);
#ifndef RADIOLIB_STATIC_ONLY
delete[] cmd;
#endif
if(!res) {
return(ERR_AT_FAILED);
}
// exit command mode
RADIOLIB_DEBUG_PRINTLN(F("Exiting command mode ..."));
if(!_mod->ATsendCommand("ATCN")) {
return(ERR_AT_FAILED);
}
return(ERR_NONE);
}
bool XBeeSerial::enterCmdMode() {
for(uint8_t i = 0; i < 10; i++) {
delay(1000);
_mod->ModuleSerial->write('+');
_mod->ModuleSerial->write('+');
_mod->ModuleSerial->write('+');
delay(1000);
if(_mod->ATgetResponse()) {
return(true);
} else {
RADIOLIB_DEBUG_PRINT(F("Unable to enter command mode! ("));
RADIOLIB_DEBUG_PRINT(i + 1);
RADIOLIB_DEBUG_PRINTLN(F(" of 10 tries)"));
reset();
_mod->ATsendCommand("ATCN");
}
}
RADIOLIB_DEBUG_PRINTLN(F("Terminated, check your wiring. Is AT FW uploaded?"));
return(false);
}
int16_t XBee::confirmChanges() {
// save changes to non-volatile memory
uint8_t frameID = _frameID++;
sendApiFrame(XBEE_API_FRAME_AT_COMMAND_QUEUE, frameID, "WR");
// get response code
int16_t state = readApiFrame(frameID, 4);
if(state != ERR_NONE) {
return(state);
}
// apply changes
frameID = _frameID++;
sendApiFrame(XBEE_API_FRAME_AT_COMMAND_QUEUE, frameID, "AC");
// get response code
state = readApiFrame(frameID, 4);
if(state != ERR_NONE) {
return(state);
}
return(state);
}
void XBee::sendApiFrame(uint8_t type, uint8_t id, const char* data) {
sendApiFrame(type, id, (uint8_t*)data, strlen(data));
}
void XBee::sendApiFrame(uint8_t type, uint8_t id, uint8_t* data, uint16_t length) {
// build the API frame
size_t frameLength = 1 + 2 + length + 1 + 2;
#ifdef RADIOLIB_STATIC_ONLY
uint8_t frame[RADIOLIB_STATIC_ARRAY_SIZE];
#else
uint8_t* frame = new uint8_t[frameLength];
#endif
frame[0] = 0x7E; // start delimiter
frame[1] = ((length + 2) & 0xFF00) >> 8; // length MSB
frame[2] = (length + 2) & 0x00FF; // length LSB
frame[3] = type; // frame type
frame[4] = id; // frame ID
memcpy(frame + 5, data, length); // data
// calculate the checksum
uint8_t checksum = 0;
for(uint16_t i = 3; i < frameLength - 1; i++) {
checksum += frame[i];
}
frame[5 + length] = 0xFF - checksum;
// send the frame
for(uint16_t i = 0; i < frameLength; i++) {
_mod->ModuleSerial->write(frame[i]);
}
// deallocate memory
#ifndef RADIOLIB_STATIC_ONLY
delete[] frame;
#endif
}
int16_t XBee::readApiFrame(uint8_t frameID, uint8_t codePos, uint16_t timeout) {
// TODO: modemStatus frames may be sent at any time, interfering with frame parsing. Add check to make sure this does not happen.
// get number of bytes in response (must be enough to read the length field
uint16_t numBytes = getNumBytes(timeout/2, 3);
if(numBytes == 0) {
return(ERR_FRAME_NO_RESPONSE);
}
// checksum byte is not included in length field
numBytes++;
// wait until all response bytes are available (5s timeout)
uint32_t start = millis();
while(_mod->ModuleSerial->available() < (int16_t)numBytes) {
if(millis() - start >= timeout/2) {
return(ERR_FRAME_MALFORMED);
}
}
RADIOLIB_DEBUG_PRINT(F("frame data field length: "));
RADIOLIB_DEBUG_PRINTLN(numBytes);
// read the response
#ifdef RADIOLIB_STATIC_ONLY
uint8_t resp[RADIOLIB_STATIC_ARRAY_SIZE];
#else
uint8_t* resp = new uint8_t[numBytes];
#endif
for(uint16_t i = 0; i < numBytes; i++) {
resp[i] = _mod->ModuleSerial->read();
}
// verify checksum
uint8_t checksum = 0;
for(uint16_t i = 0; i < numBytes; i++) {
RADIOLIB_DEBUG_PRINT(resp[i], HEX);
RADIOLIB_DEBUG_PRINT('\t');
checksum += resp[i];
}
RADIOLIB_DEBUG_PRINTLN();
if(checksum != 0xFF) {
RADIOLIB_DEBUG_PRINTLN(checksum, HEX);
return(ERR_FRAME_INCORRECT_CHECKSUM);
}
// check frame ID
if(resp[1] != frameID) {
RADIOLIB_DEBUG_PRINT(F("received frame ID: "));
RADIOLIB_DEBUG_PRINTLN(resp[1]);
RADIOLIB_DEBUG_PRINT(F("expected frame ID: "));
RADIOLIB_DEBUG_PRINTLN(frameID);
return(ERR_FRAME_UNEXPECTED_ID);
}
// codePos does not include start delimiter and frame ID
uint8_t code = resp[codePos];
#ifndef RADIOLIB_STATIC_ONLY
delete[] resp;
#endif
return(code);
}
uint16_t XBee::getNumBytes(uint32_t timeout, size_t minBytes) {
// wait for available data
uint32_t start = millis();
while((size_t)_mod->ModuleSerial->available() < minBytes) {
if(millis() - start >= timeout) {
return(0);
}
}
// read response
uint8_t resp[3];
uint8_t i = 0;
RADIOLIB_DEBUG_PRINT(F("reading frame length: "));
while(_mod->ModuleSerial->available() > 0) {
uint8_t b = _mod->ModuleSerial->read();
RADIOLIB_DEBUG_PRINT(b, HEX);
RADIOLIB_DEBUG_PRINT('\t');
resp[i++] = b;
if(i == 3) {
break;
}
}
RADIOLIB_DEBUG_PRINTLN();
return((resp[1] << 8) | resp[2]);
}
| [
"jgromes@users.noreply.github.com"
] | jgromes@users.noreply.github.com |
89f843f6c8c8a179583258a992d2d555dd934f97 | 36b9decf14d266d6babaf1c44085c2ba869c03ce | /Remnant-main/Remnant/SDK/TimeManagement_parameters.h | 9c07f96d561f1e83eb6650b6cfa44708b8377bf9 | [] | no_license | RoryGlenn/RemnantLootSwitcher | 6e309a7b2b7bac88a166b552b640c830b863eb2d | 85c4cb6839b7c0f60cf8143c571d64ca12439a63 | refs/heads/master | 2022-12-29T08:47:15.713546 | 2020-10-23T22:01:45 | 2020-10-23T22:01:45 | 305,910,400 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,594 | h | #pragma once
// Name: Remnant, Version: 6
#include "../SDK.h"
#ifdef _MSC_VER
#pragma pack(push, 0x01)
#endif
/*!!HELPER_DEF!!*/
/*!!DEFINE!!*/
namespace UFT
{
//---------------------------------------------------------------------------
// Parameters
//---------------------------------------------------------------------------
// Function TimeManagement.TimeManagementBlueprintLibrary.TransformTime
struct UTimeManagementBlueprintLibrary_TransformTime_Params
{
struct FFrameTime SourceTime; // (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
struct FFrameRate SourceRate; // (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
struct FFrameRate DestinationRate; // (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
struct FFrameTime ReturnValue; // (Parm, OutParm, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
};
// Function TimeManagement.TimeManagementBlueprintLibrary.Subtract_FrameNumberInteger
struct UTimeManagementBlueprintLibrary_Subtract_FrameNumberInteger_Params
{
struct FFrameNumber A; // (Parm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
int B; // (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
struct FFrameNumber ReturnValue; // (Parm, OutParm, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
};
// Function TimeManagement.TimeManagementBlueprintLibrary.Subtract_FrameNumberFrameNumber
struct UTimeManagementBlueprintLibrary_Subtract_FrameNumberFrameNumber_Params
{
struct FFrameNumber A; // (Parm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
struct FFrameNumber B; // (Parm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
struct FFrameNumber ReturnValue; // (Parm, OutParm, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
};
// Function TimeManagement.TimeManagementBlueprintLibrary.SnapFrameTimeToRate
struct UTimeManagementBlueprintLibrary_SnapFrameTimeToRate_Params
{
struct FFrameTime SourceTime; // (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
struct FFrameRate SourceRate; // (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
struct FFrameRate SnapToRate; // (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
struct FFrameTime ReturnValue; // (Parm, OutParm, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
};
// Function TimeManagement.TimeManagementBlueprintLibrary.Multiply_SecondsFrameRate
struct UTimeManagementBlueprintLibrary_Multiply_SecondsFrameRate_Params
{
float TimeInSeconds; // (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
struct FFrameRate FrameRate; // (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
struct FFrameTime ReturnValue; // (Parm, OutParm, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
};
// Function TimeManagement.TimeManagementBlueprintLibrary.Multiply_FrameNumberInteger
struct UTimeManagementBlueprintLibrary_Multiply_FrameNumberInteger_Params
{
struct FFrameNumber A; // (Parm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
int B; // (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
struct FFrameNumber ReturnValue; // (Parm, OutParm, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
};
// Function TimeManagement.TimeManagementBlueprintLibrary.IsValid_MultipleOf
struct UTimeManagementBlueprintLibrary_IsValid_MultipleOf_Params
{
struct FFrameRate InFrameRate; // (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
struct FFrameRate OtherFramerate; // (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
bool ReturnValue; // (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
};
// Function TimeManagement.TimeManagementBlueprintLibrary.IsValid_Framerate
struct UTimeManagementBlueprintLibrary_IsValid_Framerate_Params
{
struct FFrameRate InFrameRate; // (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
bool ReturnValue; // (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
};
// Function TimeManagement.TimeManagementBlueprintLibrary.GetTimecode
struct UTimeManagementBlueprintLibrary_GetTimecode_Params
{
struct FTimecode ReturnValue; // (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
};
// Function TimeManagement.TimeManagementBlueprintLibrary.Divide_FrameNumberInteger
struct UTimeManagementBlueprintLibrary_Divide_FrameNumberInteger_Params
{
struct FFrameNumber A; // (Parm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
int B; // (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
struct FFrameNumber ReturnValue; // (Parm, OutParm, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
};
// Function TimeManagement.TimeManagementBlueprintLibrary.Conv_TimecodeToString
struct UTimeManagementBlueprintLibrary_Conv_TimecodeToString_Params
{
struct FTimecode InTimecode; // (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
bool bForceSignDisplay; // (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
struct FString ReturnValue; // (Parm, OutParm, ZeroConstructor, ReturnParm, HasGetValueTypeHash, NativeAccessSpecifierPublic)
};
// Function TimeManagement.TimeManagementBlueprintLibrary.Conv_QualifiedFrameTimeToSeconds
struct UTimeManagementBlueprintLibrary_Conv_QualifiedFrameTimeToSeconds_Params
{
struct FQualifiedFrameTime InFrameTime; // (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
float ReturnValue; // (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
};
// Function TimeManagement.TimeManagementBlueprintLibrary.Conv_FrameRateToSeconds
struct UTimeManagementBlueprintLibrary_Conv_FrameRateToSeconds_Params
{
struct FFrameRate InFrameRate; // (ConstParm, Parm, OutParm, ZeroConstructor, ReferenceParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
float ReturnValue; // (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
};
// Function TimeManagement.TimeManagementBlueprintLibrary.Conv_FrameNumberToInteger
struct UTimeManagementBlueprintLibrary_Conv_FrameNumberToInteger_Params
{
struct FFrameNumber InFrameNumber; // (ConstParm, Parm, OutParm, ReferenceParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
int ReturnValue; // (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
};
// Function TimeManagement.TimeManagementBlueprintLibrary.Add_FrameNumberInteger
struct UTimeManagementBlueprintLibrary_Add_FrameNumberInteger_Params
{
struct FFrameNumber A; // (Parm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
int B; // (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
struct FFrameNumber ReturnValue; // (Parm, OutParm, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
};
// Function TimeManagement.TimeManagementBlueprintLibrary.Add_FrameNumberFrameNumber
struct UTimeManagementBlueprintLibrary_Add_FrameNumberFrameNumber_Params
{
struct FFrameNumber A; // (Parm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
struct FFrameNumber B; // (Parm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
struct FFrameNumber ReturnValue; // (Parm, OutParm, ReturnParm, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
};
}
#ifdef _MSC_VER
#pragma pack(pop)
#endif
| [
"romglenn@ucsc.edu"
] | romglenn@ucsc.edu |
0bb5266db721d1b630b3ff6a55385b0f5ee799b6 | e99592f5f7a8c58c4619ca42d3ccb2292b49f332 | /week6_1.2/week6_1.2/MainFrm.cpp | 32fc7ab5f19682a6446b3db308a7f470cd9089ad | [] | no_license | tseebo/Vc | e19318b5c7daad2e0490edb08388a104f6663747 | 78e65b17d1443247dccde04e2e27839a0d16e175 | refs/heads/master | 2021-03-21T15:04:10.567853 | 2020-07-02T11:27:07 | 2020-07-02T11:27:07 | 247,305,884 | 1 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,770 | cpp |
// MainFrm.cpp : CMainFrame 类的实现
//
#include "stdafx.h"
#include "week6_1.2.h"
#include "MainFrm.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
// CMainFrame
IMPLEMENT_DYNCREATE(CMainFrame, CFrameWnd)
BEGIN_MESSAGE_MAP(CMainFrame, CFrameWnd)
ON_WM_CREATE()
END_MESSAGE_MAP()
static UINT indicators[] =
{
ID_SEPARATOR, // 状态行指示器
ID_INDICATOR_CAPS,
ID_INDICATOR_NUM,
ID_INDICATOR_SCRL,
};
// CMainFrame 构造/析构
CMainFrame::CMainFrame()
{
// TODO: 在此添加成员初始化代码
}
CMainFrame::~CMainFrame()
{
}
int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
if (CFrameWnd::OnCreate(lpCreateStruct) == -1)
return -1;
if (!m_wndToolBar.CreateEx(this, TBSTYLE_FLAT, WS_CHILD | WS_VISIBLE | CBRS_TOP | CBRS_GRIPPER | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC) ||
!m_wndToolBar.LoadToolBar(IDR_MAINFRAME))
{
TRACE0("未能创建工具栏\n");
return -1; // 未能创建
}
if (!m_wndStatusBar.Create(this))
{
TRACE0("未能创建状态栏\n");
return -1; // 未能创建
}
m_wndStatusBar.SetIndicators(indicators, sizeof(indicators)/sizeof(UINT));
// TODO: 如果不需要可停靠工具栏,则删除这三行
m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
EnableDocking(CBRS_ALIGN_ANY);
DockControlBar(&m_wndToolBar);
return 0;
}
BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
{
if( !CFrameWnd::PreCreateWindow(cs) )
return FALSE;
// TODO: 在此处通过修改
// CREATESTRUCT cs 来修改窗口类或样式
return TRUE;
}
// CMainFrame 诊断
#ifdef _DEBUG
void CMainFrame::AssertValid() const
{
CFrameWnd::AssertValid();
}
void CMainFrame::Dump(CDumpContext& dc) const
{
CFrameWnd::Dump(dc);
}
#endif //_DEBUG
// CMainFrame 消息处理程序
| [
"1305771558@qq.com"
] | 1305771558@qq.com |
0d13d6e6c2e6bacf9459dccbb35d8ab46d834859 | a651e289a71facfa65335cf4605a2859e44aed1d | /vri.hpp | 173aaa8d89598e9a95393cfece7b2603832a2bf0 | [] | no_license | GabrielManhaes/INF1608_Visualizacao_Volumetrica | a2d72544a16b411f150adfc1e9eb8079483a2307 | 0f8abd3a5c159d7ed91d3cd8c5e5ae8a374c6c6e | refs/heads/master | 2020-09-11T08:13:09.573413 | 2019-12-11T01:25:01 | 2019-12-11T01:25:01 | 222,001,391 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,028 | hpp | #ifndef __VRI_HPP
#define __VRI_HPP
using namespace __shedskin__;
namespace __vri__ {
extern str *const_0, *const_1, *const_2, *const_3, *const_4, *const_5, *const_6, *const_7;
typedef double (*lambda2)(double);
typedef double (*lambda1)(double);
typedef double (*lambda0)(double);
extern __ss_int i, i_raio, k, res;
extern str *__name__, *byte;
extern file *raw;
extern double res_1, res_2;
extern list<__ss_int> *dadosBinarios, *saidaPGM;
extern str * default_0;
void *pgmwrite(list<__ss_int> *_list, str *filename, __ss_int width, __ss_int height, __ss_int maxVal, str *magicNum);
__ss_int acesso(list<__ss_int> *vetor, __ss_int i, __ss_int j, __ss_int k);
tuple2<double, double> *simpson(lambda1 f, double a, double b);
double simpsonNaoAdaptativo(lambda0 f, __ss_int a, double b, double h);
double simpsonAdaptativo(lambda1 f, double a, double b, double tol);
double opacidade(double j);
double funcaoRenderizacaoVolumetrica(double t);
double funcaoRenderizacaoVolumetrica2(double t);
} // module namespace
#endif
| [
"mfvuori@gmail.com"
] | mfvuori@gmail.com |
8bc3b479f33c3b263e252b41db4f510969dc4fa1 | 4191088b6cb189965c8eb67c9589fa1b8e0376cf | /src/solver/conv_ocl_dir2D_bwdWrW_1x1.cpp | 69b09db5065b4724a542898159af69ba5c109e89 | [
"MIT"
] | permissive | marty1885/MIOpen | 2dc1fe8f9be288a85d6a0b118ee3e7865d05bae4 | e4fb0b24872505d5cb6009007d2030d4a03e70f8 | refs/heads/master | 2020-12-02T11:14:21.371539 | 2017-11-19T03:01:38 | 2017-11-19T03:01:38 | 96,619,248 | 4 | 1 | null | 2017-07-08T12:59:43 | 2017-07-08T12:59:43 | null | UTF-8 | C++ | false | false | 22,545 | cpp | /*******************************************************************************
*
* MIT License
*
* Copyright (c) 2017 Advanced Micro Devices, Inc.
*
* 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.
*
*******************************************************************************/
#include "miopen/solver.hpp"
/*
int mlo_construct_BwdWrW2D::mloConstruct1x1Mmap()
{
int ret = 0;
size_t localMemSize = 64 * 1024;
_hw_wave_sz = 64;
_dev_local_mem_sz = localMemSize; // in bytes
// major parameters
// inpout are outputs
int wei_cstride = _kernel_size0*_kernel_size1;
int wei_bstride = _n_outputs*wei_cstride;
// number of batch iterations
_n_stacks = 1;
_n_stacks = std::min(_batch_sz, _n_stacks);
// defines how to proceed : 1 grouop per batch or with a loop over all batches
// loop over al batches make sense in 2 cases: a lot of small inputs/outputs or few batches
// param
int N_BATCH_LOOPS = (_n_inputs*_n_outputs <= 8 * 1024) ? 1 : _batch_sz / _n_stacks;
int n_batch_blks = (_batch_sz + N_BATCH_LOOPS * _n_stacks - 1) / (N_BATCH_LOOPS * _n_stacks);
_out_pix_tile0 = 1;
_out_pix_tile1 = 1;
_in_tile1 = 1;
_in_tile0 = 1;
// n of wvaefront in a group
// param
int n_waves = (_in_width <= 8) ? 1 : 4;
int GRP_SZ = _hw_wave_sz * n_waves;
// number of input maps per group
int map_sz = _in_width*_in_height;
// define a special size for a specific width as a devisor to avoid dealing with out of range
// param
int read_unit = (_in_width == 7 || _in_width == 14) ? 7 : (_in_width == 28) ? 14 : (((map_sz /
8) * 8) == map_sz) ? 8 : (((map_sz / 4) * 4) == map_sz) ? 4 : (((map_sz / 2) * 2) == map_sz) ? 2 :
1;
int MAP_WK_SZ = ((map_sz + read_unit - 1) / read_unit);
// to avoid exeeding the group size but trying to keep multiple of the same unit
while (MAP_WK_SZ > GRP_SZ)
{
read_unit *= 2;
MAP_WK_SZ = ((map_sz + read_unit - 1) / read_unit);
}
// this one is valid only till _FLOAT8
// but it's not an error, the kernel does not use these types at all
std::string READ_TYPE = (read_unit == 1) ? "_FLOAT" : "_FLOAT" + std::to_string((read_unit));
int POW2_MAP_WK_SZ = (1 << mloLg2(MAP_WK_SZ));
// number of output maps fetched into LDS and to be shred with the input mapped kept in
registers
// param
int n_out_stacks = (_in_width == 28) ? 10 : ((_in_width == 7) || (_in_width == 14)) ? 8 :
(GRP_SZ / MAP_WK_SZ);
int lcl_size_limit = (_in_width <= 8) ? n_out_stacks*MAP_WK_SZ*read_unit : _dev_local_mem_sz /
(2 * sizeof(float));
// not to exeed local memory size
while ((_in_width > 8) && n_out_stacks*MAP_WK_SZ*read_unit > lcl_size_limit)
{
n_out_stacks--;
}
// number input maps stacks.
// n_in_stacks input map wil be written in teh local memory sequentially
int n_in_stacks = (GRP_SZ / MAP_WK_SZ);
n_out_stacks = std::min(_n_inputs, n_out_stacks);
n_in_stacks = std::min(_n_outputs, n_in_stacks);
// param
// this is 1 currently
_n_out_pix_tiles = std::min(1, (_n_inputs + n_out_stacks - 1) / n_out_stacks);
// number of maps in a stack or number of input read blocks written into 1 wk-item (lane)
// param
_n_in_data_tiles = std::min(((_in_width == 28) ? 2 : 4), (_n_outputs + n_in_stacks - 1) /
n_in_stacks);
// to be able to do an easy final transform and summation
while ((_in_width > 8) && n_in_stacks*_n_in_data_tiles* n_out_stacks > GRP_SZ)
{
n_in_stacks--;
}
// total maps per group
int total_out_maps = _n_out_pix_tiles * n_out_stacks;
int total_in_maps = _n_in_data_tiles * n_in_stacks;
_grp_tile0 = GRP_SZ;
_grp_tile1 = 1;
int grp_tile2 = 1;
// utility parameters
int n_ut_waves = 4;
int UT_GRP_SZ0 = _hw_wave_sz * n_ut_waves;
int ut_read_unit = ((wei_cstride / 4) * 4 == wei_cstride) ? 4 : ((wei_cstride / 2) * 2 ==
wei_cstride) ? 2 : 1;
std::string UT_READ_TYPE = (ut_read_unit == 1) ? "_FLOAT" : "_FLOAT" +
std::to_string((ut_read_unit));
// it's backward - inputs are outputs and vs versa
_comp_options =
std::string(" -DMLO_DIR_FORWARD=") + std::to_string(_direction)
+ std::string(" -DMLO_GRP_SZ=") + std::to_string(GRP_SZ)
+ std::string(" -DMLO_GRP_SZ0=") + std::to_string(_grp_tile0)
+ std::string(" -DMLO_GRP_SZ1=") + std::to_string(_grp_tile1)
+ std::string(" -DMLO_GRP_SZ2=") + std::to_string(grp_tile2)
+ std::string(" -DMLO_FILTER_SIZE0=") + std::to_string(_kernel_size0)
+ std::string(" -DMLO_FILTER_SIZE1=") + std::to_string(_kernel_size1)
+ std::string(" -DMLO_FILTER_PAD0=") + std::to_string(_pad0)
+ std::string(" -DMLO_FILTER_PAD1=") + std::to_string(_pad1)
+ std::string(" -DMLO_FILTER_STRIDE0=") + std::to_string(_kernel_stride0)
+ std::string(" -DMLO_FILTER_STRIDE1=") + std::to_string(_kernel_stride1)
+ std::string(" -DSTRIDE_W=") + std::to_string(_kernel_stride0)
+ std::string(" -DSTRIDE_H=") + std::to_string(_kernel_stride1)
+ std::string(" -DMLO_N_OUTPUTS=") + std::to_string(_n_inputs)
+ std::string(" -DMLO_N_INPUTS=") + std::to_string(_n_outputs)
+ std::string(" -DMLO_BATCH_SZ=") + std::to_string(_batch_sz)
+ std::string(" -DMLO_N_BATCH_LOOPS=") + std::to_string(N_BATCH_LOOPS)
+ std::string(" -DMLO_OUT_BATCH_STRIDE=") + std::to_string(_in_batch_stride)
+ std::string(" -DMLO_OUT_CHANNEL_STRIDE=") + std::to_string(_in_channel_stride)
+ std::string(" -DMLO_OUT_STRIDE=") + std::to_string(_in_stride)
+ std::string(" -DMLO_IN_BATCH_STRIDE=") + std::to_string(_out_batch_stride)
+ std::string(" -DMLO_IN_CHANNEL_STRIDE=") + std::to_string(_out_channel_stride)
+ std::string(" -DMLO_IN_STRIDE=") + std::to_string(_out_stride)
+ std::string(" -DMLO_WEI_BATCH_STRIDE=") + std::to_string(wei_bstride)
+ std::string(" -DMLO_WEI_CHANNEL_STRIDE=") + std::to_string(wei_cstride)
+ std::string(" -DMLO_IN_WIDTH=") + std::to_string(_out_width)
+ std::string(" -DMLO_IN_HEIGHT=") + std::to_string(_out_height)
+ std::string(" -DMLO_OUT_WIDTH=") + std::to_string(_in_width)
+ std::string(" -DMLO_OUT_HEIGHT=") + std::to_string(_in_height)
+ std::string(" -DMLO_IN_TILE1=") + std::to_string(_in_tile1)
+ std::string(" -DMLO_IN_TILE0=") + std::to_string(_in_tile0)
+ std::string(" -DMLO_N_LCL_BATCHS=") + std::to_string(_n_stacks) // # of diff stacks (part
of batch).
+ std::string(" -DMLO_N_LCL_OUT_MAPS=") + std::to_string(_n_out_pix_tiles) // # output
pixel tiles per wk-item (ALU)
+ std::string(" -DMLO_N_LCL_IN_MAPS=") + std::to_string(_n_in_data_tiles) // total # of
blocks of different inputs in LDS
+ std::string(" -DMLO_OUT_TILE0=") + std::to_string(_out_pix_tile0) // size of ouptput tile
per wk-item (ALU)
+ std::string(" -DMLO_OUT_TILE1=") + std::to_string(_out_pix_tile1) //
+ std::string(" -DMLO_OUT_STACKS=") + std::to_string(n_out_stacks)
+ std::string(" -DMLO_IN_STACKS=") + std::to_string(n_in_stacks)
+ std::string(" -DMLO_N_WAVES=") + std::to_string(n_waves)
+ std::string(" -DMLO_MAP_WK_SZ=") + std::to_string(MAP_WK_SZ)
+ std::string(" -DMLO_POW2_MAP_WK_SZ=") + std::to_string(POW2_MAP_WK_SZ)
+ std::string(" -DMLO_LCL_MEM_SZ=") + std::to_string(lcl_size_limit)
+ std::string(" -DMLO_READ_TYPE=") + READ_TYPE
+ std::string(" -DMLO_READ_UNIT=") + std::to_string(read_unit)
+ std::string(" -DMLO_HW_WAVE_SZ=") + std::to_string(_hw_wave_sz)
+ std::string(" -DMLO_LG2_PHYS_WAVE_SZ=") + std::to_string(mloLg2(_hw_wave_sz))
+ std::string(" -DMLO_CONV_BIAS=") + std::to_string(_bias)
+ std::string(" -DMLO_UT_READ_TYPE=") + UT_READ_TYPE
+ std::string(" -DMLO_UT_READ_UNIT=") + std::to_string(ut_read_unit)
+ std::string(" -DMLO_UT_GRP_SZ0=") + std::to_string(UT_GRP_SZ0)
// + std::string(" -limit-vector-registers=64 ")
+ getGeneralCompOptions()
;
_mlo_kernels_info.clear();
// wrt to W
{
_l_wk.clear();
_l_wk.push_back(_grp_tile0);
_l_wk.push_back(_grp_tile1);
_l_wk.push_back(grp_tile2);
// input is output
size_t gbl_wk0 = GRP_SZ * ((_n_inputs + total_out_maps - 1) / total_out_maps);
size_t gbl_wk1 = ((_n_outputs + total_in_maps - 1) / total_in_maps);
size_t gbl_wk2 = n_batch_blks;
_g_wk.clear();
_g_wk.push_back(gbl_wk0);
_g_wk.push_back(gbl_wk1);
_g_wk.push_back(gbl_wk2);
_kernel_file = "MIOpenConvBwdWrW1x1Mmap.cl";
_kernel_name = "MIOpenCvBwdWrW";
auto kern_info = std::make_tuple(_kernel_name, _kernel_file, _comp_options, _g_wk, _l_wk);
_mlo_kernels_info.push_back(kern_info);
_workspce_sz = 0;
}
// sum over batch
if (n_batch_blks > 1)
{
std::string kernel_file = "MIOpenConvBwdWrW1x1Mmap.cl";
std::string kernel_name = "MIOpenCvBwdWrW_rdc";
std::vector<size_t> l_wk;
l_wk.clear();
l_wk.push_back(UT_GRP_SZ0);
l_wk.push_back(1);
l_wk.push_back(1);
int gbl_ut_wk0 = wei_bstride * _n_inputs / ut_read_unit;
std::vector<size_t> g_wk;
g_wk.push_back(gbl_ut_wk0);
g_wk.push_back(1);
g_wk.push_back(1);
auto kern_info = std::make_tuple(kernel_name, kernel_file, _comp_options, g_wk, l_wk);
_mlo_kernels_info.push_back(kern_info);
int data_len = (_out_data_type == "FP32" ? 4 : 8);
_workspce_sz = wei_bstride * _n_inputs * n_batch_blks * data_len;
}
return(ret);
}
*/
namespace miopen {
namespace solver {
bool ConvOclBwdWrW1x1::IsApplicable(const ConvolutionContext& params) const
{
return (params.kernel_size0 == 1) && (params.kernel_size1 == 1);
}
ConvSolution ConvOclBwdWrW1x1::GetSolution(const ConvolutionContext& params,
const PerformanceConfig&) const
{
ConvSolution result;
if(params.n_passes)
{
result.passes = 1;
return result;
}
#if 0 // MD: Calls old 1x1 kernel (MIOpenConvBwdWrW1x1Mmap.cl) that has been optimized by Stas
if (params.in_width == 14 && params.in_height == 14 && params.n_inputs == 192 && params.n_outputs == 512)
{
return(mloConstruct1x1Mmap());
}
#endif
// size_t localMemSize = 64 * 1024;
const auto hw_wave_sz = 64;
//_dev_local_mem_sz = localMemSize; // in bytes
// major parameters
// inpout are outputs
int wei_cstride = params.kernel_size0 * params.kernel_size1;
int wei_bstride = params.n_outputs * wei_cstride;
// number of batch iterations
result.n_stacks = 1;
result.n_stacks = std::min(params.batch_sz, result.n_stacks);
// defines how to proceed : 1 grouop per batch or with a loop over all batches
// loop over al batches make sense in 2 cases: a lot of small inputs/outputs or few batches
// param
int N_BATCH_LOOPS = 1; // (params.n_inputs*params.n_outputs <= 8 * 1024) ? 1 : params.batch_sz /
// result.n_stacks;
int n_batch_blks = 1; // (params.batch_sz + N_BATCH_LOOPS * result.n_stacks - 1) /
// (N_BATCH_LOOPS * result.n_stacks);
result.out_pix_tile0 = 1;
result.out_pix_tile1 = 1;
result.in_tile1 = 1;
result.in_tile0 = 1;
int map_sz = params.in_width * params.in_height;
// define a special size for a specific width as a devisor to avoid dealing with out of range
// param
int read_unit = (params.in_width < 8)
? params.in_width
: (((map_sz / 7) * 7) == map_sz)
? 7
: (((map_sz / 8) * 8) == map_sz)
? 8
: (((map_sz / 5) * 5) == map_sz)
? 5
: (((map_sz / 6) * 6) == map_sz) ? 6 : 4;
if(params.in_width * params.in_height > 512)
{
read_unit = 4;
}
int MAP_WK_SZ = ((map_sz + read_unit - 1) / read_unit);
int N_PIXS_OFF = map_sz - (map_sz / read_unit) * read_unit;
bool large_map = (MAP_WK_SZ > hw_wave_sz * 2);
// not in use
bool midsize_map = false; // (MAP_WK_SZ <= _hw_wave_sz * 2);
// n of wavefronts in a group
// param
int n_waves = 4;
int GRP_SZ = hw_wave_sz * n_waves;
// this one is valid only till _FLOAT8
// but it's not an error, the kernel does not use these types at all
std::string READ_TYPE = (read_unit == 1) ? "_FLOAT" : "_FLOAT" + std::to_string((read_unit));
int N_out_lcl = 1;
int out_lcl_blk = 8 / N_out_lcl;
while(!large_map && out_lcl_blk > 0 && MAP_WK_SZ * read_unit * out_lcl_blk > n_waves * 1024)
{
N_out_lcl <<= 1;
out_lcl_blk >>= 1;
}
// number of output maps
result.n_out_pix_tiles = std::min(params.n_inputs, N_out_lcl * out_lcl_blk);
out_lcl_blk =
(result.n_out_pix_tiles < N_out_lcl * out_lcl_blk) ? result.n_out_pix_tiles : out_lcl_blk;
N_out_lcl = (result.n_out_pix_tiles < N_out_lcl * out_lcl_blk)
? result.n_out_pix_tiles / out_lcl_blk
: N_out_lcl;
// total maps per group
int total_out_maps = result.n_out_pix_tiles;
int n_out_blocks = ((params.n_inputs + total_out_maps - 1) / total_out_maps);
int N_OUT_MAPS_ALIGNED = (n_out_blocks * total_out_maps == params.n_inputs) ? 1 : 0;
// number input maps
// para
// number of input maps per group
// large map cover a group in full
int N_MAPS_PER_GROUP =
(!large_map) ? std::min(params.n_outputs, std::max(1, GRP_SZ / MAP_WK_SZ)) : 1;
result.n_in_data_tiles = std::min(params.n_outputs / N_MAPS_PER_GROUP,
((read_unit > 4) ? 6 : (read_unit > 2) ? 8 : 10));
result.n_in_data_tiles = (params.n_outputs >= result.n_in_data_tiles * N_MAPS_PER_GROUP)
? result.n_in_data_tiles
: 1;
int total_in_maps = result.n_in_data_tiles * N_MAPS_PER_GROUP;
int n_in_blocks = ((params.n_outputs + total_in_maps - 1) / total_in_maps);
int N_IN_MAPS_ALIGNED = (n_in_blocks * total_in_maps == params.n_outputs) ? 1 : 0;
int lcl_comm_size = out_lcl_blk * MAP_WK_SZ * read_unit;
// reduction loop step
int accum_sz = result.n_in_data_tiles * result.n_out_pix_tiles;
int REDUC_LOOP_STEP =
(accum_sz < MAP_WK_SZ && accum_sz < 8) ? accum_sz : result.n_out_pix_tiles;
// adjust reduction step
while((REDUC_LOOP_STEP > MAP_WK_SZ ||
(accum_sz / REDUC_LOOP_STEP) * REDUC_LOOP_STEP != accum_sz) &&
REDUC_LOOP_STEP > 1)
{
REDUC_LOOP_STEP--;
}
// calculate log of summation loop
int lg2_red_splits = 0;
int range = (!large_map) ? MAP_WK_SZ : GRP_SZ;
for(; ((REDUC_LOOP_STEP << lg2_red_splits) <= range); ++lg2_red_splits)
;
// more than 1 summation areas
int first_round = 0;
int can_divide = 1;
if(lg2_red_splits > 0)
{
// check if MAP_WK_SZ can be devided into that number at te firts round of summation
int firsts_round_split = (1 << (lg2_red_splits - 1));
first_round = (range + firsts_round_split - 1) / firsts_round_split;
can_divide = ((first_round * firsts_round_split) == range) ? 1 : 0;
}
int lcl_red_size = GRP_SZ * std::max(REDUC_LOOP_STEP, (accum_sz / REDUC_LOOP_STEP));
int lcl_size_limit =
(!(large_map || midsize_map)) ? std::max(lcl_comm_size, lcl_red_size) : lcl_red_size;
result.grp_tile0 = GRP_SZ;
result.grp_tile1 = 1;
int grp_tile2 = 1;
// it's backward - inputs are outputs and vs versa
const auto comp_options =
std::string(" -DMLO_DIR_FORWARD=") + std::to_string(params.forward) +
std::string(" -DMLO_GRP_SZ=") + std::to_string(GRP_SZ) + std::string(" -DMLO_GRP_SZ0=") +
std::to_string(result.grp_tile0) + std::string(" -DMLO_GRP_SZ1=") +
std::to_string(result.grp_tile1) + std::string(" -DMLO_GRP_SZ2=") +
std::to_string(grp_tile2) + std::string(" -DMLO_FILTER_SIZE0=") +
std::to_string(params.kernel_size0) + std::string(" -DMLO_FILTER_SIZE1=") +
std::to_string(params.kernel_size1) + std::string(" -DMLO_FILTER_PAD0=") +
std::to_string(params.pad0) + std::string(" -DMLO_FILTER_PAD1=") +
std::to_string(params.pad1) + std::string(" -DMLO_FILTER_STRIDE0=") +
std::to_string(params.kernel_stride0) + std::string(" -DMLO_FILTER_STRIDE1=") +
std::to_string(params.kernel_stride1) + std::string(" -DSTRIDE_W=") +
std::to_string(params.kernel_stride0) + std::string(" -DSTRIDE_H=") +
std::to_string(params.kernel_stride1) + std::string(" -DMLO_N_OUTPUTS=") +
std::to_string(params.n_inputs) + std::string(" -DMLO_N_INPUTS=") +
std::to_string(params.n_outputs) + std::string(" -DMLO_BATCH_SZ=") +
std::to_string(params.batch_sz) + std::string(" -DMLO_N_BATCH_LOOPS=") +
std::to_string(N_BATCH_LOOPS) + std::string(" -DMLO_OUT_BATCH_STRIDE=") +
std::to_string(params.in_batch_stride) + std::string(" -DMLO_OUT_CHANNEL_STRIDE=") +
std::to_string(params.in_channel_stride) + std::string(" -DMLO_OUT_STRIDE=") +
std::to_string(params.in_stride) + std::string(" -DMLO_IN_BATCH_STRIDE=") +
std::to_string(params.out_batch_stride) + std::string(" -DMLO_IN_CHANNEL_STRIDE=") +
std::to_string(params.out_channel_stride) + std::string(" -DMLO_IN_STRIDE=") +
std::to_string(params.out_stride) + std::string(" -DMLO_WEI_BATCH_STRIDE=") +
std::to_string(wei_bstride) + std::string(" -DMLO_WEI_CHANNEL_STRIDE=") +
std::to_string(wei_cstride) + std::string(" -DMLO_IN_WIDTH=") +
std::to_string(params.out_width) + std::string(" -DMLO_IN_HEIGHT=") +
std::to_string(params.out_height) + std::string(" -DMLO_OUT_WIDTH=") +
std::to_string(params.in_width) + std::string(" -DMLO_OUT_HEIGHT=") +
std::to_string(params.in_height) + std::string(" -DMLO_IN_TILE1=") +
std::to_string(result.in_tile1) + std::string(" -DMLO_IN_TILE0=") +
std::to_string(result.in_tile0) + std::string(" -DMLO_N_LCL_BATCHS=") +
std::to_string(result.n_stacks) // # of diff stacks (part of batch).
+ std::string(" -DMLO_N_LCL_OUT_MAPS=") +
std::to_string(result.n_out_pix_tiles) // # output pixel tiles per wk-item (ALU)
+ std::string(" -DMLO_N_LCL_IN_MAPS=") +
std::to_string(result.n_in_data_tiles) // total # of blocks of different inputs in LDS
+ std::string(" -DMLO_OUT_TILE0=") +
std::to_string(result.out_pix_tile0) // size of ouptput tile per wk-item (ALU)
+ std::string(" -DMLO_OUT_TILE1=") + std::to_string(result.out_pix_tile1) //
+ std::string(" -DMLO_N_WAVES=") + std::to_string(n_waves) +
std::string(" -DMLO_MAP_WK_SZ=") + std::to_string(MAP_WK_SZ) +
std::string(" -DMLO_N_PIXS_OFF=") + std::to_string(N_PIXS_OFF) +
std::string(" -DMLO_LCL_MEM_SZ=") + std::to_string(lcl_size_limit) +
std::string(" -DMLO_N_OUT_MAPS_ALIGNED=") + std::to_string(N_OUT_MAPS_ALIGNED) +
std::string(" -DMLO_N_IN_MAPS_ALIGNED=") + std::to_string(N_IN_MAPS_ALIGNED) +
std::string(" -DMLO_REDUC_LOOP_STEP=") + std::to_string(REDUC_LOOP_STEP) +
std::string(" -DMLO_N_MAPS_PER_GROUP=") + std::to_string(N_MAPS_PER_GROUP) +
std::string(" -DMLO_N_LCL_OUT=") + std::to_string(N_out_lcl) +
std::string(" -DMLO_OUT_LCL_BLK=") + std::to_string(out_lcl_blk) +
std::string(" -DMLO_FIRST_ROUND=") + std::to_string(first_round) +
std::string(" -DMLO_FIRST_CAN_DIVIDE=") + std::to_string(can_divide) +
std::string(" -DMLO_LG2_REDUC_ROUNDS=") + std::to_string(lg2_red_splits)
+ std::string(" -DMLO_READ_TYPE=") + READ_TYPE + std::string(" -DMLO_READ_UNIT=") +
std::to_string(read_unit) + std::string(" -DMLO_HW_WAVE_SZ=") + std::to_string(hw_wave_sz) +
std::string(" -DMLO_LG2_PHYS_WAVE_SZ=") + std::to_string(mloLg2(hw_wave_sz))
// + std::string(" -limit-vector-registers=64 ")
+ params.general_compile_options;
// wrt to W
{
KernelInfo kernel;
kernel.l_wk.push_back(result.grp_tile0);
kernel.l_wk.push_back(result.grp_tile1);
kernel.l_wk.push_back(grp_tile2);
// input is output
size_t gbl_wk0 = GRP_SZ * n_out_blocks;
size_t gbl_wk1 = n_in_blocks;
size_t gbl_wk2 = (!large_map) ? n_batch_blks : 1;
kernel.g_wk.push_back(gbl_wk0);
kernel.g_wk.push_back(gbl_wk1);
kernel.g_wk.push_back(gbl_wk2);
kernel.kernel_file = "MIOpenConvBwdWrW1x1.cl";
kernel.kernel_name = (large_map) ? "MLOpenCvBwdWrWLmap" : "MIOpenCvBwdWrWSmap";
kernel.comp_options = comp_options;
result.construction_params.push_back(kernel);
result.workspce_sz = 0;
}
return result;
}
} // namespace solver
} // namespace miopen
| [
"marty188586@gmail.com"
] | marty188586@gmail.com |
fb25faa7986863045d16e73e478c49469f512006 | 9a7596abee1d6f16ca45a64ecb0ff57cadb5436d | /Noise.cpp | af4a6408acb062687a11b73f9f6ac31b85dc03ac | [] | no_license | nnarain/VoxelEngine | 2ae55bb3a98afbde978204e30ba44736aa806948 | 5e84475924fb7e2cbac3c9c993e1004225d58483 | refs/heads/master | 2020-05-18T22:20:18.879925 | 2015-07-26T18:28:05 | 2015-07-26T18:28:05 | 37,539,794 | 5 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,676 | cpp |
#include "Noise.h"
using namespace engine;
using namespace engine::noise;
#include <SGL/Math/MathUtil.h>
#include <cassert>
#include <random>
Noise::Noise(int w, int h) :
_width(w),
_height(h),
_noise(w * h, 0)
{
}
void Noise::generate(int octaveCount)
{
std::vector<std::vector<float>> smoothNoise(octaveCount);
std::vector<std::vector<float>>::iterator iter;
for (iter = smoothNoise.begin(); iter != smoothNoise.end(); ++iter)
{
std::vector<float>& v = (*iter);
v.resize(_width * _height);
}
std::vector<float> baseNoise(_width * _height);
generateWhiteNoise(baseNoise);
int octave;
for (octave = 0; octave < octaveCount; ++octave)
{
generateSmoothNoise(smoothNoise[octave], baseNoise, octave);
}
float amplitude = 1.0f;
float totalAmplitude = 0.0f;
float persistance = 0.5f;
// blend noise
for (octave = octaveCount - 1; octave >= 0; --octave)
{
amplitude *= persistance;
totalAmplitude += amplitude;
int i, j;
for (i = 0; i < _width; ++i)
{
for (j = 0; j < _height; ++j)
{
float &noise = get(_noise, i, j);
noise += get(smoothNoise[octave], i, j) * amplitude;
}
}
}
// normalize
int i, j;
for (i = 0; i < _width; ++i)
{
for (j = 0; j < _height; ++j)
{
float &noise = get(_noise, i, j);
noise /= totalAmplitude;
}
}
}
void Noise::generateSmoothNoise(std::vector<float>& out, std::vector<float>& baseNoise, int octave)
{
int period = 1 << octave;
float frequency = 1.0f / (float)period;
int i, j;
for (i = 0; i < _width; ++i)
{
int samplei0 = (i / period) * period;
int samplei1 = (samplei0 + period) % _width;
float hBlend = (float)(i - samplei0) * frequency;
for (j = 0; j < _height; ++j)
{
int samplej0 = (j / period) * period;
int samplej1 = (samplej0 + period) % _height;
float vBlend = (float)(j - samplej0) * frequency;
float top = sgl::math::lerp<float>(get(baseNoise, samplei0, samplej0), get(baseNoise, samplei1, samplej0), hBlend);
float bottom = sgl::math::lerp<float>(get(baseNoise, samplei0, samplej1), get(baseNoise, samplei1, samplej1), hBlend);
set(out, i, j, sgl::math::lerp<float>(top, bottom, vBlend));
}
}
}
void Noise::generateWhiteNoise(std::vector<float>& arr)
{
int i, j;
for (i = 0; i < _width; ++i)
{
for (j = 0; j < _height; ++j)
{
set(arr, i, j, (float)(rand() % 2));
}
}
}
void Noise::set(std::vector<float>& arr, int x, int y, float value)
{
arr[(x * _width) + y] = value;
}
float& Noise::get(std::vector<float>& arr, int x, int y)
{
return arr[(x * _width) + y];
}
float Noise::at(int x, int y)
{
assert(x < _width && y < _height && "Value out of range");
return _noise[(x * _width) + y];
}
| [
"nnaraindev@gmail.com"
] | nnaraindev@gmail.com |
a611f227167fe9c76bda246ff0c02fc06f5c545a | 51d5cff1ac2c3baccaa65df86a6d82b83ada5740 | /sampleData/090929/imageValFeature.cpp | a277ee5ad106155d6d2548be58b577c6dd66cf2c | [] | no_license | cou929/polygonise | 4c72da66d71ef22cfa61bbea43673c4b6a4fa982 | 4bd895abe90f9c914e0b7e67830c57a949f575a4 | refs/heads/master | 2021-01-10T18:37:40.142040 | 2009-11-06T07:26:04 | 2009-11-06T07:26:04 | 299,520 | 6 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 648 | cpp | #include <iostream>
#include "opencv/cv.h"
#include "opencv/cxcore.h"
#include "opencv/highgui.h"
using namespace std;
int main(int argc, char ** argv)
{
if (argc != 3)
{
fprintf(stderr, "Usage: %s <depth image> <coordinate data>\n", argv[0]);
return -1;
}
IplImage * img = cvLoadImage(argv[1]);
FILE * fh;
fh = fopen(argv[2], "r");
char line[50];
while (fgets(line, sizeof(line), fh) != NULL)
{
float x, y, z;
int u, v;
sscanf(line, "%f\t%f\t%f\t%d\t%d\n", &x, &y, &z, &u, &v);
CvScalar s = cvGet2D(img, v, u);
printf("%d\t%d\t%d\n", u, v, (int)s.val[0]);
}
return 0;
}
| [
"cou929@gmail.com"
] | cou929@gmail.com |
52c9c9d1599f96062fc8902801034960b1222774 | da3215baf37d257d5814f165e98b4b19dee9cb05 | /SDK/FN_MicIndicator_parameters.hpp | cc846a8c90aea3f2c1e2f0ad7b976d6669c1ad57 | [] | no_license | Griizz/Fortnite-Hack | d37a6eea3502bf1b7c78be26a2206c8bc70f6fa5 | 5b80d585065372a4fb57839b8022dc522fe4110b | refs/heads/Griizz_Version | 2022-04-01T22:10:36.081573 | 2019-05-21T19:28:30 | 2019-05-21T19:28:30 | 106,034,464 | 115 | 85 | null | 2020-02-06T04:00:07 | 2017-10-06T17:55:47 | C++ | UTF-8 | C++ | false | false | 1,191 | hpp | #pragma once
// Fortnite SDK
#ifdef _MSC_VER
#pragma pack(push, 0x8)
#endif
#include "../SDK.hpp"
namespace SDK
{
//---------------------------------------------------------------------------
//Parameters
//---------------------------------------------------------------------------
// Function MicIndicator.MicIndicator_C.OnPlayerTalkingChanged
struct UMicIndicator_C_OnPlayerTalkingChanged_Params
{
bool* bIsTalking; // (CPF_Parm, CPF_ZeroConstructor, CPF_IsPlainOldData)
};
// Function MicIndicator.MicIndicator_C.OnPlayerMuted
struct UMicIndicator_C_OnPlayerMuted_Params
{
bool* bIsMuted; // (CPF_Parm, CPF_ZeroConstructor, CPF_IsPlainOldData)
};
// Function MicIndicator.MicIndicator_C.ExecuteUbergraph_MicIndicator
struct UMicIndicator_C_ExecuteUbergraph_MicIndicator_Params
{
int EntryPoint; // (CPF_Parm, CPF_ZeroConstructor, CPF_IsPlainOldData)
};
}
#ifdef _MSC_VER
#pragma pack(pop)
#endif
| [
"sinbadhacks@gmail.com"
] | sinbadhacks@gmail.com |
d1a3905dd8a004da5773bade9acdc48ec4f9a30c | c4b8e620cceb8d38f377205f3db4090804662947 | /Make3DPipeline/CoreInclude.h | bf23ee1409e0b49458fcbe5e09c8533e790e4578 | [] | no_license | esl000/RenderingTutorial | f0367b313c6f805c746b1e0d646669f81e61c98a | d3d250d43adbdf3528a79ecd3bd5cb24ccaa53b2 | refs/heads/master | 2020-06-14T03:59:34.392954 | 2020-02-14T03:07:58 | 2020-02-14T03:07:58 | 194,890,284 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 440 | h | #pragma once
#include "stdafx.h"
#include "Matrix.h"
#include "Object.h"
#define SINGLETON(class_name)\
private:\
class_name() {}\
public:\
static class_name* GetInstance(){\
static class_name instance;\
return &instance; }
template<typename Type>
inline bool CastCheck(Object* pointer)
{
return (bool) dynamic_cast<Type*>(pointer);
}
template<typename Type>
inline Type* Cast(Object* pointer)
{
return dynamic_cast<Type*>(pointer);
} | [
"pgunuk@gmail.com"
] | pgunuk@gmail.com |
80a5f3b2a9aacc1dc7f7db938c9f270c8134f285 | 6f224b734744e38062a100c42d737b433292fb47 | /clang-tools-extra/test/clang-tidy/checkers/readability/braces-around-statements-attributes.cpp | e799614a1f7b0e557c2b378ac474fc8affb21d7b | [
"Apache-2.0",
"LLVM-exception",
"NCSA"
] | permissive | smeenai/llvm-project | 1af036024dcc175c29c9bd2901358ad9b0e6610e | 764287f1ad69469cc264bb094e8fcdcfdd0fcdfb | refs/heads/main | 2023-09-01T04:26:38.516584 | 2023-08-29T21:11:41 | 2023-08-31T22:16:12 | 216,062,316 | 0 | 0 | Apache-2.0 | 2019-10-18T16:12:03 | 2019-10-18T16:12:03 | null | UTF-8 | C++ | false | false | 565 | cpp | // RUN: %check_clang_tidy -std=c++20-or-later %s readability-braces-around-statements %t
void test(bool b) {
if (b) {
return;
}
if (b) [[likely]] {
// CHECK-FIXES-NOT: if (b) { {{[[][[]}}likely{{[]][]]}} {
return;
}
if (b) [[unlikely]] {
// CHECK-FIXES-NOT: if (b) { {{[[][[]}}unlikely{{[]][]]}} {
return;
}
if (b) [[likely]]
// CHECK-FIXES: if (b) {{[[][[]}}likely{{[]][]]}} {
return;
// CHECK-FIXES: }
if (b) [[unlikely]]
// CHECK-FIXES: if (b) {{[[][[]}}unlikely{{[]][]]}} {
return;
// CHECK-FIXES: }
}
| [
"mydeveloperday@gmail.com"
] | mydeveloperday@gmail.com |
22b23e986e635f8295bd995b1a0460e5e08a5b78 | 2fb14ea250ce9645af98229968334d16506a2a7b | /Source/WebKit2/UIProcess/API/efl/NetworkInfoProvider.h | b9f86e6e5c122457ceee9bee4b6aa4d40fb56159 | [] | no_license | heuflying/webkit | 9b137e13caeffdaf5cab1879e75f15a327197e28 | 454d74ae30e2177c15dec33a5cf6c645cd5c164e | refs/heads/master | 2020-12-30T17:45:14.331241 | 2012-09-16T07:22:46 | 2012-09-16T07:22:46 | 5,828,481 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,251 | h | /*
* Copyright (C) 2012 Intel Corporation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef NetworkInfoProvider_h
#define NetworkInfoProvider_h
#if ENABLE(NETWORK_INFO)
#include <NetworkInfoClient.h>
#include <NetworkInfoProviderEfl.h>
#include <WebKit2/WKBase.h>
#include <WebKit2/WKRetainPtr.h>
#include <wtf/PassRefPtr.h>
class NetworkInfoProvider : public RefCounted<NetworkInfoProvider>, public WebCore::NetworkInfoClient {
public:
virtual ~NetworkInfoProvider();
static PassRefPtr<NetworkInfoProvider> create(WKNetworkInfoManagerRef);
// NetworkInfoClient interface.
virtual double bandwidth() const;
virtual bool metered() const;
virtual void startUpdating();
virtual void stopUpdating();
private:
NetworkInfoProvider(WKNetworkInfoManagerRef);
WKRetainPtr<WKNetworkInfoManagerRef> m_wkNetworkInfoManager;
WebCore::NetworkInfoProviderEfl m_provider;
};
#endif // ENABLE(NETWORK_INFO)
#endif // NetworkInfoProvider_h
| [
"commit-queue@webkit.org"
] | commit-queue@webkit.org |
5fafeaf78398ace778871d56cfca3d14543e2357 | 31715a0441c7b0e66f0d638f99ef04c1d38ea593 | /Src/external/chilkat-9.5.0-x86-vc2017/include/CkCrypt2.h | b670e2c7dfb000f1cb7f91754b15accf7828858e | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | jjuiddong/CURL-Practice | 8907acc804432aae6fab6c47ef5dbc9dcbfb0146 | 3406d98a4ff387fd0a4b34940737afaa8d8b3c75 | refs/heads/master | 2020-09-28T21:12:39.148195 | 2019-12-11T05:22:02 | 2019-12-11T05:22:02 | 226,865,865 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 158,426 | h | // CkCrypt2.h: interface for the CkCrypt2 class.
//
//////////////////////////////////////////////////////////////////////
// This header is generated for Chilkat 9.5.0.80
#ifndef _CkCrypt2_H
#define _CkCrypt2_H
#include "chilkatDefs.h"
#include "CkString.h"
#include "CkClassWithCallbacks.h"
class CkByteData;
class CkCert;
class CkTask;
class CkBinData;
class CkStringBuilder;
class CkSecureString;
class CkStream;
class CkCertChain;
class CkJsonObject;
class CkCsp;
class CkPrivateKey;
class CkHttp;
class CkXmlCertVault;
class CkBaseProgress;
#if !defined(__sun__) && !defined(__sun)
#pragma pack (push, 8)
#endif
// CLASS: CkCrypt2
class CK_VISIBLE_PUBLIC CkCrypt2 : public CkClassWithCallbacks
{
private:
// Don't allow assignment or copying these objects.
CkCrypt2(const CkCrypt2 &);
CkCrypt2 &operator=(const CkCrypt2 &);
public:
CkCrypt2(void);
virtual ~CkCrypt2(void);
static CkCrypt2 *createNew(void);
void CK_VISIBLE_PRIVATE inject(void *impl);
// May be called when finished with the object to free/dispose of any
// internal resources held by the object.
void dispose(void);
CkBaseProgress *get_EventCallbackObject(void) const;
void put_EventCallbackObject(CkBaseProgress *progress);
// BEGIN PUBLIC INTERFACE
// ----------------------
// Properties
// ----------------------
// When set to true, causes the currently running method to abort. Methods that
// always finish quickly (i.e.have no length file operations or network
// communications) are not affected. If no method is running, then this property is
// automatically reset to false when the next method is called. When the abort
// occurs, this property is reset to false. Both synchronous and asynchronous
// method calls can be aborted. (A synchronous method call could be aborted by
// setting this property from a separate thread.)
bool get_AbortCurrent(void);
// When set to true, causes the currently running method to abort. Methods that
// always finish quickly (i.e.have no length file operations or network
// communications) are not affected. If no method is running, then this property is
// automatically reset to false when the next method is called. When the abort
// occurs, this property is reset to false. Both synchronous and asynchronous
// method calls can be aborted. (A synchronous method call could be aborted by
// setting this property from a separate thread.)
void put_AbortCurrent(bool newVal);
// The BCrypt work factor to be used for the BCryptHash and BCryptVerify. This is
// the log2 of the number of rounds of hashing to apply. For example, if the work
// (cost) factor is 12, then 2^12 rounds of hashing are applied. The purpose of
// this cost factor is to make the BCrypt computation expensive enought to prevent
// brute-force attacks. (Any complaints about BCrypt "not being fast enough" will
// be ignored.)
//
// This property must have a value ranging from 4 to 31 inclusive.
//
// The default value is 10.
//
int get_BCryptWorkFactor(void);
// The BCrypt work factor to be used for the BCryptHash and BCryptVerify. This is
// the log2 of the number of rounds of hashing to apply. For example, if the work
// (cost) factor is 12, then 2^12 rounds of hashing are applied. The purpose of
// this cost factor is to make the BCrypt computation expensive enought to prevent
// brute-force attacks. (Any complaints about BCrypt "not being fast enough" will
// be ignored.)
//
// This property must have a value ranging from 4 to 31 inclusive.
//
// The default value is 10.
//
void put_BCryptWorkFactor(int newVal);
// The block-size (in bytes) of the selected encryption algorithm. For example, if
// the CryptAlgorithm property is set to "aes", the BlockSize property is
// automatically set to 16. The block-size for the ARC4 streaming encryption
// algorithm is 1.
int get_BlockSize(void);
// Applies to all methods that create PKCS7 signatures. To create a CAdES-BES
// signature, set this property equal to true. The default value of this property
// is false.
bool get_CadesEnabled(void);
// Applies to all methods that create PKCS7 signatures. To create a CAdES-BES
// signature, set this property equal to true. The default value of this property
// is false.
void put_CadesEnabled(bool newVal);
// This is the base64 hash of the policy document located at the CadesSigPolicyUri.
// You can use either the SHA256 or SHA1 hash. You may use this online tool to
// compute the base64 hash: Compute Base64 Hash for CaDES Signature Policy URL
// <http://tools.chilkat.io/hashFileAtUrl.cshtml>
//
// Note: This property applies to all methods that create PKCS7 signatures. To
// create a CAdES-EPES signature, set the CadesEnabled property = true, and also
// provide values for each of the following properties: CadesSigPolicyHash,
// CadesSigPolicyId, and CadesSigPolicyUri. For example (in pseudo-code):
// cryptObj.CadesSigPolicyId = "2.16.76.1.7.1.1.1"
// cryptObj.CadesSigPolicyUri = "http://politicas.icpbrasil.gov.br/PA_AD_RB.der"
// cryptObj.CadesSigPolicyHash = "rySugyKaMhiMR8Y/o5yuU2A2bF0="
// Note: Do NOT use the values above. They are only provided as an example to show
// valid values. For example, the Policy ID is an OID. The Policy URI is a
// typically a URL to a DER encoded policy file, and the Policy Hash is a base64
// encoded hash.
//
void get_CadesSigPolicyHash(CkString &str);
// This is the base64 hash of the policy document located at the CadesSigPolicyUri.
// You can use either the SHA256 or SHA1 hash. You may use this online tool to
// compute the base64 hash: Compute Base64 Hash for CaDES Signature Policy URL
// <http://tools.chilkat.io/hashFileAtUrl.cshtml>
//
// Note: This property applies to all methods that create PKCS7 signatures. To
// create a CAdES-EPES signature, set the CadesEnabled property = true, and also
// provide values for each of the following properties: CadesSigPolicyHash,
// CadesSigPolicyId, and CadesSigPolicyUri. For example (in pseudo-code):
// cryptObj.CadesSigPolicyId = "2.16.76.1.7.1.1.1"
// cryptObj.CadesSigPolicyUri = "http://politicas.icpbrasil.gov.br/PA_AD_RB.der"
// cryptObj.CadesSigPolicyHash = "rySugyKaMhiMR8Y/o5yuU2A2bF0="
// Note: Do NOT use the values above. They are only provided as an example to show
// valid values. For example, the Policy ID is an OID. The Policy URI is a
// typically a URL to a DER encoded policy file, and the Policy Hash is a base64
// encoded hash.
//
const char *cadesSigPolicyHash(void);
// This is the base64 hash of the policy document located at the CadesSigPolicyUri.
// You can use either the SHA256 or SHA1 hash. You may use this online tool to
// compute the base64 hash: Compute Base64 Hash for CaDES Signature Policy URL
// <http://tools.chilkat.io/hashFileAtUrl.cshtml>
//
// Note: This property applies to all methods that create PKCS7 signatures. To
// create a CAdES-EPES signature, set the CadesEnabled property = true, and also
// provide values for each of the following properties: CadesSigPolicyHash,
// CadesSigPolicyId, and CadesSigPolicyUri. For example (in pseudo-code):
// cryptObj.CadesSigPolicyId = "2.16.76.1.7.1.1.1"
// cryptObj.CadesSigPolicyUri = "http://politicas.icpbrasil.gov.br/PA_AD_RB.der"
// cryptObj.CadesSigPolicyHash = "rySugyKaMhiMR8Y/o5yuU2A2bF0="
// Note: Do NOT use the values above. They are only provided as an example to show
// valid values. For example, the Policy ID is an OID. The Policy URI is a
// typically a URL to a DER encoded policy file, and the Policy Hash is a base64
// encoded hash.
//
void put_CadesSigPolicyHash(const char *newVal);
// See the description for the CadesSigPolicyHash property above.
void get_CadesSigPolicyId(CkString &str);
// See the description for the CadesSigPolicyHash property above.
const char *cadesSigPolicyId(void);
// See the description for the CadesSigPolicyHash property above.
void put_CadesSigPolicyId(const char *newVal);
// See the description for the CadesSigPolicyHash property above.
void get_CadesSigPolicyUri(CkString &str);
// See the description for the CadesSigPolicyHash property above.
const char *cadesSigPolicyUri(void);
// See the description for the CadesSigPolicyHash property above.
void put_CadesSigPolicyUri(const char *newVal);
// Controls the character encoding of the text encrypted, signed, hashed or
// compressed. This property is relevant wherever strings are used as inputs or
// outputs.
//
// This property defaults to the ANSI charset of the computer. For example, the
// default ANSI code page on Windows computers in the USA and Western Europe would
// be "windows-1252".
//
// When working with strings, it is important to know the exact bytes that are
// being encrypted/hashed/signed/compressed. This is critical when interoperating
// with other systems. If your application is sending an encrypted string to
// another system that will decrypt it, you will need to know the encoding of the
// string that is expected on the receiving end (after decryption). If you pass
// Unicode data (2 byte per character) to the encryptor, subsequent decryption will
// reproduce the original Unicode. However, it may be that your program works with
// Unicode strings, but the recipient of the encrypted data works with iso-8859-1
// strings. In such a case, setting the Charset property to "iso-8859-1" causes the
// character data to be automatically converted to the Charset before being
// encrypted (or compressed, or hashed, or signed). The set of valid charsets is
// listed below:
// hex
// base64
// * "hex" and "base64" are special values that allow for binary (non-text) encoded data to be passed to any method where the input data is a string.
// Rather than converting to an actual charset (such as utf-8, iso-8859-1), the binary data is decoded, and the decoded bytes are passed
// to the underlying encryptor, hashing, signing, etc.
// ANSI
// us-ascii
// unicode
// unicodefffe
// iso-8859-1
// iso-8859-2
// iso-8859-3
// iso-8859-4
// iso-8859-5
// iso-8859-6
// iso-8859-7
// iso-8859-8
// iso-8859-9
// iso-8859-13
// iso-8859-15
// windows-874
// windows-1250
// windows-1251
// windows-1252
// windows-1253
// windows-1254
// windows-1255
// windows-1256
// windows-1257
// windows-1258
// utf-7
// utf-8
// utf-32
// utf-32be
// shift_jis
// gb2312
// ks_c_5601-1987
// big5
// iso-2022-jp
// iso-2022-kr
// euc-jp
// euc-kr
// macintosh
// x-mac-japanese
// x-mac-chinesetrad
// x-mac-korean
// x-mac-arabic
// x-mac-hebrew
// x-mac-greek
// x-mac-cyrillic
// x-mac-chinesesimp
// x-mac-romanian
// x-mac-ukrainian
// x-mac-thai
// x-mac-ce
// x-mac-icelandic
// x-mac-turkish
// x-mac-croatian
// asmo-708
// dos-720
// dos-862
// ibm037
// ibm437
// ibm500
// ibm737
// ibm775
// ibm850
// ibm852
// ibm855
// ibm857
// ibm00858
// ibm860
// ibm861
// ibm863
// ibm864
// ibm865
// cp866
// ibm869
// ibm870
// cp875
// koi8-r
// koi8-u
//
void get_Charset(CkString &str);
// Controls the character encoding of the text encrypted, signed, hashed or
// compressed. This property is relevant wherever strings are used as inputs or
// outputs.
//
// This property defaults to the ANSI charset of the computer. For example, the
// default ANSI code page on Windows computers in the USA and Western Europe would
// be "windows-1252".
//
// When working with strings, it is important to know the exact bytes that are
// being encrypted/hashed/signed/compressed. This is critical when interoperating
// with other systems. If your application is sending an encrypted string to
// another system that will decrypt it, you will need to know the encoding of the
// string that is expected on the receiving end (after decryption). If you pass
// Unicode data (2 byte per character) to the encryptor, subsequent decryption will
// reproduce the original Unicode. However, it may be that your program works with
// Unicode strings, but the recipient of the encrypted data works with iso-8859-1
// strings. In such a case, setting the Charset property to "iso-8859-1" causes the
// character data to be automatically converted to the Charset before being
// encrypted (or compressed, or hashed, or signed). The set of valid charsets is
// listed below:
// hex
// base64
// * "hex" and "base64" are special values that allow for binary (non-text) encoded data to be passed to any method where the input data is a string.
// Rather than converting to an actual charset (such as utf-8, iso-8859-1), the binary data is decoded, and the decoded bytes are passed
// to the underlying encryptor, hashing, signing, etc.
// ANSI
// us-ascii
// unicode
// unicodefffe
// iso-8859-1
// iso-8859-2
// iso-8859-3
// iso-8859-4
// iso-8859-5
// iso-8859-6
// iso-8859-7
// iso-8859-8
// iso-8859-9
// iso-8859-13
// iso-8859-15
// windows-874
// windows-1250
// windows-1251
// windows-1252
// windows-1253
// windows-1254
// windows-1255
// windows-1256
// windows-1257
// windows-1258
// utf-7
// utf-8
// utf-32
// utf-32be
// shift_jis
// gb2312
// ks_c_5601-1987
// big5
// iso-2022-jp
// iso-2022-kr
// euc-jp
// euc-kr
// macintosh
// x-mac-japanese
// x-mac-chinesetrad
// x-mac-korean
// x-mac-arabic
// x-mac-hebrew
// x-mac-greek
// x-mac-cyrillic
// x-mac-chinesesimp
// x-mac-romanian
// x-mac-ukrainian
// x-mac-thai
// x-mac-ce
// x-mac-icelandic
// x-mac-turkish
// x-mac-croatian
// asmo-708
// dos-720
// dos-862
// ibm037
// ibm437
// ibm500
// ibm737
// ibm775
// ibm850
// ibm852
// ibm855
// ibm857
// ibm00858
// ibm860
// ibm861
// ibm863
// ibm864
// ibm865
// cp866
// ibm869
// ibm870
// cp875
// koi8-r
// koi8-u
//
const char *charset(void);
// Controls the character encoding of the text encrypted, signed, hashed or
// compressed. This property is relevant wherever strings are used as inputs or
// outputs.
//
// This property defaults to the ANSI charset of the computer. For example, the
// default ANSI code page on Windows computers in the USA and Western Europe would
// be "windows-1252".
//
// When working with strings, it is important to know the exact bytes that are
// being encrypted/hashed/signed/compressed. This is critical when interoperating
// with other systems. If your application is sending an encrypted string to
// another system that will decrypt it, you will need to know the encoding of the
// string that is expected on the receiving end (after decryption). If you pass
// Unicode data (2 byte per character) to the encryptor, subsequent decryption will
// reproduce the original Unicode. However, it may be that your program works with
// Unicode strings, but the recipient of the encrypted data works with iso-8859-1
// strings. In such a case, setting the Charset property to "iso-8859-1" causes the
// character data to be automatically converted to the Charset before being
// encrypted (or compressed, or hashed, or signed). The set of valid charsets is
// listed below:
// hex
// base64
// * "hex" and "base64" are special values that allow for binary (non-text) encoded data to be passed to any method where the input data is a string.
// Rather than converting to an actual charset (such as utf-8, iso-8859-1), the binary data is decoded, and the decoded bytes are passed
// to the underlying encryptor, hashing, signing, etc.
// ANSI
// us-ascii
// unicode
// unicodefffe
// iso-8859-1
// iso-8859-2
// iso-8859-3
// iso-8859-4
// iso-8859-5
// iso-8859-6
// iso-8859-7
// iso-8859-8
// iso-8859-9
// iso-8859-13
// iso-8859-15
// windows-874
// windows-1250
// windows-1251
// windows-1252
// windows-1253
// windows-1254
// windows-1255
// windows-1256
// windows-1257
// windows-1258
// utf-7
// utf-8
// utf-32
// utf-32be
// shift_jis
// gb2312
// ks_c_5601-1987
// big5
// iso-2022-jp
// iso-2022-kr
// euc-jp
// euc-kr
// macintosh
// x-mac-japanese
// x-mac-chinesetrad
// x-mac-korean
// x-mac-arabic
// x-mac-hebrew
// x-mac-greek
// x-mac-cyrillic
// x-mac-chinesesimp
// x-mac-romanian
// x-mac-ukrainian
// x-mac-thai
// x-mac-ce
// x-mac-icelandic
// x-mac-turkish
// x-mac-croatian
// asmo-708
// dos-720
// dos-862
// ibm037
// ibm437
// ibm500
// ibm737
// ibm775
// ibm850
// ibm852
// ibm855
// ibm857
// ibm00858
// ibm860
// ibm861
// ibm863
// ibm864
// ibm865
// cp866
// ibm869
// ibm870
// cp875
// koi8-r
// koi8-u
//
void put_Charset(const char *newVal);
// Controls the cipher mode for block encryption algorithms (AES, Blowfish,TwoFish,
// DES, 3DES, RC2). Possible values are "CBC" (the default) , "ECB", "CTR", "OFB",
// "GCM", and "CFB". These acronyms have the following meanings:
//
// CBC: Cipher Block Chaining,
// ECB: Electronic CookBook
// CTR: Counter Mode
// CFB: Cipher Feedback
// OFB: Output Feedback
// GCM: Galois/Counter Mode
//
// (see http://en.wikipedia.org/wiki/Block_cipher_modes_of_operation )
//
// Note: Prior to Chilkat v9.5.0.55, the CFB mode is only implemented for AES,
// Blowfish, and DES/3DES, and the CTR mode is only implemented for AES.
//
// Starting in v9.5.0.55 CFB and OFB modes are useable with all encryption
// algorithms, and GCM (Galois/Counter Mode) is available with any cipher having a
// 16-byte block size, such as AES and Twofish. CFB, OFB, CTR, and GCM modes
// convert block ciphers into stream ciphers. In these modes of operation, the
// PaddingScheme property is unused because no padding occurs.
//
void get_CipherMode(CkString &str);
// Controls the cipher mode for block encryption algorithms (AES, Blowfish,TwoFish,
// DES, 3DES, RC2). Possible values are "CBC" (the default) , "ECB", "CTR", "OFB",
// "GCM", and "CFB". These acronyms have the following meanings:
//
// CBC: Cipher Block Chaining,
// ECB: Electronic CookBook
// CTR: Counter Mode
// CFB: Cipher Feedback
// OFB: Output Feedback
// GCM: Galois/Counter Mode
//
// (see http://en.wikipedia.org/wiki/Block_cipher_modes_of_operation )
//
// Note: Prior to Chilkat v9.5.0.55, the CFB mode is only implemented for AES,
// Blowfish, and DES/3DES, and the CTR mode is only implemented for AES.
//
// Starting in v9.5.0.55 CFB and OFB modes are useable with all encryption
// algorithms, and GCM (Galois/Counter Mode) is available with any cipher having a
// 16-byte block size, such as AES and Twofish. CFB, OFB, CTR, and GCM modes
// convert block ciphers into stream ciphers. In these modes of operation, the
// PaddingScheme property is unused because no padding occurs.
//
const char *cipherMode(void);
// Controls the cipher mode for block encryption algorithms (AES, Blowfish,TwoFish,
// DES, 3DES, RC2). Possible values are "CBC" (the default) , "ECB", "CTR", "OFB",
// "GCM", and "CFB". These acronyms have the following meanings:
//
// CBC: Cipher Block Chaining,
// ECB: Electronic CookBook
// CTR: Counter Mode
// CFB: Cipher Feedback
// OFB: Output Feedback
// GCM: Galois/Counter Mode
//
// (see http://en.wikipedia.org/wiki/Block_cipher_modes_of_operation )
//
// Note: Prior to Chilkat v9.5.0.55, the CFB mode is only implemented for AES,
// Blowfish, and DES/3DES, and the CTR mode is only implemented for AES.
//
// Starting in v9.5.0.55 CFB and OFB modes are useable with all encryption
// algorithms, and GCM (Galois/Counter Mode) is available with any cipher having a
// 16-byte block size, such as AES and Twofish. CFB, OFB, CTR, and GCM modes
// convert block ciphers into stream ciphers. In these modes of operation, the
// PaddingScheme property is unused because no padding occurs.
//
void put_CipherMode(const char *newVal);
// A JSON string for controlling extra CMS (PKCS7) signature and validation
// options.
void get_CmsOptions(CkString &str);
// A JSON string for controlling extra CMS (PKCS7) signature and validation
// options.
const char *cmsOptions(void);
// A JSON string for controlling extra CMS (PKCS7) signature and validation
// options.
void put_CmsOptions(const char *newVal);
// This property is deprecated. The only possible value is "BZIP2". The compression
// functionality in Crypt2 is legacy and existed long before the general
// compression functionality that is currently offered in Chilkat.Compression. The
// Chilkat.Compression API should be used instead.
void get_CompressionAlgorithm(CkString &str);
// This property is deprecated. The only possible value is "BZIP2". The compression
// functionality in Crypt2 is legacy and existed long before the general
// compression functionality that is currently offered in Chilkat.Compression. The
// Chilkat.Compression API should be used instead.
const char *compressionAlgorithm(void);
// This property is deprecated. The only possible value is "BZIP2". The compression
// functionality in Crypt2 is legacy and existed long before the general
// compression functionality that is currently offered in Chilkat.Compression. The
// Chilkat.Compression API should be used instead.
void put_CompressionAlgorithm(const char *newVal);
// Selects the encryption algorithm for encrypting and decrypting. Possible values
// are: "chacha20", "pki", "aes", "blowfish", "blowfish2", "des", "3des", "rc2",
// "arc4", "twofish", "pbes1" and "pbes2". The "pki" encryption algorithm isn't a
// specific algorithm, but instead tells the component to encrypt/decrypt using
// public-key encryption with digital certificates. The other choices are symmetric
// encryption algorithms that do not involve digital certificates and
// public/private keys.
//
// The default value is "aes"
//
// The original Chilkat implementation of Blowfish has a 4321 byte-swapping issue
// (the results are 4321 byte-swapped). The new implementation ("blowfish2") does
// not byte swap. This should be used for compatibility with other Blowfish
// software.
//
// Password-based encryption (PBE) is selected by setting this property to "pbes1"
// or "pbes2". Password-based encryption is defined in the PKCS5 Password-Based
// Cryptography Standard at https://tools.ietf.org/html/rfc2898. If PBE is used,
// the underlying encryption algorithm is specified by the PbesAlgorithm property.
// The underlying encryption (PbesAlgorithm) for PBES1 is limited to 56-bit DES or
// 64-bit RC2.
//
// Note:The chacha20 algorithm is introduced in Chilkat v9.5.0.55.
//
void get_CryptAlgorithm(CkString &str);
// Selects the encryption algorithm for encrypting and decrypting. Possible values
// are: "chacha20", "pki", "aes", "blowfish", "blowfish2", "des", "3des", "rc2",
// "arc4", "twofish", "pbes1" and "pbes2". The "pki" encryption algorithm isn't a
// specific algorithm, but instead tells the component to encrypt/decrypt using
// public-key encryption with digital certificates. The other choices are symmetric
// encryption algorithms that do not involve digital certificates and
// public/private keys.
//
// The default value is "aes"
//
// The original Chilkat implementation of Blowfish has a 4321 byte-swapping issue
// (the results are 4321 byte-swapped). The new implementation ("blowfish2") does
// not byte swap. This should be used for compatibility with other Blowfish
// software.
//
// Password-based encryption (PBE) is selected by setting this property to "pbes1"
// or "pbes2". Password-based encryption is defined in the PKCS5 Password-Based
// Cryptography Standard at https://tools.ietf.org/html/rfc2898. If PBE is used,
// the underlying encryption algorithm is specified by the PbesAlgorithm property.
// The underlying encryption (PbesAlgorithm) for PBES1 is limited to 56-bit DES or
// 64-bit RC2.
//
// Note:The chacha20 algorithm is introduced in Chilkat v9.5.0.55.
//
const char *cryptAlgorithm(void);
// Selects the encryption algorithm for encrypting and decrypting. Possible values
// are: "chacha20", "pki", "aes", "blowfish", "blowfish2", "des", "3des", "rc2",
// "arc4", "twofish", "pbes1" and "pbes2". The "pki" encryption algorithm isn't a
// specific algorithm, but instead tells the component to encrypt/decrypt using
// public-key encryption with digital certificates. The other choices are symmetric
// encryption algorithms that do not involve digital certificates and
// public/private keys.
//
// The default value is "aes"
//
// The original Chilkat implementation of Blowfish has a 4321 byte-swapping issue
// (the results are 4321 byte-swapped). The new implementation ("blowfish2") does
// not byte swap. This should be used for compatibility with other Blowfish
// software.
//
// Password-based encryption (PBE) is selected by setting this property to "pbes1"
// or "pbes2". Password-based encryption is defined in the PKCS5 Password-Based
// Cryptography Standard at https://tools.ietf.org/html/rfc2898. If PBE is used,
// the underlying encryption algorithm is specified by the PbesAlgorithm property.
// The underlying encryption (PbesAlgorithm) for PBES1 is limited to 56-bit DES or
// 64-bit RC2.
//
// Note:The chacha20 algorithm is introduced in Chilkat v9.5.0.55.
//
void put_CryptAlgorithm(const char *newVal);
// Controls the encoding of binary data to a printable string for many methods. The
// valid modes are "Base64", "modBase64", "base64url", "Base32", "Base58", "UU",
// "QP" (for quoted-printable), "URL" (for url-encoding), "Hex", "Q", "B",
// "url_oauth", "url_rfc1738", "url_rfc2396", "url_rfc3986", "fingerprint", or
// "decimal".
//
// The default value is "base64"
//
// The "fingerprint" and"decimal" encodings are introduced in Chilkat v9.5.0.55.
//
// The "fingerprint" encoding is a lowercase hex encoding where each hex digit is
// separated by a colon character. For example:
// 6a:de:e0:af:56:f8:0c:04:11:5b:ef:4d:49:ad:09:23
//
// The "decimal" encoding is for converting large decimal integers to/from a
// big-endian binary representation. For example, the decimal string
// "72623859790382856" converts to the bytes 0x01 0x02 0x03 0x04 0x05 0x06 0x07
// 0x08.
//
void get_EncodingMode(CkString &str);
// Controls the encoding of binary data to a printable string for many methods. The
// valid modes are "Base64", "modBase64", "base64url", "Base32", "Base58", "UU",
// "QP" (for quoted-printable), "URL" (for url-encoding), "Hex", "Q", "B",
// "url_oauth", "url_rfc1738", "url_rfc2396", "url_rfc3986", "fingerprint", or
// "decimal".
//
// The default value is "base64"
//
// The "fingerprint" and"decimal" encodings are introduced in Chilkat v9.5.0.55.
//
// The "fingerprint" encoding is a lowercase hex encoding where each hex digit is
// separated by a colon character. For example:
// 6a:de:e0:af:56:f8:0c:04:11:5b:ef:4d:49:ad:09:23
//
// The "decimal" encoding is for converting large decimal integers to/from a
// big-endian binary representation. For example, the decimal string
// "72623859790382856" converts to the bytes 0x01 0x02 0x03 0x04 0x05 0x06 0x07
// 0x08.
//
const char *encodingMode(void);
// Controls the encoding of binary data to a printable string for many methods. The
// valid modes are "Base64", "modBase64", "base64url", "Base32", "Base58", "UU",
// "QP" (for quoted-printable), "URL" (for url-encoding), "Hex", "Q", "B",
// "url_oauth", "url_rfc1738", "url_rfc2396", "url_rfc3986", "fingerprint", or
// "decimal".
//
// The default value is "base64"
//
// The "fingerprint" and"decimal" encodings are introduced in Chilkat v9.5.0.55.
//
// The "fingerprint" encoding is a lowercase hex encoding where each hex digit is
// separated by a colon character. For example:
// 6a:de:e0:af:56:f8:0c:04:11:5b:ef:4d:49:ad:09:23
//
// The "decimal" encoding is for converting large decimal integers to/from a
// big-endian binary representation. For example, the decimal string
// "72623859790382856" converts to the bytes 0x01 0x02 0x03 0x04 0x05 0x06 0x07
// 0x08.
//
void put_EncodingMode(const char *newVal);
// Chilkat Crypt2 provides the ability to feed the encryption/decryption methods
// with chunks of data. This allows a large amount of data, or a data stream, to be
// fed piecemeal for encrypting or decrypting. It applies to all symmetric
// algorithms currently supported (AES, Blowfish, Twofish, 3DES, RC2, DES, ARC4),
// and all algorithms supported in the future.
//
// The default value for both FirstChunk and LastChunk is true. This means when
// an Encrypt* or Decrypt* method is called, it is both the first and last chunk
// (i.e. it's the entire amount of data to be encrypted or decrypted).
//
// If you wish to feed the data piecemeal, do this:
//
// Set FirstChunk = true, LastChunk = false for the first chunk of data.
// For all "middle" chunks (i.e. all chunks except for the final chunk) set
// FirstChunk = false and LastChunk = false.
// For the final chunk, set FirstChunk = false and LastChunk = true
//
// There is no need to worry about feeding data according to the block size of the
// encryption algorithm. For example, AES has a block size of 16 bytes. Data may be
// fed in chunks of any size. The Chilkat Crypt2 component will buffer the data.
// When the final chunk is passed, the output is padded to the algorithm's block
// size according to the PaddingScheme.
//
bool get_FirstChunk(void);
// Chilkat Crypt2 provides the ability to feed the encryption/decryption methods
// with chunks of data. This allows a large amount of data, or a data stream, to be
// fed piecemeal for encrypting or decrypting. It applies to all symmetric
// algorithms currently supported (AES, Blowfish, Twofish, 3DES, RC2, DES, ARC4),
// and all algorithms supported in the future.
//
// The default value for both FirstChunk and LastChunk is true. This means when
// an Encrypt* or Decrypt* method is called, it is both the first and last chunk
// (i.e. it's the entire amount of data to be encrypted or decrypted).
//
// If you wish to feed the data piecemeal, do this:
//
// Set FirstChunk = true, LastChunk = false for the first chunk of data.
// For all "middle" chunks (i.e. all chunks except for the final chunk) set
// FirstChunk = false and LastChunk = false.
// For the final chunk, set FirstChunk = false and LastChunk = true
//
// There is no need to worry about feeding data according to the block size of the
// encryption algorithm. For example, AES has a block size of 16 bytes. Data may be
// fed in chunks of any size. The Chilkat Crypt2 component will buffer the data.
// When the final chunk is passed, the output is padded to the algorithm's block
// size according to the PaddingScheme.
//
void put_FirstChunk(bool newVal);
// Selects the hash algorithm used by methods that create hashes. The valid choices
// are "sha1", "sha256", "sha384", "sha512", "md2", "md5", "haval", "ripemd128",
// "ripemd160","ripemd256", or "ripemd320".
//
// Note: SHA-2 designates a set of cryptographic hash functions that includes
// SHA-256, SHA-384, and SHA-512. Chilkat by definition supports "SHA-2" because it
// supports these algorithms.
//
// The default value is "sha1".
//
// Note: The HAVAL hash algorithm is affected by two other properties: HavalRounds
// and KeyLength.
//
// The HavalRounds may have values of 3, 4, or 5.
// The KeyLength may have values of 128, 160, 192, 224, or 256.
void get_HashAlgorithm(CkString &str);
// Selects the hash algorithm used by methods that create hashes. The valid choices
// are "sha1", "sha256", "sha384", "sha512", "md2", "md5", "haval", "ripemd128",
// "ripemd160","ripemd256", or "ripemd320".
//
// Note: SHA-2 designates a set of cryptographic hash functions that includes
// SHA-256, SHA-384, and SHA-512. Chilkat by definition supports "SHA-2" because it
// supports these algorithms.
//
// The default value is "sha1".
//
// Note: The HAVAL hash algorithm is affected by two other properties: HavalRounds
// and KeyLength.
//
// The HavalRounds may have values of 3, 4, or 5.
// The KeyLength may have values of 128, 160, 192, 224, or 256.
const char *hashAlgorithm(void);
// Selects the hash algorithm used by methods that create hashes. The valid choices
// are "sha1", "sha256", "sha384", "sha512", "md2", "md5", "haval", "ripemd128",
// "ripemd160","ripemd256", or "ripemd320".
//
// Note: SHA-2 designates a set of cryptographic hash functions that includes
// SHA-256, SHA-384, and SHA-512. Chilkat by definition supports "SHA-2" because it
// supports these algorithms.
//
// The default value is "sha1".
//
// Note: The HAVAL hash algorithm is affected by two other properties: HavalRounds
// and KeyLength.
//
// The HavalRounds may have values of 3, 4, or 5.
// The KeyLength may have values of 128, 160, 192, 224, or 256.
void put_HashAlgorithm(const char *newVal);
// Applies to the HAVAL hash algorithm only and must be set to the integer value 3,
// 4, or 5. The default value is 3.
int get_HavalRounds(void);
// Applies to the HAVAL hash algorithm only and must be set to the integer value 3,
// 4, or 5. The default value is 3.
void put_HavalRounds(int newVal);
// The number of milliseconds between each AbortCheck event callback. The
// AbortCheck callback allows an application to abort some methods call prior to
// completion. If HeartbeatMs is 0 (the default), no AbortCheck event callbacks
// will fire.
//
// The methods with event callbacks are: CkDecryptFile, CkEncryptFile, HashFile,
// and HashFileENC.
//
int get_HeartbeatMs(void);
// The number of milliseconds between each AbortCheck event callback. The
// AbortCheck callback allows an application to abort some methods call prior to
// completion. If HeartbeatMs is 0 (the default), no AbortCheck event callbacks
// will fire.
//
// The methods with event callbacks are: CkDecryptFile, CkEncryptFile, HashFile,
// and HashFileENC.
//
void put_HeartbeatMs(int newVal);
// Only applies when creating digital signatures. If true (the default), then
// additional certificates (if any) in the chain of authentication are included in
// the PKCS7 digital signature.
bool get_IncludeCertChain(void);
// Only applies when creating digital signatures. If true (the default), then
// additional certificates (if any) in the chain of authentication are included in
// the PKCS7 digital signature.
void put_IncludeCertChain(bool newVal);
// The initial counter for the ChaCha20 encryption algorithm. The default value is
// 0.
int get_InitialCount(void);
// The initial counter for the ChaCha20 encryption algorithm. The default value is
// 0.
void put_InitialCount(int newVal);
// Iteration count to be used with password-based encryption (PBE). Password-based
// encryption is defined in the PKCS5 Password-Based Cryptography Standard at
// http://www.rsa.com/rsalabs/node.asp?id=2127
//
// The purpose of the iteration count is to increase the computation required to
// encrypt and decrypt. A larger iteration count makes cracking via exhaustive
// search more difficult. The default value is 1024.
//
int get_IterationCount(void);
// Iteration count to be used with password-based encryption (PBE). Password-based
// encryption is defined in the PKCS5 Password-Based Cryptography Standard at
// http://www.rsa.com/rsalabs/node.asp?id=2127
//
// The purpose of the iteration count is to increase the computation required to
// encrypt and decrypt. A larger iteration count makes cracking via exhaustive
// search more difficult. The default value is 1024.
//
void put_IterationCount(int newVal);
// The initialization vector to be used with symmetric encryption algorithms (AES,
// Blowfish, Twofish, etc.). If left unset, no initialization vector is used.
void get_IV(CkByteData &outBytes);
// The initialization vector to be used with symmetric encryption algorithms (AES,
// Blowfish, Twofish, etc.). If left unset, no initialization vector is used.
void put_IV(const CkByteData &inBytes);
// The key length in bits for symmetric encryption algorithms. The default value is
// 256.
int get_KeyLength(void);
// The key length in bits for symmetric encryption algorithms. The default value is
// 256.
void put_KeyLength(int newVal);
// (See the description for the FirstChunk property.)
bool get_LastChunk(void);
// (See the description for the FirstChunk property.)
void put_LastChunk(bool newVal);
// Selects the MAC algorithm to be used for any of the Mac methods, such as
// MacStringENC, MacBytes, etc. The default value is "hmac". Possible values are
// "hmac" and "poly1305".
void get_MacAlgorithm(CkString &str);
// Selects the MAC algorithm to be used for any of the Mac methods, such as
// MacStringENC, MacBytes, etc. The default value is "hmac". Possible values are
// "hmac" and "poly1305".
const char *macAlgorithm(void);
// Selects the MAC algorithm to be used for any of the Mac methods, such as
// MacStringENC, MacBytes, etc. The default value is "hmac". Possible values are
// "hmac" and "poly1305".
void put_MacAlgorithm(const char *newVal);
// This property is set when a digital signature is verified. It contains the
// number of signer certificates. Each signing certificate can be retrieved by
// calling the GetSignerCert method, passing an index from 0 to NumSignerCerts-1.
int get_NumSignerCerts(void);
// Selects the hash algorithm for use within OAEP padding when encrypting using
// "pki" with RSAES-OAEP. The valid choices are "sha1", "sha256", "sha384",
// "sha512",
//
// The default value is "sha256"
//
void get_OaepHash(CkString &str);
// Selects the hash algorithm for use within OAEP padding when encrypting using
// "pki" with RSAES-OAEP. The valid choices are "sha1", "sha256", "sha384",
// "sha512",
//
// The default value is "sha256"
//
const char *oaepHash(void);
// Selects the hash algorithm for use within OAEP padding when encrypting using
// "pki" with RSAES-OAEP. The valid choices are "sha1", "sha256", "sha384",
// "sha512",
//
// The default value is "sha256"
//
void put_OaepHash(const char *newVal);
// Selects the MGF hash algorithm for use within OAEP padding when encrypting using
// "pki" with RSAES-OAEP. The valid choices are "sha1", "sha256", "sha384",
// "sha512", The default is "sha1".
void get_OaepMgfHash(CkString &str);
// Selects the MGF hash algorithm for use within OAEP padding when encrypting using
// "pki" with RSAES-OAEP. The valid choices are "sha1", "sha256", "sha384",
// "sha512", The default is "sha1".
const char *oaepMgfHash(void);
// Selects the MGF hash algorithm for use within OAEP padding when encrypting using
// "pki" with RSAES-OAEP. The valid choices are "sha1", "sha256", "sha384",
// "sha512", The default is "sha1".
void put_OaepMgfHash(const char *newVal);
// Selects the RSA encryption scheme when encrypting using "pki" (with a
// certificate and private key). The default value is false, which selects
// RSAES_PKCS1-V1_5. If set to true, then RSAES_OAEP is used.
bool get_OaepPadding(void);
// Selects the RSA encryption scheme when encrypting using "pki" (with a
// certificate and private key). The default value is false, which selects
// RSAES_PKCS1-V1_5. If set to true, then RSAES_OAEP is used.
void put_OaepPadding(bool newVal);
// The padding scheme used by block encryption algorithms such as AES (Rijndael),
// Blowfish, Twofish, RC2, DES, 3DES, etc. Block encryption algorithms pad
// encrypted data to a multiple of algorithm's block size. The default value of
// this property is 0.
//
// Possible values are:
//
// 0 = RFC 1423 padding scheme: Each padding byte is set to the number of padding
// bytes. If the data is already a multiple of algorithm's block size bytes, an
// extra block is appended each having a value equal to the block size. (for
// example, if the algorithm's block size is 16, then 16 bytes having the value
// 0x10 are added.). (This is also known as PKCS5 padding: PKCS #5 padding string
// consists of a sequence of bytes, each of which is equal to the total number of
// padding bytes added. )
//
// 1 = FIPS81 (Federal Information Processing Standards 81) where the last byte
// contains the number of padding bytes, including itself, and the other padding
// bytes are set to random values.
//
// 2 = Each padding byte is set to a random value. The decryptor must know how many
// bytes are in the original unencrypted data.
//
// 3 = Pad with NULLs. (If already a multiple of the algorithm's block size, no
// padding is added).
//
// 4 = Pad with SPACE chars(0x20). (If already a multiple of algorithm's block
// size, no padding is added).
//
int get_PaddingScheme(void);
// The padding scheme used by block encryption algorithms such as AES (Rijndael),
// Blowfish, Twofish, RC2, DES, 3DES, etc. Block encryption algorithms pad
// encrypted data to a multiple of algorithm's block size. The default value of
// this property is 0.
//
// Possible values are:
//
// 0 = RFC 1423 padding scheme: Each padding byte is set to the number of padding
// bytes. If the data is already a multiple of algorithm's block size bytes, an
// extra block is appended each having a value equal to the block size. (for
// example, if the algorithm's block size is 16, then 16 bytes having the value
// 0x10 are added.). (This is also known as PKCS5 padding: PKCS #5 padding string
// consists of a sequence of bytes, each of which is equal to the total number of
// padding bytes added. )
//
// 1 = FIPS81 (Federal Information Processing Standards 81) where the last byte
// contains the number of padding bytes, including itself, and the other padding
// bytes are set to random values.
//
// 2 = Each padding byte is set to a random value. The decryptor must know how many
// bytes are in the original unencrypted data.
//
// 3 = Pad with NULLs. (If already a multiple of the algorithm's block size, no
// padding is added).
//
// 4 = Pad with SPACE chars(0x20). (If already a multiple of algorithm's block
// size, no padding is added).
//
void put_PaddingScheme(int newVal);
// If the CryptAlgorithm property is set to "pbes1" or "pbes2", this property
// specifies the underlying encryption algorithm to be used with password-based
// encryption (PBE). Password-based encryption is defined in the PKCS5
// Password-Based Cryptography Standard at
// http://www.rsa.com/rsalabs/node.asp?id=2127
void get_PbesAlgorithm(CkString &str);
// If the CryptAlgorithm property is set to "pbes1" or "pbes2", this property
// specifies the underlying encryption algorithm to be used with password-based
// encryption (PBE). Password-based encryption is defined in the PKCS5
// Password-Based Cryptography Standard at
// http://www.rsa.com/rsalabs/node.asp?id=2127
const char *pbesAlgorithm(void);
// If the CryptAlgorithm property is set to "pbes1" or "pbes2", this property
// specifies the underlying encryption algorithm to be used with password-based
// encryption (PBE). Password-based encryption is defined in the PKCS5
// Password-Based Cryptography Standard at
// http://www.rsa.com/rsalabs/node.asp?id=2127
void put_PbesAlgorithm(const char *newVal);
// The password to be used with password-based encryption (PBE). Password-based
// encryption is defined in the PKCS5 Password-Based Cryptography Standard at
// http://www.rsa.com/rsalabs/node.asp?id=2127
void get_PbesPassword(CkString &str);
// The password to be used with password-based encryption (PBE). Password-based
// encryption is defined in the PKCS5 Password-Based Cryptography Standard at
// http://www.rsa.com/rsalabs/node.asp?id=2127
const char *pbesPassword(void);
// The password to be used with password-based encryption (PBE). Password-based
// encryption is defined in the PKCS5 Password-Based Cryptography Standard at
// http://www.rsa.com/rsalabs/node.asp?id=2127
void put_PbesPassword(const char *newVal);
// When the CryptAlgorithm property is "PKI" to select PKCS7 public-key encryption,
// this selects the underlying symmetric encryption algorithm. Possible values are:
// "aes", "des", "3des", and "rc2". The default value is "aes".
void get_Pkcs7CryptAlg(CkString &str);
// When the CryptAlgorithm property is "PKI" to select PKCS7 public-key encryption,
// this selects the underlying symmetric encryption algorithm. Possible values are:
// "aes", "des", "3des", and "rc2". The default value is "aes".
const char *pkcs7CryptAlg(void);
// When the CryptAlgorithm property is "PKI" to select PKCS7 public-key encryption,
// this selects the underlying symmetric encryption algorithm. Possible values are:
// "aes", "des", "3des", and "rc2". The default value is "aes".
void put_Pkcs7CryptAlg(const char *newVal);
// The effective key length (in bits) for the RC2 encryption algorithm. When RC2 is
// used, both the KeyLength and Rc2EffectiveKeyLength properties should be set. For
// RC2, both should be between 8 and 1024 (inclusive).
//
// The default value is 128
//
int get_Rc2EffectiveKeyLength(void);
// The effective key length (in bits) for the RC2 encryption algorithm. When RC2 is
// used, both the KeyLength and Rc2EffectiveKeyLength properties should be set. For
// RC2, both should be between 8 and 1024 (inclusive).
//
// The default value is 128
//
void put_Rc2EffectiveKeyLength(int newVal);
// The salt to be used with password-based encryption (PBE). Password-based
// encryption is defined in the PKCS5 Password-Based Cryptography Standard at
// http://www.rsa.com/rsalabs/node.asp?id=2127
//
// To clarify: This property is used in encryption when the CryptAlgorithm is set
// to "pbes1" or "pbes2". Also note that it is not used by the Pbkdf1 or Pbkdf2
// methods, as the salt is passed in an argument to those methods.
//
void get_Salt(CkByteData &outBytes);
// The salt to be used with password-based encryption (PBE). Password-based
// encryption is defined in the PKCS5 Password-Based Cryptography Standard at
// http://www.rsa.com/rsalabs/node.asp?id=2127
//
// To clarify: This property is used in encryption when the CryptAlgorithm is set
// to "pbes1" or "pbes2". Also note that it is not used by the Pbkdf1 or Pbkdf2
// methods, as the salt is passed in an argument to those methods.
//
void put_Salt(const CkByteData &inBytes);
// The binary secret key used for symmetric encryption (Aes, Blowfish, Twofish,
// ChaCha20, ARC4, 3DES, RC2, etc.). The secret key must be identical for
// decryption to succeed. The length in bytes of the SecretKey must equal the
// KeyLength/8.
void get_SecretKey(CkByteData &outBytes);
// The binary secret key used for symmetric encryption (Aes, Blowfish, Twofish,
// ChaCha20, ARC4, 3DES, RC2, etc.). The secret key must be identical for
// decryption to succeed. The length in bytes of the SecretKey must equal the
// KeyLength/8.
void put_SecretKey(const CkByteData &inBytes);
// This property selects the signature algorithm for the OpaqueSign*, Sign*, and
// CreateDetachedSignature, CreateP7M, and CreateP7S methods. The default value is
// "PKCS1-v1_5". This can be set to "RSASSA-PSS" (or simply "pss") to use the
// RSASSA-PSS signature scheme.
//
// Note: This property only applies when the private key is an RSA private key. It
// does not apply for ECC or DSA private keys.
//
void get_SigningAlg(CkString &str);
// This property selects the signature algorithm for the OpaqueSign*, Sign*, and
// CreateDetachedSignature, CreateP7M, and CreateP7S methods. The default value is
// "PKCS1-v1_5". This can be set to "RSASSA-PSS" (or simply "pss") to use the
// RSASSA-PSS signature scheme.
//
// Note: This property only applies when the private key is an RSA private key. It
// does not apply for ECC or DSA private keys.
//
const char *signingAlg(void);
// This property selects the signature algorithm for the OpaqueSign*, Sign*, and
// CreateDetachedSignature, CreateP7M, and CreateP7S methods. The default value is
// "PKCS1-v1_5". This can be set to "RSASSA-PSS" (or simply "pss") to use the
// RSASSA-PSS signature scheme.
//
// Note: This property only applies when the private key is an RSA private key. It
// does not apply for ECC or DSA private keys.
//
void put_SigningAlg(const char *newVal);
// Contains JSON to specify the authenticated (signed) attributes or
// unauthenticated (unsigned) attributes that are to be included in CMS signatures.
// The default value is:
// {
// "contentType": 1,
// "signingTime": 1,
// "messageDigest": 1
// }
//
// Other possible values that can be added are:
// signingCertificateV2
// signingCertificate
// sMIMECapabilities
// microsoftRecipientInfo
// encrypKeyPref
// Contact Chilkat (support@chilkatsoft.com) about other signed/unsigned attributes
// that may be needed for CAdES signatures.
//
void get_SigningAttributes(CkString &str);
// Contains JSON to specify the authenticated (signed) attributes or
// unauthenticated (unsigned) attributes that are to be included in CMS signatures.
// The default value is:
// {
// "contentType": 1,
// "signingTime": 1,
// "messageDigest": 1
// }
//
// Other possible values that can be added are:
// signingCertificateV2
// signingCertificate
// sMIMECapabilities
// microsoftRecipientInfo
// encrypKeyPref
// Contact Chilkat (support@chilkatsoft.com) about other signed/unsigned attributes
// that may be needed for CAdES signatures.
//
const char *signingAttributes(void);
// Contains JSON to specify the authenticated (signed) attributes or
// unauthenticated (unsigned) attributes that are to be included in CMS signatures.
// The default value is:
// {
// "contentType": 1,
// "signingTime": 1,
// "messageDigest": 1
// }
//
// Other possible values that can be added are:
// signingCertificateV2
// signingCertificate
// sMIMECapabilities
// microsoftRecipientInfo
// encrypKeyPref
// Contact Chilkat (support@chilkatsoft.com) about other signed/unsigned attributes
// that may be needed for CAdES signatures.
//
void put_SigningAttributes(const char *newVal);
// When UU encoding, this is the filename to be embedded in UU encoded output. The
// default is "file.dat". When UU decoding, this is the filename found in the UU
// encoded input.
void get_UuFilename(CkString &str);
// When UU encoding, this is the filename to be embedded in UU encoded output. The
// default is "file.dat". When UU decoding, this is the filename found in the UU
// encoded input.
const char *uuFilename(void);
// When UU encoding, this is the filename to be embedded in UU encoded output. The
// default is "file.dat". When UU decoding, this is the filename found in the UU
// encoded input.
void put_UuFilename(const char *newVal);
// When UU encoding, this is the file permissions mode to be embedded in UU encoded
// output. The default is "644". When UU decoding, this property is set to the mode
// found in the UU encoded input.
void get_UuMode(CkString &str);
// When UU encoding, this is the file permissions mode to be embedded in UU encoded
// output. The default is "644". When UU decoding, this property is set to the mode
// found in the UU encoded input.
const char *uuMode(void);
// When UU encoding, this is the file permissions mode to be embedded in UU encoded
// output. The default is "644". When UU decoding, this property is set to the mode
// found in the UU encoded input.
void put_UuMode(const char *newVal);
// ----------------------
// Methods
// ----------------------
// Adds a certificate to be used for public-key encryption. (To use public-key
// encryption with digital certificates, set the CryptAlgorithm property = "pki".)
// To encrypt with more than one certificate , call AddEncryptCert once per
// certificate.
void AddEncryptCert(CkCert &cert);
// Adds a PFX to the object's internal list of sources to be searched for
// certificates and private keys when decrypting. Multiple PFX sources can be added
// by calling this method once for each. (On the Windows operating system, the
// registry-based certificate stores are also automatically searched, so it is
// commonly not required to explicitly add PFX sources.)
//
// The pfxBytes contains the bytes of a PFX file (also known as PKCS12 or .p12).
//
bool AddPfxSourceData(CkByteData &pfxBytes, const char *pfxPassword);
// Adds a PFX file to the object's internal list of sources to be searched for
// certificates and private keys when decrypting. Multiple PFX files can be added
// by calling this method once for each. (On the Windows operating system, the
// registry-based certificate stores are also automatically searched, so it is
// commonly not required to explicitly add PFX sources.)
//
// The pfxFilePath contains the bytes of a PFX file (also known as PKCS12 or .p12).
//
bool AddPfxSourceFile(const char *pfxFilePath, const char *pfxPassword);
// Implements the AES Key Wrap Algorithm (RFC 3394) for unwrapping. The kek is the
// Key Encryption Key (the AES key used to unwrap the wrappedKeyData). The arguments and
// return value are binary encoded strings using the encoding specified by encoding
// (which can be "base64", "hex", "base64url", etc.) The full list of supported
// encodings is available at the link below.
//
// The kek should be an AES key of 16 bytes, 24 bytes, or 32 bytes (i.e. 128-bits,
// 192- bits, or 256-bits). For example, if passed as a hex string, then the kek
// should be 32 chars in length, 48 chars, or 64 chars (because each byte is
// represented as 2 chars in hex).
//
// The wrappedKeyData contains the data to be unwrapped. The result, if decoded, is 8 bytes
// less than the wrapped key data. For example, if a 256-bit AES key (32 bytes) is
// wrapped, the size of the wrapped key data is 40 bytes. Unwrapping restores it to
// the original 32 bytes.
//
bool AesKeyUnwrap(const char *kek, const char *wrappedKeyData, const char *encoding, CkString &outStr);
// Implements the AES Key Wrap Algorithm (RFC 3394) for unwrapping. The kek is the
// Key Encryption Key (the AES key used to unwrap the wrappedKeyData). The arguments and
// return value are binary encoded strings using the encoding specified by encoding
// (which can be "base64", "hex", "base64url", etc.) The full list of supported
// encodings is available at the link below.
//
// The kek should be an AES key of 16 bytes, 24 bytes, or 32 bytes (i.e. 128-bits,
// 192- bits, or 256-bits). For example, if passed as a hex string, then the kek
// should be 32 chars in length, 48 chars, or 64 chars (because each byte is
// represented as 2 chars in hex).
//
// The wrappedKeyData contains the data to be unwrapped. The result, if decoded, is 8 bytes
// less than the wrapped key data. For example, if a 256-bit AES key (32 bytes) is
// wrapped, the size of the wrapped key data is 40 bytes. Unwrapping restores it to
// the original 32 bytes.
//
const char *aesKeyUnwrap(const char *kek, const char *wrappedKeyData, const char *encoding);
// Implements the AES Key Wrap Algorithm (RFC 3394). The kek is the Key Encryption
// Key (the AES key used to encrypt the keyData). The arguments and return value are
// binary encoded strings using the encoding specified by encoding (which can be
// "base64", "hex", "base64url", etc.) The full list of supported encodings is
// available at the link below.
//
// The kek should be an AES key of 16 bytes, 24 bytes, or 32 bytes (i.e. 128-bits,
// 192- bits, or 256-bits). For example, if passed as a hex string, then the kek
// should be 32 chars in length, 48 chars, or 64 chars (because each byte is
// represented as 2 chars in hex).
//
// The keyData contains the data to be key wrapped. It must be a multiple of 64-bits
// in length. In other words, if the keyData is decoded to binary, it should be a
// number of bytes that is a multiple of 8.
//
// The return string, if decoded to binary bytes, is equal to the size of the key
// data + 8 additional bytes.
//
bool AesKeyWrap(const char *kek, const char *keyData, const char *encoding, CkString &outStr);
// Implements the AES Key Wrap Algorithm (RFC 3394). The kek is the Key Encryption
// Key (the AES key used to encrypt the keyData). The arguments and return value are
// binary encoded strings using the encoding specified by encoding (which can be
// "base64", "hex", "base64url", etc.) The full list of supported encodings is
// available at the link below.
//
// The kek should be an AES key of 16 bytes, 24 bytes, or 32 bytes (i.e. 128-bits,
// 192- bits, or 256-bits). For example, if passed as a hex string, then the kek
// should be 32 chars in length, 48 chars, or 64 chars (because each byte is
// represented as 2 chars in hex).
//
// The keyData contains the data to be key wrapped. It must be a multiple of 64-bits
// in length. In other words, if the keyData is decoded to binary, it should be a
// number of bytes that is a multiple of 8.
//
// The return string, if decoded to binary bytes, is equal to the size of the key
// data + 8 additional bytes.
//
const char *aesKeyWrap(const char *kek, const char *keyData, const char *encoding);
// Computes and returns a bcrypt hash of the password. The number of rounds of hashing
// is determined by the BCryptWorkFactor property.
//
// Starting in v9.5.0.76, if the password is prefixed with "$2b$" then the output will
// use the $2b version of bcrypt. For example, to create a "$2b$" bcrypt has for
// the password "secret", pass in the string "$2b$secret" for password.
//
bool BCryptHash(const char *password, CkString &outStr);
// Computes and returns a bcrypt hash of the password. The number of rounds of hashing
// is determined by the BCryptWorkFactor property.
//
// Starting in v9.5.0.76, if the password is prefixed with "$2b$" then the output will
// use the $2b version of bcrypt. For example, to create a "$2b$" bcrypt has for
// the password "secret", pass in the string "$2b$secret" for password.
//
const char *bCryptHash(const char *password);
// Verifies the password against a previously computed BCrypt hash. Returns true if
// the password matches the bcryptHash. Returns false if the password does not match.
bool BCryptVerify(const char *password, const char *bcryptHash);
// Utility method to convert bytes to a string -- interpreting the bytes according
// to the charset specified.
bool BytesToString(CkByteData &inData, const char *charset, CkString &outStr);
// Utility method to convert bytes to a string -- interpreting the bytes according
// to the charset specified.
const char *bytesToString(CkByteData &inData, const char *charset);
// Convenience method for byte swapping between little-endian byte ordering and
// big-endian byte ordering.
bool ByteSwap4321(CkByteData &data, CkByteData &outBytes);
// File-to-file decryption. There is no limit to the size of the file that can be
// decrypted because the component will operate in streaming mode internally.
bool CkDecryptFile(const char *srcFile, const char *destFile);
// File-to-file decryption. There is no limit to the size of the file that can be
// decrypted because the component will operate in streaming mode internally.
CkTask *CkDecryptFileAsync(const char *srcFile, const char *destFile);
// File-to-file encryption. There is no limit to the size of the file that can be
// encrypted because the component will operate in streaming mode internally.
bool CkEncryptFile(const char *srcFile, const char *destFile);
// File-to-file encryption. There is no limit to the size of the file that can be
// encrypted because the component will operate in streaming mode internally.
CkTask *CkEncryptFileAsync(const char *srcFile, const char *destFile);
// Clears the internal list of digital certificates to be used for public-key
// encryption.
void ClearEncryptCerts(void);
// Bzip2 compresses a byte array and returns the compressed bytes.
//
// This is a legacy method that should not be used in new development. It will not
// be marked as deprecated or removed from future APIs because existing
// applications may have data already compressed using this method.
//
// The output of this method includes an 8-byte header composed of a 4-byte magic
// number (0xB394A7E1) and the 4-byte length of the uncompressed data.
//
bool CompressBytes(CkByteData &data, CkByteData &outData);
// Same as CompressBytes, except an encoded string is returned. The output encoding
// is specified by the EncodingMode property.
bool CompressBytesENC(CkByteData &data, CkString &outStr);
// Same as CompressBytes, except an encoded string is returned. The output encoding
// is specified by the EncodingMode property.
const char *compressBytesENC(CkByteData &data);
// Compresses a string and returns the compressed bytes. Prior to compressing, the
// string is converted to a byte representation such as utf-8, utf-16, etc. as
// determined by the Charset property. Otherwise, this method is the same as the
// CompressBytes method.
bool CompressString(const char *str, CkByteData &outData);
// Compresses a string and returns the encoded compressed bytes. Prior to
// compressing, the string is converted to a byte representation such as utf-8,
// utf-16, etc. as determined by the Charset property. The output encoding is
// specified by the EncodingMode property. Otherwise, this method is the same as
// the CompressBytes method.
bool CompressStringENC(const char *str, CkString &outStr);
// Compresses a string and returns the encoded compressed bytes. Prior to
// compressing, the string is converted to a byte representation such as utf-8,
// utf-16, etc. as determined by the Charset property. The output encoding is
// specified by the EncodingMode property. Otherwise, this method is the same as
// the CompressBytes method.
const char *compressStringENC(const char *str);
// Calculates a CRC for in-memory byte data. To compute the CRC used in the Zip
// file format, pass "CRC-32" for the crcAlg. (The crcAlg argument provides the
// flexibility to add additional CRC algorithms on an as-needed basis in the
// future.)
unsigned long CrcBytes(const char *crcAlg, CkByteData &byteData);
// Calculates a CRC for the contents of a file. To compute the CRC used in the Zip
// file format, pass "CRC-32" for the crcAlg. (The crcAlg argument provides the
// flexibility to add additional CRC algorithms on an as-needed basis in the
// future.) A value of 0 is returned if the file is unable to be read. Given that
// there is a 1 in 4 billion chance of having an actual CRC of 0, an application
// might choose to react to a 0 return value by testing to see if the file can be
// opened and read.
unsigned long CrcFile(const char *crcAlg, const char *path);
// Calculates a CRC for the contents of a file. To compute the CRC used in the Zip
// file format, pass "CRC-32" for the crcAlg. (The crcAlg argument provides the
// flexibility to add additional CRC algorithms on an as-needed basis in the
// future.) A value of 0 is returned if the file is unable to be read. Given that
// there is a 1 in 4 billion chance of having an actual CRC of 0, an application
// might choose to react to a 0 return value by testing to see if the file can be
// opened and read.
CkTask *CrcFileAsync(const char *crcAlg, const char *path);
// Digitally signs a file and writes the digital signature to a separate output
// file (a PKCS#7 signature file). The input file (inFilePath) is unmodified. A
// certificate for signing must be specified by calling SetSigningCert or
// SetSigningCert2 prior to calling this method.
//
// This method is equivalent to CreateP7S. The CreateP7S method was added to
// clarify the format of the signature file that is created.
//
bool CreateDetachedSignature(const char *inFilePath, const char *sigFilePath);
// Digitally signs a file and creates a .p7m (PKCS #7 Message) file that contains
// both the signature and original file content. The input file (inFilename) is
// unmodified. A certificate for signing must be specified by calling
// SetSigningCert or SetSigningCert2 prior to calling this method.
//
// To sign with a particular hash algorithm, set the HashAlgorithm property. Valid
// hash algorithms for signing are "sha256", "sha1", "sha384", "sha512", "md5", and
// "md2".
//
// Note: The CreateP7M method creates an opaque signature. To do the same thing
// entirely in memory, your application would call any of the OpaqueSign* methods,
// such as OpaqueSignBd, OpaqueSignString, OpaqueSignStringENC, etc.
//
bool CreateP7M(const char *inFilename, const char *p7mPath);
// Digitally signs a file and creates a .p7m (PKCS #7 Message) file that contains
// both the signature and original file content. The input file (inFilename) is
// unmodified. A certificate for signing must be specified by calling
// SetSigningCert or SetSigningCert2 prior to calling this method.
//
// To sign with a particular hash algorithm, set the HashAlgorithm property. Valid
// hash algorithms for signing are "sha256", "sha1", "sha384", "sha512", "md5", and
// "md2".
//
// Note: The CreateP7M method creates an opaque signature. To do the same thing
// entirely in memory, your application would call any of the OpaqueSign* methods,
// such as OpaqueSignBd, OpaqueSignString, OpaqueSignStringENC, etc.
//
CkTask *CreateP7MAsync(const char *inFilename, const char *p7mPath);
// Digitally signs a file and creates a .p7s (PKCS #7 Signature) signature file.
// The input file (inFilename) is unmodified. The output file (p7sPath) contains only the
// signature and not the original data. A certificate for signing must be specified
// by calling SetSigningCert or SetSigningCert2 prior to calling this method.
//
// To sign with a particular hash algorithm, set the HashAlgorithm property. Valid
// hash algorithms for signing are "sha256", "sha1", "sha384", "sha512", "md5", and
// "md2".
//
// Note: The CreateP7S method creates a detached signature. To do the same thing
// entirely in memory, your application would call any of the Sign* methods, such
// as SignBdENC, SignString, SignStringENC, SignSbENC, etc.
//
bool CreateP7S(const char *inFilename, const char *p7sPath);
// Digitally signs a file and creates a .p7s (PKCS #7 Signature) signature file.
// The input file (inFilename) is unmodified. The output file (p7sPath) contains only the
// signature and not the original data. A certificate for signing must be specified
// by calling SetSigningCert or SetSigningCert2 prior to calling this method.
//
// To sign with a particular hash algorithm, set the HashAlgorithm property. Valid
// hash algorithms for signing are "sha256", "sha1", "sha384", "sha512", "md5", and
// "md2".
//
// Note: The CreateP7S method creates a detached signature. To do the same thing
// entirely in memory, your application would call any of the Sign* methods, such
// as SignBdENC, SignString, SignStringENC, SignSbENC, etc.
//
CkTask *CreateP7SAsync(const char *inFilename, const char *p7sPath);
// Decode binary data from an encoded string. The encoding can be set to any of the
// following strings: "base64", "hex", "quoted-printable", "url", "base32", "Q",
// "B", "url_rc1738", "url_rfc2396", "url_rfc3986", "url_oauth", "uu", "modBase64",
// or "html" (for HTML entity encoding).
bool Decode(const char *str, const char *encoding, CkByteData &outData);
// Decodes from an encoding back to the original string. The encoding can be set to any
// of the following strings: "base64", "hex", "quoted-printable", "url", "base32",
// "Q", "B", "url_rc1738", "url_rfc2396", "url_rfc3986", "url_oauth", "uu",
// "modBase64", or "html" (for HTML entity encoding).
bool DecodeString(const char *inStr, const char *charset, const char *encoding, CkString &outStr);
// Decodes from an encoding back to the original string. The encoding can be set to any
// of the following strings: "base64", "hex", "quoted-printable", "url", "base32",
// "Q", "B", "url_rc1738", "url_rfc2396", "url_rfc3986", "url_oauth", "uu",
// "modBase64", or "html" (for HTML entity encoding).
const char *decodeString(const char *inStr, const char *charset, const char *encoding);
// In-place decrypts the contents of bd. The minimal set of properties that
// should be set before decrypting are: CryptAlgorithm, SecretKey. Other properties
// that control encryption are: CipherMode, PaddingScheme, KeyLength, IV.
bool DecryptBd(CkBinData &bd);
// Decrypts a byte array and returns the unencrypted byte array. The property
// settings used when encrypting the data must match the settings when decrypting.
// Specifically, the CryptAlgorithm, CipherMode, PaddingScheme, KeyLength, IV, and
// SecretKey properties must match.
bool DecryptBytes(CkByteData &data, CkByteData &outData);
// Decrypts string-encoded encrypted data and returns the unencrypted byte array.
// Data encrypted with EncryptBytesENC can be decrypted with this method. The
// property settings used when encrypting the data must match the settings when
// decrypting. Specifically, the EncodingMode, CryptAlgorithm, CipherMode,
// PaddingScheme, KeyLength, IV, and SecretKey properties must match.
bool DecryptBytesENC(const char *str, CkByteData &outData);
// Encrypted data is passed to this method as an encoded string (base64, hex,
// etc.). This method first decodes the input data according to the EncodingMode
// property setting. It then decrypts and re-encodes using the EncodingMode
// setting, and returns the decrypted data in encoded string form.
bool DecryptEncoded(const char *encodedEncryptedData, CkString &outStr);
// Encrypted data is passed to this method as an encoded string (base64, hex,
// etc.). This method first decodes the input data according to the EncodingMode
// property setting. It then decrypts and re-encodes using the EncodingMode
// setting, and returns the decrypted data in encoded string form.
const char *decryptEncoded(const char *encodedEncryptedData);
// Decrypts the contents of bdIn to sbOut. The decrypted string is appended to sbOut.
// The minimal set of properties that should be set before ecrypting are:
// CryptAlgorithm, SecretKey. Other properties that control encryption are:
// CipherMode, PaddingScheme, KeyLength, IV.
bool DecryptSb(CkBinData &bdIn, CkStringBuilder &sbOut);
// Identical to DecryptStringENC, except the decrypts the cipherText and appends the
// decrypted string to the secureStr.
bool DecryptSecureENC(const char *cipherText, CkSecureString &secureStr);
// Decrypts a stream. Internally, the strm's source is read, decrypted, and the
// decrypted data written to the strm's sink. It does this in streaming fashion.
// Extremely large or even infinite streams can be decrypted with stable ungrowing
// memory usage.
bool DecryptStream(CkStream &strm);
// Decrypts a stream. Internally, the strm's source is read, decrypted, and the
// decrypted data written to the strm's sink. It does this in streaming fashion.
// Extremely large or even infinite streams can be decrypted with stable ungrowing
// memory usage.
CkTask *DecryptStreamAsync(CkStream &strm);
// The reverse of EncryptString.
//
// Decrypts encrypted byte data and returns the original string. The property
// settings used when encrypting the string must match the settings when
// decrypting. Specifically, the Charset, CryptAlgorithm, CipherMode,
// PaddingScheme, KeyLength, IV, and SecretKey properties must match.
//
bool DecryptString(CkByteData &data, CkString &outStr);
// The reverse of EncryptString.
//
// Decrypts encrypted byte data and returns the original string. The property
// settings used when encrypting the string must match the settings when
// decrypting. Specifically, the Charset, CryptAlgorithm, CipherMode,
// PaddingScheme, KeyLength, IV, and SecretKey properties must match.
//
const char *decryptString(CkByteData &data);
// The reverse of EncryptStringENC.
//
// Decrypts string-encoded encrypted data and returns the original string. The
// property settings used when encrypting the string must match the settings when
// decrypting. Specifically, the Charset, EncodingMode, CryptAlgorithm, CipherMode,
// PaddingScheme, KeyLength, IV, and SecretKey properties must match.
//
bool DecryptStringENC(const char *str, CkString &outStr);
// The reverse of EncryptStringENC.
//
// Decrypts string-encoded encrypted data and returns the original string. The
// property settings used when encrypting the string must match the settings when
// decrypting. Specifically, the Charset, EncodingMode, CryptAlgorithm, CipherMode,
// PaddingScheme, KeyLength, IV, and SecretKey properties must match.
//
const char *decryptStringENC(const char *str);
// Encode binary data to base64, hex, quoted-printable, or URL-encoding. The encoding
// can be set to any of the following strings: "base64", "hex", "quoted-printable"
// (or "qp"), "url", "base32", "Q", "B", "url_rc1738", "url_rfc2396",
// "url_rfc3986", "url_oauth", "uu", "modBase64", or "html" (for HTML entity
// encoding).
bool Encode(CkByteData &byteData, const char *encoding, CkString &outStr);
// Encode binary data to base64, hex, quoted-printable, or URL-encoding. The encoding
// can be set to any of the following strings: "base64", "hex", "quoted-printable"
// (or "qp"), "url", "base32", "Q", "B", "url_rc1738", "url_rfc2396",
// "url_rfc3986", "url_oauth", "uu", "modBase64", or "html" (for HTML entity
// encoding).
const char *encode(CkByteData &byteData, const char *encoding);
// Encode binary data to base64, hex, quoted-printable, or URL-encoding. The encoding
// can be set to any of the following strings: "base64", "hex", "quoted-printable",
// "url", "base32", "Q", "B", "url_rc1738", "url_rfc2396", "url_rfc3986",
// "url_oauth", "uu", "modBase64", or "html" (for HTML entity encoding).
//
// The pByteData points to the bytes to be encoded. The szByteData specifies the number of
// bytes to encode.
//
bool EncodeBytes(const void *pByteData, unsigned long szByteData, const char *encoding, CkString &outStr);
// Encode binary data to base64, hex, quoted-printable, or URL-encoding. The encoding
// can be set to any of the following strings: "base64", "hex", "quoted-printable",
// "url", "base32", "Q", "B", "url_rc1738", "url_rfc2396", "url_rfc3986",
// "url_oauth", "uu", "modBase64", or "html" (for HTML entity encoding).
//
// The pByteData points to the bytes to be encoded. The szByteData specifies the number of
// bytes to encode.
//
const char *encodeBytes(const void *pByteData, unsigned long szByteData, const char *encoding);
// Encodes an integer to N bytes and returns in the specified encoding. If littleEndian is
// true, then little endian byte ordering is used. Otherwise big-endian byte
// order is used.
bool EncodeInt(int value, int numBytes, bool littleEndian, const char *encoding, CkString &outStr);
// Encodes an integer to N bytes and returns in the specified encoding. If littleEndian is
// true, then little endian byte ordering is used. Otherwise big-endian byte
// order is used.
const char *encodeInt(int value, int numBytes, bool littleEndian, const char *encoding);
// Encodes a string. The toEncodingName can be set to any of the following strings: "base64",
// "hex", "quoted-printable", "url", "base32", "Q", "B", "url_rc1738",
// "url_rfc2396", "url_rfc3986", "url_oauth", "uu", "modBase64", or "html" (for
// HTML entity encoding). The charsetName is important, and usually you'll want to specify
// "ansi". For example, if the string "ABC" is to be encoded to "hex" using ANSI,
// the result will be "414243". However, if "unicode" is used, the result is
// "410042004300".
bool EncodeString(const char *strToEncode, const char *charsetName, const char *toEncodingName, CkString &outStr);
// Encodes a string. The toEncodingName can be set to any of the following strings: "base64",
// "hex", "quoted-printable", "url", "base32", "Q", "B", "url_rc1738",
// "url_rfc2396", "url_rfc3986", "url_oauth", "uu", "modBase64", or "html" (for
// HTML entity encoding). The charsetName is important, and usually you'll want to specify
// "ansi". For example, if the string "ABC" is to be encoded to "hex" using ANSI,
// the result will be "414243". However, if "unicode" is used, the result is
// "410042004300".
const char *encodeString(const char *strToEncode, const char *charsetName, const char *toEncodingName);
// In-place encrypts the contents of bd. The minimal set of properties that
// should be set before encrypting are: CryptAlgorithm, SecretKey. Other properties
// that control encryption are: CipherMode, PaddingScheme, KeyLength, IV. When
// decrypting, all property settings must match otherwise the result is garbled
// data.
bool EncryptBd(CkBinData &bd);
// Encrypts a byte array. The minimal set of properties that should be set before
// encrypting are: CryptAlgorithm, SecretKey. Other properties that control
// encryption are: CipherMode, PaddingScheme, KeyLength, IV. When decrypting, all
// property settings must match otherwise garbled data is returned.
bool EncryptBytes(CkByteData &data, CkByteData &outData);
// Encrypts a byte array and returns the encrypted data as an encoded (printable)
// string. The minimal set of properties that should be set before encrypting are:
// CryptAlgorithm, SecretKey, EncodingMode. Other properties that control
// encryption are: CipherMode, PaddingScheme, KeyLength, IV. When decrypting, all
// property settings must match otherwise garbled data is returned. The encoding of
// the string that is returned is controlled by the EncodingMode property, which
// can be set to "Base64", "QP", or "Hex".
bool EncryptBytesENC(CkByteData &data, CkString &outStr);
// Encrypts a byte array and returns the encrypted data as an encoded (printable)
// string. The minimal set of properties that should be set before encrypting are:
// CryptAlgorithm, SecretKey, EncodingMode. Other properties that control
// encryption are: CipherMode, PaddingScheme, KeyLength, IV. When decrypting, all
// property settings must match otherwise garbled data is returned. The encoding of
// the string that is returned is controlled by the EncodingMode property, which
// can be set to "Base64", "QP", or "Hex".
const char *encryptBytesENC(CkByteData &data);
// The input string is first decoded according to the encoding algorithm specified
// by the EncodingMode property (such as base64, hex, etc.) It is then encrypted
// according to the encryption algorithm specified by CryptAlgorithm. The resulting
// encrypted data is encoded (using EncodingMode) and returned.
bool EncryptEncoded(const char *str, CkString &outStr);
// The input string is first decoded according to the encoding algorithm specified
// by the EncodingMode property (such as base64, hex, etc.) It is then encrypted
// according to the encryption algorithm specified by CryptAlgorithm. The resulting
// encrypted data is encoded (using EncodingMode) and returned.
const char *encryptEncoded(const char *str);
// Encrypts the contents of sbIn to bdOut. The minimal set of properties that should
// be set before ecrypting are: CryptAlgorithm, SecretKey. Other properties that
// control encryption are: CipherMode, PaddingScheme, KeyLength, IV.
bool EncryptSb(CkStringBuilder &sbIn, CkBinData &bdOut);
// Identical to EncryptStringENC, except the clear-text contained within the secureStr
// is encrypted and returned.
bool EncryptSecureENC(CkSecureString &secureStr, CkString &outStr);
// Identical to EncryptStringENC, except the clear-text contained within the secureStr
// is encrypted and returned.
const char *encryptSecureENC(CkSecureString &secureStr);
// Encrypts a stream. Internally, the strm's source is read, encrypted, and the
// encrypted data written to the strm's sink. It does this in streaming fashion.
// Extremely large or even infinite streams can be encrypted with stable ungrowing
// memory usage.
bool EncryptStream(CkStream &strm);
// Encrypts a stream. Internally, the strm's source is read, encrypted, and the
// encrypted data written to the strm's sink. It does this in streaming fashion.
// Extremely large or even infinite streams can be encrypted with stable ungrowing
// memory usage.
CkTask *EncryptStreamAsync(CkStream &strm);
// Encrypts a string and returns the encrypted data as a byte array. The minimal
// set of properties that should be set before encrypting are: CryptAlgorithm,
// SecretKey, Charset. Other properties that control encryption are: CipherMode,
// PaddingScheme, KeyLength, IV. When decrypting, all property settings must match
// otherwise garbled data is returned. The Charset property controls the exact
// bytes that get encrypted. Languages such as VB.NET, C#, and Visual Basic work
// with Unicode strings, thus the input string is Unicode. If Unicode is to be
// encrypted (i.e. 2 bytes per character) then set the Charset property to
// "Unicode". To implicitly convert the string to another charset before the
// encryption is applied, set the Charset property to something else, such as
// "iso-8859-1", "Shift_JIS", "big5", "windows-1252", etc. The complete list of
// possible charsets is listed here:
// us-ascii
// unicode
// unicodefffe
// iso-8859-1
// iso-8859-2
// iso-8859-3
// iso-8859-4
// iso-8859-5
// iso-8859-6
// iso-8859-7
// iso-8859-8
// iso-8859-9
// iso-8859-13
// iso-8859-15
// windows-874
// windows-1250
// windows-1251
// windows-1252
// windows-1253
// windows-1254
// windows-1255
// windows-1256
// windows-1257
// windows-1258
// utf-7
// utf-8
// utf-32
// utf-32be
// shift_jis
// gb2312
// ks_c_5601-1987
// big5
// iso-2022-jp
// iso-2022-kr
// euc-jp
// euc-kr
// macintosh
// x-mac-japanese
// x-mac-chinesetrad
// x-mac-korean
// x-mac-arabic
// x-mac-hebrew
// x-mac-greek
// x-mac-cyrillic
// x-mac-chinesesimp
// x-mac-romanian
// x-mac-ukrainian
// x-mac-thai
// x-mac-ce
// x-mac-icelandic
// x-mac-turkish
// x-mac-croatian
// asmo-708
// dos-720
// dos-862
// ibm037
// ibm437
// ibm500
// ibm737
// ibm775
// ibm850
// ibm852
// ibm855
// ibm857
// ibm00858
// ibm860
// ibm861
// ibm863
// ibm864
// ibm865
// cp866
// ibm869
// ibm870
// cp875
// koi8-r
// koi8-u
bool EncryptString(const char *str, CkByteData &outData);
// Encrypts a string and returns the encrypted data as an encoded (printable)
// string. The minimal set of properties that should be set before encrypting are:
// CryptAlgorithm, SecretKey, Charset, and EncodingMode. Other properties that
// control encryption are: CipherMode, PaddingScheme, KeyLength, IV. When
// decrypting (with DecryptStringENC), all property settings must match otherwise
// garbled data is returned. The Charset property controls the exact bytes that get
// encrypted. Languages such as VB.NET, C#, and Visual Basic work with Unicode
// strings, thus the input string is Unicode. If Unicode is to be encrypted (i.e. 2
// bytes per character) then set the Charset property to "Unicode". To implicitly
// convert the string to another charset before the encryption is applied, set the
// Charset property to something else, such as "iso-8859-1", "Shift_JIS", "big5",
// "windows-1252", etc. (Refer to EncryptString for the complete list of charsets.)
//
// The EncodingMode property controls the encoding of the string that is returned.
// It can be set to "Base64", "QP", or "Hex".
//
bool EncryptStringENC(const char *str, CkString &outStr);
// Encrypts a string and returns the encrypted data as an encoded (printable)
// string. The minimal set of properties that should be set before encrypting are:
// CryptAlgorithm, SecretKey, Charset, and EncodingMode. Other properties that
// control encryption are: CipherMode, PaddingScheme, KeyLength, IV. When
// decrypting (with DecryptStringENC), all property settings must match otherwise
// garbled data is returned. The Charset property controls the exact bytes that get
// encrypted. Languages such as VB.NET, C#, and Visual Basic work with Unicode
// strings, thus the input string is Unicode. If Unicode is to be encrypted (i.e. 2
// bytes per character) then set the Charset property to "Unicode". To implicitly
// convert the string to another charset before the encryption is applied, set the
// Charset property to something else, such as "iso-8859-1", "Shift_JIS", "big5",
// "windows-1252", etc. (Refer to EncryptString for the complete list of charsets.)
//
// The EncodingMode property controls the encoding of the string that is returned.
// It can be set to "Base64", "QP", or "Hex".
//
const char *encryptStringENC(const char *str);
// Important: In the v9.5.0.49 release, a bug involving this method was introduced:
// The encoding is ignored and instead the encoding used is the current value of the
// EncodingMode property. The workaround is to make sure the EncodingMode property
// is set to the value of the desired output encoding. This problem will be fixed
// in v9.5.0.50.
//
// Identical to the GenerateSecretKey method, except it returns the binary secret
// key as a string encoded according to encoding, which may be "base64", "hex", "url",
// etc. Please see the documentation for GenerateSecretKey for more information.
//
bool GenEncodedSecretKey(const char *password, const char *encoding, CkString &outStr);
// Important: In the v9.5.0.49 release, a bug involving this method was introduced:
// The encoding is ignored and instead the encoding used is the current value of the
// EncodingMode property. The workaround is to make sure the EncodingMode property
// is set to the value of the desired output encoding. This problem will be fixed
// in v9.5.0.50.
//
// Identical to the GenerateSecretKey method, except it returns the binary secret
// key as a string encoded according to encoding, which may be "base64", "hex", "url",
// etc. Please see the documentation for GenerateSecretKey for more information.
//
const char *genEncodedSecretKey(const char *password, const char *encoding);
// Hashes a string to a byte array that has the same number of bits as the current
// value of the KeyLength property. For example, if KeyLength is equal to 128 bits,
// then a 16-byte array is returned. This can be used to set the SecretKey
// property. In order to decrypt, the SecretKey must match exactly. To use
// "password-based" encryption, the password is passed to this method to generate a
// binary secret key that can then be assigned to the SecretKey property.
//
// IMPORTANT: If you are trying to decrypt something encrypted by another party
// such that the other party provided you with the secret key, DO NOT use this
// method. This method is for transforming an arbitrary-length password into a
// binary secret key of the proper length. Please see this Chilkat blog post:
// Getting Started with AES Decryption
// <http://www.cknotes.com/?p=290>
//
bool GenerateSecretKey(const char *password, CkByteData &outData);
// Generates a random UUID string having standard UUID format, such as
// "de305d54-75b4-431b-adb2-eb6b9e546014".
//
// Note: This generates a "version 4 UUID" using random byte values. See RFC 4122.
//
bool GenerateUuid(CkString &outStr);
// Generates a random UUID string having standard UUID format, such as
// "de305d54-75b4-431b-adb2-eb6b9e546014".
//
// Note: This generates a "version 4 UUID" using random byte values. See RFC 4122.
//
const char *generateUuid(void);
// Generates numBytes random bytes and returns them as an encoded string. The encoding,
// such as base64, hex, etc. is controlled by the EncodingMode property.
bool GenRandomBytesENC(int numBytes, CkString &outStr);
// Generates numBytes random bytes and returns them as an encoded string. The encoding,
// such as base64, hex, etc. is controlled by the EncodingMode property.
const char *genRandomBytesENC(int numBytes);
// Returns the last certificate used for public-key decryption.
// The caller is responsible for deleting the object returned by this method.
CkCert *GetDecryptCert(void);
// Returns the authenticated additional data as an encoded string. The encoding
// argument can be set to any of the following strings: "base64", "hex",
// "quoted-printable", or "url".
//
// The Aad is used when the CipherMode is "gcm" (Galois/Counter Mode), which is a
// mode valid for symmetric ciphers that have a block size of 16 bytes, such as AES
// or Twofish.
//
bool GetEncodedAad(const char *encoding, CkString &outStr);
// Returns the authenticated additional data as an encoded string. The encoding
// argument can be set to any of the following strings: "base64", "hex",
// "quoted-printable", or "url".
//
// The Aad is used when the CipherMode is "gcm" (Galois/Counter Mode), which is a
// mode valid for symmetric ciphers that have a block size of 16 bytes, such as AES
// or Twofish.
//
const char *getEncodedAad(const char *encoding);
// Returns the authenticated additional data as an encoded string. The encoding
// argument can be set to any of the following strings: "base64", "hex",
// "quoted-printable", or "url".
//
// The Aad is used when the CipherMode is "gcm" (Galois/Counter Mode), which is a
// mode valid for symmetric ciphers that have a block size of 16 bytes, such as AES
// or Twofish.
//
const char *encodedAad(const char *encoding);
// Returns the authentication tag as an encoded string. The encoding argument may be
// set to any of the following strings: "base64", "hex", "quoted-printable", or
// "url". The authentication tag is an output of authenticated encryption modes
// such as GCM when encrypting. When GCM mode decrypting, the authenticate tag is
// set by the application and is the expected result.
//
// The authenticated tag plays a role when the CipherMode is "gcm" (Galois/Counter
// Mode), which is a mode valid for symmetric block ciphers that have a block size
// of 16 bytes, such as AES or Twofish.
//
bool GetEncodedAuthTag(const char *encoding, CkString &outStr);
// Returns the authentication tag as an encoded string. The encoding argument may be
// set to any of the following strings: "base64", "hex", "quoted-printable", or
// "url". The authentication tag is an output of authenticated encryption modes
// such as GCM when encrypting. When GCM mode decrypting, the authenticate tag is
// set by the application and is the expected result.
//
// The authenticated tag plays a role when the CipherMode is "gcm" (Galois/Counter
// Mode), which is a mode valid for symmetric block ciphers that have a block size
// of 16 bytes, such as AES or Twofish.
//
const char *getEncodedAuthTag(const char *encoding);
// Returns the authentication tag as an encoded string. The encoding argument may be
// set to any of the following strings: "base64", "hex", "quoted-printable", or
// "url". The authentication tag is an output of authenticated encryption modes
// such as GCM when encrypting. When GCM mode decrypting, the authenticate tag is
// set by the application and is the expected result.
//
// The authenticated tag plays a role when the CipherMode is "gcm" (Galois/Counter
// Mode), which is a mode valid for symmetric block ciphers that have a block size
// of 16 bytes, such as AES or Twofish.
//
const char *encodedAuthTag(const char *encoding);
// Returns the initialization vector as an encoded string. The encoding argument
// can be set to any of the following strings: "base64", "hex", "quoted-printable",
// or "url".
bool GetEncodedIV(const char *encoding, CkString &outIV);
// Returns the initialization vector as an encoded string. The encoding argument
// can be set to any of the following strings: "base64", "hex", "quoted-printable",
// or "url".
const char *getEncodedIV(const char *encoding);
// Returns the initialization vector as an encoded string. The encoding argument
// can be set to any of the following strings: "base64", "hex", "quoted-printable",
// or "url".
const char *encodedIV(const char *encoding);
// Returns the secret key as an encoded string. The encoding argument can be set to
// any of the following strings: "base64", "hex", "quoted-printable", or "url".
bool GetEncodedKey(const char *encoding, CkString &outKey);
// Returns the secret key as an encoded string. The encoding argument can be set to
// any of the following strings: "base64", "hex", "quoted-printable", or "url".
const char *getEncodedKey(const char *encoding);
// Returns the secret key as an encoded string. The encoding argument can be set to
// any of the following strings: "base64", "hex", "quoted-printable", or "url".
const char *encodedKey(const char *encoding);
// Returns the password-based encryption (PBE) salt bytes as an encoded string. The
// encoding argument can be set to any of the following strings: "base64", "hex",
// "quoted-printable", or "url".
bool GetEncodedSalt(const char *encoding, CkString &outStr);
// Returns the password-based encryption (PBE) salt bytes as an encoded string. The
// encoding argument can be set to any of the following strings: "base64", "hex",
// "quoted-printable", or "url".
const char *getEncodedSalt(const char *encoding);
// Returns the password-based encryption (PBE) salt bytes as an encoded string. The
// encoding argument can be set to any of the following strings: "base64", "hex",
// "quoted-printable", or "url".
const char *encodedSalt(const char *encoding);
// Returns the last certificate used when verifying a signature. This method is
// deprecated. Applications should instead call GetSignerCert with an index of 0.
// The caller is responsible for deleting the object returned by this method.
CkCert *GetLastCert(void);
// This method can be called after a digital signature is verified to retrieve the
// signing time of the Nth certificate used for signing. The 1st
// certificate/signing time is at index 0. The NumSignerCerts property contains the
// total number of signing certificates. (Typically, a single certificate is used
// in creating a digital signature.)
//
// Note: An application should first check to see if a signing date/time is
// available for the Nth certificate by calling the HasSignatureSigningTime method.
// The indices for which there is no signing time available should be skipped.
//
bool GetSignatureSigningTime(int index, SYSTEMTIME &outSysTime);
// The same as GetSignatureSigningTime, except the date/time is returned in RFC822
// string format.
bool GetSignatureSigningTimeStr(int index, CkString &outStr);
// The same as GetSignatureSigningTime, except the date/time is returned in RFC822
// string format.
const char *getSignatureSigningTimeStr(int index);
// The same as GetSignatureSigningTime, except the date/time is returned in RFC822
// string format.
const char *signatureSigningTimeStr(int index);
// Extracts the signed (authenticated) attributes for the Nth signer. In most
// cases, a signature has only one signer, and the signerIndex should equal 0 to specify
// the 1st (and only) signer.
//
// The binary PKCS7 is passed in pkcs7Der. On success, the sbJson will contain the signed
// attributes in JSON format.
//
// Sample JSON output:
// {
// "signedAttributes": [
// {
// "oid": "1.2.840.113549.1.9.3",
// "name": "Content Type"
// },
// {
// "oid": "1.2.840.113549.1.9.5",
// "name": "Signing Time"
// },
// {
// "oid": "1.2.840.113549.1.9.4",
// "name": "Message Digest"
// },
// {
// "oid": "1.2.840.113549.1.9.16.2.47",
// "name": "Signing Certificate V2"
// }
// ]
// }
//
bool GetSignedAttributes(int signerIndex, CkBinData &pkcs7Der, CkStringBuilder &sbJson);
// Gets the Nth certificate used for signing. This method can be called after
// verifying a digital signature to get the signer certs. The 1st certificate is at
// index 0. The NumSignerCerts property contains the total number of signing
// certificates. (Typically, a single certificate is used in creating a digital
// signature.)
// The caller is responsible for deleting the object returned by this method.
CkCert *GetSignerCert(int index);
// Returns the full certificate chain for the Nth certificate used to for signing.
// Indexing begins at 0.
// The caller is responsible for deleting the object returned by this method.
CkCertChain *GetSignerCertChain(int index);
// Hashes the the bytes contained in bd and returns the hash as an encoded
// string.
//
// The hash algorithm is specified by the HashAlgorithm property, The encoding is
// controlled by the EncodingMode property, which can be set to "base64", "hex",
// "base64url", or any of the encodings listed at the link below.
//
bool HashBdENC(CkBinData &bd, CkString &outStr);
// Hashes the the bytes contained in bd and returns the hash as an encoded
// string.
//
// The hash algorithm is specified by the HashAlgorithm property, The encoding is
// controlled by the EncodingMode property, which can be set to "base64", "hex",
// "base64url", or any of the encodings listed at the link below.
//
const char *hashBdENC(CkBinData &bd);
// Begin hashing a byte stream. Call this method to hash the 1st chunk. Additional
// chunks are hashed by calling HashMoreBytes 0 or more times followed by a final
// call to HashFinal (or HashFinalENC) to retrieve the result. The hash algorithm
// is selected by the HashAlgorithm property setting.
bool HashBeginBytes(CkByteData &data);
// Begin hashing a text stream. Call this method to hash the 1st chunk. Additional
// chunks are hashed by calling HashMoreString 0 or more times followed by a final
// call to HashFinal (or HashFinalENC) to retrieve the result. The hash algorithm
// is selected by the HashAlgorithm property setting.
bool HashBeginString(const char *strData);
// Hashes a byte array.
//
// The hash algorithm is specified by the HashAlgorithm property, The encoding is
// controlled by the EncodingMode property, which can be set to "base64", "hex",
// "base64url", or any of the encodings listed at the link below.
//
bool HashBytes(CkByteData &data, CkByteData &outData);
// Hashes a byte array and returns the hash as an encoded string.
//
// The hash algorithm is specified by the HashAlgorithm property, The encoding is
// controlled by the EncodingMode property, which can be set to "base64", "hex",
// "base64url", or any of the encodings listed at the link below.
//
bool HashBytesENC(CkByteData &data, CkString &outStr);
// Hashes a byte array and returns the hash as an encoded string.
//
// The hash algorithm is specified by the HashAlgorithm property, The encoding is
// controlled by the EncodingMode property, which can be set to "base64", "hex",
// "base64url", or any of the encodings listed at the link below.
//
const char *hashBytesENC(CkByteData &data);
// Hashes a file and returns the hash bytes.
//
// The hash algorithm is specified by the HashAlgorithm property,
//
// Any size file may be hashed because the file is hashed internally in streaming
// mode (keeping memory usage low and constant).
//
bool HashFile(const char *path, CkByteData &outBytes);
// Hashes a file and returns the hash bytes.
//
// The hash algorithm is specified by the HashAlgorithm property,
//
// Any size file may be hashed because the file is hashed internally in streaming
// mode (keeping memory usage low and constant).
//
CkTask *HashFileAsync(const char *path);
// Hashes a file and returns the hash as an encoded string.
//
// The hash algorithm is specified by the HashAlgorithm property, The encoding is
// controlled by the EncodingMode property, which can be set to "base64", "hex",
// "base64url", or any of the encodings listed at the link below.
//
// Any size file is supported because the file is hashed internally in streaming
// mode (keeping memory usage low and constant).
//
bool HashFileENC(const char *path, CkString &outStr);
// Hashes a file and returns the hash as an encoded string.
//
// The hash algorithm is specified by the HashAlgorithm property, The encoding is
// controlled by the EncodingMode property, which can be set to "base64", "hex",
// "base64url", or any of the encodings listed at the link below.
//
// Any size file is supported because the file is hashed internally in streaming
// mode (keeping memory usage low and constant).
//
const char *hashFileENC(const char *path);
// Hashes a file and returns the hash as an encoded string.
//
// The hash algorithm is specified by the HashAlgorithm property, The encoding is
// controlled by the EncodingMode property, which can be set to "base64", "hex",
// "base64url", or any of the encodings listed at the link below.
//
// Any size file is supported because the file is hashed internally in streaming
// mode (keeping memory usage low and constant).
//
CkTask *HashFileENCAsync(const char *path);
// Finalizes a multi-step hash computation and returns the hash bytes.
bool HashFinal(CkByteData &outBytes);
// Finalizes a multi-step hash computation and returns the hash bytes encoded
// according to the EncodingMode property setting.
bool HashFinalENC(CkString &outStr);
// Finalizes a multi-step hash computation and returns the hash bytes encoded
// according to the EncodingMode property setting.
const char *hashFinalENC(void);
// Adds more bytes to the hash currently under computation. (See HashBeginBytes)
bool HashMoreBytes(CkByteData &data);
// Adds more text to the hash currently under computation. (See HashBeginString)
bool HashMoreString(const char *strData);
// Hashes a string and returns a binary hash. The hash algorithm is specified by
// the HashAlgorithm property,
//
// The Charset property controls the character encoding of the string that is
// hashed. Languages such as VB.NET, C#, and Visual Basic work with Unicode
// strings. If it is desired to hash Unicode directly (2 bytes/char) then set the
// Charset property to "Unicode". To implicitly convert to another charset before
// hashing, set the Charset property to the desired charset. For example, if
// Charset is set to "iso-8859-1", the input string is first implicitly converted
// to iso-8859-1 (1 byte per character) before hashing. The full list fo supported
// charsets is listed in the EncryptString method description.
//
// IMPORTANT: Hash algorithms hash bytes. Changing the bytes passed to a hash
// algorithm changes the result. A character (i.e. a visible glyph) can have
// different byte representations. The byte representation is defined by the
// Charset. For example, 'A' in us-ascii is a single byte 0x41, whereas in utf-16
// it is 2 bytes (0x41 0x00). The byte representation should be explicitly
// specified, otherwise unexpected results may occur.
//
bool HashString(const char *str, CkByteData &outData);
// Hashes a string and returns the hash bytes as an encoded string.
//
// The hash algorithm is specified by the HashAlgorithm property, The encoding is
// controlled by the EncodingMode property, which can be set to "base64", "hex",
// "base64url", or any of the encodings listed at the link below.
//
// The Charset property controls the character encoding of the string that is
// hashed. Languages such as VB.NET, C#, and Visual Basic work with Unicode
// strings. If it is desired to hash Unicode directly (2 bytes/char) then set the
// Charset property to "Unicode". To implicitly convert to another charset before
// hashing, set the Charset property to the desired charset. For example, if
// Charset is set to "iso-8859-1", the input string is first implicitly converted
// to iso-8859-1 (1 byte per character) before hashing. The full list of supported
// charsets is listed in the EncryptString method description.
//
bool HashStringENC(const char *str, CkString &outStr);
// Hashes a string and returns the hash bytes as an encoded string.
//
// The hash algorithm is specified by the HashAlgorithm property, The encoding is
// controlled by the EncodingMode property, which can be set to "base64", "hex",
// "base64url", or any of the encodings listed at the link below.
//
// The Charset property controls the character encoding of the string that is
// hashed. Languages such as VB.NET, C#, and Visual Basic work with Unicode
// strings. If it is desired to hash Unicode directly (2 bytes/char) then set the
// Charset property to "Unicode". To implicitly convert to another charset before
// hashing, set the Charset property to the desired charset. For example, if
// Charset is set to "iso-8859-1", the input string is first implicitly converted
// to iso-8859-1 (1 byte per character) before hashing. The full list of supported
// charsets is listed in the EncryptString method description.
//
const char *hashStringENC(const char *str);
// This method can be called after a digital signature has been verified by one of
// the Verify* methods. Returns true if a signing time for the Nth certificate is
// available and can be retrieved by either the GetSignatureSigningTime or
// GetSignatureSigningTimeStr methods.
bool HasSignatureSigningTime(int index);
// Computes a keyed-Hash Message Authentication Code (HMAC or KHMAC), which is a
// type of message authentication code (MAC) calculated using a specific algorithm
// involving a cryptographic hash function in combination with a secret key. As
// with any MAC, it may be used to simultaneously verify both the data integrity
// and the authenticity of a message. Any iterative cryptographic hash function,
// such as MD5, SHA-1, SHA256, or any of the hash algorithms listed in the
// HashAlgorithm property, may be used in the calculation of an HMAC; the resulting
// MAC algorithm is termed HMAC-MD5, HMAC-SHA-1, etc. accordingly. The
// cryptographic strength of the HMAC depends upon the cryptographic strength of
// the underlying hash function, on the size and quality of the key and the size of
// the hash output length in bits.
//
// The secret key is set by calling one of the following methods prior to calling
// this method: SetHmacKeyBytes, SetHmacKeyEncoded, or SetHmacKeyString.
//
// The hash algorithm is specified by the HashAlgorithm property.
//
// Note: If using Chilkat v9.5.0.55 or later, update your programs to use MacBytes
// instead (with the MacAlgorithm property set to "hmac").
//
bool HmacBytes(CkByteData &inBytes, CkByteData &outHmac);
// Computes an HMAC using a secret key and hash algorithm. The result is encoded to
// a string using the encoding (base64, hex, etc.) specified by the EncodingMode
// property.
//
// The secret key is set by calling one of the following methods prior to calling
// this method: SetHmacKeyBytes, SetHmacKeyEncoded, or SetHmacKeyString.
//
// The hash algorithm is specified by the HashAlgorithm property.
//
// Note: If using Chilkat v9.5.0.55 or later, update your programs to use
// MacBytesEnc instead (with the MacAlgorithm property set to "hmac").
//
bool HmacBytesENC(CkByteData &inBytes, CkString &outEncodedHmac);
// Computes an HMAC using a secret key and hash algorithm. The result is encoded to
// a string using the encoding (base64, hex, etc.) specified by the EncodingMode
// property.
//
// The secret key is set by calling one of the following methods prior to calling
// this method: SetHmacKeyBytes, SetHmacKeyEncoded, or SetHmacKeyString.
//
// The hash algorithm is specified by the HashAlgorithm property.
//
// Note: If using Chilkat v9.5.0.55 or later, update your programs to use
// MacBytesEnc instead (with the MacAlgorithm property set to "hmac").
//
const char *hmacBytesENC(CkByteData &inBytes);
// Computes an HMAC using a secret key and hash algorithm.
//
// The secret key is set by calling one of the following methods prior to calling
// this method: SetHmacKeyBytes, SetHmacKeyEncoded, or SetHmacKeyString.
//
// The hash algorithm is specified by the HashAlgorithm property.
//
// Note: If using Chilkat v9.5.0.55 or later, update your programs to use MacString
// instead (with the MacAlgorithm property set to "hmac").
//
bool HmacString(const char *inText, CkByteData &outHmac);
// Computes an HMAC using a secret key and hash algorithm. The result is encoded to
// a string using the encoding (base64, hex, etc.) specified by the EncodingMode
// property.
//
// The secret key is set by calling one of the following methods prior to calling
// this method: SetHmacKeyBytes, SetHmacKeyEncoded, or SetHmacKeyString.
//
// The hash algorithm is specified by the HashAlgorithm property.
//
// Note: If using Chilkat v9.5.0.55 or later, update your programs to use
// MacStringENC instead (with the MacAlgorithm property set to "hmac").
//
bool HmacStringENC(const char *inText, CkString &outEncodedHmac);
// Computes an HMAC using a secret key and hash algorithm. The result is encoded to
// a string using the encoding (base64, hex, etc.) specified by the EncodingMode
// property.
//
// The secret key is set by calling one of the following methods prior to calling
// this method: SetHmacKeyBytes, SetHmacKeyEncoded, or SetHmacKeyString.
//
// The hash algorithm is specified by the HashAlgorithm property.
//
// Note: If using Chilkat v9.5.0.55 or later, update your programs to use
// MacStringENC instead (with the MacAlgorithm property set to "hmac").
//
const char *hmacStringENC(const char *inText);
// Implements RFC 4226: HOTP: An HMAC-Based One-Time Password Algorithm. The
// arguments to this method are:
// secret: The shared secret in an enocded representation such as base64, hex,
// ascii, etc.
// secretEnc: The encoding of the shared secret, such as "base64"
// counterHex: The 8-byte counter in hexidecimal format.
// numDigits: The number of decimal digits to return.
// truncOffset: Normally set this to -1 for dynamic truncation. Otherwise can be set
// in the range 0..15.
// hashAlg: Normally set to "sha1". Can be set to other hash algorithms such as
// "sha256", "sha512", etc.
bool Hotp(const char *secret, const char *secretEnc, const char *counterHex, int numDigits, int truncOffset, const char *hashAlg, CkString &outStr);
// Implements RFC 4226: HOTP: An HMAC-Based One-Time Password Algorithm. The
// arguments to this method are:
// secret: The shared secret in an enocded representation such as base64, hex,
// ascii, etc.
// secretEnc: The encoding of the shared secret, such as "base64"
// counterHex: The 8-byte counter in hexidecimal format.
// numDigits: The number of decimal digits to return.
// truncOffset: Normally set this to -1 for dynamic truncation. Otherwise can be set
// in the range 0..15.
// hashAlg: Normally set to "sha1". Can be set to other hash algorithms such as
// "sha256", "sha512", etc.
const char *hotp(const char *secret, const char *secretEnc, const char *counterHex, int numDigits, int truncOffset, const char *hashAlg);
// Decompresses data that was compressed with CompressBytes.
//
// This is a legacy method that should not be used in new development. It will not
// be marked as deprecated or removed from future APIs because existing
// applications may have data already compressed using CompressBytes.
//
// This method expects the input to begin with an 8-byte header composed of a
// 4-byte magic number (0xB394A7E1) and the 4-byte length of the uncompressed data.
//
bool InflateBytes(CkByteData &data, CkByteData &outData);
// The opposite of CompressBytesENC. The EncodingMode and CompressionAlgorithm
// properties should match what was used when compressing.
bool InflateBytesENC(const char *str, CkByteData &outData);
// The opposite of CompressString. The Charset and CompressionAlgorithm properties
// should match what was used when compressing.
bool InflateString(CkByteData &data, CkString &outStr);
// The opposite of CompressString. The Charset and CompressionAlgorithm properties
// should match what was used when compressing.
const char *inflateString(CkByteData &data);
// The opposite of CompressStringENC. The Charset, EncodingMode, and
// CompressionAlgorithm properties should match what was used when compressing.
bool InflateStringENC(const char *str, CkString &outStr);
// The opposite of CompressStringENC. The Charset, EncodingMode, and
// CompressionAlgorithm properties should match what was used when compressing.
const char *inflateStringENC(const char *str);
// Returns true if the component is unlocked.
bool IsUnlocked(void);
// Provides information about what transpired in the last method called. For many
// methods, there is no information. For some methods, details about what
// transpired can be obtained via LastJsonData. For example, after calling a method
// to verify a signature, the LastJsonData will return JSON with details about the
// algorithms used for signature verification.
// The caller is responsible for deleting the object returned by this method.
CkJsonObject *LastJsonData(void);
// Computes a Message Authentication Code on the bytes contained in bd, using the
// MAC algorithm specified in the MacAlgorithm property. The result is encoded to a
// string using the encoding (base64, hex, etc.) specified by the EncodingMode
// property.
bool MacBdENC(CkBinData &bd, CkString &outStr);
// Computes a Message Authentication Code on the bytes contained in bd, using the
// MAC algorithm specified in the MacAlgorithm property. The result is encoded to a
// string using the encoding (base64, hex, etc.) specified by the EncodingMode
// property.
const char *macBdENC(CkBinData &bd);
// Computes a Message Authentication Code using the MAC algorithm specified in the
// MacAlgorithm property.
bool MacBytes(CkByteData &inBytes, CkByteData &outBytes);
// Computes a Message Authentication Code using the MAC algorithm specified in the
// MacAlgorithm property. The result is encoded to a string using the encoding
// (base64, hex, etc.) specified by the EncodingMode property.
bool MacBytesENC(CkByteData &inBytes, CkString &outStr);
// Computes a Message Authentication Code using the MAC algorithm specified in the
// MacAlgorithm property. The result is encoded to a string using the encoding
// (base64, hex, etc.) specified by the EncodingMode property.
const char *macBytesENC(CkByteData &inBytes);
// Computes a Message Authentication Code using the MAC algorithm specified in the
// MacAlgorithm property.
bool MacString(const char *inText, CkByteData &outBytes);
// Computes a Message Authentication Code using the MAC algorithm specified in the
// MacAlgorithm property. The result is encoded to a string using the encoding
// (base64, hex, etc.) specified by the EncodingMode property.
bool MacStringENC(const char *inText, CkString &outStr);
// Computes a Message Authentication Code using the MAC algorithm specified in the
// MacAlgorithm property. The result is encoded to a string using the encoding
// (base64, hex, etc.) specified by the EncodingMode property.
const char *macStringENC(const char *inText);
// Matches MySQL's AES_DECRYPT function. strEncryptedHex is a hex-encoded string of the AES
// encrypted data. The return value is the original unencrypted string.
bool MySqlAesDecrypt(const char *strEncryptedHex, const char *strPassword, CkString &outStr);
// Matches MySQL's AES_DECRYPT function. strEncryptedHex is a hex-encoded string of the AES
// encrypted data. The return value is the original unencrypted string.
const char *mySqlAesDecrypt(const char *strEncryptedHex, const char *strPassword);
// Matches MySQL's AES_ENCRYPT function. The return value is a hex-encoded string
// of the encrypted data. The equivalent call in MySQL would look like this:
// HEX(AES_ENCRYPT('The quick brown fox jumps over the lazy dog','password'))
bool MySqlAesEncrypt(const char *strData, const char *strPassword, CkString &outStr);
// Matches MySQL's AES_ENCRYPT function. The return value is a hex-encoded string
// of the encrypted data. The equivalent call in MySQL would look like this:
// HEX(AES_ENCRYPT('The quick brown fox jumps over the lazy dog','password'))
const char *mySqlAesEncrypt(const char *strData, const char *strPassword);
// In-place signs the contents of bd. The contents of bd is replaced with the
// PKCS7/CMS format signature that embeds the data that was signed.
bool OpaqueSignBd(CkBinData &bd);
// In-place signs the contents of bd. The contents of bd is replaced with the
// PKCS7/CMS format signature that embeds the data that was signed.
CkTask *OpaqueSignBdAsync(CkBinData &bd);
// Digitally signs a byte array and returns a PKCS7/CMS format signature. This is a
// signature that contains both the original data as well as the signature. A
// certificate must be set by calling SetSigningCert prior to calling this method.
bool OpaqueSignBytes(CkByteData &data, CkByteData &outData);
// Digitally signs a byte array and returns a PKCS7/CMS format signature. This is a
// signature that contains both the original data as well as the signature. A
// certificate must be set by calling SetSigningCert prior to calling this method.
CkTask *OpaqueSignBytesAsync(CkByteData &data);
// Digitally signs a byte array and returns a PKCS7/CMS format signature in encoded
// string format (such as Base64 or hex). This is a signature that contains both
// the original data as well as the signature. A certificate must be set by calling
// SetSigningCert prior to calling this method. The EncodingMode property controls
// the output encoding, which can be "Base64", "QP","Hex", etc. (See the
// EncodingMode property.)
bool OpaqueSignBytesENC(CkByteData &data, CkString &outStr);
// Digitally signs a byte array and returns a PKCS7/CMS format signature in encoded
// string format (such as Base64 or hex). This is a signature that contains both
// the original data as well as the signature. A certificate must be set by calling
// SetSigningCert prior to calling this method. The EncodingMode property controls
// the output encoding, which can be "Base64", "QP","Hex", etc. (See the
// EncodingMode property.)
const char *opaqueSignBytesENC(CkByteData &data);
// Digitally signs a byte array and returns a PKCS7/CMS format signature in encoded
// string format (such as Base64 or hex). This is a signature that contains both
// the original data as well as the signature. A certificate must be set by calling
// SetSigningCert prior to calling this method. The EncodingMode property controls
// the output encoding, which can be "Base64", "QP","Hex", etc. (See the
// EncodingMode property.)
CkTask *OpaqueSignBytesENCAsync(CkByteData &data);
// Digitally signs a string and returns a PKCS7/CMS format signature. This is a
// signature that contains both the original data as well as the signature. A
// certificate must be set by calling SetSigningCert prior to calling this method.
// The Charset property controls the character encoding of the string that is
// signed. (Languages such as VB.NET, C#, and Visual Basic work with Unicode
// strings.) To sign Unicode data (2 bytes per char), set the Charset property to
// "Unicode". To implicitly convert the string to a mutlibyte charset such as
// "iso-8859-1", "Shift_JIS", "utf-8", or something else, then set the Charset
// property to the name of the charset before signing. The complete list of
// charsets is listed in the EncryptString method description.
bool OpaqueSignString(const char *str, CkByteData &outData);
// Digitally signs a string and returns a PKCS7/CMS format signature. This is a
// signature that contains both the original data as well as the signature. A
// certificate must be set by calling SetSigningCert prior to calling this method.
// The Charset property controls the character encoding of the string that is
// signed. (Languages such as VB.NET, C#, and Visual Basic work with Unicode
// strings.) To sign Unicode data (2 bytes per char), set the Charset property to
// "Unicode". To implicitly convert the string to a mutlibyte charset such as
// "iso-8859-1", "Shift_JIS", "utf-8", or something else, then set the Charset
// property to the name of the charset before signing. The complete list of
// charsets is listed in the EncryptString method description.
CkTask *OpaqueSignStringAsync(const char *str);
// Digitally signs a string and returns a PKCS7/CMS format signature in encoded
// string format (such as base64 or hex). This is a signature that contains both
// the original data as well as the signature. A certificate must be set by calling
// SetSigningCert prior to calling this method. The Charset property controls the
// character encoding of the string that is signed. (Languages such as VB.NET, C#,
// and Visual Basic work with Unicode strings.) To sign Unicode data (2 bytes per
// char), set the Charset property to "Unicode". To implicitly convert the string
// to a mutlibyte charset such as "iso-8859-1", "Shift_JIS", "utf-8", or something
// else, then set the Charset property to the name of the charset before signing.
// The complete list of charsets is listed in the EncryptString method description.
//
// The EncodingMode property controls the output encoding, which can be "Base64",
// "QP","Hex", etc. (See the EncodingMode property.)
//
bool OpaqueSignStringENC(const char *str, CkString &outStr);
// Digitally signs a string and returns a PKCS7/CMS format signature in encoded
// string format (such as base64 or hex). This is a signature that contains both
// the original data as well as the signature. A certificate must be set by calling
// SetSigningCert prior to calling this method. The Charset property controls the
// character encoding of the string that is signed. (Languages such as VB.NET, C#,
// and Visual Basic work with Unicode strings.) To sign Unicode data (2 bytes per
// char), set the Charset property to "Unicode". To implicitly convert the string
// to a mutlibyte charset such as "iso-8859-1", "Shift_JIS", "utf-8", or something
// else, then set the Charset property to the name of the charset before signing.
// The complete list of charsets is listed in the EncryptString method description.
//
// The EncodingMode property controls the output encoding, which can be "Base64",
// "QP","Hex", etc. (See the EncodingMode property.)
//
const char *opaqueSignStringENC(const char *str);
// Digitally signs a string and returns a PKCS7/CMS format signature in encoded
// string format (such as base64 or hex). This is a signature that contains both
// the original data as well as the signature. A certificate must be set by calling
// SetSigningCert prior to calling this method. The Charset property controls the
// character encoding of the string that is signed. (Languages such as VB.NET, C#,
// and Visual Basic work with Unicode strings.) To sign Unicode data (2 bytes per
// char), set the Charset property to "Unicode". To implicitly convert the string
// to a mutlibyte charset such as "iso-8859-1", "Shift_JIS", "utf-8", or something
// else, then set the Charset property to the name of the charset before signing.
// The complete list of charsets is listed in the EncryptString method description.
//
// The EncodingMode property controls the output encoding, which can be "Base64",
// "QP","Hex", etc. (See the EncodingMode property.)
//
CkTask *OpaqueSignStringENCAsync(const char *str);
// In-place verifies and unwraps the PKCS7/CMS contents of bd. If the signature
// is verified, the contents of bd will be replaced with the original data, and
// the method returns true. If the signature is not verified, then the contents
// of bd remain unchanged and the method returns false.
//
// Note: The signer certificates can be retrieved after any Verify* method call by
// using the NumSignerCerts property and the GetSignerCert method.
//
bool OpaqueVerifyBd(CkBinData &bd);
// Verifies an opaque signature and returns the original data. If the signature
// verification fails, the returned data will be 0 bytes in length.
//
// Note: The signer certificates can be retrieved after any Verify* method call by
// using the NumSignerCerts property and the GetSignerCert method.
//
bool OpaqueVerifyBytes(CkByteData &p7s, CkByteData &outOriginal);
// Verifies an opaque signature (encoded in string form) and returns the original
// data. If the signature verification fails, the returned data will be 0 bytes in
// length.
//
// Note: The signer certificates can be retrieved after any Verify* method call by
// using the NumSignerCerts property and the GetSignerCert method.
//
bool OpaqueVerifyBytesENC(const char *p7s, CkByteData &outOriginal);
// Verifies an opaque signature and returns the original string. If the signature
// verification fails, the returned string will be 0 characters in length.
//
// Note: The signer certificates can be retrieved after any Verify* method call by
// using the NumSignerCerts property and the GetSignerCert method.
//
bool OpaqueVerifyString(CkByteData &p7s, CkString &outOriginal);
// Verifies an opaque signature and returns the original string. If the signature
// verification fails, the returned string will be 0 characters in length.
//
// Note: The signer certificates can be retrieved after any Verify* method call by
// using the NumSignerCerts property and the GetSignerCert method.
//
const char *opaqueVerifyString(CkByteData &p7s);
// Verifies an opaque signature (encoded in string form) and returns the original
// data string. If the signature verification fails, the returned string will be 0
// characters in length.
//
// Note: The signer certificates can be retrieved after any Verify* method call by
// using the NumSignerCerts property and the GetSignerCert method.
//
bool OpaqueVerifyStringENC(const char *p7s, CkString &outOriginal);
// Verifies an opaque signature (encoded in string form) and returns the original
// data string. If the signature verification fails, the returned string will be 0
// characters in length.
//
// Note: The signer certificates can be retrieved after any Verify* method call by
// using the NumSignerCerts property and the GetSignerCert method.
//
const char *opaqueVerifyStringENC(const char *p7s);
// Implements the PBKDF1 algorithm (Password Based Key Derivation Function #1). The
// password is converted to the character encoding represented by charset before being
// passed (internally) to the key derivation function. The hashAlg may be "md5",
// "sha1", "md2", etc. The salt should be random data at least 8 bytes (64 bits) in
// length. (The GenRandomBytesENC method is good for generating a random salt
// value.) The iterationCount should be no less than 1000. The length (in bits) of the
// derived key output by this method is controlled by outputKeyBitLen. The encoding argument may
// be "base64", "hex", etc. It controls the encoding of the output, and the
// expected encoding of the salt. The derived key is returned.
//
// Note: Starting in version 9.5.0.47, if the charset is set to one of the keywords
// "hex" or "base64", then the password will be considered binary data that is hex
// or base64 encoded. The bytes will be decoded and used directly as a binary
// password.
//
bool Pbkdf1(const char *password, const char *charset, const char *hashAlg, const char *salt, int iterationCount, int outputKeyBitLen, const char *encoding, CkString &outStr);
// Implements the PBKDF1 algorithm (Password Based Key Derivation Function #1). The
// password is converted to the character encoding represented by charset before being
// passed (internally) to the key derivation function. The hashAlg may be "md5",
// "sha1", "md2", etc. The salt should be random data at least 8 bytes (64 bits) in
// length. (The GenRandomBytesENC method is good for generating a random salt
// value.) The iterationCount should be no less than 1000. The length (in bits) of the
// derived key output by this method is controlled by outputKeyBitLen. The encoding argument may
// be "base64", "hex", etc. It controls the encoding of the output, and the
// expected encoding of the salt. The derived key is returned.
//
// Note: Starting in version 9.5.0.47, if the charset is set to one of the keywords
// "hex" or "base64", then the password will be considered binary data that is hex
// or base64 encoded. The bytes will be decoded and used directly as a binary
// password.
//
const char *pbkdf1(const char *password, const char *charset, const char *hashAlg, const char *salt, int iterationCount, int outputKeyBitLen, const char *encoding);
// Implements the PBKDF2 algorithm (Password Based Key Derivation Function #2). The
// password is converted to the character encoding represented by charset before being
// passed (internally) to the key derivation function. The hashAlg may be "sha256",
// "sha384", "sha512", "md5", "sha1", "md2", or any hash algorithm listed in the
// HashAlgorithm property. The salt should be random data at least 8 bytes (64
// bits) in length. (The GenRandomBytesENC method is good for generating a random
// salt value.) The iterationCount should be no less than 1000. The length (in bits) of the
// derived key output by this method is controlled by outputKeyBitLen. The encoding argument may
// be "base64", "hex", etc. It controls the encoding of the output, and the
// expected encoding of the salt. The derived key is returned.
//
// Note: The PBKDF2 function (internally) utilizes a PRF that is a pseudorandom
// function that is a keyed HMAC. The hash algorithm specified by hashAlg determines
// this PRF. If hashAlg is "SHA256", then HMAC-SHA256 is used for the PRF. Likewise,
// if the hash function is "SHA1", then HMAC-SHA1 is used. HMAC can be used with
// any hash algorithm.
//
// Note: Starting in version 9.5.0.47, if the charset is set to one of the keywords
// "hex" or "base64", then the password will be considered binary data that is hex
// or base64 encoded. The bytes will be decoded and used directly as a binary
// password.
//
bool Pbkdf2(const char *password, const char *charset, const char *hashAlg, const char *salt, int iterationCount, int outputKeyBitLen, const char *encoding, CkString &outStr);
// Implements the PBKDF2 algorithm (Password Based Key Derivation Function #2). The
// password is converted to the character encoding represented by charset before being
// passed (internally) to the key derivation function. The hashAlg may be "sha256",
// "sha384", "sha512", "md5", "sha1", "md2", or any hash algorithm listed in the
// HashAlgorithm property. The salt should be random data at least 8 bytes (64
// bits) in length. (The GenRandomBytesENC method is good for generating a random
// salt value.) The iterationCount should be no less than 1000. The length (in bits) of the
// derived key output by this method is controlled by outputKeyBitLen. The encoding argument may
// be "base64", "hex", etc. It controls the encoding of the output, and the
// expected encoding of the salt. The derived key is returned.
//
// Note: The PBKDF2 function (internally) utilizes a PRF that is a pseudorandom
// function that is a keyed HMAC. The hash algorithm specified by hashAlg determines
// this PRF. If hashAlg is "SHA256", then HMAC-SHA256 is used for the PRF. Likewise,
// if the hash function is "SHA1", then HMAC-SHA1 is used. HMAC can be used with
// any hash algorithm.
//
// Note: Starting in version 9.5.0.47, if the charset is set to one of the keywords
// "hex" or "base64", then the password will be considered binary data that is hex
// or base64 encoded. The bytes will be decoded and used directly as a binary
// password.
//
const char *pbkdf2(const char *password, const char *charset, const char *hashAlg, const char *salt, int iterationCount, int outputKeyBitLen, const char *encoding);
// Extracts the signature digest contained within a PKCS7 signature. The PKCS7 is
// passed in the encoding determined by the EncodingMode property (such as base64,
// hex, etc.) an the signature digest is returned in the same encoding.
bool Pkcs7ExtractDigest(int signerIndex, const char *pkcs7, CkString &outStr);
// Extracts the signature digest contained within a PKCS7 signature. The PKCS7 is
// passed in the encoding determined by the EncodingMode property (such as base64,
// hex, etc.) an the signature digest is returned in the same encoding.
const char *pkcs7ExtractDigest(int signerIndex, const char *pkcs7);
// Sets the initialization vector to a random value.
void RandomizeIV(void);
// Sets the secret key to a random value.
void RandomizeKey(void);
// Convenience method to read an entire file and return as a byte array.
bool ReadFile(const char *filename, CkByteData &outBytes);
// Provides a means for converting from one encoding to another (such as base64 to
// hex). This is helpful for programming environments where byte arrays are a real
// pain-in-the-***. The fromEncoding and toEncoding may be (case-insensitive) "Base64",
// "modBase64", "Base32", "Base58", "UU", "QP" (for quoted-printable), "URL" (for
// url-encoding), "Hex", "Q", "B", "url_oauth", "url_rfc1738", "url_rfc2396", and
// "url_rfc3986".
bool ReEncode(const char *encodedData, const char *fromEncoding, const char *toEncoding, CkString &outStr);
// Provides a means for converting from one encoding to another (such as base64 to
// hex). This is helpful for programming environments where byte arrays are a real
// pain-in-the-***. The fromEncoding and toEncoding may be (case-insensitive) "Base64",
// "modBase64", "Base32", "Base58", "UU", "QP" (for quoted-printable), "URL" (for
// url-encoding), "Hex", "Q", "B", "url_oauth", "url_rfc1738", "url_rfc2396", and
// "url_rfc3986".
const char *reEncode(const char *encodedData, const char *fromEncoding, const char *toEncoding);
#if defined(CK_CSP_INCLUDED)
// (Only applies to the Microsoft Windows OS) Sets the Cryptographic Service
// Provider (CSP) to be used for PKI public-key encryption / signing, or public-key
// decryption / signature verification.
//
// This is not commonly used becaues the default Microsoft CSP is typically
// appropriate. One instance where SetCSP is necessary is when using the Crypto-Pro
// CSP for the GOST R 34.10-2001 and GOST R 34.10-94 providers.
//
bool SetCSP(CkCsp &csp);
#endif
// Sets the digital certificate to be used for decryption when the CryptAlgorithm
// property is set to "PKI". A private key is required for decryption. Because this
// method only specifies the certificate, a prerequisite is that the certificate w/
// private key must have been pre-installed on the computer. Private keys are
// stored in the Windows Protected Store (either a user account specific store, or
// the system-wide store). The Chilkat component will automatically locate and find
// the certificate's corresponding private key from the protected store when
// decrypting.
bool SetDecryptCert(CkCert &cert);
// Sets the digital certificate to be used for decryption when the CryptAlgorithm
// property is set to "PKI". The private key is supplied in the 2nd argument to
// this method, so there is no requirement that the certificate be pre-installed on
// a computer before decrypting (if this method is called).
bool SetDecryptCert2(CkCert &cert, CkPrivateKey &key);
// Sets the authenticated additional data from an encoded string. The authenticated
// additional data (AAD), if any, is used in authenticated encryption modes such as
// GCM. The aadStr argument can be set to any of the following strings: "base64",
// "hex", "quoted-printable", "ascii", or "url".
//
// The Aad is used when the CipherMode is "gcm" (Galois/Counter Mode), which is a
// mode valid for symmetric ciphers that have a block size of 16 bytes, such as AES
// or Twofish.
//
bool SetEncodedAad(const char *aadStr, const char *encoding);
// Sets the expected authenticated tag from an encoded string. The authenticated
// tag is used in authenticated encryption modes such as GCM. An application would
// set the expected authenticated tag prior to decrypting. The authTagStr argument can be
// set to any of the following strings: "base64", "hex", "quoted-printable",
// "ascii", or "url".
//
// The authenticated tag plays a role when the CipherMode is "gcm" (Galois/Counter
// Mode), which is a mode valid for symmetric block ciphers that have a block size
// of 16 bytes, such as AES or Twofish.
//
bool SetEncodedAuthTag(const char *authTagStr, const char *encoding);
// Sets the initialization vector from an encoded string. The encoding argument can
// be set to any of the following strings: "base64", "hex", "quoted-printable",
// "ascii", or "url".
void SetEncodedIV(const char *ivStr, const char *encoding);
// Sets the secret key from an encoded string. The encoding argument can be set to
// any of the following strings: "base64", "hex", "quoted-printable", "ascii", or
// "url".
void SetEncodedKey(const char *keyStr, const char *encoding);
// Sets the password-based encryption (PBE) salt bytes from an encoded string. The
// encoding argument can be set to any of the following strings: "base64", "hex",
// "quoted-printable", "ascii", or "url".
void SetEncodedSalt(const char *saltStr, const char *encoding);
// Tells the encryption library to use a specific digital certificate for
// public-key encryption. To encrypt with multiple certificates, call
// AddEncryptCert once for each certificate. (Calling this method is the equivalent
// of calling ClearEncryptCerts followed by AddEncryptCert.)
bool SetEncryptCert(CkCert &cert);
// Sets the HMAC key to be used for one of the HMAC methods.
//
// Note: If using Chilkat v9.5.0.55 or later, update your programs to use
// SetMacKeyBytes instead.
//
void SetHmacKeyBytes(CkByteData &keyBytes);
// Sets the secret key to be used for one of the HMAC methods. The encoding can be set
// to any of the following strings: "base64", "hex", "quoted-printable", or "url".
//
// Note: If using Chilkat v9.5.0.55 or later, update your programs to use
// SetMacKeyEncoded instead.
//
void SetHmacKeyEncoded(const char *key, const char *encoding);
// Sets the MAC key to be used for one of the HMAC methods.
//
// Note: If using Chilkat v9.5.0.55 or later, update your programs to use
// SetMacKeyString instead.
//
void SetHmacKeyString(const char *key);
// Sets the initialization vector for a symmetric encryption algorithm (such as
// AES, BlowFish, TwoFish, DES, etc.). IV's are used in CBC mode
// (Cipher-Block-Chaining), but are not used in ECB mode (Electronic Cookbook). The
// length of the IV should equal the block size of the algorithm. (It is not equal
// to the key length). For AES and TwoFish, the block size (and thus IV size) is
// always 16 bytes. For Blowfish it's 8 bytes. For DES and 3DES it's 8 bytes.
void SetIV(const void *pByteData, unsigned long szByteData);
// Sets the MAC key to be used for one of the Mac methods.
bool SetMacKeyBytes(CkByteData &keyBytes);
// Sets the MAC key to be used for one of the Mac methods. The encoding can be set to
// any of the following strings: "base64", "hex", "quoted-printable", or "url".
bool SetMacKeyEncoded(const char *key, const char *encoding);
// Sets the MAC key to be used for one of the Mac methods.
bool SetMacKeyString(const char *key);
// Sets the value of the SecretKey property.
void SetSecretKey(const void *pByteData, unsigned long szByteData);
// Accepts a password string and (internally) generates a binary secret key of the
// appropriate bit length and sets the SecretKey property. This method should only
// be used if you are using Chilkat for both encryption and decryption because the
// password-to-secret-key algorithm would need to be identical for the decryption
// to match the encryption.
//
// There is no minimum or maximum password length. The password string is
// transformed to a binary secret key by computing the MD5 digest (of the utf-8
// password) to obtain 16 bytes. If the KeyLength is greater than 16 bytes, then
// the MD5 digest of the Base64 encoding of the utf-8 password is added. A max of
// 32 bytes of key material is generated, and this is truncated to the actual
// KeyLength required. The example below shows how to manually duplicate the
// computation.
//
void SetSecretKeyViaPassword(const char *password);
// Specifies a certificate to be used when creating PKCS7 digital signatures.
// Signing requires both a certificate and private key. In this case, the private
// key is implicitly specified if the certificate originated from a PFX that
// contains the corresponding private key, or if on a Windows-based computer where
// the certificate and corresponding private key are pre-installed. (If a PFX file
// is used, it is provided via the AddPfxSourceFile or AddPfxSourceData methods.)
bool SetSigningCert(CkCert &cert);
// Specifies a digital certificate and private key to be used for creating PKCS7
// digital signatures.
bool SetSigningCert2(CkCert &cert, CkPrivateKey &privateKey);
// Sets the timestamp authority (TSA) options for cases where a CAdES-T signature
// is to be created. The http is used to send the requests, and it allows for
// connection related settings and timeouts to be set. For example, if HTTP or
// SOCKS proxies are required, these features can be specified on the http.
void SetTsaHttpObj(CkHttp &http);
// Sets the digital certificate to be used in verifying a signature.
bool SetVerifyCert(CkCert &cert);
// Digitally signs the contents of dataToSign and returns the detached digital signature
// in an encoded string (according to the EncodingMode property setting).
bool SignBdENC(CkBinData &dataToSign, CkString &outStr);
// Digitally signs the contents of dataToSign and returns the detached digital signature
// in an encoded string (according to the EncodingMode property setting).
const char *signBdENC(CkBinData &dataToSign);
// Digitally signs the contents of dataToSign and returns the detached digital signature
// in an encoded string (according to the EncodingMode property setting).
CkTask *SignBdENCAsync(CkBinData &dataToSign);
// Digitally signs a byte array and returns the detached digital signature. A
// certificate must be set by calling SetSigningCert prior to calling this method.
bool SignBytes(CkByteData &data, CkByteData &outData);
// Digitally signs a byte array and returns the detached digital signature. A
// certificate must be set by calling SetSigningCert prior to calling this method.
CkTask *SignBytesAsync(CkByteData &data);
// Digitally signs a byte array and returns the detached digital signature encoded
// as a printable string. A certificate must be set by calling SetSigningCert prior
// to calling this method. The EncodingMode property controls the output encoding,
// which can be "Base64", "QP", or "Hex".
bool SignBytesENC(CkByteData &data, CkString &outStr);
// Digitally signs a byte array and returns the detached digital signature encoded
// as a printable string. A certificate must be set by calling SetSigningCert prior
// to calling this method. The EncodingMode property controls the output encoding,
// which can be "Base64", "QP", or "Hex".
const char *signBytesENC(CkByteData &data);
// Digitally signs a byte array and returns the detached digital signature encoded
// as a printable string. A certificate must be set by calling SetSigningCert prior
// to calling this method. The EncodingMode property controls the output encoding,
// which can be "Base64", "QP", or "Hex".
CkTask *SignBytesENCAsync(CkByteData &data);
// Digitally signs a the contents of sb and returns the PKCS7 detached digital
// signature as an encoded string according to the EncodingMode property setting.
bool SignSbENC(CkStringBuilder &sb, CkString &outStr);
// Digitally signs a the contents of sb and returns the PKCS7 detached digital
// signature as an encoded string according to the EncodingMode property setting.
const char *signSbENC(CkStringBuilder &sb);
// Digitally signs a the contents of sb and returns the PKCS7 detached digital
// signature as an encoded string according to the EncodingMode property setting.
CkTask *SignSbENCAsync(CkStringBuilder &sb);
// Digitally signs a string and returns the detached digital signature. A
// certificate must be set by calling SetSigningCert prior to calling this method.
// The Charset property controls the character encoding of the string that is
// signed. (Languages such as VB.NET, C#, and Visual Basic work with Unicode
// strings.) To sign Unicode data (2 bytes per char), set the Charset property to
// "Unicode". To implicitly convert the string to a mutlibyte charset such as
// "iso-8859-1", "Shift_JIS", "utf-8", or something else, then set the Charset
// property to the name of the charset before signing. The complete list of
// charsets is listed in the EncryptString method description.
bool SignString(const char *str, CkByteData &outData);
// Digitally signs a string and returns the detached digital signature. A
// certificate must be set by calling SetSigningCert prior to calling this method.
// The Charset property controls the character encoding of the string that is
// signed. (Languages such as VB.NET, C#, and Visual Basic work with Unicode
// strings.) To sign Unicode data (2 bytes per char), set the Charset property to
// "Unicode". To implicitly convert the string to a mutlibyte charset such as
// "iso-8859-1", "Shift_JIS", "utf-8", or something else, then set the Charset
// property to the name of the charset before signing. The complete list of
// charsets is listed in the EncryptString method description.
CkTask *SignStringAsync(const char *str);
// Digitally signs a string and returns the PKCS7 detached digital signature as an
// encoded string. A certificate must be set by calling SetSigningCert prior to
// calling this method. The Charset property controls the character encoding of the
// string that is signed. (Languages such as VB.NET, C#, and Visual Basic work with
// Unicode strings.) To sign Unicode data (2 bytes per char), set the Charset
// property to "Unicode". To implicitly convert the string to a mutlibyte charset
// such as "iso-8859-1", "Shift_JIS", "utf-8", or something else, then set the
// Charset property to the name of the charset before signing. The complete list of
// charsets is listed in the EncryptString method description.
//
// The encoding of the output string is controlled by the EncodingMode property,
// which can be set to "Base64", "QP", or "Hex".
//
bool SignStringENC(const char *str, CkString &outStr);
// Digitally signs a string and returns the PKCS7 detached digital signature as an
// encoded string. A certificate must be set by calling SetSigningCert prior to
// calling this method. The Charset property controls the character encoding of the
// string that is signed. (Languages such as VB.NET, C#, and Visual Basic work with
// Unicode strings.) To sign Unicode data (2 bytes per char), set the Charset
// property to "Unicode". To implicitly convert the string to a mutlibyte charset
// such as "iso-8859-1", "Shift_JIS", "utf-8", or something else, then set the
// Charset property to the name of the charset before signing. The complete list of
// charsets is listed in the EncryptString method description.
//
// The encoding of the output string is controlled by the EncodingMode property,
// which can be set to "Base64", "QP", or "Hex".
//
const char *signStringENC(const char *str);
// Digitally signs a string and returns the PKCS7 detached digital signature as an
// encoded string. A certificate must be set by calling SetSigningCert prior to
// calling this method. The Charset property controls the character encoding of the
// string that is signed. (Languages such as VB.NET, C#, and Visual Basic work with
// Unicode strings.) To sign Unicode data (2 bytes per char), set the Charset
// property to "Unicode". To implicitly convert the string to a mutlibyte charset
// such as "iso-8859-1", "Shift_JIS", "utf-8", or something else, then set the
// Charset property to the name of the charset before signing. The complete list of
// charsets is listed in the EncryptString method description.
//
// The encoding of the output string is controlled by the EncodingMode property,
// which can be set to "Base64", "QP", or "Hex".
//
CkTask *SignStringENCAsync(const char *str);
// Convert a string to a byte array where the characters are encoded according to
// the charset specified.
bool StringToBytes(const char *inStr, const char *charset, CkByteData &outBytes);
// Implements RFC 6238: TOTP: Time-Based One-Time Password Algorithm. The arguments
// to this method are:
// secret: The shared secret in an enocded representation such as base64, hex,
// ascii, etc.
// secretEnc: The encoding of the shared secret, such as "base64"
// t0: The Unix time to start counting time steps. It is a number in decimal
// string form. A Unix time is the number of seconds elapsed since midnight UTC of
// January 1, 1970. "0" is a typical value used for this argument.
// tNow: The current Unix time in decimal string form. To use the current
// system date/time, pass an empty string for this argument.
// tStep: The time step in seconds. A typical value is 30. Note: Both client and
// server must pre-agree on the secret, the t0, and the tStep.
// numDigits: The number of decimal digits to return.
// truncOffset: Normally set this to -1 for dynamic truncation. Otherwise can be set
// in the range 0..15.
// hashAlg: Normally set to "sha1". Can be set to other hash algorithms such as
// "sha256", "sha512", etc.
bool Totp(const char *secret, const char *secretEnc, const char *t0, const char *tNow, int tStep, int numDigits, int truncOffset, const char *hashAlg, CkString &outStr);
// Implements RFC 6238: TOTP: Time-Based One-Time Password Algorithm. The arguments
// to this method are:
// secret: The shared secret in an enocded representation such as base64, hex,
// ascii, etc.
// secretEnc: The encoding of the shared secret, such as "base64"
// t0: The Unix time to start counting time steps. It is a number in decimal
// string form. A Unix time is the number of seconds elapsed since midnight UTC of
// January 1, 1970. "0" is a typical value used for this argument.
// tNow: The current Unix time in decimal string form. To use the current
// system date/time, pass an empty string for this argument.
// tStep: The time step in seconds. A typical value is 30. Note: Both client and
// server must pre-agree on the secret, the t0, and the tStep.
// numDigits: The number of decimal digits to return.
// truncOffset: Normally set this to -1 for dynamic truncation. Otherwise can be set
// in the range 0..15.
// hashAlg: Normally set to "sha1". Can be set to other hash algorithms such as
// "sha256", "sha512", etc.
const char *totp(const char *secret, const char *secretEnc, const char *t0, const char *tNow, int tStep, int numDigits, int truncOffset, const char *hashAlg);
// Trim a string ending with a specific substring until the string no longer ends
// with that substring.
bool TrimEndingWith(const char *inStr, const char *ending, CkString &outStr);
// Trim a string ending with a specific substring until the string no longer ends
// with that substring.
const char *trimEndingWith(const char *inStr, const char *ending);
// Unlocks the component. This must be called once prior to calling any other
// method.
bool UnlockComponent(const char *unlockCode);
// Adds an XML certificate vault to the object's internal list of sources to be
// searched for certificates and private keys when encrypting/decrypting or
// signing/verifying. Unlike the AddPfxSourceData and AddPfxSourceFile methods,
// only a single XML certificate vault can be used. If UseCertVault is called
// multiple times, only the last certificate vault will be used, as each call to
// UseCertVault will replace the certificate vault provided in previous calls.
bool UseCertVault(CkXmlCertVault &vault);
// Verifies a digital signature against the original data contained in data.
// Returns true if the signature is verified.
//
// Note: The signer certificates can be retrieved after any Verify* method call by
// using the NumSignerCerts property and the GetSignerCert method.
//
bool VerifyBdENC(CkBinData &data, const char *encodedSig);
// Verifies a byte array against a digital signature and returns true if the byte
// array is unaltered.
//
// Note: The signer certificates can be retrieved after any Verify* method call by
// using the NumSignerCerts property and the GetSignerCert method.
//
bool VerifyBytes(CkByteData &data, CkByteData &sig);
// Verifies a byte array against a string-encoded digital signature and returns
// true if the byte array is unaltered. This method can be used to verify a
// signature produced by SignBytesENC. The EncodingMode property must be set prior
// to calling to match the encoding of the digital signature string ("Base64",
// "QP", or "Hex").
//
// Note: The signer certificates can be retrieved after any Verify* method call by
// using the NumSignerCerts property and the GetSignerCert method.
//
bool VerifyBytesENC(CkByteData &data, const char *encodedSig);
// Verifies a .p7s (PKCS #7 Signature) against the original file (or exact copy of
// it). If the inFilename has not been modified, the return value is true, otherwise it
// is false. This method is equivalent to VerifyP7S.
//
// Note: The signer certificates can be retrieved after any Verify* method call by
// using the NumSignerCerts property and the GetSignerCert method.
//
bool VerifyDetachedSignature(const char *inFilename, const char *p7sFilename);
// Verifies a .p7m file and extracts the original file from the .p7m. Returns
// true if the signature is valid and the contents are unchanged. Otherwise
// returns false.
//
// Note: The signer certificates can be retrieved after any Verify* method call by
// using the NumSignerCerts property and the GetSignerCert method.
//
bool VerifyP7M(const char *p7mPath, const char *destPath);
// Verifies a .p7s (PKCS #7 Signature) against the original file (or exact copy of
// it). If the inFilename has not been modified, the return value is true, otherwise it
// is false.
//
// Note: The signer certificates can be retrieved after any Verify* method call by
// using the NumSignerCerts property and the GetSignerCert method.
//
bool VerifyP7S(const char *inFilename, const char *p7sFilename);
// Verifies a digital signature against the original data contained in sb.
// Returns true if the signature is verified.
//
// Note: The signer certificates can be retrieved after any Verify* method call by
// using the NumSignerCerts property and the GetSignerCert method.
//
bool VerifySbENC(CkStringBuilder &sb, const char *encodedSig);
// Verifies a string against a binary digital signature and returns true if the
// string is unaltered. This method can be used to verify a signature produced by
// SignString. The Charset property must be set to the charset that was used when
// creating the signature.
//
// Note: The signer certificates can be retrieved after any Verify* method call by
// using the NumSignerCerts property and the GetSignerCert method.
//
bool VerifyString(const char *str, CkByteData &sig);
// Verifies a string against a string-encoded digital signature and returns true if
// the string is unaltered. This method can be used to verify a signature produced
// by SignStringENC. The Charset and EncodingMode properties must be set to the
// same values that were used when creating the signature.
//
// Note: The signer certificates can be retrieved after any Verify* method call by
// using the NumSignerCerts property and the GetSignerCert method.
//
bool VerifyStringENC(const char *str, const char *encodedSig);
// Convenience method to write an entire byte array to a file.
bool WriteFile(const char *filename, CkByteData &fileData);
// END PUBLIC INTERFACE
};
#if !defined(__sun__) && !defined(__sun)
#pragma pack (pop)
#endif
#endif
| [
"jjuiddong@hanmail.net"
] | jjuiddong@hanmail.net |
af827e0a0a04cc2e8061821269ebfc41e03f27bd | 4ccd52495db5918147e186fee388d9004e2e5895 | /lib/communication/ipv6address.cpp | f5e7c10c53741bb72ae149b812c51e82d5dfafe1 | [
"MIT"
] | permissive | mloy/hbm | 71900186895291ed9e14487fb935e2c5c4e8de82 | 892686df4e914e07e8cc8b67c232d2f1a312905b | refs/heads/master | 2020-09-08T01:35:11.759061 | 2019-11-05T13:37:20 | 2019-11-05T13:37:20 | 220,971,646 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,555 | cpp | // Copyright 2014 Hottinger Baldwin Messtechnik
// Distributed under MIT license
// See file LICENSE provided
#include <algorithm>
#ifdef _WIN32
#ifndef _WINSOCK2API_
#include <ws2tcpip.h>
#endif
#else
#include <sys/types.h>
#include <arpa/inet.h>
#endif
#include "hbm/communication/ipv6address.h"
#ifdef _WIN32
static int inet_pton_forWindowsxp(int af, const char *src, void *dst)
{
struct sockaddr_storage ss;
int size = sizeof(ss);
char src_copy[INET6_ADDRSTRLEN + 1];
ZeroMemory(&ss, sizeof(ss));
/* stupid non-const API */
strncpy(src_copy, src, INET6_ADDRSTRLEN + 1);
src_copy[INET6_ADDRSTRLEN] = 0;
if (WSAStringToAddressA(src_copy, af, nullptr, (struct sockaddr *)&ss, &size) == 0) {
switch (af) {
case AF_INET:
*(struct in_addr *)dst = ((struct sockaddr_in *)&ss)->sin_addr;
return 1;
case AF_INET6:
*(struct in6_addr *)dst = ((struct sockaddr_in6 *)&ss)->sin6_addr;
return 1;
}
}
return 0;
}
#endif
namespace hbm {
namespace communication {
Ipv6Address::Ipv6Address()
: prefix(0)
{
}
bool Ipv6Address::equal(const struct Ipv6Address& op) const
{
if( (address==op.address) && prefix==op.prefix) {
return true;
}
return false;
}
std::string Ipv6Address::getIpv4MappedAddress(const std::string& address)
{
static const std::string hybridIpv4AddressPrefix = "::ffff:";
std::string addressPrefix = address.substr(0, hybridIpv4AddressPrefix.length());
if (addressPrefix!=hybridIpv4AddressPrefix) {
return "";
}
std::string ipv4Address = address.substr(hybridIpv4AddressPrefix.length());
size_t count = std::count(ipv4Address.begin(), ipv4Address.end(), '.');
if (count!=3) {
return "";
}
#ifdef _WIN32
unsigned long addr = inet_addr(ipv4Address.c_str());
if (addr == INADDR_NONE) {
return "";
}
#else
struct in_addr inSubnet;
if (inet_aton(ipv4Address.c_str(), &inSubnet) == 0) {
return "";
}
#endif
return ipv4Address;
}
bool Ipv6Address::isLinkLocalAddress(const std::string& address)
{
static const std::string ipv6LinkLocalNet("fe80::");
struct in6_addr addr;
#ifdef _WIN32
if (inet_pton_forWindowsxp(AF_INET6, address.c_str(), &addr) == 0) {
return false;
}
#else
if (inet_pton(AF_INET6, address.c_str(), &addr) == 0) {
return false;
}
#endif
std::string prefix = address.substr(0, ipv6LinkLocalNet.length());
std::transform(prefix.begin(), prefix.end(), prefix.begin(), ::tolower);
if (prefix!=ipv6LinkLocalNet) {
return false;
}
return true;
}
}
}
| [
"matthias.loy@hbm.com"
] | matthias.loy@hbm.com |
805de36ed86f7ec6f4e930a2afc2a0cd53fd0ea6 | 85139670ac53c5df7484c7d3eb1d1284502a4a77 | /console/model_ctrl.cpp | b882b7d6046a95e425af706f6d66d8b7de3c5d95 | [] | no_license | chinarustin/aep | f9872a1d4e82cad38d50d46f370ce0513280f40e | 6bbe1b634812528c3a4a696335174ae51846d467 | refs/heads/master | 2020-12-27T15:17:18.706709 | 2014-09-27T13:50:56 | 2014-09-27T13:50:56 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,478 | cpp | #include "model_ctrl.h"
#include <math.h>
CModelCtrl::CModelCtrl(Model2 &model)
: m_Model(model)
, m_Width(0)
, m_Height(0)
, m_VerMargin(0)
, m_HorMargin(0)
, m_ComponentWidth(0)
, m_ComponentHeight(0)
{
}
CModelCtrl::~CModelCtrl()
{
}
void CModelCtrl::Init(CRect &rect)
{
CalculateSize(rect);
CreateDrawItemCtrlList();
}
void CModelCtrl::SetRunItem(UINT32 id)
{
UnSetAllRunItem(false);
m_DrawItemCtrlList[id].SetRun(true);
Invalidate();
}
void CModelCtrl::UnSetAllRunItem(bool invalidate)
{
for (UINT32 i = 0; i < m_Model.GetAlgorithmCount(); ++i)
{
m_DrawItemCtrlList[i].SetRun(false);
}
if (invalidate)
{
Invalidate();
}
}
BEGIN_MESSAGE_MAP(CModelCtrl, CStatic)
ON_WM_PAINT()
END_MESSAGE_MAP()
void CModelCtrl::OnPaint()
{
CPaintDC dc(this); // device context for painting
DrawDrawItemCtrlList(&dc);
DrawConnectors(&dc);
}
void CModelCtrl::CalculateSize(CRect &rect)
{
m_Width = rect.Width();
m_Height = rect.Height();
m_HorMargin = m_Width / 10;
m_VerMargin = m_Height / 3;
UINT32 componentCount = m_Model.GetDrawItemList().size();
m_ComponentWidth = (m_Width - (2 * m_HorMargin)) / (2 * componentCount - 1);
m_ComponentHeight = m_Height - (2 * m_VerMargin);
}
void CModelCtrl::CreateDrawItemCtrlList()
{
const DrawItemList &drawItemList = m_Model.GetDrawItemList();
for (UINT32 i = 0; i < drawItemList.size(); ++i)
{
::DrawItem *drawItem = drawItemList[i];
CPoint position(m_HorMargin + 2 * i * m_ComponentWidth + m_ComponentWidth / 2, m_VerMargin + m_ComponentHeight / 2);
DrawItemCtrl drawItemCtrl(position, m_ComponentWidth, m_ComponentHeight, drawItem);
m_DrawItemCtrlList.push_back(drawItemCtrl);
}
}
void CModelCtrl::DrawDrawItemCtrlList(CDC *dc)
{
for (INT32 i = 0; i < m_DrawItemCtrlList.size(); ++i)
{
m_DrawItemCtrlList[i].Draw(dc);
}
}
void CModelCtrl::DrawConnectors(CDC *dc)
{
for (INT32 i = 0; i < m_DrawItemCtrlList.size() - 1; ++i)
{
CPoint start = m_DrawItemCtrlList[i].RightCenter();
CPoint end = m_DrawItemCtrlList[i + 1].LeftCenter();
DrawConnector(dc, start, end);
}
}
void CModelCtrl::DrawConnector(CDC *dc, CPoint start, CPoint end)
{
CPoint oldPosition = dc->MoveTo(start);
dc->LineTo(end);
DrawArrow(dc, start, end, 30, 7);
dc->MoveTo(oldPosition);
}
void CModelCtrl::DrawArrow(CDC *dc, CPoint start, CPoint end, double theta, UINT32 length)
{
double xx, yy, p1x, p1y, p2x, p2y;
xx = start.x - end.x;
yy = start.y - end.y;
theta = 3.1415926 * theta / 180;
p1x = xx * cos(theta) - yy * sin(theta);
p1y = xx * sin(theta) + yy * cos(theta);
p2x = xx * cos(theta) + yy * sin(theta);
p2y = xx * sin(-theta) + yy * cos(theta);
double p1, p2;
p1 = sqrt(p1x * p1x + p1y * p1y);
p2 = sqrt(p2x * p2x + p2y * p2y);
p1x = p1x * length / p1;
p1y = p1y * length / p1;
p2x = p2x * length / p2;
p2y = p2y * length / p2;
p1x = p1x + end.x;
p1y = p1y + end.y;
p2x = p2x + end.x;
p2y = p2y + end.y;
POINT triangle[3];
triangle[0] = end;
triangle[1].x = p1x + 0.5;
triangle[1].y = p1y + 0.5;
triangle[2].x = p2x + 0.5;
triangle[2].y = p2y + 0.5;
CBrush brush;
brush.CreateSolidBrush(RGB(0, 0, 0));
CBrush *oldBrush = dc->SelectObject(&brush);
dc->Polygon(&triangle[0], 3);
dc->SelectObject(oldBrush);
}
| [
"zanmato1984@gmail.com"
] | zanmato1984@gmail.com |
8767f61a269a5676218b9b6f8f87896d1e8549b2 | 19eec37edff87e0b3f234d5772e5555f5c83b17e | /src/essence.game/qpang/leaderboard/Leaderboard.h | c5a02bfc6b0de28dca4a2e5ac71c3702792c3f46 | [
"MIT"
] | permissive | jellenijhof12/qpang-essence-emulator | 4632927d3b605a7e17e80539ec76288525c6b324 | 943189161fd1fb8022221f24524a18244724edd6 | refs/heads/master | 2023-07-02T20:46:42.313580 | 2021-08-12T14:18:37 | 2021-08-12T14:18:37 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 355 | h | #pragma once
#include <cstdint>
#include <map>
#include <mutex>
class Leaderboard
{
public:
struct Position {
uint32_t rank;
int32_t difference;
};
void refresh();
Leaderboard::Position getPosition(uint32_t playerId);
private:
std::map<uint32_t, Position> m_currentRanking;
std::map<uint32_t, Position> m_oldRanking;
std::mutex m_mx;
};
| [
"bartramaekers99@gmail.com"
] | bartramaekers99@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.