ETH Price: $2,415.96 (+7.51%)

Transaction Decoder

Block:
17329622 at May-24-2023 02:25:23 PM +UTC
Transaction Fee:
0.01216970631418146 ETH $29.40
Gas Used:
190,355 Gas / 63.931634652 Gwei

Emitted Events:

313 HEX.Transfer( from=[Sender] 0xddd17c85e7b68703ac16c8498778a182bc5a8f70, to=[Receiver] EternalStorageProxy, value=4310000000000 )
314 HEX.Approval( owner=[Sender] 0xddd17c85e7b68703ac16c8498778a182bc5a8f70, spender=[Receiver] EternalStorageProxy, value=0 )
315 EternalStorageProxy.0x482515ce3d9494a37ce83f18b72b363449458435fafdd7a53ddea7460fe01b58( 0x482515ce3d9494a37ce83f18b72b363449458435fafdd7a53ddea7460fe01b58, 0x00050000809822368a3e57b54d6426d420b1294d3262f4f50000000000011a1e, 0000000000000000000000000000000000000000000000000000000000000020, 00000000000000000000000000000000000000000000000000000000000000b6, 00050000809822368a3e57b54d6426d420b1294d3262f4f50000000000011a1e, 1715a3e4a142d8b698131108995174f37aeba10d4fd0aaa7506f3d9cb8274bdb, 946ec42a1b8751ef001e8480010200010171125e4cfb00000000000000000000, 00002b591e99afe9f32eaa6214f7b7629768c40eeb3900000000000000000000, 0000ddd17c85e7b68703ac16c8498778a182bc5a8f7000000000000000000000, 0000000000000000000000000000000003eb8004dc0000000000000000000000 )
316 EternalStorageProxy.0x59a9a8027b9c87b961e254899821c9a276b5efc35d1f7409ea4f291470f1629a( 0x59a9a8027b9c87b961e254899821c9a276b5efc35d1f7409ea4f291470f1629a, 0x0000000000000000000000002b591e99afe9f32eaa6214f7b7629768c40eeb39, 0x000000000000000000000000ddd17c85e7b68703ac16c8498778a182bc5a8f70, 0x00050000809822368a3e57b54d6426d420b1294d3262f4f50000000000011a1e, 000000000000000000000000000000000000000000000000000003eb8004dc00 )

Account State Difference:

  Address   Before After State Difference Code
0x1715a3E4...37aEBA10D
(PulseChain: Omnibridge Proxy)
0x2b591e99...8c40Eeb39
0xd0764FAe...456D5636c
(PulseChain: Foreign AMB Proxy)
0xddD17c85...2BC5A8f70
0.027565160707776364 Eth
Nonce: 28
0.015395454393594904 Eth
Nonce: 29
0.01216970631418146
(Fee Recipient: 0xe43...4CA)
35.989251434181177718 Eth35.989270469681177718 Eth0.0000190355

Execution Trace

EternalStorageProxy.ad58bdd1( )
  • ForeignOmnibridge.relayTokens( token=0x2b591e99afE9f32eAA6214f7B7629768c40Eeb39, _receiver=0xddD17c85e7B68703ac16C8498778A182BC5A8f70, _value=4310000000000 )
    • HEX.balanceOf( account=0x1715a3E4A142d8b698131108995174F37aEBA10D ) => ( 247812112373607929 )
    • HEX.transferFrom( sender=0xddD17c85e7B68703ac16C8498778A182BC5A8f70, recipient=0x1715a3E4A142d8b698131108995174F37aEBA10D, amount=4310000000000 ) => ( True )
    • HEX.balanceOf( account=0x1715a3E4A142d8b698131108995174F37aEBA10D ) => ( 247816422373607929 )
    • EternalStorageProxy.dc8601b3( )
      • ForeignAMB.requireToPassMessage( _contract=0x4fD0aaa7506f3d9cB8274bdB946Ec42A1b8751Ef, _data=0x125E4CFB0000000000000000000000002B591E99AFE9F32EAA6214F7B7629768C40EEB39000000000000000000000000DDD17C85E7B68703AC16C8498778A182BC5A8F70000000000000000000000000000000000000000000000000000003EB8004DC00, _gas=2000000 ) => ( 00050000809822368A3E57B54D6426D420B1294D3262F4F50000000000011A1E )
        File 1 of 5: EternalStorageProxy
        // File: contracts/upgradeability/EternalStorage.sol
        
        pragma solidity 0.7.5;
        
        /**
         * @title EternalStorage
         * @dev This contract holds all the necessary state variables to carry out the storage of any contract.
         */
        contract EternalStorage {
            mapping(bytes32 => uint256) internal uintStorage;
            mapping(bytes32 => string) internal stringStorage;
            mapping(bytes32 => address) internal addressStorage;
            mapping(bytes32 => bytes) internal bytesStorage;
            mapping(bytes32 => bool) internal boolStorage;
            mapping(bytes32 => int256) internal intStorage;
        }
        
        // File: @openzeppelin/contracts/utils/Address.sol
        
        
        pragma solidity ^0.7.0;
        
        /**
         * @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
             * ====
             */
            function isContract(address account) internal view returns (bool) {
                // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
                // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
                // for accounts without code, i.e. `keccak256('')`
                bytes32 codehash;
                bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
                // solhint-disable-next-line no-inline-assembly
                assembly { codehash := extcodehash(account) }
                return (codehash != accountHash && codehash != 0x0);
            }
        
            /**
             * @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");
        
                // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
                (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");
                return _functionCallWithValue(target, data, value, errorMessage);
            }
        
            function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
                require(isContract(target), "Address: call to non-contract");
        
                // solhint-disable-next-line avoid-low-level-calls
                (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
                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
        
                        // solhint-disable-next-line no-inline-assembly
                        assembly {
                            let returndata_size := mload(returndata)
                            revert(add(32, returndata), returndata_size)
                        }
                    } else {
                        revert(errorMessage);
                    }
                }
            }
        }
        
        // File: contracts/upgradeability/Proxy.sol
        
        pragma solidity 0.7.5;
        
        /**
         * @title Proxy
         * @dev Gives the possibility to delegate any call to a foreign implementation.
         */
        abstract contract Proxy {
            /**
             * @dev Tells the address of the implementation where every call will be delegated.
             * @return address of the implementation to which it will be delegated
             */
            function implementation() public view virtual returns (address);
        
            /**
             * @dev Fallback function allowing to perform a delegatecall to the given implementation.
             * This function will return whatever the implementation call returns
             */
            fallback() external payable {
                // solhint-disable-previous-line no-complex-fallback
                address _impl = implementation();
                require(_impl != address(0));
                assembly {
                    /*
                        0x40 is the "free memory slot", meaning a pointer to next slot of empty memory. mload(0x40)
                        loads the data in the free memory slot, so `ptr` is a pointer to the next slot of empty
                        memory. It's needed because we're going to write the return data of delegatecall to the
                        free memory slot.
                    */
                    let ptr := mload(0x40)
                    /*
                        `calldatacopy` is copy calldatasize bytes from calldata
                        First argument is the destination to which data is copied(ptr)
                        Second argument specifies the start position of the copied data.
                            Since calldata is sort of its own unique location in memory,
                            0 doesn't refer to 0 in memory or 0 in storage - it just refers to the zeroth byte of calldata.
                            That's always going to be the zeroth byte of the function selector.
                        Third argument, calldatasize, specifies how much data will be copied.
                            calldata is naturally calldatasize bytes long (same thing as msg.data.length)
                    */
                    calldatacopy(ptr, 0, calldatasize())
                    /*
                        delegatecall params explained:
                        gas: the amount of gas to provide for the call. `gas` is an Opcode that gives
                            us the amount of gas still available to execution
        
                        _impl: address of the contract to delegate to
        
                        ptr: to pass copied data
        
                        calldatasize: loads the size of `bytes memory data`, same as msg.data.length
        
                        0, 0: These are for the `out` and `outsize` params. Because the output could be dynamic,
                                these are set to 0, 0 so the output data will not be written to memory. The output
                                data will be read using `returndatasize` and `returdatacopy` instead.
        
                        result: This will be 0 if the call fails and 1 if it succeeds
                    */
                    let result := delegatecall(gas(), _impl, ptr, calldatasize(), 0, 0)
                    /*
        
                    */
                    /*
                        ptr current points to the value stored at 0x40,
                        because we assigned it like ptr := mload(0x40).
                        Because we use 0x40 as a free memory pointer,
                        we want to make sure that the next time we want to allocate memory,
                        we aren't overwriting anything important.
                        So, by adding ptr and returndatasize,
                        we get a memory location beyond the end of the data we will be copying to ptr.
                        We place this in at 0x40, and any reads from 0x40 will now read from free memory
                    */
                    mstore(0x40, add(ptr, returndatasize()))
                    /*
                        `returndatacopy` is an Opcode that copies the last return data to a slot. `ptr` is the
                            slot it will copy to, 0 means copy from the beginning of the return data, and size is
                            the amount of data to copy.
                        `returndatasize` is an Opcode that gives us the size of the last return data. In this case, that is the size of the data returned from delegatecall
                    */
                    returndatacopy(ptr, 0, returndatasize())
        
                    /*
                        if `result` is 0, revert.
                        if `result` is 1, return `size` amount of data from `ptr`. This is the data that was
                        copied to `ptr` from the delegatecall return data
                    */
                    switch result
                        case 0 {
                            revert(ptr, returndatasize())
                        }
                        default {
                            return(ptr, returndatasize())
                        }
                }
            }
        }
        
        // File: contracts/upgradeability/UpgradeabilityStorage.sol
        
        pragma solidity 0.7.5;
        
        /**
         * @title UpgradeabilityStorage
         * @dev This contract holds all the necessary state variables to support the upgrade functionality
         */
        contract UpgradeabilityStorage {
            // Version name of the current implementation
            uint256 internal _version;
        
            // Address of the current implementation
            address internal _implementation;
        
            /**
             * @dev Tells the version name of the current implementation
             * @return uint256 representing the name of the current version
             */
            function version() external view returns (uint256) {
                return _version;
            }
        
            /**
             * @dev Tells the address of the current implementation
             * @return address of the current implementation
             */
            function implementation() public view virtual returns (address) {
                return _implementation;
            }
        }
        
        // File: contracts/upgradeability/UpgradeabilityProxy.sol
        
        pragma solidity 0.7.5;
        
        
        
        
        /**
         * @title UpgradeabilityProxy
         * @dev This contract represents a proxy where the implementation address to which it will delegate can be upgraded
         */
        contract UpgradeabilityProxy is Proxy, UpgradeabilityStorage {
            /**
             * @dev This event will be emitted every time the implementation gets upgraded
             * @param version representing the version name of the upgraded implementation
             * @param implementation representing the address of the upgraded implementation
             */
            event Upgraded(uint256 version, address indexed implementation);
        
            /**
             * @dev Tells the address of the current implementation
             * @return address of the current implementation
             */
            function implementation() public view override(Proxy, UpgradeabilityStorage) returns (address) {
                return UpgradeabilityStorage.implementation();
            }
        
            /**
             * @dev Upgrades the implementation address
             * @param version representing the version name of the new implementation to be set
             * @param implementation representing the address of the new implementation to be set
             */
            function _upgradeTo(uint256 version, address implementation) internal {
                require(_implementation != implementation);
        
                // This additional check verifies that provided implementation is at least a contract
                require(Address.isContract(implementation));
        
                // This additional check guarantees that new version will be at least greater than the previous one,
                // so it is impossible to reuse old versions, or use the last version twice
                require(version > _version);
        
                _version = version;
                _implementation = implementation;
                emit Upgraded(version, implementation);
            }
        }
        
        // File: contracts/upgradeability/UpgradeabilityOwnerStorage.sol
        
        pragma solidity 0.7.5;
        
        /**
         * @title UpgradeabilityOwnerStorage
         * @dev This contract keeps track of the upgradeability owner
         */
        contract UpgradeabilityOwnerStorage {
            // Owner of the contract
            address internal _upgradeabilityOwner;
        
            /**
             * @dev Tells the address of the owner
             * @return the address of the owner
             */
            function upgradeabilityOwner() public view returns (address) {
                return _upgradeabilityOwner;
            }
        
            /**
             * @dev Sets the address of the owner
             */
            function setUpgradeabilityOwner(address newUpgradeabilityOwner) internal {
                _upgradeabilityOwner = newUpgradeabilityOwner;
            }
        }
        
        // File: contracts/upgradeability/OwnedUpgradeabilityProxy.sol
        
        pragma solidity 0.7.5;
        
        
        
        /**
         * @title OwnedUpgradeabilityProxy
         * @dev This contract combines an upgradeability proxy with basic authorization control functionalities
         */
        contract OwnedUpgradeabilityProxy is UpgradeabilityOwnerStorage, UpgradeabilityProxy {
            /**
             * @dev Event to show ownership has been transferred
             * @param previousOwner representing the address of the previous owner
             * @param newOwner representing the address of the new owner
             */
            event ProxyOwnershipTransferred(address previousOwner, address newOwner);
        
            /**
             * @dev the constructor sets the original owner of the contract to the sender account.
             */
            constructor() {
                setUpgradeabilityOwner(msg.sender);
            }
        
            /**
             * @dev Throws if called by any account other than the owner.
             */
            modifier onlyUpgradeabilityOwner() {
                require(msg.sender == upgradeabilityOwner());
                _;
            }
        
            /**
             * @dev Allows the current owner to transfer control of the contract to a newOwner.
             * @param newOwner The address to transfer ownership to.
             */
            function transferProxyOwnership(address newOwner) external onlyUpgradeabilityOwner {
                require(newOwner != address(0));
                emit ProxyOwnershipTransferred(upgradeabilityOwner(), newOwner);
                setUpgradeabilityOwner(newOwner);
            }
        
            /**
             * @dev Allows the upgradeability owner to upgrade the current version of the proxy.
             * @param version representing the version name of the new implementation to be set.
             * @param implementation representing the address of the new implementation to be set.
             */
            function upgradeTo(uint256 version, address implementation) public onlyUpgradeabilityOwner {
                _upgradeTo(version, implementation);
            }
        
            /**
             * @dev Allows the upgradeability owner to upgrade the current version of the proxy and call the new implementation
             * to initialize whatever is needed through a low level call.
             * @param version representing the version name of the new implementation to be set.
             * @param implementation representing the address of the new implementation to be set.
             * @param data represents the msg.data to be sent in the low level call. This parameter may include the function
             * signature of the implementation to be called with the needed payload
             */
            function upgradeToAndCall(
                uint256 version,
                address implementation,
                bytes calldata data
            ) external payable onlyUpgradeabilityOwner {
                upgradeTo(version, implementation);
                // solhint-disable-next-line avoid-call-value
                (bool status, ) = address(this).call{ value: msg.value }(data);
                require(status);
            }
        }
        
        // File: contracts/upgradeability/EternalStorageProxy.sol
        
        pragma solidity 0.7.5;
        
        
        
        /**
         * @title EternalStorageProxy
         * @dev This proxy holds the storage of the token contract and delegates every call to the current implementation set.
         * Besides, it allows to upgrade the token's behaviour towards further implementations, and provides basic
         * authorization control functionalities
         */
        contract EternalStorageProxy is EternalStorage, OwnedUpgradeabilityProxy {
        
        }
        

        File 2 of 5: HEX
        pragma solidity 0.5.13;
        
        /*
         * @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 GSN 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.
         */
        contract Context {
            // Empty internal constructor, to prevent people from mistakenly deploying
            // an instance of this contract, which should be used via inheritance.
            constructor () internal { }
            // solhint-disable-previous-line no-empty-blocks
        
            function _msgSender() internal view returns (address payable) {
                return msg.sender;
            }
        
            function _msgData() internal view returns (bytes memory) {
                this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
                return msg.data;
            }
        }
        
        /**
         * @dev Interface of the ERC20 standard as defined in the EIP. Does not include
         * the optional functions; to access them see {ERC20Detailed}.
         */
        interface IERC20 {
            /**
             * @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 `recipient`.
             *
             * Returns a boolean value indicating whether the operation succeeded.
             *
             * Emits a {Transfer} event.
             */
            function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount) external returns (bool);
        
            /**
             * @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 Wrappers over Solidity's arithmetic operations with added overflow
         * checks.
         *
         * Arithmetic operations in Solidity wrap on overflow. This can easily result
         * in bugs, because programmers usually assume that an overflow raises an
         * error, which is the standard behavior in high level programming languages.
         * `SafeMath` restores this intuition by reverting the transaction when an
         * operation overflows.
         *
         * Using this library instead of the unchecked operations eliminates an entire
         * class of bugs, so it's recommended to use it always.
         */
        library SafeMath {
            /**
             * @dev Returns the addition of two unsigned integers, reverting on
             * overflow.
             *
             * Counterpart to Solidity's `+` operator.
             *
             * Requirements:
             * - Addition cannot overflow.
             */
            function add(uint256 a, uint256 b) internal pure returns (uint256) {
                uint256 c = a + b;
                require(c >= a, "SafeMath: addition overflow");
        
                return c;
            }
        
            /**
             * @dev Returns the subtraction of two unsigned integers, reverting on
             * overflow (when the result is negative).
             *
             * Counterpart to Solidity's `-` operator.
             *
             * Requirements:
             * - Subtraction cannot overflow.
             */
            function sub(uint256 a, uint256 b) internal pure returns (uint256) {
                return sub(a, b, "SafeMath: subtraction overflow");
            }
        
            /**
             * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
             * overflow (when the result is negative).
             *
             * Counterpart to Solidity's `-` operator.
             *
             * Requirements:
             * - Subtraction cannot overflow.
             *
             * _Available since v2.4.0._
             */
            function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
                require(b <= a, errorMessage);
                uint256 c = a - b;
        
                return c;
            }
        
            /**
             * @dev Returns the multiplication of two unsigned integers, reverting on
             * overflow.
             *
             * Counterpart to Solidity's `*` operator.
             *
             * Requirements:
             * - Multiplication cannot overflow.
             */
            function mul(uint256 a, uint256 b) internal pure returns (uint256) {
                // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
                // benefit is lost if 'b' is also tested.
                // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
                if (a == 0) {
                    return 0;
                }
        
                uint256 c = a * b;
                require(c / a == b, "SafeMath: multiplication overflow");
        
                return c;
            }
        
            /**
             * @dev Returns the integer division of two unsigned integers. Reverts on
             * division by zero. The result is rounded towards zero.
             *
             * Counterpart to Solidity's `/` operator. Note: this function uses a
             * `revert` opcode (which leaves remaining gas untouched) while Solidity
             * uses an invalid opcode to revert (consuming all remaining gas).
             *
             * Requirements:
             * - The divisor cannot be zero.
             */
            function div(uint256 a, uint256 b) internal pure returns (uint256) {
                return div(a, b, "SafeMath: division by zero");
            }
        
            /**
             * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
             * division by zero. The result is rounded towards zero.
             *
             * Counterpart to Solidity's `/` operator. Note: this function uses a
             * `revert` opcode (which leaves remaining gas untouched) while Solidity
             * uses an invalid opcode to revert (consuming all remaining gas).
             *
             * Requirements:
             * - The divisor cannot be zero.
             *
             * _Available since v2.4.0._
             */
            function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
                // Solidity only automatically asserts when dividing by 0
                require(b > 0, errorMessage);
                uint256 c = a / b;
                // assert(a == b * c + a % b); // There is no case in which this doesn't hold
        
                return c;
            }
        
            /**
             * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
             * Reverts when dividing by zero.
             *
             * Counterpart to Solidity's `%` operator. This function uses a `revert`
             * opcode (which leaves remaining gas untouched) while Solidity uses an
             * invalid opcode to revert (consuming all remaining gas).
             *
             * Requirements:
             * - The divisor cannot be zero.
             */
            function mod(uint256 a, uint256 b) internal pure returns (uint256) {
                return mod(a, b, "SafeMath: modulo by zero");
            }
        
            /**
             * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
             * Reverts with custom message when dividing by zero.
             *
             * Counterpart to Solidity's `%` operator. This function uses a `revert`
             * opcode (which leaves remaining gas untouched) while Solidity uses an
             * invalid opcode to revert (consuming all remaining gas).
             *
             * Requirements:
             * - The divisor cannot be zero.
             *
             * _Available since v2.4.0._
             */
            function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
                require(b != 0, errorMessage);
                return a % b;
            }
        }
        
        /**
         * @dev Implementation of the {IERC20} interface.
         *
         * This implementation is agnostic to the way tokens are created. This means
         * that a supply mechanism has to be added in a derived contract using {_mint}.
         * For a generic mechanism see {ERC20Mintable}.
         *
         * TIP: For a detailed writeup see our guide
         * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
         * to implement supply mechanisms].
         *
         * We have followed general OpenZeppelin guidelines: functions revert instead
         * of returning `false` on failure. This behavior is nonetheless conventional
         * and does not conflict with the expectations of ERC20 applications.
         *
         * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
         * This allows applications to reconstruct the allowance for all accounts just
         * by listening to said events. Other implementations of the EIP may not emit
         * these events, as it isn't required by the specification.
         *
         * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
         * functions have been added to mitigate the well-known issues around setting
         * allowances. See {IERC20-approve}.
         */
        contract ERC20 is Context, IERC20 {
            using SafeMath for uint256;
        
            mapping (address => uint256) private _balances;
        
            mapping (address => mapping (address => uint256)) private _allowances;
        
            uint256 private _totalSupply;
        
            /**
             * @dev See {IERC20-totalSupply}.
             */
            function totalSupply() public view returns (uint256) {
                return _totalSupply;
            }
        
            /**
             * @dev See {IERC20-balanceOf}.
             */
            function balanceOf(address account) public view returns (uint256) {
                return _balances[account];
            }
        
            /**
             * @dev See {IERC20-transfer}.
             *
             * Requirements:
             *
             * - `recipient` cannot be the zero address.
             * - the caller must have a balance of at least `amount`.
             */
            function transfer(address recipient, uint256 amount) public returns (bool) {
                _transfer(_msgSender(), recipient, amount);
                return true;
            }
        
            /**
             * @dev See {IERC20-allowance}.
             */
            function allowance(address owner, address spender) public view returns (uint256) {
                return _allowances[owner][spender];
            }
        
            /**
             * @dev See {IERC20-approve}.
             *
             * Requirements:
             *
             * - `spender` cannot be the zero address.
             */
            function approve(address spender, uint256 amount) public returns (bool) {
                _approve(_msgSender(), spender, amount);
                return true;
            }
        
            /**
             * @dev See {IERC20-transferFrom}.
             *
             * Emits an {Approval} event indicating the updated allowance. This is not
             * required by the EIP. See the note at the beginning of {ERC20};
             *
             * Requirements:
             * - `sender` and `recipient` cannot be the zero address.
             * - `sender` must have a balance of at least `amount`.
             * - the caller must have allowance for `sender`'s tokens of at least
             * `amount`.
             */
            function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) {
                _transfer(sender, recipient, amount);
                _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
                return true;
            }
        
            /**
             * @dev Atomically increases the allowance granted to `spender` by the caller.
             *
             * This is an alternative to {approve} that can be used as a mitigation for
             * problems described in {IERC20-approve}.
             *
             * Emits an {Approval} event indicating the updated allowance.
             *
             * Requirements:
             *
             * - `spender` cannot be the zero address.
             */
            function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
                _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
                return true;
            }
        
            /**
             * @dev Atomically decreases the allowance granted to `spender` by the caller.
             *
             * This is an alternative to {approve} that can be used as a mitigation for
             * problems described in {IERC20-approve}.
             *
             * Emits an {Approval} event indicating the updated allowance.
             *
             * Requirements:
             *
             * - `spender` cannot be the zero address.
             * - `spender` must have allowance for the caller of at least
             * `subtractedValue`.
             */
            function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
                _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
                return true;
            }
        
            /**
             * @dev Moves tokens `amount` from `sender` to `recipient`.
             *
             * This is internal function is equivalent to {transfer}, and can be used to
             * e.g. implement automatic token fees, slashing mechanisms, etc.
             *
             * Emits a {Transfer} event.
             *
             * Requirements:
             *
             * - `sender` cannot be the zero address.
             * - `recipient` cannot be the zero address.
             * - `sender` must have a balance of at least `amount`.
             */
            function _transfer(address sender, address recipient, uint256 amount) internal {
                require(sender != address(0), "ERC20: transfer from the zero address");
                require(recipient != address(0), "ERC20: transfer to the zero address");
        
                _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
                _balances[recipient] = _balances[recipient].add(amount);
                emit Transfer(sender, recipient, amount);
            }
        
            /** @dev Creates `amount` tokens and assigns them to `account`, increasing
             * the total supply.
             *
             * Emits a {Transfer} event with `from` set to the zero address.
             *
             * Requirements
             *
             * - `to` cannot be the zero address.
             */
            function _mint(address account, uint256 amount) internal {
                require(account != address(0), "ERC20: mint to the zero address");
        
                _totalSupply = _totalSupply.add(amount);
                _balances[account] = _balances[account].add(amount);
                emit Transfer(address(0), account, amount);
            }
        
             /**
             * @dev Destroys `amount` tokens from `account`, reducing the
             * total supply.
             *
             * Emits a {Transfer} event with `to` set to the zero address.
             *
             * Requirements
             *
             * - `account` cannot be the zero address.
             * - `account` must have at least `amount` tokens.
             */
            function _burn(address account, uint256 amount) internal {
                require(account != address(0), "ERC20: burn from the zero address");
        
                _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
                _totalSupply = _totalSupply.sub(amount);
                emit Transfer(account, address(0), amount);
            }
        
            /**
             * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
             *
             * This is internal function is equivalent to `approve`, and can be used to
             * e.g. set automatic allowances for certain subsystems, etc.
             *
             * Emits an {Approval} event.
             *
             * Requirements:
             *
             * - `owner` cannot be the zero address.
             * - `spender` cannot be the zero address.
             */
            function _approve(address owner, address spender, uint256 amount) internal {
                require(owner != address(0), "ERC20: approve from the zero address");
                require(spender != address(0), "ERC20: approve to the zero address");
        
                _allowances[owner][spender] = amount;
                emit Approval(owner, spender, amount);
            }
        
            /**
             * @dev Destroys `amount` tokens from `account`.`amount` is then deducted
             * from the caller's allowance.
             *
             * See {_burn} and {_approve}.
             */
            function _burnFrom(address account, uint256 amount) internal {
                _burn(account, amount);
                _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance"));
            }
        }
        
        contract GlobalsAndUtility is ERC20 {
            /*  XfLobbyEnter      (auto-generated event)
        
                uint40            timestamp       -->  data0 [ 39:  0]
                address  indexed  memberAddr
                uint256  indexed  entryId
                uint96            rawAmount       -->  data0 [135: 40]
                address  indexed  referrerAddr
            */
            event XfLobbyEnter(
                uint256 data0,
                address indexed memberAddr,
                uint256 indexed entryId,
                address indexed referrerAddr
            );
        
            /*  XfLobbyExit       (auto-generated event)
        
                uint40            timestamp       -->  data0 [ 39:  0]
                address  indexed  memberAddr
                uint256  indexed  entryId
                uint72            xfAmount        -->  data0 [111: 40]
                address  indexed  referrerAddr
            */
            event XfLobbyExit(
                uint256 data0,
                address indexed memberAddr,
                uint256 indexed entryId,
                address indexed referrerAddr
            );
        
            /*  DailyDataUpdate   (auto-generated event)
        
                uint40            timestamp       -->  data0 [ 39:  0]
                uint16            beginDay        -->  data0 [ 55: 40]
                uint16            endDay          -->  data0 [ 71: 56]
                bool              isAutoUpdate    -->  data0 [ 79: 72]
                address  indexed  updaterAddr
            */
            event DailyDataUpdate(
                uint256 data0,
                address indexed updaterAddr
            );
        
            /*  Claim             (auto-generated event)
        
                uint40            timestamp       -->  data0 [ 39:  0]
                bytes20  indexed  btcAddr
                uint56            rawSatoshis     -->  data0 [ 95: 40]
                uint56            adjSatoshis     -->  data0 [151: 96]
                address  indexed  claimToAddr
                uint8             claimFlags      -->  data0 [159:152]
                uint72            claimedHearts   -->  data0 [231:160]
                address  indexed  referrerAddr
                address           senderAddr      -->  data1 [159:  0]
            */
            event Claim(
                uint256 data0,
                uint256 data1,
                bytes20 indexed btcAddr,
                address indexed claimToAddr,
                address indexed referrerAddr
            );
        
            /*  ClaimAssist       (auto-generated event)
        
                uint40            timestamp       -->  data0 [ 39:  0]
                bytes20           btcAddr         -->  data0 [199: 40]
                uint56            rawSatoshis     -->  data0 [255:200]
                uint56            adjSatoshis     -->  data1 [ 55:  0]
                address           claimToAddr     -->  data1 [215: 56]
                uint8             claimFlags      -->  data1 [223:216]
                uint72            claimedHearts   -->  data2 [ 71:  0]
                address           referrerAddr    -->  data2 [231: 72]
                address  indexed  senderAddr
            */
            event ClaimAssist(
                uint256 data0,
                uint256 data1,
                uint256 data2,
                address indexed senderAddr
            );
        
            /*  StakeStart        (auto-generated event)
        
                uint40            timestamp       -->  data0 [ 39:  0]
                address  indexed  stakerAddr
                uint40   indexed  stakeId
                uint72            stakedHearts    -->  data0 [111: 40]
                uint72            stakeShares     -->  data0 [183:112]
                uint16            stakedDays      -->  data0 [199:184]
                bool              isAutoStake     -->  data0 [207:200]
            */
            event StakeStart(
                uint256 data0,
                address indexed stakerAddr,
                uint40 indexed stakeId
            );
        
            /*  StakeGoodAccounting(auto-generated event)
        
                uint40            timestamp       -->  data0 [ 39:  0]
                address  indexed  stakerAddr
                uint40   indexed  stakeId
                uint72            stakedHearts    -->  data0 [111: 40]
                uint72            stakeShares     -->  data0 [183:112]
                uint72            payout          -->  data0 [255:184]
                uint72            penalty         -->  data1 [ 71:  0]
                address  indexed  senderAddr
            */
            event StakeGoodAccounting(
                uint256 data0,
                uint256 data1,
                address indexed stakerAddr,
                uint40 indexed stakeId,
                address indexed senderAddr
            );
        
            /*  StakeEnd          (auto-generated event)
        
                uint40            timestamp       -->  data0 [ 39:  0]
                address  indexed  stakerAddr
                uint40   indexed  stakeId
                uint72            stakedHearts    -->  data0 [111: 40]
                uint72            stakeShares     -->  data0 [183:112]
                uint72            payout          -->  data0 [255:184]
                uint72            penalty         -->  data1 [ 71:  0]
                uint16            servedDays      -->  data1 [ 87: 72]
                bool              prevUnlocked    -->  data1 [ 95: 88]
            */
            event StakeEnd(
                uint256 data0,
                uint256 data1,
                address indexed stakerAddr,
                uint40 indexed stakeId
            );
        
            /*  ShareRateChange   (auto-generated event)
        
                uint40            timestamp       -->  data0 [ 39:  0]
                uint40            shareRate       -->  data0 [ 79: 40]
                uint40   indexed  stakeId
            */
            event ShareRateChange(
                uint256 data0,
                uint40 indexed stakeId
            );
        
            /* Origin address */
            address internal constant ORIGIN_ADDR = 0x9A6a414D6F3497c05E3b1De90520765fA1E07c03;
        
            /* Flush address */
            address payable internal constant FLUSH_ADDR = 0xDEC9f2793e3c17cd26eeFb21C4762fA5128E0399;
        
            /* ERC20 constants */
            string public constant name = "HEX";
            string public constant symbol = "HEX";
            uint8 public constant decimals = 8;
        
            /* Hearts per Satoshi = 10,000 * 1e8 / 1e8 = 1e4 */
            uint256 private constant HEARTS_PER_HEX = 10 ** uint256(decimals); // 1e8
            uint256 private constant HEX_PER_BTC = 1e4;
            uint256 private constant SATOSHIS_PER_BTC = 1e8;
            uint256 internal constant HEARTS_PER_SATOSHI = HEARTS_PER_HEX / SATOSHIS_PER_BTC * HEX_PER_BTC;
        
            /* Time of contract launch (2019-12-03T00:00:00Z) */
            uint256 internal constant LAUNCH_TIME = 1575331200;
        
            /* Size of a Hearts or Shares uint */
            uint256 internal constant HEART_UINT_SIZE = 72;
        
            /* Size of a transform lobby entry index uint */
            uint256 internal constant XF_LOBBY_ENTRY_INDEX_SIZE = 40;
            uint256 internal constant XF_LOBBY_ENTRY_INDEX_MASK = (1 << XF_LOBBY_ENTRY_INDEX_SIZE) - 1;
        
            /* Seed for WAAS Lobby */
            uint256 internal constant WAAS_LOBBY_SEED_HEX = 1e9;
            uint256 internal constant WAAS_LOBBY_SEED_HEARTS = WAAS_LOBBY_SEED_HEX * HEARTS_PER_HEX;
        
            /* Start of claim phase */
            uint256 internal constant PRE_CLAIM_DAYS = 1;
            uint256 internal constant CLAIM_PHASE_START_DAY = PRE_CLAIM_DAYS;
        
            /* Length of claim phase */
            uint256 private constant CLAIM_PHASE_WEEKS = 50;
            uint256 internal constant CLAIM_PHASE_DAYS = CLAIM_PHASE_WEEKS * 7;
        
            /* End of claim phase */
            uint256 internal constant CLAIM_PHASE_END_DAY = CLAIM_PHASE_START_DAY + CLAIM_PHASE_DAYS;
        
            /* Number of words to hold 1 bit for each transform lobby day */
            uint256 internal constant XF_LOBBY_DAY_WORDS = (CLAIM_PHASE_END_DAY + 255) >> 8;
        
            /* BigPayDay */
            uint256 internal constant BIG_PAY_DAY = CLAIM_PHASE_END_DAY + 1;
        
            /* Root hash of the UTXO Merkle tree */
            bytes32 internal constant MERKLE_TREE_ROOT = 0x4e831acb4223b66de3b3d2e54a2edeefb0de3d7916e2886a4b134d9764d41bec;
        
            /* Size of a Satoshi claim uint in a Merkle leaf */
            uint256 internal constant MERKLE_LEAF_SATOSHI_SIZE = 45;
        
            /* Zero-fill between BTC address and Satoshis in a Merkle leaf */
            uint256 internal constant MERKLE_LEAF_FILL_SIZE = 256 - 160 - MERKLE_LEAF_SATOSHI_SIZE;
            uint256 internal constant MERKLE_LEAF_FILL_BASE = (1 << MERKLE_LEAF_FILL_SIZE) - 1;
            uint256 internal constant MERKLE_LEAF_FILL_MASK = MERKLE_LEAF_FILL_BASE << MERKLE_LEAF_SATOSHI_SIZE;
        
            /* Size of a Satoshi total uint */
            uint256 internal constant SATOSHI_UINT_SIZE = 51;
            uint256 internal constant SATOSHI_UINT_MASK = (1 << SATOSHI_UINT_SIZE) - 1;
        
            /* Total Satoshis from all BTC addresses in UTXO snapshot */
            uint256 internal constant FULL_SATOSHIS_TOTAL = 1807766732160668;
        
            /* Total Satoshis from supported BTC addresses in UTXO snapshot after applying Silly Whale */
            uint256 internal constant CLAIMABLE_SATOSHIS_TOTAL = 910087996911001;
        
            /* Number of claimable BTC addresses in UTXO snapshot */
            uint256 internal constant CLAIMABLE_BTC_ADDR_COUNT = 27997742;
        
            /* Largest BTC address Satoshis balance in UTXO snapshot (sanity check) */
            uint256 internal constant MAX_BTC_ADDR_BALANCE_SATOSHIS = 25550214098481;
        
            /* Percentage of total claimed Hearts that will be auto-staked from a claim */
            uint256 internal constant AUTO_STAKE_CLAIM_PERCENT = 90;
        
            /* Stake timing parameters */
            uint256 internal constant MIN_STAKE_DAYS = 1;
            uint256 internal constant MIN_AUTO_STAKE_DAYS = 350;
        
            uint256 internal constant MAX_STAKE_DAYS = 5555; // Approx 15 years
        
            uint256 internal constant EARLY_PENALTY_MIN_DAYS = 90;
        
            uint256 private constant LATE_PENALTY_GRACE_WEEKS = 2;
            uint256 internal constant LATE_PENALTY_GRACE_DAYS = LATE_PENALTY_GRACE_WEEKS * 7;
        
            uint256 private constant LATE_PENALTY_SCALE_WEEKS = 100;
            uint256 internal constant LATE_PENALTY_SCALE_DAYS = LATE_PENALTY_SCALE_WEEKS * 7;
        
            /* Stake shares Longer Pays Better bonus constants used by _stakeStartBonusHearts() */
            uint256 private constant LPB_BONUS_PERCENT = 20;
            uint256 private constant LPB_BONUS_MAX_PERCENT = 200;
            uint256 internal constant LPB = 364 * 100 / LPB_BONUS_PERCENT;
            uint256 internal constant LPB_MAX_DAYS = LPB * LPB_BONUS_MAX_PERCENT / 100;
        
            /* Stake shares Bigger Pays Better bonus constants used by _stakeStartBonusHearts() */
            uint256 private constant BPB_BONUS_PERCENT = 10;
            uint256 private constant BPB_MAX_HEX = 150 * 1e6;
            uint256 internal constant BPB_MAX_HEARTS = BPB_MAX_HEX * HEARTS_PER_HEX;
            uint256 internal constant BPB = BPB_MAX_HEARTS * 100 / BPB_BONUS_PERCENT;
        
            /* Share rate is scaled to increase precision */
            uint256 internal constant SHARE_RATE_SCALE = 1e5;
        
            /* Share rate max (after scaling) */
            uint256 internal constant SHARE_RATE_UINT_SIZE = 40;
            uint256 internal constant SHARE_RATE_MAX = (1 << SHARE_RATE_UINT_SIZE) - 1;
        
            /* Constants for preparing the claim message text */
            uint8 internal constant ETH_ADDRESS_BYTE_LEN = 20;
            uint8 internal constant ETH_ADDRESS_HEX_LEN = ETH_ADDRESS_BYTE_LEN * 2;
        
            uint8 internal constant CLAIM_PARAM_HASH_BYTE_LEN = 12;
            uint8 internal constant CLAIM_PARAM_HASH_HEX_LEN = CLAIM_PARAM_HASH_BYTE_LEN * 2;
        
            uint8 internal constant BITCOIN_SIG_PREFIX_LEN = 24;
            bytes24 internal constant BITCOIN_SIG_PREFIX_STR = "Bitcoin Signed Message:\n";
        
            bytes internal constant STD_CLAIM_PREFIX_STR = "Claim_HEX_to_0x";
            bytes internal constant OLD_CLAIM_PREFIX_STR = "Claim_BitcoinHEX_to_0x";
        
            bytes16 internal constant HEX_DIGITS = "0123456789abcdef";
        
            /* Claim flags passed to btcAddressClaim()  */
            uint8 internal constant CLAIM_FLAG_MSG_PREFIX_OLD = 1 << 0;
            uint8 internal constant CLAIM_FLAG_BTC_ADDR_COMPRESSED = 1 << 1;
            uint8 internal constant CLAIM_FLAG_BTC_ADDR_P2WPKH_IN_P2SH = 1 << 2;
            uint8 internal constant CLAIM_FLAG_BTC_ADDR_BECH32 = 1 << 3;
            uint8 internal constant CLAIM_FLAG_ETH_ADDR_LOWERCASE = 1 << 4;
        
            /* Globals expanded for memory (except _latestStakeId) and compact for storage */
            struct GlobalsCache {
                // 1
                uint256 _lockedHeartsTotal;
                uint256 _nextStakeSharesTotal;
                uint256 _shareRate;
                uint256 _stakePenaltyTotal;
                // 2
                uint256 _dailyDataCount;
                uint256 _stakeSharesTotal;
                uint40 _latestStakeId;
                uint256 _unclaimedSatoshisTotal;
                uint256 _claimedSatoshisTotal;
                uint256 _claimedBtcAddrCount;
                //
                uint256 _currentDay;
            }
        
            struct GlobalsStore {
                // 1
                uint72 lockedHeartsTotal;
                uint72 nextStakeSharesTotal;
                uint40 shareRate;
                uint72 stakePenaltyTotal;
                // 2
                uint16 dailyDataCount;
                uint72 stakeSharesTotal;
                uint40 latestStakeId;
                uint128 claimStats;
            }
        
            GlobalsStore public globals;
        
            /* Claimed BTC addresses */
            mapping(bytes20 => bool) public btcAddressClaims;
        
            /* Daily data */
            struct DailyDataStore {
                uint72 dayPayoutTotal;
                uint72 dayStakeSharesTotal;
                uint56 dayUnclaimedSatoshisTotal;
            }
        
            mapping(uint256 => DailyDataStore) public dailyData;
        
            /* Stake expanded for memory (except _stakeId) and compact for storage */
            struct StakeCache {
                uint40 _stakeId;
                uint256 _stakedHearts;
                uint256 _stakeShares;
                uint256 _lockedDay;
                uint256 _stakedDays;
                uint256 _unlockedDay;
                bool _isAutoStake;
            }
        
            struct StakeStore {
                uint40 stakeId;
                uint72 stakedHearts;
                uint72 stakeShares;
                uint16 lockedDay;
                uint16 stakedDays;
                uint16 unlockedDay;
                bool isAutoStake;
            }
        
            mapping(address => StakeStore[]) public stakeLists;
        
            /* Temporary state for calculating daily rounds */
            struct DailyRoundState {
                uint256 _allocSupplyCached;
                uint256 _mintOriginBatch;
                uint256 _payoutTotal;
            }
        
            struct XfLobbyEntryStore {
                uint96 rawAmount;
                address referrerAddr;
            }
        
            struct XfLobbyQueueStore {
                uint40 headIndex;
                uint40 tailIndex;
                mapping(uint256 => XfLobbyEntryStore) entries;
            }
        
            mapping(uint256 => uint256) public xfLobby;
            mapping(uint256 => mapping(address => XfLobbyQueueStore)) public xfLobbyMembers;
        
            /**
             * @dev PUBLIC FACING: Optionally update daily data for a smaller
             * range to reduce gas cost for a subsequent operation
             * @param beforeDay Only update days before this day number (optional; 0 for current day)
             */
            function dailyDataUpdate(uint256 beforeDay)
                external
            {
                GlobalsCache memory g;
                GlobalsCache memory gSnapshot;
                _globalsLoad(g, gSnapshot);
        
                /* Skip pre-claim period */
                require(g._currentDay > CLAIM_PHASE_START_DAY, "HEX: Too early");
        
                if (beforeDay != 0) {
                    require(beforeDay <= g._currentDay, "HEX: beforeDay cannot be in the future");
        
                    _dailyDataUpdate(g, beforeDay, false);
                } else {
                    /* Default to updating before current day */
                    _dailyDataUpdate(g, g._currentDay, false);
                }
        
                _globalsSync(g, gSnapshot);
            }
        
            /**
             * @dev PUBLIC FACING: External helper to return multiple values of daily data with
             * a single call. Ugly implementation due to limitations of the standard ABI encoder.
             * @param beginDay First day of data range
             * @param endDay Last day (non-inclusive) of data range
             * @return Fixed array of packed values
             */
            function dailyDataRange(uint256 beginDay, uint256 endDay)
                external
                view
                returns (uint256[] memory list)
            {
                require(beginDay < endDay && endDay <= globals.dailyDataCount, "HEX: range invalid");
        
                list = new uint256[](endDay - beginDay);
        
                uint256 src = beginDay;
                uint256 dst = 0;
                uint256 v;
                do {
                    v = uint256(dailyData[src].dayUnclaimedSatoshisTotal) << (HEART_UINT_SIZE * 2);
                    v |= uint256(dailyData[src].dayStakeSharesTotal) << HEART_UINT_SIZE;
                    v |= uint256(dailyData[src].dayPayoutTotal);
        
                    list[dst++] = v;
                } while (++src < endDay);
        
                return list;
            }
        
            /**
             * @dev PUBLIC FACING: External helper to return most global info with a single call.
             * Ugly implementation due to limitations of the standard ABI encoder.
             * @return Fixed array of values
             */
            function globalInfo()
                external
                view
                returns (uint256[13] memory)
            {
                uint256 _claimedBtcAddrCount;
                uint256 _claimedSatoshisTotal;
                uint256 _unclaimedSatoshisTotal;
        
                (_claimedBtcAddrCount, _claimedSatoshisTotal, _unclaimedSatoshisTotal) = _claimStatsDecode(
                    globals.claimStats
                );
        
                return [
                    // 1
                    globals.lockedHeartsTotal,
                    globals.nextStakeSharesTotal,
                    globals.shareRate,
                    globals.stakePenaltyTotal,
                    // 2
                    globals.dailyDataCount,
                    globals.stakeSharesTotal,
                    globals.latestStakeId,
                    _unclaimedSatoshisTotal,
                    _claimedSatoshisTotal,
                    _claimedBtcAddrCount,
                    //
                    block.timestamp,
                    totalSupply(),
                    xfLobby[_currentDay()]
                ];
            }
        
            /**
             * @dev PUBLIC FACING: ERC20 totalSupply() is the circulating supply and does not include any
             * staked Hearts. allocatedSupply() includes both.
             * @return Allocated Supply in Hearts
             */
            function allocatedSupply()
                external
                view
                returns (uint256)
            {
                return totalSupply() + globals.lockedHeartsTotal;
            }
        
            /**
             * @dev PUBLIC FACING: External helper for the current day number since launch time
             * @return Current day number (zero-based)
             */
            function currentDay()
                external
                view
                returns (uint256)
            {
                return _currentDay();
            }
        
            function _currentDay()
                internal
                view
                returns (uint256)
            {
                return (block.timestamp - LAUNCH_TIME) / 1 days;
            }
        
            function _dailyDataUpdateAuto(GlobalsCache memory g)
                internal
            {
                _dailyDataUpdate(g, g._currentDay, true);
            }
        
            function _globalsLoad(GlobalsCache memory g, GlobalsCache memory gSnapshot)
                internal
                view
            {
                // 1
                g._lockedHeartsTotal = globals.lockedHeartsTotal;
                g._nextStakeSharesTotal = globals.nextStakeSharesTotal;
                g._shareRate = globals.shareRate;
                g._stakePenaltyTotal = globals.stakePenaltyTotal;
                // 2
                g._dailyDataCount = globals.dailyDataCount;
                g._stakeSharesTotal = globals.stakeSharesTotal;
                g._latestStakeId = globals.latestStakeId;
                (g._claimedBtcAddrCount, g._claimedSatoshisTotal, g._unclaimedSatoshisTotal) = _claimStatsDecode(
                    globals.claimStats
                );
                //
                g._currentDay = _currentDay();
        
                _globalsCacheSnapshot(g, gSnapshot);
            }
        
            function _globalsCacheSnapshot(GlobalsCache memory g, GlobalsCache memory gSnapshot)
                internal
                pure
            {
                // 1
                gSnapshot._lockedHeartsTotal = g._lockedHeartsTotal;
                gSnapshot._nextStakeSharesTotal = g._nextStakeSharesTotal;
                gSnapshot._shareRate = g._shareRate;
                gSnapshot._stakePenaltyTotal = g._stakePenaltyTotal;
                // 2
                gSnapshot._dailyDataCount = g._dailyDataCount;
                gSnapshot._stakeSharesTotal = g._stakeSharesTotal;
                gSnapshot._latestStakeId = g._latestStakeId;
                gSnapshot._unclaimedSatoshisTotal = g._unclaimedSatoshisTotal;
                gSnapshot._claimedSatoshisTotal = g._claimedSatoshisTotal;
                gSnapshot._claimedBtcAddrCount = g._claimedBtcAddrCount;
            }
        
            function _globalsSync(GlobalsCache memory g, GlobalsCache memory gSnapshot)
                internal
            {
                if (g._lockedHeartsTotal != gSnapshot._lockedHeartsTotal
                    || g._nextStakeSharesTotal != gSnapshot._nextStakeSharesTotal
                    || g._shareRate != gSnapshot._shareRate
                    || g._stakePenaltyTotal != gSnapshot._stakePenaltyTotal) {
                    // 1
                    globals.lockedHeartsTotal = uint72(g._lockedHeartsTotal);
                    globals.nextStakeSharesTotal = uint72(g._nextStakeSharesTotal);
                    globals.shareRate = uint40(g._shareRate);
                    globals.stakePenaltyTotal = uint72(g._stakePenaltyTotal);
                }
                if (g._dailyDataCount != gSnapshot._dailyDataCount
                    || g._stakeSharesTotal != gSnapshot._stakeSharesTotal
                    || g._latestStakeId != gSnapshot._latestStakeId
                    || g._unclaimedSatoshisTotal != gSnapshot._unclaimedSatoshisTotal
                    || g._claimedSatoshisTotal != gSnapshot._claimedSatoshisTotal
                    || g._claimedBtcAddrCount != gSnapshot._claimedBtcAddrCount) {
                    // 2
                    globals.dailyDataCount = uint16(g._dailyDataCount);
                    globals.stakeSharesTotal = uint72(g._stakeSharesTotal);
                    globals.latestStakeId = g._latestStakeId;
                    globals.claimStats = _claimStatsEncode(
                        g._claimedBtcAddrCount,
                        g._claimedSatoshisTotal,
                        g._unclaimedSatoshisTotal
                    );
                }
            }
        
            function _stakeLoad(StakeStore storage stRef, uint40 stakeIdParam, StakeCache memory st)
                internal
                view
            {
                /* Ensure caller's stakeIndex is still current */
                require(stakeIdParam == stRef.stakeId, "HEX: stakeIdParam not in stake");
        
                st._stakeId = stRef.stakeId;
                st._stakedHearts = stRef.stakedHearts;
                st._stakeShares = stRef.stakeShares;
                st._lockedDay = stRef.lockedDay;
                st._stakedDays = stRef.stakedDays;
                st._unlockedDay = stRef.unlockedDay;
                st._isAutoStake = stRef.isAutoStake;
            }
        
            function _stakeUpdate(StakeStore storage stRef, StakeCache memory st)
                internal
            {
                stRef.stakeId = st._stakeId;
                stRef.stakedHearts = uint72(st._stakedHearts);
                stRef.stakeShares = uint72(st._stakeShares);
                stRef.lockedDay = uint16(st._lockedDay);
                stRef.stakedDays = uint16(st._stakedDays);
                stRef.unlockedDay = uint16(st._unlockedDay);
                stRef.isAutoStake = st._isAutoStake;
            }
        
            function _stakeAdd(
                StakeStore[] storage stakeListRef,
                uint40 newStakeId,
                uint256 newStakedHearts,
                uint256 newStakeShares,
                uint256 newLockedDay,
                uint256 newStakedDays,
                bool newAutoStake
            )
                internal
            {
                stakeListRef.push(
                    StakeStore(
                        newStakeId,
                        uint72(newStakedHearts),
                        uint72(newStakeShares),
                        uint16(newLockedDay),
                        uint16(newStakedDays),
                        uint16(0), // unlockedDay
                        newAutoStake
                    )
                );
            }
        
            /**
             * @dev Efficiently delete from an unordered array by moving the last element
             * to the "hole" and reducing the array length. Can change the order of the list
             * and invalidate previously held indexes.
             * @notice stakeListRef length and stakeIndex are already ensured valid in stakeEnd()
             * @param stakeListRef Reference to stakeLists[stakerAddr] array in storage
             * @param stakeIndex Index of the element to delete
             */
            function _stakeRemove(StakeStore[] storage stakeListRef, uint256 stakeIndex)
                internal
            {
                uint256 lastIndex = stakeListRef.length - 1;
        
                /* Skip the copy if element to be removed is already the last element */
                if (stakeIndex != lastIndex) {
                    /* Copy last element to the requested element's "hole" */
                    stakeListRef[stakeIndex] = stakeListRef[lastIndex];
                }
        
                /*
                    Reduce the array length now that the array is contiguous.
                    Surprisingly, 'pop()' uses less gas than 'stakeListRef.length = lastIndex'
                */
                stakeListRef.pop();
            }
        
            function _claimStatsEncode(
                uint256 _claimedBtcAddrCount,
                uint256 _claimedSatoshisTotal,
                uint256 _unclaimedSatoshisTotal
            )
                internal
                pure
                returns (uint128)
            {
                uint256 v = _claimedBtcAddrCount << (SATOSHI_UINT_SIZE * 2);
                v |= _claimedSatoshisTotal << SATOSHI_UINT_SIZE;
                v |= _unclaimedSatoshisTotal;
        
                return uint128(v);
            }
        
            function _claimStatsDecode(uint128 v)
                internal
                pure
                returns (uint256 _claimedBtcAddrCount, uint256 _claimedSatoshisTotal, uint256 _unclaimedSatoshisTotal)
            {
                _claimedBtcAddrCount = v >> (SATOSHI_UINT_SIZE * 2);
                _claimedSatoshisTotal = (v >> SATOSHI_UINT_SIZE) & SATOSHI_UINT_MASK;
                _unclaimedSatoshisTotal = v & SATOSHI_UINT_MASK;
        
                return (_claimedBtcAddrCount, _claimedSatoshisTotal, _unclaimedSatoshisTotal);
            }
        
            /**
             * @dev Estimate the stake payout for an incomplete day
             * @param g Cache of stored globals
             * @param stakeSharesParam Param from stake to calculate bonuses for
             * @param day Day to calculate bonuses for
             * @return Payout in Hearts
             */
            function _estimatePayoutRewardsDay(GlobalsCache memory g, uint256 stakeSharesParam, uint256 day)
                internal
                view
                returns (uint256 payout)
            {
                /* Prevent updating state for this estimation */
                GlobalsCache memory gTmp;
                _globalsCacheSnapshot(g, gTmp);
        
                DailyRoundState memory rs;
                rs._allocSupplyCached = totalSupply() + g._lockedHeartsTotal;
        
                _dailyRoundCalc(gTmp, rs, day);
        
                /* Stake is no longer locked so it must be added to total as if it were */
                gTmp._stakeSharesTotal += stakeSharesParam;
        
                payout = rs._payoutTotal * stakeSharesParam / gTmp._stakeSharesTotal;
        
                if (day == BIG_PAY_DAY) {
                    uint256 bigPaySlice = gTmp._unclaimedSatoshisTotal * HEARTS_PER_SATOSHI * stakeSharesParam
                        / gTmp._stakeSharesTotal;
                    payout += bigPaySlice + _calcAdoptionBonus(gTmp, bigPaySlice);
                }
        
                return payout;
            }
        
            function _calcAdoptionBonus(GlobalsCache memory g, uint256 payout)
                internal
                pure
                returns (uint256)
            {
                /*
                    VIRAL REWARDS: Add adoption percentage bonus to payout
        
                    viral = payout * (claimedBtcAddrCount / CLAIMABLE_BTC_ADDR_COUNT)
                */
                uint256 viral = payout * g._claimedBtcAddrCount / CLAIMABLE_BTC_ADDR_COUNT;
        
                /*
                    CRIT MASS REWARDS: Add adoption percentage bonus to payout
        
                    crit  = payout * (claimedSatoshisTotal / CLAIMABLE_SATOSHIS_TOTAL)
                */
                uint256 crit = payout * g._claimedSatoshisTotal / CLAIMABLE_SATOSHIS_TOTAL;
        
                return viral + crit;
            }
        
            function _dailyRoundCalc(GlobalsCache memory g, DailyRoundState memory rs, uint256 day)
                private
                pure
            {
                /*
                    Calculate payout round
        
                    Inflation of 3.69% inflation per 364 days             (approx 1 year)
                    dailyInterestRate   = exp(log(1 + 3.69%)  / 364) - 1
                                        = exp(log(1 + 0.0369) / 364) - 1
                                        = exp(log(1.0369) / 364) - 1
                                        = 0.000099553011616349            (approx)
        
                    payout  = allocSupply * dailyInterestRate
                            = allocSupply / (1 / dailyInterestRate)
                            = allocSupply / (1 / 0.000099553011616349)
                            = allocSupply / 10044.899534066692            (approx)
                            = allocSupply * 10000 / 100448995             (* 10000/10000 for int precision)
                */
                rs._payoutTotal = rs._allocSupplyCached * 10000 / 100448995;
        
                if (day < CLAIM_PHASE_END_DAY) {
                    uint256 bigPaySlice = g._unclaimedSatoshisTotal * HEARTS_PER_SATOSHI / CLAIM_PHASE_DAYS;
        
                    uint256 originBonus = bigPaySlice + _calcAdoptionBonus(g, rs._payoutTotal + bigPaySlice);
                    rs._mintOriginBatch += originBonus;
                    rs._allocSupplyCached += originBonus;
        
                    rs._payoutTotal += _calcAdoptionBonus(g, rs._payoutTotal);
                }
        
                if (g._stakePenaltyTotal != 0) {
                    rs._payoutTotal += g._stakePenaltyTotal;
                    g._stakePenaltyTotal = 0;
                }
            }
        
            function _dailyRoundCalcAndStore(GlobalsCache memory g, DailyRoundState memory rs, uint256 day)
                private
            {
                _dailyRoundCalc(g, rs, day);
        
                dailyData[day].dayPayoutTotal = uint72(rs._payoutTotal);
                dailyData[day].dayStakeSharesTotal = uint72(g._stakeSharesTotal);
                dailyData[day].dayUnclaimedSatoshisTotal = uint56(g._unclaimedSatoshisTotal);
            }
        
            function _dailyDataUpdate(GlobalsCache memory g, uint256 beforeDay, bool isAutoUpdate)
                private
            {
                if (g._dailyDataCount >= beforeDay) {
                    /* Already up-to-date */
                    return;
                }
        
                DailyRoundState memory rs;
                rs._allocSupplyCached = totalSupply() + g._lockedHeartsTotal;
        
                uint256 day = g._dailyDataCount;
        
                _dailyRoundCalcAndStore(g, rs, day);
        
                /* Stakes started during this day are added to the total the next day */
                if (g._nextStakeSharesTotal != 0) {
                    g._stakeSharesTotal += g._nextStakeSharesTotal;
                    g._nextStakeSharesTotal = 0;
                }
        
                while (++day < beforeDay) {
                    _dailyRoundCalcAndStore(g, rs, day);
                }
        
                _emitDailyDataUpdate(g._dailyDataCount, day, isAutoUpdate);
                g._dailyDataCount = day;
        
                if (rs._mintOriginBatch != 0) {
                    _mint(ORIGIN_ADDR, rs._mintOriginBatch);
                }
            }
        
            function _emitDailyDataUpdate(uint256 beginDay, uint256 endDay, bool isAutoUpdate)
                private
            {
                emit DailyDataUpdate( // (auto-generated event)
                    uint256(uint40(block.timestamp))
                        | (uint256(uint16(beginDay)) << 40)
                        | (uint256(uint16(endDay)) << 56)
                        | (isAutoUpdate ? (1 << 72) : 0),
                    msg.sender
                );
            }
        }
        
        contract StakeableToken is GlobalsAndUtility {
            /**
             * @dev PUBLIC FACING: Open a stake.
             * @param newStakedHearts Number of Hearts to stake
             * @param newStakedDays Number of days to stake
             */
            function stakeStart(uint256 newStakedHearts, uint256 newStakedDays)
                external
            {
                GlobalsCache memory g;
                GlobalsCache memory gSnapshot;
                _globalsLoad(g, gSnapshot);
        
                /* Enforce the minimum stake time */
                require(newStakedDays >= MIN_STAKE_DAYS, "HEX: newStakedDays lower than minimum");
        
                /* Check if log data needs to be updated */
                _dailyDataUpdateAuto(g);
        
                _stakeStart(g, newStakedHearts, newStakedDays, false);
        
                /* Remove staked Hearts from balance of staker */
                _burn(msg.sender, newStakedHearts);
        
                _globalsSync(g, gSnapshot);
            }
        
            /**
             * @dev PUBLIC FACING: Unlocks a completed stake, distributing the proceeds of any penalty
             * immediately. The staker must still call stakeEnd() to retrieve their stake return (if any).
             * @param stakerAddr Address of staker
             * @param stakeIndex Index of stake within stake list
             * @param stakeIdParam The stake's id
             */
            function stakeGoodAccounting(address stakerAddr, uint256 stakeIndex, uint40 stakeIdParam)
                external
            {
                GlobalsCache memory g;
                GlobalsCache memory gSnapshot;
                _globalsLoad(g, gSnapshot);
        
                /* require() is more informative than the default assert() */
                require(stakeLists[stakerAddr].length != 0, "HEX: Empty stake list");
                require(stakeIndex < stakeLists[stakerAddr].length, "HEX: stakeIndex invalid");
        
                StakeStore storage stRef = stakeLists[stakerAddr][stakeIndex];
        
                /* Get stake copy */
                StakeCache memory st;
                _stakeLoad(stRef, stakeIdParam, st);
        
                /* Stake must have served full term */
                require(g._currentDay >= st._lockedDay + st._stakedDays, "HEX: Stake not fully served");
        
                /* Stake must still be locked */
                require(st._unlockedDay == 0, "HEX: Stake already unlocked");
        
                /* Check if log data needs to be updated */
                _dailyDataUpdateAuto(g);
        
                /* Unlock the completed stake */
                _stakeUnlock(g, st);
        
                /* stakeReturn value is unused here */
                (, uint256 payout, uint256 penalty, uint256 cappedPenalty) = _stakePerformance(
                    g,
                    st,
                    st._stakedDays
                );
        
                _emitStakeGoodAccounting(
                    stakerAddr,
                    stakeIdParam,
                    st._stakedHearts,
                    st._stakeShares,
                    payout,
                    penalty
                );
        
                if (cappedPenalty != 0) {
                    _splitPenaltyProceeds(g, cappedPenalty);
                }
        
                /* st._unlockedDay has changed */
                _stakeUpdate(stRef, st);
        
                _globalsSync(g, gSnapshot);
            }
        
            /**
             * @dev PUBLIC FACING: Closes a stake. The order of the stake list can change so
             * a stake id is used to reject stale indexes.
             * @param stakeIndex Index of stake within stake list
             * @param stakeIdParam The stake's id
             */
            function stakeEnd(uint256 stakeIndex, uint40 stakeIdParam)
                external
            {
                GlobalsCache memory g;
                GlobalsCache memory gSnapshot;
                _globalsLoad(g, gSnapshot);
        
                StakeStore[] storage stakeListRef = stakeLists[msg.sender];
        
                /* require() is more informative than the default assert() */
                require(stakeListRef.length != 0, "HEX: Empty stake list");
                require(stakeIndex < stakeListRef.length, "HEX: stakeIndex invalid");
        
                /* Get stake copy */
                StakeCache memory st;
                _stakeLoad(stakeListRef[stakeIndex], stakeIdParam, st);
        
                /* Check if log data needs to be updated */
                _dailyDataUpdateAuto(g);
        
                uint256 servedDays = 0;
        
                bool prevUnlocked = (st._unlockedDay != 0);
                uint256 stakeReturn;
                uint256 payout = 0;
                uint256 penalty = 0;
                uint256 cappedPenalty = 0;
        
                if (g._currentDay >= st._lockedDay) {
                    if (prevUnlocked) {
                        /* Previously unlocked in stakeGoodAccounting(), so must have served full term */
                        servedDays = st._stakedDays;
                    } else {
                        _stakeUnlock(g, st);
        
                        servedDays = g._currentDay - st._lockedDay;
                        if (servedDays > st._stakedDays) {
                            servedDays = st._stakedDays;
                        } else {
                            /* Deny early-unstake before an auto-stake minimum has been served */
                            if (servedDays < MIN_AUTO_STAKE_DAYS) {
                                require(!st._isAutoStake, "HEX: Auto-stake still locked");
                            }
                        }
                    }
        
                    (stakeReturn, payout, penalty, cappedPenalty) = _stakePerformance(g, st, servedDays);
                } else {
                    /* Deny early-unstake before an auto-stake minimum has been served */
                    require(!st._isAutoStake, "HEX: Auto-stake still locked");
        
                    /* Stake hasn't been added to the total yet, so no penalties or rewards apply */
                    g._nextStakeSharesTotal -= st._stakeShares;
        
                    stakeReturn = st._stakedHearts;
                }
        
                _emitStakeEnd(
                    stakeIdParam,
                    st._stakedHearts,
                    st._stakeShares,
                    payout,
                    penalty,
                    servedDays,
                    prevUnlocked
                );
        
                if (cappedPenalty != 0 && !prevUnlocked) {
                    /* Split penalty proceeds only if not previously unlocked by stakeGoodAccounting() */
                    _splitPenaltyProceeds(g, cappedPenalty);
                }
        
                /* Pay the stake return, if any, to the staker */
                if (stakeReturn != 0) {
                    _mint(msg.sender, stakeReturn);
        
                    /* Update the share rate if necessary */
                    _shareRateUpdate(g, st, stakeReturn);
                }
                g._lockedHeartsTotal -= st._stakedHearts;
        
                _stakeRemove(stakeListRef, stakeIndex);
        
                _globalsSync(g, gSnapshot);
            }
        
            /**
             * @dev PUBLIC FACING: Return the current stake count for a staker address
             * @param stakerAddr Address of staker
             */
            function stakeCount(address stakerAddr)
                external
                view
                returns (uint256)
            {
                return stakeLists[stakerAddr].length;
            }
        
            /**
             * @dev Open a stake.
             * @param g Cache of stored globals
             * @param newStakedHearts Number of Hearts to stake
             * @param newStakedDays Number of days to stake
             * @param newAutoStake Stake is automatic directly from a new claim
             */
            function _stakeStart(
                GlobalsCache memory g,
                uint256 newStakedHearts,
                uint256 newStakedDays,
                bool newAutoStake
            )
                internal
            {
                /* Enforce the maximum stake time */
                require(newStakedDays <= MAX_STAKE_DAYS, "HEX: newStakedDays higher than maximum");
        
                uint256 bonusHearts = _stakeStartBonusHearts(newStakedHearts, newStakedDays);
                uint256 newStakeShares = (newStakedHearts + bonusHearts) * SHARE_RATE_SCALE / g._shareRate;
        
                /* Ensure newStakedHearts is enough for at least one stake share */
                require(newStakeShares != 0, "HEX: newStakedHearts must be at least minimum shareRate");
        
                /*
                    The stakeStart timestamp will always be part-way through the current
                    day, so it needs to be rounded-up to the next day to ensure all
                    stakes align with the same fixed calendar days. The current day is
                    already rounded-down, so rounded-up is current day + 1.
                */
                uint256 newLockedDay = g._currentDay < CLAIM_PHASE_START_DAY
                    ? CLAIM_PHASE_START_DAY + 1
                    : g._currentDay + 1;
        
                /* Create Stake */
                uint40 newStakeId = ++g._latestStakeId;
                _stakeAdd(
                    stakeLists[msg.sender],
                    newStakeId,
                    newStakedHearts,
                    newStakeShares,
                    newLockedDay,
                    newStakedDays,
                    newAutoStake
                );
        
                _emitStakeStart(newStakeId, newStakedHearts, newStakeShares, newStakedDays, newAutoStake);
        
                /* Stake is added to total in the next round, not the current round */
                g._nextStakeSharesTotal += newStakeShares;
        
                /* Track total staked Hearts for inflation calculations */
                g._lockedHeartsTotal += newStakedHearts;
            }
        
            /**
             * @dev Calculates total stake payout including rewards for a multi-day range
             * @param g Cache of stored globals
             * @param stakeSharesParam Param from stake to calculate bonuses for
             * @param beginDay First day to calculate bonuses for
             * @param endDay Last day (non-inclusive) of range to calculate bonuses for
             * @return Payout in Hearts
             */
            function _calcPayoutRewards(
                GlobalsCache memory g,
                uint256 stakeSharesParam,
                uint256 beginDay,
                uint256 endDay
            )
                private
                view
                returns (uint256 payout)
            {
                for (uint256 day = beginDay; day < endDay; day++) {
                    payout += dailyData[day].dayPayoutTotal * stakeSharesParam
                        / dailyData[day].dayStakeSharesTotal;
                }
        
                /* Less expensive to re-read storage than to have the condition inside the loop */
                if (beginDay <= BIG_PAY_DAY && endDay > BIG_PAY_DAY) {
                    uint256 bigPaySlice = g._unclaimedSatoshisTotal * HEARTS_PER_SATOSHI * stakeSharesParam
                        / dailyData[BIG_PAY_DAY].dayStakeSharesTotal;
        
                    payout += bigPaySlice + _calcAdoptionBonus(g, bigPaySlice);
                }
                return payout;
            }
        
            /**
             * @dev Calculate bonus Hearts for a new stake, if any
             * @param newStakedHearts Number of Hearts to stake
             * @param newStakedDays Number of days to stake
             */
            function _stakeStartBonusHearts(uint256 newStakedHearts, uint256 newStakedDays)
                private
                pure
                returns (uint256 bonusHearts)
            {
                /*
                    LONGER PAYS BETTER:
        
                    If longer than 1 day stake is committed to, each extra day
                    gives bonus shares of approximately 0.0548%, which is approximately 20%
                    extra per year of increased stake length committed to, but capped to a
                    maximum of 200% extra.
        
                    extraDays       =  stakedDays - 1
        
                    longerBonus%    = (extraDays / 364) * 20%
                                    = (extraDays / 364) / 5
                                    =  extraDays / 1820
                                    =  extraDays / LPB
        
                    extraDays       =  longerBonus% * 1820
                    extraDaysMax    =  longerBonusMax% * 1820
                                    =  200% * 1820
                                    =  3640
                                    =  LPB_MAX_DAYS
        
                    BIGGER PAYS BETTER:
        
                    Bonus percentage scaled 0% to 10% for the first 150M HEX of stake.
        
                    biggerBonus%    = (cappedHearts /  BPB_MAX_HEARTS) * 10%
                                    = (cappedHearts /  BPB_MAX_HEARTS) / 10
                                    =  cappedHearts / (BPB_MAX_HEARTS * 10)
                                    =  cappedHearts /  BPB
        
                    COMBINED:
        
                    combinedBonus%  =            longerBonus%  +  biggerBonus%
        
                                              cappedExtraDays     cappedHearts
                                    =         ---------------  +  ------------
                                                    LPB               BPB
        
                                        cappedExtraDays * BPB     cappedHearts * LPB
                                    =   ---------------------  +  ------------------
                                              LPB * BPB               LPB * BPB
        
                                        cappedExtraDays * BPB  +  cappedHearts * LPB
                                    =   --------------------------------------------
                                                          LPB  *  BPB
        
                    bonusHearts     = hearts * combinedBonus%
                                    = hearts * (cappedExtraDays * BPB  +  cappedHearts * LPB) / (LPB * BPB)
                */
                uint256 cappedExtraDays = 0;
        
                /* Must be more than 1 day for Longer-Pays-Better */
                if (newStakedDays > 1) {
                    cappedExtraDays = newStakedDays <= LPB_MAX_DAYS ? newStakedDays - 1 : LPB_MAX_DAYS;
                }
        
                uint256 cappedStakedHearts = newStakedHearts <= BPB_MAX_HEARTS
                    ? newStakedHearts
                    : BPB_MAX_HEARTS;
        
                bonusHearts = cappedExtraDays * BPB + cappedStakedHearts * LPB;
                bonusHearts = newStakedHearts * bonusHearts / (LPB * BPB);
        
                return bonusHearts;
            }
        
            function _stakeUnlock(GlobalsCache memory g, StakeCache memory st)
                private
                pure
            {
                g._stakeSharesTotal -= st._stakeShares;
                st._unlockedDay = g._currentDay;
            }
        
            function _stakePerformance(GlobalsCache memory g, StakeCache memory st, uint256 servedDays)
                private
                view
                returns (uint256 stakeReturn, uint256 payout, uint256 penalty, uint256 cappedPenalty)
            {
                if (servedDays < st._stakedDays) {
                    (payout, penalty) = _calcPayoutAndEarlyPenalty(
                        g,
                        st._lockedDay,
                        st._stakedDays,
                        servedDays,
                        st._stakeShares
                    );
                    stakeReturn = st._stakedHearts + payout;
                } else {
                    // servedDays must == stakedDays here
                    payout = _calcPayoutRewards(
                        g,
                        st._stakeShares,
                        st._lockedDay,
                        st._lockedDay + servedDays
                    );
                    stakeReturn = st._stakedHearts + payout;
        
                    penalty = _calcLatePenalty(st._lockedDay, st._stakedDays, st._unlockedDay, stakeReturn);
                }
                if (penalty != 0) {
                    if (penalty > stakeReturn) {
                        /* Cannot have a negative stake return */
                        cappedPenalty = stakeReturn;
                        stakeReturn = 0;
                    } else {
                        /* Remove penalty from the stake return */
                        cappedPenalty = penalty;
                        stakeReturn -= cappedPenalty;
                    }
                }
                return (stakeReturn, payout, penalty, cappedPenalty);
            }
        
            function _calcPayoutAndEarlyPenalty(
                GlobalsCache memory g,
                uint256 lockedDayParam,
                uint256 stakedDaysParam,
                uint256 servedDays,
                uint256 stakeSharesParam
            )
                private
                view
                returns (uint256 payout, uint256 penalty)
            {
                uint256 servedEndDay = lockedDayParam + servedDays;
        
                /* 50% of stakedDays (rounded up) with a minimum applied */
                uint256 penaltyDays = (stakedDaysParam + 1) / 2;
                if (penaltyDays < EARLY_PENALTY_MIN_DAYS) {
                    penaltyDays = EARLY_PENALTY_MIN_DAYS;
                }
        
                if (servedDays == 0) {
                    /* Fill penalty days with the estimated average payout */
                    uint256 expected = _estimatePayoutRewardsDay(g, stakeSharesParam, lockedDayParam);
                    penalty = expected * penaltyDays;
                    return (payout, penalty); // Actual payout was 0
                }
        
                if (penaltyDays < servedDays) {
                    /*
                        Simplified explanation of intervals where end-day is non-inclusive:
        
                        penalty:    [lockedDay  ...  penaltyEndDay)
                        delta:                      [penaltyEndDay  ...  servedEndDay)
                        payout:     [lockedDay  .......................  servedEndDay)
                    */
                    uint256 penaltyEndDay = lockedDayParam + penaltyDays;
                    penalty = _calcPayoutRewards(g, stakeSharesParam, lockedDayParam, penaltyEndDay);
        
                    uint256 delta = _calcPayoutRewards(g, stakeSharesParam, penaltyEndDay, servedEndDay);
                    payout = penalty + delta;
                    return (payout, penalty);
                }
        
                /* penaltyDays >= servedDays  */
                payout = _calcPayoutRewards(g, stakeSharesParam, lockedDayParam, servedEndDay);
        
                if (penaltyDays == servedDays) {
                    penalty = payout;
                } else {
                    /*
                        (penaltyDays > servedDays) means not enough days served, so fill the
                        penalty days with the average payout from only the days that were served.
                    */
                    penalty = payout * penaltyDays / servedDays;
                }
                return (payout, penalty);
            }
        
            function _calcLatePenalty(
                uint256 lockedDayParam,
                uint256 stakedDaysParam,
                uint256 unlockedDayParam,
                uint256 rawStakeReturn
            )
                private
                pure
                returns (uint256)
            {
                /* Allow grace time before penalties accrue */
                uint256 maxUnlockedDay = lockedDayParam + stakedDaysParam + LATE_PENALTY_GRACE_DAYS;
                if (unlockedDayParam <= maxUnlockedDay) {
                    return 0;
                }
        
                /* Calculate penalty as a percentage of stake return based on time */
                return rawStakeReturn * (unlockedDayParam - maxUnlockedDay) / LATE_PENALTY_SCALE_DAYS;
            }
        
            function _splitPenaltyProceeds(GlobalsCache memory g, uint256 penalty)
                private
            {
                /* Split a penalty 50:50 between Origin and stakePenaltyTotal */
                uint256 splitPenalty = penalty / 2;
        
                if (splitPenalty != 0) {
                    _mint(ORIGIN_ADDR, splitPenalty);
                }
        
                /* Use the other half of the penalty to account for an odd-numbered penalty */
                splitPenalty = penalty - splitPenalty;
                g._stakePenaltyTotal += splitPenalty;
            }
        
            function _shareRateUpdate(GlobalsCache memory g, StakeCache memory st, uint256 stakeReturn)
                private
            {
                if (stakeReturn > st._stakedHearts) {
                    /*
                        Calculate the new shareRate that would yield the same number of shares if
                        the user re-staked this stakeReturn, factoring in any bonuses they would
                        receive in stakeStart().
                    */
                    uint256 bonusHearts = _stakeStartBonusHearts(stakeReturn, st._stakedDays);
                    uint256 newShareRate = (stakeReturn + bonusHearts) * SHARE_RATE_SCALE / st._stakeShares;
        
                    if (newShareRate > SHARE_RATE_MAX) {
                        /*
                            Realistically this can't happen, but there are contrived theoretical
                            scenarios that can lead to extreme values of newShareRate, so it is
                            capped to prevent them anyway.
                        */
                        newShareRate = SHARE_RATE_MAX;
                    }
        
                    if (newShareRate > g._shareRate) {
                        g._shareRate = newShareRate;
        
                        _emitShareRateChange(newShareRate, st._stakeId);
                    }
                }
            }
        
            function _emitStakeStart(
                uint40 stakeId,
                uint256 stakedHearts,
                uint256 stakeShares,
                uint256 stakedDays,
                bool isAutoStake
            )
                private
            {
                emit StakeStart( // (auto-generated event)
                    uint256(uint40(block.timestamp))
                        | (uint256(uint72(stakedHearts)) << 40)
                        | (uint256(uint72(stakeShares)) << 112)
                        | (uint256(uint16(stakedDays)) << 184)
                        | (isAutoStake ? (1 << 200) : 0),
                    msg.sender,
                    stakeId
                );
            }
        
            function _emitStakeGoodAccounting(
                address stakerAddr,
                uint40 stakeId,
                uint256 stakedHearts,
                uint256 stakeShares,
                uint256 payout,
                uint256 penalty
            )
                private
            {
                emit StakeGoodAccounting( // (auto-generated event)
                    uint256(uint40(block.timestamp))
                        | (uint256(uint72(stakedHearts)) << 40)
                        | (uint256(uint72(stakeShares)) << 112)
                        | (uint256(uint72(payout)) << 184),
                    uint256(uint72(penalty)),
                    stakerAddr,
                    stakeId,
                    msg.sender
                );
            }
        
            function _emitStakeEnd(
                uint40 stakeId,
                uint256 stakedHearts,
                uint256 stakeShares,
                uint256 payout,
                uint256 penalty,
                uint256 servedDays,
                bool prevUnlocked
            )
                private
            {
                emit StakeEnd( // (auto-generated event)
                    uint256(uint40(block.timestamp))
                        | (uint256(uint72(stakedHearts)) << 40)
                        | (uint256(uint72(stakeShares)) << 112)
                        | (uint256(uint72(payout)) << 184),
                    uint256(uint72(penalty))
                        | (uint256(uint16(servedDays)) << 72)
                        | (prevUnlocked ? (1 << 88) : 0),
                    msg.sender,
                    stakeId
                );
            }
        
            function _emitShareRateChange(uint256 shareRate, uint40 stakeId)
                private
            {
                emit ShareRateChange( // (auto-generated event)
                    uint256(uint40(block.timestamp))
                        | (uint256(uint40(shareRate)) << 40),
                    stakeId
                );
            }
        }
        
        /**
         * @dev These functions deal with verification of Merkle trees (hash trees),
         */
        library MerkleProof {
            /**
             * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
             * defined by `root`. For this, a `proof` must be provided, containing
             * sibling hashes on the branch from the leaf to the root of the tree. Each
             * pair of leaves and each pair of pre-images are assumed to be sorted.
             */
            function verify(bytes32[] memory proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
                bytes32 computedHash = leaf;
        
                for (uint256 i = 0; i < proof.length; i++) {
                    bytes32 proofElement = proof[i];
        
                    if (computedHash < proofElement) {
                        // Hash(current computed hash + current element of the proof)
                        computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
                    } else {
                        // Hash(current element of the proof + current computed hash)
                        computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
                    }
                }
        
                // Check if the computed hash (root) is equal to the provided root
                return computedHash == root;
            }
        }
        
        contract UTXOClaimValidation is StakeableToken {
            /**
             * @dev PUBLIC FACING: Verify a BTC address and balance are unclaimed and part of the Merkle tree
             * @param btcAddr Bitcoin address (binary; no base58-check encoding)
             * @param rawSatoshis Raw BTC address balance in Satoshis
             * @param proof Merkle tree proof
             * @return True if can be claimed
             */
            function btcAddressIsClaimable(bytes20 btcAddr, uint256 rawSatoshis, bytes32[] calldata proof)
                external
                view
                returns (bool)
            {
                uint256 day = _currentDay();
        
                require(day >= CLAIM_PHASE_START_DAY, "HEX: Claim phase has not yet started");
                require(day < CLAIM_PHASE_END_DAY, "HEX: Claim phase has ended");
        
                /* Don't need to check Merkle proof if UTXO BTC address has already been claimed    */
                if (btcAddressClaims[btcAddr]) {
                    return false;
                }
        
                /* Verify the Merkle tree proof */
                return _btcAddressIsValid(btcAddr, rawSatoshis, proof);
            }
        
            /**
             * @dev PUBLIC FACING: Verify a BTC address and balance are part of the Merkle tree
             * @param btcAddr Bitcoin address (binary; no base58-check encoding)
             * @param rawSatoshis Raw BTC address balance in Satoshis
             * @param proof Merkle tree proof
             * @return True if valid
             */
            function btcAddressIsValid(bytes20 btcAddr, uint256 rawSatoshis, bytes32[] calldata proof)
                external
                pure
                returns (bool)
            {
                return _btcAddressIsValid(btcAddr, rawSatoshis, proof);
            }
        
            /**
             * @dev PUBLIC FACING: Verify a Merkle proof using the UTXO Merkle tree
             * @param merkleLeaf Leaf asserted to be present in the Merkle tree
             * @param proof Generated Merkle tree proof
             * @return True if valid
             */
            function merkleProofIsValid(bytes32 merkleLeaf, bytes32[] calldata proof)
                external
                pure
                returns (bool)
            {
                return _merkleProofIsValid(merkleLeaf, proof);
            }
        
            /**
             * @dev PUBLIC FACING: Verify that a Bitcoin signature matches the claim message containing
             * the Ethereum address and claim param hash
             * @param claimToAddr Eth address within the signed claim message
             * @param claimParamHash Param hash within the signed claim message
             * @param pubKeyX First  half of uncompressed ECDSA public key
             * @param pubKeyY Second half of uncompressed ECDSA public key
             * @param claimFlags Claim flags specifying address and message formats
             * @param v v parameter of ECDSA signature
             * @param r r parameter of ECDSA signature
             * @param s s parameter of ECDSA signature
             * @return True if matching
             */
            function claimMessageMatchesSignature(
                address claimToAddr,
                bytes32 claimParamHash,
                bytes32 pubKeyX,
                bytes32 pubKeyY,
                uint8 claimFlags,
                uint8 v,
                bytes32 r,
                bytes32 s
            )
                public
                pure
                returns (bool)
            {
                require(v >= 27 && v <= 30, "HEX: v invalid");
        
                /*
                    ecrecover() returns an Eth address rather than a public key, so
                    we must do the same to compare.
                */
                address pubKeyEthAddr = pubKeyToEthAddress(pubKeyX, pubKeyY);
        
                /* Create and hash the claim message text */
                bytes32 messageHash = _hash256(
                    _claimMessageCreate(claimToAddr, claimParamHash, claimFlags)
                );
        
                /* Verify the public key */
                return ecrecover(messageHash, v, r, s) == pubKeyEthAddr;
            }
        
            /**
             * @dev PUBLIC FACING: Derive an Ethereum address from an ECDSA public key
             * @param pubKeyX First  half of uncompressed ECDSA public key
             * @param pubKeyY Second half of uncompressed ECDSA public key
             * @return Derived Eth address
             */
            function pubKeyToEthAddress(bytes32 pubKeyX, bytes32 pubKeyY)
                public
                pure
                returns (address)
            {
                return address(uint160(uint256(keccak256(abi.encodePacked(pubKeyX, pubKeyY)))));
            }
        
            /**
             * @dev PUBLIC FACING: Derive a Bitcoin address from an ECDSA public key
             * @param pubKeyX First  half of uncompressed ECDSA public key
             * @param pubKeyY Second half of uncompressed ECDSA public key
             * @param claimFlags Claim flags specifying address and message formats
             * @return Derived Bitcoin address (binary; no base58-check encoding)
             */
            function pubKeyToBtcAddress(bytes32 pubKeyX, bytes32 pubKeyY, uint8 claimFlags)
                public
                pure
                returns (bytes20)
            {
                /*
                    Helpful references:
                     - https://en.bitcoin.it/wiki/Technical_background_of_version_1_Bitcoin_addresses
                     - https://github.com/cryptocoinjs/ecurve/blob/master/lib/point.js
                */
                uint8 startingByte;
                bytes memory pubKey;
                bool compressed = (claimFlags & CLAIM_FLAG_BTC_ADDR_COMPRESSED) != 0;
                bool nested = (claimFlags & CLAIM_FLAG_BTC_ADDR_P2WPKH_IN_P2SH) != 0;
                bool bech32 = (claimFlags & CLAIM_FLAG_BTC_ADDR_BECH32) != 0;
        
                if (compressed) {
                    /* Compressed public key format */
                    require(!(nested && bech32), "HEX: claimFlags invalid");
        
                    startingByte = (pubKeyY[31] & 0x01) == 0 ? 0x02 : 0x03;
                    pubKey = abi.encodePacked(startingByte, pubKeyX);
                } else {
                    /* Uncompressed public key format */
                    require(!nested && !bech32, "HEX: claimFlags invalid");
        
                    startingByte = 0x04;
                    pubKey = abi.encodePacked(startingByte, pubKeyX, pubKeyY);
                }
        
                bytes20 pubKeyHash = _hash160(pubKey);
                if (nested) {
                    return _hash160(abi.encodePacked(hex"0014", pubKeyHash));
                }
                return pubKeyHash;
            }
        
            /**
             * @dev Verify a BTC address and balance are part of the Merkle tree
             * @param btcAddr Bitcoin address (binary; no base58-check encoding)
             * @param rawSatoshis Raw BTC address balance in Satoshis
             * @param proof Merkle tree proof
             * @return True if valid
             */
            function _btcAddressIsValid(bytes20 btcAddr, uint256 rawSatoshis, bytes32[] memory proof)
                internal
                pure
                returns (bool)
            {
                /*
                    Ensure the proof does not attempt to treat a Merkle leaf as if it were an
                    internal Merkle tree node. A leaf will always have the zero-fill. An
                    internal node will never have the zero-fill, as guaranteed by HEX's Merkle
                    tree construction.
        
                    The first element, proof[0], will always be a leaf because it is the pair
                    of the leaf being validated. The rest of the elements, proof[1..length-1],
                    must be internal nodes.
        
                    The number of leaves (CLAIMABLE_BTC_ADDR_COUNT) is even, as guaranteed by
                    HEX's Merkle tree construction, which eliminates the only edge-case where
                    this validation would not apply.
                */
                require((uint256(proof[0]) & MERKLE_LEAF_FILL_MASK) == 0, "HEX: proof invalid");
                for (uint256 i = 1; i < proof.length; i++) {
                    require((uint256(proof[i]) & MERKLE_LEAF_FILL_MASK) != 0, "HEX: proof invalid");
                }
        
                /*
                    Calculate the 32 byte Merkle leaf associated with this BTC address and balance
                        160 bits: BTC address
                         52 bits: Zero-fill
                         45 bits: Satoshis (limited by MAX_BTC_ADDR_BALANCE_SATOSHIS)
                */
                bytes32 merkleLeaf = bytes32(btcAddr) | bytes32(rawSatoshis);
        
                /* Verify the Merkle tree proof */
                return _merkleProofIsValid(merkleLeaf, proof);
            }
        
            /**
             * @dev Verify a Merkle proof using the UTXO Merkle tree
             * @param merkleLeaf Leaf asserted to be present in the Merkle tree
             * @param proof Generated Merkle tree proof
             * @return True if valid
             */
            function _merkleProofIsValid(bytes32 merkleLeaf, bytes32[] memory proof)
                private
                pure
                returns (bool)
            {
                return MerkleProof.verify(proof, MERKLE_TREE_ROOT, merkleLeaf);
            }
        
            function _claimMessageCreate(address claimToAddr, bytes32 claimParamHash, uint8 claimFlags)
                private
                pure
                returns (bytes memory)
            {
                bytes memory prefixStr = (claimFlags & CLAIM_FLAG_MSG_PREFIX_OLD) != 0
                    ? OLD_CLAIM_PREFIX_STR
                    : STD_CLAIM_PREFIX_STR;
        
                bool includeAddrChecksum = (claimFlags & CLAIM_FLAG_ETH_ADDR_LOWERCASE) == 0;
        
                bytes memory addrStr = _addressStringCreate(claimToAddr, includeAddrChecksum);
        
                if (claimParamHash == 0) {
                    return abi.encodePacked(
                        BITCOIN_SIG_PREFIX_LEN,
                        BITCOIN_SIG_PREFIX_STR,
                        uint8(prefixStr.length) + ETH_ADDRESS_HEX_LEN,
                        prefixStr,
                        addrStr
                    );
                }
        
                bytes memory claimParamHashStr = new bytes(CLAIM_PARAM_HASH_HEX_LEN);
        
                _hexStringFromData(claimParamHashStr, claimParamHash, CLAIM_PARAM_HASH_BYTE_LEN);
        
                return abi.encodePacked(
                    BITCOIN_SIG_PREFIX_LEN,
                    BITCOIN_SIG_PREFIX_STR,
                    uint8(prefixStr.length) + ETH_ADDRESS_HEX_LEN + 1 + CLAIM_PARAM_HASH_HEX_LEN,
                    prefixStr,
                    addrStr,
                    "_",
                    claimParamHashStr
                );
            }
        
            function _addressStringCreate(address addr, bool includeAddrChecksum)
                private
                pure
                returns (bytes memory addrStr)
            {
                addrStr = new bytes(ETH_ADDRESS_HEX_LEN);
                _hexStringFromData(addrStr, bytes32(bytes20(addr)), ETH_ADDRESS_BYTE_LEN);
        
                if (includeAddrChecksum) {
                    bytes32 addrStrHash = keccak256(addrStr);
        
                    uint256 offset = 0;
        
                    for (uint256 i = 0; i < ETH_ADDRESS_BYTE_LEN; i++) {
                        uint8 b = uint8(addrStrHash[i]);
        
                        _addressStringChecksumChar(addrStr, offset++, b >> 4);
                        _addressStringChecksumChar(addrStr, offset++, b & 0x0f);
                    }
                }
        
                return addrStr;
            }
        
            function _addressStringChecksumChar(bytes memory addrStr, uint256 offset, uint8 hashNybble)
                private
                pure
            {
                bytes1 ch = addrStr[offset];
        
                if (ch >= "a" && hashNybble >= 8) {
                    addrStr[offset] = ch ^ 0x20;
                }
            }
        
            function _hexStringFromData(bytes memory hexStr, bytes32 data, uint256 dataLen)
                private
                pure
            {
                uint256 offset = 0;
        
                for (uint256 i = 0; i < dataLen; i++) {
                    uint8 b = uint8(data[i]);
        
                    hexStr[offset++] = HEX_DIGITS[b >> 4];
                    hexStr[offset++] = HEX_DIGITS[b & 0x0f];
                }
            }
        
            /**
             * @dev sha256(sha256(data))
             * @param data Data to be hashed
             * @return 32-byte hash
             */
            function _hash256(bytes memory data)
                private
                pure
                returns (bytes32)
            {
                return sha256(abi.encodePacked(sha256(data)));
            }
        
            /**
             * @dev ripemd160(sha256(data))
             * @param data Data to be hashed
             * @return 20-byte hash
             */
            function _hash160(bytes memory data)
                private
                pure
                returns (bytes20)
            {
                return ripemd160(abi.encodePacked(sha256(data)));
            }
        }
        
        contract UTXORedeemableToken is UTXOClaimValidation {
            /**
             * @dev PUBLIC FACING: Claim a BTC address and its Satoshi balance in Hearts
             * crediting the appropriate amount to a specified Eth address. Bitcoin ECDSA
             * signature must be from that BTC address and must match the claim message
             * for the Eth address.
             * @param rawSatoshis Raw BTC address balance in Satoshis
             * @param proof Merkle tree proof
             * @param claimToAddr Destination Eth address to credit Hearts to
             * @param pubKeyX First  half of uncompressed ECDSA public key for the BTC address
             * @param pubKeyY Second half of uncompressed ECDSA public key for the BTC address
             * @param claimFlags Claim flags specifying address and message formats
             * @param v v parameter of ECDSA signature
             * @param r r parameter of ECDSA signature
             * @param s s parameter of ECDSA signature
             * @param autoStakeDays Number of days to auto-stake, subject to minimum auto-stake days
             * @param referrerAddr Eth address of referring user (optional; 0x0 for no referrer)
             * @return Total number of Hearts credited, if successful
             */
            function btcAddressClaim(
                uint256 rawSatoshis,
                bytes32[] calldata proof,
                address claimToAddr,
                bytes32 pubKeyX,
                bytes32 pubKeyY,
                uint8 claimFlags,
                uint8 v,
                bytes32 r,
                bytes32 s,
                uint256 autoStakeDays,
                address referrerAddr
            )
                external
                returns (uint256)
            {
                /* Sanity check */
                require(rawSatoshis <= MAX_BTC_ADDR_BALANCE_SATOSHIS, "HEX: CHK: rawSatoshis");
        
                /* Enforce the minimum stake time for the auto-stake from this claim */
                require(autoStakeDays >= MIN_AUTO_STAKE_DAYS, "HEX: autoStakeDays lower than minimum");
        
                /* Ensure signature matches the claim message containing the Eth address and claimParamHash */
                {
                    bytes32 claimParamHash = 0;
        
                    if (claimToAddr != msg.sender) {
                        /* Claimer did not send this, so claim params must be signed */
                        claimParamHash = keccak256(
                            abi.encodePacked(MERKLE_TREE_ROOT, autoStakeDays, referrerAddr)
                        );
                    }
        
                    require(
                        claimMessageMatchesSignature(
                            claimToAddr,
                            claimParamHash,
                            pubKeyX,
                            pubKeyY,
                            claimFlags,
                            v,
                            r,
                            s
                        ),
                        "HEX: Signature mismatch"
                    );
                }
        
                /* Derive BTC address from public key */
                bytes20 btcAddr = pubKeyToBtcAddress(pubKeyX, pubKeyY, claimFlags);
        
                /* Ensure BTC address has not yet been claimed */
                require(!btcAddressClaims[btcAddr], "HEX: BTC address balance already claimed");
        
                /* Ensure BTC address is part of the Merkle tree */
                require(
                    _btcAddressIsValid(btcAddr, rawSatoshis, proof),
                    "HEX: BTC address or balance unknown"
                );
        
                /* Mark BTC address as claimed */
                btcAddressClaims[btcAddr] = true;
        
                return _satoshisClaimSync(
                    rawSatoshis,
                    claimToAddr,
                    btcAddr,
                    claimFlags,
                    autoStakeDays,
                    referrerAddr
                );
            }
        
            function _satoshisClaimSync(
                uint256 rawSatoshis,
                address claimToAddr,
                bytes20 btcAddr,
                uint8 claimFlags,
                uint256 autoStakeDays,
                address referrerAddr
            )
                private
                returns (uint256 totalClaimedHearts)
            {
                GlobalsCache memory g;
                GlobalsCache memory gSnapshot;
                _globalsLoad(g, gSnapshot);
        
                totalClaimedHearts = _satoshisClaim(
                    g,
                    rawSatoshis,
                    claimToAddr,
                    btcAddr,
                    claimFlags,
                    autoStakeDays,
                    referrerAddr
                );
        
                _globalsSync(g, gSnapshot);
        
                return totalClaimedHearts;
            }
        
            /**
             * @dev Credit an Eth address with the Hearts value of a raw Satoshis balance
             * @param g Cache of stored globals
             * @param rawSatoshis Raw BTC address balance in Satoshis
             * @param claimToAddr Destination Eth address for the claimed Hearts to be sent
             * @param btcAddr Bitcoin address (binary; no base58-check encoding)
             * @param autoStakeDays Number of days to auto-stake, subject to minimum auto-stake days
             * @param referrerAddr Eth address of referring user (optional; 0x0 for no referrer)
             * @return Total number of Hearts credited, if successful
             */
            function _satoshisClaim(
                GlobalsCache memory g,
                uint256 rawSatoshis,
                address claimToAddr,
                bytes20 btcAddr,
                uint8 claimFlags,
                uint256 autoStakeDays,
                address referrerAddr
            )
                private
                returns (uint256 totalClaimedHearts)
            {
                /* Allowed only during the claim phase */
                require(g._currentDay >= CLAIM_PHASE_START_DAY, "HEX: Claim phase has not yet started");
                require(g._currentDay < CLAIM_PHASE_END_DAY, "HEX: Claim phase has ended");
        
                /* Check if log data needs to be updated */
                _dailyDataUpdateAuto(g);
        
                /* Sanity check */
                require(
                    g._claimedBtcAddrCount < CLAIMABLE_BTC_ADDR_COUNT,
                    "HEX: CHK: _claimedBtcAddrCount"
                );
        
                (uint256 adjSatoshis, uint256 claimedHearts, uint256 claimBonusHearts) = _calcClaimValues(
                    g,
                    rawSatoshis
                );
        
                /* Increment claim count to track viral rewards */
                g._claimedBtcAddrCount++;
        
                totalClaimedHearts = _remitBonuses(
                    claimToAddr,
                    btcAddr,
                    claimFlags,
                    rawSatoshis,
                    adjSatoshis,
                    claimedHearts,
                    claimBonusHearts,
                    referrerAddr
                );
        
                /* Auto-stake a percentage of the successful claim */
                uint256 autoStakeHearts = totalClaimedHearts * AUTO_STAKE_CLAIM_PERCENT / 100;
                _stakeStart(g, autoStakeHearts, autoStakeDays, true);
        
                /* Mint remaining claimed Hearts to claim address */
                _mint(claimToAddr, totalClaimedHearts - autoStakeHearts);
        
                return totalClaimedHearts;
            }
        
            function _remitBonuses(
                address claimToAddr,
                bytes20 btcAddr,
                uint8 claimFlags,
                uint256 rawSatoshis,
                uint256 adjSatoshis,
                uint256 claimedHearts,
                uint256 claimBonusHearts,
                address referrerAddr
            )
                private
                returns (uint256 totalClaimedHearts)
            {
                totalClaimedHearts = claimedHearts + claimBonusHearts;
        
                uint256 originBonusHearts = claimBonusHearts;
        
                if (referrerAddr == address(0)) {
                    /* No referrer */
                    _emitClaim(
                        claimToAddr,
                        btcAddr,
                        claimFlags,
                        rawSatoshis,
                        adjSatoshis,
                        totalClaimedHearts,
                        referrerAddr
                    );
                } else {
                    /* Referral bonus of 10% of total claimed Hearts to claimer */
                    uint256 referralBonusHearts = totalClaimedHearts / 10;
        
                    totalClaimedHearts += referralBonusHearts;
        
                    /* Then a cumulative referrer bonus of 20% to referrer */
                    uint256 referrerBonusHearts = totalClaimedHearts / 5;
        
                    originBonusHearts += referralBonusHearts + referrerBonusHearts;
        
                    if (referrerAddr == claimToAddr) {
                        /* Self-referred */
                        totalClaimedHearts += referrerBonusHearts;
                        _emitClaim(
                            claimToAddr,
                            btcAddr,
                            claimFlags,
                            rawSatoshis,
                            adjSatoshis,
                            totalClaimedHearts,
                            referrerAddr
                        );
                    } else {
                        /* Referred by different address */
                        _emitClaim(
                            claimToAddr,
                            btcAddr,
                            claimFlags,
                            rawSatoshis,
                            adjSatoshis,
                            totalClaimedHearts,
                            referrerAddr
                        );
                        _mint(referrerAddr, referrerBonusHearts);
                    }
                }
        
                _mint(ORIGIN_ADDR, originBonusHearts);
        
                return totalClaimedHearts;
            }
        
            function _emitClaim(
                address claimToAddr,
                bytes20 btcAddr,
                uint8 claimFlags,
                uint256 rawSatoshis,
                uint256 adjSatoshis,
                uint256 claimedHearts,
                address referrerAddr
            )
                private
            {
                emit Claim( // (auto-generated event)
                    uint256(uint40(block.timestamp))
                        | (uint256(uint56(rawSatoshis)) << 40)
                        | (uint256(uint56(adjSatoshis)) << 96)
                        | (uint256(claimFlags) << 152)
                        | (uint256(uint72(claimedHearts)) << 160),
                    uint256(uint160(msg.sender)),
                    btcAddr,
                    claimToAddr,
                    referrerAddr
                );
        
                if (claimToAddr == msg.sender) {
                    return;
                }
        
                emit ClaimAssist( // (auto-generated event)
                    uint256(uint40(block.timestamp))
                        | (uint256(uint160(btcAddr)) << 40)
                        | (uint256(uint56(rawSatoshis)) << 200),
                    uint256(uint56(adjSatoshis))
                        | (uint256(uint160(claimToAddr)) << 56)
                        | (uint256(claimFlags) << 216),
                    uint256(uint72(claimedHearts))
                        | (uint256(uint160(referrerAddr)) << 72),
                    msg.sender
                );
            }
        
            function _calcClaimValues(GlobalsCache memory g, uint256 rawSatoshis)
                private
                pure
                returns (uint256 adjSatoshis, uint256 claimedHearts, uint256 claimBonusHearts)
            {
                /* Apply Silly Whale reduction */
                adjSatoshis = _adjustSillyWhale(rawSatoshis);
                require(
                    g._claimedSatoshisTotal + adjSatoshis <= CLAIMABLE_SATOSHIS_TOTAL,
                    "HEX: CHK: _claimedSatoshisTotal"
                );
                g._claimedSatoshisTotal += adjSatoshis;
        
                uint256 daysRemaining = CLAIM_PHASE_END_DAY - g._currentDay;
        
                /* Apply late-claim reduction */
                adjSatoshis = _adjustLateClaim(adjSatoshis, daysRemaining);
                g._unclaimedSatoshisTotal -= adjSatoshis;
        
                /* Convert to Hearts and calculate speed bonus */
                claimedHearts = adjSatoshis * HEARTS_PER_SATOSHI;
                claimBonusHearts = _calcSpeedBonus(claimedHearts, daysRemaining);
        
                return (adjSatoshis, claimedHearts, claimBonusHearts);
            }
        
            /**
             * @dev Apply Silly Whale adjustment
             * @param rawSatoshis Raw BTC address balance in Satoshis
             * @return Adjusted BTC address balance in Satoshis
             */
            function _adjustSillyWhale(uint256 rawSatoshis)
                private
                pure
                returns (uint256)
            {
                if (rawSatoshis < 1000e8) {
                    /* For < 1,000 BTC: no penalty */
                    return rawSatoshis;
                }
                if (rawSatoshis >= 10000e8) {
                    /* For >= 10,000 BTC: penalty is 75%, leaving 25% */
                    return rawSatoshis / 4;
                }
                /*
                    For 1,000 <= BTC < 10,000: penalty scales linearly from 50% to 75%
        
                    penaltyPercent  = (btc - 1000) / (10000 - 1000) * (75 - 50) + 50
                                    = (btc - 1000) / 9000 * 25 + 50
                                    = (btc - 1000) / 360 + 50
        
                    appliedPercent  = 100 - penaltyPercent
                                    = 100 - ((btc - 1000) / 360 + 50)
                                    = 100 - (btc - 1000) / 360 - 50
                                    = 50 - (btc - 1000) / 360
                                    = (18000 - (btc - 1000)) / 360
                                    = (18000 - btc + 1000) / 360
                                    = (19000 - btc) / 360
        
                    adjustedBtc     = btc * appliedPercent / 100
                                    = btc * ((19000 - btc) / 360) / 100
                                    = btc * (19000 - btc) / 36000
        
                    adjustedSat     = 1e8 * adjustedBtc
                                    = 1e8 * (btc * (19000 - btc) / 36000)
                                    = 1e8 * ((sat / 1e8) * (19000 - (sat / 1e8)) / 36000)
                                    = 1e8 * (sat / 1e8) * (19000 - (sat / 1e8)) / 36000
                                    = (sat / 1e8) * 1e8 * (19000 - (sat / 1e8)) / 36000
                                    = (sat / 1e8) * (19000e8 - sat) / 36000
                                    = sat * (19000e8 - sat) / 36000e8
                */
                return rawSatoshis * (19000e8 - rawSatoshis) / 36000e8;
            }
        
            /**
             * @dev Apply late-claim adjustment to scale claim to zero by end of claim phase
             * @param adjSatoshis Adjusted BTC address balance in Satoshis (after Silly Whale)
             * @param daysRemaining Number of reward days remaining in claim phase
             * @return Adjusted BTC address balance in Satoshis (after Silly Whale and Late-Claim)
             */
            function _adjustLateClaim(uint256 adjSatoshis, uint256 daysRemaining)
                private
                pure
                returns (uint256)
            {
                /*
                    Only valid from CLAIM_PHASE_DAYS to 1, and only used during that time.
        
                    adjustedSat = sat * (daysRemaining / CLAIM_PHASE_DAYS) * 100%
                                = sat *  daysRemaining / CLAIM_PHASE_DAYS
                */
                return adjSatoshis * daysRemaining / CLAIM_PHASE_DAYS;
            }
        
            /**
             * @dev Calculates speed bonus for claiming earlier in the claim phase
             * @param claimedHearts Hearts claimed from adjusted BTC address balance Satoshis
             * @param daysRemaining Number of claim days remaining in claim phase
             * @return Speed bonus in Hearts
             */
            function _calcSpeedBonus(uint256 claimedHearts, uint256 daysRemaining)
                private
                pure
                returns (uint256)
            {
                /*
                    Only valid from CLAIM_PHASE_DAYS to 1, and only used during that time.
                    Speed bonus is 20% ... 0% inclusive.
        
                    bonusHearts = claimedHearts  * ((daysRemaining - 1)  /  (CLAIM_PHASE_DAYS - 1)) * 20%
                                = claimedHearts  * ((daysRemaining - 1)  /  (CLAIM_PHASE_DAYS - 1)) * 20/100
                                = claimedHearts  * ((daysRemaining - 1)  /  (CLAIM_PHASE_DAYS - 1)) / 5
                                = claimedHearts  *  (daysRemaining - 1)  / ((CLAIM_PHASE_DAYS - 1)  * 5)
                */
                return claimedHearts * (daysRemaining - 1) / ((CLAIM_PHASE_DAYS - 1) * 5);
            }
        }
        
        contract TransformableToken is UTXORedeemableToken {
            /**
             * @dev PUBLIC FACING: Enter the tranform lobby for the current round
             * @param referrerAddr Eth address of referring user (optional; 0x0 for no referrer)
             */
            function xfLobbyEnter(address referrerAddr)
                external
                payable
            {
                uint256 enterDay = _currentDay();
                require(enterDay < CLAIM_PHASE_END_DAY, "HEX: Lobbies have ended");
        
                uint256 rawAmount = msg.value;
                require(rawAmount != 0, "HEX: Amount required");
        
                XfLobbyQueueStore storage qRef = xfLobbyMembers[enterDay][msg.sender];
        
                uint256 entryIndex = qRef.tailIndex++;
        
                qRef.entries[entryIndex] = XfLobbyEntryStore(uint96(rawAmount), referrerAddr);
        
                xfLobby[enterDay] += rawAmount;
        
                _emitXfLobbyEnter(enterDay, entryIndex, rawAmount, referrerAddr);
            }
        
            /**
             * @dev PUBLIC FACING: Leave the transform lobby after the round is complete
             * @param enterDay Day number when the member entered
             * @param count Number of queued-enters to exit (optional; 0 for all)
             */
            function xfLobbyExit(uint256 enterDay, uint256 count)
                external
            {
                require(enterDay < _currentDay(), "HEX: Round is not complete");
        
                XfLobbyQueueStore storage qRef = xfLobbyMembers[enterDay][msg.sender];
        
                uint256 headIndex = qRef.headIndex;
                uint256 endIndex;
        
                if (count != 0) {
                    require(count <= qRef.tailIndex - headIndex, "HEX: count invalid");
                    endIndex = headIndex + count;
                } else {
                    endIndex = qRef.tailIndex;
                    require(headIndex < endIndex, "HEX: count invalid");
                }
        
                uint256 waasLobby = _waasLobby(enterDay);
                uint256 _xfLobby = xfLobby[enterDay];
                uint256 totalXfAmount = 0;
                uint256 originBonusHearts = 0;
        
                do {
                    uint256 rawAmount = qRef.entries[headIndex].rawAmount;
                    address referrerAddr = qRef.entries[headIndex].referrerAddr;
        
                    delete qRef.entries[headIndex];
        
                    uint256 xfAmount = waasLobby * rawAmount / _xfLobby;
        
                    if (referrerAddr == address(0)) {
                        /* No referrer */
                        _emitXfLobbyExit(enterDay, headIndex, xfAmount, referrerAddr);
                    } else {
                        /* Referral bonus of 10% of xfAmount to member */
                        uint256 referralBonusHearts = xfAmount / 10;
        
                        xfAmount += referralBonusHearts;
        
                        /* Then a cumulative referrer bonus of 20% to referrer */
                        uint256 referrerBonusHearts = xfAmount / 5;
        
                        if (referrerAddr == msg.sender) {
                            /* Self-referred */
                            xfAmount += referrerBonusHearts;
                            _emitXfLobbyExit(enterDay, headIndex, xfAmount, referrerAddr);
                        } else {
                            /* Referred by different address */
                            _emitXfLobbyExit(enterDay, headIndex, xfAmount, referrerAddr);
                            _mint(referrerAddr, referrerBonusHearts);
                        }
                        originBonusHearts += referralBonusHearts + referrerBonusHearts;
                    }
        
                    totalXfAmount += xfAmount;
                } while (++headIndex < endIndex);
        
                qRef.headIndex = uint40(headIndex);
        
                if (originBonusHearts != 0) {
                    _mint(ORIGIN_ADDR, originBonusHearts);
                }
                if (totalXfAmount != 0) {
                    _mint(msg.sender, totalXfAmount);
                }
            }
        
            /**
             * @dev PUBLIC FACING: Release any value that has been sent to the contract
             */
            function xfLobbyFlush()
                external
            {
                require(address(this).balance != 0, "HEX: No value");
        
                FLUSH_ADDR.transfer(address(this).balance);
            }
        
            /**
             * @dev PUBLIC FACING: External helper to return multiple values of xfLobby[] with
             * a single call
             * @param beginDay First day of data range
             * @param endDay Last day (non-inclusive) of data range
             * @return Fixed array of values
             */
            function xfLobbyRange(uint256 beginDay, uint256 endDay)
                external
                view
                returns (uint256[] memory list)
            {
                require(
                    beginDay < endDay && endDay <= CLAIM_PHASE_END_DAY && endDay <= _currentDay(),
                    "HEX: invalid range"
                );
        
                list = new uint256[](endDay - beginDay);
        
                uint256 src = beginDay;
                uint256 dst = 0;
                do {
                    list[dst++] = uint256(xfLobby[src++]);
                } while (src < endDay);
        
                return list;
            }
        
            /**
             * @dev PUBLIC FACING: Return a current lobby member queue entry.
             * Only needed due to limitations of the standard ABI encoder.
             * @param memberAddr Eth address of the lobby member
             * @param entryId 49 bit compound value. Top 9 bits: enterDay, Bottom 40 bits: entryIndex
             * @return 1: Raw amount that was entered with; 2: Referring Eth addr (optional; 0x0 for no referrer)
             */
            function xfLobbyEntry(address memberAddr, uint256 entryId)
                external
                view
                returns (uint256 rawAmount, address referrerAddr)
            {
                uint256 enterDay = entryId >> XF_LOBBY_ENTRY_INDEX_SIZE;
                uint256 entryIndex = entryId & XF_LOBBY_ENTRY_INDEX_MASK;
        
                XfLobbyEntryStore storage entry = xfLobbyMembers[enterDay][memberAddr].entries[entryIndex];
        
                require(entry.rawAmount != 0, "HEX: Param invalid");
        
                return (entry.rawAmount, entry.referrerAddr);
            }
        
            /**
             * @dev PUBLIC FACING: Return the lobby days that a user is in with a single call
             * @param memberAddr Eth address of the user
             * @return Bit vector of lobby day numbers
             */
            function xfLobbyPendingDays(address memberAddr)
                external
                view
                returns (uint256[XF_LOBBY_DAY_WORDS] memory words)
            {
                uint256 day = _currentDay() + 1;
        
                if (day > CLAIM_PHASE_END_DAY) {
                    day = CLAIM_PHASE_END_DAY;
                }
        
                while (day-- != 0) {
                    if (xfLobbyMembers[day][memberAddr].tailIndex > xfLobbyMembers[day][memberAddr].headIndex) {
                        words[day >> 8] |= 1 << (day & 255);
                    }
                }
        
                return words;
            }
        
            function _waasLobby(uint256 enterDay)
                private
                returns (uint256 waasLobby)
            {
                if (enterDay >= CLAIM_PHASE_START_DAY) {
                    GlobalsCache memory g;
                    GlobalsCache memory gSnapshot;
                    _globalsLoad(g, gSnapshot);
        
                    _dailyDataUpdateAuto(g);
        
                    uint256 unclaimed = dailyData[enterDay].dayUnclaimedSatoshisTotal;
                    waasLobby = unclaimed * HEARTS_PER_SATOSHI / CLAIM_PHASE_DAYS;
        
                    _globalsSync(g, gSnapshot);
                } else {
                    waasLobby = WAAS_LOBBY_SEED_HEARTS;
                }
                return waasLobby;
            }
        
            function _emitXfLobbyEnter(
                uint256 enterDay,
                uint256 entryIndex,
                uint256 rawAmount,
                address referrerAddr
            )
                private
            {
                emit XfLobbyEnter( // (auto-generated event)
                    uint256(uint40(block.timestamp))
                        | (uint256(uint96(rawAmount)) << 40),
                    msg.sender,
                    (enterDay << XF_LOBBY_ENTRY_INDEX_SIZE) | entryIndex,
                    referrerAddr
                );
            }
        
            function _emitXfLobbyExit(
                uint256 enterDay,
                uint256 entryIndex,
                uint256 xfAmount,
                address referrerAddr
            )
                private
            {
                emit XfLobbyExit( // (auto-generated event)
                    uint256(uint40(block.timestamp))
                        | (uint256(uint72(xfAmount)) << 40),
                    msg.sender,
                    (enterDay << XF_LOBBY_ENTRY_INDEX_SIZE) | entryIndex,
                    referrerAddr
                );
            }
        }
        
        contract HEX is TransformableToken {
            constructor()
                public
            {
                /* Initialize global shareRate to 1 */
                globals.shareRate = uint40(1 * SHARE_RATE_SCALE);
        
                /* Initialize dailyDataCount to skip pre-claim period */
                globals.dailyDataCount = uint16(PRE_CLAIM_DAYS);
        
                /* Add all Satoshis from UTXO snapshot to contract */
                globals.claimStats = _claimStatsEncode(
                    0, // _claimedBtcAddrCount
                    0, // _claimedSatoshisTotal
                    FULL_SATOSHIS_TOTAL // _unclaimedSatoshisTotal
                );
            }
        
            function() external payable {}
        }

        File 3 of 5: EternalStorageProxy
        // File: contracts/upgradeability/EternalStorage.sol
        
        pragma solidity 0.4.24;
        
        /**
         * @title EternalStorage
         * @dev This contract holds all the necessary state variables to carry out the storage of any contract.
         */
        contract EternalStorage {
            mapping(bytes32 => uint256) internal uintStorage;
            mapping(bytes32 => string) internal stringStorage;
            mapping(bytes32 => address) internal addressStorage;
            mapping(bytes32 => bytes) internal bytesStorage;
            mapping(bytes32 => bool) internal boolStorage;
            mapping(bytes32 => int256) internal intStorage;
        
        }
        
        // File: openzeppelin-solidity/contracts/AddressUtils.sol
        
        pragma solidity ^0.4.24;
        
        
        /**
         * Utility library of inline functions on addresses
         */
        library AddressUtils {
        
          /**
           * Returns whether the target address is a contract
           * @dev This function will return false if invoked during the constructor of a contract,
           * as the code is not actually created until after the constructor finishes.
           * @param _addr address to check
           * @return whether the target address is a contract
           */
          function isContract(address _addr) internal view returns (bool) {
            uint256 size;
            // XXX Currently there is no better way to check if there is a contract in an address
            // than to check the size of the code at that address.
            // See https://ethereum.stackexchange.com/a/14016/36603
            // for more details about how this works.
            // TODO Check this again before the Serenity release, because all addresses will be
            // contracts then.
            // solium-disable-next-line security/no-inline-assembly
            assembly { size := extcodesize(_addr) }
            return size > 0;
          }
        
        }
        
        // File: contracts/upgradeability/Proxy.sol
        
        pragma solidity 0.4.24;
        
        /**
         * @title Proxy
         * @dev Gives the possibility to delegate any call to a foreign implementation.
         */
        contract Proxy {
            /**
            * @dev Tells the address of the implementation where every call will be delegated.
            * @return address of the implementation to which it will be delegated
            */
            /* solcov ignore next */
            function implementation() public view returns (address);
        
            /**
            * @dev Fallback function allowing to perform a delegatecall to the given implementation.
            * This function will return whatever the implementation call returns
            */
            function() public payable {
                // solhint-disable-previous-line no-complex-fallback
                address _impl = implementation();
                require(_impl != address(0));
                assembly {
                    /*
                        0x40 is the "free memory slot", meaning a pointer to next slot of empty memory. mload(0x40)
                        loads the data in the free memory slot, so `ptr` is a pointer to the next slot of empty
                        memory. It's needed because we're going to write the return data of delegatecall to the
                        free memory slot.
                    */
                    let ptr := mload(0x40)
                    /*
                        `calldatacopy` is copy calldatasize bytes from calldata
                        First argument is the destination to which data is copied(ptr)
                        Second argument specifies the start position of the copied data.
                            Since calldata is sort of its own unique location in memory,
                            0 doesn't refer to 0 in memory or 0 in storage - it just refers to the zeroth byte of calldata.
                            That's always going to be the zeroth byte of the function selector.
                        Third argument, calldatasize, specifies how much data will be copied.
                            calldata is naturally calldatasize bytes long (same thing as msg.data.length)
                    */
                    calldatacopy(ptr, 0, calldatasize)
                    /*
                        delegatecall params explained:
                        gas: the amount of gas to provide for the call. `gas` is an Opcode that gives
                            us the amount of gas still available to execution
        
                        _impl: address of the contract to delegate to
        
                        ptr: to pass copied data
        
                        calldatasize: loads the size of `bytes memory data`, same as msg.data.length
        
                        0, 0: These are for the `out` and `outsize` params. Because the output could be dynamic,
                                these are set to 0, 0 so the output data will not be written to memory. The output
                                data will be read using `returndatasize` and `returdatacopy` instead.
        
                        result: This will be 0 if the call fails and 1 if it succeeds
                    */
                    let result := delegatecall(gas, _impl, ptr, calldatasize, 0, 0)
                    /*
        
                    */
                    /*
                        ptr current points to the value stored at 0x40,
                        because we assigned it like ptr := mload(0x40).
                        Because we use 0x40 as a free memory pointer,
                        we want to make sure that the next time we want to allocate memory,
                        we aren't overwriting anything important.
                        So, by adding ptr and returndatasize,
                        we get a memory location beyond the end of the data we will be copying to ptr.
                        We place this in at 0x40, and any reads from 0x40 will now read from free memory
                    */
                    mstore(0x40, add(ptr, returndatasize))
                    /*
                        `returndatacopy` is an Opcode that copies the last return data to a slot. `ptr` is the
                            slot it will copy to, 0 means copy from the beginning of the return data, and size is
                            the amount of data to copy.
                        `returndatasize` is an Opcode that gives us the size of the last return data. In this case, that is the size of the data returned from delegatecall
                    */
                    returndatacopy(ptr, 0, returndatasize)
        
                    /*
                        if `result` is 0, revert.
                        if `result` is 1, return `size` amount of data from `ptr`. This is the data that was
                        copied to `ptr` from the delegatecall return data
                    */
                    switch result
                        case 0 {
                            revert(ptr, returndatasize)
                        }
                        default {
                            return(ptr, returndatasize)
                        }
                }
            }
        }
        
        // File: contracts/upgradeability/UpgradeabilityStorage.sol
        
        pragma solidity 0.4.24;
        
        /**
         * @title UpgradeabilityStorage
         * @dev This contract holds all the necessary state variables to support the upgrade functionality
         */
        contract UpgradeabilityStorage {
            // Version name of the current implementation
            uint256 internal _version;
        
            // Address of the current implementation
            address internal _implementation;
        
            /**
            * @dev Tells the version name of the current implementation
            * @return uint256 representing the name of the current version
            */
            function version() external view returns (uint256) {
                return _version;
            }
        
            /**
            * @dev Tells the address of the current implementation
            * @return address of the current implementation
            */
            function implementation() public view returns (address) {
                return _implementation;
            }
        }
        
        // File: contracts/upgradeability/UpgradeabilityProxy.sol
        
        pragma solidity 0.4.24;
        
        
        
        
        /**
         * @title UpgradeabilityProxy
         * @dev This contract represents a proxy where the implementation address to which it will delegate can be upgraded
         */
        contract UpgradeabilityProxy is Proxy, UpgradeabilityStorage {
            /**
            * @dev This event will be emitted every time the implementation gets upgraded
            * @param version representing the version name of the upgraded implementation
            * @param implementation representing the address of the upgraded implementation
            */
            event Upgraded(uint256 version, address indexed implementation);
        
            /**
            * @dev Upgrades the implementation address
            * @param version representing the version name of the new implementation to be set
            * @param implementation representing the address of the new implementation to be set
            */
            function _upgradeTo(uint256 version, address implementation) internal {
                require(_implementation != implementation);
        
                // This additional check verifies that provided implementation is at least a contract
                require(AddressUtils.isContract(implementation));
        
                // This additional check guarantees that new version will be at least greater than the privios one,
                // so it is impossible to reuse old versions, or use the last version twice
                require(version > _version);
        
                _version = version;
                _implementation = implementation;
                emit Upgraded(version, implementation);
            }
        }
        
        // File: contracts/upgradeability/UpgradeabilityOwnerStorage.sol
        
        pragma solidity 0.4.24;
        
        /**
         * @title UpgradeabilityOwnerStorage
         * @dev This contract keeps track of the upgradeability owner
         */
        contract UpgradeabilityOwnerStorage {
            // Owner of the contract
            address internal _upgradeabilityOwner;
        
            /**
            * @dev Tells the address of the owner
            * @return the address of the owner
            */
            function upgradeabilityOwner() public view returns (address) {
                return _upgradeabilityOwner;
            }
        
            /**
            * @dev Sets the address of the owner
            */
            function setUpgradeabilityOwner(address newUpgradeabilityOwner) internal {
                _upgradeabilityOwner = newUpgradeabilityOwner;
            }
        }
        
        // File: contracts/upgradeability/OwnedUpgradeabilityProxy.sol
        
        pragma solidity 0.4.24;
        
        
        
        /**
         * @title OwnedUpgradeabilityProxy
         * @dev This contract combines an upgradeability proxy with basic authorization control functionalities
         */
        contract OwnedUpgradeabilityProxy is UpgradeabilityOwnerStorage, UpgradeabilityProxy {
            /**
            * @dev Event to show ownership has been transferred
            * @param previousOwner representing the address of the previous owner
            * @param newOwner representing the address of the new owner
            */
            event ProxyOwnershipTransferred(address previousOwner, address newOwner);
        
            /**
            * @dev the constructor sets the original owner of the contract to the sender account.
            */
            constructor() public {
                setUpgradeabilityOwner(msg.sender);
            }
        
            /**
            * @dev Throws if called by any account other than the owner.
            */
            modifier onlyUpgradeabilityOwner() {
                require(msg.sender == upgradeabilityOwner());
                /* solcov ignore next */
                _;
            }
        
            /**
            * @dev Allows the current owner to transfer control of the contract to a newOwner.
            * @param newOwner The address to transfer ownership to.
            */
            function transferProxyOwnership(address newOwner) external onlyUpgradeabilityOwner {
                require(newOwner != address(0));
                emit ProxyOwnershipTransferred(upgradeabilityOwner(), newOwner);
                setUpgradeabilityOwner(newOwner);
            }
        
            /**
            * @dev Allows the upgradeability owner to upgrade the current version of the proxy.
            * @param version representing the version name of the new implementation to be set.
            * @param implementation representing the address of the new implementation to be set.
            */
            function upgradeTo(uint256 version, address implementation) public onlyUpgradeabilityOwner {
                _upgradeTo(version, implementation);
            }
        
            /**
            * @dev Allows the upgradeability owner to upgrade the current version of the proxy and call the new implementation
            * to initialize whatever is needed through a low level call.
            * @param version representing the version name of the new implementation to be set.
            * @param implementation representing the address of the new implementation to be set.
            * @param data represents the msg.data to bet sent in the low level call. This parameter may include the function
            * signature of the implementation to be called with the needed payload
            */
            function upgradeToAndCall(uint256 version, address implementation, bytes data)
                external
                payable
                onlyUpgradeabilityOwner
            {
                upgradeTo(version, implementation);
                // solhint-disable-next-line avoid-call-value
                require(address(this).call.value(msg.value)(data));
            }
        }
        
        // File: contracts/upgradeability/EternalStorageProxy.sol
        
        pragma solidity 0.4.24;
        
        
        
        /**
         * @title EternalStorageProxy
         * @dev This proxy holds the storage of the token contract and delegates every call to the current implementation set.
         * Besides, it allows to upgrade the token's behaviour towards further implementations, and provides basic
         * authorization control functionalities
         */
        // solhint-disable-next-line no-empty-blocks
        contract EternalStorageProxy is EternalStorage, OwnedUpgradeabilityProxy {}

        File 4 of 5: ForeignOmnibridge
        // File: @openzeppelin/contracts/math/SafeMath.sol
        
        
        pragma solidity ^0.7.0;
        
        /**
         * @dev Wrappers over Solidity's arithmetic operations with added overflow
         * checks.
         *
         * Arithmetic operations in Solidity wrap on overflow. This can easily result
         * in bugs, because programmers usually assume that an overflow raises an
         * error, which is the standard behavior in high level programming languages.
         * `SafeMath` restores this intuition by reverting the transaction when an
         * operation overflows.
         *
         * Using this library instead of the unchecked operations eliminates an entire
         * class of bugs, so it's recommended to use it always.
         */
        library SafeMath {
            /**
             * @dev Returns the addition of two unsigned integers, reverting on
             * overflow.
             *
             * Counterpart to Solidity's `+` operator.
             *
             * Requirements:
             *
             * - Addition cannot overflow.
             */
            function add(uint256 a, uint256 b) internal pure returns (uint256) {
                uint256 c = a + b;
                require(c >= a, "SafeMath: addition overflow");
        
                return c;
            }
        
            /**
             * @dev Returns the subtraction of two unsigned integers, reverting on
             * overflow (when the result is negative).
             *
             * Counterpart to Solidity's `-` operator.
             *
             * Requirements:
             *
             * - Subtraction cannot overflow.
             */
            function sub(uint256 a, uint256 b) internal pure returns (uint256) {
                return sub(a, b, "SafeMath: subtraction overflow");
            }
        
            /**
             * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
             * overflow (when the result is negative).
             *
             * Counterpart to Solidity's `-` operator.
             *
             * Requirements:
             *
             * - Subtraction cannot overflow.
             */
            function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
                require(b <= a, errorMessage);
                uint256 c = a - b;
        
                return c;
            }
        
            /**
             * @dev Returns the multiplication of two unsigned integers, reverting on
             * overflow.
             *
             * Counterpart to Solidity's `*` operator.
             *
             * Requirements:
             *
             * - Multiplication cannot overflow.
             */
            function mul(uint256 a, uint256 b) internal pure returns (uint256) {
                // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
                // benefit is lost if 'b' is also tested.
                // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
                if (a == 0) {
                    return 0;
                }
        
                uint256 c = a * b;
                require(c / a == b, "SafeMath: multiplication overflow");
        
                return c;
            }
        
            /**
             * @dev Returns the integer division of two unsigned integers. Reverts on
             * division by zero. The result is rounded towards zero.
             *
             * Counterpart to Solidity's `/` operator. Note: this function uses a
             * `revert` opcode (which leaves remaining gas untouched) while Solidity
             * uses an invalid opcode to revert (consuming all remaining gas).
             *
             * Requirements:
             *
             * - The divisor cannot be zero.
             */
            function div(uint256 a, uint256 b) internal pure returns (uint256) {
                return div(a, b, "SafeMath: division by zero");
            }
        
            /**
             * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
             * division by zero. The result is rounded towards zero.
             *
             * Counterpart to Solidity's `/` operator. Note: this function uses a
             * `revert` opcode (which leaves remaining gas untouched) while Solidity
             * uses an invalid opcode to revert (consuming all remaining gas).
             *
             * Requirements:
             *
             * - The divisor cannot be zero.
             */
            function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
                require(b > 0, errorMessage);
                uint256 c = a / b;
                // assert(a == b * c + a % b); // There is no case in which this doesn't hold
        
                return c;
            }
        
            /**
             * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
             * Reverts when dividing by zero.
             *
             * Counterpart to Solidity's `%` operator. This function uses a `revert`
             * opcode (which leaves remaining gas untouched) while Solidity uses an
             * invalid opcode to revert (consuming all remaining gas).
             *
             * Requirements:
             *
             * - The divisor cannot be zero.
             */
            function mod(uint256 a, uint256 b) internal pure returns (uint256) {
                return mod(a, b, "SafeMath: modulo by zero");
            }
        
            /**
             * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
             * Reverts with custom message when dividing by zero.
             *
             * Counterpart to Solidity's `%` operator. This function uses a `revert`
             * opcode (which leaves remaining gas untouched) while Solidity uses an
             * invalid opcode to revert (consuming all remaining gas).
             *
             * Requirements:
             *
             * - The divisor cannot be zero.
             */
            function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
                require(b != 0, errorMessage);
                return a % b;
            }
        }
        
        // File: contracts/upgradeability/EternalStorage.sol
        
        pragma solidity 0.7.5;
        
        /**
         * @title EternalStorage
         * @dev This contract holds all the necessary state variables to carry out the storage of any contract.
         */
        contract EternalStorage {
            mapping(bytes32 => uint256) internal uintStorage;
            mapping(bytes32 => string) internal stringStorage;
            mapping(bytes32 => address) internal addressStorage;
            mapping(bytes32 => bytes) internal bytesStorage;
            mapping(bytes32 => bool) internal boolStorage;
            mapping(bytes32 => int256) internal intStorage;
        }
        
        // File: contracts/upgradeable_contracts/Initializable.sol
        
        pragma solidity 0.7.5;
        
        
        contract Initializable is EternalStorage {
            bytes32 internal constant INITIALIZED = 0x0a6f646cd611241d8073675e00d1a1ff700fbf1b53fcf473de56d1e6e4b714ba; // keccak256(abi.encodePacked("isInitialized"))
        
            function setInitialize() internal {
                boolStorage[INITIALIZED] = true;
            }
        
            function isInitialized() public view returns (bool) {
                return boolStorage[INITIALIZED];
            }
        }
        
        // File: contracts/interfaces/IUpgradeabilityOwnerStorage.sol
        
        pragma solidity 0.7.5;
        
        interface IUpgradeabilityOwnerStorage {
            function upgradeabilityOwner() external view returns (address);
        }
        
        // File: contracts/upgradeable_contracts/Upgradeable.sol
        
        pragma solidity 0.7.5;
        
        
        contract Upgradeable {
            /**
             * @dev Throws if called by any account other than the upgradeability owner.
             */
            modifier onlyIfUpgradeabilityOwner() {
                _onlyIfUpgradeabilityOwner();
                _;
            }
        
            /**
             * @dev Internal function for reducing onlyIfUpgradeabilityOwner modifier bytecode overhead.
             */
            function _onlyIfUpgradeabilityOwner() internal view {
                require(msg.sender == IUpgradeabilityOwnerStorage(address(this)).upgradeabilityOwner());
            }
        }
        
        // File: @openzeppelin/contracts/token/ERC20/IERC20.sol
        
        
        pragma solidity ^0.7.0;
        
        /**
         * @dev Interface of the ERC20 standard as defined in the EIP.
         */
        interface IERC20 {
            /**
             * @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 `recipient`.
             *
             * Returns a boolean value indicating whether the operation succeeded.
             *
             * Emits a {Transfer} event.
             */
            function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount) external returns (bool);
        
            /**
             * @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);
        }
        
        // File: @openzeppelin/contracts/utils/Address.sol
        
        
        pragma solidity ^0.7.0;
        
        /**
         * @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
             * ====
             */
            function isContract(address account) internal view returns (bool) {
                // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
                // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
                // for accounts without code, i.e. `keccak256('')`
                bytes32 codehash;
                bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
                // solhint-disable-next-line no-inline-assembly
                assembly { codehash := extcodehash(account) }
                return (codehash != accountHash && codehash != 0x0);
            }
        
            /**
             * @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");
        
                // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
                (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");
                return _functionCallWithValue(target, data, value, errorMessage);
            }
        
            function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
                require(isContract(target), "Address: call to non-contract");
        
                // solhint-disable-next-line avoid-low-level-calls
                (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
                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
        
                        // solhint-disable-next-line no-inline-assembly
                        assembly {
                            let returndata_size := mload(returndata)
                            revert(add(32, returndata), returndata_size)
                        }
                    } else {
                        revert(errorMessage);
                    }
                }
            }
        }
        
        // File: @openzeppelin/contracts/token/ERC20/SafeERC20.sol
        
        
        pragma solidity ^0.7.0;
        
        
        
        
        /**
         * @title SafeERC20
         * @dev Wrappers around ERC20 operations that throw on failure (when the token
         * contract returns false). Tokens that return no value (and instead revert or
         * throw on failure) are also supported, non-reverting calls are assumed to be
         * successful.
         * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
         * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
         */
        library SafeERC20 {
            using SafeMath for uint256;
            using Address for address;
        
            function safeTransfer(IERC20 token, address to, uint256 value) internal {
                _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
            }
        
            function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
                _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
            }
        
            /**
             * @dev Deprecated. This function has issues similar to the ones found in
             * {IERC20-approve}, and its usage is discouraged.
             *
             * Whenever possible, use {safeIncreaseAllowance} and
             * {safeDecreaseAllowance} instead.
             */
            function safeApprove(IERC20 token, address spender, uint256 value) internal {
                // safeApprove should only be called when setting an initial allowance,
                // or when resetting it to zero. To increase and decrease it, use
                // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
                // solhint-disable-next-line max-line-length
                require((value == 0) || (token.allowance(address(this), spender) == 0),
                    "SafeERC20: approve from non-zero to non-zero allowance"
                );
                _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
            }
        
            function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
                uint256 newAllowance = token.allowance(address(this), spender).add(value);
                _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
            }
        
            function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
                uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero");
                _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
            }
        
            /**
             * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
             * on the return value: the return value is optional (but if data is returned, it must not be false).
             * @param token The token targeted by the call.
             * @param data The call data (encoded using abi.encode or one of its variants).
             */
            function _callOptionalReturn(IERC20 token, bytes memory data) private {
                // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
                // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
                // the target address contains contract code and also asserts for success in the low-level call.
        
                bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
                if (returndata.length > 0) { // Return data is optional
                    // solhint-disable-next-line max-line-length
                    require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
                }
            }
        }
        
        // File: contracts/upgradeable_contracts/Sacrifice.sol
        
        pragma solidity 0.7.5;
        
        contract Sacrifice {
            constructor(address payable _recipient) payable {
                selfdestruct(_recipient);
            }
        }
        
        // File: contracts/libraries/AddressHelper.sol
        
        pragma solidity 0.7.5;
        
        
        /**
         * @title AddressHelper
         * @dev Helper methods for Address type.
         */
        library AddressHelper {
            /**
             * @dev Try to send native tokens to the address. If it fails, it will force the transfer by creating a selfdestruct contract
             * @param _receiver address that will receive the native tokens
             * @param _value the amount of native tokens to send
             */
            function safeSendValue(address payable _receiver, uint256 _value) internal {
                if (!(_receiver).send(_value)) {
                    new Sacrifice{ value: _value }(_receiver);
                }
            }
        }
        
        // File: contracts/upgradeable_contracts/Claimable.sol
        
        pragma solidity 0.7.5;
        
        
        
        /**
         * @title Claimable
         * @dev Implementation of the claiming utils that can be useful for withdrawing accidentally sent tokens that are not used in bridge operations.
         */
        contract Claimable {
            using SafeERC20 for IERC20;
        
            /**
             * Throws if a given address is equal to address(0)
             */
            modifier validAddress(address _to) {
                require(_to != address(0));
                _;
            }
        
            /**
             * @dev Withdraws the erc20 tokens or native coins from this contract.
             * Caller should additionally check that the claimed token is not a part of bridge operations (i.e. that token != erc20token()).
             * @param _token address of the claimed token or address(0) for native coins.
             * @param _to address of the tokens/coins receiver.
             */
            function claimValues(address _token, address _to) internal validAddress(_to) {
                if (_token == address(0)) {
                    claimNativeCoins(_to);
                } else {
                    claimErc20Tokens(_token, _to);
                }
            }
        
            /**
             * @dev Internal function for withdrawing all native coins from the contract.
             * @param _to address of the coins receiver.
             */
            function claimNativeCoins(address _to) internal {
                uint256 value = address(this).balance;
                AddressHelper.safeSendValue(payable(_to), value);
            }
        
            /**
             * @dev Internal function for withdrawing all tokens of some particular ERC20 contract from this contract.
             * @param _token address of the claimed ERC20 token.
             * @param _to address of the tokens receiver.
             */
            function claimErc20Tokens(address _token, address _to) internal {
                IERC20 token = IERC20(_token);
                uint256 balance = token.balanceOf(address(this));
                token.safeTransfer(_to, balance);
            }
        }
        
        // File: contracts/upgradeable_contracts/components/bridged/BridgedTokensRegistry.sol
        
        pragma solidity 0.7.5;
        
        
        /**
         * @title BridgedTokensRegistry
         * @dev Functionality for keeping track of registered bridged token pairs.
         */
        contract BridgedTokensRegistry is EternalStorage {
            event NewTokenRegistered(address indexed nativeToken, address indexed bridgedToken);
        
            /**
             * @dev Retrieves address of the bridged token contract associated with a specific native token contract on the other side.
             * @param _nativeToken address of the native token contract on the other side.
             * @return address of the deployed bridged token contract.
             */
            function bridgedTokenAddress(address _nativeToken) public view returns (address) {
                return addressStorage[keccak256(abi.encodePacked("homeTokenAddress", _nativeToken))];
            }
        
            /**
             * @dev Retrieves address of the native token contract associated with a specific bridged token contract.
             * @param _bridgedToken address of the created bridged token contract on this side.
             * @return address of the native token contract on the other side of the bridge.
             */
            function nativeTokenAddress(address _bridgedToken) public view returns (address) {
                return addressStorage[keccak256(abi.encodePacked("foreignTokenAddress", _bridgedToken))];
            }
        
            /**
             * @dev Internal function for updating a pair of addresses for the bridged token.
             * @param _nativeToken address of the native token contract on the other side.
             * @param _bridgedToken address of the created bridged token contract on this side.
             */
            function _setTokenAddressPair(address _nativeToken, address _bridgedToken) internal {
                addressStorage[keccak256(abi.encodePacked("homeTokenAddress", _nativeToken))] = _bridgedToken;
                addressStorage[keccak256(abi.encodePacked("foreignTokenAddress", _bridgedToken))] = _nativeToken;
        
                emit NewTokenRegistered(_nativeToken, _bridgedToken);
            }
        }
        
        // File: contracts/upgradeable_contracts/components/native/NativeTokensRegistry.sol
        
        pragma solidity 0.7.5;
        
        
        /**
         * @title NativeTokensRegistry
         * @dev Functionality for keeping track of registered native tokens.
         */
        contract NativeTokensRegistry is EternalStorage {
            /**
             * @dev Checks if for a given native token, the deployment of its bridged alternative was already acknowledged.
             * @param _token address of native token contract.
             * @return true, if bridged token was already deployed.
             */
            function isBridgedTokenDeployAcknowledged(address _token) public view returns (bool) {
                return boolStorage[keccak256(abi.encodePacked("ackDeploy", _token))];
            }
        
            /**
             * @dev Acknowledges the deployment of bridged token contract on the other side.
             * @param _token address of native token contract.
             */
            function _ackBridgedTokenDeploy(address _token) internal {
                if (!boolStorage[keccak256(abi.encodePacked("ackDeploy", _token))]) {
                    boolStorage[keccak256(abi.encodePacked("ackDeploy", _token))] = true;
                }
            }
        }
        
        // File: contracts/upgradeable_contracts/components/native/MediatorBalanceStorage.sol
        
        pragma solidity 0.7.5;
        
        
        
        /**
         * @title MediatorBalanceStorage
         * @dev Functionality for storing expected mediator balance for native tokens.
         */
        contract MediatorBalanceStorage is EternalStorage {
            /**
             * @dev Tells the expected token balance of the contract.
             * @param _token address of token contract.
             * @return the current tracked token balance of the contract.
             */
            function mediatorBalance(address _token) public view returns (uint256) {
                return uintStorage[keccak256(abi.encodePacked("mediatorBalance", _token))];
            }
        
            /**
             * @dev Updates expected token balance of the contract.
             * @param _token address of token contract.
             * @param _balance the new token balance of the contract.
             */
            function _setMediatorBalance(address _token, uint256 _balance) internal {
                uintStorage[keccak256(abi.encodePacked("mediatorBalance", _token))] = _balance;
            }
        }
        
        // File: contracts/interfaces/IERC677.sol
        
        pragma solidity 0.7.5;
        
        
        interface IERC677 is IERC20 {
            event Transfer(address indexed from, address indexed to, uint256 value, bytes data);
        
            function transferAndCall(
                address to,
                uint256 value,
                bytes calldata data
            ) external returns (bool);
        
            function increaseAllowance(address spender, uint256 addedValue) external returns (bool);
        
            function decreaseAllowance(address spender, uint256 subtractedValue) external returns (bool);
        }
        
        // File: contracts/libraries/Bytes.sol
        
        pragma solidity 0.7.5;
        
        /**
         * @title Bytes
         * @dev Helper methods to transform bytes to other solidity types.
         */
        library Bytes {
            /**
             * @dev Truncate bytes array if its size is more than 20 bytes.
             * NOTE: This function does not perform any checks on the received parameter.
             * Make sure that the _bytes argument has a correct length, not less than 20 bytes.
             * A case when _bytes has length less than 20 will lead to the undefined behaviour,
             * since assembly will read data from memory that is not related to the _bytes argument.
             * @param _bytes to be converted to address type
             * @return addr address included in the firsts 20 bytes of the bytes array in parameter.
             */
            function bytesToAddress(bytes memory _bytes) internal pure returns (address addr) {
                assembly {
                    addr := mload(add(_bytes, 20))
                }
            }
        }
        
        // File: contracts/upgradeable_contracts/ReentrancyGuard.sol
        
        pragma solidity 0.7.5;
        
        contract ReentrancyGuard {
            function lock() internal view returns (bool res) {
                assembly {
                    // Even though this is not the same as boolStorage[keccak256(abi.encodePacked("lock"))],
                    // since solidity mapping introduces another level of addressing, such slot change is safe
                    // for temporary variables which are cleared at the end of the call execution.
                    res := sload(0x6168652c307c1e813ca11cfb3a601f1cf3b22452021a5052d8b05f1f1f8a3e92) // keccak256(abi.encodePacked("lock"))
                }
            }
        
            function setLock(bool _lock) internal {
                assembly {
                    // Even though this is not the same as boolStorage[keccak256(abi.encodePacked("lock"))],
                    // since solidity mapping introduces another level of addressing, such slot change is safe
                    // for temporary variables which are cleared at the end of the call execution.
                    sstore(0x6168652c307c1e813ca11cfb3a601f1cf3b22452021a5052d8b05f1f1f8a3e92, _lock) // keccak256(abi.encodePacked("lock"))
                }
            }
        }
        
        // File: contracts/upgradeable_contracts/Ownable.sol
        
        pragma solidity 0.7.5;
        
        
        
        /**
         * @title Ownable
         * @dev This contract has an owner address providing basic authorization control
         */
        contract Ownable is EternalStorage {
            bytes4 internal constant UPGRADEABILITY_OWNER = 0x6fde8202; // upgradeabilityOwner()
        
            /**
             * @dev Event to show ownership has been transferred
             * @param previousOwner representing the address of the previous owner
             * @param newOwner representing the address of the new owner
             */
            event OwnershipTransferred(address previousOwner, address newOwner);
        
            /**
             * @dev Throws if called by any account other than the owner.
             */
            modifier onlyOwner() {
                _onlyOwner();
                _;
            }
        
            /**
             * @dev Internal function for reducing onlyOwner modifier bytecode overhead.
             */
            function _onlyOwner() internal view {
                require(msg.sender == owner());
            }
        
            /**
             * @dev Throws if called through proxy by any account other than contract itself or an upgradeability owner.
             */
            modifier onlyRelevantSender() {
                (bool isProxy, bytes memory returnData) =
                    address(this).staticcall(abi.encodeWithSelector(UPGRADEABILITY_OWNER));
                require(
                    !isProxy || // covers usage without calling through storage proxy
                        (returnData.length == 32 && msg.sender == abi.decode(returnData, (address))) || // covers usage through regular proxy calls
                        msg.sender == address(this) // covers calls through upgradeAndCall proxy method
                );
                _;
            }
        
            bytes32 internal constant OWNER = 0x02016836a56b71f0d02689e69e326f4f4c1b9057164ef592671cf0d37c8040c0; // keccak256(abi.encodePacked("owner"))
        
            /**
             * @dev Tells the address of the owner
             * @return the address of the owner
             */
            function owner() public view returns (address) {
                return addressStorage[OWNER];
            }
        
            /**
             * @dev Allows the current owner to transfer control of the contract to a newOwner.
             * @param newOwner the address to transfer ownership to.
             */
            function transferOwnership(address newOwner) external onlyOwner {
                _setOwner(newOwner);
            }
        
            /**
             * @dev Sets a new owner address
             */
            function _setOwner(address newOwner) internal {
                require(newOwner != address(0));
                emit OwnershipTransferred(owner(), newOwner);
                addressStorage[OWNER] = newOwner;
            }
        }
        
        // File: contracts/interfaces/IAMB.sol
        
        pragma solidity 0.7.5;
        
        interface IAMB {
            event UserRequestForAffirmation(bytes32 indexed messageId, bytes encodedData);
            event UserRequestForSignature(bytes32 indexed messageId, bytes encodedData);
            event AffirmationCompleted(
                address indexed sender,
                address indexed executor,
                bytes32 indexed messageId,
                bool status
            );
            event RelayedMessage(address indexed sender, address indexed executor, bytes32 indexed messageId, bool status);
        
            function messageSender() external view returns (address);
        
            function maxGasPerTx() external view returns (uint256);
        
            function transactionHash() external view returns (bytes32);
        
            function messageId() external view returns (bytes32);
        
            function messageSourceChainId() external view returns (bytes32);
        
            function messageCallStatus(bytes32 _messageId) external view returns (bool);
        
            function failedMessageDataHash(bytes32 _messageId) external view returns (bytes32);
        
            function failedMessageReceiver(bytes32 _messageId) external view returns (address);
        
            function failedMessageSender(bytes32 _messageId) external view returns (address);
        
            function requireToPassMessage(
                address _contract,
                bytes calldata _data,
                uint256 _gas
            ) external returns (bytes32);
        
            function requireToConfirmMessage(
                address _contract,
                bytes calldata _data,
                uint256 _gas
            ) external returns (bytes32);
        
            function sourceChainId() external view returns (uint256);
        
            function destinationChainId() external view returns (uint256);
        }
        
        // File: contracts/upgradeable_contracts/BasicAMBMediator.sol
        
        pragma solidity 0.7.5;
        
        
        
        
        /**
         * @title BasicAMBMediator
         * @dev Basic storage and methods needed by mediators to interact with AMB bridge.
         */
        abstract contract BasicAMBMediator is Ownable {
            bytes32 internal constant BRIDGE_CONTRACT = 0x811bbb11e8899da471f0e69a3ed55090fc90215227fc5fb1cb0d6e962ea7b74f; // keccak256(abi.encodePacked("bridgeContract"))
            bytes32 internal constant MEDIATOR_CONTRACT = 0x98aa806e31e94a687a31c65769cb99670064dd7f5a87526da075c5fb4eab9880; // keccak256(abi.encodePacked("mediatorContract"))
        
            /**
             * @dev Throws if caller on the other side is not an associated mediator.
             */
            modifier onlyMediator {
                _onlyMediator();
                _;
            }
        
            /**
             * @dev Internal function for reducing onlyMediator modifier bytecode overhead.
             */
            function _onlyMediator() internal view {
                IAMB bridge = bridgeContract();
                require(msg.sender == address(bridge));
                require(bridge.messageSender() == mediatorContractOnOtherSide());
            }
        
            /**
             * @dev Sets the AMB bridge contract address. Only the owner can call this method.
             * @param _bridgeContract the address of the bridge contract.
             */
            function setBridgeContract(address _bridgeContract) external onlyOwner {
                _setBridgeContract(_bridgeContract);
            }
        
            /**
             * @dev Sets the mediator contract address from the other network. Only the owner can call this method.
             * @param _mediatorContract the address of the mediator contract.
             */
            function setMediatorContractOnOtherSide(address _mediatorContract) external onlyOwner {
                _setMediatorContractOnOtherSide(_mediatorContract);
            }
        
            /**
             * @dev Get the AMB interface for the bridge contract address
             * @return AMB interface for the bridge contract address
             */
            function bridgeContract() public view returns (IAMB) {
                return IAMB(addressStorage[BRIDGE_CONTRACT]);
            }
        
            /**
             * @dev Tells the mediator contract address from the other network.
             * @return the address of the mediator contract.
             */
            function mediatorContractOnOtherSide() public view virtual returns (address) {
                return addressStorage[MEDIATOR_CONTRACT];
            }
        
            /**
             * @dev Stores a valid AMB bridge contract address.
             * @param _bridgeContract the address of the bridge contract.
             */
            function _setBridgeContract(address _bridgeContract) internal {
                require(Address.isContract(_bridgeContract));
                addressStorage[BRIDGE_CONTRACT] = _bridgeContract;
            }
        
            /**
             * @dev Stores the mediator contract address from the other network.
             * @param _mediatorContract the address of the mediator contract.
             */
            function _setMediatorContractOnOtherSide(address _mediatorContract) internal {
                addressStorage[MEDIATOR_CONTRACT] = _mediatorContract;
            }
        
            /**
             * @dev Tells the id of the message originated on the other network.
             * @return the id of the message originated on the other network.
             */
            function messageId() internal view returns (bytes32) {
                return bridgeContract().messageId();
            }
        
            /**
             * @dev Tells the maximum gas limit that a message can use on its execution by the AMB bridge on the other network.
             * @return the maximum gas limit value.
             */
            function maxGasPerTx() internal view returns (uint256) {
                return bridgeContract().maxGasPerTx();
            }
        
            function _passMessage(bytes memory _data, bool _useOracleLane) internal virtual returns (bytes32);
        }
        
        // File: contracts/upgradeable_contracts/components/common/TokensRelayer.sol
        
        pragma solidity 0.7.5;
        
        
        
        
        
        
        
        /**
         * @title TokensRelayer
         * @dev Functionality for bridging multiple tokens to the other side of the bridge.
         */
        abstract contract TokensRelayer is BasicAMBMediator, ReentrancyGuard {
            using SafeMath for uint256;
            using SafeERC20 for IERC677;
        
            /**
             * @dev ERC677 transfer callback function.
             * @param _from address of tokens sender.
             * @param _value amount of transferred tokens.
             * @param _data additional transfer data, can be used for passing alternative receiver address.
             */
            function onTokenTransfer(
                address _from,
                uint256 _value,
                bytes memory _data
            ) external returns (bool) {
                if (!lock()) {
                    bytes memory data = new bytes(0);
                    address receiver = _from;
                    if (_data.length >= 20) {
                        receiver = Bytes.bytesToAddress(_data);
                        if (_data.length > 20) {
                            assembly {
                                let size := sub(mload(_data), 20)
                                data := add(_data, 20)
                                mstore(data, size)
                            }
                        }
                    }
                    bridgeSpecificActionsOnTokenTransfer(msg.sender, _from, receiver, _value, data);
                }
                return true;
            }
        
            /**
             * @dev Initiate the bridge operation for some amount of tokens from msg.sender.
             * The user should first call Approve method of the ERC677 token.
             * @param token bridged token contract address.
             * @param _receiver address that will receive the native tokens on the other network.
             * @param _value amount of tokens to be transferred to the other network.
             */
            function relayTokens(
                IERC677 token,
                address _receiver,
                uint256 _value
            ) external {
                _relayTokens(token, _receiver, _value, new bytes(0));
            }
        
            /**
             * @dev Initiate the bridge operation for some amount of tokens from msg.sender to msg.sender on the other side.
             * The user should first call Approve method of the ERC677 token.
             * @param token bridged token contract address.
             * @param _value amount of tokens to be transferred to the other network.
             */
            function relayTokens(IERC677 token, uint256 _value) external {
                _relayTokens(token, msg.sender, _value, new bytes(0));
            }
        
            /**
             * @dev Initiate the bridge operation for some amount of tokens from msg.sender.
             * The user should first call Approve method of the ERC677 token.
             * @param token bridged token contract address.
             * @param _receiver address that will receive the native tokens on the other network.
             * @param _value amount of tokens to be transferred to the other network.
             * @param _data additional transfer data to be used on the other side.
             */
            function relayTokensAndCall(
                IERC677 token,
                address _receiver,
                uint256 _value,
                bytes memory _data
            ) external {
                _relayTokens(token, _receiver, _value, _data);
            }
        
            /**
             * @dev Validates that the token amount is inside the limits, calls transferFrom to transfer the tokens to the contract
             * and invokes the method to burn/lock the tokens and unlock/mint the tokens on the other network.
             * The user should first call Approve method of the ERC677 token.
             * @param token bridge token contract address.
             * @param _receiver address that will receive the native tokens on the other network.
             * @param _value amount of tokens to be transferred to the other network.
             * @param _data additional transfer data to be used on the other side.
             */
            function _relayTokens(
                IERC677 token,
                address _receiver,
                uint256 _value,
                bytes memory _data
            ) internal {
                // This lock is to prevent calling passMessage twice if a ERC677 token is used.
                // When transferFrom is called, after the transfer, the ERC677 token will call onTokenTransfer from this contract
                // which will call passMessage.
                require(!lock());
        
                uint256 balanceBefore = token.balanceOf(address(this));
                setLock(true);
                token.safeTransferFrom(msg.sender, address(this), _value);
                setLock(false);
                uint256 balanceDiff = token.balanceOf(address(this)).sub(balanceBefore);
                require(balanceDiff <= _value);
                bridgeSpecificActionsOnTokenTransfer(address(token), msg.sender, _receiver, balanceDiff, _data);
            }
        
            function bridgeSpecificActionsOnTokenTransfer(
                address _token,
                address _from,
                address _receiver,
                uint256 _value,
                bytes memory _data
            ) internal virtual;
        }
        
        // File: contracts/upgradeable_contracts/VersionableBridge.sol
        
        pragma solidity 0.7.5;
        
        interface VersionableBridge {
            function getBridgeInterfacesVersion()
                external
                pure
                returns (
                    uint64 major,
                    uint64 minor,
                    uint64 patch
                );
        
            function getBridgeMode() external pure returns (bytes4);
        }
        
        // File: contracts/upgradeable_contracts/components/common/OmnibridgeInfo.sol
        
        pragma solidity 0.7.5;
        
        
        /**
         * @title OmnibridgeInfo
         * @dev Functionality for versioning Omnibridge mediator.
         */
        contract OmnibridgeInfo is VersionableBridge {
            event TokensBridgingInitiated(
                address indexed token,
                address indexed sender,
                uint256 value,
                bytes32 indexed messageId
            );
            event TokensBridged(address indexed token, address indexed recipient, uint256 value, bytes32 indexed messageId);
        
            /**
             * @dev Tells the bridge interface version that this contract supports.
             * @return major value of the version
             * @return minor value of the version
             * @return patch value of the version
             */
            function getBridgeInterfacesVersion()
                external
                pure
                override
                returns (
                    uint64 major,
                    uint64 minor,
                    uint64 patch
                )
            {
                return (3, 3, 0);
            }
        
            /**
             * @dev Tells the bridge mode that this contract supports.
             * @return _data 4 bytes representing the bridge mode
             */
            function getBridgeMode() external pure override returns (bytes4 _data) {
                return 0xb1516c26; // bytes4(keccak256(abi.encodePacked("multi-erc-to-erc-amb")))
            }
        }
        
        // File: contracts/upgradeable_contracts/components/common/TokensBridgeLimits.sol
        
        pragma solidity 0.7.5;
        
        
        
        
        /**
         * @title TokensBridgeLimits
         * @dev Functionality for keeping track of bridging limits for multiple tokens.
         */
        contract TokensBridgeLimits is EternalStorage, Ownable {
            using SafeMath for uint256;
        
            // token == 0x00..00 represents default limits (assuming decimals == 18) for all newly created tokens
            event DailyLimitChanged(address indexed token, uint256 newLimit);
            event ExecutionDailyLimitChanged(address indexed token, uint256 newLimit);
        
            /**
             * @dev Checks if specified token was already bridged at least once.
             * @param _token address of the token contract.
             * @return true, if token address is address(0) or token was already bridged.
             */
            function isTokenRegistered(address _token) public view returns (bool) {
                return minPerTx(_token) > 0;
            }
        
            /**
             * @dev Retrieves the total spent amount for particular token during specific day.
             * @param _token address of the token contract.
             * @param _day day number for which spent amount if requested.
             * @return amount of tokens sent through the bridge to the other side.
             */
            function totalSpentPerDay(address _token, uint256 _day) public view returns (uint256) {
                return uintStorage[keccak256(abi.encodePacked("totalSpentPerDay", _token, _day))];
            }
        
            /**
             * @dev Retrieves the total executed amount for particular token during specific day.
             * @param _token address of the token contract.
             * @param _day day number for which spent amount if requested.
             * @return amount of tokens received from the bridge from the other side.
             */
            function totalExecutedPerDay(address _token, uint256 _day) public view returns (uint256) {
                return uintStorage[keccak256(abi.encodePacked("totalExecutedPerDay", _token, _day))];
            }
        
            /**
             * @dev Retrieves current daily limit for a particular token contract.
             * @param _token address of the token contract.
             * @return daily limit on tokens that can be sent through the bridge per day.
             */
            function dailyLimit(address _token) public view returns (uint256) {
                return uintStorage[keccak256(abi.encodePacked("dailyLimit", _token))];
            }
        
            /**
             * @dev Retrieves current execution daily limit for a particular token contract.
             * @param _token address of the token contract.
             * @return daily limit on tokens that can be received from the bridge on the other side per day.
             */
            function executionDailyLimit(address _token) public view returns (uint256) {
                return uintStorage[keccak256(abi.encodePacked("executionDailyLimit", _token))];
            }
        
            /**
             * @dev Retrieves current maximum amount of tokens per one transfer for a particular token contract.
             * @param _token address of the token contract.
             * @return maximum amount on tokens that can be sent through the bridge in one transfer.
             */
            function maxPerTx(address _token) public view returns (uint256) {
                return uintStorage[keccak256(abi.encodePacked("maxPerTx", _token))];
            }
        
            /**
             * @dev Retrieves current maximum execution amount of tokens per one transfer for a particular token contract.
             * @param _token address of the token contract.
             * @return maximum amount on tokens that can received from the bridge on the other side in one transaction.
             */
            function executionMaxPerTx(address _token) public view returns (uint256) {
                return uintStorage[keccak256(abi.encodePacked("executionMaxPerTx", _token))];
            }
        
            /**
             * @dev Retrieves current minimum amount of tokens per one transfer for a particular token contract.
             * @param _token address of the token contract.
             * @return minimum amount on tokens that can be sent through the bridge in one transfer.
             */
            function minPerTx(address _token) public view returns (uint256) {
                return uintStorage[keccak256(abi.encodePacked("minPerTx", _token))];
            }
        
            /**
             * @dev Checks that bridged amount of tokens conforms to the configured limits.
             * @param _token address of the token contract.
             * @param _amount amount of bridge tokens.
             * @return true, if specified amount can be bridged.
             */
            function withinLimit(address _token, uint256 _amount) public view returns (bool) {
                uint256 nextLimit = totalSpentPerDay(_token, getCurrentDay()).add(_amount);
                return
                    dailyLimit(address(0)) > 0 &&
                    dailyLimit(_token) >= nextLimit &&
                    _amount <= maxPerTx(_token) &&
                    _amount >= minPerTx(_token);
            }
        
            /**
             * @dev Checks that bridged amount of tokens conforms to the configured execution limits.
             * @param _token address of the token contract.
             * @param _amount amount of bridge tokens.
             * @return true, if specified amount can be processed and executed.
             */
            function withinExecutionLimit(address _token, uint256 _amount) public view returns (bool) {
                uint256 nextLimit = totalExecutedPerDay(_token, getCurrentDay()).add(_amount);
                return
                    executionDailyLimit(address(0)) > 0 &&
                    executionDailyLimit(_token) >= nextLimit &&
                    _amount <= executionMaxPerTx(_token);
            }
        
            /**
             * @dev Returns current day number.
             * @return day number.
             */
            function getCurrentDay() public view returns (uint256) {
                // solhint-disable-next-line not-rely-on-time
                return block.timestamp / 1 days;
            }
        
            /**
             * @dev Updates daily limit for the particular token. Only owner can call this method.
             * @param _token address of the token contract, or address(0) for configuring the efault limit.
             * @param _dailyLimit daily allowed amount of bridged tokens, should be greater than maxPerTx.
             * 0 value is also allowed, will stop the bridge operations in outgoing direction.
             */
            function setDailyLimit(address _token, uint256 _dailyLimit) external onlyOwner {
                require(isTokenRegistered(_token));
                require(_dailyLimit > maxPerTx(_token) || _dailyLimit == 0);
                uintStorage[keccak256(abi.encodePacked("dailyLimit", _token))] = _dailyLimit;
                emit DailyLimitChanged(_token, _dailyLimit);
            }
        
            /**
             * @dev Updates execution daily limit for the particular token. Only owner can call this method.
             * @param _token address of the token contract, or address(0) for configuring the default limit.
             * @param _dailyLimit daily allowed amount of executed tokens, should be greater than executionMaxPerTx.
             * 0 value is also allowed, will stop the bridge operations in incoming direction.
             */
            function setExecutionDailyLimit(address _token, uint256 _dailyLimit) external onlyOwner {
                require(isTokenRegistered(_token));
                require(_dailyLimit > executionMaxPerTx(_token) || _dailyLimit == 0);
                uintStorage[keccak256(abi.encodePacked("executionDailyLimit", _token))] = _dailyLimit;
                emit ExecutionDailyLimitChanged(_token, _dailyLimit);
            }
        
            /**
             * @dev Updates execution maximum per transaction for the particular token. Only owner can call this method.
             * @param _token address of the token contract, or address(0) for configuring the default limit.
             * @param _maxPerTx maximum amount of executed tokens per one transaction, should be less than executionDailyLimit.
             * 0 value is also allowed, will stop the bridge operations in incoming direction.
             */
            function setExecutionMaxPerTx(address _token, uint256 _maxPerTx) external onlyOwner {
                require(isTokenRegistered(_token));
                require(_maxPerTx == 0 || (_maxPerTx > 0 && _maxPerTx < executionDailyLimit(_token)));
                uintStorage[keccak256(abi.encodePacked("executionMaxPerTx", _token))] = _maxPerTx;
            }
        
            /**
             * @dev Updates maximum per transaction for the particular token. Only owner can call this method.
             * @param _token address of the token contract, or address(0) for configuring the default limit.
             * @param _maxPerTx maximum amount of tokens per one transaction, should be less than dailyLimit, greater than minPerTx.
             * 0 value is also allowed, will stop the bridge operations in outgoing direction.
             */
            function setMaxPerTx(address _token, uint256 _maxPerTx) external onlyOwner {
                require(isTokenRegistered(_token));
                require(_maxPerTx == 0 || (_maxPerTx > minPerTx(_token) && _maxPerTx < dailyLimit(_token)));
                uintStorage[keccak256(abi.encodePacked("maxPerTx", _token))] = _maxPerTx;
            }
        
            /**
             * @dev Updates minimum per transaction for the particular token. Only owner can call this method.
             * @param _token address of the token contract, or address(0) for configuring the default limit.
             * @param _minPerTx minimum amount of tokens per one transaction, should be less than maxPerTx and dailyLimit.
             */
            function setMinPerTx(address _token, uint256 _minPerTx) external onlyOwner {
                require(isTokenRegistered(_token));
                require(_minPerTx > 0 && _minPerTx < dailyLimit(_token) && _minPerTx < maxPerTx(_token));
                uintStorage[keccak256(abi.encodePacked("minPerTx", _token))] = _minPerTx;
            }
        
            /**
             * @dev Retrieves maximum available bridge amount per one transaction taking into account maxPerTx() and dailyLimit() parameters.
             * @param _token address of the token contract, or address(0) for the default limit.
             * @return minimum of maxPerTx parameter and remaining daily quota.
             */
            function maxAvailablePerTx(address _token) public view returns (uint256) {
                uint256 _maxPerTx = maxPerTx(_token);
                uint256 _dailyLimit = dailyLimit(_token);
                uint256 _spent = totalSpentPerDay(_token, getCurrentDay());
                uint256 _remainingOutOfDaily = _dailyLimit > _spent ? _dailyLimit - _spent : 0;
                return _maxPerTx < _remainingOutOfDaily ? _maxPerTx : _remainingOutOfDaily;
            }
        
            /**
             * @dev Internal function for adding spent amount for some token.
             * @param _token address of the token contract.
             * @param _day day number, when tokens are processed.
             * @param _value amount of bridge tokens.
             */
            function addTotalSpentPerDay(
                address _token,
                uint256 _day,
                uint256 _value
            ) internal {
                uintStorage[keccak256(abi.encodePacked("totalSpentPerDay", _token, _day))] = totalSpentPerDay(_token, _day).add(
                    _value
                );
            }
        
            /**
             * @dev Internal function for adding executed amount for some token.
             * @param _token address of the token contract.
             * @param _day day number, when tokens are processed.
             * @param _value amount of bridge tokens.
             */
            function addTotalExecutedPerDay(
                address _token,
                uint256 _day,
                uint256 _value
            ) internal {
                uintStorage[keccak256(abi.encodePacked("totalExecutedPerDay", _token, _day))] = totalExecutedPerDay(
                    _token,
                    _day
                )
                    .add(_value);
            }
        
            /**
             * @dev Internal function for initializing limits for some token.
             * @param _token address of the token contract.
             * @param _limits [ 0 = dailyLimit, 1 = maxPerTx, 2 = minPerTx ].
             */
            function _setLimits(address _token, uint256[3] memory _limits) internal {
                require(
                    _limits[2] > 0 && // minPerTx > 0
                        _limits[1] > _limits[2] && // maxPerTx > minPerTx
                        _limits[0] > _limits[1] // dailyLimit > maxPerTx
                );
        
                uintStorage[keccak256(abi.encodePacked("dailyLimit", _token))] = _limits[0];
                uintStorage[keccak256(abi.encodePacked("maxPerTx", _token))] = _limits[1];
                uintStorage[keccak256(abi.encodePacked("minPerTx", _token))] = _limits[2];
        
                emit DailyLimitChanged(_token, _limits[0]);
            }
        
            /**
             * @dev Internal function for initializing execution limits for some token.
             * @param _token address of the token contract.
             * @param _limits [ 0 = executionDailyLimit, 1 = executionMaxPerTx ].
             */
            function _setExecutionLimits(address _token, uint256[2] memory _limits) internal {
                require(_limits[1] < _limits[0]); // foreignMaxPerTx < foreignDailyLimit
        
                uintStorage[keccak256(abi.encodePacked("executionDailyLimit", _token))] = _limits[0];
                uintStorage[keccak256(abi.encodePacked("executionMaxPerTx", _token))] = _limits[1];
        
                emit ExecutionDailyLimitChanged(_token, _limits[0]);
            }
        
            /**
             * @dev Internal function for initializing limits for some token relative to its decimals parameter.
             * @param _token address of the token contract.
             * @param _decimals token decimals parameter.
             */
            function _initializeTokenBridgeLimits(address _token, uint256 _decimals) internal {
                uint256 factor;
                if (_decimals < 18) {
                    factor = 10**(18 - _decimals);
        
                    uint256 _minPerTx = minPerTx(address(0)).div(factor);
                    uint256 _maxPerTx = maxPerTx(address(0)).div(factor);
                    uint256 _dailyLimit = dailyLimit(address(0)).div(factor);
                    uint256 _executionMaxPerTx = executionMaxPerTx(address(0)).div(factor);
                    uint256 _executionDailyLimit = executionDailyLimit(address(0)).div(factor);
        
                    // such situation can happen when calculated limits relative to the token decimals are too low
                    // e.g. minPerTx(address(0)) == 10 ** 14, _decimals == 3. _minPerTx happens to be 0, which is not allowed.
                    // in this case, limits are raised to the default values
                    if (_minPerTx == 0) {
                        // Numbers 1, 100, 10000 are chosen in a semi-random way,
                        // so that any token with small decimals can still be bridged in some amounts.
                        // It is possible to override limits for the particular token later if needed.
                        _minPerTx = 1;
                        if (_maxPerTx <= _minPerTx) {
                            _maxPerTx = 100;
                            _executionMaxPerTx = 100;
                            if (_dailyLimit <= _maxPerTx || _executionDailyLimit <= _executionMaxPerTx) {
                                _dailyLimit = 10000;
                                _executionDailyLimit = 10000;
                            }
                        }
                    }
                    _setLimits(_token, [_dailyLimit, _maxPerTx, _minPerTx]);
                    _setExecutionLimits(_token, [_executionDailyLimit, _executionMaxPerTx]);
                } else {
                    factor = 10**(_decimals - 18);
                    _setLimits(
                        _token,
                        [dailyLimit(address(0)).mul(factor), maxPerTx(address(0)).mul(factor), minPerTx(address(0)).mul(factor)]
                    );
                    _setExecutionLimits(
                        _token,
                        [executionDailyLimit(address(0)).mul(factor), executionMaxPerTx(address(0)).mul(factor)]
                    );
                }
            }
        }
        
        // File: contracts/upgradeable_contracts/components/common/BridgeOperationsStorage.sol
        
        pragma solidity 0.7.5;
        
        
        /**
         * @title BridgeOperationsStorage
         * @dev Functionality for storing processed bridged operations.
         */
        abstract contract BridgeOperationsStorage is EternalStorage {
            /**
             * @dev Stores the bridged token of a message sent to the AMB bridge.
             * @param _messageId of the message sent to the bridge.
             * @param _token bridged token address.
             */
            function setMessageToken(bytes32 _messageId, address _token) internal {
                addressStorage[keccak256(abi.encodePacked("messageToken", _messageId))] = _token;
            }
        
            /**
             * @dev Tells the bridged token address of a message sent to the AMB bridge.
             * @return address of a token contract.
             */
            function messageToken(bytes32 _messageId) internal view returns (address) {
                return addressStorage[keccak256(abi.encodePacked("messageToken", _messageId))];
            }
        
            /**
             * @dev Stores the value of a message sent to the AMB bridge.
             * @param _messageId of the message sent to the bridge.
             * @param _value amount of tokens bridged.
             */
            function setMessageValue(bytes32 _messageId, uint256 _value) internal {
                uintStorage[keccak256(abi.encodePacked("messageValue", _messageId))] = _value;
            }
        
            /**
             * @dev Tells the amount of tokens of a message sent to the AMB bridge.
             * @return value representing amount of tokens.
             */
            function messageValue(bytes32 _messageId) internal view returns (uint256) {
                return uintStorage[keccak256(abi.encodePacked("messageValue", _messageId))];
            }
        
            /**
             * @dev Stores the receiver of a message sent to the AMB bridge.
             * @param _messageId of the message sent to the bridge.
             * @param _recipient receiver of the tokens bridged.
             */
            function setMessageRecipient(bytes32 _messageId, address _recipient) internal {
                addressStorage[keccak256(abi.encodePacked("messageRecipient", _messageId))] = _recipient;
            }
        
            /**
             * @dev Tells the receiver of a message sent to the AMB bridge.
             * @return address of the receiver.
             */
            function messageRecipient(bytes32 _messageId) internal view returns (address) {
                return addressStorage[keccak256(abi.encodePacked("messageRecipient", _messageId))];
            }
        }
        
        // File: contracts/upgradeable_contracts/components/common/FailedMessagesProcessor.sol
        
        pragma solidity 0.7.5;
        
        
        
        /**
         * @title FailedMessagesProcessor
         * @dev Functionality for fixing failed bridging operations.
         */
        abstract contract FailedMessagesProcessor is BasicAMBMediator, BridgeOperationsStorage {
            event FailedMessageFixed(bytes32 indexed messageId, address token, address recipient, uint256 value);
        
            /**
             * @dev Method to be called when a bridged message execution failed. It will generate a new message requesting to
             * fix/roll back the transferred assets on the other network.
             * @param _messageId id of the message which execution failed.
             */
            function requestFailedMessageFix(bytes32 _messageId) external {
                IAMB bridge = bridgeContract();
                require(!bridge.messageCallStatus(_messageId));
                require(bridge.failedMessageReceiver(_messageId) == address(this));
                require(bridge.failedMessageSender(_messageId) == mediatorContractOnOtherSide());
        
                bytes4 methodSelector = this.fixFailedMessage.selector;
                bytes memory data = abi.encodeWithSelector(methodSelector, _messageId);
                _passMessage(data, true);
            }
        
            /**
             * @dev Handles the request to fix transferred assets which bridged message execution failed on the other network.
             * It uses the information stored by passMessage method when the assets were initially transferred
             * @param _messageId id of the message which execution failed on the other network.
             */
            function fixFailedMessage(bytes32 _messageId) public onlyMediator {
                require(!messageFixed(_messageId));
        
                address token = messageToken(_messageId);
                address recipient = messageRecipient(_messageId);
                uint256 value = messageValue(_messageId);
                setMessageFixed(_messageId);
                executeActionOnFixedTokens(token, recipient, value);
                emit FailedMessageFixed(_messageId, token, recipient, value);
            }
        
            /**
             * @dev Tells if a message sent to the AMB bridge has been fixed.
             * @return bool indicating the status of the message.
             */
            function messageFixed(bytes32 _messageId) public view returns (bool) {
                return boolStorage[keccak256(abi.encodePacked("messageFixed", _messageId))];
            }
        
            /**
             * @dev Sets that the message sent to the AMB bridge has been fixed.
             * @param _messageId of the message sent to the bridge.
             */
            function setMessageFixed(bytes32 _messageId) internal {
                boolStorage[keccak256(abi.encodePacked("messageFixed", _messageId))] = true;
            }
        
            function executeActionOnFixedTokens(
                address _token,
                address _recipient,
                uint256 _value
            ) internal virtual;
        }
        
        // File: contracts/upgradeability/Proxy.sol
        
        pragma solidity 0.7.5;
        
        /**
         * @title Proxy
         * @dev Gives the possibility to delegate any call to a foreign implementation.
         */
        abstract contract Proxy {
            /**
             * @dev Tells the address of the implementation where every call will be delegated.
             * @return address of the implementation to which it will be delegated
             */
            function implementation() public view virtual returns (address);
        
            /**
             * @dev Fallback function allowing to perform a delegatecall to the given implementation.
             * This function will return whatever the implementation call returns
             */
            fallback() external payable {
                // solhint-disable-previous-line no-complex-fallback
                address _impl = implementation();
                require(_impl != address(0));
                assembly {
                    /*
                        0x40 is the "free memory slot", meaning a pointer to next slot of empty memory. mload(0x40)
                        loads the data in the free memory slot, so `ptr` is a pointer to the next slot of empty
                        memory. It's needed because we're going to write the return data of delegatecall to the
                        free memory slot.
                    */
                    let ptr := mload(0x40)
                    /*
                        `calldatacopy` is copy calldatasize bytes from calldata
                        First argument is the destination to which data is copied(ptr)
                        Second argument specifies the start position of the copied data.
                            Since calldata is sort of its own unique location in memory,
                            0 doesn't refer to 0 in memory or 0 in storage - it just refers to the zeroth byte of calldata.
                            That's always going to be the zeroth byte of the function selector.
                        Third argument, calldatasize, specifies how much data will be copied.
                            calldata is naturally calldatasize bytes long (same thing as msg.data.length)
                    */
                    calldatacopy(ptr, 0, calldatasize())
                    /*
                        delegatecall params explained:
                        gas: the amount of gas to provide for the call. `gas` is an Opcode that gives
                            us the amount of gas still available to execution
        
                        _impl: address of the contract to delegate to
        
                        ptr: to pass copied data
        
                        calldatasize: loads the size of `bytes memory data`, same as msg.data.length
        
                        0, 0: These are for the `out` and `outsize` params. Because the output could be dynamic,
                                these are set to 0, 0 so the output data will not be written to memory. The output
                                data will be read using `returndatasize` and `returdatacopy` instead.
        
                        result: This will be 0 if the call fails and 1 if it succeeds
                    */
                    let result := delegatecall(gas(), _impl, ptr, calldatasize(), 0, 0)
                    /*
        
                    */
                    /*
                        ptr current points to the value stored at 0x40,
                        because we assigned it like ptr := mload(0x40).
                        Because we use 0x40 as a free memory pointer,
                        we want to make sure that the next time we want to allocate memory,
                        we aren't overwriting anything important.
                        So, by adding ptr and returndatasize,
                        we get a memory location beyond the end of the data we will be copying to ptr.
                        We place this in at 0x40, and any reads from 0x40 will now read from free memory
                    */
                    mstore(0x40, add(ptr, returndatasize()))
                    /*
                        `returndatacopy` is an Opcode that copies the last return data to a slot. `ptr` is the
                            slot it will copy to, 0 means copy from the beginning of the return data, and size is
                            the amount of data to copy.
                        `returndatasize` is an Opcode that gives us the size of the last return data. In this case, that is the size of the data returned from delegatecall
                    */
                    returndatacopy(ptr, 0, returndatasize())
        
                    /*
                        if `result` is 0, revert.
                        if `result` is 1, return `size` amount of data from `ptr`. This is the data that was
                        copied to `ptr` from the delegatecall return data
                    */
                    switch result
                        case 0 {
                            revert(ptr, returndatasize())
                        }
                        default {
                            return(ptr, returndatasize())
                        }
                }
            }
        }
        
        // File: contracts/upgradeable_contracts/modules/factory/TokenProxy.sol
        
        pragma solidity 0.7.5;
        
        
        interface IPermittableTokenVersion {
            function version() external pure returns (string memory);
        }
        
        /**
         * @title TokenProxy
         * @dev Helps to reduces the size of the deployed bytecode for automatically created tokens, by using a proxy contract.
         */
        contract TokenProxy is Proxy {
            // storage layout is copied from PermittableToken.sol
            string internal name;
            string internal symbol;
            uint8 internal decimals;
            mapping(address => uint256) internal balances;
            uint256 internal totalSupply;
            mapping(address => mapping(address => uint256)) internal allowed;
            address internal owner;
            bool internal mintingFinished;
            address internal bridgeContractAddr;
            // string public constant version = "1";
            bytes32 internal DOMAIN_SEPARATOR;
            // bytes32 public constant PERMIT_TYPEHASH = 0xea2aa0a1be11a07ed86d755c93467f4f82362b452371d1ba94d1715123511acb;
            mapping(address => uint256) internal nonces;
            mapping(address => mapping(address => uint256)) internal expirations;
        
            /**
             * @dev Creates a non-upgradeable token proxy for PermitableToken.sol, initializes its eternalStorage.
             * @param _tokenImage address of the token image used for mirroring all functions.
             * @param _name token name.
             * @param _symbol token symbol.
             * @param _decimals token decimals.
             * @param _chainId chain id for current network.
             * @param _owner address of the owner for this contract.
             */
            constructor(
                address _tokenImage,
                string memory _name,
                string memory _symbol,
                uint8 _decimals,
                uint256 _chainId,
                address _owner
            ) {
                string memory version = IPermittableTokenVersion(_tokenImage).version();
        
                assembly {
                    // EIP 1967
                    // bytes32(uint256(keccak256('eip1967.proxy.implementation')) - 1)
                    sstore(0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc, _tokenImage)
                }
                name = _name;
                symbol = _symbol;
                decimals = _decimals;
                owner = _owner; // _owner == HomeOmnibridge/ForeignOmnibridge mediator
                bridgeContractAddr = _owner;
                DOMAIN_SEPARATOR = keccak256(
                    abi.encode(
                        keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"),
                        keccak256(bytes(_name)),
                        keccak256(bytes(version)),
                        _chainId,
                        address(this)
                    )
                );
            }
        
            /**
             * @dev Retrieves the implementation contract address, mirrored token image.
             * @return impl token image address.
             */
            function implementation() public view override returns (address impl) {
                assembly {
                    impl := sload(0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc)
                }
            }
        
            /**
             * @dev Tells the current version of the token proxy interfaces.
             */
            function getTokenProxyInterfacesVersion()
                external
                pure
                returns (
                    uint64 major,
                    uint64 minor,
                    uint64 patch
                )
            {
                return (1, 0, 0);
            }
        }
        
        // File: contracts/upgradeable_contracts/modules/OwnableModule.sol
        
        pragma solidity 0.7.5;
        
        
        /**
         * @title OwnableModule
         * @dev Common functionality for multi-token extension non-upgradeable module.
         */
        contract OwnableModule {
            address public owner;
        
            /**
             * @dev Initializes this contract.
             * @param _owner address of the owner that is allowed to perform additional actions on the particular module.
             */
            constructor(address _owner) {
                owner = _owner;
            }
        
            /**
             * @dev Throws if sender is not the owner of this contract.
             */
            modifier onlyOwner {
                require(msg.sender == owner);
                _;
            }
        
            /**
             * @dev Changes the owner of this contract.
             * @param _newOwner address of the new owner.
             */
            function transferOwnership(address _newOwner) external onlyOwner {
                owner = _newOwner;
            }
        }
        
        // File: contracts/upgradeable_contracts/modules/factory/TokenFactory.sol
        
        pragma solidity 0.7.5;
        
        
        
        /**
         * @title TokenFactory
         * @dev Factory contract for deployment of new TokenProxy contracts.
         */
        contract TokenFactory is OwnableModule {
            address public tokenImage;
        
            /**
             * @dev Initializes this contract
             * @param _owner of this factory contract.
             * @param _tokenImage address of the token image contract that should be used for creation of new tokens.
             */
            constructor(address _owner, address _tokenImage) OwnableModule(_owner) {
                tokenImage = _tokenImage;
            }
        
            /**
             * @dev Tells the module interface version that this contract supports.
             * @return major value of the version
             * @return minor value of the version
             * @return patch value of the version
             */
            function getModuleInterfacesVersion()
                external
                pure
                returns (
                    uint64 major,
                    uint64 minor,
                    uint64 patch
                )
            {
                return (1, 0, 0);
            }
        
            /**
             * @dev Updates the address of the used token image contract.
             * Only owner can call this method.
             * @param _tokenImage address of the new token image used for further deployments.
             */
            function setTokenImage(address _tokenImage) external onlyOwner {
                require(Address.isContract(_tokenImage));
                tokenImage = _tokenImage;
            }
        
            /**
             * @dev Deploys a new TokenProxy contract, using saved token image contract as a template.
             * @param _name deployed token name.
             * @param _symbol deployed token symbol.
             * @param _decimals deployed token decimals.
             * @param _chainId chain id of the current environment.
             * @return address of a newly created contract.
             */
            function deploy(
                string calldata _name,
                string calldata _symbol,
                uint8 _decimals,
                uint256 _chainId
            ) external returns (address) {
                return address(new TokenProxy(tokenImage, _name, _symbol, _decimals, _chainId, msg.sender));
            }
        }
        
        // File: contracts/upgradeable_contracts/modules/factory/TokenFactoryConnector.sol
        
        pragma solidity 0.7.5;
        
        
        
        
        /**
         * @title TokenFactoryConnector
         * @dev Connectivity functionality for working with TokenFactory contract.
         */
        contract TokenFactoryConnector is Ownable {
            bytes32 internal constant TOKEN_FACTORY_CONTRACT =
                0x269c5905f777ee6391c7a361d17039a7d62f52ba9fffeb98c5ade342705731a3; // keccak256(abi.encodePacked("tokenFactoryContract"))
        
            /**
             * @dev Updates an address of the used TokenFactory contract used for creating new tokens.
             * @param _tokenFactory address of TokenFactory contract.
             */
            function setTokenFactory(address _tokenFactory) external onlyOwner {
                _setTokenFactory(_tokenFactory);
            }
        
            /**
             * @dev Retrieves an address of the token factory contract.
             * @return address of the TokenFactory contract.
             */
            function tokenFactory() public view returns (TokenFactory) {
                return TokenFactory(addressStorage[TOKEN_FACTORY_CONTRACT]);
            }
        
            /**
             * @dev Internal function for updating an address of the token factory contract.
             * @param _tokenFactory address of the deployed TokenFactory contract.
             */
            function _setTokenFactory(address _tokenFactory) internal {
                require(Address.isContract(_tokenFactory));
                addressStorage[TOKEN_FACTORY_CONTRACT] = _tokenFactory;
            }
        }
        
        // File: contracts/interfaces/IBurnableMintableERC677Token.sol
        
        pragma solidity 0.7.5;
        
        
        interface IBurnableMintableERC677Token is IERC677 {
            function mint(address _to, uint256 _amount) external returns (bool);
        
            function burn(uint256 _value) external;
        
            function claimTokens(address _token, address _to) external;
        }
        
        // File: contracts/interfaces/IERC20Metadata.sol
        
        pragma solidity 0.7.5;
        
        interface IERC20Metadata {
            function name() external view returns (string memory);
        
            function symbol() external view returns (string memory);
        
            function decimals() external view returns (uint8);
        }
        
        // File: contracts/interfaces/IERC20Receiver.sol
        
        pragma solidity 0.7.5;
        
        interface IERC20Receiver {
            function onTokenBridged(
                address token,
                uint256 value,
                bytes calldata data
            ) external;
        }
        
        // File: contracts/libraries/TokenReader.sol
        
        pragma solidity 0.7.5;
        
        // solhint-disable
        interface ITokenDetails {
            function name() external view;
            function NAME() external view;
            function symbol() external view;
            function SYMBOL() external view;
            function decimals() external view;
            function DECIMALS() external view;
        }
        // solhint-enable
        
        /**
         * @title TokenReader
         * @dev Helper methods for reading name/symbol/decimals parameters from ERC20 token contracts.
         */
        library TokenReader {
            /**
             * @dev Reads the name property of the provided token.
             * Either name() or NAME() method is used.
             * Both, string and bytes32 types are supported.
             * @param _token address of the token contract.
             * @return token name as a string or an empty string if none of the methods succeeded.
             */
            function readName(address _token) internal view returns (string memory) {
                (bool status, bytes memory data) = _token.staticcall(abi.encodeWithSelector(ITokenDetails.name.selector));
                if (!status) {
                    (status, data) = _token.staticcall(abi.encodeWithSelector(ITokenDetails.NAME.selector));
                    if (!status) {
                        return "";
                    }
                }
                return _convertToString(data);
            }
        
            /**
             * @dev Reads the symbol property of the provided token.
             * Either symbol() or SYMBOL() method is used.
             * Both, string and bytes32 types are supported.
             * @param _token address of the token contract.
             * @return token symbol as a string or an empty string if none of the methods succeeded.
             */
            function readSymbol(address _token) internal view returns (string memory) {
                (bool status, bytes memory data) = _token.staticcall(abi.encodeWithSelector(ITokenDetails.symbol.selector));
                if (!status) {
                    (status, data) = _token.staticcall(abi.encodeWithSelector(ITokenDetails.SYMBOL.selector));
                    if (!status) {
                        return "";
                    }
                }
                return _convertToString(data);
            }
        
            /**
             * @dev Reads the decimals property of the provided token.
             * Either decimals() or DECIMALS() method is used.
             * @param _token address of the token contract.
             * @return token decimals or 0 if none of the methods succeeded.
             */
            function readDecimals(address _token) internal view returns (uint8) {
                (bool status, bytes memory data) = _token.staticcall(abi.encodeWithSelector(ITokenDetails.decimals.selector));
                if (!status) {
                    (status, data) = _token.staticcall(abi.encodeWithSelector(ITokenDetails.DECIMALS.selector));
                    if (!status) {
                        return 0;
                    }
                }
                return abi.decode(data, (uint8));
            }
        
            /**
             * @dev Internal function for converting returned value of name()/symbol() from bytes32/string to string.
             * @param returnData data returned by the token contract.
             * @return string with value obtained from returnData.
             */
            function _convertToString(bytes memory returnData) private pure returns (string memory) {
                if (returnData.length > 32) {
                    return abi.decode(returnData, (string));
                } else if (returnData.length == 32) {
                    bytes32 data = abi.decode(returnData, (bytes32));
                    string memory res = new string(32);
                    assembly {
                        let len := 0
                        mstore(add(res, 32), data) // save value in result string
        
                        // solhint-disable
                        for { } gt(data, 0) { len := add(len, 1) } { // until string is empty
                            data := shl(8, data) // shift left by one symbol
                        }
                        // solhint-enable
                        mstore(res, len) // save result string length
                    }
                    return res;
                } else {
                    return "";
                }
            }
        }
        
        // File: contracts/libraries/SafeMint.sol
        
        pragma solidity 0.7.5;
        
        
        /**
         * @title SafeMint
         * @dev Wrapper around the mint() function in all mintable tokens that verifies the return value.
         */
        library SafeMint {
            /**
             * @dev Wrapper around IBurnableMintableERC677Token.mint() that verifies that output value is true.
             * @param _token token contract.
             * @param _to address of the tokens receiver.
             * @param _value amount of tokens to mint.
             */
            function safeMint(
                IBurnableMintableERC677Token _token,
                address _to,
                uint256 _value
            ) internal {
                require(_token.mint(_to, _value));
            }
        }
        
        // File: contracts/upgradeable_contracts/BasicOmnibridge.sol
        
        pragma solidity 0.7.5;
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        /**
         * @title BasicOmnibridge
         * @dev Common functionality for multi-token mediator intended to work on top of AMB bridge.
         */
        abstract contract BasicOmnibridge is
            Initializable,
            Upgradeable,
            Claimable,
            OmnibridgeInfo,
            TokensRelayer,
            FailedMessagesProcessor,
            BridgedTokensRegistry,
            NativeTokensRegistry,
            MediatorBalanceStorage,
            TokenFactoryConnector,
            TokensBridgeLimits
        {
            using SafeERC20 for IERC677;
            using SafeMint for IBurnableMintableERC677Token;
            using SafeMath for uint256;
        
            // Workaround for storing variable up-to-32 bytes suffix
            uint256 private immutable SUFFIX_SIZE;
            bytes32 private immutable SUFFIX;
        
            // Since contract is intended to be deployed under EternalStorageProxy, only constant and immutable variables can be set here
            constructor(string memory _suffix) {
                require(bytes(_suffix).length <= 32);
                bytes32 suffix;
                assembly {
                    suffix := mload(add(_suffix, 32))
                }
                SUFFIX = suffix;
                SUFFIX_SIZE = bytes(_suffix).length;
            }
        
            /**
             * @dev Handles the bridged tokens for the first time, includes deployment of new TokenProxy contract.
             * Checks that the value is inside the execution limits and invokes the Mint or Unlock accordingly.
             * @param _token address of the native ERC20/ERC677 token on the other side.
             * @param _name name of the native token, name suffix will be appended, if empty, symbol will be used instead.
             * @param _symbol symbol of the bridged token, if empty, name will be used instead.
             * @param _decimals decimals of the bridge foreign token.
             * @param _recipient address that will receive the tokens.
             * @param _value amount of tokens to be received.
             */
            function deployAndHandleBridgedTokens(
                address _token,
                string calldata _name,
                string calldata _symbol,
                uint8 _decimals,
                address _recipient,
                uint256 _value
            ) external onlyMediator {
                address bridgedToken = _getBridgedTokenOrDeploy(_token, _name, _symbol, _decimals);
        
                _handleTokens(bridgedToken, false, _recipient, _value);
            }
        
            /**
             * @dev Handles the bridged tokens for the first time, includes deployment of new TokenProxy contract.
             * Executes a callback on the receiver.
             * Checks that the value is inside the execution limits and invokes the Mint accordingly.
             * @param _token address of the native ERC20/ERC677 token on the other side.
             * @param _name name of the native token, name suffix will be appended, if empty, symbol will be used instead.
             * @param _symbol symbol of the bridged token, if empty, name will be used instead.
             * @param _decimals decimals of the bridge foreign token.
             * @param _recipient address that will receive the tokens.
             * @param _value amount of tokens to be received.
             * @param _data additional data passed from the other chain.
             */
            function deployAndHandleBridgedTokensAndCall(
                address _token,
                string calldata _name,
                string calldata _symbol,
                uint8 _decimals,
                address _recipient,
                uint256 _value,
                bytes calldata _data
            ) external onlyMediator {
                address bridgedToken = _getBridgedTokenOrDeploy(_token, _name, _symbol, _decimals);
        
                _handleTokens(bridgedToken, false, _recipient, _value);
        
                _receiverCallback(_recipient, bridgedToken, _value, _data);
            }
        
            /**
             * @dev Handles the bridged tokens for the already registered token pair.
             * Checks that the value is inside the execution limits and invokes the Mint accordingly.
             * @param _token address of the native ERC20/ERC677 token on the other side.
             * @param _recipient address that will receive the tokens.
             * @param _value amount of tokens to be received.
             */
            function handleBridgedTokens(
                address _token,
                address _recipient,
                uint256 _value
            ) external onlyMediator {
                address token = bridgedTokenAddress(_token);
        
                require(isTokenRegistered(token));
        
                _handleTokens(token, false, _recipient, _value);
            }
        
            /**
             * @dev Handles the bridged tokens for the already registered token pair.
             * Checks that the value is inside the execution limits and invokes the Unlock accordingly.
             * Executes a callback on the receiver.
             * @param _token address of the native ERC20/ERC677 token on the other side.
             * @param _recipient address that will receive the tokens.
             * @param _value amount of tokens to be received.
             * @param _data additional transfer data passed from the other side.
             */
            function handleBridgedTokensAndCall(
                address _token,
                address _recipient,
                uint256 _value,
                bytes memory _data
            ) external onlyMediator {
                address token = bridgedTokenAddress(_token);
        
                require(isTokenRegistered(token));
        
                _handleTokens(token, false, _recipient, _value);
        
                _receiverCallback(_recipient, token, _value, _data);
            }
        
            /**
             * @dev Handles the bridged tokens that are native to this chain.
             * Checks that the value is inside the execution limits and invokes the Unlock accordingly.
             * @param _token native ERC20 token.
             * @param _recipient address that will receive the tokens.
             * @param _value amount of tokens to be received.
             */
            function handleNativeTokens(
                address _token,
                address _recipient,
                uint256 _value
            ) external onlyMediator {
                _ackBridgedTokenDeploy(_token);
        
                _handleTokens(_token, true, _recipient, _value);
            }
        
            /**
             * @dev Handles the bridged tokens that are native to this chain.
             * Checks that the value is inside the execution limits and invokes the Unlock accordingly.
             * Executes a callback on the receiver.
             * @param _token native ERC20 token.
             * @param _recipient address that will receive the tokens.
             * @param _value amount of tokens to be received.
             * @param _data additional transfer data passed from the other side.
             */
            function handleNativeTokensAndCall(
                address _token,
                address _recipient,
                uint256 _value,
                bytes memory _data
            ) external onlyMediator {
                _ackBridgedTokenDeploy(_token);
        
                _handleTokens(_token, true, _recipient, _value);
        
                _receiverCallback(_recipient, _token, _value, _data);
            }
        
            /**
             * @dev Checks if a given token is a bridged token that is native to this side of the bridge.
             * @param _token address of token contract.
             * @return message id of the send message.
             */
            function isRegisteredAsNativeToken(address _token) public view returns (bool) {
                return isTokenRegistered(_token) && nativeTokenAddress(_token) == address(0);
            }
        
            /**
             * @dev Unlock back the amount of tokens that were bridged to the other network but failed.
             * @param _token address that bridged token contract.
             * @param _recipient address that will receive the tokens.
             * @param _value amount of tokens to be received.
             */
            function executeActionOnFixedTokens(
                address _token,
                address _recipient,
                uint256 _value
            ) internal override {
                _releaseTokens(nativeTokenAddress(_token) == address(0), _token, _recipient, _value, _value);
            }
        
            /**
             * @dev Allows to pre-set the bridged token contract for not-yet bridged token.
             * Only the owner can call this method.
             * @param _nativeToken address of the token contract on the other side that was not yet bridged.
             * @param _bridgedToken address of the bridged token contract.
             */
            function setCustomTokenAddressPair(address _nativeToken, address _bridgedToken) external onlyOwner {
                require(!isTokenRegistered(_bridgedToken));
                require(nativeTokenAddress(_bridgedToken) == address(0));
                require(bridgedTokenAddress(_nativeToken) == address(0));
                // Unfortunately, there is no simple way to verify that the _nativeToken address
                // does not belong to the bridged token on the other side,
                // since information about bridged tokens addresses is not transferred back.
                // Therefore, owner account calling this function SHOULD manually verify on the other side of the bridge that
                // nativeTokenAddress(_nativeToken) == address(0) && isTokenRegistered(_nativeToken) == false.
        
                IBurnableMintableERC677Token(_bridgedToken).safeMint(address(this), 1);
                IBurnableMintableERC677Token(_bridgedToken).burn(1);
        
                _setTokenAddressPair(_nativeToken, _bridgedToken);
            }
        
            /**
             * @dev Allows to send to the other network the amount of locked tokens that can be forced into the contract
             * without the invocation of the required methods. (e. g. regular transfer without a call to onTokenTransfer)
             * @param _token address of the token contract.
             * Before calling this method, it must be carefully investigated how imbalance happened
             * in order to avoid an attempt to steal the funds from a token with double addresses
             * (e.g. TUSD is accessible at both 0x8dd5fbCe2F6a956C3022bA3663759011Dd51e73E and 0x0000000000085d4780B73119b644AE5ecd22b376)
             * @param _receiver the address that will receive the tokens on the other network.
             */
            function fixMediatorBalance(address _token, address _receiver)
                external
                onlyIfUpgradeabilityOwner
                validAddress(_receiver)
            {
                require(isRegisteredAsNativeToken(_token));
        
                uint256 diff = _unaccountedBalance(_token);
                require(diff > 0);
                uint256 available = maxAvailablePerTx(_token);
                require(available > 0);
                if (diff > available) {
                    diff = available;
                }
                addTotalSpentPerDay(_token, getCurrentDay(), diff);
        
                bytes memory data = _prepareMessage(address(0), _token, _receiver, diff, new bytes(0));
                bytes32 _messageId = _passMessage(data, true);
                _recordBridgeOperation(_messageId, _token, _receiver, diff);
            }
        
            /**
             * @dev Claims stuck tokens. Only unsupported tokens can be claimed.
             * When dealing with already supported tokens, fixMediatorBalance can be used instead.
             * @param _token address of claimed token, address(0) for native
             * @param _to address of tokens receiver
             */
            function claimTokens(address _token, address _to) external onlyIfUpgradeabilityOwner {
                // Only unregistered tokens and native coins are allowed to be claimed with the use of this function
                require(_token == address(0) || !isTokenRegistered(_token));
                claimValues(_token, _to);
            }
        
            /**
             * @dev Withdraws erc20 tokens or native coins from the bridged token contract.
             * Only the proxy owner is allowed to call this method.
             * @param _bridgedToken address of the bridged token contract.
             * @param _token address of the claimed token or address(0) for native coins.
             * @param _to address of the tokens/coins receiver.
             */
            function claimTokensFromTokenContract(
                address _bridgedToken,
                address _token,
                address _to
            ) external onlyIfUpgradeabilityOwner {
                IBurnableMintableERC677Token(_bridgedToken).claimTokens(_token, _to);
            }
        
            /**
             * @dev Internal function for recording bridge operation for further usage.
             * Recorded information is used for fixing failed requests on the other side.
             * @param _messageId id of the sent message.
             * @param _token bridged token address.
             * @param _sender address of the tokens sender.
             * @param _value bridged value.
             */
            function _recordBridgeOperation(
                bytes32 _messageId,
                address _token,
                address _sender,
                uint256 _value
            ) internal {
                setMessageToken(_messageId, _token);
                setMessageRecipient(_messageId, _sender);
                setMessageValue(_messageId, _value);
        
                emit TokensBridgingInitiated(_token, _sender, _value, _messageId);
            }
        
            /**
             * @dev Constructs the message to be sent to the other side. Burns/locks bridged amount of tokens.
             * @param _nativeToken address of the native token contract.
             * @param _token bridged token address.
             * @param _receiver address of the tokens receiver on the other side.
             * @param _value bridged value.
             * @param _data additional transfer data passed from the other side.
             */
            function _prepareMessage(
                address _nativeToken,
                address _token,
                address _receiver,
                uint256 _value,
                bytes memory _data
            ) internal returns (bytes memory) {
                bool withData = _data.length > 0 || msg.sig == this.relayTokensAndCall.selector;
        
                // process token is native with respect to this side of the bridge
                if (_nativeToken == address(0)) {
                    _setMediatorBalance(_token, mediatorBalance(_token).add(_value));
        
                    // process token which bridged alternative was already ACKed to be deployed
                    if (isBridgedTokenDeployAcknowledged(_token)) {
                        return
                            withData
                                ? abi.encodeWithSelector(
                                    this.handleBridgedTokensAndCall.selector,
                                    _token,
                                    _receiver,
                                    _value,
                                    _data
                                )
                                : abi.encodeWithSelector(this.handleBridgedTokens.selector, _token, _receiver, _value);
                    }
        
                    uint8 decimals = TokenReader.readDecimals(_token);
                    string memory name = TokenReader.readName(_token);
                    string memory symbol = TokenReader.readSymbol(_token);
        
                    require(bytes(name).length > 0 || bytes(symbol).length > 0);
        
                    return
                        withData
                            ? abi.encodeWithSelector(
                                this.deployAndHandleBridgedTokensAndCall.selector,
                                _token,
                                name,
                                symbol,
                                decimals,
                                _receiver,
                                _value,
                                _data
                            )
                            : abi.encodeWithSelector(
                                this.deployAndHandleBridgedTokens.selector,
                                _token,
                                name,
                                symbol,
                                decimals,
                                _receiver,
                                _value
                            );
                }
        
                // process already known token that is bridged from other chain
                IBurnableMintableERC677Token(_token).burn(_value);
                return
                    withData
                        ? abi.encodeWithSelector(
                            this.handleNativeTokensAndCall.selector,
                            _nativeToken,
                            _receiver,
                            _value,
                            _data
                        )
                        : abi.encodeWithSelector(this.handleNativeTokens.selector, _nativeToken, _receiver, _value);
            }
        
            /**
             * @dev Internal function for getting minter proxy address.
             * @param _token address of the token to mint.
             * @return address of the minter contract that should be used for calling mint(address,uint256)
             */
            function _getMinterFor(address _token) internal pure virtual returns (IBurnableMintableERC677Token) {
                return IBurnableMintableERC677Token(_token);
            }
        
            /**
             * Internal function for unlocking some amount of tokens.
             * @param _isNative true, if token is native w.r.t. to this side of the bridge.
             * @param _token address of the token contract.
             * @param _recipient address of the tokens receiver.
             * @param _value amount of tokens to unlock.
             * @param _balanceChange amount of balance to subtract from the mediator balance.
             */
            function _releaseTokens(
                bool _isNative,
                address _token,
                address _recipient,
                uint256 _value,
                uint256 _balanceChange
            ) internal virtual {
                if (_isNative) {
                    IERC677(_token).safeTransfer(_recipient, _value);
                    _setMediatorBalance(_token, mediatorBalance(_token).sub(_balanceChange));
                } else {
                    _getMinterFor(_token).safeMint(_recipient, _value);
                }
            }
        
            /**
             * Internal function for getting address of the bridged token. Deploys new token if necessary.
             * @param _token address of the token contract on the other side of the bridge.
             * @param _name name of the native token, name suffix will be appended, if empty, symbol will be used instead.
             * @param _symbol symbol of the bridged token, if empty, name will be used instead.
             * @param _decimals decimals of the bridge foreign token.
             */
            function _getBridgedTokenOrDeploy(
                address _token,
                string calldata _name,
                string calldata _symbol,
                uint8 _decimals
            ) internal returns (address) {
                address bridgedToken = bridgedTokenAddress(_token);
                if (bridgedToken == address(0)) {
                    string memory name = _name;
                    string memory symbol = _symbol;
                    require(bytes(name).length > 0 || bytes(symbol).length > 0);
                    if (bytes(name).length == 0) {
                        name = symbol;
                    } else if (bytes(symbol).length == 0) {
                        symbol = name;
                    }
                    name = _transformName(name);
                    bridgedToken = tokenFactory().deploy(name, symbol, _decimals, bridgeContract().sourceChainId());
                    _setTokenAddressPair(_token, bridgedToken);
                    _initializeTokenBridgeLimits(bridgedToken, _decimals);
                } else if (!isTokenRegistered(bridgedToken)) {
                    require(IERC20Metadata(bridgedToken).decimals() == _decimals);
                    _initializeTokenBridgeLimits(bridgedToken, _decimals);
                }
                return bridgedToken;
            }
        
            /**
             * Notifies receiving contract about the completed bridging operation.
             * @param _recipient address of the tokens receiver.
             * @param _token address of the bridged token.
             * @param _value amount of tokens transferred.
             * @param _data additional data passed to the callback.
             */
            function _receiverCallback(
                address _recipient,
                address _token,
                uint256 _value,
                bytes memory _data
            ) internal {
                if (Address.isContract(_recipient)) {
                    _recipient.call(abi.encodeWithSelector(IERC20Receiver.onTokenBridged.selector, _token, _value, _data));
                }
            }
        
            /**
             * @dev Internal function for transforming the bridged token name. Appends a side-specific suffix.
             * @param _name bridged token from the other side.
             * @return token name for this side of the bridge.
             */
            function _transformName(string memory _name) internal view returns (string memory) {
                string memory result = string(abi.encodePacked(_name, SUFFIX));
                uint256 size = SUFFIX_SIZE;
                assembly {
                    mstore(result, add(mload(_name), size))
                }
                return result;
            }
        
            /**
             * @dev Internal function for counting excess balance which is not tracked within the bridge.
             * Represents the amount of forced tokens on this contract.
             * @param _token address of the token contract.
             * @return amount of excess tokens.
             */
            function _unaccountedBalance(address _token) internal view virtual returns (uint256) {
                return IERC677(_token).balanceOf(address(this)).sub(mediatorBalance(_token));
            }
        
            function _handleTokens(
                address _token,
                bool _isNative,
                address _recipient,
                uint256 _value
            ) internal virtual;
        }
        
        // File: contracts/upgradeable_contracts/components/common/GasLimitManager.sol
        
        pragma solidity 0.7.5;
        
        
        /**
         * @title GasLimitManager
         * @dev Functionality for determining the request gas limit for AMB execution.
         */
        abstract contract GasLimitManager is BasicAMBMediator {
            bytes32 internal constant REQUEST_GAS_LIMIT = 0x2dfd6c9f781bb6bbb5369c114e949b69ebb440ef3d4dd6b2836225eb1dc3a2be; // keccak256(abi.encodePacked("requestGasLimit"))
        
            /**
             * @dev Sets the default gas limit to be used in the message execution by the AMB bridge on the other network.
             * This value can't exceed the parameter maxGasPerTx defined on the AMB bridge.
             * Only the owner can call this method.
             * @param _gasLimit the gas limit for the message execution.
             */
            function setRequestGasLimit(uint256 _gasLimit) external onlyOwner {
                _setRequestGasLimit(_gasLimit);
            }
        
            /**
             * @dev Tells the default gas limit to be used in the message execution by the AMB bridge on the other network.
             * @return the gas limit for the message execution.
             */
            function requestGasLimit() public view returns (uint256) {
                return uintStorage[REQUEST_GAS_LIMIT];
            }
        
            /**
             * @dev Stores the gas limit to be used in the message execution by the AMB bridge on the other network.
             * @param _gasLimit the gas limit for the message execution.
             */
            function _setRequestGasLimit(uint256 _gasLimit) internal {
                require(_gasLimit <= maxGasPerTx());
                uintStorage[REQUEST_GAS_LIMIT] = _gasLimit;
            }
        }
        
        // File: contracts/interfaces/IInterestReceiver.sol
        
        pragma solidity 0.7.5;
        
        interface IInterestReceiver {
            function onInterestReceived(address _token) external;
        }
        
        // File: contracts/interfaces/IInterestImplementation.sol
        
        pragma solidity 0.7.5;
        
        
        interface IInterestImplementation {
            event InterestEnabled(address indexed token, address xToken);
            event InterestDustUpdated(address indexed token, uint96 dust);
            event InterestReceiverUpdated(address indexed token, address receiver);
            event MinInterestPaidUpdated(address indexed token, uint256 amount);
            event PaidInterest(address indexed token, address to, uint256 value);
            event ForceDisable(address indexed token, uint256 tokensAmount, uint256 xTokensAmount, uint256 investedAmount);
        
            function isInterestSupported(address _token) external view returns (bool);
        
            function invest(address _token, uint256 _amount) external;
        
            function withdraw(address _token, uint256 _amount) external;
        
            function investedAmount(address _token) external view returns (uint256);
        }
        
        // File: contracts/upgradeable_contracts/components/common/InterestConnector.sol
        
        pragma solidity 0.7.5;
        
        
        
        
        
        
        
        
        /**
         * @title InterestConnector
         * @dev This contract gives an abstract way of receiving interest on locked tokens.
         */
        contract InterestConnector is Ownable, MediatorBalanceStorage {
            using SafeMath for uint256;
            using SafeERC20 for IERC20;
        
            /**
             * @dev Tells address of the interest earning implementation for the specific token contract.
             * If interest earning is disabled, will return 0x00..00.
             * Can be an address of the deployed CompoundInterestERC20 contract.
             * @param _token address of the locked token contract.
             * @return address of the implementation contract.
             */
            function interestImplementation(address _token) public view returns (IInterestImplementation) {
                return IInterestImplementation(addressStorage[keccak256(abi.encodePacked("interestImpl", _token))]);
            }
        
            /**
             * @dev Initializes interest receiving functionality for the particular locked token.
             * Only owner can call this method.
             * @param _token address of the token for interest earning.
             * @param _impl address of the interest earning implementation contract.
             * @param _minCashThreshold minimum amount of underlying tokens that are not invested.
             */
            function initializeInterest(
                address _token,
                address _impl,
                uint256 _minCashThreshold
            ) external onlyOwner {
                require(address(interestImplementation(_token)) == address(0));
                _setInterestImplementation(_token, _impl);
                _setMinCashThreshold(_token, _minCashThreshold);
            }
        
            /**
             * @dev Sets minimum amount of tokens that cannot be invested.
             * Only owner can call this method.
             * @param _token address of the token contract.
             * @param _minCashThreshold minimum amount of underlying tokens that are not invested.
             */
            function setMinCashThreshold(address _token, uint256 _minCashThreshold) external onlyOwner {
                _setMinCashThreshold(_token, _minCashThreshold);
            }
        
            /**
             * @dev Tells minimum amount of tokens that are not being invested.
             * @param _token address of the invested token contract.
             * @return amount of tokens.
             */
            function minCashThreshold(address _token) public view returns (uint256) {
                return uintStorage[keccak256(abi.encodePacked("minCashThreshold", _token))];
            }
        
            /**
             * @dev Disables interest for locked funds.
             * Only owner can call this method.
             * Prior to calling this function, consider to call payInterest and claimCompAndPay.
             * @param _token of token to disable interest for.
             */
            function disableInterest(address _token) external onlyOwner {
                interestImplementation(_token).withdraw(_token, uint256(-1));
                _setInterestImplementation(_token, address(0));
            }
        
            /**
             * @dev Invests all excess tokens. Leaves only minCashThreshold in underlying tokens.
             * Requires interest for the given token to be enabled first.
             * @param _token address of the token contract considered.
             */
            function invest(address _token) external {
                IInterestImplementation impl = interestImplementation(_token);
                // less than _token.balanceOf(this), since it does not take into account mistakenly locked tokens that should be processed via fixMediatorBalance.
                uint256 balance = mediatorBalance(_token).sub(impl.investedAmount(_token));
                uint256 minCash = minCashThreshold(_token);
        
                require(balance > minCash);
                uint256 amount = balance - minCash;
        
                IERC20(_token).safeTransfer(address(impl), amount);
                impl.invest(_token, amount);
            }
        
            /**
             * @dev Internal function for setting interest earning implementation contract for some token.
             * Also acts as an interest enabled flag.
             * @param _token address of the token contract.
             * @param _impl address of the implementation contract.
             */
            function _setInterestImplementation(address _token, address _impl) internal {
                require(_impl == address(0) || IInterestImplementation(_impl).isInterestSupported(_token));
                addressStorage[keccak256(abi.encodePacked("interestImpl", _token))] = _impl;
            }
        
            /**
             * @dev Internal function for setting minimum amount of tokens that cannot be invested.
             * @param _token address of the token contract.
             * @param _minCashThreshold minimum amount of underlying tokens that are not invested.
             */
            function _setMinCashThreshold(address _token, uint256 _minCashThreshold) internal {
                uintStorage[keccak256(abi.encodePacked("minCashThreshold", _token))] = _minCashThreshold;
            }
        }
        
        // File: contracts/upgradeable_contracts/ForeignOmnibridge.sol
        
        pragma solidity 0.7.5;
        
        
        
        
        
        /**
         * @title ForeignOmnibridge
         * @dev Foreign side implementation for multi-token mediator intended to work on top of AMB bridge.
         * It is designed to be used as an implementation contract of EternalStorageProxy contract.
         */
        contract ForeignOmnibridge is BasicOmnibridge, GasLimitManager, InterestConnector {
            using SafeERC20 for IERC677;
            using SafeMint for IBurnableMintableERC677Token;
            using SafeMath for uint256;
        
            constructor(string memory _suffix) BasicOmnibridge(_suffix) {}
        
            /**
             * @dev Stores the initial parameters of the mediator.
             * @param _bridgeContract the address of the AMB bridge contract.
             * @param _mediatorContract the address of the mediator contract on the other network.
             * @param _dailyLimitMaxPerTxMinPerTxArray array with limit values for the assets to be bridged to the other network.
             *   [ 0 = dailyLimit, 1 = maxPerTx, 2 = minPerTx ]
             * @param _executionDailyLimitExecutionMaxPerTxArray array with limit values for the assets bridged from the other network.
             *   [ 0 = executionDailyLimit, 1 = executionMaxPerTx ]
             * @param _requestGasLimit the gas limit for the message execution.
             * @param _owner address of the owner of the mediator contract.
             * @param _tokenFactory address of the TokenFactory contract that will be used for the deployment of new tokens.
             */
            function initialize(
                address _bridgeContract,
                address _mediatorContract,
                uint256[3] calldata _dailyLimitMaxPerTxMinPerTxArray, // [ 0 = _dailyLimit, 1 = _maxPerTx, 2 = _minPerTx ]
                uint256[2] calldata _executionDailyLimitExecutionMaxPerTxArray, // [ 0 = _executionDailyLimit, 1 = _executionMaxPerTx ]
                uint256 _requestGasLimit,
                address _owner,
                address _tokenFactory
            ) external onlyRelevantSender returns (bool) {
                require(!isInitialized());
        
                _setBridgeContract(_bridgeContract);
                _setMediatorContractOnOtherSide(_mediatorContract);
                _setLimits(address(0), _dailyLimitMaxPerTxMinPerTxArray);
                _setExecutionLimits(address(0), _executionDailyLimitExecutionMaxPerTxArray);
                _setRequestGasLimit(_requestGasLimit);
                _setOwner(_owner);
                _setTokenFactory(_tokenFactory);
        
                setInitialize();
        
                return isInitialized();
            }
        
            /**
             * One-time function to be used together with upgradeToAndCall method.
             * Sets the token factory contract.
             * @param _tokenFactory address of the deployed TokenFactory contract.
             */
            function upgradeToReverseMode(address _tokenFactory) external {
                require(msg.sender == address(this));
        
                _setTokenFactory(_tokenFactory);
            }
        
            /**
             * @dev Handles the bridged tokens.
             * Checks that the value is inside the execution limits and invokes the Mint or Unlock accordingly.
             * @param _token token contract address on this side of the bridge.
             * @param _isNative true, if given token is native to this chain and Unlock should be used.
             * @param _recipient address that will receive the tokens.
             * @param _value amount of tokens to be received.
             */
            function _handleTokens(
                address _token,
                bool _isNative,
                address _recipient,
                uint256 _value
            ) internal override {
                // prohibit withdrawal of tokens during other bridge operations (e.g. relayTokens)
                // such reentrant withdrawal can lead to an incorrect balanceDiff calculation
                require(!lock());
        
                require(withinExecutionLimit(_token, _value));
                addTotalExecutedPerDay(_token, getCurrentDay(), _value);
        
                _releaseTokens(_isNative, _token, _recipient, _value, _value);
        
                emit TokensBridged(_token, _recipient, _value, messageId());
            }
        
            /**
             * @dev Executes action on deposit of bridged tokens
             * @param _token address of the token contract
             * @param _from address of tokens sender
             * @param _receiver address of tokens receiver on the other side
             * @param _value requested amount of bridged tokens
             * @param _data additional transfer data to be used on the other side
             */
            function bridgeSpecificActionsOnTokenTransfer(
                address _token,
                address _from,
                address _receiver,
                uint256 _value,
                bytes memory _data
            ) internal virtual override {
                require(_receiver != address(0) && _receiver != mediatorContractOnOtherSide());
        
                // native unbridged token
                if (!isTokenRegistered(_token)) {
                    uint8 decimals = TokenReader.readDecimals(_token);
                    _initializeTokenBridgeLimits(_token, decimals);
                }
        
                require(withinLimit(_token, _value));
                addTotalSpentPerDay(_token, getCurrentDay(), _value);
        
                bytes memory data = _prepareMessage(nativeTokenAddress(_token), _token, _receiver, _value, _data);
                bytes32 _messageId = _passMessage(data, true);
                _recordBridgeOperation(_messageId, _token, _from, _value);
            }
        
            /**
             * Internal function for unlocking some amount of tokens.
             * @param _isNative true, if token is native w.r.t. to this side of the bridge.
             * @param _token address of the token contract.
             * @param _recipient address of the tokens receiver.
             * @param _value amount of tokens to unlock.
             * @param _balanceChange amount of balance to subtract from the mediator balance.
             */
            function _releaseTokens(
                bool _isNative,
                address _token,
                address _recipient,
                uint256 _value,
                uint256 _balanceChange
            ) internal override {
                if (_isNative) {
                    // There are two edge cases related to withdrawals on the foreign side of the bridge.
                    // 1) Minting of extra STAKE tokens, if supply on the Home side exceeds total bridge amount on the Foreign side.
                    // 2) Withdrawal of the invested tokens back from the Compound-like protocol, if currently available funds are insufficient.
                    // Most of the time, these cases do not intersect. However, in case STAKE tokens are also invested (e.g. via EasyStaking),
                    // the situation can be the following:
                    // - 20 STAKE are bridged through the OB. 15 STAKE of which are invested into EasyStaking, and 5 STAKE are locked directly on the bridge.
                    // - 5 STAKE are mistakenly locked on the bridge via regular transfer, they are not accounted in mediatorBalance(STAKE)
                    // - User requests withdrawal of 30 STAKE from the Home side.
                    // Correct sequence of actions should be the following:
                    // - Mint new STAKE tokens (value - mediatorBalance(STAKE) = 30 STAKE - 20 STAKE = 10 STAKE)
                    // - Set local variable balance to 30 STAKE
                    // - Withdraw all invested STAKE tokens (value - (balance - investedAmount(STAKE)) = 30 STAKE - (30 STAKE - 15 STAKE) = 15 STAKE)
        
                    uint256 balance = mediatorBalance(_token);
                    if (_token == address(0x0Ae055097C6d159879521C384F1D2123D1f195e6) && balance < _value) {
                        IBurnableMintableERC677Token(_token).safeMint(address(this), _value - balance);
                        balance = _value;
                    }
        
                    IInterestImplementation impl = interestImplementation(_token);
                    // can be used instead of Address.isContract(address(impl)),
                    // since _setInterestImplementation guarantees that impl is either a contract or zero address
                    // and interest implementation does not contain any selfdestruct opcode
                    if (address(impl) != address(0)) {
                        uint256 availableBalance = balance.sub(impl.investedAmount(_token));
                        if (_value > availableBalance) {
                            impl.withdraw(_token, (_value - availableBalance).add(minCashThreshold(_token)));
                        }
                    }
        
                    _setMediatorBalance(_token, balance.sub(_balanceChange));
                    IERC677(_token).safeTransfer(_recipient, _value);
                } else {
                    _getMinterFor(_token).safeMint(_recipient, _value);
                }
            }
        
            /**
             * @dev Internal function for sending an AMB message to the mediator on the other side.
             * @param _data data to be sent to the other side of the bridge.
             * @param _useOracleLane always true, not used on this side of the bridge.
             * @return id of the sent message.
             */
            function _passMessage(bytes memory _data, bool _useOracleLane) internal override returns (bytes32) {
                (_useOracleLane);
        
                return bridgeContract().requireToPassMessage(mediatorContractOnOtherSide(), _data, requestGasLimit());
            }
        
            /**
             * @dev Internal function for counting excess balance which is not tracked within the bridge.
             * Represents the amount of forced tokens on this contract.
             * @param _token address of the token contract.
             * @return amount of excess tokens.
             */
            function _unaccountedBalance(address _token) internal view override returns (uint256) {
                IInterestImplementation impl = interestImplementation(_token);
                uint256 invested = Address.isContract(address(impl)) ? impl.investedAmount(_token) : 0;
                return IERC677(_token).balanceOf(address(this)).sub(mediatorBalance(_token).sub(invested));
            }
        }
        

        File 5 of 5: ForeignAMB
        // File: contracts/interfaces/IBridgeValidators.sol
        
        pragma solidity 0.4.24;
        
        interface IBridgeValidators {
            function isValidator(address _validator) external view returns (bool);
            function requiredSignatures() external view returns (uint256);
            function owner() external view returns (address);
        }
        
        // File: contracts/libraries/Message.sol
        
        pragma solidity 0.4.24;
        
        library Message {
            function addressArrayContains(address[] array, address value) internal pure returns (bool) {
                for (uint256 i = 0; i < array.length; i++) {
                    if (array[i] == value) {
                        return true;
                    }
                }
                return false;
            }
            // layout of message :: bytes:
            // offset  0: 32 bytes :: uint256 - message length
            // offset 32: 20 bytes :: address - recipient address
            // offset 52: 32 bytes :: uint256 - value
            // offset 84: 32 bytes :: bytes32 - transaction hash
            // offset 116: 20 bytes :: address - contract address to prevent double spending
        
            // mload always reads 32 bytes.
            // so we can and have to start reading recipient at offset 20 instead of 32.
            // if we were to read at 32 the address would contain part of value and be corrupted.
            // when reading from offset 20 mload will read 12 bytes (most of them zeros) followed
            // by the 20 recipient address bytes and correctly convert it into an address.
            // this saves some storage/gas over the alternative solution
            // which is padding address to 32 bytes and reading recipient at offset 32.
            // for more details see discussion in:
            // https://github.com/paritytech/parity-bridge/issues/61
            function parseMessage(bytes message)
                internal
                pure
                returns (address recipient, uint256 amount, bytes32 txHash, address contractAddress)
            {
                require(isMessageValid(message));
                assembly {
                    recipient := mload(add(message, 20))
                    amount := mload(add(message, 52))
                    txHash := mload(add(message, 84))
                    contractAddress := mload(add(message, 104))
                }
            }
        
            function isMessageValid(bytes _msg) internal pure returns (bool) {
                return _msg.length == requiredMessageLength();
            }
        
            function requiredMessageLength() internal pure returns (uint256) {
                return 104;
            }
        
            function recoverAddressFromSignedMessage(bytes signature, bytes message, bool isAMBMessage)
                internal
                pure
                returns (address)
            {
                require(signature.length == 65);
                bytes32 r;
                bytes32 s;
                bytes1 v;
        
                assembly {
                    r := mload(add(signature, 0x20))
                    s := mload(add(signature, 0x40))
                    v := mload(add(signature, 0x60))
                }
                require(uint8(v) == 27 || uint8(v) == 28);
                require(uint256(s) <= 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0);
        
                return ecrecover(hashMessage(message, isAMBMessage), uint8(v), r, s);
            }
        
            function hashMessage(bytes message, bool isAMBMessage) internal pure returns (bytes32) {
                bytes memory prefix = "\x19Ethereum Signed Message:\n";
                if (isAMBMessage) {
                    return keccak256(abi.encodePacked(prefix, uintToString(message.length), message));
                } else {
                    string memory msgLength = "104";
                    return keccak256(abi.encodePacked(prefix, msgLength, message));
                }
            }
        
            /**
            * @dev Validates provided signatures, only first requiredSignatures() number
            * of signatures are going to be validated, these signatures should be from different validators.
            * @param _message bytes message used to generate signatures
            * @param _signatures bytes blob with signatures to be validated.
            * First byte X is a number of signatures in a blob,
            * next X bytes are v components of signatures,
            * next 32 * X bytes are r components of signatures,
            * next 32 * X bytes are s components of signatures.
            * @param _validatorContract contract, which conforms to the IBridgeValidators interface,
            * where info about current validators and required signatures is stored.
            * @param isAMBMessage true if _message is an AMB message with arbitrary length.
            */
            function hasEnoughValidSignatures(
                bytes _message,
                bytes _signatures,
                IBridgeValidators _validatorContract,
                bool isAMBMessage
            ) internal view {
                require(isAMBMessage || isMessageValid(_message));
                uint256 requiredSignatures = _validatorContract.requiredSignatures();
                uint256 amount;
                assembly {
                    amount := and(mload(add(_signatures, 1)), 0xff)
                }
                require(amount >= requiredSignatures);
                bytes32 hash = hashMessage(_message, isAMBMessage);
                address[] memory encounteredAddresses = new address[](requiredSignatures);
        
                for (uint256 i = 0; i < requiredSignatures; i++) {
                    uint8 v;
                    bytes32 r;
                    bytes32 s;
                    uint256 posr = 33 + amount + 32 * i;
                    uint256 poss = posr + 32 * amount;
                    assembly {
                        v := mload(add(_signatures, add(2, i)))
                        r := mload(add(_signatures, posr))
                        s := mload(add(_signatures, poss))
                    }
        
                    address recoveredAddress = ecrecover(hash, v, r, s);
                    require(_validatorContract.isValidator(recoveredAddress));
                    require(!addressArrayContains(encounteredAddresses, recoveredAddress));
                    encounteredAddresses[i] = recoveredAddress;
                }
            }
        
            function uintToString(uint256 i) internal pure returns (string) {
                if (i == 0) return "0";
                uint256 j = i;
                uint256 length;
                while (j != 0) {
                    length++;
                    j /= 10;
                }
                bytes memory bstr = new bytes(length);
                uint256 k = length - 1;
                while (i != 0) {
                    bstr[k--] = bytes1(48 + (i % 10));
                    i /= 10;
                }
                return string(bstr);
            }
        }
        
        // File: contracts/libraries/ArbitraryMessage.sol
        
        pragma solidity 0.4.24;
        
        library ArbitraryMessage {
            /**
            * @dev Unpacks data fields from AMB message
            * layout of message :: bytes:
            * offset  0              : 32 bytes :: uint256 - message length
            * offset 32              : 32 bytes :: bytes32 - messageId
            * offset 64              : 20 bytes :: address - sender address
            * offset 84              : 20 bytes :: address - executor contract
            * offset 104             : 4 bytes  :: uint32  - gasLimit
            * offset 108             : 1 bytes  :: uint8   - source chain id length (X)
            * offset 109             : 1 bytes  :: uint8   - destination chain id length (Y)
            * offset 110             : 1 bytes  :: uint8   - dataType
            * offset 111             : X bytes  :: bytes   - source chain id
            * offset 111 + X         : Y bytes  :: bytes   - destination chain id
        
            * NOTE: when message structure is changed, make sure that MESSAGE_PACKING_VERSION from VersionableAMB is updated as well
            * NOTE: assembly code uses calldatacopy, make sure that message is passed as the first argument in the calldata
            * @param _data encoded message
            */
            function unpackData(bytes _data)
                internal
                pure
                returns (
                    bytes32 messageId,
                    address sender,
                    address executor,
                    uint32 gasLimit,
                    uint8 dataType,
                    uint256[2] chainIds,
                    bytes memory data
                )
            {
                // 32 (message id) + 20 (sender) + 20 (executor) + 4 (gasLimit) + 1 (source chain id length) + 1 (destination chain id length) + 1 (dataType)
                uint256 srcdataptr = 32 + 20 + 20 + 4 + 1 + 1 + 1;
                uint256 datasize;
        
                assembly {
                    messageId := mload(add(_data, 32)) // 32 bytes
                    sender := and(mload(add(_data, 52)), 0xffffffffffffffffffffffffffffffffffffffff) // 20 bytes
        
                    // executor (20 bytes) + gasLimit (4 bytes) + srcChainIdLength (1 byte) + dstChainIdLength (1 bytes) + dataType (1 byte) + remainder (5 bytes)
                    let blob := mload(add(_data, 84))
        
                    // after bit shift left 12 bytes are zeros automatically
                    executor := shr(96, blob)
                    gasLimit := and(shr(64, blob), 0xffffffff)
        
                    dataType := byte(26, blob)
        
                    // load source chain id length
                    let chainIdLength := byte(24, blob)
        
                    // at this moment srcdataptr points to sourceChainId
        
                    // mask for sourceChainId
                    // e.g. length X -> (1 << (X * 8)) - 1
                    let mask := sub(shl(shl(3, chainIdLength), 1), 1)
        
                    // increase payload offset by length of source chain id
                    srcdataptr := add(srcdataptr, chainIdLength)
        
                    // write sourceChainId
                    mstore(chainIds, and(mload(add(_data, srcdataptr)), mask))
        
                    // at this moment srcdataptr points to destinationChainId
        
                    // load destination chain id length
                    chainIdLength := byte(25, blob)
        
                    // mask for destinationChainId
                    // e.g. length X -> (1 << (X * 8)) - 1
                    mask := sub(shl(shl(3, chainIdLength), 1), 1)
        
                    // increase payload offset by length of destination chain id
                    srcdataptr := add(srcdataptr, chainIdLength)
        
                    // write destinationChainId
                    mstore(add(chainIds, 32), and(mload(add(_data, srcdataptr)), mask))
        
                    // at this moment srcdataptr points to payload
        
                    // datasize = message length - payload offset
                    datasize := sub(mload(_data), srcdataptr)
                }
        
                data = new bytes(datasize);
                assembly {
                    // 36 = 4 (selector) + 32 (bytes length header)
                    srcdataptr := add(srcdataptr, 36)
        
                    // calldataload(4) - offset of first bytes argument in the calldata
                    calldatacopy(add(data, 32), add(calldataload(4), srcdataptr), datasize)
                }
            }
        }
        
        // File: contracts/interfaces/IUpgradeabilityOwnerStorage.sol
        
        pragma solidity 0.4.24;
        
        interface IUpgradeabilityOwnerStorage {
            function upgradeabilityOwner() external view returns (address);
        }
        
        // File: contracts/upgradeable_contracts/Upgradeable.sol
        
        pragma solidity 0.4.24;
        
        contract Upgradeable {
            // Avoid using onlyUpgradeabilityOwner name to prevent issues with implementation from proxy contract
            modifier onlyIfUpgradeabilityOwner() {
                require(msg.sender == IUpgradeabilityOwnerStorage(this).upgradeabilityOwner());
                /* solcov ignore next */
                _;
            }
        }
        
        // File: contracts/upgradeability/EternalStorage.sol
        
        pragma solidity 0.4.24;
        
        /**
         * @title EternalStorage
         * @dev This contract holds all the necessary state variables to carry out the storage of any contract.
         */
        contract EternalStorage {
            mapping(bytes32 => uint256) internal uintStorage;
            mapping(bytes32 => string) internal stringStorage;
            mapping(bytes32 => address) internal addressStorage;
            mapping(bytes32 => bytes) internal bytesStorage;
            mapping(bytes32 => bool) internal boolStorage;
            mapping(bytes32 => int256) internal intStorage;
        
        }
        
        // File: contracts/upgradeable_contracts/Initializable.sol
        
        pragma solidity 0.4.24;
        
        contract Initializable is EternalStorage {
            bytes32 internal constant INITIALIZED = 0x0a6f646cd611241d8073675e00d1a1ff700fbf1b53fcf473de56d1e6e4b714ba; // keccak256(abi.encodePacked("isInitialized"))
        
            function setInitialize() internal {
                boolStorage[INITIALIZED] = true;
            }
        
            function isInitialized() public view returns (bool) {
                return boolStorage[INITIALIZED];
            }
        }
        
        // File: contracts/upgradeable_contracts/InitializableBridge.sol
        
        pragma solidity 0.4.24;
        
        contract InitializableBridge is Initializable {
            bytes32 internal constant DEPLOYED_AT_BLOCK = 0xb120ceec05576ad0c710bc6e85f1768535e27554458f05dcbb5c65b8c7a749b0; // keccak256(abi.encodePacked("deployedAtBlock"))
        
            function deployedAtBlock() external view returns (uint256) {
                return uintStorage[DEPLOYED_AT_BLOCK];
            }
        }
        
        // File: openzeppelin-solidity/contracts/AddressUtils.sol
        
        pragma solidity ^0.4.24;
        
        
        /**
         * Utility library of inline functions on addresses
         */
        library AddressUtils {
        
          /**
           * Returns whether the target address is a contract
           * @dev This function will return false if invoked during the constructor of a contract,
           * as the code is not actually created until after the constructor finishes.
           * @param _addr address to check
           * @return whether the target address is a contract
           */
          function isContract(address _addr) internal view returns (bool) {
            uint256 size;
            // XXX Currently there is no better way to check if there is a contract in an address
            // than to check the size of the code at that address.
            // See https://ethereum.stackexchange.com/a/14016/36603
            // for more details about how this works.
            // TODO Check this again before the Serenity release, because all addresses will be
            // contracts then.
            // solium-disable-next-line security/no-inline-assembly
            assembly { size := extcodesize(_addr) }
            return size > 0;
          }
        
        }
        
        // File: contracts/upgradeable_contracts/ValidatorStorage.sol
        
        pragma solidity 0.4.24;
        
        contract ValidatorStorage {
            bytes32 internal constant VALIDATOR_CONTRACT = 0x5a74bb7e202fb8e4bf311841c7d64ec19df195fee77d7e7ae749b27921b6ddfe; // keccak256(abi.encodePacked("validatorContract"))
        }
        
        // File: contracts/upgradeable_contracts/Validatable.sol
        
        pragma solidity 0.4.24;
        
        
        
        contract Validatable is EternalStorage, ValidatorStorage {
            function validatorContract() public view returns (IBridgeValidators) {
                return IBridgeValidators(addressStorage[VALIDATOR_CONTRACT]);
            }
        
            modifier onlyValidator() {
                require(validatorContract().isValidator(msg.sender));
                /* solcov ignore next */
                _;
            }
        
            function requiredSignatures() public view returns (uint256) {
                return validatorContract().requiredSignatures();
            }
        
        }
        
        // File: contracts/upgradeable_contracts/Ownable.sol
        
        pragma solidity 0.4.24;
        
        
        /**
         * @title Ownable
         * @dev This contract has an owner address providing basic authorization control
         */
        contract Ownable is EternalStorage {
            bytes4 internal constant UPGRADEABILITY_OWNER = 0x6fde8202; // upgradeabilityOwner()
        
            /**
            * @dev Event to show ownership has been transferred
            * @param previousOwner representing the address of the previous owner
            * @param newOwner representing the address of the new owner
            */
            event OwnershipTransferred(address previousOwner, address newOwner);
        
            /**
            * @dev Throws if called by any account other than the owner.
            */
            modifier onlyOwner() {
                require(msg.sender == owner());
                /* solcov ignore next */
                _;
            }
        
            /**
            * @dev Throws if called by any account other than contract itself or owner.
            */
            modifier onlyRelevantSender() {
                // proxy owner if used through proxy, address(0) otherwise
                require(
                    !address(this).call(abi.encodeWithSelector(UPGRADEABILITY_OWNER)) || // covers usage without calling through storage proxy
                        msg.sender == IUpgradeabilityOwnerStorage(this).upgradeabilityOwner() || // covers usage through regular proxy calls
                        msg.sender == address(this) // covers calls through upgradeAndCall proxy method
                );
                /* solcov ignore next */
                _;
            }
        
            bytes32 internal constant OWNER = 0x02016836a56b71f0d02689e69e326f4f4c1b9057164ef592671cf0d37c8040c0; // keccak256(abi.encodePacked("owner"))
        
            /**
            * @dev Tells the address of the owner
            * @return the address of the owner
            */
            function owner() public view returns (address) {
                return addressStorage[OWNER];
            }
        
            /**
            * @dev Allows the current owner to transfer control of the contract to a newOwner.
            * @param newOwner the address to transfer ownership to.
            */
            function transferOwnership(address newOwner) external onlyOwner {
                _setOwner(newOwner);
            }
        
            /**
            * @dev Sets a new owner address
            */
            function _setOwner(address newOwner) internal {
                require(newOwner != address(0));
                emit OwnershipTransferred(owner(), newOwner);
                addressStorage[OWNER] = newOwner;
            }
        }
        
        // File: contracts/upgradeable_contracts/Sacrifice.sol
        
        pragma solidity 0.4.24;
        
        contract Sacrifice {
            constructor(address _recipient) public payable {
                selfdestruct(_recipient);
            }
        }
        
        // File: contracts/libraries/Address.sol
        
        pragma solidity 0.4.24;
        
        /**
         * @title Address
         * @dev Helper methods for Address type.
         */
        library Address {
            /**
            * @dev Try to send native tokens to the address. If it fails, it will force the transfer by creating a selfdestruct contract
            * @param _receiver address that will receive the native tokens
            * @param _value the amount of native tokens to send
            */
            function safeSendValue(address _receiver, uint256 _value) internal {
                if (!_receiver.send(_value)) {
                    (new Sacrifice).value(_value)(_receiver);
                }
            }
        }
        
        // File: openzeppelin-solidity/contracts/math/SafeMath.sol
        
        pragma solidity ^0.4.24;
        
        
        /**
         * @title SafeMath
         * @dev Math operations with safety checks that throw on error
         */
        library SafeMath {
        
          /**
          * @dev Multiplies two numbers, throws on overflow.
          */
          function mul(uint256 _a, uint256 _b) internal pure returns (uint256 c) {
            // Gas optimization: this is cheaper than asserting 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
            if (_a == 0) {
              return 0;
            }
        
            c = _a * _b;
            assert(c / _a == _b);
            return c;
          }
        
          /**
          * @dev Integer division of two numbers, truncating the quotient.
          */
          function div(uint256 _a, uint256 _b) internal pure returns (uint256) {
            // assert(_b > 0); // Solidity automatically throws when dividing by 0
            // uint256 c = _a / _b;
            // assert(_a == _b * c + _a % _b); // There is no case in which this doesn't hold
            return _a / _b;
          }
        
          /**
          * @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend).
          */
          function sub(uint256 _a, uint256 _b) internal pure returns (uint256) {
            assert(_b <= _a);
            return _a - _b;
          }
        
          /**
          * @dev Adds two numbers, throws on overflow.
          */
          function add(uint256 _a, uint256 _b) internal pure returns (uint256 c) {
            c = _a + _b;
            assert(c >= _a);
            return c;
          }
        }
        
        // File: openzeppelin-solidity/contracts/token/ERC20/ERC20Basic.sol
        
        pragma solidity ^0.4.24;
        
        
        /**
         * @title ERC20Basic
         * @dev Simpler version of ERC20 interface
         * See https://github.com/ethereum/EIPs/issues/179
         */
        contract ERC20Basic {
          function totalSupply() public view returns (uint256);
          function balanceOf(address _who) public view returns (uint256);
          function transfer(address _to, uint256 _value) public returns (bool);
          event Transfer(address indexed from, address indexed to, uint256 value);
        }
        
        // File: openzeppelin-solidity/contracts/token/ERC20/ERC20.sol
        
        pragma solidity ^0.4.24;
        
        /**
         * @title ERC20 interface
         * @dev see https://github.com/ethereum/EIPs/issues/20
         */
        contract ERC20 is ERC20Basic {
          function allowance(address _owner, address _spender)
            public view returns (uint256);
        
          function transferFrom(address _from, address _to, uint256 _value)
            public returns (bool);
        
          function approve(address _spender, uint256 _value) public returns (bool);
          event Approval(
            address indexed owner,
            address indexed spender,
            uint256 value
          );
        }
        
        // File: contracts/interfaces/ERC677.sol
        
        pragma solidity 0.4.24;
        
        contract ERC677 is ERC20 {
            event Transfer(address indexed from, address indexed to, uint256 value, bytes data);
        
            function transferAndCall(address, uint256, bytes) external returns (bool);
        
            function increaseAllowance(address spender, uint256 addedValue) public returns (bool);
            function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool);
        }
        
        contract LegacyERC20 {
            function transfer(address _spender, uint256 _value) public; // returns (bool);
            function transferFrom(address _owner, address _spender, uint256 _value) public; // returns (bool);
        }
        
        // File: contracts/libraries/SafeERC20.sol
        
        pragma solidity 0.4.24;
        
        
        /**
         * @title SafeERC20
         * @dev Helper methods for safe token transfers.
         * Functions perform additional checks to be sure that token transfer really happened.
         */
        library SafeERC20 {
            using SafeMath for uint256;
        
            /**
            * @dev Same as ERC20.transfer(address,uint256) but with extra consistency checks.
            * @param _token address of the token contract
            * @param _to address of the receiver
            * @param _value amount of tokens to send
            */
            function safeTransfer(address _token, address _to, uint256 _value) internal {
                LegacyERC20(_token).transfer(_to, _value);
                assembly {
                    if returndatasize {
                        returndatacopy(0, 0, 32)
                        if iszero(mload(0)) {
                            revert(0, 0)
                        }
                    }
                }
            }
        
            /**
            * @dev Same as ERC20.transferFrom(address,address,uint256) but with extra consistency checks.
            * @param _token address of the token contract
            * @param _from address of the sender
            * @param _value amount of tokens to send
            */
            function safeTransferFrom(address _token, address _from, uint256 _value) internal {
                LegacyERC20(_token).transferFrom(_from, address(this), _value);
                assembly {
                    if returndatasize {
                        returndatacopy(0, 0, 32)
                        if iszero(mload(0)) {
                            revert(0, 0)
                        }
                    }
                }
            }
        }
        
        // File: contracts/upgradeable_contracts/Claimable.sol
        
        pragma solidity 0.4.24;
        
        
        /**
         * @title Claimable
         * @dev Implementation of the claiming utils that can be useful for withdrawing accidentally sent tokens that are not used in bridge operations.
         */
        contract Claimable {
            using SafeERC20 for address;
        
            /**
             * Throws if a given address is equal to address(0)
             */
            modifier validAddress(address _to) {
                require(_to != address(0));
                /* solcov ignore next */
                _;
            }
        
            /**
             * @dev Withdraws the erc20 tokens or native coins from this contract.
             * Caller should additionally check that the claimed token is not a part of bridge operations (i.e. that token != erc20token()).
             * @param _token address of the claimed token or address(0) for native coins.
             * @param _to address of the tokens/coins receiver.
             */
            function claimValues(address _token, address _to) internal validAddress(_to) {
                if (_token == address(0)) {
                    claimNativeCoins(_to);
                } else {
                    claimErc20Tokens(_token, _to);
                }
            }
        
            /**
             * @dev Internal function for withdrawing all native coins from the contract.
             * @param _to address of the coins receiver.
             */
            function claimNativeCoins(address _to) internal {
                uint256 value = address(this).balance;
                Address.safeSendValue(_to, value);
            }
        
            /**
             * @dev Internal function for withdrawing all tokens of ssome particular ERC20 contract from this contract.
             * @param _token address of the claimed ERC20 token.
             * @param _to address of the tokens receiver.
             */
            function claimErc20Tokens(address _token, address _to) internal {
                ERC20Basic token = ERC20Basic(_token);
                uint256 balance = token.balanceOf(this);
                _token.safeTransfer(_to, balance);
            }
        }
        
        // File: contracts/upgradeable_contracts/VersionableBridge.sol
        
        pragma solidity 0.4.24;
        
        contract VersionableBridge {
            function getBridgeInterfacesVersion() external pure returns (uint64 major, uint64 minor, uint64 patch) {
                return (6, 1, 0);
            }
        
            /* solcov ignore next */
            function getBridgeMode() external pure returns (bytes4);
        }
        
        // File: contracts/upgradeable_contracts/DecimalShiftBridge.sol
        
        pragma solidity 0.4.24;
        
        
        contract DecimalShiftBridge is EternalStorage {
            using SafeMath for uint256;
        
            bytes32 internal constant DECIMAL_SHIFT = 0x1e8ecaafaddea96ed9ac6d2642dcdfe1bebe58a930b1085842d8fc122b371ee5; // keccak256(abi.encodePacked("decimalShift"))
        
            /**
            * @dev Internal function for setting the decimal shift for bridge operations.
            * Decimal shift can be positive, negative, or equal to zero.
            * It has the following meaning: N tokens in the foreign chain are equivalent to N * pow(10, shift) tokens on the home side.
            * @param _shift new value of decimal shift.
            */
            function _setDecimalShift(int256 _shift) internal {
                // since 1 wei * 10**77 > 2**255, it does not make any sense to use higher values
                require(_shift > -77 && _shift < 77);
                uintStorage[DECIMAL_SHIFT] = uint256(_shift);
            }
        
            /**
            * @dev Returns the value of foreign-to-home decimal shift.
            * @return decimal shift.
            */
            function decimalShift() public view returns (int256) {
                return int256(uintStorage[DECIMAL_SHIFT]);
            }
        
            /**
            * @dev Converts the amount of home tokens into the equivalent amount of foreign tokens.
            * @param _value amount of home tokens.
            * @return equivalent amount of foreign tokens.
            */
            function _unshiftValue(uint256 _value) internal view returns (uint256) {
                return _shiftUint(_value, -decimalShift());
            }
        
            /**
            * @dev Converts the amount of foreign tokens into the equivalent amount of home tokens.
            * @param _value amount of foreign tokens.
            * @return equivalent amount of home tokens.
            */
            function _shiftValue(uint256 _value) internal view returns (uint256) {
                return _shiftUint(_value, decimalShift());
            }
        
            /**
            * @dev Calculates _value * pow(10, _shift).
            * @param _value amount of tokens.
            * @param _shift decimal shift to apply.
            * @return shifted value.
            */
            function _shiftUint(uint256 _value, int256 _shift) private pure returns (uint256) {
                if (_shift == 0) {
                    return _value;
                }
                if (_shift > 0) {
                    return _value.mul(10**uint256(_shift));
                }
                return _value.div(10**uint256(-_shift));
            }
        }
        
        // File: contracts/upgradeable_contracts/BasicBridge.sol
        
        pragma solidity 0.4.24;
        
        
        
        
        
        
        
        
        contract BasicBridge is
            InitializableBridge,
            Validatable,
            Ownable,
            Upgradeable,
            Claimable,
            VersionableBridge,
            DecimalShiftBridge
        {
            event GasPriceChanged(uint256 gasPrice);
            event RequiredBlockConfirmationChanged(uint256 requiredBlockConfirmations);
        
            bytes32 internal constant GAS_PRICE = 0x55b3774520b5993024893d303890baa4e84b1244a43c60034d1ced2d3cf2b04b; // keccak256(abi.encodePacked("gasPrice"))
            bytes32 internal constant REQUIRED_BLOCK_CONFIRMATIONS = 0x916daedf6915000ff68ced2f0b6773fe6f2582237f92c3c95bb4d79407230071; // keccak256(abi.encodePacked("requiredBlockConfirmations"))
        
            /**
            * @dev Public setter for fallback gas price value. Only bridge owner can call this method.
            * @param _gasPrice new value for the gas price.
            */
            function setGasPrice(uint256 _gasPrice) external onlyOwner {
                _setGasPrice(_gasPrice);
            }
        
            function gasPrice() external view returns (uint256) {
                return uintStorage[GAS_PRICE];
            }
        
            function setRequiredBlockConfirmations(uint256 _blockConfirmations) external onlyOwner {
                _setRequiredBlockConfirmations(_blockConfirmations);
            }
        
            function _setRequiredBlockConfirmations(uint256 _blockConfirmations) internal {
                require(_blockConfirmations > 0);
                uintStorage[REQUIRED_BLOCK_CONFIRMATIONS] = _blockConfirmations;
                emit RequiredBlockConfirmationChanged(_blockConfirmations);
            }
        
            function requiredBlockConfirmations() external view returns (uint256) {
                return uintStorage[REQUIRED_BLOCK_CONFIRMATIONS];
            }
        
            /**
            * @dev Internal function for updating fallback gas price value.
            * @param _gasPrice new value for the gas price, zero gas price is allowed.
            */
            function _setGasPrice(uint256 _gasPrice) internal {
                uintStorage[GAS_PRICE] = _gasPrice;
                emit GasPriceChanged(_gasPrice);
            }
        }
        
        // File: contracts/upgradeable_contracts/arbitrary_message/VersionableAMB.sol
        
        pragma solidity 0.4.24;
        
        contract VersionableAMB is VersionableBridge {
            // message format version as a single 4-bytes number padded to 32-bytes
            // value, included into every outgoing relay request
            //
            // the message version should be updated every time when
            // - new field appears
            // - some field removed
            // - fields order is changed
            bytes32 internal constant MESSAGE_PACKING_VERSION = 0x00050000 << 224;
        
            /**
             * Returns currently used bridge version
             * @return (major, minor, patch) version triple
             */
            function getBridgeInterfacesVersion() external pure returns (uint64 major, uint64 minor, uint64 patch) {
                return (6, 2, 0);
            }
        }
        
        // File: contracts/upgradeable_contracts/arbitrary_message/BasicAMB.sol
        
        pragma solidity 0.4.24;
        
        
        contract BasicAMB is BasicBridge, VersionableAMB {
            bytes32 internal constant MAX_GAS_PER_TX = 0x2670ecc91ec356e32067fd27b36614132d727b84a1e03e08f412a4f2cf075974; // keccak256(abi.encodePacked("maxGasPerTx"))
            bytes32 internal constant NONCE = 0x7ab1577440dd7bedf920cb6de2f9fc6bf7ba98c78c85a3fa1f8311aac95e1759; // keccak256(abi.encodePacked("nonce"))
            bytes32 internal constant SOURCE_CHAIN_ID = 0x67d6f42a1ed69c62022f2d160ddc6f2f0acd37ad1db0c24f4702d7d3343a4add; // keccak256(abi.encodePacked("sourceChainId"))
            bytes32 internal constant SOURCE_CHAIN_ID_LENGTH = 0xe504ae1fd6471eea80f18b8532a61a9bb91fba4f5b837f80a1cfb6752350af44; // keccak256(abi.encodePacked("sourceChainIdLength"))
            bytes32 internal constant DESTINATION_CHAIN_ID = 0xbbd454018e72a3f6c02bbd785bacc49e46292744f3f6761276723823aa332320; // keccak256(abi.encodePacked("destinationChainId"))
            bytes32 internal constant DESTINATION_CHAIN_ID_LENGTH = 0xfb792ae4ad11102b93f26a51b3749c2b3667f8b561566a4806d4989692811594; // keccak256(abi.encodePacked("destinationChainIdLength"))
            bytes32 internal constant ALLOW_REENTRANT_REQUESTS = 0xffa3a5a0e192028fc343362a39c5688e5a60819a4dc5ab3ee70c25bc25b78dd6; // keccak256(abi.encodePacked("allowReentrantRequests"))
        
            /**
             * Initializes AMB contract
             * @param _sourceChainId chain id of a network where this contract is deployed
             * @param _destinationChainId chain id of a network where all outgoing messages are directed
             * @param _validatorContract address of the validators contract
             * @param _maxGasPerTx maximum amount of gas per one message execution
             * @param _gasPrice default gas price used by oracles for sending transactions in this network
             * @param _requiredBlockConfirmations number of block confirmations oracle will wait before processing passed messages
             * @param _owner address of new bridge owner
             */
            function initialize(
                uint256 _sourceChainId,
                uint256 _destinationChainId,
                address _validatorContract,
                uint256 _maxGasPerTx,
                uint256 _gasPrice,
                uint256 _requiredBlockConfirmations,
                address _owner
            ) external onlyRelevantSender returns (bool) {
                require(!isInitialized());
                require(AddressUtils.isContract(_validatorContract));
        
                _setChainIds(_sourceChainId, _destinationChainId);
                addressStorage[VALIDATOR_CONTRACT] = _validatorContract;
                uintStorage[DEPLOYED_AT_BLOCK] = block.number;
                uintStorage[MAX_GAS_PER_TX] = _maxGasPerTx;
                _setGasPrice(_gasPrice);
                _setRequiredBlockConfirmations(_requiredBlockConfirmations);
                _setOwner(_owner);
                setInitialize();
        
                return isInitialized();
            }
        
            function getBridgeMode() external pure returns (bytes4 _data) {
                return 0x2544fbb9; // bytes4(keccak256(abi.encodePacked("arbitrary-message-bridge-core")))
            }
        
            function maxGasPerTx() public view returns (uint256) {
                return uintStorage[MAX_GAS_PER_TX];
            }
        
            function setMaxGasPerTx(uint256 _maxGasPerTx) external onlyOwner {
                uintStorage[MAX_GAS_PER_TX] = _maxGasPerTx;
            }
        
            /**
             * Internal function for retrieving chain id for the source network
             * @return chain id for the current network
             */
            function sourceChainId() public view returns (uint256) {
                return uintStorage[SOURCE_CHAIN_ID];
            }
        
            /**
             * Internal function for retrieving chain id for the destination network
             * @return chain id for the destination network
             */
            function destinationChainId() public view returns (uint256) {
                return uintStorage[DESTINATION_CHAIN_ID];
            }
        
            /**
             * Updates chain ids of used networks
             * @param _sourceChainId chain id for current network
             * @param _destinationChainId chain id for opposite network
             */
            function setChainIds(uint256 _sourceChainId, uint256 _destinationChainId) external onlyOwner {
                _setChainIds(_sourceChainId, _destinationChainId);
            }
        
            /**
             * Sets the flag to allow passing new AMB requests in the opposite direction,
             * while other AMB message is being processed.
             * Only owner can call this method.
             * @param _enable true, if reentrant requests are allowed.
             */
            function setAllowReentrantRequests(bool _enable) external onlyOwner {
                boolStorage[ALLOW_REENTRANT_REQUESTS] = _enable;
            }
        
            /**
             * Tells if passing reentrant requests is allowed.
             * @return true, if reentrant requests are allowed.
             */
            function allowReentrantRequests() public view returns (bool) {
                return boolStorage[ALLOW_REENTRANT_REQUESTS];
            }
        
            /**
             * @dev Withdraws the erc20 tokens or native coins from this contract.
             * @param _token address of the claimed token or address(0) for native coins.
             * @param _to address of the tokens/coins receiver.
             */
            function claimTokens(address _token, address _to) external onlyIfUpgradeabilityOwner {
                claimValues(_token, _to);
            }
        
            /**
             * Internal function for retrieving current nonce value
             * @return nonce value
             */
            function _nonce() internal view returns (uint64) {
                return uint64(uintStorage[NONCE]);
            }
        
            /**
             * Internal function for updating nonce value
             * @param _nonce new nonce value
             */
            function _setNonce(uint64 _nonce) internal {
                uintStorage[NONCE] = uint256(_nonce);
            }
        
            /**
             * Internal function for updating chain ids of used networks
             * @param _sourceChainId chain id for current network
             * @param _destinationChainId chain id for opposite network
             */
            function _setChainIds(uint256 _sourceChainId, uint256 _destinationChainId) internal {
                require(_sourceChainId > 0 && _destinationChainId > 0);
                require(_sourceChainId != _destinationChainId);
        
                // Length fields are needed further when encoding the message.
                // Chain ids are compressed, so that leading zero bytes are not preserved.
                // In order to save some gas during calls to MessageDelivery.c,
                // lengths of chain ids are precalculated and being saved in the storage.
                uint256 sourceChainIdLength = 0;
                uint256 destinationChainIdLength = 0;
                uint256 mask = 0xff;
        
                for (uint256 i = 1; sourceChainIdLength == 0 || destinationChainIdLength == 0; i++) {
                    if (sourceChainIdLength == 0 && _sourceChainId & mask == _sourceChainId) {
                        sourceChainIdLength = i;
                    }
                    if (destinationChainIdLength == 0 && _destinationChainId & mask == _destinationChainId) {
                        destinationChainIdLength = i;
                    }
                    mask = (mask << 8) | 0xff;
                }
        
                uintStorage[SOURCE_CHAIN_ID] = _sourceChainId;
                uintStorage[SOURCE_CHAIN_ID_LENGTH] = sourceChainIdLength;
                uintStorage[DESTINATION_CHAIN_ID] = _destinationChainId;
                uintStorage[DESTINATION_CHAIN_ID_LENGTH] = destinationChainIdLength;
            }
        
            /**
             * Internal function for retrieving chain id length for the source network
             * @return chain id for the current network
             */
            function _sourceChainIdLength() internal view returns (uint256) {
                return uintStorage[SOURCE_CHAIN_ID_LENGTH];
            }
        
            /**
             * Internal function for retrieving chain id length for the destination network
             * @return chain id for the destination network
             */
            function _destinationChainIdLength() internal view returns (uint256) {
                return uintStorage[DESTINATION_CHAIN_ID_LENGTH];
            }
        
            /**
             * Internal function for validating version of the received message
             * @param _messageId id of the received message
             */
            function _isMessageVersionValid(bytes32 _messageId) internal returns (bool) {
                return
                    _messageId & 0xffffffff00000000000000000000000000000000000000000000000000000000 == MESSAGE_PACKING_VERSION;
            }
        
            /**
             * Internal function for validating destination chain id of the received message
             * @param _chainId destination chain id of the received message
             */
            function _isDestinationChainIdValid(uint256 _chainId) internal returns (bool res) {
                return _chainId == sourceChainId();
            }
        }
        
        // File: contracts/libraries/Bytes.sol
        
        pragma solidity 0.4.24;
        
        /**
         * @title Bytes
         * @dev Helper methods to transform bytes to other solidity types.
         */
        library Bytes {
            /**
            * @dev Converts bytes array to bytes32.
            * Truncates bytes array if its size is more than 32 bytes.
            * NOTE: This function does not perform any checks on the received parameter.
            * Make sure that the _bytes argument has a correct length, not less than 32 bytes.
            * A case when _bytes has length less than 32 will lead to the undefined behaviour,
            * since assembly will read data from memory that is not related to the _bytes argument.
            * @param _bytes to be converted to bytes32 type
            * @return bytes32 type of the firsts 32 bytes array in parameter.
            */
            function bytesToBytes32(bytes _bytes) internal pure returns (bytes32 result) {
                assembly {
                    result := mload(add(_bytes, 32))
                }
            }
        
            /**
            * @dev Truncate bytes array if its size is more than 20 bytes.
            * NOTE: Similar to the bytesToBytes32 function, make sure that _bytes is not shorter than 20 bytes.
            * @param _bytes to be converted to address type
            * @return address included in the firsts 20 bytes of the bytes array in parameter.
            */
            function bytesToAddress(bytes _bytes) internal pure returns (address addr) {
                assembly {
                    addr := mload(add(_bytes, 20))
                }
            }
        }
        
        // File: contracts/upgradeable_contracts/arbitrary_message/MessageProcessor.sol
        
        pragma solidity 0.4.24;
        
        
        contract MessageProcessor is EternalStorage {
            /**
            * @dev Returns a status of the message that came from the other side.
            * @param _messageId id of the message from the other side that triggered a call.
            * @return true if call executed successfully.
            */
            function messageCallStatus(bytes32 _messageId) external view returns (bool) {
                return boolStorage[keccak256(abi.encodePacked("messageCallStatus", _messageId))];
            }
        
            /**
            * @dev Sets a status of the message that came from the other side.
            * @param _messageId id of the message from the other side that triggered a call.
            * @param _status execution status, true if executed successfully.
            */
            function setMessageCallStatus(bytes32 _messageId, bool _status) internal {
                boolStorage[keccak256(abi.encodePacked("messageCallStatus", _messageId))] = _status;
            }
        
            /**
            * @dev Returns a data hash of the failed message that came from the other side.
            * NOTE: dataHash was used previously to identify outgoing message before AMB message id was introduced.
            * It is kept for backwards compatibility with old mediators contracts.
            * @param _messageId id of the message from the other side that triggered a call.
            * @return keccak256 hash of message data.
            */
            function failedMessageDataHash(bytes32 _messageId) external view returns (bytes32) {
                return bytes32(uintStorage[keccak256(abi.encodePacked("failedMessageDataHash", _messageId))]);
            }
        
            /**
            * @dev Sets a data hash of the failed message that came from the other side.
            * NOTE: dataHash was used previously to identify outgoing message before AMB message id was introduced.
            * It is kept for backwards compatibility with old mediators contracts.
            * @param _messageId id of the message from the other side that triggered a call.
            * @param data of the processed message.
            */
            function setFailedMessageDataHash(bytes32 _messageId, bytes data) internal {
                uintStorage[keccak256(abi.encodePacked("failedMessageDataHash", _messageId))] = uint256(keccak256(data));
            }
        
            /**
            * @dev Returns a receiver address of the failed message that came from the other side.
            * @param _messageId id of the message from the other side that triggered a call.
            * @return receiver address.
            */
            function failedMessageReceiver(bytes32 _messageId) external view returns (address) {
                return addressStorage[keccak256(abi.encodePacked("failedMessageReceiver", _messageId))];
            }
        
            /**
            * @dev Sets a sender address of the failed message that came from the other side.
            * @param _messageId id of the message from the other side that triggered a call.
            * @param _receiver address of the receiver.
            */
            function setFailedMessageReceiver(bytes32 _messageId, address _receiver) internal {
                addressStorage[keccak256(abi.encodePacked("failedMessageReceiver", _messageId))] = _receiver;
            }
        
            /**
            * @dev Returns a sender address of the failed message that came from the other side.
            * @param _messageId id of the message from the other side that triggered a call.
            * @return sender address on the other side.
            */
            function failedMessageSender(bytes32 _messageId) external view returns (address) {
                return addressStorage[keccak256(abi.encodePacked("failedMessageSender", _messageId))];
            }
        
            /**
            * @dev Sets a sender address of the failed message that came from the other side.
            * @param _messageId id of the message from the other side that triggered a call.
            * @param _sender address of the sender on the other side.
            */
            function setFailedMessageSender(bytes32 _messageId, address _sender) internal {
                addressStorage[keccak256(abi.encodePacked("failedMessageSender", _messageId))] = _sender;
            }
        
            /**
            * @dev Returns an address of the sender on the other side for the currently processed message.
            * Can be used by executors for getting other side caller address.
            * @return address of the sender on the other side.
            */
            function messageSender() external view returns (address sender) {
                assembly {
                    // Even though this is not the same as addressStorage[keccak256(abi.encodePacked("messageSender"))],
                    // since solidity mapping introduces another level of addressing, such slot change is safe
                    // for temporary variables which are cleared at the end of the call execution.
                    sender := sload(0x7b58b2a669d8e0992eae9eaef641092c0f686fd31070e7236865557fa1571b5b) // keccak256(abi.encodePacked("messageSender"))
                }
            }
        
            /**
            * @dev Sets an address of the sender on the other side for the currently processed message.
            * @param _sender address of the sender on the other side.
            */
            function setMessageSender(address _sender) internal {
                assembly {
                    // Even though this is not the same as addressStorage[keccak256(abi.encodePacked("messageSender"))],
                    // since solidity mapping introduces another level of addressing, such slot change is safe
                    // for temporary variables which are cleared at the end of the call execution.
                    sstore(0x7b58b2a669d8e0992eae9eaef641092c0f686fd31070e7236865557fa1571b5b, _sender) // keccak256(abi.encodePacked("messageSender"))
                }
            }
        
            /**
            * @dev Returns an id of the currently processed message.
            * @return id of the message that originated on the other side.
            */
            function messageId() public view returns (bytes32 id) {
                assembly {
                    // Even though this is not the same as uintStorage[keccak256(abi.encodePacked("messageId"))],
                    // since solidity mapping introduces another level of addressing, such slot change is safe
                    // for temporary variables which are cleared at the end of the call execution.
                    id := sload(0xe34bb2103dc34f2c144cc216c132d6ffb55dac57575c22e089161bbe65083304) // keccak256(abi.encodePacked("messageId"))
                }
            }
        
            /**
            * @dev Returns an id of the currently processed message.
            * NOTE: transactionHash was used previously to identify incoming message before AMB message id was introduced.
            * It is kept for backwards compatibility with old mediators contracts, although it doesn't return txHash anymore.
            * @return id of the message that originated on the other side.
            */
            function transactionHash() external view returns (bytes32) {
                return messageId();
            }
        
            /**
            * @dev Sets a message id of the currently processed message.
            * @param _messageId id of the message that originated on the other side.
            */
            function setMessageId(bytes32 _messageId) internal {
                assembly {
                    // Even though this is not the same as uintStorage[keccak256(abi.encodePacked("messageId"))],
                    // since solidity mapping introduces another level of addressing, such slot change is safe
                    // for temporary variables which are cleared at the end of the call execution.
                    sstore(0xe34bb2103dc34f2c144cc216c132d6ffb55dac57575c22e089161bbe65083304, _messageId) // keccak256(abi.encodePacked("messageId"))
                }
            }
        
            /**
            * @dev Returns an originating chain id of the currently processed message.
            * @return source chain id of the message that originated on the other side.
            */
            function messageSourceChainId() external view returns (uint256 id) {
                assembly {
                    // Even though this is not the same as uintStorage[keccak256(abi.encodePacked("messageSourceChainId"))],
                    // since solidity mapping introduces another level of addressing, such slot change is safe
                    // for temporary variables which are cleared at the end of the call execution.
                    id := sload(0x7f0fcd9e49860f055dd0c1682d635d309ecb5e3011654c716d9eb59a7ddec7d2) // keccak256(abi.encodePacked("messageSourceChainId"))
                }
            }
        
            /**
            * @dev Sets an originating chain id of the currently processed message.
            * @param _sourceChainId source chain id of the message that originated on the other side.
            */
            function setMessageSourceChainId(uint256 _sourceChainId) internal {
                assembly {
                    // Even though this is not the same as uintStorage[keccak256(abi.encodePacked("messageSourceChainId"))],
                    // since solidity mapping introduces another level of addressing, such slot change is safe
                    // for temporary variables which are cleared at the end of the call execution.
                    sstore(0x7f0fcd9e49860f055dd0c1682d635d309ecb5e3011654c716d9eb59a7ddec7d2, _sourceChainId) // keccak256(abi.encodePacked("messageSourceChainId"))
                }
            }
        
            /**
            * @dev Processes received message. Makes a call to the message executor,
            * sets dataHash, receive, sender variables for failed messages.
            * @param _sender sender address on the other side.
            * @param _executor address of an executor.
            * @param _messageId id of the processed message.
            * @param _gasLimit gas limit for a call to executor.
            * @param _sourceChainId source chain id is of the received message.
            * @param _data calldata for a call to executor.
            */
            function processMessage(
                address _sender,
                address _executor,
                bytes32 _messageId,
                uint256 _gasLimit,
                uint8, /* dataType */
                uint256 _sourceChainId,
                bytes memory _data
            ) internal {
                bool status = _passMessage(_sender, _executor, _data, _gasLimit, _messageId, _sourceChainId);
        
                setMessageCallStatus(_messageId, status);
                if (!status) {
                    setFailedMessageDataHash(_messageId, _data);
                    setFailedMessageReceiver(_messageId, _executor);
                    setFailedMessageSender(_messageId, _sender);
                }
                emitEventOnMessageProcessed(_sender, _executor, _messageId, status);
            }
        
            /**
            * @dev Makes a call to the message executor.
            * @param _sender sender address on the other side.
            * @param _contract address of an executor contract.
            * @param _data calldata for a call to executor.
            * @param _gas gas limit for a call to executor. 2^32 - 1, if caller will pass all available gas for the execution.
            * @param _messageId id of the processed message.
            * @param _sourceChainId source chain id is of the received message.
            */
            function _passMessage(
                address _sender,
                address _contract,
                bytes _data,
                uint256 _gas,
                bytes32 _messageId,
                uint256 _sourceChainId
            ) internal returns (bool) {
                setMessageSender(_sender);
                setMessageId(_messageId);
                setMessageSourceChainId(_sourceChainId);
        
                // After EIP-150, max gas cost allowed to be passed to the internal call is equal to the 63/64 of total gas left.
                // In reality, min(gasLimit, 63/64 * gasleft()) will be used as the call gas limit.
                // Imagine a situation, when message requires 10000000 gas to be executed successfully.
                // Also suppose, that at this point, gasleft() is equal to 10158000, so the callee will receive ~ 10158000 * 63 / 64 = 9999300 gas.
                // That amount of gas is not enough, so the call will fail. At the same time,
                // even if the callee failed the bridge contract still has ~ 158000 gas to
                // finish its execution and it will be enough. The internal call fails but
                // only because the oracle provides incorrect gas limit for the transaction
                // This check is needed here in order to force contract to pass exactly the requested amount of gas.
                // Avoiding it may lead to the unwanted message failure in some extreme cases.
                require(_gas == 0xffffffff || (gasleft() * 63) / 64 > _gas);
        
                bool status = _contract.call.gas(_gas)(_data);
                _validateExecutionStatus(status);
                setMessageSender(address(0));
                setMessageId(bytes32(0));
                setMessageSourceChainId(0);
                return status;
            }
        
            /**
            * @dev Validates message execution status. In simplest case, does nothing.
            * @param _status message execution status.
            */
            function _validateExecutionStatus(bool _status) internal {
                (_status);
            }
        
            /* solcov ignore next */
            function emitEventOnMessageProcessed(address sender, address executor, bytes32 messageId, bool status) internal;
        }
        
        // File: contracts/upgradeable_contracts/arbitrary_message/MessageDelivery.sol
        
        pragma solidity 0.4.24;
        
        
        
        
        
        contract MessageDelivery is BasicAMB, MessageProcessor {
            using SafeMath for uint256;
        
            uint256 internal constant SEND_TO_ORACLE_DRIVEN_LANE = 0x00;
            // after EIP2929, call to warmed contract address costs 100 instead of 2600
            uint256 internal constant MIN_GAS_PER_CALL = 100;
        
            /**
            * @dev Requests message relay to the opposite network
            * @param _contract executor address on the other side
            * @param _data calldata passed to the executor on the other side
            * @param _gas gas limit used on the other network for executing a message
            */
            function requireToPassMessage(address _contract, bytes memory _data, uint256 _gas) public returns (bytes32) {
                return _sendMessage(_contract, _data, _gas, SEND_TO_ORACLE_DRIVEN_LANE);
            }
        
            /**
            * @dev Initiates sending of an AMB message to the opposite network
            * @param _contract executor address on the other side
            * @param _data calldata passed to the executor on the other side
            * @param _gas gas limit used on the other network for executing a message
            * @param _dataType AMB message dataType to be included as a part of the header
            */
            function _sendMessage(address _contract, bytes memory _data, uint256 _gas, uint256 _dataType)
                internal
                returns (bytes32)
            {
                // it is not allowed to pass messages while other messages are processed
                // if other is not explicitly configured
                require(messageId() == bytes32(0) || allowReentrantRequests());
                require(_gas >= MIN_GAS_PER_CALL && _gas <= maxGasPerTx());
        
                uint256 selector;
                assembly {
                    selector := and(mload(add(_data, 4)), 0xffffffff)
                }
                // In order to prevent possible unauthorized ERC20 withdrawals, the following function signatures are prohibited:
                // * transfer(address,uint256)
                // * approve(address,uint256)
                // * transferFrom(address,address,uint256)
                // * approveAndCall(address,uint256,bytes)
                // * transferAndCall(address,uint256,bytes)
                // See https://medium.com/immunefi/xdai-stake-arbitrary-call-method-bug-postmortem-f80a90ac56e3 for more details
                require(
                    selector != 0xa9059cbb &&
                        selector != 0x095ea7b3 &&
                        selector != 0x23b872dd &&
                        selector != 0x4000aea0 &&
                        selector != 0xcae9ca51
                );
        
                (bytes32 _messageId, bytes memory header) = _packHeader(_contract, _gas, _dataType);
        
                bytes memory eventData = abi.encodePacked(header, _data);
        
                emitEventOnMessageRequest(_messageId, eventData);
                return _messageId;
            }
        
            /**
            * @dev Packs message header into a single bytes blob
            * @param _contract executor address on the other side
            * @param _gas gas limit used on the other network for executing a message
            * @param _dataType AMB message dataType to be included as a part of the header
            */
            function _packHeader(address _contract, uint256 _gas, uint256 _dataType)
                internal
                view
                returns (bytes32 _messageId, bytes memory header)
            {
                uint256 srcChainId = sourceChainId();
                uint256 srcChainIdLength = _sourceChainIdLength();
                uint256 dstChainId = destinationChainId();
                uint256 dstChainIdLength = _destinationChainIdLength();
        
                _messageId = _getNewMessageId(srcChainId);
        
                // 79 = 4 + 20 + 8 + 20 + 20 + 4 + 1 + 1 + 1
                header = new bytes(79 + srcChainIdLength + dstChainIdLength);
        
                // In order to save the gas, the header is packed in the reverse order.
                // With such approach, it is possible to store right-aligned values without any additional bit shifts.
                assembly {
                    let ptr := add(header, mload(header)) // points to the last word of header
                    mstore(ptr, dstChainId)
                    mstore(sub(ptr, dstChainIdLength), srcChainId)
        
                    mstore(add(header, 79), _dataType)
                    mstore(add(header, 78), dstChainIdLength)
                    mstore(add(header, 77), srcChainIdLength)
                    mstore(add(header, 76), _gas)
                    mstore(add(header, 72), _contract)
                    mstore(add(header, 52), caller)
                    mstore(add(header, 32), _messageId)
                }
            }
        
            /**
             * @dev Generates a new messageId for the passed request/message.
             * Increments the nonce accordingly.
             * @param _srcChainId source chain id of the newly created message. Should be a chain id of the current network.
             * @return unique message id to use for the new request/message.
             */
            function _getNewMessageId(uint256 _srcChainId) internal returns (bytes32) {
                uint64 nonce = _nonce();
                _setNonce(nonce + 1);
        
                // Bridge id is recalculated every time again and again, since it is still cheaper than using SLOAD opcode (800 gas)
                bytes32 bridgeId = keccak256(abi.encodePacked(_srcChainId, address(this))) &
                    0x00000000ffffffffffffffffffffffffffffffffffffffff0000000000000000;
        
                return MESSAGE_PACKING_VERSION | bridgeId | bytes32(nonce);
            }
        
            /* solcov ignore next */
            function emitEventOnMessageRequest(bytes32 messageId, bytes encodedData) internal;
        }
        
        // File: contracts/upgradeable_contracts/MessageRelay.sol
        
        pragma solidity 0.4.24;
        
        contract MessageRelay is EternalStorage {
            function relayedMessages(bytes32 _txHash) public view returns (bool) {
                return boolStorage[keccak256(abi.encodePacked("relayedMessages", _txHash))];
            }
        
            function setRelayedMessages(bytes32 _txHash, bool _status) internal {
                boolStorage[keccak256(abi.encodePacked("relayedMessages", _txHash))] = _status;
            }
        }
        
        // File: contracts/upgradeable_contracts/arbitrary_message/BasicForeignAMB.sol
        
        pragma solidity 0.4.24;
        
        
        
        
        
        contract BasicForeignAMB is BasicAMB, MessageRelay, MessageDelivery {
            /**
            * @dev Validates provided signatures and relays a given message
            * @param _data bytes to be relayed
            * @param _signatures bytes blob with signatures to be validated
            */
            function executeSignatures(bytes _data, bytes _signatures) public {
                _allowMessageExecution(_data, _signatures);
        
                bytes32 msgId;
                address sender;
                address executor;
                uint32 gasLimit;
                uint8 dataType;
                uint256[2] memory chainIds;
                bytes memory data;
        
                (msgId, sender, executor, gasLimit, dataType, chainIds, data) = ArbitraryMessage.unpackData(_data);
        
                _executeMessage(msgId, sender, executor, gasLimit, dataType, chainIds, data);
            }
        
            /**
            * @dev Validates provided signatures and relays a given message.
            * The message is not allowed to fail. The whole tx will be revered if message fails.
            * @param _data bytes to be relayed
            * @param _signatures bytes blob with signatures to be validated
            */
            function safeExecuteSignatures(bytes _data, bytes _signatures) external {
                executeSignatures(_data, _signatures);
            }
        
            /**
            * @dev Validates provided signatures and relays a given message. Allows to override the gas limit of the passed message.
            * Usually it makes sense to provide a higher amount of gas for the execution.
            * The message is not allowed to fail. The whole tx will be revered if message fails.
            * @param _data bytes to be relayed
            * @param _signatures bytes blob with signatures to be validated
            */
            function safeExecuteSignaturesWithGasLimit(bytes _data, bytes _signatures, uint32 _gas) public {
                _allowMessageExecution(_data, _signatures);
        
                bytes32 msgId;
                address sender;
                address executor;
                uint8 dataType;
                uint256[2] memory chainIds;
                bytes memory data;
        
                (msgId, sender, executor, , dataType, chainIds, data) = ArbitraryMessage.unpackData(_data);
        
                _executeMessage(msgId, sender, executor, _gas, dataType, chainIds, data);
            }
        
            /**
            * @dev Validates provided signatures and relays a given message. Passes all available gas for the execution.
            * The message is not allowed to fail. The whole tx will be revered if message fails.
            * @param _data bytes to be relayed
            * @param _signatures bytes blob with signatures to be validated
            */
            function safeExecuteSignaturesWithAutoGasLimit(bytes _data, bytes _signatures) external {
                safeExecuteSignaturesWithGasLimit(_data, _signatures, 0xffffffff);
            }
        
            /**
            * @dev Internal function for validating pre-execution requirements.
            * @param _data bytes to be relayed.
            * @param _signatures bytes blob with signatures to be validated.
            */
            function _allowMessageExecution(bytes _data, bytes _signatures) internal {
                // this checks prevents execution of other messages, while some other message is being processed
                // nested executeSignatures is considered to be unsafe,
                // since it allows to change/reset the AMB context variables (messageId, messageSender, messageSourceChainId)
                // while processing nested message
                require(messageId() == bytes32(0));
        
                Message.hasEnoughValidSignatures(_data, _signatures, validatorContract(), true);
            }
        
            /**
            * @dev Internal function for executing decoded message. Performs additional validation on the message fields.
            * @param msgId id of the processed message.
            * @param sender sender address on the other side.
            * @param executor address of an executor.
            * @param gasLimit gas limit for a call to executor.
            * @param dataType AMB message dataType to be included as a part of the header.
            * @param chainIds pair of source and destination chain ids.
            * @param data calldata for a call to executor.
            */
            function _executeMessage(
                bytes32 msgId,
                address sender,
                address executor,
                uint32 gasLimit,
                uint8 dataType,
                uint256[2] memory chainIds,
                bytes memory data
            ) internal {
                require(_isMessageVersionValid(msgId));
                require(_isDestinationChainIdValid(chainIds[1]));
                require(!relayedMessages(msgId));
                setRelayedMessages(msgId, true);
                processMessage(sender, executor, msgId, gasLimit, dataType, chainIds[0], data);
            }
        
            /**
            * @dev Validates message execution status. Reverts if message is was executed in safe mode and reverted.
            * @param _status message execution status.
            */
            function _validateExecutionStatus(bool _status) internal {
                require(_status || msg.sig == this.executeSignatures.selector);
            }
        
            /**
            * @dev Internal function for updating fallback gas price value.
            * @param _gasPrice new value for the gas price, zero gas price is not allowed.
            */
            function _setGasPrice(uint256 _gasPrice) internal {
                require(_gasPrice > 0);
                super._setGasPrice(_gasPrice);
            }
        }
        
        // File: contracts/upgradeable_contracts/arbitrary_message/ForeignAMB.sol
        
        pragma solidity 0.4.24;
        
        contract ForeignAMB is BasicForeignAMB {
            event UserRequestForAffirmation(bytes32 indexed messageId, bytes encodedData);
            event RelayedMessage(address indexed sender, address indexed executor, bytes32 indexed messageId, bool status);
        
            function emitEventOnMessageRequest(bytes32 messageId, bytes encodedData) internal {
                emit UserRequestForAffirmation(messageId, encodedData);
            }
        
            function emitEventOnMessageProcessed(address sender, address executor, bytes32 messageId, bool status) internal {
                emit RelayedMessage(sender, executor, messageId, status);
            }
        }