Skip to content

Instantly share code, notes, and snippets.

@socarrandinn
Created February 26, 2024 04:13
Show Gist options
  • Save socarrandinn/2cb2a181926a26dbd587fe8b2502ac0f to your computer and use it in GitHub Desktop.
Save socarrandinn/2cb2a181926a26dbd587fe8b2502ac0f to your computer and use it in GitHub Desktop.
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.9+commit.e5eed63a.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.4.22 <0.9.0;
library TestsAccounts {
function getAccount(uint index) pure public returns (address) {
address[15] memory accounts;
accounts[0] = 0x5B38Da6a701c568545dCfcB03FcB875f56beddC4;
accounts[1] = 0xAb8483F64d9C6d1EcF9b849Ae677dD3315835cb2;
accounts[2] = 0x4B20993Bc481177ec7E8f571ceCaE8A9e22C02db;
accounts[3] = 0x78731D3Ca6b7E34aC0F824c42a7cC18A495cabaB;
accounts[4] = 0x617F2E2fD72FD9D5503197092aC168c91465E7f2;
accounts[5] = 0x17F6AD8Ef982297579C203069C1DbfFE4348c372;
accounts[6] = 0x5c6B0f7Bf3E7ce046039Bd8FABdfD3f9F5021678;
accounts[7] = 0x03C6FcED478cBbC9a4FAB34eF9f40767739D1Ff7;
accounts[8] = 0x1aE0EA34a72D944a8C7603FfB3eC30a6669E454C;
accounts[9] = 0x0A098Eda01Ce92ff4A4CCb7A4fFFb5A43EBC70DC;
accounts[10] = 0xCA35b7d915458EF540aDe6068dFe2F44E8fa733c;
accounts[11] = 0x14723A09ACff6D2A60DcdF7aA4AFf308FDDC160C;
accounts[12] = 0x4B0897b0513fdC7C541B6d9D7E929C4e5364D2dB;
accounts[13] = 0x583031D1113aD414F02576BD6afaBfb302140225;
accounts[14] = 0xdD870fA1b7C4700F2BD7f44238821C26f7392148;
return accounts[index];
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.4.22 <0.9.0;
library Assert {
event AssertionEvent(
bool passed,
string message,
string methodName
);
event AssertionEventUint(
bool passed,
string message,
string methodName,
uint256 returned,
uint256 expected
);
event AssertionEventInt(
bool passed,
string message,
string methodName,
int256 returned,
int256 expected
);
event AssertionEventBool(
bool passed,
string message,
string methodName,
bool returned,
bool expected
);
event AssertionEventAddress(
bool passed,
string message,
string methodName,
address returned,
address expected
);
event AssertionEventBytes32(
bool passed,
string message,
string methodName,
bytes32 returned,
bytes32 expected
);
event AssertionEventString(
bool passed,
string message,
string methodName,
string returned,
string expected
);
event AssertionEventUintInt(
bool passed,
string message,
string methodName,
uint256 returned,
int256 expected
);
event AssertionEventIntUint(
bool passed,
string message,
string methodName,
int256 returned,
uint256 expected
);
function ok(bool a, string memory message) public returns (bool result) {
result = a;
emit AssertionEvent(result, message, "ok");
}
function equal(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventUint(result, message, "equal", a, b);
}
function equal(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventInt(result, message, "equal", a, b);
}
function equal(bool a, bool b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventBool(result, message, "equal", a, b);
}
// TODO: only for certain versions of solc
//function equal(fixed a, fixed b, string message) public returns (bool result) {
// result = (a == b);
// emit AssertionEvent(result, message);
//}
// TODO: only for certain versions of solc
//function equal(ufixed a, ufixed b, string message) public returns (bool result) {
// result = (a == b);
// emit AssertionEvent(result, message);
//}
function equal(address a, address b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventAddress(result, message, "equal", a, b);
}
function equal(bytes32 a, bytes32 b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventBytes32(result, message, "equal", a, b);
}
function equal(string memory a, string memory b, string memory message) public returns (bool result) {
result = (keccak256(abi.encodePacked(a)) == keccak256(abi.encodePacked(b)));
emit AssertionEventString(result, message, "equal", a, b);
}
function notEqual(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventUint(result, message, "notEqual", a, b);
}
function notEqual(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventInt(result, message, "notEqual", a, b);
}
function notEqual(bool a, bool b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventBool(result, message, "notEqual", a, b);
}
// TODO: only for certain versions of solc
//function notEqual(fixed a, fixed b, string message) public returns (bool result) {
// result = (a != b);
// emit AssertionEvent(result, message);
//}
// TODO: only for certain versions of solc
//function notEqual(ufixed a, ufixed b, string message) public returns (bool result) {
// result = (a != b);
// emit AssertionEvent(result, message);
//}
function notEqual(address a, address b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventAddress(result, message, "notEqual", a, b);
}
function notEqual(bytes32 a, bytes32 b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventBytes32(result, message, "notEqual", a, b);
}
function notEqual(string memory a, string memory b, string memory message) public returns (bool result) {
result = (keccak256(abi.encodePacked(a)) != keccak256(abi.encodePacked(b)));
emit AssertionEventString(result, message, "notEqual", a, b);
}
/*----------------- Greater than --------------------*/
function greaterThan(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a > b);
emit AssertionEventUint(result, message, "greaterThan", a, b);
}
function greaterThan(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a > b);
emit AssertionEventInt(result, message, "greaterThan", a, b);
}
// TODO: safely compare between uint and int
function greaterThan(uint256 a, int256 b, string memory message) public returns (bool result) {
if(b < int(0)) {
// int is negative uint "a" always greater
result = true;
} else {
result = (a > uint(b));
}
emit AssertionEventUintInt(result, message, "greaterThan", a, b);
}
function greaterThan(int256 a, uint256 b, string memory message) public returns (bool result) {
if(a < int(0)) {
// int is negative uint "b" always greater
result = false;
} else {
result = (uint(a) > b);
}
emit AssertionEventIntUint(result, message, "greaterThan", a, b);
}
/*----------------- Lesser than --------------------*/
function lesserThan(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a < b);
emit AssertionEventUint(result, message, "lesserThan", a, b);
}
function lesserThan(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a < b);
emit AssertionEventInt(result, message, "lesserThan", a, b);
}
// TODO: safely compare between uint and int
function lesserThan(uint256 a, int256 b, string memory message) public returns (bool result) {
if(b < int(0)) {
// int is negative int "b" always lesser
result = false;
} else {
result = (a < uint(b));
}
emit AssertionEventUintInt(result, message, "lesserThan", a, b);
}
function lesserThan(int256 a, uint256 b, string memory message) public returns (bool result) {
if(a < int(0)) {
// int is negative int "a" always lesser
result = true;
} else {
result = (uint(a) < b);
}
emit AssertionEventIntUint(result, message, "lesserThan", a, b);
}
}
[core]
repositoryformatversion = 0
filemode = false
bare = false
logallrefupdates = true
symlinks = false
ignorecase = true
ref: refs/heads/main
DIRC e�� bZe�� bZ����-�k�����uw����,�&$.deps/remix-tests/remix_accounts.soleە �.�eە �.��������b 2�H"��(���,�Dz!.deps/remix-tests/remix_tests.soleە,Eeە,E�����o#q{K���Sc��X�W�n.prettierrc.jsoneە�eە���;���9|�>�Xߌy��˷'contracts/MyToken.soleە�Q@eە�Q@���cS?���5?,���7��'�|scripts/deploy_with_ethers.tseەe��eەe��������.��E�r���NH-��Wscripts/deploy_with_web3.tseە���eە������'S��Н��M�%5�s<��wscripts/ethers-lib.tseە�<eە�<��%�~P9���WrV���ߒ�~�scripts/web3-lib.tseە��eە��
��!K�*����8��w'���tests/MyToken_test.sol#YIK�C��:��@���9�
x��U]o�0�9�⪼�R��6�1�"4�شI�����Z8v�F���Q�ڴIg���ڷ��s�=%��g� ǁ��_'W���SH��+J��x{5�ٮe��#J0R��w���v�k���E�XH I"���&J+[ 68�A���.m���k��V��6?/J����( T�_�ѲPJ� �]���J-J�5���;:?��j'��ɬv��Ď�s>P�`I@ H�TS�@<p"�B,��2�Z��l��v�O9�*�XS�aIVB�c��ɒQ �YE��^�F��X�N�j�������a��V������Ȕ� ��XBT�ʅRDj��Lr��h �·�:�z! � �x3��y���R�&����� AB�i��Ja��;���E ��]�l���^�3P��0ݧ?D�A��הk�ם6.C��U�wU��ꈹ�c��J�(��<�u�S*ktYu��Ѳf��:�9�gֈ�.�;�/�a����;�i�( �fpO��^
��I��?O�I���߈���lR�wZ��:�Z�@"�V}�����.�R�1�{8z675��yc�K[�47zCd��L���� EWݝf`�ߛ�4�4߾oj�������?���,���B�`���\I{���y�\ı�� F����6�R���
�r�
ڼϖ��h������y������x�we�s� �:Һ�"z�z�Qݒ˔r�g!4
�_ �����P�����ٍqJ ��T-v ���X-a��N����#Sm��s�dY��T�
x�+)JMU0�`01000P(J�ͬ�-I-.)fh����v�ß��w"[Z��Z[~��:�
x�M�A
�0D]����FQWB��;w"4i�ZL�K)���b��j`x��:�جw��j�G�(�q�a��s�D�Z�ۥ+m"�4��sH��^�wc9�!�Sx���5e�\29v'~P�,p��Ύ���LQx
a�y���7= 71�C��;��IW��ш�AI��B�
x�+)JMU01a040031Q� ��N͋/I-.�+��a`R�~���_��ۯ����)����
x�]S]k�@��<$s�%�Ӧ)���kV�Z�T�{�8���}�J_�ݝ���K+�����_�ٺ�؃�d 8`-�F���,9;�� ?���Z2
���w*�i[�ސP�}P��8k+����u7:�y�8������$E@e����wAe���]3+K�ή6u�re��8�u9����� kY�k��c��֍8�����S�ɬ�� -X���e����ѻ�褜�$n��s������k��7ߌ\.���f3t�}Ŧ�E��3�����t��i>�+� -I;�!�(s�W?n�-mV��XH9?Y������$jה���_F���VmZs]~� �� BO�{�K<�ⷁ%CrlI�h��wO-��\ъ�k/��z��Nѐ��㶚�rR���V�! Ӗ�B���&�������79*X�����V-�ҝG[N?݋�9K�Z@=�ʧT��RZ1|��m��{9[8,;�o�4Z0&��t�|n
ևn:��i~��R���s�=f�/ƣ)�R�8Zd�O�S�|Φg��NVo~���a��sc��χ�& ˷yY�=�^ڎ�+��z�Ʃ�`��ں.;��Č�q{!�3>>��?}�V
x�+)JMU04�`01000P�KI-(fR� �Z���˿8�`��W�?G���(����d�%�e��1lZ��\X�=���Jp�����A�J��+)JL.)fx�qFp�� ����\K��>3�KDMqrQfAI1�_��Mr��T5?�ۯx��o��]%��%� J��鱟�8�lG[I�h-o�q�J�
x�+)JMU047c040031QHI-�ɯ�/�,ɈO-�H-*�+)fH���u����N��^��w�`�P��d R.�j�t���]o�<���C�m�x8T9�Lݜ�$�B���{.�}���`����b�gʡ
Af��� �\��-�(l��g��'u���I5
x�M��
�0���7I@�88� ��Dh���Ŵ)IDB黋������w�uv���i{�#��[�0��] �6k�am��3&tH���Ȏ}�0� ���Fd�O���&�)�ݝ:���*�����D���S,��@�͘��FGSC��;��I���hB�(�|��C�
x���9�0����ȎB�<c�l��d �z$h�)��j�$����tf��'��=9���HޭHau�9�H�"�E�C��ý��uI�������)凞�C���z�Z��*���N5I� �� �Kz�p�e���N�Vo-�H
x�+)JMU��d040031Q(J�ͬ�OLN�/�+)�+��a8xD�d��7��ͻ_Z��_�}�_j(�KR��Jw�Ɯ�`��C��Q�o�<?� w�*�
x���Oo�0�9�S�rJ�4Y�*���s�`Պ���̖����.K�8YZU��C���{�ql7�6�rq��E]����o�_H#<>m�����-�O7���S���d��I�\���:g�@��:�?��Z[���Z�O���������5��I>�-ȁ,���>zV��g�:W1<!Ji�!�g�g��HRP6y`���&����; O�S�%����
7���G-��m=��$��َ� �~ �"O켄|�����x�=����m6�����ep*,���Ɛ�f?����q�4��r? ��D̪�C:b���"�,_�����x�`�MI|Qװ��������� �<��F��E��B���t��{m^F�*��ӭ�] �}�L�Î zVf.L���35��U�8D����#����i���_��]�
x����
�0 �=�)B�2ă��[����n٬�f�� c�.+l0cB{J�� ��ɪ�����e)\}�{�Py���l���X<N�r�t���|X��E���RH��/����D\[<s�� �,NV�R�&�3�0<{�;U<������6^p��k���xH�����%�pυ._ݢ6��̢�
x�͖�N�@�{��re���j!A�!$T��Ro��8��즻k B�{�>��؉q��$�l�ߌg�?��m8�68���������=u�I�ܹ��(�s�}��|�� c&�xJ@r��T��r��t��߻� ��-��Õ�(|�"Sq�rv�/M��܇��v�JP6�)JIƘ����$S4���Ŀh��Q8�L N�@�
K$Q|�����
r��L�2?8��c��]�C��\W���)H�(�D��c�P~�#Q�tS�h!��0s}�8�N ���˴foMɥ����_/`�f>1û��2�yrO f��S'N,��WC���#�Mt# �5N��EgڋZ��'-K��\�?����5�{!4 �F`[����؄ �Zm d�R/��|W9y����pC�.��������9p�����P�($�L��A;��Ty}GWg�>�X��^/�6�E�I��`QM����K���u��J���.���
�=W_G���ZE�T1A�!���Il�E�p�3A�$��K�r¶������ J�ϸ�i�)��8EBV��9��N��%��q���9��K]UkE6�G��;��҄}ԩh�I�>]�Rf-��ˑ�#%�t��frT�L�xI�Fw�/�H
P/���םN縷ڽqt����F�貂���?���3����~�K����x�����6�7Dvsu�>���i�P�2���?�&�,T�1Q�#�i���\&P�MS"��c����E����lz-��&�t�w��^f�z&)�7{W�<��]� �F����m�]���֕{�y�ʊ�n\U�Te��/*+��i�V��a�c�.)�갊�Z���^�����q`=I�pv�
�p"&�:b�״O�/}��
x�]�M�7�\ݿBG��㒪��2�A-�B�C|0,{P��4��,�^�����c2���xT�xk~��BJ-�x�V��1~�����;��j۝���ß���p��|�_��8����^��w���R�/ظ l��q���">����Kٟw���6!D?��i��ėvZ�^���I,�ھ���C���q)��N���(^�Z�x|���s�G�R?����?���V��^�����N�W=���dY���t ������u�fn������l�b2T]0UN%�ْ��0׈(�E]fu��Ө�9 Y)�[��vͲ��'�]S*���5� f�(#�lf��r�dR�K�֓�%�y��t�FrR��U�.j (�S9Hc��d����m}�����N�Y�kvA�qAƹ���lA��f��bF�<v��4 ��j�k��]Ҡ�a{����Ie�Ķ�sp���Zr�� 3�(S�kl׶��Gʬ�#�6�L}��1�M�)\c�V���T3�М�<�0���Ҭ=�4�x����Q�\�Ԥ�4A�̀�55��&�3#��fL+��|��D� �RgO>u�b ��m��!�x-���A�Mu�'�\���PT�&'rM��(��s$I �f3F�{���$�R�F�1��2t/g�I��;�Bk� �tF�$��p���sz�k���f���}�v�=�
x�mT]k�@�~�<$GN� �iK!�|@�P
^Ik�R��ܭ�[���$�j�@�������*�L�˫ˏ�T�2V���+,��n8�
���_�K�L�_/�����S<�D�Ќ��Y���A0;; p�����R2
��H��"K5vN��E3��f��a�>����8��Z�^���4 [8T�I���Į316���u����2�ւ�㼥r�s�/����u=N��:e۠ ��Jժ3fY�Vc�w��Us>�? �����C0�������:�-O���#� w���6I�lM�_�Jn0��.Г�G�94o�4D��gk�T�vңL�qe�h�)T����X]�h���0�$�]s�U+�fΝq���Re%�C��- �]�c�W��V(ȊZR&qW��~3�ڎfA�>�s�· �|,?X��$%�X��l�١�� ���Wg��ض��r��_��Y�mH ,��O�QUE�RU�@�
��a��MUN�3�+�3��9����Yʸ`���(�3V����@t�S�N�hw<9������h@[+��G��LαI_9���-�5kq��hF��7�{�tƃ����]Ȟ�����~��ϋ_aA.�;�����E{u�@��'Hc���_��p
x�+)JMU0�d040031Q� ��N��+��a�}�ٲ��N�o����s/NoWnf
767622adf17b0d960fabfb6286b47d0a758806f0
{
"overrides": [
{
"files": "*.sol",
"options": {
"printWidth": 80,
"tabWidth": 4,
"useTabs": false,
"singleQuote": false,
"bracketSpacing": false
}
},
{
"files": "*.yml",
"options": {}
},
{
"files": "*.yaml",
"options": {}
},
{
"files": "*.toml",
"options": {}
},
{
"files": "*.json",
"options": {}
},
{
"files": "*.js",
"options": {}
},
{
"files": "*.ts",
"options": {}
}
]
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "60566050600b82828239805160001a6073146043577f4e487b7100000000000000000000000000000000000000000000000000000000600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122095e2a41d047f3e6ac230a6c372195c848ee5c4dc39337340966896e682947feb64736f6c63430008090033",
"opcodes": "PUSH1 0x56 PUSH1 0x50 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x43 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADDRESS PUSH1 0x0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SWAP6 0xE2 LOG4 SAR DIV PUSH32 0x3E6AC230A6C372195C848EE5C4DC39337340966896E682947FEB64736F6C6343 STOP ADDMOD MULMOD STOP CALLER ",
"sourceMap": "258:8324:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122095e2a41d047f3e6ac230a6c372195c848ee5c4dc39337340966896e682947feb64736f6c63430008090033",
"opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SWAP6 0xE2 LOG4 SAR DIV PUSH32 0x3E6AC230A6C372195C848EE5C4DC39337340966896E682947FEB64736F6C6343 STOP ADDMOD MULMOD STOP CALLER ",
"sourceMap": "258:8324:0:-:0;;;;;;;;"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "17200",
"executionCost": "97",
"totalCost": "17297"
},
"internal": {
"functionCall(address,bytes memory)": "infinite",
"functionCall(address,bytes memory,string memory)": "infinite",
"functionCallWithValue(address,bytes memory,uint256)": "infinite",
"functionCallWithValue(address,bytes memory,uint256,string memory)": "infinite",
"functionDelegateCall(address,bytes memory)": "infinite",
"functionDelegateCall(address,bytes memory,string memory)": "infinite",
"functionStaticCall(address,bytes memory)": "infinite",
"functionStaticCall(address,bytes memory,string memory)": "infinite",
"isContract(address)": "infinite",
"sendValue(address payable,uint256)": "infinite",
"verifyCallResult(bool,bytes memory,string memory)": "infinite"
}
},
"methodIdentifiers": {}
},
"abi": []
}
{
"compiler": {
"version": "0.8.9+commit.e5eed63a"
},
"language": "Solidity",
"output": {
"abi": [],
"devdoc": {
"details": "Collection of functions related to the address type",
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/TokenStaking.sol": "Address"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/TokenStaking.sol": {
"keccak256": "0xdf3a9a9bfc79911d9cf4dd25e9471895f3ceed03577d429495bcbd2ee0096f46",
"license": "MIT",
"urls": [
"bzz-raw://0f51ac45eb0c494fdcfd1223c3bb456f82fec948708d7d0970ac8d5cf51d2c95",
"dweb:/ipfs/QmceZ2psCRX76x9KKiTCnmm9xk67xY8gpA7sZs3WC8g1T7"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"methodIdentifiers": {}
},
"abi": []
}
{
"compiler": {
"version": "0.8.9+commit.e5eed63a"
},
"language": "Solidity",
"output": {
"abi": [],
"devdoc": {
"details": "Provides information about the current execution context, including the sender of the transaction and its data. While these are generally available via msg.sender and msg.data, they should not be accessed in such a direct manner, since when dealing with meta-transactions the account sending and paying for execution may not be the actual sender (as far as an application is concerned). This contract is only required for intermediate, library-like contracts.",
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/TokenStaking.sol": "Context"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/TokenStaking.sol": {
"keccak256": "0xdf3a9a9bfc79911d9cf4dd25e9471895f3ceed03577d429495bcbd2ee0096f46",
"license": "MIT",
"urls": [
"bzz-raw://0f51ac45eb0c494fdcfd1223c3bb456f82fec948708d7d0970ac8d5cf51d2c95",
"dweb:/ipfs/QmceZ2psCRX76x9KKiTCnmm9xk67xY8gpA7sZs3WC8g1T7"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"methodIdentifiers": {
"allowance(address,address)": "dd62ed3e",
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"totalSupply()": "18160ddd",
"transfer(address,uint256)": "a9059cbb",
"transferFrom(address,address,uint256)": "23b872dd"
}
},
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "spender",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.9+commit.e5eed63a"
},
"language": "Solidity",
"output": {
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "spender",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "Interface of the ERC20 standard as defined in the EIP.",
"events": {
"Approval(address,address,uint256)": {
"details": "Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance."
},
"Transfer(address,address,uint256)": {
"details": "Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero."
}
},
"kind": "dev",
"methods": {
"allowance(address,address)": {
"details": "Returns the remaining number of tokens that `spender` will be allowed to spend on behalf of `owner` through {transferFrom}. This is zero by default. This value changes when {approve} or {transferFrom} are called."
},
"approve(address,uint256)": {
"details": "Sets `amount` as the allowance of `spender` over the caller's tokens. Returns a boolean value indicating whether the operation succeeded. IMPORTANT: Beware that changing an allowance with this method brings the risk that someone may use both the old and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 Emits an {Approval} event."
},
"balanceOf(address)": {
"details": "Returns the amount of tokens owned by `account`."
},
"totalSupply()": {
"details": "Returns the amount of tokens in existence."
},
"transfer(address,uint256)": {
"details": "Moves `amount` tokens from the caller's account to `to`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event."
},
"transferFrom(address,address,uint256)": {
"details": "Moves `amount` tokens from `from` to `to` using the allowance mechanism. `amount` is then deducted from the caller's allowance. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/TokenStaking.sol": "IERC20"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/TokenStaking.sol": {
"keccak256": "0xdf3a9a9bfc79911d9cf4dd25e9471895f3ceed03577d429495bcbd2ee0096f46",
"license": "MIT",
"urls": [
"bzz-raw://0f51ac45eb0c494fdcfd1223c3bb456f82fec948708d7d0970ac8d5cf51d2c95",
"dweb:/ipfs/QmceZ2psCRX76x9KKiTCnmm9xk67xY8gpA7sZs3WC8g1T7"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"methodIdentifiers": {}
},
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "uint8",
"name": "version",
"type": "uint8"
}
],
"name": "Initialized",
"type": "event"
}
]
}
{
"compiler": {
"version": "0.8.9+commit.e5eed63a"
},
"language": "Solidity",
"output": {
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "uint8",
"name": "version",
"type": "uint8"
}
],
"name": "Initialized",
"type": "event"
}
],
"devdoc": {
"custom:oz-upgrades-unsafe-allow": "constructor constructor() { _disableInitializers(); } ``` ====",
"details": "This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. The initialization functions use a version number. Once a version number is used, it is consumed and cannot be reused. This mechanism prevents re-execution of each \"step\" but allows the creation of new initialization steps in case an upgrade adds a module that needs to be initialized. For example: [.hljs-theme-light.nopadding] ``` contract MyToken is ERC20Upgradeable { function initialize() initializer public { __ERC20_init(\"MyToken\", \"MTK\"); } } contract MyTokenV2 is MyToken, ERC20PermitUpgradeable { function initializeV2() reinitializer(2) public { __ERC20Permit_init(\"MyToken\"); } } ``` TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. [CAUTION] ==== Avoid leaving a contract uninitialized. An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke the {_disableInitializers} function in the constructor to automatically lock it when it is deployed: [.hljs-theme-light.nopadding] ```",
"events": {
"Initialized(uint8)": {
"details": "Triggered when the contract has been initialized or reinitialized."
}
},
"kind": "dev",
"methods": {},
"stateVariables": {
"_initialized": {
"custom:oz-retyped-from": "bool",
"details": "Indicates that the contract has been initialized."
},
"_initializing": {
"details": "Indicates that the contract is in the process of being initialized."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/TokenStaking.sol": "Initializable"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/TokenStaking.sol": {
"keccak256": "0xdf3a9a9bfc79911d9cf4dd25e9471895f3ceed03577d429495bcbd2ee0096f46",
"license": "MIT",
"urls": [
"bzz-raw://0f51ac45eb0c494fdcfd1223c3bb456f82fec948708d7d0970ac8d5cf51d2c95",
"dweb:/ipfs/QmceZ2psCRX76x9KKiTCnmm9xk67xY8gpA7sZs3WC8g1T7"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"methodIdentifiers": {
"owner()": "8da5cb5b",
"renounceOwnership()": "715018a6",
"transferOwnership(address)": "f2fde38b"
}
},
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"type": "event"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.9+commit.e5eed63a"
},
"language": "Solidity",
"output": {
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"type": "event"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "Contract module which provides a basic access control mechanism, where there is an account (an owner) that can be granted exclusive access to specific functions. By default, the owner account will be the one that deploys the contract. This can later be changed with {transferOwnership}. This module is used through inheritance. It will make available the modifier `onlyOwner`, which can be applied to your functions to restrict their use to the owner.",
"kind": "dev",
"methods": {
"constructor": {
"details": "Initializes the contract setting the deployer as the initial owner."
},
"owner()": {
"details": "Returns the address of the current owner."
},
"renounceOwnership()": {
"details": "Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner."
},
"transferOwnership(address)": {
"details": "Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/TokenStaking.sol": "Ownable"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/TokenStaking.sol": {
"keccak256": "0xdf3a9a9bfc79911d9cf4dd25e9471895f3ceed03577d429495bcbd2ee0096f46",
"license": "MIT",
"urls": [
"bzz-raw://0f51ac45eb0c494fdcfd1223c3bb456f82fec948708d7d0970ac8d5cf51d2c95",
"dweb:/ipfs/QmceZ2psCRX76x9KKiTCnmm9xk67xY8gpA7sZs3WC8g1T7"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"methodIdentifiers": {}
},
"abi": []
}
{
"compiler": {
"version": "0.8.9+commit.e5eed63a"
},
"language": "Solidity",
"output": {
"abi": [],
"devdoc": {
"details": "Contract module that helps prevent reentrant calls to a function. Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier available, which can be applied to functions to make sure there are no nested (reentrant) calls to them. Note that because there is a single `nonReentrant` guard, functions marked as `nonReentrant` may not call one another. This can be worked around by making those functions `private`, and then adding `external` `nonReentrant` entry points to them. TIP: If you would like to learn more about reentrancy and alternative ways to protect against it, check out our blog post https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].",
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/TokenStaking.sol": "ReentrancyGuard"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/TokenStaking.sol": {
"keccak256": "0xdf3a9a9bfc79911d9cf4dd25e9471895f3ceed03577d429495bcbd2ee0096f46",
"license": "MIT",
"urls": [
"bzz-raw://0f51ac45eb0c494fdcfd1223c3bb456f82fec948708d7d0970ac8d5cf51d2c95",
"dweb:/ipfs/QmceZ2psCRX76x9KKiTCnmm9xk67xY8gpA7sZs3WC8g1T7"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {
"@_461": {
"entryPoint": null,
"id": 461,
"parameterSlots": 0,
"returnSlots": 0
},
"@_525": {
"entryPoint": null,
"id": 525,
"parameterSlots": 0,
"returnSlots": 0
},
"@_msgSender_493": {
"entryPoint": 63,
"id": 493,
"parameterSlots": 0,
"returnSlots": 1
},
"@_transferOwnership_613": {
"entryPoint": 71,
"id": 613,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [],
"linkReferences": {},
"object": "60806040523480156200001157600080fd5b5062000032620000266200003f60201b60201c565b6200004760201b60201c565b600180819055506200010b565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6137ad806200011b6000396000f3fe608060405234801561001057600080fd5b50600436106101e45760003560e01c80637bb9769d1161010f578063bb8febc6116100a2578063d2cbf7ad11610071578063d2cbf7ad146104e9578063f0116b7414610507578063f18cce7614610525578063f2fde38b14610543576101e4565b8063bb8febc614610485578063c5d62b18146104a3578063cab9b8fb146104ad578063cfa05301146104cb576101e4565b80639be572f6116100de5780639be572f614610423578063a694fc3a14610441578063b3cd42541461045d578063b88a802f1461047b576101e4565b80637bb9769d146103ad5780638585d138146103c95780638da5cb5b146103e757806390be10cc14610405576101e4565b80634d55b17811610187578063635121591161015657806363512159146103275780636f77926b1461035757806370607f5d14610387578063715018a6146103a3576101e4565b80634d55b178146102b157806351d18598146102cf57806355f0fe42146102ed5780635e39cd7514610309576101e4565b80632e1a7d4d116101c35780632e1a7d4d1461023f5780633192e8251461025b5780633e0935721461027757806342a2394514610293576101e4565b80628e3252146101e95780630c4ca4a6146102075780632e17de7814610223575b600080fd5b6101f161055f565b6040516101fe91906122d1565b60405180910390f35b610221600480360381019061021c919061232c565b610569565b005b61023d6004803603810190610238919061232c565b61057b565b005b6102596004803603810190610254919061232c565b610b53565b005b610275600480360381019061027091906124fd565b610d23565b005b610291600480360381019061028c919061232c565b610e7c565b005b61029b610e8e565b6040516102a891906122d1565b60405180910390f35b6102b9610e98565b6040516102c691906122d1565b60405180910390f35b6102d7610efb565b6040516102e491906122d1565b60405180910390f35b6103076004803603810190610302919061232c565b610f05565b005b610311610f17565b60405161031e91906122d1565b60405180910390f35b610341600480360381019061033c91906125f8565b610f21565b60405161034e9190612640565b60405180910390f35b610371600480360381019061036c91906125f8565b610f70565b60405161037e91906126d2565b60405180910390f35b6103a1600480360381019061039c91906126ed565b610ffb565b005b6103ab611066565b005b6103c760048036038101906103c2919061232c565b61107a565b005b6103d161108c565b6040516103de91906122d1565b60405180910390f35b6103ef611091565b6040516103fc919061273c565b60405180910390f35b61040d6110ba565b60405161041a91906122d1565b60405180910390f35b61042b611179565b60405161043891906122d1565b60405180910390f35b61045b6004803603810190610456919061232c565b611183565b005b6104656111e5565b60405161047291906122d1565b60405180910390f35b6104836111eb565b005b61048d6115e4565b60405161049a91906122d1565b60405180910390f35b6104ab6115ee565b005b6104b5611622565b6040516104c29190612640565b60405180910390f35b6104d3611639565b6040516104e091906127df565b60405180910390f35b6104f16116cb565b6040516104fe91906122d1565b60405180910390f35b61050f6116d5565b60405161051c91906122d1565b60405180910390f35b61052d6116df565b60405161053a91906122d1565b60405180910390f35b61055d600480360381019061055891906125f8565b6116e9565b005b6000600654905090565b61057161176d565b8060048190555050565b600260015414156105c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105b89061284d565b60405180910390fd5b60026001819055508080600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610626919061273c565b60206040518083038186803b15801561063e57600080fd5b505afa158015610652573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106769190612882565b10156106b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ae90612921565b60405180910390fd5b60003390506000831415610700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f7906129b3565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff166363512159826040518263ffffffff1660e01b8152600401610739919061273c565b60206040518083038186803b15801561075157600080fd5b505afa158015610765573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061078991906129ff565b6107c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107bf90612a78565b60405180910390fd5b82600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154101561084d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084490612b0a565b60405180910390fd5b610856816117eb565b6000600954600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201546108a89190612b59565b6108b06118a0565b1161092157612710600a54856108c69190612baf565b6108d09190612c38565b90508173ffffffffffffffffffffffffffffffffffffffff167f547c747d3878b7637a9d040b5479a58c43382aac8e5aa9a30a053c1a0cffb4f28260405161091891906122d1565b60405180910390a25b6000818561092f9190612c69565b905084600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282546109839190612c69565b92505081905550846007600082825461099c9190612c69565b925050819055506000600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001541415610a0957600160086000828254610a019190612c69565b925050819055505b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84836040518363ffffffff1660e01b8152600401610a66929190612c9d565b602060405180830381600087803b158015610a8057600080fd5b505af1158015610a94573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ab891906129ff565b610af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aee90612d12565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff167fb24546d975e2628748efc9aced80665e0fad66272033e5c0ea25fd3afac9979586604051610b3d91906122d1565b60405180910390a2505050506001808190555050565b610b5b61176d565b60026001541415610ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b989061284d565b60405180910390fd5b6002600181905550803073ffffffffffffffffffffffffffffffffffffffff166390be10cc6040518163ffffffff1660e01b815260040160206040518083038186803b158015610bf057600080fd5b505afa158015610c04573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c289190612882565b1015610c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6090612da4565b60405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610cc6929190612c9d565b602060405180830381600087803b158015610ce057600080fd5b505af1158015610cf4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d1891906129ff565b506001808190555050565b6000600260019054906101000a900460ff16159050808015610d5757506001600260009054906101000a900460ff1660ff16105b80610d865750610d66306118a8565b158015610d8557506001600260009054906101000a900460ff1660ff16145b5b610dc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbc90612e36565b60405180910390fd5b6001600260006101000a81548160ff021916908360ff1602179055508015610e03576001600260016101000a81548160ff0219169083151502179055505b610e158b8b8b8b8b8b8b8b8b8b6118cb565b8015610e6f576000600260016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024986001604051610e669190612ea8565b60405180910390a15b5050505050505050505050565b610e8461176d565b8060058190555050565b6000600354905090565b600080610ea433611b02565b50905080600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010154610ef59190612b59565b91505090565b6000600754905090565b610f0d61176d565b8060038190555050565b6000600a54905090565b600080600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015414159050919050565b610f786121e6565b600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060a0016040529081600082015481526020016001820154815260200160028201548152602001600382015481526020016004820154815250509050919050565b61100361176d565b60026001541415611049576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110409061284d565b60405180910390fd5b600260018190555061105b8282611ca6565b600180819055505050565b61106e61176d565b611078600061211a565b565b61108261176d565b80600a8190555050565b600a81565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600754600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161111a919061273c565b60206040518083038186803b15801561113257600080fd5b505afa158015611146573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061116a9190612882565b6111749190612c69565b905090565b6000600854905090565b600260015414156111c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c09061284d565b60405180910390fd5b60026001819055506111db8133611ca6565b6001808190555050565b61271081565b60026001541415611231576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112289061284d565b60405180910390fd5b6002600181905550600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015480600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016112d8919061273c565b60206040518083038186803b1580156112f057600080fd5b505afa158015611304573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113289190612882565b1015611369576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136090612921565b60405180910390fd5b611372336117eb565b6000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101549050600081116113fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f390612f0f565b60405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401611459929190612c9d565b602060405180830381600087803b15801561147357600080fd5b505af1158015611487573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114ab91906129ff565b6114ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e190612d12565b60405180910390fd5b6000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001018190555080600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060040160008282546115849190612b59565b925050819055503373ffffffffffffffffffffffffffffffffffffffff167fba8de60c3403ec381d1d484652ea1980e3c3e56359195c92525bff4ce47ad98e826040516115d191906122d1565b60405180910390a2505060018081905550565b6000600454905090565b6115f661176d565b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6000600b60009054906101000a900460ff16905090565b6060600c805461164890612f5e565b80601f016020809104026020016040519081016040528092919081815260200182805461167490612f5e565b80156116c15780601f10611696576101008083540402835291602001916116c1565b820191906000526020600020905b8154815290600101906020018083116116a457829003601f168201915b5050505050905090565b6000600e54905090565b6000600554905090565b6000600954905090565b6116f161176d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611761576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175890613002565b60405180910390fd5b61176a8161211a565b50565b6117756121de565b73ffffffffffffffffffffffffffffffffffffffff16611793611091565b73ffffffffffffffffffffffffffffffffffffffff16146117e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e09061306e565b60405180910390fd5b565b6000806117f783611b02565b9150915081600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101600082825461184d9190612b59565b9250508190555080600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030181905550505050565b600042905090565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600260019054906101000a900460ff1661191a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191190613100565b60405180910390fd5b612710600e541115611961576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195890613192565b60405180910390fd5b600083116119a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199b90613224565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff161415611a14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0b906132b6565b60405180910390fd5b838510611a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4d90613348565b60405180910390fd5b611a5f8a61211a565b88600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555087600e81905550866003819055508560048190555084600681905550836005819055506201518083611ad29190612baf565b60098190555081600a8190555080600c9080519060200190611af5929190612215565b5050505050505050505050565b600080600080600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206003015490506000611b576118a0565b9050600954600f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020154611ba99190612b59565b811115611c0357600954600f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020154611c009190612b59565b90505b60008282611c119190612c69565b90506127106301e13380600e54600f60008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015484611c6c9190612baf565b611c769190612baf565b611c809190612c38565b611c8a9190612c38565b84611c959190612b59565b935083829550955050505050915091565b600b60009054906101000a900460ff1615611cf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ced906133b4565b60405180910390fd5b6000611d006118a0565b90506006548111611d46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3d90613446565b60405180910390fd5b6005548110611d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d81906134b2565b60405180910390fd5b60045483600754611d9b9190612b59565b1115611ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd390613544565b60405180910390fd5b60008311611e1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e16906135d6565b60405180910390fd5b600354831015611e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5b9061368e565b60405180910390fd5b6000600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015414611ebc57611eb7826117eb565b611f1e565b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030181905550600160086000828254611f169190612b59565b925050819055505b82600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000016000828254611f709190612b59565b9250508190555080600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201819055508260076000828254611fd09190612b59565b92505081905550600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330866040518463ffffffff1660e01b8152600401612036939291906136ae565b602060405180830381600087803b15801561205057600080fd5b505af1158015612064573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061208891906129ff565b6120c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120be90613757565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff167febedb8b3c678666e7f36970bc8f57abf6d8fa2e828c0da91ea5b75bf68ed101a8460405161210d91906122d1565b60405180910390a2505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b6040518060a0016040528060008152602001600081526020016000815260200160008152602001600081525090565b82805461222190612f5e565b90600052602060002090601f016020900481019282612243576000855561228a565b82601f1061225c57805160ff191683800117855561228a565b8280016001018555821561228a579182015b8281111561228957825182559160200191906001019061226e565b5b509050612297919061229b565b5090565b5b808211156122b457600081600090555060010161229c565b5090565b6000819050919050565b6122cb816122b8565b82525050565b60006020820190506122e660008301846122c2565b92915050565b6000604051905090565b600080fd5b600080fd5b612309816122b8565b811461231457600080fd5b50565b60008135905061232681612300565b92915050565b600060208284031215612342576123416122f6565b5b600061235084828501612317565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061238482612359565b9050919050565b61239481612379565b811461239f57600080fd5b50565b6000813590506123b18161238b565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61240a826123c1565b810181811067ffffffffffffffff82111715612429576124286123d2565b5b80604052505050565b600061243c6122ec565b90506124488282612401565b919050565b600067ffffffffffffffff821115612468576124676123d2565b5b612471826123c1565b9050602081019050919050565b82818337600083830152505050565b60006124a061249b8461244d565b612432565b9050828152602081018484840111156124bc576124bb6123bc565b5b6124c784828561247e565b509392505050565b600082601f8301126124e4576124e36123b7565b5b81356124f484826020860161248d565b91505092915050565b6000806000806000806000806000806101408b8d031215612521576125206122f6565b5b600061252f8d828e016123a2565b9a505060206125408d828e016123a2565b99505060406125518d828e01612317565b98505060606125628d828e01612317565b97505060806125738d828e01612317565b96505060a06125848d828e01612317565b95505060c06125958d828e01612317565b94505060e06125a68d828e01612317565b9350506101006125b88d828e01612317565b9250506101208b013567ffffffffffffffff8111156125da576125d96122fb565b5b6125e68d828e016124cf565b9150509295989b9194979a5092959850565b60006020828403121561260e5761260d6122f6565b5b600061261c848285016123a2565b91505092915050565b60008115159050919050565b61263a81612625565b82525050565b60006020820190506126556000830184612631565b92915050565b612664816122b8565b82525050565b60a082016000820151612680600085018261265b565b506020820151612693602085018261265b565b5060408201516126a6604085018261265b565b5060608201516126b9606085018261265b565b5060808201516126cc608085018261265b565b50505050565b600060a0820190506126e7600083018461266a565b92915050565b60008060408385031215612704576127036122f6565b5b600061271285828601612317565b9250506020612723858286016123a2565b9150509250929050565b61273681612379565b82525050565b6000602082019050612751600083018461272d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612791578082015181840152602081019050612776565b838111156127a0576000848401525b50505050565b60006127b182612757565b6127bb8185612762565b93506127cb818560208601612773565b6127d4816123c1565b840191505092915050565b600060208201905081810360008301526127f981846127a6565b905092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612837601f83612762565b915061284282612801565b602082019050919050565b600060208201905081810360008301526128668161282a565b9050919050565b60008151905061287c81612300565b92915050565b600060208284031215612898576128976122f6565b5b60006128a68482850161286d565b91505092915050565b7f546f6b656e5374616b696e673a20696e73756666696369656e742066756e647360008201527f20696e2074686520747265617375727900000000000000000000000000000000602082015250565b600061290b603083612762565b9150612916826128af565b604082019050919050565b6000602082019050818103600083015261293a816128fe565b9050919050565b7f546f6b656e5374616b696e673a20616d6f756e742073686f756c64206265206e60008201527f6f6e2d7a65726f00000000000000000000000000000000000000000000000000602082015250565b600061299d602783612762565b91506129a882612941565b604082019050919050565b600060208201905081810360008301526129cc81612990565b9050919050565b6129dc81612625565b81146129e757600080fd5b50565b6000815190506129f9816129d3565b92915050565b600060208284031215612a1557612a146122f6565b5b6000612a23848285016129ea565b91505092915050565b7f546f6b656e5374616b696e673a206e6f742061207374616b65686f6c64657200600082015250565b6000612a62601f83612762565b9150612a6d82612a2c565b602082019050919050565b60006020820190508181036000830152612a9181612a55565b9050919050565b7f546f6b656e5374616b696e673a206e6f7420656e6f756768207374616b65207460008201527f6f20756e7374616b650000000000000000000000000000000000000000000000602082015250565b6000612af4602983612762565b9150612aff82612a98565b604082019050919050565b60006020820190508181036000830152612b2381612ae7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612b64826122b8565b9150612b6f836122b8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ba457612ba3612b2a565b5b828201905092915050565b6000612bba826122b8565b9150612bc5836122b8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612bfe57612bfd612b2a565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612c43826122b8565b9150612c4e836122b8565b925082612c5e57612c5d612c09565b5b828204905092915050565b6000612c74826122b8565b9150612c7f836122b8565b925082821015612c9257612c91612b2a565b5b828203905092915050565b6000604082019050612cb2600083018561272d565b612cbf60208301846122c2565b9392505050565b7f546f6b656e5374616b696e673a206661696c656420746f207472616e73666572600082015250565b6000612cfc602083612762565b9150612d0782612cc6565b602082019050919050565b60006020820190508181036000830152612d2b81612cef565b9050919050565b7f546f6b656e5374616b696e673a206e6f7420656e6f756768207769746864726160008201527f7761626c6520746f6b656e730000000000000000000000000000000000000000602082015250565b6000612d8e602c83612762565b9150612d9982612d32565b604082019050919050565b60006020820190508181036000830152612dbd81612d81565b9050919050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b6000612e20602e83612762565b9150612e2b82612dc4565b604082019050919050565b60006020820190508181036000830152612e4f81612e13565b9050919050565b6000819050919050565b600060ff82169050919050565b6000819050919050565b6000612e92612e8d612e8884612e56565b612e6d565b612e60565b9050919050565b612ea281612e77565b82525050565b6000602082019050612ebd6000830184612e99565b92915050565b7f546f6b656e5374616b696e673a206e6f2072657761726420746f20636c61696d600082015250565b6000612ef9602083612762565b9150612f0482612ec3565b602082019050919050565b60006020820190508181036000830152612f2881612eec565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612f7657607f821691505b60208210811415612f8a57612f89612f2f565b5b50919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612fec602683612762565b9150612ff782612f90565b604082019050919050565b6000602082019050818103600083015261301b81612fdf565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613058602083612762565b915061306382613022565b602082019050919050565b600060208201905081810360008301526130878161304b565b9050919050565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960008201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b60006130ea602b83612762565b91506130f58261308e565b604082019050919050565b60006020820190508181036000830152613119816130dd565b9050919050565b7f546f6b656e5374616b696e673a2061707920726174652073686f756c6420626560008201527f206c657373207468616e20313030303000000000000000000000000000000000602082015250565b600061317c603083612762565b915061318782613120565b604082019050919050565b600060208201905081810360008301526131ab8161316f565b9050919050565b7f546f6b656e5374616b696e673a207374616b652064617973206d75737420626560008201527f206e6f6e2d7a65726f0000000000000000000000000000000000000000000000602082015250565b600061320e602983612762565b9150613219826131b2565b604082019050919050565b6000602082019050818103600083015261323d81613201565b9050919050565b7f546f6b656e5374616b696e673a20746f6b656e20616464726573732063616e6e60008201527f6f74206265203020616464726573730000000000000000000000000000000000602082015250565b60006132a0602f83612762565b91506132ab82613244565b604082019050919050565b600060208201905081810360008301526132cf81613293565b9050919050565b7f546f6b656e5374616b696e673a2073746172742064617465206d75737420626560008201527f206c657373207468616e20656e64206461746500000000000000000000000000602082015250565b6000613332603383612762565b915061333d826132d6565b604082019050919050565b6000602082019050818103600083015261336181613325565b9050919050565b7f546f6b656e5374616b696e673a207374616b696e672069732070617573656400600082015250565b600061339e601f83612762565b91506133a982613368565b602082019050919050565b600060208201905081810360008301526133cd81613391565b9050919050565b7f546f6b656e5374616b696e673a207374616b696e67206e6f742073746172746560008201527f6420796574000000000000000000000000000000000000000000000000000000602082015250565b6000613430602583612762565b915061343b826133d4565b604082019050919050565b6000602082019050818103600083015261345f81613423565b9050919050565b7f546f6b656e5374616b696e673a207374616b696e6720656e6465640000000000600082015250565b600061349c601b83612762565b91506134a782613466565b602082019050919050565b600060208201905081810360008301526134cb8161348f565b9050919050565b7f546f6b656e5374616b696e673a206d6178207374616b696e6720746f6b656e2060008201527f6c696d6974207265616368656400000000000000000000000000000000000000602082015250565b600061352e602d83612762565b9150613539826134d2565b604082019050919050565b6000602082019050818103600083015261355d81613521565b9050919050565b7f546f6b656e5374616b696e673a207374616b6520616d6f756e74206d7573742060008201527f6265206e6f6e2d7a65726f000000000000000000000000000000000000000000602082015250565b60006135c0602b83612762565b91506135cb82613564565b604082019050919050565b600060208201905081810360008301526135ef816135b3565b9050919050565b7f546f6b656e5374616b696e673a207374616b6520616d6f756e74206d7573742060008201527f67726561746572207468616e206d696e696d756d20616d6f756e7420616c6c6f60208201527f7765640000000000000000000000000000000000000000000000000000000000604082015250565b6000613678604383612762565b9150613683826135f6565b606082019050919050565b600060208201905081810360008301526136a78161366b565b9050919050565b60006060820190506136c3600083018661272d565b6136d0602083018561272d565b6136dd60408301846122c2565b949350505050565b7f546f6b656e5374616b696e673a206661696c656420746f207472616e7366657260008201527f20746f6b656e7300000000000000000000000000000000000000000000000000602082015250565b6000613741602783612762565b915061374c826136e5565b604082019050919050565b6000602082019050818103600083015261377081613734565b905091905056fea2646970667358221220d50081d75cdc170498262ddf7d3be7c9446fa03ed55265e2bf0d2591e5270f2c64736f6c63430008090033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH3 0x32 PUSH3 0x26 PUSH3 0x3F PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x47 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH1 0x1 DUP1 DUP2 SWAP1 SSTORE POP PUSH3 0x10B JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH2 0x37AD DUP1 PUSH3 0x11B PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x1E4 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x7BB9769D GT PUSH2 0x10F JUMPI DUP1 PUSH4 0xBB8FEBC6 GT PUSH2 0xA2 JUMPI DUP1 PUSH4 0xD2CBF7AD GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xD2CBF7AD EQ PUSH2 0x4E9 JUMPI DUP1 PUSH4 0xF0116B74 EQ PUSH2 0x507 JUMPI DUP1 PUSH4 0xF18CCE76 EQ PUSH2 0x525 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x543 JUMPI PUSH2 0x1E4 JUMP JUMPDEST DUP1 PUSH4 0xBB8FEBC6 EQ PUSH2 0x485 JUMPI DUP1 PUSH4 0xC5D62B18 EQ PUSH2 0x4A3 JUMPI DUP1 PUSH4 0xCAB9B8FB EQ PUSH2 0x4AD JUMPI DUP1 PUSH4 0xCFA05301 EQ PUSH2 0x4CB JUMPI PUSH2 0x1E4 JUMP JUMPDEST DUP1 PUSH4 0x9BE572F6 GT PUSH2 0xDE JUMPI DUP1 PUSH4 0x9BE572F6 EQ PUSH2 0x423 JUMPI DUP1 PUSH4 0xA694FC3A EQ PUSH2 0x441 JUMPI DUP1 PUSH4 0xB3CD4254 EQ PUSH2 0x45D JUMPI DUP1 PUSH4 0xB88A802F EQ PUSH2 0x47B JUMPI PUSH2 0x1E4 JUMP JUMPDEST DUP1 PUSH4 0x7BB9769D EQ PUSH2 0x3AD JUMPI DUP1 PUSH4 0x8585D138 EQ PUSH2 0x3C9 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x3E7 JUMPI DUP1 PUSH4 0x90BE10CC EQ PUSH2 0x405 JUMPI PUSH2 0x1E4 JUMP JUMPDEST DUP1 PUSH4 0x4D55B178 GT PUSH2 0x187 JUMPI DUP1 PUSH4 0x63512159 GT PUSH2 0x156 JUMPI DUP1 PUSH4 0x63512159 EQ PUSH2 0x327 JUMPI DUP1 PUSH4 0x6F77926B EQ PUSH2 0x357 JUMPI DUP1 PUSH4 0x70607F5D EQ PUSH2 0x387 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x3A3 JUMPI PUSH2 0x1E4 JUMP JUMPDEST DUP1 PUSH4 0x4D55B178 EQ PUSH2 0x2B1 JUMPI DUP1 PUSH4 0x51D18598 EQ PUSH2 0x2CF JUMPI DUP1 PUSH4 0x55F0FE42 EQ PUSH2 0x2ED JUMPI DUP1 PUSH4 0x5E39CD75 EQ PUSH2 0x309 JUMPI PUSH2 0x1E4 JUMP JUMPDEST DUP1 PUSH4 0x2E1A7D4D GT PUSH2 0x1C3 JUMPI DUP1 PUSH4 0x2E1A7D4D EQ PUSH2 0x23F JUMPI DUP1 PUSH4 0x3192E825 EQ PUSH2 0x25B JUMPI DUP1 PUSH4 0x3E093572 EQ PUSH2 0x277 JUMPI DUP1 PUSH4 0x42A23945 EQ PUSH2 0x293 JUMPI PUSH2 0x1E4 JUMP JUMPDEST DUP1 PUSH3 0x8E3252 EQ PUSH2 0x1E9 JUMPI DUP1 PUSH4 0xC4CA4A6 EQ PUSH2 0x207 JUMPI DUP1 PUSH4 0x2E17DE78 EQ PUSH2 0x223 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1F1 PUSH2 0x55F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1FE SWAP2 SWAP1 PUSH2 0x22D1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x221 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x21C SWAP2 SWAP1 PUSH2 0x232C JUMP JUMPDEST PUSH2 0x569 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x23D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x238 SWAP2 SWAP1 PUSH2 0x232C JUMP JUMPDEST PUSH2 0x57B JUMP JUMPDEST STOP JUMPDEST PUSH2 0x259 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x254 SWAP2 SWAP1 PUSH2 0x232C JUMP JUMPDEST PUSH2 0xB53 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x275 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x270 SWAP2 SWAP1 PUSH2 0x24FD JUMP JUMPDEST PUSH2 0xD23 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x291 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x28C SWAP2 SWAP1 PUSH2 0x232C JUMP JUMPDEST PUSH2 0xE7C JUMP JUMPDEST STOP JUMPDEST PUSH2 0x29B PUSH2 0xE8E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2A8 SWAP2 SWAP1 PUSH2 0x22D1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2B9 PUSH2 0xE98 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2C6 SWAP2 SWAP1 PUSH2 0x22D1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2D7 PUSH2 0xEFB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2E4 SWAP2 SWAP1 PUSH2 0x22D1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x307 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x302 SWAP2 SWAP1 PUSH2 0x232C JUMP JUMPDEST PUSH2 0xF05 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x311 PUSH2 0xF17 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x31E SWAP2 SWAP1 PUSH2 0x22D1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x341 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x33C SWAP2 SWAP1 PUSH2 0x25F8 JUMP JUMPDEST PUSH2 0xF21 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x34E SWAP2 SWAP1 PUSH2 0x2640 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x371 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x36C SWAP2 SWAP1 PUSH2 0x25F8 JUMP JUMPDEST PUSH2 0xF70 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x37E SWAP2 SWAP1 PUSH2 0x26D2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3A1 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x39C SWAP2 SWAP1 PUSH2 0x26ED JUMP JUMPDEST PUSH2 0xFFB JUMP JUMPDEST STOP JUMPDEST PUSH2 0x3AB PUSH2 0x1066 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x3C7 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3C2 SWAP2 SWAP1 PUSH2 0x232C JUMP JUMPDEST PUSH2 0x107A JUMP JUMPDEST STOP JUMPDEST PUSH2 0x3D1 PUSH2 0x108C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3DE SWAP2 SWAP1 PUSH2 0x22D1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3EF PUSH2 0x1091 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3FC SWAP2 SWAP1 PUSH2 0x273C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x40D PUSH2 0x10BA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x41A SWAP2 SWAP1 PUSH2 0x22D1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x42B PUSH2 0x1179 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x438 SWAP2 SWAP1 PUSH2 0x22D1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x45B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x456 SWAP2 SWAP1 PUSH2 0x232C JUMP JUMPDEST PUSH2 0x1183 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x465 PUSH2 0x11E5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x472 SWAP2 SWAP1 PUSH2 0x22D1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x483 PUSH2 0x11EB JUMP JUMPDEST STOP JUMPDEST PUSH2 0x48D PUSH2 0x15E4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x49A SWAP2 SWAP1 PUSH2 0x22D1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x4AB PUSH2 0x15EE JUMP JUMPDEST STOP JUMPDEST PUSH2 0x4B5 PUSH2 0x1622 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4C2 SWAP2 SWAP1 PUSH2 0x2640 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x4D3 PUSH2 0x1639 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4E0 SWAP2 SWAP1 PUSH2 0x27DF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x4F1 PUSH2 0x16CB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4FE SWAP2 SWAP1 PUSH2 0x22D1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x50F PUSH2 0x16D5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x51C SWAP2 SWAP1 PUSH2 0x22D1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x52D PUSH2 0x16DF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x53A SWAP2 SWAP1 PUSH2 0x22D1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x55D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x558 SWAP2 SWAP1 PUSH2 0x25F8 JUMP JUMPDEST PUSH2 0x16E9 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 PUSH1 0x6 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x571 PUSH2 0x176D JUMP JUMPDEST DUP1 PUSH1 0x4 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x2 PUSH1 0x1 SLOAD EQ ISZERO PUSH2 0x5C1 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5B8 SWAP1 PUSH2 0x284D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 PUSH1 0x1 DUP2 SWAP1 SSTORE POP DUP1 DUP1 PUSH1 0xD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x70A08231 ADDRESS PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x626 SWAP2 SWAP1 PUSH2 0x273C JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x63E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x652 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x676 SWAP2 SWAP1 PUSH2 0x2882 JUMP JUMPDEST LT ISZERO PUSH2 0x6B7 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6AE SWAP1 PUSH2 0x2921 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 CALLER SWAP1 POP PUSH1 0x0 DUP4 EQ ISZERO PUSH2 0x700 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6F7 SWAP1 PUSH2 0x29B3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST ADDRESS PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x63512159 DUP3 PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x739 SWAP2 SWAP1 PUSH2 0x273C JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x751 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x765 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x789 SWAP2 SWAP1 PUSH2 0x29FF JUMP JUMPDEST PUSH2 0x7C8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7BF SWAP1 PUSH2 0x2A78 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP3 PUSH1 0xF PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD SLOAD LT ISZERO PUSH2 0x84D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x844 SWAP1 PUSH2 0x2B0A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x856 DUP2 PUSH2 0x17EB JUMP JUMPDEST PUSH1 0x0 PUSH1 0x9 SLOAD PUSH1 0xF PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x2 ADD SLOAD PUSH2 0x8A8 SWAP2 SWAP1 PUSH2 0x2B59 JUMP JUMPDEST PUSH2 0x8B0 PUSH2 0x18A0 JUMP JUMPDEST GT PUSH2 0x921 JUMPI PUSH2 0x2710 PUSH1 0xA SLOAD DUP6 PUSH2 0x8C6 SWAP2 SWAP1 PUSH2 0x2BAF JUMP JUMPDEST PUSH2 0x8D0 SWAP2 SWAP1 PUSH2 0x2C38 JUMP JUMPDEST SWAP1 POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x547C747D3878B7637A9D040B5479A58C43382AAC8E5AA9A30A053C1A0CFFB4F2 DUP3 PUSH1 0x40 MLOAD PUSH2 0x918 SWAP2 SWAP1 PUSH2 0x22D1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 JUMPDEST PUSH1 0x0 DUP2 DUP6 PUSH2 0x92F SWAP2 SWAP1 PUSH2 0x2C69 JUMP JUMPDEST SWAP1 POP DUP5 PUSH1 0xF PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x983 SWAP2 SWAP1 PUSH2 0x2C69 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP5 PUSH1 0x7 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x99C SWAP2 SWAP1 PUSH2 0x2C69 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x0 PUSH1 0xF PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD SLOAD EQ ISZERO PUSH2 0xA09 JUMPI PUSH1 0x1 PUSH1 0x8 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0xA01 SWAP2 SWAP1 PUSH2 0x2C69 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP JUMPDEST PUSH1 0xD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB DUP5 DUP4 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA66 SWAP3 SWAP2 SWAP1 PUSH2 0x2C9D JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xA80 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xA94 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xAB8 SWAP2 SWAP1 PUSH2 0x29FF JUMP JUMPDEST PUSH2 0xAF7 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAEE SWAP1 PUSH2 0x2D12 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xB24546D975E2628748EFC9ACED80665E0FAD66272033E5C0EA25FD3AFAC99795 DUP7 PUSH1 0x40 MLOAD PUSH2 0xB3D SWAP2 SWAP1 PUSH2 0x22D1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP PUSH1 0x1 DUP1 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH2 0xB5B PUSH2 0x176D JUMP JUMPDEST PUSH1 0x2 PUSH1 0x1 SLOAD EQ ISZERO PUSH2 0xBA1 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB98 SWAP1 PUSH2 0x284D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 PUSH1 0x1 DUP2 SWAP1 SSTORE POP DUP1 ADDRESS PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x90BE10CC PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xBF0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xC04 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xC28 SWAP2 SWAP1 PUSH2 0x2882 JUMP JUMPDEST LT ISZERO PUSH2 0xC69 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC60 SWAP1 PUSH2 0x2DA4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0xD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB CALLER DUP4 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xCC6 SWAP3 SWAP2 SWAP1 PUSH2 0x2C9D JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xCE0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xCF4 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xD18 SWAP2 SWAP1 PUSH2 0x29FF JUMP JUMPDEST POP PUSH1 0x1 DUP1 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0xD57 JUMPI POP PUSH1 0x1 PUSH1 0x2 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH1 0xFF AND LT JUMPDEST DUP1 PUSH2 0xD86 JUMPI POP PUSH2 0xD66 ADDRESS PUSH2 0x18A8 JUMP JUMPDEST ISZERO DUP1 ISZERO PUSH2 0xD85 JUMPI POP PUSH1 0x1 PUSH1 0x2 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH1 0xFF AND EQ JUMPDEST JUMPDEST PUSH2 0xDC5 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDBC SWAP1 PUSH2 0x2E36 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x2 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0xFF AND MUL OR SWAP1 SSTORE POP DUP1 ISZERO PUSH2 0xE03 JUMPI PUSH1 0x1 PUSH1 0x2 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP JUMPDEST PUSH2 0xE15 DUP12 DUP12 DUP12 DUP12 DUP12 DUP12 DUP12 DUP12 DUP12 DUP12 PUSH2 0x18CB JUMP JUMPDEST DUP1 ISZERO PUSH2 0xE6F JUMPI PUSH1 0x0 PUSH1 0x2 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x7F26B83FF96E1F2B6A682F133852F6798A09C465DA95921460CEFB3847402498 PUSH1 0x1 PUSH1 0x40 MLOAD PUSH2 0xE66 SWAP2 SWAP1 PUSH2 0x2EA8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0xE84 PUSH2 0x176D JUMP JUMPDEST DUP1 PUSH1 0x5 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x3 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0xEA4 CALLER PUSH2 0x1B02 JUMP JUMPDEST POP SWAP1 POP DUP1 PUSH1 0xF PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH2 0xEF5 SWAP2 SWAP1 PUSH2 0x2B59 JUMP JUMPDEST SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x7 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0xF0D PUSH2 0x176D JUMP JUMPDEST DUP1 PUSH1 0x3 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0xF PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD SLOAD EQ ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xF78 PUSH2 0x21E6 JUMP JUMPDEST PUSH1 0xF PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0xA0 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x4 DUP3 ADD SLOAD DUP2 MSTORE POP POP SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1003 PUSH2 0x176D JUMP JUMPDEST PUSH1 0x2 PUSH1 0x1 SLOAD EQ ISZERO PUSH2 0x1049 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1040 SWAP1 PUSH2 0x284D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 PUSH1 0x1 DUP2 SWAP1 SSTORE POP PUSH2 0x105B DUP3 DUP3 PUSH2 0x1CA6 JUMP JUMPDEST PUSH1 0x1 DUP1 DUP2 SWAP1 SSTORE POP POP POP JUMP JUMPDEST PUSH2 0x106E PUSH2 0x176D JUMP JUMPDEST PUSH2 0x1078 PUSH1 0x0 PUSH2 0x211A JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x1082 PUSH2 0x176D JUMP JUMPDEST DUP1 PUSH1 0xA DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0xA DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x7 SLOAD PUSH1 0xD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x70A08231 ADDRESS PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x111A SWAP2 SWAP1 PUSH2 0x273C JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1132 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1146 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x116A SWAP2 SWAP1 PUSH2 0x2882 JUMP JUMPDEST PUSH2 0x1174 SWAP2 SWAP1 PUSH2 0x2C69 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x8 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x2 PUSH1 0x1 SLOAD EQ ISZERO PUSH2 0x11C9 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x11C0 SWAP1 PUSH2 0x284D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 PUSH1 0x1 DUP2 SWAP1 SSTORE POP PUSH2 0x11DB DUP2 CALLER PUSH2 0x1CA6 JUMP JUMPDEST PUSH1 0x1 DUP1 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH2 0x2710 DUP2 JUMP JUMPDEST PUSH1 0x2 PUSH1 0x1 SLOAD EQ ISZERO PUSH2 0x1231 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1228 SWAP1 PUSH2 0x284D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 PUSH1 0x1 DUP2 SWAP1 SSTORE POP PUSH1 0xF PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x1 ADD SLOAD DUP1 PUSH1 0xD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x70A08231 ADDRESS PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x12D8 SWAP2 SWAP1 PUSH2 0x273C JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x12F0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1304 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1328 SWAP2 SWAP1 PUSH2 0x2882 JUMP JUMPDEST LT ISZERO PUSH2 0x1369 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1360 SWAP1 PUSH2 0x2921 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1372 CALLER PUSH2 0x17EB JUMP JUMPDEST PUSH1 0x0 PUSH1 0xF PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x1 ADD SLOAD SWAP1 POP PUSH1 0x0 DUP2 GT PUSH2 0x13FC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x13F3 SWAP1 PUSH2 0x2F0F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0xD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB CALLER DUP4 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1459 SWAP3 SWAP2 SWAP1 PUSH2 0x2C9D JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1473 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1487 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x14AB SWAP2 SWAP1 PUSH2 0x29FF JUMP JUMPDEST PUSH2 0x14EA JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x14E1 SWAP1 PUSH2 0x2D12 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0xF PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x1 ADD DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0xF PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x4 ADD PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1584 SWAP2 SWAP1 PUSH2 0x2B59 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xBA8DE60C3403EC381D1D484652EA1980E3C3E56359195C92525BFF4CE47AD98E DUP3 PUSH1 0x40 MLOAD PUSH2 0x15D1 SWAP2 SWAP1 PUSH2 0x22D1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP PUSH1 0x1 DUP1 DUP2 SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x4 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x15F6 PUSH2 0x176D JUMP JUMPDEST PUSH1 0xB PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH1 0xB PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xB PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0xC DUP1 SLOAD PUSH2 0x1648 SWAP1 PUSH2 0x2F5E JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x1674 SWAP1 PUSH2 0x2F5E JUMP JUMPDEST DUP1 ISZERO PUSH2 0x16C1 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x1696 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x16C1 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x16A4 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0xE SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x9 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x16F1 PUSH2 0x176D JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x1761 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1758 SWAP1 PUSH2 0x3002 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x176A DUP2 PUSH2 0x211A JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x1775 PUSH2 0x21DE JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1793 PUSH2 0x1091 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x17E9 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x17E0 SWAP1 PUSH2 0x306E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x17F7 DUP4 PUSH2 0x1B02 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH1 0xF PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x1 ADD PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x184D SWAP2 SWAP1 PUSH2 0x2B59 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0xF PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x3 ADD DUP2 SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 TIMESTAMP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EXTCODESIZE GT SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x2 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x191A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1911 SWAP1 PUSH2 0x3100 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x2710 PUSH1 0xE SLOAD GT ISZERO PUSH2 0x1961 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1958 SWAP1 PUSH2 0x3192 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP4 GT PUSH2 0x19A4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x199B SWAP1 PUSH2 0x3224 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP10 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x1A14 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1A0B SWAP1 PUSH2 0x32B6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP4 DUP6 LT PUSH2 0x1A56 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1A4D SWAP1 PUSH2 0x3348 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1A5F DUP11 PUSH2 0x211A JUMP JUMPDEST DUP9 PUSH1 0xD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP8 PUSH1 0xE DUP2 SWAP1 SSTORE POP DUP7 PUSH1 0x3 DUP2 SWAP1 SSTORE POP DUP6 PUSH1 0x4 DUP2 SWAP1 SSTORE POP DUP5 PUSH1 0x6 DUP2 SWAP1 SSTORE POP DUP4 PUSH1 0x5 DUP2 SWAP1 SSTORE POP PUSH3 0x15180 DUP4 PUSH2 0x1AD2 SWAP2 SWAP1 PUSH2 0x2BAF JUMP JUMPDEST PUSH1 0x9 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0xA DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0xC SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x1AF5 SWAP3 SWAP2 SWAP1 PUSH2 0x2215 JUMP JUMPDEST POP POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0xF PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x3 ADD SLOAD SWAP1 POP PUSH1 0x0 PUSH2 0x1B57 PUSH2 0x18A0 JUMP JUMPDEST SWAP1 POP PUSH1 0x9 SLOAD PUSH1 0xF PUSH1 0x0 DUP9 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x2 ADD SLOAD PUSH2 0x1BA9 SWAP2 SWAP1 PUSH2 0x2B59 JUMP JUMPDEST DUP2 GT ISZERO PUSH2 0x1C03 JUMPI PUSH1 0x9 SLOAD PUSH1 0xF PUSH1 0x0 DUP9 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x2 ADD SLOAD PUSH2 0x1C00 SWAP2 SWAP1 PUSH2 0x2B59 JUMP JUMPDEST SWAP1 POP JUMPDEST PUSH1 0x0 DUP3 DUP3 PUSH2 0x1C11 SWAP2 SWAP1 PUSH2 0x2C69 JUMP JUMPDEST SWAP1 POP PUSH2 0x2710 PUSH4 0x1E13380 PUSH1 0xE SLOAD PUSH1 0xF PUSH1 0x0 DUP12 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD SLOAD DUP5 PUSH2 0x1C6C SWAP2 SWAP1 PUSH2 0x2BAF JUMP JUMPDEST PUSH2 0x1C76 SWAP2 SWAP1 PUSH2 0x2BAF JUMP JUMPDEST PUSH2 0x1C80 SWAP2 SWAP1 PUSH2 0x2C38 JUMP JUMPDEST PUSH2 0x1C8A SWAP2 SWAP1 PUSH2 0x2C38 JUMP JUMPDEST DUP5 PUSH2 0x1C95 SWAP2 SWAP1 PUSH2 0x2B59 JUMP JUMPDEST SWAP4 POP DUP4 DUP3 SWAP6 POP SWAP6 POP POP POP POP POP SWAP2 POP SWAP2 JUMP JUMPDEST PUSH1 0xB PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x1CF6 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1CED SWAP1 PUSH2 0x33B4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1D00 PUSH2 0x18A0 JUMP JUMPDEST SWAP1 POP PUSH1 0x6 SLOAD DUP2 GT PUSH2 0x1D46 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1D3D SWAP1 PUSH2 0x3446 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x5 SLOAD DUP2 LT PUSH2 0x1D8A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1D81 SWAP1 PUSH2 0x34B2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x4 SLOAD DUP4 PUSH1 0x7 SLOAD PUSH2 0x1D9B SWAP2 SWAP1 PUSH2 0x2B59 JUMP JUMPDEST GT ISZERO PUSH2 0x1DDC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1DD3 SWAP1 PUSH2 0x3544 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP4 GT PUSH2 0x1E1F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1E16 SWAP1 PUSH2 0x35D6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x3 SLOAD DUP4 LT ISZERO PUSH2 0x1E64 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1E5B SWAP1 PUSH2 0x368E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0xF PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD SLOAD EQ PUSH2 0x1EBC JUMPI PUSH2 0x1EB7 DUP3 PUSH2 0x17EB JUMP JUMPDEST PUSH2 0x1F1E JUMP JUMPDEST DUP1 PUSH1 0xF PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x3 ADD DUP2 SWAP1 SSTORE POP PUSH1 0x1 PUSH1 0x8 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1F16 SWAP2 SWAP1 PUSH2 0x2B59 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP JUMPDEST DUP3 PUSH1 0xF PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1F70 SWAP2 SWAP1 PUSH2 0x2B59 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0xF PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x2 ADD DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x7 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1FD0 SWAP2 SWAP1 PUSH2 0x2B59 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0xD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x23B872DD CALLER ADDRESS DUP7 PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2036 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x36AE JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x2050 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2064 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x2088 SWAP2 SWAP1 PUSH2 0x29FF JUMP JUMPDEST PUSH2 0x20C7 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x20BE SWAP1 PUSH2 0x3757 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xEBEDB8B3C678666E7F36970BC8F57ABF6D8FA2E828C0DA91EA5B75BF68ED101A DUP5 PUSH1 0x40 MLOAD PUSH2 0x210D SWAP2 SWAP1 PUSH2 0x22D1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0xA0 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x2221 SWAP1 PUSH2 0x2F5E JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x2243 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x228A JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x225C JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x228A JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x228A JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x2289 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x226E JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x2297 SWAP2 SWAP1 PUSH2 0x229B JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x22B4 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x229C JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x22CB DUP2 PUSH2 0x22B8 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x22E6 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x22C2 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2309 DUP2 PUSH2 0x22B8 JUMP JUMPDEST DUP2 EQ PUSH2 0x2314 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2326 DUP2 PUSH2 0x2300 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2342 JUMPI PUSH2 0x2341 PUSH2 0x22F6 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2350 DUP5 DUP3 DUP6 ADD PUSH2 0x2317 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2384 DUP3 PUSH2 0x2359 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2394 DUP2 PUSH2 0x2379 JUMP JUMPDEST DUP2 EQ PUSH2 0x239F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x23B1 DUP2 PUSH2 0x238B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x240A DUP3 PUSH2 0x23C1 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x2429 JUMPI PUSH2 0x2428 PUSH2 0x23D2 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x243C PUSH2 0x22EC JUMP JUMPDEST SWAP1 POP PUSH2 0x2448 DUP3 DUP3 PUSH2 0x2401 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x2468 JUMPI PUSH2 0x2467 PUSH2 0x23D2 JUMP JUMPDEST JUMPDEST PUSH2 0x2471 DUP3 PUSH2 0x23C1 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x24A0 PUSH2 0x249B DUP5 PUSH2 0x244D JUMP JUMPDEST PUSH2 0x2432 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x24BC JUMPI PUSH2 0x24BB PUSH2 0x23BC JUMP JUMPDEST JUMPDEST PUSH2 0x24C7 DUP5 DUP3 DUP6 PUSH2 0x247E JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x24E4 JUMPI PUSH2 0x24E3 PUSH2 0x23B7 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x24F4 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x248D JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH2 0x140 DUP12 DUP14 SUB SLT ISZERO PUSH2 0x2521 JUMPI PUSH2 0x2520 PUSH2 0x22F6 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x252F DUP14 DUP3 DUP15 ADD PUSH2 0x23A2 JUMP JUMPDEST SWAP11 POP POP PUSH1 0x20 PUSH2 0x2540 DUP14 DUP3 DUP15 ADD PUSH2 0x23A2 JUMP JUMPDEST SWAP10 POP POP PUSH1 0x40 PUSH2 0x2551 DUP14 DUP3 DUP15 ADD PUSH2 0x2317 JUMP JUMPDEST SWAP9 POP POP PUSH1 0x60 PUSH2 0x2562 DUP14 DUP3 DUP15 ADD PUSH2 0x2317 JUMP JUMPDEST SWAP8 POP POP PUSH1 0x80 PUSH2 0x2573 DUP14 DUP3 DUP15 ADD PUSH2 0x2317 JUMP JUMPDEST SWAP7 POP POP PUSH1 0xA0 PUSH2 0x2584 DUP14 DUP3 DUP15 ADD PUSH2 0x2317 JUMP JUMPDEST SWAP6 POP POP PUSH1 0xC0 PUSH2 0x2595 DUP14 DUP3 DUP15 ADD PUSH2 0x2317 JUMP JUMPDEST SWAP5 POP POP PUSH1 0xE0 PUSH2 0x25A6 DUP14 DUP3 DUP15 ADD PUSH2 0x2317 JUMP JUMPDEST SWAP4 POP POP PUSH2 0x100 PUSH2 0x25B8 DUP14 DUP3 DUP15 ADD PUSH2 0x2317 JUMP JUMPDEST SWAP3 POP POP PUSH2 0x120 DUP12 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x25DA JUMPI PUSH2 0x25D9 PUSH2 0x22FB JUMP JUMPDEST JUMPDEST PUSH2 0x25E6 DUP14 DUP3 DUP15 ADD PUSH2 0x24CF JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP9 SWAP12 SWAP2 SWAP5 SWAP8 SWAP11 POP SWAP3 SWAP6 SWAP9 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x260E JUMPI PUSH2 0x260D PUSH2 0x22F6 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x261C DUP5 DUP3 DUP6 ADD PUSH2 0x23A2 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x263A DUP2 PUSH2 0x2625 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2655 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2631 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2664 DUP2 PUSH2 0x22B8 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0xA0 DUP3 ADD PUSH1 0x0 DUP3 ADD MLOAD PUSH2 0x2680 PUSH1 0x0 DUP6 ADD DUP3 PUSH2 0x265B JUMP JUMPDEST POP PUSH1 0x20 DUP3 ADD MLOAD PUSH2 0x2693 PUSH1 0x20 DUP6 ADD DUP3 PUSH2 0x265B JUMP JUMPDEST POP PUSH1 0x40 DUP3 ADD MLOAD PUSH2 0x26A6 PUSH1 0x40 DUP6 ADD DUP3 PUSH2 0x265B JUMP JUMPDEST POP PUSH1 0x60 DUP3 ADD MLOAD PUSH2 0x26B9 PUSH1 0x60 DUP6 ADD DUP3 PUSH2 0x265B JUMP JUMPDEST POP PUSH1 0x80 DUP3 ADD MLOAD PUSH2 0x26CC PUSH1 0x80 DUP6 ADD DUP3 PUSH2 0x265B JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA0 DUP3 ADD SWAP1 POP PUSH2 0x26E7 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x266A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2704 JUMPI PUSH2 0x2703 PUSH2 0x22F6 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2712 DUP6 DUP3 DUP7 ADD PUSH2 0x2317 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x2723 DUP6 DUP3 DUP7 ADD PUSH2 0x23A2 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0x2736 DUP2 PUSH2 0x2379 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2751 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x272D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x2791 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x2776 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x27A0 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x27B1 DUP3 PUSH2 0x2757 JUMP JUMPDEST PUSH2 0x27BB DUP2 DUP6 PUSH2 0x2762 JUMP JUMPDEST SWAP4 POP PUSH2 0x27CB DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x2773 JUMP JUMPDEST PUSH2 0x27D4 DUP2 PUSH2 0x23C1 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x27F9 DUP2 DUP5 PUSH2 0x27A6 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x5265656E7472616E637947756172643A207265656E7472616E742063616C6C00 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2837 PUSH1 0x1F DUP4 PUSH2 0x2762 JUMP JUMPDEST SWAP2 POP PUSH2 0x2842 DUP3 PUSH2 0x2801 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2866 DUP2 PUSH2 0x282A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x287C DUP2 PUSH2 0x2300 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2898 JUMPI PUSH2 0x2897 PUSH2 0x22F6 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x28A6 DUP5 DUP3 DUP6 ADD PUSH2 0x286D JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A20696E73756666696369656E742066756E6473 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x20696E2074686520747265617375727900000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x290B PUSH1 0x30 DUP4 PUSH2 0x2762 JUMP JUMPDEST SWAP2 POP PUSH2 0x2916 DUP3 PUSH2 0x28AF JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x293A DUP2 PUSH2 0x28FE JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A20616D6F756E742073686F756C64206265206E PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6F6E2D7A65726F00000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x299D PUSH1 0x27 DUP4 PUSH2 0x2762 JUMP JUMPDEST SWAP2 POP PUSH2 0x29A8 DUP3 PUSH2 0x2941 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x29CC DUP2 PUSH2 0x2990 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x29DC DUP2 PUSH2 0x2625 JUMP JUMPDEST DUP2 EQ PUSH2 0x29E7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x29F9 DUP2 PUSH2 0x29D3 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2A15 JUMPI PUSH2 0x2A14 PUSH2 0x22F6 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2A23 DUP5 DUP3 DUP6 ADD PUSH2 0x29EA JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A206E6F742061207374616B65686F6C64657200 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2A62 PUSH1 0x1F DUP4 PUSH2 0x2762 JUMP JUMPDEST SWAP2 POP PUSH2 0x2A6D DUP3 PUSH2 0x2A2C JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2A91 DUP2 PUSH2 0x2A55 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A206E6F7420656E6F756768207374616B652074 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6F20756E7374616B650000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2AF4 PUSH1 0x29 DUP4 PUSH2 0x2762 JUMP JUMPDEST SWAP2 POP PUSH2 0x2AFF DUP3 PUSH2 0x2A98 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2B23 DUP2 PUSH2 0x2AE7 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x2B64 DUP3 PUSH2 0x22B8 JUMP JUMPDEST SWAP2 POP PUSH2 0x2B6F DUP4 PUSH2 0x22B8 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x2BA4 JUMPI PUSH2 0x2BA3 PUSH2 0x2B2A JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2BBA DUP3 PUSH2 0x22B8 JUMP JUMPDEST SWAP2 POP PUSH2 0x2BC5 DUP4 PUSH2 0x22B8 JUMP JUMPDEST SWAP3 POP DUP2 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x2BFE JUMPI PUSH2 0x2BFD PUSH2 0x2B2A JUMP JUMPDEST JUMPDEST DUP3 DUP3 MUL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x2C43 DUP3 PUSH2 0x22B8 JUMP JUMPDEST SWAP2 POP PUSH2 0x2C4E DUP4 PUSH2 0x22B8 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x2C5E JUMPI PUSH2 0x2C5D PUSH2 0x2C09 JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2C74 DUP3 PUSH2 0x22B8 JUMP JUMPDEST SWAP2 POP PUSH2 0x2C7F DUP4 PUSH2 0x22B8 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x2C92 JUMPI PUSH2 0x2C91 PUSH2 0x2B2A JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x2CB2 PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x272D JUMP JUMPDEST PUSH2 0x2CBF PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x22C2 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A206661696C656420746F207472616E73666572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2CFC PUSH1 0x20 DUP4 PUSH2 0x2762 JUMP JUMPDEST SWAP2 POP PUSH2 0x2D07 DUP3 PUSH2 0x2CC6 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2D2B DUP2 PUSH2 0x2CEF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A206E6F7420656E6F7567682077697468647261 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7761626C6520746F6B656E730000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2D8E PUSH1 0x2C DUP4 PUSH2 0x2762 JUMP JUMPDEST SWAP2 POP PUSH2 0x2D99 DUP3 PUSH2 0x2D32 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2DBD DUP2 PUSH2 0x2D81 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x496E697469616C697A61626C653A20636F6E747261637420697320616C726561 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x647920696E697469616C697A6564000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E20 PUSH1 0x2E DUP4 PUSH2 0x2762 JUMP JUMPDEST SWAP2 POP PUSH2 0x2E2B DUP3 PUSH2 0x2DC4 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2E4F DUP2 PUSH2 0x2E13 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E92 PUSH2 0x2E8D PUSH2 0x2E88 DUP5 PUSH2 0x2E56 JUMP JUMPDEST PUSH2 0x2E6D JUMP JUMPDEST PUSH2 0x2E60 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2EA2 DUP2 PUSH2 0x2E77 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2EBD PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2E99 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A206E6F2072657761726420746F20636C61696D PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2EF9 PUSH1 0x20 DUP4 PUSH2 0x2762 JUMP JUMPDEST SWAP2 POP PUSH2 0x2F04 DUP3 PUSH2 0x2EC3 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2F28 DUP2 PUSH2 0x2EEC JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x2F76 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x2F8A JUMPI PUSH2 0x2F89 PUSH2 0x2F2F JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2FEC PUSH1 0x26 DUP4 PUSH2 0x2762 JUMP JUMPDEST SWAP2 POP PUSH2 0x2FF7 DUP3 PUSH2 0x2F90 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x301B DUP2 PUSH2 0x2FDF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3058 PUSH1 0x20 DUP4 PUSH2 0x2762 JUMP JUMPDEST SWAP2 POP PUSH2 0x3063 DUP3 PUSH2 0x3022 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3087 DUP2 PUSH2 0x304B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x496E697469616C697A61626C653A20636F6E7472616374206973206E6F742069 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6E697469616C697A696E67000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x30EA PUSH1 0x2B DUP4 PUSH2 0x2762 JUMP JUMPDEST SWAP2 POP PUSH2 0x30F5 DUP3 PUSH2 0x308E JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3119 DUP2 PUSH2 0x30DD JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A2061707920726174652073686F756C64206265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x206C657373207468616E20313030303000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x317C PUSH1 0x30 DUP4 PUSH2 0x2762 JUMP JUMPDEST SWAP2 POP PUSH2 0x3187 DUP3 PUSH2 0x3120 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x31AB DUP2 PUSH2 0x316F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A207374616B652064617973206D757374206265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x206E6F6E2D7A65726F0000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x320E PUSH1 0x29 DUP4 PUSH2 0x2762 JUMP JUMPDEST SWAP2 POP PUSH2 0x3219 DUP3 PUSH2 0x31B2 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x323D DUP2 PUSH2 0x3201 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A20746F6B656E20616464726573732063616E6E PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6F74206265203020616464726573730000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x32A0 PUSH1 0x2F DUP4 PUSH2 0x2762 JUMP JUMPDEST SWAP2 POP PUSH2 0x32AB DUP3 PUSH2 0x3244 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x32CF DUP2 PUSH2 0x3293 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A2073746172742064617465206D757374206265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x206C657373207468616E20656E64206461746500000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3332 PUSH1 0x33 DUP4 PUSH2 0x2762 JUMP JUMPDEST SWAP2 POP PUSH2 0x333D DUP3 PUSH2 0x32D6 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3361 DUP2 PUSH2 0x3325 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A207374616B696E672069732070617573656400 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x339E PUSH1 0x1F DUP4 PUSH2 0x2762 JUMP JUMPDEST SWAP2 POP PUSH2 0x33A9 DUP3 PUSH2 0x3368 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x33CD DUP2 PUSH2 0x3391 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A207374616B696E67206E6F7420737461727465 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6420796574000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3430 PUSH1 0x25 DUP4 PUSH2 0x2762 JUMP JUMPDEST SWAP2 POP PUSH2 0x343B DUP3 PUSH2 0x33D4 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x345F DUP2 PUSH2 0x3423 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A207374616B696E6720656E6465640000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x349C PUSH1 0x1B DUP4 PUSH2 0x2762 JUMP JUMPDEST SWAP2 POP PUSH2 0x34A7 DUP3 PUSH2 0x3466 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x34CB DUP2 PUSH2 0x348F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A206D6178207374616B696E6720746F6B656E20 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6C696D6974207265616368656400000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x352E PUSH1 0x2D DUP4 PUSH2 0x2762 JUMP JUMPDEST SWAP2 POP PUSH2 0x3539 DUP3 PUSH2 0x34D2 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x355D DUP2 PUSH2 0x3521 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A207374616B6520616D6F756E74206D75737420 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6265206E6F6E2D7A65726F000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x35C0 PUSH1 0x2B DUP4 PUSH2 0x2762 JUMP JUMPDEST SWAP2 POP PUSH2 0x35CB DUP3 PUSH2 0x3564 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x35EF DUP2 PUSH2 0x35B3 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A207374616B6520616D6F756E74206D75737420 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x67726561746572207468616E206D696E696D756D20616D6F756E7420616C6C6F PUSH1 0x20 DUP3 ADD MSTORE PUSH32 0x7765640000000000000000000000000000000000000000000000000000000000 PUSH1 0x40 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3678 PUSH1 0x43 DUP4 PUSH2 0x2762 JUMP JUMPDEST SWAP2 POP PUSH2 0x3683 DUP3 PUSH2 0x35F6 JUMP JUMPDEST PUSH1 0x60 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x36A7 DUP2 PUSH2 0x366B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x36C3 PUSH1 0x0 DUP4 ADD DUP7 PUSH2 0x272D JUMP JUMPDEST PUSH2 0x36D0 PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x272D JUMP JUMPDEST PUSH2 0x36DD PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x22C2 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A206661696C656420746F207472616E73666572 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x20746F6B656E7300000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3741 PUSH1 0x27 DUP4 PUSH2 0x2762 JUMP JUMPDEST SWAP2 POP PUSH2 0x374C DUP3 PUSH2 0x36E5 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3770 DUP2 PUSH2 0x3734 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD5 STOP DUP2 0xD7 0x5C 0xDC OR DIV SWAP9 0x26 0x2D 0xDF PUSH30 0x3BE7C9446FA03ED55265E2BF0D2591E5270F2C64736F6C63430008090033 ",
"sourceMap": "23671:14430:0:-:0;;;;;;;;;;;;;18982:32;19001:12;:10;;;:12;;:::i;:::-;18982:18;;;:32;;:::i;:::-;16142:1;16253:7;:22;;;;23671:14430;;17812:98;17865:7;17892:10;17885:17;;17812:98;:::o;20528:191::-;20602:16;20621:6;;;;;;;;;;;20602:25;;20647:8;20638:6;;:17;;;;;;;;;;;;;;;;;;20702:8;20671:40;;20692:8;20671:40;;;;;;;;;;;;20591:128;20528:191;:::o;23671:14430::-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@APY_RATE_CHANGE_THRESHOLD_739": {
"entryPoint": 4236,
"id": 739,
"parameterSlots": 0,
"returnSlots": 0
},
"@PERCENTAGE_DENOMINATOR_736": {
"entryPoint": 4581,
"id": 736,
"parameterSlots": 0,
"returnSlots": 0
},
"@__TokenStaking_init_unchained_927": {
"entryPoint": 6347,
"id": 927,
"parameterSlots": 10,
"returnSlots": 0
},
"@_calculateRewards_1559": {
"entryPoint": 6123,
"id": 1559,
"parameterSlots": 1,
"returnSlots": 0
},
"@_checkOwner_556": {
"entryPoint": 5997,
"id": 556,
"parameterSlots": 0,
"returnSlots": 0
},
"@_getUserEstimatedRewards_1631": {
"entryPoint": 6914,
"id": 1631,
"parameterSlots": 1,
"returnSlots": 2
},
"@_msgSender_493": {
"entryPoint": 8670,
"id": 493,
"parameterSlots": 0,
"returnSlots": 1
},
"@_stakeTokens_1342": {
"entryPoint": 7334,
"id": 1342,
"parameterSlots": 2,
"returnSlots": 0
},
"@_transferOwnership_613": {
"entryPoint": 8474,
"id": 613,
"parameterSlots": 1,
"returnSlots": 0
},
"@claimReward_1530": {
"entryPoint": 4587,
"id": 1530,
"parameterSlots": 0,
"returnSlots": 0
},
"@getAPY_1017": {
"entryPoint": 5835,
"id": 1017,
"parameterSlots": 0,
"returnSlots": 1
},
"@getCurrentTime_1640": {
"entryPoint": 6304,
"id": 1640,
"parameterSlots": 0,
"returnSlots": 1
},
"@getEarlyUnstakeFeePercentage_999": {
"entryPoint": 3863,
"id": 999,
"parameterSlots": 0,
"returnSlots": 1
},
"@getMaxStakingTokenLimit_945": {
"entryPoint": 5604,
"id": 945,
"parameterSlots": 0,
"returnSlots": 1
},
"@getMinimumStakingAmount_936": {
"entryPoint": 3726,
"id": 936,
"parameterSlots": 0,
"returnSlots": 1
},
"@getStakeDays_990": {
"entryPoint": 5855,
"id": 990,
"parameterSlots": 0,
"returnSlots": 1
},
"@getStakeEndDate_963": {
"entryPoint": 5845,
"id": 963,
"parameterSlots": 0,
"returnSlots": 1
},
"@getStakeStartDate_954": {
"entryPoint": 1375,
"id": 954,
"parameterSlots": 0,
"returnSlots": 1
},
"@getStakingStatus_1008": {
"entryPoint": 5666,
"id": 1008,
"parameterSlots": 0,
"returnSlots": 1
},
"@getTokenImageUrl_1081": {
"entryPoint": 5689,
"id": 1081,
"parameterSlots": 0,
"returnSlots": 1
},
"@getTotalStakedTokens_972": {
"entryPoint": 3835,
"id": 972,
"parameterSlots": 0,
"returnSlots": 1
},
"@getTotalUsers_981": {
"entryPoint": 4473,
"id": 981,
"parameterSlots": 0,
"returnSlots": 1
},
"@getUserEstimatedRewards_1039": {
"entryPoint": 3736,
"id": 1039,
"parameterSlots": 0,
"returnSlots": 1
},
"@getUser_1072": {
"entryPoint": 3952,
"id": 1072,
"parameterSlots": 1,
"returnSlots": 1
},
"@getWithdrawableAmount_1058": {
"entryPoint": 4282,
"id": 1058,
"parameterSlots": 0,
"returnSlots": 1
},
"@initialize_828": {
"entryPoint": 3363,
"id": 828,
"parameterSlots": 10,
"returnSlots": 0
},
"@isContract_17": {
"entryPoint": 6312,
"id": 17,
"parameterSlots": 1,
"returnSlots": 1
},
"@isStakeHolder_1097": {
"entryPoint": 3873,
"id": 1097,
"parameterSlots": 1,
"returnSlots": 1
},
"@owner_542": {
"entryPoint": 4241,
"id": 542,
"parameterSlots": 0,
"returnSlots": 1
},
"@renounceOwnership_570": {
"entryPoint": 4198,
"id": 570,
"parameterSlots": 0,
"returnSlots": 0
},
"@stakeForUser_1167": {
"entryPoint": 4091,
"id": 1167,
"parameterSlots": 2,
"returnSlots": 0
},
"@stake_1223": {
"entryPoint": 4483,
"id": 1223,
"parameterSlots": 1,
"returnSlots": 0
},
"@toggleStakingStatus_1179": {
"entryPoint": 5614,
"id": 1179,
"parameterSlots": 0,
"returnSlots": 0
},
"@transferOwnership_593": {
"entryPoint": 5865,
"id": 593,
"parameterSlots": 1,
"returnSlots": 0
},
"@unstake_1462": {
"entryPoint": 1403,
"id": 1462,
"parameterSlots": 1,
"returnSlots": 0
},
"@updateEarlyUnstakeFeePercentage_1149": {
"entryPoint": 4218,
"id": 1149,
"parameterSlots": 1,
"returnSlots": 0
},
"@updateMaximumStakingAmount_1123": {
"entryPoint": 1385,
"id": 1123,
"parameterSlots": 1,
"returnSlots": 0
},
"@updateMinimumStakingAmount_1110": {
"entryPoint": 3845,
"id": 1110,
"parameterSlots": 1,
"returnSlots": 0
},
"@updateStakingEndDate_1136": {
"entryPoint": 3708,
"id": 1136,
"parameterSlots": 1,
"returnSlots": 0
},
"@withdraw_1208": {
"entryPoint": 2899,
"id": 1208,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_decode_available_length_t_string_memory_ptr": {
"entryPoint": 9357,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_address": {
"entryPoint": 9122,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bool_fromMemory": {
"entryPoint": 10730,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr": {
"entryPoint": 9423,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 8983,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256_fromMemory": {
"entryPoint": 10349,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 9720,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint256t_uint256t_uint256t_uint256t_uint256t_string_memory_ptr": {
"entryPoint": 9469,
"id": null,
"parameterSlots": 2,
"returnSlots": 10
},
"abi_decode_tuple_t_bool_fromMemory": {
"entryPoint": 10751,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 9004,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256_fromMemory": {
"entryPoint": 10370,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256t_address": {
"entryPoint": 9965,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 10029,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bool_to_t_bool_fromStack": {
"entryPoint": 9777,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_rational_1_by_1_to_t_uint8_fromStack": {
"entryPoint": 11929,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 10150,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_stringliteral_1b9baf4497fc882d71f8c15dd2d3591d69edf681290e1893300feb18ea865464_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13601,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 12255,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_26d63244211d841142e027f4a0e970ac0ebb34a3c1bc90815c102da708532ae7_to_t_string_memory_ptr_fromStack": {
"entryPoint": 11649,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_50a656effc38c7ed5392e361389130cea1a8dedc4be8f20b6d02b2b3d84c9f4f_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13093,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_5ae124b48da7423bc88987f4a41dc06d2e331c6892ce57377edb657aa2ba7cec_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13455,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_64b9ddea543a11a2649986aa34b4e58bfc64c5ec06929d2f7632ba13f54852a4_to_t_string_memory_ptr_fromStack": {
"entryPoint": 10837,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_77635a2e3ee8a789a611f365c0470d1037ff828553be9d5f601b7dc327f415cd_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13931,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759_to_t_string_memory_ptr_fromStack": {
"entryPoint": 11795,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_7b3deea66482ba1e288f955d78a6490da1dd0d7e033fddee35422525c5499a6b_to_t_string_memory_ptr_fromStack": {
"entryPoint": 11503,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_805f85071a50c2f8d510d5bdec0aef31245087ce416bc4fa6a7f8bda14e3686f_to_t_string_memory_ptr_fromStack": {
"entryPoint": 12801,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 12363,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_9a850645f3ea435d2a05139d2eb5e494708329f366b16549802acf7b499484bf_to_t_string_memory_ptr_fromStack": {
"entryPoint": 10640,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_9adf91574d6fefe524cba24f54cac04fb7b8f61fdcbd35a2f4664f9c899a65ce_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13347,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_a14dc5419c692ca55dedb33967ca3b67cf3c7ecf7dc0b1dac46aeaef4cde815d_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13201,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_a38c03dadc510bf16c291f38b976b6fbf62772b0d8fff36eadd6d676ecce8b1d_to_t_string_memory_ptr_fromStack": {
"entryPoint": 12655,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_c6a3cc6edbde3e4a551537018312e8b351804c0a111959292915e0c62b0256f4_to_t_string_memory_ptr_fromStack": {
"entryPoint": 12012,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_c8d56509c3e3f28bff7b984085a06ce1f2c2392b972b7137517627b7613343c0_to_t_string_memory_ptr_fromStack": {
"entryPoint": 12947,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_d18f8c365b308e6bf7e7b6622a0e8bb2a5fcce0f21dcc13822db1bfed7e4f7a0_to_t_string_memory_ptr_fromStack": {
"entryPoint": 10494,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b_to_t_string_memory_ptr_fromStack": {
"entryPoint": 12509,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_dfa3298fda01476f3e562a70f6361fdb473d99790bcacaa01fdd2c6faa3a4ac4_to_t_string_memory_ptr_fromStack": {
"entryPoint": 10983,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_e4ebf37f9471afb57393293ecebe10ae68ce3750fd77b6de0d1f052d38b97e78_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13747,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619_to_t_string_memory_ptr_fromStack": {
"entryPoint": 10282,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_fd2fae3d1c403100bad60c23d81ff206e99468e379ba9d5374bfb4ccc3cf35bb_to_t_string_memory_ptr_fromStack": {
"entryPoint": 14132,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_struct$_User_$709_memory_ptr_to_t_struct$_User_$709_memory_ptr_fromStack": {
"entryPoint": 9834,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_uint256_to_t_uint256": {
"entryPoint": 9819,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 8898,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 10044,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed": {
"entryPoint": 13998,
"id": null,
"parameterSlots": 4,
"returnSlots": 1
},
"abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed": {
"entryPoint": 11421,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
"entryPoint": 9792,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_rational_1_by_1__to_t_uint8__fromStack_reversed": {
"entryPoint": 11944,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 10207,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_1b9baf4497fc882d71f8c15dd2d3591d69edf681290e1893300feb18ea865464__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 13636,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 12290,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_26d63244211d841142e027f4a0e970ac0ebb34a3c1bc90815c102da708532ae7__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 11684,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_50a656effc38c7ed5392e361389130cea1a8dedc4be8f20b6d02b2b3d84c9f4f__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 13128,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_5ae124b48da7423bc88987f4a41dc06d2e331c6892ce57377edb657aa2ba7cec__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 13490,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_64b9ddea543a11a2649986aa34b4e58bfc64c5ec06929d2f7632ba13f54852a4__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 10872,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_77635a2e3ee8a789a611f365c0470d1037ff828553be9d5f601b7dc327f415cd__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 13966,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 11830,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_7b3deea66482ba1e288f955d78a6490da1dd0d7e033fddee35422525c5499a6b__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 11538,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_805f85071a50c2f8d510d5bdec0aef31245087ce416bc4fa6a7f8bda14e3686f__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 12836,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 12398,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9a850645f3ea435d2a05139d2eb5e494708329f366b16549802acf7b499484bf__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 10675,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9adf91574d6fefe524cba24f54cac04fb7b8f61fdcbd35a2f4664f9c899a65ce__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 13382,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_a14dc5419c692ca55dedb33967ca3b67cf3c7ecf7dc0b1dac46aeaef4cde815d__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 13236,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_a38c03dadc510bf16c291f38b976b6fbf62772b0d8fff36eadd6d676ecce8b1d__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 12690,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_c6a3cc6edbde3e4a551537018312e8b351804c0a111959292915e0c62b0256f4__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 12047,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_c8d56509c3e3f28bff7b984085a06ce1f2c2392b972b7137517627b7613343c0__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 12982,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_d18f8c365b308e6bf7e7b6622a0e8bb2a5fcce0f21dcc13822db1bfed7e4f7a0__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 10529,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 12544,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_dfa3298fda01476f3e562a70f6361fdb473d99790bcacaa01fdd2c6faa3a4ac4__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 11018,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_e4ebf37f9471afb57393293ecebe10ae68ce3750fd77b6de0d1f052d38b97e78__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 13782,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 10317,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_fd2fae3d1c403100bad60c23d81ff206e99468e379ba9d5374bfb4ccc3cf35bb__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 14167,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_struct$_User_$709_memory_ptr__to_t_struct$_User_$709_memory_ptr__fromStack_reversed": {
"entryPoint": 9938,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 8913,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 9266,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 8940,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 9293,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 10071,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 10082,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 11097,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_div_t_uint256": {
"entryPoint": 11320,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_mul_t_uint256": {
"entryPoint": 11183,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_sub_t_uint256": {
"entryPoint": 11369,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 9081,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 9765,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_rational_1_by_1": {
"entryPoint": 11862,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 9049,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 8888,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint8": {
"entryPoint": 11872,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"convert_t_rational_1_by_1_to_t_uint8": {
"entryPoint": 11895,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_calldata_to_memory": {
"entryPoint": 9342,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_memory_to_memory": {
"entryPoint": 10099,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 12126,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 9217,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"identity": {
"entryPoint": 11885,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 11050,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x12": {
"entryPoint": 11273,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 12079,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 9170,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 9143,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 9148,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 8955,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 8950,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 9153,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"store_literal_in_memory_1b9baf4497fc882d71f8c15dd2d3591d69edf681290e1893300feb18ea865464": {
"entryPoint": 13522,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe": {
"entryPoint": 12176,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_26d63244211d841142e027f4a0e970ac0ebb34a3c1bc90815c102da708532ae7": {
"entryPoint": 11570,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_50a656effc38c7ed5392e361389130cea1a8dedc4be8f20b6d02b2b3d84c9f4f": {
"entryPoint": 13014,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_5ae124b48da7423bc88987f4a41dc06d2e331c6892ce57377edb657aa2ba7cec": {
"entryPoint": 13414,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_64b9ddea543a11a2649986aa34b4e58bfc64c5ec06929d2f7632ba13f54852a4": {
"entryPoint": 10796,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_77635a2e3ee8a789a611f365c0470d1037ff828553be9d5f601b7dc327f415cd": {
"entryPoint": 13814,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759": {
"entryPoint": 11716,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_7b3deea66482ba1e288f955d78a6490da1dd0d7e033fddee35422525c5499a6b": {
"entryPoint": 11462,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_805f85071a50c2f8d510d5bdec0aef31245087ce416bc4fa6a7f8bda14e3686f": {
"entryPoint": 12722,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe": {
"entryPoint": 12322,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_9a850645f3ea435d2a05139d2eb5e494708329f366b16549802acf7b499484bf": {
"entryPoint": 10561,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_9adf91574d6fefe524cba24f54cac04fb7b8f61fdcbd35a2f4664f9c899a65ce": {
"entryPoint": 13268,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_a14dc5419c692ca55dedb33967ca3b67cf3c7ecf7dc0b1dac46aeaef4cde815d": {
"entryPoint": 13160,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_a38c03dadc510bf16c291f38b976b6fbf62772b0d8fff36eadd6d676ecce8b1d": {
"entryPoint": 12576,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_c6a3cc6edbde3e4a551537018312e8b351804c0a111959292915e0c62b0256f4": {
"entryPoint": 11971,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_c8d56509c3e3f28bff7b984085a06ce1f2c2392b972b7137517627b7613343c0": {
"entryPoint": 12868,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_d18f8c365b308e6bf7e7b6622a0e8bb2a5fcce0f21dcc13822db1bfed7e4f7a0": {
"entryPoint": 10415,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b": {
"entryPoint": 12430,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_dfa3298fda01476f3e562a70f6361fdb473d99790bcacaa01fdd2c6faa3a4ac4": {
"entryPoint": 10904,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_e4ebf37f9471afb57393293ecebe10ae68ce3750fd77b6de0d1f052d38b97e78": {
"entryPoint": 13668,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619": {
"entryPoint": 10241,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_fd2fae3d1c403100bad60c23d81ff206e99468e379ba9d5374bfb4ccc3cf35bb": {
"entryPoint": 14053,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 9099,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bool": {
"entryPoint": 10707,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 8960,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:38496:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "52:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "62:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "73:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "62:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "34:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "44:7:1",
"type": ""
}
],
"src": "7:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "155:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "172:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "195:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "177:17:1"
},
"nodeType": "YulFunctionCall",
"src": "177:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "165:6:1"
},
"nodeType": "YulFunctionCall",
"src": "165:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "165:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "143:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "150:3:1",
"type": ""
}
],
"src": "90:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "312:124:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "322:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "334:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "345:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "330:3:1"
},
"nodeType": "YulFunctionCall",
"src": "330:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "322:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "402:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "415:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "426:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "411:3:1"
},
"nodeType": "YulFunctionCall",
"src": "411:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "358:43:1"
},
"nodeType": "YulFunctionCall",
"src": "358:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "358:71:1"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "284:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "296:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "307:4:1",
"type": ""
}
],
"src": "214:222:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "482:35:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "492:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "508:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "502:5:1"
},
"nodeType": "YulFunctionCall",
"src": "502:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "492:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "475:6:1",
"type": ""
}
],
"src": "442:75:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "612:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "629:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "632:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "622:6:1"
},
"nodeType": "YulFunctionCall",
"src": "622:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "622:12:1"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "523:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "735:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "752:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "755:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "745:6:1"
},
"nodeType": "YulFunctionCall",
"src": "745:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "745:12:1"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "646:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "812:79:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "869:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "878:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "881:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "871:6:1"
},
"nodeType": "YulFunctionCall",
"src": "871:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "871:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "835:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "860:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "842:17:1"
},
"nodeType": "YulFunctionCall",
"src": "842:24:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "832:2:1"
},
"nodeType": "YulFunctionCall",
"src": "832:35:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "825:6:1"
},
"nodeType": "YulFunctionCall",
"src": "825:43:1"
},
"nodeType": "YulIf",
"src": "822:63:1"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "805:5:1",
"type": ""
}
],
"src": "769:122:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "949:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "959:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "981:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "968:12:1"
},
"nodeType": "YulFunctionCall",
"src": "968:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "959:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1024:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "997:26:1"
},
"nodeType": "YulFunctionCall",
"src": "997:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "997:33:1"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "927:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "935:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "943:5:1",
"type": ""
}
],
"src": "897:139:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1108:263:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1154:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1156:77:1"
},
"nodeType": "YulFunctionCall",
"src": "1156:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "1156:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1129:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1138:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1125:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1125:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1150:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1121:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1121:32:1"
},
"nodeType": "YulIf",
"src": "1118:119:1"
},
{
"nodeType": "YulBlock",
"src": "1247:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1262:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1276:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1266:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1291:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1326:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1337:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1322:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1322:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1346:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "1301:20:1"
},
"nodeType": "YulFunctionCall",
"src": "1301:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1291:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1078:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1089:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1101:6:1",
"type": ""
}
],
"src": "1042:329:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1422:81:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1432:65:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1447:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1454:42:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1443:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1443:54:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1432:7:1"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1404:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1414:7:1",
"type": ""
}
],
"src": "1377:126:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1554:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1564:35:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1593:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "1575:17:1"
},
"nodeType": "YulFunctionCall",
"src": "1575:24:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1564:7:1"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1536:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1546:7:1",
"type": ""
}
],
"src": "1509:96:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1654:79:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1711:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1720:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1723:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1713:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1713:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "1713:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1677:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1702:5:1"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "1684:17:1"
},
"nodeType": "YulFunctionCall",
"src": "1684:24:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "1674:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1674:35:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1667:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1667:43:1"
},
"nodeType": "YulIf",
"src": "1664:63:1"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1647:5:1",
"type": ""
}
],
"src": "1611:122:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1791:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1801:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1823:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1810:12:1"
},
"nodeType": "YulFunctionCall",
"src": "1810:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1801:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1866:5:1"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "1839:26:1"
},
"nodeType": "YulFunctionCall",
"src": "1839:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "1839:33:1"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1769:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1777:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1785:5:1",
"type": ""
}
],
"src": "1739:139:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1973:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1990:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1993:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1983:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1983:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "1983:12:1"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "1884:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2096:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2113:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2116:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2106:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2106:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "2106:12:1"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "2007:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2178:54:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2188:38:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2206:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2213:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2202:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2202:14:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2222:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "2218:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2218:7:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2198:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2198:28:1"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "2188:6:1"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2161:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "2171:6:1",
"type": ""
}
],
"src": "2130:102:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2266:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2283:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2286:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2276:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2276:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "2276:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2380:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2383:4:1",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2373:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2373:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "2373:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2404:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2407:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2397:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2397:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "2397:15:1"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "2238:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2467:238:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2477:58:1",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2499:6:1"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "2529:4:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2507:21:1"
},
"nodeType": "YulFunctionCall",
"src": "2507:27:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2495:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2495:40:1"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "2481:10:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2646:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "2648:16:1"
},
"nodeType": "YulFunctionCall",
"src": "2648:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "2648:18:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "2589:10:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2601:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2586:2:1"
},
"nodeType": "YulFunctionCall",
"src": "2586:34:1"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "2625:10:1"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2637:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "2622:2:1"
},
"nodeType": "YulFunctionCall",
"src": "2622:22:1"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "2583:2:1"
},
"nodeType": "YulFunctionCall",
"src": "2583:62:1"
},
"nodeType": "YulIf",
"src": "2580:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2684:2:1",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "2688:10:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2677:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2677:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "2677:22:1"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "2453:6:1",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "2461:4:1",
"type": ""
}
],
"src": "2424:281:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2752:88:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2762:30:1",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "2772:18:1"
},
"nodeType": "YulFunctionCall",
"src": "2772:20:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2762:6:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2821:6:1"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "2829:4:1"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "2801:19:1"
},
"nodeType": "YulFunctionCall",
"src": "2801:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "2801:33:1"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "2736:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "2745:6:1",
"type": ""
}
],
"src": "2711:129:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2913:241:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3018:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "3020:16:1"
},
"nodeType": "YulFunctionCall",
"src": "3020:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "3020:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2990:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2998:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2987:2:1"
},
"nodeType": "YulFunctionCall",
"src": "2987:30:1"
},
"nodeType": "YulIf",
"src": "2984:56:1"
},
{
"nodeType": "YulAssignment",
"src": "3050:37:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3080:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "3058:21:1"
},
"nodeType": "YulFunctionCall",
"src": "3058:29:1"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "3050:4:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3124:23:1",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "3136:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3142:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3132:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3132:15:1"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "3124:4:1"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2897:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "2908:4:1",
"type": ""
}
],
"src": "2846:308:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3211:103:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "3234:3:1"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "3239:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3244:6:1"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "3221:12:1"
},
"nodeType": "YulFunctionCall",
"src": "3221:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "3221:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "3292:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3297:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3288:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3288:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3306:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3281:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3281:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "3281:27:1"
}
]
},
"name": "copy_calldata_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "3193:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "3198:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3203:6:1",
"type": ""
}
],
"src": "3160:154:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3404:328:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3414:75:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3481:6:1"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "3439:41:1"
},
"nodeType": "YulFunctionCall",
"src": "3439:49:1"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "3423:15:1"
},
"nodeType": "YulFunctionCall",
"src": "3423:66:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "3414:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "3505:5:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3512:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3498:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3498:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "3498:21:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "3528:27:1",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "3543:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3550:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3539:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3539:16:1"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "3532:3:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3593:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "3595:77:1"
},
"nodeType": "YulFunctionCall",
"src": "3595:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "3595:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "3574:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3579:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3570:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3570:16:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3588:3:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3567:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3567:25:1"
},
"nodeType": "YulIf",
"src": "3564:112:1"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "3709:3:1"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "3714:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3719:6:1"
}
],
"functionName": {
"name": "copy_calldata_to_memory",
"nodeType": "YulIdentifier",
"src": "3685:23:1"
},
"nodeType": "YulFunctionCall",
"src": "3685:41:1"
},
"nodeType": "YulExpressionStatement",
"src": "3685:41:1"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "3377:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3382:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3390:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "3398:5:1",
"type": ""
}
],
"src": "3320:412:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3814:278:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3863:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "3865:77:1"
},
"nodeType": "YulFunctionCall",
"src": "3865:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "3865:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3842:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3850:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3838:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3838:17:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3857:3:1"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3834:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3834:27:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3827:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3827:35:1"
},
"nodeType": "YulIf",
"src": "3824:122:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "3955:34:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3982:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3969:12:1"
},
"nodeType": "YulFunctionCall",
"src": "3969:20:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3959:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3998:88:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4059:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4067:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4055:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4055:17:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4074:6:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4082:3:1"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "4007:47:1"
},
"nodeType": "YulFunctionCall",
"src": "4007:79:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "3998:5:1"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3792:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3800:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "3808:5:1",
"type": ""
}
],
"src": "3752:340:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4327:1592:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4374:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "4376:77:1"
},
"nodeType": "YulFunctionCall",
"src": "4376:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "4376:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4348:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4357:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4344:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4344:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4369:3:1",
"type": "",
"value": "320"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4340:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4340:33:1"
},
"nodeType": "YulIf",
"src": "4337:120:1"
},
{
"nodeType": "YulBlock",
"src": "4467:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4482:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4496:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4486:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4511:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4546:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4557:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4542:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4542:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4566:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4521:20:1"
},
"nodeType": "YulFunctionCall",
"src": "4521:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4511:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4594:118:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4609:16:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4623:2:1",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4613:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4639:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4674:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4685:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4670:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4670:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4694:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4649:20:1"
},
"nodeType": "YulFunctionCall",
"src": "4649:53:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4639:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4722:118:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4737:16:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4751:2:1",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4741:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4767:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4802:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4813:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4798:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4798:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4822:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "4777:20:1"
},
"nodeType": "YulFunctionCall",
"src": "4777:53:1"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "4767:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4850:118:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4865:16:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4879:2:1",
"type": "",
"value": "96"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4869:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4895:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4930:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4941:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4926:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4926:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4950:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "4905:20:1"
},
"nodeType": "YulFunctionCall",
"src": "4905:53:1"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "4895:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4978:119:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4993:17:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5007:3:1",
"type": "",
"value": "128"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4997:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5024:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5059:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5070:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5055:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5055:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5079:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "5034:20:1"
},
"nodeType": "YulFunctionCall",
"src": "5034:53:1"
},
"variableNames": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "5024:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "5107:119:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5122:17:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5136:3:1",
"type": "",
"value": "160"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5126:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5153:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5188:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5199:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5184:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5184:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5208:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "5163:20:1"
},
"nodeType": "YulFunctionCall",
"src": "5163:53:1"
},
"variableNames": [
{
"name": "value5",
"nodeType": "YulIdentifier",
"src": "5153:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "5236:119:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5251:17:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5265:3:1",
"type": "",
"value": "192"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5255:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5282:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5317:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5328:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5313:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5313:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5337:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "5292:20:1"
},
"nodeType": "YulFunctionCall",
"src": "5292:53:1"
},
"variableNames": [
{
"name": "value6",
"nodeType": "YulIdentifier",
"src": "5282:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "5365:119:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5380:17:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5394:3:1",
"type": "",
"value": "224"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5384:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5411:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5446:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5457:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5442:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5442:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5466:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "5421:20:1"
},
"nodeType": "YulFunctionCall",
"src": "5421:53:1"
},
"variableNames": [
{
"name": "value7",
"nodeType": "YulIdentifier",
"src": "5411:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "5494:119:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5509:17:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5523:3:1",
"type": "",
"value": "256"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5513:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5540:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5575:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5586:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5571:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5571:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5595:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "5550:20:1"
},
"nodeType": "YulFunctionCall",
"src": "5550:53:1"
},
"variableNames": [
{
"name": "value8",
"nodeType": "YulIdentifier",
"src": "5540:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "5623:289:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5638:47:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5669:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5680:3:1",
"type": "",
"value": "288"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5665:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5665:19:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "5652:12:1"
},
"nodeType": "YulFunctionCall",
"src": "5652:33:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5642:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5732:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "5734:77:1"
},
"nodeType": "YulFunctionCall",
"src": "5734:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "5734:79:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5704:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5712:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5701:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5701:30:1"
},
"nodeType": "YulIf",
"src": "5698:117:1"
},
{
"nodeType": "YulAssignment",
"src": "5829:73:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5874:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5885:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5870:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5870:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5894:7:1"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "5839:30:1"
},
"nodeType": "YulFunctionCall",
"src": "5839:63:1"
},
"variableNames": [
{
"name": "value9",
"nodeType": "YulIdentifier",
"src": "5829:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint256t_uint256t_uint256t_uint256t_uint256t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4225:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4236:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4248:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "4256:6:1",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "4264:6:1",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "4272:6:1",
"type": ""
},
{
"name": "value4",
"nodeType": "YulTypedName",
"src": "4280:6:1",
"type": ""
},
{
"name": "value5",
"nodeType": "YulTypedName",
"src": "4288:6:1",
"type": ""
},
{
"name": "value6",
"nodeType": "YulTypedName",
"src": "4296:6:1",
"type": ""
},
{
"name": "value7",
"nodeType": "YulTypedName",
"src": "4304:6:1",
"type": ""
},
{
"name": "value8",
"nodeType": "YulTypedName",
"src": "4312:6:1",
"type": ""
},
{
"name": "value9",
"nodeType": "YulTypedName",
"src": "4320:6:1",
"type": ""
}
],
"src": "4098:1821:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5991:263:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6037:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "6039:77:1"
},
"nodeType": "YulFunctionCall",
"src": "6039:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "6039:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6012:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6021:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6008:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6008:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6033:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "6004:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6004:32:1"
},
"nodeType": "YulIf",
"src": "6001:119:1"
},
{
"nodeType": "YulBlock",
"src": "6130:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6145:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6159:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6149:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6174:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6209:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6220:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6205:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6205:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6229:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "6184:20:1"
},
"nodeType": "YulFunctionCall",
"src": "6184:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6174:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5961:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5972:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5984:6:1",
"type": ""
}
],
"src": "5925:329:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6302:48:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6312:32:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6337:5:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "6330:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6330:13:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "6323:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6323:21:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "6312:7:1"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6284:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "6294:7:1",
"type": ""
}
],
"src": "6260:90:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6415:50:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6432:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6452:5:1"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "6437:14:1"
},
"nodeType": "YulFunctionCall",
"src": "6437:21:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6425:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6425:34:1"
},
"nodeType": "YulExpressionStatement",
"src": "6425:34:1"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6403:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6410:3:1",
"type": ""
}
],
"src": "6356:109:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6563:118:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6573:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6585:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6596:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6581:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6581:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6573:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6647:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6660:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6671:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6656:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6656:17:1"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "6609:37:1"
},
"nodeType": "YulFunctionCall",
"src": "6609:65:1"
},
"nodeType": "YulExpressionStatement",
"src": "6609:65:1"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6535:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6547:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "6558:4:1",
"type": ""
}
],
"src": "6471:210:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6742:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6759:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6782:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "6764:17:1"
},
"nodeType": "YulFunctionCall",
"src": "6764:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6752:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6752:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "6752:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6730:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6737:3:1",
"type": ""
}
],
"src": "6687:108:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6969:973:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6979:26:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6995:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7000:4:1",
"type": "",
"value": "0xa0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6991:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6991:14:1"
},
"variables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "6983:4:1",
"type": ""
}
]
},
{
"nodeType": "YulBlock",
"src": "7015:171:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7057:43:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7087:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7094:4:1",
"type": "",
"value": "0x00"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7083:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7083:16:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "7077:5:1"
},
"nodeType": "YulFunctionCall",
"src": "7077:23:1"
},
"variables": [
{
"name": "memberValue0",
"nodeType": "YulTypedName",
"src": "7061:12:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "memberValue0",
"nodeType": "YulIdentifier",
"src": "7147:12:1"
},
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7165:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7170:4:1",
"type": "",
"value": "0x00"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7161:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7161:14:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "7113:33:1"
},
"nodeType": "YulFunctionCall",
"src": "7113:63:1"
},
"nodeType": "YulExpressionStatement",
"src": "7113:63:1"
}
]
},
{
"nodeType": "YulBlock",
"src": "7196:172:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7239:43:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7269:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7276:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7265:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7265:16:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "7259:5:1"
},
"nodeType": "YulFunctionCall",
"src": "7259:23:1"
},
"variables": [
{
"name": "memberValue0",
"nodeType": "YulTypedName",
"src": "7243:12:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "memberValue0",
"nodeType": "YulIdentifier",
"src": "7329:12:1"
},
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7347:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7352:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7343:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7343:14:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "7295:33:1"
},
"nodeType": "YulFunctionCall",
"src": "7295:63:1"
},
"nodeType": "YulExpressionStatement",
"src": "7295:63:1"
}
]
},
{
"nodeType": "YulBlock",
"src": "7378:173:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7422:43:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7452:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7459:4:1",
"type": "",
"value": "0x40"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7448:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7448:16:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "7442:5:1"
},
"nodeType": "YulFunctionCall",
"src": "7442:23:1"
},
"variables": [
{
"name": "memberValue0",
"nodeType": "YulTypedName",
"src": "7426:12:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "memberValue0",
"nodeType": "YulIdentifier",
"src": "7512:12:1"
},
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7530:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7535:4:1",
"type": "",
"value": "0x40"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7526:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7526:14:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "7478:33:1"
},
"nodeType": "YulFunctionCall",
"src": "7478:63:1"
},
"nodeType": "YulExpressionStatement",
"src": "7478:63:1"
}
]
},
{
"nodeType": "YulBlock",
"src": "7561:185:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7617:43:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7647:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7654:4:1",
"type": "",
"value": "0x60"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7643:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7643:16:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "7637:5:1"
},
"nodeType": "YulFunctionCall",
"src": "7637:23:1"
},
"variables": [
{
"name": "memberValue0",
"nodeType": "YulTypedName",
"src": "7621:12:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "memberValue0",
"nodeType": "YulIdentifier",
"src": "7707:12:1"
},
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7725:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7730:4:1",
"type": "",
"value": "0x60"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7721:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7721:14:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "7673:33:1"
},
"nodeType": "YulFunctionCall",
"src": "7673:63:1"
},
"nodeType": "YulExpressionStatement",
"src": "7673:63:1"
}
]
},
{
"nodeType": "YulBlock",
"src": "7756:179:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7806:43:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7836:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7843:4:1",
"type": "",
"value": "0x80"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7832:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7832:16:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "7826:5:1"
},
"nodeType": "YulFunctionCall",
"src": "7826:23:1"
},
"variables": [
{
"name": "memberValue0",
"nodeType": "YulTypedName",
"src": "7810:12:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "memberValue0",
"nodeType": "YulIdentifier",
"src": "7896:12:1"
},
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7914:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7919:4:1",
"type": "",
"value": "0x80"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7910:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7910:14:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "7862:33:1"
},
"nodeType": "YulFunctionCall",
"src": "7862:63:1"
},
"nodeType": "YulExpressionStatement",
"src": "7862:63:1"
}
]
}
]
},
"name": "abi_encode_t_struct$_User_$709_memory_ptr_to_t_struct$_User_$709_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6956:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6963:3:1",
"type": ""
}
],
"src": "6861:1081:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8088:167:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8098:27:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8110:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8121:3:1",
"type": "",
"value": "160"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8106:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8106:19:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8098:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "8221:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8234:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8245:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8230:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8230:17:1"
}
],
"functionName": {
"name": "abi_encode_t_struct$_User_$709_memory_ptr_to_t_struct$_User_$709_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8135:85:1"
},
"nodeType": "YulFunctionCall",
"src": "8135:113:1"
},
"nodeType": "YulExpressionStatement",
"src": "8135:113:1"
}
]
},
"name": "abi_encode_tuple_t_struct$_User_$709_memory_ptr__to_t_struct$_User_$709_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8060:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "8072:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8083:4:1",
"type": ""
}
],
"src": "7948:307:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8344:391:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "8390:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "8392:77:1"
},
"nodeType": "YulFunctionCall",
"src": "8392:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "8392:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "8365:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8374:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "8361:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8361:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8386:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "8357:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8357:32:1"
},
"nodeType": "YulIf",
"src": "8354:119:1"
},
{
"nodeType": "YulBlock",
"src": "8483:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8498:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "8512:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "8502:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "8527:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8562:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8573:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8558:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8558:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "8582:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "8537:20:1"
},
"nodeType": "YulFunctionCall",
"src": "8537:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "8527:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "8610:118:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8625:16:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "8639:2:1",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "8629:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "8655:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8690:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8701:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8686:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8686:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "8710:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "8665:20:1"
},
"nodeType": "YulFunctionCall",
"src": "8665:53:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "8655:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8306:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "8317:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "8329:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "8337:6:1",
"type": ""
}
],
"src": "8261:474:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8806:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8823:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8846:5:1"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "8828:17:1"
},
"nodeType": "YulFunctionCall",
"src": "8828:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8816:6:1"
},
"nodeType": "YulFunctionCall",
"src": "8816:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "8816:37:1"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "8794:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8801:3:1",
"type": ""
}
],
"src": "8741:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8963:124:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8973:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8985:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8996:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8981:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8981:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8973:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "9053:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9066:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9077:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9062:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9062:17:1"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "9009:43:1"
},
"nodeType": "YulFunctionCall",
"src": "9009:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "9009:71:1"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8935:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "8947:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8958:4:1",
"type": ""
}
],
"src": "8865:222:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9152:40:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9163:22:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "9179:5:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "9173:5:1"
},
"nodeType": "YulFunctionCall",
"src": "9173:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9163:6:1"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "9135:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "9145:6:1",
"type": ""
}
],
"src": "9093:99:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9294:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9311:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9316:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9304:6:1"
},
"nodeType": "YulFunctionCall",
"src": "9304:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "9304:19:1"
},
{
"nodeType": "YulAssignment",
"src": "9332:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9351:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9356:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9347:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9347:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "9332:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9266:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "9271:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "9282:11:1",
"type": ""
}
],
"src": "9198:169:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9422:258:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9432:10:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "9441:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "9436:1:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "9501:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "9526:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "9531:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9522:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9522:11:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "9545:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "9550:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9541:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9541:11:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "9535:5:1"
},
"nodeType": "YulFunctionCall",
"src": "9535:18:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9515:6:1"
},
"nodeType": "YulFunctionCall",
"src": "9515:39:1"
},
"nodeType": "YulExpressionStatement",
"src": "9515:39:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "9462:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9465:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "9459:2:1"
},
"nodeType": "YulFunctionCall",
"src": "9459:13:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "9473:19:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9475:15:1",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "9484:1:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9487:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9480:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9480:10:1"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "9475:1:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "9455:3:1",
"statements": []
},
"src": "9451:113:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9598:76:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "9648:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9653:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9644:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9644:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9662:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9637:6:1"
},
"nodeType": "YulFunctionCall",
"src": "9637:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "9637:27:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "9579:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9582:6:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "9576:2:1"
},
"nodeType": "YulFunctionCall",
"src": "9576:13:1"
},
"nodeType": "YulIf",
"src": "9573:101:1"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "9404:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "9409:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "9414:6:1",
"type": ""
}
],
"src": "9373:307:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9778:272:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9788:53:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "9835:5:1"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "9802:32:1"
},
"nodeType": "YulFunctionCall",
"src": "9802:39:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "9792:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "9850:78:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9916:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9921:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9857:58:1"
},
"nodeType": "YulFunctionCall",
"src": "9857:71:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9850:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "9963:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9970:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9959:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9959:16:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9977:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9982:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "9937:21:1"
},
"nodeType": "YulFunctionCall",
"src": "9937:52:1"
},
"nodeType": "YulExpressionStatement",
"src": "9937:52:1"
},
{
"nodeType": "YulAssignment",
"src": "9998:46:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10009:3:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10036:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "10014:21:1"
},
"nodeType": "YulFunctionCall",
"src": "10014:29:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10005:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10005:39:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "9998:3:1"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "9759:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9766:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "9774:3:1",
"type": ""
}
],
"src": "9686:364:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10174:195:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10184:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10196:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10207:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10192:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10192:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10184:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10231:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10242:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10227:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10227:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10250:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10256:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "10246:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10246:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10220:6:1"
},
"nodeType": "YulFunctionCall",
"src": "10220:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "10220:47:1"
},
{
"nodeType": "YulAssignment",
"src": "10276:86:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "10348:6:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10357:4:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10284:63:1"
},
"nodeType": "YulFunctionCall",
"src": "10284:78:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10276:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10146:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "10158:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "10169:4:1",
"type": ""
}
],
"src": "10056:313:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10481:75:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "10503:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10511:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10499:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10499:14:1"
},
{
"hexValue": "5265656e7472616e637947756172643a207265656e7472616e742063616c6c",
"kind": "string",
"nodeType": "YulLiteral",
"src": "10515:33:1",
"type": "",
"value": "ReentrancyGuard: reentrant call"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10492:6:1"
},
"nodeType": "YulFunctionCall",
"src": "10492:57:1"
},
"nodeType": "YulExpressionStatement",
"src": "10492:57:1"
}
]
},
"name": "store_literal_in_memory_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "10473:6:1",
"type": ""
}
],
"src": "10375:181:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10708:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10718:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10784:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10789:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10725:58:1"
},
"nodeType": "YulFunctionCall",
"src": "10725:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10718:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10890:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619",
"nodeType": "YulIdentifier",
"src": "10801:88:1"
},
"nodeType": "YulFunctionCall",
"src": "10801:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "10801:93:1"
},
{
"nodeType": "YulAssignment",
"src": "10903:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10914:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10919:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10910:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10910:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10903:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10696:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10704:3:1",
"type": ""
}
],
"src": "10562:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11105:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11115:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11127:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11138:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11123:3:1"
},
"nodeType": "YulFunctionCall",
"src": "11123:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11115:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11162:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11173:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11158:3:1"
},
"nodeType": "YulFunctionCall",
"src": "11158:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11181:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11187:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "11177:3:1"
},
"nodeType": "YulFunctionCall",
"src": "11177:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11151:6:1"
},
"nodeType": "YulFunctionCall",
"src": "11151:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "11151:47:1"
},
{
"nodeType": "YulAssignment",
"src": "11207:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11341:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11215:124:1"
},
"nodeType": "YulFunctionCall",
"src": "11215:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11207:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11085:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "11100:4:1",
"type": ""
}
],
"src": "10934:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11422:80:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11432:22:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "11447:6:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "11441:5:1"
},
"nodeType": "YulFunctionCall",
"src": "11441:13:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11432:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11490:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "11463:26:1"
},
"nodeType": "YulFunctionCall",
"src": "11463:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "11463:33:1"
}
]
},
"name": "abi_decode_t_uint256_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "11400:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11408:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "11416:5:1",
"type": ""
}
],
"src": "11359:143:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11585:274:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "11631:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "11633:77:1"
},
"nodeType": "YulFunctionCall",
"src": "11633:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "11633:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "11606:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11615:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "11602:3:1"
},
"nodeType": "YulFunctionCall",
"src": "11602:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11627:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "11598:3:1"
},
"nodeType": "YulFunctionCall",
"src": "11598:32:1"
},
"nodeType": "YulIf",
"src": "11595:119:1"
},
{
"nodeType": "YulBlock",
"src": "11724:128:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "11739:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "11753:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "11743:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "11768:74:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11814:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "11825:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11810:3:1"
},
"nodeType": "YulFunctionCall",
"src": "11810:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "11834:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256_fromMemory",
"nodeType": "YulIdentifier",
"src": "11778:31:1"
},
"nodeType": "YulFunctionCall",
"src": "11778:64:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "11768:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11555:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "11566:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "11578:6:1",
"type": ""
}
],
"src": "11508:351:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11971:129:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "11993:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12001:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11989:3:1"
},
"nodeType": "YulFunctionCall",
"src": "11989:14:1"
},
{
"hexValue": "546f6b656e5374616b696e673a20696e73756666696369656e742066756e6473",
"kind": "string",
"nodeType": "YulLiteral",
"src": "12005:34:1",
"type": "",
"value": "TokenStaking: insufficient funds"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11982:6:1"
},
"nodeType": "YulFunctionCall",
"src": "11982:58:1"
},
"nodeType": "YulExpressionStatement",
"src": "11982:58:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "12061:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12069:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12057:3:1"
},
"nodeType": "YulFunctionCall",
"src": "12057:15:1"
},
{
"hexValue": "20696e20746865207472656173757279",
"kind": "string",
"nodeType": "YulLiteral",
"src": "12074:18:1",
"type": "",
"value": " in the treasury"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12050:6:1"
},
"nodeType": "YulFunctionCall",
"src": "12050:43:1"
},
"nodeType": "YulExpressionStatement",
"src": "12050:43:1"
}
]
},
"name": "store_literal_in_memory_d18f8c365b308e6bf7e7b6622a0e8bb2a5fcce0f21dcc13822db1bfed7e4f7a0",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "11963:6:1",
"type": ""
}
],
"src": "11865:235:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12252:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12262:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12328:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12333:2:1",
"type": "",
"value": "48"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12269:58:1"
},
"nodeType": "YulFunctionCall",
"src": "12269:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12262:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12434:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_d18f8c365b308e6bf7e7b6622a0e8bb2a5fcce0f21dcc13822db1bfed7e4f7a0",
"nodeType": "YulIdentifier",
"src": "12345:88:1"
},
"nodeType": "YulFunctionCall",
"src": "12345:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "12345:93:1"
},
{
"nodeType": "YulAssignment",
"src": "12447:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12458:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12463:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12454:3:1"
},
"nodeType": "YulFunctionCall",
"src": "12454:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "12447:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_d18f8c365b308e6bf7e7b6622a0e8bb2a5fcce0f21dcc13822db1bfed7e4f7a0_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12240:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "12248:3:1",
"type": ""
}
],
"src": "12106:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12649:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12659:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12671:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12682:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12667:3:1"
},
"nodeType": "YulFunctionCall",
"src": "12667:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12659:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12706:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12717:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12702:3:1"
},
"nodeType": "YulFunctionCall",
"src": "12702:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12725:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12731:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "12721:3:1"
},
"nodeType": "YulFunctionCall",
"src": "12721:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12695:6:1"
},
"nodeType": "YulFunctionCall",
"src": "12695:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "12695:47:1"
},
{
"nodeType": "YulAssignment",
"src": "12751:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12885:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_d18f8c365b308e6bf7e7b6622a0e8bb2a5fcce0f21dcc13822db1bfed7e4f7a0_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12759:124:1"
},
"nodeType": "YulFunctionCall",
"src": "12759:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12751:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_d18f8c365b308e6bf7e7b6622a0e8bb2a5fcce0f21dcc13822db1bfed7e4f7a0__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "12629:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "12644:4:1",
"type": ""
}
],
"src": "12478:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13009:120:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "13031:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13039:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13027:3:1"
},
"nodeType": "YulFunctionCall",
"src": "13027:14:1"
},
{
"hexValue": "546f6b656e5374616b696e673a20616d6f756e742073686f756c64206265206e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "13043:34:1",
"type": "",
"value": "TokenStaking: amount should be n"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13020:6:1"
},
"nodeType": "YulFunctionCall",
"src": "13020:58:1"
},
"nodeType": "YulExpressionStatement",
"src": "13020:58:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "13099:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13107:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13095:3:1"
},
"nodeType": "YulFunctionCall",
"src": "13095:15:1"
},
{
"hexValue": "6f6e2d7a65726f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "13112:9:1",
"type": "",
"value": "on-zero"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13088:6:1"
},
"nodeType": "YulFunctionCall",
"src": "13088:34:1"
},
"nodeType": "YulExpressionStatement",
"src": "13088:34:1"
}
]
},
"name": "store_literal_in_memory_9a850645f3ea435d2a05139d2eb5e494708329f366b16549802acf7b499484bf",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "13001:6:1",
"type": ""
}
],
"src": "12903:226:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13281:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13291:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13357:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13362:2:1",
"type": "",
"value": "39"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13298:58:1"
},
"nodeType": "YulFunctionCall",
"src": "13298:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13291:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13463:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_9a850645f3ea435d2a05139d2eb5e494708329f366b16549802acf7b499484bf",
"nodeType": "YulIdentifier",
"src": "13374:88:1"
},
"nodeType": "YulFunctionCall",
"src": "13374:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "13374:93:1"
},
{
"nodeType": "YulAssignment",
"src": "13476:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13487:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13492:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13483:3:1"
},
"nodeType": "YulFunctionCall",
"src": "13483:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "13476:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9a850645f3ea435d2a05139d2eb5e494708329f366b16549802acf7b499484bf_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "13269:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "13277:3:1",
"type": ""
}
],
"src": "13135:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13678:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13688:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13700:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13711:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13696:3:1"
},
"nodeType": "YulFunctionCall",
"src": "13696:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13688:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13735:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13746:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13731:3:1"
},
"nodeType": "YulFunctionCall",
"src": "13731:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13754:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13760:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "13750:3:1"
},
"nodeType": "YulFunctionCall",
"src": "13750:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13724:6:1"
},
"nodeType": "YulFunctionCall",
"src": "13724:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "13724:47:1"
},
{
"nodeType": "YulAssignment",
"src": "13780:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13914:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9a850645f3ea435d2a05139d2eb5e494708329f366b16549802acf7b499484bf_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13788:124:1"
},
"nodeType": "YulFunctionCall",
"src": "13788:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13780:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9a850645f3ea435d2a05139d2eb5e494708329f366b16549802acf7b499484bf__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13658:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13673:4:1",
"type": ""
}
],
"src": "13507:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13972:76:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "14026:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14035:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14038:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "14028:6:1"
},
"nodeType": "YulFunctionCall",
"src": "14028:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "14028:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "13995:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "14017:5:1"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "14002:14:1"
},
"nodeType": "YulFunctionCall",
"src": "14002:21:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "13992:2:1"
},
"nodeType": "YulFunctionCall",
"src": "13992:32:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "13985:6:1"
},
"nodeType": "YulFunctionCall",
"src": "13985:40:1"
},
"nodeType": "YulIf",
"src": "13982:60:1"
}
]
},
"name": "validator_revert_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "13965:5:1",
"type": ""
}
],
"src": "13932:116:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14114:77:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14124:22:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "14139:6:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "14133:5:1"
},
"nodeType": "YulFunctionCall",
"src": "14133:13:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "14124:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "14179:5:1"
}
],
"functionName": {
"name": "validator_revert_t_bool",
"nodeType": "YulIdentifier",
"src": "14155:23:1"
},
"nodeType": "YulFunctionCall",
"src": "14155:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "14155:30:1"
}
]
},
"name": "abi_decode_t_bool_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "14092:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "14100:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "14108:5:1",
"type": ""
}
],
"src": "14054:137:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14271:271:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "14317:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "14319:77:1"
},
"nodeType": "YulFunctionCall",
"src": "14319:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "14319:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "14292:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14301:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "14288:3:1"
},
"nodeType": "YulFunctionCall",
"src": "14288:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14313:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "14284:3:1"
},
"nodeType": "YulFunctionCall",
"src": "14284:32:1"
},
"nodeType": "YulIf",
"src": "14281:119:1"
},
{
"nodeType": "YulBlock",
"src": "14410:125:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "14425:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "14439:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "14429:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "14454:71:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14497:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "14508:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14493:3:1"
},
"nodeType": "YulFunctionCall",
"src": "14493:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "14517:7:1"
}
],
"functionName": {
"name": "abi_decode_t_bool_fromMemory",
"nodeType": "YulIdentifier",
"src": "14464:28:1"
},
"nodeType": "YulFunctionCall",
"src": "14464:61:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "14454:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bool_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "14241:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "14252:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "14264:6:1",
"type": ""
}
],
"src": "14197:345:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14654:75:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "14676:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14684:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14672:3:1"
},
"nodeType": "YulFunctionCall",
"src": "14672:14:1"
},
{
"hexValue": "546f6b656e5374616b696e673a206e6f742061207374616b65686f6c646572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "14688:33:1",
"type": "",
"value": "TokenStaking: not a stakeholder"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14665:6:1"
},
"nodeType": "YulFunctionCall",
"src": "14665:57:1"
},
"nodeType": "YulExpressionStatement",
"src": "14665:57:1"
}
]
},
"name": "store_literal_in_memory_64b9ddea543a11a2649986aa34b4e58bfc64c5ec06929d2f7632ba13f54852a4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "14646:6:1",
"type": ""
}
],
"src": "14548:181:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14881:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14891:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14957:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14962:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14898:58:1"
},
"nodeType": "YulFunctionCall",
"src": "14898:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14891:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15063:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_64b9ddea543a11a2649986aa34b4e58bfc64c5ec06929d2f7632ba13f54852a4",
"nodeType": "YulIdentifier",
"src": "14974:88:1"
},
"nodeType": "YulFunctionCall",
"src": "14974:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "14974:93:1"
},
{
"nodeType": "YulAssignment",
"src": "15076:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15087:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15092:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15083:3:1"
},
"nodeType": "YulFunctionCall",
"src": "15083:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "15076:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_64b9ddea543a11a2649986aa34b4e58bfc64c5ec06929d2f7632ba13f54852a4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "14869:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "14877:3:1",
"type": ""
}
],
"src": "14735:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15278:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15288:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15300:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15311:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15296:3:1"
},
"nodeType": "YulFunctionCall",
"src": "15296:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15288:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15335:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15346:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15331:3:1"
},
"nodeType": "YulFunctionCall",
"src": "15331:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15354:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15360:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "15350:3:1"
},
"nodeType": "YulFunctionCall",
"src": "15350:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15324:6:1"
},
"nodeType": "YulFunctionCall",
"src": "15324:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "15324:47:1"
},
{
"nodeType": "YulAssignment",
"src": "15380:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15514:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_64b9ddea543a11a2649986aa34b4e58bfc64c5ec06929d2f7632ba13f54852a4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15388:124:1"
},
"nodeType": "YulFunctionCall",
"src": "15388:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15380:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_64b9ddea543a11a2649986aa34b4e58bfc64c5ec06929d2f7632ba13f54852a4__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "15258:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "15273:4:1",
"type": ""
}
],
"src": "15107:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15638:122:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "15660:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15668:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15656:3:1"
},
"nodeType": "YulFunctionCall",
"src": "15656:14:1"
},
{
"hexValue": "546f6b656e5374616b696e673a206e6f7420656e6f756768207374616b652074",
"kind": "string",
"nodeType": "YulLiteral",
"src": "15672:34:1",
"type": "",
"value": "TokenStaking: not enough stake t"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15649:6:1"
},
"nodeType": "YulFunctionCall",
"src": "15649:58:1"
},
"nodeType": "YulExpressionStatement",
"src": "15649:58:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "15728:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15736:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15724:3:1"
},
"nodeType": "YulFunctionCall",
"src": "15724:15:1"
},
{
"hexValue": "6f20756e7374616b65",
"kind": "string",
"nodeType": "YulLiteral",
"src": "15741:11:1",
"type": "",
"value": "o unstake"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15717:6:1"
},
"nodeType": "YulFunctionCall",
"src": "15717:36:1"
},
"nodeType": "YulExpressionStatement",
"src": "15717:36:1"
}
]
},
"name": "store_literal_in_memory_dfa3298fda01476f3e562a70f6361fdb473d99790bcacaa01fdd2c6faa3a4ac4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "15630:6:1",
"type": ""
}
],
"src": "15532:228:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15912:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15922:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15988:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15993:2:1",
"type": "",
"value": "41"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15929:58:1"
},
"nodeType": "YulFunctionCall",
"src": "15929:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15922:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16094:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_dfa3298fda01476f3e562a70f6361fdb473d99790bcacaa01fdd2c6faa3a4ac4",
"nodeType": "YulIdentifier",
"src": "16005:88:1"
},
"nodeType": "YulFunctionCall",
"src": "16005:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "16005:93:1"
},
{
"nodeType": "YulAssignment",
"src": "16107:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16118:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16123:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16114:3:1"
},
"nodeType": "YulFunctionCall",
"src": "16114:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "16107:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_dfa3298fda01476f3e562a70f6361fdb473d99790bcacaa01fdd2c6faa3a4ac4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "15900:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "15908:3:1",
"type": ""
}
],
"src": "15766:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16309:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16319:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16331:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16342:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16327:3:1"
},
"nodeType": "YulFunctionCall",
"src": "16327:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16319:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16366:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16377:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16362:3:1"
},
"nodeType": "YulFunctionCall",
"src": "16362:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16385:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16391:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "16381:3:1"
},
"nodeType": "YulFunctionCall",
"src": "16381:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16355:6:1"
},
"nodeType": "YulFunctionCall",
"src": "16355:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "16355:47:1"
},
{
"nodeType": "YulAssignment",
"src": "16411:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16545:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_dfa3298fda01476f3e562a70f6361fdb473d99790bcacaa01fdd2c6faa3a4ac4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16419:124:1"
},
"nodeType": "YulFunctionCall",
"src": "16419:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16411:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_dfa3298fda01476f3e562a70f6361fdb473d99790bcacaa01fdd2c6faa3a4ac4__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "16289:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "16304:4:1",
"type": ""
}
],
"src": "16138:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16591:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16608:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16611:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16601:6:1"
},
"nodeType": "YulFunctionCall",
"src": "16601:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "16601:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16705:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16708:4:1",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16698:6:1"
},
"nodeType": "YulFunctionCall",
"src": "16698:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "16698:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16729:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16732:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "16722:6:1"
},
"nodeType": "YulFunctionCall",
"src": "16722:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "16722:15:1"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "16563:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16793:261:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16803:25:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "16826:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "16808:17:1"
},
"nodeType": "YulFunctionCall",
"src": "16808:20:1"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "16803:1:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "16837:25:1",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "16860:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "16842:17:1"
},
"nodeType": "YulFunctionCall",
"src": "16842:20:1"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "16837:1:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "17000:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "17002:16:1"
},
"nodeType": "YulFunctionCall",
"src": "17002:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "17002:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "16921:1:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16928:66:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "16996:1:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "16924:3:1"
},
"nodeType": "YulFunctionCall",
"src": "16924:74:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "16918:2:1"
},
"nodeType": "YulFunctionCall",
"src": "16918:81:1"
},
"nodeType": "YulIf",
"src": "16915:107:1"
},
{
"nodeType": "YulAssignment",
"src": "17032:16:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "17043:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "17046:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17039:3:1"
},
"nodeType": "YulFunctionCall",
"src": "17039:9:1"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "17032:3:1"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "16780:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "16783:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "16789:3:1",
"type": ""
}
],
"src": "16749:305:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17108:300:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17118:25:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "17141:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "17123:17:1"
},
"nodeType": "YulFunctionCall",
"src": "17123:20:1"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "17118:1:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "17152:25:1",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "17175:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "17157:17:1"
},
"nodeType": "YulFunctionCall",
"src": "17157:20:1"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "17152:1:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "17350:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "17352:16:1"
},
"nodeType": "YulFunctionCall",
"src": "17352:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "17352:18:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "17262:1:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "17255:6:1"
},
"nodeType": "YulFunctionCall",
"src": "17255:9:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "17248:6:1"
},
"nodeType": "YulFunctionCall",
"src": "17248:17:1"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "17270:1:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17277:66:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "17345:1:1"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "17273:3:1"
},
"nodeType": "YulFunctionCall",
"src": "17273:74:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "17267:2:1"
},
"nodeType": "YulFunctionCall",
"src": "17267:81:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "17244:3:1"
},
"nodeType": "YulFunctionCall",
"src": "17244:105:1"
},
"nodeType": "YulIf",
"src": "17241:131:1"
},
{
"nodeType": "YulAssignment",
"src": "17382:20:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "17397:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "17400:1:1"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "17393:3:1"
},
"nodeType": "YulFunctionCall",
"src": "17393:9:1"
},
"variableNames": [
{
"name": "product",
"nodeType": "YulIdentifier",
"src": "17382:7:1"
}
]
}
]
},
"name": "checked_mul_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "17091:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "17094:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "product",
"nodeType": "YulTypedName",
"src": "17100:7:1",
"type": ""
}
],
"src": "17060:348:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17442:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17459:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17462:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17452:6:1"
},
"nodeType": "YulFunctionCall",
"src": "17452:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "17452:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17556:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17559:4:1",
"type": "",
"value": "0x12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17549:6:1"
},
"nodeType": "YulFunctionCall",
"src": "17549:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "17549:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17580:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17583:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "17573:6:1"
},
"nodeType": "YulFunctionCall",
"src": "17573:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "17573:15:1"
}
]
},
"name": "panic_error_0x12",
"nodeType": "YulFunctionDefinition",
"src": "17414:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17642:143:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17652:25:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "17675:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "17657:17:1"
},
"nodeType": "YulFunctionCall",
"src": "17657:20:1"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "17652:1:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "17686:25:1",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "17709:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "17691:17:1"
},
"nodeType": "YulFunctionCall",
"src": "17691:20:1"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "17686:1:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "17733:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "17735:16:1"
},
"nodeType": "YulFunctionCall",
"src": "17735:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "17735:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "17730:1:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "17723:6:1"
},
"nodeType": "YulFunctionCall",
"src": "17723:9:1"
},
"nodeType": "YulIf",
"src": "17720:35:1"
},
{
"nodeType": "YulAssignment",
"src": "17765:14:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "17774:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "17777:1:1"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "17770:3:1"
},
"nodeType": "YulFunctionCall",
"src": "17770:9:1"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "17765:1:1"
}
]
}
]
},
"name": "checked_div_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "17631:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "17634:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "17640:1:1",
"type": ""
}
],
"src": "17600:185:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17836:146:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17846:25:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "17869:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "17851:17:1"
},
"nodeType": "YulFunctionCall",
"src": "17851:20:1"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "17846:1:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "17880:25:1",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "17903:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "17885:17:1"
},
"nodeType": "YulFunctionCall",
"src": "17885:20:1"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "17880:1:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "17927:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "17929:16:1"
},
"nodeType": "YulFunctionCall",
"src": "17929:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "17929:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "17921:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "17924:1:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "17918:2:1"
},
"nodeType": "YulFunctionCall",
"src": "17918:8:1"
},
"nodeType": "YulIf",
"src": "17915:34:1"
},
{
"nodeType": "YulAssignment",
"src": "17959:17:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "17971:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "17974:1:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "17967:3:1"
},
"nodeType": "YulFunctionCall",
"src": "17967:9:1"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "17959:4:1"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "17822:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "17825:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "17831:4:1",
"type": ""
}
],
"src": "17791:191:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18114:206:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18124:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18136:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18147:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18132:3:1"
},
"nodeType": "YulFunctionCall",
"src": "18132:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18124:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "18204:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18217:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18228:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18213:3:1"
},
"nodeType": "YulFunctionCall",
"src": "18213:17:1"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "18160:43:1"
},
"nodeType": "YulFunctionCall",
"src": "18160:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "18160:71:1"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "18285:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18298:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18309:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18294:3:1"
},
"nodeType": "YulFunctionCall",
"src": "18294:18:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "18241:43:1"
},
"nodeType": "YulFunctionCall",
"src": "18241:72:1"
},
"nodeType": "YulExpressionStatement",
"src": "18241:72:1"
}
]
},
"name": "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "18078:9:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "18090:6:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "18098:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "18109:4:1",
"type": ""
}
],
"src": "17988:332:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18432:76:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "18454:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18462:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18450:3:1"
},
"nodeType": "YulFunctionCall",
"src": "18450:14:1"
},
{
"hexValue": "546f6b656e5374616b696e673a206661696c656420746f207472616e73666572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "18466:34:1",
"type": "",
"value": "TokenStaking: failed to transfer"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18443:6:1"
},
"nodeType": "YulFunctionCall",
"src": "18443:58:1"
},
"nodeType": "YulExpressionStatement",
"src": "18443:58:1"
}
]
},
"name": "store_literal_in_memory_7b3deea66482ba1e288f955d78a6490da1dd0d7e033fddee35422525c5499a6b",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "18424:6:1",
"type": ""
}
],
"src": "18326:182:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18660:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18670:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18736:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18741:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "18677:58:1"
},
"nodeType": "YulFunctionCall",
"src": "18677:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18670:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18842:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_7b3deea66482ba1e288f955d78a6490da1dd0d7e033fddee35422525c5499a6b",
"nodeType": "YulIdentifier",
"src": "18753:88:1"
},
"nodeType": "YulFunctionCall",
"src": "18753:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "18753:93:1"
},
{
"nodeType": "YulAssignment",
"src": "18855:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18866:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18871:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18862:3:1"
},
"nodeType": "YulFunctionCall",
"src": "18862:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "18855:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_7b3deea66482ba1e288f955d78a6490da1dd0d7e033fddee35422525c5499a6b_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "18648:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "18656:3:1",
"type": ""
}
],
"src": "18514:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19057:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19067:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19079:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19090:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19075:3:1"
},
"nodeType": "YulFunctionCall",
"src": "19075:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19067:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19114:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19125:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19110:3:1"
},
"nodeType": "YulFunctionCall",
"src": "19110:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19133:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19139:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "19129:3:1"
},
"nodeType": "YulFunctionCall",
"src": "19129:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19103:6:1"
},
"nodeType": "YulFunctionCall",
"src": "19103:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "19103:47:1"
},
{
"nodeType": "YulAssignment",
"src": "19159:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19293:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_7b3deea66482ba1e288f955d78a6490da1dd0d7e033fddee35422525c5499a6b_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "19167:124:1"
},
"nodeType": "YulFunctionCall",
"src": "19167:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19159:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_7b3deea66482ba1e288f955d78a6490da1dd0d7e033fddee35422525c5499a6b__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "19037:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "19052:4:1",
"type": ""
}
],
"src": "18886:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19417:125:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "19439:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19447:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19435:3:1"
},
"nodeType": "YulFunctionCall",
"src": "19435:14:1"
},
{
"hexValue": "546f6b656e5374616b696e673a206e6f7420656e6f7567682077697468647261",
"kind": "string",
"nodeType": "YulLiteral",
"src": "19451:34:1",
"type": "",
"value": "TokenStaking: not enough withdra"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19428:6:1"
},
"nodeType": "YulFunctionCall",
"src": "19428:58:1"
},
"nodeType": "YulExpressionStatement",
"src": "19428:58:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "19507:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19515:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19503:3:1"
},
"nodeType": "YulFunctionCall",
"src": "19503:15:1"
},
{
"hexValue": "7761626c6520746f6b656e73",
"kind": "string",
"nodeType": "YulLiteral",
"src": "19520:14:1",
"type": "",
"value": "wable tokens"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19496:6:1"
},
"nodeType": "YulFunctionCall",
"src": "19496:39:1"
},
"nodeType": "YulExpressionStatement",
"src": "19496:39:1"
}
]
},
"name": "store_literal_in_memory_26d63244211d841142e027f4a0e970ac0ebb34a3c1bc90815c102da708532ae7",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "19409:6:1",
"type": ""
}
],
"src": "19311:231:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19694:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19704:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19770:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19775:2:1",
"type": "",
"value": "44"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "19711:58:1"
},
"nodeType": "YulFunctionCall",
"src": "19711:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19704:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19876:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_26d63244211d841142e027f4a0e970ac0ebb34a3c1bc90815c102da708532ae7",
"nodeType": "YulIdentifier",
"src": "19787:88:1"
},
"nodeType": "YulFunctionCall",
"src": "19787:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "19787:93:1"
},
{
"nodeType": "YulAssignment",
"src": "19889:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19900:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19905:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19896:3:1"
},
"nodeType": "YulFunctionCall",
"src": "19896:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "19889:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_26d63244211d841142e027f4a0e970ac0ebb34a3c1bc90815c102da708532ae7_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "19682:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "19690:3:1",
"type": ""
}
],
"src": "19548:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20091:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20101:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20113:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20124:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20109:3:1"
},
"nodeType": "YulFunctionCall",
"src": "20109:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20101:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20148:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20159:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20144:3:1"
},
"nodeType": "YulFunctionCall",
"src": "20144:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20167:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20173:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "20163:3:1"
},
"nodeType": "YulFunctionCall",
"src": "20163:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20137:6:1"
},
"nodeType": "YulFunctionCall",
"src": "20137:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "20137:47:1"
},
{
"nodeType": "YulAssignment",
"src": "20193:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20327:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_26d63244211d841142e027f4a0e970ac0ebb34a3c1bc90815c102da708532ae7_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "20201:124:1"
},
"nodeType": "YulFunctionCall",
"src": "20201:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20193:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_26d63244211d841142e027f4a0e970ac0ebb34a3c1bc90815c102da708532ae7__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "20071:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "20086:4:1",
"type": ""
}
],
"src": "19920:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20451:127:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "20473:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20481:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20469:3:1"
},
"nodeType": "YulFunctionCall",
"src": "20469:14:1"
},
{
"hexValue": "496e697469616c697a61626c653a20636f6e747261637420697320616c726561",
"kind": "string",
"nodeType": "YulLiteral",
"src": "20485:34:1",
"type": "",
"value": "Initializable: contract is alrea"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20462:6:1"
},
"nodeType": "YulFunctionCall",
"src": "20462:58:1"
},
"nodeType": "YulExpressionStatement",
"src": "20462:58:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "20541:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20549:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20537:3:1"
},
"nodeType": "YulFunctionCall",
"src": "20537:15:1"
},
{
"hexValue": "647920696e697469616c697a6564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "20554:16:1",
"type": "",
"value": "dy initialized"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20530:6:1"
},
"nodeType": "YulFunctionCall",
"src": "20530:41:1"
},
"nodeType": "YulExpressionStatement",
"src": "20530:41:1"
}
]
},
"name": "store_literal_in_memory_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "20443:6:1",
"type": ""
}
],
"src": "20345:233:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20730:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20740:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20806:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20811:2:1",
"type": "",
"value": "46"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "20747:58:1"
},
"nodeType": "YulFunctionCall",
"src": "20747:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20740:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20912:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759",
"nodeType": "YulIdentifier",
"src": "20823:88:1"
},
"nodeType": "YulFunctionCall",
"src": "20823:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "20823:93:1"
},
{
"nodeType": "YulAssignment",
"src": "20925:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20936:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20941:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20932:3:1"
},
"nodeType": "YulFunctionCall",
"src": "20932:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "20925:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "20718:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "20726:3:1",
"type": ""
}
],
"src": "20584:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21127:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21137:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21149:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21160:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21145:3:1"
},
"nodeType": "YulFunctionCall",
"src": "21145:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21137:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21184:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21195:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21180:3:1"
},
"nodeType": "YulFunctionCall",
"src": "21180:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21203:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21209:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "21199:3:1"
},
"nodeType": "YulFunctionCall",
"src": "21199:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21173:6:1"
},
"nodeType": "YulFunctionCall",
"src": "21173:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "21173:47:1"
},
{
"nodeType": "YulAssignment",
"src": "21229:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21363:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "21237:124:1"
},
"nodeType": "YulFunctionCall",
"src": "21237:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21229:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "21107:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "21122:4:1",
"type": ""
}
],
"src": "20956:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21434:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21444:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "21455:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "21444:7:1"
}
]
}
]
},
"name": "cleanup_t_rational_1_by_1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "21416:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "21426:7:1",
"type": ""
}
],
"src": "21381:85:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21515:43:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21525:27:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "21540:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21547:4:1",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "21536:3:1"
},
"nodeType": "YulFunctionCall",
"src": "21536:16:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "21525:7:1"
}
]
}
]
},
"name": "cleanup_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "21497:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "21507:7:1",
"type": ""
}
],
"src": "21472:86:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21596:28:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21606:12:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "21613:5:1"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "21606:3:1"
}
]
}
]
},
"name": "identity",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "21582:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "21592:3:1",
"type": ""
}
],
"src": "21564:60:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21696:88:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21706:72:1",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "21770:5:1"
}
],
"functionName": {
"name": "cleanup_t_rational_1_by_1",
"nodeType": "YulIdentifier",
"src": "21744:25:1"
},
"nodeType": "YulFunctionCall",
"src": "21744:32:1"
}
],
"functionName": {
"name": "identity",
"nodeType": "YulIdentifier",
"src": "21735:8:1"
},
"nodeType": "YulFunctionCall",
"src": "21735:42:1"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nodeType": "YulIdentifier",
"src": "21719:15:1"
},
"nodeType": "YulFunctionCall",
"src": "21719:59:1"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "21706:9:1"
}
]
}
]
},
"name": "convert_t_rational_1_by_1_to_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "21676:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "21686:9:1",
"type": ""
}
],
"src": "21630:154:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21861:72:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "21878:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "21920:5:1"
}
],
"functionName": {
"name": "convert_t_rational_1_by_1_to_t_uint8",
"nodeType": "YulIdentifier",
"src": "21883:36:1"
},
"nodeType": "YulFunctionCall",
"src": "21883:43:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21871:6:1"
},
"nodeType": "YulFunctionCall",
"src": "21871:56:1"
},
"nodeType": "YulExpressionStatement",
"src": "21871:56:1"
}
]
},
"name": "abi_encode_t_rational_1_by_1_to_t_uint8_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "21849:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "21856:3:1",
"type": ""
}
],
"src": "21790:143:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22043:130:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22053:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22065:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22076:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22061:3:1"
},
"nodeType": "YulFunctionCall",
"src": "22061:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22053:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "22139:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22152:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22163:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22148:3:1"
},
"nodeType": "YulFunctionCall",
"src": "22148:17:1"
}
],
"functionName": {
"name": "abi_encode_t_rational_1_by_1_to_t_uint8_fromStack",
"nodeType": "YulIdentifier",
"src": "22089:49:1"
},
"nodeType": "YulFunctionCall",
"src": "22089:77:1"
},
"nodeType": "YulExpressionStatement",
"src": "22089:77:1"
}
]
},
"name": "abi_encode_tuple_t_rational_1_by_1__to_t_uint8__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "22015:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "22027:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "22038:4:1",
"type": ""
}
],
"src": "21939:234:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22285:76:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "22307:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22315:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22303:3:1"
},
"nodeType": "YulFunctionCall",
"src": "22303:14:1"
},
{
"hexValue": "546f6b656e5374616b696e673a206e6f2072657761726420746f20636c61696d",
"kind": "string",
"nodeType": "YulLiteral",
"src": "22319:34:1",
"type": "",
"value": "TokenStaking: no reward to claim"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22296:6:1"
},
"nodeType": "YulFunctionCall",
"src": "22296:58:1"
},
"nodeType": "YulExpressionStatement",
"src": "22296:58:1"
}
]
},
"name": "store_literal_in_memory_c6a3cc6edbde3e4a551537018312e8b351804c0a111959292915e0c62b0256f4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "22277:6:1",
"type": ""
}
],
"src": "22179:182:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22513:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22523:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "22589:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22594:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "22530:58:1"
},
"nodeType": "YulFunctionCall",
"src": "22530:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "22523:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "22695:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_c6a3cc6edbde3e4a551537018312e8b351804c0a111959292915e0c62b0256f4",
"nodeType": "YulIdentifier",
"src": "22606:88:1"
},
"nodeType": "YulFunctionCall",
"src": "22606:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "22606:93:1"
},
{
"nodeType": "YulAssignment",
"src": "22708:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "22719:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22724:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22715:3:1"
},
"nodeType": "YulFunctionCall",
"src": "22715:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "22708:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_c6a3cc6edbde3e4a551537018312e8b351804c0a111959292915e0c62b0256f4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "22501:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "22509:3:1",
"type": ""
}
],
"src": "22367:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22910:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22920:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22932:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22943:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22928:3:1"
},
"nodeType": "YulFunctionCall",
"src": "22928:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22920:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22967:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22978:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22963:3:1"
},
"nodeType": "YulFunctionCall",
"src": "22963:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22986:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22992:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "22982:3:1"
},
"nodeType": "YulFunctionCall",
"src": "22982:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22956:6:1"
},
"nodeType": "YulFunctionCall",
"src": "22956:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "22956:47:1"
},
{
"nodeType": "YulAssignment",
"src": "23012:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23146:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_c6a3cc6edbde3e4a551537018312e8b351804c0a111959292915e0c62b0256f4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "23020:124:1"
},
"nodeType": "YulFunctionCall",
"src": "23020:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23012:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c6a3cc6edbde3e4a551537018312e8b351804c0a111959292915e0c62b0256f4__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "22890:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "22905:4:1",
"type": ""
}
],
"src": "22739:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23192:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23209:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23212:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23202:6:1"
},
"nodeType": "YulFunctionCall",
"src": "23202:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "23202:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23306:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23309:4:1",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23299:6:1"
},
"nodeType": "YulFunctionCall",
"src": "23299:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "23299:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23330:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23333:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "23323:6:1"
},
"nodeType": "YulFunctionCall",
"src": "23323:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "23323:15:1"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "23164:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23401:269:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "23411:22:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "23425:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23431:1:1",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "23421:3:1"
},
"nodeType": "YulFunctionCall",
"src": "23421:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "23411:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "23442:38:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "23472:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23478:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "23468:3:1"
},
"nodeType": "YulFunctionCall",
"src": "23468:12:1"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "23446:18:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "23519:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "23533:27:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "23547:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23555:4:1",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "23543:3:1"
},
"nodeType": "YulFunctionCall",
"src": "23543:17:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "23533:6:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "23499:18:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "23492:6:1"
},
"nodeType": "YulFunctionCall",
"src": "23492:26:1"
},
"nodeType": "YulIf",
"src": "23489:81:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23622:42:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "23636:16:1"
},
"nodeType": "YulFunctionCall",
"src": "23636:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "23636:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "23586:18:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "23609:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23617:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "23606:2:1"
},
"nodeType": "YulFunctionCall",
"src": "23606:14:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "23583:2:1"
},
"nodeType": "YulFunctionCall",
"src": "23583:38:1"
},
"nodeType": "YulIf",
"src": "23580:84:1"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "23385:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "23394:6:1",
"type": ""
}
],
"src": "23350:320:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23782:119:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "23804:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23812:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23800:3:1"
},
"nodeType": "YulFunctionCall",
"src": "23800:14:1"
},
{
"hexValue": "4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061",
"kind": "string",
"nodeType": "YulLiteral",
"src": "23816:34:1",
"type": "",
"value": "Ownable: new owner is the zero a"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23793:6:1"
},
"nodeType": "YulFunctionCall",
"src": "23793:58:1"
},
"nodeType": "YulExpressionStatement",
"src": "23793:58:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "23872:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23880:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23868:3:1"
},
"nodeType": "YulFunctionCall",
"src": "23868:15:1"
},
{
"hexValue": "646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "23885:8:1",
"type": "",
"value": "ddress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23861:6:1"
},
"nodeType": "YulFunctionCall",
"src": "23861:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "23861:33:1"
}
]
},
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "23774:6:1",
"type": ""
}
],
"src": "23676:225:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24053:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24063:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "24129:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24134:2:1",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "24070:58:1"
},
"nodeType": "YulFunctionCall",
"src": "24070:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "24063:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "24235:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nodeType": "YulIdentifier",
"src": "24146:88:1"
},
"nodeType": "YulFunctionCall",
"src": "24146:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "24146:93:1"
},
{
"nodeType": "YulAssignment",
"src": "24248:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "24259:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24264:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24255:3:1"
},
"nodeType": "YulFunctionCall",
"src": "24255:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "24248:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "24041:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "24049:3:1",
"type": ""
}
],
"src": "23907:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24450:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24460:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24472:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24483:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24468:3:1"
},
"nodeType": "YulFunctionCall",
"src": "24468:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24460:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24507:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24518:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24503:3:1"
},
"nodeType": "YulFunctionCall",
"src": "24503:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24526:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24532:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "24522:3:1"
},
"nodeType": "YulFunctionCall",
"src": "24522:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24496:6:1"
},
"nodeType": "YulFunctionCall",
"src": "24496:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "24496:47:1"
},
{
"nodeType": "YulAssignment",
"src": "24552:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24686:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "24560:124:1"
},
"nodeType": "YulFunctionCall",
"src": "24560:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24552:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "24430:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "24445:4:1",
"type": ""
}
],
"src": "24279:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24810:76:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "24832:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24840:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24828:3:1"
},
"nodeType": "YulFunctionCall",
"src": "24828:14:1"
},
{
"hexValue": "4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "24844:34:1",
"type": "",
"value": "Ownable: caller is not the owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24821:6:1"
},
"nodeType": "YulFunctionCall",
"src": "24821:58:1"
},
"nodeType": "YulExpressionStatement",
"src": "24821:58:1"
}
]
},
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "24802:6:1",
"type": ""
}
],
"src": "24704:182:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25038:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25048:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "25114:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25119:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "25055:58:1"
},
"nodeType": "YulFunctionCall",
"src": "25055:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "25048:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "25220:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulIdentifier",
"src": "25131:88:1"
},
"nodeType": "YulFunctionCall",
"src": "25131:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "25131:93:1"
},
{
"nodeType": "YulAssignment",
"src": "25233:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "25244:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25249:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25240:3:1"
},
"nodeType": "YulFunctionCall",
"src": "25240:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "25233:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "25026:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "25034:3:1",
"type": ""
}
],
"src": "24892:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25435:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25445:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25457:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25468:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25453:3:1"
},
"nodeType": "YulFunctionCall",
"src": "25453:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25445:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25492:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25503:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25488:3:1"
},
"nodeType": "YulFunctionCall",
"src": "25488:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25511:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25517:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "25507:3:1"
},
"nodeType": "YulFunctionCall",
"src": "25507:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25481:6:1"
},
"nodeType": "YulFunctionCall",
"src": "25481:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "25481:47:1"
},
{
"nodeType": "YulAssignment",
"src": "25537:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25671:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "25545:124:1"
},
"nodeType": "YulFunctionCall",
"src": "25545:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25537:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "25415:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "25430:4:1",
"type": ""
}
],
"src": "25264:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25795:124:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25817:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25825:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25813:3:1"
},
"nodeType": "YulFunctionCall",
"src": "25813:14:1"
},
{
"hexValue": "496e697469616c697a61626c653a20636f6e7472616374206973206e6f742069",
"kind": "string",
"nodeType": "YulLiteral",
"src": "25829:34:1",
"type": "",
"value": "Initializable: contract is not i"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25806:6:1"
},
"nodeType": "YulFunctionCall",
"src": "25806:58:1"
},
"nodeType": "YulExpressionStatement",
"src": "25806:58:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25885:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25893:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25881:3:1"
},
"nodeType": "YulFunctionCall",
"src": "25881:15:1"
},
{
"hexValue": "6e697469616c697a696e67",
"kind": "string",
"nodeType": "YulLiteral",
"src": "25898:13:1",
"type": "",
"value": "nitializing"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25874:6:1"
},
"nodeType": "YulFunctionCall",
"src": "25874:38:1"
},
"nodeType": "YulExpressionStatement",
"src": "25874:38:1"
}
]
},
"name": "store_literal_in_memory_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "25787:6:1",
"type": ""
}
],
"src": "25689:230:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26071:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26081:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "26147:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26152:2:1",
"type": "",
"value": "43"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "26088:58:1"
},
"nodeType": "YulFunctionCall",
"src": "26088:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "26081:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "26253:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b",
"nodeType": "YulIdentifier",
"src": "26164:88:1"
},
"nodeType": "YulFunctionCall",
"src": "26164:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "26164:93:1"
},
{
"nodeType": "YulAssignment",
"src": "26266:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "26277:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26282:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26273:3:1"
},
"nodeType": "YulFunctionCall",
"src": "26273:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "26266:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "26059:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "26067:3:1",
"type": ""
}
],
"src": "25925:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26468:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26478:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26490:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26501:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26486:3:1"
},
"nodeType": "YulFunctionCall",
"src": "26486:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26478:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26525:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26536:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26521:3:1"
},
"nodeType": "YulFunctionCall",
"src": "26521:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26544:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26550:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "26540:3:1"
},
"nodeType": "YulFunctionCall",
"src": "26540:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26514:6:1"
},
"nodeType": "YulFunctionCall",
"src": "26514:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "26514:47:1"
},
{
"nodeType": "YulAssignment",
"src": "26570:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26704:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "26578:124:1"
},
"nodeType": "YulFunctionCall",
"src": "26578:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26570:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "26448:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "26463:4:1",
"type": ""
}
],
"src": "26297:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26828:129:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "26850:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26858:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26846:3:1"
},
"nodeType": "YulFunctionCall",
"src": "26846:14:1"
},
{
"hexValue": "546f6b656e5374616b696e673a2061707920726174652073686f756c64206265",
"kind": "string",
"nodeType": "YulLiteral",
"src": "26862:34:1",
"type": "",
"value": "TokenStaking: apy rate should be"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26839:6:1"
},
"nodeType": "YulFunctionCall",
"src": "26839:58:1"
},
"nodeType": "YulExpressionStatement",
"src": "26839:58:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "26918:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26926:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26914:3:1"
},
"nodeType": "YulFunctionCall",
"src": "26914:15:1"
},
{
"hexValue": "206c657373207468616e203130303030",
"kind": "string",
"nodeType": "YulLiteral",
"src": "26931:18:1",
"type": "",
"value": " less than 10000"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26907:6:1"
},
"nodeType": "YulFunctionCall",
"src": "26907:43:1"
},
"nodeType": "YulExpressionStatement",
"src": "26907:43:1"
}
]
},
"name": "store_literal_in_memory_a38c03dadc510bf16c291f38b976b6fbf62772b0d8fff36eadd6d676ecce8b1d",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "26820:6:1",
"type": ""
}
],
"src": "26722:235:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27109:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27119:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "27185:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27190:2:1",
"type": "",
"value": "48"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "27126:58:1"
},
"nodeType": "YulFunctionCall",
"src": "27126:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "27119:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "27291:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_a38c03dadc510bf16c291f38b976b6fbf62772b0d8fff36eadd6d676ecce8b1d",
"nodeType": "YulIdentifier",
"src": "27202:88:1"
},
"nodeType": "YulFunctionCall",
"src": "27202:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "27202:93:1"
},
{
"nodeType": "YulAssignment",
"src": "27304:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "27315:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27320:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27311:3:1"
},
"nodeType": "YulFunctionCall",
"src": "27311:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "27304:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_a38c03dadc510bf16c291f38b976b6fbf62772b0d8fff36eadd6d676ecce8b1d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "27097:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "27105:3:1",
"type": ""
}
],
"src": "26963:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27506:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27516:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "27528:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27539:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27524:3:1"
},
"nodeType": "YulFunctionCall",
"src": "27524:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27516:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "27563:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27574:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27559:3:1"
},
"nodeType": "YulFunctionCall",
"src": "27559:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27582:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "27588:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "27578:3:1"
},
"nodeType": "YulFunctionCall",
"src": "27578:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27552:6:1"
},
"nodeType": "YulFunctionCall",
"src": "27552:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "27552:47:1"
},
{
"nodeType": "YulAssignment",
"src": "27608:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27742:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_a38c03dadc510bf16c291f38b976b6fbf62772b0d8fff36eadd6d676ecce8b1d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "27616:124:1"
},
"nodeType": "YulFunctionCall",
"src": "27616:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27608:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_a38c03dadc510bf16c291f38b976b6fbf62772b0d8fff36eadd6d676ecce8b1d__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "27486:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "27501:4:1",
"type": ""
}
],
"src": "27335:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27866:122:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "27888:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27896:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27884:3:1"
},
"nodeType": "YulFunctionCall",
"src": "27884:14:1"
},
{
"hexValue": "546f6b656e5374616b696e673a207374616b652064617973206d757374206265",
"kind": "string",
"nodeType": "YulLiteral",
"src": "27900:34:1",
"type": "",
"value": "TokenStaking: stake days must be"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27877:6:1"
},
"nodeType": "YulFunctionCall",
"src": "27877:58:1"
},
"nodeType": "YulExpressionStatement",
"src": "27877:58:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "27956:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27964:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27952:3:1"
},
"nodeType": "YulFunctionCall",
"src": "27952:15:1"
},
{
"hexValue": "206e6f6e2d7a65726f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "27969:11:1",
"type": "",
"value": " non-zero"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27945:6:1"
},
"nodeType": "YulFunctionCall",
"src": "27945:36:1"
},
"nodeType": "YulExpressionStatement",
"src": "27945:36:1"
}
]
},
"name": "store_literal_in_memory_805f85071a50c2f8d510d5bdec0aef31245087ce416bc4fa6a7f8bda14e3686f",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "27858:6:1",
"type": ""
}
],
"src": "27760:228:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28140:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "28150:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "28216:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28221:2:1",
"type": "",
"value": "41"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "28157:58:1"
},
"nodeType": "YulFunctionCall",
"src": "28157:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "28150:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "28322:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_805f85071a50c2f8d510d5bdec0aef31245087ce416bc4fa6a7f8bda14e3686f",
"nodeType": "YulIdentifier",
"src": "28233:88:1"
},
"nodeType": "YulFunctionCall",
"src": "28233:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "28233:93:1"
},
{
"nodeType": "YulAssignment",
"src": "28335:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "28346:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28351:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28342:3:1"
},
"nodeType": "YulFunctionCall",
"src": "28342:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "28335:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_805f85071a50c2f8d510d5bdec0aef31245087ce416bc4fa6a7f8bda14e3686f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "28128:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "28136:3:1",
"type": ""
}
],
"src": "27994:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28537:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "28547:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "28559:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28570:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28555:3:1"
},
"nodeType": "YulFunctionCall",
"src": "28555:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28547:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "28594:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28605:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28590:3:1"
},
"nodeType": "YulFunctionCall",
"src": "28590:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28613:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "28619:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "28609:3:1"
},
"nodeType": "YulFunctionCall",
"src": "28609:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28583:6:1"
},
"nodeType": "YulFunctionCall",
"src": "28583:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "28583:47:1"
},
{
"nodeType": "YulAssignment",
"src": "28639:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28773:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_805f85071a50c2f8d510d5bdec0aef31245087ce416bc4fa6a7f8bda14e3686f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "28647:124:1"
},
"nodeType": "YulFunctionCall",
"src": "28647:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28639:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_805f85071a50c2f8d510d5bdec0aef31245087ce416bc4fa6a7f8bda14e3686f__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "28517:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "28532:4:1",
"type": ""
}
],
"src": "28366:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28897:128:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "28919:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28927:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28915:3:1"
},
"nodeType": "YulFunctionCall",
"src": "28915:14:1"
},
{
"hexValue": "546f6b656e5374616b696e673a20746f6b656e20616464726573732063616e6e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "28931:34:1",
"type": "",
"value": "TokenStaking: token address cann"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28908:6:1"
},
"nodeType": "YulFunctionCall",
"src": "28908:58:1"
},
"nodeType": "YulExpressionStatement",
"src": "28908:58:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "28987:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28995:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28983:3:1"
},
"nodeType": "YulFunctionCall",
"src": "28983:15:1"
},
{
"hexValue": "6f7420626520302061646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "29000:17:1",
"type": "",
"value": "ot be 0 address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28976:6:1"
},
"nodeType": "YulFunctionCall",
"src": "28976:42:1"
},
"nodeType": "YulExpressionStatement",
"src": "28976:42:1"
}
]
},
"name": "store_literal_in_memory_c8d56509c3e3f28bff7b984085a06ce1f2c2392b972b7137517627b7613343c0",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "28889:6:1",
"type": ""
}
],
"src": "28791:234:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29177:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "29187:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "29253:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29258:2:1",
"type": "",
"value": "47"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "29194:58:1"
},
"nodeType": "YulFunctionCall",
"src": "29194:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "29187:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "29359:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_c8d56509c3e3f28bff7b984085a06ce1f2c2392b972b7137517627b7613343c0",
"nodeType": "YulIdentifier",
"src": "29270:88:1"
},
"nodeType": "YulFunctionCall",
"src": "29270:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "29270:93:1"
},
{
"nodeType": "YulAssignment",
"src": "29372:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "29383:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29388:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29379:3:1"
},
"nodeType": "YulFunctionCall",
"src": "29379:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "29372:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_c8d56509c3e3f28bff7b984085a06ce1f2c2392b972b7137517627b7613343c0_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "29165:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "29173:3:1",
"type": ""
}
],
"src": "29031:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29574:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "29584:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29596:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29607:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29592:3:1"
},
"nodeType": "YulFunctionCall",
"src": "29592:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29584:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29631:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29642:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29627:3:1"
},
"nodeType": "YulFunctionCall",
"src": "29627:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29650:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "29656:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "29646:3:1"
},
"nodeType": "YulFunctionCall",
"src": "29646:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "29620:6:1"
},
"nodeType": "YulFunctionCall",
"src": "29620:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "29620:47:1"
},
{
"nodeType": "YulAssignment",
"src": "29676:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29810:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_c8d56509c3e3f28bff7b984085a06ce1f2c2392b972b7137517627b7613343c0_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "29684:124:1"
},
"nodeType": "YulFunctionCall",
"src": "29684:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "29676:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c8d56509c3e3f28bff7b984085a06ce1f2c2392b972b7137517627b7613343c0__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "29554:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "29569:4:1",
"type": ""
}
],
"src": "29403:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29934:132:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "29956:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29964:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29952:3:1"
},
"nodeType": "YulFunctionCall",
"src": "29952:14:1"
},
{
"hexValue": "546f6b656e5374616b696e673a2073746172742064617465206d757374206265",
"kind": "string",
"nodeType": "YulLiteral",
"src": "29968:34:1",
"type": "",
"value": "TokenStaking: start date must be"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "29945:6:1"
},
"nodeType": "YulFunctionCall",
"src": "29945:58:1"
},
"nodeType": "YulExpressionStatement",
"src": "29945:58:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "30024:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30032:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30020:3:1"
},
"nodeType": "YulFunctionCall",
"src": "30020:15:1"
},
{
"hexValue": "206c657373207468616e20656e642064617465",
"kind": "string",
"nodeType": "YulLiteral",
"src": "30037:21:1",
"type": "",
"value": " less than end date"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "30013:6:1"
},
"nodeType": "YulFunctionCall",
"src": "30013:46:1"
},
"nodeType": "YulExpressionStatement",
"src": "30013:46:1"
}
]
},
"name": "store_literal_in_memory_50a656effc38c7ed5392e361389130cea1a8dedc4be8f20b6d02b2b3d84c9f4f",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "29926:6:1",
"type": ""
}
],
"src": "29828:238:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30218:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "30228:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "30294:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30299:2:1",
"type": "",
"value": "51"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "30235:58:1"
},
"nodeType": "YulFunctionCall",
"src": "30235:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "30228:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "30400:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_50a656effc38c7ed5392e361389130cea1a8dedc4be8f20b6d02b2b3d84c9f4f",
"nodeType": "YulIdentifier",
"src": "30311:88:1"
},
"nodeType": "YulFunctionCall",
"src": "30311:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "30311:93:1"
},
{
"nodeType": "YulAssignment",
"src": "30413:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "30424:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30429:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30420:3:1"
},
"nodeType": "YulFunctionCall",
"src": "30420:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "30413:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_50a656effc38c7ed5392e361389130cea1a8dedc4be8f20b6d02b2b3d84c9f4f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "30206:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "30214:3:1",
"type": ""
}
],
"src": "30072:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30615:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "30625:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "30637:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30648:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30633:3:1"
},
"nodeType": "YulFunctionCall",
"src": "30633:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "30625:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "30672:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30683:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30668:3:1"
},
"nodeType": "YulFunctionCall",
"src": "30668:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "30691:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "30697:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "30687:3:1"
},
"nodeType": "YulFunctionCall",
"src": "30687:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "30661:6:1"
},
"nodeType": "YulFunctionCall",
"src": "30661:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "30661:47:1"
},
{
"nodeType": "YulAssignment",
"src": "30717:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "30851:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_50a656effc38c7ed5392e361389130cea1a8dedc4be8f20b6d02b2b3d84c9f4f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "30725:124:1"
},
"nodeType": "YulFunctionCall",
"src": "30725:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "30717:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_50a656effc38c7ed5392e361389130cea1a8dedc4be8f20b6d02b2b3d84c9f4f__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "30595:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "30610:4:1",
"type": ""
}
],
"src": "30444:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30975:75:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "30997:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31005:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30993:3:1"
},
"nodeType": "YulFunctionCall",
"src": "30993:14:1"
},
{
"hexValue": "546f6b656e5374616b696e673a207374616b696e6720697320706175736564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "31009:33:1",
"type": "",
"value": "TokenStaking: staking is paused"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "30986:6:1"
},
"nodeType": "YulFunctionCall",
"src": "30986:57:1"
},
"nodeType": "YulExpressionStatement",
"src": "30986:57:1"
}
]
},
"name": "store_literal_in_memory_a14dc5419c692ca55dedb33967ca3b67cf3c7ecf7dc0b1dac46aeaef4cde815d",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "30967:6:1",
"type": ""
}
],
"src": "30869:181:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31202:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "31212:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "31278:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31283:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "31219:58:1"
},
"nodeType": "YulFunctionCall",
"src": "31219:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "31212:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "31384:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_a14dc5419c692ca55dedb33967ca3b67cf3c7ecf7dc0b1dac46aeaef4cde815d",
"nodeType": "YulIdentifier",
"src": "31295:88:1"
},
"nodeType": "YulFunctionCall",
"src": "31295:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "31295:93:1"
},
{
"nodeType": "YulAssignment",
"src": "31397:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "31408:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31413:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31404:3:1"
},
"nodeType": "YulFunctionCall",
"src": "31404:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "31397:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_a14dc5419c692ca55dedb33967ca3b67cf3c7ecf7dc0b1dac46aeaef4cde815d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "31190:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "31198:3:1",
"type": ""
}
],
"src": "31056:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31599:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "31609:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "31621:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31632:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31617:3:1"
},
"nodeType": "YulFunctionCall",
"src": "31617:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "31609:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "31656:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31667:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31652:3:1"
},
"nodeType": "YulFunctionCall",
"src": "31652:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "31675:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "31681:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "31671:3:1"
},
"nodeType": "YulFunctionCall",
"src": "31671:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "31645:6:1"
},
"nodeType": "YulFunctionCall",
"src": "31645:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "31645:47:1"
},
{
"nodeType": "YulAssignment",
"src": "31701:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "31835:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_a14dc5419c692ca55dedb33967ca3b67cf3c7ecf7dc0b1dac46aeaef4cde815d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "31709:124:1"
},
"nodeType": "YulFunctionCall",
"src": "31709:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "31701:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_a14dc5419c692ca55dedb33967ca3b67cf3c7ecf7dc0b1dac46aeaef4cde815d__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "31579:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "31594:4:1",
"type": ""
}
],
"src": "31428:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31959:118:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "31981:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31989:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31977:3:1"
},
"nodeType": "YulFunctionCall",
"src": "31977:14:1"
},
{
"hexValue": "546f6b656e5374616b696e673a207374616b696e67206e6f7420737461727465",
"kind": "string",
"nodeType": "YulLiteral",
"src": "31993:34:1",
"type": "",
"value": "TokenStaking: staking not starte"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "31970:6:1"
},
"nodeType": "YulFunctionCall",
"src": "31970:58:1"
},
"nodeType": "YulExpressionStatement",
"src": "31970:58:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "32049:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32057:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32045:3:1"
},
"nodeType": "YulFunctionCall",
"src": "32045:15:1"
},
{
"hexValue": "6420796574",
"kind": "string",
"nodeType": "YulLiteral",
"src": "32062:7:1",
"type": "",
"value": "d yet"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "32038:6:1"
},
"nodeType": "YulFunctionCall",
"src": "32038:32:1"
},
"nodeType": "YulExpressionStatement",
"src": "32038:32:1"
}
]
},
"name": "store_literal_in_memory_9adf91574d6fefe524cba24f54cac04fb7b8f61fdcbd35a2f4664f9c899a65ce",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "31951:6:1",
"type": ""
}
],
"src": "31853:224:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "32229:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "32239:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "32305:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32310:2:1",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "32246:58:1"
},
"nodeType": "YulFunctionCall",
"src": "32246:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "32239:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "32411:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_9adf91574d6fefe524cba24f54cac04fb7b8f61fdcbd35a2f4664f9c899a65ce",
"nodeType": "YulIdentifier",
"src": "32322:88:1"
},
"nodeType": "YulFunctionCall",
"src": "32322:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "32322:93:1"
},
{
"nodeType": "YulAssignment",
"src": "32424:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "32435:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32440:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32431:3:1"
},
"nodeType": "YulFunctionCall",
"src": "32431:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "32424:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9adf91574d6fefe524cba24f54cac04fb7b8f61fdcbd35a2f4664f9c899a65ce_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "32217:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "32225:3:1",
"type": ""
}
],
"src": "32083:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "32626:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "32636:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "32648:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32659:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32644:3:1"
},
"nodeType": "YulFunctionCall",
"src": "32644:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "32636:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "32683:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32694:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32679:3:1"
},
"nodeType": "YulFunctionCall",
"src": "32679:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "32702:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "32708:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "32698:3:1"
},
"nodeType": "YulFunctionCall",
"src": "32698:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "32672:6:1"
},
"nodeType": "YulFunctionCall",
"src": "32672:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "32672:47:1"
},
{
"nodeType": "YulAssignment",
"src": "32728:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "32862:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9adf91574d6fefe524cba24f54cac04fb7b8f61fdcbd35a2f4664f9c899a65ce_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "32736:124:1"
},
"nodeType": "YulFunctionCall",
"src": "32736:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "32728:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9adf91574d6fefe524cba24f54cac04fb7b8f61fdcbd35a2f4664f9c899a65ce__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "32606:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "32621:4:1",
"type": ""
}
],
"src": "32455:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "32986:71:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "33008:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33016:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33004:3:1"
},
"nodeType": "YulFunctionCall",
"src": "33004:14:1"
},
{
"hexValue": "546f6b656e5374616b696e673a207374616b696e6720656e646564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "33020:29:1",
"type": "",
"value": "TokenStaking: staking ended"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "32997:6:1"
},
"nodeType": "YulFunctionCall",
"src": "32997:53:1"
},
"nodeType": "YulExpressionStatement",
"src": "32997:53:1"
}
]
},
"name": "store_literal_in_memory_5ae124b48da7423bc88987f4a41dc06d2e331c6892ce57377edb657aa2ba7cec",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "32978:6:1",
"type": ""
}
],
"src": "32880:177:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "33209:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "33219:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "33285:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33290:2:1",
"type": "",
"value": "27"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "33226:58:1"
},
"nodeType": "YulFunctionCall",
"src": "33226:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "33219:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "33391:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_5ae124b48da7423bc88987f4a41dc06d2e331c6892ce57377edb657aa2ba7cec",
"nodeType": "YulIdentifier",
"src": "33302:88:1"
},
"nodeType": "YulFunctionCall",
"src": "33302:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "33302:93:1"
},
{
"nodeType": "YulAssignment",
"src": "33404:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "33415:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33420:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33411:3:1"
},
"nodeType": "YulFunctionCall",
"src": "33411:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "33404:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_5ae124b48da7423bc88987f4a41dc06d2e331c6892ce57377edb657aa2ba7cec_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "33197:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "33205:3:1",
"type": ""
}
],
"src": "33063:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "33606:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "33616:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "33628:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33639:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33624:3:1"
},
"nodeType": "YulFunctionCall",
"src": "33624:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "33616:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "33663:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33674:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33659:3:1"
},
"nodeType": "YulFunctionCall",
"src": "33659:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "33682:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "33688:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "33678:3:1"
},
"nodeType": "YulFunctionCall",
"src": "33678:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "33652:6:1"
},
"nodeType": "YulFunctionCall",
"src": "33652:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "33652:47:1"
},
{
"nodeType": "YulAssignment",
"src": "33708:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "33842:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_5ae124b48da7423bc88987f4a41dc06d2e331c6892ce57377edb657aa2ba7cec_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "33716:124:1"
},
"nodeType": "YulFunctionCall",
"src": "33716:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "33708:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_5ae124b48da7423bc88987f4a41dc06d2e331c6892ce57377edb657aa2ba7cec__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "33586:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "33601:4:1",
"type": ""
}
],
"src": "33435:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "33966:126:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "33988:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33996:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33984:3:1"
},
"nodeType": "YulFunctionCall",
"src": "33984:14:1"
},
{
"hexValue": "546f6b656e5374616b696e673a206d6178207374616b696e6720746f6b656e20",
"kind": "string",
"nodeType": "YulLiteral",
"src": "34000:34:1",
"type": "",
"value": "TokenStaking: max staking token "
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "33977:6:1"
},
"nodeType": "YulFunctionCall",
"src": "33977:58:1"
},
"nodeType": "YulExpressionStatement",
"src": "33977:58:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "34056:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34064:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34052:3:1"
},
"nodeType": "YulFunctionCall",
"src": "34052:15:1"
},
{
"hexValue": "6c696d69742072656163686564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "34069:15:1",
"type": "",
"value": "limit reached"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "34045:6:1"
},
"nodeType": "YulFunctionCall",
"src": "34045:40:1"
},
"nodeType": "YulExpressionStatement",
"src": "34045:40:1"
}
]
},
"name": "store_literal_in_memory_1b9baf4497fc882d71f8c15dd2d3591d69edf681290e1893300feb18ea865464",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "33958:6:1",
"type": ""
}
],
"src": "33860:232:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "34244:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "34254:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "34320:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34325:2:1",
"type": "",
"value": "45"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "34261:58:1"
},
"nodeType": "YulFunctionCall",
"src": "34261:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "34254:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "34426:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_1b9baf4497fc882d71f8c15dd2d3591d69edf681290e1893300feb18ea865464",
"nodeType": "YulIdentifier",
"src": "34337:88:1"
},
"nodeType": "YulFunctionCall",
"src": "34337:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "34337:93:1"
},
{
"nodeType": "YulAssignment",
"src": "34439:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "34450:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34455:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34446:3:1"
},
"nodeType": "YulFunctionCall",
"src": "34446:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "34439:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_1b9baf4497fc882d71f8c15dd2d3591d69edf681290e1893300feb18ea865464_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "34232:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "34240:3:1",
"type": ""
}
],
"src": "34098:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "34641:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "34651:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "34663:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34674:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34659:3:1"
},
"nodeType": "YulFunctionCall",
"src": "34659:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "34651:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "34698:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34709:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34694:3:1"
},
"nodeType": "YulFunctionCall",
"src": "34694:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "34717:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "34723:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "34713:3:1"
},
"nodeType": "YulFunctionCall",
"src": "34713:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "34687:6:1"
},
"nodeType": "YulFunctionCall",
"src": "34687:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "34687:47:1"
},
{
"nodeType": "YulAssignment",
"src": "34743:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "34877:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_1b9baf4497fc882d71f8c15dd2d3591d69edf681290e1893300feb18ea865464_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "34751:124:1"
},
"nodeType": "YulFunctionCall",
"src": "34751:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "34743:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_1b9baf4497fc882d71f8c15dd2d3591d69edf681290e1893300feb18ea865464__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "34621:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "34636:4:1",
"type": ""
}
],
"src": "34470:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "35001:124:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "35023:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35031:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "35019:3:1"
},
"nodeType": "YulFunctionCall",
"src": "35019:14:1"
},
{
"hexValue": "546f6b656e5374616b696e673a207374616b6520616d6f756e74206d75737420",
"kind": "string",
"nodeType": "YulLiteral",
"src": "35035:34:1",
"type": "",
"value": "TokenStaking: stake amount must "
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "35012:6:1"
},
"nodeType": "YulFunctionCall",
"src": "35012:58:1"
},
"nodeType": "YulExpressionStatement",
"src": "35012:58:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "35091:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35099:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "35087:3:1"
},
"nodeType": "YulFunctionCall",
"src": "35087:15:1"
},
{
"hexValue": "6265206e6f6e2d7a65726f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "35104:13:1",
"type": "",
"value": "be non-zero"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "35080:6:1"
},
"nodeType": "YulFunctionCall",
"src": "35080:38:1"
},
"nodeType": "YulExpressionStatement",
"src": "35080:38:1"
}
]
},
"name": "store_literal_in_memory_e4ebf37f9471afb57393293ecebe10ae68ce3750fd77b6de0d1f052d38b97e78",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "34993:6:1",
"type": ""
}
],
"src": "34895:230:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "35277:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "35287:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "35353:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35358:2:1",
"type": "",
"value": "43"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "35294:58:1"
},
"nodeType": "YulFunctionCall",
"src": "35294:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "35287:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "35459:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_e4ebf37f9471afb57393293ecebe10ae68ce3750fd77b6de0d1f052d38b97e78",
"nodeType": "YulIdentifier",
"src": "35370:88:1"
},
"nodeType": "YulFunctionCall",
"src": "35370:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "35370:93:1"
},
{
"nodeType": "YulAssignment",
"src": "35472:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "35483:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35488:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "35479:3:1"
},
"nodeType": "YulFunctionCall",
"src": "35479:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "35472:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_e4ebf37f9471afb57393293ecebe10ae68ce3750fd77b6de0d1f052d38b97e78_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "35265:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "35273:3:1",
"type": ""
}
],
"src": "35131:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "35674:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "35684:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "35696:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35707:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "35692:3:1"
},
"nodeType": "YulFunctionCall",
"src": "35692:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "35684:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "35731:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35742:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "35727:3:1"
},
"nodeType": "YulFunctionCall",
"src": "35727:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "35750:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "35756:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "35746:3:1"
},
"nodeType": "YulFunctionCall",
"src": "35746:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "35720:6:1"
},
"nodeType": "YulFunctionCall",
"src": "35720:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "35720:47:1"
},
{
"nodeType": "YulAssignment",
"src": "35776:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "35910:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_e4ebf37f9471afb57393293ecebe10ae68ce3750fd77b6de0d1f052d38b97e78_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "35784:124:1"
},
"nodeType": "YulFunctionCall",
"src": "35784:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "35776:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_e4ebf37f9471afb57393293ecebe10ae68ce3750fd77b6de0d1f052d38b97e78__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "35654:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "35669:4:1",
"type": ""
}
],
"src": "35503:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "36034:185:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "36056:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36064:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "36052:3:1"
},
"nodeType": "YulFunctionCall",
"src": "36052:14:1"
},
{
"hexValue": "546f6b656e5374616b696e673a207374616b6520616d6f756e74206d75737420",
"kind": "string",
"nodeType": "YulLiteral",
"src": "36068:34:1",
"type": "",
"value": "TokenStaking: stake amount must "
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "36045:6:1"
},
"nodeType": "YulFunctionCall",
"src": "36045:58:1"
},
"nodeType": "YulExpressionStatement",
"src": "36045:58:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "36124:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36132:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "36120:3:1"
},
"nodeType": "YulFunctionCall",
"src": "36120:15:1"
},
{
"hexValue": "67726561746572207468616e206d696e696d756d20616d6f756e7420616c6c6f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "36137:34:1",
"type": "",
"value": "greater than minimum amount allo"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "36113:6:1"
},
"nodeType": "YulFunctionCall",
"src": "36113:59:1"
},
"nodeType": "YulExpressionStatement",
"src": "36113:59:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "36193:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36201:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "36189:3:1"
},
"nodeType": "YulFunctionCall",
"src": "36189:15:1"
},
{
"hexValue": "776564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "36206:5:1",
"type": "",
"value": "wed"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "36182:6:1"
},
"nodeType": "YulFunctionCall",
"src": "36182:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "36182:30:1"
}
]
},
"name": "store_literal_in_memory_77635a2e3ee8a789a611f365c0470d1037ff828553be9d5f601b7dc327f415cd",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "36026:6:1",
"type": ""
}
],
"src": "35928:291:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "36371:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "36381:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "36447:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36452:2:1",
"type": "",
"value": "67"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "36388:58:1"
},
"nodeType": "YulFunctionCall",
"src": "36388:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "36381:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "36553:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_77635a2e3ee8a789a611f365c0470d1037ff828553be9d5f601b7dc327f415cd",
"nodeType": "YulIdentifier",
"src": "36464:88:1"
},
"nodeType": "YulFunctionCall",
"src": "36464:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "36464:93:1"
},
{
"nodeType": "YulAssignment",
"src": "36566:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "36577:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36582:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "36573:3:1"
},
"nodeType": "YulFunctionCall",
"src": "36573:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "36566:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_77635a2e3ee8a789a611f365c0470d1037ff828553be9d5f601b7dc327f415cd_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "36359:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "36367:3:1",
"type": ""
}
],
"src": "36225:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "36768:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "36778:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "36790:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36801:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "36786:3:1"
},
"nodeType": "YulFunctionCall",
"src": "36786:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "36778:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "36825:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36836:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "36821:3:1"
},
"nodeType": "YulFunctionCall",
"src": "36821:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "36844:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "36850:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "36840:3:1"
},
"nodeType": "YulFunctionCall",
"src": "36840:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "36814:6:1"
},
"nodeType": "YulFunctionCall",
"src": "36814:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "36814:47:1"
},
{
"nodeType": "YulAssignment",
"src": "36870:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "37004:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_77635a2e3ee8a789a611f365c0470d1037ff828553be9d5f601b7dc327f415cd_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "36878:124:1"
},
"nodeType": "YulFunctionCall",
"src": "36878:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "36870:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_77635a2e3ee8a789a611f365c0470d1037ff828553be9d5f601b7dc327f415cd__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "36748:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "36763:4:1",
"type": ""
}
],
"src": "36597:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "37176:288:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "37186:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "37198:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37209:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "37194:3:1"
},
"nodeType": "YulFunctionCall",
"src": "37194:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "37186:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "37266:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "37279:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37290:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "37275:3:1"
},
"nodeType": "YulFunctionCall",
"src": "37275:17:1"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "37222:43:1"
},
"nodeType": "YulFunctionCall",
"src": "37222:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "37222:71:1"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "37347:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "37360:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37371:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "37356:3:1"
},
"nodeType": "YulFunctionCall",
"src": "37356:18:1"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "37303:43:1"
},
"nodeType": "YulFunctionCall",
"src": "37303:72:1"
},
"nodeType": "YulExpressionStatement",
"src": "37303:72:1"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "37429:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "37442:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37453:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "37438:3:1"
},
"nodeType": "YulFunctionCall",
"src": "37438:18:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "37385:43:1"
},
"nodeType": "YulFunctionCall",
"src": "37385:72:1"
},
"nodeType": "YulExpressionStatement",
"src": "37385:72:1"
}
]
},
"name": "abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "37132:9:1",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "37144:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "37152:6:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "37160:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "37171:4:1",
"type": ""
}
],
"src": "37022:442:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "37576:120:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "37598:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37606:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "37594:3:1"
},
"nodeType": "YulFunctionCall",
"src": "37594:14:1"
},
{
"hexValue": "546f6b656e5374616b696e673a206661696c656420746f207472616e73666572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "37610:34:1",
"type": "",
"value": "TokenStaking: failed to transfer"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "37587:6:1"
},
"nodeType": "YulFunctionCall",
"src": "37587:58:1"
},
"nodeType": "YulExpressionStatement",
"src": "37587:58:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "37666:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37674:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "37662:3:1"
},
"nodeType": "YulFunctionCall",
"src": "37662:15:1"
},
{
"hexValue": "20746f6b656e73",
"kind": "string",
"nodeType": "YulLiteral",
"src": "37679:9:1",
"type": "",
"value": " tokens"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "37655:6:1"
},
"nodeType": "YulFunctionCall",
"src": "37655:34:1"
},
"nodeType": "YulExpressionStatement",
"src": "37655:34:1"
}
]
},
"name": "store_literal_in_memory_fd2fae3d1c403100bad60c23d81ff206e99468e379ba9d5374bfb4ccc3cf35bb",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "37568:6:1",
"type": ""
}
],
"src": "37470:226:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "37848:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "37858:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "37924:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37929:2:1",
"type": "",
"value": "39"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "37865:58:1"
},
"nodeType": "YulFunctionCall",
"src": "37865:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "37858:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "38030:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_fd2fae3d1c403100bad60c23d81ff206e99468e379ba9d5374bfb4ccc3cf35bb",
"nodeType": "YulIdentifier",
"src": "37941:88:1"
},
"nodeType": "YulFunctionCall",
"src": "37941:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "37941:93:1"
},
{
"nodeType": "YulAssignment",
"src": "38043:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "38054:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38059:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "38050:3:1"
},
"nodeType": "YulFunctionCall",
"src": "38050:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "38043:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_fd2fae3d1c403100bad60c23d81ff206e99468e379ba9d5374bfb4ccc3cf35bb_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "37836:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "37844:3:1",
"type": ""
}
],
"src": "37702:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "38245:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "38255:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "38267:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38278:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "38263:3:1"
},
"nodeType": "YulFunctionCall",
"src": "38263:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "38255:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "38302:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38313:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "38298:3:1"
},
"nodeType": "YulFunctionCall",
"src": "38298:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "38321:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "38327:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "38317:3:1"
},
"nodeType": "YulFunctionCall",
"src": "38317:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "38291:6:1"
},
"nodeType": "YulFunctionCall",
"src": "38291:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "38291:47:1"
},
{
"nodeType": "YulAssignment",
"src": "38347:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "38481:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_fd2fae3d1c403100bad60c23d81ff206e99468e379ba9d5374bfb4ccc3cf35bb_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "38355:124:1"
},
"nodeType": "YulFunctionCall",
"src": "38355:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "38347:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_fd2fae3d1c403100bad60c23d81ff206e99468e379ba9d5374bfb4ccc3cf35bb__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "38225:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "38240:4:1",
"type": ""
}
],
"src": "38074:419:1"
}
]
},
"contents": "{\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() {\n revert(0, 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function finalize_allocation(memPtr, size) {\n let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function array_allocation_size_t_string_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function copy_calldata_to_memory(src, dst, length) {\n calldatacopy(dst, src, length)\n // clear end\n mstore(add(dst, length), 0)\n }\n\n function abi_decode_available_length_t_string_memory_ptr(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_string_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() }\n copy_calldata_to_memory(src, dst, length)\n }\n\n // string\n function abi_decode_t_string_memory_ptr(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := calldataload(offset)\n array := abi_decode_available_length_t_string_memory_ptr(add(offset, 0x20), length, end)\n }\n\n function abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint256t_uint256t_uint256t_uint256t_uint256t_string_memory_ptr(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5, value6, value7, value8, value9 {\n if slt(sub(dataEnd, headStart), 320) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 96\n\n value3 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 128\n\n value4 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 160\n\n value5 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 192\n\n value6 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 224\n\n value7 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 256\n\n value8 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 288))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value9 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function abi_encode_t_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bool_to_t_bool_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_t_uint256_to_t_uint256(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n // struct TokenStaking.User -> struct TokenStaking.User\n function abi_encode_t_struct$_User_$709_memory_ptr_to_t_struct$_User_$709_memory_ptr_fromStack(value, pos) {\n let tail := add(pos, 0xa0)\n\n {\n // stakeAmount\n\n let memberValue0 := mload(add(value, 0x00))\n abi_encode_t_uint256_to_t_uint256(memberValue0, add(pos, 0x00))\n }\n\n {\n // rewardAmount\n\n let memberValue0 := mload(add(value, 0x20))\n abi_encode_t_uint256_to_t_uint256(memberValue0, add(pos, 0x20))\n }\n\n {\n // lastStakeTime\n\n let memberValue0 := mload(add(value, 0x40))\n abi_encode_t_uint256_to_t_uint256(memberValue0, add(pos, 0x40))\n }\n\n {\n // lastRewardCalculationTime\n\n let memberValue0 := mload(add(value, 0x60))\n abi_encode_t_uint256_to_t_uint256(memberValue0, add(pos, 0x60))\n }\n\n {\n // rewardsClaimedSoFar\n\n let memberValue0 := mload(add(value, 0x80))\n abi_encode_t_uint256_to_t_uint256(memberValue0, add(pos, 0x80))\n }\n\n }\n\n function abi_encode_tuple_t_struct$_User_$709_memory_ptr__to_t_struct$_User_$709_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 160)\n\n abi_encode_t_struct$_User_$709_memory_ptr_to_t_struct$_User_$709_memory_ptr_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_decode_tuple_t_uint256t_address(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function copy_memory_to_memory(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n }\n\n function store_literal_in_memory_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619(memPtr) {\n\n mstore(add(memPtr, 0), \"ReentrancyGuard: reentrant call\")\n\n }\n\n function abi_encode_t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 31)\n store_literal_in_memory_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_decode_t_uint256_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_uint256_fromMemory(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function store_literal_in_memory_d18f8c365b308e6bf7e7b6622a0e8bb2a5fcce0f21dcc13822db1bfed7e4f7a0(memPtr) {\n\n mstore(add(memPtr, 0), \"TokenStaking: insufficient funds\")\n\n mstore(add(memPtr, 32), \" in the treasury\")\n\n }\n\n function abi_encode_t_stringliteral_d18f8c365b308e6bf7e7b6622a0e8bb2a5fcce0f21dcc13822db1bfed7e4f7a0_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 48)\n store_literal_in_memory_d18f8c365b308e6bf7e7b6622a0e8bb2a5fcce0f21dcc13822db1bfed7e4f7a0(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_d18f8c365b308e6bf7e7b6622a0e8bb2a5fcce0f21dcc13822db1bfed7e4f7a0__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_d18f8c365b308e6bf7e7b6622a0e8bb2a5fcce0f21dcc13822db1bfed7e4f7a0_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_9a850645f3ea435d2a05139d2eb5e494708329f366b16549802acf7b499484bf(memPtr) {\n\n mstore(add(memPtr, 0), \"TokenStaking: amount should be n\")\n\n mstore(add(memPtr, 32), \"on-zero\")\n\n }\n\n function abi_encode_t_stringliteral_9a850645f3ea435d2a05139d2eb5e494708329f366b16549802acf7b499484bf_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 39)\n store_literal_in_memory_9a850645f3ea435d2a05139d2eb5e494708329f366b16549802acf7b499484bf(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_9a850645f3ea435d2a05139d2eb5e494708329f366b16549802acf7b499484bf__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_9a850645f3ea435d2a05139d2eb5e494708329f366b16549802acf7b499484bf_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function validator_revert_t_bool(value) {\n if iszero(eq(value, cleanup_t_bool(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_bool_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_bool(value)\n }\n\n function abi_decode_tuple_t_bool_fromMemory(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bool_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function store_literal_in_memory_64b9ddea543a11a2649986aa34b4e58bfc64c5ec06929d2f7632ba13f54852a4(memPtr) {\n\n mstore(add(memPtr, 0), \"TokenStaking: not a stakeholder\")\n\n }\n\n function abi_encode_t_stringliteral_64b9ddea543a11a2649986aa34b4e58bfc64c5ec06929d2f7632ba13f54852a4_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 31)\n store_literal_in_memory_64b9ddea543a11a2649986aa34b4e58bfc64c5ec06929d2f7632ba13f54852a4(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_64b9ddea543a11a2649986aa34b4e58bfc64c5ec06929d2f7632ba13f54852a4__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_64b9ddea543a11a2649986aa34b4e58bfc64c5ec06929d2f7632ba13f54852a4_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_dfa3298fda01476f3e562a70f6361fdb473d99790bcacaa01fdd2c6faa3a4ac4(memPtr) {\n\n mstore(add(memPtr, 0), \"TokenStaking: not enough stake t\")\n\n mstore(add(memPtr, 32), \"o unstake\")\n\n }\n\n function abi_encode_t_stringliteral_dfa3298fda01476f3e562a70f6361fdb473d99790bcacaa01fdd2c6faa3a4ac4_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 41)\n store_literal_in_memory_dfa3298fda01476f3e562a70f6361fdb473d99790bcacaa01fdd2c6faa3a4ac4(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_dfa3298fda01476f3e562a70f6361fdb473d99790bcacaa01fdd2c6faa3a4ac4__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_dfa3298fda01476f3e562a70f6361fdb473d99790bcacaa01fdd2c6faa3a4ac4_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x > (maxValue - y)\n if gt(x, sub(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, y)) { panic_error_0x11() }\n\n sum := add(x, y)\n }\n\n function checked_mul_t_uint256(x, y) -> product {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x != 0 and y > (maxValue / x)\n if and(iszero(iszero(x)), gt(y, div(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, x))) { panic_error_0x11() }\n\n product := mul(x, y)\n }\n\n function panic_error_0x12() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x12)\n revert(0, 0x24)\n }\n\n function checked_div_t_uint256(x, y) -> r {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n if iszero(y) { panic_error_0x12() }\n\n r := div(x, y)\n }\n\n function checked_sub_t_uint256(x, y) -> diff {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n if lt(x, y) { panic_error_0x11() }\n\n diff := sub(x, y)\n }\n\n function abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed(headStart , value1, value0) -> tail {\n tail := add(headStart, 64)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value1, add(headStart, 32))\n\n }\n\n function store_literal_in_memory_7b3deea66482ba1e288f955d78a6490da1dd0d7e033fddee35422525c5499a6b(memPtr) {\n\n mstore(add(memPtr, 0), \"TokenStaking: failed to transfer\")\n\n }\n\n function abi_encode_t_stringliteral_7b3deea66482ba1e288f955d78a6490da1dd0d7e033fddee35422525c5499a6b_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 32)\n store_literal_in_memory_7b3deea66482ba1e288f955d78a6490da1dd0d7e033fddee35422525c5499a6b(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_7b3deea66482ba1e288f955d78a6490da1dd0d7e033fddee35422525c5499a6b__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_7b3deea66482ba1e288f955d78a6490da1dd0d7e033fddee35422525c5499a6b_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_26d63244211d841142e027f4a0e970ac0ebb34a3c1bc90815c102da708532ae7(memPtr) {\n\n mstore(add(memPtr, 0), \"TokenStaking: not enough withdra\")\n\n mstore(add(memPtr, 32), \"wable tokens\")\n\n }\n\n function abi_encode_t_stringliteral_26d63244211d841142e027f4a0e970ac0ebb34a3c1bc90815c102da708532ae7_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 44)\n store_literal_in_memory_26d63244211d841142e027f4a0e970ac0ebb34a3c1bc90815c102da708532ae7(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_26d63244211d841142e027f4a0e970ac0ebb34a3c1bc90815c102da708532ae7__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_26d63244211d841142e027f4a0e970ac0ebb34a3c1bc90815c102da708532ae7_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759(memPtr) {\n\n mstore(add(memPtr, 0), \"Initializable: contract is alrea\")\n\n mstore(add(memPtr, 32), \"dy initialized\")\n\n }\n\n function abi_encode_t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 46)\n store_literal_in_memory_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function cleanup_t_rational_1_by_1(value) -> cleaned {\n cleaned := value\n }\n\n function cleanup_t_uint8(value) -> cleaned {\n cleaned := and(value, 0xff)\n }\n\n function identity(value) -> ret {\n ret := value\n }\n\n function convert_t_rational_1_by_1_to_t_uint8(value) -> converted {\n converted := cleanup_t_uint8(identity(cleanup_t_rational_1_by_1(value)))\n }\n\n function abi_encode_t_rational_1_by_1_to_t_uint8_fromStack(value, pos) {\n mstore(pos, convert_t_rational_1_by_1_to_t_uint8(value))\n }\n\n function abi_encode_tuple_t_rational_1_by_1__to_t_uint8__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_rational_1_by_1_to_t_uint8_fromStack(value0, add(headStart, 0))\n\n }\n\n function store_literal_in_memory_c6a3cc6edbde3e4a551537018312e8b351804c0a111959292915e0c62b0256f4(memPtr) {\n\n mstore(add(memPtr, 0), \"TokenStaking: no reward to claim\")\n\n }\n\n function abi_encode_t_stringliteral_c6a3cc6edbde3e4a551537018312e8b351804c0a111959292915e0c62b0256f4_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 32)\n store_literal_in_memory_c6a3cc6edbde3e4a551537018312e8b351804c0a111959292915e0c62b0256f4(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_c6a3cc6edbde3e4a551537018312e8b351804c0a111959292915e0c62b0256f4__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_c6a3cc6edbde3e4a551537018312e8b351804c0a111959292915e0c62b0256f4_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe(memPtr) {\n\n mstore(add(memPtr, 0), \"Ownable: new owner is the zero a\")\n\n mstore(add(memPtr, 32), \"ddress\")\n\n }\n\n function abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 38)\n store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(memPtr) {\n\n mstore(add(memPtr, 0), \"Ownable: caller is not the owner\")\n\n }\n\n function abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 32)\n store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b(memPtr) {\n\n mstore(add(memPtr, 0), \"Initializable: contract is not i\")\n\n mstore(add(memPtr, 32), \"nitializing\")\n\n }\n\n function abi_encode_t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 43)\n store_literal_in_memory_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_a38c03dadc510bf16c291f38b976b6fbf62772b0d8fff36eadd6d676ecce8b1d(memPtr) {\n\n mstore(add(memPtr, 0), \"TokenStaking: apy rate should be\")\n\n mstore(add(memPtr, 32), \" less than 10000\")\n\n }\n\n function abi_encode_t_stringliteral_a38c03dadc510bf16c291f38b976b6fbf62772b0d8fff36eadd6d676ecce8b1d_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 48)\n store_literal_in_memory_a38c03dadc510bf16c291f38b976b6fbf62772b0d8fff36eadd6d676ecce8b1d(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_a38c03dadc510bf16c291f38b976b6fbf62772b0d8fff36eadd6d676ecce8b1d__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_a38c03dadc510bf16c291f38b976b6fbf62772b0d8fff36eadd6d676ecce8b1d_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_805f85071a50c2f8d510d5bdec0aef31245087ce416bc4fa6a7f8bda14e3686f(memPtr) {\n\n mstore(add(memPtr, 0), \"TokenStaking: stake days must be\")\n\n mstore(add(memPtr, 32), \" non-zero\")\n\n }\n\n function abi_encode_t_stringliteral_805f85071a50c2f8d510d5bdec0aef31245087ce416bc4fa6a7f8bda14e3686f_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 41)\n store_literal_in_memory_805f85071a50c2f8d510d5bdec0aef31245087ce416bc4fa6a7f8bda14e3686f(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_805f85071a50c2f8d510d5bdec0aef31245087ce416bc4fa6a7f8bda14e3686f__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_805f85071a50c2f8d510d5bdec0aef31245087ce416bc4fa6a7f8bda14e3686f_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_c8d56509c3e3f28bff7b984085a06ce1f2c2392b972b7137517627b7613343c0(memPtr) {\n\n mstore(add(memPtr, 0), \"TokenStaking: token address cann\")\n\n mstore(add(memPtr, 32), \"ot be 0 address\")\n\n }\n\n function abi_encode_t_stringliteral_c8d56509c3e3f28bff7b984085a06ce1f2c2392b972b7137517627b7613343c0_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 47)\n store_literal_in_memory_c8d56509c3e3f28bff7b984085a06ce1f2c2392b972b7137517627b7613343c0(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_c8d56509c3e3f28bff7b984085a06ce1f2c2392b972b7137517627b7613343c0__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_c8d56509c3e3f28bff7b984085a06ce1f2c2392b972b7137517627b7613343c0_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_50a656effc38c7ed5392e361389130cea1a8dedc4be8f20b6d02b2b3d84c9f4f(memPtr) {\n\n mstore(add(memPtr, 0), \"TokenStaking: start date must be\")\n\n mstore(add(memPtr, 32), \" less than end date\")\n\n }\n\n function abi_encode_t_stringliteral_50a656effc38c7ed5392e361389130cea1a8dedc4be8f20b6d02b2b3d84c9f4f_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 51)\n store_literal_in_memory_50a656effc38c7ed5392e361389130cea1a8dedc4be8f20b6d02b2b3d84c9f4f(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_50a656effc38c7ed5392e361389130cea1a8dedc4be8f20b6d02b2b3d84c9f4f__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_50a656effc38c7ed5392e361389130cea1a8dedc4be8f20b6d02b2b3d84c9f4f_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_a14dc5419c692ca55dedb33967ca3b67cf3c7ecf7dc0b1dac46aeaef4cde815d(memPtr) {\n\n mstore(add(memPtr, 0), \"TokenStaking: staking is paused\")\n\n }\n\n function abi_encode_t_stringliteral_a14dc5419c692ca55dedb33967ca3b67cf3c7ecf7dc0b1dac46aeaef4cde815d_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 31)\n store_literal_in_memory_a14dc5419c692ca55dedb33967ca3b67cf3c7ecf7dc0b1dac46aeaef4cde815d(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_a14dc5419c692ca55dedb33967ca3b67cf3c7ecf7dc0b1dac46aeaef4cde815d__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_a14dc5419c692ca55dedb33967ca3b67cf3c7ecf7dc0b1dac46aeaef4cde815d_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_9adf91574d6fefe524cba24f54cac04fb7b8f61fdcbd35a2f4664f9c899a65ce(memPtr) {\n\n mstore(add(memPtr, 0), \"TokenStaking: staking not starte\")\n\n mstore(add(memPtr, 32), \"d yet\")\n\n }\n\n function abi_encode_t_stringliteral_9adf91574d6fefe524cba24f54cac04fb7b8f61fdcbd35a2f4664f9c899a65ce_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n store_literal_in_memory_9adf91574d6fefe524cba24f54cac04fb7b8f61fdcbd35a2f4664f9c899a65ce(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_9adf91574d6fefe524cba24f54cac04fb7b8f61fdcbd35a2f4664f9c899a65ce__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_9adf91574d6fefe524cba24f54cac04fb7b8f61fdcbd35a2f4664f9c899a65ce_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_5ae124b48da7423bc88987f4a41dc06d2e331c6892ce57377edb657aa2ba7cec(memPtr) {\n\n mstore(add(memPtr, 0), \"TokenStaking: staking ended\")\n\n }\n\n function abi_encode_t_stringliteral_5ae124b48da7423bc88987f4a41dc06d2e331c6892ce57377edb657aa2ba7cec_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 27)\n store_literal_in_memory_5ae124b48da7423bc88987f4a41dc06d2e331c6892ce57377edb657aa2ba7cec(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_5ae124b48da7423bc88987f4a41dc06d2e331c6892ce57377edb657aa2ba7cec__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_5ae124b48da7423bc88987f4a41dc06d2e331c6892ce57377edb657aa2ba7cec_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_1b9baf4497fc882d71f8c15dd2d3591d69edf681290e1893300feb18ea865464(memPtr) {\n\n mstore(add(memPtr, 0), \"TokenStaking: max staking token \")\n\n mstore(add(memPtr, 32), \"limit reached\")\n\n }\n\n function abi_encode_t_stringliteral_1b9baf4497fc882d71f8c15dd2d3591d69edf681290e1893300feb18ea865464_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 45)\n store_literal_in_memory_1b9baf4497fc882d71f8c15dd2d3591d69edf681290e1893300feb18ea865464(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_1b9baf4497fc882d71f8c15dd2d3591d69edf681290e1893300feb18ea865464__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_1b9baf4497fc882d71f8c15dd2d3591d69edf681290e1893300feb18ea865464_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_e4ebf37f9471afb57393293ecebe10ae68ce3750fd77b6de0d1f052d38b97e78(memPtr) {\n\n mstore(add(memPtr, 0), \"TokenStaking: stake amount must \")\n\n mstore(add(memPtr, 32), \"be non-zero\")\n\n }\n\n function abi_encode_t_stringliteral_e4ebf37f9471afb57393293ecebe10ae68ce3750fd77b6de0d1f052d38b97e78_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 43)\n store_literal_in_memory_e4ebf37f9471afb57393293ecebe10ae68ce3750fd77b6de0d1f052d38b97e78(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_e4ebf37f9471afb57393293ecebe10ae68ce3750fd77b6de0d1f052d38b97e78__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_e4ebf37f9471afb57393293ecebe10ae68ce3750fd77b6de0d1f052d38b97e78_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_77635a2e3ee8a789a611f365c0470d1037ff828553be9d5f601b7dc327f415cd(memPtr) {\n\n mstore(add(memPtr, 0), \"TokenStaking: stake amount must \")\n\n mstore(add(memPtr, 32), \"greater than minimum amount allo\")\n\n mstore(add(memPtr, 64), \"wed\")\n\n }\n\n function abi_encode_t_stringliteral_77635a2e3ee8a789a611f365c0470d1037ff828553be9d5f601b7dc327f415cd_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 67)\n store_literal_in_memory_77635a2e3ee8a789a611f365c0470d1037ff828553be9d5f601b7dc327f415cd(pos)\n end := add(pos, 96)\n }\n\n function abi_encode_tuple_t_stringliteral_77635a2e3ee8a789a611f365c0470d1037ff828553be9d5f601b7dc327f415cd__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_77635a2e3ee8a789a611f365c0470d1037ff828553be9d5f601b7dc327f415cd_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed(headStart , value2, value1, value0) -> tail {\n tail := add(headStart, 96)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_address_to_t_address_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value2, add(headStart, 64))\n\n }\n\n function store_literal_in_memory_fd2fae3d1c403100bad60c23d81ff206e99468e379ba9d5374bfb4ccc3cf35bb(memPtr) {\n\n mstore(add(memPtr, 0), \"TokenStaking: failed to transfer\")\n\n mstore(add(memPtr, 32), \" tokens\")\n\n }\n\n function abi_encode_t_stringliteral_fd2fae3d1c403100bad60c23d81ff206e99468e379ba9d5374bfb4ccc3cf35bb_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 39)\n store_literal_in_memory_fd2fae3d1c403100bad60c23d81ff206e99468e379ba9d5374bfb4ccc3cf35bb(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_fd2fae3d1c403100bad60c23d81ff206e99468e379ba9d5374bfb4ccc3cf35bb__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_fd2fae3d1c403100bad60c23d81ff206e99468e379ba9d5374bfb4ccc3cf35bb_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106101e45760003560e01c80637bb9769d1161010f578063bb8febc6116100a2578063d2cbf7ad11610071578063d2cbf7ad146104e9578063f0116b7414610507578063f18cce7614610525578063f2fde38b14610543576101e4565b8063bb8febc614610485578063c5d62b18146104a3578063cab9b8fb146104ad578063cfa05301146104cb576101e4565b80639be572f6116100de5780639be572f614610423578063a694fc3a14610441578063b3cd42541461045d578063b88a802f1461047b576101e4565b80637bb9769d146103ad5780638585d138146103c95780638da5cb5b146103e757806390be10cc14610405576101e4565b80634d55b17811610187578063635121591161015657806363512159146103275780636f77926b1461035757806370607f5d14610387578063715018a6146103a3576101e4565b80634d55b178146102b157806351d18598146102cf57806355f0fe42146102ed5780635e39cd7514610309576101e4565b80632e1a7d4d116101c35780632e1a7d4d1461023f5780633192e8251461025b5780633e0935721461027757806342a2394514610293576101e4565b80628e3252146101e95780630c4ca4a6146102075780632e17de7814610223575b600080fd5b6101f161055f565b6040516101fe91906122d1565b60405180910390f35b610221600480360381019061021c919061232c565b610569565b005b61023d6004803603810190610238919061232c565b61057b565b005b6102596004803603810190610254919061232c565b610b53565b005b610275600480360381019061027091906124fd565b610d23565b005b610291600480360381019061028c919061232c565b610e7c565b005b61029b610e8e565b6040516102a891906122d1565b60405180910390f35b6102b9610e98565b6040516102c691906122d1565b60405180910390f35b6102d7610efb565b6040516102e491906122d1565b60405180910390f35b6103076004803603810190610302919061232c565b610f05565b005b610311610f17565b60405161031e91906122d1565b60405180910390f35b610341600480360381019061033c91906125f8565b610f21565b60405161034e9190612640565b60405180910390f35b610371600480360381019061036c91906125f8565b610f70565b60405161037e91906126d2565b60405180910390f35b6103a1600480360381019061039c91906126ed565b610ffb565b005b6103ab611066565b005b6103c760048036038101906103c2919061232c565b61107a565b005b6103d161108c565b6040516103de91906122d1565b60405180910390f35b6103ef611091565b6040516103fc919061273c565b60405180910390f35b61040d6110ba565b60405161041a91906122d1565b60405180910390f35b61042b611179565b60405161043891906122d1565b60405180910390f35b61045b6004803603810190610456919061232c565b611183565b005b6104656111e5565b60405161047291906122d1565b60405180910390f35b6104836111eb565b005b61048d6115e4565b60405161049a91906122d1565b60405180910390f35b6104ab6115ee565b005b6104b5611622565b6040516104c29190612640565b60405180910390f35b6104d3611639565b6040516104e091906127df565b60405180910390f35b6104f16116cb565b6040516104fe91906122d1565b60405180910390f35b61050f6116d5565b60405161051c91906122d1565b60405180910390f35b61052d6116df565b60405161053a91906122d1565b60405180910390f35b61055d600480360381019061055891906125f8565b6116e9565b005b6000600654905090565b61057161176d565b8060048190555050565b600260015414156105c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105b89061284d565b60405180910390fd5b60026001819055508080600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610626919061273c565b60206040518083038186803b15801561063e57600080fd5b505afa158015610652573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106769190612882565b10156106b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ae90612921565b60405180910390fd5b60003390506000831415610700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f7906129b3565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff166363512159826040518263ffffffff1660e01b8152600401610739919061273c565b60206040518083038186803b15801561075157600080fd5b505afa158015610765573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061078991906129ff565b6107c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107bf90612a78565b60405180910390fd5b82600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154101561084d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084490612b0a565b60405180910390fd5b610856816117eb565b6000600954600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201546108a89190612b59565b6108b06118a0565b1161092157612710600a54856108c69190612baf565b6108d09190612c38565b90508173ffffffffffffffffffffffffffffffffffffffff167f547c747d3878b7637a9d040b5479a58c43382aac8e5aa9a30a053c1a0cffb4f28260405161091891906122d1565b60405180910390a25b6000818561092f9190612c69565b905084600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282546109839190612c69565b92505081905550846007600082825461099c9190612c69565b925050819055506000600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001541415610a0957600160086000828254610a019190612c69565b925050819055505b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84836040518363ffffffff1660e01b8152600401610a66929190612c9d565b602060405180830381600087803b158015610a8057600080fd5b505af1158015610a94573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ab891906129ff565b610af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aee90612d12565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff167fb24546d975e2628748efc9aced80665e0fad66272033e5c0ea25fd3afac9979586604051610b3d91906122d1565b60405180910390a2505050506001808190555050565b610b5b61176d565b60026001541415610ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b989061284d565b60405180910390fd5b6002600181905550803073ffffffffffffffffffffffffffffffffffffffff166390be10cc6040518163ffffffff1660e01b815260040160206040518083038186803b158015610bf057600080fd5b505afa158015610c04573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c289190612882565b1015610c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6090612da4565b60405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610cc6929190612c9d565b602060405180830381600087803b158015610ce057600080fd5b505af1158015610cf4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d1891906129ff565b506001808190555050565b6000600260019054906101000a900460ff16159050808015610d5757506001600260009054906101000a900460ff1660ff16105b80610d865750610d66306118a8565b158015610d8557506001600260009054906101000a900460ff1660ff16145b5b610dc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbc90612e36565b60405180910390fd5b6001600260006101000a81548160ff021916908360ff1602179055508015610e03576001600260016101000a81548160ff0219169083151502179055505b610e158b8b8b8b8b8b8b8b8b8b6118cb565b8015610e6f576000600260016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024986001604051610e669190612ea8565b60405180910390a15b5050505050505050505050565b610e8461176d565b8060058190555050565b6000600354905090565b600080610ea433611b02565b50905080600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010154610ef59190612b59565b91505090565b6000600754905090565b610f0d61176d565b8060038190555050565b6000600a54905090565b600080600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015414159050919050565b610f786121e6565b600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060a0016040529081600082015481526020016001820154815260200160028201548152602001600382015481526020016004820154815250509050919050565b61100361176d565b60026001541415611049576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110409061284d565b60405180910390fd5b600260018190555061105b8282611ca6565b600180819055505050565b61106e61176d565b611078600061211a565b565b61108261176d565b80600a8190555050565b600a81565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600754600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161111a919061273c565b60206040518083038186803b15801561113257600080fd5b505afa158015611146573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061116a9190612882565b6111749190612c69565b905090565b6000600854905090565b600260015414156111c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c09061284d565b60405180910390fd5b60026001819055506111db8133611ca6565b6001808190555050565b61271081565b60026001541415611231576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112289061284d565b60405180910390fd5b6002600181905550600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015480600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016112d8919061273c565b60206040518083038186803b1580156112f057600080fd5b505afa158015611304573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113289190612882565b1015611369576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136090612921565b60405180910390fd5b611372336117eb565b6000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101549050600081116113fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f390612f0f565b60405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401611459929190612c9d565b602060405180830381600087803b15801561147357600080fd5b505af1158015611487573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114ab91906129ff565b6114ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e190612d12565b60405180910390fd5b6000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001018190555080600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060040160008282546115849190612b59565b925050819055503373ffffffffffffffffffffffffffffffffffffffff167fba8de60c3403ec381d1d484652ea1980e3c3e56359195c92525bff4ce47ad98e826040516115d191906122d1565b60405180910390a2505060018081905550565b6000600454905090565b6115f661176d565b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6000600b60009054906101000a900460ff16905090565b6060600c805461164890612f5e565b80601f016020809104026020016040519081016040528092919081815260200182805461167490612f5e565b80156116c15780601f10611696576101008083540402835291602001916116c1565b820191906000526020600020905b8154815290600101906020018083116116a457829003601f168201915b5050505050905090565b6000600e54905090565b6000600554905090565b6000600954905090565b6116f161176d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611761576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175890613002565b60405180910390fd5b61176a8161211a565b50565b6117756121de565b73ffffffffffffffffffffffffffffffffffffffff16611793611091565b73ffffffffffffffffffffffffffffffffffffffff16146117e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e09061306e565b60405180910390fd5b565b6000806117f783611b02565b9150915081600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101600082825461184d9190612b59565b9250508190555080600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030181905550505050565b600042905090565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600260019054906101000a900460ff1661191a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191190613100565b60405180910390fd5b612710600e541115611961576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195890613192565b60405180910390fd5b600083116119a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199b90613224565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff161415611a14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0b906132b6565b60405180910390fd5b838510611a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4d90613348565b60405180910390fd5b611a5f8a61211a565b88600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555087600e81905550866003819055508560048190555084600681905550836005819055506201518083611ad29190612baf565b60098190555081600a8190555080600c9080519060200190611af5929190612215565b5050505050505050505050565b600080600080600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206003015490506000611b576118a0565b9050600954600f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020154611ba99190612b59565b811115611c0357600954600f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020154611c009190612b59565b90505b60008282611c119190612c69565b90506127106301e13380600e54600f60008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015484611c6c9190612baf565b611c769190612baf565b611c809190612c38565b611c8a9190612c38565b84611c959190612b59565b935083829550955050505050915091565b600b60009054906101000a900460ff1615611cf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ced906133b4565b60405180910390fd5b6000611d006118a0565b90506006548111611d46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3d90613446565b60405180910390fd5b6005548110611d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d81906134b2565b60405180910390fd5b60045483600754611d9b9190612b59565b1115611ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd390613544565b60405180910390fd5b60008311611e1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e16906135d6565b60405180910390fd5b600354831015611e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5b9061368e565b60405180910390fd5b6000600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015414611ebc57611eb7826117eb565b611f1e565b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030181905550600160086000828254611f169190612b59565b925050819055505b82600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000016000828254611f709190612b59565b9250508190555080600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201819055508260076000828254611fd09190612b59565b92505081905550600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330866040518463ffffffff1660e01b8152600401612036939291906136ae565b602060405180830381600087803b15801561205057600080fd5b505af1158015612064573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061208891906129ff565b6120c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120be90613757565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff167febedb8b3c678666e7f36970bc8f57abf6d8fa2e828c0da91ea5b75bf68ed101a8460405161210d91906122d1565b60405180910390a2505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b6040518060a0016040528060008152602001600081526020016000815260200160008152602001600081525090565b82805461222190612f5e565b90600052602060002090601f016020900481019282612243576000855561228a565b82601f1061225c57805160ff191683800117855561228a565b8280016001018555821561228a579182015b8281111561228957825182559160200191906001019061226e565b5b509050612297919061229b565b5090565b5b808211156122b457600081600090555060010161229c565b5090565b6000819050919050565b6122cb816122b8565b82525050565b60006020820190506122e660008301846122c2565b92915050565b6000604051905090565b600080fd5b600080fd5b612309816122b8565b811461231457600080fd5b50565b60008135905061232681612300565b92915050565b600060208284031215612342576123416122f6565b5b600061235084828501612317565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061238482612359565b9050919050565b61239481612379565b811461239f57600080fd5b50565b6000813590506123b18161238b565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61240a826123c1565b810181811067ffffffffffffffff82111715612429576124286123d2565b5b80604052505050565b600061243c6122ec565b90506124488282612401565b919050565b600067ffffffffffffffff821115612468576124676123d2565b5b612471826123c1565b9050602081019050919050565b82818337600083830152505050565b60006124a061249b8461244d565b612432565b9050828152602081018484840111156124bc576124bb6123bc565b5b6124c784828561247e565b509392505050565b600082601f8301126124e4576124e36123b7565b5b81356124f484826020860161248d565b91505092915050565b6000806000806000806000806000806101408b8d031215612521576125206122f6565b5b600061252f8d828e016123a2565b9a505060206125408d828e016123a2565b99505060406125518d828e01612317565b98505060606125628d828e01612317565b97505060806125738d828e01612317565b96505060a06125848d828e01612317565b95505060c06125958d828e01612317565b94505060e06125a68d828e01612317565b9350506101006125b88d828e01612317565b9250506101208b013567ffffffffffffffff8111156125da576125d96122fb565b5b6125e68d828e016124cf565b9150509295989b9194979a5092959850565b60006020828403121561260e5761260d6122f6565b5b600061261c848285016123a2565b91505092915050565b60008115159050919050565b61263a81612625565b82525050565b60006020820190506126556000830184612631565b92915050565b612664816122b8565b82525050565b60a082016000820151612680600085018261265b565b506020820151612693602085018261265b565b5060408201516126a6604085018261265b565b5060608201516126b9606085018261265b565b5060808201516126cc608085018261265b565b50505050565b600060a0820190506126e7600083018461266a565b92915050565b60008060408385031215612704576127036122f6565b5b600061271285828601612317565b9250506020612723858286016123a2565b9150509250929050565b61273681612379565b82525050565b6000602082019050612751600083018461272d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612791578082015181840152602081019050612776565b838111156127a0576000848401525b50505050565b60006127b182612757565b6127bb8185612762565b93506127cb818560208601612773565b6127d4816123c1565b840191505092915050565b600060208201905081810360008301526127f981846127a6565b905092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612837601f83612762565b915061284282612801565b602082019050919050565b600060208201905081810360008301526128668161282a565b9050919050565b60008151905061287c81612300565b92915050565b600060208284031215612898576128976122f6565b5b60006128a68482850161286d565b91505092915050565b7f546f6b656e5374616b696e673a20696e73756666696369656e742066756e647360008201527f20696e2074686520747265617375727900000000000000000000000000000000602082015250565b600061290b603083612762565b9150612916826128af565b604082019050919050565b6000602082019050818103600083015261293a816128fe565b9050919050565b7f546f6b656e5374616b696e673a20616d6f756e742073686f756c64206265206e60008201527f6f6e2d7a65726f00000000000000000000000000000000000000000000000000602082015250565b600061299d602783612762565b91506129a882612941565b604082019050919050565b600060208201905081810360008301526129cc81612990565b9050919050565b6129dc81612625565b81146129e757600080fd5b50565b6000815190506129f9816129d3565b92915050565b600060208284031215612a1557612a146122f6565b5b6000612a23848285016129ea565b91505092915050565b7f546f6b656e5374616b696e673a206e6f742061207374616b65686f6c64657200600082015250565b6000612a62601f83612762565b9150612a6d82612a2c565b602082019050919050565b60006020820190508181036000830152612a9181612a55565b9050919050565b7f546f6b656e5374616b696e673a206e6f7420656e6f756768207374616b65207460008201527f6f20756e7374616b650000000000000000000000000000000000000000000000602082015250565b6000612af4602983612762565b9150612aff82612a98565b604082019050919050565b60006020820190508181036000830152612b2381612ae7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612b64826122b8565b9150612b6f836122b8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ba457612ba3612b2a565b5b828201905092915050565b6000612bba826122b8565b9150612bc5836122b8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612bfe57612bfd612b2a565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612c43826122b8565b9150612c4e836122b8565b925082612c5e57612c5d612c09565b5b828204905092915050565b6000612c74826122b8565b9150612c7f836122b8565b925082821015612c9257612c91612b2a565b5b828203905092915050565b6000604082019050612cb2600083018561272d565b612cbf60208301846122c2565b9392505050565b7f546f6b656e5374616b696e673a206661696c656420746f207472616e73666572600082015250565b6000612cfc602083612762565b9150612d0782612cc6565b602082019050919050565b60006020820190508181036000830152612d2b81612cef565b9050919050565b7f546f6b656e5374616b696e673a206e6f7420656e6f756768207769746864726160008201527f7761626c6520746f6b656e730000000000000000000000000000000000000000602082015250565b6000612d8e602c83612762565b9150612d9982612d32565b604082019050919050565b60006020820190508181036000830152612dbd81612d81565b9050919050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b6000612e20602e83612762565b9150612e2b82612dc4565b604082019050919050565b60006020820190508181036000830152612e4f81612e13565b9050919050565b6000819050919050565b600060ff82169050919050565b6000819050919050565b6000612e92612e8d612e8884612e56565b612e6d565b612e60565b9050919050565b612ea281612e77565b82525050565b6000602082019050612ebd6000830184612e99565b92915050565b7f546f6b656e5374616b696e673a206e6f2072657761726420746f20636c61696d600082015250565b6000612ef9602083612762565b9150612f0482612ec3565b602082019050919050565b60006020820190508181036000830152612f2881612eec565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612f7657607f821691505b60208210811415612f8a57612f89612f2f565b5b50919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612fec602683612762565b9150612ff782612f90565b604082019050919050565b6000602082019050818103600083015261301b81612fdf565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613058602083612762565b915061306382613022565b602082019050919050565b600060208201905081810360008301526130878161304b565b9050919050565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960008201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b60006130ea602b83612762565b91506130f58261308e565b604082019050919050565b60006020820190508181036000830152613119816130dd565b9050919050565b7f546f6b656e5374616b696e673a2061707920726174652073686f756c6420626560008201527f206c657373207468616e20313030303000000000000000000000000000000000602082015250565b600061317c603083612762565b915061318782613120565b604082019050919050565b600060208201905081810360008301526131ab8161316f565b9050919050565b7f546f6b656e5374616b696e673a207374616b652064617973206d75737420626560008201527f206e6f6e2d7a65726f0000000000000000000000000000000000000000000000602082015250565b600061320e602983612762565b9150613219826131b2565b604082019050919050565b6000602082019050818103600083015261323d81613201565b9050919050565b7f546f6b656e5374616b696e673a20746f6b656e20616464726573732063616e6e60008201527f6f74206265203020616464726573730000000000000000000000000000000000602082015250565b60006132a0602f83612762565b91506132ab82613244565b604082019050919050565b600060208201905081810360008301526132cf81613293565b9050919050565b7f546f6b656e5374616b696e673a2073746172742064617465206d75737420626560008201527f206c657373207468616e20656e64206461746500000000000000000000000000602082015250565b6000613332603383612762565b915061333d826132d6565b604082019050919050565b6000602082019050818103600083015261336181613325565b9050919050565b7f546f6b656e5374616b696e673a207374616b696e672069732070617573656400600082015250565b600061339e601f83612762565b91506133a982613368565b602082019050919050565b600060208201905081810360008301526133cd81613391565b9050919050565b7f546f6b656e5374616b696e673a207374616b696e67206e6f742073746172746560008201527f6420796574000000000000000000000000000000000000000000000000000000602082015250565b6000613430602583612762565b915061343b826133d4565b604082019050919050565b6000602082019050818103600083015261345f81613423565b9050919050565b7f546f6b656e5374616b696e673a207374616b696e6720656e6465640000000000600082015250565b600061349c601b83612762565b91506134a782613466565b602082019050919050565b600060208201905081810360008301526134cb8161348f565b9050919050565b7f546f6b656e5374616b696e673a206d6178207374616b696e6720746f6b656e2060008201527f6c696d6974207265616368656400000000000000000000000000000000000000602082015250565b600061352e602d83612762565b9150613539826134d2565b604082019050919050565b6000602082019050818103600083015261355d81613521565b9050919050565b7f546f6b656e5374616b696e673a207374616b6520616d6f756e74206d7573742060008201527f6265206e6f6e2d7a65726f000000000000000000000000000000000000000000602082015250565b60006135c0602b83612762565b91506135cb82613564565b604082019050919050565b600060208201905081810360008301526135ef816135b3565b9050919050565b7f546f6b656e5374616b696e673a207374616b6520616d6f756e74206d7573742060008201527f67726561746572207468616e206d696e696d756d20616d6f756e7420616c6c6f60208201527f7765640000000000000000000000000000000000000000000000000000000000604082015250565b6000613678604383612762565b9150613683826135f6565b606082019050919050565b600060208201905081810360008301526136a78161366b565b9050919050565b60006060820190506136c3600083018661272d565b6136d0602083018561272d565b6136dd60408301846122c2565b949350505050565b7f546f6b656e5374616b696e673a206661696c656420746f207472616e7366657260008201527f20746f6b656e7300000000000000000000000000000000000000000000000000602082015250565b6000613741602783612762565b915061374c826136e5565b604082019050919050565b6000602082019050818103600083015261377081613734565b905091905056fea2646970667358221220d50081d75cdc170498262ddf7d3be7c9446fa03ed55265e2bf0d2591e5270f2c64736f6c63430008090033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x1E4 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x7BB9769D GT PUSH2 0x10F JUMPI DUP1 PUSH4 0xBB8FEBC6 GT PUSH2 0xA2 JUMPI DUP1 PUSH4 0xD2CBF7AD GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xD2CBF7AD EQ PUSH2 0x4E9 JUMPI DUP1 PUSH4 0xF0116B74 EQ PUSH2 0x507 JUMPI DUP1 PUSH4 0xF18CCE76 EQ PUSH2 0x525 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x543 JUMPI PUSH2 0x1E4 JUMP JUMPDEST DUP1 PUSH4 0xBB8FEBC6 EQ PUSH2 0x485 JUMPI DUP1 PUSH4 0xC5D62B18 EQ PUSH2 0x4A3 JUMPI DUP1 PUSH4 0xCAB9B8FB EQ PUSH2 0x4AD JUMPI DUP1 PUSH4 0xCFA05301 EQ PUSH2 0x4CB JUMPI PUSH2 0x1E4 JUMP JUMPDEST DUP1 PUSH4 0x9BE572F6 GT PUSH2 0xDE JUMPI DUP1 PUSH4 0x9BE572F6 EQ PUSH2 0x423 JUMPI DUP1 PUSH4 0xA694FC3A EQ PUSH2 0x441 JUMPI DUP1 PUSH4 0xB3CD4254 EQ PUSH2 0x45D JUMPI DUP1 PUSH4 0xB88A802F EQ PUSH2 0x47B JUMPI PUSH2 0x1E4 JUMP JUMPDEST DUP1 PUSH4 0x7BB9769D EQ PUSH2 0x3AD JUMPI DUP1 PUSH4 0x8585D138 EQ PUSH2 0x3C9 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x3E7 JUMPI DUP1 PUSH4 0x90BE10CC EQ PUSH2 0x405 JUMPI PUSH2 0x1E4 JUMP JUMPDEST DUP1 PUSH4 0x4D55B178 GT PUSH2 0x187 JUMPI DUP1 PUSH4 0x63512159 GT PUSH2 0x156 JUMPI DUP1 PUSH4 0x63512159 EQ PUSH2 0x327 JUMPI DUP1 PUSH4 0x6F77926B EQ PUSH2 0x357 JUMPI DUP1 PUSH4 0x70607F5D EQ PUSH2 0x387 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x3A3 JUMPI PUSH2 0x1E4 JUMP JUMPDEST DUP1 PUSH4 0x4D55B178 EQ PUSH2 0x2B1 JUMPI DUP1 PUSH4 0x51D18598 EQ PUSH2 0x2CF JUMPI DUP1 PUSH4 0x55F0FE42 EQ PUSH2 0x2ED JUMPI DUP1 PUSH4 0x5E39CD75 EQ PUSH2 0x309 JUMPI PUSH2 0x1E4 JUMP JUMPDEST DUP1 PUSH4 0x2E1A7D4D GT PUSH2 0x1C3 JUMPI DUP1 PUSH4 0x2E1A7D4D EQ PUSH2 0x23F JUMPI DUP1 PUSH4 0x3192E825 EQ PUSH2 0x25B JUMPI DUP1 PUSH4 0x3E093572 EQ PUSH2 0x277 JUMPI DUP1 PUSH4 0x42A23945 EQ PUSH2 0x293 JUMPI PUSH2 0x1E4 JUMP JUMPDEST DUP1 PUSH3 0x8E3252 EQ PUSH2 0x1E9 JUMPI DUP1 PUSH4 0xC4CA4A6 EQ PUSH2 0x207 JUMPI DUP1 PUSH4 0x2E17DE78 EQ PUSH2 0x223 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1F1 PUSH2 0x55F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1FE SWAP2 SWAP1 PUSH2 0x22D1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x221 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x21C SWAP2 SWAP1 PUSH2 0x232C JUMP JUMPDEST PUSH2 0x569 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x23D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x238 SWAP2 SWAP1 PUSH2 0x232C JUMP JUMPDEST PUSH2 0x57B JUMP JUMPDEST STOP JUMPDEST PUSH2 0x259 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x254 SWAP2 SWAP1 PUSH2 0x232C JUMP JUMPDEST PUSH2 0xB53 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x275 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x270 SWAP2 SWAP1 PUSH2 0x24FD JUMP JUMPDEST PUSH2 0xD23 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x291 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x28C SWAP2 SWAP1 PUSH2 0x232C JUMP JUMPDEST PUSH2 0xE7C JUMP JUMPDEST STOP JUMPDEST PUSH2 0x29B PUSH2 0xE8E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2A8 SWAP2 SWAP1 PUSH2 0x22D1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2B9 PUSH2 0xE98 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2C6 SWAP2 SWAP1 PUSH2 0x22D1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2D7 PUSH2 0xEFB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2E4 SWAP2 SWAP1 PUSH2 0x22D1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x307 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x302 SWAP2 SWAP1 PUSH2 0x232C JUMP JUMPDEST PUSH2 0xF05 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x311 PUSH2 0xF17 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x31E SWAP2 SWAP1 PUSH2 0x22D1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x341 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x33C SWAP2 SWAP1 PUSH2 0x25F8 JUMP JUMPDEST PUSH2 0xF21 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x34E SWAP2 SWAP1 PUSH2 0x2640 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x371 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x36C SWAP2 SWAP1 PUSH2 0x25F8 JUMP JUMPDEST PUSH2 0xF70 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x37E SWAP2 SWAP1 PUSH2 0x26D2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3A1 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x39C SWAP2 SWAP1 PUSH2 0x26ED JUMP JUMPDEST PUSH2 0xFFB JUMP JUMPDEST STOP JUMPDEST PUSH2 0x3AB PUSH2 0x1066 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x3C7 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3C2 SWAP2 SWAP1 PUSH2 0x232C JUMP JUMPDEST PUSH2 0x107A JUMP JUMPDEST STOP JUMPDEST PUSH2 0x3D1 PUSH2 0x108C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3DE SWAP2 SWAP1 PUSH2 0x22D1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3EF PUSH2 0x1091 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3FC SWAP2 SWAP1 PUSH2 0x273C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x40D PUSH2 0x10BA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x41A SWAP2 SWAP1 PUSH2 0x22D1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x42B PUSH2 0x1179 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x438 SWAP2 SWAP1 PUSH2 0x22D1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x45B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x456 SWAP2 SWAP1 PUSH2 0x232C JUMP JUMPDEST PUSH2 0x1183 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x465 PUSH2 0x11E5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x472 SWAP2 SWAP1 PUSH2 0x22D1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x483 PUSH2 0x11EB JUMP JUMPDEST STOP JUMPDEST PUSH2 0x48D PUSH2 0x15E4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x49A SWAP2 SWAP1 PUSH2 0x22D1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x4AB PUSH2 0x15EE JUMP JUMPDEST STOP JUMPDEST PUSH2 0x4B5 PUSH2 0x1622 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4C2 SWAP2 SWAP1 PUSH2 0x2640 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x4D3 PUSH2 0x1639 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4E0 SWAP2 SWAP1 PUSH2 0x27DF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x4F1 PUSH2 0x16CB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4FE SWAP2 SWAP1 PUSH2 0x22D1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x50F PUSH2 0x16D5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x51C SWAP2 SWAP1 PUSH2 0x22D1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x52D PUSH2 0x16DF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x53A SWAP2 SWAP1 PUSH2 0x22D1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x55D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x558 SWAP2 SWAP1 PUSH2 0x25F8 JUMP JUMPDEST PUSH2 0x16E9 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 PUSH1 0x6 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x571 PUSH2 0x176D JUMP JUMPDEST DUP1 PUSH1 0x4 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x2 PUSH1 0x1 SLOAD EQ ISZERO PUSH2 0x5C1 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5B8 SWAP1 PUSH2 0x284D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 PUSH1 0x1 DUP2 SWAP1 SSTORE POP DUP1 DUP1 PUSH1 0xD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x70A08231 ADDRESS PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x626 SWAP2 SWAP1 PUSH2 0x273C JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x63E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x652 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x676 SWAP2 SWAP1 PUSH2 0x2882 JUMP JUMPDEST LT ISZERO PUSH2 0x6B7 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6AE SWAP1 PUSH2 0x2921 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 CALLER SWAP1 POP PUSH1 0x0 DUP4 EQ ISZERO PUSH2 0x700 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6F7 SWAP1 PUSH2 0x29B3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST ADDRESS PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x63512159 DUP3 PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x739 SWAP2 SWAP1 PUSH2 0x273C JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x751 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x765 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x789 SWAP2 SWAP1 PUSH2 0x29FF JUMP JUMPDEST PUSH2 0x7C8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7BF SWAP1 PUSH2 0x2A78 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP3 PUSH1 0xF PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD SLOAD LT ISZERO PUSH2 0x84D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x844 SWAP1 PUSH2 0x2B0A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x856 DUP2 PUSH2 0x17EB JUMP JUMPDEST PUSH1 0x0 PUSH1 0x9 SLOAD PUSH1 0xF PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x2 ADD SLOAD PUSH2 0x8A8 SWAP2 SWAP1 PUSH2 0x2B59 JUMP JUMPDEST PUSH2 0x8B0 PUSH2 0x18A0 JUMP JUMPDEST GT PUSH2 0x921 JUMPI PUSH2 0x2710 PUSH1 0xA SLOAD DUP6 PUSH2 0x8C6 SWAP2 SWAP1 PUSH2 0x2BAF JUMP JUMPDEST PUSH2 0x8D0 SWAP2 SWAP1 PUSH2 0x2C38 JUMP JUMPDEST SWAP1 POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x547C747D3878B7637A9D040B5479A58C43382AAC8E5AA9A30A053C1A0CFFB4F2 DUP3 PUSH1 0x40 MLOAD PUSH2 0x918 SWAP2 SWAP1 PUSH2 0x22D1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 JUMPDEST PUSH1 0x0 DUP2 DUP6 PUSH2 0x92F SWAP2 SWAP1 PUSH2 0x2C69 JUMP JUMPDEST SWAP1 POP DUP5 PUSH1 0xF PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x983 SWAP2 SWAP1 PUSH2 0x2C69 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP5 PUSH1 0x7 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x99C SWAP2 SWAP1 PUSH2 0x2C69 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x0 PUSH1 0xF PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD SLOAD EQ ISZERO PUSH2 0xA09 JUMPI PUSH1 0x1 PUSH1 0x8 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0xA01 SWAP2 SWAP1 PUSH2 0x2C69 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP JUMPDEST PUSH1 0xD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB DUP5 DUP4 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA66 SWAP3 SWAP2 SWAP1 PUSH2 0x2C9D JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xA80 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xA94 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xAB8 SWAP2 SWAP1 PUSH2 0x29FF JUMP JUMPDEST PUSH2 0xAF7 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAEE SWAP1 PUSH2 0x2D12 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xB24546D975E2628748EFC9ACED80665E0FAD66272033E5C0EA25FD3AFAC99795 DUP7 PUSH1 0x40 MLOAD PUSH2 0xB3D SWAP2 SWAP1 PUSH2 0x22D1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP PUSH1 0x1 DUP1 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH2 0xB5B PUSH2 0x176D JUMP JUMPDEST PUSH1 0x2 PUSH1 0x1 SLOAD EQ ISZERO PUSH2 0xBA1 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB98 SWAP1 PUSH2 0x284D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 PUSH1 0x1 DUP2 SWAP1 SSTORE POP DUP1 ADDRESS PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x90BE10CC PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xBF0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xC04 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xC28 SWAP2 SWAP1 PUSH2 0x2882 JUMP JUMPDEST LT ISZERO PUSH2 0xC69 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC60 SWAP1 PUSH2 0x2DA4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0xD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB CALLER DUP4 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xCC6 SWAP3 SWAP2 SWAP1 PUSH2 0x2C9D JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xCE0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xCF4 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xD18 SWAP2 SWAP1 PUSH2 0x29FF JUMP JUMPDEST POP PUSH1 0x1 DUP1 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0xD57 JUMPI POP PUSH1 0x1 PUSH1 0x2 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH1 0xFF AND LT JUMPDEST DUP1 PUSH2 0xD86 JUMPI POP PUSH2 0xD66 ADDRESS PUSH2 0x18A8 JUMP JUMPDEST ISZERO DUP1 ISZERO PUSH2 0xD85 JUMPI POP PUSH1 0x1 PUSH1 0x2 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH1 0xFF AND EQ JUMPDEST JUMPDEST PUSH2 0xDC5 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDBC SWAP1 PUSH2 0x2E36 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x2 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0xFF AND MUL OR SWAP1 SSTORE POP DUP1 ISZERO PUSH2 0xE03 JUMPI PUSH1 0x1 PUSH1 0x2 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP JUMPDEST PUSH2 0xE15 DUP12 DUP12 DUP12 DUP12 DUP12 DUP12 DUP12 DUP12 DUP12 DUP12 PUSH2 0x18CB JUMP JUMPDEST DUP1 ISZERO PUSH2 0xE6F JUMPI PUSH1 0x0 PUSH1 0x2 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x7F26B83FF96E1F2B6A682F133852F6798A09C465DA95921460CEFB3847402498 PUSH1 0x1 PUSH1 0x40 MLOAD PUSH2 0xE66 SWAP2 SWAP1 PUSH2 0x2EA8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0xE84 PUSH2 0x176D JUMP JUMPDEST DUP1 PUSH1 0x5 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x3 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0xEA4 CALLER PUSH2 0x1B02 JUMP JUMPDEST POP SWAP1 POP DUP1 PUSH1 0xF PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH2 0xEF5 SWAP2 SWAP1 PUSH2 0x2B59 JUMP JUMPDEST SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x7 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0xF0D PUSH2 0x176D JUMP JUMPDEST DUP1 PUSH1 0x3 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0xF PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD SLOAD EQ ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xF78 PUSH2 0x21E6 JUMP JUMPDEST PUSH1 0xF PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0xA0 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x4 DUP3 ADD SLOAD DUP2 MSTORE POP POP SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1003 PUSH2 0x176D JUMP JUMPDEST PUSH1 0x2 PUSH1 0x1 SLOAD EQ ISZERO PUSH2 0x1049 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1040 SWAP1 PUSH2 0x284D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 PUSH1 0x1 DUP2 SWAP1 SSTORE POP PUSH2 0x105B DUP3 DUP3 PUSH2 0x1CA6 JUMP JUMPDEST PUSH1 0x1 DUP1 DUP2 SWAP1 SSTORE POP POP POP JUMP JUMPDEST PUSH2 0x106E PUSH2 0x176D JUMP JUMPDEST PUSH2 0x1078 PUSH1 0x0 PUSH2 0x211A JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x1082 PUSH2 0x176D JUMP JUMPDEST DUP1 PUSH1 0xA DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0xA DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x7 SLOAD PUSH1 0xD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x70A08231 ADDRESS PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x111A SWAP2 SWAP1 PUSH2 0x273C JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1132 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1146 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x116A SWAP2 SWAP1 PUSH2 0x2882 JUMP JUMPDEST PUSH2 0x1174 SWAP2 SWAP1 PUSH2 0x2C69 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x8 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x2 PUSH1 0x1 SLOAD EQ ISZERO PUSH2 0x11C9 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x11C0 SWAP1 PUSH2 0x284D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 PUSH1 0x1 DUP2 SWAP1 SSTORE POP PUSH2 0x11DB DUP2 CALLER PUSH2 0x1CA6 JUMP JUMPDEST PUSH1 0x1 DUP1 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH2 0x2710 DUP2 JUMP JUMPDEST PUSH1 0x2 PUSH1 0x1 SLOAD EQ ISZERO PUSH2 0x1231 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1228 SWAP1 PUSH2 0x284D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 PUSH1 0x1 DUP2 SWAP1 SSTORE POP PUSH1 0xF PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x1 ADD SLOAD DUP1 PUSH1 0xD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x70A08231 ADDRESS PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x12D8 SWAP2 SWAP1 PUSH2 0x273C JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x12F0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1304 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1328 SWAP2 SWAP1 PUSH2 0x2882 JUMP JUMPDEST LT ISZERO PUSH2 0x1369 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1360 SWAP1 PUSH2 0x2921 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1372 CALLER PUSH2 0x17EB JUMP JUMPDEST PUSH1 0x0 PUSH1 0xF PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x1 ADD SLOAD SWAP1 POP PUSH1 0x0 DUP2 GT PUSH2 0x13FC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x13F3 SWAP1 PUSH2 0x2F0F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0xD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB CALLER DUP4 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1459 SWAP3 SWAP2 SWAP1 PUSH2 0x2C9D JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1473 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1487 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x14AB SWAP2 SWAP1 PUSH2 0x29FF JUMP JUMPDEST PUSH2 0x14EA JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x14E1 SWAP1 PUSH2 0x2D12 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0xF PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x1 ADD DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0xF PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x4 ADD PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1584 SWAP2 SWAP1 PUSH2 0x2B59 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xBA8DE60C3403EC381D1D484652EA1980E3C3E56359195C92525BFF4CE47AD98E DUP3 PUSH1 0x40 MLOAD PUSH2 0x15D1 SWAP2 SWAP1 PUSH2 0x22D1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP PUSH1 0x1 DUP1 DUP2 SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x4 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x15F6 PUSH2 0x176D JUMP JUMPDEST PUSH1 0xB PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH1 0xB PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xB PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0xC DUP1 SLOAD PUSH2 0x1648 SWAP1 PUSH2 0x2F5E JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x1674 SWAP1 PUSH2 0x2F5E JUMP JUMPDEST DUP1 ISZERO PUSH2 0x16C1 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x1696 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x16C1 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x16A4 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0xE SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x9 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x16F1 PUSH2 0x176D JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x1761 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1758 SWAP1 PUSH2 0x3002 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x176A DUP2 PUSH2 0x211A JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x1775 PUSH2 0x21DE JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1793 PUSH2 0x1091 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x17E9 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x17E0 SWAP1 PUSH2 0x306E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x17F7 DUP4 PUSH2 0x1B02 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH1 0xF PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x1 ADD PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x184D SWAP2 SWAP1 PUSH2 0x2B59 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0xF PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x3 ADD DUP2 SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 TIMESTAMP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EXTCODESIZE GT SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x2 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x191A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1911 SWAP1 PUSH2 0x3100 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x2710 PUSH1 0xE SLOAD GT ISZERO PUSH2 0x1961 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1958 SWAP1 PUSH2 0x3192 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP4 GT PUSH2 0x19A4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x199B SWAP1 PUSH2 0x3224 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP10 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x1A14 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1A0B SWAP1 PUSH2 0x32B6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP4 DUP6 LT PUSH2 0x1A56 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1A4D SWAP1 PUSH2 0x3348 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1A5F DUP11 PUSH2 0x211A JUMP JUMPDEST DUP9 PUSH1 0xD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP8 PUSH1 0xE DUP2 SWAP1 SSTORE POP DUP7 PUSH1 0x3 DUP2 SWAP1 SSTORE POP DUP6 PUSH1 0x4 DUP2 SWAP1 SSTORE POP DUP5 PUSH1 0x6 DUP2 SWAP1 SSTORE POP DUP4 PUSH1 0x5 DUP2 SWAP1 SSTORE POP PUSH3 0x15180 DUP4 PUSH2 0x1AD2 SWAP2 SWAP1 PUSH2 0x2BAF JUMP JUMPDEST PUSH1 0x9 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0xA DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0xC SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x1AF5 SWAP3 SWAP2 SWAP1 PUSH2 0x2215 JUMP JUMPDEST POP POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0xF PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x3 ADD SLOAD SWAP1 POP PUSH1 0x0 PUSH2 0x1B57 PUSH2 0x18A0 JUMP JUMPDEST SWAP1 POP PUSH1 0x9 SLOAD PUSH1 0xF PUSH1 0x0 DUP9 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x2 ADD SLOAD PUSH2 0x1BA9 SWAP2 SWAP1 PUSH2 0x2B59 JUMP JUMPDEST DUP2 GT ISZERO PUSH2 0x1C03 JUMPI PUSH1 0x9 SLOAD PUSH1 0xF PUSH1 0x0 DUP9 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x2 ADD SLOAD PUSH2 0x1C00 SWAP2 SWAP1 PUSH2 0x2B59 JUMP JUMPDEST SWAP1 POP JUMPDEST PUSH1 0x0 DUP3 DUP3 PUSH2 0x1C11 SWAP2 SWAP1 PUSH2 0x2C69 JUMP JUMPDEST SWAP1 POP PUSH2 0x2710 PUSH4 0x1E13380 PUSH1 0xE SLOAD PUSH1 0xF PUSH1 0x0 DUP12 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD SLOAD DUP5 PUSH2 0x1C6C SWAP2 SWAP1 PUSH2 0x2BAF JUMP JUMPDEST PUSH2 0x1C76 SWAP2 SWAP1 PUSH2 0x2BAF JUMP JUMPDEST PUSH2 0x1C80 SWAP2 SWAP1 PUSH2 0x2C38 JUMP JUMPDEST PUSH2 0x1C8A SWAP2 SWAP1 PUSH2 0x2C38 JUMP JUMPDEST DUP5 PUSH2 0x1C95 SWAP2 SWAP1 PUSH2 0x2B59 JUMP JUMPDEST SWAP4 POP DUP4 DUP3 SWAP6 POP SWAP6 POP POP POP POP POP SWAP2 POP SWAP2 JUMP JUMPDEST PUSH1 0xB PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x1CF6 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1CED SWAP1 PUSH2 0x33B4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1D00 PUSH2 0x18A0 JUMP JUMPDEST SWAP1 POP PUSH1 0x6 SLOAD DUP2 GT PUSH2 0x1D46 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1D3D SWAP1 PUSH2 0x3446 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x5 SLOAD DUP2 LT PUSH2 0x1D8A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1D81 SWAP1 PUSH2 0x34B2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x4 SLOAD DUP4 PUSH1 0x7 SLOAD PUSH2 0x1D9B SWAP2 SWAP1 PUSH2 0x2B59 JUMP JUMPDEST GT ISZERO PUSH2 0x1DDC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1DD3 SWAP1 PUSH2 0x3544 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP4 GT PUSH2 0x1E1F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1E16 SWAP1 PUSH2 0x35D6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x3 SLOAD DUP4 LT ISZERO PUSH2 0x1E64 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1E5B SWAP1 PUSH2 0x368E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0xF PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD SLOAD EQ PUSH2 0x1EBC JUMPI PUSH2 0x1EB7 DUP3 PUSH2 0x17EB JUMP JUMPDEST PUSH2 0x1F1E JUMP JUMPDEST DUP1 PUSH1 0xF PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x3 ADD DUP2 SWAP1 SSTORE POP PUSH1 0x1 PUSH1 0x8 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1F16 SWAP2 SWAP1 PUSH2 0x2B59 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP JUMPDEST DUP3 PUSH1 0xF PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1F70 SWAP2 SWAP1 PUSH2 0x2B59 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0xF PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x2 ADD DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x7 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1FD0 SWAP2 SWAP1 PUSH2 0x2B59 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0xD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x23B872DD CALLER ADDRESS DUP7 PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2036 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x36AE JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x2050 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2064 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x2088 SWAP2 SWAP1 PUSH2 0x29FF JUMP JUMPDEST PUSH2 0x20C7 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x20BE SWAP1 PUSH2 0x3757 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xEBEDB8B3C678666E7F36970BC8F57ABF6D8FA2E828C0DA91EA5B75BF68ED101A DUP5 PUSH1 0x40 MLOAD PUSH2 0x210D SWAP2 SWAP1 PUSH2 0x22D1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0xA0 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x2221 SWAP1 PUSH2 0x2F5E JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x2243 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x228A JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x225C JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x228A JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x228A JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x2289 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x226E JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x2297 SWAP2 SWAP1 PUSH2 0x229B JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x22B4 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x229C JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x22CB DUP2 PUSH2 0x22B8 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x22E6 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x22C2 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2309 DUP2 PUSH2 0x22B8 JUMP JUMPDEST DUP2 EQ PUSH2 0x2314 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2326 DUP2 PUSH2 0x2300 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2342 JUMPI PUSH2 0x2341 PUSH2 0x22F6 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2350 DUP5 DUP3 DUP6 ADD PUSH2 0x2317 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2384 DUP3 PUSH2 0x2359 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2394 DUP2 PUSH2 0x2379 JUMP JUMPDEST DUP2 EQ PUSH2 0x239F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x23B1 DUP2 PUSH2 0x238B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x240A DUP3 PUSH2 0x23C1 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x2429 JUMPI PUSH2 0x2428 PUSH2 0x23D2 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x243C PUSH2 0x22EC JUMP JUMPDEST SWAP1 POP PUSH2 0x2448 DUP3 DUP3 PUSH2 0x2401 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x2468 JUMPI PUSH2 0x2467 PUSH2 0x23D2 JUMP JUMPDEST JUMPDEST PUSH2 0x2471 DUP3 PUSH2 0x23C1 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x24A0 PUSH2 0x249B DUP5 PUSH2 0x244D JUMP JUMPDEST PUSH2 0x2432 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x24BC JUMPI PUSH2 0x24BB PUSH2 0x23BC JUMP JUMPDEST JUMPDEST PUSH2 0x24C7 DUP5 DUP3 DUP6 PUSH2 0x247E JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x24E4 JUMPI PUSH2 0x24E3 PUSH2 0x23B7 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x24F4 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x248D JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH2 0x140 DUP12 DUP14 SUB SLT ISZERO PUSH2 0x2521 JUMPI PUSH2 0x2520 PUSH2 0x22F6 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x252F DUP14 DUP3 DUP15 ADD PUSH2 0x23A2 JUMP JUMPDEST SWAP11 POP POP PUSH1 0x20 PUSH2 0x2540 DUP14 DUP3 DUP15 ADD PUSH2 0x23A2 JUMP JUMPDEST SWAP10 POP POP PUSH1 0x40 PUSH2 0x2551 DUP14 DUP3 DUP15 ADD PUSH2 0x2317 JUMP JUMPDEST SWAP9 POP POP PUSH1 0x60 PUSH2 0x2562 DUP14 DUP3 DUP15 ADD PUSH2 0x2317 JUMP JUMPDEST SWAP8 POP POP PUSH1 0x80 PUSH2 0x2573 DUP14 DUP3 DUP15 ADD PUSH2 0x2317 JUMP JUMPDEST SWAP7 POP POP PUSH1 0xA0 PUSH2 0x2584 DUP14 DUP3 DUP15 ADD PUSH2 0x2317 JUMP JUMPDEST SWAP6 POP POP PUSH1 0xC0 PUSH2 0x2595 DUP14 DUP3 DUP15 ADD PUSH2 0x2317 JUMP JUMPDEST SWAP5 POP POP PUSH1 0xE0 PUSH2 0x25A6 DUP14 DUP3 DUP15 ADD PUSH2 0x2317 JUMP JUMPDEST SWAP4 POP POP PUSH2 0x100 PUSH2 0x25B8 DUP14 DUP3 DUP15 ADD PUSH2 0x2317 JUMP JUMPDEST SWAP3 POP POP PUSH2 0x120 DUP12 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x25DA JUMPI PUSH2 0x25D9 PUSH2 0x22FB JUMP JUMPDEST JUMPDEST PUSH2 0x25E6 DUP14 DUP3 DUP15 ADD PUSH2 0x24CF JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP9 SWAP12 SWAP2 SWAP5 SWAP8 SWAP11 POP SWAP3 SWAP6 SWAP9 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x260E JUMPI PUSH2 0x260D PUSH2 0x22F6 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x261C DUP5 DUP3 DUP6 ADD PUSH2 0x23A2 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x263A DUP2 PUSH2 0x2625 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2655 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2631 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2664 DUP2 PUSH2 0x22B8 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0xA0 DUP3 ADD PUSH1 0x0 DUP3 ADD MLOAD PUSH2 0x2680 PUSH1 0x0 DUP6 ADD DUP3 PUSH2 0x265B JUMP JUMPDEST POP PUSH1 0x20 DUP3 ADD MLOAD PUSH2 0x2693 PUSH1 0x20 DUP6 ADD DUP3 PUSH2 0x265B JUMP JUMPDEST POP PUSH1 0x40 DUP3 ADD MLOAD PUSH2 0x26A6 PUSH1 0x40 DUP6 ADD DUP3 PUSH2 0x265B JUMP JUMPDEST POP PUSH1 0x60 DUP3 ADD MLOAD PUSH2 0x26B9 PUSH1 0x60 DUP6 ADD DUP3 PUSH2 0x265B JUMP JUMPDEST POP PUSH1 0x80 DUP3 ADD MLOAD PUSH2 0x26CC PUSH1 0x80 DUP6 ADD DUP3 PUSH2 0x265B JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA0 DUP3 ADD SWAP1 POP PUSH2 0x26E7 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x266A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2704 JUMPI PUSH2 0x2703 PUSH2 0x22F6 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2712 DUP6 DUP3 DUP7 ADD PUSH2 0x2317 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x2723 DUP6 DUP3 DUP7 ADD PUSH2 0x23A2 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0x2736 DUP2 PUSH2 0x2379 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2751 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x272D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x2791 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x2776 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x27A0 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x27B1 DUP3 PUSH2 0x2757 JUMP JUMPDEST PUSH2 0x27BB DUP2 DUP6 PUSH2 0x2762 JUMP JUMPDEST SWAP4 POP PUSH2 0x27CB DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x2773 JUMP JUMPDEST PUSH2 0x27D4 DUP2 PUSH2 0x23C1 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x27F9 DUP2 DUP5 PUSH2 0x27A6 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x5265656E7472616E637947756172643A207265656E7472616E742063616C6C00 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2837 PUSH1 0x1F DUP4 PUSH2 0x2762 JUMP JUMPDEST SWAP2 POP PUSH2 0x2842 DUP3 PUSH2 0x2801 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2866 DUP2 PUSH2 0x282A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x287C DUP2 PUSH2 0x2300 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2898 JUMPI PUSH2 0x2897 PUSH2 0x22F6 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x28A6 DUP5 DUP3 DUP6 ADD PUSH2 0x286D JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A20696E73756666696369656E742066756E6473 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x20696E2074686520747265617375727900000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x290B PUSH1 0x30 DUP4 PUSH2 0x2762 JUMP JUMPDEST SWAP2 POP PUSH2 0x2916 DUP3 PUSH2 0x28AF JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x293A DUP2 PUSH2 0x28FE JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A20616D6F756E742073686F756C64206265206E PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6F6E2D7A65726F00000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x299D PUSH1 0x27 DUP4 PUSH2 0x2762 JUMP JUMPDEST SWAP2 POP PUSH2 0x29A8 DUP3 PUSH2 0x2941 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x29CC DUP2 PUSH2 0x2990 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x29DC DUP2 PUSH2 0x2625 JUMP JUMPDEST DUP2 EQ PUSH2 0x29E7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x29F9 DUP2 PUSH2 0x29D3 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2A15 JUMPI PUSH2 0x2A14 PUSH2 0x22F6 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2A23 DUP5 DUP3 DUP6 ADD PUSH2 0x29EA JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A206E6F742061207374616B65686F6C64657200 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2A62 PUSH1 0x1F DUP4 PUSH2 0x2762 JUMP JUMPDEST SWAP2 POP PUSH2 0x2A6D DUP3 PUSH2 0x2A2C JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2A91 DUP2 PUSH2 0x2A55 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A206E6F7420656E6F756768207374616B652074 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6F20756E7374616B650000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2AF4 PUSH1 0x29 DUP4 PUSH2 0x2762 JUMP JUMPDEST SWAP2 POP PUSH2 0x2AFF DUP3 PUSH2 0x2A98 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2B23 DUP2 PUSH2 0x2AE7 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x2B64 DUP3 PUSH2 0x22B8 JUMP JUMPDEST SWAP2 POP PUSH2 0x2B6F DUP4 PUSH2 0x22B8 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x2BA4 JUMPI PUSH2 0x2BA3 PUSH2 0x2B2A JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2BBA DUP3 PUSH2 0x22B8 JUMP JUMPDEST SWAP2 POP PUSH2 0x2BC5 DUP4 PUSH2 0x22B8 JUMP JUMPDEST SWAP3 POP DUP2 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x2BFE JUMPI PUSH2 0x2BFD PUSH2 0x2B2A JUMP JUMPDEST JUMPDEST DUP3 DUP3 MUL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x2C43 DUP3 PUSH2 0x22B8 JUMP JUMPDEST SWAP2 POP PUSH2 0x2C4E DUP4 PUSH2 0x22B8 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x2C5E JUMPI PUSH2 0x2C5D PUSH2 0x2C09 JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2C74 DUP3 PUSH2 0x22B8 JUMP JUMPDEST SWAP2 POP PUSH2 0x2C7F DUP4 PUSH2 0x22B8 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x2C92 JUMPI PUSH2 0x2C91 PUSH2 0x2B2A JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x2CB2 PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x272D JUMP JUMPDEST PUSH2 0x2CBF PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x22C2 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A206661696C656420746F207472616E73666572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2CFC PUSH1 0x20 DUP4 PUSH2 0x2762 JUMP JUMPDEST SWAP2 POP PUSH2 0x2D07 DUP3 PUSH2 0x2CC6 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2D2B DUP2 PUSH2 0x2CEF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A206E6F7420656E6F7567682077697468647261 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7761626C6520746F6B656E730000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2D8E PUSH1 0x2C DUP4 PUSH2 0x2762 JUMP JUMPDEST SWAP2 POP PUSH2 0x2D99 DUP3 PUSH2 0x2D32 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2DBD DUP2 PUSH2 0x2D81 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x496E697469616C697A61626C653A20636F6E747261637420697320616C726561 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x647920696E697469616C697A6564000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E20 PUSH1 0x2E DUP4 PUSH2 0x2762 JUMP JUMPDEST SWAP2 POP PUSH2 0x2E2B DUP3 PUSH2 0x2DC4 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2E4F DUP2 PUSH2 0x2E13 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E92 PUSH2 0x2E8D PUSH2 0x2E88 DUP5 PUSH2 0x2E56 JUMP JUMPDEST PUSH2 0x2E6D JUMP JUMPDEST PUSH2 0x2E60 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2EA2 DUP2 PUSH2 0x2E77 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2EBD PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2E99 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A206E6F2072657761726420746F20636C61696D PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2EF9 PUSH1 0x20 DUP4 PUSH2 0x2762 JUMP JUMPDEST SWAP2 POP PUSH2 0x2F04 DUP3 PUSH2 0x2EC3 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2F28 DUP2 PUSH2 0x2EEC JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x2F76 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x2F8A JUMPI PUSH2 0x2F89 PUSH2 0x2F2F JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2FEC PUSH1 0x26 DUP4 PUSH2 0x2762 JUMP JUMPDEST SWAP2 POP PUSH2 0x2FF7 DUP3 PUSH2 0x2F90 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x301B DUP2 PUSH2 0x2FDF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3058 PUSH1 0x20 DUP4 PUSH2 0x2762 JUMP JUMPDEST SWAP2 POP PUSH2 0x3063 DUP3 PUSH2 0x3022 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3087 DUP2 PUSH2 0x304B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x496E697469616C697A61626C653A20636F6E7472616374206973206E6F742069 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6E697469616C697A696E67000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x30EA PUSH1 0x2B DUP4 PUSH2 0x2762 JUMP JUMPDEST SWAP2 POP PUSH2 0x30F5 DUP3 PUSH2 0x308E JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3119 DUP2 PUSH2 0x30DD JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A2061707920726174652073686F756C64206265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x206C657373207468616E20313030303000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x317C PUSH1 0x30 DUP4 PUSH2 0x2762 JUMP JUMPDEST SWAP2 POP PUSH2 0x3187 DUP3 PUSH2 0x3120 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x31AB DUP2 PUSH2 0x316F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A207374616B652064617973206D757374206265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x206E6F6E2D7A65726F0000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x320E PUSH1 0x29 DUP4 PUSH2 0x2762 JUMP JUMPDEST SWAP2 POP PUSH2 0x3219 DUP3 PUSH2 0x31B2 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x323D DUP2 PUSH2 0x3201 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A20746F6B656E20616464726573732063616E6E PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6F74206265203020616464726573730000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x32A0 PUSH1 0x2F DUP4 PUSH2 0x2762 JUMP JUMPDEST SWAP2 POP PUSH2 0x32AB DUP3 PUSH2 0x3244 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x32CF DUP2 PUSH2 0x3293 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A2073746172742064617465206D757374206265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x206C657373207468616E20656E64206461746500000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3332 PUSH1 0x33 DUP4 PUSH2 0x2762 JUMP JUMPDEST SWAP2 POP PUSH2 0x333D DUP3 PUSH2 0x32D6 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3361 DUP2 PUSH2 0x3325 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A207374616B696E672069732070617573656400 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x339E PUSH1 0x1F DUP4 PUSH2 0x2762 JUMP JUMPDEST SWAP2 POP PUSH2 0x33A9 DUP3 PUSH2 0x3368 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x33CD DUP2 PUSH2 0x3391 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A207374616B696E67206E6F7420737461727465 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6420796574000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3430 PUSH1 0x25 DUP4 PUSH2 0x2762 JUMP JUMPDEST SWAP2 POP PUSH2 0x343B DUP3 PUSH2 0x33D4 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x345F DUP2 PUSH2 0x3423 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A207374616B696E6720656E6465640000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x349C PUSH1 0x1B DUP4 PUSH2 0x2762 JUMP JUMPDEST SWAP2 POP PUSH2 0x34A7 DUP3 PUSH2 0x3466 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x34CB DUP2 PUSH2 0x348F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A206D6178207374616B696E6720746F6B656E20 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6C696D6974207265616368656400000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x352E PUSH1 0x2D DUP4 PUSH2 0x2762 JUMP JUMPDEST SWAP2 POP PUSH2 0x3539 DUP3 PUSH2 0x34D2 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x355D DUP2 PUSH2 0x3521 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A207374616B6520616D6F756E74206D75737420 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6265206E6F6E2D7A65726F000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x35C0 PUSH1 0x2B DUP4 PUSH2 0x2762 JUMP JUMPDEST SWAP2 POP PUSH2 0x35CB DUP3 PUSH2 0x3564 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x35EF DUP2 PUSH2 0x35B3 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A207374616B6520616D6F756E74206D75737420 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x67726561746572207468616E206D696E696D756D20616D6F756E7420616C6C6F PUSH1 0x20 DUP3 ADD MSTORE PUSH32 0x7765640000000000000000000000000000000000000000000000000000000000 PUSH1 0x40 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3678 PUSH1 0x43 DUP4 PUSH2 0x2762 JUMP JUMPDEST SWAP2 POP PUSH2 0x3683 DUP3 PUSH2 0x35F6 JUMP JUMPDEST PUSH1 0x60 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x36A7 DUP2 PUSH2 0x366B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x36C3 PUSH1 0x0 DUP4 ADD DUP7 PUSH2 0x272D JUMP JUMPDEST PUSH2 0x36D0 PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x272D JUMP JUMPDEST PUSH2 0x36DD PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x22C2 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH32 0x546F6B656E5374616B696E673A206661696C656420746F207472616E73666572 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x20746F6B656E7300000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3741 PUSH1 0x27 DUP4 PUSH2 0x2762 JUMP JUMPDEST SWAP2 POP PUSH2 0x374C DUP3 PUSH2 0x36E5 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3770 DUP2 PUSH2 0x3734 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD5 STOP DUP2 0xD7 0x5C 0xDC OR DIV SWAP9 0x26 0x2D 0xDF PUSH30 0x3BE7C9446FA03ED55265E2BF0D2591E5270F2C64736F6C63430008090033 ",
"sourceMap": "23671:14430:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28085:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31411:124;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34809:1182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32834:241;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25506:749;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31626:108;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27638:114;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29747:201;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28499:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31188:126;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29068:124;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30905:123;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30385:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32212:129;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19909:103;;;:::i;:::-;;31837:144;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24881:54;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19261:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30053:158;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28700:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33271:106;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24820:54;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36079:570;;;:::i;:::-;;27867:112;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32470:105;;;:::i;:::-;;29278:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30586:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29502:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28291:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28876:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20167:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28085:102;28137:7;28164:15;;28157:22;;28085:102;:::o;31411:124::-;19147:13;:11;:13::i;:::-;31518:9:::1;31496:19;:31;;;;31411:124:::0;:::o;34809:1182::-;16186:1;16784:7;;:19;;16776:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;16186:1;16917:7;:18;;;;34888:7:::1;25396:6;25353:13;;;;;;;;;;;25346:31;;;25386:4;25346:46;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:56;;25324:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;34908:12:::2;34923:10;34908:25;;34965:1;34954:7;:12;;34946:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;35029:4;:18;;;35048:4;35029:24;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35021:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35136:7;35108:6;:12;35115:4;35108:12;;;;;;;;;;;;;;;:24;;;:35;;35100:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;35249:23;35267:4;35249:17;:23::i;:::-;35285;35374:10;;35345:6;:12;35352:4;35345:12;;;;;;;;;;;;;;;:26;;;:39;;;;:::i;:::-;35325:16;:14;:16::i;:::-;:59;35321:233;;24869:5;35431:26;;35421:7;:36;;;;:::i;:::-;35420:63;;;;:::i;:::-;35401:83;;35520:4;35504:38;;;35526:15;35504:38;;;;;;:::i;:::-;;;;;;;;35321:233;35566:23;35602:15;35592:7;:25;;;;:::i;:::-;35566:51;;35658:7;35630:6;:12;35637:4;35630:12;;;;;;;;;;;;;;;:24;;;:35;;;;;;;:::i;:::-;;;;;;;;35700:7;35678:18;;:29;;;;;;;:::i;:::-;;;;;;;;35752:1;35724:6;:12;35731:4;35724:12;;;;;;;;;;;;;;;:24;;;:29;35720:115;;;35822:1;35807:11;;:16;;;;;;;:::i;:::-;;;;;;;;35720:115;35862:13;;;;;;;;;;;35855:30;;;35886:4;35892:15;35855:53;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35847:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;35969:4;35961:22;;;35975:7;35961:22;;;;;;:::i;:::-;;;;;;;;34897:1094;;;16948:1:::1;16142::::0;17096:7;:22;;;;34809:1182;:::o;32834:241::-;19147:13;:11;:13::i;:::-;16186:1:::1;16784:7;;:19;;16776:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;16186:1;16917:7;:18;;;;32951:6:::2;32919:4;:26;;;:28;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:38;;32911:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;33024:13;;;;;;;;;;;33017:30;;;33048:10;33060:6;33017:50;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;16142:1:::1;17096:7:::0;:22:::1;;;;32834:241:::0;:::o;25506:749::-;11764:19;11787:13;;;;;;;;;;;11786:14;11764:36;;11834:14;:34;;;;;11867:1;11852:12;;;;;;;;;;;:16;;;11834:34;11833:97;;;;11875:33;11902:4;11875:18;:33::i;:::-;11874:34;:55;;;;;11928:1;11912:12;;;;;;;;;;;:17;;;11874:55;11833:97;11811:193;;;;;;;;;;;;:::i;:::-;;;;;;;;;12030:1;12015:12;;:16;;;;;;;;;;;;;;;;;;12046:14;12042:67;;;12093:4;12077:13;;:20;;;;;;;;;;;;;;;;;;12042:67;25912:335:::1;25956:6;25977:13;26005:8;26028:21;26064:19;26098:15;26128:13;26156:10;26181:26;26222:14;25912:29;:335::i;:::-;12135:14:::0;12131:102;;;12182:5;12166:13;;:21;;;;;;;;;;;;;;;;;;12207:14;12219:1;12207:14;;;;;;:::i;:::-;;;;;;;;12131:102;11753:487;25506:749;;;;;;;;;;:::o;31626:108::-;19147:13;:11;:13::i;:::-;31719:7:::1;31703:13;:23;;;;31626:108:::0;:::o;27638:114::-;27696:7;27723:21;;27716:28;;27638:114;:::o;29747:201::-;29805:7;29826:14;29846:36;29871:10;29846:24;:36::i;:::-;29825:57;;;29934:6;29900;:18;29907:10;29900:18;;;;;;;;;;;;;;;:31;;;:40;;;;:::i;:::-;29893:47;;;29747:201;:::o;28499:108::-;28554:7;28581:18;;28574:25;;28499:108;:::o;31188:126::-;19147:13;:11;:13::i;:::-;31297:9:::1;31273:21;:33;;;;31188:126:::0;:::o;29068:124::-;29131:7;29158:26;;29151:33;;29068:124;:::o;30905:123::-;30966:4;31019:1;30990:6;:13;30997:5;30990:13;;;;;;;;;;;;;;;:25;;;:30;;30983:37;;30905:123;;;:::o;30385:119::-;30446:11;;:::i;:::-;30477:6;:19;30484:11;30477:19;;;;;;;;;;;;;;;30470:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30385:119;;;:::o;32212:129::-;19147:13;:11;:13::i;:::-;16186:1:::1;16784:7;;:19;;16776:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;16186:1;16917:7;:18;;;;32307:26:::2;32320:6;32328:4;32307:12;:26::i;:::-;16142:1:::1;17096:7:::0;:22:::1;;;;32212:129:::0;;:::o;19909:103::-;19147:13;:11;:13::i;:::-;19974:30:::1;20001:1;19974:18;:30::i;:::-;19909:103::o:0;31837:144::-;19147:13;:11;:13::i;:::-;31960::::1;31931:26;:42;;;;31837:144:::0;:::o;24881:54::-;24933:2;24881:54;:::o;19261:87::-;19307:7;19334:6;;;;;;;;;;;19327:13;;19261:87;:::o;30053:158::-;30109:7;30185:18;;30143:13;;;;;;;;;;;30136:31;;;30176:4;30136:46;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:67;;;;:::i;:::-;30129:74;;30053:158;:::o;28700:94::-;28748:7;28775:11;;28768:18;;28700:94;:::o;33271:106::-;16186:1;16784:7;;:19;;16776:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;16186:1;16917:7;:18;;;;33336:33:::1;33349:7;33358:10;33336:12;:33::i;:::-;16142:1:::0;17096:7;:22;;;;33271:106;:::o;24820:54::-;24869:5;24820:54;:::o;36079:570::-;16186:1;16784:7;;:19;;16776:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;16186:1;16917:7;:18;;;;36147:6:::1;:18;36154:10;36147:18;;;;;;;;;;;;;;;:31;;;25396:6;25353:13;;;;;;;;;;;25346:31;;;25386:4;25346:46;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:56;;25324:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;36191:29:::2;36209:10;36191:17;:29::i;:::-;36231:20;36254:6;:18;36261:10;36254:18;;;;;;;;;;;;;;;:31;;;36231:54;;36321:1;36306:12;:16;36298:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;36387:13;;;;;;;;;;;36380:30;;;36411:10;36423:12;36380:56;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36372:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;36520:1;36486:6;:18;36493:10;36486:18;;;;;;;;;;;;;;;:31;;:35;;;;36574:12;36532:6;:18;36539:10;36532:18;;;;;;;;;;;;;;;:38;;;:54;;;;;;;:::i;:::-;;;;;;;;36616:10;36604:37;;;36628:12;36604:37;;;;;;:::i;:::-;;;;;;;;36180:469;16948:1:::1;16142::::0;17096:7;:22;;;;36079:570::o;27867:112::-;27925:7;27952:19;;27945:26;;27867:112;:::o;32470:105::-;19147:13;:11;:13::i;:::-;32551:16:::1;;;;;;;;;;;32550:17;32531:16;;:36;;;;;;;;;;;;;;;;;;32470:105::o:0;29278:99::-;29329:4;29353:16;;;;;;;;;;;29346:23;;29278:99;:::o;30586:106::-;30637:13;30670:14;30663:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30586:106;:::o;29502:84::-;29543:7;29570:8;;29563:15;;29502:84;:::o;28291:98::-;28341:7;28368:13;;28361:20;;28291:98;:::o;28876:92::-;28923:7;28950:10;;28943:17;;28876:92;:::o;20167:201::-;19147:13;:11;:13::i;:::-;20276:1:::1;20256:22;;:8;:22;;;;20248:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;20332:28;20351:8;20332:18;:28::i;:::-;20167:201:::0;:::o;19426:132::-;19501:12;:10;:12::i;:::-;19490:23;;:7;:5;:7::i;:::-;:23;;;19482:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19426:132::o;36858:261::-;36920:18;36940:19;36963:31;36988:5;36963:24;:31::i;:::-;36919:75;;;;37037:10;37007:6;:13;37014:5;37007:13;;;;;;;;;;;;;;;:26;;;:40;;;;;;;:::i;:::-;;;;;;;;37100:11;37058:6;:13;37065:5;37058:13;;;;;;;;;;;;;;;:39;;:53;;;;36908:211;;36858:261;:::o;37991:107::-;38048:7;38075:15;38068:22;;37991:107;:::o;1266:326::-;1326:4;1583:1;1561:7;:19;;;:23;1554:30;;1266:326;;;:::o;26263:1245::-;13594:13;;;;;;;;;;;13586:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;26707:5:::1;26695:8;;:17;;26687:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;26797:1;26784:10;:14;26776:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26888:1;26863:27;;:13;:27;;;;26855:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;26979:13;26961:15;:31;26953:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;27061:26;27080:6;27061:18;:26::i;:::-;27114:13;27098;;:29;;;;;;;;;;;;;;;;;;27149:8;27138;:19;;;;27192:21;27168;:45;;;;27246:19;27224;:41;;;;27294:15;27276;:33;;;;27336:13;27320;:29;;;;27386:6;27373:10;:19;;;;:::i;:::-;27360:10;:32;;;;27432:26;27403;:55;;;;27486:14;27469;:31;;;;;;;;;;;;:::i;:::-;;26263:1245:::0;;;;;;;;;;:::o;37307:636::-;37378:7;37387;37407:18;37436:21;37460:6;:13;37467:5;37460:13;;;;;;;;;;;;;;;:39;;;37436:63;;37512:19;37534:16;:14;:16::i;:::-;37512:38;;37611:10;;37581:6;:13;37588:5;37581:13;;;;;;;;;;;;;;;:27;;;:40;;;;:::i;:::-;37567:11;:54;37563:141;;;37682:10;;37652:6;:13;37659:5;37652:13;;;;;;;;;;;;;;;:27;;;:40;;;;:::i;:::-;37638:54;;37563:141;37716:23;37756:13;37742:11;:27;;;;:::i;:::-;37716:53;;24869:5;37856:8;37844;;37816:6;:13;37823:5;37816:13;;;;;;;;;;;;;;;:25;;;37798:15;:43;;;;:::i;:::-;:54;;;;:::i;:::-;37797:67;;;;:::i;:::-;37796:94;;;;:::i;:::-;37782:108;;;;;:::i;:::-;;;37911:10;37923:11;37903:32;;;;;;;;37307:636;;;:::o;33385:1287::-;33467:16;;;;;;;;;;;33466:17;33458:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33532:19;33554:16;:14;:16::i;:::-;33532:38;;33603:15;;33589:11;:29;33581:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;33693:13;;33679:11;:27;33671:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;33789:19;;33778:7;33757:18;;:28;;;;:::i;:::-;:51;;33749:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;33887:1;33877:7;:11;33869:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;33980:21;;33969:7;:32;;33947:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;34142:1;34113:6;:13;34120:5;34113:13;;;;;;;;;;;;;;;:25;;;:30;34109:204;;34160:24;34178:5;34160:17;:24::i;:::-;34109:204;;;34259:11;34217:6;:13;34224:5;34217:13;;;;;;;;;;;;;;;:39;;:53;;;;34300:1;34285:11;;:16;;;;;;;:::i;:::-;;;;;;;;34109:204;34354:7;34325:6;:13;34332:5;34325:13;;;;;;;;;;;;;;;:25;;;:36;;;;;;;:::i;:::-;;;;;;;;34402:11;34372:6;:13;34379:5;34372:13;;;;;;;;;;;;;;;:27;;:41;;;;34448:7;34426:18;;:29;;;;;;;:::i;:::-;;;;;;;;34497:13;;;;;;;;;;;34490:34;;;34525:10;34545:4;34552:7;34490:70;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34468:159;;;;;;;;;;;;:::i;:::-;;;;;;;;;34649:5;34643:21;;;34656:7;34643:21;;;;;;:::i;:::-;;;;;;;;33447:1225;33385:1287;;:::o;20528:191::-;20602:16;20621:6;;;;;;;;;;;20602:25;;20647:8;20638:6;;:17;;;;;;;;;;;;;;;;;;20702:8;20671:40;;20692:8;20671:40;;;;;;;;;;;;20591:128;20528:191;:::o;17812:98::-;17865:7;17892:10;17885:17;;17812:98;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:77:1:-;44:7;73:5;62:16;;7:77;;;:::o;90:118::-;177:24;195:5;177:24;:::i;:::-;172:3;165:37;90:118;;:::o;214:222::-;307:4;345:2;334:9;330:18;322:26;;358:71;426:1;415:9;411:17;402:6;358:71;:::i;:::-;214:222;;;;:::o;442:75::-;475:6;508:2;502:9;492:19;;442:75;:::o;523:117::-;632:1;629;622:12;646:117;755:1;752;745:12;769:122;842:24;860:5;842:24;:::i;:::-;835:5;832:35;822:63;;881:1;878;871:12;822:63;769:122;:::o;897:139::-;943:5;981:6;968:20;959:29;;997:33;1024:5;997:33;:::i;:::-;897:139;;;;:::o;1042:329::-;1101:6;1150:2;1138:9;1129:7;1125:23;1121:32;1118:119;;;1156:79;;:::i;:::-;1118:119;1276:1;1301:53;1346:7;1337:6;1326:9;1322:22;1301:53;:::i;:::-;1291:63;;1247:117;1042:329;;;;:::o;1377:126::-;1414:7;1454:42;1447:5;1443:54;1432:65;;1377:126;;;:::o;1509:96::-;1546:7;1575:24;1593:5;1575:24;:::i;:::-;1564:35;;1509:96;;;:::o;1611:122::-;1684:24;1702:5;1684:24;:::i;:::-;1677:5;1674:35;1664:63;;1723:1;1720;1713:12;1664:63;1611:122;:::o;1739:139::-;1785:5;1823:6;1810:20;1801:29;;1839:33;1866:5;1839:33;:::i;:::-;1739:139;;;;:::o;1884:117::-;1993:1;1990;1983:12;2007:117;2116:1;2113;2106:12;2130:102;2171:6;2222:2;2218:7;2213:2;2206:5;2202:14;2198:28;2188:38;;2130:102;;;:::o;2238:180::-;2286:77;2283:1;2276:88;2383:4;2380:1;2373:15;2407:4;2404:1;2397:15;2424:281;2507:27;2529:4;2507:27;:::i;:::-;2499:6;2495:40;2637:6;2625:10;2622:22;2601:18;2589:10;2586:34;2583:62;2580:88;;;2648:18;;:::i;:::-;2580:88;2688:10;2684:2;2677:22;2467:238;2424:281;;:::o;2711:129::-;2745:6;2772:20;;:::i;:::-;2762:30;;2801:33;2829:4;2821:6;2801:33;:::i;:::-;2711:129;;;:::o;2846:308::-;2908:4;2998:18;2990:6;2987:30;2984:56;;;3020:18;;:::i;:::-;2984:56;3058:29;3080:6;3058:29;:::i;:::-;3050:37;;3142:4;3136;3132:15;3124:23;;2846:308;;;:::o;3160:154::-;3244:6;3239:3;3234;3221:30;3306:1;3297:6;3292:3;3288:16;3281:27;3160:154;;;:::o;3320:412::-;3398:5;3423:66;3439:49;3481:6;3439:49;:::i;:::-;3423:66;:::i;:::-;3414:75;;3512:6;3505:5;3498:21;3550:4;3543:5;3539:16;3588:3;3579:6;3574:3;3570:16;3567:25;3564:112;;;3595:79;;:::i;:::-;3564:112;3685:41;3719:6;3714:3;3709;3685:41;:::i;:::-;3404:328;3320:412;;;;;:::o;3752:340::-;3808:5;3857:3;3850:4;3842:6;3838:17;3834:27;3824:122;;3865:79;;:::i;:::-;3824:122;3982:6;3969:20;4007:79;4082:3;4074:6;4067:4;4059:6;4055:17;4007:79;:::i;:::-;3998:88;;3814:278;3752:340;;;;:::o;4098:1821::-;4248:6;4256;4264;4272;4280;4288;4296;4304;4312;4320;4369:3;4357:9;4348:7;4344:23;4340:33;4337:120;;;4376:79;;:::i;:::-;4337:120;4496:1;4521:53;4566:7;4557:6;4546:9;4542:22;4521:53;:::i;:::-;4511:63;;4467:117;4623:2;4649:53;4694:7;4685:6;4674:9;4670:22;4649:53;:::i;:::-;4639:63;;4594:118;4751:2;4777:53;4822:7;4813:6;4802:9;4798:22;4777:53;:::i;:::-;4767:63;;4722:118;4879:2;4905:53;4950:7;4941:6;4930:9;4926:22;4905:53;:::i;:::-;4895:63;;4850:118;5007:3;5034:53;5079:7;5070:6;5059:9;5055:22;5034:53;:::i;:::-;5024:63;;4978:119;5136:3;5163:53;5208:7;5199:6;5188:9;5184:22;5163:53;:::i;:::-;5153:63;;5107:119;5265:3;5292:53;5337:7;5328:6;5317:9;5313:22;5292:53;:::i;:::-;5282:63;;5236:119;5394:3;5421:53;5466:7;5457:6;5446:9;5442:22;5421:53;:::i;:::-;5411:63;;5365:119;5523:3;5550:53;5595:7;5586:6;5575:9;5571:22;5550:53;:::i;:::-;5540:63;;5494:119;5680:3;5669:9;5665:19;5652:33;5712:18;5704:6;5701:30;5698:117;;;5734:79;;:::i;:::-;5698:117;5839:63;5894:7;5885:6;5874:9;5870:22;5839:63;:::i;:::-;5829:73;;5623:289;4098:1821;;;;;;;;;;;;;:::o;5925:329::-;5984:6;6033:2;6021:9;6012:7;6008:23;6004:32;6001:119;;;6039:79;;:::i;:::-;6001:119;6159:1;6184:53;6229:7;6220:6;6209:9;6205:22;6184:53;:::i;:::-;6174:63;;6130:117;5925:329;;;;:::o;6260:90::-;6294:7;6337:5;6330:13;6323:21;6312:32;;6260:90;;;:::o;6356:109::-;6437:21;6452:5;6437:21;:::i;:::-;6432:3;6425:34;6356:109;;:::o;6471:210::-;6558:4;6596:2;6585:9;6581:18;6573:26;;6609:65;6671:1;6660:9;6656:17;6647:6;6609:65;:::i;:::-;6471:210;;;;:::o;6687:108::-;6764:24;6782:5;6764:24;:::i;:::-;6759:3;6752:37;6687:108;;:::o;6861:1081::-;7000:4;6995:3;6991:14;7094:4;7087:5;7083:16;7077:23;7113:63;7170:4;7165:3;7161:14;7147:12;7113:63;:::i;:::-;7015:171;7276:4;7269:5;7265:16;7259:23;7295:63;7352:4;7347:3;7343:14;7329:12;7295:63;:::i;:::-;7196:172;7459:4;7452:5;7448:16;7442:23;7478:63;7535:4;7530:3;7526:14;7512:12;7478:63;:::i;:::-;7378:173;7654:4;7647:5;7643:16;7637:23;7673:63;7730:4;7725:3;7721:14;7707:12;7673:63;:::i;:::-;7561:185;7843:4;7836:5;7832:16;7826:23;7862:63;7919:4;7914:3;7910:14;7896:12;7862:63;:::i;:::-;7756:179;6969:973;6861:1081;;:::o;7948:307::-;8083:4;8121:3;8110:9;8106:19;8098:27;;8135:113;8245:1;8234:9;8230:17;8221:6;8135:113;:::i;:::-;7948:307;;;;:::o;8261:474::-;8329:6;8337;8386:2;8374:9;8365:7;8361:23;8357:32;8354:119;;;8392:79;;:::i;:::-;8354:119;8512:1;8537:53;8582:7;8573:6;8562:9;8558:22;8537:53;:::i;:::-;8527:63;;8483:117;8639:2;8665:53;8710:7;8701:6;8690:9;8686:22;8665:53;:::i;:::-;8655:63;;8610:118;8261:474;;;;;:::o;8741:118::-;8828:24;8846:5;8828:24;:::i;:::-;8823:3;8816:37;8741:118;;:::o;8865:222::-;8958:4;8996:2;8985:9;8981:18;8973:26;;9009:71;9077:1;9066:9;9062:17;9053:6;9009:71;:::i;:::-;8865:222;;;;:::o;9093:99::-;9145:6;9179:5;9173:12;9163:22;;9093:99;;;:::o;9198:169::-;9282:11;9316:6;9311:3;9304:19;9356:4;9351:3;9347:14;9332:29;;9198:169;;;;:::o;9373:307::-;9441:1;9451:113;9465:6;9462:1;9459:13;9451:113;;;9550:1;9545:3;9541:11;9535:18;9531:1;9526:3;9522:11;9515:39;9487:2;9484:1;9480:10;9475:15;;9451:113;;;9582:6;9579:1;9576:13;9573:101;;;9662:1;9653:6;9648:3;9644:16;9637:27;9573:101;9422:258;9373:307;;;:::o;9686:364::-;9774:3;9802:39;9835:5;9802:39;:::i;:::-;9857:71;9921:6;9916:3;9857:71;:::i;:::-;9850:78;;9937:52;9982:6;9977:3;9970:4;9963:5;9959:16;9937:52;:::i;:::-;10014:29;10036:6;10014:29;:::i;:::-;10009:3;10005:39;9998:46;;9778:272;9686:364;;;;:::o;10056:313::-;10169:4;10207:2;10196:9;10192:18;10184:26;;10256:9;10250:4;10246:20;10242:1;10231:9;10227:17;10220:47;10284:78;10357:4;10348:6;10284:78;:::i;:::-;10276:86;;10056:313;;;;:::o;10375:181::-;10515:33;10511:1;10503:6;10499:14;10492:57;10375:181;:::o;10562:366::-;10704:3;10725:67;10789:2;10784:3;10725:67;:::i;:::-;10718:74;;10801:93;10890:3;10801:93;:::i;:::-;10919:2;10914:3;10910:12;10903:19;;10562:366;;;:::o;10934:419::-;11100:4;11138:2;11127:9;11123:18;11115:26;;11187:9;11181:4;11177:20;11173:1;11162:9;11158:17;11151:47;11215:131;11341:4;11215:131;:::i;:::-;11207:139;;10934:419;;;:::o;11359:143::-;11416:5;11447:6;11441:13;11432:22;;11463:33;11490:5;11463:33;:::i;:::-;11359:143;;;;:::o;11508:351::-;11578:6;11627:2;11615:9;11606:7;11602:23;11598:32;11595:119;;;11633:79;;:::i;:::-;11595:119;11753:1;11778:64;11834:7;11825:6;11814:9;11810:22;11778:64;:::i;:::-;11768:74;;11724:128;11508:351;;;;:::o;11865:235::-;12005:34;12001:1;11993:6;11989:14;11982:58;12074:18;12069:2;12061:6;12057:15;12050:43;11865:235;:::o;12106:366::-;12248:3;12269:67;12333:2;12328:3;12269:67;:::i;:::-;12262:74;;12345:93;12434:3;12345:93;:::i;:::-;12463:2;12458:3;12454:12;12447:19;;12106:366;;;:::o;12478:419::-;12644:4;12682:2;12671:9;12667:18;12659:26;;12731:9;12725:4;12721:20;12717:1;12706:9;12702:17;12695:47;12759:131;12885:4;12759:131;:::i;:::-;12751:139;;12478:419;;;:::o;12903:226::-;13043:34;13039:1;13031:6;13027:14;13020:58;13112:9;13107:2;13099:6;13095:15;13088:34;12903:226;:::o;13135:366::-;13277:3;13298:67;13362:2;13357:3;13298:67;:::i;:::-;13291:74;;13374:93;13463:3;13374:93;:::i;:::-;13492:2;13487:3;13483:12;13476:19;;13135:366;;;:::o;13507:419::-;13673:4;13711:2;13700:9;13696:18;13688:26;;13760:9;13754:4;13750:20;13746:1;13735:9;13731:17;13724:47;13788:131;13914:4;13788:131;:::i;:::-;13780:139;;13507:419;;;:::o;13932:116::-;14002:21;14017:5;14002:21;:::i;:::-;13995:5;13992:32;13982:60;;14038:1;14035;14028:12;13982:60;13932:116;:::o;14054:137::-;14108:5;14139:6;14133:13;14124:22;;14155:30;14179:5;14155:30;:::i;:::-;14054:137;;;;:::o;14197:345::-;14264:6;14313:2;14301:9;14292:7;14288:23;14284:32;14281:119;;;14319:79;;:::i;:::-;14281:119;14439:1;14464:61;14517:7;14508:6;14497:9;14493:22;14464:61;:::i;:::-;14454:71;;14410:125;14197:345;;;;:::o;14548:181::-;14688:33;14684:1;14676:6;14672:14;14665:57;14548:181;:::o;14735:366::-;14877:3;14898:67;14962:2;14957:3;14898:67;:::i;:::-;14891:74;;14974:93;15063:3;14974:93;:::i;:::-;15092:2;15087:3;15083:12;15076:19;;14735:366;;;:::o;15107:419::-;15273:4;15311:2;15300:9;15296:18;15288:26;;15360:9;15354:4;15350:20;15346:1;15335:9;15331:17;15324:47;15388:131;15514:4;15388:131;:::i;:::-;15380:139;;15107:419;;;:::o;15532:228::-;15672:34;15668:1;15660:6;15656:14;15649:58;15741:11;15736:2;15728:6;15724:15;15717:36;15532:228;:::o;15766:366::-;15908:3;15929:67;15993:2;15988:3;15929:67;:::i;:::-;15922:74;;16005:93;16094:3;16005:93;:::i;:::-;16123:2;16118:3;16114:12;16107:19;;15766:366;;;:::o;16138:419::-;16304:4;16342:2;16331:9;16327:18;16319:26;;16391:9;16385:4;16381:20;16377:1;16366:9;16362:17;16355:47;16419:131;16545:4;16419:131;:::i;:::-;16411:139;;16138:419;;;:::o;16563:180::-;16611:77;16608:1;16601:88;16708:4;16705:1;16698:15;16732:4;16729:1;16722:15;16749:305;16789:3;16808:20;16826:1;16808:20;:::i;:::-;16803:25;;16842:20;16860:1;16842:20;:::i;:::-;16837:25;;16996:1;16928:66;16924:74;16921:1;16918:81;16915:107;;;17002:18;;:::i;:::-;16915:107;17046:1;17043;17039:9;17032:16;;16749:305;;;;:::o;17060:348::-;17100:7;17123:20;17141:1;17123:20;:::i;:::-;17118:25;;17157:20;17175:1;17157:20;:::i;:::-;17152:25;;17345:1;17277:66;17273:74;17270:1;17267:81;17262:1;17255:9;17248:17;17244:105;17241:131;;;17352:18;;:::i;:::-;17241:131;17400:1;17397;17393:9;17382:20;;17060:348;;;;:::o;17414:180::-;17462:77;17459:1;17452:88;17559:4;17556:1;17549:15;17583:4;17580:1;17573:15;17600:185;17640:1;17657:20;17675:1;17657:20;:::i;:::-;17652:25;;17691:20;17709:1;17691:20;:::i;:::-;17686:25;;17730:1;17720:35;;17735:18;;:::i;:::-;17720:35;17777:1;17774;17770:9;17765:14;;17600:185;;;;:::o;17791:191::-;17831:4;17851:20;17869:1;17851:20;:::i;:::-;17846:25;;17885:20;17903:1;17885:20;:::i;:::-;17880:25;;17924:1;17921;17918:8;17915:34;;;17929:18;;:::i;:::-;17915:34;17974:1;17971;17967:9;17959:17;;17791:191;;;;:::o;17988:332::-;18109:4;18147:2;18136:9;18132:18;18124:26;;18160:71;18228:1;18217:9;18213:17;18204:6;18160:71;:::i;:::-;18241:72;18309:2;18298:9;18294:18;18285:6;18241:72;:::i;:::-;17988:332;;;;;:::o;18326:182::-;18466:34;18462:1;18454:6;18450:14;18443:58;18326:182;:::o;18514:366::-;18656:3;18677:67;18741:2;18736:3;18677:67;:::i;:::-;18670:74;;18753:93;18842:3;18753:93;:::i;:::-;18871:2;18866:3;18862:12;18855:19;;18514:366;;;:::o;18886:419::-;19052:4;19090:2;19079:9;19075:18;19067:26;;19139:9;19133:4;19129:20;19125:1;19114:9;19110:17;19103:47;19167:131;19293:4;19167:131;:::i;:::-;19159:139;;18886:419;;;:::o;19311:231::-;19451:34;19447:1;19439:6;19435:14;19428:58;19520:14;19515:2;19507:6;19503:15;19496:39;19311:231;:::o;19548:366::-;19690:3;19711:67;19775:2;19770:3;19711:67;:::i;:::-;19704:74;;19787:93;19876:3;19787:93;:::i;:::-;19905:2;19900:3;19896:12;19889:19;;19548:366;;;:::o;19920:419::-;20086:4;20124:2;20113:9;20109:18;20101:26;;20173:9;20167:4;20163:20;20159:1;20148:9;20144:17;20137:47;20201:131;20327:4;20201:131;:::i;:::-;20193:139;;19920:419;;;:::o;20345:233::-;20485:34;20481:1;20473:6;20469:14;20462:58;20554:16;20549:2;20541:6;20537:15;20530:41;20345:233;:::o;20584:366::-;20726:3;20747:67;20811:2;20806:3;20747:67;:::i;:::-;20740:74;;20823:93;20912:3;20823:93;:::i;:::-;20941:2;20936:3;20932:12;20925:19;;20584:366;;;:::o;20956:419::-;21122:4;21160:2;21149:9;21145:18;21137:26;;21209:9;21203:4;21199:20;21195:1;21184:9;21180:17;21173:47;21237:131;21363:4;21237:131;:::i;:::-;21229:139;;20956:419;;;:::o;21381:85::-;21426:7;21455:5;21444:16;;21381:85;;;:::o;21472:86::-;21507:7;21547:4;21540:5;21536:16;21525:27;;21472:86;;;:::o;21564:60::-;21592:3;21613:5;21606:12;;21564:60;;;:::o;21630:154::-;21686:9;21719:59;21735:42;21744:32;21770:5;21744:32;:::i;:::-;21735:42;:::i;:::-;21719:59;:::i;:::-;21706:72;;21630:154;;;:::o;21790:143::-;21883:43;21920:5;21883:43;:::i;:::-;21878:3;21871:56;21790:143;;:::o;21939:234::-;22038:4;22076:2;22065:9;22061:18;22053:26;;22089:77;22163:1;22152:9;22148:17;22139:6;22089:77;:::i;:::-;21939:234;;;;:::o;22179:182::-;22319:34;22315:1;22307:6;22303:14;22296:58;22179:182;:::o;22367:366::-;22509:3;22530:67;22594:2;22589:3;22530:67;:::i;:::-;22523:74;;22606:93;22695:3;22606:93;:::i;:::-;22724:2;22719:3;22715:12;22708:19;;22367:366;;;:::o;22739:419::-;22905:4;22943:2;22932:9;22928:18;22920:26;;22992:9;22986:4;22982:20;22978:1;22967:9;22963:17;22956:47;23020:131;23146:4;23020:131;:::i;:::-;23012:139;;22739:419;;;:::o;23164:180::-;23212:77;23209:1;23202:88;23309:4;23306:1;23299:15;23333:4;23330:1;23323:15;23350:320;23394:6;23431:1;23425:4;23421:12;23411:22;;23478:1;23472:4;23468:12;23499:18;23489:81;;23555:4;23547:6;23543:17;23533:27;;23489:81;23617:2;23609:6;23606:14;23586:18;23583:38;23580:84;;;23636:18;;:::i;:::-;23580:84;23401:269;23350:320;;;:::o;23676:225::-;23816:34;23812:1;23804:6;23800:14;23793:58;23885:8;23880:2;23872:6;23868:15;23861:33;23676:225;:::o;23907:366::-;24049:3;24070:67;24134:2;24129:3;24070:67;:::i;:::-;24063:74;;24146:93;24235:3;24146:93;:::i;:::-;24264:2;24259:3;24255:12;24248:19;;23907:366;;;:::o;24279:419::-;24445:4;24483:2;24472:9;24468:18;24460:26;;24532:9;24526:4;24522:20;24518:1;24507:9;24503:17;24496:47;24560:131;24686:4;24560:131;:::i;:::-;24552:139;;24279:419;;;:::o;24704:182::-;24844:34;24840:1;24832:6;24828:14;24821:58;24704:182;:::o;24892:366::-;25034:3;25055:67;25119:2;25114:3;25055:67;:::i;:::-;25048:74;;25131:93;25220:3;25131:93;:::i;:::-;25249:2;25244:3;25240:12;25233:19;;24892:366;;;:::o;25264:419::-;25430:4;25468:2;25457:9;25453:18;25445:26;;25517:9;25511:4;25507:20;25503:1;25492:9;25488:17;25481:47;25545:131;25671:4;25545:131;:::i;:::-;25537:139;;25264:419;;;:::o;25689:230::-;25829:34;25825:1;25817:6;25813:14;25806:58;25898:13;25893:2;25885:6;25881:15;25874:38;25689:230;:::o;25925:366::-;26067:3;26088:67;26152:2;26147:3;26088:67;:::i;:::-;26081:74;;26164:93;26253:3;26164:93;:::i;:::-;26282:2;26277:3;26273:12;26266:19;;25925:366;;;:::o;26297:419::-;26463:4;26501:2;26490:9;26486:18;26478:26;;26550:9;26544:4;26540:20;26536:1;26525:9;26521:17;26514:47;26578:131;26704:4;26578:131;:::i;:::-;26570:139;;26297:419;;;:::o;26722:235::-;26862:34;26858:1;26850:6;26846:14;26839:58;26931:18;26926:2;26918:6;26914:15;26907:43;26722:235;:::o;26963:366::-;27105:3;27126:67;27190:2;27185:3;27126:67;:::i;:::-;27119:74;;27202:93;27291:3;27202:93;:::i;:::-;27320:2;27315:3;27311:12;27304:19;;26963:366;;;:::o;27335:419::-;27501:4;27539:2;27528:9;27524:18;27516:26;;27588:9;27582:4;27578:20;27574:1;27563:9;27559:17;27552:47;27616:131;27742:4;27616:131;:::i;:::-;27608:139;;27335:419;;;:::o;27760:228::-;27900:34;27896:1;27888:6;27884:14;27877:58;27969:11;27964:2;27956:6;27952:15;27945:36;27760:228;:::o;27994:366::-;28136:3;28157:67;28221:2;28216:3;28157:67;:::i;:::-;28150:74;;28233:93;28322:3;28233:93;:::i;:::-;28351:2;28346:3;28342:12;28335:19;;27994:366;;;:::o;28366:419::-;28532:4;28570:2;28559:9;28555:18;28547:26;;28619:9;28613:4;28609:20;28605:1;28594:9;28590:17;28583:47;28647:131;28773:4;28647:131;:::i;:::-;28639:139;;28366:419;;;:::o;28791:234::-;28931:34;28927:1;28919:6;28915:14;28908:58;29000:17;28995:2;28987:6;28983:15;28976:42;28791:234;:::o;29031:366::-;29173:3;29194:67;29258:2;29253:3;29194:67;:::i;:::-;29187:74;;29270:93;29359:3;29270:93;:::i;:::-;29388:2;29383:3;29379:12;29372:19;;29031:366;;;:::o;29403:419::-;29569:4;29607:2;29596:9;29592:18;29584:26;;29656:9;29650:4;29646:20;29642:1;29631:9;29627:17;29620:47;29684:131;29810:4;29684:131;:::i;:::-;29676:139;;29403:419;;;:::o;29828:238::-;29968:34;29964:1;29956:6;29952:14;29945:58;30037:21;30032:2;30024:6;30020:15;30013:46;29828:238;:::o;30072:366::-;30214:3;30235:67;30299:2;30294:3;30235:67;:::i;:::-;30228:74;;30311:93;30400:3;30311:93;:::i;:::-;30429:2;30424:3;30420:12;30413:19;;30072:366;;;:::o;30444:419::-;30610:4;30648:2;30637:9;30633:18;30625:26;;30697:9;30691:4;30687:20;30683:1;30672:9;30668:17;30661:47;30725:131;30851:4;30725:131;:::i;:::-;30717:139;;30444:419;;;:::o;30869:181::-;31009:33;31005:1;30997:6;30993:14;30986:57;30869:181;:::o;31056:366::-;31198:3;31219:67;31283:2;31278:3;31219:67;:::i;:::-;31212:74;;31295:93;31384:3;31295:93;:::i;:::-;31413:2;31408:3;31404:12;31397:19;;31056:366;;;:::o;31428:419::-;31594:4;31632:2;31621:9;31617:18;31609:26;;31681:9;31675:4;31671:20;31667:1;31656:9;31652:17;31645:47;31709:131;31835:4;31709:131;:::i;:::-;31701:139;;31428:419;;;:::o;31853:224::-;31993:34;31989:1;31981:6;31977:14;31970:58;32062:7;32057:2;32049:6;32045:15;32038:32;31853:224;:::o;32083:366::-;32225:3;32246:67;32310:2;32305:3;32246:67;:::i;:::-;32239:74;;32322:93;32411:3;32322:93;:::i;:::-;32440:2;32435:3;32431:12;32424:19;;32083:366;;;:::o;32455:419::-;32621:4;32659:2;32648:9;32644:18;32636:26;;32708:9;32702:4;32698:20;32694:1;32683:9;32679:17;32672:47;32736:131;32862:4;32736:131;:::i;:::-;32728:139;;32455:419;;;:::o;32880:177::-;33020:29;33016:1;33008:6;33004:14;32997:53;32880:177;:::o;33063:366::-;33205:3;33226:67;33290:2;33285:3;33226:67;:::i;:::-;33219:74;;33302:93;33391:3;33302:93;:::i;:::-;33420:2;33415:3;33411:12;33404:19;;33063:366;;;:::o;33435:419::-;33601:4;33639:2;33628:9;33624:18;33616:26;;33688:9;33682:4;33678:20;33674:1;33663:9;33659:17;33652:47;33716:131;33842:4;33716:131;:::i;:::-;33708:139;;33435:419;;;:::o;33860:232::-;34000:34;33996:1;33988:6;33984:14;33977:58;34069:15;34064:2;34056:6;34052:15;34045:40;33860:232;:::o;34098:366::-;34240:3;34261:67;34325:2;34320:3;34261:67;:::i;:::-;34254:74;;34337:93;34426:3;34337:93;:::i;:::-;34455:2;34450:3;34446:12;34439:19;;34098:366;;;:::o;34470:419::-;34636:4;34674:2;34663:9;34659:18;34651:26;;34723:9;34717:4;34713:20;34709:1;34698:9;34694:17;34687:47;34751:131;34877:4;34751:131;:::i;:::-;34743:139;;34470:419;;;:::o;34895:230::-;35035:34;35031:1;35023:6;35019:14;35012:58;35104:13;35099:2;35091:6;35087:15;35080:38;34895:230;:::o;35131:366::-;35273:3;35294:67;35358:2;35353:3;35294:67;:::i;:::-;35287:74;;35370:93;35459:3;35370:93;:::i;:::-;35488:2;35483:3;35479:12;35472:19;;35131:366;;;:::o;35503:419::-;35669:4;35707:2;35696:9;35692:18;35684:26;;35756:9;35750:4;35746:20;35742:1;35731:9;35727:17;35720:47;35784:131;35910:4;35784:131;:::i;:::-;35776:139;;35503:419;;;:::o;35928:291::-;36068:34;36064:1;36056:6;36052:14;36045:58;36137:34;36132:2;36124:6;36120:15;36113:59;36206:5;36201:2;36193:6;36189:15;36182:30;35928:291;:::o;36225:366::-;36367:3;36388:67;36452:2;36447:3;36388:67;:::i;:::-;36381:74;;36464:93;36553:3;36464:93;:::i;:::-;36582:2;36577:3;36573:12;36566:19;;36225:366;;;:::o;36597:419::-;36763:4;36801:2;36790:9;36786:18;36778:26;;36850:9;36844:4;36840:20;36836:1;36825:9;36821:17;36814:47;36878:131;37004:4;36878:131;:::i;:::-;36870:139;;36597:419;;;:::o;37022:442::-;37171:4;37209:2;37198:9;37194:18;37186:26;;37222:71;37290:1;37279:9;37275:17;37266:6;37222:71;:::i;:::-;37303:72;37371:2;37360:9;37356:18;37347:6;37303:72;:::i;:::-;37385;37453:2;37442:9;37438:18;37429:6;37385:72;:::i;:::-;37022:442;;;;;;:::o;37470:226::-;37610:34;37606:1;37598:6;37594:14;37587:58;37679:9;37674:2;37666:6;37662:15;37655:34;37470:226;:::o;37702:366::-;37844:3;37865:67;37929:2;37924:3;37865:67;:::i;:::-;37858:74;;37941:93;38030:3;37941:93;:::i;:::-;38059:2;38054:3;38050:12;38043:19;;37702:366;;;:::o;38074:419::-;38240:4;38278:2;38267:9;38263:18;38255:26;;38327:9;38321:4;38317:20;38313:1;38302:9;38298:17;38291:47;38355:131;38481:4;38355:131;:::i;:::-;38347:139;;38074:419;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "2850600",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"APY_RATE_CHANGE_THRESHOLD()": "397",
"PERCENTAGE_DENOMINATOR()": "418",
"claimReward()": "infinite",
"getAPY()": "2481",
"getEarlyUnstakeFeePercentage()": "2549",
"getMaxStakingTokenLimit()": "2482",
"getMinimumStakingAmount()": "2549",
"getStakeDays()": "2525",
"getStakeEndDate()": "2503",
"getStakeStartDate()": "2484",
"getStakingStatus()": "2568",
"getTokenImageUrl()": "infinite",
"getTotalStakedTokens()": "2505",
"getTotalUsers()": "2482",
"getUser(address)": "infinite",
"getUserEstimatedRewards()": "infinite",
"getWithdrawableAmount()": "infinite",
"initialize(address,address,uint256,uint256,uint256,uint256,uint256,uint256,uint256,string)": "infinite",
"isStakeHolder(address)": "2907",
"owner()": "2612",
"renounceOwnership()": "30509",
"stake(uint256)": "infinite",
"stakeForUser(uint256,address)": "infinite",
"toggleStakingStatus()": "28881",
"transferOwnership(address)": "30857",
"unstake(uint256)": "infinite",
"updateEarlyUnstakeFeePercentage(uint256)": "24830",
"updateMaximumStakingAmount(uint256)": "24853",
"updateMinimumStakingAmount(uint256)": "24874",
"updateStakingEndDate(uint256)": "24874",
"withdraw(uint256)": "infinite"
},
"internal": {
"__TokenStaking_init_unchained(address,address,uint256,uint256,uint256,uint256,uint256,uint256,uint256,string memory)": "infinite",
"_calculateRewards(address)": "infinite",
"_getUserEstimatedRewards(address)": "infinite",
"_stakeTokens(uint256,address)": "infinite",
"getCurrentTime()": "22"
}
},
"methodIdentifiers": {
"APY_RATE_CHANGE_THRESHOLD()": "8585d138",
"PERCENTAGE_DENOMINATOR()": "b3cd4254",
"claimReward()": "b88a802f",
"getAPY()": "d2cbf7ad",
"getEarlyUnstakeFeePercentage()": "5e39cd75",
"getMaxStakingTokenLimit()": "bb8febc6",
"getMinimumStakingAmount()": "42a23945",
"getStakeDays()": "f18cce76",
"getStakeEndDate()": "f0116b74",
"getStakeStartDate()": "008e3252",
"getStakingStatus()": "cab9b8fb",
"getTokenImageUrl()": "cfa05301",
"getTotalStakedTokens()": "51d18598",
"getTotalUsers()": "9be572f6",
"getUser(address)": "6f77926b",
"getUserEstimatedRewards()": "4d55b178",
"getWithdrawableAmount()": "90be10cc",
"initialize(address,address,uint256,uint256,uint256,uint256,uint256,uint256,uint256,string)": "3192e825",
"isStakeHolder(address)": "63512159",
"owner()": "8da5cb5b",
"renounceOwnership()": "715018a6",
"stake(uint256)": "a694fc3a",
"stakeForUser(uint256,address)": "70607f5d",
"toggleStakingStatus()": "c5d62b18",
"transferOwnership(address)": "f2fde38b",
"unstake(uint256)": "2e17de78",
"updateEarlyUnstakeFeePercentage(uint256)": "7bb9769d",
"updateMaximumStakingAmount(uint256)": "0c4ca4a6",
"updateMinimumStakingAmount(uint256)": "55f0fe42",
"updateStakingEndDate(uint256)": "3e093572",
"withdraw(uint256)": "2e1a7d4d"
}
},
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "user",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "ClaimReward",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "user",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "EarlyUnStakeFee",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "uint8",
"name": "version",
"type": "uint8"
}
],
"name": "Initialized",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "user",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "Stake",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "user",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "UnStake",
"type": "event"
},
{
"inputs": [],
"name": "APY_RATE_CHANGE_THRESHOLD",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "PERCENTAGE_DENOMINATOR",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "claimReward",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "getAPY",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "getEarlyUnstakeFeePercentage",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "getMaxStakingTokenLimit",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "getMinimumStakingAmount",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "getStakeDays",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "getStakeEndDate",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "getStakeStartDate",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "getStakingStatus",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "getTokenImageUrl",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "getTotalStakedTokens",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "getTotalUsers",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "userAddress",
"type": "address"
}
],
"name": "getUser",
"outputs": [
{
"components": [
{
"internalType": "uint256",
"name": "stakeAmount",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "rewardAmount",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "lastStakeTime",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "lastRewardCalculationTime",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "rewardsClaimedSoFar",
"type": "uint256"
}
],
"internalType": "struct TokenStaking.User",
"name": "",
"type": "tuple"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "getUserEstimatedRewards",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "getWithdrawableAmount",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner_",
"type": "address"
},
{
"internalType": "address",
"name": "tokenAddress_",
"type": "address"
},
{
"internalType": "uint256",
"name": "apyRate_",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "minimumStakingAmount_",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "maxStakeTokenLimit_",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "stakeStartDate_",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "stakeEndDate_",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "stakeDays_",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "earlyUnstakeFeePercentage_",
"type": "uint256"
},
{
"internalType": "string",
"name": "tokenImageUrl_",
"type": "string"
}
],
"name": "initialize",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_user",
"type": "address"
}
],
"name": "isStakeHolder",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_amount",
"type": "uint256"
}
],
"name": "stake",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
},
{
"internalType": "address",
"name": "user",
"type": "address"
}
],
"name": "stakeForUser",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "toggleStakingStatus",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_amount",
"type": "uint256"
}
],
"name": "unstake",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "newPercentage",
"type": "uint256"
}
],
"name": "updateEarlyUnstakeFeePercentage",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "newAmount",
"type": "uint256"
}
],
"name": "updateMaximumStakingAmount",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "newAmount",
"type": "uint256"
}
],
"name": "updateMinimumStakingAmount",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "newDate",
"type": "uint256"
}
],
"name": "updateStakingEndDate",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "withdraw",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Pausable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol";
contract MyToken is ERC20, ERC20Burnable, ERC20Pausable, Ownable, ERC20Permit {
constructor(address initialOwner)
ERC20("MyToken", "MTK")
Ownable(initialOwner)
ERC20Permit("MyToken")
{}
function pause() public onlyOwner {
_pause();
}
function unpause() public onlyOwner {
_unpause();
}
function mint(address to, uint256 amount) public onlyOwner {
_mint(to, amount);
}
// The following functions are overrides required by Solidity.
function _update(address from, address to, uint256 value)
internal
override(ERC20, ERC20Pausable)
{
super._update(from, to, value);
}
}
// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Address.sol
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// File: @openzeppelin/contracts/proxy/utils/Initializable.sol
// OpenZeppelin Contracts (last updated v4.7.0) (proxy/utils/Initializable.sol)
pragma solidity ^0.8.2;
/**
* @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
* behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an
* external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
* function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
*
* The initialization functions use a version number. Once a version number is used, it is consumed and cannot be
* reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in
* case an upgrade adds a module that needs to be initialized.
*
* For example:
*
* [.hljs-theme-light.nopadding]
* ```
* contract MyToken is ERC20Upgradeable {
* function initialize() initializer public {
* __ERC20_init("MyToken", "MTK");
* }
* }
* contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {
* function initializeV2() reinitializer(2) public {
* __ERC20Permit_init("MyToken");
* }
* }
* ```
*
* TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
* possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
*
* CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
* that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
*
* [CAUTION]
* ====
* Avoid leaving a contract uninitialized.
*
* An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation
* contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke
* the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:
*
* [.hljs-theme-light.nopadding]
* ```
* /// @custom:oz-upgrades-unsafe-allow constructor
* constructor() {
* _disableInitializers();
* }
* ```
* ====
*/
abstract contract Initializable {
/**
* @dev Indicates that the contract has been initialized.
* @custom:oz-retyped-from bool
*/
uint8 private _initialized;
/**
* @dev Indicates that the contract is in the process of being initialized.
*/
bool private _initializing;
/**
* @dev Triggered when the contract has been initialized or reinitialized.
*/
event Initialized(uint8 version);
/**
* @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,
* `onlyInitializing` functions can be used to initialize parent contracts. Equivalent to `reinitializer(1)`.
*/
modifier initializer() {
bool isTopLevelCall = !_initializing;
require(
(isTopLevelCall && _initialized < 1) || (!Address.isContract(address(this)) && _initialized == 1),
"Initializable: contract is already initialized"
);
_initialized = 1;
if (isTopLevelCall) {
_initializing = true;
}
_;
if (isTopLevelCall) {
_initializing = false;
emit Initialized(1);
}
}
/**
* @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the
* contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be
* used to initialize parent contracts.
*
* `initializer` is equivalent to `reinitializer(1)`, so a reinitializer may be used after the original
* initialization step. This is essential to configure modules that are added through upgrades and that require
* initialization.
*
* Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in
* a contract, executing them in the right order is up to the developer or operator.
*/
modifier reinitializer(uint8 version) {
require(!_initializing && _initialized < version, "Initializable: contract is already initialized");
_initialized = version;
_initializing = true;
_;
_initializing = false;
emit Initialized(version);
}
/**
* @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
* {initializer} and {reinitializer} modifiers, directly or indirectly.
*/
modifier onlyInitializing() {
require(_initializing, "Initializable: contract is not initializing");
_;
}
/**
* @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.
* Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized
* to any version. It is recommended to use this to lock implementation contracts that are designed to be called
* through proxies.
*/
function _disableInitializers() internal virtual {
require(!_initializing, "Initializable: contract is initializing");
if (_initialized < type(uint8).max) {
_initialized = type(uint8).max;
emit Initialized(type(uint8).max);
}
}
}
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and making it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
// On the first call to nonReentrant, _notEntered will be true
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
_;
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
}
// File: @openzeppelin/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// File: @openzeppelin/contracts/access/Ownable.sol
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 amount
) external returns (bool);
}
// File: TokenStaking.sol
pragma solidity ^0.8.0;
contract TokenStaking is Ownable, ReentrancyGuard, Initializable {
// Struct to store the User's Details
struct User {
uint256 stakeAmount; // Stake Amount
uint256 rewardAmount; // Reward Amount
uint256 lastStakeTime; // Last Stake Timestamp
uint256 lastRewardCalculationTime; // Last Reward Calculation Timestamp
uint256 rewardsClaimedSoFar; // Sum of rewards claimed so far
}
uint256 _minimumStakingAmount; // minimum staking amount
uint256 _maxStakeTokenLimit; // maximum staking token limit for program
uint256 _stakeEndDate; // end date for program
uint256 _stakeStartDate; // end date for program
uint256 _totalStakedTokens; // Total no of tokens that are staked
uint256 _totalUsers; // Total no of users
uint256 _stakeDays; // staking days
uint256 _earlyUnstakeFeePercentage; // early unstake fee percentage
bool _isStakingPaused; // staking status
// Token contract address
address private _tokenAddress;
// APY
uint256 _apyRate;
uint256 public constant PERCENTAGE_DENOMINATOR = 10000;
uint256 public constant APY_RATE_CHANGE_THRESHOLD = 10;
// User address => User
mapping(address => User) private _users;
event Stake(address indexed user, uint256 amount);
event UnStake(address indexed user, uint256 amount);
event EarlyUnStakeFee(address indexed user, uint256 amount);
event ClaimReward(address indexed user, uint256 amount);
modifier whenTreasuryHasBalance(uint256 amount) {
require(
IERC20(_tokenAddress).balanceOf(address(this)) >= amount,
"TokenStaking: insufficient funds in the treasury"
);
_;
}
function initialize(
address owner_,
address tokenAddress_,
uint256 apyRate_,
uint256 minimumStakingAmount_,
uint256 maxStakeTokenLimit_,
uint256 stakeStartDate_,
uint256 stakeEndDate_,
uint256 stakeDays_,
uint256 earlyUnstakeFeePercentage_
) public virtual initializer {
__TokenStaking_init_unchained(
owner_,
tokenAddress_,
apyRate_,
minimumStakingAmount_,
maxStakeTokenLimit_,
stakeStartDate_,
stakeEndDate_,
stakeDays_,
earlyUnstakeFeePercentage_
);
}
function __TokenStaking_init_unchained(
address owner_,
address tokenAddress_,
uint256 apyRate_,
uint256 minimumStakingAmount_,
uint256 maxStakeTokenLimit_,
uint256 stakeStartDate_,
uint256 stakeEndDate_,
uint256 stakeDays_,
uint256 earlyUnstakeFeePercentage_
) internal onlyInitializing {
require(_apyRate <= 10000, "TokenStaking: apy rate should be less than 10000");
require(stakeDays_ > 0, "TokenStaking: stake days must be non-zero");
require(tokenAddress_ != address(0), "TokenStaking: token address cannot be 0 address");
require(stakeStartDate_ < stakeEndDate_, "TokenStaking: start date must be less than end date");
_transferOwnership(owner_);
_tokenAddress = tokenAddress_;
_apyRate = apyRate_;
_minimumStakingAmount = minimumStakingAmount_;
_maxStakeTokenLimit = maxStakeTokenLimit_;
_stakeStartDate = stakeStartDate_;
_stakeEndDate = stakeEndDate_;
_stakeDays = stakeDays_ * 1 days;
_earlyUnstakeFeePercentage = earlyUnstakeFeePercentage_;
}
/* View Methods Start */
/**
* @notice This function is used to get the minimum staking amount
*/
function getMinimumStakingAmount() external view returns (uint256) {
return _minimumStakingAmount;
}
/**
* @notice This function is used to get the maximum staking token limit for program
*/
function getMaxStakingTokenLimit() external view returns (uint256) {
return _maxStakeTokenLimit;
}
/**
* @notice This function is used to get the staking start date for program
*/
function getStakeStartDate() external view returns (uint256) {
return _stakeStartDate;
}
/**
* @notice This function is used to get the staking end date for program
*/
function getStakeEndDate() external view returns (uint256) {
return _stakeEndDate;
}
/**
* @notice This function is used to get the total no of tokens that are staked
*/
function getTotalStakedTokens() external view returns (uint256) {
return _totalStakedTokens;
}
/**
* @notice This function is used to get the total no of users
*/
function getTotalUsers() external view returns (uint256) {
return _totalUsers;
}
/**
* @notice This function is used to get stake days
*/
function getStakeDays() external view returns (uint256) {
return _stakeDays;
}
/**
* @notice This function is used to get early unstake fee percentage
*/
function getEarlyUnstakeFeePercentage() external view returns (uint256) {
return _earlyUnstakeFeePercentage;
}
/**
* @notice This function is used to get staking status
*/
function getStakingStatus() external view returns (bool) {
return _isStakingPaused;
}
/**
* @notice This function is used to get the current APY Rate
* @return Current APY Rate
*/
function getAPY() external view returns (uint256) {
return _apyRate;
}
/**
* @notice This function is used to get msg.sender's estimated reward amount
* @return msg.sender's estimated reward amount
*/
function getUserEstimatedRewards() external view returns (uint256) {
(uint256 amount, ) = _getUserEstimatedRewards(msg.sender);
return _users[msg.sender].rewardAmount + amount;
}
/**
* @notice This function is used to get withdrawable amount from contract
*/
function getWithdrawableAmount() external view returns (uint256) {
return IERC20(_tokenAddress).balanceOf(address(this)) - _totalStakedTokens;
}
/**
* @notice This function is used to get User's details
* @param userAddress User's address to get details of
* @return User Struct
*/
function getUser(address userAddress) external view returns (User memory) {
return _users[userAddress];
}
/**
* @notice This function is used to check if a user is a stakeholder
* @param _user Address of the user to check
* @return True if user is a stakeholder, false otherwise
*/
function isStakeHolder(address _user) external view returns (bool) {
return _users[_user].stakeAmount != 0;
}
/* View Methods End */
/* Owner Methods Start */
/**
* @notice This function is used to update minimum staking amount
*/
function updateMinimumStakingAmount(uint256 newAmount) external onlyOwner {
_minimumStakingAmount = newAmount;
}
/**
* @notice This function is used to update maximum staking amount
*/
function updateMaximumStakingAmount(uint256 newAmount) external onlyOwner {
_maxStakeTokenLimit = newAmount;
}
/**
* @notice This function is used to update staking end date
*/
function updateStakingEndDate(uint256 newDate) external onlyOwner {
_stakeEndDate = newDate;
}
/**
* @notice This function is used to update early unstake fee percentage
*/
function updateEarlyUnstakeFeePercentage(uint256 newPercentage) external onlyOwner {
_earlyUnstakeFeePercentage = newPercentage;
}
/**
* @notice stake tokens for specific user
* @dev This function can be used to stake tokens for specific user
*
* @param amount the amount to stake
* @param user user's address
*/
function stakeForUser(uint256 amount, address user) external onlyOwner nonReentrant {
_stakeTokens(amount, user);
}
/**
* @notice enable/disable staking
* @dev This function can be used to toggle staking status
*/
function toggleStakingStatus() external onlyOwner {
_isStakingPaused = !_isStakingPaused;
}
/**
* @notice Withdraw the specified amount if possible.
*
* @dev This function can be used to withdraw the available tokens
* with this contract to the caller
*
* @param amount the amount to withdraw
*/
function withdraw(uint256 amount) external onlyOwner nonReentrant {
require(this.getWithdrawableAmount() >= amount, "TokenStaking: not enough withdrawable tokens");
IERC20(_tokenAddress).transfer(msg.sender, amount);
}
/* Owner Methods End */
/* User Methods Start */
/**
* @notice This function is used to stake tokens
* @param _amount Amount of tokens to be staked
*/
function stake(uint256 _amount) external nonReentrant {
_stakeTokens(_amount, msg.sender);
}
function _stakeTokens(uint256 _amount, address user_) private {
require(!_isStakingPaused, "TokenStaking: staking is paused");
uint256 currentTime = getCurrentTime();
require(currentTime > _stakeStartDate, "TokenStaking: staking not started yet");
require(currentTime < _stakeEndDate, "TokenStaking: staking ended");
require(_totalStakedTokens + _amount <= _maxStakeTokenLimit, "TokenStaking: max staking token limit reached");
require(_amount > 0, "TokenStaking: stake amount must be non-zero");
require(
_amount >= _minimumStakingAmount,
"TokenStaking: stake amount must greater than minimum amount allowed"
);
if (_users[user_].stakeAmount != 0) {
_calculateRewards(user_);
} else {
_users[user_].lastRewardCalculationTime = currentTime;
_totalUsers += 1;
}
_users[user_].stakeAmount += _amount;
_users[user_].lastStakeTime = currentTime;
_totalStakedTokens += _amount;
require(
IERC20(_tokenAddress).transferFrom(msg.sender, address(this), _amount),
"TokenStaking: failed to transfer tokens"
);
emit Stake(user_, _amount);
}
/**
* @notice This function is used to unstake tokens
* @param _amount Amount of tokens to be unstaked
*/
function unstake(uint256 _amount) external nonReentrant whenTreasuryHasBalance(_amount) {
address user = msg.sender;
require(_amount != 0, "TokenStaking: amount should be non-zero");
require(this.isStakeHolder(user), "TokenStaking: not a stakeholder");
require(_users[user].stakeAmount >= _amount, "TokenStaking: not enough stake to unstake");
// Calculate User's rewards until now
_calculateRewards(user);
uint256 feeEarlyUnstake;
if (getCurrentTime() <= _users[user].lastStakeTime + _stakeDays) {
feeEarlyUnstake = ((_amount * _earlyUnstakeFeePercentage) / PERCENTAGE_DENOMINATOR);
emit EarlyUnStakeFee(user, feeEarlyUnstake);
}
uint256 amountToUnstake = _amount - feeEarlyUnstake;
_users[user].stakeAmount -= _amount;
_totalStakedTokens -= _amount;
if (_users[user].stakeAmount == 0) {
// delete _users[user];
_totalUsers -= 1;
}
require(IERC20(_tokenAddress).transfer(user, amountToUnstake), "TokenStaking: failed to transfer");
emit UnStake(user, _amount);
}
/**
* @notice This function is used to claim user's rewards
*/
function claimReward() external nonReentrant whenTreasuryHasBalance(_users[msg.sender].rewardAmount) {
_calculateRewards(msg.sender);
uint256 rewardAmount = _users[msg.sender].rewardAmount;
require(rewardAmount > 0, "TokenStaking: no reward to claim");
require(IERC20(_tokenAddress).transfer(msg.sender, rewardAmount), "TokenStaking: failed to transfer");
_users[msg.sender].rewardAmount = 0;
_users[msg.sender].rewardsClaimedSoFar += rewardAmount;
emit ClaimReward(msg.sender, rewardAmount);
}
/* User Methods End */
/* Private Helper Methods Start */
/**
* @notice This function is used to calculate rewards for a user
* @param _user Address of the user
*/
function _calculateRewards(address _user) private {
(uint256 userReward, uint256 currentTime) = _getUserEstimatedRewards(_user);
_users[_user].rewardAmount += userReward;
_users[_user].lastRewardCalculationTime = currentTime;
}
/**
* @notice This function is used to get estimated rewards for a user
* @param _user Address of the user
* @return Estimated rewards for the user
*/
function _getUserEstimatedRewards(address _user) private view returns (uint256, uint256) {
uint256 userReward;
uint256 userTimestamp = _users[_user].lastRewardCalculationTime;
uint256 currentTime = getCurrentTime();
if (currentTime > _users[_user].lastStakeTime + _stakeDays) {
currentTime = _users[_user].lastStakeTime + _stakeDays;
}
uint256 totalStakedTime = currentTime - userTimestamp;
userReward += ((totalStakedTime * _users[_user].stakeAmount * _apyRate) / 365 days) / PERCENTAGE_DENOMINATOR;
return (userReward, currentTime);
}
/* Private Helper Methods End */
function getCurrentTime() internal view virtual returns (uint256) {
return block.timestamp;
}
}
import "./TokenStaking.sol";
pragma solidity ^0.8.0;
contract TokenStakingFactory is Ownable, ReentrancyGuard, Initializable {
// Lista de direcciones de contratos TokenStaking
address[] private deployedStakingContracts;
// Evento para la creación de un contrato TokenStaking
event StakingContractCreated(address indexed stakingContract);
/**
* @notice Esta función se utiliza para crear un nuevo contrato TokenStaking
*/
function createTokenStaking() external onlyOwner {
TokenStaking newStakingContract = new TokenStaking();
deployedStakingContracts.push(address(newStakingContract));
emit StakingContractCreated(address(newStakingContract));
}
/**
* @notice Esta función se utiliza para obtener la lista de direcciones de contratos TokenStaking creados
* @return Lista de direcciones de contratos TokenStaking
*/
function getDeployedStakingContracts() external view returns (address[] memory) {
return deployedStakingContracts;
}
}
// File: contracts/TokenStaking.sol
// File: @openzeppelin/contracts/utils/Address.sol
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// File: @openzeppelin/contracts/proxy/utils/Initializable.sol
// OpenZeppelin Contracts (last updated v4.7.0) (proxy/utils/Initializable.sol)
pragma solidity ^0.8.2;
/**
* @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
* behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an
* external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
* function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
*
* The initialization functions use a version number. Once a version number is used, it is consumed and cannot be
* reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in
* case an upgrade adds a module that needs to be initialized.
*
* For example:
*
* [.hljs-theme-light.nopadding]
* ```
* contract MyToken is ERC20Upgradeable {
* function initialize() initializer public {
* __ERC20_init("MyToken", "MTK");
* }
* }
* contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {
* function initializeV2() reinitializer(2) public {
* __ERC20Permit_init("MyToken");
* }
* }
* ```
*
* TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
* possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
*
* CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
* that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
*
* [CAUTION]
* ====
* Avoid leaving a contract uninitialized.
*
* An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation
* contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke
* the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:
*
* [.hljs-theme-light.nopadding]
* ```
* /// @custom:oz-upgrades-unsafe-allow constructor
* constructor() {
* _disableInitializers();
* }
* ```
* ====
*/
abstract contract Initializable {
/**
* @dev Indicates that the contract has been initialized.
* @custom:oz-retyped-from bool
*/
uint8 private _initialized;
/**
* @dev Indicates that the contract is in the process of being initialized.
*/
bool private _initializing;
/**
* @dev Triggered when the contract has been initialized or reinitialized.
*/
event Initialized(uint8 version);
/**
* @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,
* `onlyInitializing` functions can be used to initialize parent contracts. Equivalent to `reinitializer(1)`.
*/
modifier initializer() {
bool isTopLevelCall = !_initializing;
require(
(isTopLevelCall && _initialized < 1) || (!Address.isContract(address(this)) && _initialized == 1),
"Initializable: contract is already initialized"
);
_initialized = 1;
if (isTopLevelCall) {
_initializing = true;
}
_;
if (isTopLevelCall) {
_initializing = false;
emit Initialized(1);
}
}
/**
* @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the
* contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be
* used to initialize parent contracts.
*
* `initializer` is equivalent to `reinitializer(1)`, so a reinitializer may be used after the original
* initialization step. This is essential to configure modules that are added through upgrades and that require
* initialization.
*
* Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in
* a contract, executing them in the right order is up to the developer or operator.
*/
modifier reinitializer(uint8 version) {
require(!_initializing && _initialized < version, "Initializable: contract is already initialized");
_initialized = version;
_initializing = true;
_;
_initializing = false;
emit Initialized(version);
}
/**
* @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
* {initializer} and {reinitializer} modifiers, directly or indirectly.
*/
modifier onlyInitializing() {
require(_initializing, "Initializable: contract is not initializing");
_;
}
/**
* @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.
* Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized
* to any version. It is recommended to use this to lock implementation contracts that are designed to be called
* through proxies.
*/
function _disableInitializers() internal virtual {
require(!_initializing, "Initializable: contract is initializing");
if (_initialized < type(uint8).max) {
_initialized = type(uint8).max;
emit Initialized(type(uint8).max);
}
}
}
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and making it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
// On the first call to nonReentrant, _notEntered will be true
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
_;
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
}
// File: @openzeppelin/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// File: @openzeppelin/contracts/access/Ownable.sol
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 amount
) external returns (bool);
}
// File: TokenStaking.sol
pragma solidity ^0.8.0;
contract TokenStaking is Ownable, ReentrancyGuard, Initializable {
// Struct to store the User's Details
struct User {
uint256 stakeAmount; // Stake Amount
uint256 rewardAmount; // Reward Amount
uint256 lastStakeTime; // Last Stake Timestamp
uint256 lastRewardCalculationTime; // Last Reward Calculation Timestamp
uint256 rewardsClaimedSoFar; // Sum of rewards claimed so far
}
uint256 _minimumStakingAmount; // minimum staking amount
uint256 _maxStakeTokenLimit; // maximum staking token limit for program
uint256 _stakeEndDate; // end date for program
uint256 _stakeStartDate; // end date for program
uint256 _totalStakedTokens; // Total no of tokens that are staked
uint256 _totalUsers; // Total no of users
uint256 _stakeDays; // staking days
uint256 _earlyUnstakeFeePercentage; // early unstake fee percentage
bool _isStakingPaused; // staking status
// Token contract address
address private _tokenAddress;
// APY
uint256 _apyRate;
uint256 public constant PERCENTAGE_DENOMINATOR = 10000;
uint256 public constant APY_RATE_CHANGE_THRESHOLD = 10;
// User address => User
mapping(address => User) private _users;
event Stake(address indexed user, uint256 amount);
event UnStake(address indexed user, uint256 amount);
event EarlyUnStakeFee(address indexed user, uint256 amount);
event ClaimReward(address indexed user, uint256 amount);
modifier whenTreasuryHasBalance(uint256 amount) {
require(
IERC20(_tokenAddress).balanceOf(address(this)) >= amount,
"TokenStaking: insufficient funds in the treasury"
);
_;
}
function initialize(
address owner_,
address tokenAddress_,
uint256 apyRate_,
uint256 minimumStakingAmount_,
uint256 maxStakeTokenLimit_,
uint256 stakeStartDate_,
uint256 stakeEndDate_,
uint256 stakeDays_,
uint256 earlyUnstakeFeePercentage_
) public virtual initializer {
__TokenStaking_init_unchained(
owner_,
tokenAddress_,
apyRate_,
minimumStakingAmount_,
maxStakeTokenLimit_,
stakeStartDate_,
stakeEndDate_,
stakeDays_,
earlyUnstakeFeePercentage_
);
}
function __TokenStaking_init_unchained(
address owner_,
address tokenAddress_,
uint256 apyRate_,
uint256 minimumStakingAmount_,
uint256 maxStakeTokenLimit_,
uint256 stakeStartDate_,
uint256 stakeEndDate_,
uint256 stakeDays_,
uint256 earlyUnstakeFeePercentage_
) internal onlyInitializing {
require(_apyRate <= 10000, "TokenStaking: apy rate should be less than 10000");
require(stakeDays_ > 0, "TokenStaking: stake days must be non-zero");
require(tokenAddress_ != address(0), "TokenStaking: token address cannot be 0 address");
require(stakeStartDate_ < stakeEndDate_, "TokenStaking: start date must be less than end date");
_transferOwnership(owner_);
_tokenAddress = tokenAddress_;
_apyRate = apyRate_;
_minimumStakingAmount = minimumStakingAmount_;
_maxStakeTokenLimit = maxStakeTokenLimit_;
_stakeStartDate = stakeStartDate_;
_stakeEndDate = stakeEndDate_;
_stakeDays = stakeDays_ * 1 days;
_earlyUnstakeFeePercentage = earlyUnstakeFeePercentage_;
}
/* View Methods Start */
/**
* @notice This function is used to get the minimum staking amount
*/
function getMinimumStakingAmount() external view returns (uint256) {
return _minimumStakingAmount;
}
/**
* @notice This function is used to get the maximum staking token limit for program
*/
function getMaxStakingTokenLimit() external view returns (uint256) {
return _maxStakeTokenLimit;
}
/**
* @notice This function is used to get the staking start date for program
*/
function getStakeStartDate() external view returns (uint256) {
return _stakeStartDate;
}
/**
* @notice This function is used to get the staking end date for program
*/
function getStakeEndDate() external view returns (uint256) {
return _stakeEndDate;
}
/**
* @notice This function is used to get the total no of tokens that are staked
*/
function getTotalStakedTokens() external view returns (uint256) {
return _totalStakedTokens;
}
/**
* @notice This function is used to get the total no of users
*/
function getTotalUsers() external view returns (uint256) {
return _totalUsers;
}
/**
* @notice This function is used to get stake days
*/
function getStakeDays() external view returns (uint256) {
return _stakeDays;
}
/**
* @notice This function is used to get early unstake fee percentage
*/
function getEarlyUnstakeFeePercentage() external view returns (uint256) {
return _earlyUnstakeFeePercentage;
}
/**
* @notice This function is used to get staking status
*/
function getStakingStatus() external view returns (bool) {
return _isStakingPaused;
}
/**
* @notice This function is used to get the current APY Rate
* @return Current APY Rate
*/
function getAPY() external view returns (uint256) {
return _apyRate;
}
/**
* @notice This function is used to get msg.sender's estimated reward amount
* @return msg.sender's estimated reward amount
*/
function getUserEstimatedRewards() external view returns (uint256) {
(uint256 amount, ) = _getUserEstimatedRewards(msg.sender);
return _users[msg.sender].rewardAmount + amount;
}
/**
* @notice This function is used to get withdrawable amount from contract
*/
function getWithdrawableAmount() external view returns (uint256) {
return IERC20(_tokenAddress).balanceOf(address(this)) - _totalStakedTokens;
}
/**
* @notice This function is used to get User's details
* @param userAddress User's address to get details of
* @return User Struct
*/
function getUser(address userAddress) external view returns (User memory) {
return _users[userAddress];
}
/**
* @notice This function is used to check if a user is a stakeholder
* @param _user Address of the user to check
* @return True if user is a stakeholder, false otherwise
*/
function isStakeHolder(address _user) external view returns (bool) {
return _users[_user].stakeAmount != 0;
}
/* View Methods End */
/* Owner Methods Start */
/**
* @notice This function is used to update minimum staking amount
*/
function updateMinimumStakingAmount(uint256 newAmount) external onlyOwner {
_minimumStakingAmount = newAmount;
}
/**
* @notice This function is used to update maximum staking amount
*/
function updateMaximumStakingAmount(uint256 newAmount) external onlyOwner {
_maxStakeTokenLimit = newAmount;
}
/**
* @notice This function is used to update staking end date
*/
function updateStakingEndDate(uint256 newDate) external onlyOwner {
_stakeEndDate = newDate;
}
/**
* @notice This function is used to update early unstake fee percentage
*/
function updateEarlyUnstakeFeePercentage(uint256 newPercentage) external onlyOwner {
_earlyUnstakeFeePercentage = newPercentage;
}
/**
* @notice stake tokens for specific user
* @dev This function can be used to stake tokens for specific user
*
* @param amount the amount to stake
* @param user user's address
*/
function stakeForUser(uint256 amount, address user) external onlyOwner nonReentrant {
_stakeTokens(amount, user);
}
/**
* @notice enable/disable staking
* @dev This function can be used to toggle staking status
*/
function toggleStakingStatus() external onlyOwner {
_isStakingPaused = !_isStakingPaused;
}
/**
* @notice Withdraw the specified amount if possible.
*
* @dev This function can be used to withdraw the available tokens
* with this contract to the caller
*
* @param amount the amount to withdraw
*/
function withdraw(uint256 amount) external onlyOwner nonReentrant {
require(this.getWithdrawableAmount() >= amount, "TokenStaking: not enough withdrawable tokens");
IERC20(_tokenAddress).transfer(msg.sender, amount);
}
/* Owner Methods End */
/* User Methods Start */
/**
* @notice This function is used to stake tokens
* @param _amount Amount of tokens to be staked
*/
function stake(uint256 _amount) external nonReentrant {
_stakeTokens(_amount, msg.sender);
}
function _stakeTokens(uint256 _amount, address user_) private {
require(!_isStakingPaused, "TokenStaking: staking is paused");
uint256 currentTime = getCurrentTime();
require(currentTime > _stakeStartDate, "TokenStaking: staking not started yet");
require(currentTime < _stakeEndDate, "TokenStaking: staking ended");
require(_totalStakedTokens + _amount <= _maxStakeTokenLimit, "TokenStaking: max staking token limit reached");
require(_amount > 0, "TokenStaking: stake amount must be non-zero");
require(
_amount >= _minimumStakingAmount,
"TokenStaking: stake amount must greater than minimum amount allowed"
);
if (_users[user_].stakeAmount != 0) {
_calculateRewards(user_);
} else {
_users[user_].lastRewardCalculationTime = currentTime;
_totalUsers += 1;
}
_users[user_].stakeAmount += _amount;
_users[user_].lastStakeTime = currentTime;
_totalStakedTokens += _amount;
require(
IERC20(_tokenAddress).transferFrom(msg.sender, address(this), _amount),
"TokenStaking: failed to transfer tokens"
);
emit Stake(user_, _amount);
}
/**
* @notice This function is used to unstake tokens
* @param _amount Amount of tokens to be unstaked
*/
function unstake(uint256 _amount) external nonReentrant whenTreasuryHasBalance(_amount) {
address user = msg.sender;
require(_amount != 0, "TokenStaking: amount should be non-zero");
require(this.isStakeHolder(user), "TokenStaking: not a stakeholder");
require(_users[user].stakeAmount >= _amount, "TokenStaking: not enough stake to unstake");
// Calculate User's rewards until now
_calculateRewards(user);
uint256 feeEarlyUnstake;
if (getCurrentTime() <= _users[user].lastStakeTime + _stakeDays) {
feeEarlyUnstake = ((_amount * _earlyUnstakeFeePercentage) / PERCENTAGE_DENOMINATOR);
emit EarlyUnStakeFee(user, feeEarlyUnstake);
}
uint256 amountToUnstake = _amount - feeEarlyUnstake;
_users[user].stakeAmount -= _amount;
_totalStakedTokens -= _amount;
if (_users[user].stakeAmount == 0) {
// delete _users[user];
_totalUsers -= 1;
}
require(IERC20(_tokenAddress).transfer(user, amountToUnstake), "TokenStaking: failed to transfer");
emit UnStake(user, _amount);
}
/**
* @notice This function is used to claim user's rewards
*/
function claimReward() external nonReentrant whenTreasuryHasBalance(_users[msg.sender].rewardAmount) {
_calculateRewards(msg.sender);
uint256 rewardAmount = _users[msg.sender].rewardAmount;
require(rewardAmount > 0, "TokenStaking: no reward to claim");
require(IERC20(_tokenAddress).transfer(msg.sender, rewardAmount), "TokenStaking: failed to transfer");
_users[msg.sender].rewardAmount = 0;
_users[msg.sender].rewardsClaimedSoFar += rewardAmount;
emit ClaimReward(msg.sender, rewardAmount);
}
/* User Methods End */
/* Private Helper Methods Start */
/**
* @notice This function is used to calculate rewards for a user
* @param _user Address of the user
*/
function _calculateRewards(address _user) private {
(uint256 userReward, uint256 currentTime) = _getUserEstimatedRewards(_user);
_users[_user].rewardAmount += userReward;
_users[_user].lastRewardCalculationTime = currentTime;
}
/**
* @notice This function is used to get estimated rewards for a user
* @param _user Address of the user
* @return Estimated rewards for the user
*/
function _getUserEstimatedRewards(address _user) private view returns (uint256, uint256) {
uint256 userReward;
uint256 userTimestamp = _users[_user].lastRewardCalculationTime;
uint256 currentTime = getCurrentTime();
if (currentTime > _users[_user].lastStakeTime + _stakeDays) {
currentTime = _users[_user].lastStakeTime + _stakeDays;
}
uint256 totalStakedTime = currentTime - userTimestamp;
userReward += ((totalStakedTime * _users[_user].stakeAmount * _apyRate) / 365 days) / PERCENTAGE_DENOMINATOR;
return (userReward, currentTime);
}
/* Private Helper Methods End */
function getCurrentTime() internal view virtual returns (uint256) {
return block.timestamp;
}
}
// File: contracts/StakingFactory.sol
pragma solidity ^0.8.0;
contract TokenStakingFactory is Ownable, ReentrancyGuard, Initializable {
// Resto del código del contrato TokenStakingFactory...
// Lista de direcciones de contratos TokenStaking
address[] public deployedStakingContracts;
// Evento para la creación de un contrato TokenStaking
event StakingContractCreated(address indexed stakingContract);
/**
* @notice Esta función se utiliza para crear un nuevo contrato TokenStaking
*/
function createTokenStaking() external onlyOwner {
TokenStaking newStakingContract = new TokenStaking();
deployedStakingContracts.push(address(newStakingContract));
emit StakingContractCreated(address(newStakingContract));
}
/**
* @notice Esta función se utiliza para obtener la lista de direcciones de contratos TokenStaking creados
* @return Lista de direcciones de contratos TokenStaking
*/
function getDeployedStakingContracts() external view returns (address[] memory) {
return deployedStakingContracts;
}
}
// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Address.sol
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// File: @openzeppelin/contracts/proxy/utils/Initializable.sol
// OpenZeppelin Contracts (last updated v4.7.0) (proxy/utils/Initializable.sol)
pragma solidity ^0.8.2;
/**
* @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
* behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an
* external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
* function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
*
* The initialization functions use a version number. Once a version number is used, it is consumed and cannot be
* reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in
* case an upgrade adds a module that needs to be initialized.
*
* For example:
*
* [.hljs-theme-light.nopadding]
* ```
* contract MyToken is ERC20Upgradeable {
* function initialize() initializer public {
* __ERC20_init("MyToken", "MTK");
* }
* }
* contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {
* function initializeV2() reinitializer(2) public {
* __ERC20Permit_init("MyToken");
* }
* }
* ```
*
* TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
* possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
*
* CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
* that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
*
* [CAUTION]
* ====
* Avoid leaving a contract uninitialized.
*
* An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation
* contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke
* the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:
*
* [.hljs-theme-light.nopadding]
* ```
* /// @custom:oz-upgrades-unsafe-allow constructor
* constructor() {
* _disableInitializers();
* }
* ```
* ====
*/
abstract contract Initializable {
/**
* @dev Indicates that the contract has been initialized.
* @custom:oz-retyped-from bool
*/
uint8 private _initialized;
/**
* @dev Indicates that the contract is in the process of being initialized.
*/
bool private _initializing;
/**
* @dev Triggered when the contract has been initialized or reinitialized.
*/
event Initialized(uint8 version);
/**
* @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,
* `onlyInitializing` functions can be used to initialize parent contracts. Equivalent to `reinitializer(1)`.
*/
modifier initializer() {
bool isTopLevelCall = !_initializing;
require(
(isTopLevelCall && _initialized < 1) || (!Address.isContract(address(this)) && _initialized == 1),
"Initializable: contract is already initialized"
);
_initialized = 1;
if (isTopLevelCall) {
_initializing = true;
}
_;
if (isTopLevelCall) {
_initializing = false;
emit Initialized(1);
}
}
/**
* @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the
* contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be
* used to initialize parent contracts.
*
* `initializer` is equivalent to `reinitializer(1)`, so a reinitializer may be used after the original
* initialization step. This is essential to configure modules that are added through upgrades and that require
* initialization.
*
* Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in
* a contract, executing them in the right order is up to the developer or operator.
*/
modifier reinitializer(uint8 version) {
require(!_initializing && _initialized < version, "Initializable: contract is already initialized");
_initialized = version;
_initializing = true;
_;
_initializing = false;
emit Initialized(version);
}
/**
* @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
* {initializer} and {reinitializer} modifiers, directly or indirectly.
*/
modifier onlyInitializing() {
require(_initializing, "Initializable: contract is not initializing");
_;
}
/**
* @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.
* Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized
* to any version. It is recommended to use this to lock implementation contracts that are designed to be called
* through proxies.
*/
function _disableInitializers() internal virtual {
require(!_initializing, "Initializable: contract is initializing");
if (_initialized < type(uint8).max) {
_initialized = type(uint8).max;
emit Initialized(type(uint8).max);
}
}
}
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and making it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
// On the first call to nonReentrant, _notEntered will be true
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
_;
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
}
// File: @openzeppelin/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// File: @openzeppelin/contracts/access/Ownable.sol
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 amount
) external returns (bool);
}
// File: TokenStaking.sol
pragma solidity ^0.8.0;
contract TokenStaking is Ownable, ReentrancyGuard, Initializable {
// Struct to store the User's Details
struct User {
uint256 stakeAmount; // Stake Amount
uint256 rewardAmount; // Reward Amount
uint256 lastStakeTime; // Last Stake Timestamp
uint256 lastRewardCalculationTime; // Last Reward Calculation Timestamp
uint256 rewardsClaimedSoFar; // Sum of rewards claimed so far
}
uint256 _minimumStakingAmount; // minimum staking amount
uint256 _maxStakeTokenLimit; // maximum staking token limit for program
uint256 _stakeEndDate; // end date for program
uint256 _stakeStartDate; // end date for program
uint256 _totalStakedTokens; // Total no of tokens that are staked
uint256 _totalUsers; // Total no of users
uint256 _stakeDays; // staking days
uint256 _earlyUnstakeFeePercentage; // early unstake fee percentage
bool _isStakingPaused; // staking status
string private _tokenImageUrl; // url image token
// Token contract address
address private _tokenAddress;
// APY
uint256 _apyRate;
uint256 public constant PERCENTAGE_DENOMINATOR = 10000;
uint256 public constant APY_RATE_CHANGE_THRESHOLD = 10;
// User address => User
mapping(address => User) private _users;
event Stake(address indexed user, uint256 amount);
event UnStake(address indexed user, uint256 amount);
event EarlyUnStakeFee(address indexed user, uint256 amount);
event ClaimReward(address indexed user, uint256 amount);
modifier whenTreasuryHasBalance(uint256 amount) {
require(
IERC20(_tokenAddress).balanceOf(address(this)) >= amount,
"TokenStaking: insufficient funds in the treasury"
);
_;
}
function initialize(
address owner_,
address tokenAddress_,
uint256 apyRate_,
uint256 minimumStakingAmount_,
uint256 maxStakeTokenLimit_,
uint256 stakeStartDate_,
uint256 stakeEndDate_,
uint256 stakeDays_,
uint256 earlyUnstakeFeePercentage_,
string memory tokenImageUrl_
) public virtual initializer {
__TokenStaking_init_unchained(
owner_,
tokenAddress_,
apyRate_,
minimumStakingAmount_,
maxStakeTokenLimit_,
stakeStartDate_,
stakeEndDate_,
stakeDays_,
earlyUnstakeFeePercentage_,
tokenImageUrl_
);
}
function __TokenStaking_init_unchained(
address owner_,
address tokenAddress_,
uint256 apyRate_,
uint256 minimumStakingAmount_,
uint256 maxStakeTokenLimit_,
uint256 stakeStartDate_,
uint256 stakeEndDate_,
uint256 stakeDays_,
uint256 earlyUnstakeFeePercentage_,
string memory tokenImageUrl_
) internal onlyInitializing {
require(_apyRate <= 10000, "TokenStaking: apy rate should be less than 10000");
require(stakeDays_ > 0, "TokenStaking: stake days must be non-zero");
require(tokenAddress_ != address(0), "TokenStaking: token address cannot be 0 address");
require(stakeStartDate_ < stakeEndDate_, "TokenStaking: start date must be less than end date");
_transferOwnership(owner_);
_tokenAddress = tokenAddress_;
_apyRate = apyRate_;
_minimumStakingAmount = minimumStakingAmount_;
_maxStakeTokenLimit = maxStakeTokenLimit_;
_stakeStartDate = stakeStartDate_;
_stakeEndDate = stakeEndDate_;
_stakeDays = stakeDays_ * 1 days;
_earlyUnstakeFeePercentage = earlyUnstakeFeePercentage_;
_tokenImageUrl = tokenImageUrl_;
}
/* View Methods Start */
/**
* @notice This function is used to get the minimum staking amount
*/
function getMinimumStakingAmount() external view returns (uint256) {
return _minimumStakingAmount;
}
/**
* @notice This function is used to get the maximum staking token limit for program
*/
function getMaxStakingTokenLimit() external view returns (uint256) {
return _maxStakeTokenLimit;
}
/**
* @notice This function is used to get the staking start date for program
*/
function getStakeStartDate() external view returns (uint256) {
return _stakeStartDate;
}
/**
* @notice This function is used to get the staking end date for program
*/
function getStakeEndDate() external view returns (uint256) {
return _stakeEndDate;
}
/**
* @notice This function is used to get the total no of tokens that are staked
*/
function getTotalStakedTokens() external view returns (uint256) {
return _totalStakedTokens;
}
/**
* @notice This function is used to get the total no of users
*/
function getTotalUsers() external view returns (uint256) {
return _totalUsers;
}
/**
* @notice This function is used to get stake days
*/
function getStakeDays() external view returns (uint256) {
return _stakeDays;
}
/**
* @notice This function is used to get early unstake fee percentage
*/
function getEarlyUnstakeFeePercentage() external view returns (uint256) {
return _earlyUnstakeFeePercentage;
}
/**
* @notice This function is used to get staking status
*/
function getStakingStatus() external view returns (bool) {
return _isStakingPaused;
}
/**
* @notice This function is used to get the current APY Rate
* @return Current APY Rate
*/
function getAPY() external view returns (uint256) {
return _apyRate;
}
/**
* @notice This function is used to get msg.sender's estimated reward amount
* @return msg.sender's estimated reward amount
*/
function getUserEstimatedRewards() external view returns (uint256) {
(uint256 amount, ) = _getUserEstimatedRewards(msg.sender);
return _users[msg.sender].rewardAmount + amount;
}
/**
* @notice This function is used to get withdrawable amount from contract
*/
function getWithdrawableAmount() external view returns (uint256) {
return IERC20(_tokenAddress).balanceOf(address(this)) - _totalStakedTokens;
}
/**
* @notice This function is used to get User's details
* @param userAddress User's address to get details of
* @return User Struct
*/
function getUser(address userAddress) external view returns (User memory) {
return _users[userAddress];
}
/**
* @notice This function is used to get stake days
*/
function getTokenImageUrl() external view returns (string memory) {
return _tokenImageUrl;
}
/**
* @notice This function is used to check if a user is a stakeholder
* @param _user Address of the user to check
* @return True if user is a stakeholder, false otherwise
*/
function isStakeHolder(address _user) external view returns (bool) {
return _users[_user].stakeAmount != 0;
}
/* View Methods End */
/* Owner Methods Start */
/**
* @notice This function is used to update minimum staking amount
*/
function updateMinimumStakingAmount(uint256 newAmount) external onlyOwner {
_minimumStakingAmount = newAmount;
}
/**
* @notice This function is used to update maximum staking amount
*/
function updateMaximumStakingAmount(uint256 newAmount) external onlyOwner {
_maxStakeTokenLimit = newAmount;
}
/**
* @notice This function is used to update staking end date
*/
function updateStakingEndDate(uint256 newDate) external onlyOwner {
_stakeEndDate = newDate;
}
/**
* @notice This function is used to update early unstake fee percentage
*/
function updateEarlyUnstakeFeePercentage(uint256 newPercentage) external onlyOwner {
_earlyUnstakeFeePercentage = newPercentage;
}
/**
* @notice stake tokens for specific user
* @dev This function can be used to stake tokens for specific user
*
* @param amount the amount to stake
* @param user user's address
*/
function stakeForUser(uint256 amount, address user) external onlyOwner nonReentrant {
_stakeTokens(amount, user);
}
/**
* @notice enable/disable staking
* @dev This function can be used to toggle staking status
*/
function toggleStakingStatus() external onlyOwner {
_isStakingPaused = !_isStakingPaused;
}
/**
* @notice Withdraw the specified amount if possible.
*
* @dev This function can be used to withdraw the available tokens
* with this contract to the caller
*
* @param amount the amount to withdraw
*/
function withdraw(uint256 amount) external onlyOwner nonReentrant {
require(this.getWithdrawableAmount() >= amount, "TokenStaking: not enough withdrawable tokens");
IERC20(_tokenAddress).transfer(msg.sender, amount);
}
/* Owner Methods End */
/* User Methods Start */
/**
* @notice This function is used to stake tokens
* @param _amount Amount of tokens to be staked
*/
function stake(uint256 _amount) external nonReentrant {
_stakeTokens(_amount, msg.sender);
}
function _stakeTokens(uint256 _amount, address user_) private {
require(!_isStakingPaused, "TokenStaking: staking is paused");
uint256 currentTime = getCurrentTime();
require(currentTime > _stakeStartDate, "TokenStaking: staking not started yet");
require(currentTime < _stakeEndDate, "TokenStaking: staking ended");
require(_totalStakedTokens + _amount <= _maxStakeTokenLimit, "TokenStaking: max staking token limit reached");
require(_amount > 0, "TokenStaking: stake amount must be non-zero");
require(
_amount >= _minimumStakingAmount,
"TokenStaking: stake amount must greater than minimum amount allowed"
);
if (_users[user_].stakeAmount != 0) {
_calculateRewards(user_);
} else {
_users[user_].lastRewardCalculationTime = currentTime;
_totalUsers += 1;
}
_users[user_].stakeAmount += _amount;
_users[user_].lastStakeTime = currentTime;
_totalStakedTokens += _amount;
require(
IERC20(_tokenAddress).transferFrom(msg.sender, address(this), _amount),
"TokenStaking: failed to transfer tokens"
);
emit Stake(user_, _amount);
}
/**
* @notice This function is used to unstake tokens
* @param _amount Amount of tokens to be unstaked
*/
function unstake(uint256 _amount) external nonReentrant whenTreasuryHasBalance(_amount) {
address user = msg.sender;
require(_amount != 0, "TokenStaking: amount should be non-zero");
require(this.isStakeHolder(user), "TokenStaking: not a stakeholder");
require(_users[user].stakeAmount >= _amount, "TokenStaking: not enough stake to unstake");
// Calculate User's rewards until now
_calculateRewards(user);
uint256 feeEarlyUnstake;
if (getCurrentTime() <= _users[user].lastStakeTime + _stakeDays) {
feeEarlyUnstake = ((_amount * _earlyUnstakeFeePercentage) / PERCENTAGE_DENOMINATOR);
emit EarlyUnStakeFee(user, feeEarlyUnstake);
}
uint256 amountToUnstake = _amount - feeEarlyUnstake;
_users[user].stakeAmount -= _amount;
_totalStakedTokens -= _amount;
if (_users[user].stakeAmount == 0) {
// delete _users[user];
_totalUsers -= 1;
}
require(IERC20(_tokenAddress).transfer(user, amountToUnstake), "TokenStaking: failed to transfer");
emit UnStake(user, _amount);
}
/**
* @notice This function is used to claim user's rewards
*/
function claimReward() external nonReentrant whenTreasuryHasBalance(_users[msg.sender].rewardAmount) {
_calculateRewards(msg.sender);
uint256 rewardAmount = _users[msg.sender].rewardAmount;
require(rewardAmount > 0, "TokenStaking: no reward to claim");
require(IERC20(_tokenAddress).transfer(msg.sender, rewardAmount), "TokenStaking: failed to transfer");
_users[msg.sender].rewardAmount = 0;
_users[msg.sender].rewardsClaimedSoFar += rewardAmount;
emit ClaimReward(msg.sender, rewardAmount);
}
/* User Methods End */
/* Private Helper Methods Start */
/**
* @notice This function is used to calculate rewards for a user
* @param _user Address of the user
*/
function _calculateRewards(address _user) private {
(uint256 userReward, uint256 currentTime) = _getUserEstimatedRewards(_user);
_users[_user].rewardAmount += userReward;
_users[_user].lastRewardCalculationTime = currentTime;
}
/**
* @notice This function is used to get estimated rewards for a user
* @param _user Address of the user
* @return Estimated rewards for the user
*/
function _getUserEstimatedRewards(address _user) private view returns (uint256, uint256) {
uint256 userReward;
uint256 userTimestamp = _users[_user].lastRewardCalculationTime;
uint256 currentTime = getCurrentTime();
if (currentTime > _users[_user].lastStakeTime + _stakeDays) {
currentTime = _users[_user].lastStakeTime + _stakeDays;
}
uint256 totalStakedTime = currentTime - userTimestamp;
userReward += ((totalStakedTime * _users[_user].stakeAmount * _apyRate) / 365 days) / PERCENTAGE_DENOMINATOR;
return (userReward, currentTime);
}
/* Private Helper Methods End */
function getCurrentTime() internal view virtual returns (uint256) {
return block.timestamp;
}
}
View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

This file has been truncated, but you can view the full file.
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {
"@_519": {
"entryPoint": null,
"id": 519,
"parameterSlots": 0,
"returnSlots": 0
},
"@_583": {
"entryPoint": null,
"id": 583,
"parameterSlots": 0,
"returnSlots": 0
},
"@_msgSender_551": {
"entryPoint": 57,
"id": 551,
"parameterSlots": 0,
"returnSlots": 1
},
"@_transferOwnership_671": {
"entryPoint": 65,
"id": 671,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b5061002d61002261003960201b60201c565b61004160201b60201c565b60018081905550610105565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b613bfb806101146000396000f3fe608060405234801561001057600080fd5b50600436106100575760003560e01c80631133f0231461005c5780636666391c14610066578063715018a6146100845780638da5cb5b1461008e578063f2fde38b146100ac575b600080fd5b6100646100c8565b005b61006e6101a6565b60405161007b919061053c565b60405180910390f35b61008c610234565b005b610096610248565b6040516100a3919061056d565b60405180910390f35b6100c660048036038101906100c191906105b9565b610271565b005b6100d06102f5565b60006040516100de9061043f565b604051809103906000f0801580156100fa573d6000803e3d6000fd5b5090506003819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167fa2d42bf84a8471f2a798696d782ea138fb0a0cee3a1233cff86d52614d04548760405160405180910390a250565b6060600380548060200260200160405190810160405280929190818152602001828054801561022a57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190600101908083116101e0575b5050505050905090565b61023c6102f5565b6102466000610373565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6102796102f5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156102e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102e090610669565b60405180910390fd5b6102f281610373565b50565b6102fd610437565b73ffffffffffffffffffffffffffffffffffffffff1661031b610248565b73ffffffffffffffffffffffffffffffffffffffff1614610371576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610368906106d5565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b6134d0806106f683390190565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006104a382610478565b9050919050565b6104b381610498565b82525050565b60006104c583836104aa565b60208301905092915050565b6000602082019050919050565b60006104e98261044c565b6104f38185610457565b93506104fe83610468565b8060005b8381101561052f57815161051688826104b9565b9750610521836104d1565b925050600181019050610502565b5085935050505092915050565b6000602082019050818103600083015261055681846104de565b905092915050565b61056781610498565b82525050565b6000602082019050610582600083018461055e565b92915050565b600080fd5b61059681610498565b81146105a157600080fd5b50565b6000813590506105b38161058d565b92915050565b6000602082840312156105cf576105ce610588565b5b60006105dd848285016105a4565b91505092915050565b600082825260208201905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006106536026836105e6565b915061065e826105f7565b604082019050919050565b6000602082019050818103600083015261068281610646565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006106bf6020836105e6565b91506106ca82610689565b602082019050919050565b600060208201905081810360008301526106ee816106b2565b905091905056fe60806040523480156200001157600080fd5b5062000032620000266200003f60201b60201c565b6200004760201b60201c565b600180819055506200010b565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6133b5806200011b6000396000f3fe608060405234801561001057600080fd5b50600436106101d95760003560e01c8063845738cb11610104578063b88a802f116100a2578063d2cbf7ad11610071578063d2cbf7ad146104c0578063f0116b74146104de57
View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment